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

1 2 3

  /external/chromium/third_party/libjingle/source/talk/base/
constructormagic.h 31 #define DISALLOW_ASSIGN(TypeName) \
32 void operator=(const TypeName&)
36 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
37 TypeName(const TypeName&); \
38 DISALLOW_ASSIGN(TypeName)
41 #define DISALLOW_EVIL_CONSTRUCTORS(TypeName) \
42 DISALLOW_COPY_AND_ASSIGN(TypeName)
50 #define DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \
51 TypeName(); \
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/common/
angleutils.h 14 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
15 TypeName(const TypeName&); \
16 void operator=(const TypeName&)
  /external/webrtc/src/system_wrappers/interface/
constructor_magic.h 20 #define DISALLOW_ASSIGN(TypeName) \
21 void operator=(const TypeName&)
27 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
28 TypeName(const TypeName&); \
29 DISALLOW_ASSIGN(TypeName)
34 #define DISALLOW_EVIL_CONSTRUCTORS(TypeName) \
35 DISALLOW_COPY_AND_ASSIGN(TypeName)
45 #define DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \
46 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/chromium/googleurl/base/
basictypes.h 27 template <typename T, size_t N>
34 template <typename T, size_t N>
84 #define DISALLOW_EVIL_CONSTRUCTORS(TypeName) \
85 TypeName(const TypeName&); \
86 void operator=(const TypeName&)
  /frameworks/ex/variablespeed/jni/
macros.h 42 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
43 TypeName(const TypeName&); \
44 void operator=(const TypeName&)
  /external/chromium/base/
