/external/llvm/lib/IR/ |
D | LLVMContextImpl.h | 469 bool IsDefinition; 482 bool IsLocalToUnit, bool IsDefinition, unsigned ScopeLine, 489 IsDefinition(IsDefinition), ScopeLine(ScopeLine), 498 IsLocalToUnit(N->isLocalToUnit()), IsDefinition(N->isDefinition()), 510 IsDefinition == RHS->isDefinition() && 522 IsLocalToUnit, IsDefinition, ScopeLine, ContainingType, 660 bool IsDefinition; 666 bool IsLocalToUnit, bool IsDefinition, Metadata *Variable, 670 IsDefinition(IsDefinition), Variable(Variable), 676 IsLocalToUnit(N->isLocalToUnit()), IsDefinition(N->isDefinition()), [all …]
|
D | DebugInfoMetadata.cpp | 343 bool IsLocalToUnit, bool IsDefinition, unsigned ScopeLine, in getImpl() argument 352 Line, Type, IsLocalToUnit, IsDefinition, ScopeLine, in getImpl() 360 IsLocalToUnit, IsDefinition, IsOptimized), in getImpl() 443 Metadata *Type, bool IsLocalToUnit, bool IsDefinition, in getImpl() argument 451 Line, Type, IsLocalToUnit, IsDefinition, Variable, in getImpl() 455 DEFINE_GETIMPL_STORE(DIGlobalVariable, (Line, IsLocalToUnit, IsDefinition), in getImpl()
|
/external/llvm/unittests/IR/ |
D | MetadataTest.cpp | 1413 bool IsDefinition = true; in TEST_F() local 1426 IsDefinition, ScopeLine, ContainingType, Virtuality, VirtualIndex, Flags, in TEST_F() 1437 EXPECT_EQ(IsDefinition, N->isDefinition()); in TEST_F() 1448 Type, IsLocalToUnit, IsDefinition, ScopeLine, in TEST_F() 1454 File, Line, Type, IsLocalToUnit, IsDefinition, in TEST_F() 1459 Line, Type, IsLocalToUnit, IsDefinition, in TEST_F() 1464 Type, IsLocalToUnit, IsDefinition, ScopeLine, in TEST_F() 1469 Line, Type, IsLocalToUnit, IsDefinition, in TEST_F() 1474 Line + 1, Type, IsLocalToUnit, IsDefinition, in TEST_F() 1480 IsDefinition, ScopeLine, ContainingType, in TEST_F() [all …]
|
/external/llvm/include/llvm/IR/ |
D | DebugInfoMetadata.h | 1230 bool IsDefinition; 1235 unsigned Flags, bool IsLocalToUnit, bool IsDefinition, 1241 IsDefinition(IsDefinition), IsOptimized(IsOptimized) {} 1247 DISubroutineType *Type, bool IsLocalToUnit, bool IsDefinition, 1255 IsLocalToUnit, IsDefinition, ScopeLine, ContainingType, 1263 bool IsLocalToUnit, bool IsDefinition, unsigned ScopeLine, 1281 bool IsLocalToUnit, bool IsDefinition, unsigned ScopeLine, 1288 IsDefinition, ScopeLine, ContainingType, Virtuality, 1294 unsigned Line, Metadata *Type, bool IsLocalToUnit, bool IsDefinition, 1299 (Scope, Name, LinkageName, File, Line, Type, IsLocalToUnit, IsDefinition, [all …]
|
/external/clang/include/clang/Lex/ |
D | CodeCompletionHandler.h | 47 virtual void CodeCompleteMacroName(bool IsDefinition) { } in CodeCompleteMacroName() argument
|
/external/clang/unittests/ASTMatchers/Dynamic/ |
D | RegistryTest.cpp | 231 const VariantMatcher IsDefinition = constructMatcher("isDefinition"); in TEST_F() local 233 constructMatcher("varDecl", IsDefinition).getTypedMatcher<Decl>(); in TEST_F() 235 constructMatcher("recordDecl", IsDefinition).getTypedMatcher<Decl>(); in TEST_F() 237 constructMatcher("functionDecl", IsDefinition).getTypedMatcher<Decl>(); in TEST_F()
|
/external/llvm/bindings/go/llvm/ |
D | DIBuilderBindings.cpp | 76 LLVMMetadataRef CompositeType, int IsLocalToUnit, int IsDefinition, in LLVMDIBuilderCreateFunction() argument 82 IsLocalToUnit, IsDefinition, ScopeLine, Flags, in LLVMDIBuilderCreateFunction()
|
D | DIBuilderBindings.h | 57 LLVMMetadataRef CompositeType, int IsLocalToUnit, int IsDefinition,
|
D | dibuilder.go | 188 IsDefinition bool member 209 boolToCInt(f.IsDefinition),
|
/external/clang/lib/AST/ |
D | DeclBase.cpp | 512 bool Decl::canBeWeakImported(bool &IsDefinition) const { in canBeWeakImported() 513 IsDefinition = false; in canBeWeakImported() 518 IsDefinition = true; in canBeWeakImported() 526 IsDefinition = true; in canBeWeakImported() 543 bool IsDefinition; in isWeakImported() local 544 if (!canBeWeakImported(IsDefinition)) in isWeakImported()
|
/external/google-breakpad/src/testing/scripts/generator/cpp/ |
D | ast.py | 119 def IsDefinition(self): member in Node 277 def IsDefinition(self): member in Typedef 301 def IsDefinition(self): member in _NestedType 330 def IsDefinition(self): member in Class 373 def IsDefinition(self): member in Function 450 def IsDefinition(self): member in Type
|
/external/llvm/include/llvm/CodeGen/ |
D | AsmPrinter.h | 537 bool IsDefinition = true) const;
|
/external/clang/lib/Parse/ |
D | Parser.cpp | 1863 void Parser::CodeCompleteMacroName(bool IsDefinition) { in CodeCompleteMacroName() argument 1864 Actions.CodeCompletePreprocessorMacroName(IsDefinition); in CodeCompleteMacroName()
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | AsmPrinter.cpp | 2464 bool IsDefinition) const { in EmitVisibility() 2470 if (IsDefinition) in EmitVisibility()
|
/external/clang/include/clang/AST/ |
D | DeclBase.h | 626 bool canBeWeakImported(bool &IsDefinition) const;
|
/external/clang/lib/Sema/ |
D | SemaCodeComplete.cpp | 7433 void Sema::CodeCompletePreprocessorMacroName(bool IsDefinition) { in CodeCompletePreprocessorMacroName() argument 7436 IsDefinition? CodeCompletionContext::CCC_MacroName in CodeCompletePreprocessorMacroName() 7438 if (!IsDefinition && (!CodeCompleter || CodeCompleter->includeMacros())) { in CodeCompletePreprocessorMacroName() 7453 } else if (IsDefinition) { in CodeCompletePreprocessorMacroName()
|
D | SemaDecl.cpp | 6889 bool IsDefinition = ExtraArgs.D.isFunctionDefinition(); in DiagnoseInvalidRedeclaration() local 6974 << Name << NewDC << IsDefinition); in DiagnoseInvalidRedeclaration() 6987 << Name << NewDC << IsDefinition << NewFD->getLocation(); in DiagnoseInvalidRedeclaration()
|
/external/clang/include/clang/Parse/ |
D | Parser.h | 2584 void CodeCompleteMacroName(bool IsDefinition) override;
|
/external/clang/unittests/ASTMatchers/ |
D | ASTMatchersTest.cpp | 2687 TEST(Matcher, IsDefinition) { in TEST() argument
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 8928 void CodeCompletePreprocessorMacroName(bool IsDefinition);
|