Searched refs:child (Results 176 - 200 of 1690) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dpatched_file_system.py87 deleted_files = [child for child in deleted if not child.endswith('/')]
90 modified += [child for child in deleted if child.endswith('/')]
103 for child in added + modified:
104 stat_info.child_versions[child] = version
105 for child in deleted:
106 if stat_info.child_versions.get(child)
[all...]
/external/chromium_org/ui/views/animation/
H A Dbounds_animator_unittest.cc99 TestView* child() { return child_; } function in class:views::BoundsAnimatorTest
114 child()->SetBoundsRect(initial_bounds);
116 animator()->AnimateViewTo(child(), target_bounds);
118 child(), scoped_ptr<gfx::AnimationDelegate>(new TestAnimationDelegate()));
128 EXPECT_EQ(target_bounds, child()->bounds());
138 animator()->AnimateViewTo(child(), gfx::Rect(0, 0, 10, 10));
140 child(), scoped_ptr<gfx::AnimationDelegate>(new OwnedDelegate()));
155 animator()->AnimateViewTo(child(), gfx::Rect(0, 0, 10, 10));
157 child(), scoped_ptr<gfx::AnimationDelegate>(new OwnedDelegate()));
159 animator()->AnimateViewTo(child(), gf
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
H A Dnode_breadcrumb.js77 var child = node.children[i];
78 this.smartStart_(child);
79 if (child.getAttribute &&
80 !goog.isNull(child.getAttribute(cvox.NodeBreadcrumb.TOUCHED_TAG))) {
81 this.setNeeded_(child);
132 var child = node.childNodes[i];
133 if (child.getAttribute &&
134 !goog.isNull(child.getAttribute(cvox.NodeBreadcrumb.NEEDED_TAG_))) {
135 ret.appendChild(this.smartClone_(child));
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
H A DProgress.js119 var child = new WebInspector.SubProgress(this, weight);
120 this._children.push(child);
121 return child;
130 var child = this._children[i];
131 if (child._totalWork)
132 done += child._weight * child._worked / child._totalWork;
133 totalWeights += child._weight;
/external/chromium_org/ui/views/test/
H A Dwidget_test.cc64 Widget* child = new Widget; local
67 child_params.native_widget = CreatePlatformNativeWidget(child);
69 child->Init(child_params);
70 child->SetContentsView(new View);
71 return child;
82 Widget* child = new Widget; local
85 child->Init(params);
86 child->SetContentsView(new View);
87 return child;
/external/tcpdump/
H A Dmakemib52 * struct mib somename = { desc, oid-octet, type, child-pointer, next-pointer
206 if (child[parent] != "") {
207 for (sib = child[parent]; sib != ""; sib = sibling[sib])
220 if (child[parent] == "") {
221 child[parent] = new
223 sibling[new] = child[parent]
224 child[parent] = new
234 # printf "/* %s c=%s s=%s */\n", newitem, child[item], sibling[item]
236 if (child[item] != "") {
237 dump(child[ite
[all...]
/external/chromium_org/ash/wm/
H A Dalways_on_top_controller.cc43 void AlwaysOnTopController::OnWindowAdded(aura::Window* child) { argument
44 // Observe direct child of the containers.
45 if (child->parent() == always_on_top_container_)
46 child->AddObserver(this);
49 void AlwaysOnTopController::OnWillRemoveWindow(aura::Window* child) { argument
50 child->RemoveObserver(this);
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Ddiscoitemsquerytask.cc53 for (const buzz::XmlChild* child = query->FirstChild(); child;
54 child = child->NextChild()) {
56 const buzz::XmlElement* child_element = child->AsElement();
/external/chromium_org/third_party/webrtc/base/
H A Dtaskparent.cc42 void TaskParent::AddChild(Task *child) { argument
43 children_->insert(child);
89 void TaskParent::OnChildStopped(Task *child) { argument
90 if (child->HasError())
92 children_->erase(child);
/external/chromium_org/ui/views/controls/native/
H A Dnative_view_host_test_base.cc49 Widget* child = new Widget; local
53 child->Init(child_params);
54 child->SetContentsView(contents_view);
58 host->Attach(child->GetNativeView());
60 return child;
/external/chromium_org/v8/test/webkit/fast/js/
H A Dcaller-property.js27 function child()
29 return (child.caller !== null);
34 return child();
37 var childHasCallerWhenExecutingGlobalCode = (child.caller !== null);
38 var childHasCallerWhenCalledWithoutParent = child();
/external/qemu/distrib/ext4_utils/src/
H A Dsetup_fs.c15 pid_t child; local
46 child = fork();
47 if (child < 0) {
51 if (child == 0) {
56 while ((pid=waitpid(-1, &status, 0)) != child) {
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DContainerNode.cpp90 while (RefPtrWillBeRawPtr<Node> child = oldParent.firstChild()) {
91 oldParent.parserRemoveChild(*child);
92 treeScope().adoptIfNeeded(*child);
93 parserAppendChild(child.get());
106 bool ContainerNode::isChildTypeAllowed(const Node& child) const
108 if (!child.isDocumentFragment())
109 return childTypeAllowed(child.nodeType());
111 for (Node* node = toDocumentFragment(child).firstChild(); node; node = node->nextSibling()) {
129 exceptionState.throwDOMException(NotFoundError, "The new child element is null.");
137 exceptionState.throwDOMException(HierarchyRequestError, "The new child elemen
233 Node& child = **it; local
282 appendChildCommon(Node& child) argument
338 RefPtrWillBeRawPtr<Node> child = oldChild; local
389 Node& child = **it; local
418 willRemoveChild(Node& child) argument
436 Node& child = **it; local
542 RefPtrWillBeRawPtr<Node> child = oldChild; local
722 Node& child = **it; local
1130 dispatchChildInsertionEvents(Node& child) argument
1150 dispatchChildRemovalEvents(Node& child) argument
1178 updateTreeAfterInsertion(Node& child) argument
[all...]
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DTreePath.py5 function selects a part of the expression, e.g. a child node, a
24 # returns an iterable of all child nodes of that name
25 child = getattr(node, attr_name)
26 if child is not None:
27 if type(child) is list:
28 return child
30 return [child]
80 for child in iterchildren(node, attr_name):
81 if type_name(child) == name:
82 yield child
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DCompositeGrammarTree.java46 //System.out.println("add "+t.toStringTree()+" as child to "+this.toStringTree());
63 CompositeGrammarTree child = children.get(i);
64 r = child.getRule(ruleName);
94 CompositeGrammarTree child = children.get(i);
95 n = child.findNode(g);
109 CompositeGrammarTree child = children.get(i);
110 n = child.findNode(grammarName);
125 CompositeGrammarTree child = children.get(i);
126 child._getPostOrderedGrammarList(grammars);
141 CompositeGrammarTree child
[all...]
/external/chromium-trace/trace-viewer/src/ui/
H A Dcontainer_that_decorates_its_children_test.js26 decorateChild_: function(child) {
27 assertFalse(child.decorated);
28 child.decorated = true;
31 undecorateChild_: function(child) {
32 assertTrue(child.decorated);
33 child.decorated = false;
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DRemoveNodePreservingChildrenCommand.cpp50 RefPtrWillBeRawPtr<Node> child = children[i].release(); local
51 removeNode(child, m_shouldAssumeContentIsAlwaysEditable);
52 insertNodeBefore(child.release(), m_node, m_shouldAssumeContentIsAlwaysEditable);
/external/chromium_org/third_party/skia/src/svg/
H A DSkSVGClipPath.cpp28 SkSVGElement* child = *fChildren.begin(); local
29 SkASSERT(child->getType() == SkSVGType_Use);
30 SkSVGUse* use = (SkSVGUse*) child;
/external/chromium_org/ui/views/examples/
H A Dthrobber_example.cc33 View* child = child_at(0); variable
34 gfx::Size ps = child->GetPreferredSize();
35 child->SetBounds((width() - ps.width()) / 2,
/external/chromium_org/ui/wm/core/
H A Dtransient_window_manager.cc51 void TransientWindowManager::AddTransientChild(Window* child) { argument
56 TransientWindowManager* child_manager = Get(child);
58 Get(child_manager->transient_parent_)->RemoveTransientChild(child);
60 child) == transient_children_.end());
61 transient_children_.push_back(child);
64 // Restack |child| properly above its transient parent, if they share the same
66 if (child->parent() == window_->parent())
70 OnTransientChildAdded(window_, child));
73 void TransientWindowManager::RemoveTransientChild(Window* child) { argument
75 std::find(transient_children_.begin(), transient_children_.end(), child);
[all...]
/external/deqp/framework/randomshaders/
H A DrsgExpressionGenerator.cpp73 Expression* child = curExpr->createNextChild(m_state); local
75 if (child)
77 m_expressionStack.push_back(child);
/external/jemalloc/include/jemalloc/internal/
H A Drtree.h66 void **node, **child; \
71 i++, lshift += bits, node = child) { \
75 child = (void**)node[subkey]; \
76 if (child == NULL) { \
135 void **node, **child; local
140 i++, lshift += bits, node = child) {
144 child = (void**)node[subkey];
145 if (child == NULL) {
148 child = (void**)rtree->alloc(size);
149 if (child
[all...]
/external/lldb/test/functionalities/completion/
H A DTestCompletion.py169 # So that the child gets torn down after the test.
170 self.child = pexpect.spawn('%s %s' % (self.lldbHere, self.lldbOption))
171 child = self.child
172 # Turn on logging for input/output to/from the child.
175 child.logfile_send = f_send
176 child.logfile_read = f_read
178 child.expect_exact(prompt)
179 child.setecho(True)
181 child
[all...]
/external/lldb/test/lang/c/anonymous/
H A Dmain.c39 } child; member in struct:anonymous_grandchild
54 return g->child.foo.d + g->child.b;
/external/lldb/test/lang/cpp/dynamic-value/
H A DTestCppValueCast.py104 for child in tellerA:
105 print "child name:", child.GetName()
106 print child
114 for child in instanceA:
115 print "child name:", child.GetName()
116 print child
132 for child in tellerB:
133 print "child nam
[all...]

Completed in 927 milliseconds

1234567891011>>