HomeSort by relevance Sort by last modified time
    Searched refs:TypeName (Results 1 - 25 of 139) sorted by null

1 2 3 4 5 6

  /external/google-tv-pairing-protocol/cpp/src/polo/util/
macros.h 20 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
21 TypeName(const TypeName&); \
22 void operator=(const TypeName&)
  /frameworks/av/media/libeffects/loudness/common/core/
types.h 25 #define LE_FX_DISALLOW_COPY_AND_ASSIGN(TypeName) \
26 TypeName(const TypeName&); \
27 void operator=(const TypeName&)
  /external/webrtc/webrtc/base/
constructormagic.h 15 #define RTC_DISALLOW_ASSIGN(TypeName) \
16 void operator=(const TypeName&) = delete
20 #define RTC_DISALLOW_COPY_AND_ASSIGN(TypeName) \
21 TypeName(const TypeName&) = delete; \
22 RTC_DISALLOW_ASSIGN(TypeName)
30 #define RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \
31 TypeName() = delete; \
32 RTC_DISALLOW_COPY_AND_ASSIGN(TypeName)
  /frameworks/compile/mclinker/include/mcld/Support/
Compiler.h 16 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
17 TypeName(const TypeName&) = delete; \
18 void operator=(const TypeName&) = delete
26 #define DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \
27 TypeName() = delete; \
28 DISALLOW_COPY_AND_ASSIGN(TypeName)
  /external/google-breakpad/src/common/
basictypes.h 36 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
37 TypeName(const TypeName&); \
38 void operator=(const TypeName&)
52 template<typename T>
  /external/libvpx/libvpx/third_party/libwebm/
mkvmuxertypes.hpp 15 #define LIBWEBM_DISALLOW_COPY_AND_ASSIGN(TypeName) \
16 TypeName(const TypeName&); \
17 void operator=(const TypeName&)
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libwebm/
mkvmuxertypes.hpp 15 #define LIBWEBM_DISALLOW_COPY_AND_ASSIGN(TypeName) \
16 TypeName(const TypeName&); \
17 void operator=(const TypeName&)
  /bionic/libc/private/
bionic_macros.h 26 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
27 TypeName(const TypeName&) = delete; \
28 void operator=(const TypeName&) = delete
37 #define DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \
38 TypeName() = delete; \
39 DISALLOW_COPY_AND_ASSIGN(TypeName)
  /external/libchrome/base/
macros.h 16 #define DISALLOW_COPY(TypeName) \
17 TypeName(const TypeName&) = delete
20 #define DISALLOW_ASSIGN(TypeName) \
21 void operator=(const TypeName&) = delete
27 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
28 TypeName(const TypeName&); \
29 void operator=(const TypeName&)
38 #define DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \
    [all...]
  /external/libweave/third_party/chromium/base/
macros.h 16 #define DISALLOW_COPY(TypeName) \
17 TypeName(const TypeName&) = delete
20 #define DISALLOW_ASSIGN(TypeName) \
21 void operator=(const TypeName&) = delete
25 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
26 TypeName(const TypeName&); \
27 void operator=(const TypeName&)
35 #define DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \
    [all...]
  /external/google-benchmark/include/benchmark/
