Searched refs:TypeName (Results 1 - 25 of 62) sorted by relevance

123

/external/chromium_org/third_party/angle/src/compiler/preprocessor/
H A Dpp_utils.h14 #define PP_DISALLOW_COPY_AND_ASSIGN(TypeName) \
15 TypeName(const TypeName &); \
16 void operator=(const TypeName &)
/external/google-tv-pairing-protocol/cpp/src/polo/util/
H A Dmacros.h20 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
21 TypeName(const TypeName&); \
22 void operator=(const TypeName&)
/external/chromium_org/third_party/webrtc/base/
H A Dconstructormagic.h18 #define DISALLOW_ASSIGN(TypeName) \
19 void operator=(const TypeName&)
24 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
25 TypeName(const TypeName&); \
26 DISALLOW_ASSIGN(TypeName)
30 #define DISALLOW_EVIL_CONSTRUCTORS(TypeName) \
31 DISALLOW_COPY_AND_ASSIGN(TypeName)
40 #define DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \
41 TypeName(); \
[all...]
/external/webrtc/src/system_wrappers/interface/
H A Dconstructor_magic.h20 #define DISALLOW_ASSIGN(TypeName) \
21 void operator=(const TypeName&)
27 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
28 TypeName(const TypeName&); \
29 DISALLOW_ASSIGN(TypeName)
34 #define DISALLOW_EVIL_CONSTRUCTORS(TypeName) \
35 DISALLOW_COPY_AND_ASSIGN(TypeName)
45 #define DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \
46 TypeName(); \
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libwebm/
H A Dmkvmuxertypes.hpp15 #define LIBWEBM_DISALLOW_COPY_AND_ASSIGN(TypeName) \
16 TypeName(const TypeName&); \
17 void operator=(const TypeName&)
/external/libvpx/libvpx/third_party/libwebm/
H A Dmkvmuxertypes.hpp15 #define LIBWEBM_DISALLOW_COPY_AND_ASSIGN(TypeName) \
16 TypeName(const TypeName&); \
17 void operator=(const TypeName&)
/external/chromium_org/third_party/angle/util/
H A Dshared_utils.h14 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
15 TypeName(const TypeName&); \
16 void operator=(const TypeName&)
/external/chromium_org/third_party/cld/base/
H A Dmacros.h85 // void operator=(const TypeName&); // DISALLOW_ASSIGN
89 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
90 TypeName(const TypeName&); \
91 void operator=(const TypeName&)
95 #define DISALLOW_EVIL_CONSTRUCTORS(TypeName) DISALLOW_COPY_AND_ASSIGN(TypeName)
103 #define DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \
104 TypeName(); \
105 DISALLOW_COPY_AND_ASSIGN(TypeName)
[all...]
H A Dbasictypes.h80 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
81 TypeName(const TypeName&); \
82 void operator=(const TypeName&)
85 #define DISALLOW_EVIL_CONSTRUCTORS(TypeName) DISALLOW_COPY_AND_ASSIGN(TypeName)
93 #define DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \
94 TypeName(); \
95 DISALLOW_COPY_AND_ASSIGN(TypeName)
/external/chromium_org/base/
H A Dmacros.h19 #define DISALLOW_COPY(TypeName) \
20 TypeName(const TypeName&)
23 #define DISALLOW_ASSIGN(TypeName) \
24 void operator=(const TypeName&)
28 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
29 TypeName(const TypeName&); \
30 void operator=(const TypeName&)
37 #define DISALLOW_EVIL_CONSTRUCTORS(TypeName) DISALLOW_COPY_AND_ASSIG
[all...]
/external/ceres-solver/include/ceres/internal/
H A Dmacros.h47 // void operator=(const TypeName&); // _DISALLOW_ASSIGN
52 #define CERES_DISALLOW_COPY_AND_ASSIGN(TypeName) \
53 TypeName(const TypeName&); \
54 void operator=(const TypeName&)
62 #define CERES_DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \
63 TypeName(); \
64 CERES_DISALLOW_COPY_AND_ASSIGN(TypeName)
/external/chromium_org/native_client_sdk/src/libraries/sdk_util/
H A Dmacros.h12 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
13 TypeName(const TypeName&); \
14 void operator=(const TypeName&)
/external/chromium_org/third_party/snappy/linux/
H A Dsnappy-stubs-public.h83 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
84 TypeName(const TypeName&); \
85 void operator=(const TypeName&)
/external/chromium_org/third_party/snappy/mac/
H A Dsnappy-stubs-public.h83 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
84 TypeName(const TypeName&); \
85 void operator=(const TypeName&)
/external/chromium_org/mojo/public/cpp/system/
H A Dmacros.h25 #define MOJO_DISALLOW_COPY_AND_ASSIGN(TypeName) \
26 TypeName(const TypeName&); \
27 void operator=(const TypeName&)
/external/chromium_org/third_party/snappy/win32/
H A Dsnappy-stubs-public.h83 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
84 TypeName(const TypeName&); \
85 void operator=(const TypeName&)
/external/lldb/include/lldb/
H A Dlldb-defines.h115 /// @def DISALLOW_COPY_AND_ASSIGN(TypeName)
119 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
120 TypeName(const TypeName&); \
121 const TypeName& operator=(const TypeName&)
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/port/
H A Dtype.h61 #define NO_COPY_AND_ASSIGN(TypeName) \
62 TypeName(const TypeName&); \
63 void operator=(const TypeName&)
/external/sfntly/cpp/src/sfntly/port/
H A Dtype.h61 #define NO_COPY_AND_ASSIGN(TypeName) \
62 TypeName(const TypeName&); \
63 void operator=(const TypeName&)
/external/javassist/src/main/javassist/bytecode/stackmap/
H A DTypeData.java122 protected static abstract class TypeName extends TypeData { class in class:TypeData
129 protected TypeName() { method in class:TypeData.TypeName
141 if (!(neighbor instanceof TypeName))
144 TypeName neighbor2 = (TypeName)neighbor;
152 TypeName tn = (TypeName)list2.get(i);
189 if (obj instanceof TypeName) {
191 TypeName tn = (TypeName)ob
[all...]
/external/chromium_org/third_party/libaddressinput/src/cpp/include/libaddressinput/util/
H A Dbasictypes.h111 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
112 TypeName(const TypeName&); \
113 void operator=(const TypeName&)
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/base/
H A Dbasictypes.h100 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
101 TypeName(const TypeName&); \
102 void operator=(const TypeName&)
/external/chromium_org/v8/src/base/
H A Dmacros.h244 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
245 TypeName(const TypeName&) V8_DELETE; \
246 void operator=(const TypeName&) V8_DELETE
255 #define DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \
256 TypeName() V8_DELETE; \
257 DISALLOW_COPY_AND_ASSIGN(TypeName)
/external/chromium_org/third_party/angle/src/common/
H A Dangleutils.h23 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
24 TypeName(const TypeName&); \
25 void operator=(const TypeName&)
/external/chromium_org/third_party/re2/util/
H A Dutil.h92 #define DISALLOW_EVIL_CONSTRUCTORS(TypeName) \
93 TypeName(const TypeName&); \
94 void operator=(const TypeName&)

Completed in 527 milliseconds

123