basictypes.h 84 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
85 TypeName(const TypeName&); \
86 void operator=(const TypeName&)
93 #define DISALLOW_EVIL_CONSTRUCTORS(TypeName) DISALLOW_COPY_AND_ASSIGN(TypeName)
101 #define DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \
102 TypeName(); \
103 DISALLOW_COPY_AND_ASSIGN(TypeName)
119 template <typename T, size_t N
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/
WebPreferences.cpp 88 #define DEFINE_PREFERENCE_GETTER_AND_SETTERS(KeyUpper, KeyLower, TypeName, Type, DefaultValue) \
91 if (!m_store.set##TypeName##ValueForKey(WebPreferencesKey::KeyLower##Key(), value)) \
93 update##TypeName##ValueForKey(WebPreferencesKey::KeyLower##Key(), value); \
99 return m_store.get##TypeName##ValueForKey(WebPreferencesKey::KeyLower##Key()); \
WebPreferences.h 36 #define DECLARE_PREFERENCE_GETTER_AND_SETTERS(KeyUpper, KeyLower, TypeName, Type, DefaultValue) \
64 #define DECLARE_PREFERENCE_GETTER_AND_SETTERS(KeyUpper, KeyLower, TypeName, Type, DefaultValue) \
  /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/regex-re2/util/
util.h 87 #define DISALLOW_EVIL_CONSTRUCTORS(TypeName) \
88 TypeName(const TypeName&); \
89 void operator=(const TypeName&)
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
ItemType.java 78 public final String TypeName;
95 * @param typeName non-null; name of the type
97 private ItemType(int mapValue, int sectionIndex, int itemAlignment, String typeName) {
101 this.TypeName = typeName;
IndexedSection.java 77 throw ExceptionWithContext.withContext(ex, "Error occured while retrieving the " + this.ItemType.TypeName +
  /external/v8/src/
globals.h 302 template <typename T>
313 template <typename F>
321 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
322 TypeName(const TypeName&); \
323 void operator=(const TypeName&)
332 #define DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \
333 TypeName(); \
334 DISALLOW_COPY_AND_ASSIGN(TypeName)
365 template <typename T, class P = FreeStoreAllocationPolicy> class List
    [all...]
  /external/clang/lib/AST/
InheritViz.cpp 78 std::string TypeName = Type.getAsString();
79 Out << " [ shape=\"box\", label=\"" << DOT::EscapeString(TypeName);
84 if (TypeName != CanonType.getAsString()) {
  /external/stressapptest/src/
sattypes.h 47 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
48 TypeName(const TypeName&); \
49 void operator=(const TypeName&)
  /frameworks/compile/slang/
slang_rs_export_element.cpp 64 llvm::StringRef TypeName;
72 if (!RSExportType::NormalizeType(T, TypeName, Context->getDiagnostics(),
84 TypeName,
99 TypeName,
slang_rs_context.h 208 export_type_iterator findExportType(const llvm::StringRef &TypeName) {
209 return mExportTypes.find(TypeName);
211 const_export_type_iterator findExportType(const llvm::StringRef &TypeName)
213 return mExportTypes.find(TypeName);
216 // Insert the specified Typename/Type pair into the map. If the key already
219 bool insertExportType(const llvm::StringRef &TypeName, RSExportType *Type);
slang_rs_export_type.cpp 545 llvm::StringRef &TypeName,
552 TypeName = RSExportType::GetTypeName(T);
553 if (TypeName.empty()) {
695 const llvm::StringRef &TypeName) {
699 RSContext::export_type_iterator ETI = Context->findExportType(TypeName);
708 RSExportPrimitiveType::GetRSSpecificType(TypeName);
714 TypeName);
721 TypeName,
729 TypeName,
737 TypeName,
    [all...]
slang_rs_reflection.cpp 816 std::string TypeName = ET->getElementName();
817 if (C.addTypeNameForElement(TypeName)) {
818 C.indent() << RS_ELEM_PREFIX << TypeName << " = Element." << TypeName
845 std::string TypeName = ET->getElementName();
846 C.addTypeNameForFieldPacker(TypeName);
866 std::string TypeName;
872 TypeName = ET->getElementName();
880 if (!TypeName.empty()) {
883 << TypeName << ")) {" << std::endl
    [all...]
slang_rs_spec_table.cpp 65 RSDataTypeSpec(const char *TypeName,
68 : mTypeName(TypeName),
88 RSMatrixDataTypeSpec(const char *TypeName,
91 : RSDataTypeSpec(TypeName, TypePragmaName, Dim * Dim * sizeof(ignore)),
102 RSObjectDataTypeSpec(const char *TypeName,
104 : RSDataTypeSpec(TypeName, TypePragmaName, 32 /* opaque pointer */) {
  /external/compiler-rt/lib/ubsan/
ubsan_value.h 101 char TypeName[1];
117 const char *getTypeName() const { return TypeName; }
  /external/webkit/Source/WebKit2/Shared/
WebPreferencesStore.cpp 37 #define DEFINE_KEY_GETTERS(KeyUpper, KeyLower, TypeName, Type, DefaultValue) \
108 template<typename MappedType>
116 #define DEFINE_STRING_DEFAULTS(KeyUpper, KeyLower, TypeName, Type, DefaultValue) defaults.set(WebPreferencesKey::KeyLower##Key(), DefaultValue);
129 #define DEFINE_BOOL_DEFAULTS(KeyUpper, KeyLower, TypeName, Type, DefaultValue) defaults.set(WebPreferencesKey::KeyLower##Key(), DefaultValue);
142 #define DEFINE_UINT32_DEFAULTS(KeyUpper, KeyLower, TypeName, Type, DefaultValue) defaults.set(WebPreferencesKey::KeyLower##Key(), DefaultValue);
155 #define DEFINE_DOUBLE_DEFAULTS(KeyUpper, KeyLower, TypeName, Type, DefaultValue) defaults.set(WebPreferencesKey::KeyLower##Key(), DefaultValue);
163 template<typename MapType>
164 static typename MapType::MappedType valueForKey(const MapType& map, const typename MapType::KeyType& key)
166 typename MapType::const_iterator it = map.find(key)
    [all...]

Completed in 4593 milliseconds

1 2 3