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

1 2 3 4 5 6 7 8 91011>>

  /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...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
RawContactDeltaComparator.java 53 final AccountType type2 = accountTypes.getAccountType(accountType2, dataSet2); local
56 if (!type1.areContactsWritable() && type2.areContactsWritable()) {
58 } else if (type1.areContactsWritable() && !type2.areContactsWritable()) {
65 boolean isGoogleAccount2 = type2 instanceof GoogleAccountType;
77 if (type1.accountType != null && type2.accountType == null) {
79 } else if (type1.accountType == null && type2.accountType != null) {
83 if (type1.accountType != null && type2.accountType != null) {
84 value = type1.accountType.compareTo(type2.accountType);
92 if (type1.dataSet != null && type2.dataSet == null) {
94 } else if (type1.dataSet == null && type2.dataSet != null)
    [all...]
  /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];
  /cts/tests/tests/media/src/android/media/cts/
ResourceManagerTest.java 29 private void doTestReclaimResource(int type1, int type2) throws Exception {
33 activity.testReclaimResource(type1, type2);
ResourceManagerStubActivity.java 69 public void testReclaimResource(int type1, int type2) throws InterruptedException {
71 mType2 = type2;
72 if (type1 != ResourceManagerTestActivityBase.TYPE_MIX && type1 != type2) {
  /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()) {
Machine.java 88 * @param type2 {@code non-null;} type of the second argument
90 public void popArgs(Frame frame, Type type1, Type type2);
101 * @param type2 {@code non-null;} type of the second argument
104 public void popArgs(Frame frame, Type type1, Type type2, Type type3);
BaseMachine.java 167 public final void popArgs(Frame frame, Type type1, Type type2) {
178 if (! Merger.isPossiblyAssignableFrom(type2, args[1])) {
179 throw new SimException("expected type " + type2.toHuman() +
185 public final void popArgs(Frame frame, Type type1, Type type2,
197 if (! Merger.isPossiblyAssignableFrom(type2, args[1])) {
198 throw new SimException("expected type " + type2.toHuman() +
  /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>'}}
instantiate-exception-spec-cxx11.cpp 86 base(const typename T::type2 &);
95 struct type2 { struct in namespace:core_19754_example
102 typedef type2<types> type2; typedef in struct:core_19754_example::types
canonical-expr-type.cpp 43 typedef T __attribute__((ext_vector_type(M))) type2; typedef in struct:X2
47 void f0(type2);
instantiate-declref.cpp 58 typedef struct { T z; } type2; typedef in typeref:struct:N2::Outer2::Inner::__anon15892
59 type2 t3 = { s1.x };
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
config.hpp 56 # define ASIO_MOVE_CAST2(type1, type2) static_cast<type1, type2&&>
75 # define ASIO_MOVE_CAST2(type1, type2) static_cast<const type1, type2&>
  /external/clang/test/CodeGenCXX/
mangle-subst.cpp 90 typedef int type2; typedef in struct:ManglePrefix::X::Y
94 typename X<T>::template Y<T>::type f(typename X<T>::template Y<T>::type2) { return 0; }
type_visibility.cpp 139 namespace type2 { namespace
  /external/javassist/src/main/javassist/compiler/ast/
IntConst.java 55 int type2 = right.type; local
57 if (type1 == TokenId.LongConstant || type2 == TokenId.LongConstant)
60 && type2 == TokenId.CharConstant)
  /external/curl/lib/vauth/
ntlm.c 258 unsigned char *type2 = NULL; local
272 result = Curl_base64_decode(type2msg, &type2, &type2_len);
278 if(!type2) {
286 (memcmp(type2, NTLMSSP_SIGNATURE, 8) != 0) ||
287 (memcmp(type2 + 8, type2_marker, sizeof(type2_marker)) != 0)) {
289 free(type2);
294 ntlm->flags = Curl_read32_le(&type2[20]);
295 memcpy(ntlm->nonce, &type2[24], 8);
298 result = ntlm_decode_type2_target(data, type2, type2_len, ntlm);
300 free(type2);
    [all...]
ntlm_sspi.c 170 unsigned char *type2 = NULL; local
179 result = Curl_base64_decode(type2msg, &type2, &type2_len);
185 if(!type2) {
192 ntlm->input_token = type2;
  /external/v8/src/ast/
ast-types.cc 732 AstType* AstType::Intersect(AstType* type1, AstType* type2, Zone* zone) {
734 if (type1->IsBitset() && type2->IsBitset()) {
735 return AstBitsetType::New(type1->AsBitset() & type2->AsBitset());
739 if (type1->IsNone() || type2->IsAny()) return type1; // Shortcut.
740 if (type2->IsNone() || type1->IsAny()) return type2; // Shortcut.
743 if (type1->Is(type2)) return type1;
744 if (type2->Is(type1)) return type2;
753 type1->Representation() & type2->Representation()
    [all...]
  /external/v8/src/compiler/
types.cc 618 Type* Type::Intersect(Type* type1, Type* type2, Zone* zone) {
620 if (type1->IsBitset() && type2->IsBitset()) {
621 return BitsetType::New(type1->AsBitset() & type2->AsBitset());
625 if (type1->IsNone() || type2->IsAny()) return type1; // Shortcut.
626 if (type2->IsNone() || type1->IsAny()) return type2; // Shortcut.
629 if (type1->Is(type2)) return type1;
630 if (type2->Is(type1)) return type2;
636 if (type1->Is(type2)) {
    [all...]
  /external/google-breakpad/src/third_party/lss/
linux_syscall_support.h     [all...]
  /art/test/046-reflect/src/
Main.java 615 Type type2 = types2.get(0); local
621 if (type2 instanceof ParameterizedType) {
622 System.out.println("type2 is a ParameterizedType");
628 if (type1.equals(type2)) {
629 System.out.println("type1("+type1+") equals type2("+type2+")");
631 System.out.println("type1("+type1+") does not equal type2("+type2+")");
639 if (type1.hashCode() == type2.hashCode()) {
640 System.out.println("type1("+type1+") hashCode equals type2("+type2+") hashCode")
671 Type type2 = types2.get(0); local
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
SmallStructsTest.java 200 * struct two_element_struct_X { TYPE1 a; TYPE2 b };
209 for (String type2: sTwoElementStructTypes) {
211 String tag = type1 + "_" + type2;
228 Object initialValueB = getInitialValue(type2);
231 int.class, getUnwrappedClassForType(type2), boolean.class);
  /art/runtime/verifier/
reg_type.cc 604 const ConstantType& type2 = *down_cast<const ConstantType*>(&incoming_type); local
606 int32_t val2 = type2.ConstantValue();
616 if (!type2.IsPreciseConstant()) {
617 return type2;
631 if (!type2.IsPreciseConstant()) {
632 return type2;
640 if (type2.IsConstantByte()) {
642 } else if (type2.IsConstantShort()) {
648 if (type2.IsConstantShort()) {
659 const ConstantType& type2 = *down_cast<const ConstantType*>(&incoming_type) local
665 const ConstantType& type2 = *down_cast<const ConstantType*>(&incoming_type); local
    [all...]

Completed in 863 milliseconds

1 2 3 4 5 6 7 8 91011>>