Searched refs:field (Results 26 - 50 of 477) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/sun/util/
H A DBuddhistCalendar.java112 * Gets the value for a given time field.
113 * @param field the given time field.
114 * @return the value for the given time field.
116 public int get(int field) argument
118 if (field == YEAR) {
119 return super.get(field) + yearOffset;
121 return super.get(field);
125 * Sets the time field with the given value.
126 * @param field th
129 set(int field, int value) argument
143 add(int field, int amount) argument
163 roll(int field, int amount) argument
176 getDisplayName(int field, int style, Locale locale) argument
194 getDisplayNames(int field, int style, Locale locale) argument
224 getDisplayNamesImpl(int field, int style, Locale locale) argument
253 getActualMaximum(int field) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/
H A DFieldWriter.java32 * The interface for writing field output.
46 * Get the field details tree header.
50 * @return content tree for the field details header
56 * Get the field documentation tree header.
58 * @param field the constructor being documented
59 * @param fieldDetailsTree the content tree representing field details
60 * @return content tree for the field documentation header
62 public Content getFieldDocTreeHeader(FieldDoc field, argument
66 * Get the signature for the given field.
68 * @param field th
71 getSignature(FieldDoc field) argument
79 addDeprecated(FieldDoc field, Content fieldDocTree) argument
87 addComments(FieldDoc field, Content fieldDocTree) argument
95 addTags(FieldDoc field, Content fieldDocTree) argument
[all...]
H A DPropertyWriter.java32 * The interface for writing field output.
46 * Get the field details tree header.
50 * @return content tree for the field details header
56 * Get the field documentation tree header.
58 * @param field the constructor being documented
59 * @param fieldDetailsTree the content tree representing field details
60 * @return content tree for the field documentation header
62 public Content getFieldDocTreeHeader(MethodDoc field, argument
66 * Get the signature for the given field.
68 * @param field th
71 getSignature(MethodDoc field) argument
79 addDeprecated(MethodDoc field, Content fieldDocTree) argument
87 addComments(MethodDoc field, Content fieldDocTree) argument
95 addTags(MethodDoc field, Content fieldDocTree) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/model/
H A DJavaStatic.java41 * Represents the value of a static field of a JavaClass
46 private JavaField field; field in class:JavaStatic
49 public JavaStatic(JavaField field, JavaThing value) { argument
50 this.field = field;
59 value = value.dereference(snapshot, field);
66 + "." + field.getName();
73 return field;
H A DJavaObjectRef.java59 public JavaThing dereference(Snapshot snapshot, JavaField field) { argument
60 return dereference(snapshot, field, true);
63 public JavaThing dereference(Snapshot snapshot, JavaField field, boolean verbose) { argument
64 if (field != null && !field.hasId()) {
65 // If this happens, we must be a field that represents an int.
77 if (field != null) {
78 msg += " for field " + field.getName()
79 + " (signature " + field
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DVarDeclarationStatement.java41 LocalMember field; field in class:VarDeclarationStatement
51 public VarDeclarationStatement(long where, LocalMember field, Expression expr) { argument
53 this.field = field;
64 if (field != null) {
65 if (ctx.getLocalClass(field.getName()) != null
66 && field.isInnerClass()) {
67 env.error(where, "local.class.redefined", field.getName());
70 ctx.declare(env, field);
71 if (field
[all...]
/openjdk7/jdk/src/share/classes/java/text/
H A DCalendarBuilder.java32 * {@code CalendarBuilder} keeps field-value pairs for setting
34 * {@link Calendar#FIELD_COUNT FIELD_COUNT}-th field for the week year
55 public static final int ISO_DAY_OF_WEEK = 1000; // pseudo field index
57 // stamp[] (lower half) and field[] (upper half) combined
58 private final int[] field; field in class:CalendarBuilder
63 field = new int[MAX_FIELD * 2];
73 field[index] = nextStamp++;
74 field[MAX_FIELD + index] = value;
82 field[MAX_FIELD + YEAR] += value;
83 field[MAX_FIEL
[all...]
H A DFieldPosition.java54 * field within the formatted output with two indices: the index
55 * of the first character of the field and the index of the last
56 * character of the field.
63 * formatted output (such as the position of a field).
76 * Input: Desired field to determine start and end offsets for.
79 int field = 0; field in class:FieldPosition
82 * Output: End offset of field in text.
83 * If the field does not occur in the text, 0 is returned.
88 * Output: Start offset of field in text.
89 * If the field doe
108 FieldPosition(int field) argument
264 matchesField(Format.Field attribute, int field) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/beans/finder/
H A DFieldFinder.java34 * to find a public field with specified name
44 * Finds public field (static or non-static)
47 * @param type the class that can have field
48 * @param name the name of field to find
49 * @return object that represents found field
50 * @throws NoSuchFieldException if field is not found
57 Field field = type.getField(name);
58 if (!Modifier.isPublic(field.getModifiers())) {
61 type = field.getDeclaringClass();
65 return field;
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A DbarrierSet.hpp71 virtual bool read_ref_needs_barrier(void* field) = 0;
72 virtual bool read_prim_needs_barrier(HeapWord* field, size_t bytes) = 0;
73 virtual bool write_ref_needs_barrier(void* field, oop new_val) = 0;
74 virtual bool write_prim_needs_barrier(HeapWord* field, size_t bytes,
81 // Invoke the barrier, if any, necessary when reading the given ref field.
82 virtual void read_ref_field(void* field) = 0;
85 // "field" of "bytes" bytes in "obj".
86 virtual void read_prim_field(HeapWord* field, size_t bytes) = 0;
89 // ref field at "offset" in "obj".
94 template <class T> inline void write_ref_field_pre(T* field, oo
97 write_ref_field_pre_work( void* field, oop new_val) argument
99 write_ref_field_pre_work( oop* field, oop new_val) argument
100 write_ref_field_pre_work(narrowOop* field, oop new_val) argument
[all...]
H A DmodRefBarrierSet.hpp52 bool read_ref_needs_barrier(void* field) { return false; } argument
53 bool read_prim_needs_barrier(HeapWord* field, size_t bytes) { return false; } argument
54 virtual bool write_ref_needs_barrier(void* field, oop new_val) = 0;
55 bool write_prim_needs_barrier(HeapWord* field, size_t bytes, argument
61 void read_ref_field(void* field) {} argument
62 void read_prim_field(HeapWord* field, size_t bytes) {} argument
64 virtual void write_ref_field_work(void* field, oop new_val) = 0;
66 void write_prim_field(HeapWord* field, size_t bytes, argument
/openjdk7/jdk/src/share/classes/sun/tools/javac/
H A DCompilerMember.java42 MemberDefinition field; field in class:CompilerMember
49 CompilerMember(MemberDefinition field, Assembler asm) { argument
50 this.field = field;
52 name = field.getName().toString();
53 sig = field.getType().getTypeSignature();
/openjdk7/jdk/test/java/util/concurrent/atomic/
H A DVMSupportsCS8.java45 Field field = klass.getDeclaredField("VM_SUPPORTS_LONG_CAS");
46 field.setAccessible(true);
47 boolean VMSupportsCS8 = field.getBoolean(null);
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DFieldObserver.java68 public void notify(FieldGen field); argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/
H A DFieldPropertySeed.java35 * {@link PropertyInfo} implementation backed by a field.
40 protected final FieldT field; field in class:FieldPropertySeed
43 FieldPropertySeed(ClassInfoImpl<TypeT,ClassDeclT,FieldT,MethodT> classInfo, FieldT field) { argument
45 this.field = field;
49 return parent.reader().getFieldAnnotation(a, field,this);
53 return parent.reader().hasFieldAnnotation(annotationType,field);
59 return parent.nav().getFieldName(field);
63 return parent.nav().getFieldType(field);
74 return parent.nav().getFieldLocation(field);
[all...]
/openjdk7/langtools/test/com/sun/javadoc/testRelativeLinks/pkg/
H A DC.java33 * Here is a relative link in a field:
34 * <a href="relative-field-link.html">relative field link</a>.
36 public C field = null; field in class:C
/openjdk7/langtools/test/com/sun/javadoc/testUseOption/pkg2/
H A DC3.java33 public C1 field = null; field in class:C3
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1SATBCardTableModRefBS.hpp56 template <class T> static void write_ref_field_pre_static(T* field, oop newVal) { argument
57 T heap_oop = oopDesc::load_heap_oop(field);
65 template <class T> inline void inline_write_ref_field_pre(T* field, oop newVal) { argument
66 write_ref_field_pre_static(field, newVal);
70 virtual void write_ref_field_pre_work(oop* field, oop new_val) { argument
71 inline_write_ref_field_pre(field, new_val);
73 virtual void write_ref_field_pre_work(narrowOop* field, oop new_val) { argument
74 inline_write_ref_field_pre(field, new_val);
76 virtual void write_ref_field_pre_work(void* field, oop new_val) { argument
107 void write_ref_field_work(void* field, oo
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DHeapGXLWriter.java49 * <li>Java primitive field - GXL attribute (type mapping below).
50 * <li>Java reference field - GXL edge from referee to referent node.
121 OopField field = (OopField) itr.next();
122 Oop ref = field.getValue(oop);
124 String name = field.getID().getName();
217 OopField field = (OopField) itr.next();
218 Oop ref = field.getValue(reflectedType);
219 String name = field.getID().getName();
227 protected void writeReferenceField(Oop oop, OopField field) argument
229 refFields.add(field);
232 writeByteField(Oop oop, ByteField field) argument
237 writeCharField(Oop oop, CharField field) argument
243 writeBooleanField(Oop oop, BooleanField field) argument
248 writeShortField(Oop oop, ShortField field) argument
253 writeIntField(Oop oop, IntField field) argument
258 writeLongField(Oop oop, LongField field) argument
263 writeFloatField(Oop oop, FloatField field) argument
268 writeDoubleField(Oop oop, DoubleField field) argument
362 writeField(Field field, String type, String kind, String value) argument
[all...]
/openjdk7/hotspot/test/compiler/7103261/
H A DTest7103261.java33 // exercise implicit null checking in the compiler for various field types
54 for (int field = 0; field < 8; field++) {
58 switch (field) {
79 for (int field = 0; field < 8; field++) {
84 switch (field) {
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/classes/
H A DStructClassFile.java79 for(Struct.Field field : struct.fields){
80 if(field.type.type64 instanceof NStruct && field.type.type32 instanceof NStruct)
81 writeStructField(field, out);
83 writeField(field, out);
87 private void writeField(final Struct.Field field, final PrintStream out){ argument
88 if(field.type.type32 instanceof NBitfield){
89 out.format("\t// Skipping bitfield '%1$s'\n", field.name);
92 String privName = field.name + "__";
93 String offsetName = field
112 writeStructField(final Struct.Field field, final PrintStream out) argument
135 getterName(Struct.Field field) argument
[all...]
/openjdk7/jdk/test/com/sun/jndi/dns/
H A DCheckAccess.java40 Field field = clazz.getField("debug");
41 if (Modifier.isPublic(field.getModifiers())) {
/openjdk7/jdk/test/com/sun/security/sasl/util/
H A DCheckAccess.java40 Field field = clazz.getDeclaredField("logger");
41 if (! Modifier.isFinal(field.getModifiers())) {
/openjdk7/jdk/src/share/classes/sun/reflect/
H A DUnsafeQualifiedFieldAccessorImpl.java48 UnsafeQualifiedFieldAccessorImpl(Field field, boolean isReadOnly) { argument
49 super(field);
H A DUnsafeQualifiedStaticFieldAccessorImpl.java41 UnsafeQualifiedStaticFieldAccessorImpl(Field field, boolean isReadOnly) { argument
42 super(field);

Completed in 114 milliseconds

1234567891011>>