Searched defs:node (Results 1 - 21 of 21) sorted by relevance

/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/
H A DAddressListParserVisitor.java7 public Object visit(SimpleNode node, Object data); argument
8 public Object visit(ASTaddress_list node, Object data); argument
9 public Object visit(ASTaddress node, Object data); argument
10 public Object visit(ASTmailbox node, Object data); argument
11 public Object visit(ASTname_addr node, Object data); argument
12 public Object visit(ASTgroup_body node, Object data); argument
13 public Object visit(ASTangle_addr node, Object data); argument
14 public Object visit(ASTroute node, Object data); argument
15 public Object visit(ASTphrase node, Object data); argument
16 public Object visit(ASTaddr_spec node, Objec argument
17 visit(ASTlocal_part node, Object data) argument
18 visit(ASTdomain node, Object data) argument
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/util/
H A DLinkedNode.java28 public void insert(LinkedNode node) { argument
29 node.mNext = mNext;
30 mNext.mPrev = node;
31 node.mPrev = this;
32 mNext = node;
46 public void insertLast(T node) { argument
47 mHead.mPrev.insert(node);
58 public T nextOf(T node) { argument
59 return (T) (node.mNext == mHead ? null : node
62 previousOf(T node) argument
[all...]
H A DProfileData.java38 public int id; // this is the name of this node, mapped from mNameToId
55 mRoot = new Node(null, -1); // The id of the root node is unused.
80 Node node = mRoot;
82 if (node.children == null) {
83 node.children = new ArrayList<Node>();
87 ArrayList<Node> children = node.children;
93 children.add(new Node(node, id));
96 node = children.get(j);
99 node.sampleCount++;
131 private void writeOneStack(Node node, in argument
140 writeAllStacks(Node node, int depth) argument
[all...]
/packages/apps/Launcher3/src/com/android/launcher3/accessibility/
H A DWorkspaceAccessibilityHelper.java138 protected void onPopulateNodeForVirtualView(int id, AccessibilityNodeInfoCompat node) { argument
139 super.onPopulateNodeForVirtualView(id, node);
148 node.getBoundsInParent(mTempRect);
153 node.setBoundsInScreen(mTempRect);
H A DDragAndDropAccessibilityDelegate.java112 protected void onPopulateNodeForVirtualView(int id, AccessibilityNodeInfoCompat node) { argument
117 node.setContentDescription(getLocationDescriptionForIconDrop(id));
118 node.setBoundsInParent(getItemBounds(id));
120 node.addAction(AccessibilityNodeInfoCompat.ACTION_CLICK);
121 node.setClickable(true);
122 node.setFocusable(true);
/packages/experimental/FilledApp/src/foo/bar/filled/
H A DCustomLinearLayout.java75 private void onProvideAutofillVirtualStructureRecursive(View view, ViewStructure node) { argument
76 if (node == null) {
82 node.setChildCount(childCount);
85 ViewStructure chlidNode = node.newChild(i);
86 chlidNode.setAutofillId(node, child.getAccessibilityViewId());
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/policy/
H A Dweighting.cpp30 static inline void profile(const CorrectionType correctionType, DicNode *const node) { argument
34 PROF_OMISSION(node->mProfiler);
37 PROF_ADDITIONAL_PROXIMITY(node->mProfiler);
40 PROF_SUBSTITUTION(node->mProfiler);
43 PROF_NEW_WORD(node->mProfiler);
46 PROF_MATCH(node->mProfiler);
49 PROF_COMPLETION(node->mProfiler);
52 PROF_TERMINAL(node->mProfiler);
55 PROF_TERMINAL_INSERTION(node->mProfiler);
58 PROF_SPACE_SUBSTITUTION(node
[all...]
/packages/apps/Launcher3/src/com/android/launcher3/logging/
H A DDumpTargetWrapper.java37 DumpTarget node; field in class:DumpTargetWrapper
46 node = newContainerTarget(containerType, id);
51 node = newItemTarget(info);
55 return node;
64 list.add(node);
69 list.add(node); // add a delimiter empty object
135 node.component = info.getTargetComponent() == null? "":
137 node.packageName = info.getTargetComponent() == null? "":
140 node.component = ((LauncherAppWidgetInfo) info).providerName.flattenToString();
141 node
[all...]
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/
H A DBuilder.java57 public AddressList buildAddressList(ASTaddress_list node) { argument
59 for (int i = 0; i < node.jjtGetNumChildren(); i++) {
60 ASTaddress childNode = (ASTaddress) node.jjtGetChild(i);
67 private Address buildAddress(ASTaddress node) { argument
68 ChildNodeIterator it = new ChildNodeIterator(node);
97 private MailboxList buildGroupBody(ASTgroup_body node) { argument
99 ChildNodeIterator it = new ChildNodeIterator(node);
110 private Mailbox buildMailbox(ASTmailbox node) { argument
111 ChildNodeIterator it = new ChildNodeIterator(node);
127 private NamedMailbox buildNameAddr(ASTname_addr node) { argument
148 buildAngleAddr(ASTangle_addr node) argument
167 buildRoute(ASTroute node) argument
180 buildAddrSpec(ASTaddr_spec node) argument
183 buildAddrSpec(DomainList route, ASTaddr_spec node) argument
191 buildString(SimpleNode node, boolean stripSpaces) argument
[all...]
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/dicnode/
H A Ddic_node_priority_queue.h87 DicNode *node = mDicNodesQueue.top(); local
89 DicNodeUtils::initByCopy(node, dest);
91 mDicNodePool.placeBackInstance(node);
/packages/apps/Bluetooth/src/com/android/bluetooth/avrcpcontroller/
H A DBrowseTree.java81 // Each node of the tree is represented by Folder ID, Folder Name and the children.
86 // Type of this browse node.
95 // Result object if this node is not loaded yet. This result object will be used
124 synchronized boolean isChild(BrowseNode node) { argument
126 if (bn.equals(node)) {
146 // Get the BT Player ID associated with this node.
/packages/apps/Settings/src/com/android/settings/widget/
H A DLabeledSeekBar.java166 int virtualViewId, AccessibilityNodeInfoCompat node) {
167 node.setClassName(RadioButton.class.getName());
168 node.setBoundsInParent(getBoundsInParentFromVirtualViewId(virtualViewId));
169 node.addAction(AccessibilityNodeInfoCompat.ACTION_CLICK);
170 node.setContentDescription(mLabels[virtualViewId]);
171 node.setClickable(true);
172 node.setCheckable(true);
173 node.setChecked(virtualViewId == LabeledSeekBar.this.getProgress());
184 protected void onPopulateNodeForHost(AccessibilityNodeInfoCompat node) { argument
185 node
165 onPopulateNodeForVirtualView( int virtualViewId, AccessibilityNodeInfoCompat node) argument
[all...]
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
H A DBinaryDictEncoderUtils.java84 * Compute the binary size of the PtNode count for a node array.
117 * the containing node array, and cache it it its 'mCachedSize' member.
119 * @param ptNodeArray the node array to compute the maximum size of.
124 for (PtNode node : ptNodeArray.mData) {
125 final int nodeSize = getPtNodeMaximumSize(node, codePointToOneByteCodeMap);
126 node.mCachedSize = nodeSize;
222 // Removing the node is necessary if the tails are merged, because we would then
223 // add the same node several times when we only want it once. A number of places in
224 // the code also depends on any node being only once in the list.
228 // to merge tails, and removing the node fro
544 makePtNodeFlags(final PtNode node, final int childrenOffset) argument
[all...]
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
H A DHtmlTree.java45 * For a string node, begin_[node] = end_[node] = node
46 * For an open tag, begin_[node] = node, end_[node] = the matching end tag
47 * For a close tag, end_[node] = the matching open tag, end_[node] = node
526 getTextPosition(int node) argument
[all...]
H A DHtmlDocument.java173 * Creates a Text node.
181 * Creates a Text node where the content hasn't been unescaped yet (this will
189 * Creates an Comment node.
197 * Creates a CDATA node.
207 for (Node node : nodes) {
208 node.accept(v);
220 for (Node node : nodes) {
221 filter.filter(node, newNodes);
228 * Html node
273 * HTML comment node
1184 addNode(Node node) argument
[all...]
/packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/
H A Dndbdic.c100 static NJ_INT16 search_yomi_node(NJ_UINT8 operation, NJ_UINT8 *node,
552 NJ_UINT8 *root, *now, *node, *node_mid; local
580 node = NULL;
611 node = root;
757 node = now;
766 node = now;
793 now = node;
796 if ((node == NULL) || !(NODE_DATA_EXIST(node))) {
799 (node !
1541 NJ_UINT8 *root, *now, *node, *node_mid; local
1975 search_yomi_node(NJ_UINT8 operation, NJ_UINT8 *node, NJ_UINT8 *now, NJ_UINT16 idx_no, NJ_CHAR *yomi, NJ_UINT16 yomilen, NJ_UINT8 * root, NJ_UINT8 * node_mid, NJ_UINT16 bit_left, NJ_UINT16 bit_data, NJ_UINT8 * data_top, NJ_INT16 ytbl_cnt, NJ_UINT16 y, NJ_UINT8 * ytbl_top, NJ_CACHE_INFO * storebuf, NJ_UINT8 ** con_node, NJ_UINT32 * data_offset) argument
2255 NJ_UINT8 *node; local
[all...]
/packages/inputmethods/OpenWnn/libs/libwnnDictionary/include/
H A Dnj_lib.h120 NJ_UINT8 *node; member in struct:__anon99
/packages/apps/Messaging/build/gcheckstyle/
H A Dgoogle-style-checker_deploy.jarMETA-INF/ META-INF/MANIFEST.MF build-data.properties com/ com/google/ com/google/ ...
/packages/services/Telecomm/libs/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/util/ ...
/packages/apps/TV/libs/
H A Dexoplayer.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/exoplayer/ ...
H A Dexoplayer_v2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/exoplayer2/ ...

Completed in 813 milliseconds