HomeSort by relevance Sort by last modified time
    Searched refs:field (Results 26 - 50 of 1106) sorted by null

12 3 4 5 6 7 8 91011>>

  /dalvik/dx/src/com/android/dx/cf/iface/
StdFieldList.java 23 * an array of {@link Field} objects and can be made immutable.
36 public Field get(int n) {
37 return (Field) get0(n);
41 * Sets the field at the given index.
43 * @param n {@code >= 0, < size();} which field
44 * @param field {@code null-ok;} the field object
46 public void set(int n, Field field) {
47 set0(n, field);
    [all...]
  /external/proguard/src/proguard/classfile/attribute/
ConstantValueAttribute.java 58 public void accept(Clazz clazz, Field field, AttributeVisitor attributeVisitor)
60 attributeVisitor.visitConstantValueAttribute(clazz, field, this);
  /external/webkit/WebCore/manual-tests/resources/
TestApplet.class 
  /packages/apps/Email/src/com/android/email/mail/internet/
MimeHeader.java 56 protected ArrayList<Field> mFields = new ArrayList<Field>();
71 mFields.add(new Field(name, value));
84 for (Field field : mFields) {
85 if (field.name.equalsIgnoreCase(name)) {
86 values.add(field.value);
96 ArrayList<Field> removeFields = new ArrayList<Field>();
97 for (Field field : mFields)
    [all...]
  /external/bluetooth/glib/glib/
grel.h 57 * g_relation_index() indexes relation FIELD with the provided
64 * g_relation_delete() deletes all relations with KEY in FIELD
72 gint field,
79 gint field);
82 gint field);
85 gint field);
93 gint field);
  /dalvik/libcore/luni/src/main/java/java/util/
Calendar.java 52 * A {@code Calendar} object can produce all the time field values needed
59 * and {@code YEAR}. See individual field documentation and subclass
64 * range of field values than it produces. For example, a lenient
68 * out-of-range field settings. When calendars recompute field values for return
103 * Gregorian calendar, the default for a field is the same as that of the start
111 * most recently set single field, will be used.
154 * <strong>Field manipulation methods</strong>
161 * <strong>{@code set(f, value)}</strong> changes field {@code f}
163 * indicate that field {@code f} has been changed. Although fiel
    [all...]
  /external/icu4c/i18n/unicode/
calendar.h 83 * A <code>Calendar</code> object can produce all the time field values
97 * the Gregorian calendar, the default for a field is the same as that of the
105 * most recently set single field, will be used.
152 * <code>Calendar</code> provides an API for field "rolling", where fields
159 * adding the specified (signed) amount of time to a particular time field.
169 * Field IDs for date and time. Used to specify date/time fields. ERA is calendar
207 * who create locale resources for the field of first-day-of-week should be aware of
393 * to previous calls to set time field values. The time specified is non-local UTC
398 * previously set in the time field is invalid or restricted by
412 * set in the time field is invalid or restricted b
    [all...]
  /hardware/broadcom/wlan/bcm4329/src/include/
