Home
last modified time | relevance | path

Searched refs:Invalid (Results 1 – 25 of 959) sorted by relevance

12345678910>>...39

/external/boringssl/src/crypto/fipsmodule/ecdsa/
Decdsa_verify_tests.txt21 Invalid =
29 Invalid =
44 Invalid =
52 Invalid =
60 Invalid =
68 Invalid =
76 Invalid =
84 Invalid =
92 Invalid =
100 Invalid =
[all …]
/external/swiftshader/third_party/subzero/tests_lit/parse_errs/
Dinsertextract-err.ll16 ; MIN: Error{{.*}} Invalid function record: <6 4 3>
19 ; MIN: Error{{.*}} Invalid function record: <6 5 3>
22 ; MIN: Error{{.*}} Invalid function record: <6 6 3>
29 ; MIN: Error{{.*}} Invalid function record: <6 4 3>
32 ; MIN: Error{{.*}} Invalid function record: <6 5 3>
35 ; MIN: Error{{.*}} Invalid function record: <6 6 3>
42 ; MIN: Error{{.*}} Invalid function record: <6 4 3>
45 ; MIN: Error{{.*}} Invalid function record: <6 5 3>
48 ; MIN: Error{{.*}} Invalid function record: <6 6 3>
55 ; MIN: Error{{.*}} Invalid function record: <6 4 3>
[all …]
/external/clang/lib/Basic/
DSourceManager.cpp87 bool *Invalid) const { in getBuffer()
91 if (Invalid) in getBuffer()
92 *Invalid = isBufferInvalid(); in getBuffer()
129 if (Invalid) *Invalid = true; in getBuffer()
146 if (Invalid) *Invalid = true; in getBuffer()
173 if (Invalid) in getBuffer()
174 *Invalid = isBufferInvalid(); in getBuffer()
293 bool Invalid = false; in AddLineNote() local
294 const SLocEntry &Entry = getSLocEntry(LocInfo.first, &Invalid); in AddLineNote()
295 if (!Entry.isFile() || Invalid) in AddLineNote()
[all …]
DSourceLocation.cpp96 unsigned FullSourceLoc::getExpansionLineNumber(bool *Invalid) const { in getExpansionLineNumber()
98 return SrcMgr->getExpansionLineNumber(*this, Invalid); in getExpansionLineNumber()
101 unsigned FullSourceLoc::getExpansionColumnNumber(bool *Invalid) const { in getExpansionColumnNumber()
103 return SrcMgr->getExpansionColumnNumber(*this, Invalid); in getExpansionColumnNumber()
106 unsigned FullSourceLoc::getSpellingLineNumber(bool *Invalid) const { in getSpellingLineNumber()
108 return SrcMgr->getSpellingLineNumber(*this, Invalid); in getSpellingLineNumber()
111 unsigned FullSourceLoc::getSpellingColumnNumber(bool *Invalid) const { in getSpellingColumnNumber()
113 return SrcMgr->getSpellingColumnNumber(*this, Invalid); in getSpellingColumnNumber()
130 const char *FullSourceLoc::getCharacterData(bool *Invalid) const { in getCharacterData()
132 return SrcMgr->getCharacterData(*this, Invalid); in getCharacterData()
[all …]
/external/clang/include/clang/Basic/
DSourceManager.h179 bool *Invalid = nullptr) const;
832 bool *Invalid = nullptr);
896 bool *Invalid = nullptr) const {
900 if (Invalid)
901 *Invalid = true;
907 Invalid);
910 llvm::MemoryBuffer *getBuffer(FileID FID, bool *Invalid = nullptr) const {
914 if (Invalid)
915 *Invalid = true;
922 Invalid);
[all …]
/external/clang/unittests/Basic/
DSourceManagerTest.cpp134 bool Invalid; in TEST_F() local
136 Invalid = false; in TEST_F()
137 EXPECT_EQ(1U, SourceMgr.getColumnNumber(MainFileID, 0, &Invalid)); in TEST_F()
138 EXPECT_TRUE(!Invalid); in TEST_F()
140 Invalid = false; in TEST_F()
141 EXPECT_EQ(5U, SourceMgr.getColumnNumber(MainFileID, 4, &Invalid)); in TEST_F()
142 EXPECT_TRUE(!Invalid); in TEST_F()
144 Invalid = false; in TEST_F()
145 EXPECT_EQ(1U, SourceMgr.getColumnNumber(MainFileID, 7, &Invalid)); in TEST_F()
146 EXPECT_TRUE(!Invalid); in TEST_F()
[all …]
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DTokenConstants.cs56 public const int Invalid = 0; field in Antlr.Runtime.TokenTypes
69 public static readonly IToken Invalid = new CommonToken( TokenTypes.Invalid ); field in Antlr.Runtime.Tokens
76 public static readonly IToken Skip = new CommonToken( TokenTypes.Invalid );
87 public static readonly T Invalid = new T() field in Antlr.Runtime.T
89 Type = TokenTypes.Invalid
94 Type = TokenTypes.Invalid
/external/clang/include/clang/Sema/
DOwnership.h148 bool Invalid;
151 ActionResult(bool Invalid = false)
152 : Val(PtrTy()), Invalid(Invalid) {}
153 ActionResult(PtrTy val) : Val(val), Invalid(false) {}
154 ActionResult(const DiagnosticBuilder &) : Val(PtrTy()), Invalid(true) {}
160 bool isInvalid() const { return Invalid; }
161 bool isUsable() const { return !Invalid && Val; }
162 bool isUnset() const { return !Invalid && !Val; }
171 Invalid = false;
185 ActionResult(bool Invalid = false)
[all …]
/external/e2fsprogs/tests/progs/test_data/
Dexpect.icount4 store: Invalid argument passed to ext2 library while calling ext2fs_icount_store
6 fetch: Invalid argument passed to ext2 library while calling ext2fs_icount_fetch
8 increment: Invalid argument passed to ext2 library while calling ext2fs_icount_increment
10 decrement: Invalid argument passed to ext2 library while calling ext2fs_icount_decrement
12 store: Invalid argument passed to ext2 library while calling ext2fs_icount_store
14 fetch: Invalid argument passed to ext2 library while calling ext2fs_icount_fetch
16 increment: Invalid argument passed to ext2 library while calling ext2fs_icount_increment
18 decrement: Invalid argument passed to ext2 library while calling ext2fs_icount_decrement
61 decrement: Invalid argument passed to ext2 library while calling ext2fs_icount_decrement
93 decrement: Invalid argument passed to ext2 library while calling ext2fs_icount_decrement
[all …]
/external/clang/lib/AST/
DRawCommentList.cpp73 bool Invalid = false; in commentsStartOnSameColumn() local
74 unsigned C1 = SM.getPresumedColumnNumber(L1, &Invalid); in commentsStartOnSameColumn()
75 if (!Invalid) { in commentsStartOnSameColumn()
76 unsigned C2 = SM.getPresumedColumnNumber(L2, &Invalid); in commentsStartOnSameColumn()
77 return !Invalid && (C1 == C2); in commentsStartOnSameColumn()
130 bool Invalid = false; in RawComment() local
132 SourceMgr.getBufferData(BeginFileID, &Invalid).data(); in RawComment()
134 (!Invalid && !onlyWhitespaceOnLineBefore(Buffer, BeginOffset)); in RawComment()
168 bool Invalid = false; in getRawTextSlow() local
170 &Invalid).data(); in getRawTextSlow()
[all …]
/external/llvm/test/Object/
Dcorrupt.test5 SECNAME: Error reading file: Invalid data was encountered while parsing the file.
12 SECDATA: Error reading file: Invalid data was encountered while parsing the file.
19 SYMNAME: Error reading file: Invalid data was encountered while parsing the file.
26 VER: Error reading file: Invalid version entry.
33 STRTAB: Invalid dynamic string table reference
39 PHENTSIZE: Invalid program header size
52 RELOC: Invalid entity size
58 DYN-TABLE-SIZE: Invalid entity size
65 DYN-TABLE-OFFSET: Invalid data was encountered while parsing the file.
72 DYN-TABLE-TOO-LARGE: Invalid data was encountered while parsing the file.
Dinvalid.test4 CHECK: Invalid data was encountered while parsing the file
38 INVALID-SYM-SIZE: Invalid symbol size
41 INVALID-DYNSYM-SIZE: Invalid entity size
45 INVALID-SECTION-INDEX: Invalid section index
48 INVALID-SECTION-SIZE: Invalid section header entry size (e_shentsize) in ELF header
52 INVALID-SYMTAB-SIZE: Invalid symbol table size
56 INVALID-XINDEX-SIZE: Invalid data was encountered while parsing the file.
/external/llvm/test/Bitcode/
Dinvalid.test30 INVALID-ENCODING: Invalid encoding
33 BAD-ABBREV-NUMBER: Invalid abbrev number
34 BAD-TYPE-TABLE-FORWARD-REF: Invalid TYPE table: Only named structs can be forward referenced
36 BAD-ALIGN: Invalid alignment value
59 EXTRACT-ARRAY: EXTRACTVAL: Invalid array index
60 EXTRACT-STRUCT: EXTRACTVAL: Invalid struct index
61 EXTRACT-IDXS: EXTRACTVAL: Invalid type
62 INSERT-ARRAY: INSERTVAL: Invalid array index
63 INSERT-STRUCT: INSERTVAL: Invalid struct index
64 INSERT-IDXS: INSERTVAL: Invalid type
[all …]
/external/pdfium/third_party/libpng16/
D0003-check-errors-in-set-pcal.patch9 - png_error(png_ptr, "Invalid pCAL equation type");
11 + png_chunk_report(png_ptr, "Invalid pCAL equation type",
17 - png_error(png_ptr, "Invalid pCAL parameter count");
19 + png_chunk_report(png_ptr, "Invalid pCAL parameter count",
29 - png_error(png_ptr, "Invalid format for pCAL parameter");
31 + png_chunk_report(png_ptr, "Invalid format for pCAL parameter",
/external/swiftshader/third_party/llvm-7.0/llvm/test/Bitcode/
Dinvalid.test32 INVALID-EMPTY: Invalid bitcode signature
33 INVALID-ENCODING: Invalid encoding
37 BAD-TYPE-TABLE-FORWARD-REF: Invalid TYPE table: Only named structs can be forward referenced
39 BAD-ALIGN: Invalid alignment value
62 EXTRACT-ARRAY: EXTRACTVAL: Invalid array index
63 EXTRACT-STRUCT: EXTRACTVAL: Invalid struct index
64 EXTRACT-IDXS: EXTRACTVAL: Invalid type
65 INSERT-ARRAY: INSERTVAL: Invalid array index
66 INSERT-STRUCT: INSERTVAL: Invalid struct index
67 INSERT-IDXS: INSERTVAL: Invalid type
[all …]
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
DSDNodeDbgValue.h51 bool Invalid; variable
56 Invalid(false) { in SDDbgValue()
65 mdPtr(mdP), Offset(off), DL(dl), Order(O), Invalid(false) { in SDDbgValue()
72 mdPtr(mdP), Offset(off), DL(dl), Order(O), Invalid(false) { in SDDbgValue()
108 void setIsInvalidated() { Invalid = true; } in setIsInvalidated()
109 bool isInvalidated() { return Invalid; } in isInvalidated()
/external/v8/src/
Dv8threads.cc109 lazily_archived_thread_ = ThreadId::Invalid(); in RestoreThread()
114 lazily_archived_thread_state_->set_id(ThreadId::Invalid()); in RestoreThread()
151 state->set_id(ThreadId::Invalid()); in RestoreThread()
166 mutex_owner_ = ThreadId::Invalid(); in Unlock()
182 : id_(ThreadId::Invalid()), in ThreadState()
242 : mutex_owner_(ThreadId::Invalid()), in ThreadManager()
243 lazily_archived_thread_(ThreadId::Invalid()), in ThreadManager()
270 DCHECK(lazily_archived_thread_.Equals(ThreadId::Invalid())); in ArchiveThread()
280 DCHECK(state->id().Equals(ThreadId::Invalid())); in ArchiveThread()
282 DCHECK(!state->id().Equals(ThreadId::Invalid())); in ArchiveThread()
[all …]
Ddateparser-inl.h284 return DateToken::Invalid(); in ParseES5DateTime()
289 if (!scanner->SkipSymbol(':')) return DateToken::Invalid(); in ParseES5DateTime()
293 return DateToken::Invalid(); in ParseES5DateTime()
300 return DateToken::Invalid(); in ParseES5DateTime()
306 return DateToken::Invalid(); in ParseES5DateTime()
325 return DateToken::Invalid(); in ParseES5DateTime()
333 return DateToken::Invalid(); in ParseES5DateTime()
336 if (!scanner->SkipSymbol(':')) return DateToken::Invalid(); in ParseES5DateTime()
339 return DateToken::Invalid(); in ParseES5DateTime()
344 if (!scanner->Peek().IsEndOfInput()) return DateToken::Invalid(); in ParseES5DateTime()
/external/clang/test/Index/
Dc-index-getCursor-test.m62 // CHECK: [1:1 - 3:1] Invalid Cursor => NoDeclFound
68 // CHECK: [10:5 - 12:1] Invalid Cursor => NoDeclFound
72 // CHECK: [16:5 - 18:1] Invalid Cursor => NoDeclFound
82 // CHECK: [21:5 - 23:1] Invalid Cursor => NoDeclFound
86 // CHECK: [25:5 - 27:1] Invalid Cursor => NoDeclFound
92 // CHECK: [29:5 - 31:1] Invalid Cursor => NoDeclFound
104 // CHECK: [38:5 - 40:1] Invalid Cursor => NoDeclFound
108 // CHECK: [42:2 - 44:1] Invalid Cursor => NoDeclFound
/external/e2fsprogs/lib/et/test_cases/
Dimap_err.et72 "Invalid namespace prefix in configuration file"
93 "Invalid mailbox name"
96 "Invalid mailbox type"
114 "Invalid identifier"
141 "Invalid annotation entry"
144 "Invalid annotation attribute"
147 "Invalid annotation value"
157 "Invalid server requested"
180 "Invalid user"
/external/swiftshader/third_party/llvm-7.0/llvm/test/Object/
Dcorrupt.test26 VER: Error reading file: Invalid version entry.
33 STRTAB: Invalid dynamic string table reference
52 RELOC: Invalid entity size
58 DYN-TABLE-SIZE: Invalid entity size
65 DYN-TABLE-OFFSET: Invalid data was encountered while parsing the file.
72 DYN-TABLE-TOO-LARGE: Invalid data was encountered while parsing the file.
/external/libtextclassifier/actions/
Dlua-actions.cc36 return TensorView<float>::Invalid(); in GetTensorViewForOutput()
81 ? TensorView<float>::Invalid() in LuaActionsSuggestions()
86 ? TensorView<float>::Invalid() in LuaActionsSuggestions()
90 ? TensorView<float>::Invalid() in LuaActionsSuggestions()
96 ? TensorView<float>::Invalid() in LuaActionsSuggestions()
/external/clang/test/Misc/
Dast-dump-color.cpp28 struct Invalid { struct
29 __attribute__((noinline)) Invalid(error);
30 } Invalid; variable
/external/clang/lib/Frontend/Rewrite/
DInclusionRewriter.cpp231 bool Invalid; in detectMainFileEOL() local
232 const MemoryBuffer &FromFile = *SM.getBuffer(SM.getMainFileID(), &Invalid); in detectMainFileEOL()
233 assert(!Invalid); in detectMainFileEOL()
234 if (Invalid) in detectMainFileEOL()
357 bool Invalid = false; in HandleHasInclude() local
358 StringRef TmpName = PP.getSpelling(Tok, TmpBuffer, &Invalid); in HandleHasInclude()
359 if (Invalid) in HandleHasInclude()
373 bool Invalid = false; in HandleHasInclude() local
374 Filename = PP.getSpelling(Tok, FilenameBuffer, &Invalid); in HandleHasInclude()
375 if (Invalid) in HandleHasInclude()
[all …]
/external/clang/lib/Edit/
DEditedSource.cpp162 bool Invalid = false; in commitInsertFromRange() local
163 StringRef text = getSourceText(BeginOffs, B, Invalid); in commitInsertFromRange()
164 if (Invalid) in commitInsertFromRange()
173 bool Invalid = false; in commitInsertFromRange() local
174 StringRef text = getSourceText(BeginOffs, EndOffs, Invalid); in commitInsertFromRange()
175 if (Invalid) in commitInsertFromRange()
327 bool Invalid = false; in adjustRemoval() local
328 StringRef buffer = SM.getBufferData(offs.getFID(), &Invalid); in adjustRemoval()
329 if (Invalid) in adjustRemoval()
433 bool &Invalid) { in getSourceText() argument
[all …]

12345678910>>...39