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

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-plugin/
plugin-12.d 2 .*: symbol `func' definition: 0, visibility: 0, resolution: 2
3 .*: symbol `func1' definition: 0, visibility: 1, resolution: 3
4 .*: symbol `func2' definition: 0, visibility: 2, resolution: 3
5 .*: symbol `func3' definition: 0, visibility: 3, resolution: 3
  /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.
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...]
AnnotationInstanceInfo.java 28 private ArrayList<Resolution> mResolutions;
86 public void addResolution(Resolution resolution) {
88 mResolutions = new ArrayList<Resolution>();
91 mResolutions.add(resolution);
96 for (Resolution r : mResolutions) {
102 ArrayList<Resolution> resolutions = mResolutions;
103 mResolutions = new ArrayList<Resolution>();
106 for (Resolution resolution : resolutions)
    [all...]
  /ndk/tests/device/issue39680-chrono-resolution/jni/
Android.mk 4 LOCAL_MODULE := issue39680-chrono-resolution
5 LOCAL_SRC_FILES := issue39680-chrono-resolution.cpp
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic6x/
reloc-bad-1.s 2 # Just one test so the resolution-time error isn't suppressed by other
  /hardware/bsp/intel/peripheral/libupm/examples/java/
MQ2Sample.java 27 private static final short resolution = 5; field in class:MQ2Sample
55 sensor.printGraph(ctx, resolution);
MQ5Sample.java 26 private static final short resolution = 7; field in class:MQ5Sample
54 sensor.printGraph(ctx, resolution);
  /external/ImageMagick/Magick++/tests/
color.cpp 114 double resolution = 1.0/QuantumRange; local
115 if ( resolution < 0.0000001 )
116 resolution = 0.0000001;
117 double max_error = resolution + MagickEpsilon;
119 for( double value = 0; value < 1.0 + MagickEpsilon; value += resolution )
  /external/autotest/server/site_tests/display_NoEdid/
display_NoEdid.py 55 resolution = display_facade.get_external_resolution()
56 if resolution not in self.STANDARD_MODE_RESOLUTIONS:
58 resolution)
64 resolution, test_mirrored, errors)
  /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:__anon22679
  /hardware/bsp/intel/peripheral/libupm/src/gas/
