Home
last modified time | relevance | path

Searched full:typed (Results 1 – 25 of 5050) sorted by relevance

12345678910>>...202

/aosp_15_r20/external/mesa3d/src/intel/compiler/tests/gen9/
H A Dsends.asm2 …dp data 1 MsgDesc: ( DC typed surface write, Surface = 1, SIMD16, Mask = 0x0) mlen 2 ex_mlen 4 rle…
4 …dp data 1 MsgDesc: ( DC typed surface write, Surface = 1, SIMD8, Mask = 0x0) mlen 2 ex_mlen 4 rlen…
6 …dp data 1 MsgDesc: ( DC typed surface write, Surface = 1, SIMD16, Mask = 0x0) mlen 2 ex_mlen 4 rle…
16 …dp data 1 MsgDesc: ( DC typed surface write, Surface = 2, SIMD16, Mask = 0x0) mlen 2 ex_mlen 4 rle…
18 …dp data 1 MsgDesc: ( DC typed surface write, Surface = 2, SIMD8, Mask = 0x0) mlen 2 ex_mlen 4 rlen…
26 …dp data 1 MsgDesc: ( DC typed surface write, Surface = 1, SIMD16, Mask = 0xe) mlen 2 ex_mlen 1 rle…
28 …dp data 1 MsgDesc: ( DC typed surface write, Surface = 1, SIMD8, Mask = 0xe) mlen 2 ex_mlen 1 rlen…
30 …dp data 1 MsgDesc: ( DC typed atomic, Surface = 1, SIMD16, umax) mlen 2 ex_mlen 1 rlen 0 { align1 …
32 …dp data 1 MsgDesc: ( DC typed atomic, Surface = 1, SIMD8, umax) mlen 2 ex_mlen 1 rlen 0 { align1 2…
34 …dp data 1 MsgDesc: ( DC typed atomic, Surface = 1, SIMD16, mov) mlen 2 ex_mlen 1 rlen 0 { align1 1…
[all …]
/aosp_15_r20/external/python/cachetools/src/cachetools/
Dfunc.py44 def _cache(cache, typed): argument
48 key = keys.typedkey if typed else keys.hashkey
85 wrapper.cache_parameters = lambda: {"maxsize": maxsize, "typed": typed}
92 def fifo_cache(maxsize=128, typed=False): argument
99 return _cache(_UnboundCache(), typed)
101 return _cache(FIFOCache(128), typed)(maxsize)
103 return _cache(FIFOCache(maxsize), typed)
106 def lfu_cache(maxsize=128, typed=False): argument
113 return _cache(_UnboundCache(), typed)
115 return _cache(LFUCache(128), typed)(maxsize)
[all …]
/aosp_15_r20/cts/tests/tests/proto/src/android/util/proto/cts/
H A DProtoOutputStreamSwitchedWriteTest.java31 * Tests that the write() functions produce the same values as their typed counterparts.
46 private static final HashMap<Long,WriteTester> TYPED = new HashMap<Long,WriteTester>(); field in ProtoOutputStreamSwitchedWriteTest
50 TYPED.put(FIELD_TYPE_DOUBLE | FIELD_COUNT_SINGLE,
57 TYPED.put(FIELD_TYPE_FLOAT | FIELD_COUNT_SINGLE,
64 TYPED.put(FIELD_TYPE_INT32 | FIELD_COUNT_SINGLE,
71 TYPED.put(FIELD_TYPE_INT64 | FIELD_COUNT_SINGLE,
78 TYPED.put(FIELD_TYPE_UINT32 | FIELD_COUNT_SINGLE,
85 TYPED.put(FIELD_TYPE_UINT64 | FIELD_COUNT_SINGLE,
92 TYPED.put(FIELD_TYPE_SINT32 | FIELD_COUNT_SINGLE,
99 TYPED.put(FIELD_TYPE_SINT64 | FIELD_COUNT_SINGLE,
[all …]
/aosp_15_r20/frameworks/libs/modules-utils/java/com/android/modules/utils/
DTypedXmlPullParser.java60 * @return decoded strongly-typed {@link #getAttributeValue}
66 * @return decoded strongly-typed {@link #getAttributeValue}
72 * @return decoded strongly-typed {@link #getAttributeValue}
78 * @return decoded strongly-typed {@link #getAttributeValue}
84 * @return decoded strongly-typed {@link #getAttributeValue}
90 * @return decoded strongly-typed {@link #getAttributeValue}
96 * @return decoded strongly-typed {@link #getAttributeValue}
102 * @return decoded strongly-typed {@link #getAttributeValue}
108 * @return decoded strongly-typed {@link #getAttributeValue}
114 * @return decoded strongly-typed {@link #getAttributeValue}
[all …]
DTypedXmlSerializer.java40 * Encode the given strongly-typed value and serialize using
47 * Encode the given strongly-typed value and serialize using
54 * Encode the given strongly-typed value and serialize using
61 * Encode the given strongly-typed value and serialize using
68 * Encode the given strongly-typed value and serialize using
75 * Encode the given strongly-typed value and serialize using
82 * Encode the given strongly-typed value and serialize using
89 * Encode the given strongly-typed value and serialize using
96 * Encode the given strongly-typed value and serialize using
/aosp_15_r20/external/rust/android-crates-io/crates/clap/examples/
Dtyped-derive.md5 $ typed-derive --help
6 Usage: typed-derive[EXE] [OPTIONS]
22 $ typed-derive -O 1
25 $ typed-derive -O plaid
35 $ typed-derive -I../hello
42 $ typed-derive --bind 192.0.0.1
45 $ typed-derive --bind localhost
55 $ typed-derive --sleep 10s
58 $ typed-derive --sleep forever
68 $ typed-derive -D Foo=10 -D Alice=30
[all …]
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/clap-4.5.4/examples/
H A Dtyped-derive.md5 $ typed-derive --help
6 Usage: typed-derive[EXE] [OPTIONS]
22 $ typed-derive -O 1
25 $ typed-derive -O plaid
35 $ typed-derive -I../hello
42 $ typed-derive --bind 192.0.0.1
45 $ typed-derive --bind localhost
55 $ typed-derive --sleep 10s
58 $ typed-derive --sleep forever
68 $ typed-derive -D Foo=10 -D Alice=30
[all …]
/aosp_15_r20/external/perfetto/ui/src/plugins/dev.perfetto.RecordTrace/
H A Dconsumer_port_types.ts23 export interface Typed { interface
36 export function isTyped(obj: object): obj is Typed {
40 export interface ReadBuffersResponse extends Typed, IReadBuffersResponse {}
41 export interface EnableTracingResponse extends Typed, IEnableTracingResponse {}
42 export interface GetTraceStatsResponse extends Typed, IGetTraceStatsResponse {}
43 export interface FreeBuffersResponse extends Typed, IFreeBuffersResponse {}
44 export interface GetCategoriesResponse extends Typed {}
46 extends Typed,
57 export function isReadBuffersResponse(obj: Typed): obj is ReadBuffersResponse {
62 obj: Typed,
[all …]
/aosp_15_r20/external/aws-sdk-java-v2/services/clouddirectory/src/main/resources/codegen-resources/
H A Dservice-2.json152typed link to a specified source and target object. For more information, see <a href=\"https://do…
329 …veloperguide/directory_objects_links.html#directory_objects_links_typedlink\">Typed Links</a>.</p>"
437 …veloperguide/directory_objects_links.html#directory_objects_links_typedlink\">Typed Links</a>.</p>"
525typed link from a specified source and target object. For more information, see <a href=\"https://…
649 "documentation":"<p>Retrieves attributes that are associated with a typed link.</p>"
735 …veloperguide/directory_objects_links.html#directory_objects_links_typedlink\">Typed Links</a>.</p>"
884typed link facet and identity attributes. For more information, see <a href=\"https://docs.aws.ama…
1063typed link facet and identity attributes. For more information, see <a href=\"https://docs.aws.ama…
1150 …veloperguide/directory_objects_links.html#directory_objects_links_typedlink\">Typed Links</a>.</p>"
1171 …veloperguide/directory_objects_links.html#directory_objects_links_typedlink\">Typed Links</a>.</p>"
[all …]
/aosp_15_r20/external/pytorch/torch/profiler/
H A D_memory_profiler.py166 node.typed[0] == _EventType.TorchOp
167 and node.typed[1].scope == RecordScope.BACKWARD_FUNCTION
171 and children[0].typed[0] == _EventType.TorchOp
173 and children[0].typed[1].inputs
174 and isinstance(children[0].typed[1].inputs[0], _TensorMetadata)
176 yield None, TensorKey.from_tensor(children[0].typed[1].inputs[0])
182 elif node.typed[0] == _EventType.PyCall:
183 typed_fields = node.typed[1]
211 if event.typed[0] == _EventType.TorchOp:
212 scopes.append(event.typed[1].scope)
[all …]
/aosp_15_r20/external/rust/android-crates-io/extra_versions/crates/clap/examples/
Dtyped-derive.md5 $ typed-derive --help
9 typed-derive[EXE] [OPTIONS]
23 $ typed-derive -O 1
26 $ typed-derive -O plaid
36 $ typed-derive -I../hello
43 $ typed-derive --bind 192.0.0.1
46 $ typed-derive --bind localhost
56 $ typed-derive --sleep 10s
59 $ typed-derive --sleep forever
69 $ typed-derive -D Foo=10 -D Alice=30
[all …]
/aosp_15_r20/tools/asuite/atest/test_finders/
H A Dtest_filter_utils.py22 GTEST_TYPED = 'typed test'
23 GTEST_TYPED_PARAM = 'typed-parameterized test'
101 'methods': {'m1', 'm2'}, 'prefixes': {'pfx1'}, 'typed': True},
103 'methods': {'m3', 'm4'}, 'prefixes': set(), 'typed': False},
105 'methods': {'m5', 'm6'}, 'prefixes': set(), 'typed': True},
107 'methods': {'m7', 'm8'}, 'prefixes': {'pfx3'}, 'typed': False}}
109 classA is a typed-parameterized test. (TYPED_TEST_SUITE_P)
111 classC is a typed test. (TYPED_TEST_SUITE)
132 cls, {'methods': set(), 'prefixes': set(), 'typed': False}
154 # Typed test
[all …]
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/syn-1.0.109/tests/
H A Dtest_receiver.rs9 Some(FnArg::Typed(_)) => (), in test_by_value()
10 value => panic!("expected FnArg::Typed, got {:?}", value), in test_by_value()
20 Some(FnArg::Typed(_)) => (), in test_by_mut_value()
21 value => panic!("expected FnArg::Typed, got {:?}", value), in test_by_mut_value()
31 Some(FnArg::Typed(_)) => (), in test_by_ref()
32 value => panic!("expected FnArg::Typed, got {:?}", value), in test_by_ref()
42 Some(FnArg::Typed(_)) => (), in test_by_box()
43 value => panic!("expected FnArg::Typed, got {:?}", value), in test_by_box()
53 Some(FnArg::Typed(_)) => (), in test_by_pin()
54 value => panic!("expected FnArg::Typed, got {:?}", value), in test_by_pin()
[all …]
/aosp_15_r20/art/test/569-checker-pattern-replacement/src/
H A DMain.java62 // Note: The ArtMethod* (typed as int or long) is optional after sharpening.
358 // Note: The ArtMethod* (typed as int or long) is optional after sharpening.
370 // Note: The ArtMethod* (typed as int or long) is optional after sharpening.
387 // Note: The ArtMethod* (typed as int or long) is optional after sharpening.
412 // Note: The ArtMethod* (typed as int or long) is optional after sharpening.
429 // Note: The ArtMethod* (typed as int or long) is optional after sharpening.
454 // Note: The ArtMethod* (typed as int or long) is optional after sharpening.
475 // Note: The ArtMethod* (typed as int or long) is optional after sharpening.
505 // Note: The ArtMethod* (typed as int or long) is optional after sharpening.
539 // Note: The ArtMethod* (typed as int or long) is optional after sharpening.
[all …]
/aosp_15_r20/external/mesa3d/src/intel/compiler/elk/tests/gen7/
H A Dsend.asm312 … render MsgDesc: typed surface read MsgCtrl = 0x14 Surface = 1 mlen 3 rlen 1 { align1 1Q };
314 … render MsgDesc: typed surface write MsgCtrl = 0x14 Surface = 1 mlen 4 rlen 0 { align1 1Q };
316 … render MsgDesc: typed surface read MsgCtrl = 0x46 Surface = 1 mlen 3 rlen 1 { align1 2Q };
318 … render MsgDesc: typed surface write MsgCtrl = 0x46 Surface = 1 mlen 4 rlen 0 { align1 2Q };
320 … render MsgDesc: typed atomic op MsgCtrl = 0x5 Surface = 1 mlen 3 rlen 0 { align1 1Q };
322 … render MsgDesc: typed atomic op MsgCtrl = 0x21 Surface = 1 mlen 3 rlen 0 { align1 2Q };
324 … render MsgDesc: typed atomic op MsgCtrl = 0x12 Surface = 1 mlen 4 rlen 0 { align1 1Q };
326 … render MsgDesc: typed atomic op MsgCtrl = 0x28 Surface = 1 mlen 4 rlen 0 { align1 2Q };
328 … render MsgDesc: typed atomic op MsgCtrl = 0x4 Surface = 1 mlen 4 rlen 0 { align1 1Q };
330 … render MsgDesc: typed atomic op MsgCtrl = 0x20 Surface = 1 mlen 4 rlen 0 { align1 2Q };
[all …]
/aosp_15_r20/external/flatbuffers/python/flatbuffers/
H A Dflexbuffers.py181 VECTOR_INT = 11 # Typed any size (stores no type table).
189 VECTOR_INT2 = 16 # Typed tuple (no type table, no size field).
192 VECTOR_INT3 = 19 # Typed triple (no type table, no size field).
195 VECTOR_INT4 = 22 # Typed quad (no type table, no size field).
227 raise ValueError('must be typed vector type')
242 raise ValueError('must be fixed typed vector type')
254 fixed_len: number of elements: 0 for typed vector; 2, 3, or 4 for fixed
255 typed vector.
258 Typed vector type or fixed typed vector type.
262 raise ValueError('must be typed vector element type')
[all …]
/aosp_15_r20/external/flatbuffers/kotlin/flatbuffers-kotlin/src/commonMain/kotlin/com/google/flatbuffers/kotlin/
H A DFlexBuffersBuilder.kt228 * Adds a [IntArray] into the message as a typed vector of fixed size.
235 * Adds a [IntArray] into the message as a typed vector of fixed size. in put()
244 * Adds a [ShortArray] into the message as a typed vector of fixed size.
251 * Adds a [ShortArray] into the message as a typed vector of fixed size. in put()
260 * Adds a [LongArray] into the message as a typed vector of fixed size.
267 * Adds a [LongArray] into the message as a typed vector of fixed size. in put()
276 * Adds a [FloatArray] into the message as a typed vector of fixed size.
283 * Adds a [FloatArray] into the message as a typed vector of fixed size. in put()
292 * Adds a [DoubleArray] into the message as a typed vector of fixed size.
299 * Adds a [DoubleArray] into the message as a typed vector of fixed size. in put()
[all …]
/aosp_15_r20/external/mesa3d/src/intel/compiler/elk/tests/gen7.5/
H A Dsend.asm346 …dp data 1 MsgDesc: ( DC typed surface read, Surface = 1, SIMD16, Mask = 0x0) mlen 3 rlen 4 { align…
348 …dp data 1 MsgDesc: ( DC typed surface write, Surface = 2, SIMD16, Mask = 0x0) mlen 7 rlen 0 { alig…
350 …dp data 1 MsgDesc: ( DC typed surface read, Surface = 1, SIMD8, Mask = 0x0) mlen 3 rlen 4 { align1…
352 …dp data 1 MsgDesc: ( DC typed surface write, Surface = 2, SIMD8, Mask = 0x0) mlen 7 rlen 0 { align…
464 …dp data 1 MsgDesc: ( DC typed surface read, Surface = 1, SIMD16, Mask = 0x0) mlen 4 rlen 4 { align…
466 …dp data 1 MsgDesc: ( DC typed surface read, Surface = 1, SIMD8, Mask = 0x0) mlen 4 rlen 4 { align1…
584 …dp data 1 MsgDesc: ( DC typed surface read, Surface = 1, SIMD16, Mask = 0xe) mlen 3 rlen 1 { align…
586 …dp data 1 MsgDesc: ( DC typed surface write, Surface = 1, SIMD16, Mask = 0xe) mlen 4 rlen 0 { alig…
588 …dp data 1 MsgDesc: ( DC typed surface read, Surface = 1, SIMD8, Mask = 0xe) mlen 3 rlen 1 { align1…
590 …dp data 1 MsgDesc: ( DC typed surface write, Surface = 1, SIMD8, Mask = 0xe) mlen 4 rlen 0 { align…
[all …]
/aosp_15_r20/external/python/typing_extensions/.github/workflows/
Dthird_party.yml220 typed-argument-parser:
221 name: typed-argument-parser tests
239 - name: Check out typed-argument-parser
242 repository: swansonk14/typed-argument-parser
243 path: typed-argument-parser
254 - name: Configure git for typed-argument-parser tests
255 # typed-argument parser does this in their CI,
260 - name: Install typed-argument-parser test requirements
262 cd typed-argument-parser
263 …uv pip install --system "typed-argument-parser @ ." --exclude-newer $(git show -s --date=format:'…
[all …]
/aosp_15_r20/external/pytorch/torch/csrc/distributed/c10d/
H A DProcessGroup.hpp134 .typed< in broadcast()
160 .typed< in allreduce()
181 .typed<c10::intrusive_ptr<::c10d::Work>( in allreduce_coalesced()
199 .typed<c10::intrusive_ptr<::c10d::Work>( in reduce()
221 .typed<std::tuple< in allgather()
247 .typed<std::tuple<at::Tensor, c10::intrusive_ptr<Work>>( in _allgather_base()
273 .typed<c10::intrusive_ptr<Work>( in allgather_coalesced()
294 .typed<c10::intrusive_ptr<Work>( in allgather_into_tensor_coalesced()
311 .typed<c10::intrusive_ptr<::c10d::Work>( in gather()
332 .typed< in scatter()
[all …]
/aosp_15_r20/external/tensorflow/tensorflow/compiler/mlir/tosa/g3doc/
H A Dlegalization.md3348 If input/output tensors are all non-quantized typed,
3356 If input/output tensors are all quantized typed,
3418 If input/output tensors are all non-quantized typed,
3432 If input/output tensors are all quantized typed,
3482 If input/output tensors are all non-quantized typed,
3520 If input/output tensors are all non-quantized typed,
3543 If input/output tensors are all quantized typed,
3609 If input/output tensors are all non-quantized typed,
3632 If input/output tensors are all quantized typed,
3686 If input/output tensors are all non-quantized typed,
[all …]
/aosp_15_r20/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/util/
H A DTypeKey.java21 * if it has, it is "typed"
34 public TypeKey(Class<?> key, boolean typed) { in TypeKey() argument
37 _isTyped = typed; in TypeKey()
38 _hashCode = typed ? typedHash(key) : untypedHash(key); in TypeKey()
41 public TypeKey(JavaType key, boolean typed) { in TypeKey() argument
44 _isTyped = typed; in TypeKey()
45 _hashCode = typed ? typedHash(key) : untypedHash(key); in TypeKey()
108 return "{class: "+_class.getName()+", typed? "+_isTyped+"}"; in toString()
110 return "{type: "+_type+", typed? "+_isTyped+"}"; in toString()
/aosp_15_r20/external/flatbuffers/rust/flexbuffers/src/
H A Dflexbuffer_type.rs18 /// heterogenous maps, heterogenous vectors, typed vectors, and fixed length
19 /// typed vectors for some lengths and types. Rust types are converted into
29 /// * Typed vectors do not store this extra type information and fixed length
30 /// typed vectors do not store length. Whether a vector is stored as a typed
31 /// vector or fixed length typed vector is determined dymaically from the
35 /// indirect numbers instead of their inline counterparts in maps and typed
134 /// Returns true if called on a map, vector, typed vector, or fixed length typed vector.
144 /// Returns true if called on a fixed length typed vector.
171 /// Returns true if self is a Map or Vector. Typed vectors are not heterogenous.
/aosp_15_r20/external/android_onboarding/java/com/android/onboarding/contracts/fragment/
H A DOnboardingFragment.kt29 * Sets the typed argument that is given by the onboarding contract.
31 * @param argument The typed argument.
38 * Gets the typed argument that is given by the onboarding contract.
40 * @return The typed argument.
47 * Performs the setting of the typed argument of the onboarding contract.
49 * @param args The typed argument that would be set in the bundle of fragment argument.
55 * Performs the extraction of the typed argument of the onboarding contract.
58 * @return The typed argument that would be extracted from the bundle of fragment argument.
/aosp_15_r20/external/bazel-skylib/rules/
H A Dcommon_settings.bzl18 For label-typed settings, use the native label_flag and label_setting rules.
70 doc = "An int-typed build setting that can be set on the command line",
79 doc = "An int-typed build setting that cannot be set on the command line",
85 doc = "A bool-typed build setting that can be set on the command line",
91 doc = "A bool-typed build setting that cannot be set on the command line",
97 doc = "A string list-typed build setting that can be set on the command line",
103 doc = "A string list-typed build setting that cannot be set on the command line",
132 doc = "A string-typed build setting that can be set on the command line",
144 doc = "A string-typed build setting that cannot be set on the command line",

12345678910>>...202