Home
last modified time | relevance | path

Searched refs:result (Results 1 – 7 of 7) sorted by relevance

/pdk/apps/HelloPDK/src/com/example/android/helloPDK/
DMainActivity.java125 Intent result = new Intent(); in activityIntent() local
126 result.setClassName(pkg, componentName); in activityIntent()
127 return result; in activityIntent()
131 Intent result = new Intent(); in browseIntent() local
132 result.setClass(this, MainActivity.class); in browseIntent()
133 result.putExtra("com.example.android.helloPDK.Path", path); in browseIntent()
134 return result; in browseIntent()
/pdk/build/
Dpdk_utils.py111 result = True
116 result = False
117 return result
146 result = []
148 return result
151 result.append(line.strip())
154 return result
/pdk/apps/TestingCamera2/src/com/android/testingcamera2/
DCameraControlPane.java293 for (TotalCaptureResult result : mRecentResults) { in getResultAt()
294 long resultTimestamp = result.get(CaptureResult.SENSOR_TIMESTAMP); in getResultAt()
295 if (resultTimestamp == timestamp) return result; in getResultAt()
329 TotalCaptureResult result) {
330 mRecentResults.add(result);
DImageReaderSubPane.java622 TotalCaptureResult result = mCurrentCamera.getResultAt(timestamp); in writeDngImage() local
623 if (result == null) { in writeDngImage()
629 try (DngCreator writer = new DngCreator(info, result)) { in writeDngImage() argument
/pdk/apps/TestingCamera2/src/com/android/testingcamera2/v1/
DTestingCamera2.java479 TotalCaptureResult result) {
483 if (request == null || result ==null) {
491 resCtrlMode = result.get(CaptureResult.CONTROL_MODE);
496 Integer resSen = result.get(CaptureResult.SENSOR_SENSITIVITY);
501 Long resExp = result.get(CaptureResult.SENSOR_EXPOSURE_TIME);
506 Long resFD = result.get(CaptureResult.SENSOR_FRAME_DURATION);
510 List<CaptureResult.Key<?>> resultKeys = result.getKeys();
/pdk/apps/TestingCamera/src/com/android/testingcamera/
DCallbackProcessor.java153 protected void onPostExecute(Boolean result) { in onPostExecute() argument
DTestingCamera.java494 int result; in setCameraDisplayOrientation() local
496 result = (info.orientation + degrees) % 360; in setCameraDisplayOrientation()
497 result = (360 - result) % 360; // compensate the mirror in setCameraDisplayOrientation()
499 result = (info.orientation - degrees + 360) % 360; in setCameraDisplayOrientation()
505 result)); in setCameraDisplayOrientation()
506 mCamera.setDisplayOrientation(result); in setCameraDisplayOrientation()