Home
last modified time | relevance | path

Searched refs:source_text (Results 1 – 11 of 11) sorted by relevance

/third_party/node/deps/v8/src/builtins/
Dbuiltins-shadow-realms.cc92 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/
Dfallback.rs345 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()
Dwrapper.rs533 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()
Dlib.rs539 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/
Dgmock-spec-builders.h685 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/
Dbinary_to_text_test.cpp160 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/
Dbinary_to_text_test.cpp160 std::string source_text; member
169 EXPECT_THAT(EncodeSuccessfullyDecodeFailed(GetParam().source_text, in TEST_P()
/third_party/spirv-tools/test/
Dbinary_to_text_test.cpp171 std::string source_text; member
180 EXPECT_THAT(EncodeSuccessfullyDecodeFailed(GetParam().source_text, in TEST_P()
/third_party/googletest/googlemock/src/
Dgmock-spec-builders.cc250 << source_text() << "...\n" in CheckActionCountIfNotDone()
419 ss << "call count doesn't match " << untyped_expectation->source_text() in VerifyAndClearExpectationsLocked()
/third_party/node/src/
Dmodule_wrap.cc185 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/
Dd8.cc1025 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()