HomeSort by relevance Sort by last modified time
    Searched refs:objectValue (Results 1 - 25 of 30) sorted by null

1 2

  /libcore/support/src/test/java/tests/support/
Support_GetPutFields.java 45 public SimpleClass objectValue = null;
84 objectValue = new SimpleClass(1965, "Hello Mars");
101 objectValue.equals(other.objectValue) &&
115 objectValue = (Support_GetPutFields.SimpleClass)
116 getField.get("objectValue", (Object) null);
129 putField.put("objectValue", objectValue);
Support_GetPutFieldsDeprecated.java 47 public SimpleClass objectValue = null;
86 objectValue = new SimpleClass(2001, "A Space Odyssey");
103 objectValue.equals(other.objectValue) &&
116 objectValue = (Support_GetPutFieldsDeprecated.SimpleClass)
117 getField.get("objectValue", (Object) null);
130 putField.put("objectValue", objectValue);
Support_GetPutFieldsDefaulted.java 56 public SimpleClass objectValue = null;
95 objectValue = new SimpleClass(1965, "Hello Jupiter");
112 objectValue.equals(other.objectValue) &&
126 objectValue = (Support_GetPutFieldsDefaulted.SimpleClass)
127 getField.get("objectValue",
  /external/chromium/webkit/glue/
cpp_variant.cc 70 NPObject *this_value = value.objectValue;
71 NPObject *other_value = other.value.objectValue;
100 result->value.objectValue = WebBindings::retainObject(value.objectValue);
125 Set(new_value.value.objectValue);
178 value.objectValue = WebBindings::retainObject(new_value);
217 NPObject* np_value = value.objectValue;
254 NPObject* np_object = value.objectValue;
cpp_variant_unittest.cc 50 EXPECT_TRUE(actual.value.objectValue);
51 EXPECT_EQ(1U, actual.value.objectValue->referenceCount);
115 EXPECT_EQ(2U, source.value.objectValue->referenceCount);
118 EXPECT_EQ(3U, dest.value.objectValue->referenceCount);
145 EXPECT_EQ(2U, source.value.objectValue->referenceCount);
149 EXPECT_EQ(3U, dest.value.objectValue->referenceCount);
  /external/webkit/Tools/DumpRenderTree/chromium/
CppVariant.cpp 97 NPObject* thisValue = value.objectValue;
98 NPObject* otherValue = other.value.objectValue;
128 result->value.objectValue = WebBindings::retainObject(value.objectValue);
154 set(newValue.value.objectValue);
216 value.objectValue = WebBindings::retainObject(newValue);
257 NPObject* npValue = value.objectValue;
303 NPObject* npObject = value.objectValue;
  /external/webkit/Source/WebCore/bridge/objc/
objc_utility.h 45 ObjectStructPtr objectValue;
objc_instance.mm 246 [objcArgs addObject:value.objectValue];
264 [invocation setArgument:&value.objectValue atIndex:i];
357 [objcArgs addObject:value.objectValue];
400 [targetObject setValue:objcValue.objectValue forUndefinedKey:[NSString stringWithCString:property.ascii().data() encoding:NSASCIIStringEncoding]];
objc_runtime.mm 165 [_array.get() insertObject:oValue.objectValue atIndex:index];
objc_utility.mm 152 result.objectValue = rootObject
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
NPRuntimeUtilities.cpp 127 releaseNPObject(variant->value.objectValue);
128 variant->value.objectValue = 0;
NPRuntimeObjectMap.cpp 136 return getOrCreateJSObject(globalObject, variant.value.objectValue);
  /external/webkit/Source/WebCore/bridge/
npruntime.h 107 NPObject *objectValue;
135 #define NPVARIANT_TO_OBJECT(_v) ((_v).value.objectValue)
140 (_v).value.objectValue = NULL; \
146 (_v).value.objectValue = NULL; \
184 (_v).value.objectValue = _val; \
npruntime.cpp 99 _NPN_ReleaseObject(variant->value.objectValue);
100 variant->value.objectValue = 0;
testbindings.cpp 138 printf ("%p\n", message->value.objectValue);
  /external/skia/include/utils/
SkJSON.h 140 Object* objectValue() const;
  /external/webkit/Source/WebCore/bridge/c/
c_utility.cpp 133 NPObject* obj = variant->value.objectValue;
  /external/webkit/Source/WebCore/bindings/v8/
npruntime.cpp 252 _NPN_ReleaseObject(variant->value.objectValue);
253 variant->value.objectValue = 0;
  /cts/libs/json/src/com/android/json/stream/
JsonReader.java 326 return objectValue();
640 private JsonToken objectValue() throws IOException {
    [all...]
  /external/webkit/Source/WebKit2/Shared/Plugins/
NPRemoteObjectMap.cpp 114 NPObject* npObject = variant.value.objectValue;
  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/
PluginObject.cpp 824 NPObject* script_object = object_result.value.objectValue;
910 notifyTestCompletion(npp, result.value.objectValue);
911 browser->releaseobject(result.value.objectValue);
    [all...]
  /external/skia/src/utils/
SkJSON.cpp 128 SkJSON::Object* SkJSON::Object::Iter::objectValue() const {
177 this->addObject(iter.name(), new Object(*iter.objectValue()));
  /external/webkit/Source/WebCore/storage/
IDBObjectStoreBackendImpl.cpp 341 RefPtr<SerializedScriptValue> objectValue = SerializedScriptValue::createFromWire(value);
342 RefPtr<IDBKey> indexKey = fetchKeyFromKeyPath(objectValue.get(), m_indexKeyPath);
  /frameworks/base/core/java/android/util/
JsonReader.java 347 return objectValue();
669 private JsonToken objectValue() throws IOException {
    [all...]
  /external/dexmaker/src/test/java/com/google/dexmaker/
DexMakerTest.java     [all...]

Completed in 582 milliseconds

1 2