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

1 2 3 4 5 6

  /external/doclava/src/com/google/doclava/
Resolvable.java 23 * <p>This interface provides a standard means of saving {@link Resolution}s that we will
25 * {@link addResolution(Resolution)} method.
32 * Adds a {@link Resolution} that will be resolved at a later time.
33 * @param resolution The {@link Resolution} to resolve at a later time.
35 public void addResolution(Resolution resolution);
38 * Resolves the {@link Resolution}s contained in this {@link Resolvable}.
45 * Prints the list of {@link Resolution}s that will be resolved at a later time.
AnnotationInstanceInfo.java 26 private ArrayList<Resolution> mResolutions;
84 public void addResolution(Resolution resolution) {
86 mResolutions = new ArrayList<Resolution>();
89 mResolutions.add(resolution);
94 for (Resolution r : mResolutions) {
100 ArrayList<Resolution> resolutions = mResolutions;
101 mResolutions = new ArrayList<Resolution>();
104 for (Resolution resolution : resolutions)
    [all...]
AnnotationValueInfo.java 25 private ArrayList<Resolution> mResolutions;
90 public void addResolution(Resolution resolution) {
92 mResolutions = new ArrayList<Resolution>();
95 mResolutions.add(resolution);
100 for (Resolution r : mResolutions) {
106 ArrayList<Resolution> resolutions = mResolutions;
107 mResolutions = new ArrayList<Resolution>();
110 for (Resolution resolution : resolutions)
    [all...]
TypeInfo.java 360 public void addResolution(Resolution resolution) {
362 mResolutions = new ArrayList<Resolution>();
365 mResolutions.add(resolution);
374 for (Resolution r : mResolutions) {
380 ArrayList<Resolution> resolutions = mResolutions;
381 mResolutions = new ArrayList<Resolution>();
384 for (Resolution resolution : resolutions) {
385 if ("class".equals(resolution.getVariable()))
    [all...]
  /ndk/tests/device/issue39680-chrono-resolution/jni/
Android.mk 4 LOCAL_MODULE := issue39680-chrono-resolution
5 LOCAL_SRC_FILES := issue39680-chrono-resolution.cpp
  /external/sonivox/arm-wt-22k/lib_src/
eas_tcdata.h 50 EAS_I32 tick; /* tick based on current tempo and resolution */
58 EAS_I8 resolution; /* resolution from file */ member in struct:__anon15316
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
timer.h 37 #define SNDRV_TIMER_HW_SLAVE 0x00000004 /* only slave timer (variable resolution) */
58 unsigned long resolution; /* average timer resolution for one tick in nsec */ member in struct:snd_timer_hardware
59 unsigned long resolution_min; /* minimal resolution */
60 unsigned long resolution_max; /* maximal resolution */
102 unsigned long ticks, unsigned long resolution);
106 unsigned long resolution);
111 unsigned long resolution; /* current resolution for tasklet */ member in struct:snd_timer_instance
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
timer.h 37 #define SNDRV_TIMER_HW_SLAVE 0x00000004 /* only slave timer (variable resolution) */
58 unsigned long resolution; /* average timer resolution for one tick in nsec */ member in struct:snd_timer_hardware
59 unsigned long resolution_min; /* minimal resolution */
60 unsigned long resolution_max; /* maximal resolution */
102 unsigned long ticks, unsigned long resolution);
106 unsigned long resolution);
111 unsigned long resolution; /* current resolution for tasklet */ member in struct:snd_timer_instance
  /hardware/invensense/libsensors/
MPLSensor.cpp     [all...]
  /external/chromium/net/data/proxy_resolver_v8_unittest/
dns_fail.js 1 // This script should be run in an environment where all DNS resolution are
  /frameworks/base/include/androidfw/
InputDevice.h 67 float resolution; member in struct:android::InputDeviceInfo::MotionRange
87 float min, float max, float flat, float fuzz, float resolution);
  /hardware/invensense/libsensors_iio/
CompassSensor.IIO.9150.cpp 290 need to adopt AK8963's resolution here */
291 // list->resolution = COMPASS_MPU9150_RESOLUTION;
292 list->resolution = COMPASS_AKM8963_RESOLUTION;
300 list->resolution = COMPASS_AKM8975_RESOLUTION;
307 list->resolution = COMPASS_YAS53x_RESOLUTION;
314 list->resolution = COMPASS_AMI306_RESOLUTION;
325 list->resolution = COMPASS_AKM8975_RESOLUTION;
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
LocalVideo.java 68 VideoColumns.RESOLUTION,
117 private void parseResolution(String resolution) {
118 if (resolution == null) return;
119 int m = resolution.indexOf('x');
122 int w = Integer.parseInt(resolution.substring(0, m));
123 int h = Integer.parseInt(resolution.substring(m + 1));
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/build/
AaptQuickFixTest.java 122 // Test marker resolution.
129 // Found the target marker. Now check the marker resolution of it.
134 IMarkerResolution resolution = resolutions[0]; local
135 assertNotNull(resolution);
136 assertTrue(resolution.getLabel().contains("Create resource"));
141 //resolution.run(marker);
232 // Test marker resolution.
237 // Found the target marker. Now check the marker resolution of it.
242 IMarkerResolution resolution = resolutions[0]; local
243 assertNotNull(resolution);
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/templates/headless-build/
build.properties 169 #this property indicates whether the resolution should be done in development mode (i.e. ignore multiple bundles with singletons)
170 resolution.devMode=false
  /external/webkit/LayoutTests/fast/url/script-tests/
relative-unix.js 1 description("Test resolution of relative UNIX-like URLs.");
  /frameworks/native/services/sensorservice/
RotationVectorSensor.cpp 71 hwSensor.resolution = 1.0f / (1<<24);
120 hwSensor.resolution = 1.0f / (1<<24);
LinearAccelerationSensor.cpp 70 hwSensor.resolution = gsensor.getResolution();
CorrectedGyroSensor.cpp 77 hwSensor.resolution = mGyro.getResolution();
GravitySensor.cpp 85 hwSensor.resolution = mAccelerometer.getResolution();
  /sdk/eclipse/buildConfig/
build.properties 146 #this property indicates whether the resolution should be done in development mode (i.e. ignore multiple bundles with singletons)
147 resolution.devMode=false
  /external/eigen/demos/mandelbrot/
mandelbrot.cpp 114 double resolution = widget->xradius*2/widget->width(); local
116 if(resolution < 1e-4f) max_iter += 128 * ( - 4 - std::log10(resolution));
119 single_precision = resolution > 1e-7f;
153 setWindowTitle(QString("resolution ")+QString::number(xradius*2/width(), 'e', 2)
168 setWindowTitle(QString("recomputing at 1/%1 resolution...").arg(draft));
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/
bugTools.jar 
  /frameworks/base/libs/androidfw/
InputDevice.cpp 175 float flat, float fuzz, float resolution) {
176 MotionRange range = { axis, source, min, max, flat, fuzz, resolution };
  /frameworks/base/core/java/android/view/
InputDevice.java 585 float min, float max, float flat, float fuzz, float resolution) {
586 mMotionRanges.add(new MotionRange(axis, source, min, max, flat, fuzz, resolution));
629 float resolution) {
636 mResolution = resolution;
717 * Gets the resolution for input device measurements with respect to this axis.
718 * @return The resolution in units per millimeter, or units per radian for rotational axes.
801 description.append(" resolution=").append(range.mResolution);

Completed in 4562 milliseconds

1 2 3 4 5 6