HomeSort by relevance Sort by last modified time
    Searched refs:Declaration (Results 1 - 25 of 118) sorted by null

1 2 3 4 5

  /external/lldb/include/lldb/Symbol/
Declaration.h 1 //===-- Declaration.h -------------------------------------------*- C++ -*-===//
19 /// @class Declaration Declaration.h "lldb/Symbol/Declaration.h"
20 /// @brief A class that describes the declaration location of a
28 class Declaration
34 Declaration () :
59 Declaration (const FileSpec& file_spec, uint32_t line = 0, uint32_t column = 0) :
69 /// Construct with a reference to another Declaration object.
71 Declaration (const Declaration& rhs)
    [all...]
Function.h 16 #include "lldb/Symbol/Declaration.h"
34 /// Construct with the function method name and optional declaration
43 /// Optional declaration information that describes where the
46 FunctionInfo (const char *name, const Declaration *decl_ptr);
49 /// Construct with the function method name and optional declaration
57 /// Optional declaration information that describes where the
60 FunctionInfo (const ConstString& name, const Declaration *decl_ptr);
74 /// the declaration information.
103 /// Get accessor for the declaration information.
106 /// A reference to the declaration object
    [all...]
Variable.h 20 #include "lldb/Symbol/Declaration.h"
36 Declaration* decl,
52 const Declaration&
172 Declaration m_declaration; // Declaration location for this item.
Block.h 387 /// A optional pointer to declaration information for the
389 /// indicate that no declaration information is available.
392 /// Optional calling location declaration information that
398 const Declaration *decl_ptr,
399 const Declaration *call_decl_ptr);
  /external/lldb/include/lldb/API/
SBDeclaration.h 63 lldb_private::Declaration *
69 const lldb_private::Declaration *
72 lldb_private::Declaration &
75 const lldb_private::Declaration &
78 SBDeclaration (const lldb_private::Declaration *lldb_object_ptr);
81 SetDeclaration (const lldb_private::Declaration &lldb_object_ref);
83 std::unique_ptr<lldb_private::Declaration> m_opaque_ap;
  /external/lldb/source/Symbol/
