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

1 2

  /developers/build/prebuilts/gradle/MediaBrowserService/Application/src/main/java/com/example/android/mediabrowserservice/utils/
MediaIDHelper.java 93 String[] hierarchy = getHierarchy(mediaID); local
94 if (hierarchy != null && hierarchy.length == 2) {
95 return hierarchy[1];
105 String[] hierarchy = getHierarchy(mediaID); local
107 return createMediaID(null, hierarchy);
109 if (hierarchy == null || hierarchy.length <= 1) {
112 String[] parentHierarchy = Arrays.copyOf(hierarchy, hierarchy.length-1)
    [all...]
QueueHelper.java 42 // extract the browsing hierarchy from the media ID:
43 String[] hierarchy = MediaIDHelper.getHierarchy(mediaId); local
45 if (hierarchy.length != 2) {
50 String categoryType = hierarchy[0];
51 String categoryValue = hierarchy[1];
67 return convertToQueue(tracks, hierarchy[0], hierarchy[1]);
109 // We create a hierarchy-aware mediaID, so we know what the queue is about by looking
  /developers/samples/android/media/MediaBrowserService/Application/src/main/java/com/example/android/mediabrowserservice/utils/
MediaIDHelper.java 93 String[] hierarchy = getHierarchy(mediaID); local
94 if (hierarchy != null && hierarchy.length == 2) {
95 return hierarchy[1];
105 String[] hierarchy = getHierarchy(mediaID); local
107 return createMediaID(null, hierarchy);
109 if (hierarchy == null || hierarchy.length <= 1) {
112 String[] parentHierarchy = Arrays.copyOf(hierarchy, hierarchy.length-1)
    [all...]
QueueHelper.java 42 // extract the browsing hierarchy from the media ID:
43 String[] hierarchy = MediaIDHelper.getHierarchy(mediaId); local
45 if (hierarchy.length != 2) {
50 String categoryType = hierarchy[0];
51 String categoryValue = hierarchy[1];
67 return convertToQueue(tracks, hierarchy[0], hierarchy[1]);
109 // We create a hierarchy-aware mediaID, so we know what the queue is about by looking
  /development/samples/browseable/MediaBrowserService/src/com.example.android.mediabrowserservice/utils/
MediaIDHelper.java 93 String[] hierarchy = getHierarchy(mediaID); local
94 if (hierarchy != null && hierarchy.length == 2) {
95 return hierarchy[1];
105 String[] hierarchy = getHierarchy(mediaID); local
107 return createMediaID(null, hierarchy);
109 if (hierarchy == null || hierarchy.length <= 1) {
112 String[] parentHierarchy = Arrays.copyOf(hierarchy, hierarchy.length-1)
    [all...]
QueueHelper.java 42 // extract the browsing hierarchy from the media ID:
43 String[] hierarchy = MediaIDHelper.getHierarchy(mediaId); local
45 if (hierarchy.length != 2) {
50 String categoryType = hierarchy[0];
51 String categoryValue = hierarchy[1];
67 return convertToQueue(tracks, hierarchy[0], hierarchy[1]);
109 // We create a hierarchy-aware mediaID, so we know what the queue is about by looking
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/model/
UiClassAttributeNode.java 160 // get the type hierarchy and reference type is one of the super classes.
161 ITypeHierarchy hierarchy = type.newSupertypeHierarchy( local
164 IType[] supertypes = hierarchy.getAllSupertypes(type);
706 ITypeHierarchy hierarchy = type.newTypeHierarchy(new NullProgressMonitor());
707 IType[] allSubtypes = hierarchy.getAllSubtypes(type);
  /external/guava/guava-tests/test/com/google/common/eventbus/
EventBusTest.java 202 Set<Class<?>> hierarchy = bus.flattenHierarchy(fixture.getClass()); local
204 assertEquals(5, hierarchy.size());
205 assertContains(Object.class, hierarchy);
206 assertContains(HierarchyFixtureInterface.class, hierarchy);
207 assertContains(HierarchyFixtureSubinterface.class, hierarchy);
208 assertContains(HierarchyFixtureParent.class, hierarchy);
209 assertContains(HierarchyFixture.class, hierarchy);
352 // Exists only for hierarchy mapping; no members.
357 // Exists only for hierarchy mapping; no members.
362 // Exists only for hierarchy mapping; no members
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
LayoutContentAssist.java 186 ITypeHierarchy hierarchy = type.newTypeHierarchy(new NullProgressMonitor()); local
187 IType[] allSubtypes = hierarchy.getAllSubtypes(type);
198 ITypeHierarchy hierarchy = type.newTypeHierarchy( local
200 IType[] allSubtypes = hierarchy.getAllSubtypes(type);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LintOverlay.java 69 ViewHierarchy hierarchy = mCanvas.getViewHierarchy(); local
87 CanvasViewInfo vi = hierarchy.findViewInfoFor(node);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
BaseProjectHelper.java 299 // get the type hierarchy
300 ITypeHierarchy hierarchy = type.newSupertypeHierarchy(new NullProgressMonitor()); local
307 while ((superType = hierarchy.getSuperclass(superType)) != null &&
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/CodeWarrior/
CodeWarrior_suite.py 258 """single class hierarchy - a single class hierarchy document """
288 """class hierarchy - a class hierarchy document """
591 'class_hierarchy' : 'HIER', # a class hierarchy document class in inherits:
592 'single_class_hierarchy' : '1HIR', # a single class hierarchy document class in inherits:
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/descriptors/
CustomViewDescriptorService.java 187 // get the type hierarchy
188 ITypeHierarchy hierarchy = type.newSupertypeHierarchy( local
192 hierarchy.getSuperclass(type), project, hierarchy);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/
AndroidTypeRenameParticipant.java 155 ITypeHierarchy hierarchy = type.newSupertypeHierarchy(new NullProgressMonitor()); local
156 if (hierarchy.contains(classView)) {
  /frameworks/support/design/src/android/support/design/internal/
NavigationMenuPresenter.java 164 SparseArray<Parcelable> hierarchy = new SparseArray<>(); local
165 mMenuView.saveHierarchyState(hierarchy);
166 state.putSparseParcelableArray(STATE_HIERARCHY, hierarchy);
177 SparseArray<Parcelable> hierarchy = state.getSparseParcelableArray(STATE_HIERARCHY); local
178 if (hierarchy != null) {
179 mMenuView.restoreHierarchyState(hierarchy);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/
ManifestInfo.java 706 ITypeHierarchy hierarchy = local
708 activityTypes = hierarchy.getAllSubtypes(activityType);
    [all...]
  /libcore/luni/src/main/java/java/io/
ObjectOutputStream.java 1019 List<ObjectStreamClass> hierarchy = classDesc.getHierarchy(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
NewTemplatePage.java 809 ITypeHierarchy hierarchy = activityType.newTypeHierarchy(monitor); local
    [all...]
  /prebuilts/tools/common/fest/
fest-swing-1.2.1.jar 
  /external/doclava/src/com/google/doclava/
ClassInfo.java 379 * List of all interface's classes reachable in this class's inheritance hierarchy
971 // rearrange our little inheritance hierarchy, because we need to hide classes that
2025 public Iterable<ClassInfo> hierarchy() { method in class:ClassInfo
    [all...]
  /external/slf4j/log4j-over-slf4j/compatibility/lib/
log4j-1.2.14.jar 
log4j-1.3alpha-8.jar 
  /prebuilts/sdk/current/support/design/libs/
android-support-design.jar 
  /cts/apps/CtsVerifier/libs/
opencv-android.jar 
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
sisu-guice-3.1.3-no_aop.jar 

Completed in 4499 milliseconds

1 2