HomeSort by relevance Sort by last modified time
    Searched refs:TypeName (Results 26 - 50 of 85) sorted by null

12 3 4

  /frameworks/base/media/mca/filterfw/native/base/
utilities.h 28 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
29 TypeName(const TypeName&); \
30 void operator=(const TypeName&)
34 #define DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \
35 TypeName(); \
36 DISALLOW_COPY_AND_ASSIGN(TypeName)
64 for (typename T::iterator i = v->begin(); i != v->end(); ++i) {
74 const typename Collection::value_type::second_type*
76 const typename Collection::value_type::first_type& key)
    [all...]
  /frameworks/base/media/mca/filterpacks/native/base/
utilities.h 28 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
29 TypeName(const TypeName&); \
30 void operator=(const TypeName&)
34 #define DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \
35 TypeName(); \
36 DISALLOW_COPY_AND_ASSIGN(TypeName)
64 for (typename T::iterator i = v->begin(); i != v->end(); ++i) {
74 const typename Collection::value_type::second_type*
76 const typename Collection::value_type::first_type& key)
    [all...]
  /external/javassist/src/main/javassist/bytecode/stackmap/
TypeData.java 122 protected static abstract class TypeName extends TypeData {
129 protected 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)obj
    [all...]
  /external/chromium_org/third_party/libaddressinput/chromium/cpp/include/libaddressinput/util/internal/
basictypes.h 100 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
101 TypeName(const TypeName&); \
102 void operator=(const TypeName&)
119 template <typename T, size_t N>
126 template <typename T, size_t N>
  /external/chromium_org/third_party/libaddressinput/src/cpp/include/libaddressinput/util/
basictypes.h 112 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
113 TypeName(const TypeName&); \
114 void operator=(const TypeName&)
131 template <typename T, size_t N>
138 template <typename T, size_t N>
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/base/
basictypes.h 100 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
101 TypeName(const TypeName&); \
102 void operator=(const TypeName&)
119 template <typename T, size_t N>
126 template <typename T, size_t N>
  /art/runtime/base/
macros.h 68 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
69 TypeName(const TypeName&); \
70 void operator=(const TypeName&)
78 #define DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \
79 TypeName(); \
80 DISALLOW_COPY_AND_ASSIGN(TypeName)
96 template <typename T, size_t N>
181 template<typename T> void UNUSED(const T&) {}
  /external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
utils.h 97 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
98 TypeName(const TypeName&); \
99 void operator=(const TypeName&)
107 #define DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \
108 TypeName(); \
109 DISALLOW_COPY_AND_ASSIGN(TypeName)
118 template <typename T>
125 template <typename T>
138 template <typename T
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
basictypes.h 121 #define DISALLOW_EVIL_CONSTRUCTORS(TypeName) \
122 TypeName(const TypeName&); \
123 void operator=(const TypeName&)
126 #define DISALLOW_COPY_AND_ASSIGN(TypeName) DISALLOW_EVIL_CONSTRUCTORS(TypeName)
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
basictypes.h 121 #define DISALLOW_EVIL_CONSTRUCTORS(TypeName) \
122 TypeName(const TypeName&); \
123 void operator=(const TypeName&)
126 #define DISALLOW_COPY_AND_ASSIGN(TypeName) DISALLOW_EVIL_CONSTRUCTORS(TypeName)
  /external/chromium_org/third_party/re2/util/
util.h 88 #define DISALLOW_EVIL_CONSTRUCTORS(TypeName) \
89 TypeName(const TypeName&); \
90 void operator=(const TypeName&)
  /external/regex-re2/util/
util.h 87 #define DISALLOW_EVIL_CONSTRUCTORS(TypeName) \
88 TypeName(const TypeName&); \
89 void operator=(const TypeName&)
  /external/chromium_org/sandbox/win/sandbox_poc/pocdll/
