Searched defs:Invalid (Results 1 - 25 of 61) 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.cpp226 bool Invalid = false; local
227 const SrcMgr::SLocEntry &sloc = SM.getSLocEntry(fileID, &Invalid);
228 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/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!");
223 bool Invalid = false; local
224 std::string TokStr = PP.getSpelling(Tok, &Invalid);
225 if (!Invalid) {
237 bool Invalid = false; local
238 unsigned ActualTokLen = PP.getSpelling(Tok, BufPtr, &Invalid);
240 if (!Invalid) {
301 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.cpp520 bool Invalid = false; local
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; local
571 = SourceMgr.getBufferData(LocFileID, &Invalid).data();
572 if (Invalid)
/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/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.cpp97 bool Invalid = false; local
100 Buf, SM, Ctx.getLangOpts(), &Invalid);
101 if (Invalid)
H A DTransforms.cpp550 bool Invalid; local
554 SM, LangOpts, &Invalid);
/external/clang/lib/AST/
H A DRawCommentList.cpp128 bool Invalid = false; local
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/lib/Edit/
H A DEditedSource.cpp122 bool Invalid = false; local
123 StringRef text = getSourceText(BeginOffs, B, Invalid);
124 if (Invalid)
133 bool Invalid = false; local
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) {
372 getSourceText(FileOffset BeginOffs, FileOffset EndOffs, bool &Invalid) argument
[all...]
/external/clang/lib/Rewrite/Core/
H A DHTMLRewrite.cpp46 bool Invalid = false; local
47 const char *BufferStart = SM.getBufferData(FID, &Invalid).data();
48 if (Invalid)
/external/clang/lib/Rewrite/Frontend/
H A DInclusionRewriter.cpp253 bool Invalid; local
254 const MemoryBuffer &FromFile = *SM.getBuffer(FileId, &Invalid);
255 if (Invalid) // invalid inclusion
/external/clang/unittests/Basic/
H A DSourceManagerTest.cpp126 bool Invalid; local
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);
155 SourceMgr.getColumnNumber(FileID(), 0, &Invalid); local
159 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/include/clang/Sema/
H A DOwnership.h133 bool Invalid; member in class:clang::ActionResult
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; }
158 Invalid = false;
172 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/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp349 bool Invalid = false; local
350 unsigned ExpectedLine = SM.getSpellingLineNumber(Pos, &Invalid);
351 if (!Invalid && PH.Next(Line) && (FoundPlus || Line < ExpectedLine)) {
/external/clang/lib/Parse/
H A DParseTemplate.cpp808 bool Invalid = false; local
812 Invalid = ParseTemplateArgumentList(TemplateArgs);
814 if (Invalid) {
877 bool Invalid = ParseTemplateIdAfterTemplateName(Template, local
883 if (Invalid) {

Completed in 712 milliseconds

123