/external/grpc-grpc/src/python/grpcio/ |
D | support.py | 46 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/ |
D | sym_upload.cc | 66 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/ |
D | test_tokenize.py | 13 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/ |
D | test_tokenize.py | 19 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/ |
D | builtins-regexp.cc | 35 isolate->factory()->source_string())); in BUILTIN()
|
D | builtins-regexp-gen.cc | 1117 GetProperty(context, pattern, isolate->factory()->source_string()); in TF_BUILTIN()
|
/external/icu/icu4c/source/samples/coll/ |
D | readme.txt | 30 coll [options*] -source source_string -target target_string
|
/external/icu/icu4c/source/samples/strsrch/ |
D | readme.txt | 30 strsrch [options*] -source source_string -pattern pattern_string
|
/external/v8/src/snapshot/ |
D | snapshot.cc | 625 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/ |
D | parser.rst | 351 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/ |
D | parser.rst | 353 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/ |
D | heap-symbols.h | 295 V(_, source_string, "source") \
|
D | bootstrapper.cc | 2384 SimpleInstallGetter(isolate_, prototype, factory->source_string(), in InitializeGlobal()
|
/external/v8/src/logging/ |
D | log.cc | 452 Handle<String> source_string = in CodeCreateEvent() local 460 code_event.script_name = source_string; in CodeCreateEvent()
|
/external/v8/src/diagnostics/ |
D | objects-printer.cc | 1278 std::unique_ptr<char[]> source_string = source.ToCString( in PrintSourceCode() local 1280 os << source_string.get(); in PrintSourceCode()
|
/external/v8/include/ |
D | v8.h | 1747 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/ |
D | js-date-time-format.cc | 2077 isolate->factory()->source_string(), in AddPartForFormatRange()
|
/external/v8/src/api/ |
D | api.cc | 2463 i::Handle<i::String> str = Utils::OpenHandle(*(source->source_string)); in CompileUnboundInternal() 2610 Utils::OpenHandle(*source->source_string), arguments_list, context, in CompileFunctionInContext()
|