Home
last modified time | relevance | path

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

12345678

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaCXXScopeSpec.cpp369 LookupResult Found(*this, NNS->getAsIdentifier(), SourceLocation(), in FindFirstQualifierInScope() local
371 LookupName(Found, S); in FindFirstQualifierInScope()
372 assert(!Found.isAmbiguous() && "Cannot handle ambiguities here yet"); in FindFirstQualifierInScope()
374 if (!Found.isSingleResult()) in FindFirstQualifierInScope()
377 NamedDecl *Result = Found.getFoundDecl(); in FindFirstQualifierInScope()
416 LookupResult Found(*this, IdInfo.Identifier, IdInfo.IdentifierLoc, in BuildCXXNestedNameSpecifier() local
437 Found.setContextRange(SS.getRange()); in BuildCXXNestedNameSpecifier()
452 LookupQualifiedName(Found, LookupCtx); in BuildCXXNestedNameSpecifier()
454 if (!ObjectType.isNull() && Found.empty()) { in BuildCXXNestedNameSpecifier()
476 LookupName(Found, S); in BuildCXXNestedNameSpecifier()
[all …]
H A DSemaAccess.cpp1577 DeclAccessPair Found) { in CheckUnresolvedLookupAccess() argument
1580 Found.getAccess() == AS_public) in CheckUnresolvedLookupAccess()
1584 Found, QualType()); in CheckUnresolvedLookupAccess()
1591 DeclAccessPair Found) { in CheckUnresolvedMemberAccess() argument
1593 Found.getAccess() == AS_public) in CheckUnresolvedMemberAccess()
1601 Found, BaseType); in CheckUnresolvedMemberAccess()
1608 DeclAccessPair Found, in isMemberAccessibleForDeletion() argument
1613 if (Found.getAccess() == AS_public || !getLangOpts().AccessControl) in isMemberAccessibleForDeletion()
1616 AccessTarget Entity(Context, AccessTarget::Member, NamingClass, Found, in isMemberAccessibleForDeletion()
1656 DeclAccessPair Found, in CheckConstructorAccess() argument
[all …]
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeFunctionSymbol.cpp66 bool Found = false; in inlineSiteContainsAddress() local
75 Found = true; in inlineSiteContainsAddress()
79 if (Found && OffsetInFunc < CodeOffset) in inlineSiteContainsAddress()
81 Found = false; in inlineSiteContainsAddress()
87 Found = false; in inlineSiteContainsAddress()
116 bool Found = false; in findInlineFramesByVA() local
133 Found = true; in findInlineFramesByVA()
142 if (!Found) in findInlineFramesByVA()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DABIInfoImpl.cpp357 const Type *Found = nullptr; in isSingleElementStruct() local
367 if (Found) in isSingleElementStruct()
372 Found = isSingleElementStruct(I.getType(), Context); in isSingleElementStruct()
373 if (!Found) in isSingleElementStruct()
388 if (Found) in isSingleElementStruct()
399 Found = FT.getTypePtr(); in isSingleElementStruct()
401 Found = isSingleElementStruct(FT, Context); in isSingleElementStruct()
402 if (!Found) in isSingleElementStruct()
409 if (Found && Context.getTypeSize(Found) != Context.getTypeSize(T)) in isSingleElementStruct()
412 return Found; in isSingleElementStruct()
/freebsd/sys/contrib/dev/acpica/components/utilities/
H A Dutpredef.c537 UINT32 Found; in AcpiUtGetResourceBitWidth() local
542 Found = 0; in AcpiUtGetResourceBitWidth()
550 Found++; in AcpiUtGetResourceBitWidth()
556 return (Found); in AcpiUtGetResourceBitWidth()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DProcessImplicitDefs.cpp105 bool Found = false; in processImplicitDef() local
114 Found = true; in processImplicitDef()
118 if (Found) in processImplicitDef()
123 if (Found) { in processImplicitDef()
H A DScheduleDAG.cpp606 bool Found = false; in GetSubGraph() local
631 Found = true; in GetSubGraph()
642 if (!Found) { in GetSubGraph()
649 Found = false; in GetSubGraph()
665 Found = true; in GetSubGraph()
676 assert(Found && "Error in SUnit Graph!"); in GetSubGraph()
/freebsd/contrib/llvm-project/llvm/lib/Testing/Support/
H A DSupportHelpers.cpp37 bool Found = false; in getInputFileDirectory() local
39 std::tie(Found, InputFilePath) = findSrcDirMap(Argv0); in getInputFileDirectory()
41 EXPECT_TRUE(Found) << "Unit test source directory file does not exist."; in getInputFileDirectory()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderInternals.h56 llvm::DenseSet<GlobalDeclID> Found; member
62 if (Found.empty() && !Data.empty()) { in insert()
64 for (auto I : Found) in insert()
72 Found.insert(Data.begin(), Data.end()); in insert()
75 if (Found.insert(ID).second) in insert()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSemaConcept.h209 bool Found = false; in subsumes() local
216 Found = true; in subsumes()
223 Found = true; in subsumes()
228 if (Found) in subsumes()
231 if (!Found) in subsumes()
H A DLookup.h59 Found, enumerator
332 return getResultKind() == Found; in isSingleResult()
483 ResultKind = Found; in addDecl()
490 ResultKind = Found; in addAllDecls()
541 ResultKind = Found; in resolveKindAfterFilter()
559 if (getResultKind() != Found) return nullptr; in getAsSingle()
569 assert(getResultKind() == Found in getFoundDecl()
582 return getResultKind() == Found && isa<TagDecl>(getFoundDecl()); in isSingleTagDecl()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/Targets/
H A DSystemZ.cpp203 QualType Found; in GetSingleElementType() local
215 if (!Found.isNull()) in GetSingleElementType()
217 Found = GetSingleElementType(Base); in GetSingleElementType()
232 if (!Found.isNull()) in GetSingleElementType()
234 Found = GetSingleElementType(FD->getType()); in GetSingleElementType()
239 if (!Found.isNull()) in GetSingleElementType()
240 return Found; in GetSingleElementType()
/freebsd/contrib/llvm-project/llvm/lib/Frontend/OpenMP/
H A DOMP.cpp167 Directive Found = (*Iter)[0]; in getCompoundConstruct() local
168 ArrayRef<Directive> FoundLeafs = getLeafConstructs(Found); in getCompoundConstruct()
170 return Found; in getCompoundConstruct()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DAssumptionCache.cpp120 bool Found = false; in unregisterAssumption() local
124 Found = true; in unregisterAssumption()
128 if (HasNonnull && Found) in unregisterAssumption()
131 assert(Found && "already unregistered or incorrect cache state"); in unregisterAssumption()
H A DDemandedBits.cpp403 auto Found = AliveBits.find(I); in getDemandedBits() local
404 if (Found != AliveBits.end()) in getDemandedBits()
405 return Found->second; in getDemandedBits()
461 auto Found = AliveBits.find(UserI); in isUseDead() local
462 if (Found != AliveBits.end() && Found->second.isZero()) in isUseDead()
/freebsd/contrib/llvm-project/llvm/lib/TargetParser/
H A DTriple.cpp1132 bool Found[4]; in normalize() local
1133 Found[0] = Arch != UnknownArch; in normalize()
1134 Found[1] = Vendor != UnknownVendor; in normalize()
1135 Found[2] = OS != UnknownOS; in normalize()
1136 Found[3] = Environment != UnknownEnvironment; in normalize()
1141 for (unsigned Pos = 0; Pos != std::size(Found); ++Pos) { in normalize()
1142 if (Found[Pos]) in normalize()
1147 if (Idx < std::size(Found) && Found[Idx]) in normalize()
1195 while (i < std::size(Found) && Found[i]) in normalize()
1216 while (++i < std::size(Found) && Found[i]) in normalize()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Basic/Targets/
H A DPPC.cpp504 bool Found = FindVSXSubfeature("+power8-vector", "-mpower8-vector"); in ppcUserFeaturesCheck() local
505 Found |= FindVSXSubfeature("+direct-move", "-mdirect-move"); in ppcUserFeaturesCheck()
506 Found |= FindVSXSubfeature("+float128", "-mfloat128"); in ppcUserFeaturesCheck()
507 Found |= FindVSXSubfeature("+power9-vector", "-mpower9-vector"); in ppcUserFeaturesCheck()
508 Found |= FindVSXSubfeature("+paired-vector-memops", "-mpaired-vector-memops"); in ppcUserFeaturesCheck()
509 Found |= FindVSXSubfeature("+mma", "-mmma"); in ppcUserFeaturesCheck()
510 Found |= FindVSXSubfeature("+power10-vector", "-mpower10-vector"); in ppcUserFeaturesCheck()
513 return !Found; in ppcUserFeaturesCheck()
/freebsd/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
H A DVariantValue.cpp147 const DynTypedMatcher *Found = nullptr; in getTypedMatcher() local
152 if (Found) { in getTypedMatcher()
158 Found = &Matchers[i]; in getTypedMatcher()
164 if (Found && (FoundIsExact || NumFound == 1)) in getTypedMatcher()
165 return *Found; in getTypedMatcher()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DMustExecute.h482 bool Found = EIt.count(I); in findInContextOf() local
483 while (!Found && EIt != EEnd) in findInContextOf()
484 Found = (++EIt).getCurrentInst() == I; in findInContextOf()
485 return Found; in findInContextOf()
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSubtargetInfo.h229 auto Found = llvm::lower_bound(ProcDesc, CPU); in isCPUStringValid() local
230 return Found != ProcDesc.end() && StringRef(Found->Key) == CPU; in isCPUStringValid()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DConstantMerge.cpp209 auto Found = CMap.find(Init); in mergeConstants() local
210 if (Found == CMap.end()) in mergeConstants()
213 GlobalVariable *Slot = Found->second; in mergeConstants()
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DDiagnosticIDs.cpp263 const StaticDiagInfoRec *Found = &StaticDiagInfo[ID + Offset]; in GetDiagInfo() local
267 if (Found->DiagID != DiagID) in GetDiagInfo()
269 return Found; in GetDiagInfo()
638 const auto *Found = llvm::partition_point( in getGroupForWarningOption() local
640 if (Found == std::end(OptionTable) || Found->getName() != Name) in getGroupForWarningOption()
642 return static_cast<diag::Group>(Found - OptionTable); in getGroupForWarningOption()
/freebsd/contrib/ntp/sntp/libevent/cmake/
H A DLibeventConfig.cmake.in123 message_if_needed(STATUS "Found libevent include directory: ${_event_h}")
138 message_if_needed(STATUS "Found libevent component: ${_event_lib}")
160 message_if_needed(STATUS "Found libevent ${LIBEVENT_VERSION} in ${_INSTALL_PREFIX}")
162 message_if_needed(STATUS "Found libevent ${LIBEVENT_VERSION} in ${LIBEVENT_CMAKE_DIR}")
/freebsd/contrib/libevent/cmake/
H A DLibeventConfig.cmake.in123 message_if_needed(STATUS "Found libevent include directory: ${_event_h}")
138 message_if_needed(STATUS "Found libevent component: ${_event_lib}")
160 message_if_needed(STATUS "Found libevent ${LIBEVENT_VERSION} in ${_INSTALL_PREFIX}")
162 message_if_needed(STATUS "Found libevent ${LIBEVENT_VERSION} in ${LIBEVENT_CMAKE_DIR}")
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIPreEmitPeephole.cpp202 bool Found = false; in optimizeVccBranch() local
204 if (Found) { in optimizeVccBranch()
208 Found = Term.isIdenticalTo(MI); in optimizeVccBranch()
211 assert(Found && "conditional branch is not terminator"); in optimizeVccBranch()

12345678