Home | History | Annotate | Download | only in cctest

Lines Matching defs:string

115     v8::String::Utf8Value prop_name(prop->GetName());
128 v8::String::Utf8Value node_name(node->GetName());
325 v8::String::Utf8Value anonymous_name(anonymous->GetName());
437 i::Handle<i::String> first = factory->NewStringFromStaticChars("0123456789");
438 i::Handle<i::String> second = factory->NewStringFromStaticChars("0123456789");
439 i::Handle<i::String> cons_string =
442 global->SetInternalField(0, v8::ToApiHandle<v8::String>(cons_string));
880 class OneByteResource : public v8::String
882 explicit OneByteResource(i::Vector<char> string) : data_(string.start()) {
883 length_ = string.length();
901 "\"String \\n\\r\\u0008\\u0081\\u0101\\u0801\\u8001\""
917 // Verify that snapshot string is valid JSON.
919 v8::Local<v8::String> json_string =
920 v8::String::NewExternalOneByte(env->GetIsolate(), json_res)
980 // Get the string index using the path: <root> -> <global>.b.x.s
1009 v8::Local<v8::String> string = strings_array->Get(env.local(), string_index)
1013 v8::Local<v8::String> ref_string = CompileRun(STRING_LITERAL_FOR_TEST)
1017 CHECK_EQ(0, strcmp(*v8::String::Utf8Value(ref_string),
1018 *v8::String::Utf8Value(string)));
1196 // The last string from forth interval was released.
1207 // The only string from the second interval was released.
1439 v8::String::Utf8Value utf8(wrapper);
1447 v8::String::Utf8Value utf8(wrapper);
1498 v8::Persistent<v8::String> p_AAA(isolate, v8_str("AAA"));
1500 v8::Persistent<v8::String> p_BBB(isolate, v8_str("BBB"));
1502 v8::Persistent<v8::String> p_CCC(isolate, v8_str("CCC"));
1615 v8::String::Utf8Value prop_name(prop->GetName());
1792 v8::Local<v8::String> js_s_prop = js_obj->Get(env.local(), v8_str("s_prop"))
1794 .As<v8::String>();
1798 v8::Local<v8::String> js_n_prop = js_obj->Get(env.local(), v8_str("n_prop"))
1800 .As<v8::String>();
1832 static int StringCmp(const char* ref, i::String* act) {
2073 CHECK_EQ(0, strcmp("length", *v8::String::Utf8Value(length_name->GetName())));
2078 *v8::String::Utf8Value(length_accessor->GetName())));
2198 v8::String::Utf8Value name(edge->GetName());
2319 v8::String::Utf8Value name(allocation_site->GetName());
2384 v8::String::Utf8Value edge_name(edge->GetName());
2385 v8::String::Utf8Value node_name(to_node->GetName());
2426 v8::String::Utf8Value node_name(node->GetName());
2742 i::Handle<i::String> string = factory->NewStringFromStaticChars("string");
2743 i::Handle<i::Object> box = factory->NewBox(string);
2753 v8::String::Utf8Value box_node_name(box_node->GetName());
2863 v8::String::Utf8Value child_name(child->name);