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

1 2

  /external/v8/tools/
jsmin.py 38 around curly braces, so the declaration must be above the first use.
89 def Declaration(self, m):
294 self.Declaration,
  /external/llvm/lib/Transforms/IPO/
ExtractGV.cpp 100 // Make this a declaration and drop it's comdat.
118 // Make this a declaration and drop it's comdat.
137 llvm::Value *Declaration;
139 Declaration = Function::Create(FTy, GlobalValue::ExternalLinkage,
143 Declaration =
148 CurI->replaceAllUsesWith(Declaration);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/
ExtractGV.cpp 98 // Make this a declaration and drop it's comdat.
116 // Make this a declaration and drop it's comdat.
135 llvm::Value *Declaration;
137 Declaration = Function::Create(FTy, GlobalValue::ExternalLinkage,
141 Declaration =
146 CurI->replaceAllUsesWith(Declaration);
  /bionic/tools/versioner/src/
DeclarationDatabase.h 123 struct Declaration {
133 bool operator<(const Declaration& rhs) const {
142 fprintf(out, "%s ", is_definition ? "definition" : "declaration");
164 std::map<Location, Declaration> declarations;
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_parse.h 62 struct tgsi_declaration Declaration;
  /external/pdfium/core/fxcrt/xml/
cfx_saxreader.h 27 Declaration,
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Linker/
LinkModules.cpp 273 // Link an available_externally over a declaration.
442 GlobalValue *Declaration;
444 Declaration = Function::Create(FTy, GlobalValue::ExternalLinkage, "", &M);
446 Declaration =
451 Declaration->takeName(&Alias);
452 Alias.replaceAllUsesWith(Declaration);
  /external/virglrenderer/src/gallium/auxiliary/tgsi/
tgsi_parse.h 62 struct tgsi_declaration Declaration;
  /external/clang/include/clang/Index/
IndexSymbol.h 75 Declaration = 1 << 0,
  /external/libevent/
event_rpcgen.py 103 print >>file, '/* Structure declaration for %s */' % self._name
118 dcl = entry.Declaration()
532 def Declaration(self):
651 def Declaration(self):
763 def Declaration(self):
936 def Declaration(self):
    [all...]
  /external/llvm/lib/Linker/
LinkModules.cpp 116 /// import SGV as a definition, otherwise import as a declaration.
297 // Link an available_externally over a declaration.
471 GlobalValue *Declaration;
473 Declaration = Function::Create(FTy, GlobalValue::ExternalLinkage, "", &M);
475 Declaration =
480 Declaration->takeName(&Alias);
481 Alias.replaceAllUsesWith(Declaration);
  /external/swiftshader/third_party/subzero/src/
IceGlobalInits.h 87 /// Prints out type of the global declaration.
90 /// Prints out the global declaration.
110 /// Returns true if linkage is defined correctly for the global declaration,
128 /// Models a function declaration. This includes the type signature of the
155 /// Returns true if linkage is correct for the function declaration.
219 /// Models a global variable declaration, and its initializers.
331 /// Defines the relocation value of another global declaration.
338 const GlobalDeclaration *Declaration,
342 RelocInitializer(VDL, Declaration, OffsetExpr, NoFixup);
346 const GlobalDeclaration *Declaration,
    [all...]
  /external/clang/include/clang/AST/
TemplateBase.h 49 /// The template argument is a declaration that was provided for a pointer,
51 Declaration,
134 /// declaration, which is either an external declaration or a
135 /// template declaration.
138 DeclArg.Kind = Declaration;
243 /// \brief Retrieve the declaration for a declaration non-type
246 assert(getKind() == Declaration && "Unexpected kind");
251 assert(getKind() == Declaration && "Unexpected kind")
    [all...]
  /external/clang/lib/Index/
CommentToXML.cpp 567 SmallString<128> &Declaration);
594 const DeclInfo *DI, SmallString<128> &Declaration) {
596 StringRef StringDecl(Declaration.c_str(), Declaration.size());
607 unsigned Length = Declaration.size();
613 Declaration = FormatRewriterContext.getRewrittenText(ID);
947 // Pretty-print the declaration.
948 Result << "<Declaration>";
949 SmallString<128> Declaration;
950 getSourceTextOfDeclaration(DI, Declaration);
    [all...]
  /external/autotest/site_utils/rpm_control_system/
BeautifulSoup.py 502 class Declaration(NavigableString):
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
DebugInfo.cpp 430 DISubprogram *Declaration = nullptr;
445 TemplateParams, Declaration, Variables);
456 MDS->getFlags(), MDS->isOptimized(), Unit, TemplateParams, Declaration,
    [all...]
LLVMContextImpl.h 621 Metadata *Declaration;
631 Metadata *Declaration, Metadata *RetainedNodes,
639 TemplateParams(TemplateParams), Declaration(Declaration),
651 Declaration(N->getRawDeclaration()), RetainedNodes(N->getRawRetainedNodes()),
668 Declaration == RHS->getRawDeclaration() &&
674 // If this is a declaration inside an ODR type, only hash the type and the
    [all...]
  /external/v8/src/torque/
ast.h 144 struct Declaration : AstNode {
145 Declaration(Kind kind, SourcePosition pos) : AstNode(kind, pos) {}
146 DEFINE_AST_NODE_INNER_BOILERPLATE(Declaration)
156 struct ModuleDeclaration : Declaration {
158 std::vector<Declaration*> declarations)
159 : Declaration(kind, pos),
167 std::vector<Declaration*> declarations;
173 std::vector<Declaration*> declarations)
181 std::vector<Declaration*> declarations)
191 std::vector<Declaration*>& declarations()
    [all...]
  /external/clang/lib/AST/
ASTDiagnostic.cpp 407 assert(DC && "Should never have a null declaration context");
507 /// Integer or Declaration, then use that diff type instead.
513 /// Declaration difference, nullptr arguments are included here
514 Declaration,
515 /// One argument being integer and the other being declaration
642 FlatTree[CurrentNode].Kind = Declaration;
794 assert(FlatTree[ReadNode].Kind == Declaration && "Unexpected kind.");
    [all...]
  /external/llvm/lib/IR/
LLVMContextImpl.h 536 Metadata *Declaration;
545 Metadata *Declaration, Metadata *Variables)
552 TemplateParams(TemplateParams), Declaration(Declaration),
564 Declaration(N->getRawDeclaration()), Variables(N->getRawVariables()) {}
580 Declaration == RHS->getRawDeclaration() &&
584 // If this is a declaration inside an ODR type, only hash the type and the
    [all...]
  /external/llvm/unittests/IR/
