Home
last modified time | relevance | path

Searched refs:called (Results 1 – 25 of 512) sorted by relevance

12345678910>>...21

/llvm-project-15.0.7/libcxx/test/libcxx/algorithms/
H A Ddebug_less.pass.cpp38 static int called; member
40 called = 0; in reset()
44 int CompareBase::called = 0; member in CompareBase
81 int& called = CompareBase::called; in test_passing() local
82 called = 0; in test_passing()
97 called = 0; in test_passing()
101 called = 0; in test_passing()
105 called = 0; in test_passing()
115 called = 0; in test_passing()
119 called = 0; in test_passing()
[all …]
/llvm-project-15.0.7/mlir/unittests/Rewrite/
H A DPatternBenefit.cpp27 Pattern1(mlir::MLIRContext *context, bool *called) in TEST()
28 : OpRewritePattern<ModuleOp>(context, /*benefit*/ 1), called(called) {} in TEST()
33 *called = true; in TEST()
38 bool *called; in TEST() member
42 Pattern2(MLIRContext *context, bool *called) in TEST()
44 called(called) {} in TEST()
49 *called = true; in TEST()
54 bool *called; in TEST() member
/llvm-project-15.0.7/libcxx/test/std/utilities/memory/allocator.traits/allocator.traits.members/
H A Ddeallocate.pass.cpp30 TEST_CONSTEXPR_CXX20 A(int& called) : called_(called) {} in A()
47 int called = 0; in test() local
48 A<int> a(called); in test()
50 assert(called == 1); in test()
53 int called = 0; in test() local
55 Alloc a(called); in test()
57 assert(called == 1); in test()
/llvm-project-15.0.7/compiler-rt/test/fuzzer/
H A Dafl-driver.test7 CHECK1: __afl_persistent_loop called, Count = 1000
8 CHECK1: LLVMFuzzerTestOneInput called; Size = 3
11 CHECK2: __afl_persistent_loop called, Count = 42
12 CHECK2: LLVMFuzzerTestOneInput called; Size = 3
16 CHECK3: __afl_persistent_loop called, Count = 666
17 CHECK3: LLVMFuzzerTestOneInput called; Size = 3
20 CHECK4: LLVMFuzzerTestOneInput called; Size = 3
24 CHECK5: LLVMFuzzerTestOneInput called; Size = 2
25 CHECK5: LLVMFuzzerTestOneInput called; Size = 3
/llvm-project-15.0.7/libcxx/test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.cons/
H A Dcustom_alloc.pass.cpp20 int called = 0; variable
25 ++called; in my_alloc()
31 ++called; in my_free()
47 assert(called == 0); in main()
49 assert(called == 1); in main()
51 assert(called == 2); in main()
/llvm-project-15.0.7/clang/test/SemaObjC/
H A Dwarn-called-once.m129 // expected-warning@-1{{'callback' parameter marked 'called_once' is called twice}}
134 // expected-warning@-1{{'callback' parameter marked 'called_once' is never called}}
138 // expected-warning@-1{{'callback' parameter marked 'called_once' is never called}}
274 // expected-warning@-1{{'inner' parameter marked 'called_once' is never called}}
528 // expected-warning@-1{{'callback' parameter marked 'called_once' is never called}}
673 // expected-warning@-1{{completion handler is never called}}
677 // expected-warning@-1{{completion handler is never called}}
681 // expected-warning@-1{{completion handler is never called}}
900 // expected-warning@-1{{completion handler is never called}}
1123 handler(); // expected-warning{{completion handler is called twice}}
[all …]
/llvm-project-15.0.7/clang/test/Analysis/
H A DDeallocUseAfterFreeErrors.m38 [super dealloc]; // expected-note {{[super dealloc] called here}}
58 [super dealloc]; // expected-note {{[super dealloc] called here}}
76 [super dealloc]; // expected-note {{[super dealloc] called here}}
95 [super dealloc]; // expected-note {{[super dealloc] called here}}
108 [super dealloc]; // expected-note {{[super dealloc] called here}}
127 [super dealloc]; // expected-note {{[super dealloc] called here}}
146 [super dealloc]; // expected-note {{[super dealloc] called here}}
160 [super dealloc]; // expected-note {{[super dealloc] called here}}
175 [super dealloc]; // expected-note {{[super dealloc] called here}}
189 [super dealloc]; // expected-note {{[super dealloc] called here}}
[all …]
/llvm-project-15.0.7/libcxx/test/std/thread/thread.mutex/thread.once/thread.once.callonce/
H A Dcall_once.pass.cpp73 static int called; member
75 void operator()(int i) {called += i;} in operator ()()
78 int init1::called = 0; member in init1
89 static int called; member
91 void operator()(int i, int j) const {called += i + j;} in operator ()()
94 int init2::called = 0; member in init2
227 assert(init1::called == 1); in main()
235 assert(init2::called == 5); in main()
/llvm-project-15.0.7/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
H A DF_incomplete.pass.cpp37 int called = 0; variable
39 ++called; in test_fn()
55 assert(called == 0); in test_pr34298()
57 assert(called == 1); in test_pr34298()
/llvm-project-15.0.7/llvm/test/MC/X86/
H A Dcode16gcc-align.s14 # CHECK-NEXT: 36: 66 e8 14 00 00 00 calll 0x50 <called>
17 # CHECK-LABEL: <called>:
32 calll called
37 .type called,@function
38 called: label
/llvm-project-15.0.7/lldb/test/API/lang/objc/objc_direct-methods/
H A Dmain.m21 …return 0; //%self.expect_expr("[self directCallNoArgs]", result_summary='"called directCallNoArgs"…
27 …//%self.expect_expr("[self directCallWithCategory]", result_summary='"called function with categor…
33 return "called directCallNoArgs";
72 return "called function with category";
84 …[foo entryPoint]; //%self.expect_expr("[foo directCallNoArgs]", result_summary='"called directCal…
90 …//%self.expect_expr("[foo directCallWithCategory]", result_summary='"called function with category…
/llvm-project-15.0.7/libcxx/test/std/time/time.duration/time.duration.cons/
H A Dconvert_overflow.pass.cpp24 bool called = false; variable
29 called = true; in f()
37 assert(called); in main()
/llvm-project-15.0.7/libcxx/test/std/input.output/iostream.format/input.streams/istream.rvalue/
H A Drvalue.pass.cpp53 bool called = false; variable
54 void operator>>(std::istream&, A&&) { called = true; } in operator >>()
78 assert(called == false); in main()
82 assert(called); in main()
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/bugprone/
H A Dlambda-function-name.rst16 [] { printf("Now called from %s\n", __FUNCTION__); }();
22 Now called from operator()
27 Now called from FancyFunction
/llvm-project-15.0.7/llvm/utils/phabricator/
H A D0001-Fix-PHP-8.1-incompatibility-with-arc-patch-D-12345.patch11 …phacility#1 preg_match(string, NULL, NULL) called at [<arcanist>/src/repository/api/ArcanistGitAPI…
12 …phacility#2 ArcanistGitAPI::getCanonicalRevisionName(NULL) called at [<arcanist>/src/repository/ap…
13 …phacility#3 ArcanistGitAPI::hasLocalCommit(NULL) called at [<arcanist>/src/workflow/ArcanistPatchW…
14 …phacility#4 ArcanistPatchWorkflow::run() called at [<arcanist>/src/workflow/ArcanistPatchWorkflow.…
15 phacility#5 ArcanistPatchWorkflow::run() called at [<arcanist>/scripts/arcanist.php:427]
/llvm-project-15.0.7/clang-tools-extra/docs/
H A Dpp-trace.rst278 Ident is called when a #ident or #sccs directive is read.
578 MacroDefined is called when a macro definition is seen.
598 MacroUndefined is called when a macro #undef is seen.
618 Defined is called when the 'defined' operator is seen.
640 SourceRangeSkipped is called when a source range is skipped.
658 If is called when an #if is seen.
680 Elif is called when an #elif is seen.
704 Ifdef is called when an #ifdef is seen.
726 Ifndef is called when an #ifndef is seen.
748 Else is called when an #else is seen.
[all …]
/llvm-project-15.0.7/lldb/third_party/Python/module/unittest2/unittest2/
H A Dsignals.py12 self.called = False
22 if self.called:
24 self.called = True
/llvm-project-15.0.7/llvm/test/CodeGen/PowerPC/
H A Dtailcall-speculatable-callee.ll6 ; Callee should be tail called in this function since it is at a tail call position.
16 ; Callee should not be tail called since it is not at a tail call position.
38 ; Callee should not be tail called since it is not at a tail call position.
60 ; Callee should not be tail called since it is not at a tail call position.
61 ; FIXME: A speculatable callee can be tail called if it is moved into a valid tail call position.
/llvm-project-15.0.7/mlir/include/mlir/Dialect/Bufferization/IR/
H A DBufferizableOpInterface.td44 method will never be called on OpOperands that do not have a tensor
67 This method will never be called on OpOperands that do not have a
70 This method will never be called on OpOperands that do not have an
129 any other bufferization decisions. This method will never be called on
144 bufferized in-place. This method will never be called on OpOperands
160 bufferized in-place. This method will never be called on OpResults
197 "equivalence" relation. This method will never be called on OpResults
198 that do not have a tensor type. It will also never be called on
285 method will never be called on OpResults that do not have a tensor
305 conflicting, return `false`. This method will never be called with
[all …]
/llvm-project-15.0.7/compiler-rt/test/xray/TestCases/Posix/
H A Dpatching-unpatching.cpp15 bool called = false; variable
19 called = true; in test_handler()
/llvm-project-15.0.7/openmp/docs/remarks/
H A DOMP102.rst3 Parallel region is not called from a unique kernel. Will not attempt to rewrite the state machine. …
6 This analysis remark indicates that a given parallel region is called by
/llvm-project-15.0.7/openmp/runtime/src/
H A Dkmp_itt.inl110 * __kmp_itt_region_forking should be called by primary thread of a team.
113 * __kmp_itt_region_starting should be called by each thread of a team just
115 * __kmp_itt_region_finished should be called by each thread of a team right
118 all threads called __kmp_itt_region_finished.
229 } else { // called for barrier reporting
398 Function should be called by each thread:
496 // __kmp_join_call() called by the primary thread saves location.
639 * __kmp_itt_lock_acquiring() should be called before setting the lock.
640 * __kmp_itt_lock_acquired() should be called after setting the lock.
644 * __kmp_itt_lock_destroyed( lock ) should be called after the last lock
[all …]
/llvm-project-15.0.7/lldb/test/API/lang/objcxx/conflicting-names-class-update-utility-expr/
H A Dmain.mm4 // called. This should always retain its initial value in a successful test run.
8 // never be called even though they share the name of some of the utility
11 // All functions just indicate that they got called by setting 'called_function'
/llvm-project-15.0.7/libcxx/test/libcxx/utilities/function.objects/
H A Dfunc.blocks.pass.cpp75 __block bool called = false; in main() local
76 std::function<void ()> r1(^{ called = true; }); in main()
78 assert(called); in main()
/llvm-project-15.0.7/libcxx/test/std/ranges/range.adaptors/range.filter/
H A Dbegin.pass.cpp177 int called = 0; in cache_tests() local
178 auto pred = [&](int i) { ++called; return i == 3; }; in cache_tests()
181 assert(called == 0); in cache_tests()
185 assert(called == 3); in cache_tests()

12345678910>>...21