HomeSort by: relevance | last modified time | path
    Searched defs:Invalid (Results 1 - 25 of 83) sorted by relevancy

1 2 3 4

  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Instrumentation/
AddressSanitizerOptions.h 20 Invalid, ///< Not a valid destructor Kind.
  /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/Arch/
M68k.h 24 Invalid,
Sparc.h 24 Invalid,
ARM.h 38 Invalid,
44 Invalid,
Mips.h 27 Invalid,
PPC.h 26 Invalid,
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CIndexInclusionStack.cpp 31 bool Invalid = false;
33 IsLocal ? SM.getLocalSLocEntry(i) : SM.getLoadedSLocEntry(i, &Invalid);
34 if (!SL.isFile() || Invalid)
CXSourceLocation.cpp 135 *Log << llvm::format("(\"%s\", %d, %d) = invalid",
243 // Check that the FileID is invalid on the expansion location.
244 // This can manifest in invalid code.
246 bool Invalid = false;
247 const SrcMgr::SLocEntry &sloc = SM.getSLocEntry(fileID, &Invalid);
248 if (Invalid || !sloc.isFile()) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
DynamicLibrary.h 37 // Placeholder whose address represents an invalid library.
40 static char Invalid;
46 explicit DynamicLibrary(void *data = &Invalid) : Data(data) {}
49 bool isValid() const { return Data != &Invalid; }
61 /// This returns a valid DynamicLibrary instance on success and an invalid
InstructionCost.h 12 /// can be used to encode particular properties, i.e. a cost being invalid or
31 /// invalid. Examples of an invalid cost might be where the cost is
36 enum CostState { Valid, Invalid };
43 if (RHS.State == Invalid)
44 State = Invalid;
62 void setInvalid() { State = Invalid; }
74 /// For all of the arithmetic operators provided here any invalid state is
75 /// perpetuated and cannot be removed. Once a cost becomes invalid it stays
76 /// invalid, and it also inherits any invalid state from the RHS. Regardles
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
SymbolRewriter.h 71 Invalid, /// invalid
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/Utils/
WebAssemblyTypeUtilities.h 27 Invalid = 0x00,
46 Invalid = 0x00,
  /src/external/bsd/top/dist/
top.h 52 #define Invalid -2
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseAST.cpp 77 bool Invalid = false;
80 const char *Spelling = SM.getCharacterData(Tok.getLocation(), &Invalid);
81 if (Invalid) {
  /src/external/apache2/llvm/dist/clang/lib/Rewrite/
HTMLRewrite.cpp 47 bool Invalid = false;
48 const char *BufferStart = SM.getBufferData(FID, &Invalid).data();
49 if (Invalid)
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/IPO/
SampleProfileProbe.h 42 enum class PseudoProbeReservedId { Invalid = 0, Last = Invalid };
  /src/external/apache2/llvm/dist/llvm/lib/Support/
DynamicLibrary.cpp 91 "Invalid Ordering");
131 char DynamicLibrary::Invalid;
153 if (Handle != &Invalid) {
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDeclCXX.cpp 135 bool Invalid = false;
143 Invalid |= Visit(E);
145 return Invalid;
451 bool Invalid = false;
526 Invalid = true;
538 Invalid = false;
660 Invalid = true;
673 Invalid = true;
694 Invalid = true;
708 return Invalid;
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Syntax/
Tokens.cpp 113 bool Invalid = false;
114 const char *Start = SM.getCharacterData(location(), &Invalid);
115 assert(!Invalid);
177 bool Invalid = false;
178 StringRef Text = SM.getBufferData(File, &Invalid);
179 if (Invalid)
575 /// is called do not access the (possibly invalid) collector instance.
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Transformer/
SourceCode.cpp 57 "Invalid range");
125 assert(EntityLast.isValid() && "Invalid end location found.");
136 bool Invalid = false;
138 llvm::StringRef File = SM.getBufferData(FileOffset.first, &Invalid);
139 assert(!Invalid && "Cannot get file/offset");
289 bool Invalid = false;
291 SM.getCharacterData(Loc.getLocWithOffset(-1), &Invalid);
292 assert(!Invalid &&
373 bool Invalid;
375 SM.getBufferData(SM.getFileID(Range.getBegin()), &Invalid);
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
FloatingPointMode.h 30 /// the bit field (now - 3 bits). The value \c Invalid is used only in values
44 Invalid = -1 ///< Denotes invalid value.
56 default: return "invalid";
71 Invalid = -1,
85 DenormalModeKind Output = DenormalModeKind::Invalid;
90 DenormalModeKind Input = DenormalModeKind::Invalid;
98 return DenormalMode(DenormalModeKind::Invalid, DenormalModeKind::Invalid);
128 return Output != DenormalModeKind::Invalid &
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/unittest/googlemock/include/gmock/internal/
gmock-internal-utils.h 348 // Invalid<T>() is usable as an expression of type T, but will terminate
354 inline T Invalid() {
355 Assert(false, "", -1, "Internal error: attempt to return invalid value");
359 return Invalid<T>();
  /src/external/bsd/elftosb/dist/common/
rijndael.h 100 enum State { Valid , Invalid };
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Ownership.h 140 // for it's "invalid" flag.
148 /// When CompressInvalid is true, the "invalid" flag will be
154 bool Invalid;
157 ActionResult(bool Invalid = false) : Val(PtrTy()), Invalid(Invalid) {}
158 ActionResult(PtrTy val) : Val(val), Invalid(false) {}
159 ActionResult(const DiagnosticBuilder &) : Val(PtrTy()), Invalid(true) {}
165 bool isInvalid() const { return Invalid; }
166 bool isUsable() const { return !Invalid && Val;
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
RawCommentList.cpp 73 bool Invalid = false;
74 unsigned C1 = SM.getPresumedColumnNumber(L1, &Invalid);
75 if (!Invalid) {
76 unsigned C2 = SM.getPresumedColumnNumber(L2, &Invalid);
77 return !Invalid && (C1 == C2);
131 bool Invalid = false;
133 SourceMgr.getBufferData(BeginFileID, &Invalid).data();
135 (!Invalid && !onlyWhitespaceOnLineBefore(Buffer, BeginOffset));
169 bool Invalid = false;
171 &Invalid).data()
    [all...]

Completed in 49 milliseconds

1 2 3 4