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

1 2 3

  /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];
qualified-id-lookup.cpp 67 typedef struct N::f2 type2; typedef in typeref:struct:f2
  /external/clang/test/Sema/
c11-typedef-redef.c 8 typedef int type2; typedef
9 typedef type type2; typedef
10 typedef int type2; typedef
  /external/clang/test/SemaTemplate/
canonical-expr-type.cpp 43 typedef T __attribute__((ext_vector_type(M))) type2; typedef in struct:X2
47 void f0(type2);
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 79 base(const typename T::type2 &);
88 struct type2 { struct in namespace:core_19754_example
95 typedef type2<types> type2; typedef in struct:core_19754_example::types
instantiate-declref.cpp 58 typedef struct { T z; } type2; typedef in typeref:struct:N2::Outer2::Inner::__anon23278
59 type2 t3 = { s1.x };
  /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/chromium_org/sync/api/
sync_error_unittest.cc 52 ModelType type2 = PREFERENCES; local
53 error.Reset(location2, msg2, type2);
57 EXPECT_EQ(type2, error.model_type());
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/
ImplicitTest.java 189 * TYPE2 = [2] IMPLICIT TYPE1
194 ASN1Implicit type2 = new ASN1Implicit(2, type1); local
213 assertTrue(Arrays.equals(array, (byte[]) type2
217 assertTrue(Arrays.equals(primitiveEncoding, type2.encode(array)));
221 type2.decode(constructedEncoding);
  /external/clang/test/CodeGenCXX/
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)
  /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/clang/test/Index/
annotate-nested-name-specifier.cpp 108 typedef typename outer_alias::inner::vector<type>::template rebind<type>::other type2; typedef in struct:X6
389 // CHECK: Keyword: "typedef" [108:3 - 108:10] TypedefDecl=type2:108:83 (Definition)
390 // CHECK: Keyword: "typename" [108:11 - 108:19] TypedefDecl=type2:108:83 (Definition)
392 // CHECK: Punctuation: "::" [108:31 - 108:33] TypedefDecl=type2:108:83 (Definition)
394 // CHECK: Punctuation: "::" [108:38 - 108:40] TypedefDecl=type2:108:83 (Definition)
396 // CHECK: Punctuation: "<" [108:46 - 108:47] TypedefDecl=type2:108:83 (Definition)
398 // CHECK: Punctuation: ">" [108:51 - 108:52] TypedefDecl=type2:108:83 (Definition)
399 // CHECK: Punctuation: "::" [108:52 - 108:54] TypedefDecl=type2:108:83 (Definition)
400 // CHECK: Keyword: "template" [108:54 - 108:62] TypedefDecl=type2:108:83 (Definition)
401 // CHECK: Identifier: "rebind" [108:63 - 108:69] TypedefDecl=type2:108:83 (Definition
    [all...]
  /device/lge/mako/camera/mm-camera-interface/
mm_camera_channel.c 186 mm_camera_stream_type_t type2; local
213 type2 = MM_CAMERA_STREAM_THUMBNAIL;
223 MM_CAMERA_STATE_EVT_ACQUIRE, &type2);
  /external/javassist/src/main/javassist/bytecode/analysis/
Executor.java 284 Type type2 = frame.peek(); local
286 frame.push(type2);
291 frame.setStack(insert, type2);
297 Type type2 = frame.pop(); local
298 if (type1.getSize() == 2 || type2.getSize() == 2)
301 frame.push(type2);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ReplaceStringsVisitor.java 274 ITypeBinding type2 = types2[i]; local
275 if (!("int".equals(type2.getQualifiedName()))) { //$NON-NLS-1$
  /cts/tests/tests/content/src/android/content/cts/
ContentResolverTest.java 252 String type2 = mContentResolver.getType(TABLE2_URI); local
253 assertTrue(type2.startsWith(ContentResolver.CURSOR_DIR_BASE_TYPE, 0));
    [all...]
  /external/javassist/src/main/javassist/bytecode/
ConstPool.java 1262 String type2 = Descriptor.rename(type, oldName, newName); local
1269 String type2 = Descriptor.rename(type, map); local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_tgsi_insn.c 404 SVGA3dShaderRegType type0, type1, type2; local
410 type2 = SVGA3dShaderGetRegType( src2.base.value );
415 (type2 == SVGA3DREG_CONST && src0.base.num != src2.base.num)))
419 (type2 == SVGA3DREG_CONST && src1.base.num != src2.base.num))
425 (type2 == SVGA3DREG_INPUT && src0.base.num != src2.base.num)))
429 (type2 == SVGA3DREG_INPUT && src1.base.num != src2.base.num))
475 SVGA3dShaderRegType type0, type1, type2, type3; local
481 type2 = SVGA3dShaderGetRegType( src2.base.value );
492 (type2 == SVGA3DREG_CONST && src0.base.num != src2.base.num)))
496 (type2 == SVGA3DREG_CONST && src3.base.num != src2.base.num)
    [all...]
  /external/chromium_org/v8/test/cctest/
