/llvm-project/clang/test/CodeGenCXX/ |
H A D | microsoft-abi-this-nullable.cpp | 22 void call_left_no_override(ChildNoOverride *child) { in call_left_no_override() 29 void call_right_no_override(ChildNoOverride *child) { in call_right_no_override() 43 void call_right_override(ChildOverride *child) { in call_right_override()
|
H A D | microsoft-abi-multiple-nonvirtual-inheritance.cpp | 21 void call_left_no_override(ChildNoOverride *child) { in call_left_no_override() 48 void call_left_override(ChildOverride *child) { in call_left_override() 61 void call_right_no_override(ChildNoOverride *child) { in call_right_no_override() 94 void call_right_override(ChildOverride *child) { in call_right_override()
|
/llvm-project/lldb/test/API/functionalities/data-formatter/root-reference-children/ |
H A D | main.cpp | 4 int child = 30; member 8 int child = 30; member 12 int child = 30; member
|
/llvm-project/lldb/examples/ |
H A D | ptrace_example.c | 46 void debugger(pid_t child) { in debugger() 96 pid_t child = fork(); in main() local
|
/llvm-project/libcxxabi/test/ |
H A D | inherited_exception.pass.cpp | 49 Child child; in f1() local 57 Child child; in f2() local 65 static Child child; in f3() local
|
/llvm-project/clang/test/SemaCXX/ |
H A D | lambda-invalid-capture.cpp | 10 g child; in captures_invalid_type() local 16 g child[100]; in captures_invalid_array_type() local
|
/llvm-project/mlir/lib/Tools/PDLL/AST/ |
H A D | Nodes.cpp | 80 for (const Node *child : stmt->getChildren()) in visitImpl() local 87 for (const Node *child : stmt->getReplExprs()) in visitImpl() local 99 for (const Node *child : expr->getArguments()) in visitImpl() local 106 for (const Node *child : expr->getOperands()) in visitImpl() local 108 for (const Node *child : expr->getResultTypes()) in visitImpl() local 110 for (const Node *child : expr->getAttributes()) in visitImpl() local 114 for (const Node *child : expr->getElements()) in visitImpl() local 118 for (const Node *child : expr->getElements()) in visitImpl() local 138 for (const Node *child : decl->getInputs()) in visitImpl() local 140 for (const Node *child : decl->getResults()) in visitImpl() local [all …]
|
/llvm-project/mlir/lib/Support/ |
H A D | Timing.cpp | 257 TimerImpl *nestTail(std::unique_ptr<TimerImpl> &child, in nestTail() 282 for (auto &child : children) in addAsyncUserTime() local 285 for (auto &child : thread.second) { in addAsyncUserTime() local 297 for (auto &child : children) in mergeAsyncChildren() local 311 for (auto &child : children) in mergeChildren() local 314 for (auto &child : other) in mergeChildren() local 357 for (auto &child : children) in dump() local 360 for (auto &child : thread.second) in dump() local 407 for (auto &child : children) { in printAsTree() local 434 for (auto &child : children) in print() local
|
/llvm-project/lld/Common/ |
H A D | Timer.cpp | 42 for (const auto &child : children) in print() local 68 for (const auto &child : children) in print() local
|
/llvm-project/mlir/lib/Dialect/Affine/Analysis/ |
H A D | NestedMatcher.cpp | 141 NestedPattern If(const NestedPattern &child) { in If() 144 NestedPattern If(const FilterFunctionType &filter, const NestedPattern &child) { in If() 159 NestedPattern For(const NestedPattern &child) { in For() 163 const NestedPattern &child) { in For()
|
/llvm-project/clang/test/Analysis/Checkers/WebKit/ |
H A D | assignment-to-refptr.cpp | 16 for (RefPtr child = firstChild; child; child = child->nextSibling()); in removeDetachedChildren() local
|
/llvm-project/lldb/test/API/driver/job_control/ |
H A D | shell.py | 27 child = subprocess.Popen(sys.argv[1:], preexec_fn=preexec_fn) variable
|
/llvm-project/compiler-rt/test/asan/TestCases/Linux/ |
H A D | vfork.cpp | 13 __attribute__((noinline, no_sanitize("address"))) void child() { in child() function
|
/llvm-project/compiler-rt/test/hwasan/TestCases/Linux/ |
H A D | vfork.c | 14 __attribute__((noinline, no_sanitize("hwaddress"))) void child() { in child() function
|
/llvm-project/lldb/test/API/functionalities/process_group/ |
H A D | main.c | 9 pid_t child = fork(); in main() local
|
/llvm-project/libc/src/__support/threads/ |
H A D | fork_callbacks.cpp | 23 ForkCallback *child = nullptr; global() member 71 auto child = list[i].child; invoke_child() local
|
/llvm-project/compiler-rt/test/sanitizer_common/TestCases/NetBSD/ |
H A D | paccept.cpp | 11 int child; in main() local
|
/llvm-project/compiler-rt/test/asan/TestCases/Posix/ |
H A D | no-fd.cpp | 40 void child() { in child() function
|
/llvm-project/clang/tools/scan-build-py/tests/functional/exec/ |
H A D | main.c | 85 void wait_for(pid_t child) { in wait_for() 239 pid_t child; in call_posix_spawn() local 257 pid_t child; in call_posix_spawnp() local
|
/llvm-project/compiler-rt/test/profile/Inputs/ |
H A D | instrprof-file_ex.c | 16 int child[10]; in main() local
|
/llvm-project/clang/test/Analysis/Inputs/ |
H A D | ctu-inherited-default-ctor-other.cpp | 10 using child = impl<n + 1, TS...>; typedef in llvm::impl
|
/llvm-project/flang/runtime/ |
H A D | descriptor-io.cpp | 55 ChildIo &child{external->PushChildIo(io)}; in DefinedFormattedIo() local 117 ChildIo &child{external->PushChildIo(io)}; in DefinedUnformattedIo() local
|
/llvm-project/compiler-rt/test/sanitizer_common/TestCases/Darwin/ |
H A D | print-stack-trace-in-code-loaded-after-fork.cpp | 37 pid_t child = waitpid(pid, &status, /*options=*/0); in main() local
|
/llvm-project/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/atomic/ |
H A D | main.cpp | 12 Child child; member
|
/llvm-project/polly/lib/External/isl/ |
H A D | isl_schedule_tree.c | 500 isl_schedule_tree *child; in isl_schedule_tree_update_anchored() local 751 isl_schedule_tree *child; in isl_schedule_tree_child() local 811 __isl_take isl_schedule_tree *child) in isl_schedule_tree_replace_child() 969 isl_schedule_tree *child; in isl_schedule_tree_children_insert_filter() local 1677 isl_schedule_tree *child; in subtree_schedule_extend_child() local 1700 isl_schedule_tree *child; in extract_space_from_filter_child() local 1773 isl_schedule_tree *child; in subtree_schedule_extend_from_children() local 1921 isl_schedule_tree *child; in initial_domain_from_children() local 2142 __isl_take isl_schedule_tree *child) in isl_schedule_tree_sequence_splice() 2190 isl_schedule_tree *child = NULL; in isl_schedule_tree_band_tile() local [all …]
|