| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | FormatStringParsing.h | 85 bool hasValue() const { return Start != nullptr; } in hasValue() function 87 assert(hasValue()); in getValue()
|
| H A D | PrintfFormatString.cpp | 430 if (!FSR.hasValue()) in ParsePrintfString() 460 if (!FSR.hasValue()) in ParseFormatStringHasSArg() 481 if (FSR.hasValue()) in parseFormatStringHasFormattingSpecifiers()
|
| H A D | ScanfFormatString.cpp | 559 if (!FSR.hasValue()) in ParseScanfString()
|
| H A D | ExprConstant.cpp | 2431 if (!Value.hasValue()) { in CheckEvaluationResult() 2477 if (!BaseValue.hasValue()) { in CheckEvaluationResult() 6367 if (!Result.hasValue()) { in HandleConstructorCall() 6450 if (!Value->hasValue() || in HandleConstructorCall() 8602 if (!V->hasValue()) { in VisitVarDecl() 10300 if (!Result.hasValue()) in VisitCXXParenListOrInitListExpr() 10390 if (Result.hasValue()) in VisitCXXConstructExpr() 11078 if (Filler.hasValue()) { in VisitCXXParenListOrInitListExpr() 11164 bool HadZeroInit = Value->hasValue(); in VisitCXXConstructExpr() 11763 return V.hasValue(); in EvaluateBuiltinConstantP() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | MemoryLocation.h | 166 bool hasValue() const { in hasValue() function 172 assert(hasValue() && "Getting value from an unknown LocationSize!"); in getValue() 184 return hasValue() && getValue().getKnownMinValue() == 0; in isZero()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | ScalarEvolutionAliasAnalysis.cpp | 57 APInt ASizeInt(BitWidth, LocA.Size.hasValue() in alias() 60 APInt BSizeInt(BitWidth, LocB.Size.hasValue() in alias()
|
| H A D | BasicAliasAnalysis.cpp | 1051 if (!V1Size.hasValue() && !V2Size.hasValue()) { in aliasGEP() 1083 V2Size.hasValue() && !V2Size.isScalable() && in aliasGEP() 1091 V1Size.hasValue() && !V1Size.isScalable() && in aliasGEP() 1146 if (!VLeftSize.hasValue()) in aliasGEP() 1154 if (VRightSize.hasValue() && Off.ule(INT32_MAX) && in aliasGEP() 1168 if (!V1Size.hasValue() || !V2Size.hasValue()) in aliasGEP() 1792 if (GEP.VarIndices.size() != 2 || !MaybeV1Size.hasValue() || in constantOffsetHeuristic() 1793 !MaybeV2Size.hasValue()) in constantOffsetHeuristic()
|
| H A D | MemoryDependenceAnalysis.cpp | 372 if (!MemLoc.Size.hasValue()) in canSkipClobberingStore() 1099 if (CacheInfo->Size.hasValue() && Loc.Size.hasValue()) { in getNonLocalPointerDepFromBB() 1109 ThrowOutEverything = !Loc.Size.hasValue(); in getNonLocalPointerDepFromBB()
|
| H A D | Lint.cpp | 471 Check(!Loc.Size.hasValue() || BaseSize == MemoryLocation::UnknownSize || in visitMemoryReference()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/ASTMatchers/Dynamic/ |
| H A D | VariantValue.h | 274 explicit operator bool() const { return hasValue(); } 275 bool hasValue() const { return Type != VT_Nothing; } in hasValue() function
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Interpreter/ |
| H A D | Value.h | 133 bool hasValue() const { return isValid() && !isVoid(); } in hasValue() function
|
| /freebsd-14.2/contrib/llvm-project/llvm/utils/TableGen/ |
| H A D | GlobalISelMatchTable.h | 850 return hasValue() && PredicateMatcher::isIdentical(B); in isIdenticalDownToValue() 854 assert(hasValue() && "Can not get a value of a value-less predicate!"); in getValue() 857 virtual bool hasValue() const { return false; } in hasValue() function 948 bool hasValue() const override; 1372 bool hasValue() const override { in hasValue() function
|
| H A D | GlobalISelMatchTable.cpp | 573 if (!Predicate.hasValue()) in candidateConditionMatches() 1140 bool LLTOperandMatcher::hasValue() const { in hasValue() function in llvm::gi::LLTOperandMatcher
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | ExprEngineC.cpp | 814 bool hasValue = false; in VisitGuardedExpr() local 830 hasValue = true; in VisitGuardedExpr() 837 if (!hasValue) in VisitGuardedExpr()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
| H A D | PPCISelDAGToDAG.cpp | 1541 bool hasValue() const { in hasValue() function 1750 if (Bits[i].hasValue()) { in getValueBits() 1827 Bits[i] = (*LHSBits)[i].hasValue() in getValueBits() 1867 if (Bits[i].hasValue()) { in computeRotationAmounts() 1890 bool IsGroupOfZeros = !Bits[LastGroupStartIdx].hasValue(); in collectBitGroups() 1924 IsGroupOfZeros = !Bits[LastGroupStartIdx].hasValue(); in collectBitGroups() 1998 if (!Bits[i].hasValue()) in assignRepl32BitGroups() 2005 if (!Bits[i].hasValue()) in assignRepl32BitGroups() 2011 if (!Bits[i].hasValue()) in assignRepl32BitGroups() 2134 if (Bits[i].hasValue()) in getZerosMask() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | CommandLine.h | 561 bool hasValue() const { return false; } 592 bool hasValue() const { return Valid; } 610 if (!VC.hasValue()) 1472 if (V.hasValue())
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaAttr.cpp | 429 assert(Eval.Val.hasValue()); in ConstantFoldAttrArgs() 446 AlignPackStack.hasValue() && in DiagnoseNonDefaultPragmaAlignPack() 451 AlignPackStack.hasValue() ? PrevLocation : SourceLocation(), in DiagnoseNonDefaultPragmaAlignPack()
|
| H A D | SemaDeclCXX.cpp | 17153 if (!V.hasValue()) in ConvertAPValueToString()
|
| H A D | SemaDecl.cpp | 18288 AlignPackStack.hasValue()) { in ActOnTagFinishDefinition()
|
| H A D | SemaExpr.cpp | 18384 if (Cached.hasValue()) in CheckForImmediateInvocation()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | StackProtector.cpp | 264 if (MemLoc && MemLoc->Size.hasValue() && in HasAddressTaken()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | APValue.h | 399 bool hasValue() const { return Kind != None && Kind != Indeterminate; }
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Support/ |
| H A D | CommandLine.cpp | 2219 if (D.hasValue()) \ 2245 if (D.hasValue()) in PRINT_OPT_DIFF()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CodeGenFunction.cpp | 2441 assert(Init.hasValue() && "Invalid DeclRefExpr initializer!"); in EmitDeclRefExprDbgValue()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | Sema.h | 667 bool hasValue() const { return CurrentValue != DefaultValue; } in hasValue() function 707 if (!FpPragmaStack.hasValue()) { in CurFPFeatureOverrides()
|