Home
last modified time | relevance | path

Searched refs:TypeName (Results 1 – 25 of 40) sorted by relevance

12

/external/webrtc/src/system_wrappers/interface/
Dconstructor_magic.h20 #define DISALLOW_ASSIGN(TypeName) \ argument
21 void operator=(const TypeName&)
27 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \ argument
28 TypeName(const TypeName&); \
29 DISALLOW_ASSIGN(TypeName)
34 #define DISALLOW_EVIL_CONSTRUCTORS(TypeName) \ argument
35 DISALLOW_COPY_AND_ASSIGN(TypeName)
45 #define DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \ argument
46 TypeName(); \
47 DISALLOW_EVIL_CONSTRUCTORS(TypeName)
/external/ceres-solver/include/ceres/internal/
Dmacros.h52 #define CERES_DISALLOW_COPY_AND_ASSIGN(TypeName) \ argument
53 TypeName(const TypeName&); \
54 void operator=(const TypeName&)
62 #define CERES_DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \ argument
63 TypeName(); \
64 CERES_DISALLOW_COPY_AND_ASSIGN(TypeName)
/external/javassist/src/main/javassist/bytecode/stackmap/
DTypeData.java122 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/google-tv-pairing-protocol/cpp/src/polo/util/
Dmacros.h20 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \ argument
21 TypeName(const TypeName&); \
22 void operator=(const TypeName&)
/external/libvpx/libvpx/third_party/libwebm/
Dmkvmuxertypes.hpp15 #define LIBWEBM_DISALLOW_COPY_AND_ASSIGN(TypeName) \ argument
16 TypeName(const TypeName&); \
17 void operator=(const TypeName&)
/external/google-breakpad/src/common/
Dbasictypes.h36 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \ argument
37 TypeName(const TypeName&); \
38 void operator=(const TypeName&)
/external/lldb/include/lldb/
Dlldb-defines.h119 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \ argument
120 TypeName(const TypeName&); \
121 const TypeName& operator=(const TypeName&)
/external/v8/src/base/
Dmacros.h244 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \ argument
245 TypeName(const TypeName&) V8_DELETE; \
246 void operator=(const TypeName&) V8_DELETE
255 #define DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \ argument
256 TypeName() V8_DELETE; \
257 DISALLOW_COPY_AND_ASSIGN(TypeName)
/external/sfntly/cpp/src/sfntly/port/
Dtype.h61 #define NO_COPY_AND_ASSIGN(TypeName) \ argument
62 TypeName(const TypeName&); \
63 void operator=(const TypeName&)
/external/regex-re2/util/
Dutil.h87 #define DISALLOW_EVIL_CONSTRUCTORS(TypeName) \ argument
88 TypeName(const TypeName&); \
89 void operator=(const TypeName&)
/external/llvm/lib/MC/MCParser/
DELFAsmParser.cpp375 StringRef TypeName; in ParseSectionArguments() local
439 if (getParser().parseIdentifier(TypeName)) in ParseSectionArguments()
492 if (TypeName.empty()) { in ParseSectionArguments()
502 if (TypeName == "init_array") in ParseSectionArguments()
504 else if (TypeName == "fini_array") in ParseSectionArguments()
506 else if (TypeName == "preinit_array") in ParseSectionArguments()
508 else if (TypeName == "nobits") in ParseSectionArguments()
510 else if (TypeName == "progbits") in ParseSectionArguments()
512 else if (TypeName == "note") in ParseSectionArguments()
514 else if (TypeName == "unwind") in ParseSectionArguments()
/external/gptfdisk/
Dgptpart.cc52 return partitionType.TypeName(); in GetTypeName()
161 if (GetDescription() == partitionType.TypeName()) {
163 SetName(t.TypeName());
265 SetName(partitionType.TypeName());
368 cout << " (" << partitionType.TypeName() << ")\n";
450 cout << "Changed type of partition to '" << partitionType.TypeName() << "'\n";
Dparttypes.cc305 cout << hex << ID << "; assigning type code for\n'" << TypeName() << "'\n" << dec; in operator =()
312 string PartType::TypeName(void) const { in TypeName() function in PartType
Dparttypes.h58 string TypeName(void) const;
/external/llvm/tools/llvm-pdbdump/
DLinePrinter.cpp40 bool LinePrinter::IsTypeExcluded(llvm::StringRef TypeName) { in IsTypeExcluded() argument
41 if (TypeName.empty()) in IsTypeExcluded()
45 if (Expr.match(TypeName)) in IsTypeExcluded()
DLinePrinter.h35 bool IsTypeExcluded(llvm::StringRef TypeName);
/external/clang/lib/AST/
DInheritViz.cpp80 std::string TypeName = Type.getAsString(); in WriteNode() local
81 Out << " [ shape=\"box\", label=\"" << llvm::DOT::EscapeString(TypeName); in WriteNode()
86 if (TypeName != CanonType.getAsString()) { in WriteNode()
/external/llvm/lib/Target/R600/
DSITypeRewriter.cpp120 std::string TypeName = "i32"; in visitCallInst() local
124 std::string VecTypeName = "v1" + TypeName; in visitCallInst()
125 Name = Name.replace(Name.find(VecTypeName), VecTypeName.length(), TypeName); in visitCallInst()
/external/compiler-rt/lib/ubsan/
Dubsan_value.h94 char TypeName[1]; variable
111 const char *getTypeName() const { return TypeName; } in getTypeName()
Dubsan_diag.cc357 bool __ubsan::IsVptrCheckSuppressed(const char *TypeName) { in IsVptrCheckSuppressed() argument
361 return suppression_ctx->Match(TypeName, kVptrCheck, &s); in IsVptrCheckSuppressed()
/external/lldb/examples/interposing/darwin/fd_interposing/
DFDInterposing.cpp76 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \ argument
77 TypeName(const TypeName&); \
78 const TypeName& operator=(const TypeName&)
/external/v8/src/heap/
Dgc-tracer.cc57 const char* GCTracer::Event::TypeName(bool short_name) const { in TypeName() function in v8::internal::GCTracer::Event
226 PrintF("%s %.1f (%.1f) -> %.1f (%.1f) MB, ", current_.TypeName(false), in Print()
274 PrintF("gc=%s ", current_.TypeName(true)); in PrintNVP()
/external/mesa3d/src/gallium/drivers/radeon/
DR600KernelParameters.cpp66 int getLastSpecialID(const std::string& TypeName);
119 int R600KernelParameters::getLastSpecialID(const std::string &TypeName) { in getLastSpecialID() argument
123 if (i->SpecialType == TypeName) { in getLastSpecialID()
/external/protobuf/src/google/protobuf/stubs/
Dcommon.h89 #define GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(TypeName) \ argument
90 TypeName(const TypeName&); \
91 void operator=(const TypeName&)
/external/protobuf/src/google/protobuf/
Ddescriptor_unittest.cc1747 EXPECT_STREQ("double" , FD::TypeName(FD::TYPE_DOUBLE )); in TEST_F()
1748 EXPECT_STREQ("float" , FD::TypeName(FD::TYPE_FLOAT )); in TEST_F()
1749 EXPECT_STREQ("int64" , FD::TypeName(FD::TYPE_INT64 )); in TEST_F()
1750 EXPECT_STREQ("uint64" , FD::TypeName(FD::TYPE_UINT64 )); in TEST_F()
1751 EXPECT_STREQ("int32" , FD::TypeName(FD::TYPE_INT32 )); in TEST_F()
1752 EXPECT_STREQ("fixed64" , FD::TypeName(FD::TYPE_FIXED64 )); in TEST_F()
1753 EXPECT_STREQ("fixed32" , FD::TypeName(FD::TYPE_FIXED32 )); in TEST_F()
1754 EXPECT_STREQ("bool" , FD::TypeName(FD::TYPE_BOOL )); in TEST_F()
1755 EXPECT_STREQ("string" , FD::TypeName(FD::TYPE_STRING )); in TEST_F()
1756 EXPECT_STREQ("group" , FD::TypeName(FD::TYPE_GROUP )); in TEST_F()
[all …]

12