HomeSort by relevance Sort by last modified time
    Searched full:typelist (Results 26 - 50 of 187) sorted by null

12 3 4 5 6 7 8

  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
TypeListItem.java 22 import com.android.dx.rop.type.TypeList;
40 private final TypeList list;
47 public TypeListItem(TypeList list) {
86 public TypeList getList() {
117 TypeList thisList = this.list;
118 TypeList otherList = ((TypeListItem) other).list;
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
ThrowingCstInsn.java 21 import com.android.dexgen.rop.type.TypeList;
30 private final TypeList catches;
43 TypeList catches, Constant cst) {
66 public TypeList getCatches() {
ThrowingInsn.java 20 import com.android.dexgen.rop.type.TypeList;
31 private final TypeList catches;
40 public static String toCatchString(TypeList catches) {
64 TypeList catches) {
86 public TypeList getCatches() {
Rop.java 21 import com.android.dexgen.rop.type.TypeList;
62 private final TypeList sources;
65 private final TypeList exceptions;
94 public Rop(int opcode, Type result, TypeList sources,
95 TypeList exceptions, int branchingness, boolean isCallLike,
141 public Rop(int opcode, Type result, TypeList sources,
142 TypeList exceptions, int branchingness, String nickname) {
159 public Rop(int opcode, Type result, TypeList sources, int branchingness,
176 public Rop(int opcode, Type result, TypeList sources, String nickname) {
194 public Rop(int opcode, Type result, TypeList sources, TypeList exceptions
    [all...]
PlainCstInsn.java 22 import com.android.dexgen.rop.type.TypeList;
51 public TypeList getCatches() {
SwitchInsn.java 21 import com.android.dexgen.rop.type.TypeList;
64 public TypeList getCatches() {
  /dalvik/dx/src/com/android/dx/rop/code/
ThrowingCstInsn.java 22 import com.android.dx.rop.type.TypeList;
31 private final TypeList catches;
44 TypeList catches, Constant cst) {
71 public TypeList getCatches() {
ThrowingInsn.java 20 import com.android.dx.rop.type.TypeList;
31 private final TypeList catches;
40 public static String toCatchString(TypeList catches) {
64 TypeList catches) {
86 public TypeList getCatches() {
Rop.java 21 import com.android.dx.rop.type.TypeList;
62 private final TypeList sources;
65 private final TypeList exceptions;
94 public Rop(int opcode, Type result, TypeList sources,
95 TypeList exceptions, int branchingness, boolean isCallLike,
141 public Rop(int opcode, Type result, TypeList sources,
142 TypeList exceptions, int branchingness, String nickname) {
159 public Rop(int opcode, Type result, TypeList sources, int branchingness,
176 public Rop(int opcode, Type result, TypeList sources, String nickname) {
194 public Rop(int opcode, Type result, TypeList sources, TypeList exceptions
    [all...]
PlainCstInsn.java 22 import com.android.dx.rop.type.TypeList;
51 public TypeList getCatches() {
SwitchInsn.java 21 import com.android.dx.rop.type.TypeList;
64 public TypeList getCatches() {
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
ThrowingCstInsn.java 22 import com.android.dx.rop.type.TypeList;
31 private final TypeList catches;
44 TypeList catches, Constant cst) {
71 public TypeList getCatches() {
ThrowingInsn.java 20 import com.android.dx.rop.type.TypeList;
31 private final TypeList catches;
40 public static String toCatchString(TypeList catches) {
64 TypeList catches) {
86 public TypeList getCatches() {
Rop.java 21 import com.android.dx.rop.type.TypeList;
62 private final TypeList sources;
65 private final TypeList exceptions;
94 public Rop(int opcode, Type result, TypeList sources,
95 TypeList exceptions, int branchingness, boolean isCallLike,
141 public Rop(int opcode, Type result, TypeList sources,
142 TypeList exceptions, int branchingness, String nickname) {
159 public Rop(int opcode, Type result, TypeList sources, int branchingness,
176 public Rop(int opcode, Type result, TypeList sources, String nickname) {
194 public Rop(int opcode, Type result, TypeList sources, TypeList exceptions
    [all...]
  /frameworks/base/services/sensorservice/
traits.h 30 struct TypeList {
36 #define TYPELIST_1(T1) TypeList<T1, NullType>
37 #define TYPELIST_2(T1, T2) TypeList<T1, TYPELIST_1(T2)>
38 #define TYPELIST_3(T1, T2, T3) TypeList<T1, TYPELIST_2(T2, T3)>
39 #define TYPELIST_4(T1, T2, T3, T4) TypeList<T1, TYPELIST_3(T2, T3, T4)>
51 struct IndexOf<TypeList<T, Tail>, T> {
56 struct IndexOf<TypeList<Head, Tail>, T> {
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
TypeList.java 22 public interface TypeList {
25 * {@code TypeList} interface itself doesn't provide any
68 public TypeList withAddedType(Type type);
StdTypeList.java 22 * Standard implementation of {@link TypeList}.
25 extends FixedSizeList implements TypeList {
227 * is a static method so as to work on arbitrary {@link TypeList}
233 public static String toHuman(TypeList list) {
254 * is a static method so as to work on arbitrary {@link TypeList}
260 public static int hashContents(TypeList list) {
273 * is a static method so as to work on arbitrary {@link TypeList}
280 public static boolean equalContents(TypeList list1, TypeList list2) {
298 * is a static method so as to work on arbitrary {@link TypeList}
    [all...]
  /dalvik/dx/src/com/android/dx/rop/type/
TypeList.java 22 public interface TypeList {
25 * {@code TypeList} interface itself doesn't provide any
68 public TypeList withAddedType(Type type);
StdTypeList.java 22 * Standard implementation of {@link TypeList}.
25 extends FixedSizeList implements TypeList {
227 * is a static method so as to work on arbitrary {@link TypeList}
233 public static String toHuman(TypeList list) {
254 * is a static method so as to work on arbitrary {@link TypeList}
260 public static int hashContents(TypeList list) {
273 * is a static method so as to work on arbitrary {@link TypeList}
280 public static boolean equalContents(TypeList list1, TypeList list2) {
298 * is a static method so as to work on arbitrary {@link TypeList}
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/rop/type/
TypeList.java 22 public interface TypeList {
25 * {@code TypeList} interface itself doesn't provide any
68 public TypeList withAddedType(Type type);
StdTypeList.java 22 * Standard implementation of {@link TypeList}.
25 extends FixedSizeList implements TypeList {
227 * is a static method so as to work on arbitrary {@link TypeList}
233 public static String toHuman(TypeList list) {
254 * is a static method so as to work on arbitrary {@link TypeList}
260 public static int hashContents(TypeList list) {
273 * is a static method so as to work on arbitrary {@link TypeList}
280 public static boolean equalContents(TypeList list1, TypeList list2) {
298 * is a static method so as to work on arbitrary {@link TypeList}
    [all...]
  /external/llvm/docs/HistoricalNotes/
2001-02-06-TypeNotationDebate.txt 12 typelist ::= typelisth | /*empty*/
14 type ::= type (typelist)
23 type ::= '{' typelist '}'
  /dalvik/dx/src/com/android/dx/merge/
IndexMap.java 119 public TypeList adjustTypeList(TypeList typeList) {
120 if (typeList == TypeList.EMPTY) {
121 return typeList;
123 short[] types = typeList.getTypes().clone();
127 return new TypeList(target, types);
  /sdk/common/src/com/android/resources/
FolderTypeRelationship.java 136 List<ResourceType> typeList = mFolderToTypeMap.get(folder);
137 if (typeList == null) {
138 typeList = new ArrayList<ResourceType>();
139 mFolderToTypeMap.put(folder, typeList);
141 if (typeList.indexOf(type) == -1) {
142 typeList.add(type);
  /dalvik/dx/src/com/android/dx/cf/code/
ConcreteMethod.java 126 LocalVariableList typeList = LocalVariableList.EMPTY;
133 typeList =
134 LocalVariableList.concat(typeList,
138 if (typeList.size() != 0) {
141 localVariables, typeList);

Completed in 1196 milliseconds

12 3 4 5 6 7 8