Lines Matching defs:result
30 * provides a simple way to synchronously get the result from a Loader making
31 * it easy to assert that the Loader returns the expected result.
44 protected void onPostExecute(Void result) {}
49 * Runs a Loader synchronously and returns the result of the load. The loader will
53 * @return The result from the loader
56 // The test thread blocks on this queue until the loader puts it's result in
60 // when it puts the result into the blocking queue
69 // Store the result, unblocking the test thread
88 // Block on the queue waiting for the result of the load to be inserted
89 T result;
92 result = queue.take();
99 return result;