/external/chromium_org/chrome/common/extensions/docs/server2/test_data/test_json/ |
ref_test_data_source.json | 5 { "name": "type2" }, 20 { "name": "type2" }
|
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/pepper/ |
define_empty_macros.h | 10 #define METHOD3(Class, ReturnType, MethodName, Type0, Type1, Type2) 11 #define METHOD4(Class, ReturnType, MethodName, Type0, Type1, Type2, Type3) 12 #define METHOD5(Class, ReturnType, MethodName, Type0, Type1, Type2, Type3, \
|
/external/clang/test/Sema/ |
c11-typedef-redef.c | 8 typedef int type2; typedef 9 typedef type type2; typedef 10 typedef int type2; typedef
|
/frameworks/base/cmds/interrupter/ |
interrupter.h | 36 #define CALL_FUNCTION_2(sym, ret, type1, type2) \ 37 ret (*real_##sym)(type1, type2) = NULL; \ 38 ret sym(type1 arg1, type2 arg2) { \ 43 #define CALL_FUNCTION_3(sym, ret, type1, type2, type3) \ 44 ret (*real_##sym)(type1, type2, type3) = NULL; \ 45 ret sym(type1 arg1, type2 arg2, type3 arg3) { \ 50 #define CALL_FUNCTION_4(sym, ret, type1, type2, type3, type4) \ 51 ret (*real_##sym)(type1, type2, type3, type4) = NULL; \ 52 ret sym(type1 arg1, type2 arg2, type3 arg3, type4 arg4) { \ 57 #define CALL_FUNCTION_5(sym, ret, type1, type2, type3, type4, type5) [all...] |
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/ |
pepper_interface_mock.h | 26 #define METHOD3(Class, ReturnType, MethodName, Type0, Type1, Type2) \ 27 MOCK_METHOD3(MethodName, ReturnType(Type0, Type1, Type2)); 28 #define METHOD4(Class, ReturnType, MethodName, Type0, Type1, Type2, Type3) \ 29 MOCK_METHOD4(MethodName, ReturnType(Type0, Type1, Type2, Type3)); 30 #define METHOD5(Class, ReturnType, MethodName, Type0, Type1, Type2, Type3, \ 32 MOCK_METHOD5(MethodName, ReturnType(Type0, Type1, Type2, Type3, Type4));
|
/external/dexmaker/src/dx/java/com/android/dx/cf/code/ |
Merger.java | 40 Type type2 = ft2.getType(); local 42 if (type1 == type2) { 44 } else if (type1.isReference() && type2.isReference()) { 50 return type2; 51 } else if (type2 == Type.KNOWN_NULL) { 53 * The same as above, but this time it's type2 that's 57 } else if (type1.isArray() && type2.isArray()) { 60 type2.getComponentType()); 77 } else if (type1.isIntlike() && type2.isIntlike()) {
|
/external/clang/test/SemaCXX/ |
constexpr-many-arguments.cpp | 10 struct type2 struct 13 constexpr type2(T a00, T a01, T a02, T a03, T a04, T a05, T a06, T a07, T a08, T a09, function in struct:type2 25 constexpr type3(type2 a0, type2 a1) : my_data{a0, a1} {} 26 type2 my_data[2];
|
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/ |
real_pepper_interface.cc | 30 #define METHOD3(Class, ReturnType, MethodName, Type0, Type1, Type2) \ 31 virtual ReturnType MethodName(Type0, Type1, Type2); 32 #define METHOD4(Class, ReturnType, MethodName, Type0, Type1, Type2, Type3) \ 33 virtual ReturnType MethodName(Type0, Type1, Type2, Type3); 34 #define METHOD5(Class, ReturnType, MethodName, Type0, Type1, Type2, Type3, \ 36 virtual ReturnType MethodName(Type0, Type1, Type2, Type3, Type4); 59 #define METHOD3(BaseClass, ReturnType, MethodName, Type0, Type1, Type2) \ 61 Type2 arg2) { \ 64 #define METHOD4(BaseClass, ReturnType, MethodName, Type0, Type1, Type2, Type3) \ 65 ReturnType Real##BaseClass::MethodName(Type0 arg0, Type1 arg1, Type2 arg2, [all...] |
pepper_interface.h | 121 #define METHOD3(Class, ReturnType, MethodName, Type0, Type1, Type2) \ 122 virtual ReturnType MethodName(Type0, Type1, Type2) = 0; 123 #define METHOD4(Class, ReturnType, MethodName, Type0, Type1, Type2, Type3) \ 124 virtual ReturnType MethodName(Type0, Type1, Type2, Type3) = 0; 125 #define METHOD5(Class, ReturnType, MethodName, Type0, Type1, Type2, Type3, \ 127 virtual ReturnType MethodName(Type0, Type1, Type2, Type3, Type4) = 0;
|
/external/chromium_org/content/public/test/ |
test_notification_tracker.cc | 52 int type2) { 57 bool success = events_[0].type == type1 && events_[1].type == type2; 63 int type2, 70 events_[1].type == type2 &&
|
/external/clang/test/SemaTemplate/ |
ms-if-exists.cpp | 14 typedef Nontemplate::value type2; typedef 27 X<int>::type2 i2; // expected-error{{no type named 'type2' in 'X<int>'}}
|
canonical-expr-type.cpp | 43 typedef T __attribute__((ext_vector_type(M))) type2; typedef in struct:X2 47 void f0(type2);
|
instantiate-exception-spec-cxx11.cpp | 75 base(const typename T::type2 &); 84 struct type2 { struct in namespace:core_19754_example 91 typedef type2<types> type2; typedef in struct:core_19754_example::types
|
/packages/apps/Contacts/tests/src/com/android/contacts/editor/ |
ContactEditorUtilsTest.java | 43 private static final MockAccountType TYPE2 = new MockAccountType("type2", null, true); 44 private static final MockAccountType TYPE2EX = new MockAccountType("type2", "ext", true); 55 "a", TYPE2.accountType, TYPE2.dataSet); 104 setAccountTypes(TYPE1, TYPE2, TYPE2EX, TYPE3); 108 Sets.newHashSet(TYPE1.accountType, TYPE2.accountType, TYPE2EX.accountType), 120 setAccountTypes(TYPE1, TYPE2); 158 setAccountTypes(TYPE1, TYPE2); 209 // Added a new account type: TYPE2, and the TYPE2EX extension [all...] |
/external/chromium_org/tools/gyp/test/win/compiler-flags/ |
treat-wchar-t-as-built-in-type.gyp | 28 'treat-wchar-t-as-built-in-type2.cc',
|
/external/chromium_org/v8/src/ |
types.cc | 381 Type* Type::Union(Handle<Type> type1, Handle<Type> type2) { 383 if (type1->is_bitset() && type2->is_bitset()) { 384 return from_bitset(type1->as_bitset() | type2->as_bitset()); 389 if (type2->SameValue(Type::Any())) return *type2; 390 if (type1->SameValue(Type::None())) return *type2; 391 if (type2->SameValue(Type::None())) return *type1; 394 if (!(type1->is_union() || type2->is_union())) { 395 if (type1->Is(type2)) return *type2; [all...] |
/external/chromium_org/chrome/common/extensions/docs/server2/test_data/api_data_source/ |
canned_trunk_fs.py | 101 'description': '$ref:type2' 104 'id': 'type2', 106 'description': 'A $ref:type3, or $ref:type2' 111 'description': '$ref:other.type2 != $ref:ref_test.type2'
|
/external/chromium_org/base/containers/ |
hash_tables.h | 182 #define DEFINE_32BIT_PAIR_HASH(Type1, Type2) \ 183 inline std::size_t HashPair(Type1 value1, Type2 value2) { \ 206 #define DEFINE_64BIT_PAIR_HASH(Type1, Type2) \ 207 inline std::size_t HashPair(Type1 value1, Type2 value2) { \ 242 template<typename Type1, typename Type2> 243 inline std::size_t hash_value(const std::pair<Type1, Type2>& value) { 248 template<typename Type1, typename Type2> 249 struct hash<std::pair<Type1, Type2> > { 250 std::size_t operator()(std::pair<Type1, Type2> value) const { 256 #error define hash<std::pair<Type1, Type2> > for your compile [all...] |
/external/chromium_org/v8/test/cctest/ |
test-types.cc | 45 static void CheckEqual(Handle<Type> type1, Handle<Type> type2) { 46 CHECK_EQ(IsBitset(*type1), IsBitset(*type2)); 47 CHECK_EQ(IsClass(*type1), IsClass(*type2)); 48 CHECK_EQ(IsConstant(*type1), IsConstant(*type2)); 49 CHECK_EQ(IsUnion(*type1), IsUnion(*type2)); 50 CHECK_EQ(type1->NumClasses(), type2->NumClasses()); 51 CHECK_EQ(type1->NumConstants(), type2->NumConstants()); 53 CHECK_EQ(AsBitset(*type1), AsBitset(*type2)); 55 CHECK_EQ(AsClass(*type1), AsClass(*type2)); 57 CHECK_EQ(AsConstant(*type1), AsConstant(*type2)); [all...] |
/dalvik/dx/src/com/android/dx/cf/code/ |
Merger.java | 158 Type type2 = ft2.getType(); local 160 if (type1 == type2) { 162 } else if (type1.isReference() && type2.isReference()) { 168 return type2; 169 } else if (type2 == Type.KNOWN_NULL) { 171 * The same as above, but this time it's type2 that's 175 } else if (type1.isArray() && type2.isArray()) { 178 type2.getComponentType()); 195 } else if (type1.isIntlike() && type2.isIntlike()) {
|
/external/chromium_org/chrome/common/extensions/docs/server2/ |
api_data_source_test.py | 167 self.assertEquals(_MakeLink('ref_test.html#type-type2', 'type2'), 171 _MakeLink('ref_test.html#type-type2', 'type2')), 172 _GetType(dict_, 'type2')['description']) 174 '%s != %s' % (_MakeLink('other.html#type-type2', 'other.type2'), 175 _MakeLink('ref_test.html#type-type2', 'type2')),
|
/external/libnfc-nxp/src/ |
phFriNfc_MapTools.h | 46 typ1/type2/type3/type4 tags. 65 /* Macros to find major and minor TAG : Ex:Type1/Type2/Type3/Type4 version numbers*/ 78 /* Macros to find major and minor TAG : Ex:Type1/Type2/Type3/Type4 version numbers*/
|
/external/chromium_org/third_party/openssl/openssl/crypto/objects/ |
objects.h | 1021 #define _DECLARE_OBJ_BSEARCH_CMP_FN(scope, type1, type2, nm) \ 1023 static int nm##_cmp(type1 const *, type2 const *); [all...] |
/external/chromium_org/third_party/openssl/openssl/include/openssl/ |
objects.h | 1021 #define _DECLARE_OBJ_BSEARCH_CMP_FN(scope, type1, type2, nm) \ 1023 static int nm##_cmp(type1 const *, type2 const *); [all...] |
/external/openssl/crypto/objects/ |
objects.h | 1021 #define _DECLARE_OBJ_BSEARCH_CMP_FN(scope, type1, type2, nm) \ 1023 static int nm##_cmp(type1 const *, type2 const *); [all...] |