Home
last modified time | relevance | path

Searched defs:Callback (Results 1 – 25 of 201) sorted by relevance

123456789

/external/clang/unittests/Tooling/
DRefactoringCallbacksTest.cpp25 RefactoringCallback &Callback) { in expectRewritten()
42 ReplaceStmtWithText Callback("id", ";"); in TEST() local
49 ReplaceStmtWithText Callback("id", ";"); in TEST() local
56 ReplaceStmtWithText Callback("id", ";"); in TEST() local
63 ReplaceStmtWithText Callback("id", "2"); in TEST() local
71 ReplaceStmtWithStmt Callback("always-false", "should-be"); in TEST() local
82 ReplaceIfStmtWithItsBody Callback("id", true); in TEST() local
93 ReplaceIfStmtWithItsBody Callback("id", false); in TEST() local
/external/rust/crates/gdbstub/src/target/ext/
Dlldb_register_info_override.rs13 pub struct Callback<'a> { struct
15 pub(crate) token: CallbackToken<'a>, argument
18 impl<'a> Callback<'a> { impl
/external/clang/test/Rewriter/
Drewrite-interface-locals.mm9 typedef void (^Callback)(NSData *data, NSError *error); category
11 - (void)doSomething:(NSData *)data callback:(Callback)callback; argument
16 - (void)doSomething:(NSData *)data callback:(Callback)callback { argument
/external/rust/crates/rayon/src/iter/
Dfold_chunks_with.rs104 struct Callback<CB, T, F> { in with_producer() struct
105 chunk_size: usize, in with_producer()
106 len: usize, in with_producer()
107 item: T, in with_producer()
108 fold_op: F, in with_producer()
109 callback: CB, in with_producer()
112 impl<T, U, F, CB> ProducerCallback<T> for Callback<CB, U, F> in with_producer() implementation
Dfold_chunks.rs106 struct Callback<CB, ID, F> { in with_producer() struct
107 chunk_size: usize, in with_producer()
108 len: usize, in with_producer()
109 identity: ID, in with_producer()
110 fold_op: F, in with_producer()
111 callback: CB, in with_producer()
114 impl<T, CB, ID, U, F> ProducerCallback<T> for Callback<CB, ID, F> in with_producer() implementation
Dtake.rs67 struct Callback<CB> { in with_producer() struct
68 callback: CB, in with_producer()
69 n: usize, in with_producer()
72 impl<T, CB> ProducerCallback<T> for Callback<CB> in with_producer() implementation
Dskip.rs68 struct Callback<CB> { in with_producer() struct
69 callback: CB, in with_producer()
70 n: usize, in with_producer()
73 impl<T, CB> ProducerCallback<T> for Callback<CB> in with_producer() implementation
Dlen.rs66 struct Callback<CB> { in with_producer() struct
67 callback: CB, in with_producer()
68 min: usize, in with_producer()
71 impl<T, CB> ProducerCallback<T> for Callback<CB> in with_producer() implementation
200 struct Callback<CB> { in with_producer() struct
201 callback: CB, in with_producer()
202 max: usize, in with_producer()
205 impl<T, CB> ProducerCallback<T> for Callback<CB> in with_producer() implementation
Dstep_by.rs72 struct Callback<CB> { in with_producer() struct
73 callback: CB, in with_producer()
74 step: usize, in with_producer()
75 len: usize, in with_producer()
78 impl<T, CB> ProducerCallback<T> for Callback<CB> in with_producer() implementation
Drev.rs63 struct Callback<CB> { in with_producer() struct
64 callback: CB, in with_producer()
65 len: usize, in with_producer()
68 impl<T, CB> ProducerCallback<T> for Callback<CB> in with_producer() implementation
Dchunks.rs77 struct Callback<CB> { in with_producer() struct
78 size: usize, in with_producer()
79 len: usize, in with_producer()
80 callback: CB, in with_producer()
83 impl<T, CB> ProducerCallback<T> for Callback<CB> in with_producer() implementation
Dmap_with.rs90 struct Callback<CB, U, F> { in with_producer() struct
91 callback: CB, in with_producer()
92 item: U, in with_producer()
93 map_op: F, in with_producer()
96 impl<T, U, F, R, CB> ProducerCallback<T> for Callback<CB, U, F> in with_producer() implementation
419 struct Callback<CB, INIT, F> { in with_producer() struct
420 callback: CB, in with_producer()
421 init: INIT, in with_producer()
422 map_op: F, in with_producer()
425 impl<T, INIT, U, F, R, CB> ProducerCallback<T> for Callback<CB, INIT, F> in with_producer() implementation
Denumerate.rs64 struct Callback<CB> { in with_producer() struct
65 callback: CB, in with_producer()
68 impl<I, CB> ProducerCallback<I> for Callback<CB> in with_producer() implementation
Dinspect.rs83 struct Callback<CB, F> { in with_producer() struct
84 callback: CB, in with_producer()
85 inspect_op: F, in with_producer()
88 impl<T, F, CB> ProducerCallback<T> for Callback<CB, F> in with_producer() implementation
Dmap.rs84 struct Callback<CB, F> { in with_producer() struct
85 callback: CB, in with_producer()
86 map_op: F, in with_producer()
89 impl<T, F, R, CB> ProducerCallback<T> for Callback<CB, F> in with_producer() implementation
/external/webrtc/rtc_base/
Dcallback_list.h62 struct Callback { struct
67 std::vector<Callback> receivers_; argument
/external/leveldb/util/
Denv_test.cc104 struct Callback { in TEST_F() struct
105 RunState* state_; // Pointer to shared state. in TEST_F()
106 const int id_; // Order# for the execution of this callback. in TEST_F()
108 Callback(RunState* s, int id) : state_(s), id_(id) {} in TEST_F() function
110 static void Run(void* arg) { in TEST_F()
/external/pigweed/pw_protobuf/public/pw_protobuf/internal/
Dcodegen.h183 union Callback { union
184 constexpr Callback() : encode_() {} in Callback() function
202 constexpr Callback(const Callback&) : encode_() {} in Callback() argument
/external/compiler-rt/lib/tsan/rtl/
Dtsan_rtl_mutex.cc28 struct Callback : DDCallback { struct
29 ThreadState *thr;
30 uptr pc;
32 Callback(ThreadState *thr, uptr pc) in Callback() argument
39 u32 Unwind() override { return CurrentStackId(thr, pc); } in Unwind()
40 int UniqueTid() override { return thr->unique_id; } in UniqueTid()
/external/compiler-rt/lib/tsan/dd/
Ddd_rtl.h34 struct Callback : DDCallback { struct
37 Callback(Thread *thr); argument
/external/javassist/src/main/javassist/tools/
DCallback.java51 public abstract class Callback { class
64 public Callback(String src){ in Callback() method in Callback
/external/libtextclassifier/native/utils/grammar/utils/
Dir.h55 struct Callback { struct
60 CallbackId id = kNoCallback; argument
82 Callback callback; argument
/external/cronet/third_party/abseil-cpp/absl/synchronization/
Dmutex_method_pointer_test.cc64 class Callback { class
68 Callback() {} in Callback() function in __anon09f7adf00111::Callback
/external/angle/third_party/abseil-cpp/absl/synchronization/
Dmutex_method_pointer_test.cc64 class Callback { class
68 Callback() {} in Callback() function in __anon2128368c0111::Callback
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowRemoteCallbackList.java18 private final class Callback implements IBinder.DeathRecipient { class in ShadowRemoteCallbackList
22 Callback(E callback, Object cookie) { in Callback() method in ShadowRemoteCallbackList.Callback

123456789