Home
last modified time | relevance | path

Searched refs:IsDefinition (Results 1 – 20 of 20) sorted by relevance

/external/llvm/lib/IR/
DLLVMContextImpl.h469 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 …]
DDebugInfoMetadata.cpp343 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/
DMetadataTest.cpp1413 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/
DDebugInfoMetadata.h1230 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/
DCodeCompletionHandler.h47 virtual void CodeCompleteMacroName(bool IsDefinition) { } in CodeCompleteMacroName() argument
/external/clang/unittests/ASTMatchers/Dynamic/
DRegistryTest.cpp231 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/
DDIBuilderBindings.cpp76 LLVMMetadataRef CompositeType, int IsLocalToUnit, int IsDefinition, in LLVMDIBuilderCreateFunction() argument
82 IsLocalToUnit, IsDefinition, ScopeLine, Flags, in LLVMDIBuilderCreateFunction()
DDIBuilderBindings.h57 LLVMMetadataRef CompositeType, int IsLocalToUnit, int IsDefinition,
Ddibuilder.go188 IsDefinition bool member
209 boolToCInt(f.IsDefinition),
/external/clang/lib/AST/
DDeclBase.cpp512 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/
Dast.py119 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/
DAsmPrinter.h537 bool IsDefinition = true) const;
/external/clang/lib/Parse/
DParser.cpp1863 void Parser::CodeCompleteMacroName(bool IsDefinition) { in CodeCompleteMacroName() argument
1864 Actions.CodeCompletePreprocessorMacroName(IsDefinition); in CodeCompleteMacroName()
/external/llvm/lib/CodeGen/AsmPrinter/
DAsmPrinter.cpp2464 bool IsDefinition) const { in EmitVisibility()
2470 if (IsDefinition) in EmitVisibility()
/external/clang/include/clang/AST/
DDeclBase.h626 bool canBeWeakImported(bool &IsDefinition) const;
/external/clang/lib/Sema/
DSemaCodeComplete.cpp7433 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()
DSemaDecl.cpp6889 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/
DParser.h2584 void CodeCompleteMacroName(bool IsDefinition) override;
/external/clang/unittests/ASTMatchers/
DASTMatchersTest.cpp2687 TEST(Matcher, IsDefinition) { in TEST() argument
/external/clang/include/clang/Sema/
DSema.h8928 void CodeCompletePreprocessorMacroName(bool IsDefinition);