HomeSort by relevance Sort by last modified time
    Searched full:child (Results 76 - 100 of 1967) sorted by null

1 2 34 5 6 7 8 91011>>

  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/io/
FileWrapper.java 35 * Creates a new File instance from a parent abstract pathname and a child pathname string.
37 * @param child the child name
41 public FileWrapper(File parent, String child) {
42 super(parent, child);
57 * Creates a new File instance from a parent abstract pathname and a child pathname string.
59 * @param child the child name
63 public FileWrapper(String parent, String child) {
64 super(parent, child);
    [all...]
  /external/bluetooth/glib/gio/xdgmime/
xdgmimeglob.c 58 XdgGlobHashNode *child; member in struct:XdgGlobHashNode
161 if (glob_hash_node->child)
162 _xdg_glob_hash_node_dump (glob_hash_node->child, depth + 1);
237 XdgGlobHashNode *child; local
240 child = node->child;
241 while (child && child->character == 0)
243 if (strcmp (child->mime_type, mime_type) == 0)
248 child = child->next
    [all...]
  /frameworks/base/core/java/android/widget/
Spinner.java 32 * A view that displays one child at a time and lets the user pick among them.
65 View child = null; local
68 child = getChildAt(0);
70 child = makeAndAddView(0);
71 // TODO: We should probably put the child in the recycler
74 if (child != null) {
75 return child.getTop() + child.getBaseline();
176 View child; local
179 child = mRecycler.get(position)
    [all...]
RelativeLayout.java 53 * {@link android.view.ViewGroup.LayoutParams#WRAP_CONTENT WRAP_CONTENT} and a child set to
74 * Rule that aligns a child's right edge with another child's left edge.
78 * Rule that aligns a child's left edge with another child's right edge.
82 * Rule that aligns a child's bottom edge with another child's top edge.
86 * Rule that aligns a child's top edge with another child's bottom edge.
91 * Rule that aligns a child's baseline with another child's baseline
267 final View child = getChildAt(i); local
357 View child = views[i]; local
373 View child = views[i]; local
405 View child = getChildAt(i); local
437 View child = getChildAt(i); local
467 View child = getChildAt(i); local
495 View child = getChildAt(i); local
905 View child = getChildAt(i); local
    [all...]
TableRow.java 31 * always be used as a child of a {@link android.widget.TableLayout}. If a
100 View child = getVirtualChildAt(columnIndex); local
101 if (child != null) {
102 child.setVisibility(collapsed ? GONE : VISIBLE);
161 final View child = getChildAt(i); local
162 final LayoutParams layoutParams = (LayoutParams) child.getLayoutParams();
189 void measureChildBeforeLayout(View child, int childIndex,
193 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
221 child.measure(childWidthMeasureSpec, childHeightMeasureSpec);
224 final int childWidth = child.getMeasuredWidth()
293 final View child = getVirtualChildAt(i); local
    [all...]
Gallery.java 73 * How long the transition animation should run when a child view changes
84 * Left most edge of a child seen so far during layout.
89 * Right most edge of a child seen so far during layout.
135 * The currently selected item's child.
242 * Sets how long the transition animation should run when a child view
277 protected boolean getChildStaticTransformation(View child, Transformation t) {
280 t.setAlpha(child == mSelectedChild ? 1.0f : mUnselectedAlpha);
341 int getChildHeight(View child) {
342 return child.getMeasuredHeight();
400 // The extreme child is past his boundary point
459 final View child = getChildAt(i); local
470 final View child = getChildAt(i); local
545 View child = getChildAt(i); local
724 View child; local
1173 View child = getChildAt(childPosition); local
1196 View child = mSelectedChild = getChildAt(mSelectedPosition - mFirstPosition); local
    [all...]
SimpleExpandableListAdapter.java 28 * An easy adapter to map static data to group and child views defined in an XML
33 * the Map to specific views. This process is similar for a child, except it is
35 * where the first List corresponds to the group of the child, the second List
36 * corresponds to the position of the child within the group, and finally the
37 * Map holds the data for that particular child.
75 * in the inner List corresponds to a child within the group
76 * (index by child position), and the Map corresponds to the data
77 * for a child (index by values in the childFrom array). The Map
78 * contains the data for each child, and should include all the
81 * associated with each child
    [all...]
  /external/blktrace/
rbtree.c 224 struct rb_node *child, *parent; local
228 child = node->rb_right;
230 child = node->rb_left;
238 child = node->rb_right;
242 if (child)
243 rb_set_parent(child, parent);
245 parent->rb_right = child;
248 parent->rb_left = child;
272 if (child)
273 rb_set_parent(child, parent)
    [all...]
  /external/webkit/WebCore/html/
HTMLTableElement.cpp 69 for (Node* child = firstChild(); child; child = child->nextSibling()) {
70 if (child->hasTagName(captionTag))
71 return static_cast<HTMLTableCaptionElement*>(child);
84 for (Node* child = firstChild(); child; child = child->nextSibling())
95 Node* child; local
116 Node* child; local
    [all...]
HTMLOListElement.cpp 73 for (RenderObject* child = renderer(); child; child = child->nextInPreOrder(renderer())) {
74 if (child->isListItem())
75 toRenderListItem(child)->updateValue();
  /external/webkit/WebCore/rendering/
RenderBlock.cpp 238 for (RenderObject* child = firstChild(); child; child = child->nextSibling()) {
239 if (child->isAnonymousBlock()) {
243 child->setStyle(newStyle.release());
285 // Insert the child into the anonymous block box instead of here.
309 // So, if our children are currently inline and a block child has to be inserted, we move all our
322 // If we're inserting an inline child but all of our children are blocks, then we have to make sure
405 void RenderBlock::moveChildTo(RenderObject* to, RenderObjectChildList* toChildList, RenderObject* child)
422 RenderObject* child = nextChild; local
437 RenderObject* child = nextChild; local
457 RenderObject *child = firstChild(); local
559 RenderObject* child = prev ? prev : next; local
1296 RenderBox* child = next; local
4330 RenderObject *child = firstChild(); local
    [all...]
RenderEmbeddedObject.cpp 163 // Check for a child EMBED tag.
165 for (Node* child = objectElement->firstChild(); child; ) {
166 if (child->hasTagName(embedTag)) {
167 embed = static_cast<HTMLEmbedElement*>(child);
171 if (child->hasTagName(objectTag))
172 child = child->nextSibling(); // Don't descend into nested OBJECT tags
174 child = child->traverseNextNode(objectElement); // Otherwise descend (EMBEDs may be inside COMMENT tags
197 Node* child = objectElement->firstChild(); local
    [all...]
RenderObjectChildList.h 47 // FIXME: Temporary while RenderBox still exists. Eventually this will just happen during insert/append/remove methods on the child list, and nobody
49 void setFirstChild(RenderObject* child) { m_firstChild = child; }
50 void setLastChild(RenderObject* child) { m_lastChild = child; }
56 void insertChildNode(RenderObject* owner, RenderObject* child, RenderObject* before, bool fullInsert = true);
  /dalvik/libcore/dom/src/test/java/org/w3c/domts/level1/core/
elementgetelementsbytagnameaccessnodelist.java 62 Node child; local
69 child = testEmployee.getFirstChild();
70 childType = (int) child.getNodeType();
73 child = child.getNextSibling();
75 childName = child.getNodeName();
77 child = child.getFirstChild();
78 childValue = child.getNodeValue();
  /external/skia/src/views/
SkViewInflate.cpp 19 const SkDOM::Node* child = dom.getFirstChild(node); local
20 while (child)
22 SkView* view = this->createView(dom, child);
25 this->rInflate(dom, child, view);
30 const char* name = dom.getName(child);
33 if (!strcmp(name, "listenTo") && (target = dom.findAttr(child, "target")) != NULL)
36 if (!strcmp(name, "broadcastTo") && (target = dom.findAttr(child, "target")) != NULL)
39 child = dom.getNextSibling(child);
  /external/webkit/WebCore/svg/
SVGFontElement.cpp 70 for (Node* child = firstChild(); child; child = child->nextSibling()) {
71 if (child->hasTagName(missing_glyphTag))
72 return static_cast<SVGMissingGlyphElement*>(child);
83 for (Node* child = firstChild(); child; child = child->nextSibling())
    [all...]
SVGSwitchElement.cpp 42 bool SVGSwitchElement::childShouldCreateRenderer(Node* child) const
48 return (n == child); // Only allow this child if it's the first valid child
  /external/dropbear/libtomcrypt/testprof/
der_tests.c 198 /* we expect l->next to be NULL and l->child to not be */
200 if (l->next != NULL || l->child == NULL) {
201 fprintf(stderr, "(%d), %d, %lu, next=%p, prev=%p, parent=%p, child=%p\n", __LINE__, l->type, l->size, l->next, l->prev, l->parent, l->child);
207 fprintf(stderr, "(%d), %d, %lu, next=%p, prev=%p, parent=%p, child=%p\n", __LINE__, l->type, l->size, l->next, l->prev, l->parent, l->child);
210 l = l->child;
214 if (l->next == NULL || l->child != NULL) {
215 fprintf(stderr, "(%d), %d, %lu, next=%p, prev=%p, parent=%p, child=%p\n", __LINE__, l->type, l->size, l->next, l->prev, l->parent, l->child);
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
Workspace.java 205 public void addView(View child, int index, LayoutParams params) {
206 if (!(child instanceof CellLayout)) {
209 super.addView(child, index, params);
213 public void addView(View child) {
214 if (!(child instanceof CellLayout)) {
217 super.addView(child);
221 public void addView(View child, int index) {
222 if (!(child instanceof CellLayout)) {
225 super.addView(child, index);
229 public void addView(View child, int width, int height)
251 View child = currentScreen.getChildAt(i); local
268 View child = currentScreen.getChildAt(i); local
548 final View child = getChildAt(i); local
1278 View child = currentScreen.getChildAt(i); local
1297 View child = currentScreen.getChildAt(i); local
    [all...]
  /dalvik/libcore/concurrent/src/test/java/tests/api/java/util/concurrent/
ThreadLocalTest.java 67 Thread child = null; local
69 child = new ITLThread(x);
70 child.start();
80 if (child != null) { // Wait for child (if any)
82 child.join();
  /dalvik/libcore/luni/src/main/java/java/lang/
InheritableThreadLocal.java 22 * A thread-local variable whose value is passed from parent to child thread. By
23 * default, the value of an inheritable thread-local variable of a child thread
27 * thread-local variable to the child's thread-local variable.
42 * Computes the initial value of this thread-local variable for the child
44 * creating a child thread. The default implementation returns the parent
48 * @return the initial value of the variable for the child thread.
  /cts/tests/assets/webkit/
jswindow.html 23 childWindow.document.title = "javascript child window";
24 childWindow.document.write("javascript child window");
  /external/webkit/WebCore/manual-tests/inspector/
profiler-test-call.html 32 its child and a fakeInteriorFunction() as call()'s child.
  /external/oprofile/daemon/
opd_perfmon.c 87 struct child { struct
96 static struct child * children;
144 printf("Child received SIGTERM, killing parent.\n");
206 static void create_context(struct child * self)
227 static void write_pmu(struct child * self)
283 static void load_context(struct child * self)
299 static void notify_parent(struct child * self, size_t cpu)
307 fprintf(stderr, "Failed to write child pipe with %s\n",
317 struct child * self = &children[cpu];
362 static void wait_for_child(struct child * child
    [all...]
  /external/clearsilver/man/man3/
hdf_obj_child.3 14 hdf_obj_child - Return the first child of a dataset node

Completed in 903 milliseconds

1 2 34 5 6 7 8 91011>>