Home
last modified time | relevance | path

Searched refs:childrenResult (Results 1 – 2 of 2) sorted by relevance

/tools/tradefederation/core/javatests/com/android/tradefed/device/
DMockitoFileUtil.java84 Collection<IFileEntry> childrenResult = new ArrayList<IFileEntry>(1); in setMockDirPath() local
85 childrenResult.add(childMockEntry); in setMockDirPath()
86 when(rootEntry.getChildren(Mockito.anyBoolean())).thenReturn(childrenResult); in setMockDirPath()
/tools/tradefederation/contrib/src/com/android/uicd/tests/
DUiConductorTest.java343 JSONArray childrenResult = result.optJSONArray("childrenResult"); in parseTestResultJson() local
344 if (childrenResult != null) { in parseTestResultJson()
345 for (int i = 0; i < childrenResult.length(); i++) { in parseTestResultJson()
346 errors.addAll(parseTestResultJson(childrenResult.optJSONObject(i))); in parseTestResultJson()