Home
last modified time | relevance | path

Searched defs:List (Results 1 – 25 of 1571) sorted by relevance

12345678910>>...63

/aosp_15_r20/external/openthread/src/core/diags/
H A DREADME.md25 ### diag
34 ### diag start
44 ### diag channel
53 ### diag channel \<channel\>
63 ### diag cw start
72 ### diag cw stop
81 ### diag frame
94 ### diag stream start
103 ### diag stream stop
112 ### diag power
[all …]
/aosp_15_r20/prebuilts/go/linux-x86/src/container/list/
Dlist.go48 type List struct { struct
49 root Element // sentinel list element, only &root, root.prev, and root.next are used
50 len int // current list length excluding (this) sentinel element
54 func (l *List) Init() *List {
66 func (l *List) Len() int { return l.len }
69 func (l *List) Front() *Element {
77 func (l *List) Back() *Element {
85 func (l *List) lazyInit() {
92 func (l *List) insert(e, at *Element) *Element {
103 func (l *List) insertValue(v any, at *Element) *Element {
[all …]
/aosp_15_r20/external/pytorch/torch/distributed/pipelining/
H A Dschedules.py412 arg_mbs: Optional[List] = None,
413 kwarg_mbs: Optional[List] = None,
414 target_mbs: Optional[List] = None,
415 losses: Optional[List] = None,
428 def step(self, *args, target=None, losses: Optional[List] = None, **kwargs):
443 arg_mbs: Optional[List] = None,
444 kwarg_mbs: Optional[List] = None,
445 target_mbs: Optional[List] = None,
446 losses: Optional[List] = None,
590 def step(self, *args, target=None, losses: Optional[List] = None, **kwargs):
[all …]
/aosp_15_r20/external/openthread/src/cli/
H A DREADME_TCAT.md11 ### advid
21 ### advid ianapen \<id\>
30 ### advid oui24 \<id\>
39 ### advid oui36 \<id\>
48 ### advid discriminator \<id\>
57 ### advid clear
66 ### devid
76 ### devid \<id\>
85 ### devid clear
94 ### help
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/petgraph/src/
Dadj.rs155 pub struct List<E, Ix = DefaultIx> struct
162 impl<E, Ix: IndexType> List<E, Ix> { impl
324 impl<E, Ix: IndexType> Build for List<E, Ix> { implementation
396 impl<E, Ix> fmt::Debug for List<E, Ix> implementation
412 impl<E, Ix> visit::GraphBase for List<E, Ix> implementation
420 impl<E, Ix> visit::Visitable for List<E, Ix> implementation
434 impl<'a, E, Ix: IndexType> visit::IntoNodeIdentifiers for &'a List<E, Ix> { implementation
452 impl<'a, Ix: IndexType, E> visit::IntoNodeReferences for &'a List<E, Ix> { implementation
460 impl<E, Ix: IndexType> visit::Data for List<E, Ix> { implementation
465 impl<'a, E, Ix: IndexType> IntoNeighbors for &'a List<E, Ix> { implementation
[all …]
/aosp_15_r20/external/nanohttpd/core/src/test/java/fi/iki/elonen/
H A DHttpHeadRequestTest.java57 assertTrue(this.testServer.decodedParamters.get("foo") instanceof List); in testDecodingFieldWithEmptyValueAndFieldWithMissingValueGiveDifferentResults() local
59 assertTrue(this.testServer.decodedParamters.get("bar") instanceof List); in testDecodingFieldWithEmptyValueAndFieldWithMissingValueGiveDifferentResults() local
67 assertTrue(this.testServer.decodedParamters.get("foo") instanceof List); in testDecodingMixtureOfParameters() local
71 assertTrue(this.testServer.decodedParamters.get("zot") instanceof List); in testDecodingMixtureOfParameters() local
73 assertTrue(this.testServer.decodedParamters.get("zim") instanceof List); in testDecodingMixtureOfParameters() local
91 assertTrue(this.testServer.decodedParamters.get("foo") instanceof List); in testDecodingParametersWithSingleValue() local
94 assertTrue(this.testServer.decodedParamters.get("baz") instanceof List); in testDecodingParametersWithSingleValue() local
103 assertTrue(this.testServer.decodedParamters.get("foo") instanceof List); in testDecodingParametersWithSingleValueAndMissingValue() local
105 assertTrue(this.testServer.decodedParamters.get("baz") instanceof List); in testDecodingParametersWithSingleValueAndMissingValue() local
113 assertTrue(this.testServer.decodedParamters.get("foo") instanceof List); in testDecodingSingleFieldRepeated() local
H A DHttpGetRequestTest.java50 assertTrue(this.testServer.decodedParamters.get("foo") instanceof List); in testDecodingFieldWithEmptyValueAndFieldWithMissingValueGiveDifferentResults() local
52 assertTrue(this.testServer.decodedParamters.get("bar") instanceof List); in testDecodingFieldWithEmptyValueAndFieldWithMissingValueGiveDifferentResults() local
60 assertTrue(this.testServer.decodedParamters.get("foo") instanceof List); in testDecodingMixtureOfParameters() local
64 assertTrue(this.testServer.decodedParamters.get("zot") instanceof List); in testDecodingMixtureOfParameters() local
66 assertTrue(this.testServer.decodedParamters.get("zim") instanceof List); in testDecodingMixtureOfParameters() local
84 assertTrue(this.testServer.decodedParamters.get("foo") instanceof List); in testDecodingParametersWithSingleValue() local
87 assertTrue(this.testServer.decodedParamters.get("baz") instanceof List); in testDecodingParametersWithSingleValue() local
96 assertTrue(this.testServer.decodedParamters.get("foo") instanceof List); in testDecodingParametersWithSingleValueAndMissingValue() local
98 assertTrue(this.testServer.decodedParamters.get("baz") instanceof List); in testDecodingParametersWithSingleValueAndMissingValue() local
106 assertTrue(this.testServer.decodedParamters.get("foo") instanceof List); in testDecodingSingleFieldRepeated() local
/aosp_15_r20/external/clang/test/CodeGenCXX/
H A Dpragma-loop.cpp4 void while_test(int *List, int Length) { in while_test()
21 void do_test(int *List, int Length) { in do_test()
35 void for_test(int *List, int Length) { in for_test()
48 double List[100]; in for_range_test() local
58 void disable_test(int *List, int Length) { in disable_test()
71 void for_define_test(int *List, int Length, int Value) { in for_define_test()
81 void for_contant_expression_test(int *List, int Length) { in for_contant_expression_test()
97 void for_template_test(A *List, int Length, A Value) { in for_template_test()
107 void for_template_define_test(A *List, int Length, A Value) { in for_template_define_test()
121 void for_template_constant_expression_test(A *List, int Length) { in for_template_constant_expression_test()
[all …]
H A Dpragma-unroll.cpp4 void while_test(int *List, int Length) { in while_test()
17 void do_test(int *List, int Length) { in do_test()
30 void for_test(int *List, int Length) { in for_test()
42 double List[100]; in for_range_test() local
54 void for_define_test(int *List, int Length, int Value) { in for_define_test()
65 void for_template_test(A *List, int Length, A Value) { in for_template_test()
76 void for_template_define_test(A *List, int Length, A Value) { in for_template_define_test()
89 void template_test(double *List, int Length) { in template_test()
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Support/
H A DScopedPrinter.h253 void printList(StringRef Label, const ArrayRef<T> List) { in printList()
260 virtual void printList(StringRef Label, const ArrayRef<bool> List) { in printList()
264 virtual void printList(StringRef Label, const ArrayRef<std::string> List) { in printList()
268 virtual void printList(StringRef Label, const ArrayRef<uint64_t> List) { in printList()
272 virtual void printList(StringRef Label, const ArrayRef<uint32_t> List) { in printList()
276 virtual void printList(StringRef Label, const ArrayRef<uint16_t> List) { in printList()
280 virtual void printList(StringRef Label, const ArrayRef<uint8_t> List) { in printList()
287 virtual void printList(StringRef Label, const ArrayRef<int64_t> List) { in printList()
291 virtual void printList(StringRef Label, const ArrayRef<int32_t> List) { in printList()
295 virtual void printList(StringRef Label, const ArrayRef<int16_t> List) { in printList()
[all …]
/aosp_15_r20/external/angle/doc/
H A DContributingCode.md120 ### <a name="getting-started-with-gerrit"></a>Getting started with Gerrit for ANGLE
143 ### Making changes
183 ### Selecting reviewers
190 ### Rules for submission
203 ### Reverting a CL
226 ### Relanding a reverted CL
246 ### Committer status
254 ### OWNERS files and becoming an Owner
258 ### More info
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/llvm/Support/
DScopedPrinter.h273 void printList(StringRef Label, const ArrayRef<T> List) { in printList()
280 virtual void printList(StringRef Label, const ArrayRef<bool> List) { in printList()
284 virtual void printList(StringRef Label, const ArrayRef<std::string> List) { in printList()
288 virtual void printList(StringRef Label, const ArrayRef<uint64_t> List) { in printList()
292 virtual void printList(StringRef Label, const ArrayRef<uint32_t> List) { in printList()
296 virtual void printList(StringRef Label, const ArrayRef<uint16_t> List) { in printList()
300 virtual void printList(StringRef Label, const ArrayRef<uint8_t> List) { in printList()
307 virtual void printList(StringRef Label, const ArrayRef<int64_t> List) { in printList()
311 virtual void printList(StringRef Label, const ArrayRef<int32_t> List) { in printList()
315 virtual void printList(StringRef Label, const ArrayRef<int16_t> List) { in printList()
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/llvm/Support/
DScopedPrinter.h273 void printList(StringRef Label, const ArrayRef<T> List) { in printList()
280 virtual void printList(StringRef Label, const ArrayRef<bool> List) { in printList()
284 virtual void printList(StringRef Label, const ArrayRef<std::string> List) { in printList()
288 virtual void printList(StringRef Label, const ArrayRef<uint64_t> List) { in printList()
292 virtual void printList(StringRef Label, const ArrayRef<uint32_t> List) { in printList()
296 virtual void printList(StringRef Label, const ArrayRef<uint16_t> List) { in printList()
300 virtual void printList(StringRef Label, const ArrayRef<uint8_t> List) { in printList()
307 virtual void printList(StringRef Label, const ArrayRef<int64_t> List) { in printList()
311 virtual void printList(StringRef Label, const ArrayRef<int32_t> List) { in printList()
315 virtual void printList(StringRef Label, const ArrayRef<int16_t> List) { in printList()
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/llvm/Support/
DScopedPrinter.h273 void printList(StringRef Label, const ArrayRef<T> List) { in printList()
280 virtual void printList(StringRef Label, const ArrayRef<bool> List) { in printList()
284 virtual void printList(StringRef Label, const ArrayRef<std::string> List) { in printList()
288 virtual void printList(StringRef Label, const ArrayRef<uint64_t> List) { in printList()
292 virtual void printList(StringRef Label, const ArrayRef<uint32_t> List) { in printList()
296 virtual void printList(StringRef Label, const ArrayRef<uint16_t> List) { in printList()
300 virtual void printList(StringRef Label, const ArrayRef<uint8_t> List) { in printList()
307 virtual void printList(StringRef Label, const ArrayRef<int64_t> List) { in printList()
311 virtual void printList(StringRef Label, const ArrayRef<int32_t> List) { in printList()
315 virtual void printList(StringRef Label, const ArrayRef<int16_t> List) { in printList()
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/llvm/Support/
DScopedPrinter.h273 void printList(StringRef Label, const ArrayRef<T> List) { in printList()
280 virtual void printList(StringRef Label, const ArrayRef<bool> List) { in printList()
284 virtual void printList(StringRef Label, const ArrayRef<std::string> List) { in printList()
288 virtual void printList(StringRef Label, const ArrayRef<uint64_t> List) { in printList()
292 virtual void printList(StringRef Label, const ArrayRef<uint32_t> List) { in printList()
296 virtual void printList(StringRef Label, const ArrayRef<uint16_t> List) { in printList()
300 virtual void printList(StringRef Label, const ArrayRef<uint8_t> List) { in printList()
307 virtual void printList(StringRef Label, const ArrayRef<int64_t> List) { in printList()
311 virtual void printList(StringRef Label, const ArrayRef<int32_t> List) { in printList()
315 virtual void printList(StringRef Label, const ArrayRef<int16_t> List) { in printList()
[all …]
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/vendor/rsc.io/markdown/
Dlist.go13 type List struct { struct
14 Position
15 Bullet rune
16 Start int
17 Loose bool
18 Items []Block // always *Item
27 func (b *List) PrintHTML(buf *bytes.Buffer) {
47 func (b *List) printMarkdown(buf *bytes.Buffer, s mdState) {
278 func (p *parseState) taskList(list *List) {
350 func listCorner(list *List) bool {
/aosp_15_r20/external/clang/test/PCH/
H A Dpragma-loop.cpp29 inline void run1(int *List, int Length) { in run1()
40 inline void run2(int *List, int Length) { in run2()
52 inline void run3(int *List, int Length) { in run3()
64 inline void run4(int *List, int Length) { in run4()
73 inline void run5(int *List, int Length) { in run5()
82 inline void run6(int *List, int Length) { in run6()
92 inline void run7(int *List, int Length) { in run7()
103 int List[100]; in test() local
/aosp_15_r20/frameworks/base/packages/SettingsLib/Spa/spa/src/com/android/settingslib/spa/framework/util/
H A DParameter.kt27 fun List<NamedNavArgument>.navRoute(): String { in <lambda>() method
31 fun List<NamedNavArgument>.navLink(arguments: Bundle? = null): String { in List() method
35 fun List<NamedNavArgument>.normalizeArgList( in List() method
58 fun List<NamedNavArgument>.normalize( in normalize() method
90 fun List<NamedNavArgument>.getStringArg(name: String, arguments: Bundle? = null): String? { in List() method
97 fun List<NamedNavArgument>.getIntArg(name: String, arguments: Bundle? = null): Int? { in List() method
104 fun List<NamedNavArgument>.containsStringArg(name: String): Boolean { in containsStringArg() method
111 fun List<NamedNavArgument>.containsIntArg(name: String): Boolean { in containsIntArg() method
/aosp_15_r20/external/clang/test/Parser/
H A Dpragma-loop.cpp7 void test_nontype_template_param(int *List, int Length) { in test_nontype_template_param()
20 void test_nontype_template_vectorize(int *List, int Length) { in test_nontype_template_vectorize()
33 void test_nontype_template_interleave(int *List, int Length) { in test_nontype_template_interleave()
46 void test_nontype_template_char(int *List, int Length) { in test_nontype_template_char()
54 void test_nontype_template_bool(int *List, int Length) { in test_nontype_template_bool()
62 void test_nontype_template_badarg(int *List, int Length) { in test_nontype_template_badarg()
71 void test_type_template_vectorize(int *List, int Length) { in test_type_template_vectorize()
79 void test(int *List, int Length) { in test()
/aosp_15_r20/external/executorch/backends/arm/test/ops/
H A Dtest_conv2d.py31 in_channels: Union[List, int, None] = None,
32 out_channels: Union[List, int, None] = None,
33 kernel_size: Union[List, Tuple, None] = None,
34 stride: Union[List, Tuple, None] = None,
35 padding: Union[List, Tuple, None] = None,
36 dilation: Union[List, Tuple, None] = None,
37 groups: Union[List, int, None] = None,
38 bias: Union[List, bool, None] = None,
39 padding_mode: Union[List, str, None] = None,
H A Dtest_conv1d.py30 in_channels: Union[List, int, None] = None,
31 out_channels: Union[List, int, None] = None,
32 kernel_size: Union[List, Tuple, None] = None,
33 stride: Union[List, Tuple, None] = None,
34 padding: Union[List, Tuple, None] = None,
35 dilation: Union[List, Tuple, None] = None,
36 groups: Union[List, int, None] = None,
37 bias: Union[List, bool, None] = None,
38 padding_mode: Union[List, str, None] = None,
/aosp_15_r20/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/knit/
H A DTestUtil.kt89 private fun List<String>.verifyCommonLines(expected: Array<out String>, mode: SanitizeMode = Saniti… in List() method
98 private fun List<String>.checkEqualNumberOfLines(expected: Array<out String>) { in List() method
105 fun List<String>.verifyLines(vararg expected: String) = verify { in <lambda>() method
110 fun List<String>.verifyLinesStartWith(vararg expected: String) = verify { in <lambda>() method
115 fun List<String>.verifyLinesArbitraryTime(vararg expected: String) = verify { in <lambda>() method
120 fun List<String>.verifyLinesFlexibleThread(vararg expected: String) = verify { in <lambda>() method
125 fun List<String>.verifyLinesStartUnordered(vararg expected: String) = verify { in <lambda>() method
130 fun List<String>.verifyExceptions(vararg expected: String) { in verifyExceptions() method
151 fun List<String>.verifyLinesStart(vararg expected: String) = verify { in <lambda>() method
/aosp_15_r20/external/starlark-go/starlark/
H A Dvalue.go833 type List struct { struct
834 elems []Value
835 frozen bool
836 itercount uint32 // number of active iterators (ignored if frozen)
843 func (l *List) Freeze() {
854 func (l *List) checkMutable(verb string) error {
864 func (l *List) String() string { return toString(l) }
865 func (l *List) Type() string { return "list" }
866 func (l *List) Hash() (uint32, error) { return 0, fmt.Errorf("unhashable type: list") }
867 func (l *List) Truth() Bool { return l.Len() > 0 }
[all …]
/aosp_15_r20/external/pytorch/aten/src/ATen/core/
H A DList_inl.h12 List<T>::List(c10::intrusive_ptr<c10::detail::ListImpl>&& elements) in List() function
16 List<T>::List(const c10::intrusive_ptr<c10::detail::ListImpl>& elements) in List() function
20 List<T>::List() in List() function
28 List<T>::List(ArrayRef<T> values) in List() function
40 List<T>::List(std::initializer_list<T> initial_values) in List() function
46 List<T>::List(TypePtr elementType) in List() function
/aosp_15_r20/external/llvm/lib/CodeGen/AsmPrinter/
H A DDebugLocStream.h34 struct List { struct
38 List(DwarfCompileUnit *CU, size_t EntryOffset) in List() argument
180 EntryBuilder(ListBuilder &List, const MCSymbol *Begin, const MCSymbol *End) in EntryBuilder()

12345678910>>...63