/external/skia/modules/sksg/src/ |
SkSGMaskEffect.cpp | 14 MaskEffect::MaskEffect(sk_sp<RenderNode> child, sk_sp<RenderNode> mask, Mode mode) 15 : INHERITED(std::move(child))
|
SkSGRoundEffect.cpp | 16 RoundEffect::RoundEffect(sk_sp<GeometryNode> child) 17 : fChild(std::move(child)) {
|
SkSGTrimEffect.cpp | 16 TrimEffect::TrimEffect(sk_sp<GeometryNode> child) 17 : fChild(std::move(child)) {
|
/external/skia/src/sksl/lex/ |
RegexNode.h | 49 RegexNode(Kind kind, RegexNode child) 51 fChildren.push_back(std::move(child));
|
/external/skqp/modules/sksg/src/ |
SkSGGeometryTransform.cpp | 16 GeometryTransform::GeometryTransform(sk_sp<GeometryNode> child, sk_sp<Transform> transform) 17 : fChild(std::move(child))
|
SkSGMaskEffect.cpp | 14 MaskEffect::MaskEffect(sk_sp<RenderNode> child, sk_sp<RenderNode> mask, Mode mode) 15 : INHERITED(std::move(child))
|
SkSGRoundEffect.cpp | 16 RoundEffect::RoundEffect(sk_sp<GeometryNode> child) 17 : fChild(std::move(child)) {
|
SkSGTrimEffect.cpp | 16 TrimEffect::TrimEffect(sk_sp<GeometryNode> child) 17 : fChild(std::move(child)) {
|
/external/skqp/src/sksl/lex/ |
RegexNode.h | 49 RegexNode(Kind kind, RegexNode child) 51 fChildren.push_back(std::move(child));
|
/external/strace/tests/ |
clone_ptrace.c | 50 child(void *const arg) function 75 const pid_t pid = clone(child, tail_alloc(child_stack_size), 102 error_msg_and_fail("unexpected child exit status %d", status);
|
/external/strace/tests-m32/ |
clone_ptrace.c | 50 child(void *const arg) function 75 const pid_t pid = clone(child, tail_alloc(child_stack_size), 102 error_msg_and_fail("unexpected child exit status %d", status);
|
/external/strace/tests-mx32/ |
clone_ptrace.c | 50 child(void *const arg) function 75 const pid_t pid = clone(child, tail_alloc(child_stack_size), 102 error_msg_and_fail("unexpected child exit status %d", status);
|
/external/syzkaller/vendor/google.golang.org/appengine/aetest/ |
instance_vm.go | 57 child *exec.Cmd 83 // Close kills the child api_server.py process, releasing its resources. 89 child := i.child 90 if child == nil { 94 i.child = nil 101 if p := child.Process; p != nil { 104 errc <- child.Wait() 117 return errors.New("timeout killing child process") 206 i.child = exec.Command(python [all...] |
/external/tensorflow/tensorflow/contrib/tensor_forest/kernels/v4/ |
fertile-stats-resource.cc | 50 for (const int32 child : new_children) { 51 AllocateNode(child, children_depth);
|
/external/tensorflow/tensorflow/python/platform/ |
stacktrace_handler_test.py | 32 # child (bool) set to true if we are running in the child process. 35 _CHILD_FLAG_HELP = 'Boolean. Set to true if this is the child process.' 41 if FLAGS.child: 45 if FLAGS.child: 48 # Subprocess sys.argv[0] with --child=True 51 [sys.executable, sys.argv[0], '--child=True'], cwd=os.getcwd(), 55 [sys.argv[0], '--child=True'], cwd=os.getcwd(), 63 # Make sure the child process is dead before we proceed. 66 logging.info('Output from the child process:' [all...] |
/external/toolchain-utils/bestflags/ |
genetic_algorithm.py | 263 # Try num_trials times to produce a new child. 268 child = mother.ReproduceWith(father, specs, mutation_rate) 269 if child not in child_pool and child not in cache: 270 child_pool.add(child) 280 child = RandomMutate(specs, keep_task.GetFlags(), mutation_rate) 281 if child not in child_pool and child not in cache: 282 child_pool.add(child)
|
/external/v8/src/compiler/ |
live-range-separator.cc | 145 LiveRange *child = top; local 146 for (; child != nullptr; child = child->next()) { 147 if (child->spilled() || 148 child->NextSlotPosition(child->Start()) != nullptr) { 152 if (child == nullptr) {
|
/external/yapf/yapf/yapflib/ |
pytree_visitor.py | 77 for child in node.children: 78 self.Visit(child)
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/lexicalpreservation/ |
LexicalDifferenceCalculator.java | 53 private final Node child; field in class:LexicalDifferenceCalculator.CsmChild 56 return child; 59 CsmChild(Node child) { 60 this.child = child; 70 return "child(" + child.getClass().getSimpleName()+")"; 80 return child.equals(csmChild.child); 85 return child.hashCode() 143 Node child; local [all...] |
/external/wpa_supplicant_8/src/utils/ |
xml-utils.c | 314 xml_node_t *child; local 316 xml_node_for_each_child(ctx, child, node) { 317 xml_node_for_each_check(ctx, child); 318 lname = xml_node_get_localname(ctx, child); 320 return child; 387 xml_node_t *child; local 409 child = get_first_child_node(ctx, node, "Node"); 410 if (child) { 412 tnds_to_mo_iter(ctx, root, child, nodename); 416 tnds_to_mo_iter(ctx, root, child, new_uri) 461 xml_node_t *body, *child; local [all...] |
/bootable/recovery/install/ |
fuse_sdcard_install.cpp | 155 pid_t child; local 156 if ((child = fork()) == 0) { 162 // FUSE_SIDELOAD_HOST_PATHNAME will start to exist once the fuse in child 168 if (waitpid(child, &status, WNOHANG) == -1) { 182 kill(child, SIGKILL); 197 waitpid(child, &status, 0);
|
/device/generic/goldfish/wifi/createns/ |
createns.cpp | 172 // (8) This is the first child, needs to call exit 265 // In the child 272 pid_t child = 0; local 273 if (::read(readPipe.get(), &child, sizeof(child)) != sizeof(child)) { 274 ALOGE("Failed to read child PID from pipe: %s", strerror(errno)); 277 if (!writeNamespacePid(argv[1], child)) {
|
/external/antlr/runtime/C/include/ |
antlr3basetreeadaptor.h | 79 void (*addChild) (struct ANTLR3_BASE_TREE_ADAPTOR_struct * adaptor, void * t, void * child); 80 void (*addChildToken) (struct ANTLR3_BASE_TREE_ADAPTOR_struct * adaptor, void * t, pANTLR3_COMMON_TOKEN child); 81 void (*setParent) (struct ANTLR3_BASE_TREE_ADAPTOR_struct * adaptor, void * child, void * parent); 82 void * (*getParent) (struct ANTLR3_BASE_TREE_ADAPTOR_struct * adaptor, void * child); 110 void (*setChild) (struct ANTLR3_BASE_TREE_ADAPTOR_struct * adaptor, void * t, ANTLR3_UINT32 i, void * child); 135 /// Replace from start to stop child index of parent with t, which might
|
/external/apache-xml/src/main/java/org/apache/xalan/processor/ |
ProcessorExsltFunction.java | 174 boolean ancestorIsOk(ElemTemplateElement child) 176 while (child.getParentElem() != null && !(child.getParentElem() instanceof ElemExsltFunction)) 178 ElemTemplateElement parent = child.getParentElem(); 184 child = parent;
|
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
ElemCopyOf.java | 164 // generated, so we need to only walk the child nodes. 167 for (int child = dtm.getFirstChild(pos); child != DTM.NULL; 168 child = dtm.getNextSibling(child)) 170 tw.traverse(child); 211 * Add a child to the child list. 213 * @param newChild Child to add to this node's child lis [all...] |