Searched refs:staticValues (Results 1 - 9 of 9) sorted by relevance

/macosx-10.9.5/JavaScriptCore-7537.78.1/API/
H A DJSClassRef.h81 OwnPtr<OpaqueJSClassStaticValuesTable> staticValues; member in struct:OpaqueJSClassContextData
92 OpaqueJSClassStaticValuesTable* staticValues(JSC::ExecState*);
H A DJSClassRef.cpp64 if (const JSStaticValue* staticValue = definition->staticValues) {
134 staticValues = adoptPtr(new OpaqueJSClassStaticValuesTable);
138 staticValues->add(it->key->isolatedCopy(), adoptPtr(new StaticValueEntry(it->value->getProperty, it->value->setProperty, it->value->attributes)));
166 OpaqueJSClassStaticValuesTable* OpaqueJSClass::staticValues(JSC::ExecState* exec) function in class:OpaqueJSClass
168 return contextData(exec).staticValues.get();
H A DJSCallbackObjectFunctions.h163 if (OpaqueJSClassStaticValuesTable* staticValues = jsClass->staticValues(exec)) {
164 if (staticValues->contains(name)) {
261 if (OpaqueJSClassStaticValuesTable* staticValues = jsClass->staticValues(exec)) {
262 if (StaticValueEntry* entry = staticValues->get(name)) {
322 if (OpaqueJSClassStaticValuesTable* staticValues = jsClass->staticValues(exec)) {
323 if (StaticValueEntry* entry = staticValues->get(propertyName.impl())) {
380 if (OpaqueJSClassStaticValuesTable* staticValues
[all...]
H A DJSObjectRef.h317 @field staticValues A JSStaticValue array containing the class's statically declared value properties. Pass NULL to specify no statically declared value properties. The array must be terminated by a JSStaticValue whose name field is NULL.
330 @discussion The staticValues and staticFunctions arrays are the simplest and most efficient means for vending custom properties. Statically declared properties autmatically service requests like getProperty, setProperty, and getPropertyNames. Property access callbacks are required only to implement unusual properties, like array indexes, whose names are not known at compile-time.
350 const JSStaticValue* staticValues; member in struct:__anon2634
/macosx-10.9.5/JavaScriptCore-7537.78.1/API/tests/
H A DJSNodeList.c107 definition.staticValues = JSNodeList_staticValues;
H A DJSNode.c172 definition.staticValues = JSNode_staticValues;
H A Dtestapi.c755 definition.staticValues = Base_staticValues;
833 definition.staticValues = Derived_staticValues;
1145 globalObjectClassDefinition.staticValues = globalObject_staticValues;
/macosx-10.9.5/WebKit-7537.78.2/blackberry/WebKitSupport/
H A DPagePopup.cpp145 definition.staticValues = popUpExtensionStaticValues;
/macosx-10.9.5/WebCore-7537.78.1/bridge/qt/
H A Dqt_pixmapruntime.cpp250 static const JSStaticValue staticValues[] = { local
265 0, 0, "QtPixmapRuntimeObject", 0, staticValues, staticFunctions,

Completed in 235 milliseconds