MetadataTest.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/IR/
MetadataTest.cpp     [all...]
  /external/v8/src/ast/
ast.h 119 class Declaration;
384 class Declaration : public AstNode {
386 typedef ThreadedList<Declaration> List;
391 Declaration(VariableProxy* proxy, int pos, NodeType type)
397 Declaration** next() { return &next_; }
398 Declaration* next_;
402 class VariableDeclaration : public Declaration {
410 : public BitField<bool, Declaration::kNextBitFieldIndex, 1> {};
414 : Declaration(proxy, pos, kVariableDeclaration) {
434 // Nested scope from which the declaration originated
    [all...]
  /external/v8/src/interpreter/
bytecode-generator.cc 692 // Used to build a list of global declaration initial value pairs.
704 declarations_.push_back(Declaration(name, slot, literal_slot, func));
709 declarations_.push_back(Declaration(name, slot, nullptr));
719 for (const Declaration& declaration : declarations_) {
720 FunctionLiteral* func = declaration.func;
732 data->set(array_index++, *declaration.name->string());
733 data->set(array_index++, Smi::FromInt(declaration.slot.ToInt()));
735 if (declaration.literal_slot.IsInvalid()) {
739 Smi::FromInt(declaration.literal_slot.ToInt())
    [all...]
  /external/v8/src/parsing/
parser-base.h 523 struct Declaration {
524 Declaration(ExpressionT pattern, int initializer_position,
541 std::vector<Declaration> declarations;
    [all...]

Completed in 4921 milliseconds

1 2