/external/skqp/modules/sksg/src/ |
SkSGOpacityEffect.cpp | 12 OpacityEffect::OpacityEffect(sk_sp<RenderNode> child, float opacity) 13 : INHERITED(std::move(child))
|
/external/skqp/src/gpu/ |
GrColorSpaceXform.cpp | 96 GrColorSpaceXformEffect::GrColorSpaceXformEffect(std::unique_ptr<GrFragmentProcessor> child, 98 : INHERITED(kGrColorSpaceXformEffect_ClassID, OptFlags(child.get())) 100 if (child) { 101 this->registerChildProcessor(std::move(child)); 106 std::unique_ptr<GrFragmentProcessor> child = local 109 new GrColorSpaceXformEffect(std::move(child), fColorXform)); 127 const GrFragmentProcessor* child) { 129 if (child) { 131 if (child->compatibleWithCoverageAsAlpha()) { 134 if (child->preservesOpaqueInput()) [all...] |
/external/skqp/tools/bookmaker/ |
hackParser.cpp | 60 for (auto child : root->fChildren) { 61 if (MarkType::kClass == child->fMarkType || MarkType::kStruct == child->fMarkType 62 || MarkType::kSubtopic == child->fMarkType) { 63 this->replaceWithPop(child); 65 if (MarkType::kMethod != child->fMarkType) { 68 auto& grans = child->fChildren; 81 const char* keep = child->fContentStart;
|
includeWriter.cpp | 39 void IncludeWriter::checkEnumLengths(const Definition& child, string enumName, ItemLength* length) const { 40 const Definition* enumItem = this->matchMemberName(enumName, child); 42 [](Definition* child){return MarkType::kNoJustify == child->fMarkType;})) { 45 string comment = this->enumMemberComment(enumItem, child); 262 for (auto child : phraseDef->fChildren) { 263 if (MarkType::kPhraseParam == child->fMarkType) { 266 int localLength = child->fStart - start; 278 localLength = child->fContentEnd - child->fStart 1116 auto& child = def.fTokens.front(); local [all...] |
/external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/ |
PercentFrameLayout.java | 66 final View child = getChildAt(i); local 67 if (child.getVisibility() != GONE) { 68 child.measure(childWidthMeasureSpec, childHeightMeasureSpec); 84 final View child = getChildAt(i); local 85 if (child.getVisibility() != GONE) { 86 final int childWidth = child.getMeasuredWidth(); 87 final int childHeight = child.getMeasuredHeight(); 88 // Center child both vertically and horizontally. 91 child.layout(childLeft, childTop, childLeft + childWidth, childTop + childHeight);
|
/external/tensorflow/tensorflow/python/module/ |
module_test.py | 112 self.assertEqual(mod.child.name_scope.name, "badger/badger/") 116 self.assertEqual(mod.child.name_scope.name, "badger/badger/") 122 self.assertEqual(mod.child.name_scope.name, "badger/badger/") 126 self.assertEqual(mod.child.name_scope.name, "badger_1/badger/") 187 self.assertEqual(mod.child.w.name, "badger/badger/mushroom:0") 188 self.assertEqual(mod.child.child.w.name, "badger/badger/badger/mushroom:0") 195 self.assertEqual(m.variables, (m.w, m.child.w, m.child.child.w) [all...] |
/external/u-boot/common/ |
cli_hush.c | 198 struct child_prog *child; member in struct:p_context 237 struct pipe *family; /* pointer back to the child's parent pipe */ 394 static int builtin_cd(struct child_prog *child); 395 static int builtin_env(struct child_prog *child); 396 static int builtin_eval(struct child_prog *child); 397 static int builtin_exec(struct child_prog *child); 398 static int builtin_exit(struct child_prog *child); 399 static int builtin_export(struct child_prog *child); 400 static int builtin_fg_bg(struct child_prog *child); 401 static int builtin_help(struct child_prog *child); 1540 struct child_prog *child; local 1553 struct child_prog *child; local 1939 struct child_prog *child; local 2299 struct child_prog *child=ctx->child; local 2452 struct child_prog *child=ctx->child; local 2746 struct child_prog *child = ctx->child; local [all...] |
/bionic/tests/ |
sys_ptrace_test.cpp | 65 static void check_hw_feature_supported(pid_t child, HwFeature feature) { 68 long result = ptrace(PTRACE_GETHBPREGS, child, 0, &capabilities); 91 long result = ptrace(PTRACE_GETREGSET, child, 99 UNUSED(child); 104 static void set_watchpoint(pid_t child, uintptr_t address, size_t size) { 113 ASSERT_EQ(0, ptrace(PTRACE_SETHBPREGS, child, -1, &address)) << strerror(errno); 114 ASSERT_EQ(0, ptrace(PTRACE_SETHBPREGS, child, -2, &control)) << strerror(errno); 125 ASSERT_EQ(0, ptrace(PTRACE_SETREGSET, child, NT_ARM_HW_WATCH, &iov)) << strerror(errno); 128 ASSERT_EQ(0, ptrace(PTRACE_POKEUSER, child, offsetof(user, u_debugreg[0]), address)) << strerror(errno); 130 unsigned data = ptrace(PTRACE_PEEKUSER, child, offsetof(user, u_debugreg[7]), nullptr) 153 pid_t child = fork(); local 334 pid_t child = fork(); local [all...] |
/frameworks/base/apct-tests/perftests/core/src/android/view/ |
ViewShowHidePerfTest.java | 86 LinearLayout child = new LinearLayout(context); 88 parent.addView(child, new LinearLayout.LayoutParams( 93 createNestedLinearLayoutTree(context, child, remainingDepth - 1); 140 void run(BenchmarkState state, int width, int height, ViewGroup parent, View child); 172 testParentWithChild((state, width, height, parent, child) -> { 176 parent.addView(child); 177 layout(width, height, child); 188 testParentWithChild((state, width, height, parent, child) -> { 191 layout(width, height, child); // Note, done to be safe, likely not needed 197 parent.addView(child); [all...] |
/external/libxml2/ |
check-xsddata-test-suite.py | 64 child = node.children 65 while child != None: 66 if child.type != 'text': 67 instance = instance + child.serialize() 68 child = child.next 117 child = node.children 118 while child != None: 119 if child.type != 'text': 120 instance = instance + child.serialize( [all...] |
/external/ltp/testcases/kernel/sched/pthreads/ |
pth_str01.c | 129 fprintf(stderr, "\t-b <num>\tbreadth of child nodes\n"); 130 fprintf(stderr, "\t-d <num>\tdepth of child nodes\n"); 132 "\t-t <num>\ttimeout for child communication (in minutes)\n"); 142 * Caculate the number of child nodes for a given breadth and depth tree. 166 * Register the child with the parent and then wait for all of the children 323 int rc, child, my_index; local 335 printf("non-root child calling synchronize_children\n"); 340 printf("non-root child has been assigned index %d\n", 350 printf("root child\n"); 383 for (child = 0; child < breadth; child++) [all...] |
/external/llvm/utils/TableGen/ |
X86DisassemblerTables.cpp | 73 /// @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, 79 if (child == parent) 84 return(inheritsFrom(child, IC_64BIT, AdSize64) || 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_REXW) | [all...] |
/external/skia/tools/bookmaker/ |
includeWriter.cpp | 39 void IncludeWriter::checkEnumLengths(const Definition& child, string enumName, ItemLength* length) const { 40 const Definition* enumItem = this->matchMemberName(enumName, child); 42 [](Definition* child){return MarkType::kNoJustify == child->fMarkType;})) { 45 string comment = this->enumMemberComment(enumItem, child); 262 for (auto child : phraseDef->fChildren) { 263 if (MarkType::kPhraseParam == child->fMarkType) { 266 int localLength = child->fStart - start; 278 localLength = child->fContentEnd - child->fStart 1116 auto& child = def.fTokens.front(); local [all...] |
/external/boringssl/src/crypto/bytestring/ |
cbb.c | 80 // Only top-level |CBB|s are cleaned up. Child |CBB|s are non-owning. They 203 // fail all following calls. In particular, |cbb->child| may point to invalid 209 if (cbb->child == NULL || cbb->child->pending_len_len == 0) { 213 child_start = cbb->child->offset + cbb->child->pending_len_len; 215 if (!CBB_flush(cbb->child) || 216 child_start < cbb->child->offset || 223 if (cbb->child->pending_is_asn1) { 230 assert (cbb->child->pending_len_len == 1) 481 CBB child; local 516 CBB child; local 527 CBB child; local [all...] |
/bionic/libc/arch-arm64/bionic/ |
__bionic_clone.S | 34 # Push 'fn' and 'arg' onto the child stack. 41 # Are we the child? 52 # We're in the child now. Set the end of the frame record chain. 56 # Call __start_thread with the 'fn' and 'arg' we stored on the child stack.
|
/external/chromium-trace/catapult/common/py_utils/py_utils/refactor/annotated_symbol/ |
class_definition.py | 45 def Cut(self, child): 46 self.suite.Cut(child) 48 def Paste(self, child): 49 self.suite.Paste(child)
|
function_definition.py | 45 def Cut(self, child): 46 self.suite.Cut(child) 48 def Paste(self, child): 49 self.suite.Paste(child)
|
/external/elfutils/tests/ |
backtrace-data.c | 75 pid_t child = dwfl_pid (dwfl); local 78 long l = ptrace (PTRACE_PEEKDATA, child, (void *) (uintptr_t) addr, NULL); 148 report_module (Dwfl *dwfl, pid_t child, Dwarf_Addr addr) 151 char *long_name = maps_lookup (child, addr, &base); 178 pid_t child = dwfl_pid (dwfl_thread_dwfl (thread)); local 181 long l = ptrace (PTRACE_GETREGS, child, NULL, &user_regs); 278 pid_t child = fork (); local 279 switch (child) 293 pid_t pid = waitpid (child, &status, 0); 294 assert (pid == child); [all...] |
/external/google-breakpad/src/client/linux/minidump_writer/ |
linux_ptrace_dumper.h | 56 // Copies content of |length| bytes from a given process |child|, 59 virtual bool CopyFromProcess(void* dest, pid_t child, const void* src,
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/visitor/ |
TreeVisitor.java | 38 for (Node child : node.getChildNodes()) { 39 visitLeavesFirst(child); 91 for (Node child : head.getChildNodes()) { 92 queue.offer(child);
|
/external/junit/src/main/java/org/junit/runner/manipulation/ |
Filter.java | 33 public void apply(Object child) throws NoTestsRemainException { 89 * @param child the runner to be filtered by the receiver 92 public void apply(Object child) throws NoTestsRemainException { 93 if (!(child instanceof Filterable)) { 96 Filterable filterable = (Filterable) child;
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/mmap/ |
6-1.c | 20 * 1. Spawn a child process. 21 * 2. The child process mmap a memory region setting prot as PROT_READ. 49 pid_t child; local 62 child = fork(); 64 switch (child) { 88 waitpid(child, &status, WUNTRACED); 93 printf("Child process terminated by signal %d\n", sig_num);
|
6-2.c | 21 * 1. Spawn a child process. 22 * 2. The child process mmap a memory region setting prot as PROT_NONE. 51 pid_t child; local 64 child = fork(); 65 switch (child) { 94 waitpid(child, &status, 0); 99 printf("Child process terminated by signal %d\n", sig_num);
|
6-3.c | 21 * 1. Spawn a child process. 22 * 2. The child process mmap a memory region setting prot as PROT_NONE. 50 pid_t child; local 63 child = fork(); 64 switch (child) { 84 waitpid(child, &status, 0); 89 printf("Child process terminated by signal %d\n", sig_num);
|
7-3.c | 23 * 4. Fork a child process. 24 * 5. Child process mmap the same shared memory object into memory. 25 * 6. Check whether the change in step 3 is visible to the child. 47 pid_t child; local 74 child = fork(); 76 switch (child) { 78 /* Mmap again the same shared memory to child's memory */ 102 waitpid(child, &exit_stat, WUNTRACED); 110 printf("Child has not exit properly\n");
|