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

1 2 3 4 5 6 7 8 91011>>

  /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&)
  /external/swiftshader/src/OpenGL/compiler/preprocessor/
pp_utils.h 22 #define PP_DISALLOW_COPY_AND_ASSIGN(TypeName) \
23 TypeName(const TypeName&); \
24 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/libtextclassifier/util/base/
macros.h 25 #define TC_DISALLOW_COPY_AND_ASSIGN(TypeName) \
26 TypeName(const TypeName &) = delete; \
27 TypeName &operator=(const TypeName &) = delete
33 #define TC_DISALLOW_COPY_AND_ASSIGN(TypeName) \
34 TypeName(const TypeName &); \
35 TypeName &operator=(const TypeName &
    [all...]
  /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/mkvmuxer/
mkvmuxertypes.h 24 #define LIBWEBM_DISALLOW_COPY_AND_ASSIGN(TypeName) \
25 TypeName(const TypeName&); \
26 void operator=(const TypeName&)
  /external/perf_data_converter/src/quipper/mybase/base/
macros.h 8 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
9 TypeName(const TypeName&); \
10 void operator=(const TypeName&)
  /external/pdfium/third_party/base/
macros.h 33 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
34 TypeName(const TypeName&) = delete; \
35 void operator=(const TypeName&) = delete
  /frameworks/av/drm/mediadrm/plugins/clearkey/hidl/include/
ClearKeyTypes.h 40 #define CLEARKEY_DISALLOW_COPY_AND_ASSIGN(TypeName) \
41 TypeName(const TypeName&) = delete; \
42 void operator=(const TypeName&) = delete;
44 #define CLEARKEY_DISALLOW_COPY_AND_ASSIGN_AND_NEW(TypeName) \
45 TypeName() = delete; \
46 TypeName(const TypeName&) = delete; \
47 void operator=(const TypeName&) = delete;
  /external/libchrome/base/
macros.h 24 #define DISALLOW_COPY(TypeName) \
25 TypeName(const TypeName&) = delete
30 #define DISALLOW_ASSIGN(TypeName) \
31 void operator=(const TypeName&) = delete
37 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
38 TypeName(const TypeName&) = delete; \
39 void operator=(const TypeName&) = delete
49 #define DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \
    [all...]
  /frameworks/support/webkit-codegen/src/main/java/androidx/webkit/internal/codegen/
TypeConversionUtils.java 23 import com.squareup.javapoet.TypeName;
37 public static TypeName getBoundaryType(PsiType psiType) {
38 String typeName = psiType.getCanonicalText();
39 if (typeName.startsWith("android.webkit.")) {
44 return typeSpecFromString(typeName);
48 * Return the corresponding TypeName for the String {@param type}.
50 private static TypeName typeSpecFromString(String type) {
52 case "void": return TypeName.VOID;
53 case "boolean": return TypeName.BOOLEAN;
54 case "byte": return TypeName.BYTE
    [all...]
  /libnativehelper/header_only_include/nativehelper/
nativehelper_utils.h 26 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
27 TypeName(const TypeName&) = delete; \
28 void operator=(const TypeName&) = delete
30 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
31 TypeName(const TypeName&); \
32 void operator=(const TypeName&)
  /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/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/include/benchmark/
macros.h 22 #define BENCHMARK_DISALLOW_COPY_AND_ASSIGN(TypeName) \
23 TypeName(const TypeName&); \
24 TypeName& operator=(const TypeName&)
26 #define BENCHMARK_DISALLOW_COPY_AND_ASSIGN(TypeName) \
27 TypeName(const TypeName&) = delete; \
28 TypeName& operator=(const TypeName&) = delet
    [all...]
  /external/protobuf/src/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&)
  /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&)
  /external/swiftshader/third_party/subzero/src/
IceTargetLoweringX86.cpp 29 const char *PoolTypeConverter<float>::TypeName = "float";
33 const char *PoolTypeConverter<double>::TypeName = "double";
37 const char *PoolTypeConverter<uint32_t>::TypeName = "i32";
41 const char *PoolTypeConverter<uint16_t>::TypeName = "i16";
45 const char *PoolTypeConverter<uint8_t>::TypeName = "i8";
  /external/clang/include/clang/Tooling/Core/
QualTypeNames.h 65 namespace TypeName {
77 } // end namespace TypeName
  /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);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Tooling/Core/
QualTypeNames.h 65 namespace TypeName {
77 } // end namespace TypeName
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/Tooling/Core/
QualTypeNames.h 65 namespace TypeName {
77 } // end namespace TypeName
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/Tooling/Core/
QualTypeNames.h 65 namespace TypeName {
77 } // end namespace TypeName

Completed in 621 milliseconds

1 2 3 4 5 6 7 8 91011>>