HomeSort by relevance Sort by last modified time
    Searched refs:rawResult (Results 1 - 25 of 28) sorted by null

1 2

  /external/vogar/src/vogar/
HostFileCache.java 36 List<String> rawResult = new Command.Builder(log).args("cp", source, destination).execute();
38 if (!rawResult.isEmpty()) {
40 + ": " + rawResult.get(0));
45 List<String> rawResult = new Command.Builder(log).args("mv", source, destination).execute();
47 if (!rawResult.isEmpty()) {
49 + ": " + rawResult.get(0));
  /external/vogar/src/vogar/android/
DeviceFilesystem.java 72 List<String> rawResult = new Command.Builder(log)
77 if (!rawResult.isEmpty() && !rawResult.get(0).contains("File exists")) {
78 throw new CommandFailedException(args, rawResult);
88 List<String> rawResult = new Command.Builder(log)
95 for (String fileString : rawResult) {
  /external/zxing/qr_scanner/src/com/google/zxing/client/android/
DecodeHandler.java 71 Result rawResult = null;
76 rawResult = multiFormatReader.decodeWithState(bitmap);
85 if (rawResult != null) {
90 Message message = Message.obtain(handler, R.id.decode_succeeded, rawResult);
CaptureActivity.java 197 * @param rawResult The contents of the barcode.
200 public void handleDecode(Result rawResult, Bitmap barcode) {
207 drawResultPoints(barcode, rawResult);
208 Log.d(LOG_TAG, "Barcode is: " + rawResult.getText());
210 result.putExtra("SCAN_RESULT", rawResult.getText());
221 * @param rawResult The decoded results which contains the points to draw.
223 private void drawResultPoints(Bitmap barcode, Result rawResult) {
224 ResultPoint[] points = rawResult.getResultPoints();
238 } else if (points.length == 4 && (rawResult.getBarcodeFormat() == BarcodeFormat.UPC_A
239 || rawResult.getBarcodeFormat() == BarcodeFormat.EAN_13))
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
Camera2StillCaptureTest.java 477 * @param rawResult the {@link CaptureResult} corresponding to the given request.
479 private void verifyRawCaptureResult(CaptureRequest rawRequest, CaptureResult rawResult) {
481 assertNotNull(rawResult);
485 rawResult, CaptureResult.SENSOR_NEUTRAL_COLOR_POINT);
495 mCollector.expectKeyValueGreaterOrEqual(rawResult, CaptureResult.SENSOR_GREEN_SPLIT, 0.0f);
498 rawResult, CaptureResult.SENSOR_NOISE_PROFILE);
508 Integer hotPixelMode = mCollector.expectKeyValueNotNull("HotPixelMode", rawResult,
510 Boolean hotPixelMapMode = mCollector.expectKeyValueNotNull("HotPixelMapMode", rawResult,
512 Point[] hotPixelMap = rawResult.get(CaptureResult.STATISTICS_HOT_PIXEL_MAP);
522 mCollector.expectKeyValueEquals(rawResult, CaptureResult.HOT_PIXEL_MODE
    [all...]
  /libcore/ojluni/src/main/java/java/util/concurrent/
CountedCompleter.java 616 * task's completer, if one exists. The given rawResult is
629 * @param rawResult the raw result
631 public void complete(T rawResult) {
633 setRawResult(rawResult);
  /packages/apps/ExactCalculator/src/com/android/calculator2/
CalculatorResult.java     [all...]
  /cts/tests/camera/src/android/hardware/camera2/cts/
StillCaptureTest.java     [all...]
  /libcore/jsr166-tests/src/test/java/jsr166/
CountedCompleterTest.java 217 final AtomicReference<Object> rawResult = new AtomicReference<Object>(null);
245 rawResult.set(t);
255 void checkCompletes(Object rawResult) {
258 complete(rawResult);
264 assertSame(rawResult, this.rawResult.get());
277 assertNull(this.rawResult.get());
    [all...]
  /hardware/interfaces/camera/device/3.4/default/
ExternalCameraDeviceSession.cpp 781 const camera_metadata_t *rawResult = req->setting.getAndLock();
782 V3_2::implementation::convertToHidl(rawResult, &result.result);
783 req->setting.unlock(rawResult);
    [all...]
  /external/conscrypt/benchmark-android/
vogar.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-common/4.1.0.CR3/
netty-common-4.1.0.CR3.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-common/4.1.3.Final/
netty-common-4.1.3.Final.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-common/4.1.6.Final/
netty-common-4.1.6.Final.jar 
  /prebuilts/devtools/tools/lib/
org-eclipse-jface-3.6.2.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.jface_3.6.2.M20110210-1200.jar 
  /prebuilts/tools/common/m2/repository/com/android/external/eclipse/org-eclipse-jface/3.6.2/
org-eclipse-jface-3.6.2.jar 
  /prebuilts/misc/common/robolectric/android-all/
android-all-4.4_r1-robolectric-r2.jar 
android-all-5.0.2_r3-robolectric-r0.jar 
android-all-5.1.1_r9-robolectric-r2.jar 
android-all-6.0.1_r3-robolectric-r1.jar 
android-all-7.0.0_r1-robolectric-0.jar 
android-all-7.0.0_r1-robolectric-r1.jar 
android-all-7.1.0_r7-robolectric-0.jar 
android-all-7.1.0_r7-robolectric-r1.jar 

Completed in 383 milliseconds

1 2