Home
last modified time | relevance | path

Searched refs:jsonReader (Results 1 – 4 of 4) sorted by relevance

/cts/common/device-side/util/src/com/android/compatibility/common/util/
DReportLogDeviceInfoStore.java47 BufferedReader jsonReader = new BufferedReader(new FileReader(mJsonFile)); in open() local
49 String nextLine = jsonReader.readLine(); in open()
51 nextLine = jsonReader.readLine(); in open()
59 jsonReader.close(); in open()
86 BufferedReader jsonReader = new BufferedReader(new FileReader(tempJsonFile)); in close() argument
90 while ((line = jsonReader.readLine()) != null) { in close()
/cts/common/host-side/util/src/com/android/compatibility/common/util/
DReportLogHostInfoStore.java47 BufferedReader jsonReader = new BufferedReader(new FileReader(mJsonFile)); in open() local
49 String nextLine = jsonReader.readLine(); in open()
51 nextLine = jsonReader.readLine(); in open()
59 jsonReader.close(); in open()
86 BufferedReader jsonReader = new BufferedReader(new FileReader(tempJsonFile)); in close() argument
90 while ((line = jsonReader.readLine()) != null) { in close()
/cts/libs/vogar-expect/src/vogar/
DExpectationStore.java176 try (JsonReader jsonReader = new JsonReader(reader)) { in parse() argument
177 jsonReader.setLenient(true); in parse()
178 jsonReader.beginArray(); in parse()
179 while (jsonReader.hasNext()) { in parse()
180 readExpectation(jsonReader, mode); in parse()
183 jsonReader.endArray(); in parse()
/cts/common/device-side/util/tests/src/com/android/compatibility/common/util/
DDeviceReportTest.java129 BufferedReader jsonReader = new BufferedReader(new FileReader(jsonFile1)); in testFile() local
132 while ((line = jsonReader.readLine()) != null) { in testFile()
142 jsonReader = new BufferedReader(new FileReader(jsonFile2)); in testFile()
144 while ((line = jsonReader.readLine()) != null) { in testFile()