Home
last modified time | relevance | path

Searched refs:has (Results 1 - 25 of 580) sorted by relevance

12345678910>>...24

/third_party/skia/src/gpu/gl/
H A DGrGLInterfaceAutogen.cpp210 fExtensions.has("GL_ARB_vertex_array_object") || in validate()
211 fExtensions.has("GL_APPLE_vertex_array_object"))) || in validate()
214 fExtensions.has("GL_OES_vertex_array_object"))) || in validate()
217 fExtensions.has("GL_OES_vertex_array_object") || in validate()
218 fExtensions.has("OES_vertex_array_object")))) { in validate()
228 fExtensions.has("GL_ARB_tessellation_shader"))) || in validate()
231 fExtensions.has("GL_OES_tessellation_shader")))) { in validate()
240 (glVer >= GR_GL_VER(3,0) && fExtensions.has("GL_EXT_blend_func_extended"))))) { in validate()
248 fExtensions.has("GL_ARB_blend_func_extended"))) || in validate()
250 (glVer >= GR_GL_VER(3,0) && fExtensions.has("GL_EXT_blend_func_extende in validate()
[all...]
H A DGrGLAssembleGLESInterfaceAutogen.cpp159 } else if (extensions.has("GL_OES_vertex_array_object")) { in GrGLMakeAssembledGLESInterface()
167 } else if (extensions.has("GL_OES_tessellation_shader")) { in GrGLMakeAssembledGLESInterface()
171 if (glVer >= GR_GL_VER(3,0) && extensions.has("GL_EXT_blend_func_extended")) { in GrGLMakeAssembledGLESInterface()
175 if (glVer >= GR_GL_VER(3,0) && extensions.has("GL_EXT_blend_func_extended")) { in GrGLMakeAssembledGLESInterface()
179 if (extensions.has("GL_KHR_blend_equation_advanced")) { in GrGLMakeAssembledGLESInterface()
181 } else if (extensions.has("GL_NV_blend_equation_advanced")) { in GrGLMakeAssembledGLESInterface()
185 if (extensions.has("GL_EXT_clear_texture")) { in GrGLMakeAssembledGLESInterface()
193 } else if (extensions.has("GL_EXT_draw_instanced")) { in GrGLMakeAssembledGLESInterface()
196 } else if (extensions.has("GL_ANGLE_instanced_arrays")) { in GrGLMakeAssembledGLESInterface()
201 if (extensions.has("GL_EXT_base_instanc in GrGLMakeAssembledGLESInterface()
[all...]
H A DGrGLAssembleGLInterfaceAutogen.cpp165 } else if (extensions.has("GL_ARB_vertex_array_object")) { in GrGLMakeAssembledGLInterface()
169 } else if (extensions.has("GL_APPLE_vertex_array_object")) { in GrGLMakeAssembledGLInterface()
177 } else if (extensions.has("GL_ARB_tessellation_shader")) { in GrGLMakeAssembledGLInterface()
187 } else if (extensions.has("GL_ARB_blend_func_extended")) { in GrGLMakeAssembledGLInterface()
191 if (extensions.has("GL_KHR_blend_equation_advanced")) { in GrGLMakeAssembledGLInterface()
193 } else if (extensions.has("GL_NV_blend_equation_advanced")) { in GrGLMakeAssembledGLInterface()
200 } else if (extensions.has("GL_ARB_clear_texture")) { in GrGLMakeAssembledGLInterface()
208 } else if (extensions.has("GL_ARB_draw_instanced")) { in GrGLMakeAssembledGLInterface()
211 } else if (extensions.has("GL_EXT_draw_instanced")) { in GrGLMakeAssembledGLInterface()
219 } else if (extensions.has("GL_ARB_base_instanc in GrGLMakeAssembledGLInterface()
[all...]
/third_party/jerryscript/tests/jerry/es2015/
H A Dreflect-has.js19 assert (Reflect.has ({x: 0}, 'x') === true);
20 assert (Reflect.has ({x: 0}, 'y') === false);
22 assert (Reflect.has ({x: 0}, 'toString') === true);
28 assert (Reflect.has (object, 'prop') === true);
30 assert (2 === Reflect.has.length);
33 Reflect.has ();
40 Reflect.has (42, 'batcat');
47 Reflect.has (null, 'bat');
57 assert (Reflect.has (target, a) === true);
60 Reflect.has (targe
[all...]
H A Dset.js20 assert (set.has (int));
25 assert (set.has (str));
30 assert (set.has (number));
35 assert (set.has (object));
40 assert (set.has (func));
45 assert (set.has (symbol));
48 assert (!set.has(5));
49 assert (!set.has("foo"));
50 assert (!set.has({ a : 2, b : 4}));
51 assert (!set.has(functio
[all...]
H A Dweakset.js20 assert (m1.has (k1) === true);
25 assert (m1.has (k1) === false);
28 assert (m1.has (k1) === true);
31 assert (m1.has (42) === false);
43 assert (m1.has (k1) === false);
49 assert (m1.has (k1) === true);
92 assert (m1.has (k1));
93 assert (m1.has (k2));
103 assert (m1.has (k1));
111 assert (m1.has (k
[all...]
H A Dweakmap.js19 assert (m1.has (k1) === true);
25 assert (m1.has (k1) === false);
28 assert (m1.has (k1) === true);
32 assert (m1.has (42) === false);
44 assert (m1.has (k1) === false);
50 assert (m1.has (k1) === true);
105 assert (m1.has (k1));
106 assert (m1.has (k2));
118 assert (m1.has (k1));
127 assert (m1.has (k
[all...]
H A Dproxy_has.js20 var handler = { has (target) {
62 has: function(target, prop) {
78 has: function(target, prop) {
104 var handler = {has: null};
113 var handler = {has: 42};
129 has: function(target, prop) {
148 has: function(target, prop) {
H A Dmap.js19 assert(m.has(1));
24 assert(m.has(undefined));
29 assert(m.has(null));
34 assert(m.has("str" + "Item"));
39 assert(m.has(12 + (function() { return 0.25 })()));
44 assert(!m.has(1));
51 assert(!m.has(12.25));
/third_party/typescript/tests/baselines/reference/
H A DrequireAsFunctionInExternalModule.js5 export function has(a) { return true }
8 import require, { has } from "./c"
10 if (has('ember-debug')) {
22 exports.has = void 0;
25 function has(a) { return true; } function
26 exports.has = has;
34 if ((0, c_1.has)('ember-debug')) {
/third_party/node/test/es-module/
H A Dtest-esm-loader-modulemap.js28 // specified url/type tuple; LoadCache.has correctly reports whether such jobs
39 strictEqual(moduleMap.has(jsModuleDataUrl), true);
40 strictEqual(moduleMap.has(jsModuleDataUrl, 'javascript'), true);
41 strictEqual(moduleMap.has(jsonModuleDataUrl, 'json'), true);
43 strictEqual(moduleMap.has('unknown'), false);
46 strictEqual(moduleMap.has(jsModuleDataUrl, 'json'), false);
47 strictEqual(moduleMap.has(jsonModuleDataUrl, 'javascript'), false);
48 strictEqual(moduleMap.has(jsonModuleDataUrl), false);
49 strictEqual(moduleMap.has(jsModuleDataUrl, 'unknown'), false);
50 strictEqual(moduleMap.has(jsonModuleDataUr
[all...]
/third_party/node/test/fixtures/wpt/resources/
H A Dtestdriver-actions.js122 if (!this.sources.has(type)) {
135 if (!this.sources.has(type)) {
138 if (!this.sources.get(type).has(name)) {
225 if (!this.sources.has(type)) {
235 } while (sourceNames.has(name))
237 if (sourceNames.has(name)) {
390 if (this.actions.has(i)) {
401 if (this.actions.has(tick)) {
420 if (this.actions.has(i)) {
431 if (this.actions.has(tic
[all...]
/third_party/protobuf/ruby/tests/
H A Dbasic_proto2.rb39 assert !TestMessage.descriptor.lookup('optional_int32').has?(m)
41 assert !TestMessage.descriptor.lookup('optional_int64').has?(m)
43 assert !TestMessage.descriptor.lookup('optional_uint32').has?(m)
45 assert !TestMessage.descriptor.lookup('optional_uint64').has?(m)
47 assert !TestMessage.descriptor.lookup('optional_bool').has?(m)
49 assert !TestMessage.descriptor.lookup('optional_float').has?(m)
51 assert !TestMessage.descriptor.lookup('optional_double').has?(m)
53 assert !TestMessage.descriptor.lookup('optional_string').has?(m)
55 assert !TestMessage.descriptor.lookup('optional_bytes').has?(m)
57 assert !TestMessage.descriptor.lookup('optional_enum').has
[all...]
/third_party/node/lib/internal/bootstrap/
H A Drealm.js149 if (internalBindingAllowlist.has(module)) {
150 if (runtimeDeprecatedList.has(module)) {
157 if (legacyWrapperList.has(module)) {
209 !experimentalModuleList.has(id),
218 new SafeSet(publicBuiltinIds.filter((id) => !schemelessBlockList.has(id)));
265 if (!schemelessBlockList.has(id)) {
279 return BuiltinModule.map.has(id);
283 return canBeRequiredByUsersList.has(id);
287 return canBeRequiredByUsersWithoutSchemeList.has(id);
429 } else if (!BuiltinModule.map.has(reques
[all...]
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dtest-bimap.cc40 assert (bm.has (1) == true); in main()
41 assert (bm.has (4) == false); in main()
45 assert (bm.has (1) == false); in main()
46 assert (bm.has (3) == true); in main()
73 assert (ibm.has (4) == false); in main()
/third_party/node/deps/v8/src/codegen/mips64/
H A Dinterface-descriptors-mips64-inl.h27 if (argc >= 1) DCHECK(allocatable_regs.has(a0)); in VerifyArgumentRegisterCount()
28 if (argc >= 2) DCHECK(allocatable_regs.has(a1)); in VerifyArgumentRegisterCount()
29 if (argc >= 3) DCHECK(allocatable_regs.has(a2)); in VerifyArgumentRegisterCount()
30 if (argc >= 4) DCHECK(allocatable_regs.has(a3)); in VerifyArgumentRegisterCount()
31 if (argc >= 5) DCHECK(allocatable_regs.has(a4)); in VerifyArgumentRegisterCount()
32 if (argc >= 6) DCHECK(allocatable_regs.has(a5)); in VerifyArgumentRegisterCount()
33 if (argc >= 7) DCHECK(allocatable_regs.has(a6)); in VerifyArgumentRegisterCount()
34 if (argc >= 8) DCHECK(allocatable_regs.has(a7)); in VerifyArgumentRegisterCount()
/third_party/node/deps/v8/src/codegen/s390/
H A Dinterface-descriptors-s390-inl.h27 if (argc >= 1) DCHECK(allocatable_regs.has(r2)); in VerifyArgumentRegisterCount()
28 if (argc >= 2) DCHECK(allocatable_regs.has(r3)); in VerifyArgumentRegisterCount()
29 if (argc >= 3) DCHECK(allocatable_regs.has(r4)); in VerifyArgumentRegisterCount()
30 if (argc >= 4) DCHECK(allocatable_regs.has(r5)); in VerifyArgumentRegisterCount()
31 if (argc >= 5) DCHECK(allocatable_regs.has(r6)); in VerifyArgumentRegisterCount()
32 if (argc >= 6) DCHECK(allocatable_regs.has(r7)); in VerifyArgumentRegisterCount()
33 if (argc >= 7) DCHECK(allocatable_regs.has(r8)); in VerifyArgumentRegisterCount()
34 if (argc >= 8) DCHECK(allocatable_regs.has(r9)); in VerifyArgumentRegisterCount()
/third_party/node/deps/v8/src/codegen/arm/
H A Dinterface-descriptors-arm-inl.h27 if (argc >= 1) DCHECK(allocatable_regs.has(r0)); in VerifyArgumentRegisterCount()
28 if (argc >= 2) DCHECK(allocatable_regs.has(r1)); in VerifyArgumentRegisterCount()
29 if (argc >= 3) DCHECK(allocatable_regs.has(r2)); in VerifyArgumentRegisterCount()
30 if (argc >= 4) DCHECK(allocatable_regs.has(r3)); in VerifyArgumentRegisterCount()
31 if (argc >= 5) DCHECK(allocatable_regs.has(r4)); in VerifyArgumentRegisterCount()
32 if (argc >= 6) DCHECK(allocatable_regs.has(r5)); in VerifyArgumentRegisterCount()
33 if (argc >= 7) DCHECK(allocatable_regs.has(r6)); in VerifyArgumentRegisterCount()
34 if (argc >= 8) DCHECK(allocatable_regs.has(r7)); in VerifyArgumentRegisterCount()
/third_party/node/deps/v8/src/codegen/riscv64/
H A Dinterface-descriptors-riscv64-inl.h28 if (argc >= 1) DCHECK(allocatable_regs.has(a0)); in VerifyArgumentRegisterCount()
29 if (argc >= 2) DCHECK(allocatable_regs.has(a1)); in VerifyArgumentRegisterCount()
30 if (argc >= 3) DCHECK(allocatable_regs.has(a2)); in VerifyArgumentRegisterCount()
31 if (argc >= 4) DCHECK(allocatable_regs.has(a3)); in VerifyArgumentRegisterCount()
32 if (argc >= 5) DCHECK(allocatable_regs.has(a4)); in VerifyArgumentRegisterCount()
33 if (argc >= 6) DCHECK(allocatable_regs.has(a5)); in VerifyArgumentRegisterCount()
34 if (argc >= 7) DCHECK(allocatable_regs.has(a6)); in VerifyArgumentRegisterCount()
35 if (argc >= 8) DCHECK(allocatable_regs.has(a7)); in VerifyArgumentRegisterCount()
/third_party/node/deps/v8/src/codegen/arm64/
H A Dinterface-descriptors-arm64-inl.h28 if (argc >= 1) DCHECK(allocatable_regs.has(x0)); in VerifyArgumentRegisterCount()
29 if (argc >= 2) DCHECK(allocatable_regs.has(x1)); in VerifyArgumentRegisterCount()
30 if (argc >= 3) DCHECK(allocatable_regs.has(x2)); in VerifyArgumentRegisterCount()
31 if (argc >= 4) DCHECK(allocatable_regs.has(x3)); in VerifyArgumentRegisterCount()
32 if (argc >= 5) DCHECK(allocatable_regs.has(x4)); in VerifyArgumentRegisterCount()
33 if (argc >= 6) DCHECK(allocatable_regs.has(x5)); in VerifyArgumentRegisterCount()
34 if (argc >= 7) DCHECK(allocatable_regs.has(x6)); in VerifyArgumentRegisterCount()
35 if (argc >= 8) DCHECK(allocatable_regs.has(x7)); in VerifyArgumentRegisterCount()
/third_party/node/deps/v8/src/codegen/ppc/
H A Dinterface-descriptors-ppc-inl.h27 if (argc >= 1) DCHECK(allocatable_regs.has(r3)); in VerifyArgumentRegisterCount()
28 if (argc >= 2) DCHECK(allocatable_regs.has(r4)); in VerifyArgumentRegisterCount()
29 if (argc >= 3) DCHECK(allocatable_regs.has(r5)); in VerifyArgumentRegisterCount()
30 if (argc >= 4) DCHECK(allocatable_regs.has(r6)); in VerifyArgumentRegisterCount()
31 if (argc >= 5) DCHECK(allocatable_regs.has(r7)); in VerifyArgumentRegisterCount()
32 if (argc >= 6) DCHECK(allocatable_regs.has(r8)); in VerifyArgumentRegisterCount()
33 if (argc >= 7) DCHECK(allocatable_regs.has(r9)); in VerifyArgumentRegisterCount()
34 if (argc >= 8) DCHECK(allocatable_regs.has(r10)); in VerifyArgumentRegisterCount()
/third_party/node/deps/v8/src/codegen/loong64/
H A Dinterface-descriptors-loong64-inl.h27 if (argc >= 1) DCHECK(allocatable_regs.has(a0)); in VerifyArgumentRegisterCount()
28 if (argc >= 2) DCHECK(allocatable_regs.has(a1)); in VerifyArgumentRegisterCount()
29 if (argc >= 3) DCHECK(allocatable_regs.has(a2)); in VerifyArgumentRegisterCount()
30 if (argc >= 4) DCHECK(allocatable_regs.has(a3)); in VerifyArgumentRegisterCount()
31 if (argc >= 5) DCHECK(allocatable_regs.has(a4)); in VerifyArgumentRegisterCount()
32 if (argc >= 6) DCHECK(allocatable_regs.has(a5)); in VerifyArgumentRegisterCount()
33 if (argc >= 7) DCHECK(allocatable_regs.has(a6)); in VerifyArgumentRegisterCount()
34 if (argc >= 8) DCHECK(allocatable_regs.has(a7)); in VerifyArgumentRegisterCount()
/third_party/node/deps/npm/node_modules/@npmcli/arborist/lib/
H A Daudit-report.js140 if (this.has(name)) {
148 if (!seen.has(k)) {
166 if (vuln.nodes.has(node)) {
173 if (dep.isTop && !vuln.topNodes.has(dep)) {
359 : filterSet && filterSet.size !== 0 && !filterSet.has(node) ? false
362 node.dev && omit.has('dev') ||
363 node.optional && omit.has('optional') ||
364 node.devOptional && omit.has('dev') && omit.has('optional') ||
365 node.peer && omit.has('pee
[all...]
/third_party/skia/tests/
H A DGrGLExtensionsTest.cpp44 REPORTER_ASSERT(reporter, ext.has("test_extension_1")); in DEF_TEST()
45 REPORTER_ASSERT(reporter, ext.has("test_extension_2")); in DEF_TEST()
47 REPORTER_ASSERT(reporter, !ext.has("test_extension_2")); in DEF_TEST()
49 REPORTER_ASSERT(reporter, !ext.has("test_extension_1")); in DEF_TEST()
/third_party/node/deps/npm/node_modules/pacote/lib/
H A Dregistry.js48 // XXX pacote <=9 has some logic to ignore opts.resolved if
83 if (this.packumentCache && this.packumentCache.has(this.packumentUrl)) {
187 `${mani._id} has a registry signature with keyid: ${signature.keyid} ` +
197 `${mani._id} has a registry signature with keyid: ${signature.keyid} ` +
198 `but the corresponding public key has expired ${publicKey.expires}`
211 `${mani._id} has an invalid registry signature with ` +
261 `${mani._id} has attestations but no corresponding public key(s) can be found`
271 `${mani._id} has attestations with keyid: ${keyid} ` +
285 `${mani._id} has attestations with keyid: ${keyid} ` +
286 `but the corresponding public key has expire
[all...]

Completed in 11 milliseconds

12345678910>>...24