Searched defs:children (Results 1 - 7 of 7) sorted by relevance

/packages/apps/Email/src/com/android/email/view/
H A DNonLockingScrollView.java35 * we want to delegate those touches to children as normal, even in the middle of a drag. This is
53 * Whether or not the contents of this view is being dragged by one of the children in
59 * The list of children who should always receive touch events, and not have them intercepted.
87 // Don't intercept events - pass them on to children as normal.
102 // If additional types of children should be excluded (e.g. horizontal scrolling banners),
117 private static boolean isEventOverChild(MotionEvent ev, ArrayList<View> children) { argument
122 for (View child : children) {
/packages/apps/Email/src/org/apache/james/mime4j/field/address/parser/
H A DSimpleNode.java7 protected Node[] children; field in class:SimpleNode
30 if (children == null) {
31 children = new Node[i + 1];
32 } else if (i >= children.length) {
34 System.arraycopy(children, 0, c, 0, children.length);
35 children = c;
37 children[i] = n;
41 return children[i];
45 return (children
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DMtpContext.java127 List<MtpObjectInfo> children) {
132 for (MtpObjectInfo child : children) {
142 return success == children.size();
126 copyAlbum(String deviceName, String albumName, List<MtpObjectInfo> children) argument
/packages/apps/Gallery2/src/com/android/gallery3d/util/
H A DProfileData.java41 public ArrayList<Node> children; field in class:ProfileData.Node
82 if (node.children == null) {
83 node.children = new ArrayList<Node>();
87 ArrayList<Node> children = node.children;
89 for (j = 0; j < children.size(); j++) {
90 if (children.get(j).id == id) break;
92 if (j == children.size()) {
93 children.add(new Node(node, id));
96 node = children
[all...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DExpandableDictionary.java205 private void addWordRec(NodeArray children, final String word, final int depth, argument
210 // Does children have the current character?
211 final int childrenLength = children.mLength;
214 final Node node = children.mData[i];
226 children.add(childNode);
420 * @param roots node whose children have to be search for matches
455 final NodeArray children = node.mChildren;
471 if (children != null) {
472 getWordsRec(children, codes, word, depth + 1, true, snr, inputIndex,
479 if (children !
575 searchWord(NodeArray children, String word, int depth, Node parentNode) argument
680 searchNode(final NodeArray children, final CharSequence word, final int offset, final int length) argument
[all...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
H A DFusionDictionary.java85 * A group of characters, with a frequency, shortcut targets, bigrams, and children.
90 * of the trie trie; as such, it can be a terminal, and it can have children.
94 * bigrams, but a non-terminal may not. Moreover, children, if present, are null.
123 final boolean isNotAWord, final boolean isBlacklistEntry, final Node children) {
128 mChildren = children;
697 // if (!isEqual(aGroup.children, bGroup.children)) return false;
708 // if (null != group.children) {
709 // String pseudoHash = getPseudoHash(group.children);
717 // if (isEqual(group.children, simila
121 CharGroup(final int[] chars, final ArrayList<WeightedString> shortcutTargets, final ArrayList<WeightedString> bigrams, final int frequency, final boolean isNotAWord, final boolean isBlacklistEntry, final Node children) argument
[all...]
/packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
H A DContactsSyncAdapter.java447 ArrayList<String> children = new ArrayList<String>();
568 childrenParser(children);
673 if (!children.isEmpty()) {
674 ops.addChildren(entity, children);
720 private void childrenParser(ArrayList<String> children) throws IOException { argument
724 if (children.size() < EasChildren.MAX_CHILDREN) {
725 children.add(getValue());
1248 public void addChildren(Entity entity, ArrayList<String> children) { argument
1251 for (String child: children) {

Completed in 4823 milliseconds