Home
last modified time | relevance | path

Searched refs:source_string (Results 1 – 19 of 19) 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/snapshot/
Dmksnapshot.cc286 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/
Dbuiltins-regexp.cc35 isolate->factory()->source_string())); in BUILTIN()
Dbuiltins-regexp-gen.cc1346 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/python/cpython3/Doc/library/
Dparser.rst350 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/
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/
Dheap-symbols.h197 V(source_string, "source") \
Dobjects-printer.cc1394 std::unique_ptr<char[]> source_string = source->ToCString( in PrintSourceCode() local
1396 os << source_string.get(); in PrintSourceCode()
Dlog.cc441 Handle<String> source_string = in CodeCreateEvent() local
450 code_event.script_name = source_string; in CodeCreateEvent()
Dd8.cc1683 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()
Dobjects.cc13634 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()
Dbootstrapper.cc2523 SimpleInstallGetter(isolate_, prototype, factory->source_string(), in InitializeGlobal()
Dapi.cc2388 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/
Dv8.h1426 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) {}