bcmdefs.h 94 #define GFIELD(val, field) \
95 (((val) >> field ## _S) & field ## _M)
96 #define SFIELD(val, field, bits) \
97 (((val) & (~(field ## _M << field ## _S))) | \
98 ((unsigned)(bits) << field ## _S))
  /external/icu4c/test/intltest/
normconf.cpp 284 * there are five columns, corresponding to field[0]..field[4].
292 * @param field the 5 columns
296 UBool NormalizerConformanceTest::checkConformance(const UnicodeString* field,
308 Normalizer::normalize(field[i], UNORM_NFC, options, out, status);
309 pass &= assertEqual("C", field[i], out, field[1], "c2!=C(c", fieldNum);
310 iterativeNorm(field[i], UNORM_NFC, options, out, +1);
311 pass &= assertEqual("C(+1)", field[i], out, field[1], "c2!=C(c", fieldNum)
    [all...]
fldset.h 70 * @param inheritFrom if a field's value is given as 0-length, such as NAME1 in "NAME1=,NAME2=VALUE2",
80 * @param inheritFrom if a field's value is given as 0-length, such as NAME1 in "NAME1=,NAME2=VALUE2",
92 * This function is called when parsing a field name, such as "MONTH" in "MONTH=4".
99 * @param name the field name (key side)
102 * @return field number, or negative if field should be skipped.
110 * @param field which field is being parsed
115 virtual void handleParseValue(const FieldsSet* inheritFrom, int32_t field, const UnicodeString& substr, UErrorCode& status);
120 * Implementations of this function should call set(field,...) on successful parse
    [all...]
  /external/webkit/WebKitTools/DumpRenderTree/mac/PerlSupport/
DumpRenderTreeSupportTiger.pm 27 my ($self,$field) = @_;
28 my $member_func = "swig_${field}_get";
33 my ($self,$field,$newval) = @_;
34 my $member_func = "swig_${field}_set";
  /packages/apps/Email/src/org/apache/james/mime4j/field/
DelegatingFieldParser.java 16 package org.apache.james.mime4j.field;
27 * Sets the parser used for the field named <code>name</code>.
28 * @param name the name of the field
36 final FieldParser field = (FieldParser) parsers.get(name.toLowerCase()); local
37 if(field==null) {
40 return field;
43 public Field parse(final String name, final String body, final String raw) {
  /packages/apps/Email/src/org/apache/james/mime4j/field/address/
Address.java 20 package org.apache.james.mime4j.field.address;
  /cts/tools/signature-tools/test/signature/converter/
ConvertAnnotationTest.java 66 IAnnotationField field = annotationFields.iterator().next(); local
67 assertEquals("name", field.getName());
68 assertEquals("String", ((IClassReference)field.getType()).getClassDefinition().getName());
69 assertEquals("nobody", field.getDefaultValue());
70 Set<IAnnotation> annotations = field.getAnnotations();
168 IAnnotationField field = annotationFields.iterator().next(); local
169 assertEquals("value", field.getName());
171 assertTrue(field.getType() instanceof IArrayType);
172 assertTrue(field.getDefaultValue() instanceof Object[]);
173 assertSame(field.getDefaultValue().getClass(), Object[].class);
192 IAnnotationField field = annotationFields.iterator().next(); local
253 IAnnotationField field = annotationFields.iterator().next(); local
277 IAnnotationField field = annotationFields.iterator().next(); local
317 IAnnotationField field = annotationFields.iterator().next(); local
354 IAnnotationField field = annotationFields.iterator().next(); local
383 IAnnotationField field = annotationFields.iterator().next(); local
434 IAnnotationField field = annotationFields.iterator().next(); local
466 IAnnotationField field = annotationFields.iterator().next(); local
493 IAnnotationField field = annotationFields.iterator().next(); local
533 IAnnotationField field = annotationFields.iterator().next(); local
557 IAnnotationField field = annotationFields.iterator().next(); local
580 IAnnotationField field = annotationFields.iterator().next(); local
613 IAnnotationField field = annotationFields.iterator().next(); local
635 IAnnotationField field = annotationFields.iterator().next(); local
660 IAnnotationField field = annotationFields.iterator().next(); local
682 IAnnotationField field = annotationFields.iterator().next(); local
    [all...]
  /dalvik/vm/mterp/armv6t2/
OP_IGET_QUICK.S 6 FETCH(r1, 1) @ r1<- field byte offset
11 ldr r0, [r3, r1] @ r0<- obj.field (always 32 bits)
OP_IGET_WIDE_QUICK.S 5 FETCH(r1, 1) @ r1<- field byte offset
10 ldrd r0, [r3, r1] @ r0<- obj.field (64 bits, aligned)
  /external/emma/core/java12/com/vladium/jcd/cls/
IFieldCollection.java 32 * @param offset field offset [must be in [0, size()) range; input not checked]
47 * @param name field name [null or empty will result in no matches]
48 * @return array of field offsets in no particular order [never null; could be empty]
71 * that all data referenced in 'field' will eventually appear in the
74 * @param field new field descriptor [may not be null]
75 * @return new field's offset
77 int add (Field_info field);
81 * checks are made. No field type compatibility checks are made. It is
83 * in 'field' will eventually appear in the constant pool
    [all...]
  /external/proguard/src/proguard/optimize/info/
FieldOptimizationInfo.java 29 * a field.
44 public FieldOptimizationInfo(Clazz clazz, Field field)
47 isRead = (field.getAccessFlags() & ClassConstants.INTERNAL_ACC_VOLATILE) != 0;
48 value = initialValue(field.getDescriptor(clazz));
148 public static void setFieldOptimizationInfo(Clazz clazz, Field field)
150 MethodLinker.lastMember(field).setVisitorInfo(new FieldOptimizationInfo(clazz, field));
154 public static FieldOptimizationInfo getFieldOptimizationInfo(Field field
    [all...]
  /frameworks/base/test-runner/src/android/test/
InstrumentationUtils.java 19 import java.lang.reflect.Field;
40 Integer field = (Integer)cls.getDeclaredField(identifier).get(cls); local
41 id = field.intValue();
  /external/junit/src/junit/swingui/
CounterPanel.java 62 JTextField field= new JTextField("0", width); local
64 field.setMinimumSize(field.getPreferredSize());
65 field.setMaximumSize(field.getPreferredSize());
66 field.setHorizontalAlignment(SwingConstants.LEFT);
67 field.setFont(StatusLine.BOLD_FONT);
68 field.setEditable(false);
69 field.setBorder(BorderFactory.createEmptyBorder());
70 return field;
    [all...]
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/hal/TnetwServices/
tnetwCommon.h 48 #define IS_MASK_ON( field, bitmask ) ( (bitmask) == ( (field) & (bitmask) ) )
49 #define IS_MASK_OFF( field, bitmask ) ( ~(bitmask) == ( (field) | ~(bitmask) ) )
51 #define IS_ANY_BIT_ON( field, bitmask ) ( (field) & (bitmask) )
52 #define ARE_ALL_BITS_ON( field, bitmask ) IS_MASK_ON( field, bitmask )
54 #define MASK_BITS_ON( field, bitmask ) ( (field) |= (bitmask) )
    [all...]
  /dalvik/libcore/text/src/test/java/org/apache/harmony/text/tests/java/text/
MessageFormatFieldTest.java 34 @TestTargetClass(MessageFormat.Field.class)
37 * @tests java.text.MessageFormat$Field#Field(java.lang.String)
42 method = "Field",
48 MyMessageFormat field = new MyMessageFormat(name); local
49 assertEquals("field has wrong name", name, field.getName());
51 field = new MyMessageFormat(null);
52 assertEquals("field has wrong name", null, field.getName())
77 MyMessageFormat field; local
    [all...]
  /dalvik/tests/064-field-access/src/
Main.java 19 import java.lang.reflect.Field;
22 * Test field access through reflection.
41 * Get the field specified by "field" from "obj".
44 * field.getByte().
51 public Object getValue(Field field, Object obj, char type,
58 result = new Boolean(field.getBoolean(obj));
61 result = new Byte(field.getByte(obj));
64 result = new Short(field.getShort(obj))
    [all...]
  /dalvik/vm/native/
java_lang_reflect_Field.c 18 * java.lang.reflect.Field
25 * Get the address of a field from an object. This can be used with "get"
28 * "declaringClass" is the class in which the field was declared. For an
29 * instance field, "obj" is the object that holds the field data; for a
30 * static field its value is ignored.
32 * "If the underlying field is static, the class that declared the
33 * field is initialized if it has not already been initialized."
40 * attempting to set a protected field from an unrelated class causes an
42 * the field causes an IllegalArgumentException. If code does both at th
62 Field* field; local
151 Field* field; local
372 Field* field; local
393 Field* field; local
    [all...]
  /external/icu4c/tools/ctestfw/
udbgutil.cpp 26 7. Define the field names, in order.
27 " static const Field names_UShoeSize[] = {
41 10. Find the function _udbg_enumFields and add the field macro:
49 struct Field {
61 * Define another field name. Used in an array of Field s
64 * @see Field
78 static const Field names_UCalendarDateFields[] =
107 static const Field names_UCalendarMonths[] =
128 static const Field names_UDateFormatStyle[] =
    [all...]

Completed in 241 milliseconds

12 3 4 5 6 7 8 91011>>