/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/format/ |
D | GLDataTypeSpec.java | 19 import com.android.ide.eclipse.gltrace.GLProtoBuf.GLMessage.DataType.Type; 23 private final Type mType; 35 private Type getDataType(String type) { in getDataType() 42 return Type.BOOL; in getDataType() 44 return Type.ENUM; in getDataType() 46 return Type.FLOAT; in getDataType() 48 return Type.VOID; in getDataType() 50 return Type.CHAR; in getDataType() 56 return Type.INT; in getDataType() 60 public Type getDataType() { in getDataType()
|
D | GLMessageFormatter.java | 22 import com.android.ide.eclipse.gltrace.GLProtoBuf.GLMessage.DataType.Type; 51 if (apiSpec.getReturnValue().getDataType() == Type.VOID) { in formatReturnValue() 74 if (argSpec.getDataType() == Type.VOID && !argSpec.isPointer()) { in formatArgs() 117 private String formatPointer(DataType var, Type typeSpec) { in formatPointer() 163 private boolean isEnumTypeWithIntData(DataType var, Type typeSpec) { in isEnumTypeWithIntData() 164 return var.getType() == Type.INT && typeSpec == Type.ENUM; in isEnumTypeWithIntData()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/ |
D | TypedVariable.java | 8 public enum Type { enum in TypedVariable 13 public static Type get(String name) { in get() 22 for (Type s : Type.values()) { in get() 33 Type type = Type.get(attributes.getValue(TemplateHandler.ATTR_TYPE)); in parseGlobal()
|
D | Parameter.java | 62 enum Type { enum in Parameter 69 public static Type get(String name) { in get() 71 return Type.valueOf(name.toUpperCase(Locale.US)); in get() 75 for (Type s : Type.values()) { in get() 160 public final Type type; 226 type = Type.get(typeName); in Parameter() 250 if (initial != null && !initial.isEmpty() && type == Type.BOOLEAN) { in Parameter() 259 @NonNull Type type, in Parameter()
|
D | NewTemplatePage.java | 36 import com.android.ide.eclipse.adt.internal.wizards.templates.Parameter.Type; 234 Parameter.Type type = parameter.type; in onEnter() 236 if (type == Parameter.Type.SEPARATOR) { in onEnter() 612 if (parameter.type == Parameter.Type.SEPARATOR) { in validatePage() 766 if (parameter.type == Type.BOOLEAN) { in widgetSelected() 870 p.type == Parameter.Type.SEPARATOR) { in editParameter()
|
D | TemplateMetadata.java | 260 Parameter.Type.STRING, "_iconname", mIconState.outputName); //$NON-NLS-1$ in getIconState()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/exportgradle/ |
D | GradleModule.java | 36 private Type mType; 40 public static enum Type { ANDROID, JAVA }; enum in GradleModule 60 public void setType(Type type) { in setType() 64 public Type getType() { in getType()
|
D | ProjectSetupBuilder.java | 206 module.setType(GradleModule.Type.ANDROID); in processAndroidProject() 256 module.setType(GradleModule.Type.JAVA); in processJavaProject()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger.tests/src/com/android/ide/eclipse/gltrace/format/ |
D | GLAPISpecTest.java | 21 import com.android.ide.eclipse.gltrace.GLProtoBuf.GLMessage.DataType.Type; 40 assertEquals(Type.VOID, spec.getReturnValue().getDataType()); in testParser() 49 assertEquals(argSpec.getDataType(), Type.ENUM); in testParser() 54 assertEquals(argSpec.getDataType(), Type.ENUM); in testParser()
|
D | GLMessageFormatterTest.java | 25 import com.android.ide.eclipse.gltrace.GLProtoBuf.GLMessage.DataType.Type; 147 .setType(Type.CHAR) in createStringDataType() 155 .setType(Type.INT) in createIntegerDataType() 163 .setType(Type.INT) in createIntegerPointerDataType() 171 .setType(Type.ENUM) in createEnumDataType()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/ |
D | sample1a-expected-assistant2.txt | 4 Change Widget Type : Initiates the "Change Widget Type" refactoring
|
D | sample1a-expected-assistant3.txt | 4 Change Widget Type : Initiates the "Change Widget Type" refactoring
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/ |
D | ReplaceStringsVisitor.java | 36 import org.eclipse.jdt.core.dom.Type; 152 Type type = null; in examineVariableDeclaration() 449 private boolean isAndroidContext(Type type) { in isAndroidContext()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/wizards/templates/ |
D | TemplateHandlerTest.java | 370 if (parameter.type == Parameter.Type.ENUM) { in checkTemplate() 482 if (parameter.type == Parameter.Type.ENUM) { in checkProjectWithActivity() 557 if (parameter.type == Parameter.Type.SEPARATOR in checkApiTarget() 558 || parameter.type == Parameter.Type.STRING) { in checkApiTarget() 566 if (parameter.type == Parameter.Type.ENUM) { in checkApiTarget() 582 assert parameter.type == Parameter.Type.BOOLEAN; in checkApiTarget()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/ |
D | GLProtoBuf.java | 1261 public enum Type enum in GLProtoBuf.GLMessage.DataType 1277 public static Type valueOf(int value) { in valueOf() 1291 public static com.google.protobuf.Internal.EnumLiteMap<Type> 1295 private static com.google.protobuf.Internal.EnumLiteMap<Type> 1297 new com.google.protobuf.Internal.EnumLiteMap<Type>() { 1299 public Type findValueByNumber(int number) { 1300 return Type.valueOf(number) 1306 private Type(int index, int value) { in Type() method in GLProtoBuf.GLMessage.DataType.Type 1317 private com.android.ide.eclipse.gltrace.GLProtoBuf.GLMessage.DataType.Type type_; 1319 …public com.android.ide.eclipse.gltrace.GLProtoBuf.GLMessage.DataType.Type getType() { return type_… in getType() [all …]
|
/sdk/eclipse/buildConfig/ |
D | build.properties | 107 # Type of build. Used in naming the build output. Typically this value is
|
/sdk/eclipse/ |
D | changes.txt | 284 - The new "Change Widget Type" refactoring changes the type of the
|