| /NextBSD/contrib/llvm/tools/clang/lib/Sema/ |
| HD | SemaCXXScopeSpec.cpp | 341 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 …]
|
| HD | SemaAccess.cpp | 1532 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 …]
|
| HD | SemaLookup.cpp | 323 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 …]
|
| HD | SemaTemplateInstantiateDecl.cpp | 459 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/ |
| HD | MCSubtargetInfo.cpp | 89 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/ |
| HD | Lookup.h | 43 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/ |
| HD | utpredef.c | 429 UINT32 Found; in AcpiUtGetResourceBitWidth() local 434 Found = 0; in AcpiUtGetResourceBitWidth() 442 Found++; in AcpiUtGetResourceBitWidth() 448 return (Found); in AcpiUtGetResourceBitWidth()
|
| /NextBSD/contrib/llvm/lib/CodeGen/ |
| HD | ProcessImplicitDefs.cpp | 101 bool Found = false; in processImplicitDef() local 111 Found = true; in processImplicitDef() 115 if (Found) in processImplicitDef() 120 if (Found) { in processImplicitDef()
|
| HD | MachineInstr.cpp | 1217 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/ |
| HD | Triple.cpp | 632 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/ |
| HD | VariantValue.cpp | 137 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/ |
| HD | DiagnosticIDs.cpp | 152 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/ |
| HD | X86FixupLEAs.cpp | 208 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/ |
| HD | nsxfeval.c | 713 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/ |
| HD | RegisterInfoEmitter.cpp | 651 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/ |
| HD | MCSubtargetInfo.h | 162 auto Found = std::find_if(ProcDesc.begin(), ProcDesc.end(), in isCPUStringValid() local 166 return Found != ProcDesc.end(); in isCPUStringValid()
|
| /NextBSD/usr.sbin/bsdconfig/share/ |
| HD | device.subr | 272 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/ |
| HD | StreamWriter.h | 83 bool Found = false; in printEnum() local 87 Found = true; in printEnum() 92 if (Found) { in printEnum()
|
| /NextBSD/contrib/llvm/lib/TableGen/ |
| HD | TGLexer.cpp | 312 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/ |
| HD | set31 | 6 3 Found %s in %s.\n
|
| /NextBSD/contrib/tcsh/nls/finnish/ |
| HD | set31 | 6 3 Found %s in %s.\n
|
| /NextBSD/contrib/llvm/tools/clang/lib/Lex/ |
| HD | ModuleMap.cpp | 469 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/ |
| HD | AArch64InstrInfo.cpp | 2463 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/ |
| HD | FrontendAction.cpp | 271 bool Found = false; in BeginSourceFile() local 280 Found = true; in BeginSourceFile() 285 if (!Found) { in BeginSourceFile()
|
| /NextBSD/contrib/llvm/lib/Analysis/ |
| HD | StratifiedSets.h | 615 SmallVector<BuilderLink *, 8> Found; in tryMergeUpwards() local 619 Found.push_back(Current); in tryMergeUpwards() 638 for (const auto &Ptr : Found) in tryMergeUpwards()
|