Home
last modified time | relevance | path

Searched refs:source_string (Results 1 – 18 of 18) sorted by relevance

/external/grpc-grpc/src/python/grpcio/
Dsupport.py46 def _compile(compiler, source_string): argument
50 cfile.write(source_string)
59 def _expect_compile(compiler, source_string, error_message): argument
60 if _compile(compiler, source_string) is not None:
/external/google-breakpad/src/tools/linux/symupload/
Dsym_upload.cc66 static void TokenizeByChar(const string &source_string, in TokenizeByChar() argument
70 while ((next_pos = source_string.find(c, cur_pos)) != string::npos) { in TokenizeByChar()
72 results->push_back(source_string.substr(cur_pos, next_pos - cur_pos)); in TokenizeByChar()
75 if (cur_pos < source_string.size() && next_pos != cur_pos) in TokenizeByChar()
76 results->push_back(source_string.substr(cur_pos)); in TokenizeByChar()
/external/python/cpython2/Lib/test/
Dtest_tokenize.py13 def stringify_tokens_from_source(token_generator, source_string): argument
15 num_lines = len(source_string.splitlines())
16 missing_trailing_nl = source_string[-1] not in '\r\n'
/external/python/cpython3/Lib/test/
Dtest_tokenize.py19 def stringify_tokens_from_source(token_generator, source_string): argument
21 num_lines = len(source_string.splitlines())
22 missing_trailing_nl = source_string[-1] not in '\r\n'
/external/v8/src/builtins/
Dbuiltins-regexp.cc35 isolate->factory()->source_string())); in BUILTIN()
Dbuiltins-regexp-gen.cc1117 GetProperty(context, pattern, isolate->factory()->source_string()); in TF_BUILTIN()
/external/icu/icu4c/source/samples/coll/
Dreadme.txt30 coll [options*] -source source_string -target target_string
/external/icu/icu4c/source/samples/strsrch/
Dreadme.txt30 strsrch [options*] -source source_string -pattern pattern_string
/external/v8/src/snapshot/
Dsnapshot.cc625 v8::Local<v8::String> source_string; in RunExtraCode() local
626 if (!v8::String::NewFromUtf8(isolate, utf8_source).ToLocal(&source_string)) { in RunExtraCode()
632 v8::ScriptCompiler::Source source(source_string, origin); in RunExtraCode()
/external/python/cpython3/Doc/library/
Dparser.rst351 def load_suite(source_string):
352 st = parser.suite(source_string)
355 def load_expression(source_string):
356 st = parser.expr(source_string)
/external/python/cpython2/Doc/library/
Dparser.rst353 def load_suite(source_string):
354 st = parser.suite(source_string)
357 def load_expression(source_string):
358 st = parser.expr(source_string)
/external/v8/src/init/
Dheap-symbols.h295 V(_, source_string, "source") \
Dbootstrapper.cc2384 SimpleInstallGetter(isolate_, prototype, factory->source_string(), in InitializeGlobal()
/external/v8/src/logging/
Dlog.cc452 Handle<String> source_string = in CodeCreateEvent() local
460 code_event.script_name = source_string; in CodeCreateEvent()
/external/v8/src/diagnostics/
Dobjects-printer.cc1278 std::unique_ptr<char[]> source_string = source.ToCString( in PrintSourceCode() local
1280 os << source_string.get(); in PrintSourceCode()
/external/v8/include/
Dv8.h1747 V8_INLINE Source(Local<String> source_string, const ScriptOrigin& origin,
1749 V8_INLINE Source(Local<String> source_string,
1767 Local<String> source_string; variable
11459 : source_string(string), in Source()
11470 : source_string(string), cached_data(data) {} in Source()
/external/v8/src/objects/
Djs-date-time-format.cc2077 isolate->factory()->source_string(), in AddPartForFormatRange()
/external/v8/src/api/
Dapi.cc2463 i::Handle<i::String> str = Utils::OpenHandle(*(source->source_string)); in CompileUnboundInternal()
2610 Utils::OpenHandle(*source->source_string), arguments_list, context, in CompileFunctionInContext()