Searched defs:Invalid (Results 1 - 25 of 59) sorted by relevance

123

/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DTokenTypes.cs38 public const int Invalid = 0; field in class:Antlr.Runtime.TokenTypes
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DTokenConstants.cs56 public const int Invalid = 0; field in class:Antlr.Runtime.TokenTypes
69 public static readonly IToken Invalid = new CommonToken( TokenTypes.Invalid ); field in class:Antlr.Runtime.Tokens
76 public static readonly IToken Skip = new CommonToken( TokenTypes.Invalid );
87 public static readonly T Invalid = new T() field in class:Antlr.Runtime.T
89 Type = TokenTypes.Invalid
94 Type = TokenTypes.Invalid
/external/clang/tools/libclang/
H A DCIndexInclusionStack.cpp46 bool Invalid = false; local
47 const SrcMgr::SLocEntry &SL = (SM.*Getter)(i, &Invalid);
49 if (!SL.isFile() || Invalid)
H A DCXSourceLocation.cpp223 bool Invalid = false; local
224 const SrcMgr::SLocEntry &sloc = SM.getSLocEntry(fileID, &Invalid);
225 if (Invalid || !sloc.isFile()) {
/external/llvm/include/llvm/Support/
H A DDynamicLibrary.h41 static char Invalid; member in class:llvm::sys::DynamicLibrary
46 explicit DynamicLibrary(void *data = &Invalid) : Data(data) {} argument
49 bool isValid() { return Data != &Invalid; }
/external/llvm/lib/Support/
H A DDynamicLibrary.cpp53 char llvm::sys::DynamicLibrary::Invalid = 0; member in class:llvm::sys::DynamicLibrary
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DVideoFrameChromium.h51 Invalid, enumerator in enum:WebCore::VideoFrameChromium::Format
/external/clang/unittests/Tooling/
H A DCommentHandlerTest.cpp45 bool Invalid; local
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/
H A DSDNodeDbgValue.h51 bool Invalid; member in class:llvm::SDDbgValue
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) {
108 void setIsInvalidated() { Invalid = true; }
109 bool isInvalidated() { return Invalid; }
/external/clang/lib/Lex/
H A DMacroArgs.cpp120 assert(Result < Start+NumUnexpArgTokens && "Invalid arg #");
124 assert(Result < Start+NumUnexpArgTokens && "Invalid arg #");
150 assert(Arg < MI->getNumArgs() && "Invalid argument number!");
227 bool Invalid = false; local
228 std::string TokStr = PP.getSpelling(Tok, &Invalid);
229 if (!Invalid) {
241 bool Invalid = false; local
242 unsigned ActualTokLen = PP.getSpelling(Tok, BufPtr, &Invalid);
244 if (!Invalid) {
305 assert(ArgNo < NumUnexpArgTokens && "Invalid argumen
[all...]
H A DPPLexerChange.cpp87 bool Invalid = false; local
89 getSourceManager().getBuffer(FID, Loc, &Invalid);
90 if (Invalid) {
H A DTokenLexer.cpp479 bool Invalid = false; local
480 unsigned LHSLen = PP.getSpelling(Tok, BufPtr, &Invalid);
483 if (Invalid)
487 unsigned RHSLen = PP.getSpelling(RHS, BufPtr, &Invalid);
488 if (Invalid)
528 bool Invalid = false; local
530 = SourceMgr.getBufferData(LocFileID, &Invalid).data();
531 if (Invalid)
/external/chromium/testing/gmock/include/gmock/internal/
H A Dgmock-internal-utils.h349 // Invalid<T>() returns an invalid value of type T. This is useful
354 inline T Invalid() { function in namespace:testing::internal
358 inline void Invalid<void>() {} function in namespace:testing::internal
/external/clang/lib/ARCMigrate/
H A DTransGCAttrs.cpp98 bool Invalid = false; local
101 Buf, SM, Ctx.getLangOpts(), &Invalid);
102 if (Invalid)
H A DTransforms.cpp540 bool Invalid; local
544 SM, LangOpts, &Invalid);
/external/clang/lib/AST/
H A DRawCommentList.cpp128 bool Invalid = false; local
130 &Invalid).data();
131 if (Invalid)
194 bool Invalid = false;
195 const char *Buffer = SM.getBufferData(Loc1Info.first, &Invalid).data();
196 if (Invalid)
/external/clang/unittests/Basic/
H A DSourceManagerTest.cpp118 bool Invalid; local
120 Invalid = false;
121 EXPECT_EQ(1U, SourceMgr.getColumnNumber(MainFileID, 0, &Invalid));
122 EXPECT_TRUE(!Invalid);
124 Invalid = false;
125 EXPECT_EQ(5U, SourceMgr.getColumnNumber(MainFileID, 4, &Invalid));
126 EXPECT_TRUE(!Invalid);
128 Invalid = false;
129 EXPECT_EQ(1U, SourceMgr.getColumnNumber(MainFileID, 7, &Invalid));
130 EXPECT_TRUE(!Invalid);
147 SourceMgr.getColumnNumber(FileID(), 0, &Invalid); local
151 SourceMgr.getColumnNumber(FileID(), 1, &Invalid); local
[all...]
/external/webkit/Source/WebCore/html/
H A DDateComponents.h57 , m_type(Invalid)
188 Invalid, enumerator in enum:WebCore::DateComponents::Type
/external/clang/lib/Edit/
H A DEditedSource.cpp121 bool Invalid = false; local
122 StringRef text = getSourceText(BeginOffs, B, Invalid);
123 if (Invalid)
132 bool Invalid = false; local
133 StringRef text = getSourceText(BeginOffs, EndOffs, Invalid);
134 if (Invalid)
307 bool &Invalid) {
316 SourceMgr, LangOpts, &Invalid);
306 getSourceText(FileOffset BeginOffs, FileOffset EndOffs, bool &Invalid) argument
/external/clang/lib/Rewrite/Core/
H A DHTMLRewrite.cpp47 bool Invalid = false; local
48 const char *BufferStart = SM.getBufferData(FID, &Invalid).data();
49 if (Invalid)
/external/clang/lib/Rewrite/Frontend/
H A DInclusionRewriter.cpp251 bool Invalid; local
252 const MemoryBuffer &FromFile = *SM.getBuffer(FileId, &Invalid);
253 if (Invalid) // invalid inclusion
/external/clang/include/clang/Sema/
H A DOwnership.h136 bool Invalid; member in class:clang::ActionResult
139 ActionResult(bool Invalid = false)
140 : Val(PtrTy()), Invalid(Invalid) {}
141 ActionResult(PtrTy val) : Val(val), Invalid(false) {}
142 ActionResult(const DiagnosticBuilder &) : Val(PtrTy()), Invalid(true) {}
148 bool isInvalid() const { return Invalid; }
149 bool isUsable() const { return !Invalid && Val; }
161 Invalid = false;
175 ActionResult(bool Invalid
[all...]
/external/llvm/include/llvm/Analysis/
H A DMemoryDependenceAnalysis.h42 /// Invalid - Clients of MemDep never see this.
43 Invalid = 0, enumerator in enum:llvm::MemDepResult::DepType
101 MemDepResult() : Value(0, Invalid) {}
181 bool isDirty() const { return Value.getInt() == Invalid; }
184 return MemDepResult(PairTy(Inst, Invalid));
/external/v8/src/
H A Ddateparser.h233 static DateToken Invalid() { function in struct:v8::internal::DateParser::DateToken
396 // returns DateToken::Invalid(). Otherwise parsing continues in the
/external/webkit/Source/JavaScriptCore/qt/api/
H A Dqscriptvalue_p.h48 Invalid -> QSVP is invalid, no assumptions should be made about class members (apart from m_value).
161 Invalid = 0, enumerator in enum:QScriptValuePrivate::State
218 : m_state(Invalid)
331 bool QScriptValuePrivate::isValid() const { return m_state != Invalid; }
485 case Invalid:
527 case Invalid:
560 case Invalid:
617 case Invalid:
1094 // Invalid property.

Completed in 757 milliseconds

123