/external/compiler-rt/lib/lsan/ |
H A D | lsan_flags.inc | 23 int, resolution, 0,
|
/external/doclava/src/com/google/doclava/ |
H A D | Resolvable.java | 33 * @param resolution The {@link Resolution} to resolve at a later time. 35 public void addResolution(Resolution resolution); argument
|
H A D | AnnotationValueInfo.java | 90 public void addResolution(Resolution resolution) { argument 95 mResolutions.add(resolution); 110 for (Resolution resolution : resolutions) { 113 resolution.getInfoBuilder()); 117 mResolutions.add(resolution); 119 } else if ("element".equals(resolution.getVariable())) { 122 if (resolution.getValue().equals(m.name()) ||
|
H A D | AnnotationInstanceInfo.java | 86 public void addResolution(Resolution resolution) { argument 91 mResolutions.add(resolution); 106 for (Resolution resolution : resolutions) { 108 InfoBuilder.resolveQualifiedName(resolution.getValue(), qualifiedClassName, 109 resolution.getInfoBuilder()); 113 mResolutions.add(resolution); 115 } else if ("annotationTypeName".equals(resolution.getVariable())) {
|
/external/v8/test/webkit/fast/js/kde/ |
H A D | 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/autotest/server/site_tests/display_NoEdid/ |
H A D | 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/ImageMagick/Magick++/tests/ |
H A D | 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/sonivox/arm-wt-22k/lib_src/ |
H A D | eas_tcdata.h | 50 EAS_I32 tick; /* tick based on current tempo and resolution */ 58 EAS_I8 resolution; /* resolution from file */ member in struct:__anon16375
|
/external/autotest/server/site_tests/display_HotPlugAtBoot/ |
H A D | display_HotPlugAtBoot.py | 55 resolution = display_facade.get_external_resolution() 57 expected_connector, resolution) 93 resolution, test_mirrored, errors)
|
/external/autotest/client/site_tests/video_WebRtcCamera/ |
H A D | 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/ |
H A D | 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/ImageMagick/coders/ |
H A D | 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 [all...] |
H A D | xps.c | 184 if ((image->resolution.x == 0.0) || (image->resolution.y == 0.0)) 193 image->resolution.x=geometry_info.rho; 194 image->resolution.y=geometry_info.sigma; 196 image->resolution.y=image->resolution.x; 282 image->resolution.x,image->resolution.y); 287 page.width=(size_t) floor(page.width*image->resolution.y/delta.x+0.5); 288 page.height=(size_t) floor(page.height*image->resolution [all...] |
H A D | mvg.c | 190 draw_info->affine.sx=image->resolution.x == 0.0 ? 1.0 : image->resolution.x/ 192 draw_info->affine.sy=image->resolution.y == 0.0 ? 1.0 : image->resolution.y/
|
/external/v8/src/js/ |
H A D | promise.js | 242 function ResolvePromise(promise, resolution) { 243 if (resolution === promise) { 244 return RejectPromise(promise, MakeTypeError(kPromiseCyclic, resolution)); 246 if (IS_RECEIVER(resolution)) { 249 var then = resolution.then; 255 // rejected, shortcircuit the resolution procedure by directly 257 if (IsPromise(resolution) && then === PromiseThen) { 258 var thenableState = GET_PRIVATE(resolution, promiseStateSymbol); 262 var thenableValue = GET_PRIVATE(resolution, promiseResultSymbol); 268 var thenableValue = GET_PRIVATE(resolution, promiseResultSymbo [all...] |
/external/autotest/client/cros/multimedia/ |
H A D | 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 els [all...] |
/external/autotest/server/cros/multimedia/ |
H A D | display_facade_adapter.py | 88 def load_calibration_image(self, resolution): 91 @param resolution: A tuple (width, height) of resolution. 94 return self._display_proxy.load_calibration_image(resolution) 121 tab_descriptor = load_calibration_image(resolution) 248 """Gets the resolution of the external screen. 250 @return The resolution tuple (width, height) or None if no external 253 resolution = self._display_proxy.get_external_resolution() 254 return tuple(resolution) if resolution els [all...] |
/external/autotest/server/site_tests/display_EdidStress/ |
H A D | display_EdidStress.py | 74 resolution = utils.wait_for_value_changed( 77 if resolution is None: 79 if screen_test.test_resolution(resolution):
|
/external/autotest/server/site_tests/display_HDCPScreen/ |
H A D | display_HDCPScreen.py | 64 resolution = display_facade.get_external_resolution() 65 logging.info('Detected resolution on CrOS: %r', resolution) 107 resolution, test_mirrored, errors)
|
/external/autotest/server/site_tests/display_HotPlugAtSuspend/ |
H A D | display_HotPlugAtSuspend.py | 58 resolution = display_facade.get_external_resolution() 60 expected_connector, resolution) 127 resolution, test_mirrored, errors)
|
/external/chromium-trace/catapult/experimental/heatmap/ |
H A D | input.js | 26 self.resolution = self.h / this.value; 43 var bucket = Math.floor(mapRange(y, this.h, 0, 0, this.resolution)); 44 return constrain(bucket, 0, this.resolution - 1);
|
H A D | calculate.js | 80 var bucket = Math.floor(mapRange(value, this.min, this.max, 0, this.resolution)); 81 return constrain(bucket, 0, this.resolution - 1);
|
/external/fonttools/Lib/fontTools/ttLib/tables/ |
H A D | sbixBitmapSet.py | 11 resolution: H # 00 48 24 def __init__(self, rawdata=None, size=0, resolution=72): 27 self.resolution = resolution 106 xmlWriter.simpletag("resolution", value=self.resolution) 117 if name in ["size", "resolution"]:
|
/external/fonttools/Tools/fontTools/ttLib/tables/ |
H A D | sbixBitmapSet.py | 11 resolution: H # 00 48 24 def __init__(self, rawdata=None, size=0, resolution=72): 27 self.resolution = resolution 106 xmlWriter.simpletag("resolution", value=self.resolution) 117 if name in ["size", "resolution"]:
|
/external/autotest/server/site_tests/display_SwitchMode/ |
H A D | display_SwitchMode.py | 20 and mirrored modes, and checks resolution and static test image. 31 resolution = self.display_facade.get_external_resolution() 37 resolution, test_mirrored, self.errors)
|