Home
last modified time | relevance | path

Searched refs:Invalid (Results 1 - 25 of 228) sorted by relevance

12345678910

/third_party/nghttp2/third-party/llhttp/src/
H A Dllhttp.c1352 state->reason = "Invalid character in chunk extensions quoted value"; in llhttp__internal__run()
1414 state->reason = "Invalid character in chunk extensions value"; in llhttp__internal__run()
1480 state->reason = "Invalid character in chunk extensions name"; in llhttp__internal__run()
1935 state->reason = "Invalid header field char"; in llhttp__internal__run()
2097 state->reason = "Invalid header value char"; in llhttp__internal__run()
2304 state->reason = "Invalid character in Content-Length"; in llhttp__internal__run()
2400 state->reason = "Invalid `Transfer-Encoding` header value"; in llhttp__internal__run()
2410 state->reason = "Invalid `Transfer-Encoding` header value"; in llhttp__internal__run()
3163 state->reason = "Invalid HTTP version"; in llhttp__internal__run()
3173 state->reason = "Invalid mino in llhttp__internal__run()
[all...]
/third_party/node/deps/v8/src/compiler/
H A Daccess-info.cc98 PropertyAccessInfo PropertyAccessInfo::Invalid(Zone* zone) { in Invalid() function in v8::internal::compiler::PropertyAccessInfo
426 return Invalid(); in ComputeDataFieldAccessInfo()
443 if (!descriptors_field_type_ref.has_value()) return Invalid(); in ComputeDataFieldAccessInfo()
462 return Invalid(); in ComputeDataFieldAccessInfo()
478 if (!maybe_field_map.has_value()) return Invalid(); in ComputeDataFieldAccessInfo()
540 return PropertyAccessInfo::Invalid(zone); in AccessorAccessInfoHelper()
544 return PropertyAccessInfo::Invalid(zone); in AccessorAccessInfoHelper()
559 return PropertyAccessInfo::Invalid(zone); in AccessorAccessInfoHelper()
567 if (!accessor_ref.has_value()) return PropertyAccessInfo::Invalid(zone); in AccessorAccessInfoHelper()
574 return PropertyAccessInfo::Invalid(zon in AccessorAccessInfoHelper()
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/random/internal/
H A Duniform_helper_test.cc193 struct Invalid {}; struct
199 Invalid InferredUniformReturnT(...);
211 // CheckArgsInferType<float, int, Invalid>()
249 // Invalid (u)int16_t-pairings do not compile. in TEST_F()
251 CheckArgsInferType<uint16_t, int16_t, Invalid>(); in TEST_F()
252 CheckArgsInferType<int16_t, uint32_t, Invalid>(); in TEST_F()
253 CheckArgsInferType<int16_t, uint64_t, Invalid>(); in TEST_F()
264 // Invalid (u)int32_t-pairings do not compile. in TEST_F()
265 CheckArgsInferType<uint32_t, int32_t, Invalid>(); in TEST_F()
266 CheckArgsInferType<int32_t, uint64_t, Invalid>(); in TEST_F()
[all...]
/third_party/node/deps/v8/src/execution/
H A Dv8threads.cc107 lazily_archived_thread_ = ThreadId::Invalid(); in RestoreThread()
112 lazily_archived_thread_state_->set_id(ThreadId::Invalid()); in RestoreThread()
147 state->set_id(ThreadId::Invalid()); in RestoreThread()
160 mutex_owner_.store(ThreadId::Invalid(), std::memory_order_relaxed); in Unlock()
174 : id_(ThreadId::Invalid()), in ThreadState()
225 : mutex_owner_(ThreadId::Invalid()), in ThreadManager()
226 lazily_archived_thread_(ThreadId::Invalid()), in ThreadManager()
251 DCHECK_EQ(lazily_archived_thread_, ThreadId::Invalid()); in ArchiveThread()
261 DCHECK_EQ(state->id(), ThreadId::Invalid()); in ArchiveThread()
263 DCHECK_NE(state->id(), ThreadId::Invalid()); in ArchiveThread()
[all...]
/third_party/typescript/tests/baselines/reference/
H A DemitBOM.js5 tests/cases/compiler/emitBOM.js(1,2): error TS1127: Invalid character.
6 tests/cases/compiler/emitBOM.js(1,3): error TS1127: Invalid character.
12 !!! error TS1127: Invalid character.
14 !!! error TS1127: Invalid character.
/third_party/skia/third_party/externals/abseil-cpp/absl/random/
H A Ddistributions_test.cc34 struct Invalid {}; struct
42 Invalid InferredUniformReturnT(...);
51 Invalid InferredTaggedUniformReturnT(...);
66 // resolve (via SFINAE) to the overload which returns type "Invalid". This
74 // CheckArgsInferType<float, int, Invalid>()
101 Invalid ExplicitUniformReturnT(...);
109 Invalid ExplicitTaggedUniformReturnT(...);
172 // Invalid (u)int16_t-pairings do not compile. in TEST_F()
174 CheckArgsInferType<uint16_t, int16_t, Invalid>(); in TEST_F()
175 CheckArgsInferType<int16_t, uint32_t, Invalid>(); in TEST_F()
[all...]
/third_party/node/deps/v8/src/date/
H A Ddateparser-inl.h279 return DateToken::Invalid(); in ParseES5DateTime()
284 if (!scanner->SkipSymbol(':')) return DateToken::Invalid(); in ParseES5DateTime()
288 return DateToken::Invalid(); in ParseES5DateTime()
295 return DateToken::Invalid(); in ParseES5DateTime()
301 return DateToken::Invalid(); in ParseES5DateTime()
319 return DateToken::Invalid(); in ParseES5DateTime()
327 return DateToken::Invalid(); in ParseES5DateTime()
330 if (!scanner->SkipSymbol(':')) return DateToken::Invalid(); in ParseES5DateTime()
333 return DateToken::Invalid(); in ParseES5DateTime()
338 if (!scanner->Peek().IsEndOfInput()) return DateToken::Invalid(); in ParseES5DateTime()
[all...]
/third_party/node/deps/v8/src/torque/
H A Dsource-positions.h20 static SourceId Invalid() { return SourceId(-1); } in Invalid() function in v8::internal::torque::SourceId
39 static LineAndColumn Invalid() { return {-1, -1, -1}; } in Invalid() function
62 static SourcePosition Invalid() { in Invalid() function
63 SourcePosition pos{SourceId::Invalid(), LineAndColumn::Invalid(), in Invalid()
64 LineAndColumn::Invalid()}; in Invalid()
H A Dglobal-context.cc22 SourcePosition{CurrentSourceFile::Get(), LineAndColumn::Invalid(), in GlobalContext()
23 LineAndColumn::Invalid()}); in GlobalContext()
/third_party/rust/crates/static-assertions-rs/src/
H A Dassert_impl.rs277 struct Invalid; structure names
279 impl<T: ?Sized $(+ $t)+> AmbiguousIfImpl<Invalid> for T {}
283 // `$x` implements `AmbiguousIfImpl<Invalid>`.
340 // Creates multiple scoped `Invalid` types for each trait `$t`, over
341 // which a specialized `AmbiguousIfImpl<Invalid>` is implemented for
345 struct Invalid; structure names
347 impl<T: ?Sized + $t> AmbiguousIfImpl<Invalid> for T {}
352 // `$x` implements any `AmbiguousIfImpl<Invalid>`.
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
H A DLowLevelTypeImpl.h131 /// but the new element size. Otherwise, return the new element type. Invalid
143 assert(RawData != 0 && "Invalid Type"); in getScalarSizeInBits()
158 assert(RawData != 0 && "Invalid Type"); in getAddressSpace()
200 /// * Invalid:
284 LLT Invalid; in getEmptyKey() local
285 Invalid.IsPointer = true; in getEmptyKey()
286 return Invalid; in getEmptyKey()
289 LLT Invalid; in getTombstoneKey() local
290 Invalid.IsVector = true; in getTombstoneKey()
291 return Invalid; in getTombstoneKey()
[all...]
H A DDynamicLibrary.h40 static char Invalid; member in llvm::sys::DynamicLibrary
46 explicit DynamicLibrary(void *data = &Invalid) : Data(data) {} in DynamicLibrary() argument
49 bool isValid() const { return Data != &Invalid; } in isValid()
/third_party/node/test/parallel/
H A Dtest-http-status-reason-invalid-chars.js11 }, /Invalid character in statusMessage/);
15 }, /Invalid character in statusMessage/);
25 }, /Invalid character in statusMessage/);
H A Dtest-crypto-authenticated.js46 length: /Invalid initialization vector/,
47 authTagLength: /Invalid authentication tag length/
248 message: /Invalid authentication tag length/
260 message: /Invalid authentication tag length/
272 message: /Invalid authentication tag length/
307 message: /Invalid authentication tag length/
478 }, /Invalid message length$/);
483 }, /Invalid message length/);
646 // Invalid IV lengths should be detected:
740 message: `Invalid authenticatio
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
H A DMemoryDependenceAnalysis.h59 /// In a default-constructed MemDepResult object, the type will be Invalid
61 Invalid = 0, enumerator
118 DepType, PointerSumTypeMember<Invalid, Instruction *>,
179 case Invalid: in getInst()
180 return Value.cast<Invalid>(); in getInst()
200 bool isDirty() const { return Value.is<Invalid>(); } in isDirty()
203 return MemDepResult(ValueTy::create<Invalid>(Inst)); in getDirty()
/third_party/alsa-lib/src/
H A Dconf.c814 SNDERR("Invalid search dir %s", str); in get_char_skip_comments()
3977 SNDERR("Invalid type for field func"); in snd_config_hooks_call()
3985 SNDERR("Invalid type for func %s definition", str); in snd_config_hooks_call()
3997 SNDERR("Invalid type for %s", id); in snd_config_hooks_call()
4005 SNDERR("Invalid type for %s", id); in snd_config_hooks_call()
4270 SNDERR("Invalid bool value in field errors"); in snd_config_hook_load()
4283 SNDERR("Invalid type for field filenames"); in snd_config_hook_load()
5136 SNDERR("Invalid type for @func"); in _snd_config_evaluate()
5144 SNDERR("Invalid type for func %s definition", str); in _snd_config_evaluate()
5156 SNDERR("Invalid typ in _snd_config_evaluate()
[all...]
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
H A Dutil.cpp882 return ImplicitTypeConversion::Invalid; in GetConversion()
886 return ImplicitTypeConversion::Invalid; in GetConversion()
893 return ImplicitTypeConversion::Invalid; in GetConversion()
900 return ImplicitTypeConversion::Invalid; in GetConversion()
913 return ImplicitTypeConversion::Invalid; in GetConversion()
917 return ImplicitTypeConversion::Invalid; in GetConversion()
919 return ImplicitTypeConversion::Invalid; in GetConversion()
970 case sh::ImplicitTypeConversion::Invalid: in IsValidImplicitConversion()
H A DConstantUnion.cpp316 else if (conversion == ImplicitTypeConversion::Invalid) in operator ==()
371 return false; // Invalid operation, handled at semantic analysis in operator >()
376 ASSERT(conversion != ImplicitTypeConversion::Invalid); in operator >()
395 return false; // Invalid operation, handled at semantic analysis in operator <()
400 ASSERT(conversion != ImplicitTypeConversion::Invalid); in operator <()
433 ASSERT(conversion != ImplicitTypeConversion::Invalid); in add()
468 ASSERT(conversion != ImplicitTypeConversion::Invalid); in sub()
505 ASSERT(conversion != ImplicitTypeConversion::Invalid); in mul()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DFloatingPointMode.h23 Invalid = -1, member in llvm::DenormalMode
42 .Default(DenormalMode::Invalid); in parseDenormalFPAttribute()
/third_party/skia/third_party/externals/angle2/src/common/
H A DOptional_unittest.cpp21 ASSERT_EQ(Optional<int>::Invalid(), testInvalid); in TEST()
29 ASSERT_NE(Optional<int>::Invalid(), testValid); in TEST()
/third_party/skia/experimental/sorttoy/
H A Dsorttypes.h22 static ID Invalid() { in Invalid() function in ID
47 static PaintersOrder Invalid() { in Invalid() function in PaintersOrder
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
H A DSDNodeDbgValue.h54 bool Invalid = false; member in llvm::SDDbgValue
81 "Invalid SDDbgValue constructor"); in SDDbgValue()
126 void setIsInvalidated() { Invalid = true; } in setIsInvalidated()
127 bool isInvalidated() const { return Invalid; } in isInvalidated()
/third_party/node/deps/v8/src/compiler/backend/
H A Djump-threading.cc67 RpoNumber empty_deconstruct_frame_return_block = RpoNumber::Invalid(); in ComputeForwarding()
69 RpoNumber empty_no_deconstruct_frame_return_block = RpoNumber::Invalid(); in ComputeForwarding()
128 RpoNumber::Invalid()) { in ComputeForwarding()
137 RpoNumber::Invalid()) { in ComputeForwarding()
H A Dspill-placer.h162 RpoNumber first_block_ = RpoNumber::Invalid();
163 RpoNumber last_block_ = RpoNumber::Invalid();
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TableGen/
H A DTGLexer.cpp308 return ReturnError(TokStart, "Invalid variable name"); in LexVarName()
458 return ReturnError(TokStart, "Invalid hexadecimal number"); in LexNumber()
463 return ReturnError(TokStart, "Invalid hexadecimal number"); in LexNumber()
468 return ReturnError(TokStart, "Invalid hexadecimal number"); in LexNumber()
481 return ReturnError(CurPtr-2, "Invalid binary number"); in LexNumber()
528 return ReturnError(CurPtr - 1, "Invalid \"!operator\""); in LexExclaim()
762 PrintFatalError("Invalid preprocessor control on the stack"); in lexPreprocessor()
806 PrintFatalError("Invalid recursion."); in prepSkipRegion()

Completed in 34 milliseconds

12345678910