/external/jacoco/org.jacoco.cli/src/org/jacoco/cli/internal/commands/ |
Instrument.java | 72 for (final File child : src.listFiles()) { 73 total += instrumentRecursive(child, 74 new File(dest, child.getName()));
|
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/xml/ |
XMLElement.java | 88 * Adds the given child to this element. This will close all previous child 91 * @param child 92 * child element to add 96 protected void addChildElement(final XMLElement child) throws IOException { 104 child.beginOpenTag(); 105 lastchild = child; 133 * Adds an attribute to this element. May only be called before an child 166 * Adds an attribute to this element. May only be called before an child 185 * Adds an attribute to this element. May only be called before an child [all...] |
/external/jacoco/org.jacoco.report.test/src/org/jacoco/report/ |
MultiReportVisitorTest.java | 81 MockGroupVisitor child = new MockGroupVisitor(name); local 82 children.add(child); 83 return child;
|
/external/ltp/testcases/kernel/mem/page/ |
page01.c | 78 int child, count; local 129 "Child %d - fail.\n", 135 "Child %d - ok.\n", i); 169 /* wait for the child processes */ 176 while ((child = wait(&status)) > 0) { 178 tst_resm(TINFO, "Test {%d} exited status %d\n", child, status);
|
page02.c | 77 int child, count; local 194 /* wait for the child processes */ 201 while ((child = wait(&status)) > 0) { 203 tst_resm(TINFO, "\tTest {%d} exited status %d\n", child,
|
/external/ltp/testcases/kernel/mem/shmt/ |
shmt04.c | 32 * Parent process forks a child. Child pauses until parent has created 34 * time child gets the shared memory segment id, attaches to it and 63 int child(); 83 child(); 93 * kill the child if parent failed to do the attach 105 /* kill the child if parent failed to do the attch */ 122 tst_resm(TFAIL, "Waited on the wrong child"); 145 int child(void) function 156 perror("shmget:child process") [all...] |
shmt06.c | 31 * Parent process forks a child. Child pauses until parent has created 33 * time child gets the shared memory segment id, attaches to it at two 62 int child(); 82 child(); 92 * kill the child if parent failed to do the attach 104 /* kill the child if parent failed to do the attch */ 121 tst_resm(TFAIL, "Waited on the wrong child"); 144 int child(void) function 154 perror("shmget:child process") [all...] |
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/mmap/ |
11-4.c | 26 * 2. Wait for the child proces to exit, then 56 pid_t child; local 77 child = fork(); 78 switch (child) { 127 printf("Child exited abnormally\n");
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_detach/ |
2-2.c | 131 pthread_t child; local 164 pthread_create(&child, &scenarii[sc].ta, threaded, 196 ret = pthread_detach(child); 199 "Failed to detach the child thread.");
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_exit/ |
3-2.c | 151 pthread_t child; local 178 pthread_create(&child, &scenarii[i].ta, threaded, 209 ret = pthread_join(child, &rval);
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutex_lock/ |
4-1.c | 33 * ->Child attempts to lock the mutex. 36 * ->Child unlocks the mutex. 92 /** child thread function **/ 99 FAILED("Child first trylock succeeded"); 107 UNRESOLVED(errno, "1st post sem in child failed"); 111 UNRESOLVED(ret, "Child lock failed"); 119 UNRESOLVED(errno, "2nd post sem in child failed"); 124 UNRESOLVED(ret, "Unlock in child failed"); 139 pthread_t child; local 190 /* We create the child thread * [all...] |
/external/python/cpython2/Demo/tkinter/ttk/ |
treeview_multicolumn.py | 28 data = [(tree.set(child, col), child) for child in tree.get_children('')]
|
/external/python/cpython2/Lib/lib2to3/fixes/ |
fix_next.py | 86 for child in assign.children: 87 if child.type == token.EQUAL: 89 elif is_subtree(child, node):
|
/external/python/cpython3/Lib/lib2to3/fixes/ |
fix_next.py | 86 for child in assign.children: 87 if child.type == token.EQUAL: 89 elif is_subtree(child, node):
|
/external/setupdesign/main/src/com/google/android/setupdesign/view/ |
FillContentLayout.java | 85 private void measureIllustrationChild(View child, int parentWidth, int parentHeight) { 87 final MarginLayoutParams lp = (MarginLayoutParams) child.getLayoutParams(); 102 child.measure(childWidthMeasureSpec, childHeightMeasureSpec); 110 // Child wants a specific size... so be it 113 // Child wants to be our size. So be it. 116 // Child wants to determine its own size. It can't be
|
/external/skia/experimental/svg/model/ |
SkSVGGradient.cpp | 54 for (const auto& child : fChildren) { 55 if (child->tag() != SkSVGTag::kStop) { 59 const auto& stop = static_cast<const SkSVGStop&>(*child);
|
/external/skia/modules/sksg/include/ |
SkSGRenderEffect.h | 65 static sk_sp<RenderNode> Make(sk_sp<RenderNode> child, sk_sp<ImageFilter> filter); 74 ImageFilterEffect(sk_sp<RenderNode> child, sk_sp<ImageFilter> filter); 142 static sk_sp<BlendModeEffect> Make(sk_sp<RenderNode> child,
|
/external/skia/src/gpu/glsl/ |
GrGLSLFragmentProcessor.h | 54 const GrFragmentProcessor* child = &fFP->childProcessor(childIdx); local 59 if (fp == child) { 60 return BuilderInputProvider(child, fTs + numToSkip); 129 // This does not recurse to any attached child processors. Recursing the entire processor tree 139 // Emit the child with the default input color (solid white) 144 /** Will emit the code of a child proc in its own scope. Pass in the parent's EmitArgs and 145 * emitChild will automatically extract the coords and samplers of that child and pass them 146 * on to the child's emitCode(). Also, any uniforms or functions emitted by the child will 155 // Use the parent's output color to hold child's output, and use th [all...] |
/external/skia/src/xml/ |
SkDOM.cpp | 80 const Node* child = node->fFirstChild; local 83 for (; child != nullptr; child = child->fNextSibling) { 84 if (!strcmp(name, child->fName)) { 89 return child; 252 SkDOM::Node* child = parent->fFirstChild; variable 254 while (child) { 255 SkDOM::Node* next = child->fNextSibling; 256 child->fNextSibling = prev [all...] |
/external/skqp/experimental/svg/model/ |
SkSVGGradient.cpp | 54 for (const auto& child : fChildren) { 55 if (child->tag() != SkSVGTag::kStop) { 59 const auto& stop = static_cast<const SkSVGStop&>(*child);
|
/external/skqp/src/gpu/glsl/ |
GrGLSLFragmentProcessor.h | 54 const GrFragmentProcessor* child = &fFP->childProcessor(childIdx); local 59 if (fp == child) { 60 return BuilderInputProvider(child, fTs + numToSkip); 129 // This does not recurse to any attached child processors. Recursing the entire processor tree 139 // Emit the child with the default input color (solid white) 144 /** Will emit the code of a child proc in its own scope. Pass in the parent's EmitArgs and 145 * emitChild will automatically extract the coords and samplers of that child and pass them 146 * on to the child's emitCode(). Also, any uniforms or functions emitted by the child will 155 // Use the parent's output color to hold child's output, and use th [all...] |
/external/skqp/src/xml/ |
SkDOM.cpp | 80 const Node* child = node->fFirstChild; local 83 for (; child != nullptr; child = child->fNextSibling) { 84 if (!strcmp(name, child->fName)) { 89 return child; 252 SkDOM::Node* child = parent->fFirstChild; variable 254 while (child) { 255 SkDOM::Node* next = child->fNextSibling; 256 child->fNextSibling = prev [all...] |
/external/tensorflow/tensorflow/contrib/graph_editor/ |
util.py | 114 tree: iterable or not. If iterable, its elements (child) can also be 123 for _, child in iteritems(tree): 124 flatten_tree(child, leaves) 126 for child in tree: 127 flatten_tree(child, leaves) 137 tree: iterable or not. If iterable, its elements (child) can also be 150 (k, transform_tree(child, fn)) for k, child in iteritems(tree)) 158 (transform_tree(child, fn) for child in tree) [all...] |
/external/u-boot/scripts/dtc/ |
livetree.c | 103 struct node *child; local 110 for_each_child(new, child) { 111 child->parent = new; 183 /* Move the override child nodes into the primary node. If 186 /* Pop the child node off the list */ 207 /* if no collision occurred, add child to the old node. */ 282 void add_child(struct node *parent, struct node *child) 286 child->next_sibling = NULL; 287 child->parent = parent; 293 *p = child; 312 struct node *child; local 484 struct node *child; local 496 struct node *child; local 522 struct node *child, *node; local 542 struct node *child, *node; local [all...] |
/external/v8/tools/profview/ |
profile-utils.js | 163 // We found a child node. 165 let child = parent.children[childId]; 166 if (!child) { 167 child = createNodeFromStackEntry(code, codeId, vmState); 168 child.delayedExpansion = { frameList : [], ascending }; 169 parent.children[childId] = child; 171 child.ticks++; 172 addFrameToFrameList(child.delayedExpansion.frameList, stackIndex, stackPos); 336 let child = null; 355 child = tree.children[childId] [all...] |