/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/values/ |
SpawnShapeValue.java | 60 xOffsetValue = json.readValue("xOffsetValue", RangedNumericValue.class, jsonData); 61 yOffsetValue = json.readValue("yOffsetValue", RangedNumericValue.class, jsonData); 62 zOffsetValue = json.readValue("zOffsetValue", RangedNumericValue.class, jsonData);
|
PrimitiveSpawnShapeValue.java | 107 spawnWidthValue = json.readValue("spawnWidthValue", ScaledNumericValue.class, jsonData); 108 spawnHeightValue = json.readValue("spawnHeightValue", ScaledNumericValue.class, jsonData); 109 spawnDepthValue = json.readValue("spawnDepthValue", ScaledNumericValue.class, jsonData); 110 edges = json.readValue("edges", boolean.class, jsonData);
|
RangedNumericValue.java | 58 lowMin = json.readValue("lowMin", float.class, jsonData); 59 lowMax = json.readValue("lowMax", float.class, jsonData);
|
ScaledNumericValue.java | 113 highMin = json.readValue("highMin", float.class, jsonData); 114 highMax = json.readValue("highMax", float.class, jsonData); 115 relative = json.readValue("relative", boolean.class, jsonData); 116 scaling = json.readValue("scaling", float[].class, jsonData); 117 timeline = json.readValue("timeline", float[].class, jsonData);
|
NumericValue.java | 33 value = json.readValue("value", float.class, jsonData);
|
ParticleValue.java | 38 active = json.readValue("active", Boolean.class, jsonData);
|
GradientColorValue.java | 75 colors = json.readValue("colors", float[].class, jsonData); 76 timeline = json.readValue("timeline", float[].class, jsonData);
|
EllipseSpawnShapeValue.java | 97 side = json.readValue("side", SpawnSide.class, jsonData);
|
/packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/v4/content/ |
language_model_dict_content_global_counters.h | 33 mTotalCount(readValue(mBuffer, TOTAL_COUNT_INDEX)), 34 mMaxValueOfCounters(readValue(mBuffer, MAX_VALUE_OF_COUNTERS_INDEX)) {} 92 static int readValue(const BufferWithExtendableBuffer &buffer, const int index) {
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/ |
ResourceData.java | 88 data = json.readValue("data", ObjectMap.class, jsonData); 89 assets.addAll(json.readValue("indices", int[].class, jsonData)); 109 filename = json.readValue("filename", String.class, jsonData); 110 String className = json.readValue("type", String.class, jsonData); 202 uniqueData = json.readValue("unique", ObjectMap.class, jsonData); 207 data = json.readValue("data", Array.class, SaveData.class, jsonData); 212 sharedAssets.addAll(json.readValue("assets", Array.class, AssetData.class, jsonData)); 213 resource = json.readValue("resource", null, jsonData);
|
ParticleController.java | 303 name = json.readValue("name", String.class, jsonMap); 304 emitter = json.readValue("emitter", Emitter.class, jsonMap); 305 influencers.addAll(json.readValue("influencers", Array.class, Influencer.class, jsonMap)); 306 renderer = json.readValue("renderer", ParticleControllerRenderer.class, jsonMap);
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/emitters/ |
Emitter.java | 74 minParticleCount = json.readValue("minParticleCount", int.class, jsonData); 75 maxParticleCount = json.readValue("maxParticleCount", int.class, jsonData);
|
RegularEmitter.java | 268 continuous = json.readValue("continous", boolean.class, jsonData); 269 emissionValue = json.readValue("emission", ScaledNumericValue.class, jsonData); 270 delayValue = json.readValue("delay", RangedNumericValue.class, jsonData); 271 durationValue = json.readValue("duration", RangedNumericValue.class, jsonData); 272 lifeValue = json.readValue("life", ScaledNumericValue.class, jsonData); 273 lifeOffsetValue = json.readValue("lifeOffset", ScaledNumericValue.class, jsonData);
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/ |
SeekBarDialogPreference.java | 34 public int readValue(final String key); 64 final int value = mValueProxy.readValue(getKey()); 100 final int value = mValueProxy.readValue(getKey());
|
AdvancedSettingsFragment.java | 146 public int readValue(final String key) { 201 public int readValue(final String key) { 246 public int readValue(final String key) {
|
DebugSettingsFragment.java | 182 public int readValue(final String key) { 224 public int readValue(final String key) { 270 public int readValue(final String key) {
|
/external/libgdx/gdx/src/com/badlogic/gdx/utils/ |
Json.java | 665 return (T)readValue(type, null, new JsonReader().parse(reader)); 672 return (T)readValue(type, elementType, new JsonReader().parse(reader)); 678 return (T)readValue(type, null, new JsonReader().parse(input)); 685 return (T)readValue(type, elementType, new JsonReader().parse(input)); 692 return (T)readValue(type, null, new JsonReader().parse(file)); 703 return (T)readValue(type, elementType, new JsonReader().parse(file)); 712 return (T)readValue(type, null, new JsonReader().parse(data, offset, length)); 719 return (T)readValue(type, elementType, new JsonReader().parse(data, offset, length)); 725 return (T)readValue(type, null, new JsonReader().parse(json)); 731 return (T)readValue(type, elementType, new JsonReader().parse(json)) [all...] |
/frameworks/av/media/mtp/ |
MtpProperty.cpp | 153 if (!readValue(packet, mDefaultValue)) return false; 155 if (!readValue(packet, mCurrentValue)) return false; 164 if (!readValue(packet, mMinimumValue)) return false; 165 if (!readValue(packet, mMaximumValue)) return false; 166 if (!readValue(packet, mStepSize)) return false; 171 if (!readValue(packet, mEnumValues[i])) return false; 242 readValue(packet, mCurrentValue); 429 bool MtpProperty::readValue(MtpDataPacket& packet, MtpPropertyValue& value) { 478 ALOGE("unknown type %04X in MtpProperty::readValue", mType); 552 if (!readValue(packet, result[i])) [all...] |
MtpProperty.h | 108 bool readValue(MtpDataPacket& packet, MtpPropertyValue& value);
|
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/ |
Skin.java | 424 public <T> T readValue (Class<T> type, Class elementType, JsonValue jsonData) {
428 return super.readValue(type, elementType, jsonData);
449 Object object = json.readValue(type, valueEntry);
465 String path = json.readValue("file", String.class, jsonData);
466 int scaledSize = json.readValue("scaledSize", int.class, -1, jsonData);
467 Boolean flip = json.readValue("flip", Boolean.class, false, jsonData);
468 Boolean markupEnabled = json.readValue("markupEnabled", Boolean.class, false, jsonData);
506 String hex = json.readValue("hex", String.class, (String)null, jsonData);
508 float r = json.readValue("r", float.class, 0f, jsonData);
509 float g = json.readValue("g", float.class, 0f, jsonData); [all...] |
/external/icu/icu4c/source/common/ |
bytestrie.cpp | 30 BytesTrie::readValue(const uint8_t *pos, int32_t leadByte) { 110 // int32_t delta=readValue(pos, node>>1); 127 // end readValue() 329 int32_t value=readValue(pos, node>>1); 368 int32_t value=readValue(pos, node>>1);
|
ucharstrie.cpp | 90 // int32_t delta=readValue(pos, node); 100 // end readValue() 299 int32_t value=readValue(pos, node); 342 value=readValue(pos, node&0x7fff);
|
/external/parameter-framework/upstream/parameter/ |
ArrayParameter.cpp | 386 type readValue; 388 if (!doGet(readValue, offset, parameterAccessContext)) { 393 values.push_back(readValue);
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/influencers/ |
SpawnInfluencer.java | 69 spawnShapeValue = json.readValue("spawnShape", SpawnShapeValue.class, jsonData);
|
/frameworks/compile/mclinker/lib/Target/ |
ELFAttributeData.cpp | 35 bool ELFAttributeData::ReadValue(ELFAttributeValue& pValue,
|