From 6940dd720ebb6b3d1df8ca203ab696daefe58189 Mon Sep 17 00:00:00 2001 From: Jim Flynn Date: Fri, 20 Mar 2020 12:25:56 +0000 Subject: renamed Documentation folder 20.02 and added .nojekyll file Signed-off-by: Jim Flynn --- 20.02/structarmnn_1_1_check_location.xhtml | 303 +++++++++++++++++++++++++++++ 1 file changed, 303 insertions(+) create mode 100644 20.02/structarmnn_1_1_check_location.xhtml (limited to '20.02/structarmnn_1_1_check_location.xhtml') diff --git a/20.02/structarmnn_1_1_check_location.xhtml b/20.02/structarmnn_1_1_check_location.xhtml new file mode 100644 index 0000000000..4b689da444 --- /dev/null +++ b/20.02/structarmnn_1_1_check_location.xhtml @@ -0,0 +1,303 @@ + + + + + + + + + + + + + +ArmNN: CheckLocation Struct Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  20.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
CheckLocation Struct Reference
+
+
+ +

#include <Exceptions.hpp>

+ + + + + + + + +

+Public Member Functions

 CheckLocation (const char *func, const char *file, unsigned int line)
 
std::string AsString () const
 
std::string FileLine () const
 
+ + + + + + + +

+Public Attributes

const char * m_Function
 
const char * m_File
 
unsigned int m_Line
 
+

Detailed Description

+
+

Definition at line 14 of file Exceptions.hpp.

+

Constructor & Destructor Documentation

+ +

◆ CheckLocation()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +
CheckLocation (const char * func,
const char * file,
unsigned int line 
)
+
+inline
+
+ +

Definition at line 20 of file Exceptions.hpp.

+
23  : m_Function{func}
24  , m_File{file}
25  , m_Line{line}
26  {
27  }
unsigned int m_Line
Definition: Exceptions.hpp:18
+
const char * m_File
Definition: Exceptions.hpp:17
+
const char * m_Function
Definition: Exceptions.hpp:16
+
+
+
+

Member Function Documentation

+ +

◆ AsString()

+ +
+
+ + + + + +
+ + + + + + + +
std::string AsString () const
+
+inline
+
+ +

Definition at line 29 of file Exceptions.hpp.

+ +

Referenced by armnnUtils::CheckValidSize(), armnnUtils::NonNegative(), InferenceTestImage::Resize(), armnnDeserializer::ToConstTensor(), armnnDeserializer::ToTensorInfo(), armnnUtils::VerifyInt32(), and Layer::VerifyLayerConnections().

+
30  {
31  std::stringstream ss;
32  ss << " at function " << m_Function
33  << " [" << m_File << ':' << m_Line << "]";
34  return ss.str();
35  }
unsigned int m_Line
Definition: Exceptions.hpp:18
+
const char * m_File
Definition: Exceptions.hpp:17
+
const char * m_Function
Definition: Exceptions.hpp:16
+
+
+
+ +

◆ FileLine()

+ +
+
+ + + + + +
+ + + + + + + +
std::string FileLine () const
+
+inline
+
+ +

Definition at line 37 of file Exceptions.hpp.

+
38  {
39  std::stringstream ss;
40  ss << " [" << m_File << ':' << m_Line << "]";
41  return ss.str();
42  }
unsigned int m_Line
Definition: Exceptions.hpp:18
+
const char * m_File
Definition: Exceptions.hpp:17
+
+
+
+

Member Data Documentation

+ +

◆ m_File

+ +
+
+ + + + +
const char* m_File
+
+ +

Definition at line 17 of file Exceptions.hpp.

+ +
+
+ +

◆ m_Function

+ +
+
+ + + + +
const char* m_Function
+
+ +

Definition at line 16 of file Exceptions.hpp.

+ +
+
+ +

◆ m_Line

+ +
+
+ + + + +
unsigned int m_Line
+
+ +

Definition at line 18 of file Exceptions.hpp.

+ +
+
+
The documentation for this struct was generated from the following file: +
+
+ + + + -- cgit v1.2.1