/openjdk7/langtools/test/tools/apt/Compile/ |
H A D | HelloAnnotation.java | 3 @Target(ElementType.ANNOTATION_TYPE) 7 Target value() default @Target(ElementType.METHOD); field in interface:HelloAnnotation
|
/openjdk7/jdk/src/share/classes/java/lang/annotation/ |
H A D | Target.java | 30 * is applicable. If a Target meta-annotation is not present on an 39 * @Target(ElementType.ANNOTATION_TYPE) 48 * @Target({}) 54 * appear more than once in a Target annotation. For example, the 57 * @Target({ElementType.FIELD, ElementType.METHOD, ElementType.FIELD}) 65 @Target(ElementType.ANNOTATION_TYPE) 66 public @interface Target { interface
|
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/signature/ |
H A D | SignatureProperty.java | 41 * Constructs{@link SignatureProperty} using specified <code>Target</code> attribute 44 * @param Target the <code>Target</code> attribute references the <code>Signature</code> element to which the property applies SignatureProperty 46 public SignatureProperty(Document doc, String Target) { argument 47 this(doc, Target, null); 51 * Constructs {@link SignatureProperty} using sepcified <code>Target</code> attribute and <code>Id</code> attribute 54 * @param Target the <code>Target</code> attribute references the <code>Signature</code> element to which the property applies 57 public SignatureProperty(Document doc, String Target, String Id) { argument 61 this.setTarget(Target); 102 setTarget(String Target) argument [all...] |
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/internalizer/ |
H A D | SCDBasedBindingSet.java | 71 final class Target { class in class:SCDBasedBindingSet 82 * Think of it as {@code List<Target>}. 84 private Target firstChild; 85 private final Target nextSibling; 102 private Target(Target parent, Element src, SCD scd) { method in class:SCDBasedBindingSet.Target 126 for( Target self=this; self!=null; self=self.nextSibling ) 166 continue; // this should be already in Target.bindings of some SpecVersion. 192 private Target topLevel; 210 Target createNewTarge [all...] |
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wscompile/ |
H A D | Options.java | 82 public enum Target { enum in class:Options 88 public boolean isLaterThan(Target t) { 93 * Parses "2.0" and "2.1" into the {@link Target} object. 97 public static Target parse(String token) { 99 return Target.V2_0; 101 return Target.V2_1; 103 return Target.V2_2; 108 * Gives the String representation of the {@link Target} 123 public static Target getDefault() { 127 public static Target getLoadedAPIVersio [all...] |
/openjdk7/jdk/test/java/nio/channels/FileChannel/ |
H A D | Transfers.java | 272 static abstract class Target { class in class:Transfers 278 Target(int size, long seed, String name) { method in class:Transfers.Target 295 extends Target 325 extends Target 421 static void testTo(long seed, FileChannel fc, int off, int len, Target tgt) 521 Target tgt;
|
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/ |
H A D | Target.java | 43 public enum Target { enum 71 private static final Context.Key<Target> targetKey = 72 new Context.Key<Target>(); 74 public static Target instance(Context context) { 75 Target instance = context.get(targetKey); 86 private static Target MIN; 87 public static Target MIN() { return MIN; } 89 private static Target MAX; 90 public static Target MAX() { return MAX; } 92 private static Map<String,Target> ta 107 private Target(String name, int majorVersion, int minorVersion) { method in class:Target [all...] |
/openjdk7/jdk/src/share/classes/sun/rmi/transport/ |
H A D | Target.java | 44 public final class Target { class 78 * Construct a Target for a remote object "impl" with 87 public Target(Remote impl, Dispatcher disp, Remote stub, ObjID id, method in class:Target 257 * A Target must be pinned while its refSet is not empty. It may
|
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/ |
H A D | cmslut.c | 1702 // Target: LabK, 3 values of Lab plus destination K which is fixed 1706 cmsBool CMSEXPORT cmsPipelineEvalReverseFloat(cmsFloat32Number Target[], argument 1741 x[3] = Target[3]; 1753 error = EuclideanDistance(fx, Target, 3); 1786 tmp2.n[0] = fx[0] - Target[0]; 1787 tmp2.n[1] = fx[1] - Target[1]; 1788 tmp2.n[2] = fx[2] - Target[2];
|