/aosp_15_r20/prebuilts/go/linux-x86/src/text/template/parse/ |
D | parse.go | 20 type Tree struct { struct 21 Name string // name of the template represented by the tree. 22 ParseName string // name of the top-level template during parsing, for error messages. 23 Root *ListNode // top-level root of the tree. 24 Mode Mode // parsing mode. 25 text string // text parsed to create the template (or its parent) 27 funcs []map[string]any 28 lex *lexer 29 token [3]item // three-token lookahead for parser. 30 peekCount int [all …]
|
/aosp_15_r20/external/rust/android-crates-io/crates/termtree/src/ |
D | lib.rs | 13 pub struct Tree<D: Display> { struct 15 pub leaves: Vec<Tree<D>>, argument 20 impl<D: Display> Tree<D> { argument 48 impl<D: Display> Tree<D> { impl 62 impl<D: Display> Tree<D> { impl 69 impl<D: Display> From<D> for Tree<D> { implementation 75 impl<D: Display> Extend<D> for Tree<D> { implementation 81 impl<D: Display> Extend<Tree<D>> for Tree<D> { implementation 87 impl<D: Display> Display for Tree<D> { implementation
|
/aosp_15_r20/external/pytorch/torch/csrc/jit/frontend/ |
H A D | tree.h | 31 struct Tree : c10::intrusive_ptr_target { struct 32 Tree(int kind_) : kind_(kind_) {} in Tree() function 45 virtual const TreeList& trees() const { in trees() argument 49 const TreeRef& tree(size_t i) const { in tree() argument 52 virtual TreeRef map(const std::function<TreeRef(TreeRef)>& fn) { in map() argument 66 std::initializer_list<TreeRef*> vars = {args...}; in matchD() argument 73 void matchNumSubtrees(int k, size_t expected_subtrees) { in matchNumSubtrees() 99 ~Tree() override = default; argument
|
/aosp_15_r20/external/swiftshader/tests/regres/cov/ |
H A D | tree.go | 38 type Tree struct { struct 39 initialized bool 40 strings Strings 41 spans map[Span]SpanID 42 testRoot Test 43 files map[string]*treeFile 46 func (t *Tree) init() { 57 func (t *Tree) Spans() SpanList { 66 func (t *Tree) FileSpanGroups(path string) map[SpanGroupID]SpanGroup { 71 func (t *Tree) FileCoverage(path string) TestCoverageMap { [all …]
|
H A D | coverage_test.go | 313 func checkTests(t *testing.T, tree *cov.Tree, expect string) { 320 func checkCoverage(t *testing.T, tree *cov.Tree, file string, expect string) {
|
/aosp_15_r20/external/rust/android-crates-io/crates/tokio/src/runtime/task/trace/ |
D | tree.rs | 11 pub(super) struct Tree { struct 21 impl Tree { argument 92 impl fmt::Display for Tree { implementation
|
/aosp_15_r20/external/rust/android-crates-io/crates/debug_tree/src/ |
D | internal.rs | 7 pub struct Tree { struct 9 pub children: Vec<Tree>, argument 21 impl Tree { implementation 23 pub fn new(text: Option<&str>) -> Tree { in new() 32 pub fn at_mut(&mut self, path: &[usize]) -> Option<&mut Tree> { in at_mut()
|
/aosp_15_r20/external/cronet/third_party/icu/source/tools/genrb/ |
H A D | filterrb.h | 145 struct Tree { struct 160 std::map<std::string, Tree> fChildren; argument 161 std::unique_ptr<Tree> fWildcard; argument
|
/aosp_15_r20/external/icu/icu4c/source/tools/genrb/ |
H A D | filterrb.h | 145 struct Tree { struct 160 std::map<std::string, Tree> fChildren; argument 161 std::unique_ptr<Tree> fWildcard; argument
|
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/mod/sumdb/tlog/ |
D | note.go | 18 type Tree struct { struct 19 N int64 20 Hash Hash 37 func FormatTree(tree Tree) []byte {
|
/aosp_15_r20/external/rust/android-crates-io/crates/rayon-core/src/scope/ |
D | test.rs | 72 struct Tree<T: Send> { struct 74 children: Vec<Tree<T>>, argument 77 impl<T: Send> Tree<T> { impl 97 let Tree { in update_in_scope() localVariable
|
/aosp_15_r20/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/type/ |
H A D | RecursiveType1658Test.java | 14 static class Tree<T> extends HashMap<T, Tree<T>> // implements Serializable class in RecursiveType1658Test 16 public Tree() { } in Tree() method in RecursiveType1658Test.Tree 18 public Tree(List<T> children) { in Tree() method in RecursiveType1658Test.Tree
|
/aosp_15_r20/external/dtc/Documentation/ |
H A D | dtc-paper.tex | 129 \subsection{Properties of the flattened tree} 152 \subsection{Format of the device tree blob} 244 \subsection{Contents of the tree}
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/variant/test/ |
D | recursive_wrapper_move_test.cpp | 27 struct Tree : TreeBase { struct 31 static Tree Create(Iter /*first*/, Iter /*last*/) { return Leaf{}; } in Create() argument
|
/aosp_15_r20/external/antlr/runtime/ObjC/Framework/ |
H A D | Tree.m | 32 @implementation Tree implementation 82 - (void) addChild:(id<Tree>) tree
|
/aosp_15_r20/external/guava/android/guava-tests/test/com/google/common/collect/ |
H A D | TreeTraverserTest.java | 44 private static final class Tree extends Node { class in TreeTraverserTest 47 public Tree(char value, Tree... children) { in Tree() method in TreeTraverserTest.Tree
|
/aosp_15_r20/external/guava/guava-tests/test/com/google/common/collect/ |
H A D | TreeTraverserTest.java | 44 private static final class Tree extends Node { class in TreeTraverserTest 47 public Tree(char value, Tree... children) { in Tree() method in TreeTraverserTest.Tree
|
/aosp_15_r20/prebuilts/go/linux-x86/src/text/template/ |
D | exec_test.go | 976 type Tree struct { struct 977 Val int 978 Left, Right *Tree
|
/aosp_15_r20/prebuilts/go/linux-x86/src/html/template/ |
D | exec_test.go | 940 type Tree struct { struct 941 Val int 942 Left, Right *Tree
|
/aosp_15_r20/external/clang/utils/TableGen/ |
H A D | ClangASTNodesEmitter.cpp | 73 const ChildMap &Tree, in EmitNode() 158 ChildMap Tree; in run() local
|
/aosp_15_r20/tools/treble/build/treble_build/local/ |
H A D | git.go | 38 Tree(ctx context.Context, gitDir, workDir, revision string) (*bytes.Buffer, error) methodSpec 233 func (git *gitCmd) Tree(ctx context.Context, gitDir, workDir, revision string) (*bytes.Buffer, erro… func
|
/aosp_15_r20/external/robolectric/errorprone/src/main/java/org/robolectric/errorprone/bugpatterns/ |
H A D | DeprecatedMethodsCheck.java | 111 HashMap<Tree, Runnable> possibleFixes); in replace() 241 HashMap<Tree, Runnable> possibleFixes) { in replace()
|
/aosp_15_r20/external/apache-velocity-engine/velocity-engine-core/src/test/java/org/apache/velocity/test/ |
H A D | InvalidEventHandlerTestCase.java | 610 public static class Tree class in InvalidEventHandlerTestCase 615 public Tree() in Tree() method in InvalidEventHandlerTestCase.Tree
|
/aosp_15_r20/external/webrtc/third_party/abseil-cpp/absl/container/ |
H A D | node_hash_map_test.cc | 116 struct Tree { in TEST() struct 118 absl::node_hash_map<int, Tree> children; in TEST()
|
/aosp_15_r20/external/openscreen/third_party/abseil/src/absl/container/ |
H A D | node_hash_map_test.cc | 116 struct Tree { in TEST() struct 118 absl::node_hash_map<int, Tree> children; in TEST()
|