HomeSort by relevance Sort by last modified time
    Searched defs:Invalid (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
TokenTypes.cs 38 public const int Invalid = 0;
  /external/llvm/include/llvm/Support/
DynamicLibrary.h 38 // Placeholder whose address represents an invalid library.
41 static char Invalid;
46 explicit DynamicLibrary(void *data = &Invalid) : Data(data) {}
49 bool isValid() { return Data != &Invalid; }
61 /// This returns a valid DynamicLibrary instance on success and an invalid
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
TokenConstants.cs 56 public const int Invalid = 0;
69 public static readonly IToken Invalid = new CommonToken( TokenTypes.Invalid );
76 public static readonly IToken Skip = new CommonToken( TokenTypes.Invalid );
87 public static readonly T Invalid = new T()
89 Type = TokenTypes.Invalid
94 Type = TokenTypes.Invalid
  /external/clang/tools/libclang/
CIndexInclusionStack.cpp 46 bool Invalid = false;
47 const SrcMgr::SLocEntry &SL = (SM.*Getter)(i, &Invalid);
49 if (!SL.isFile() || Invalid)
CXSourceLocation.cpp 135 *Log << llvm::format("(\"%s\", %d, %d) = invalid",
223 // Check that the FileID is invalid on the expansion location.
224 // This can manifest in invalid code.
226 bool Invalid = false;
227 const SrcMgr::SLocEntry &sloc = SM.getSLocEntry(fileID, &Invalid);
228 if (Invalid || !sloc.isFile()) {
  /external/llvm/lib/Support/
DynamicLibrary.cpp 53 char llvm::sys::DynamicLibrary::Invalid = 0;
  /external/clang/lib/Lex/
MacroArgs.cpp 120 assert(Result < Start+NumUnexpArgTokens && "Invalid arg #");
124 assert(Result < Start+NumUnexpArgTokens && "Invalid arg #");
150 assert(Arg < MI->getNumArgs() && "Invalid argument number!");
223 bool Invalid = false;
224 std::string TokStr = PP.getSpelling(Tok, &Invalid);
225 if (!Invalid) {
237 bool Invalid = false;
238 unsigned ActualTokLen = PP.getSpelling(Tok, BufPtr, &Invalid);
240 if (!Invalid) {
254 // is an invalid string literal, diagnose it as specified in C99
    [all...]
PPLexerChange.cpp 87 bool Invalid = false;
89 getSourceManager().getBuffer(FID, Loc, &Invalid);
90 if (Invalid) {
TokenLexer.cpp 349 // assembler-with-cpp mode, invalid pastes are allowed through: in this
520 bool Invalid = false;
521 unsigned LHSLen = PP.getSpelling(Tok, BufPtr, &Invalid);
524 if (Invalid)
528 unsigned RHSLen = PP.getSpelling(RHS, BufPtr, &Invalid);
529 if (Invalid)
569 bool Invalid = false;
571 = SourceMgr.getBufferData(LocFileID, &Invalid).data();
572 if (Invalid)
705 /// macro expansion source location entry, otherwise it returns an invalid
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/chromium/
VideoFrameChromium.h 51 Invalid,
  /frameworks/compile/slang/
slang_rs_pragma_handler.cpp 97 bool Invalid;
98 std::string Spelling = PP.getSpelling(PragmaToken, &Invalid);
99 if (!Invalid)
  /external/chromium/testing/gmock/include/gmock/internal/
gmock-internal-utils.h 349 // Invalid<T>() returns an invalid value of type T. This is useful
354 inline T Invalid() {
358 inline void Invalid<void>() {}
  /external/clang/lib/ARCMigrate/
TransGCAttrs.cpp 97 bool Invalid = false;
100 Buf, SM, Ctx.getLangOpts(), &Invalid);
101 if (Invalid)
Transforms.cpp 123 /// source location will be invalid.
135 /// source location will be invalid.
550 bool Invalid;
554 SM, LangOpts, &Invalid);
  /external/clang/lib/AST/
RawCommentList.cpp 128 bool Invalid = false;
130 &Invalid).data();
131 if (Invalid)
196 bool Invalid = false;
197 const char *Buffer = SM.getBufferData(Loc1Info.first, &Invalid).data();
198 if (Invalid)
  /external/clang/unittests/Tooling/
CommentHandlerTest.cpp 45 bool Invalid;
46 unsigned CLine = SM.getSpellingLineNumber(Start, &Invalid);
47 EXPECT_TRUE(!Invalid) << "Invalid line number on comment " << C;
49 unsigned CCol = SM.getSpellingColumnNumber(Start, &Invalid);
50 EXPECT_TRUE(!Invalid) << "Invalid column number on comment " << C;
  /external/llvm/lib/CodeGen/SelectionDAG/
SDNodeDbgValue.h 51 bool Invalid;
56 Invalid(false) {
65 mdPtr(mdP), Offset(off), DL(dl), Order(O), Invalid(false) {
72 mdPtr(mdP), Offset(off), DL(dl), Order(O), Invalid(false) {
106 // property. A SDDbgValue is invalid if the SDNode that produces the value is
108 void setIsInvalidated() { Invalid = true; }
109 bool isInvalidated() { return Invalid; }
  /frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
KeyguardSecurityModel.java 31 Invalid, // NULL state
  /external/clang/include/clang/Sema/
Ownership.h 118 // for it's "invalid" flag.
127 /// When CompressInvalid is true, the "invalid" flag will be
133 bool Invalid;
136 ActionResult(bool Invalid = false)
137 : Val(PtrTy()), Invalid(Invalid) {}
138 ActionResult(PtrTy val) : Val(val), Invalid(false) {}
139 ActionResult(const DiagnosticBuilder &) : Val(PtrTy()), Invalid(true) {}
145 bool isInvalid() const { return Invalid; }
146 bool isUsable() const { return !Invalid && Val;
    [all...]
  /external/clang/lib/Edit/
EditedSource.cpp 122 bool Invalid = false;
123 StringRef text = getSourceText(BeginOffs, B, Invalid);
124 if (Invalid)
133 bool Invalid = false;
134 StringRef text = getSourceText(BeginOffs, EndOffs, Invalid);
135 if (Invalid)
275 bool Invalid = false;
276 StringRef buffer = SM.getBufferData(offs.getFID(), &Invalid);
277 if (Invalid)
373 bool &Invalid) {
    [all...]
  /external/clang/lib/Rewrite/Core/
HTMLRewrite.cpp 46 bool Invalid = false;
47 const char *BufferStart = SM.getBufferData(FID, &Invalid).data();
48 if (Invalid)
  /external/clang/lib/Rewrite/Frontend/
InclusionRewriter.cpp 253 bool Invalid;
254 const MemoryBuffer &FromFile = *SM.getBuffer(FileId, &Invalid);
255 if (Invalid) // invalid inclusion
  /external/clang/unittests/Basic/
SourceManagerTest.cpp 126 bool Invalid;
128 Invalid = false;
129 EXPECT_EQ(1U, SourceMgr.getColumnNumber(MainFileID, 0, &Invalid));
130 EXPECT_TRUE(!Invalid);
132 Invalid = false;
133 EXPECT_EQ(5U, SourceMgr.getColumnNumber(MainFileID, 4, &Invalid));
134 EXPECT_TRUE(!Invalid);
136 Invalid = false;
137 EXPECT_EQ(1U, SourceMgr.getColumnNumber(MainFileID, 7, &Invalid));
138 EXPECT_TRUE(!Invalid);
    [all...]
  /external/webkit/Source/WebCore/html/
DateComponents.h 57 , m_type(Invalid)
82 // might be invalid.
188 Invalid,
  /external/llvm/include/llvm/Analysis/
MemoryDependenceAnalysis.h 42 /// Invalid - Clients of MemDep never see this.
43 Invalid = 0,
101 MemDepResult() : Value(0, Invalid) {}
179 /// isDirty - Return true if this is a MemDepResult in its dirty/invalid.
181 bool isDirty() const { return Value.getInt() == Invalid; }
184 return MemDepResult(PairTy(Inst, Invalid));

Completed in 1763 milliseconds

1 2 3