HomeSort by relevance Sort by last modified time
    Searched refs:child (Results 176 - 200 of 1727) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/chrome/browser/ui/libgtk2ui/
app_indicator_icon_menu.cc 48 for (GList* child = children; child; child = g_list_next(child)) {
49 if (g_object_get_data(G_OBJECT(child->data), "click-action-item") !=
51 gtk_menu_item_set_label(GTK_MENU_ITEM(child->data), label);
  /external/chromium_org/third_party/WebKit/Source/core/editing/
MergeIdenticalElementsCommand.cpp 80 for (Node* child = m_element2->firstChild(); child && child != atChild; child = child->nextSibling())
81 children.append(child);
  /external/chromium_org/ui/events/test/
test_event_target.cc 21 void TestEventTarget::AddChild(scoped_ptr<TestEventTarget> child) {
22 TestEventTarget* child_r = child.get();
23 if (child->parent()) {
24 AddChild(child->parent()->RemoveChild(child.release()));
26 children_.push_back(child.release());
  /external/compiler-rt/test/BlocksRuntime/
fail.c 48 pid_t child = fork(); local
50 if (child == 0) {
51 // in child
64 if (child < 0) {
70 if (deadchild != child) {
71 printf("wait got %d instead of %d\n", deadchild, child);
78 //printf("exit status of child %d was %d\n", child, WEXITSTATUS(status));
79 sprintf(buffer, "/tmp/errorfile_%d", child);
  /bionic/libc/arch-arm64/bionic/
__bionic_clone.S 34 # Copy 'fn' and 'arg' onto the child stack.
41 # Are we the child?
52 # We're in the child now. Set the end of the frame record chain...
56 # ...and call __start_thread with the 'fn' and 'arg' we stored on the child stack.
  /cts/suite/cts/deviceTests/opengl/jni/graphics/
SceneGraphNode.cpp 22 void SceneGraphNode::addChild(SceneGraphNode* child) {
23 mChildren.add(child);
  /development/samples/Support7Demos/src/com/example/android/supportv7/widget/decorator/
DividerItemDecoration.java 72 final View child = parent.getChildAt(i); local
73 final RecyclerView.LayoutParams params = (RecyclerView.LayoutParams) child
75 final int top = child.getBottom() + params.bottomMargin +
76 Math.round(ViewCompat.getTranslationY(child));
89 final View child = parent.getChildAt(i); local
90 final RecyclerView.LayoutParams params = (RecyclerView.LayoutParams) child
92 final int left = child.getRight() + params.rightMargin +
93 Math.round(ViewCompat.getTranslationX(child));
  /development/samples/devbytes/animation/ActivityAnimations/src/com/example/android/activityanim/
ShadowLayout.java 92 * Overriding onDraw allows us to draw shadows behind every child of this container.
99 View child = getChildAt(i); local
100 if (child.getVisibility() != View.VISIBLE || child.getAlpha() == 0) {
105 canvas.translate(child.getLeft() + depthFactor,
106 child.getTop() + depthFactor);
107 canvas.concat(child.getMatrix());
108 tempShadowRectF.right = child.getWidth();
109 tempShadowRectF.bottom = child.getHeight();
  /external/bison/lib/
wait-process.c 57 'child' field to 0 when unregistering a slave process, and wouldn't need
59 The 'used' and 'child' fields are accessed from within the cleanup_slaves()
64 volatile pid_t child; member in struct:__anon4990
97 pid_t slave = slaves[n].child;
110 register_slave_subprocess (pid_t child)
130 entry as used only after the child pid has been written to the
131 memory location s->child. */
132 s->child = child;
151 Additionally we need to kill child, because it's not yet amon
    [all...]
  /external/chromium_org/ash/wm/
always_on_top_controller.h 35 virtual void OnWindowAdded(aura::Window* child) OVERRIDE;
36 virtual void OnWillRemoveWindow(aura::Window* child) OVERRIDE;
  /external/chromium_org/chrome/browser/task_profiler/
task_profiler_data_serializer_unittest.cc 66 tracked_objects::BirthOnThreadSnapshot child; local
67 child.location.file_name = "path/to/bar.cc";
68 child.location.function_name = "FizzBoom";
69 child.location.line_number = 433;
70 child.thread_name = "Chrome_IOThread";
87 process_data.tasks.back().birth = child;
97 // Add a parent-child pair.
101 process_data.descendants.back().child = child;
  /external/chromium_org/content/renderer/accessibility/
renderer_accessibility_focus_only.cc 22 // The root node will always have id 1. Let each child node have a new
98 ui::AXNodeData& child = event.update.nodes[1]; local
111 child.id = next_id_;
112 child.role = ui::AX_ROLE_GROUP;
115 child.location = gfx::Rect(
118 child.location = root.location;
120 child.location = gfx::Rect();
124 child.state =
128 child.state |= (1 << ui::AX_STATE_READ_ONLY);
  /external/chromium_org/third_party/WebKit/Source/core/html/imports/
HTMLImport.cpp 69 void HTMLImport::appendImport(HTMLImport* child)
71 appendChild(child);
75 if (child->isSync())
134 for (HTMLImport* child = firstChild(); child; child = child->next())
135 child->showTree(highlight, depth + 1);
HTMLImportsController.cpp 97 OwnPtrWillBeRawPtr<HTMLImportChild> child = adoptPtrWillBeNoop(new HTMLImportChild(url, loader, mode)); local
98 child->setClient(client);
99 parent->appendImport(child.get());
100 loader->addImport(child.get());
101 return root()->add(child.release());
112 HTMLImportChild* child = createChild(request.url(), loader, parent, client); local
113 child->didShareLoader();
114 return child;
126 HTMLImportChild* child = createChild(request.url(), loader, parent, client); local
130 child->didStartLoading()
    [all...]
  /external/chromium_org/ui/wm/core/
transient_window_controller.h 23 aura::Window* child) OVERRIDE;
25 aura::Window* child) OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
treeoutline.js 70 * @param {!TreeElement} child
72 TreeOutline.prototype.appendChild = function(child)
76 insertionIndex = insertionIndexForObjectInListSortedByFunction(child, this.children, this.treeOutline.comparator);
79 this.insertChild(child, insertionIndex);
83 * @param {!TreeElement} child
86 TreeOutline.prototype.insertBeforeChild = function(child, beforeChild)
88 if (!child)
89 throw("child can't be undefined or null");
98 this.insertChild(child, childIndex);
102 * @param {!TreeElement} child
    [all...]
  /external/chromium_org/mojo/services/public/cpp/view_manager/lib/
view.cc 85 void RemoveChildImpl(View* child, View::Children* children) {
87 std::find(children->begin(), children->end(), child);
90 ViewPrivate(child).ClearParent();
201 View* child = children_.front(); local
202 if (!OwnsView(manager_, child)) {
203 ViewPrivate(child).ClearParent();
206 child->Destroy();
207 DCHECK(std::find(children_.begin(), children_.end(), child) ==
236 void View::AddChild(View* child) {
240 CHECK_EQ(ViewPrivate(child).view_manager(), manager_)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
idl_definitions.py 120 for child in children:
121 child_class = child.GetClass()
123 interface = IdlInterface(idl_name, child)
126 exception = IdlException(idl_name, child)
130 type_name = child.GetName()
131 typedefs[type_name] = typedef_node_to_type(child)
133 enumeration = IdlEnum(idl_name, child)
136 callback_function = IdlCallbackFunction(idl_name, child)
142 dictionary = IdlDictionary(idl_name, child)
217 for child in node.GetChildren()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
CPUProfileBottomUpDataGrid.js 27 // The root node is a representation of each individual function called, and each child of that node represents
29 // each child still represent the root node. We have to be particularly careful of recursion with this mode
59 * @param {!WebInspector.ProfileDataGridNode} child
61 _keepOnlyChild: function(child)
66 this.appendChild(child);
85 var child = this.childrenByCallUID[aCallUID];
87 if (child)
88 this.merge(child, true);
104 * @param {!WebInspector.ProfileDataGridNode} child
107 merge: function(child, shouldAbsorb
    [all...]
  /external/chromium_org/third_party/skia/src/views/
SkStackViewLayout.cpp 71 /* Measure the main-dimension for all the children. If a child is marked flex in that direction
78 SkView* child; local
82 while ((child = iter.next()) != NULL)
85 if (child->getFlags() & flexMask)
88 limit += (child->*sizeProc)();
162 SkView* child; local
167 while ((child = iter.next()) != NULL)
171 (child->*mainLocP)(pos);
172 SkScalar crossLoc = crossStartM + gAlignProcs[fAlign]((child->*crossGetSizeP)(), crossLimit);
175 (child->*crossLocP)(crossLoc)
259 SkView* child; local
    [all...]
  /external/chromium_org/third_party/libxml/src/
check-xsddata-test-suite.py 64 child = node.children
65 while child != None:
66 if child.type != 'text':
67 instance = instance + child.serialize()
68 child = child.next
117 child = node.children
118 while child != None:
119 if child.type != 'text':
120 instance = instance + child.serialize(
    [all...]
  /external/chromium_org/ash/wm/workspace/
workspace_layout_manager.cc 76 void WorkspaceLayoutManager::OnWindowAddedToLayout(Window* child) {
77 wm::WindowState* window_state = wm::GetWindowState(child);
80 windows_.insert(child);
81 child->AddObserver(this);
86 backdrop_delegate_->OnWindowAddedToLayout(child);
87 WindowPositioner::RearrangeVisibleWindowOnShow(child);
90 void WorkspaceLayoutManager::OnWillRemoveWindowFromLayout(Window* child) {
91 windows_.erase(child);
92 child->RemoveObserver(this);
93 wm::GetWindowState(child)->RemoveObserver(this)
    [all...]
  /external/chromium_org/net/tools/tld_cleanup/
make_dafsa.py 37 most one child with a label starting by the same character. The output
42 bits in a link (a reference to a child node) indicate if it has a size of one,
103 offset itself and the first child node. Subsequent offsets are the distance
104 between previous child node and next child node. Thus each offset links a node
105 to a child node. The distance is always counted between start addresses, i.e.
106 first byte in decoded offset or first byte in child node.
142 0: 0x81 <end_offset1> child at position 0 + (0x81 & 0x3F) -> jump to 1
145 2: 0x02 <offset1> child at position 2 + (0x02 & 0x3F) -> jump to 4
147 3: 0x81 <end_offset1> child at position 4 + (0x81 & 0x3F) -> jump to
    [all...]
  /external/chromium_org/ui/views/layout/
box_layout.cc 61 View* child = host->child_at(i); local
62 if (!child->visible())
65 MainAxisSizeForView(child, child_area.width()) + between_child_spacing_;
67 flex_sum += GetFlexForView(child);
106 View* child = host->child_at(i); local
107 if (!child->visible())
114 int free_space = CrossAxisSize(bounds) - CrossAxisSizeForView(child);
122 SetCrossAxisSize(CrossAxisSizeForView(child), &bounds);
127 if (GetFlexForView(child) > 0) {
128 current_flex += GetFlexForView(child);
160 const View* child = host->child_at(i); local
271 const View* child = host->child_at(i); local
288 const View* child = host->child_at(i); local
    [all...]
  /external/chromium_org/net/spdy/
spdy_priority_forest.h 24 // node can have at most one parent and at most one child (forming a list), but
50 // or if the parent doesn't exist, or if the parent already has a child.
70 // Get the child of the given node. If the node doesn't exist, or has no
71 // child, returns NodeId().
82 // already has a different child than the node, or (3) if the new parent is a
115 Node() : type(ROOT_NODE), flags(0), child() {
124 NodeId child; // node ID of child (or NodeId() for no child) member in struct:net::SpdyPriorityForest::Node
187 if (parent->child != NodeId())
217 Node* child = &all_nodes_[node.child]; local
470 Node *child = &all_nodes_[next->child]; local
    [all...]

Completed in 2395 milliseconds

1 2 3 4 5 6 78 91011>>