HomeSort by: relevance | last modified time | path
    Searched refs:IsDefinition (Results 1 - 20 of 20) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/Lex/
CodeCompletionHandler.h 46 /// \param IsDefinition Whether this is the definition of a macro, e.g.,
48 virtual void CodeCompleteMacroName(bool IsDefinition) { }
  /src/external/apache2/llvm/dist/llvm/lib/IR/
DIBuilder.cpp 601 cast<DISubprogram>(T)->isDefinition() == false)) &&
816 bool IsDefinition = SPFlags & DISubprogram::SPFlagDefinition;
818 /*IsDistinct=*/IsDefinition, VMContext, getNonCompileUnitScope(Context),
820 SPFlags, IsDefinition ? CUNode : nullptr, TParams, Decl,
823 if (IsDefinition)
835 bool IsDefinition = SPFlags & DISubprogram::SPFlagDefinition;
839 IsDefinition ? CUNode : nullptr, TParams,
854 bool IsDefinition = SPFlags & DISubprogram::SPFlagDefinition;
856 /*IsDistinct=*/IsDefinition, VMContext, cast<DIScope>(Context), Name,
858 Flags, SPFlags, IsDefinition ? CUNode : nullptr, TParams, nullptr
    [all...]
LLVMContextImpl.h 738 bool isDefinition() const { return SPFlags & DISubprogram::SPFlagDefinition; }
744 if (!isDefinition() && LinkageName)
761 return isDeclarationOfODRMember(LHS.isDefinition(), LHS.Scope,
766 return isDeclarationOfODRMember(LHS->isDefinition(), LHS->getRawScope(),
773 static bool isDeclarationOfODRMember(bool IsDefinition, const Metadata *Scope,
778 if (IsDefinition || !Scope || !LinkageName)
791 return IsDefinition == RHS->isDefinition() && Scope == RHS->getRawScope() &&
975 bool IsDefinition;
982 bool IsLocalToUnit, bool IsDefinition,
    [all...]
DebugInfo.cpp 844 pack_into_DISPFlags(bool IsLocalToUnit, bool IsDefinition, bool IsOptimized) {
845 return DISubprogram::toSPFlags(IsLocalToUnit, IsDefinition, IsOptimized);
929 LLVMBool IsLocalToUnit, LLVMBool IsDefinition,
935 pack_into_DISPFlags(IsLocalToUnit, IsDefinition, IsOptimized), nullptr,
DebugInfoMetadata.cpp 977 Metadata *Type, bool IsLocalToUnit, bool IsDefinition,
984 Type, IsLocalToUnit, IsDefinition,
996 (Line, IsLocalToUnit, IsDefinition, AlignInBits), Ops);
  /src/external/apache2/llvm/dist/llvm/bindings/go/llvm/
ir_test.go 123 IsDefinition: true,
dibuilder.go 202 IsDefinition bool
223 C.LLVMBool(boolToCInt(f.IsDefinition)),
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
DebugInfoMetadata.h 1835 static DISPFlags toSPFlags(bool IsLocalToUnit, bool IsDefinition,
1847 (IsDefinition ? SPFlagDefinition : SPFlagZero) |
1947 bool isDefinition() const { return getSPFlags() & SPFlagDefinition; }
2913 bool IsDefinition;
2916 bool IsLocalToUnit, bool IsDefinition, uint32_t AlignInBits,
2919 IsLocalToUnit(IsLocalToUnit), IsDefinition(IsDefinition) {}
2925 bool IsLocalToUnit, bool IsDefinition,
2930 IsLocalToUnit, IsDefinition, StaticDataMemberDeclaration,
2937 bool IsLocalToUnit, bool IsDefinition,
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
DeclBase.cpp 688 bool Decl::canBeWeakImported(bool &IsDefinition) const {
689 IsDefinition = false;
694 IsDefinition = true;
702 IsDefinition = true;
718 bool IsDefinition;
719 if (!canBeWeakImported(IsDefinition))
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
AsmPrinter.h 746 bool IsDefinition = true) const;
  /src/external/apache2/llvm/dist/llvm/bindings/ocaml/debuginfo/
debuginfo_ocaml.c 285 value IsDefinition, value ScopeLine, value Flags, value IsOptimized) {
289 Int_val(LineNo), Ty, Bool_val(IsLocalToUnit), Bool_val(IsDefinition),
302 argv[8], // IsDefinition
  /src/external/apache2/llvm/dist/llvm/lib/FileCheck/
FileCheck.cpp 1030 bool IsDefinition = false;
1061 IsDefinition = (VarEndIdx != StringRef::npos);
1062 SubstNeeded = !IsDefinition;
1063 if (IsDefinition) {
1113 IsDefinition = true;
1125 if (IsDefinition) {
1156 if (IsDefinition)
  /src/external/apache2/llvm/dist/llvm/include/llvm-c/
DebugInfo.h 331 * \param IsDefinition True if this is a function definition.
341 LLVMBool IsLocalToUnit, LLVMBool IsDefinition,
  /src/external/apache2/llvm/dist/clang/lib/Parse/
Parser.cpp 2155 void Parser::CodeCompleteMacroName(bool IsDefinition) {
2156 Actions.CodeCompletePreprocessorMacroName(IsDefinition);
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
DeclBase.h 710 /// \param IsDefinition Set to \c true to indicate that this
712 bool canBeWeakImported(bool &IsDefinition) const;
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDecl.cpp 6486 bool IsDefinition) {
6495 IsDefinition = false;
6563 IsDefinition = VD->isThisDeclarationADefinition(S.Context) !=
6574 if (IsMicrosoftABI && IsDefinition) {
8302 bool IsDefinition = ExtraArgs.D.isFunctionDefinition();
8391 << Name << NewDC << IsDefinition);
8404 << Name << NewDC << IsDefinition << NewFD->getLocation();
10053 /// \param IsDefinition Whether it is a definition or just a declarartion.
10057 bool IsDefinition) {
10060 if (!FD->hasAttr<SectionAttr>() && IsDefinition &
    [all...]
SemaCodeComplete.cpp 9331 void Sema::CodeCompletePreprocessorMacroName(bool IsDefinition) {
9334 IsDefinition ? CodeCompletionContext::CCC_MacroName
9336 if (!IsDefinition && (!CodeCompleter || CodeCompleter->includeMacros())) {
9350 } else if (IsDefinition) {
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp 3304 bool IsDefinition) const {
3310 if (IsDefinition)
  /src/external/apache2/llvm/dist/clang/include/clang/Parse/
Parser.h 3467 void CodeCompleteMacroName(bool IsDefinition) override;
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Sema.h 2700 bool IsDefinition);
2985 TagTypeKind NewTag, bool isDefinition,
12375 void CodeCompletePreprocessorMacroName(bool IsDefinition);

Completed in 69 milliseconds