macros.h 18 # define BENCHMARK_DISALLOW_COPY_AND_ASSIGN(TypeName) \
19 TypeName(const TypeName&); \
20 TypeName& operator=(const TypeName&)
22 # define BENCHMARK_DISALLOW_COPY_AND_ASSIGN(TypeName) \
23 TypeName(const TypeName&) = delete; \
24 TypeName& operator=(const TypeName&) = delet
    [all...]
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/
HasTypeName.java 19 TypeName name();
TypeName.java 18 public interface TypeName extends HasClassReferences, Writable {
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
macros.h 40 #define GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(TypeName) \
41 TypeName(const TypeName&); \
42 void operator=(const TypeName&)
45 #define GOOGLE_DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \
46 TypeName(); \
47 TypeName(const TypeName&); \
48 void operator=(const TypeName&)
  /system/extras/perfprofd/quipper/base/
macros.h 19 #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_ASSIGN(TypeName
    [all...]
  /system/core/base/include/android-base/
macros.h 40 // void operator=(const TypeName&) = delete;
48 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
49 TypeName(const TypeName&) = delete; \
50 void operator=(const TypeName&) = delete
52 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
53 TypeName(const TypeName&); \
54 void operator=(const TypeName&)
63 #define DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \
    [all...]
  /external/ceres-solver/include/ceres/internal/
macros.h 47 // 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)
80 template <typename T, size_t N>
87 template <typename T, size_t N
    [all...]
  /external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/match/
TypeName.java 22 public final class TypeName {
28 public TypeName(String packageName, String className) {
41 public static TypeName fromFullyQualifiedClassName(String fullyQualifiedClassName) {
52 return new TypeName(packageName, className);
  /external/clang/lib/Headers/
cuda_builtin_vars.h 56 #define __CUDA_DISALLOW_BUILTINVAR_ACCESS(TypeName) \
57 __attribute__((device)) TypeName() __DELETE; \
58 __attribute__((device)) TypeName(const TypeName &) __DELETE; \
59 __attribute__((device)) void operator=(const TypeName &) const __DELETE; \
60 __attribute__((device)) TypeName *operator&() const __DELETE
  /prebuilts/clang/darwin-x86/host/3.6/lib/clang/3.6/include/
cuda_builtin_vars.h 56 #define __CUDA_DISALLOW_BUILTINVAR_ACCESS(TypeName) \
57 __attribute__((device)) TypeName() __DELETE; \
58 __attribute__((device)) TypeName(const TypeName &) __DELETE; \
59 __attribute__((device)) void operator=(const TypeName &) const __DELETE; \
60 __attribute__((device)) TypeName *operator&() const __DELETE
  /prebuilts/clang/host/darwin-x86/3.8/lib/clang/3.8/include/
cuda_builtin_vars.h 56 #define __CUDA_DISALLOW_BUILTINVAR_ACCESS(TypeName) \
57 __attribute__((device)) TypeName() __DELETE; \
58 __attribute__((device)) TypeName(const TypeName &) __DELETE; \
59 __attribute__((device)) void operator=(const TypeName &) const __DELETE; \
60 __attribute__((device)) TypeName *operator&() const __DELETE
  /prebuilts/clang/host/darwin-x86/clang-2629532/lib64/clang/3.8/include/
cuda_builtin_vars.h 56 #define __CUDA_DISALLOW_BUILTINVAR_ACCESS(TypeName) \
57 __attribute__((device)) TypeName() __DELETE; \
58 __attribute__((device)) TypeName(const TypeName &) __DELETE; \
59 __attribute__((device)) void operator=(const TypeName &) const __DELETE; \
60 __attribute__((device)) TypeName *operator&() const __DELETE
  /prebuilts/clang/host/darwin-x86/clang-2658975/lib64/clang/3.8/include/
cuda_builtin_vars.h 56 #define __CUDA_DISALLOW_BUILTINVAR_ACCESS(TypeName) \
57 __attribute__((device)) TypeName() __DELETE; \
58 __attribute__((device)) TypeName(const TypeName &) __DELETE; \
59 __attribute__((device)) void operator=(const TypeName &) const __DELETE; \
60 __attribute__((device)) TypeName *operator&() const __DELETE
  /prebuilts/clang/host/darwin-x86/clang-2690385/lib64/clang/3.8/include/
cuda_builtin_vars.h 56 #define __CUDA_DISALLOW_BUILTINVAR_ACCESS(TypeName) \
57 __attribute__((device)) TypeName() __DELETE; \
58 __attribute__((device)) TypeName(const TypeName &) __DELETE; \
59 __attribute__((device)) void operator=(const TypeName &) const __DELETE; \
60 __attribute__((device)) TypeName *operator&() const __DELETE
  /prebuilts/clang/host/linux-x86/3.8/lib/clang/3.8/include/
cuda_builtin_vars.h 56 #define __CUDA_DISALLOW_BUILTINVAR_ACCESS(TypeName) \
57 __attribute__((device)) TypeName() __DELETE; \
58 __attribute__((device)) TypeName(const TypeName &) __DELETE; \
59 __attribute__((device)) void operator=(const TypeName &) const __DELETE; \
60 __attribute__((device)) TypeName *operator&() const __DELETE

Completed in 535 milliseconds

1 2 3 4 5 6