/dalvik/tests/063-process-manager/ |
expected.txt | 3 spawning child #1 4 spawning child 6 child died 9 spawning child #2 10 spawning child 12 child died
|
info.txt | 1 Test that spawning a child process and then reaping it (a) works and (b)
|
/external/webkit/LayoutTests/fast/xpath/4XPath/Core/ |
test_location_path-expected.txt | 4 PASS /child::* 5 PASS child::*/child::*
|
test_step-expected.txt | 4 PASS child::GCHILD[position()=1] 5 PASS child::GCHILD[1]
|
/external/valgrind/main/none/tests/ |
pth_blockedsig.stdout.exp | 1 thread CHILD sending SIGUSR1 to thread MAIN
|
/external/valgrind/main/drd/tests/ |
tc08_hbl2.stdout.exp | 0 child: new value 6 2 child: new value 10
|
tc21_pthonce.stdout.exp | 2 child: Hi, I'm thread 0 3 child: Hi, I'm thread 1
|
/external/valgrind/main/helgrind/tests/ |
tc08_hbl2.stdout.exp | 0 child: new value 6 2 child: new value 10
|
tc21_pthonce.stdout.exp | 2 child: Hi, I'm thread 0 3 child: Hi, I'm thread 1
|
tc01_simple_race.c | 6 /* Simple test program, has a race. Parent and child both modify x 20 pthread_t child; local 22 if (pthread_create(&child, NULL, child_fn, NULL)) { 27 /* Unprotected relative to child */ 30 if (pthread_join(child, NULL)) {
|
tc02_simple_tls.c | 6 /* Simple test program, no race: parent only modified x after child 14 /* Unprotected relative to parent, but in child's segment only */ 21 pthread_t child; local 25 if (pthread_create(&child, NULL, child_fn, NULL)) { 30 if (pthread_join(child, NULL)) {
|
tc16_byterace.c | 13 bytes[2*i + 0] ++; /* child accesses: 0 2 4 6 8 */ 20 pthread_t child; local 22 if (pthread_create(&child, NULL, child_fn, NULL)) { 27 /* Unprotected relative to child, but harmless, since different 32 /* Unprotected relative to child, but harmful; same bytes */ 36 if (pthread_join(child, NULL)) {
|
/external/skia/src/core/ |
SkDrawing.cpp | 41 SkDrawing* child; local 42 while ((child = iter.next()) != NULL) { 43 child->draw(canvas); 74 SkDrawing* SkDrawing::attachChildToBack(SkDrawing* child) { 75 SkASSERT(child != this); 77 if (child == NULL || fFirstChild == child) { 78 return child; 81 child->ref(); 82 child->detachFromParent() [all...] |
/external/webkit/LayoutTests/fast/xpath/py-dom-xpath/ |
paths-expected.txt | 1 PASS child::para 2 PASS child::* 3 PASS child::text() 4 PASS child::node() 13 PASS child::chapter/descendant::para 14 PASS child::*/child::para 17 PASS /descendant::olist/child::item 18 PASS child::para[position()=1] 19 PASS child::para[position()=last() [all...] |
nodetests-expected.txt | 5 PASS doc/child::* 6 PASS a:doc/child::* 12 PASS doc/child::text() 13 PASS doc/child::comment() 14 PASS doc/child::processing-instruction() 15 PASS doc/child::processing-instruction("one")
|
/external/clang/test/CodeGenObjC/ |
category-super-class-meth.m | 7 @interface Child: BASE 10 @interface Child (Categ) 14 @implementation Child @end 16 @implementation Child (Categ)
|
/external/webkit/Source/WebCore/rendering/ |
RenderFlexibleBox.cpp | 55 RenderBox* child = box->firstChildBox(); local 56 while (child) { 57 if (child->style()->boxOrdinalGroup() > lastOrdinal) 58 lastOrdinal = child->style()->boxOrdinalGroup(); 59 child = child->nextSiblingBox(); 124 for (RenderBox* child = firstChildBox(); child; child = child->nextSiblingBox()) 307 RenderBox* child = iterator.first(); local 346 RenderBox* child; local 658 RenderBox* child; local [all...] |
RenderRuby.cpp | 75 RenderObject* child = ruby->firstChild(); local 76 return isRubyBeforeBlock(child) ? static_cast<RenderBlock*>(child) : 0; 81 RenderObject* child = ruby->lastChild(); local 82 return isRubyAfterBlock(child) ? static_cast<RenderBlock*>(child) : 0; 97 RenderObject* child = ruby->lastChild(); local 98 if (child && !child->isRubyRun()) 99 child = child->previousSibling() [all...] |
/external/webkit/Source/WebCore/html/ |
HTMLTableRowsCollection.cpp | 57 Node* child = 0; local 62 for (child = previous->nextSibling(); child; child = child->nextSibling()) { 63 if (child->hasTagName(trTag)) 64 return static_cast<HTMLTableRowElement*>(child); 70 child = table->firstChild(); 72 child = previous->parentNode()->nextSibling(); 73 for (; child; child = child->nextSibling()) [all...] |
/external/valgrind/main/memcheck/tests/ |
noisy_child.vgtest | 2 vgopts: --child-silent-after-fork=yes
|
noisy_child.c | 22 pid_t child; local 29 child = fork(); 30 assert(child != -1); /* assert fork did not fail */ 32 if (child == 0) { 33 /* I am the child */
|
/external/webkit/LayoutTests/fast/dom/Attr/ |
child-nodes-length-cache-expected.txt | 1 Test for bug 19759: ChildNodeList for an attribute node is not properly invalidated after appending a child.
|
/external/chromium/chrome/browser/ui/gtk/ |
gtk_expanded_container_unittest.cc | 23 for (GList* child = children; child; child = child->next) { 24 if (GTK_WIDGET(child->data) == widget) { 105 GtkWidget* child = gtk_fixed_new(); local 106 gtk_container_add(GTK_CONTAINER(expanded_), child); local 114 EXPECT_EQ(0, child->allocation.x); 115 EXPECT_EQ(0, child->allocation.y); 116 EXPECT_EQ(50, child->allocation.width) 130 GtkWidget* child = gtk_fixed_new(); local 134 gtk_container_add(GTK_CONTAINER(expanded_), child); local 147 GtkWidget* child = gtk_fixed_new(); local 149 child, 10, 20); local 156 child, 40, 50); local [all...] |
/external/llvm/lib/MC/ |
MCLoggingStreamer.cpp | 19 llvm::OwningPtr<MCStreamer> Child; 25 : MCStreamer(_Child->getContext()), Child(_Child), OS(_OS) {} 35 virtual bool isVerboseAsm() const { return Child->isVerboseAsm(); } 37 virtual bool hasRawTextSupport() const { return Child->hasRawTextSupport(); } 39 virtual raw_ostream &GetCommentOS() { return Child->GetCommentOS(); } 43 return Child->AddComment(T); 48 return Child->AddBlankLine(); 53 return Child->ChangeSection(Section); 58 return Child->InitSections(); 63 return Child->EmitLabel(Symbol) [all...] |
/external/chromium/chrome/browser/importer/ |
firefox_importer_unittest_messages_internal.h | 10 // a child process by FFUnitTestDecryptorProxy. 12 // Server->Child: Initialize the decrytor with the following paramters. 16 // Child->Server: Return paramter from init call. 20 // Server->Child: Decrypt a given string. 23 // Child->Server: Decrypted String. 27 // Server->Child: Die.
|