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

1 2

  /system/core/libpixelflinger/codeflinger/
mips_disassem.c 351 db_printf("%s\t%s,", bcond_name[i.IType.rt],
352 reg_name[i.IType.rs]);
359 db_printf("%s\t%s,", op_name[i.IType.op],
360 reg_name[i.IType.rs]);
365 if (i.IType.rs == 0 && i.IType.rt == 0) {
372 db_printf("%s\t%s,%s,", op_name[i.IType.op],
373 reg_name[i.IType.rs],
374 reg_name[i.IType.rt]);
376 print_addr(loc + 4 + ((short)i.IType.imm << 2))
    [all...]
mips_opcode.h 56 } IType;
88 } IType;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
LayoutContentAssist.java 47 import org.eclipse.jdt.core.IType;
183 IType type = javaProject.findType(superClasses.get(0));
184 Set<IType> elements = new HashSet<IType>();
187 IType[] allSubtypes = hierarchy.getAllSubtypes(type);
188 for (IType subType : allSubtypes) {
200 IType[] allSubtypes = hierarchy.getAllSubtypes(type);
201 for (IType subType : allSubtypes) {
209 List<IType> sorted = new ArrayList<IType>(elements)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/
AndroidJUnitPropertyTester.java 27 import org.eclipse.jdt.core.IType;
113 IType testType = null;
118 } else if (element instanceof IType) {
119 testType = (IType) element;
AndroidJUnitLaunchConfigurationTab.java 44 import org.eclipse.jdt.core.IType;
557 IType[] types = new IType[0];
589 IType type = (IType) results[0];
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/descriptors/
PostActivityCreationAction.java 25 import org.eclipse.jdt.core.IType;
52 public void processNewType(IType newType) {
PostReceiverCreationAction.java 25 import org.eclipse.jdt.core.IType;
51 public void processNewType(IType newType) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/refactorings/core/
AndroidTypeRenameParticipantTest.java 23 import org.eclipse.jdt.core.IType;
145 IType type = javaProject.findType(typeFqcn);
AndroidTypeMoveParticipantTest.java 27 import org.eclipse.jdt.core.IType;
112 IType type = javaProject.findType(typeFqcn);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
CompletionProposal.java 33 import org.eclipse.jdt.core.IType;
164 } else if (mChoice instanceof IType) {
165 IType type = (IType) mChoice;
AndroidContentAssist.java 50 import org.eclipse.jdt.core.IType;
618 } else if (choice instanceof IType) {
619 IType type = (IType) choice;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
ClientRulesEngine.java 75 import org.eclipse.jdt.core.IType;
424 IType oldFragmentType = javaProject.findType(CLASS_V4_FRAGMENT);
456 IType[] fragmentTypes = new IType[0];
457 IType[] oldFragmentTypes = new IType[0];
463 IType fragmentType = javaProject.findType(CLASS_FRAGMENT);
469 IType[] subTypes = new IType[fragmentTypes.length + oldFragmentTypes.length];
538 return ((IType) types[0]).getFullyQualifiedName()
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/descriptors/
CustomViewDescriptorService.java 59 import org.eclipse.jdt.core.IType;
182 // look for the IType object for this class
183 IType type = javaProject.findType(javaClassName);
235 // there was an error accessing any of the IType, we'll just return null;
279 IType type,
348 * {@link IType#getJavaProject()} since that will return the including
353 private static IProject getProjectDeclaringType(IType type) {
417 private ViewElementDescriptor createViewDescriptor(IType type, IProject project,
451 IType parentType = typeHierarchy.getSuperclass(type);
501 * Returns the array of {@link AttributeDescriptor} for the specified {@link IType}
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/model/
UiClassAttributeNode.java 42 import org.eclipse.jdt.core.IType;
106 private IType mReferenceType;
140 IType type = mJavaProject.findType(className);
164 IType[] supertypes = hierarchy.getAllSupertypes(type);
167 IType st = supertypes[i];
210 * @param newType the IType representing the newly created class.
212 public void processNewType(IType newType);
380 handleNewType((IType)results[0]);
418 IType result = javaProject.findType(fullClassName);
497 private void handleNewType(IType type)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
BaseProjectHelper.java 40 import org.eclipse.jdt.core.IType;
244 // look for the IType object for this class
245 IType type = javaProject.findType(javaClassName);
274 IType declaringType = type;
276 IType tmpType = declaringType.getDeclaringType();
305 IType superType = type;
367 // look for the IType matching the class name.
368 IType result = javaProject.findType(className);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/
AndroidTypeRenameParticipant.java 58 import org.eclipse.jdt.core.IType;
136 if (element instanceof IType) {
137 IType type = (IType) element;
153 IType classView = javaProject.findType(CLASS_VIEW);
267 IType styleable = javaProject.findType(rFqcn + '.' + ResourceType.STYLEABLE.getName());
AndroidTypeMoveParticipant.java 50 import org.eclipse.jdt.core.IType;
109 if (element instanceof IType) {
110 IType type = (IType) element;
RenameResourceXmlTextAction.java 41 import org.eclipse.jdt.core.IType;
129 IType type = findType(className, project);
345 private IType findType(@NonNull String className, @NonNull IProject project) {
346 IType type = null;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/
ManifestInfo.java 69 import org.eclipse.jdt.core.IType;
643 IType declaringType = method.getDeclaringType();
670 IType type = javaProject.findType(typeFqcn);
703 IType[] activityTypes = new IType[0];
704 IType activityType = javaProject.findType(CLASS_ACTIVITY);
709 for (IType type : activityTypes) {
775 IType declaringType = method.getDeclaringType();
811 IType activityType = javaProject.findType(CLASS_ACTIVITY);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.pdt/src/com/android/ide/eclipse/pdt/internal/
SourceRevealer.java 26 import org.eclipse.jdt.core.IType;
76 // look for the IType matching the class name.
77 IType result = javaProject.findType(className);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/refactorings/core/
RenameResourceParticipantTest.java 28 import org.eclipse.jdt.core.IType;
241 IType type = javaProject.findType("com.example.refactoringtest.R.layout");
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CustomViewFinder.java 41 import org.eclipse.jdt.core.IType;
249 IType viewType = javaProject.findType(className);
287 private static boolean isValidView(IType type, boolean layoutsOnly)
FragmentMenu.java 40 import org.eclipse.jdt.core.IType;
107 IType type = javaProject.findType(fqcn);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
EclipseLintClient.java 66 import org.eclipse.jdt.core.IType;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
Parameter.java 42 import org.eclipse.jdt.core.IType;
380 IType t = p.findType(fqcn);

Completed in 391 milliseconds

1 2