OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MethodID
(Results
1 - 25
of
27
) sorted by null
1
2
/external/libmojo/base/android/
jni_android.cc
21
using base::android::
MethodID
;
160
template<
MethodID
::Type type>
161
jmethodID
MethodID
::Get(JNIEnv* env,
179
template<
MethodID
::Type type>
180
jmethodID
MethodID
::LazyGet(JNIEnv* env,
190
jmethodID id =
MethodID
::Get<type>(env, clazz, method_name, jni_signature);
197
template jmethodID
MethodID
::Get<
MethodID
::TYPE_STATIC>(
201
template jmethodID
MethodID
::Get<
MethodID
::TYPE_INSTANCE>
[
all
...]
jni_android_unittest.cc
18
jmethodID id = base::android::
MethodID
::LazyGet<
19
base::android::
MethodID
::TYPE_STATIC>(
34
TEST(JNIAndroidMicrobenchmark,
MethodId
) {
jni_android.h
128
// This class is a wrapper for JNIEnv Get(Static)
MethodID
.
129
class BASE_EXPORT
MethodID
{
/external/perfetto/include/perfetto/ipc/
service_proxy.h
65
std::map<std::string,
MethodID
>);
92
std::map<std::string,
MethodID
> remote_method_ids_;
basic_types.h
35
using
MethodID
= uint32_t;
/external/lzma/CPP/7zip/Archive/7z/
7zItem.h
9
#include "../../Common/
MethodId
.h"
22
CMethodId
MethodID
;
84
if (Coders[i].
MethodID
== k_AES)
7zDecode.cpp
51
bi.CoderMethodIDs[i] = coderInfo.
MethodID
;
306
if ((coderInfo.
MethodID
>> 8) == 0x403)
313
coderInfo.
MethodID
, false, cod));
319
// CMethodId m = coderInfo.
MethodID
;
7zUpdate.cpp
395
if (coder.
MethodID
== k_Delta)
403
else if (IsExeFilter(coder.
MethodID
))
405
m.Id = (UInt32)coder.
MethodID
;
468
RINOZ_COMP(c1.
MethodID
, c2.
MethodID
);
931
static inline void GetMethodFull(UInt64
methodID
, UInt32 numStreams, CMethodFull &m)
933
m.Id =
methodID
;
[
all
...]
7zEncode.cpp
77
coderInfo.
MethodID
= _decompressionMethods[i];
7zOut.cpp
262
UInt64 id = coder.
MethodID
;
/external/libcxx/test/libcxx/utilities/function.objects/func.require/
bullet_1_2_3.pass.cpp
44
// The functions should return '
MethodID
::setUncheckedCall()'.
51
// actually called using '
MethodID
::checkCalled(<return-value>)'
71
R f(__VA_ARGS__) { return
MethodID
<R(MemFun03::*)(__VA_ARGS__)>::setUncheckedCall(); } \
72
R f(__VA_ARGS__) const { return
MethodID
<R(MemFun03::*)(__VA_ARGS__) const>::setUncheckedCall(); } \
73
R f(__VA_ARGS__) volatile { return
MethodID
<R(MemFun03::*)(__VA_ARGS__) volatile>::setUncheckedCall(); } \
74
R f(__VA_ARGS__) const volatile { return
MethodID
<R(MemFun03::*)(__VA_ARGS__) const volatile>::setUncheckedCall(); }
101
R f(__VA_ARGS__) & { return
MethodID
<R(C::*)(__VA_ARGS__) &>::setUncheckedCall(); } \
102
R f(__VA_ARGS__) const & { return
MethodID
<R(C::*)(__VA_ARGS__) const &>::setUncheckedCall(); } \
103
R f(__VA_ARGS__) volatile & { return
MethodID
<R(C::*)(__VA_ARGS__) volatile &>::setUncheckedCall(); } \
104
R f(__VA_ARGS__) const volatile & { return
MethodID
<R(C::*)(__VA_ARGS__) const volatile &>::setUncheckedCall(); }
[
all
...]
bullet_7.pass.cpp
36
// return '
MethodID
::setUncheckedCall()'.
41
// function and '
MethodID
::checkCall()' otherwise.
101
__VA_ARGS__ R operator() Args { return
MethodID
<R(C::*) Args>::setUncheckedCall(); } \
102
__VA_ARGS__ R operator() Args const { return
MethodID
<R(C::*) Args const>::setUncheckedCall(); } \
103
__VA_ARGS__ R operator() Args volatile { return
MethodID
<R(C::*) Args volatile>::setUncheckedCall(); } \
104
__VA_ARGS__ R operator() Args const volatile { return
MethodID
<R(C::*) Args const volatile>::setUncheckedCall(); }
141
R operator()(Args&&...) CV { return
MethodID
<R(C::*)(Args&&...) CV>::setUncheckedCall(); }
174
typedef
MethodID
<CallSig ClassType::*> MID;
invoke_helpers.h
187
//
MethodID
- A type that uniquely identifies a member function for a class.
195
struct
MethodID
{
215
template <class T> int
MethodID
<T>::dummy = 0;
216
template <class T> void*
MethodID
<T>::id = (void*)&
MethodID
<T>::dummy;
217
template <class T> bool
MethodID
<T>::unchecked_call = false;
221
// FunctionPtrID - Like
MethodID
but for free function pointers.
248
// ID - The "Function Identifier" type used either
MethodID
or FunctionPtrID.
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/utilities/function.objects/func.require/
bullet_1_2_3.pass.cpp
44
// The functions should return '
MethodID
::setUncheckedCall()'.
51
// actually called using '
MethodID
::checkCalled(<return-value>)'
71
R f(__VA_ARGS__) { return
MethodID
<R(MemFun03::*)(__VA_ARGS__)>::setUncheckedCall(); } \
72
R f(__VA_ARGS__) const { return
MethodID
<R(MemFun03::*)(__VA_ARGS__) const>::setUncheckedCall(); } \
73
R f(__VA_ARGS__) volatile { return
MethodID
<R(MemFun03::*)(__VA_ARGS__) volatile>::setUncheckedCall(); } \
74
R f(__VA_ARGS__) const volatile { return
MethodID
<R(MemFun03::*)(__VA_ARGS__) const volatile>::setUncheckedCall(); }
101
R f(__VA_ARGS__) & { return
MethodID
<R(C::*)(__VA_ARGS__) &>::setUncheckedCall(); } \
102
R f(__VA_ARGS__) const & { return
MethodID
<R(C::*)(__VA_ARGS__) const &>::setUncheckedCall(); } \
103
R f(__VA_ARGS__) volatile & { return
MethodID
<R(C::*)(__VA_ARGS__) volatile &>::setUncheckedCall(); } \
104
R f(__VA_ARGS__) const volatile & { return
MethodID
<R(C::*)(__VA_ARGS__) const volatile &>::setUncheckedCall(); }
[
all
...]
bullet_7.pass.cpp
36
// return '
MethodID
::setUncheckedCall()'.
41
// function and '
MethodID
::checkCall()' otherwise.
101
__VA_ARGS__ R operator() Args { return
MethodID
<R(C::*) Args>::setUncheckedCall(); } \
102
__VA_ARGS__ R operator() Args const { return
MethodID
<R(C::*) Args const>::setUncheckedCall(); } \
103
__VA_ARGS__ R operator() Args volatile { return
MethodID
<R(C::*) Args volatile>::setUncheckedCall(); } \
104
__VA_ARGS__ R operator() Args const volatile { return
MethodID
<R(C::*) Args const volatile>::setUncheckedCall(); }
141
R operator()(Args&&...) CV { return
MethodID
<R(C::*)(Args&&...) CV>::setUncheckedCall(); }
174
typedef
MethodID
<CallSig ClassType::*> MID;
invoke_helpers.h
187
//
MethodID
- A type that uniquely identifies a member function for a class.
195
struct
MethodID
{
215
template <class T> int
MethodID
<T>::dummy = 0;
216
template <class T> void*
MethodID
<T>::id = (void*)&
MethodID
<T>::dummy;
217
template <class T> bool
MethodID
<T>::unchecked_call = false;
221
// FunctionPtrID - Like
MethodID
but for free function pointers.
248
// ID - The "Function Identifier" type used either
MethodID
or FunctionPtrID.
/external/lzma/C/
7zDec.c
293
/* && c->
MethodID
<= (UInt32)0xFFFFFFFF */
294
&& IS_MAIN_METHOD((UInt32)c->
MethodID
);
297
#define IS_BCJ2(c) ((c)->
MethodID
== k_BCJ2 && (c)->NumStreams == 4)
319
/* c->
MethodID
> (UInt32)0xFFFFFFFF || */
327
switch ((UInt32)c->
MethodID
)
389
if (IS_MAIN_METHOD((UInt32)coder->
MethodID
))
427
if (coder->
MethodID
== k_Copy)
433
else if (coder->
MethodID
== k_LZMA)
438
else if (coder->
MethodID
== k_LZMA2)
444
else if (coder->
MethodID
== k_PPMD)
[
all
...]
7z.h
27
UInt32
MethodID
;
/external/perfetto/src/ipc/
client_impl.h
59
MethodID
remote_method_id,
service_proxy.cc
41
std::map<std::string,
MethodID
> remote_method_ids) {
client_impl.cc
84
MethodID
remote_method_id,
226
std::map<std::string,
MethodID
> methods;
client_impl_unittest.cc
84
MethodID
id;
101
MethodID
last_method_id = 0;
host_impl_unittest.cc
106
MethodID
method_id,
/external/libmojo/base/android/jni_generator/
jni_generator.py
[
all
...]
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
bdaiface.h
[
all
...]
Completed in 313 milliseconds
1
2