Home
last modified time | relevance | path

Searched refs:Required (Results 1 - 25 of 50) sorted by relevance

12

/third_party/spirv-tools/tools/util/
H A Dflags.h111 #define FLAG_LONG_string(Name, Default, Required) \
112 UTIL_FLAGS_FLAG_LONG(std::string, Name, Default, Required)
113 #define FLAG_LONG_bool(Name, Default, Required) \
114 UTIL_FLAGS_FLAG_LONG(bool, Name, Default, Required)
115 #define FLAG_LONG_uint(Name, Default, Required) \
116 UTIL_FLAGS_FLAG_LONG(uint32_t, Name, Default, Required)
118 #define FLAG_SHORT_string(Name, Default, Required) \
119 UTIL_FLAGS_FLAG_SHORT(std::string, Name, Default, Required)
120 #define FLAG_SHORT_bool(Name, Default, Required) \
121 UTIL_FLAGS_FLAG_SHORT(bool, Name, Default, Required)
[all...]
/third_party/rust/crates/clap/src/builder/
H A Darg_settings.rs30 Required,
78 Required => Flags::REQUIRED,
106 let m = Arg::new("setting").setting(ArgSettings::Required); in setting()
112 let m = Arg::new("unset_setting").setting(ArgSettings::Required); in unset_setting()
115 let m = m.unset_setting(ArgSettings::Required); in unset_setting()
122 .setting(ArgSettings::Required | ArgSettings::Hidden | ArgSettings::Last); in setting_bitor()
132 .setting(ArgSettings::Required) in unset_setting_bitor()
140 let m = m.unset_setting(ArgSettings::Required | ArgSettings::Hidden | ArgSettings::Last); in unset_setting_bitor()
/third_party/typescript/tests/baselines/reference/
H A DinferenceOptionalProperties.js10 var v1: Required<{ a?: string, b?: number }>;
13 var v2: Required<{ a?: string, b?: number | undefined }>;
22 var v5: Required<Partial<{ a: string, b: string }>>;
25 var v6: Required<Partial<{ a: string, b: string | undefined }>>;
61 declare var v1: Required<{
69 declare var v2: Required<{
93 declare var v5: Required<Partial<{
101 declare var v6: Required<Partial<{
H A DinferenceOptionalPropertiesStrict.js10 var v1: Required<{ a?: string, b?: number }>;
13 var v2: Required<{ a?: string, b?: number | undefined }>;
22 var v5: Required<Partial<{ a: string, b: string }>>;
25 var v6: Required<Partial<{ a: string, b: string | undefined }>>;
61 declare var v1: Required<{
69 declare var v2: Required<{
93 declare var v5: Required<Partial<{
101 declare var v6: Required<Partial<{
H A DmappedTypesArraysTuples.js7 type T02 = Required<[number, string?, ...boolean[]]>;
11 type T12 = Required<string[]>;
14 type T15 = Required<ReadonlyArray<string>>;
18 type T22 = Required<(string | undefined)[]>;
21 type T25 = Required<ReadonlyArray<string | undefined>>;
37 type T54 = ReadWrite<Required<T53>>;
136 type T02 = Required<[number, string?, ...boolean[]]>;
139 type T12 = Required<string[]>;
142 type T15 = Required<ReadonlyArray<string>>;
145 type T22 = Required<(strin
[all...]
H A DrequiredMappedTypeModifierTrumpsVariance.js2 const a: Required<{ a?: 1; x: 1 }> = { a: 1, x: 1 };
3 const b: Required<{ b?: 1; x: 1 }> = { b: 1, x: 1 };
9 a.b; // Property 'b' does not exist on type 'Required<{ a?: 1; x: 1; }>'.
10 b.a; // Property 'a' does not exist on type 'Required<{ b?: 1; x: 1; }>'.
13 a: Required<T>;
22 aa.a.b; // Property 'b' does not exist on type 'Required<{ a?: 1; x: 1; }>'.
23 bb.a.a; // Property 'a' does not exist on type 'Required<{ b?: 1; x: 1; }>'.
35 a.b; // Property 'b' does not exist on type 'Required<{ a?: 1; x: 1; }>'.
36 b.a; // Property 'a' does not exist on type 'Required<{ b?: 1; x: 1; }>'.
43 aa.a.b; // Property 'b' does not exist on type 'Required<{
[all...]
H A DmappedTypes6.js22 function f1<T>(x: Required<T>, y: T, z: Partial<T>) {
36 function f2<T>(w: Denullified<T>, x: Required<T>, y: T, z: Partial<T>) {
56 function f3<T>(w: Denullified<T>, x: Required<T>, y: T, z: Partial<T>) {
98 declare let x2: Required<Foo>;
249 declare function f1<T>(x: Required<T>, y: T, z: Partial<T>): void;
253 declare function f2<T>(w: Denullified<T>, x: Required<T>, y: T, z: Partial<T>): void;
254 declare function f3<T>(w: Denullified<T>, x: Required<T>, y: T, z: Partial<T>): void;
266 declare let x2: Required<Foo>;
H A DidenticalTypesNoDifferByCheckOrder.js8 type SomePropsX = Required<Pick<SomeProps, "x">> & Omit<SomeProps, "x">;
16 type SomePropsCloneX = Required<Pick<SomePropsClone, "x">> & Omit<SomePropsClone, "x">;
H A DtwiceNestedKeyofIndexInference.js3 [SK1 in K1]-?: Required<Pick<T, SK1>>;
7 [SK1 in K1]-?: Required<{
H A DindexingTypesWithNever.js59 ? ({} extends Exp ? Match<Required<Exp>, Required<Act>> : "Match")
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DDAGDeltaAlgorithm.cpp119 const changeset_ty &Required) { in UpdatedSearchState()
120 DDA.UpdatedSearchState(Changes, Sets, Required); in UpdatedSearchState()
144 /// \p Required changes from the cache, executing the test if necessary.
148 /// \param Required - The set of changes which have previously been
151 bool GetTestResult(const changeset_ty &Changes, const changeset_ty &Required);
158 const changeset_ty &Required; member in __anon24311::DeltaActiveSetHelper
164 DDAI.UpdatedSearchState(Changes, Sets, Required);
168 return DDAI.GetTestResult(S, Required);
173 const changeset_ty &Required) in DeltaActiveSetHelper()
174 : DDAI(DDAI), Required(Require in DeltaActiveSetHelper()
117 UpdatedSearchState(const changeset_ty &Changes, const changesetlist_ty &Sets, const changeset_ty &Required) UpdatedSearchState() argument
172 DeltaActiveSetHelper(DAGDeltaAlgorithmImpl &DDAI, const changeset_ty &Required) DeltaActiveSetHelper() argument
290 GetTestResult(const changeset_ty &Changes, const changeset_ty &Required) GetTestResult() argument
314 changeset_ty Required; Run() local
[all...]
H A DYAMLTraits.cpp151 bool Input::preflightKey(const char *Key, bool Required, bool, bool &UseDefault, in preflightKey() argument
160 if (Required) in preflightKey()
167 if (Required || !isa<EmptyHNode>(CurrentNode)) in preflightKey()
174 if (Required) in preflightKey()
498 bool Output::preflightKey(const char *Key, bool Required, bool SameAsDefault, in preflightKey() argument
501 if (Required || !SameAsDefault || WriteDefaultValues) { in preflightKey()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/
H A DAMDGPUMetadataVerifier.h42 bool verifyEntry(msgpack::MapDocNode &MapNode, StringRef Key, bool Required,
45 verifyScalarEntry(msgpack::MapDocNode &MapNode, StringRef Key, bool Required,
49 bool Required);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/BinaryFormat/
H A DAMDGPUMetadataVerifier.cpp67 msgpack::MapDocNode &MapNode, StringRef Key, bool Required, in verifyEntry()
71 return !Required; in verifyEntry()
76 msgpack::MapDocNode &MapNode, StringRef Key, bool Required, in verifyScalarEntry()
79 return verifyEntry(MapNode, Key, Required, [=](msgpack::DocNode &Node) { in verifyScalarEntry()
85 StringRef Key, bool Required) { in verifyIntegerEntry()
86 return verifyEntry(MapNode, Key, Required, [this](msgpack::DocNode &Node) { in verifyIntegerEntry()
66 verifyEntry( msgpack::MapDocNode &MapNode, StringRef Key, bool Required, function_ref<bool(msgpack::DocNode &)> verifyNode) verifyEntry() argument
75 verifyScalarEntry( msgpack::MapDocNode &MapNode, StringRef Key, bool Required, msgpack::Type SKind, function_ref<bool(msgpack::DocNode &)> verifyValue) verifyScalarEntry() argument
84 verifyIntegerEntry(msgpack::MapDocNode &MapNode, StringRef Key, bool Required) verifyIntegerEntry() argument
/third_party/python/Lib/test/
H A D_typed_dict_helper.py11 between the __future__ import, Annotated, and Required.
16 from typing import Annotated, Generic, Optional, Required, TypedDict, TypeVar namespace
30 a: Annotated[Annotated[Annotated[Required[int], "a"], "b"], "c"]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
H A DScoreboardHazardRecognizer.cpp147 case InstrStage::Required: in getHazardType()
148 // Required FUs conflict with both reserved and required ones in getHazardType()
198 case InstrStage::Required: in EmitInstruction()
199 // Required FUs conflict with both reserved and required ones in EmitInstruction()
215 if (IS->getReservationKind() == InstrStage::Required) in EmitInstruction()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
H A DPass.cpp270 Required.push_back(ID); in addRequiredID()
275 Required.push_back(&ID); in addRequiredID()
280 Required.push_back(&ID); in addRequiredTransitiveID()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MCA/Stages/
H A DDispatchStage.cpp162 unsigned Required = std::min(NumMicroOps, DispatchWidth); in isAvailable() local
163 if (Required > AvailableEntries) in isAvailable()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/
H A DPassAnalysisSupport.h51 SmallVector<AnalysisID, 8> Required; member in llvm::AnalysisUsage
134 const VectorType &getRequiredSet() const { return Required; } in getRequiredSet()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
H A DMCAsmMacro.cpp17 if (Required) in dump()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DDAGDeltaAlgorithm.h70 const changeset_ty &Required) {} in UpdatedSearchState()
68 UpdatedSearchState(const changeset_ty &Changes, const changesetlist_ty &Sets, const changeset_ty &Required) UpdatedSearchState() argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DYAMLTraits.h640 this->processKeyWithDefault(Key, Val, Optional<T>(), /*Required=*/false, in mapOptionalWithContext()
659 const Optional<T> &DefaultValue, bool Required, in processKeyWithDefault()
668 if (this->preflightKey(Key, Required, sameAsDefault, UseDefault, in processKeyWithDefault()
670 yamlize(*this, Val.getValue(), Required, Ctx); in processKeyWithDefault()
680 bool Required, Context &Ctx) { in processKeyWithDefault()
684 if ( this->preflightKey(Key, Required, sameAsDefault, UseDefault, in processKeyWithDefault()
686 yamlize(*this, Val, Required, Ctx); in processKeyWithDefault()
696 void processKey(const char *Key, T &Val, bool Required, Context &Ctx) { in processKey() argument
699 if ( this->preflightKey(Key, Required, false, UseDefault, SaveInfo) ) { in processKey()
700 yamlize(*this, Val, Required, Ct in processKey()
658 processKeyWithDefault(const char *Key, Optional<T> &Val, const Optional<T> &DefaultValue, bool Required, Context &Ctx) processKeyWithDefault() argument
679 processKeyWithDefault(const char *Key, T &Val, const T &DefaultValue, bool Required, Context &Ctx) processKeyWithDefault() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/
H A DMCAsmMacro.h132 bool Required = false; member
H A DMCInstrItineraries.h60 Required = 0, enumerator
/third_party/skia/tools/gpu/gl/interface/
H A Dgen_interface.go56 Required bool `json:"required"`
178 if feature.Required && reqs[0] != CORE_REQUIREMENT {
180 SkASSERT(false); // Required feature

Completed in 12 milliseconds

12