HomeSort by: relevance | last modified time | path
    Searched defs:hasValue (Results 1 - 12 of 12) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/AST/
FormatStringParsing.h 85 bool hasValue() const { return Start != nullptr; }
87 assert(hasValue());
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
Any.h 101 bool hasValue() const { return !!Storage; }
Optional.h 72 if (other.hasValue()) {
77 if (other.hasValue()) {
93 constexpr bool hasValue() const noexcept { return hasVal; }
117 if (hasValue()) {
126 if (hasValue()) {
136 if (other.hasValue()) {
137 if (hasValue()) {
150 if (other.hasValue()) {
151 if (hasValue()) {
193 constexpr bool hasValue() const noexcept { return hasVal;
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
DirectoryEntry.h 128 bool hasValue() const { return MaybeRef.hasOptionalValue(); }
131 assert(hasValue());
135 assert(hasValue());
140 assert(hasValue());
286 return hasValue() ? &getValue().getDirEntry() : nullptr;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
MemoryLocation.h 155 bool hasValue() const {
159 assert(hasValue() && "Getting value from an unknown LocationSize!");
170 bool isZero() const { return hasValue() && getValue() == 0; }
  /src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/Dynamic/
VariantValue.h 191 return Value->getTypedMatcher(MatcherOps(NK)).hasValue();
274 explicit operator bool() const { return hasValue(); }
275 bool hasValue() const { return Type != VT_Nothing; }
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
ExprEngineC.cpp 831 bool hasValue = false;
847 hasValue = true;
854 if (!hasValue)
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
APValue.h 391 bool hasValue() const { return Kind != None && Kind != Indeterminate; }
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Function.h 302 bool hasValue() const { return PCT != PCT_Invalid; }
306 explicit operator bool() { return hasValue(); }
307 bool operator!() const { return !hasValue(); }
341 return getEntryCount(IncludeSynthetic).hasValue();
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
CommandLine.h 544 bool hasValue() const { return false; }
574 bool hasValue() const { return Valid; }
591 if (!VC.hasValue())
1467 if (V.hasValue())
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
GlobalISelEmitter.cpp 458 assert((!LabelID_.hasValue() || LabelID != ~0u) &&
1159 return hasValue() && PredicateMatcher::isIdentical(B);
1163 assert(hasValue() && "Can not get a value of a value-less predicate!");
1166 virtual bool hasValue() const { return false; }
1255 bool hasValue() const override {
1810 bool hasValue() const override {
2926 Table << MatchTable::Opcode(SubOperand.hasValue() ? "GIR_ComplexSubOperandRenderer"
2931 if (SubOperand.hasValue())
4258 if (!MaybeInsnOperand.hasValue()) {
4389 if (SubOperand.hasValue()) {
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Sema.h 660 bool hasValue() const { return CurrentValue != DefaultValue; }
697 if (!FpPragmaStack.hasValue()) {
1668 bool isImmediate() const { return ImmediateDiag.hasValue(); }
1685 if (Diag.ImmediateDiag.hasValue())
1687 else if (Diag.PartialDiagId.hasValue())
1699 if (ImmediateDiag.hasValue())
1701 else if (PartialDiagId.hasValue())
1708 if (Diag.ImmediateDiag.hasValue())
1710 else if (Diag.PartialDiagId.hasValue())
1716 if (ImmediateDiag.hasValue())
    [all...]

Completed in 29 milliseconds