/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/ |
ContentTypeField.java | 100 * Gets the MIME type defined in the child's 102 * if child is <code>null</code> or hasn't got a MIME type value set. 103 * If child's MIME type is multipart but no boundary 104 * has been set the MIME type of child will be derived from 107 * @param child the child. 111 public static String getMimeType(ContentTypeField child, 114 if (child == null || child.getMimeType().length() == 0 115 || child.isMultipart() && child.getBoundary() == null) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/ |
TestNode.java | 93 public TestNode add(TestNode child) { 94 mChildren.add(child); 95 child.mParent = this; 101 for (TestNode child : children) { 102 mChildren.add(child); 103 child.mParent = this; 191 TestNode child = new TestNode(viewFqcn); local 193 mChildren.add(child); 195 mChildren.add(index, child); 197 child.mParent = this 363 Element child = mElement.getOwnerDocument().createElement(getTagName(viewFqcn)); local 373 Element child = mElement.getOwnerDocument().createElement(getTagName(viewFqcn)); local [all...] |
/packages/apps/Launcher2/src/com/android/launcher2/ |
FocusHelper.java | 153 // child siblings willy-nilly 154 View child = null; local 166 child = newParent.getChildAt(newParent.getChildCount() - 1); 167 if (child != null) child.requestFocus(); 183 child = newParent.getChildAt(0); 184 if (child != null) child.requestFocus(); 196 child = parent.getChildAt(newWidgetIndex); 197 if (child != null) child.requestFocus() 313 View child = null; local [all...] |
/packages/apps/Launcher3/src/com/android/launcher3/ |
FocusHelper.java | 105 // child siblings willy-nilly 106 View child = null; local 118 child = newParent.getChildAt(newParent.getChildCount() - 1); 119 if (child != null) child.requestFocus(); 135 child = newParent.getChildAt(0); 136 if (child != null) child.requestFocus(); 148 child = parent.getChildAt(newWidgetIndex); 149 if (child != null) child.requestFocus() 261 View child = null; local [all...] |
/bionic/libc/arch-mips64/bionic/ |
__bionic_clone.S | 50 # set up child stack 58 PTR_L t0,FRAME_GP(sp) # copy gp to child stack 78 # Clear return address in child so we don't unwind further. 87 * For O32 etc the child stack must have space for a0..a3 to be stored 88 * For N64 etc, the child stack can be restored to the original value
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
BaseTree.cs | 42 * instead of the child-sibling approach in v2. A flat tree (a list) is 94 /** <summary>BaseTree doesn't track child indexes.</summary> */ 152 foreach (ITree child in children) { 153 if (child.Type == type) 154 return child; 160 /** <summary>Add t as child of this node.</summary> 163 * Warning: if t has no children, but child does 164 * and child isNil then this routine moves children to t via 165 * t.children = child.children; i.e., without copying the array. 169 //System.out.println("add child "+t.toStringTree()+" "+this.toStringTree()) [all...] |
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
BaseTree.cs | 43 * instead of the child-sibling approach in v2. A flat tree (a list) is 111 /** <summary>BaseTree doesn't track child indexes.</summary> */ 182 foreach ( ITree child in Children ) 184 if ( child.Type == type ) 185 return child; 191 /** <summary>Add t as child of this node.</summary> 194 * Warning: if t has no children, but child does 195 * and child isNil then this routine moves children to t via 196 * t.children = child.children; i.e., without copying the array. 201 //System.out.println("add child "+t.toStringTree()+" "+this.toStringTree()) [all...] |
/external/chromium_org/ash/system/tray/ |
throbber_view.cc | 64 View* child = child_at(0); local 65 gfx::Size ps = child->GetPreferredSize(); 66 child->SetBounds((width() - ps.width()) / 2,
|
tray_popup_label_button_border.cc | 76 // visible child, the separator bar should be omitted. 79 const views::View* child = view.parent()->child_at(i); local 80 if (child->visible()) { 81 first_visible_child = child;
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/ |
CPUProfileTopDownDataGrid.js | 67 var child = this.childrenByCallUID[aCallUID]; 69 if (child) 70 this._merge(child, true);
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/ |
PieChart.js | 111 var child = document.createElementNS("http://www.w3.org/2000/svg", childType); 112 parent.appendChild(child); 113 return child;
|
/external/chromium_org/third_party/markdown/extensions/ |
footnotes.py | 131 for child in element: 132 if child.text: 133 if child.text.find(self.getConfig("PLACE_MARKER")) > -1: 134 return child, element, True 135 if child.tail: 136 if child.tail.find(self.getConfig("PLACE_MARKER")) > -1: 137 return child, element, False 138 finder(child) 322 child, parent, isText = result 323 ind = parent.getchildren().index(child) [all...] |
/external/guava/guava/src/com/google/common/collect/ |
BstNode.java | 52 * The left child of this node. A null value indicates that this node has no left child. 58 * The right child of this node. A null value indicates that this node has no right child. 78 * Returns the child on the specified side, or {@code null} if there is no such child. 93 * Returns {@code true} if this node has a child on the specified side. 100 * Returns this node's child on the specified side. 102 * @throws IllegalStateException if this node has no such child 105 N child = childOrNull(side) local [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/data/ |
UnmodifiableData.java | 55 // Check if child already exists 56 Data child = getChild(path); local 58 if (child == null) { 59 // If the child described by path does not exist we throw 63 return child;
|
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/ |
AAddExpression.java | 101 void removeChild(@SuppressWarnings("unused") Node child) 103 // Remove child 104 if(this._left_ == child) 110 if(this._right_ == child) 116 throw new RuntimeException("Not a child."); 122 // Replace child 135 throw new RuntimeException("Not a child.");
|
AAndExpression.java | 101 void removeChild(@SuppressWarnings("unused") Node child) 103 // Remove child 104 if(this._left_ == child) 110 if(this._right_ == child) 116 throw new RuntimeException("Not a child."); 122 // Replace child 135 throw new RuntimeException("Not a child.");
|
ACommaExpression.java | 101 void removeChild(@SuppressWarnings("unused") Node child) 103 // Remove child 104 if(this._left_ == child) 110 if(this._right_ == child) 116 throw new RuntimeException("Not a child."); 122 // Replace child 135 throw new RuntimeException("Not a child.");
|
ACommentCommand.java | 101 void removeChild(@SuppressWarnings("unused") Node child) 103 // Remove child 104 if(this._position_ == child) 110 if(this._comment_ == child) 116 throw new RuntimeException("Not a child."); 122 // Replace child 135 throw new RuntimeException("Not a child.");
|
AContentTypeCommand.java | 101 void removeChild(@SuppressWarnings("unused") Node child) 103 // Remove child 104 if(this._position_ == child) 110 if(this._string_ == child) 116 throw new RuntimeException("Not a child."); 122 // Replace child 135 throw new RuntimeException("Not a child.");
|
ADescendVariable.java | 101 void removeChild(@SuppressWarnings("unused") Node child) 103 // Remove child 104 if(this._parent_ == child) 110 if(this._child_ == child) 116 throw new RuntimeException("Not a child."); 122 // Replace child 135 throw new RuntimeException("Not a child.");
|
ADivideExpression.java | 101 void removeChild(@SuppressWarnings("unused") Node child) 103 // Remove child 104 if(this._left_ == child) 110 if(this._right_ == child) 116 throw new RuntimeException("Not a child."); 122 // Replace child 135 throw new RuntimeException("Not a child.");
|
AEqExpression.java | 101 void removeChild(@SuppressWarnings("unused") Node child) 103 // Remove child 104 if(this._left_ == child) 110 if(this._right_ == child) 116 throw new RuntimeException("Not a child."); 122 // Replace child 135 throw new RuntimeException("Not a child.");
|
AEvarCommand.java | 101 void removeChild(@SuppressWarnings("unused") Node child) 103 // Remove child 104 if(this._position_ == child) 110 if(this._expression_ == child) 116 throw new RuntimeException("Not a child."); 122 // Replace child 135 throw new RuntimeException("Not a child.");
|
AExpandVariable.java | 101 void removeChild(@SuppressWarnings("unused") Node child) 103 // Remove child 104 if(this._parent_ == child) 110 if(this._child_ == child) 116 throw new RuntimeException("Not a child."); 122 // Replace child 135 throw new RuntimeException("Not a child.");
|
AFunctionExpression.java | 97 void removeChild(@SuppressWarnings("unused") Node child) 99 // Remove child 100 if(this._name_ == child) 106 if(this._args_.remove(child)) 111 throw new RuntimeException("Not a child."); 117 // Replace child 142 throw new RuntimeException("Not a child.");
|