Searched refs:queryResult (Results 1 – 5 of 5) sorted by relevance
89 private List<String> queryResult; field in DbTestUtils.FakeCursor92 FakeCursor(List<String> queryResult) { in FakeCursor() argument93 this.queryResult = queryResult; in FakeCursor()98 return queryResult.size(); in getCount()109 if (queryResult.size() > 0 && mCurrentPosition < queryResult.size()) { in moveToNext()124 return queryResult.get(columnIndex); in getString()134 private ArrayList<String> queryResult = null; field in DbTestUtils.FakeContentProvider155 this.queryResult = result; in setQueryResult()161 ArrayList<String> result = (queryResult == null) ? in query()162 new ArrayList<String>() : queryResult; in query()
350 QueryCallWaitingCommand queryResult; field in EnableSmartForwardingTask.UpdateCallWaitingCommand355 this.queryResult = queryCallWaitingCommand; in UpdateCallWaitingCommand()378 if (queryResult.getResult() != TelephonyManager.CALL_WAITING_STATUS_ENABLED) { in onRestore()388 QueryCallForwardingCommand queryResult; field in EnableSmartForwardingTask.UpdateCallForwardingCommand395 this.queryResult = queryCallForwardingCommand; in UpdateCallForwardingCommand()421 .setCallForwarding(queryResult.getResult(), null, null); in onRestore()
86 final Cursor row = queryResult( in test_createShortcutFromRow_hasCorrectResult()349 private Cursor queryResult(Object... values) {350 return queryResult(DynamicShortcuts.PROJECTION, values);362 private Cursor queryResult(String[] columns, Object... values) {
2894 Cursor queryResult = resolver.query(uri, null, whereClause, null, null); in moveMmsToFolder() local2896 if (queryResult != null) { in moveMmsToFolder()2897 if (queryResult.getCount() > 0) { in moveMmsToFolder()2898 queryResult.moveToFirst(); in moveMmsToFolder()2911 if (queryResult != null) { in moveMmsToFolder()2912 queryResult.close(); in moveMmsToFolder()
1378 const std::vector<std::string> queryResult; in TEST_F() member1427 EXPECT_THAT(ToStrings(result), testing::UnorderedElementsAreArray(config.queryResult)); in TEST_F()