Searched defs:child (Results 51 - 75 of 802) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGTransformableContainer.cpp50 bool RenderSVGTransformableContainer::isChildAllowed(RenderObject* child, RenderStyle* style) const argument
54 Node* node = child->node();
58 // Reject this child if it isn't the first valid node.
64 if (isSVGAElement(*child->node()))
67 return parent()->isChildAllowed(child, style);
69 return RenderSVGContainer::isChildAllowed(child, style);
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
H A DImageFilterBuilderTest.cpp97 SkImageFilter* child = filter->getInput(0); // Should be Merge local
98 EXPECT_EQ(child->asColorFilter(0), false);
99 EXPECT_EQ(child->countInputs(), 2);
100 child = child->getInput(1); // Should be CS (D->L)
101 EXPECT_EQ(child->asColorFilter(0), true);
102 EXPECT_EQ(child->countInputs(), 1);
103 child = child->getInput(0); // Should be Blend
104 EXPECT_EQ(child
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DNonCopyingSort.h40 ptrdiff_t child = root * 2 + 1; local
41 if (child < end && compareLess(array[child], array[child + 1]))
42 child++;
44 if (compareLess(array[root], array[child])) {
45 swap(array[root], array[child]);
46 root = child;
/external/chromium_org/third_party/android_crazy_linker/src/tests/
H A Dtest_relocated_shared_relro.cpp38 pid_t child = fork(); local
39 if (child < 0)
42 if (child == 0) {
43 // In the child.
52 printf("RELRO used in child process\n");
82 printf("Relocated RELRO sent to child\n");
86 printf("Parent waiting for child\n");
88 // Wait for child to complete.
90 waitpid(child, &status, 0);
/external/chromium_org/third_party/webrtc/base/
H A Dposix.cc46 // Fork intermediate child to daemonize.
94 // Parent. Reap intermediate child.
96 pid_t child = waitpid(pid, &status, 0); local
97 if (child < 0) {
101 if (child != pid) {
103 LOG(LS_ERROR) << "waitpid() chose wrong child???";
107 LOG(LS_ERROR) << "Intermediate child killed uncleanly"; // Probably crashed
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/compositor/
H A Dlayer_owner.cc59 // Migrate all the child layers over to the new layer. Copy the list because
65 ui::Layer* child = *it; local
66 new_layer->Add(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/views/
H A Dview_targeter_delegate.cc44 View* child = root->child_at(i); local
46 if (!child->CanProcessEventsWithinSubtree())
50 if (!child->visible())
53 View::ConvertRectToTarget(root, child, &rect_in_child_coords_f);
56 if (!child->HitTestRect(rect_in_child_coords))
59 View* cur_view = child->GetEventHandlerForRect(rect_in_child_coords);
82 if (child->HitTestPoint(point_in_child_coords))
83 point_view = child->GetEventHandlerForPoint(point_in_child_coords);
/external/chromium_org/ui/wm/core/
H A Dtransient_window_controller.cc18 aura::Window* child) {
19 TransientWindowManager::Get(parent)->AddTransientChild(child);
23 aura::Window* child) {
24 TransientWindowManager::Get(parent)->RemoveTransientChild(child);
17 AddTransientChild(aura::Window* parent, aura::Window* child) argument
22 RemoveTransientChild(aura::Window* parent, aura::Window* child) argument
/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/elfutils/0.153/libdw/
H A Dlibdw_visit_scopes.c106 struct Dwarf_Die_Chain child; local
108 child.parent = root;
109 if (INTUSE(dwarf_child) (&root->die, &child.die) != 0)
114 return __libdw_visit_scopes (depth + 1, &child,
120 child.prune = false;
124 int result = (*previsit) (depth + 1, &child, arg);
129 if (!child.prune)
130 switch (classify_die (&child.die))
135 if (INTUSE(dwarf_haschildren) (&child.die))
151 Dwarf_Attribute *attr = INTUSE(dwarf_attr) (&child
[all...]
/external/elfutils/0.153/libelf/
H A Delf_end.c105 the child but here we already have the child lock. We
106 solve this problem by giving free the child lock. The
117 struct Elf *child = parent->state.ar.children; local
119 while (child->next != elf)
120 child = child->next;
122 child->next = elf->next;
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DANoopCommand.java34 void removeChild(@SuppressWarnings("unused") Node child) argument
36 // Remove child
37 throw new RuntimeException("Not a child.");
43 // Replace child
44 throw new RuntimeException("Not a child.");
H A DANoopExpression.java34 void removeChild(@SuppressWarnings("unused") Node child) argument
36 // Remove child
37 throw new RuntimeException("Not a child.");
43 // Replace child
44 throw new RuntimeException("Not a child.");
/external/junit/src/org/junit/internal/runners/
H A DErrorReportingRunner.java49 private Description describeCause(Throwable child) { argument
54 private void runCause(Throwable child, RunNotifier notifier) { argument
55 Description description= describeCause(child);
57 notifier.fireTestFailure(new Failure(description, child));
/external/junit/src/org/junit/runner/manipulation/
H A DFilter.java31 public void apply(Object child) throws NoTestsRemainException {
82 * @param child the runner to be filtered by the receiver
85 public void apply(Object child) throws NoTestsRemainException { argument
86 if (!(child instanceof Filterable))
88 Filterable filterable= (Filterable) child;
/external/libcxxabi/test/
H A Dinherited_exception.cpp43 Child child; local
44 child.b1 = 10;
45 child.b2 = 11;
46 child.c = 12;
47 throw child;
51 Child child; local
52 child.b1 = 10;
53 child.b2 = 11;
54 child.c = 12;
55 throw static_cast<Base2&>(child);
59 Child* child = new Child; local
[all...]
/external/llvm/utils/TableGen/
H A DX86DisassemblerTables.cpp73 /// @param child - The class that may be the subset
75 /// @return - True if child is a subset of parent, false otherwise.
76 static inline bool inheritsFrom(InstructionContext child, argument
79 if (child == parent)
84 return(inheritsFrom(child, IC_64BIT) ||
85 inheritsFrom(child, IC_OPSIZE) ||
86 inheritsFrom(child, IC_ADSIZE) ||
87 inheritsFrom(child, IC_XD) ||
88 inheritsFrom(child, IC_XS));
90 return(inheritsFrom(child, IC_64BIT_REX
[all...]
/external/ltrace/testsuite/ltrace.torture/
H A Dvfork-thread.c22 pid_t child = vfork (); local
23 if (child == 0)
30 puts ("vforked child exiting");
/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/strace/test/
H A Dleaderkill.c2 * thread child calling exit_group() and proper passing of the process exit
33 pid_t child, got_pid; local
39 child = fork();
41 switch (child) {
54 got_pid = waitpid(child, &status, 0);
55 assert(got_pid == child);
/external/valgrind/main/helgrind/tests/
H A Dtc07_hbl1.c6 /* 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)) {
H A Dtc21_pthonce.c69 void* child ( void* argV ) { function
73 printf("child: Hi, I'm thread %d\n", *(int*)argV);
87 r= pthread_create(&threads[i], NULL, child, &id_arg[i]);
H A Dtc24_nonzero_sem.c30 pthread_t child[N_THREADS]; local
35 r= pthread_create( &child[i], NULL, child_fn, sem );
40 r= pthread_join( child[i], NULL );

Completed in 1309 milliseconds

1234567891011>>