/external/libgdx/gdx/src/com/badlogic/gdx/utils/ |
D | Json.java | 734 public void readField (Object object, String name, JsonValue jsonData) { in readField() argument 735 readField(object, name, name, null, jsonData); in readField() 738 public void readField (Object object, String name, Class elementType, JsonValue jsonData) { in readField() argument 739 readField(object, name, name, elementType, jsonData); in readField() 742 public void readField (Object object, String fieldName, String jsonName, JsonValue jsonData) { in readField() argument 743 readField(object, fieldName, jsonName, null, jsonData); in readField() 844 public <T> T readValue (Class<T> type, Class elementType, T defaultValue, JsonValue jsonData) { in readValue() argument 845 if (jsonData == null) return defaultValue; in readValue() 846 return (T)readValue(type, elementType, jsonData); in readValue() 851 public <T> T readValue (Class<T> type, JsonValue jsonData) { in readValue() argument [all …]
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/ |
D | ResourceData.java | 87 public void read (Json json, JsonValue jsonData) { in read() argument 88 data = json.readValue("data", ObjectMap.class, jsonData); in read() 89 assets.addAll(json.readValue("indices", int[].class, jsonData)); in read() 108 public void read (Json json, JsonValue jsonData) { in read() argument 109 filename = json.readValue("filename", String.class, jsonData); in read() 110 String className = json.readValue("type", String.class, jsonData); in read() 201 public void read (Json json, JsonValue jsonData) { in read() argument 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() [all …]
|
D | ParticleControllerComponent.java | 55 public void read (Json json, JsonValue jsonData) {} in read() argument
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/values/ |
D | ScaledNumericValue.java | 111 public void read (Json json, JsonValue jsonData) { in read() argument 112 super.read(json, jsonData); in read() 113 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()
|
D | PrimitiveSpawnShapeValue.java | 105 public void read (Json json, JsonValue jsonData) { in read() argument 106 super.read(json, jsonData); in read() 107 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()
|
D | SpawnShapeValue.java | 58 public void read (Json json, JsonValue jsonData) { in read() argument 59 super.read(json, jsonData); in read() 60 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()
|
D | RangedNumericValue.java | 56 public void read (Json json, JsonValue jsonData) { in read() argument 57 super.read(json, jsonData); in read() 58 lowMin = json.readValue("lowMin", float.class, jsonData); in read() 59 lowMax = json.readValue("lowMax", float.class, jsonData); in read()
|
D | NumericValue.java | 31 public void read (Json json, JsonValue jsonData) { in read() argument 32 super.read(json, jsonData); in read() 33 value = json.readValue("value", float.class, jsonData); in read()
|
D | GradientColorValue.java | 73 public void read (Json json, JsonValue jsonData) { in read() argument 74 super.read(json, jsonData); in read() 75 colors = json.readValue("colors", float[].class, jsonData); in read() 76 timeline = json.readValue("timeline", float[].class, jsonData); in read()
|
D | ParticleValue.java | 37 public void read (Json json, JsonValue jsonData) { in read() argument 38 active = json.readValue("active", Boolean.class, jsonData); in read()
|
D | EllipseSpawnShapeValue.java | 95 public void read (Json json, JsonValue jsonData) { in read() argument 96 super.read(json, jsonData); in read() 97 side = json.readValue("side", SpawnSide.class, jsonData); in read()
|
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/ |
D | Skin.java | 424 public <T> T readValue (Class<T> type, Class elementType, JsonValue jsonData) { in getJsonLoader() 426 if (jsonData.isString() && !ClassReflection.isAssignableFrom(CharSequence.class, type)) in getJsonLoader() 427 return get(jsonData.asString(), type); in getJsonLoader() 428 return super.readValue(type, elementType, jsonData); in getJsonLoader() 464 public BitmapFont read (Json json, JsonValue jsonData, Class type) { 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() 504 public Color read (Json json, JsonValue jsonData, Class type) { in getJsonLoader() [all …]
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/emitters/ |
D | RegularEmitter.java | 266 public void read (Json json, JsonValue jsonData) { in read() argument 267 super.read(json, jsonData); in read() 268 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()
|
D | Emitter.java | 73 public void read (Json json, JsonValue jsonData) { in read() argument 74 minParticleCount = json.readValue("minParticleCount", int.class, jsonData); in read() 75 maxParticleCount = json.readValue("maxParticleCount", int.class, jsonData); in read()
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/influencers/ |
D | DynamicsModifier.java | 108 public void read (Json json, JsonValue jsonData) { in read() argument 109 super.read(json, jsonData); in read() 110 strengthValue = json.readValue("strengthValue", ScaledNumericValue.class, jsonData); in read() 175 public void read (Json json, JsonValue jsonData) { in read() argument 176 super.read(json, jsonData); in read() 177 thetaValue = json.readValue("thetaValue", ScaledNumericValue.class, jsonData); in read() 178 phiValue = json.readValue("phiValue", ScaledNumericValue.class, jsonData); in read() 497 public void read (Json json, JsonValue jsonData) { in read() argument 498 super.read(json, jsonData); in read() 499 isGlobal = json.readValue("isGlobal", boolean.class, jsonData); in read()
|
D | ColorInfluencer.java | 119 public void read (Json json, JsonValue jsonData) { in read() argument 120 alphaValue = json.readValue("alpha", ScaledNumericValue.class, jsonData); in read() 121 colorValue = json.readValue("color", GradientColorValue.class, jsonData); in read()
|
D | SpawnInfluencer.java | 68 public void read (Json json, JsonValue jsonData) { in read() argument 69 spawnShapeValue = json.readValue("spawnShape", SpawnShapeValue.class, jsonData); in read()
|
D | SimpleInfluencer.java | 84 public void read (Json json, JsonValue jsonData) { in read() argument 85 value = json.readValue("value", ScaledNumericValue.class, jsonData); in read()
|
D | RegionInfluencer.java | 221 public void read (Json json, JsonValue jsonData) { in read() argument 223 regions.addAll(json.readValue("regions", Array.class, AspectTextureRegion.class, jsonData)); in read()
|
D | DynamicsInfluencer.java | 209 public void read (Json json, JsonValue jsonData) { in read() argument 210 velocities.addAll(json.readValue("velocities", Array.class, DynamicsModifier.class, jsonData)); in read()
|
/external/webrtc/webrtc/examples/objc/AppRTCDemo/common/ |
D | ARDUtilities.h | 17 + (NSDictionary *)dictionaryWithJSONData:(NSData *)jsonData;
|
D | ARDUtilities.m | 31 + (NSDictionary *)dictionaryWithJSONData:(NSData *)jsonData { 34 [NSJSONSerialization JSONObjectWithData:jsonData options:0 error:&error];
|
/external/skia/tools/debugger/ |
D | SkDrawCommand.cpp | 636 Json::Value jsonData; in flatten() local 637 encode_data(data, buffer.bytesWritten(), "application/octet-stream", urlDataManager, &jsonData); in flatten() 640 jsonFlattenable[SKDEBUGCANVAS_ATTRIBUTE_DATA] = jsonData; in flatten() 668 Json::Value jsonData; in flatten() local 669 encode_data(encoded->data(), encoded->size(), "image/png", urlDataManager, &jsonData); in flatten() 670 (*target)[SKDEBUGCANVAS_ATTRIBUTE_DATA] = jsonData; in flatten() 1026 Json::Value jsonData; in apply_paint_typeface() local 1028 &jsonData); in apply_paint_typeface() 1029 jsonTypeface[SKDEBUGCANVAS_ATTRIBUTE_DATA] = jsonData; in apply_paint_typeface() 1217 Json::Value jsonData = jsonTypeface[SKDEBUGCANVAS_ATTRIBUTE_DATA]; in extract_json_paint_typeface() local [all …]
|