gas.h 98 virtual void printGraph (thresholdContext* ctx, uint8_t resolution);
gas.cxx 93 Gas::printGraph (thresholdContext* ctx, uint8_t resolution) {
95 for (int i = 0; i < ctx->runningAverage / resolution; i++)
  /device/htc/flounder/sensor_hub/libsensors/
sensors.cpp 50 .resolution = CONVERT_A,
67 .resolution = CONVERT_M,
84 .resolution = CONVERT_GYRO,
101 .resolution = 1.0f,
118 .resolution = 1.0f,
135 .resolution = 0.1f,
152 .resolution = 0.0001f,
169 .resolution = 0.01,
186 .resolution = 0.01,
203 .resolution = CONVERT_M
    [all...]
  /hardware/intel/common/utils/media_resource_manager/arbitrator/
MediaResourceArbitrator.cpp 73 /* in */ ResolutionType resolution,
89 resource.resolution = resolution;
92 ALOGV("Adding resource: codecType = %d, isEncoder = %d, isSecured = %d, resolution = %d, frameRate = %d",
93 codecType, isEncoder, isSecured, resolution, frameRate);
97 if (resolution > mLivingEncodersTable.maxResolution) {
98 mLivingEncodersTable.maxResolution = resolution;
105 if (resolution > mLivingDecodersTable.maxResolution) {
106 mLivingDecodersTable.maxResolution = resolution;
132 ResolutionType resolution,
    [all...]
MediaResourceArbitrator.h 71 ResolutionType resolution; member in struct:_CodecInfo
111 Resolution and frame rate must be provided.
113 is constructed when the resolution and frame rate are
124 /* in */ ResolutionType resolution,
131 ResolutionType resolution,
  /hardware/intel/common/utils/media_resource_manager/omx_adaptor/
OMX_adaptor.cpp 164 ResolutionType resolution; local
168 resolution = Resolution_480;
170 resolution = Resolution_720;
172 resolution = Resolution_1080;
174 resolution = Resolution_2K;
176 resolution = Resolution_4K;
178 ALOGE("resolution > 4K is not supported!");
180 codecInfo.resolution = resolution;
201 codecInfo.resolution,
    [all...]
  /frameworks/data-binding/developmentPlugins/localizeMavenPlugin/src/main/groovy/android/databinding/
MavenDependencyCollectorTask.groovy 30 import org.eclipse.aether.resolution.ArtifactDescriptorRequest
31 import org.eclipse.aether.resolution.ArtifactDescriptorResult
32 import org.eclipse.aether.resolution.ArtifactRequest
  /external/opencv3/samples/android/tutorial-3-cameracontrol/src/org/opencv/samples/tutorial3/
Tutorial3View.java 46 public void setResolution(Size resolution) {
48 mMaxHeight = resolution.height;
49 mMaxWidth = resolution.width;
  /external/autotest/client/site_tests/video_WebRtcCamera/
video_WebRtcCamera.py 54 # Check if 720p resolution supported.
116 for resolution in results:
117 item = results[resolution]
118 if (item['cameraErrors'] and resolution == '1280,720'
123 output_resolution = re.sub(',', 'x', resolution)
124 logging.error('Frame Stats is empty for resolution: %s',
  /external/autotest/server/site_tests/display_HotPlugNoisy/
display_HotPlugNoisy.py 67 resolution = display_facade.get_external_resolution()
69 expected_connector, resolution)
92 # Wait for resolution change to make sure the resolution
95 # If the resolution doesn't change, then we are
108 resolution, test_mirrored)
122 resolution, test_mirrored, errors)
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/shadows/system/classical/
MainShader.java 44 public final static Uniform resolution = new Uniform("u_resolution"); field in class:MainShader.Inputs
54 public final static Setter resolution = new GlobalSetter() { field in class:MainShader.Setters
105 register(Inputs.resolution, Setters.resolution);
  /external/v8/test/webkit/fast/js/kde/
encode_decode_uri.js 27 var resolution = 251; // set to 1 for 100% coverage variable
79 for (var charcode = 1; charcode < 0xD7FF; charcode += resolution)
82 for (var charcode = 0xE001; charcode < 0xFFFD; charcode += resolution)
85 for (var charcode = 0xDC01; charcode < 0xDFFF; charcode += resolution)
88 for (var charcode = 0xD801; charcode < 0xDBFF; charcode += resolution)
91 for (var charcode = 0xDC01; charcode < 0xDFFF; charcode += resolution)
94 for (var charcode = 1; charcode < 0xDBFF; charcode += resolution)
97 for (var charcode = 0xE001; charcode < 0xFFFD; charcode += resolution)
  /external/ImageMagick/coders/
emf.c 493 if (image->resolution.y > 0)
495 y_resolution=image->resolution.y;
499 if (image->resolution.x > 0)
501 x_resolution=image->resolution.x;
539 if (image->resolution.x != 0.0)
540 image->columns=(size_t) floor((image->columns*image->resolution.x)+
542 if (image->resolution.y != 0.0)
543 image->rows=(size_t) floor((image->rows*image->resolution.y)+0.5);
550 if (image->resolution.x != 0.0)
551 image->columns=(size_t) floor(((image->columns*image->resolution.x)
    [all...]
  /external/autotest/client/cros/multimedia/
display_facade_adapter.py 80 def load_calibration_image(self, resolution):
83 @param resolution: A tuple (width, height) of resolution.
86 return self._display_component.load_calibration_image(resolution)
113 tab_descriptor = load_calibration_image(resolution)
236 """Gets the resolution of the external screen.
238 @return The resolution tuple (width, height) or None if no external
241 resolution = self._display_component.get_external_resolution()
242 return tuple(resolution) if resolution else Non
    [all...]

Completed in 799 milliseconds

1 2 3 4 5 6 7 8 91011>>