Home
last modified time | relevance | path

Searched refs:Found (Results 1 – 25 of 118) sorted by relevance

12345

/NextBSD/contrib/llvm/tools/clang/lib/Sema/
HDSemaCXXScopeSpec.cpp341 LookupResult Found(*this, NNS->getAsIdentifier(), SourceLocation(), in FindFirstQualifierInScope() local
343 LookupName(Found, S); in FindFirstQualifierInScope()
344 assert(!Found.isAmbiguous() && "Cannot handle ambiguities here yet"); in FindFirstQualifierInScope()
346 if (!Found.isSingleResult()) in FindFirstQualifierInScope()
349 NamedDecl *Result = Found.getFoundDecl(); in FindFirstQualifierInScope()
361 LookupResult Found(*this, &II, IdLoc, LookupNestedNameSpecifierName); in isNonTypeNestedNameSpecifier() local
377 Found.setContextRange(SS.getRange()); in isNonTypeNestedNameSpecifier()
391 LookupQualifiedName(Found, LookupCtx); in isNonTypeNestedNameSpecifier()
395 LookupName(Found, S); in isNonTypeNestedNameSpecifier()
397 Found.suppressDiagnostics(); in isNonTypeNestedNameSpecifier()
[all …]
HDSemaAccess.cpp1532 DeclAccessPair Found) { in CheckUnresolvedLookupAccess() argument
1535 Found.getAccess() == AS_public) in CheckUnresolvedLookupAccess()
1539 Found, QualType()); in CheckUnresolvedLookupAccess()
1548 DeclAccessPair Found) { in CheckUnresolvedMemberAccess() argument
1550 Found.getAccess() == AS_public) in CheckUnresolvedMemberAccess()
1558 Found, BaseType); in CheckUnresolvedMemberAccess()
1687 DeclAccessPair Found, in CheckAllocationAccess() argument
1691 Found.getAccess() == AS_public) in CheckAllocationAccess()
1694 AccessTarget Entity(Context, AccessTarget::Member, NamingClass, Found, in CheckAllocationAccess()
1706 DeclAccessPair Found) { in CheckMemberAccess() argument
[all …]
HDSemaLookup.cpp323 assert(ResultKind != Found || Decls.size() == 1); in sanity()
480 ResultKind = LookupResult::Found; in resolveKind()
674 bool Found = false; in LookupDirect() local
687 Found = true; in LookupDirect()
691 if (!Found && DC->isTranslationUnit() && LookupBuiltin(S, R)) in LookupDirect()
698 return Found; in LookupDirect()
706 return Found; in LookupDirect()
720 Found = true; in LookupDirect()
757 Found = true; in LookupDirect()
761 return Found; in LookupDirect()
[all …]
HDSemaTemplateInstantiateDecl.cpp459 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName()); in VisitTypeAliasTemplateDecl() local
460 if (!Found.empty()) { in VisitTypeAliasTemplateDecl()
461 PrevAliasTemplate = dyn_cast<TypeAliasTemplateDecl>(Found.front()); in VisitTypeAliasTemplateDecl()
944 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName()); in VisitClassTemplateDecl() local
945 if (!Found.empty()) { in VisitClassTemplateDecl()
946 PrevClassTemplate = dyn_cast<ClassTemplateDecl>(Found.front()); in VisitClassTemplateDecl()
1105 DeclContext::lookup_result Found in VisitClassTemplatePartialSpecializationDecl() local
1107 if (Found.empty()) in VisitClassTemplatePartialSpecializationDecl()
1111 = dyn_cast<ClassTemplateDecl>(Found.front()); in VisitClassTemplatePartialSpecializationDecl()
1138 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName()); in VisitVarTemplateDecl() local
[all …]
/NextBSD/contrib/llvm/lib/MC/
HDMCSubtargetInfo.cpp89 const SubtargetInfoKV *Found = in getSchedModelForCPU() local
91 if (Found == ProcSchedModels+NumProcs || StringRef(Found->Key) != CPU) { in getSchedModelForCPU()
98 assert(Found->Value && "Missing processor SchedModel value"); in getSchedModelForCPU()
99 return *(const MCSchedModel *)Found->Value; in getSchedModelForCPU()
/NextBSD/contrib/llvm/tools/clang/include/clang/Sema/
HDLookup.h43 Found, enumerator
249 return getResultKind() == Found; in isSingleResult()
374 ResultKind = Found; in addDecl()
381 ResultKind = Found; in addAllDecls()
430 ResultKind = Found; in resolveKindAfterFilter()
448 if (getResultKind() != Found) return nullptr; in getAsSingle()
458 assert(getResultKind() == Found in getFoundDecl()
471 return getResultKind() == Found && isa<TagDecl>(getFoundDecl()); in isSingleTagDecl()
/NextBSD/sys/contrib/dev/acpica/components/utilities/
HDutpredef.c429 UINT32 Found; in AcpiUtGetResourceBitWidth() local
434 Found = 0; in AcpiUtGetResourceBitWidth()
442 Found++; in AcpiUtGetResourceBitWidth()
448 return (Found); in AcpiUtGetResourceBitWidth()
/NextBSD/contrib/llvm/lib/CodeGen/
HDProcessImplicitDefs.cpp101 bool Found = false; in processImplicitDef() local
111 Found = true; in processImplicitDef()
115 if (Found) in processImplicitDef()
120 if (Found) { in processImplicitDef()
HDMachineInstr.cpp1217 bool Found = (MOReg == Reg); in findRegisterDefOperandIdx() local
1218 if (!Found && TRI && isPhys && in findRegisterDefOperandIdx()
1221 Found = TRI->regsOverlap(MOReg, Reg); in findRegisterDefOperandIdx()
1223 Found = TRI->isSubRegister(MOReg, Reg); in findRegisterDefOperandIdx()
1225 if (Found && (!isDead || MO.isDead())) in findRegisterDefOperandIdx()
1779 bool Found = false; in addRegisterKilled() local
1790 if (!Found) { in addRegisterKilled()
1798 Found = true; in addRegisterKilled()
1822 if (!Found && AddIfNotFound) { in addRegisterKilled()
1829 return Found; in addRegisterKilled()
[all …]
/NextBSD/contrib/llvm/lib/Support/
HDTriple.cpp632 bool Found[4]; in normalize() local
633 Found[0] = Arch != UnknownArch; in normalize()
634 Found[1] = Vendor != UnknownVendor; in normalize()
635 Found[2] = OS != UnknownOS; in normalize()
636 Found[3] = Environment != UnknownEnvironment; in normalize()
641 for (unsigned Pos = 0; Pos != array_lengthof(Found); ++Pos) { in normalize()
642 if (Found[Pos]) in normalize()
647 if (Idx < array_lengthof(Found) && Found[Idx]) in normalize()
695 while (i < array_lengthof(Found) && Found[i]) in normalize()
716 while (++i < array_lengthof(Found) && Found[i]) in normalize()
[all …]
/NextBSD/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/
HDVariantValue.cpp137 const DynTypedMatcher *Found = nullptr; in getTypedMatcher() local
142 if (Found) { in getTypedMatcher()
148 Found = &Matchers[i]; in getTypedMatcher()
154 if (Found && (FoundIsExact || NumFound == 1)) in getTypedMatcher()
155 return *Found; in getTypedMatcher()
/NextBSD/contrib/llvm/tools/clang/lib/Basic/
HDDiagnosticIDs.cpp152 const StaticDiagInfoRec *Found = &StaticDiagInfo[ID + Offset]; in GetDiagInfo() local
156 if (Found->DiagID != DiagID) in GetDiagInfo()
158 return Found; in GetDiagInfo()
556 const WarningOption *Found = std::lower_bound( in getDiagnosticsInGroup() local
558 if (Found == OptionTable + OptionTableSize || in getDiagnosticsInGroup()
559 Found->getName() != Group) in getDiagnosticsInGroup()
562 return ::getDiagnosticsInGroup(Flavor, Found, Diags); in getDiagnosticsInGroup()
/NextBSD/contrib/llvm/lib/Target/X86/
HDX86FixupLEAs.cpp208 bool Found; in searchBackwards() local
209 Found = getPreviousInstr(CurInst, MFI); in searchBackwards()
210 while (Found && I != CurInst) { in searchBackwards()
220 Found = getPreviousInstr(CurInst, MFI); in searchBackwards()
/NextBSD/sys/contrib/dev/acpica/components/namespace/
HDnsxfeval.c713 BOOLEAN Found; in ACPI_EXPORT_SYMBOL() local
782 Found = FALSE; in ACPI_EXPORT_SYMBOL()
789 Found = TRUE; in ACPI_EXPORT_SYMBOL()
795 if (!Found) in ACPI_EXPORT_SYMBOL()
/NextBSD/contrib/llvm/utils/TableGen/
HDRegisterInfoEmitter.cpp651 unsigned Found = ~0u; in emitComposeSubRegIndices() local
654 Found = r; in emitComposeSubRegIndices()
658 if (Found == ~0u) { in emitComposeSubRegIndices()
659 Found = Rows.size(); in emitComposeSubRegIndices()
660 Rows.resize(Found + 1); in emitComposeSubRegIndices()
664 RowMap.push_back(Found); in emitComposeSubRegIndices()
713 unsigned Found = ~0u; in emitComposeSubRegIndexLaneMask() local
720 Found = SIdx; in emitComposeSubRegIndexLaneMask()
724 if (Found == ~0u) { in emitComposeSubRegIndexLaneMask()
726 Found = SIdx; in emitComposeSubRegIndexLaneMask()
[all …]
/NextBSD/contrib/llvm/include/llvm/MC/
HDMCSubtargetInfo.h162 auto Found = std::find_if(ProcDesc.begin(), ProcDesc.end(), in isCPUStringValid() local
166 return Found != ProcDesc.end(); in isCPUStringValid()
/NextBSD/usr.sbin/bsdconfig/share/
HDdevice.subr272 f_dprintf "Found network device named %s" "$devname"
418 f_dprintf "Found CDROM device for disk %s" "$devname"
428 f_dprintf "Found disk device named %s" "$devname"
445 f_dprintf "Found floppy device named %s" "$devname"
456 f_dprintf "Found disk device named %s" "$devname"
508 f_dprintf "Found USB device for partition %s" \
530 f_dprintf "Found disk device named %s" "$devname"
544 f_dprintf "Found disk device named %s" "$devname"
604 f_dprintf "Found CDROM device labeled %s" "$devname"
629 f_dprintf "Found CDROM device for disk %s" "$devname"
[all …]
/NextBSD/contrib/llvm/tools/llvm-readobj/
HDStreamWriter.h83 bool Found = false; in printEnum() local
87 Found = true; in printEnum()
92 if (Found) { in printEnum()
/NextBSD/contrib/llvm/lib/TableGen/
HDTGLexer.cpp312 DependenciesMapTy::const_iterator Found = Dependencies.find(IncludedFile); in LexInclude() local
313 if (Found != Dependencies.end()) { in LexInclude()
316 SrcMgr.PrintMessage(Found->second, SourceMgr::DK_Note, in LexInclude()
/NextBSD/contrib/tcsh/nls/C/
HDset316 3 Found %s in %s.\n
/NextBSD/contrib/tcsh/nls/finnish/
HDset316 3 Found %s in %s.\n
/NextBSD/contrib/llvm/tools/clang/lib/Lex/
HDModuleMap.cpp469 Module *Found = KnownDir->second; in isHeaderUnavailableInModule() local
470 if (IsUnavailable(Found)) in isHeaderUnavailableInModule()
475 Module *UmbrellaModule = Found; in isHeaderUnavailableInModule()
486 Found = lookupModuleQualified(Name, Found); in isHeaderUnavailableInModule()
487 if (!Found) in isHeaderUnavailableInModule()
489 if (IsUnavailable(Found)) in isHeaderUnavailableInModule()
498 Found = lookupModuleQualified(Name, Found); in isHeaderUnavailableInModule()
499 if (!Found) in isHeaderUnavailableInModule()
503 return IsUnavailable(Found); in isHeaderUnavailableInModule()
/NextBSD/contrib/llvm/lib/Target/AArch64/
HDAArch64InstrInfo.cpp2463 bool Found = false; in getMachineCombinerPatterns() local
2489 Found = true; in getMachineCombinerPatterns()
2494 Found = true; in getMachineCombinerPatterns()
2501 Found = true; in getMachineCombinerPatterns()
2506 Found = true; in getMachineCombinerPatterns()
2513 Found = true; in getMachineCombinerPatterns()
2518 Found = true; in getMachineCombinerPatterns()
2525 Found = true; in getMachineCombinerPatterns()
2530 Found = true; in getMachineCombinerPatterns()
2537 Found = true; in getMachineCombinerPatterns()
[all …]
/NextBSD/contrib/llvm/tools/clang/lib/Frontend/
HDFrontendAction.cpp271 bool Found = false; in BeginSourceFile() local
280 Found = true; in BeginSourceFile()
285 if (!Found) { in BeginSourceFile()
/NextBSD/contrib/llvm/lib/Analysis/
HDStratifiedSets.h615 SmallVector<BuilderLink *, 8> Found; in tryMergeUpwards() local
619 Found.push_back(Current); in tryMergeUpwards()
638 for (const auto &Ptr : Found) in tryMergeUpwards()

12345