HomeSort by relevance Sort by last modified time
    Searched defs:Camera (Results 1 - 21 of 21) sorted by null

  /external/webkit/SunSpider/tests/sunspider-0.9/
3d-raytrace.js 259 // this camera code is from notes i made ages ago, it is from *somewhere* -- i cannot remember where
261 function Camera(origin, lookat, up) {
283 Camera.prototype.generateRayPair = function(y) {
292 function renderRows(camera, scene, pixels, width, height, starty, stopy) {
294 var rays = camera.generateRayPair(y / height);
305 Camera.prototype.render = function(scene, pixels, width, height) {
399 var _camera = new Camera(createVector(-40, 40, 40), createVector(0, 0, 0), createVector(0, 1, 0));
  /external/webkit/SunSpider/tests/sunspider-0.9.1/
3d-raytrace.js 259 // this camera code is from notes i made ages ago, it is from *somewhere* -- i cannot remember where
261 function Camera(origin, lookat, up) {
283 Camera.prototype.generateRayPair = function(y) {
292 function renderRows(camera, scene, pixels, width, height, starty, stopy) {
294 var rays = camera.generateRayPair(y / height);
305 Camera.prototype.render = function(scene, pixels, width, height) {
399 var _camera = new Camera(createVector(-40, 40, 40), createVector(0, 0, 0), createVector(0, 1, 0));
  /frameworks/base/graphics/java/android/graphics/
Camera.java 20 public class Camera {
22 public Camera() {
  /frameworks/base/media/java/android/media/
CameraProfile.java 19 import android.hardware.Camera;
20 import android.hardware.Camera.CameraInfo;
28 * quality settings in the Camera application.
51 * used for the given quality level in the Camera application for
52 * the first back-facing camera on the device. If the device has no
53 * back-facing camera, this returns 0.
58 int numberOfCameras = Camera.getNumberOfCameras();
61 Camera.getCameraInfo(i, cameraInfo);
71 * used for the given quality level in the Camera application for
72 * the specified camera
    [all...]
CamcorderProfile.java 19 import android.hardware.Camera;
20 import android.hardware.Camera.CameraInfo;
125 * Returns the camcorder profile for the first back-facing camera on the
127 * camera, this returns null.
131 int numberOfCameras = Camera.getNumberOfCameras();
134 Camera.getCameraInfo(i, cameraInfo);
143 * Returns the camcorder profile for the given camera at the given
145 * @param cameraId the id for the camera
  /external/v8/benchmarks/
raytrace.js 68 // flog/camera.js
307 camera : null,
313 this.camera = new Flog.RayTracer.Camera(
574 Flog.RayTracer.Camera = Class.create();
576 Flog.RayTracer.Camera.prototype = {
690 var ray = scene.camera.getRay(xp, yp);
820 scene.camera.position,
845 scene.camera = new Flog.RayTracer.Camera(
    [all...]
  /external/webkit/SunSpider/tests/v8-v4/
v8-raytrace.js 63 // flog/camera.js
302 camera : null,
308 this.camera = new Flog.RayTracer.Camera(
569 Flog.RayTracer.Camera = Class.create();
571 Flog.RayTracer.Camera.prototype = {
685 var ray = scene.camera.getRay(xp, yp);
815 scene.camera.position,
840 scene.camera = new Flog.RayTracer.Camera(
    [all...]
  /frameworks/base/libs/camera/
Camera.cpp 19 #define LOG_TAG "Camera"
26 #include <camera/Camera.h>
27 #include <camera/ICameraService.h>
33 // client singleton for camera service binder interface
34 Mutex Camera::mLock;
35 sp<ICameraService> Camera::mCameraService;
36 sp<Camera::DeathNotifier> Camera::mDeathNotifier;
38 // establish binder interface to camera servic
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
CameraTest.java 18 import android.graphics.Camera;
27 @TestTargetClass(Camera.class)
29 private Camera mCamera;
34 mCamera = new Camera();
39 method = "Camera",
43 new Camera();
  /frameworks/base/include/camera/
Camera.h 21 #include <camera/ICameraClient.h>
42 * subsequent preview frames filled by the camera. This flag is recommended
54 * use case is the Camera application.
91 // axis of the camera sensor. So the users can see themselves as looking
101 // camera fatal errors
109 CAMERA_FACING_FRONT = 1 /* The camera faces to the user */
115 * The direction that the camera faces to. It should be
121 * The orientation of the camera image. The value is the angle that the
122 * camera image needs to be rotated clockwise so it shows correctly on
125 * For example, suppose a device has a naturally tall screen, but the camera
    [all...]
  /cts/tests/tests/app/src/android/app/cts/
SystemFeaturesTest.java 30 import android.hardware.Camera;
33 import android.hardware.Camera.CameraInfo;
34 import android.hardware.Camera.Parameters;
110 int numCameras = Camera.getNumberOfCameras();
124 int numCameras = Camera.getNumberOfCameras();
127 Camera.getCameraInfo(i, info);
141 Camera camera = null; local
143 camera = Camera.open()
    [all...]
  /packages/apps/Camera/src/com/android/camera/
CameraHolder.java 17 package com.android.camera;
19 import static com.android.camera.Util.Assert;
21 import android.hardware.Camera.CameraInfo;
22 import android.hardware.Camera.Parameters;
33 * The class is used to hold an {@code android.hardware.Camera} instance.
36 * in {@code android.hardware.Camera}. The difference is if {@code keep()} is
38 * android.hardware.Camera} instance for a while, so if {@code open()} is
40 * android.hardware.Camera}.
42 * <p>This is used in switching between {@code Camera} and {@code VideoCamera}
47 private android.hardware.Camera mCameraDevice
    [all...]
Util.java 17 package com.android.camera;
25 import android.hardware.Camera;
32 import com.android.camera.gallery.IImage;
33 import com.android.camera.R;
315 int cameraId, Camera camera) {
316 // See android.hardware.Camera.setCameraDisplayOrientation for
318 Camera.CameraInfo info = new Camera.CameraInfo();
319 Camera.getCameraInfo(cameraId, info)
    [all...]
Camera.java 17 package com.android.camera;
33 import android.hardware.Camera.CameraInfo;
34 import android.hardware.Camera.Parameters;
35 import android.hardware.Camera.PictureCallback;
36 import android.hardware.Camera.Size;
75 import com.android.camera.gallery.IImage;
76 import com.android.camera.gallery.IImageList;
77 import com.android.camera.ui.CameraHeadUpDisplay;
78 import com.android.camera.ui.GLRootView;
79 import com.android.camera.ui.HeadUpDisplay
    [all...]
  /cts/tests/tests/hardware/src/android/hardware/cts/
CameraTest.java 27 import android.hardware.Camera;
28 import android.hardware.Camera.CameraInfo;
29 import android.hardware.Camera.ErrorCallback;
30 import android.hardware.Camera.Parameters;
31 import android.hardware.Camera.PictureCallback;
32 import android.hardware.Camera.ShutterCallback;
33 import android.hardware.Camera.Size;
58 @TestTargetClass(Camera.class)
90 Camera mCamera;
94 if (LOGV) Log.v(TAG, "Camera Constructor")
1392 Camera camera = null; local
    [all...]
  /frameworks/base/core/java/android/hardware/
Camera.java 35 * The Camera class is used to set image capture settings, start/stop preview,
37 * client for the Camera service, which manages the actual camera hardware.
39 * <p>To access the device camera, you must declare the
40 * {@link android.Manifest.permission#CAMERA} permission in your Android
43 * manifest element to declare camera features used by your application.
44 * For example, if you use the camera and auto-focus feature, your Manifest
46 * <pre> &lt;uses-permission android:name="android.permission.CAMERA" />
47 * &lt;uses-feature android:name="android.hardware.camera" />
48 * &lt;uses-feature android:name="android.hardware.camera.autofocus" /></pre
    [all...]
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 

Completed in 240 milliseconds