Home
last modified time | relevance | path

Searched refs:readValue (Results 1 – 25 of 38) sorted by relevance

12

/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/
DResourceData.java88 data = json.readValue("data", ObjectMap.class, jsonData); in read()
89 assets.addAll(json.readValue("indices", int[].class, jsonData)); in read()
109 filename = json.readValue("filename", String.class, jsonData); in read()
110 String className = json.readValue("type", String.class, jsonData); in read()
202 uniqueData = json.readValue("unique", ObjectMap.class, jsonData); in read()
207 data = json.readValue("data", Array.class, SaveData.class, jsonData); in read()
212 sharedAssets.addAll(json.readValue("assets", Array.class, AssetData.class, jsonData)); in read()
213 resource = json.readValue("resource", null, jsonData); in read()
DParticleController.java303 name = json.readValue("name", String.class, jsonMap); in read()
304 emitter = json.readValue("emitter", Emitter.class, jsonMap); in read()
305 influencers.addAll(json.readValue("influencers", Array.class, Influencer.class, jsonMap)); in read()
306 renderer = json.readValue("renderer", ParticleControllerRenderer.class, jsonMap); in read()
/external/libgdx/gdx/src/com/badlogic/gdx/utils/
DJson.java665 return (T)readValue(type, null, new JsonReader().parse(reader)); in fromJson()
672 return (T)readValue(type, elementType, new JsonReader().parse(reader)); in fromJson()
678 return (T)readValue(type, null, new JsonReader().parse(input)); in fromJson()
685 return (T)readValue(type, elementType, new JsonReader().parse(input)); in fromJson()
692 return (T)readValue(type, null, new JsonReader().parse(file)); in fromJson()
703 return (T)readValue(type, elementType, new JsonReader().parse(file)); in fromJson()
712 return (T)readValue(type, null, new JsonReader().parse(data, offset, length)); in fromJson()
719 return (T)readValue(type, elementType, new JsonReader().parse(data, offset, length)); in fromJson()
725 return (T)readValue(type, null, new JsonReader().parse(json)); in fromJson()
731 return (T)readValue(type, elementType, new JsonReader().parse(json)); in fromJson()
[all …]
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/values/
DScaledNumericValue.java113 highMin = json.readValue("highMin", float.class, jsonData); in read()
114 highMax = json.readValue("highMax", float.class, jsonData); in read()
115 relative = json.readValue("relative", boolean.class, jsonData); in read()
116 scaling = json.readValue("scaling", float[].class, jsonData); in read()
117 timeline = json.readValue("timeline", float[].class, jsonData); in read()
DPrimitiveSpawnShapeValue.java107 spawnWidthValue = json.readValue("spawnWidthValue", ScaledNumericValue.class, jsonData); in read()
108 spawnHeightValue = json.readValue("spawnHeightValue", ScaledNumericValue.class, jsonData); in read()
109 spawnDepthValue = json.readValue("spawnDepthValue", ScaledNumericValue.class, jsonData); in read()
110 edges = json.readValue("edges", boolean.class, jsonData); in read()
DSpawnShapeValue.java60 xOffsetValue = json.readValue("xOffsetValue", RangedNumericValue.class, jsonData); in read()
61 yOffsetValue = json.readValue("yOffsetValue", RangedNumericValue.class, jsonData); in read()
62 zOffsetValue = json.readValue("zOffsetValue", RangedNumericValue.class, jsonData); in read()
DRangedNumericValue.java58 lowMin = json.readValue("lowMin", float.class, jsonData); in read()
59 lowMax = json.readValue("lowMax", float.class, jsonData); in read()
DGradientColorValue.java75 colors = json.readValue("colors", float[].class, jsonData); in read()
76 timeline = json.readValue("timeline", float[].class, jsonData); in read()
DNumericValue.java33 value = json.readValue("value", float.class, jsonData); in read()
DParticleValue.java38 active = json.readValue("active", Boolean.class, jsonData); in read()
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/
DSkin.java424 public <T> T readValue (Class<T> type, Class elementType, JsonValue jsonData) { in getJsonLoader()
428 return super.readValue(type, elementType, jsonData); in getJsonLoader()
449 Object object = json.readValue(type, valueEntry); in getJsonLoader()
465 String path = json.readValue("file", String.class, jsonData); in getJsonLoader()
466 int scaledSize = json.readValue("scaledSize", int.class, -1, jsonData); in getJsonLoader()
467 Boolean flip = json.readValue("flip", Boolean.class, false, jsonData); in getJsonLoader()
468 Boolean markupEnabled = json.readValue("markupEnabled", Boolean.class, false, jsonData); in getJsonLoader()
506 String hex = json.readValue("hex", String.class, (String)null, jsonData); in getJsonLoader()
508 float r = json.readValue("r", float.class, 0f, jsonData); in getJsonLoader()
509 float g = json.readValue("g", float.class, 0f, jsonData); in getJsonLoader()
[all …]
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/emitters/
DRegularEmitter.java268 continuous = json.readValue("continous", boolean.class, jsonData); in read()
269 emissionValue = json.readValue("emission", ScaledNumericValue.class, jsonData); in read()
270 delayValue = json.readValue("delay", RangedNumericValue.class, jsonData); in read()
271 durationValue = json.readValue("duration", RangedNumericValue.class, jsonData); in read()
272 lifeValue = json.readValue("life", ScaledNumericValue.class, jsonData); in read()
273 lifeOffsetValue = json.readValue("lifeOffset", ScaledNumericValue.class, jsonData); in read()
DEmitter.java74 minParticleCount = json.readValue("minParticleCount", int.class, jsonData); in read()
75 maxParticleCount = json.readValue("maxParticleCount", int.class, jsonData); in read()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DBytesTrie.java357 return readValue(bytes_, pos, leadByte>>1);
610 entry_.value=readValue(bytes_, pos, node>>1); in next()
671 int value=readValue(bytes_, pos, node>>1); in branchNext()
709 private static int readValue(byte[] bytes, int pos, int leadByte) { in readValue() method
901 int value=readValue(bytes, pos, node>>1);
942 int value=readValue(bytes, pos, node>>1); in findUniqueValue()
DCharsTrie.java320 readValue(chars_, pos, leadUnit&0x7fff) : readNodeValue(chars_, pos, leadUnit); in getValue()
532 entry_.value=readValue(chars_, pos, node&0x7fff); in next()
606 int value=readValue(chars_, pos, node&=0x7fff); in branchNext()
647 private static int readValue(CharSequence chars, int pos, int leadUnit) { in readValue() method in CharsTrie
839 int value=readValue(chars, pos, node); in findUniqueValueFromBranch()
884 value=readValue(chars, pos, node&0x7fff); in findUniqueValue()
/external/icu/android_icu4j/src/main/java/android/icu/util/
DBytesTrie.java338 return readValue(bytes_, pos, leadByte>>1);
576 entry_.value=readValue(bytes_, pos, node>>1); in next()
636 int value=readValue(bytes_, pos, node>>1); in branchNext()
674 private static int readValue(byte[] bytes, int pos, int leadByte) { in readValue() method
866 int value=readValue(bytes, pos, node>>1);
907 int value=readValue(bytes, pos, node>>1); in findUniqueValue()
DCharsTrie.java307 readValue(chars_, pos, leadUnit&0x7fff) : readNodeValue(chars_, pos, leadUnit); in getValue()
507 entry_.value=readValue(chars_, pos, node&0x7fff); in next()
580 int value=readValue(chars_, pos, node&=0x7fff); in branchNext()
621 private static int readValue(CharSequence chars, int pos, int leadUnit) { in readValue() method in CharsTrie
813 int value=readValue(chars, pos, node); in findUniqueValueFromBranch()
858 value=readValue(chars, pos, node&0x7fff); in findUniqueValue()
/external/parameter-framework/upstream/parameter/
DArrayParameter.cpp386 type readValue; in getValues() local
388 if (!doGet(readValue, offset, parameterAccessContext)) { in getValues()
393 values.push_back(readValue); in getValues()
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/influencers/
DColorInfluencer.java120 alphaValue = json.readValue("alpha", ScaledNumericValue.class, jsonData); in read()
121 colorValue = json.readValue("color", GradientColorValue.class, jsonData); in read()
/external/icu/icu4c/source/common/
Ducharstrieiterator.cpp141 value_=readValue(pos, node&0x7fff); in next()
199 int32_t value=readValue(pos, node&=0x7fff); in branchNext()
Dbytestrie.cpp30 BytesTrie::readValue(const uint8_t *pos, int32_t leadByte) { in readValue() function in BytesTrie
329 int32_t value=readValue(pos, node>>1); in findUniqueValueFromBranch()
368 int32_t value=readValue(pos, node>>1); in findUniqueValue()
Dbytestrieiterator.cpp136 value_=readValue(pos, node>>1); in next()
195 int32_t value=readValue(pos, node>>1); in branchNext()
/external/proguard/src/proguard/classfile/instruction/
DConstantInstruction.java129 constantIndex = readValue(code, offset, constantIndexSize); offset += constantIndexSize; in readInfo()
130 constant = readValue(code, offset, constantSize); in readInfo()
/external/icu/icu4c/source/common/unicode/
Dbytestrie.h210 return readValue(pos, leadByte>>1); in getValue()
365 static int32_t readValue(const uint8_t *pos, int32_t leadByte);
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowParcel.java687 public Object readValue(ClassLoader loader) { in readValue() method in ShadowParcel
964 Object key = readValue(loader); in readMapInternal()
965 Object value = readValue(loader); in readMapInternal()
972 Object value = readValue(loader); in readListInternal()
980 Object value = readValue(loader); in readArrayInternal()

12