HomeSort by relevance Sort by last modified time
    Searched refs:child (Results 551 - 575 of 3822) sorted by null

<<21222324252627282930>>

  /external/toybox/toys/other/
netcat.c 159 pid_t child = 0; local
169 child = forkpty(&(pollfds[1].fd), NULL, NULL, NULL);
176 child = vfork();
178 if (!child && toys.optc) {
188 if (child<0) error_msg("Fork failed\n");
189 if (child<1) break;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
NotificationsQuickSettingsContainer.java 89 protected boolean drawChild(Canvas canvas, View child, long drawingTime) {
98 if (child == mQsContainer) {
103 } else if (child == mStackScroller) {
109 } else if (child == mUserSwitcher) {
114 } else if (child == mKeyguardStatusBar) {
119 return super.drawChild(canvas, child, drawingTime);
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
HalMockUtils.java 121 JSONObject child = new JSONObject(); local
123 child.put(TYPE_KEY, TYPE_INT);
124 child.put(VALUE_KEY, ((Integer) value).intValue());
131 child.put(TYPE_KEY, TYPE_BYTE_ARRAY);
132 child.put(VALUE_KEY, jsonArray);
137 json.put(key, child);
  /frameworks/support/compat/java/android/support/v4/view/
ViewGroupCompat.java 47 boolean onRequestSendAccessibilityEvent(ViewGroup group, View child,
60 ViewGroup group, View child, AccessibilityEvent event) {
107 ViewGroup group, View child, AccessibilityEvent event) {
108 return ViewGroupCompatIcs.onRequestSendAccessibilityEvent(group, child, event);
163 * Called when a child has requested sending an {@link AccessibilityEvent} and
173 * @param child The child which requests sending the event.
177 public static boolean onRequestSendAccessibilityEvent(ViewGroup group, View child,
179 return IMPL.onRequestSendAccessibilityEvent(group, child, event);
188 * <p>When this option is enabled MotionEvents may be split and dispatched to different child
    [all...]
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
DividerItemDecoration.java 124 final View child = parent.getChildAt(i); local
125 parent.getDecoratedBoundsWithMargins(child, mBounds);
126 final int bottom = mBounds.bottom + Math.round(ViewCompat.getTranslationY(child));
150 final View child = parent.getChildAt(i); local
151 parent.getLayoutManager().getDecoratedBoundsWithMargins(child, mBounds);
152 final int right = mBounds.right + Math.round(ViewCompat.getTranslationX(child));
  /libcore/luni/src/test/java/libcore/java/util/prefs/
OldNodeChangeEventTest.java 57 Preferences child = e.getChild();
58 if (child == null) {
61 if (child.name() == "mock1") {
69 Preferences child = e.getChild();
70 if (child == null) {
73 if (child.name() == "mock1") {
  /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...]
  /packages/experimental/TestBack/src/foo/bar/testback/
TestBackService.java 117 AccessibilityNodeInfo child = root.getChild(i); local
118 if (child != null) {
119 AccessibilityNodeInfo parent = child.getParent();
121 Log.e(LOG_TAG, "Child of a node has no parent");
123 Log.e(LOG_TAG, "Child of a node has wrong parent");
125 Log.i(LOG_TAG, child.toString());
130 AccessibilityNodeInfo child = root.getChild(i); local
131 dumpTree(child, visited);
  /packages/services/Telephony/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...]
  /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/boringssl/src/crypto/bytestring/
cbs.c 350 CBS child; local
352 if (!CBS_get_optional_asn1(cbs, &child, &present, tag)) {
356 if (!CBS_get_asn1(&child, out, CBS_ASN1_OCTETSTRING) ||
357 CBS_len(&child) != 0) {
371 CBS child; local
373 if (!CBS_get_optional_asn1(cbs, &child, &present, tag)) {
377 if (!CBS_get_asn1_uint64(&child, out) ||
378 CBS_len(&child) != 0) {
389 CBS child, child2; local
391 if (!CBS_get_optional_asn1(cbs, &child, &present, tag))
    [all...]
  /external/chromium-trace/catapult/devil/devil/android/sdk/
shared_prefs.py 147 for child in self._elem:
148 assert child.tag == 'string'
149 value.append(child.text)
154 for child in list(self._elem):
155 self._elem.remove(child)
344 for child in self.xml:
345 pref = _PREF_TYPES[child.tag](child)
346 d[child.get('name')] = pref.get()
365 for child in self.xml
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/server/handler/
HotSwapHandler.java 168 Handler child = getHandler(); local
169 if (child != null)
172 child.destroy();
  /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.");

Completed in 1277 milliseconds

<<21222324252627282930>>