Searched refs:prototypeValue (Results 1 - 4 of 4) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DCustomElementRegistry.cpp124 ScriptValue prototypeValue; local
125 if (!options.get("prototype", prototypeValue)) {
136 if (!CustomElementHelpers::isValidPrototypeParameter(prototypeValue, state, namespaceURI)) {
146 const QualifiedName* localNameFound = CustomElementHelpers::findLocalName(prototypeValue);
160 RefPtr<CustomElementConstructor> constructor = CustomElementConstructor::create(state, document(), typeName, localNameToUse, prototypeValue);
/macosx-10.9.5/JavaScriptCore-7537.78.1/API/
H A DJSWrapperMap.mm226 static void copyPrototypeProperties(JSContext *context, Class objcClass, Protocol *protocol, JSValue *prototypeValue)
263 copyMethodsToObject(context, objcClass, protocol, YES, prototypeValue, accessorMethods);
280 [prototypeValue defineProperty:@(property.name) descriptor:@{
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DJSGlobalObject.cpp395 JSValue prototypeValue = current->prototype(); local
396 if (prototypeValue.isNull())
398 current = asObject(prototypeValue);
H A DJSObject.cpp1844 JSValue prototypeValue = current->prototype(); local
1845 if (prototypeValue.isNull())
1848 current = asObject(prototypeValue);
1854 JSValue prototypeValue = prototype(); local
1855 if (prototypeValue.isNull())
1858 return asObject(prototypeValue)->attemptToInterceptPutByIndexOnHoleForPrototype(exec, this, i, value, shouldThrow);

Completed in 204 milliseconds