/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/snapshot/ |
D | mksnapshot.cc | 286 v8::Local<v8::String> source_string; in RunExtraCode() local 288 .ToLocal(&source_string)) { in RunExtraCode() 295 v8::ScriptCompiler::Source source(source_string, origin); in RunExtraCode()
|
/external/v8/src/builtins/ |
D | builtins-regexp.cc | 35 isolate->factory()->source_string())); in BUILTIN()
|
D | builtins-regexp-gen.cc | 1346 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/python/cpython3/Doc/library/ |
D | parser.rst | 350 def load_suite(source_string): 351 st = parser.suite(source_string) 354 def load_expression(source_string): 355 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/ |
D | heap-symbols.h | 197 V(source_string, "source") \
|
D | objects-printer.cc | 1394 std::unique_ptr<char[]> source_string = source->ToCString( in PrintSourceCode() local 1396 os << source_string.get(); in PrintSourceCode()
|
D | log.cc | 441 Handle<String> source_string = in CodeCreateEvent() local 450 code_event.script_name = source_string; in CodeCreateEvent()
|
D | d8.cc | 1683 i::Vector<const char> source_string = in Stringify() local 1688 String::NewFromUtf8(isolate, source_string.start(), in Stringify() 1689 NewStringType::kNormal, source_string.length()) in Stringify()
|
D | objects.cc | 13634 String* source_string = String::cast(script->source()); in GetPositionInfoSlow() local 13637 int len = source_string->length(); in GetPositionInfoSlow() 13639 if (pos == len || source_string->Get(pos) == '\n') { in GetPositionInfoSlow()
|
D | bootstrapper.cc | 2523 SimpleInstallGetter(isolate_, prototype, factory->source_string(), in InitializeGlobal()
|
D | api.cc | 2388 i::Handle<i::String> str = Utils::OpenHandle(*(source->source_string)); in CompileUnboundInternal() 2551 Utils::OpenHandle(*source->source_string), arguments_list, context, in CompileFunctionInContext()
|
/external/v8/include/ |
D | v8.h | 1426 V8_INLINE Source(Local<String> source_string, const ScriptOrigin& origin, 1428 V8_INLINE Source(Local<String> source_string, 1446 Local<String> source_string; 10016 : source_string(string), 10027 : source_string(string), cached_data(data) {}
|