Searched refs:boilerplate (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DV8PerContextData.h76 v8::Local<v8::Object> boilerplate = m_wrapperBoilerplates.Get(type); local
77 return !boilerplate.IsEmpty() ? boilerplate->Clone() : createWrapperFromCacheSlowCase(type);
108 // For each possible type of wrapper, we keep a boilerplate object.
109 // The boilerplate is used to create additional wrappers of the same type.
/external/chromium_org/v8/src/
H A Dcode-stubs-hydrogen.cc350 HInstruction* boilerplate = Add<HLoadNamedField>( local
352 HValue* elements = AddLoadElements(boilerplate);
358 Push(BuildCloneShallowArrayEmpty(boilerplate,
365 Push(BuildCloneShallowArrayCow(boilerplate,
373 Push(BuildCloneShallowArrayNonEmpty(boilerplate,
379 Push(BuildCloneShallowArrayNonEmpty(boilerplate,
387 checker.ElseDeopt("Uninitialized boilerplate literals");
415 HInstruction* boilerplate = Add<HLoadNamedField>( local
425 boilerplate, static_cast<HValue*>(NULL),
444 boilerplate, static_cas
[all...]
H A Dmessages.js1299 var boilerplate = MakeRangeError('stack_overflow', []);
1302 boilerplate, 'stack', StackTraceGetter, StackTraceSetter, DONT_ENUM);
1304 return boilerplate;
H A Druntime.cc250 Handle<JSObject> boilerplate = local
253 // Normalize the elements of the boilerplate to save space if needed.
254 if (!should_have_fast_elements) JSObject::NormalizeElements(boilerplate);
256 // Add the constant properties to the boilerplate.
259 !is_result_from_cache && boilerplate->HasFastProperties();
264 boilerplate, KEEP_INOBJECT_PROPERTIES, length / 2);
266 // TODO(verwaest): Support tracking representations in the boilerplate.
286 JSObject::SetOwnElement(boilerplate, element_index, value, SLOPPY);
291 boilerplate, name, value, NONE);
297 JSObject::SetOwnElement(boilerplate, element_inde
468 Handle<JSObject> boilerplate; local
517 Handle<Object> boilerplate; local
5496 JSArray* boilerplate = NULL; local
[all...]
H A Dhydrogen.cc2929 HValue* HGraphBuilder::BuildCloneShallowArrayCow(HValue* boilerplate, argument
2935 HValue* map = AddLoadMap(boilerplate);
2936 HValue* elements = AddLoadElements(boilerplate);
2937 HValue* length = AddLoadArrayLength(boilerplate, kind);
2950 HValue* HGraphBuilder::BuildCloneShallowArrayEmpty(HValue* boilerplate, argument
2955 HValue* map = AddLoadMap(boilerplate);
2968 HValue* HGraphBuilder::BuildCloneShallowArrayNonEmpty(HValue* boilerplate, argument
2972 HValue* boilerplate_elements = AddLoadElements(boilerplate);
2984 boilerplate, allocation_site, mode);
2999 // machines with low register counts. Force a reload of the boilerplate
5475 IsFastLiteral(Handle<JSObject> boilerplate, int max_depth, int* max_properties) argument
5550 Handle<JSObject> boilerplate; local
[all...]
H A Disolate.cc782 // constructor. Instead, we copy the pre-constructed boilerplate and
785 Handle<JSObject> boilerplate = Handle<JSObject>::cast( local
787 Handle<JSObject> exception = factory()->CopyJSObject(boilerplate);
H A Dhydrogen.h1848 HValue* BuildCloneShallowArrayCow(HValue* boilerplate,
1853 HValue* BuildCloneShallowArrayEmpty(HValue* boilerplate,
1857 HValue* BuildCloneShallowArrayNonEmpty(HValue* boilerplate,

Completed in 167 milliseconds