/aosp12/hardware/libhardware/tests/input/evdev/ |
H A D | InputMocks.cpp | 35 node->setBusType(0); in getElanTouchscreen() 51 return node; in getElanTouchscreen() 70 return node; in getLidInput() 89 return node; in getButtonJack() 113 return node; in getHeadsetJack() 131 return node; in getH2wButton() 149 return node; in getGpioKeys() 171 return node; in getGpioKeys() 189 return node; in getMidPowerBtn() 208 return node; in getNexusRemote() [all …]
|
/aosp12/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/uicc/euicc/asn1/ |
H A D | Asn1NodeTest.java | 62 Asn1Node node = in testChildren() local 90 Asn1Node node = in testNonExitingChildren() local 124 Asn1Node node = in testBuilderAndGetters() local 190 node.getChildren(); in testWriteToBytes() 250 node.asInteger(); in testAsInteger_ConstructedTag() 257 node.asRawLong(); in testAsLong_ConstructedTag() 264 node.asString(); in testAsString_ConstructedTag() 271 node.asBytes(); in testAsBytes_ConstructedTag() 278 node.asBits(); in testAsBits_ConstructedTag() 285 node.asBoolean(); in testAsBoolean_ConstructedTag() [all …]
|
/aosp12/packages/modules/NeuralNetworks/tools/systrace_parser/parser/ |
H A D | tree.py | 56 node.remove() 84 node.parent.phase() != node.phase() and node.parent.phase() != PHASE_OVERALL and 116 node.layer, node.phase(), node.app_phase, subtract=False) 125 if not node.is_added_detail() and not node.subtract: 130 node.parent.phase() != node.phase()) and 139 node.add_intermediate_parent(LAYER_APPLICATION, node.phase(), node.app_phase) 146 [mark, layer, phase] = [node.mark, node.layer, node.phase()] 147 prev_layer = (node.parent and node.parent.layer) 148 prev_phase = (node.parent and node.parent.phase()) 251 return node [all …]
|
/aosp12/system/bt/osi/src/ |
H A D | list.cc | 56 node = list_next(node)) { in list_contains() 98 node->data = data; in list_insert_after() 112 node->data = data; in list_prepend() 113 list->head = node; in list_prepend() 125 node->next = NULL; in list_append() 152 prev = node, node = node->next) in list_remove() 164 for (list_node_t* node = list->head; node;) in list_clear() local 165 node = list_free_node_(list, node); in list_clear() 176 for (list_node_t* node = list->head; node;) { in list_foreach() local 178 if (!callback(node->data, context)) return node; in list_foreach() [all …]
|
/aosp12/hardware/qcom/camera/msm8998/QCamera2/util/ |
H A D | QCameraQueue.cpp | 147 camera_q_node *node = in enqueue() local 149 if (NULL == node) { in enqueue() 155 node->data = data; in enqueue() 163 free(node); in enqueue() 186 if (NULL == node) { in enqueueWithPriority() 192 node->data = data; in enqueueWithPriority() 206 free(node); in enqueueWithPriority() 239 if (NULL != node) { in peek() 280 if (NULL != node) { in dequeue() 282 free(node); in dequeue() [all …]
|
/aosp12/packages/apps/Car/RotaryController/src/com/android/car/rotary/ |
H A D | Utils.java | 79 if (node != null) { in recycleNode() 80 node.recycle(); in recycleNode() 87 recycleNode(node); in recycleNodes() 106 if (node == null) { in refreshNode() 111 return node; in refreshNode() 114 node.recycle(); in refreshNode() 126 if (!node.isFocusable() || !node.isEnabled()) { in canPerformFocus() 131 if (isWebView(node)) { in canPerformFocus() 162 && (!isScrollableContainer(node) || canScrollableContainerTakeFocus(node)); in canTakeFocus() 189 return canTakeFocus(node) || descendantCanTakeFocus(node); in canHaveFocus() [all …]
|
/aosp12/art/tools/ahat/src/test/com/android/ahat/ |
H A D | DominatorsTest.java | 76 graph.node("n"); in singleNode() 86 graph.node("child"); in parentWithChild() 102 graph.node("child"); in reachableTwoWays() 118 graph.node("child"); in reachableDirectAndIndirect() 132 graph.node("child"); in subDominator() 159 graph.node("a", "b"); in singleEntryLoop() 205 graph.node("child"); in dominatorOverwrite() 219 graph.node(root); in stackOverflow() 246 graph.node("c"); in hiddenRevisit() 273 graph.node("e"); in preUndominatedUpdate() [all …]
|
/aosp12/build/make/tools/droiddoc/templates-pdk/assets/ |
H A D | android-developer-reference.js | 133 node.li.appendChild(node.label_div); 134 node.label_div.style.paddingLeft = 10*node.depth + "px"; 138 node.label_div.style.paddingLeft = ((10*node.depth)+12) + "px"; 140 node.label_div.style.paddingLeft = 10*node.depth + "px"; 152 node.label_div.appendChild(node.expand_toggle); 158 node.expand_toggle.appendChild(node.plus_img); 188 node.li.appendChild(node.children_ul); 193 return node; 198 if (node.children_data && !node.expanded) { 298 me.node.li.appendChild(me.node.children_ul); [all …]
|
/aosp12/system/core/libcutils/ |
H A D | config_utils.cpp | 30 if(node) { in config_node() 35 return node; in config_node() 43 for(node = root->first_child; node; node = node->next) in config_find() 52 cnode *node; in _config_create() local 63 return node; in _config_create() 68 cnode *node; in config_bool() local 71 if(!node) in config_bool() 89 if(!node) in config_str() 99 if(node) in config_set() 267 if(!node || *node->value) in parse_expr() [all …]
|
/aosp12/system/bt/btif/src/ |
H A D | btif_uid.cc | 49 while (node) { in uid_set_destroy() 51 node = node->next; in uid_set_destroy() 62 while (node && node->data.app_uid != app_uid) { in uid_set_find_or_create_node() 63 node = node->next; in uid_set_find_or_create_node() 66 if (!node) { in uid_set_find_or_create_node() 72 return node; in uid_set_find_or_create_node() 97 while (node) { in uid_set_read_and_clear() 99 node = node->next; in uid_set_read_and_clear() 108 node = set->head; in uid_set_read_and_clear() 109 while (node) { in uid_set_read_and_clear() [all …]
|
/aosp12/frameworks/opt/setupwizard/tools/docs/ |
H A D | jsilver.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/clearsilver/
org/ ... |
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/render/ |
H A D | ShadeViewDifferTest.java | 69 node(mController1), in testAddInitialViews() 70 node(mController2, in testAddInitialViews() 74 node(mController5) in testAddInitialViews() 83 node(mController2, in testDetachViews() 87 node(mController5) in testDetachViews() 93 node(mController5) in testDetachViews() 102 node(mController2, in testReparentChildren() 106 node(mController5) in testReparentChildren() 114 node(mController3, in testReparentChildren() 127 node(mController4) in testReorderChildren() [all …]
|
/aosp12/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/ |
H A D | UiObject.java | 152 if(node == null) { in getChildCount() 183 return node; in findAccessibilityNodeInfo() 398 if(node == null) { in click() 438 if(node == null) { in clickAndWaitForNewWindow() 456 if(node == null) { in clickTopLeft() 473 if(node == null) { in longClickBottomRight() 490 if(node == null) { in clickBottomRight() 507 if(node == null) { in longClick() 524 if(node == null) { in longClickTopLeft() 541 if(node == null) { in getText() [all …]
|
/aosp12/packages/providers/MediaProvider/jni/ |
H A D | node.cpp | 44 void node::BuildPathForNodeRecursive(bool safe, const node* node, std::stringstream* path) const { in BuildPathForNodeRecursive() argument 55 if (node != this) { in BuildPathForNodeRecursive() 77 const node* node::LookupAbsolutePath(const node* root, const std::string& absolute_path) { in LookupAbsolutePath() 86 const node* node = root; in LookupAbsolutePath() local 88 node = node->LookupChildByName(segment, false /* acquire */); in LookupAbsolutePath() 89 if (!node) { in LookupAbsolutePath() 93 return node; in LookupAbsolutePath() 96 const node* node::LookupInode(const node* root, ino_t ino) { in LookupInode() 106 const node* node = LookupInode(child, ino); in LookupInode() local 107 if (node) { in LookupInode() [all …]
|
/aosp12/packages/apps/Car/RotaryController/tests/unit/src/com/android/car/rotary/ |
H A D | TreeTraverserTest.java | 129 /* targetPredicate= */ node -> node.equals(mNode0)); in testFindNodeOrAncestor() 135 /* targetPredicate= */ node -> node.equals(mNode0)); in testFindNodeOrAncestor() 141 /* targetPredicate= */ node -> node.equals(mNode6)); in testFindNodeOrAncestor() 147 node -> node.equals(mNode1), in testFindNodeOrAncestor() 148 /* targetPredicate= */ node -> node.equals(mNode0)); in testFindNodeOrAncestor() 154 node -> node.equals(mNode0), in testFindNodeOrAncestor() 155 /* targetPredicate= */ node -> node.equals(mNode0)); in testFindNodeOrAncestor() 226 /* skipPredicate= */ node -> node.equals(mNode1), in testDepthFirstSearch() 227 /* skipPredicate= */ node -> node.equals(mNode1)); in testDepthFirstSearch() 317 return node.equals(mNode1) || node.equals(mNode4); in testDepthFirstSelect() [all …]
|
H A D | NodeBuilderTest.java | 62 assertThat(node.isFocusable()).isTrue(); in testBuildDefaultNode() 63 assertThat(node.isFocused()).isFalse(); in testBuildDefaultNode() 65 assertThat(node.refresh()).isTrue(); in testBuildDefaultNode() 66 assertThat(node.isEnabled()).isTrue(); in testBuildDefaultNode() 69 node.getBoundsInParent(boundsInParent); in testBuildDefaultNode() 72 node.getBoundsInScreen(boundsInScreen); in testBuildDefaultNode() 87 assertThat(node.isFocused()).isTrue(); in testSetFocused() 99 assertThat(node.refresh()).isFalse(); in testSetInViewTree() 153 AccessibilityNodeInfo node = in testSetContentDescription() local 160 AccessibilityNodeInfo node = in testSetStateDescription() local [all …]
|
/aosp12/system/libufdt/ |
H A D | ufdt_node.c | 45 if (node == NULL) return; in ufdt_node_destruct() 56 ufdt_node_pool_free(pool, node); in ufdt_node_destruct() 88 for_each_node(it, node) { in ufdt_node_get_subnode_by_name_len() 101 if (!node) return NULL; in ufdt_node_get_property_by_name_len() 104 for_each_prop(it, node) { in ufdt_node_get_property_by_name_len() 116 if (!node || ufdt_node_tag(node) != FDT_PROP) { in ufdt_node_get_fdt_prop_data() 148 if (!node || ufdt_node_tag(node) != FDT_BEGIN_NODE) { in ufdt_node_get_phandle() 194 if (!node) return false; in ufdt_node_name_eq() 258 if (!node) return; in ufdt_node_print() 264 tag = ufdt_node_tag(node); in ufdt_node_print() [all …]
|
/aosp12/frameworks/rs/ |
H A D | rsMap.h | 64 prev = node; 65 node = node->next; 68 node = new LinkNode(); 70 node->next = nullptr; 74 prev->next = node; 87 node = next; 99 node = nullptr; 104 return node == other.node && bucket_index == other.bucket_index && 109 return node != other.node || bucket_index != other.bucket_index || 122 LinkNode* node; variable [all …]
|
/aosp12/frameworks/av/media/libeffects/factory/ |
H A D | EffectsConfigLoader.c | 80 cnode *node; in loadLibraries() local 86 node = node->first_child; in loadLibraries() 87 while (node) { in loadLibraries() 88 loadLibrary(node, node->name); in loadLibraries() 89 node = node->next; in loadLibraries() 153 cnode *node; in loadLibrary() local 236 cnode *node; in addSubEffect() local 297 node = node->first_child; in loadEffects() 300 node = node->next; in loadEffects() 373 node = node->next; in loadEffect() [all …]
|
/aosp12/frameworks/compile/mclinker/unittests/ |
H A D | InputTreeTest.cpp | 70 --node; in TEST_F() 73 ASSERT_TRUE(isGroup(node)); in TEST_F() 78 --node; in TEST_F() 84 ASSERT_FALSE(node.isRoot()); in TEST_F() 86 ASSERT_FALSE(isGroup(node)); in TEST_F() 100 --node; in TEST_F() 105 ++node; in TEST_F() 109 --node; in TEST_F() 112 ASSERT_TRUE(isGroup(node)); in TEST_F() 124 --node; in TEST_F() [all …]
|
/aosp12/frameworks/base/core/java/android/animation/ |
H A D | AnimatorSet.java | 579 node.mEndTime = node.mEndTime == DURATION_INFINITE ? 1132 pulseFrame(node, getPlayTimeForNode(playTime, node)); 1153 pulseFrame(node, getPlayTimeForNode(playTime, node)); 1170 node.mEnded = node.mAnimation.pulseAnimationFrame( 1393 size = node.mSiblings == null ? 0 : node.mSiblings.size(); 1397 size = node.mParents == null ? 0 : node.mParents.size(); 1503 findSiblings(node, node.mSiblings); 1504 node.mSiblings.remove(node); 1509 node.addParents(node.mSiblings.get(j).mParents); 1522 if (node != mRootNode && node.mParents == null) { [all …]
|
/aosp12/system/core/libcutils/include/cutils/ |
H A D | list.h | 32 #define node_to_item(node, container, member) \ argument 41 #define list_for_each(node, list) \ argument 42 for ((node) = (list)->next; (node) != (list); (node) = (node)->next) 44 #define list_for_each_reverse(node, list) \ argument 45 for ((node) = (list)->prev; (node) != (list); (node) = (node)->prev) 47 #define list_for_each_safe(node, n, list) \ argument 48 for ((node) = (list)->next, (n) = (node)->next; \ 49 (node) != (list); \ 50 (node) = (n), (n) = (node)->next) 54 node->next = node; in list_init() [all …]
|
/aosp12/system/core/libcutils/include_outside_system/cutils/ |
H A D | list.h | 32 #define node_to_item(node, container, member) \ argument 41 #define list_for_each(node, list) \ argument 42 for ((node) = (list)->next; (node) != (list); (node) = (node)->next) 44 #define list_for_each_reverse(node, list) \ argument 45 for ((node) = (list)->prev; (node) != (list); (node) = (node)->prev) 47 #define list_for_each_safe(node, n, list) \ argument 48 for ((node) = (list)->next, (n) = (node)->next; \ 49 (node) != (list); \ 50 (node) = (n), (n) = (node)->next) 54 node->next = node; in list_init() [all …]
|
/aosp12/system/libufdt/include/ |
H A D | ufdt_types.h | 25 for ((it) = (node)->nodes; (it) != (node)->nodes + (node)->mem_size; ++(it)) \ 28 #define for_each_child(it, node) \ argument 29 if (ufdt_node_tag(node) == FDT_BEGIN_NODE) \ 33 #define for_each_prop(it, node) \ argument 34 for_each_child(it, node) if (ufdt_node_tag(*(it)) == FDT_PROP) 36 #define for_each_node(it, node) \ argument 37 for_each_child(it, node) if (ufdt_node_tag(*(it)) == FDT_BEGIN_NODE) 48 : (((const struct ufdt_node_fdt_prop *)(node))->name)) 50 #define ufdt_node_tag(node) \ argument 51 ((node) ? fdt32_to_cpu(*(node)->fdt_tag_ptr) : FDT_END) [all …]
|
/aosp12/packages/apps/Dialer/java/com/android/dialer/searchfragment/cp2/ |
H A D | ContactTernarySearchTree.java | 44 if (node == null) { in put() 45 node = new Node(); in put() 46 node.key = c; in put() 48 if (c < node.key) { in put() 49 node.left = put(node.left, key, value, position); in put() 51 node.right = put(node.right, key, value, position); in put() 54 node.mid = put(node.mid, key, value, position + 1); in put() 58 return node; in put() 73 if (node == null) { in get() 77 if (c < node.key) { in get() [all …]
|