Lines Matching defs:str

422         String::Utf8Value str(isolate, v->ToString(context).ToLocalChecked());
423 trace_config->AddIncludedCategory(*str);
689 i::Handle<i::String> str = Utils::OpenHandle(*(source));
707 i_isolate, str, i::kNullMaybeHandle, ScriptOriginOptions());
832 v8::String::Utf8Value str(isolate, result);
833 fwrite(*str, sizeof(**str), str.length(), stdout);
837 v8::String::Utf8Value str(isolate, Stringify(isolate, result));
838 fwrite(*str, sizeof(**str), str.length(), stdout);
919 return os.str();
1976 Local<String> str;
1978 !value->ToString(current_context).ToLocal(&str) || str.IsEmpty()) {
1982 exports->Set(isolate, i, str);
2282 v8::String::Utf8Value str(args.GetIsolate(), str_obj);
2283 int n = static_cast<int>(fwrite(*str, sizeof(**str), str.length(), file));
2284 if (n != str.length()) {
2374 String::NewFromUtf8(isolate, oss.str().c_str()).ToLocalChecked());
2388 String::NewFromUtf8(isolate, oss.str().c_str()).ToLocalChecked());
2421 String::Utf8Value str(isolate, worker_type_string);
2422 if (strcmp("classic", *str) == 0) {
2424 } else if (strcmp("string", *str) == 0) {
2426 } else if (strcmp("function", *str) == 0) {
3437 WriteLcovDataForNamedRange(sink, &lines, name_stream.str(), start_line,
3656 Local<String> str;
3657 if (!maybe_str.ToLocal(&str)) {
3660 exports->Set(isolate, i, str);
3700 isolate, oss.str().substr(0, String::kMaxLength).c_str())
4389 char* ConvertUtf16StringToUtf8(const wchar_t* str) {
4393 WideCharToMultiByte(CP_UTF8, 0, str, -1, nullptr, 0, nullptr, FALSE);
4397 WideCharToMultiByte(CP_UTF8, 0, str, -1, utf8_str, len, nullptr, FALSE);
4678 const char* str = argv[i];
4679 if (strcmp(str, "--isolate") == 0) {
4683 } else if (strcmp(str, "--module") == 0 ||
4684 strcmp(str, "--web-snapshot") == 0 ||
4685 strcmp(str, "--json") == 0) {
4687 } else if (strncmp(str, "--", 2) == 0) {
4689 printf("Warning: unknown flag %s.\nTry --help for options\n", str);
4691 } else if (strcmp(str, "-e") == 0 && i + 1 < argc) {
4693 } else if (strncmp(str, "-", 1) != 0) {