/external/libchrome/base/ |
D | macros.h | 24 #define DISALLOW_COPY(TypeName) \ argument 25 TypeName(const TypeName&) = delete 30 #define DISALLOW_ASSIGN(TypeName) \ argument 31 void operator=(const TypeName&) = delete 37 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \ argument 38 TypeName(const TypeName&) = delete; \ 39 void operator=(const TypeName&) = delete 49 #define DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \ argument 50 TypeName() = delete; \ 51 DISALLOW_COPY_AND_ASSIGN(TypeName)
|
/external/libtextclassifier/util/base/ |
D | macros.h | 25 #define TC_DISALLOW_COPY_AND_ASSIGN(TypeName) \ argument 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 &)
|
/external/webrtc/webrtc/base/ |
D | constructormagic.h | 15 #define RTC_DISALLOW_ASSIGN(TypeName) \ argument 16 void operator=(const TypeName&) = delete 20 #define RTC_DISALLOW_COPY_AND_ASSIGN(TypeName) \ argument 21 TypeName(const TypeName&) = delete; \ 22 RTC_DISALLOW_ASSIGN(TypeName) 30 #define RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \ argument 31 TypeName() = delete; \ 32 RTC_DISALLOW_COPY_AND_ASSIGN(TypeName)
|
/external/protobuf/src/google/protobuf/stubs/ |
D | macros.h | 40 #define GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(TypeName) \ argument 41 TypeName(const TypeName&); \ 42 void operator=(const TypeName&) 45 #define GOOGLE_DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \ argument 46 TypeName(); \ 47 TypeName(const TypeName&); \ 48 void operator=(const TypeName&)
|
/external/llvm/lib/DebugInfo/CodeView/ |
D | TypeDumper.cpp | 247 SmallString<256> TypeName("("); in visitArgList() local 251 TypeName.append(ArgTypeName); in visitArgList() 253 TypeName.append(", "); in visitArgList() 255 TypeName.push_back(')'); in visitArgList() 256 Name = saveName(TypeName); in visitArgList() 341 SmallString<256> TypeName(ReturnTypeName); in visitProcedure() local 342 TypeName.push_back(' '); in visitProcedure() 343 TypeName.append(ArgListTypeName); in visitProcedure() 344 Name = saveName(TypeName); in visitProcedure() 363 SmallString<256> TypeName(ReturnTypeName); in visitMemberFunction() local [all …]
|
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/ |
D | ParameterizedTypeName.java | 28 public final class ParameterizedTypeName implements TypeName { 30 private final ImmutableList<TypeName> parameters; 32 ParameterizedTypeName(ClassName type, Iterable<? extends TypeName> parameters) { in ParameterizedTypeName() 34 this.parameters = ImmutableList.<TypeName>copyOf(parameters); in ParameterizedTypeName() 41 public ImmutableList<TypeName> parameters() { in parameters() 49 for (TypeName parameter : parameters) { in referencedClasses() 58 Iterator<? extends TypeName> parameterIterator = parameters.iterator(); in write() 92 TypeName... parameters) { in create() 97 Iterable<? extends TypeName> parameters) { in create() 102 TypeName... parameters) { in create()
|
D | TypeNames.java | 32 static final Function<TypeMirror, TypeName> FOR_TYPE_MIRROR = 33 new Function<TypeMirror, TypeName>() { 34 @Override public TypeName apply(TypeMirror input) { 39 public static TypeName forClass(Class<?> clazz) { in forClass() 51 public static TypeName forTypeMirror(TypeMirror mirror) { in forTypeMirror() 52 return mirror.accept(new SimpleTypeVisitor6<TypeName, Void>() { in forTypeMirror() 54 protected TypeName defaultAction(TypeMirror e, Void p) { in forTypeMirror() 59 public TypeName visitTypeVariable(TypeVariable t, Void p) { in forTypeMirror() 69 public TypeName visitDeclared(DeclaredType t, Void p) { in forTypeMirror() 93 public TypeName visitNoType(NoType t, Void p) { in forTypeMirror()
|
D | Snippet.java | 32 abstract ImmutableSet<TypeName> types(); in types() 43 new Function<TypeName, Set<ClassName>>() { in referencedClasses() 45 public Set<ClassName> apply(TypeName input) { in referencedClasses() 54 final ImmutableSet<TypeName> types; 57 BasicSnippet(String format, ImmutableSet<TypeName> types, ImmutableList<Object> args) { 64 ImmutableSet<TypeName> types() { 97 ImmutableSet<TypeName> types() { 100 new Function<Snippet, Iterable<TypeName>>() { 102 public Iterable<TypeName> apply(Snippet input) { 126 ImmutableSet.Builder<TypeName> types = ImmutableSet.builder(); [all …]
|
D | TypeVariableName.java | 32 public final class TypeVariableName implements TypeName { 34 private final Iterable<? extends TypeName> extendsBounds; 36 TypeVariableName(CharSequence name, Iterable<? extends TypeName> extendsBounds) { in TypeVariableName() 48 for (TypeName bound : extendsBounds) { in referencedClasses() 59 Iterator<? extends TypeName> iter = extendsBounds.iterator(); in write() 91 return new TypeVariableName(name, ImmutableList.<TypeName>of()); in named() 105 Iterable<? extends TypeName> bounds = in fromTypeParameterElement()
|
D | WildcardName.java | 26 public final class WildcardName implements TypeName { 27 private final Optional<TypeName> extendsBound; 28 private final Optional<TypeName> superBound; 30 WildcardName(Optional<TypeName> extendsBound, in WildcardName() 31 Optional<TypeName> superBound) { in WildcardName()
|
/external/javassist/src/main/javassist/bytecode/stackmap/ |
D | TypeData.java | 122 protected static abstract class TypeName extends TypeData { class in TypeData 129 protected TypeName() { in TypeName() method in TypeData.TypeName 141 if (!(neighbor instanceof TypeName)) in merge() 144 TypeName neighbor2 = (TypeName)neighbor; in merge() 152 TypeName tn = (TypeName)list2.get(i); in merge() 189 if (obj instanceof TypeName) { in equals() 191 TypeName tn = (TypeName)obj; in equals() 218 if (td instanceof TypeName) { in evalExpectedType() 219 TypeName tn = (TypeName)td; in evalExpectedType() 228 if (td instanceof TypeName) { in evalExpectedType() [all …]
|
/external/v8/src/base/ |
D | macros.h | 107 #define DISALLOW_ASSIGN(TypeName) void operator=(const TypeName&) argument 112 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \ argument 113 TypeName(const TypeName&) = delete; \ 114 void operator=(const TypeName&) = delete 123 #define DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \ argument 124 TypeName() = delete; \ 125 DISALLOW_COPY_AND_ASSIGN(TypeName)
|
/external/swiftshader/third_party/subzero/src/ |
D | IceTargetLoweringX86.cpp | 29 const char *PoolTypeConverter<float>::TypeName = "float"; member in Ice::X86::PoolTypeConverter<float> 33 const char *PoolTypeConverter<double>::TypeName = "double"; member in Ice::X86::PoolTypeConverter<double> 37 const char *PoolTypeConverter<uint32_t>::TypeName = "i32"; member in Ice::X86::PoolTypeConverter<uint32_t> 41 const char *PoolTypeConverter<uint16_t>::TypeName = "i16"; member in Ice::X86::PoolTypeConverter<uint16_t> 45 const char *PoolTypeConverter<uint8_t>::TypeName = "i8"; member in Ice::X86::PoolTypeConverter<uint8_t>
|
/external/clang/lib/Headers/ |
D | cuda_builtin_vars.h | 60 #define __CUDA_DISALLOW_BUILTINVAR_ACCESS(TypeName) \ argument 61 __attribute__((device)) TypeName() __DELETE; \ 62 __attribute__((device)) TypeName(const TypeName &) __DELETE; \ 63 __attribute__((device)) void operator=(const TypeName &) const __DELETE; \ 64 __attribute__((device)) TypeName *operator&() const __DELETE
|
/external/protobuf/src/google/protobuf/compiler/javanano/ |
D | javanano_map_field.cc | 45 string TypeName(const Params& params, const FieldDescriptor* field, in TypeName() function 93 (*variables)["key_type"] = TypeName(params, key, false); in SetMapVariables() 94 (*variables)["boxed_key_type"] = TypeName(params,key, true); in SetMapVariables() 96 "TYPE_" + ToUpper(FieldDescriptor::TypeName(key->type())); in SetMapVariables() 98 (*variables)["value_type"] = TypeName(params, value, false); in SetMapVariables() 99 (*variables)["boxed_value_type"] = TypeName(params, value, true); in SetMapVariables() 101 "TYPE_" + ToUpper(FieldDescriptor::TypeName(value->type())); in SetMapVariables()
|
/external/swiftshader/src/OpenGL/compiler/preprocessor/ |
D | pp_utils.h | 22 #define PP_DISALLOW_COPY_AND_ASSIGN(TypeName) \ argument 23 TypeName(const TypeName&); \ 24 void operator=(const TypeName&)
|
/external/google-tv-pairing-protocol/cpp/src/polo/util/ |
D | macros.h | 20 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \ argument 21 TypeName(const TypeName&); \ 22 void operator=(const TypeName&)
|
/external/perf_data_converter/src/quipper/mybase/base/ |
D | macros.h | 8 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \ argument 9 TypeName(const TypeName&); \ 10 void operator=(const TypeName&)
|
/external/tensorflow/tensorflow/core/framework/ |
D | variant_test.cc | 35 string TypeName() const { return "POD"; } in TypeName() function 49 EXPECT_EQ(x.TypeName(), "int"); in TEST() 61 EXPECT_EQ(x.TypeName(), "POD"); in TEST() 101 EXPECT_EQ(x.TypeName(), "tensorflow::Tensor"); in TEST() 111 EXPECT_EQ(x.TypeName(), "tensorflow.TensorProto"); in TEST() 152 string TypeName() const { return "TensorList"; } in TypeName() function 175 EXPECT_EQ(x.TypeName(), "TensorList"); in TEST() 202 EXPECT_EQ(y_unknown.TypeName(), "TensorList"); in TEST() 232 string TypeName() const { return "POD"; } in TEST() function 237 EXPECT_EQ(x.TypeName(), "POD"); in TEST() [all …]
|
/external/libvpx/libvpx/third_party/libwebm/mkvmuxer/ |
D | mkvmuxertypes.h | 24 #define LIBWEBM_DISALLOW_COPY_AND_ASSIGN(TypeName) \ argument 25 TypeName(const TypeName&); \ 26 void operator=(const TypeName&)
|
/external/google-breakpad/src/common/ |
D | basictypes.h | 36 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \ argument 37 TypeName(const TypeName&); \ 38 void operator=(const TypeName&)
|
/external/pdfium/third_party/base/ |
D | macros.h | 33 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \ argument 34 TypeName(const TypeName&) = delete; \ 35 void operator=(const TypeName&) = delete
|
/external/compiler-rt/lib/ubsan/ |
D | ubsan_handlers_cxx.cc | 61 << TypeName(DTI.getMostDerivedTypeName()) in HandleDynamicTypeCacheMiss() 65 << TypeName(DTI.getMostDerivedTypeName()) in HandleDynamicTypeCacheMiss() 70 << TypeName(DTI.getMostDerivedTypeName()) in HandleDynamicTypeCacheMiss() 77 << DTI.getOffset() << TypeName(DTI.getMostDerivedTypeName()) in HandleDynamicTypeCacheMiss() 78 << TypeName(DTI.getSubobjectTypeName()) in HandleDynamicTypeCacheMiss() 142 << TypeName(DTI.getMostDerivedTypeName()); in HandleCFIBadType()
|
/external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/match/ |
D | TypeName.java | 22 public final class TypeName { class 28 public TypeName(String packageName, String className) { in TypeName() method in TypeName 41 public static TypeName fromFullyQualifiedClassName(String fullyQualifiedClassName) { in fromFullyQualifiedClassName() 52 return new TypeName(packageName, className); in fromFullyQualifiedClassName()
|
/external/puffin/src/include/puffin/ |
D | common.h | 20 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \ argument 21 TypeName(const TypeName&) = delete; \ 22 void operator=(const TypeName&) = delete
|