test-types.cc 271 template<class Type2, class TypeHandle2>
273 return Type::template Convert<Type2>(t, region_);
365 bool Equal(TypeHandle type1, TypeHandle type2) {
367 type1->Is(type2) && type2->Is(type1) &&
368 Rep::IsBitset(type1) == Rep::IsBitset(type2) &&
369 Rep::IsClass(type1) == Rep::IsClass(type2) &&
370 Rep::IsConstant(type1) == Rep::IsConstant(type2) &&
371 Rep::IsContext(type1) == Rep::IsContext(type2) &&
372 Rep::IsArray(type1) == Rep::IsArray(type2) &
440 TypeHandle type2 = *it2; local
451 TypeHandle type2 = *it2; local
462 TypeHandle type2 = *it2; local
473 TypeHandle type2 = *it2; local
487 TypeHandle type2 = *it2; local
519 TypeHandle type2 = T.Class(map2); local
546 TypeHandle type2 = T.Constant(value2); local
610 TypeHandle type2 = T.Random(); local
624 TypeHandle type2 = T.Random(); local
641 TypeHandle type2 = T.Random(); local
667 TypeHandle type2 = T.Random(); local
825 TypeHandle type2 = *it2; local
836 TypeHandle type2 = *it2; local
988 TypeHandle type2 = *it2; local
1000 TypeHandle type2 = *it2; local
1010 TypeHandle type2 = *it2; local
1148 TypeHandle type2 = *it2; local
1157 TypeHandle type2 = *it2; local
1167 TypeHandle type2 = *it2; local
1177 TypeHandle type2 = *it2; local
1315 TypeHandle type2 = *it2; local
1327 TypeHandle type2 = *it2; local
1342 TypeHandle type2 = *it2; local
1353 TypeHandle type2 = *it2; local
1366 TypeHandle type2 = *it2; local
1380 TypeHandle type2 = *it2; local
1393 TypeHandle type2 = *it2; local
1543 TypeHandle type2 = *it2; local
1556 TypeHandle type2 = *it2; local
1571 TypeHandle type2 = *it2; local
1582 TypeHandle type2 = *it2; local
1595 TypeHandle type2 = *it2; local
1609 TypeHandle type2 = *it2; local
1623 TypeHandle type2 = *it2; local
1736 TypeHandle type2 = *it2; local
1756 TypeHandle type2 = *it2; local
1775 TypeHandle2 type2 = T2.template Convert<Type>(type1); local
1785 TypeHandle type2 = *it2; local
    [all...]
  /external/javassist/src/main/javassist/compiler/
TypeChecker.java 498 int type2 = exprType; local
502 insertCast(expr, type1, type2);
535 private void insertCast(BinExpr expr, int type1, int type2)
538 if (CodeGen.rightIsStrong(type1, type2))
539 expr.setLeft(new CastExpr(type2, 0, expr.oprand1()));
    [all...]
CodeGen.java 1003 int type2 = exprType; local
1005 if (type2 == INT || type2 == SHORT
1006 || type2 == CHAR || type2 == BYTE)
1011 convertOprandTypes(type1, type2, expr);
1031 int type2 = exprType; local
1033 boolean type2Is2 = is2word(type2, dim2);
1035 = (type2 == CLASS && jvmJavaLangString.equals(className));
1038 convToString(type2, dim2)
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/
svga_tgsi_insn.c 404 SVGA3dShaderRegType type0, type1, type2; local
410 type2 = SVGA3dShaderGetRegType( src2.base.value );
415 (type2 == SVGA3DREG_CONST && src0.base.num != src2.base.num)))
419 (type2 == SVGA3DREG_CONST && src1.base.num != src2.base.num))
425 (type2 == SVGA3DREG_INPUT && src0.base.num != src2.base.num)))
429 (type2 == SVGA3DREG_INPUT && src1.base.num != src2.base.num))
475 SVGA3dShaderRegType type0, type1, type2, type3; local
481 type2 = SVGA3dShaderGetRegType( src2.base.value );
492 (type2 == SVGA3DREG_CONST && src0.base.num != src2.base.num)))
496 (type2 == SVGA3DREG_CONST && src3.base.num != src2.base.num)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
ContactEditorFragment.java 1497 final AccountType type2 = accountTypes.getAccountType(accountType2, dataSet2); local
    [all...]

Completed in 1824 milliseconds

1 2 3