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

1 2

  /external/doclava/res/assets/templates/
hierarchy.cs 4 .jd-hierarchy-spacer {
7 .jd-hierarchy-data {
28 <?cs loop:x=#0,cl.indent,#1 ?><td class="jd-hierarchy-spacer"></td><?cs /loop ?>
29 <td class="jd-hierarchy-data" colspan="<?cs var:cl.colspan ?>">
36 <td class="jd-hierarchy-data">
53 <th class="jd-hierarchy-data" colspan="<?cs var:colspan ?>">Class</th>
54 <th class="jd-hierarchy-data">Interfaces</th>
diff.cs 50 #hierarchy {
61 var table = $("#hierarchy")[0];
88 var table = $("#hierarchy")[0];
124 <table border="0" id="hierarchy">
  /external/guava/guava-tests/test/com/google/common/eventbus/
EventBusTest.java 150 Set<Class<?>> hierarchy = bus.flattenHierarchy(fixture.getClass()); local
152 assertEquals(5, hierarchy.size());
153 assertContains(Object.class, hierarchy);
154 assertContains(HierarchyFixtureInterface.class, hierarchy);
155 assertContains(HierarchyFixtureSubinterface.class, hierarchy);
156 assertContains(HierarchyFixtureParent.class, hierarchy);
157 assertContains(HierarchyFixture.class, hierarchy);
237 // Exists only for hierarchy mapping; no members.
242 // Exists only for hierarchy mapping; no members.
247 // Exists only for hierarchy mapping; no members
    [all...]
  /external/skia/gm/tests/
run.sh 104 $GM_BINARY --hierarchy --match dashing2 $CONFIGS \
108 $GM_BINARY --hierarchy --match dashing2 $CONFIGS \
116 $GM_BINARY --hierarchy --match dashing3 $CONFIGS \
134 gm_test "--hierarchy --match dashing2 $CONFIGS -r $GM_INPUTS/identical-bytes" "$GM_OUTPUTS/compared-against-identical-bytes"
137 gm_test "--hierarchy --match dashing2 $CONFIGS -r $GM_INPUTS/identical-pixels" "$GM_OUTPUTS/compared-against-identical-pixels"
140 gm_test "--hierarchy --match dashing2 $CONFIGS -r $GM_INPUTS/different-pixels" "$GM_OUTPUTS/compared-against-different-pixels"
143 gm_test "--hierarchy --match dashing2 $CONFIGS -r $GM_INPUTS/empty-dir" "$GM_OUTPUTS/compared-against-empty-dir"
148 gm_test "--hierarchy --match dashing2 $CONFIGS" "$GM_OUTPUTS/no-readpath"
  /external/libsepol/
Android.mk 20 src/hierarchy.c \
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LintOverlay.java 70 ViewHierarchy hierarchy = mCanvas.getViewHierarchy(); local
88 CanvasViewInfo vi = hierarchy.findViewInfoFor(node);
  /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);
  /external/doclava/src/com/google/doclava/
FederationTagger.java 118 for (ClassInfo superclass : federatedClass.hierarchy()) {
SinceTagger.java 219 for (ClassInfo superclass : spec.hierarchy()) {
  /system/media/camera/docs/
camera_metadata_tags.mako 33 * Top level hierarchy definitions for camera metadata. *_INFO sections are for
48 * Hierarchy positions in enum space. All vendor extension tags must be
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
ClientRulesEngine.java 459 ITypeHierarchy hierarchy =
461 oldFragmentTypes = hierarchy.getAllSubtypes(oldFragmentType);
465 ITypeHierarchy hierarchy =
467 fragmentTypes = hierarchy.getAllSubtypes(fragmentType);
561 ITypeHierarchy hierarchy =
563 viewTypes = hierarchy.getAllSubtypes(fragmentType);
  /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/project/
BaseProjectHelper.java 296 // get the type hierarchy
297 ITypeHierarchy hierarchy = type.newSupertypeHierarchy(new NullProgressMonitor()); local
304 while ((superType = hierarchy.getSuperclass(superType)) != null &&
  /external/checkpolicy/
checkmodule.c 27 #include <sepol/policydb/hierarchy.h>
  /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);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/
ManifestInfo.java 566 ITypeHierarchy hierarchy = local
568 activityTypes = hierarchy.getAllSubtypes(activityType);
  /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/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
BaseTreeAdaptor.as 124 // TODO: make tree run time exceptions hierarchy
125 throw new Error("more than one node as root (TODO: make exception hierarchy)");
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
EclipseLintClient.java 956 ITypeHierarchy hierarchy = type.newSupertypeHierarchy(new NullProgressMonitor()); local
1005 ITypeHierarchy hierarchy = type.newSupertypeHierarchy(new NullProgressMonitor()); local
    [all...]
  /libcore/luni/src/main/java/java/io/
ObjectOutputStream.java 1039 List<ObjectStreamClass> hierarchy = classDesc.getHierarchy(); local
    [all...]
  /external/libsepol/src/
hierarchy.c 34 #include <sepol/policydb/hierarchy.h>
57 * parent based on the based hierarchy.
235 "hierarchy violation between types %s and %s : %s { %s }",
398 /* The role hierarchy is defined as: a child role cannot have more types than it's parent.
417 ERR(a->handle, "Role hierarchy violation, %s exceeds %s",
424 /* The user hierarchy is defined as: a child user cannot have a role that
443 ERR(a->handle, "User hierarchy violation, %s exceeds %s",
487 ERR(handle, "%d total errors found during hierarchy check",
  /ndk/build/core/
build-local.mk 108 # path of the current directory the climb back the hierarchy until we find
  /external/webkit/Tools/Scripts/
old-run-webkit-tests     [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...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
streams.rb 56 Stream hierarchy is implemented in antlr3/stream.rb, which is loaded by default
    [all...]

Completed in 831 milliseconds

1 2