HomeSort by relevance Sort by last modified time
    Searched defs:GSON (Results 1 - 10 of 10) sorted by null

  /frameworks/support/room/migration/src/main/java/androidx/room/migration/bundle/
SchemaBundle.java 21 import com.google.gson.Gson;
22 import com.google.gson.GsonBuilder;
23 import com.google.gson.annotations.SerializedName;
47 private static final Gson GSON;
52 GSON = new GsonBuilder().setPrettyPrinting().disableHtmlEscaping().create();
77 return GSON.fromJson(is, SchemaBundle.class);
92 GSON.toJson(bundle, osw);
  /external/okhttp/okhttp-hpacktests/src/test/java/com/squareup/okhttp/internal/spdy/hpackjson/
HpackJsonUtil.java 18 import com.google.gson.Gson;
19 import com.google.gson.GsonBuilder;
39 private static final Gson GSON = new GsonBuilder().create();
42 return GSON.fromJson(new InputStreamReader(jsonResource, "UTF-8"), Story.class);
  /external/okhttp/samples/simple-client/src/main/java/com/squareup/okhttp/sample/
OkHttpContributors.java 3 import com.google.gson.Gson;
4 import com.google.gson.reflect.TypeToken;
16 private static final Gson GSON = new Gson();
40 List<Contributor> contributors = GSON.fromJson(charStream, CONTRIBUTORS.getType());