Home
last modified time | relevance | path

Searched refs:spec (Results 326 - 350 of 772) sorted by relevance

1...<<11121314151617181920>>...31

/third_party/node/tools/v8/
H A Dfetch_deps.py81 spec = "solutions = %s" % GCLIENT_SOLUTION
82 subprocess.check_call([sys.executable, gclient, "sync", "--spec", spec],
/third_party/node/test/fixtures/wpt/resources/
H A Didlharness-shadowrealm.js46 const specs = await Promise.all(srcs.concat(deps).map(spec => {
47 return fetch_text("/interfaces/" + spec + ".idl");
/third_party/mesa3d/src/intel/tools/
H A Daubinator_viewer.h72 struct intel_spec *spec; member
93 struct intel_spec *spec,
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
H A DMSVSUserFile.py143 for config, spec in sorted(self.configurations.items()):
144 configs.append(spec)
/third_party/libphonenumber/metadata/src/test/java/com/google/i18n/phonenumbers/metadata/model/
H A DAltFormatsSchemaTest.java95 private AltFormatSpec altFormat(String spec, String parentId, String comment) { in altFormat() argument
96 return AltFormatsSchema.parseAltFormat(spec, parentId, comment); in altFormat()
/third_party/skia/third_party/externals/angle2/src/tests/preprocessor_tests/
H A DPreprocessorTest.cpp51 void SimplePreprocessorTest::preprocess(const char *input, const char *expected, ShShaderSpec spec) in preprocess() argument
54 pp::PreprocessorSettings(spec)); in preprocess()
/third_party/skia/third_party/externals/angle2/src/tests/test_utils/
H A Dcompiler_test.h27 ShShaderSpec spec,
36 ShShaderSpec spec,
H A Dcompiler_test.cpp64 ShShaderSpec spec, in compileTestShader()
72 sh::TCompiler *translator = sh::ConstructCompiler(type, spec, output); in compileTestShader()
97 ShShaderSpec spec, in compileTestShader()
107 return compileTestShader(type, spec, output, shaderString, &resources, compileOptions, in compileTestShader()
63 compileTestShader(GLenum type, ShShaderSpec spec, ShShaderOutput output, const std::string &shaderString, ShBuiltInResources *resources, ShCompileOptions compileOptions, std::string *translatedCode, std::string *infoLog) compileTestShader() argument
96 compileTestShader(GLenum type, ShShaderSpec spec, ShShaderOutput output, const std::string &shaderString, ShCompileOptions compileOptions, std::string *translatedCode, std::string *infoLog) compileTestShader() argument
/third_party/python/Lib/test/test_importlib/builtin/
H A Dtest_finder.py37 spec = self.machinery.BuiltinImporter.find_spec(name)
38 self.assertIsNone(spec)
/foundation/distributedhardware/distributed_hardware_fwk/services/distributedhardwarefwkservice/src/
H A Ddistributed_hardware_stub.cpp180 QueryLocalSysSpecType spec = (QueryLocalSysSpecType)specInt; in QueryLocalSysSpecInner() local
181 DHLOGI("Query Local Sys Spec: %{public}" PRIu32, (uint32_t)spec); in QueryLocalSysSpecInner()
182 std::string res = QueryLocalSysSpec(spec); in QueryLocalSysSpecInner()
183 DHLOGI("Get Local spec: %{public}s", res.c_str()); in QueryLocalSysSpecInner()
324 bool DistributedHardwareStub::ValidQueryLocalSpec(uint32_t spec) in ValidQueryLocalSpec() argument
326 if (spec <= (uint32_t)QueryLocalSysSpecType::MIN || spec >= (uint32_t)QueryLocalSysSpecType::MAX) { in ValidQueryLocalSpec()
/third_party/vk-gl-cts/modules/gles3/functional/
H A Des3fTextureSwizzleTests.cpp130 tcu::TextureFormatInfo spec = tcu::getTextureFormatInfo(m_texture->getRefTexture().getFormat()); in init() local
134 tcu::fillWithComponentGradients(m_texture->getRefTexture().getLevel(0), spec.valueMin, spec.valueMax); in init()
155 tcu::TextureFormatInfo spec = tcu::getTextureFormatInfo(m_texture->getRefTexture().getFormat()); in iterate() local
159 renderParams.colorScale = spec.lookupScale; in iterate()
160 renderParams.colorBias = spec.lookupBias; in iterate()
/third_party/skia/third_party/externals/dawn/src/tests/end2end/
H A DBufferZeroInitTests.cpp121 void TestBufferZeroInitInCopyTextureToBuffer(const BufferZeroInitInCopyT2BSpec& spec) { in TestBufferZeroInitInCopyTextureToBuffer() argument
123 ASSERT(utils::GetTexelBlockSizeInBytes(kTextureFormat) * spec.textureSize.width % in TestBufferZeroInitInCopyTextureToBuffer()
129 CreateAndInitializeTexture(spec.textureSize, kTextureFormat, kClearColor); in TestBufferZeroInitInCopyTextureToBuffer()
134 const uint64_t bufferSize = spec.bufferOffset + spec.extraBytes + in TestBufferZeroInitInCopyTextureToBuffer()
135 utils::RequiredBytesInCopy(spec.bytesPerRow, spec.rowsPerImage, in TestBufferZeroInitInCopyTextureToBuffer()
136 spec.textureSize, kTextureFormat); in TestBufferZeroInitInCopyTextureToBuffer()
140 buffer, spec.bufferOffset, spec in TestBufferZeroInitInCopyTextureToBuffer()
[all...]
H A DCopyTextureForBrowserTests.cpp288 wgpu::Texture CreateTexture(const TextureSpec& spec, wgpu::TextureUsage usage) { in CreateTexture() argument
291 descriptor.size = spec.textureSize; in CreateTexture()
292 descriptor.format = spec.format; in CreateTexture()
293 descriptor.mipLevelCount = spec.level + 1; in CreateTexture()
299 wgpu::Texture CreateAndInitTexture(const TextureSpec& spec, in CreateAndInitTexture() argument
304 wgpu::Texture texture = CreateTexture(spec, usage); in CreateAndInitTexture()
307 utils::CreateImageCopyTexture(texture, spec.level, {0, 0}); in CreateAndInitTexture()
/third_party/icu/icu4c/source/io/
H A Duscanf_p.cpp103 u_scanf_spec_info fInfo; /* Information on this spec */
110 * @param spec A pointer to a <TT>u_scanf_spec</TT> to receive the parsed
116 u_scanf_spec *spec) in u_scanf_parse_spec()
120 u_scanf_spec_info *info = &(spec->fInfo); in u_scanf_parse_spec()
122 /* initialize spec to default values */ in u_scanf_parse_spec()
123 spec->fArgPos = -1; in u_scanf_parse_spec()
147 spec->fArgPos = (int) (*s++ - DIGIT_ZERO); in u_scanf_parse_spec()
150 spec->fArgPos *= 10; in u_scanf_parse_spec()
151 spec->fArgPos += (int) (*s++ - DIGIT_ZERO); in u_scanf_parse_spec()
157 spec in u_scanf_parse_spec()
115 u_scanf_parse_spec(const UChar *fmt, u_scanf_spec *spec) u_scanf_parse_spec() argument
1366 u_scanf_spec spec; u_scanf_parse() local
[all...]
/third_party/libbpf/src/
H A Dusdt.c29 * usdt.bpf.h defines two BPF maps that usdt_manager expects: USDT spec map
30 * and IP-to-spec-ID map, which is auxiliary map necessary for kernels that
112 * prepares `struct usdt_spec` (USDT spec), which is then provided to BPF-side
113 * code through spec map. This allows BPF applications to quickly fetch the
139 * potentially having a completely different USDT spec associated with it.
140 * To wire all this up together libbpf allocates a unique integer spec ID for
141 * each unique USDT spec. Spec IDs are allocated as sequential small integers
147 * Spec ID is the key in spec BPF map, value is the actual USDT spec layed out
149 * know its associated spec I
239 struct usdt_spec spec; global() member
1190 parse_usdt_spec(struct usdt_spec *spec, const struct usdt_note *note, __u64 usdt_cookie) parse_usdt_spec() argument
[all...]
/third_party/skia/third_party/externals/icu/source/io/
H A Duscanf_p.cpp103 u_scanf_spec_info fInfo; /* Information on this spec */
110 * @param spec A pointer to a <TT>u_scanf_spec</TT> to receive the parsed
116 u_scanf_spec *spec) in u_scanf_parse_spec()
120 u_scanf_spec_info *info = &(spec->fInfo); in u_scanf_parse_spec()
122 /* initialize spec to default values */ in u_scanf_parse_spec()
123 spec->fArgPos = -1; in u_scanf_parse_spec()
147 spec->fArgPos = (int) (*s++ - DIGIT_ZERO); in u_scanf_parse_spec()
150 spec->fArgPos *= 10; in u_scanf_parse_spec()
151 spec->fArgPos += (int) (*s++ - DIGIT_ZERO); in u_scanf_parse_spec()
157 spec in u_scanf_parse_spec()
115 u_scanf_parse_spec(const UChar *fmt, u_scanf_spec *spec) u_scanf_parse_spec() argument
1366 u_scanf_spec spec; u_scanf_parse() local
[all...]
/third_party/python/Lib/unittest/test/testmock/
H A Dtestpatch.py260 @patch('%s.SomeClass' % __name__, spec=SomeClass)
270 @patch.object(SomeClass, 'class_attribute', spec=SomeClass)
282 @patch('%s.SomeClass' % __name__, spec=['wibble'])
292 @patch.object(SomeClass, 'class_attribute', spec=['wibble'])
306 @patch('%s.SomeClass' % __name__, spec=['wibble'])
315 @patch('%s.SomeClass' % __name__, spec=True)
327 @patch.object(PTModule, 'SomeClass', spec=True)
339 @patch('%s.SomeClass' % __name__, spec=True)
685 @patch('%s.SomeClass' % __name__, spec=SomeClass, spec_set=True)
691 @patch.object(support, 'SomeClass', spec
[all...]
/third_party/node/deps/npm/node_modules/@npmcli/package-json/lib/
H A Dnormalize.js68 function isCorrectlyEncodedName (spec) {
69 return !spec.match(/[/@\s+%:]/) &&
70 spec === encodeURIComponent(spec)
73 function isValidScopedPackageName (spec) {
74 if (spec.charAt(0) !== '@') {
78 const rest = spec.slice(1).split('/')
/third_party/musl/Benchmark/musl/
H A Dlibc_pthread.cpp450 struct timespec spec; in Bm_function_Sem_timewait() local
451 spec.tv_sec = 0; in Bm_function_Sem_timewait()
452 spec.tv_nsec = 5; in Bm_function_Sem_timewait()
454 sem_timedwait(&semp, &spec); in Bm_function_Sem_timewait()
463 struct timespec spec; in Bm_function_Sem_post_wait() local
464 spec.tv_sec = 0; in Bm_function_Sem_post_wait()
465 spec.tv_nsec = 5; in Bm_function_Sem_post_wait()
/third_party/skia/third_party/externals/freetype/src/base/
H A Dftmac.c162 FSSpec spec; in FT_ATSFontGetFileReference()
165 err = ATSFontGetFileSpecification( ats_font_id, &spec ); in FT_ATSFontGetFileReference()
167 err = FSpMakeFSRef( &spec, ats_font_ref ); in FT_ATSFontGetFileReference()
1056 const FSSpec* spec, in FT_EXPORT_DEF()
1063 FT_UNUSED( spec ); in FT_EXPORT_DEF()
1074 if ( !spec || FSpMakeFSRef( spec, &ref ) != noErr ) in FT_EXPORT_DEF()
/foundation/graphic/graphic_3d/lume/LumeRender/src/node/
H A Drender_node_compute_generic.cpp188 const auto* spec = reinterpret_cast<const ShaderSpecializationRenderPod*>(dataView.data()); in GetPsoHandle() local
192 Math::min((uint32_t)shaderSpecializationData_.constants.size(), spec->specializationConstantCount)); in GetPsoHandle()
198 if (shaderSpecializationData_.data[constantId] != spec->specializationFlags[specId].value) { in GetPsoHandle()
199 shaderSpecializationData_.data[constantId] = spec->specializationFlags[specId].value; in GetPsoHandle()
H A Drender_node_fullscreen_generic.cpp170 const auto* spec = reinterpret_cast<const ShaderSpecializationRenderPod*>(dataView.data()); in GetPsoHandle() local
173 Math::min(spec->specializationConstantCount, (uint32_t)shaderSpecializationData_.constants.size()), in GetPsoHandle()
180 if (shaderSpecializationData_.data[constantId] != spec->specializationFlags[specId].value) { in GetPsoHandle()
181 shaderSpecializationData_.data[constantId] = spec->specializationFlags[specId].value; in GetPsoHandle()
/foundation/distributedhardware/distributed_hardware_fwk/interfaces/inner_kits/test/unittest/common/distributedhardwarefwkkit/src/
H A Ddistributed_hardware_fwk_kit_test.cpp278 QueryLocalSysSpecType spec = QueryLocalSysSpecType::MIN; in HWTEST_F() local
279 std::string ret = dhfwkPtr_->QueryLocalSysSpec(spec); in HWTEST_F()
294 QueryLocalSysSpecType spec = QueryLocalSysSpecType::HISTREAMER_AUDIO_ENCODER; in HWTEST_F() local
295 std::string ret = dhfwkPtr_->QueryLocalSysSpec(spec); in HWTEST_F()
/third_party/icu/icu4c/source/test/intltest/
H A Ddadrfmt.cpp78 * Headers { "locale", "zone", "spec", "date", "str"}
81 // spec: either 'PATTERN=y mm h' etc, or 'DATE=SHORT,TIME=LONG'
82 // date: either an unsigned long (millis), or a calendar spec ERA=0,YEAR=1, etc.. applied to the calendar type specified by the locale
143 UnicodeString spec = currentCase->getString("spec", status); in testConvertDate() local
145 errln("case %d: No 'spec' line.", n); in testConvertDate()
164 if(spec.startsWith(kPATTERN)) { in testConvertDate()
165 pattern = UnicodeString(spec,kPATTERN.length()); in testConvertDate()
173 if(styleSet.parseFrom(spec, status)<0 || U_FAILURE(status)) { in testConvertDate()
174 errln("case %d: could not parse spec a in testConvertDate()
[all...]
/third_party/skia/platform_tools/android/apps/skottie/src/main/java/org/skia/skottie/
H A DSkottieActivity.java136 GridLayout.Spec rowSpec = GridLayout.spec(0, mRowCount, GridLayout.CENTER); in inflateView()
137 GridLayout.Spec colSpec = GridLayout.spec(0, mColumnCount, GridLayout.CENTER); in inflateView()
160 GridLayout.Spec rowSpec = GridLayout.spec(row, 1, GridLayout.CENTER); in addView()
161 GridLayout.Spec colSpec = GridLayout.spec(column, 1, GridLayout.CENTER); in addView()

Completed in 19 milliseconds

1...<<11121314151617181920>>...31