Declaration.cpp 1 //===-- Declaration.cpp -----------------------------------------*- C++ -*-===//
10 #include "lldb/Symbol/Declaration.h"
16 Declaration::Dump(Stream *s, bool show_fullpaths) const
50 Declaration::DumpStopContext (Stream *s, bool show_fullpaths) const
80 Declaration::MemorySize() const
82 return sizeof(Declaration);
86 Declaration::Compare(const Declaration& a, const Declaration& b)
105 lldb_private::operator == (const Declaration &lhs, const Declaration &rhs
    [all...]
Function.cpp 26 // It is designed to contain the name, linkage name, and declaration
29 FunctionInfo::FunctionInfo (const char *name, const Declaration *decl_ptr) :
36 FunctionInfo::FunctionInfo (const ConstString& name, const Declaration *decl_ptr) :
63 return Declaration::Compare(a.m_declaration, b.m_declaration);
67 Declaration&
73 const Declaration&
96 const Declaration *decl_ptr,
97 const Declaration *call_decl_ptr
109 const Declaration *decl_ptr,
110 const Declaration *call_decl_pt
    [all...]
Android.mk 23 Declaration.cpp \
  /external/lldb/source/API/
SBDeclaration.cpp 14 #include "lldb/Symbol/Declaration.h"
34 SBDeclaration::SBDeclaration (const lldb_private::Declaration *lldb_object_ptr) :
55 SBDeclaration::SetDeclaration (const lldb_private::Declaration &lldb_object_ref)
142 lldb_private::Declaration *lhs_ptr = m_opaque_ap.get();
143 lldb_private::Declaration *rhs_ptr = rhs.m_opaque_ap.get();
146 return lldb_private::Declaration::Compare (*lhs_ptr, *rhs_ptr) == 0;
154 lldb_private::Declaration *lhs_ptr = m_opaque_ap.get();
155 lldb_private::Declaration *rhs_ptr = rhs.m_opaque_ap.get();
158 return lldb_private::Declaration::Compare (*lhs_ptr, *rhs_ptr) != 0;
163 const lldb_private::Declaration *
    [all...]
  /external/lldb/source/Plugins/SymbolFile/DWARF/
UniqueDWARFASTType.h 21 #include "lldb/Symbol/Declaration.h"
47 const lldb_private::Declaration &decl,
91 lldb_private::Declaration m_declaration;
123 const lldb_private::Declaration &decl,
156 const lldb_private::Declaration &decl,
UniqueDWARFASTType.cpp 16 #include "lldb/Symbol/Declaration.h"
26 const lldb_private::Declaration &decl,
  /external/llvm/lib/Transforms/IPO/
ExtractGV.cpp 128 llvm::Value *Declaration;
130 Declaration = Function::Create(FTy, GlobalValue::ExternalLinkage,
134 Declaration =
139 CurI->replaceAllUsesWith(Declaration);
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_parse.c 108 copy_token(&decl->Declaration, &token);
112 if (decl->Declaration.Dimension) {
116 if( decl->Declaration.Interpolate ) {
120 if( decl->Declaration.Semantic ) {
124 if (decl->Declaration.File == TGSI_FILE_IMMEDIATE_ARRAY) {
135 if (decl->Declaration.File == TGSI_FILE_RESOURCE) {
139 if (decl->Declaration.File == TGSI_FILE_SAMPLER_VIEW) {
tgsi_dump.c 248 ENM(decl->Declaration.File, tgsi_file_names);
251 if (decl->Declaration.File == TGSI_FILE_INPUT &&
256 if (decl->Declaration.Dimension) {
272 decl->Declaration.UsageMask );
274 if (decl->Declaration.Local)
277 if (decl->Declaration.Semantic) {
288 if (decl->Declaration.File == TGSI_FILE_RESOURCE) {
297 if (decl->Declaration.File == TGSI_FILE_SAMPLER_VIEW) {
316 if (decl->Declaration.Interpolate) {
318 decl->Declaration.File == TGSI_FILE_INPUT
    [all...]
tgsi_build.c 83 * declaration
88 struct tgsi_declaration *declaration,
91 assert( declaration->NrTokens < 0xFF );
93 declaration->NrTokens++;
101 struct tgsi_declaration declaration; local
103 declaration.Type = TGSI_TOKEN_TYPE_DECLARATION;
104 declaration.NrTokens = 1;
105 declaration.File = TGSI_FILE_NULL;
106 declaration.UsageMask = TGSI_WRITEMASK_XYZW;
107 declaration.Interpolate = 0
128 struct tgsi_declaration declaration; local
354 struct tgsi_declaration *declaration; local
    [all...]
tgsi_parse.h 67 struct tgsi_declaration Declaration;
  /external/lldb/include/lldb/Core/
ValueObjectVariable.h 59 GetDeclaration (Declaration &decl);
  /external/v8/src/
prettyprinter.h 52 void PrintDeclarations(ZoneList<Declaration*>* declarations);
80 void PrintDeclarations(ZoneList<Declaration*>* declarations);
scopes.h 17 // A hash map to support fast variable declaration and lookup.
120 void DeclareFunctionVar(VariableDeclaration* declaration) {
122 function_ = declaration;
179 // Adds the specific declaration node to the list of declarations in
182 void AddDeclaration(Declaration* declaration);
201 // declarations, i.e. a var declaration that has been hoisted from a nested
203 Declaration* CheckConflictingVarDeclarations();
327 ZoneList<Declaration*>* declarations() { return &decls_; }
449 ZoneList<Declaration*> decls_
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/
r300_vs_draw.c 83 decl.Declaration.File = TGSI_FILE_TEMPORARY;
96 decl.Declaration.File = TGSI_FILE_OUTPUT;
97 decl.Declaration.Interpolate = 1;
98 decl.Declaration.Semantic = TRUE;
151 if (decl->Declaration.File == TGSI_FILE_OUTPUT) {
205 } else if (decl->Declaration.File == TGSI_FILE_TEMPORARY) {
214 if (decl->Declaration.File == TGSI_FILE_OUTPUT &&
  /external/clang/include/clang/Sema/
CodeCompleteConsumer.h 41 /// \brief Priority for a declaration that is in the local scope.
43 /// \brief Priority for a member declaration found from the current
51 /// \brief Priority for a non-type declaration.
123 /// \brief Determine the type that this declaration will have if it is used
141 /// declaration.
176 /// \brief Code completion occurred where a statement (or declaration) is
440 /// \brief A brief documentation comment attached to the declaration of
626 RK_Declaration = 0, ///< Refers to a declaration
632 /// \brief When Kind == RK_Declaration or RK_Pattern, the declaration we are
633 /// referring to. In the latter case, the declaration might be NULL
    [all...]
  /external/clang/lib/Sema/
CodeCompleteConsumer.cpp 443 OS << *Results[I].Declaration;
523 /// \brief Retrieve the effective availability of the given declaration.
534 if (!Declaration) {
542 switch (getDeclAvailability(Declaration)) {
557 if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(Declaration))
561 CursorKind = getCursorKindForDecl(Declaration);
566 if (isa<ObjCInterfaceDecl>(Declaration))
568 else if (isa<ObjCProtocolDecl>(Declaration))
606 DeclarationName Name = R.Declaration->getDeclName();
  /external/mesa3d/src/gallium/auxiliary/util/
u_pstipple.c 193 * TGSI declaration transform callback.
205 if (decl->Declaration.File == TGSI_FILE_SAMPLER) {
211 else if (decl->Declaration.File == TGSI_FILE_INPUT) {
216 else if (decl->Declaration.File == TGSI_FILE_TEMPORARY) {
300 decl.Declaration.File = TGSI_FILE_INPUT;
301 decl.Declaration.Interpolate = 1;
302 decl.Declaration.Semantic = 1;
313 decl.Declaration.File = TGSI_FILE_SAMPLER;
320 decl.Declaration.File = TGSI_FILE_TEMPORARY;
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_pstipple.c 135 * TGSI declaration transform callback.
144 if (decl->Declaration.File == TGSI_FILE_SAMPLER) {
151 else if (decl->Declaration.File == TGSI_FILE_INPUT) {
156 else if (decl->Declaration.File == TGSI_FILE_TEMPORARY) {
169 * TGSI immediate declaration transform callback.
236 decl.Declaration.File = TGSI_FILE_INPUT;
237 decl.Declaration.Interpolate = 1;
238 decl.Declaration.Semantic = 1;
249 decl.Declaration.File = TGSI_FILE_SAMPLER;
256 decl.Declaration.File = TGSI_FILE_TEMPORARY
    [all...]
  /external/v8/tools/
jsmin.py 38 around curly braces, so the declaration must be above the first use.
89 def Declaration(self, m):
278 self.Declaration,

Completed in 255 milliseconds

1 2 3 4 5