/third_party/node/deps/v8/src/builtins/ |
D | builtins-shadow-realms.cc | 92 Handle<Object> source_text = args.atOrUndefined(isolate, 1); in BUILTIN() local 106 if (!source_text->IsString()) { in BUILTIN() 128 source_text); in BUILTIN()
|
/third_party/rust/crates/proc-macro2/src/ |
D | fallback.rs | 345 source_text: String::new(), 356 source_text: String, field 385 fn source_text(&self, span: Span) -> String { in source_text() method 388 self.source_text[lo..hi].to_owned() in source_text() 436 source_text: src.to_owned(), in add_file() 567 pub fn source_text(&self) -> Option<String> { in source_text() method 572 pub fn source_text(&self) -> Option<String> { in source_text() method 576 Some(SOURCE_MAP.with(|cm| cm.borrow().fileinfo(*self).source_text(*self))) in source_text()
|
D | wrapper.rs | 533 pub fn source_text(&self) -> Option<String> { in source_text() method 536 Span::Compiler(s) => s.source_text(), in source_text() 539 Span::Fallback(s) => s.source_text(), in source_text()
|
D | lib.rs | 539 pub fn source_text(&self) -> Option<String> { in source_text() method 540 self.inner.source_text() in source_text()
|
/third_party/googletest/googlemock/include/gmock/ |
D | gmock-spec-builders.h | 685 ExpectationBase(const char* file, int line, const std::string& source_text); 692 const char* source_text() const { return source_text_.c_str(); } in source_text() function 1194 ss << "Actions ran out in " << source_text() << "...\n" in GetCurrentAction() 1248 *what << "call matches " << source_text() << "...\n"; in GetActionForArguments() 1306 const std::string source_text(std::string("EXPECT_CALL(") + obj + ", " + in InternalExpectedAt() 1308 LogWithLocation(internal::kInfo, file, line, source_text + " invoked"); in InternalExpectedAt() 1309 return function_mocker_->AddNewExpectation(file, line, source_text, in InternalExpectedAt() 1533 const std::string& source_text, in AddNewExpectation() argument 1538 new TypedExpectation<F>(this, file, line, source_text, m); in AddNewExpectation() 1686 *why << expectation->source_text() << "...\n"; in PrintTriedExpectationsLocked()
|
/third_party/skia/third_party/externals/spirv-tools/test/ |
D | binary_to_text_test.cpp | 160 std::string source_text; member 169 EXPECT_THAT(EncodeSuccessfullyDecodeFailed(GetParam().source_text, in TEST_P()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/ |
D | binary_to_text_test.cpp | 160 std::string source_text; member 169 EXPECT_THAT(EncodeSuccessfullyDecodeFailed(GetParam().source_text, in TEST_P()
|
/third_party/spirv-tools/test/ |
D | binary_to_text_test.cpp | 171 std::string source_text; member 180 EXPECT_THAT(EncodeSuccessfullyDecodeFailed(GetParam().source_text, in TEST_P()
|
/third_party/googletest/googlemock/src/ |
D | gmock-spec-builders.cc | 250 << source_text() << "...\n" in CheckActionCountIfNotDone() 419 ss << "call count doesn't match " << untyped_expectation->source_text() in VerifyAndClearExpectationsLocked()
|
/third_party/node/src/ |
D | module_wrap.cc | 185 Local<String> source_text = args[2].As<String>(); in New() local 197 ScriptCompiler::Source source(source_text, origin, cached_data); in New()
|
/third_party/node/deps/v8/src/d8/ |
D | d8.cc | 1025 MaybeLocal<String> source_text = ReadFile(isolate, file_name.c_str(), false); in FetchModuleTree() local 1026 if (source_text.IsEmpty() && options.fuzzy_module_file_extensions) { in FetchModuleTree() 1028 source_text = ReadFile(isolate, fallback_file_name.c_str(), false); in FetchModuleTree() 1029 if (source_text.IsEmpty()) { in FetchModuleTree() 1031 source_text = ReadFile(isolate, fallback_file_name.c_str()); in FetchModuleTree() 1036 if (source_text.IsEmpty()) { in FetchModuleTree() 1056 ScriptCompiler::Source source(source_text.ToLocalChecked(), origin); in FetchModuleTree() 1057 if (!CompileString<Module>(isolate, context, source_text.ToLocalChecked(), in FetchModuleTree() 1064 if (!v8::JSON::Parse(context, source_text.ToLocalChecked()) in FetchModuleTree()
|