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

  /dalvik/dx/tests/115-merge/com/android/dx/merge/
DexMergeTest.java 75 "/testdata/StaticValues.dex");
80 Class<?> staticValues = loader.loadClass("testdata.StaticValues");
81 assertEquals((byte) 1, staticValues.getField("a").get(null));
82 assertEquals((short) 2, staticValues.getField("b").get(null));
83 assertEquals('C', staticValues.getField("c").get(null));
84 assertEquals(0xabcd1234, staticValues.getField("d").get(null));
85 assertEquals(4660046610375530309L,staticValues.getField("e").get(null));
86 assertEquals(0.5f, staticValues.getField("f").get(null));
87 assertEquals(-0.25, staticValues.getField("g").get(null))
    [all...]
  /external/webkit/Tools/DumpRenderTree/
AccessibilityTextMarker.cpp 66 static JSStaticValue staticValues[] = {
76 0, kJSClassAttributeNone, "AccessibilityTextMarker", 0, staticValues, staticFunctions,
118 static JSStaticValue staticValues[] = {
128 0, kJSClassAttributeNone, "AccessibilityTextMarkerRange", 0, staticValues, staticFunctions,
AccessibilityController.cpp 111 static JSStaticValue staticValues[] = {
118 0, kJSClassAttributeNone, "AccessibilityController", 0, staticValues, staticFunctions,
LayoutTestController.h 402 static JSStaticValue* staticValues();
LayoutTestController.cpp     [all...]
AccessibilityUIElement.cpp     [all...]
  /external/webkit/Source/JavaScriptCore/API/
JSClassRef.cpp 79 if (const JSStaticValue* staticValue = definition->staticValues) {
165 staticValues = new OpaqueJSClassStaticValuesTable;
171 staticValues->add(StringImpl::create(it->first->characters(), it->first->length()), entry);
174 staticValues = 0;
192 if (staticValues) {
193 deleteAllValues(*staticValues);
194 delete staticValues;
217 OpaqueJSClassStaticValuesTable* OpaqueJSClass::staticValues(JSC::ExecState* exec)
220 return jsClassData.staticValues;
JSCallbackObjectFunctions.h 150 if (OpaqueJSClassStaticValuesTable* staticValues = jsClass->staticValues(exec)) {
151 if (staticValues->contains(propertyName.impl())) {
211 if (OpaqueJSClassStaticValuesTable* staticValues = jsClass->staticValues(exec)) {
212 if (StaticValueEntry* entry = staticValues->get(propertyName.impl())) {
269 if (OpaqueJSClassStaticValuesTable* staticValues = jsClass->staticValues(exec)) {
270 if (StaticValueEntry* entry = staticValues->get(propertyName.impl())) {
412 if (OpaqueJSClassStaticValuesTable* staticValues = jsClass->staticValues(exec))
    [all...]
JSClassRef.h 83 OpaqueJSClassStaticValuesTable* staticValues;
94 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...]
  /dalvik/dexgen/src/com/android/dexgen/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));
  /dalvik/dx/src/com/android/dx/dex/file/
ClassDataItem.java 48 private final HashMap<EncodedField, Constant> staticValues;
84 this.staticValues = new HashMap<EncodedField, Constant>(40);
131 staticValues.put(field, value);
257 * Gets a {@link CstArray} corresponding to {@link #staticValues} if
272 * Gets a {@link CstArray} corresponding to {@link #staticValues} if
283 * Get the size of staticValues minus any trailing zeros/nulls (both
290 Constant cst = staticValues.get(field);
311 Constant cst = staticValues.get(field);
ClassDefItem.java 141 CstArray staticValues = classData.getStaticValuesConstant();
142 if (staticValues != null) {
144 byteData.intern(new EncodedArrayItem(staticValues));
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
ClassDataItem.java 48 private final HashMap<EncodedField, Constant> staticValues;
84 this.staticValues = new HashMap<EncodedField, Constant>(40);
131 staticValues.put(field, value);
257 * Gets a {@link CstArray} corresponding to {@link #staticValues} if
272 * Gets a {@link CstArray} corresponding to {@link #staticValues} if
283 * Get the size of staticValues minus any trailing zeros/nulls (both
290 Constant cst = staticValues.get(field);
311 Constant cst = staticValues.get(field);
ClassDefItem.java 141 CstArray staticValues = classData.getStaticValuesConstant();
142 if (staticValues != null) {
144 byteData.intern(new EncodedArrayItem(staticValues));
  /external/webkit/Source/JavaScriptCore/API/tests/
JSNodeList.c 108 definition.staticValues = JSNodeList_staticValues;
JSNode.c 173 definition.staticValues = JSNode_staticValues;
testapi.c 544 definition.staticValues = Base_staticValues;
622 definition.staticValues = Derived_staticValues;
849 globalObjectClassDefinition.staticValues = globalObject_staticValues;
    [all...]
  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/Bindings/
CodeGeneratorTestRunner.pm 143 static const JSStaticValue* staticValues();
219 definition.staticValues = staticValues();
  /external/webkit/Tools/DumpRenderTree/gtk/
EventSender.cpp 193 classDefinition.staticValues = staticMenuItemValues;
    [all...]
  /external/webkit/Tools/DumpRenderTree/win/
EventSender.cpp 648 static JSStaticValue staticValues[] = {
668 classDefinition.staticValues = staticValues;
  /prebuilts/sdk/tools/lib/
dx.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar 

Completed in 535 milliseconds