Home
last modified time | relevance | path

Searched refs:resolution (Results 1 – 25 of 1347) sorted by relevance

12345678910>>...54

/third_party/typescript/src/compiler/
DresolutionCache.ts144 (resolution: T) => R | undefined;
221 function getResolvedModule(resolution: CachedResolvedModuleWithFailedLookupLocations) {
222 return resolution.resolvedModule;
225 …function getResolvedTypeReferenceDirective(resolution: CachedResolvedTypeReferenceDirectiveWithFai…
226 return resolution.resolvedTypeReferenceDirective;
378 let resolution = resolutionsInFile.get(name);
381 unmatchedRedirects || !resolution || resolution.isInvalidated ||
383 …iveUnresolvedImport && !isExternalModuleNameRelative(name) && shouldRetryResolution(resolution))) {
384 const existingResolution = resolution;
387 resolution = resolutionInDirectory;
[all …]
/third_party/mindspore/tests/ut/data/mindrecord/testCBGData/data/
Dimage_raw_meta.data1 {"entity_instances":[1, 2, 3], "size": 89817, "resolution": {"width": 194, "heigth": 190}, "type": …
2 {"entity_instances":[1, 2, 3], "size": 45407, "resolution": {"width": 390, "heigth": 412}, "type": …
3 {"entity_instances":[1, 2, 3], "size": 47167, "resolution": {"width": 148, "heigth": 116}, "type": …
4 {"entity_instances":[1, 2, 3], "resolution": {"width": 331, "heigth": 472}, "type": "tif", "dataset…
5 {"entity_instances":[1, 2, 3], "size": 22945, "resolution": {"width": 58, "heigth": 383}, "type": "…
6 {"entity_instances":[1, 2, 3], "size": 13411, "resolution": {"width": 75, "heigth": 395}, "type": "…
7 {"entity_instances":[1, 2, 3], "size": 62252, "resolution": {"width": 274, "heigth": 89}, "type": "…
8 {"entity_instances":[1, 2, 3], "size": 35123, "resolution": {"width": 81, "heigth": 243}, "type": 2…
9 {"entity_instances":[1, 2, 3], "size": "30936", "resolution": {"width": 342, "heigth": 480}, "type"…
10 {"entity_instances":[1, 2, 3], "size": 54537, "resolution": {"width": 315, "heigth": 78}, "type": "…
[all …]
/third_party/cJSON/tests/
Dreadme_examples.c55 cJSON *resolution = NULL; in create_monitor() local
84 resolution = cJSON_CreateObject(); in create_monitor()
85 if (resolution == NULL) in create_monitor()
89 cJSON_AddItemToArray(resolutions, resolution); in create_monitor()
96 cJSON_AddItemToObject(resolution, "width", width); in create_monitor()
103 cJSON_AddItemToObject(resolution, "height", height); in create_monitor()
143 cJSON *resolution = cJSON_CreateObject(); in create_monitor_with_helpers() local
145 if (cJSON_AddNumberToObject(resolution, "width", resolution_numbers[index][0]) == NULL) in create_monitor_with_helpers()
150 if(cJSON_AddNumberToObject(resolution, "height", resolution_numbers[index][1]) == NULL) in create_monitor_with_helpers()
155 cJSON_AddItemToArray(resolutions, resolution); in create_monitor_with_helpers()
[all …]
/third_party/libinput/doc/user/
Dnormalization-of-relative-motion.rst8 mickey is in device-specific units that depend on the resolution
9 of the sensor. Most optical mice use sensors with 1000dpi resolution, but
19 resolution of 1000dpi and higher, motion events are normalized to a default
40 Touchpads may have a different resolution for the horizontal and vertical
41 axis. Interpreting coordinates from the touchpad without taking resolution
44 libinput scales unaccelerated touchpad motion to the resolution of the
62 Devices usually do not advertise their resolution and libinput relies on
68 used to measure a device's resolution.
70 The format of the property for single-resolution mice is: ::
72 MOUSE_DPI=resolution@frequency
[all …]
/third_party/typescript/tests/baselines/reference/
DqualifiedName_entity-name-resolution-does-not-affect-class-heritage.symbols1 === tests/cases/compiler/qualifiedName_entity-name-resolution-does-not-affect-class-heritage.ts ===
3 >Alpha : Symbol(Alpha, Decl(qualifiedName_entity-name-resolution-does-not-affect-class-heritage.ts,…
6 >x : Symbol(x, Decl(qualifiedName_entity-name-resolution-does-not-affect-class-heritage.ts, 1, 14))
10 >Beta : Symbol(Beta, Decl(qualifiedName_entity-name-resolution-does-not-affect-class-heritage.ts, 2…
11 >Alpha.x : Symbol(Alpha.x, Decl(qualifiedName_entity-name-resolution-does-not-affect-class-heritage…
12 >Alpha : Symbol(Alpha, Decl(qualifiedName_entity-name-resolution-does-not-affect-class-heritage.ts,…
13 >x : Symbol(Alpha.x, Decl(qualifiedName_entity-name-resolution-does-not-affect-class-heritage.ts, 1…
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/geometry/
DvktGeometryBasicClass.cpp76 const IVec2 resolution = IVec2(TEST_CANVAS_SIZE, TEST_CANVAS_SIZE); in iterate() local
82 …makeImageCreateInfo(resolution, colorFormat, VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT | VK_IMAGE_USAGE_… in iterate()
90 …makeFramebuffer(vk, device, *renderPass, *colorAttachmentView, resolution.x(), resolution.y(), 1u)… in iterate()
101 .setRenderSize (resolution) in iterate()
111 …const VkDeviceSize colorBufferSizeBytes = resolution.x()*resolution.y() * tcu::getPixelSize(map… in iterate()
152 makeExtent2D(resolution.x(), resolution.y()), in iterate()
171 copyImageToBuffer(vk, *cmdBuffer, *colorAttachmentImage, *colorBuffer, resolution); in iterate()
180 …stPixelBufferAccess imagePixelAccess(mapVkFormat(colorFormat), resolution.x(), resolution.y(), 1, … in iterate()
/third_party/libinput/tools/
Dlibinput-measure-touchpad-size.py56 if not x.resolution or not y.resolution:
58 x.resolution = 1
59 y.resolution = 1
63 self.width = self.xrange / x.resolution
64 self.height = self.yrange / y.resolution
73 …self.rows = int(self.columns * (self.yrange // y.resolution) // (self.xrange // x.resolution) / 2.…
271 touchpad.x.resolution = round((touchpad.x.maximum - touchpad.x.minimum) / args.size[0])
272 touchpad.y.resolution = round((touchpad.y.maximum - touchpad.y.minimum) / args.size[1])
275 touchpad.x.resolution, touchpad.y.resolution))
281 deviation = 1.5 * touchpad.x.resolution # 1.5 mm rounding on each side
[all …]
/third_party/grpc/test/cpp/qps/
Djson_run_localhost_scenarios.bzl3resolution": 0.01, "max_possible": 60000000000.0}, "client_type": "ASYNC_CLIENT", "payload_config"…
Dqps_json_driver_scenarios.bzl3resolution": 0.01, "max_possible": 60000000000.0}, "client_type": "SYNC_CLIENT", "payload_config":…
/third_party/node/deps/npm/node_modules/npm-audit-report/reporters/
Ddetail.js104 action.resolves.forEach((resolution) => {
105 const advisory = data.advisories[resolution.id]
118 … {'Dependency of': `${resolution.path.split('>')[0]} ${resolution.dev ? '[dev]' : ''}`},
119 … {'Path': `${resolution.path.split('>').join(Utils.color(' > ', 'grey', config.withColor))}`},
145 action.resolves.forEach((resolution) => {
146 const advisory = data.advisories[resolution.id]
161 … {'Dependency of': `${resolution.path.split('>')[0]} ${resolution.dev ? '[dev]' : ''}`},
162 … {'Path': `${resolution.path.split('>').join(Utils.color(' > ', 'grey', config.withColor))}`},
Dparseable.js29 action.resolves.forEach((resolution) => {
30 const advisory = data.advisories[resolution.id]
36 l.path = resolution.path
44 action.resolves.forEach((resolution) => {
45 const advisory = data.advisories[resolution.id]
52 l.path = resolution.path
/third_party/gstreamer/gstplugins_good/tests/examples/qt/qmlsink-multisink/videoitem/
Dvideoitem.h15 Q_PROPERTY(QSize resolution READ resolution NOTIFY resolutionChanged)
40 QSize resolution() const;
50 void resolutionChanged(const QSize &resolution);
61 void setResolution(const QSize &resolution);
/third_party/grpc/src/php/tests/qps/
Dhistogram.php22 private $resolution; variable in Histogram
36 public function __construct($resolution, $max_possible) { argument
37 $this->resolution = $resolution;
41 $this->multiplier = 1+$resolution;
/third_party/mesa3d/bin/pick/
Dcore.py44 resolution: typing.Optional[int]
120 resolution: Resolution = attr.ib(Resolution.UNRESOLVED) variable in Commit
128 if self.resolution is not None:
129 d['resolution'] = self.resolution.value
138 c.resolution = Resolution(data['resolution'])
163 self.resolution = Resolution.MERGED
183 self.resolution = Resolution.DENOMINATED
191 self.resolution = Resolution.BACKPORTED
199 self.resolution = Resolution.MERGED
334 oldc.resolution = Resolution.DENOMINATED
[all …]
/third_party/typescript/src/testRunner/unittests/
DmoduleResolution.ts96 …const resolution = nodeModuleNameResolver(moduleName, containingFile.name, {}, createModuleResolut… constant
97 … checkResolvedModule(resolution.resolvedModule, createResolvedModule(moduleFile.name));
110 assert.deepEqual(resolution.failedLookupLocations, failedLookupLocations);
139 …const resolution = nodeModuleNameResolver(moduleName, containingFile.name, {}, createModuleResolut… constant
140 … checkResolvedModule(resolution.resolvedModule, createResolvedModule(moduleFile.name));
143 … assert.equal(resolution.failedLookupLocations.length, supportedTSExtensions.length - 1);
166 …const resolution = nodeModuleNameResolver("b", containingFile.name, {}, createModuleResolutionHost… constant
168 …checkResolvedModule(resolution.resolvedModule, createResolvedModule(indexPath, /*isExternalLibrary…
187 …const resolution = nodeModuleNameResolver("./foo", containingFile.name, {}, createModuleResolution… constant
188 … checkResolvedModuleWithFailedLookupLocations(resolution, createResolvedModule(indexFile.name), [
[all …]
/third_party/boost/libs/serialization/performance/xml/
Dhigh_resolution_timer.hpp186 timespec resolution; in elapsed_min() local
187 if (-1 == clock_getres(CLOCK_REALTIME, &resolution)) in elapsed_min()
189 return double(resolution.tv_sec + resolution.tv_nsec * 1e-9); in elapsed_min()
289 timespec resolution; in elapsed_min() local
290 if (-1 == clock_getres(CLOCK_REALTIME, &resolution)) in elapsed_min()
292 return double(resolution.tv_sec + resolution.tv_nsec * 1e-9); in elapsed_min()
/third_party/boost/libs/spirit/workbench/
Dhigh_resolution_timer.hpp182 timespec resolution; in elapsed_min() local
183 if (-1 == clock_getres(CLOCK_REALTIME, &resolution)) in elapsed_min()
185 return double(resolution.tv_sec + resolution.tv_nsec * 1e-9); in elapsed_min()
282 timespec resolution; in elapsed_min() local
283 if (-1 == clock_getres(CLOCK_REALTIME, &resolution)) in elapsed_min()
285 return double(resolution.tv_sec + resolution.tv_nsec * 1e-9); in elapsed_min()
/third_party/selinux/secilc/test/
Dname_resolution_test.cil25 ;; Check global resolution
31 ;; Check block and sub-block resolution
50 ;; Check macro arg resolution
58 ;; Check resolution for a macro with a parent decl
68 ;; Check resolution for a macro with a caller decl
82 ;; Check resolution for blockinherits with type in inheriting block
96 ;; Check resolution for blockinherits with no type in inheriting block
110 ;; Check for proper resolution of t
/third_party/skia/third_party/externals/tint/test/vk-gl-cts/graphicsfuzz/cov-sum-uniform-vector-components-round/
D0-opt.wgsl10 resolution : vec2<f32>;
31 let x_39 : f32 = x_8.resolution.x;
33 let x_44 : f32 = x_8.resolution.x;
34 let x_49 : f32 = x_8.resolution.y;
/third_party/grpc/src/php/tests/qps/generated_code/Grpc/Testing/
DHistogramParams.php23 protected $resolution = 0.0; variable in Grpc\\Testing\\HistogramParams
56 return $this->resolution;
69 $this->resolution = $var;
/third_party/typescript/tests/baselines/reference/tsbuild/moduleResolution/
Dresolves-specifier-in-output-declaration-file-from-referenced-project-correctly-with-preserveSymlinks.js47 Module resolution kind is not specified, using 'NodeJs'.
51 File '/user/username/projects/myproject/packages/pkg2/const.ts' exist - use it as a name resolution
58 Module resolution kind is not specified, using 'NodeJs'.
71 …me/projects/myproject/node_modules/pkg2/build/index.js' exist - use it as a name resolution result.
81 …/projects/myproject/node_modules/pkg2/build/index.d.ts' exist - use it as a name resolution result.
85 Module resolution kind is not specified, using 'NodeJs'.
89 File '/user/username/projects/myproject/packages/pkg2/const.ts' exist - use it as a name resolution
Dresolves-specifier-in-output-declaration-file-from-referenced-project-correctly.js47 Module resolution kind is not specified, using 'NodeJs'.
51 File '/user/username/projects/myproject/packages/pkg2/const.ts' exist - use it as a name resolution
58 Module resolution kind is not specified, using 'NodeJs'.
71 …me/projects/myproject/node_modules/pkg2/build/index.js' exist - use it as a name resolution result.
81 …/projects/myproject/node_modules/pkg2/build/index.d.ts' exist - use it as a name resolution result.
86 Module resolution kind is not specified, using 'NodeJs'.
90 File '/user/username/projects/myproject/packages/pkg2/const.ts' exist - use it as a name resolution
/third_party/ffmpeg/libavcodec/
Dphotocd.c49 int resolution; member
320 s->resolution = 0; in photocd_decode_frame()
322 s->resolution = 2; in photocd_decode_frame()
324 s->resolution = av_clip(4 - s->lowres, 0, 4); in photocd_decode_frame()
326 ret = ff_set_dimensions(avctx, img_info[s->resolution].width, img_info[s->resolution].height); in photocd_decode_frame()
338 if (s->resolution < 3) { in photocd_decode_frame()
346 bytestream2_seek(gb, img_info[s->resolution].start, SEEK_SET); in photocd_decode_frame()
372 if (s->resolution == 4) { in photocd_decode_frame()
387 if (decode_huff(avctx, p, s->resolution, 3) < 0) in photocd_decode_frame()
390 if (s->resolution == 4) { in photocd_decode_frame()
/third_party/grpc/src/csharp/Grpc.IntegrationTesting/
DHistogram.cs52 public Histogram(double resolution, double maxPossible) in Histogram() argument
54 GrpcPreconditions.CheckArgument(resolution > 0); in Histogram()
57 this.multiplier = 1.0 + resolution; in Histogram()
58 this.oneOnLogMultiplier = 1.0 / Math.Log(1.0 + resolution); in Histogram()
/third_party/grpc/src/ruby/qps/
Dhistogram.rb31 def initialize(resolution, max_possible) argument
33 @resolution=resolution
37 @multiplier=1+resolution

12345678910>>...54