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

1 2 3 4

  /external/tpm2/
VerifySignature.c 29 TPMI_RH_HIERARCHY hierarchy; local
48 hierarchy = ObjectGetHierarchy(in->keyHandle);
49 if( hierarchy == TPM_RH_NULL
52 // produce empty ticket if hierarchy is TPM_RH_NULL or nameAlg is
55 out->validation.hierarchy = TPM_RH_NULL;
63 TicketComputeVerified(hierarchy, &in->digest, &name, &out->validation);
Load.c 40 TPMI_RH_HIERARCHY hierarchy; local
90 // Get hierarchy of parent
91 hierarchy = ObjectGetHierarchy(in->parentHandle);
96 result = ObjectLoad(hierarchy, &in->inPublic.t.publicArea, &sensitive,
Hash_fp.h 15 TPMI_RH_HIERARCHY hierarchy; member in struct:__anon40407
LoadExternal_fp.h 15 TPMI_RH_HIERARCHY hierarchy; member in struct:__anon40415
SequenceComplete_fp.h 15 TPMI_RH_HIERARCHY hierarchy; member in struct:__anon40488
  /external/smali/baksmali/src/main/java/org/jf/baksmali/
ListCommand.java 60 List<JCommander> hierarchy = getCommandHierarchy(); local
62 ExtendedCommands.addExtendedCommand(jc, new ListStringsCommand(hierarchy));
63 ExtendedCommands.addExtendedCommand(jc, new ListMethodsCommand(hierarchy));
64 ExtendedCommands.addExtendedCommand(jc, new ListFieldsCommand(hierarchy));
65 ExtendedCommands.addExtendedCommand(jc, new ListTypesCommand(hierarchy));
66 ExtendedCommands.addExtendedCommand(jc, new ListClassesCommand(hierarchy));
67 ExtendedCommands.addExtendedCommand(jc, new ListDexCommand(hierarchy));
68 ExtendedCommands.addExtendedCommand(jc, new ListVtablesCommand(hierarchy));
69 ExtendedCommands.addExtendedCommand(jc, new ListFieldOffsetsCommand(hierarchy));
70 ExtendedCommands.addExtendedCommand(jc, new ListDependenciesCommand(hierarchy));
    [all...]
  /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
  /frameworks/support/samples/Support4Demos/src/main/java/com/example/android/supportv4/media/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 43 // extract the browsing hierarchy from the media ID:
44 String[] hierarchy = MediaIDHelper.getHierarchy(mediaId); local
46 if (hierarchy.length != 2) {
51 String categoryType = hierarchy[0];
52 String categoryValue = hierarchy[1];
68 return convertToQueue(tracks, hierarchy[0], hierarchy[1]);
110 // We create a hierarchy-aware mediaID, so we know what the queue is about by looking
  /packages/apps/Music/src/com/android/music/utils/
MediaIDHelper.java 98 String[] hierarchy = getHierarchy(mediaID); local
99 if (hierarchy != null && hierarchy.length == 2) {
100 return hierarchy[1];
110 String[] hierarchy = getHierarchy(mediaID); local
112 return createMediaID(null, hierarchy);
114 if (hierarchy == null || hierarchy.length <= 1) {
117 String[] parentHierarchy = Arrays.copyOf(hierarchy, hierarchy.length - 1)
    [all...]
QueueHelper.java 43 // extract the browsing hierarchy from the media ID:
44 String[] hierarchy = MediaIDHelper.getHierarchy(mediaId); local
46 if (hierarchy.length != 2) {
51 String categoryType = hierarchy[0];
52 String categoryValue = hierarchy[1];
77 return convertToQueue(tracks, hierarchy[0], hierarchy[1]);
114 // 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/ltp/testcases/kernel/controllers/cpuset/cpuset_lib/
cpuinfo.c 294 int hierarchy; local
304 &hierarchy, &num_cgroups, &enabled);
  /external/tensorflow/tensorflow/java/src/test/java/org/tensorflow/op/
ScopeTest.java 141 public void hierarchy() { method in class:ScopeTest
  /frameworks/support/navigation/common/src/main/java/androidx/navigation/
NavDestination.java 249 * Build an array containing the hierarchy from the root down to this destination.
255 ArrayDeque<NavDestination> hierarchy = new ArrayDeque<>(); local
260 hierarchy.addFirst(current);
264 int[] deepLinkIds = new int[hierarchy.size()];
266 for (NavDestination destination : hierarchy) {
  /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);
  /external/guava/guava-tests/test/com/google/common/eventbus/
EventBusTest.java 203 Set<Class<?>> hierarchy = bus.flattenHierarchy(fixture.getClass()); local
205 assertEquals(5, hierarchy.size());
206 assertContains(Object.class, hierarchy);
207 assertContains(HierarchyFixtureInterface.class, hierarchy);
208 assertContains(HierarchyFixtureSubinterface.class, hierarchy);
209 assertContains(HierarchyFixtureParent.class, hierarchy);
210 assertContains(HierarchyFixture.class, hierarchy);
374 // Exists only for hierarchy mapping; no members.
379 // Exists only for hierarchy mapping; no members.
384 // Exists only for hierarchy mapping; no members
    [all...]
  /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 &&
  /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)) {
  /external/guice/core/src/com/google/inject/spi/
InjectionPoint.java 533 /** Position in type hierarchy. */
542 * Uses our position in the type hierarchy to perform optimizations.
576 // If we're at the top of the hierarchy, there's nothing to override.
661 List<TypeLiteral<?>> hierarchy = hierarchyFor(type); local
662 int topIndex = hierarchy.size() - 1;
665 // Knowing the position within the hierarchy helps us make optimizations.
673 TypeLiteral<?> current = hierarchy.get(i);
713 * Creating the override index lazily means that the first type in the hierarchy
801 List<TypeLiteral<?>> hierarchy = new ArrayList<TypeLiteral<?>>(); local
804 hierarchy.add(current)
    [all...]
  /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...]
  /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...]

Completed in 1058 milliseconds

1 2 3 4