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

  /external/webkit/JavaScriptCore/API/
JSClassRef.cpp 78 if (const JSStaticValue* staticValue = definition->staticValues) {
164 staticValues = new OpaqueJSClassStaticValuesTable;
170 staticValues->add(UString::Rep::create(it->first->data(), it->first->size()), entry);
173 staticValues = 0;
191 if (staticValues) {
192 deleteAllValues(*staticValues);
193 delete staticValues;
216 OpaqueJSClassStaticValuesTable* OpaqueJSClass::staticValues(JSC::ExecState* exec)
219 return jsClassData.staticValues;
JSCallbackObjectFunctions.h 146 if (OpaqueJSClassStaticValuesTable* staticValues = jsClass->staticValues(exec)) {
147 if (staticValues->contains(propertyName.ustring().rep())) {
213 if (OpaqueJSClassStaticValuesTable* staticValues = jsClass->staticValues(exec)) {
214 if (StaticValueEntry* entry = staticValues->get(propertyName.ustring().rep())) {
271 if (OpaqueJSClassStaticValuesTable* staticValues = jsClass->staticValues(exec)) {
272 if (StaticValueEntry* entry = staticValues->get(propertyName.ustring().rep())) {
413 if (OpaqueJSClassStaticValuesTable* staticValues = jsClass->staticValues(exec))
    [all...]
JSClassRef.h 78 OpaqueJSClassStaticValuesTable* staticValues;
89 OpaqueJSClassStaticValuesTable* staticValues(JSC::ExecState*);
JSObjectRef.h 317 @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;
    [all...]
  /external/webkit/WebKitTools/DumpRenderTree/
AccessibilityController.cpp 89 static JSStaticValue staticValues[] = {
96 0, kJSClassAttributeNone, "AccessibilityController", 0, staticValues, staticFunctions,
LayoutTestController.h 282 static JSStaticValue* staticValues();
LayoutTestController.cpp     [all...]
AccessibilityUIElement.cpp 621 static JSStaticValue staticValues[] = {
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
ClassDataItem.java 51 private final HashMap<EncodedField, Constant> staticValues;
87 this.staticValues = new HashMap<EncodedField, Constant>(40);
134 staticValues.put(field, value);
260 * Gets a {@link CstArray} corresponding to {@link #staticValues} if
275 * Gets a {@link CstArray} corresponding to {@link #staticValues} if
286 * Get the size of staticValues minus any trailing zeros/nulls (both
293 Constant cst = staticValues.get(field);
314 Constant cst = staticValues.get(field);
ClassDefItem.java 143 CstArray staticValues = classData.getStaticValuesConstant();
144 if (staticValues != null) {
146 byteData.intern(new EncodedArrayItem(staticValues));
  /external/webkit/WebCore/inspector/
JavaScriptProfile.cpp 143 static JSStaticValue staticValues[] = {
158 0, kJSClassAttributeNone, "Profile", 0, staticValues, staticFunctions,
JavaScriptProfileNode.cpp 196 static JSStaticValue staticValues[] = {
210 0, kJSClassAttributeNone, "ProfileNode", 0, staticValues, 0,
  /external/webkit/JavaScriptCore/API/tests/
JSNodeList.c 108 definition.staticValues = JSNodeList_staticValues;
JSNode.c 173 definition.staticValues = JSNode_staticValues;
testapi.c 539 definition.staticValues = Base_staticValues;
617 definition.staticValues = Derived_staticValues;
782 globalObjectClassDefinition.staticValues = globalObject_staticValues;
    [all...]
  /external/webkit/WebKitTools/DumpRenderTree/gtk/
EventSender.cpp 630 static JSStaticValue staticValues[] = {
644 classDefinition.staticValues = staticValues;
  /external/webkit/WebKitTools/DumpRenderTree/win/
EventSender.cpp 642 static JSStaticValue staticValues[] = {
662 classDefinition.staticValues = staticValues;
  /prebuilt/sdk/tools/lib/
dx.jar 

Completed in 539 milliseconds