Searched refs:capture (Results 1 - 15 of 15) sorted by relevance

/packages/apps/Browser/src/com/android/browser/
H A DUploadHandler.java93 void openFileChooser(ValueCallback<Uri> uploadMsg, String acceptType, String capture) { argument
98 final String mediaSourceKey = "capture";
119 if (capture.length() > 0) {
120 mediaSource = capture;
123 if (capture.equals(mediaSourceValueFileSystem)) {
125 // of the media capture API, if the value of the 'capture' attribute is
127 // may specify a different capture value.
149 // Specified just 'image/*', capture=filesystem, or an invalid capture paramete
[all...]
H A DDataController.java54 private ByteBuffer mBuffer; // to capture thumbnails
198 Bitmap capture = tab.getScreenshot();
199 if (capture == null) {
202 if (mBuffer == null || mBuffer.limit() < capture.getByteCount()) {
203 mBuffer = ByteBuffer.allocate(capture.getByteCount());
205 capture.copyPixelsToBuffer(mBuffer);
H A DWebViewController.java96 void openFileChooser(ValueCallback<Uri> uploadMsg, String acceptType, String capture); argument
H A DPreloadController.java206 public void openFileChooser(ValueCallback<Uri> uploadMsg, String acceptType, String capture) { argument
H A DTab.java994 public void openFileChooser(ValueCallback<Uri> uploadMsg, String acceptType, String capture) {
996 mWebViewController.openFileChooser(uploadMsg, acceptType, capture);
1207 capture();
1497 capture();
1904 protected void capture() { method in class:Tab
2001 Log.e(LOGTAG, "Load capture has mismatched sizes; buffer: "
2003 + "capture: " + mCapture.getByteCount());
H A DPieControl.java243 mUi.getActiveTab().capture();
H A DPhoneUi.java276 mActiveTab.capture();
H A DController.java2020 public void openFileChooser(ValueCallback<Uri> uploadMsg, String acceptType, String capture) { argument
2022 mUploadHandler.openFileChooser(uploadMsg, acceptType, capture);
/packages/apps/Camera/tests/src/com/android/camera/activity/
H A DCameraTestCase.java142 mShutterCallback.capture(), mRawPictureCallback.capture(),
143 (PictureCallback) anyObject(), mJpegPictureCallback.capture());
147 mAutoFocusCallback.capture());
/packages/apps/Camera/src/com/android/camera/
H A DFocusOverlayManager.java101 public boolean capture(); method in interface:FocusOverlayManager.Listener
241 capture();
244 // already have requested AF for us, so just request capture on
252 capture();
267 capture();
424 private void capture() { method in class:FocusOverlayManager
425 if (mListener.capture()) {
H A DPhotoModule.java932 // Only animate when in full screen capture mode
937 // Finish capture animation
1258 // Only animate when in full screen capture mode
1263 // Start capture animation.
1269 public boolean capture() { method in class:PhotoModule
1346 // this can not happen in capture mode
1741 // If we are in an image capture intent and has taken
1955 // In image capture mode, back button should:
1956 // 1) if there is any popup, dismiss them, 2) otherwise, get out of image capture
1959 // no popup to dismiss, cancel image capture
[all...]
/packages/apps/LegacyCamera/src/com/android/camera/
H A DFocusManager.java80 public boolean capture(); method in interface:FocusManager.Listener
184 capture();
187 // already have requested AF for us, so just request capture on
195 capture();
215 capture();
343 private void capture() { method in class:FocusManager
344 if (mListener.capture()) {
H A DCamera.java372 if (!mIsImageCaptureIntent) { // no thumbnail in image capture intent
1040 public boolean capture() { method in class:Camera
1612 // If we are in an image capture intent and has taken
2217 // If the intent is camera capture, stay in camera capture mode.
/packages/apps/Browser/tests/src/com/android/browser/
H A DTestWebChromeClient.java200 public void openFileChooser(ValueCallback<Uri> uploadFile, String acceptType, String capture) { argument
201 mWrappedClient.openFileChooser(uploadFile, acceptType, capture);
/packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
H A DParser.java54 private boolean capture = false; field in class:Parser
203 * Turns on data capture; this is used to create test streams that represent "live" data and
207 capture = true;
212 * Turns off data capture; writes the captured data to a specified file.
514 * Read an int from the input stream, and capture it if necessary for debugging. Seems a small
523 if (capture) {

Completed in 263 milliseconds