handles.cc 116 if (type && wcsncmp(L"File", type->TypeName.Buffer,
117 (type->TypeName.Length /
118 sizeof(type->TypeName.Buffer[0]))) == 0) {
159 type ? &type->TypeName : NULL,
166 type ? &type->TypeName : NULL,
  /external/clang/lib/AST/
InheritViz.cpp 80 std::string TypeName = Type.getAsString();
81 Out << " [ shape=\"box\", label=\"" << DOT::EscapeString(TypeName);
86 if (TypeName != CanonType.getAsString()) {
  /frameworks/compile/slang/
slang_rs_reflection.cpp 864 std::string TypeName = ET->getElementName();
865 if (addTypeNameForElement(TypeName)) {
866 mOut.indent() << RS_ELEM_PREFIX << TypeName << " = Element." << TypeName
892 std::string TypeName = ET->getElementName();
893 addTypeNameForFieldPacker(TypeName);
912 std::string TypeName;
918 TypeName = ET->getElementName();
926 if (!TypeName.empty()) {
929 << TypeName << ")) {\n"
    [all...]
slang_rs_export_type.cpp 624 llvm::StringRef &TypeName,
631 TypeName = RSExportType::GetTypeName(T);
632 if (Context && TypeName.empty()) {
760 const llvm::StringRef &TypeName) {
764 RSContext::export_type_iterator ETI = Context->findExportType(TypeName);
774 DataType dt = RSExportPrimitiveType::GetRSSpecificType(TypeName);
780 TypeName);
787 TypeName,
795 TypeName,
803 TypeName,
    [all...]
slang_rs_export_element.cpp 76 llvm::StringRef TypeName;
84 if (!RSExportType::NormalizeType(T, TypeName, Context, NULL))
95 TypeName,
110 TypeName,
slang_rs_context.h 212 export_type_iterator findExportType(const llvm::StringRef &TypeName) {
213 return mExportTypes.find(TypeName);
215 const_export_type_iterator findExportType(const llvm::StringRef &TypeName)
217 return mExportTypes.find(TypeName);
220 // Insert the specified Typename/Type pair into the map. If the key already
223 bool insertExportType(const llvm::StringRef &TypeName, RSExportType *Type);
slang_rs_reflection.h 120 bool addTypeNameForElement(const std::string &TypeName);
121 bool addTypeNameForFieldPacker(const std::string &TypeName);
189 void genPrivateExportVariable(const std::string &TypeName,
191 void genSetExportVariable(const std::string &TypeName, const RSExportVar *EV);
192 void genGetExportVariable(const std::string &TypeName,
slang_rs_export_type.h 200 // @TypeName was retrieve from RSExportType::GetTypeName() before calling
205 const llvm::StringRef &TypeName);
230 llvm::StringRef &TypeName,
296 // @TypeName was retrieved from RSExportType::GetTypeName() before calling
300 const llvm::StringRef &TypeName,
328 static DataType GetRSSpecificType(const llvm::StringRef &TypeName);
381 const llvm::StringRef &TypeName);
414 const llvm::StringRef &TypeName,
462 const llvm::StringRef &TypeName,
566 // @TypeName was retrieved from RSExportType::GetTypeName() before callin
    [all...]
slang_rs_reflection_cpp.cpp 542 std::string TypeName = GetTypeName(EPT, false);
545 mOut.indent() << "void set_" << EV->getName() << "(" << TypeName << " v)";
557 mOut.indent() << TypeName << " get_" << EV->getName() << "() const";
561 bool isBool = !strcmp(TypeName.c_str(), "bool");
578 std::string TypeName = GetTypeName(ET);
586 mOut.indent() << "void bind_" << VarName << "(" << TypeName << " v)";
592 mOut.indent() << TypeName << " get_" << VarName << "() const";
596 bool isBool = !strcmp(TypeName.c_str(), "bool");
812 std::string TypeName;
817 TypeName = ET->getElementName()
    [all...]
  /external/stressapptest/src/
sattypes.h 47 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
48 TypeName(const TypeName&); \
49 void operator=(const TypeName&)
  /external/llvm/lib/Target/R600/
SITypeRewriter.cpp 121 std::string TypeName = "i32";
125 std::string VecTypeName = "v1" + TypeName;
126 Name = Name.replace(Name.find(VecTypeName), VecTypeName.length(), TypeName);
  /external/compiler-rt/lib/ubsan/
ubsan_value.h 101 char TypeName[1];
118 const char *getTypeName() const { return TypeName; }
  /external/llvm/lib/MC/MCParser/
ELFAsmParser.cpp 410 StringRef TypeName;
472 if (getParser().parseIdentifier(TypeName))
509 if (TypeName.empty()) {
519 if (TypeName == "init_array")
521 else if (TypeName == "fini_array")
523 else if (TypeName == "preinit_array")
525 else if (TypeName == "nobits")
527 else if (TypeName == "progbits")
529 else if (TypeName == "note")
531 else if (TypeName == "unwind"
    [all...]

Completed in 352 milliseconds

12 3 4