HomeSort by relevance Sort by last modified time
    Searched refs:prototypeValue (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8PerContextData.cpp 70 v8::Handle<v8::Value> prototypeValue = object->Get(prototypeString); \
71 if (prototypeValue.IsEmpty()) \
73 m_##name##Prototype.set(m_isolate, prototypeValue); \
125 v8::Local<v8::Value> prototypeValue = function->Get(v8::String::NewSymbol("prototype"));
126 if (!prototypeValue.IsEmpty() && prototypeValue->IsObject()) {
127 v8::Local<v8::Object> prototypeObject = v8::Local<v8::Object>::Cast(prototypeValue);
CustomElementConstructorBuilder.cpp 85 v8::Handle<v8::Value> prototypeValue = prototypeScriptValue.v8Value();
86 if (prototypeValue.IsEmpty() || !prototypeValue->IsObject())
88 m_prototype = prototypeValue.As<v8::Object>();

Completed in 2903 milliseconds