HomeSort by relevance Sort by last modified time
    Searched refs:child (Results 701 - 725 of 2913) sorted by null

<<21222324252627282930>>

  /external/qemu/android/
config-file.c 443 AConfig* child; local
448 for (child = node->first_child; child; child = child->next)
449 writer_node(w,child,margin+4);
460 AConfig* child; local
466 for (child = root->first_child; child; child = child->next
    [all...]
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
Schema.java 89 @param name Name of the child element
94 ElementType child = getElementType(name); local
96 if (child == null) {
97 throw new Error("No child " + name + " for parent " + parentName);
100 throw new Error("No parent " + parentName + " for child " + name);
102 child.setParent(parent);
  /external/valgrind/main/helgrind/tests/
tc07_hbl1.c 6 /* Simple test program, no race. Parent and child both modify x and
121 pthread_t child; local
123 if (pthread_create(&child, NULL, child_fn, NULL)) {
130 if (pthread_join(child, NULL)) {
tc24_nonzero_sem.c 30 pthread_t child[N_THREADS]; local
35 r= pthread_create( &child[i], NULL, child_fn, sem );
40 r= pthread_join( child[i], NULL );
  /frameworks/base/core/java/android/widget/
HorizontalScrollView.java 48 * is a {@link FrameLayout}, meaning you should place one child in it
49 * containing the entire contents to scroll; this child may itself be a layout
50 * manager with a complex hierarchy of objects. A child that is often used
90 * The child to give focus to in the event that a child has requested focus while the
91 * layout is dirty. This prevents the scroll from being wrong if the child has not been
109 * When set to true, the scroll view measure its child to make it fill the currently
219 public void addView(View child) {
221 throw new IllegalStateException("HorizontalScrollView can host only one direct child");
224 super.addView(child);
258 View child = getChildAt(0); local
323 final View child = getChildAt(0); local
397 final View child = getChildAt(0); local
826 View child = getChildAt(0); local
1589 View child = getChildAt(0); local
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
nodelisttraverselist.java 31 * The range of valid child node indices is 0 thru length -1
67 Node child; local
101 child = (Node) employeeList.item(indexN100A4);
102 childName = child.getNodeName();
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
getElementsByTagNameNS03.java 77 Node child; local
100 child = (Node) elementList.item(indexN10076);
101 childName = child.getNodeName();
getElementsByTagNameNS10.java 79 Node child; local
103 child = (Node) elementList.item(indexN1007E);
104 childName = child.getNodeName();
importNode01.java 41 * Create a child Text node with value "importedText" for the attribute node above.
44 * Method should return a node whose name matches "elem:attr1" and a child node
86 Node child; local
113 child = aNode.getFirstChild();
114 childValue = child.getNodeValue();
  /libcore/luni/src/test/java/tests/org/w3c/dom/
GetElementsByTagNameNS.java 98 Node child; local
121 child = (Node) elementList.item(indexN10076);
122 childName = child.getNodeName();
130 Node child; local
144 child = (Node) elementList.item(indexN10059);
145 childName = child.getNodeName();
205 Node child; local
230 child = (Node) elementList.item(indexN1007E);
231 childName = child.getNodeName();
240 Node child; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
ResizeHandler.java 94 for (INode child : layout.getChildren()) {
95 if (child != resized) {
96 String id = child.getStringAttr(ANDROID_URI, ATTR_ID);
97 addBounds(child, id,
98 !mHorizontalDeps.contains(child),
99 !mVerticalDeps.contains(child));
177 * @param child the node being resized
181 public void updateResize(DropFeedback feedback, INode child, Rect newBounds,
190 String childId = child.getStringAttr(ANDROID_URI, ATTR_ID);
196 hEdge = new Segment(b.y, b.x, b.x2(), child, childId, mHorizontalEdgeType, NO_MARGIN)
    [all...]
  /art/compiler/dex/
post_opt_passes.cc 102 for (BasicBlock* child = child_iter.Next(); child != nullptr; child = child_iter.Next()) {
103 child->predecessors->Insert(bb->id);
  /cts/suite/audio_quality/lib/src/task/
TaskSequential.cpp 59 TaskGeneric* child = *i; local
60 TaskGeneric::ExecutionResult result = child->run();
110 TaskAsync* child = *i; local
111 TaskGeneric::ExecutionResult result = child->complete();
  /cts/suite/cts/deviceTests/opengl/jni/graphics/
SceneGraphNode.h 25 void addChild(SceneGraphNode* child);
  /cts/tools/vm-tests-tf/src/util/build/
BuildStep.java 80 for (BuildStep child : children) {
81 if (!child.build()) {
99 public void addChild(BuildStep child) {
103 children.add(child);
  /developers/build/prebuilts/gradle/ElevationDrag/Application/src/main/java/com/example/android/elevationdrag/
DragFrameLayout.java 30 * A {@link FrameLayout} that allows the user to drag and reposition child views.
67 public boolean tryCaptureView(View child, int pointerId) {
68 return mDragViews.contains(child);
77 public int clampViewPositionHorizontal(View child, int left, int dx) {
82 public int clampViewPositionVertical(View child, int top, int dy) {
  /developers/samples/android/ui/views/Elevation/ElevationDrag/Application/src/main/java/com/example/android/elevationdrag/
DragFrameLayout.java 30 * A {@link FrameLayout} that allows the user to drag and reposition child views.
67 public boolean tryCaptureView(View child, int pointerId) {
68 return mDragViews.contains(child);
77 public int clampViewPositionHorizontal(View child, int left, int dx) {
82 public int clampViewPositionVertical(View child, int top, int dy) {
  /development/samples/browseable/ElevationDrag/src/com.example.android.elevationdrag/
DragFrameLayout.java 30 * A {@link FrameLayout} that allows the user to drag and reposition child views.
67 public boolean tryCaptureView(View child, int pointerId) {
68 return mDragViews.contains(child);
77 public int clampViewPositionHorizontal(View child, int left, int dx) {
82 public int clampViewPositionVertical(View child, int top, int dy) {
  /external/chromium_org/base/json/
json_value_converter_unittest.cc 82 SimpleMessage child; member in struct:base::__anon6894::NestedMessage
90 converter->RegisterNestedField("child", &NestedMessage::child);
130 " \"child\": {\n"
157 EXPECT_EQ(1, message.child.foo);
158 EXPECT_EQ("bar", message.child.bar);
159 EXPECT_TRUE(message.child.baz);
160 EXPECT_TRUE(message.child.bstruct);
161 ASSERT_EQ(2U, message.child.string_values.size());
162 EXPECT_EQ("value_1", *message.child.string_values[0])
    [all...]
  /external/chromium_org/chrome/browser/browsing_data/
cookies_tree_model.h 222 // the COOKIES node to add children. Checking each child and interrogating
274 void AddCookieNode(CookieTreeCookieNode* child) {
275 AddChildSortedByTitle(child);
310 void AddAppCacheNode(CookieTreeAppCacheNode* child) {
311 AddChildSortedByTitle(child);
349 void AddDatabaseNode(CookieTreeDatabaseNode* child) {
350 AddChildSortedByTitle(child);
388 void AddFileSystemNode(CookieTreeFileSystemNode* child) {
389 AddChildSortedByTitle(child);
426 void AddLocalStorageNode(CookieTreeLocalStorageNode* child) {
    [all...]
  /external/chromium_org/chrome/browser/resources/options/
autofill_options.css 30 #autofill-options > div:last-child {
34 #autofill-options > div.settings-list > div:last-child {
  /external/chromium_org/chrome/browser/ui/views/
chrome_views_delegate_aura.cc 18 if (!params.child && params.type != views::Widget::InitParams::TYPE_WINDOW)
  /external/chromium_org/chrome/browser/ui/views/website_settings/
permission_selector_view.h 43 virtual void ChildPreferredSizeChanged(View* child) OVERRIDE;
  /external/chromium_org/mojo/services/view_manager/
node.h 38 void Add(Node* child);
39 void Remove(Node* child);
41 void Reorder(Node* child, Node* relative, OrderDirection direction);
80 aura::Window* child,
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGModelObject.cpp 48 bool RenderSVGModelObject::isChildAllowed(RenderObject* child, RenderStyle*) const
50 return child->isSVG() && !(child->isSVGInline() || child->isSVGInlineText());
153 // issue paint invalidations. We can then skip issuing of paint invalidations for the child

Completed in 1477 milliseconds

<<21222324252627282930>>