Home
last modified time | relevance | path

Searched refs:tree (Results 1 – 25 of 34) sorted by relevance

12

/packages/modules/Virtualization/authfs/src/fsverity/
Dbuilder.rs196 let mut tree = MerkleLeaves::new(); in merkle_tree_non_sequential() localVariable
200 tree.update_hash(1, &hash, CHUNK_SIZE * 2); in merkle_tree_non_sequential()
201 tree.update_hash(3, &hash, CHUNK_SIZE * 4); in merkle_tree_non_sequential()
202 tree.update_hash(0, &hash, CHUNK_SIZE); in merkle_tree_non_sequential()
203 tree.update_hash(2, &hash, CHUNK_SIZE * 3); in merkle_tree_non_sequential()
207 tree.calculate_fsverity_digest()? in merkle_tree_non_sequential()
214 let mut tree = MerkleLeaves::new(); in merkle_tree_grow_leaves() localVariable
215 tree.update_hash(0, &[42; HASH_SIZE], CHUNK_SIZE); // fake hash of a CHUNK_SIZE block in merkle_tree_grow_leaves()
218 tree.resize(4096 * 3 - 100); in merkle_tree_grow_leaves()
220 assert!(tree.is_index_valid(0)); in merkle_tree_grow_leaves()
[all …]
/packages/providers/MediaProvider/errorprone/src/com/android/providers/media/
DMimeTypeChecker.java30 import com.sun.source.tree.ExpressionTree;
31 import com.sun.source.tree.MethodInvocationTree;
32 import com.sun.source.tree.SwitchTree;
55 public Description matchMethodInvocation(MethodInvocationTree tree, VisitorState state) { in matchMethodInvocation() argument
56 if (STRING_EQUALS.matches(tree, state) || STRING_STARTS_WITH.matches(tree, state) in matchMethodInvocation()
57 || OBJECTS_EQUALS.matches(tree, state)) { in matchMethodInvocation()
58 if (MIME_WITHOUT_CASE_FOLDING.matches(tree.getMethodSelect(), state) in matchMethodInvocation()
59 || tree.getArguments().stream().anyMatch(MIME_WITHOUT_CASE_FOLDING)) { in matchMethodInvocation()
60 return buildDescription(tree).setMessage(MESSAGE).build(); in matchMethodInvocation()
63 if (STRING_REGION_MATCHES.matches(tree, state)) { in matchMethodInvocation()
[all …]
DLocaleRootChecker.java31 import com.sun.source.tree.ExpressionTree;
32 import com.sun.source.tree.MethodInvocationTree;
59 public Description matchMethodInvocation(MethodInvocationTree tree, VisitorState state) { in matchMethodInvocation() argument
60 if (MISSING_LOCALE_ROOT.matches(tree, state)) { in matchMethodInvocation()
61 return buildDescription(tree) in matchMethodInvocation()
/packages/providers/MediaProvider/jni/
Dnode.cpp114 void node::DeleteTree(node* tree) { in DeleteTree() argument
115 std::lock_guard<std::recursive_mutex> guard(*tree->lock_); in DeleteTree()
117 if (tree) { in DeleteTree()
121 std::vector<node*> children(tree->children_.begin(), tree->children_.end()); in DeleteTree()
126 CHECK(tree->children_.empty()); in DeleteTree()
127 delete tree; in DeleteTree()
Dnode-inl.h358 static void DeleteTree(node* tree);
/packages/modules/adb/client/
Dfastdeploy.cpp170 android::ResXMLTree tree; in get_package_name_from_apk() local
171 android::status_t setto_status = tree.setTo(manifest_data.data(), manifest_len, true); in get_package_name_from_apk()
176 while ((code = tree.next()) != android::ResXMLParser::BAD_DOCUMENT && in get_package_name_from_apk()
181 const char16_t* element_name = tree.getElementName(&element_name_length); in get_package_name_from_apk()
187 for (size_t i = 0; i < tree.getAttributeCount(); i++) { in get_package_name_from_apk()
190 tree.getAttributeName(i, &attribute_name_length); in get_package_name_from_apk()
199 tree.getAttributeStringValue(i, &attribute_value_length); in get_package_name_from_apk()
/packages/apps/Test/connectivity/sl4n/rapidjson/doc/misc/
Ddoxygenextra.css197 #nav-tree
204 #nav-tree .label
211 #nav-tree
216 #nav-tree .selected {
220 #nav-tree a
/packages/apps/Dialer/java/com/android/dialer/searchfragment/cp2/
DContactFilterCursor.java250 ContactTernarySearchTree tree = new ContactTernarySearchTree(); in buildContactSearchTree() local
259 tree.put(query, position); in buildContactSearchTree()
268 tree.put(substring, position); in buildContactSearchTree()
271 return tree; in buildContactSearchTree()
/packages/apps/Test/connectivity/sl4n/rapidjson/
Dreadme.md79 directory of the build tree. To run tests after finished build please run `make
80 test` or `ctest` from your build tree. You can get detailed output using `ctest
84 from the build tree with administrative privileges. This will install all files
129 More [examples](https://github.com/miloyip/rapidjson/tree/master/example) are available.
/packages/providers/MediaProvider/errorprone/src/com/google/errorprone/matchers/
DFieldMatchers.java21 import com.sun.source.tree.ExpressionTree;
22 import com.sun.source.tree.ImportTree;
/packages/modules/Wifi/service/tests/wifitests/
DREADME.md25 in this directory. It will rebuild parts of your tree with coverage enabled and then run the tests,
29 the following from the root out your source tree to generate results in the wifi_coverage directory
/packages/apps/Car/DebuggingRestrictionController/soong/
DREADME.md1 The files in this directory are for building the app in the Android source tree.
/packages/apps/Test/connectivity/sl4n/rapidjson/doc/
Dtutorial.md11 … A `Document`, representing the DOM, contains the root `Value` of the DOM tree. All public types a…
41 The JSON is now parsed into `document` as a *DOM tree*:
245 There are several ways to create values. After a DOM tree is created and/or modified, it can be sav…
473 If we really need to copy a DOM tree, we can use two APIs for deep copy: constructor with allocator…
508 This tutorial shows the basics of DOM tree query and manipulation. There are several important conc…
DDoxyfile.in818 # subdirectory from a directory tree whose root is specified with the INPUT tag.
991 # - Make sure the INPUT points to the root of the source tree
1191 # shown in the various tree structured indices initially; the user can expand
1192 # and collapse entries dynamically later on. Doxygen will expand the tree to
1194 # a fully collapsed tree already exceeds this amount). So setting the number of
1195 # entries 1 will produce a full collapsed tree by default. 0 is a special value
1197 # tree by default.
1302 # the table of contents of the HTML help documentation and to the tree view.
1396 # tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES.
1402 # The GENERATE_TREEVIEW tag is used to specify whether a tree-like index
[all …]
/packages/apps/Traceur/uitests/
DREADME1 To build the tests you can use the following command at the root of your android source tree
/packages/apps/StorageManager/tests/unit/
DREADME1 To build the tests you can use the following command at the root of your android source tree
/packages/modules/Wifi/service/tests/wifitests/assets/
Druckus.PerProviderSubscription.conf1 tree 3:1.2(urn:wfa:mo:hotspot2dot0-perprovidersubscription:1.0)
Dr1.PerProviderSubscription.conf1 tree 3:1.2(urn:wfa:mo:hotspot2dot0-perprovidersubscription:1.0)
Dr2.PerProviderSubscription.conf1 tree 3:1.2(urn:wfa:mo:hotspot2dot0-perprovidersubscription:1.0)
/packages/apps/Settings/tests/unit/
DREADME9 To build the tests you can use the following command at the root of your android source tree
/packages/apps/Test/connectivity/sl4n/
DREADME.md19 *where `<ANDROID_SOURCE_ROOT>` is the root directory of the android tree and `<TARGET>` is the lunch
/packages/apps/Car/tests/
Dreadme.md59 * See tools/go_rotary.sh for an example build, install and run the test app in an Android tree.
/packages/modules/NeuralNetworks/tools/systrace_parser/parser/
Dtracker.py14 from parser.tree import SingleThreadCallTree
/packages/apps/LegacyCamera/jni/feature_stab/doc/
Ddbreg_API_doxyfile644 # subdirectory from a directory tree whose root is specified with the INPUT tag.
921 # to the contents of the HTML help documentation and to the tree view.
985 # The GENERATE_TREEVIEW tag is used to specify whether a tree-like index
988 # containing a tree-like index structure (just like the one that
996 # and Class Hierarchy pages using a tree view instead of an ordered list.
1001 # used to set the initial width (in pixels) of the frame in which the tree
/packages/apps/LegacyCamera/jni/feature_mos/doc/
Dfeature_mos_API_doxyfile644 # subdirectory from a directory tree whose root is specified with the INPUT tag.
921 # to the contents of the HTML help documentation and to the tree view.
985 # The GENERATE_TREEVIEW tag is used to specify whether a tree-like index
988 # containing a tree-like index structure (just like the one that
996 # and Class Hierarchy pages using a tree view instead of an ordered list.
1001 # used to set the initial width (in pixels) of the frame in which the tree

12