Searched defs:Invalid (Results 26 - 50 of 71) sorted by relevance

123

/external/clang/tools/libclang/
H A DCXSourceLocation.cpp258 bool Invalid = false; local
259 const SrcMgr::SLocEntry &sloc = SM.getSLocEntry(fileID, &Invalid);
260 if (Invalid || !sloc.isFile()) {
/external/clang/unittests/Basic/
H A DSourceManagerTest.cpp134 bool Invalid; local
136 Invalid = false;
137 EXPECT_EQ(1U, SourceMgr.getColumnNumber(MainFileID, 0, &Invalid));
138 EXPECT_TRUE(!Invalid);
140 Invalid = false;
141 EXPECT_EQ(5U, SourceMgr.getColumnNumber(MainFileID, 4, &Invalid));
142 EXPECT_TRUE(!Invalid);
144 Invalid = false;
145 EXPECT_EQ(1U, SourceMgr.getColumnNumber(MainFileID, 7, &Invalid));
146 EXPECT_TRUE(!Invalid);
163 SourceMgr.getColumnNumber(FileID(), 0, &Invalid); local
167 SourceMgr.getColumnNumber(FileID(), 1, &Invalid); local
[all...]
/external/clang/unittests/Lex/
H A DLexerTest.cpp95 bool Invalid; local
99 SourceMgr, LangOpts, &Invalid);
100 if (Invalid)
/external/lldb/tools/lldb-perf/lib/
H A DResults.h34 Invalid, member in class:lldb_perf::Results::Result::Type
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSDNodeDbgValue.h52 bool Invalid; member in class:llvm::SDDbgValue
59 Invalid(false) {
69 Invalid(false) {
77 Invalid(false) {
116 void setIsInvalidated() { Invalid = true; }
117 bool isInvalidated() { return Invalid; }
/external/chromium_org/components/content_settings/core/common/
H A Dcontent_settings_pattern.cc101 virtual BuilderInterface* Invalid() OVERRIDE;
180 BuilderInterface* ContentSettingsPattern::Builder::Invalid() { function in class:ContentSettingsPattern::Builder
/external/clang/include/clang/Sema/
H A DOwnership.h147 bool Invalid; member in class:clang::ActionResult
150 ActionResult(bool Invalid = false)
151 : Val(PtrTy()), Invalid(Invalid) {}
152 ActionResult(PtrTy val) : Val(val), Invalid(false) {}
153 ActionResult(const DiagnosticBuilder &) : Val(PtrTy()), Invalid(true) {}
159 bool isInvalid() const { return Invalid; }
160 bool isUsable() const { return !Invalid && Val; }
161 bool isUnset() const { return !Invalid && !Val; }
170 Invalid
[all...]
/external/clang/lib/Lex/
H A DTokenLexer.cpp528 bool Invalid = false; local
529 unsigned LHSLen = PP.getSpelling(Tok, BufPtr, &Invalid);
532 if (Invalid)
536 unsigned RHSLen = PP.getSpelling(RHS, BufPtr, &Invalid);
537 if (Invalid)
577 bool Invalid = false; local
579 = SourceMgr.getBufferData(LocFileID, &Invalid).data();
580 if (Invalid)
H A DPragma.cpp243 "Invalid raw string token!");
249 "Invalid raw string token!");
260 "Invalid string token!");
461 bool Invalid = false; local
462 StringRef Filename = getSpelling(FilenameTok, FilenameBuffer, &Invalid);
463 if (Invalid)
542 "Invalid string token!");
770 assert(NS && "Invalid namespace, registered as a regular pragma handler!");
1404 "Invalid namespace, registered as a regular pragma handler!");
/external/clang/lib/Rewrite/Frontend/
H A DInclusionRewriter.cpp305 bool Invalid = false; local
306 StringRef TmpName = PP.getSpelling(Tok, TmpBuffer, &Invalid);
307 if (Invalid)
321 bool Invalid = false;
322 Filename = PP.getSpelling(Tok, FilenameBuffer, &Invalid);
323 if (Invalid)
350 bool Invalid; local
351 const MemoryBuffer &FromFile = *SM.getBuffer(FileId, &Invalid);
352 if (Invalid) // invalid inclusion
/external/llvm/include/llvm/Analysis/
H A DMemoryDependenceAnalysis.h41 /// Invalid - Clients of MemDep never see this.
42 Invalid = 0, enumerator in enum:llvm::MemDepResult::DepType
100 MemDepResult() : Value(nullptr, Invalid) {}
180 bool isDirty() const { return Value.getInt() == Invalid; }
183 return MemDepResult(PairTy(Inst, Invalid));
/external/chromium_org/third_party/webrtc/voice_engine/test/android/android_test/jni/
H A Dandroid_test.cc103 Invalid = -1, enumerator in enum:TestType
391 TestType tType(Invalid);
411 "RunAutoTest - Invalid TestType");
/external/chromium_org/v8/src/
H A Ddateparser.h210 static DateToken Invalid() { function in struct:v8::internal::DateParser::DateToken
373 // returns DateToken::Invalid(). Otherwise parsing continues in the
H A Dlithium-allocator.h100 static inline LifetimePosition Invalid() { return LifetimePosition(); } function in class:v8::internal::LifetimePosition
141 return LifetimePosition::Invalid();
H A Disolate.h187 static ThreadId Invalid() { return ThreadId(kInvalidId); } function in class:v8::internal::ThreadId
/external/clang/lib/ARCMigrate/
H A DTransforms.cpp549 bool Invalid; local
553 SM, LangOpts, &Invalid);
/external/clang/lib/Parse/
H A DParseTemplate.cpp854 bool Invalid = false; local
858 Invalid = ParseTemplateArgumentList(TemplateArgs);
860 if (Invalid) {
925 bool Invalid = ParseTemplateIdAfterTemplateName(Template, local
931 if (Invalid) {
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldChecker.cpp72 enum class BinOpToken : unsigned { Invalid, Add, Sub, BitwiseAnd, member in class:llvm::RuntimeDyldCheckerExprEval::BinOpToken
135 return std::make_pair(BinOpToken::Invalid, "");
148 default: return std::make_pair(BinOpToken::Invalid, Expr);
235 ErrMsgStream << "Invalid operand index '" << format("%i", OpIdx)
384 return std::make_pair(EvalResult("Invalid size for dereference."), "");
412 return std::make_pair(EvalResult("Invalid operator in load address."),
537 if (BinOp == BinOpToken::Invalid)
/external/chromium_org/v8/src/compiler/
H A Dregister-allocator.h96 static inline LifetimePosition Invalid() { return LifetimePosition(); } function in class:v8::internal::compiler::LifetimePosition
137 return LifetimePosition::Invalid();
/external/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp387 bool Invalid = false; local
388 unsigned ExpectedLine = SM.getSpellingLineNumber(Pos, &Invalid);
389 if (!Invalid && PH.Next(Line) && (FoundPlus || Line < ExpectedLine)) {
/external/clang/test/SemaCXX/
H A Dconstant-expression-cxx11.cpp254 constexpr int Invalid = Apply(Select(0), 0); // expected-error {{must be initialized by a constant expression}} expected-note {{in call to 'Apply(0, 0)'}} member in namespace:FunctionPointers
/external/clang/include/clang/Analysis/Analyses/
H A DFormatString.h236 static ArgType Invalid() { return ArgType(InvalidTy); } function in class:clang::analyze_format_string::ArgType
256 enum HowSpecified { NotSpecified, Constant, Arg, Invalid }; enumerator in enum:clang::analyze_format_string::OptionalAmount::HowSpecified
267 : start(nullptr),length(0), hs(valid ? NotSpecified : Invalid), amt(0),
271 return hs == Invalid;
/external/clang/include/clang/Basic/
H A DSourceManager.h184 /// \param Invalid If non-NULL, will be set \c true if an error occurred.
188 bool *Invalid = nullptr) const;
819 /// \param Invalid If non-NULL, will be set \c true if an error
822 bool *Invalid = nullptr);
873 bool *Invalid = nullptr) const {
877 if (Invalid)
878 *Invalid = true;
884 Invalid);
887 llvm::MemoryBuffer *getBuffer(FileID FID, bool *Invalid = nullptr) const {
891 if (Invalid)
934 bool Invalid = false; local
945 bool Invalid = false; local
984 bool Invalid = false; local
996 bool Invalid = false; local
1008 bool Invalid = false; local
1087 bool Invalid = false; local
1101 bool Invalid = false; local
1120 bool Invalid = false; local
[all...]
/external/clang/lib/AST/
H A DASTDiagnostic.cpp302 "Invalid modifier for QualType argument");
316 "Invalid modifier for DeclarationName argument");
327 "Invalid modifier for NamedDecl* argument");
439 Invalid, enumerator in enum:__anon17714::TemplateDiff::DiffTree::DiffKind
502 : Kind(Invalid), NextNode(0), ChildNode(0), ParentNode(ParentNode),
711 return GetKind() == Invalid;
1267 case DiffTree::Invalid:
H A DDeclBase.cpp86 void Decl::setInvalidDecl(bool Invalid) { argument
87 InvalidDecl = Invalid;
89 if (Invalid && !isa<ParmVarDecl>(this)) {
597 llvm_unreachable("Invalid DeclKind!");

Completed in 6933 milliseconds

123