Home
last modified time | relevance | path

Searched refs:Spec (Results 1 - 25 of 135) sorted by relevance

123456

/third_party/skia/third_party/externals/angle2/src/compiler/translator/
H A DSymbolTable_autogen.cpp[all...]
H A DSymbolTable_ESSL_autogen.cpp18392 Rule::Get<Spec::ESSL, 0, Shader::ALL, 0>(&radians_00B),
18393 Rule::Get<Spec::ESSL, 0, Shader::ALL, 0>(&radians_10B),
18394 Rule::Get<Spec::ESSL, 0, Shader::ALL, 0>(&radians_20B),
18395 Rule::Get<Spec::ESSL, 0, Shader::ALL, 0>(&radians_30B),
18396 Rule::Get<Spec::ESSL, 0, Shader::ALL, 0>(&degrees_00B),
18397 Rule::Get<Spec::ESSL, 0, Shader::ALL, 0>(&degrees_10B),
18398 Rule::Get<Spec::ESSL, 0, Shader::ALL, 0>(&degrees_20B),
18399 Rule::Get<Spec::ESSL, 0, Shader::ALL, 0>(&degrees_30B),
18400 Rule::Get<Spec::ESSL, 0, Shader::ALL, 0>(&sin_00B),
18401 Rule::Get<Spec
[all...]
H A DSymbolTable.h71 enum class Spec : uint8_t class
100 template <Spec spec, int version, Shader shaders, size_t extensionIndex, typename T>
104 constexpr SymbolRule(Spec spec,
110 constexpr SymbolRule(Spec spec,
133 constexpr SymbolRule::SymbolRule(Spec spec, in SymbolRule()
138 : mIsDesktop(spec == Spec::GLSL ? 1u : 0u), in SymbolRule()
146 constexpr SymbolRule::SymbolRule(Spec spec, in SymbolRule()
151 : mIsDesktop(spec == Spec::GLSL ? 1u : 0u), in SymbolRule()
159 template <Spec spec, int version, Shader shaders, size_t extensionIndex, typename T>
/third_party/skia/infra/bots/gen_tasks_logic/
H A Dtask_builder.go21 Spec *specs.TaskSpec
35 Spec: &specs.TaskSpec{},
42 b.Spec.MaxAttempts = a
49 for _, exist := range b.Spec.Caches {
59 b.Spec.Caches = append(b.Spec.Caches, c)
66 b.Spec.Command = c
72 if !In(dim, b.Spec.Dimensions) {
73 b.Spec.Dimensions = append(b.Spec
[all...]
H A Djob_builder.go18 Spec *specs.JobSpec
31 Spec: &specs.JobSpec{},
37 b.Spec.Priority = p
42 b.Spec.Trigger = trigger
49 b.MustAddTask(tb.Name, tb.Spec)
52 b.Spec.TaskSpecs = append(b.Spec.TaskSpecs, tb.Name)
53 newSpecs := make([]string, 0, len(b.Spec.TaskSpecs))
54 for _, t := range b.Spec.TaskSpecs {
55 if !In(t, tb.Spec
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DFormatVariadic.cpp26 bool formatv_object_base::consumeFieldLayout(StringRef &Spec, AlignStyle &Where, in consumeFieldLayout() argument
31 if (Spec.empty()) in consumeFieldLayout()
34 if (Spec.size() > 1) { in consumeFieldLayout()
38 // If Spec[1] is a loc char, then Spec[0] is a pad char and Spec[2:...] in consumeFieldLayout()
40 // Otherwise, if Spec[0] is a loc char, then Spec[1:...] contains the width. in consumeFieldLayout()
41 // Otherwise, Spec[0:...] contains the width. in consumeFieldLayout()
42 if (auto Loc = translateLocChar(Spec[ in consumeFieldLayout()
57 parseReplacementItem(StringRef Spec) parseReplacementItem() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/
H A DDWARFAbbreviationDeclaration.cpp132 for (const AttributeSpec &Spec : AttributeSpecs) { in dump()
133 OS << formatv("\t{0}\t{1}", Spec.Attr, Spec.Form); in dump()
134 if (Spec.isImplicitConst()) in dump()
135 OS << '\t' << Spec.getImplicitConstValue(); in dump()
163 for (const auto &Spec : AttributeSpecs) { in getAttributeValue()
166 if (Spec.isImplicitConst()) in getAttributeValue()
167 return DWARFFormValue::createFromSValue(Spec.Form, in getAttributeValue()
168 Spec.getImplicitConstValue()); in getAttributeValue()
170 DWARFFormValue FormValue(Spec in getAttributeValue()
[all...]
/third_party/vk-gl-cts/modules/gles2/functional/
H A Des2fVertexArrayTest.cpp88 MultiVertexArrayTest::Spec::ArraySpec arraySpec(inputTypes[inputTypeNdx], in init()
99 MultiVertexArrayTest::Spec spec; in init()
158 MultiVertexArrayTest::Spec::ArraySpec arraySpec(inputTypes[inputTypeNdx], in init()
169 MultiVertexArrayTest::Spec spec; in init()
229 MultiVertexArrayTest::Spec::ArraySpec arraySpec(inputTypes[inputTypeNdx], in init()
240 MultiVertexArrayTest::Spec spec; in init()
297 MultiVertexArrayTest::Spec::ArraySpec arraySpec(inputTypes[inputTypeNdx], in init()
308 MultiVertexArrayTest::Spec spec; in init()
360 MultiVertexArrayTest::Spec::ArraySpec arraySpec(inputTypes[inputTypeNdx], in init()
371 MultiVertexArrayTest::Spec spe in init()
[all...]
/third_party/typescript/tests/baselines/reference/
H A DbaseExpressionTypeParameters.js12 class Spec extends Gen<string> {}
14 <string>Spec.prop;
48 var Spec = /** @class */ (function (_super) {
49 __extends(Spec, _super);
50 function Spec() {
53 return Spec;
55 Spec.prop;
H A DisomorphicMappedTypeInference.js125 type Spec<T> = {
126 [P in keyof T]: Func<T[P]> | Spec<T[P]> ;
134 declare function applySpec<T>(obj: Spec<T>): (...args: any[]) => T;
341 type Spec<T> = {
342 [P in keyof T]: Func<T[P]> | Spec<T[P]>;
349 declare function applySpec<T>(obj: Spec<T>): (...args: any[]) => T;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
H A DFormatVariadic.h49 : Type(ReplacementType::Literal), Spec(Literal) {} in ReplacementItem()
50 ReplacementItem(StringRef Spec, size_t Index, size_t Align, AlignStyle Where, in ReplacementItem()
52 : Type(ReplacementType::Format), Spec(Spec), Index(Index), Align(Align), in ReplacementItem()
56 StringRef Spec; member
84 static bool consumeFieldLayout(StringRef &Spec, AlignStyle &Where,
110 S << R.Spec; in format()
114 S << R.Spec; in format()
126 static Optional<ReplacementItem> parseReplacementItem(StringRef Spec);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DFormatVariadic.h50 : Type(ReplacementType::Literal), Spec(Literal) {} in ReplacementItem()
51 ReplacementItem(StringRef Spec, size_t Index, size_t Align, AlignStyle Where, in ReplacementItem()
53 : Type(ReplacementType::Format), Spec(Spec), Index(Index), Align(Align), in ReplacementItem()
57 StringRef Spec; member
85 static bool consumeFieldLayout(StringRef &Spec, AlignStyle &Where,
102 S << R.Spec; in format()
106 S << R.Spec; in format()
118 static Optional<ReplacementItem> parseReplacementItem(StringRef Spec);
/third_party/vk-gl-cts/modules/gles3/functional/
H A Des3fVertexArrayTest.cpp87 MultiVertexArrayTest::Spec::ArraySpec arraySpec(inputTypes[inputTypeNdx], in init()
98 MultiVertexArrayTest::Spec spec; in init()
192 MultiVertexArrayTest::Spec::ArraySpec arraySpec(m_type, in init()
203 MultiVertexArrayTest::Spec spec; in init()
295 MultiVertexArrayTest::Spec::ArraySpec arraySpec(m_type, in init()
306 MultiVertexArrayTest::Spec spec; in init()
396 MultiVertexArrayTest::Spec::ArraySpec arraySpec(m_type, in init()
407 MultiVertexArrayTest::Spec spec; in init()
490 MultiVertexArrayTest::Spec::ArraySpec arraySpec(m_type, in init()
501 MultiVertexArrayTest::Spec spe in init()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
H A DIceRangeSpec.cpp97 std::vector<std::string> RangeSpec::tokenize(const std::string &Spec, in tokenize() argument
100 if (!Spec.empty()) { in tokenize()
104 DelimPos = Spec.find(Delimiter, StartPos); in tokenize()
105 Tokens.emplace_back(Spec.substr(StartPos, DelimPos - StartPos)); in tokenize()
114 void RangeSpec::init(const std::string &Spec) { in init() argument
115 auto Tokens = tokenize(Spec, DELIM_LIST); in init()
H A DIceRangeSpec.h51 void init(const std::string &Spec);
66 static std::vector<std::string> tokenize(const std::string &Spec,
/third_party/vk-gl-cts/modules/egl/
H A DteglMemoryStressTests.cpp317 struct Spec struct in deqp::egl::MemoryStressCase
327 MemoryStressCase (EglTestContext& eglTestCtx, Spec spec, const char* name, const char* description);
333 Spec m_spec;
344 MemoryStressCase::MemoryStressCase (EglTestContext& eglTestCtx, Spec spec, const char* name, const char* description) in MemoryStressCase()
476 MemoryStressCase::Spec spec; in init()
490 MemoryStressCase::Spec spec; in init()
504 MemoryStressCase::Spec spec; in init()
518 MemoryStressCase::Spec spec; in init()
532 MemoryStressCase::Spec spec; in init()
546 MemoryStressCase::Spec spe in init()
[all...]
H A DteglMakeCurrentPerfTests.cpp71 struct Spec struct in deqp::egl::MakeCurrentPerfCase
85 MakeCurrentPerfCase (EglTestContext& eglTestCtx, const Spec& spec, const char* name, const char* description);
93 Spec m_spec;
124 string MakeCurrentPerfCase::Spec::toName (void) const in toName()
151 string MakeCurrentPerfCase::Spec::toDescription (void) const in toDescription()
157 MakeCurrentPerfCase::MakeCurrentPerfCase (EglTestContext& eglTestCtx, const Spec& spec, const char* name, const char* description) in MakeCurrentPerfCase()
568 MakeCurrentPerfCase::Spec spec; in init()
604 MakeCurrentPerfCase::Spec spec; in init()
647 MakeCurrentPerfCase::Spec spec; in init()
697 MakeCurrentPerfCase::Spec spe in init()
[all...]
/third_party/vk-gl-cts/modules/gles2/stress/
H A Des2sVertexArrayTests.cpp89 MultiVertexArrayTest::Spec::ArraySpec arraySpec(inputTypes[inputTypeNdx], in init()
100 MultiVertexArrayTest::Spec spec; in init()
159 MultiVertexArrayTest::Spec::ArraySpec arraySpec(inputTypes[inputTypeNdx], in init()
170 MultiVertexArrayTest::Spec spec; in init()
230 MultiVertexArrayTest::Spec::ArraySpec arraySpec(inputTypes[inputTypeNdx], in init()
241 MultiVertexArrayTest::Spec spec; in init()
298 MultiVertexArrayTest::Spec::ArraySpec arraySpec(inputTypes[inputTypeNdx], in init()
309 MultiVertexArrayTest::Spec spec; in init()
/third_party/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
H A DTransliteratorRegistry.java75 // class Spec
79 * A Spec is a string specifying either a source or a target. In more
81 * Spec class for sources and targets.
83 * A Spec may be a locale or a script. If it is a locale, it has a
85 * ssss is the script mapping of xx_YY_ZZZ. The Spec API methods
89 * The Spec class canonicalizes itself, so the locale is put into
93 static class Spec { class in TransliteratorRegistry
103 public Spec(String theSpec) { in Spec() method in TransliteratorRegistry.Spec
602 private Object[] findInDynamicStore(Spec src, in findInDynamicStore()
603 Spec tr in findInDynamicStore()
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DTransliteratorRegistry.java76 // class Spec
80 * A Spec is a string specifying either a source or a target. In more
82 * Spec class for sources and targets.
84 * A Spec may be a locale or a script. If it is a locale, it has a
86 * ssss is the script mapping of xx_YY_ZZZ. The Spec API methods
90 * The Spec class canonicalizes itself, so the locale is put into
94 static class Spec { class in TransliteratorRegistry
104 public Spec(String theSpec) { in Spec() method in TransliteratorRegistry.Spec
603 private Object[] findInDynamicStore(Spec src, in findInDynamicStore()
604 Spec tr in findInDynamicStore()
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/base/internal/
H A Dexception_safety_testing.h256 template <TypeSpec Spec = TypeSpec::kEverythingThrows>
259 return static_cast<bool>(Spec & spec); in IsSpecified()
597 exceptions_internal::GetSpecString(Spec), ">(", dummy, in GetInstanceString()
605 template <TypeSpec Spec, typename T>
606 void operator,(const ThrowingValue<Spec>&, T&&) = delete;
607 template <TypeSpec Spec, typename T>
608 void operator,(T&&, const ThrowingValue<Spec>&) = delete;
629 template <typename T, AllocSpec Spec = AllocSpec::kEverythingThrows>
632 return static_cast<bool>(Spec & spec); in IsSpecified()
647 std::integral_constant<bool, Spec
[all...]
/third_party/curl/tests/
H A Dsshhelp.pm70 use File::Spec;
252 my $file = File::Spec->catfile($_, $fn);
270 my $file = File::Spec->catfile($_, $fn);
286 push(@spath, File::Spec->path());
298 push(@hpath, File::Spec->path());
/third_party/vk-gl-cts/modules/gles3/stress/
H A Des3sVertexArrayTests.cpp90 MultiVertexArrayTest::Spec::ArraySpec arraySpec(inputTypes[inputTypeNdx], in init()
101 MultiVertexArrayTest::Spec spec; in init()
195 MultiVertexArrayTest::Spec::ArraySpec arraySpec(m_type, in init()
206 MultiVertexArrayTest::Spec spec; in init()
298 MultiVertexArrayTest::Spec::ArraySpec arraySpec(m_type, in init()
309 MultiVertexArrayTest::Spec spec; in init()
399 MultiVertexArrayTest::Spec::ArraySpec arraySpec(m_type, in init()
410 MultiVertexArrayTest::Spec spec; in init()
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/
H A Draw_hash_set_allocator_test.cc39 int Spec = kPropagateOnCopy | kPropagateOnMove | kPropagateOnSwap>
53 CheckedAlloc(const CheckedAlloc<U, Spec>& that) in CheckedAlloc()
58 using other = CheckedAlloc<U, Spec>;
62 std::integral_constant<bool, (Spec & kPropagateOnCopy) != 0>;
65 std::integral_constant<bool, (Spec & kPropagateOnMove) != 0>;
68 std::integral_constant<bool, (Spec & kPropagateOnSwap) != 0>;
71 if (Spec & kPropagateOnCopy) return *this; in select_on_container_copy_construction()
173 template <int Spec>
175 using Alloc = CheckedAlloc<Tracked<int32_t>, Spec>;
/third_party/node/deps/openssl/openssl/providers/common/der/
H A Doids_to_c.pm15 use File::Spec;
72 my $input = File::Spec->catfile($opts{dir}, $file);

Completed in 72 milliseconds

123456