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

123

/external/chromium_org/third_party/webrtc/voice_engine/test/auto_test/
H A Dvoe_test_interface.h26 Invalid = -1, enumerator in enum:voetest::TestType
/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/clang/test/Misc/
H A Dast-dump-color.cpp28 struct Invalid { struct
29 __attribute__((noinline)) Invalid(error);
30 } Invalid; variable in typeref:struct:Invalid
91 //CHECK: {{^}}[[Blue]]|-[[RESET]][[GREEN]]CXXRecordDecl[[RESET]][[Yellow]] 0x{{[0-9a-fA-F]*}}[[RESET]] <[[Yellow]]line:28:1[[RESET]], [[Yellow]]line:30:1[[RESET]]> [[Yellow]]line:28:8[[RESET]] struct[[CYAN]] Invalid[[RESET]] definition
92 //CHECK: {{^}}[[Blue]]| |-[[RESET]][[GREEN]]CXXRecordDecl[[RESET]][[Yellow]] 0x{{[0-9a-fA-F]*}}[[RESET]] <[[Yellow]]col:1[[RESET]], [[Yellow]]col:8[[RESET]]> [[Yellow]]col:8[[RESET]] implicit struct[[CYAN]] Invalid[[RESET]]
93 //CHECK: {{^}}[[Blue]]| |-[[RESET]][[GREEN]]CXXConstructorDecl[[RESET]][[Yellow]] 0x{{[0-9a-fA-F]*}}[[RESET]] <[[Yellow]]line:29:3[[RESET]], [[Yellow]]col:42[[RESET]]> [[Yellow]]col:29[[RESET]] invalid[[CYAN]] Invalid[[RESET]] [[Green]]'void (int)'[[RESET]]
96 //CHECK: {{^}}[[Blue]]| |-[[RESET]][[GREEN]]CXXConstructorDecl[[RESET]][[Yellow]] 0x{{[0-9a-fA-F]*}}[[RESET]] <[[Yellow]]line:28:8[[RESET]]> [[Yellow]]col:8[[RESET]] implicit used[[CYAN]] Invalid[[RESET]] [[Green]]'void (void)'[[RESET]] inline noexcept-unevaluated 0x{{[0-9a-fA-F]*}}
98 //CHECK: {{^}}[[Blue]]| |-[[RESET]][[GREEN]]CXXConstructorDecl[[RESET]][[Yellow]] 0x{{[0-9a-fA-F]*}}[[RESET]] <[[Yellow]]col:8[[RESET]]> [[Yellow]]col:8[[RESET]] implicit[[CYAN]] Invalid[[RESET]] [[Green]]'void (const struct Invalid &)'[[RESET]] inline noexcept-unevaluated 0x{{[0-9a-fA-F]*}}
99 //CHECK: {{^}}[[Blue]]| | `-[[RESET]][[GREEN]]ParmVarDecl[[RESET]][[Yellow]] 0x{{[0-9a-fA-F]*}}[[RESET]] <[[Yellow]]col:8[[RESET]]> [[Yellow]]col:8[[RESET]] [[Green]]'const struct Invalid
[all...]
/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/chromium_org/third_party/WebKit/Source/core/html/
H A DMediaFragmentURIParser.h50 enum TimeFormat { None, Invalid, NormalPlayTime, SMPTETimeCode, WallClockTimeCode }; enumerator in enum:blink::FINAL::TimeFormat
/external/clang/test/SemaCXX/
H A Dunderlying_type.cpp46 void PR19966(enum Invalid) { // expected-note 2{{forward declaration of}} argument
49 __underlying_type(Invalid) dont_crash;
50 // expected-error@-1 {{cannot determine underlying type of incomplete enumeration type 'PR19966::Invalid'}}
/external/clang/tools/libclang/
H A DCIndexInclusionStack.cpp50 bool Invalid = false; local
51 const SrcMgr::SLocEntry &SL = (SM.*Getter)(i, &Invalid);
53 if (!SL.isFile() || Invalid)
/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/chromium_org/third_party/WebKit/Source/core/html/imports/
H A DHTMLImportState.h44 Invalid enumerator in enum:blink::HTMLImportState::Value
53 bool isValid() const { return m_value != Invalid; }
62 static HTMLImportState invalidState() { return HTMLImportState(Invalid); }
/external/llvm/lib/Support/
H A DDynamicLibrary.cpp36 char llvm::sys::DynamicLibrary::Invalid = 0; member in class:llvm::sys::DynamicLibrary
/external/chromium_org/remoting/protocol/
H A Dauthentication_method.cc16 AuthenticationMethod AuthenticationMethod::Invalid() { function in class:remoting::protocol::AuthenticationMethod
47 return AuthenticationMethod::Invalid();
/external/clang/lib/Parse/
H A DParseAST.cpp63 bool Invalid = false; local
66 const char *Spelling = SM.getCharacterData(Tok.getLocation(), &Invalid);
67 if (Invalid) {
H A DParseStmtAsm.cpp204 bool Invalid = local
224 if (Invalid || Tok.is(EndOfStream)) {
/external/pdfium/core/include/fpdfdoc/
H A Dfpdf_tagged.h32 Invalid, enumerator in enum:CPDF_StructKid::__anon28520
/external/chromium_org/v8/src/compiler/
H A Dsource-position.h24 static SourcePosition Invalid() { return SourcePosition(kInvalidPosition); } function in class:v8::internal::compiler::FINAL
/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) {
/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/pdfium/core/include/fxcrt/
H A Dfx_xml.h163 enum ChildType { Invalid, Element, Content}; enumerator in enum:CXML_Element::ChildType
/external/chromium_org/media/base/
H A Dtest_helpers.cc123 VideoDecoderConfig TestVideoConfig::Invalid() { function in class:media::TestVideoConfig
/external/chromium_org/third_party/WebKit/Source/platform/
H A DDateComponents.h58 , m_type(Invalid)
63 Invalid, enumerator in enum:blink::DateComponents::Type
/external/clang/lib/ARCMigrate/
H A DTransGCAttrs.cpp97 bool Invalid = false; local
100 Buf, SM, Ctx.getLangOpts(), &Invalid);
101 if (Invalid)
/external/clang/lib/AST/
H A DRawCommentList.cpp109 bool Invalid = false; local
111 &Invalid).data();
112 if (Invalid)
175 bool Invalid = false;
176 const char *Buffer = SM.getBufferData(Loc1Info.first, &Invalid).data();
177 if (Invalid)
/external/clang/lib/Edit/
H A DEditedSource.cpp120 bool Invalid = false; local
121 StringRef text = getSourceText(BeginOffs, B, Invalid);
122 if (Invalid)
131 bool Invalid = false; local
132 StringRef text = getSourceText(BeginOffs, EndOffs, Invalid);
133 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)

Completed in 651 milliseconds

123