/art/test/569-checker-pattern-replacement/src-multidex/ |
Base.java | 34 Base(double doubleValue, Object objectValue) { 36 objectField = objectValue; 39 Base(int intValue, double doubleValue, Object objectValue) { 42 objectField = objectValue; 45 Base(int intValue, double doubleValue, Object objectValue, String stringValue) { 49 objectField = objectValue; 57 Base(Object objectValue) { 59 this(0.0, objectValue);
|
Derived.java | 35 public Derived(int intValue, double doubleValue, Object objectValue) { 36 super(intValue, doubleValue, objectValue); 41 Derived(int intValue, double doubleValue, Object objectValue, String stringValue) { 42 super(intValue, doubleValue, objectValue, stringValue); 56 public Derived(int intValue, double doubleValue, Object objectValue, float floatValue) { 57 super(intValue, doubleValue, objectValue);
|
/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/skia/tools/json/ |
SkJSONCanvas.cpp | 24 , fRoot(Json::objectValue) 69 Json::Value result(Json::objectValue); 91 Json::Value line(Json::objectValue); 97 Json::Value quad(Json::objectValue); 106 Json::Value cubic(Json::objectValue); 116 Json::Value conic(Json::objectValue); 126 Json::Value move(Json::objectValue); 325 Json::Value blur(Json::objectValue); 371 Json::Value dashing(Json::objectValue); 462 Json::Value result(Json::objectValue); [all...] |
/external/jsoncpp/src/lib_json/ |
json_value.cpp | 246 case objectValue: 253 case objectValue: 351 case objectValue: 358 case objectValue: 389 case objectValue: 396 case objectValue: 456 case objectValue: { 465 case objectValue: 505 case objectValue: 511 case objectValue [all...] |
json_writer.cpp | 229 case objectValue: { 286 case objectValue: { 509 case objectValue: {
|
json_reader.cpp | 409 currentValue() = Value(objectValue);
|
/art/test/004-UnsafeTest/src/ |
Main.java | 104 Object objectValue = new Object(); 108 unsafe.putObject(t, objectOffset, objectValue); 109 check(t.objectVar, objectValue, "Unsafe.putObject(Object, long, Object)"); 110 check(unsafe.getObject(t, objectOffset), objectValue, "Unsafe.getObject(Object, long)"); 154 if (!unsafe.compareAndSwapObject(t, objectOffset, objectValue, objectValue2)) { 156 "compareAndSwapObject(t, objectOffset, objectValue, objectValue2)");
|
/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/test/blink/testharness/ |
testharnessreport.js | 170 jsonifyObject: function(objectValue, indent) { 175 for (var property in objectValue) { 177 if (Array.isArray(objectValue[property]) || 183 for (var property in objectValue) { 185 JSON.stringify(objectValue[property]) + 191 for (var property in objectValue) { 197 value = objectValue[property];
|
/packages/apps/Dialer/tests/src/com/android/dialer/calllog/ |
GroupingListAdapterTests.java | 168 private void assertMetadata(int listPosition, int groupSize, String objectValue) { 171 assertEquals(objectValue, cursor.getString(GROUPING_COLUMN_INDEX));
|
/external/skia/tools/skiaserve/urlhandlers/ |
InfoHandler.cpp | 51 Json::Value info(Json::objectValue);
|
BreakHandler.cpp | 63 Json::Value response(Json::objectValue);
|
/external/jsoncpp/include/json/ |
value.h | 45 objectValue ///< object value (collection of name/value pairs). 63 * Value constructor and objectValue member assignement takes advantage of the 102 * values of an #objectValue or #arrayValue can be accessed using operator[]() 113 * It is possible to iterate over the list of a #objectValue values using 201 To create an empty object, pass objectValue. 209 Json::Value obj_value(Json::objectValue); // {} 302 /// \pre type() is arrayValue, objectValue, or nullValue 392 /// \pre type() is objectValue or nullValue 410 /// \pre type() is objectValue or nullValue 941 /// objectValue [all...] |
/external/jsoncpp/src/test_lib_json/ |
main.cpp | 60 : emptyArray_(Json::arrayValue), emptyObject_(Json::objectValue), 170 JSONTEST_ASSERT_EQUAL(Json::objectValue, emptyObject_.type()); 179 JSONTEST_ASSERT(emptyObject_.isConvertibleTo(Json::objectValue)); 224 JSONTEST_ASSERT(!emptyArray_.isConvertibleTo(Json::objectValue)); 259 JSONTEST_ASSERT(null_.isConvertibleTo(Json::objectValue)); 289 JSONTEST_ASSERT(!string1_.isConvertibleTo(Json::objectValue)); 322 JSONTEST_ASSERT(!true_.isConvertibleTo(Json::objectValue)); 350 JSONTEST_ASSERT(!Json::Value(17).isConvertibleTo(Json::objectValue)); 356 JSONTEST_ASSERT(!Json::Value(17U).isConvertibleTo(Json::objectValue)); 362 JSONTEST_ASSERT(!Json::Value(17.0).isConvertibleTo(Json::objectValue)); [all...] |
/external/skia/bench/ |
ResultsWriter.h | 98 fResults[id.c_str()] = Json::Value(Json::objectValue);
|
/art/test/569-checker-pattern-replacement/src/ |
Main.java | 448 public static double constructBase(double doubleValue, Object objectValue) { 449 Base b = new Base(doubleValue, objectValue); 480 public static double constructBase(int intValue, double doubleValue, Object objectValue) { 481 Base b = new Base(intValue, doubleValue, objectValue); 531 int intValue, double doubleValue, Object objectValue, String stringValue) { 532 Base b = new Base(intValue, doubleValue, objectValue, stringValue); 593 public static double constructBase(Object objectValue) { 594 Base b = new Base(objectValue); [all...] |
/external/jsoncpp/src/jsontestrunner/ |
main.cpp | 108 case Json::objectValue: {
|
/external/skia/tools/debugger/ |
SkDrawCommand.cpp | 499 Json::Value result(Json::objectValue); 521 Json::Value line(Json::objectValue); 527 Json::Value quad(Json::objectValue); 536 Json::Value cubic(Json::objectValue); 546 Json::Value conic(Json::objectValue); 556 Json::Value move(Json::objectValue); [all...] |
/external/webrtc/webrtc/base/ |
json_unittest.cc | 33 static Json::Value bad_o(Json::objectValue);
|
/external/dexmaker/src/test/java/com/google/dexmaker/ |
DexMakerTest.java | [all...] |
/cts/libs/json/src/com/android/json/stream/ |
JsonReader.java | 326 return objectValue(); 640 private JsonToken objectValue() throws IOException { [all...] |
/frameworks/base/core/java/android/util/ |
JsonReader.java | 347 return objectValue(); 672 private JsonToken objectValue() throws IOException { [all...] |