/third_party/spirv-tools/tools/util/ |
H A D | flags.h | 111 #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 D | arg_settings.rs | 30 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 D | inferenceOptionalProperties.js | 10 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 D | inferenceOptionalPropertiesStrict.js | 10 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 D | mappedTypesArraysTuples.js | 7 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 D | requiredMappedTypeModifierTrumpsVariance.js | 2 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 D | mappedTypes6.js | 22 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 D | identicalTypesNoDifferByCheckOrder.js | 8 type SomePropsX = Required<Pick<SomeProps, "x">> & Omit<SomeProps, "x">; 16 type SomePropsCloneX = Required<Pick<SomePropsClone, "x">> & Omit<SomePropsClone, "x">;
|
H A D | twiceNestedKeyofIndexInference.js | 3 [SK1 in K1]-?: Required<Pick<T, SK1>>; 7 [SK1 in K1]-?: Required<{
|
H A D | indexingTypesWithNever.js | 59 ? ({} 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 D | DAGDeltaAlgorithm.cpp | 119 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 D | YAMLTraits.cpp | 151 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 D | AMDGPUMetadataVerifier.h | 42 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 D | AMDGPUMetadataVerifier.cpp | 67 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.py | 11 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 D | ScoreboardHazardRecognizer.cpp | 147 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 D | Pass.cpp | 270 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 D | DispatchStage.cpp | 162 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 D | PassAnalysisSupport.h | 51 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 D | MCAsmMacro.cpp | 17 if (Required) in dump()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
H A D | DAGDeltaAlgorithm.h | 70 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 D | YAMLTraits.h | 640 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 D | MCAsmMacro.h | 132 bool Required = false; member
|
H A D | MCInstrItineraries.h | 60 Required = 0, enumerator
|
/third_party/skia/tools/gpu/gl/interface/ |
H A D | gen_interface.go | 56 Required bool `json:"required"` 178 if feature.Required && reqs[0] != CORE_REQUIREMENT { 180 SkASSERT(false); // Required feature
|