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

1 2 3

  /external/dexmaker/src/dx/java/com/android/dx/cf/code/
Merger.java 39 Type type1 = ft1.getType(); local
42 if (type1 == type2) {
43 return type1;
44 } else if (type1.isReference() && type2.isReference()) {
45 if (type1 == Type.KNOWN_NULL) {
56 return type1;
57 } else if (type1.isArray() && type2.isArray()) {
59 mergeType(type1.getComponentType(),
77 } else if (type1.isIntlike() && type2.isIntlike()) {
  /frameworks/base/cmds/interrupter/
interrupter.h 29 #define CALL_FUNCTION_1(sym, ret, type1) \
30 ret (*real_##sym)(type1) = NULL; \
31 ret sym(type1 arg1) { \
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)
    [all...]
  /external/clang/test/SemaCXX/
constexpr-many-arguments.cpp 4 struct type1 struct
6 constexpr type1(int a0) : my_data{a0} {} function in struct:type1
12 typedef type1 T;
20 type1 my_data[23];
qualified-id-lookup.cpp 65 typedef struct N::f1 type1; typedef in typeref:struct:f1
  /dalvik/dx/src/com/android/dx/cf/code/
Merger.java 157 Type type1 = ft1.getType(); local
160 if (type1 == type2) {
161 return type1;
162 } else if (type1.isReference() && type2.isReference()) {
163 if (type1 == Type.KNOWN_NULL) {
174 return type1;
175 } else if (type1.isArray() && type2.isArray()) {
177 mergeType(type1.getComponentType(),
195 } else if (type1.isIntlike() && type2.isIntlike()) {
Machine.java 87 * @param type1 {@code non-null;} type of the first argument
90 public void popArgs(Frame frame, Type type1, Type type2);
100 * @param type1 {@code non-null;} type of the first 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) {
173 if (! Merger.isPossiblyAssignableFrom(type1, args[0])) {
174 throw new SimException("expected type " + type1.toHuman() +
185 public final void popArgs(Frame frame, Type type1, Type type2,
192 if (! Merger.isPossiblyAssignableFrom(type1, args[0])) {
193 throw new SimException("expected type " + type1.toHuman() +
  /external/javassist/src/main/javassist/compiler/ast/
IntConst.java 54 int type1 = this.type; local
57 if (type1 == TokenId.LongConstant || type2 == TokenId.LongConstant)
59 else if (type1 == TokenId.CharConstant
95 newType = type1;
99 newType = type1;
103 newType = type1;
  /external/clang/test/SemaTemplate/
canonical-expr-type.cpp 46 typedef T __attribute__((ext_vector_type(N))) type1; typedef in struct:X2
50 void f0(type1); // expected-note{{previous}}
instantiate-exception-spec-cxx11.cpp 74 base(const typename T::type1 &);
79 struct type1 { struct in namespace:core_19754_example
90 typedef type1<types> type1; typedef in struct:core_19754_example::types
  /external/clang/test/Sema/
dllimport-dllexport.c 32 typedef int __declspec(dllexport) type1; // expected-warning{{'dllexport' attribute only applies to variables and functions}} typedef
  /external/freetype/src/psaux/
t1cmap.c 29 /***** TYPE1 STANDARD (AND EXPERT) ENCODING CMAPS *****/
42 cmap->num_glyphs = face->type1.num_glyphs;
43 cmap->glyph_names = (const char* const*)face->type1.glyph_names;
168 /***** TYPE1 CUSTOM ENCODING CMAP *****/
178 T1_Encoding encoding = &face->type1.encoding;
261 /***** TYPE1 SYNTHETIC UNICODE ENCODING CMAP *****/
270 return face->type1.glyph_names[idx];
284 face->type1.num_glyphs,
  /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...]
  /external/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...]
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
StdTypeList.java 180 * @param type1 {@code non-null;} the second element
183 public static StdTypeList make(Type type0, Type type1) {
186 result.set(1, type1);
194 * @param type1 {@code non-null;} the second element
198 public static StdTypeList make(Type type0, Type type1, Type type2) {
201 result.set(1, type1);
210 * @param type1 {@code non-null;} the second element
215 public static StdTypeList make(Type type0, Type type1, Type type2,
219 result.set(1, type1);
  /dalvik/dx/src/com/android/dx/rop/type/
StdTypeList.java 180 * @param type1 {@code non-null;} the second element
183 public static StdTypeList make(Type type0, Type type1) {
186 result.set(1, type1);
194 * @param type1 {@code non-null;} the second element
198 public static StdTypeList make(Type type0, Type type1, Type type2) {
201 result.set(1, type1);
210 * @param type1 {@code non-null;} the second element
215 public static StdTypeList make(Type type0, Type type1, Type type2,
219 result.set(1, type1);
  /external/dexmaker/src/dx/java/com/android/dx/rop/type/
StdTypeList.java 180 * @param type1 {@code non-null;} the second element
183 public static StdTypeList make(Type type0, Type type1) {
186 result.set(1, type1);
194 * @param type1 {@code non-null;} the second element
198 public static StdTypeList make(Type type0, Type type1, Type type2) {
201 result.set(1, type1);
210 * @param type1 {@code non-null;} the second element
215 public static StdTypeList make(Type type0, Type type1, Type type2,
219 result.set(1, type1);
  /external/javassist/src/main/javassist/compiler/
TypeChecker.java 284 int type1 = exprType; local
290 if (CodeGen.rightIsStrong(type1, exprType))
292 else if (CodeGen.rightIsStrong(exprType, type1)) {
293 expr.setElse(new CastExpr(type1, 0, expr.elseExpr()));
294 exprType = type1;
327 int type1 = exprType; local
330 computeBinExprType(expr, token, type1);
367 int type1 = exprType; local
375 if ((type1 == CLASS && dim1 == 0 && jvmJavaLangString.equals(cname))
387 computeBinExprType(expr, '+', type1);
515 int type1 = exprType; local
    [all...]
CodeGen.java 968 int type1 = exprType; local
976 && (type1 == CLASS || exprType == CLASS))
977 atStringConcatExpr(expr, type1, dim1, cname1);
979 atArithBinExpr(expr, token, k, type1);
998 int index, int type1) throws CompileError
1007 exprType = type1;
1011 convertOprandTypes(type1, type2, expr);
1018 exprType = INT; // type1 may be BYTE, ...
1028 private void atStringConcatExpr(Expr expr, int type1, int dim1,
1040 if (is2word(type1, dim1))
1101 int type1 = compileOprands(bexpr); local
1167 int type1 = exprType; local
    [all...]
  /external/v8/src/
preparser.h 185 bool HasConflict(int type1, int type2) { return (type1 & type2) != 0; }
186 bool IsDataDataConflict(int type1, int type2) {
187 return ((type1 & type2) & kValueFlag) != 0;
189 bool IsDataAccessorConflict(int type1, int type2) {
190 return ((type1 ^ type2) & kValueFlag) != 0;
192 bool IsAccessorAccessorConflict(int type1, int type2) {
193 return ((type1 | type2) & kValueFlag) == 0;
  /external/clang/test/CodeGenCXX/
type_visibility.cpp 123 namespace type1 { namespace
  /cts/tests/tests/content/src/android/content/cts/
ContentResolverTest.java 155 String type1 = mContentResolver.getType(REMOTE_TABLE1_URI); local
158 assertTrue(type1.startsWith(ContentResolver.CURSOR_DIR_BASE_TYPE, 0));
169 String type1 = mContentResolver.getType(REMOTE_TABLE1_URI); local
170 assertTrue(type1.startsWith(ContentResolver.CURSOR_DIR_BASE_TYPE, 0));
176 type1 = mContentResolver.getType(REMOTE_TABLE1_URI);
177 assertTrue(type1.startsWith(ContentResolver.CURSOR_DIR_BASE_TYPE, 0));
182 type1 = mContentResolver.getType(REMOTE_TABLE1_URI);
183 assertTrue(type1.startsWith(ContentResolver.CURSOR_DIR_BASE_TYPE, 0));
212 String type1 = mContentResolver.getType(REMOTE_TABLE1_URI); local
213 assertTrue(type1.startsWith(ContentResolver.CURSOR_DIR_BASE_TYPE, 0))
249 String type1 = mContentResolver.getType(TABLE1_URI); local
271 String type1 = mContentResolver.getType(REMOTE_TABLE1_URI); local
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/
ImplicitTest.java 188 * TYPE1 = [1] IMPLICIT OCTET STRING
189 * TYPE2 = [2] IMPLICIT TYPE1
192 ASN1Implicit type1 = new ASN1Implicit(1, ASN1OctetString.getInstance()); local
194 ASN1Implicit type2 = new ASN1Implicit(2, type1);
  /external/chromium/chrome/browser/sessions/
session_restore_uitest.cc 323 Browser::Type type1, type2; local
324 ASSERT_TRUE(browser_proxy1->GetType(&type1));
329 if (type1 == Browser::TYPE_NORMAL) {
332 EXPECT_EQ(type1, Browser::TYPE_POPUP);
  /external/freetype/include/freetype/internal/
t1types.h 5 /* Basic Type1/Type2 type definitions and interface (specification */
39 /*** REQUIRED TYPE1/TYPE2 TABLES DEFINITIONS ***/
201 T1_FontRec type1; member in struct:T1_FaceRec_

Completed in 2825 milliseconds

1 2 3