/frameworks/base/api/ |
6.xml | 37 <field name="ACCESS_CHECKIN_PROPERTIES" 47 </field> 48 <field name="ACCESS_COARSE_LOCATION" 58 </field> 59 <field name="ACCESS_FINE_LOCATION" 69 </field> 70 <field name="ACCESS_LOCATION_EXTRA_COMMANDS" 80 </field> 81 <field name="ACCESS_MOCK_LOCATION" 91 </field> [all...] |
5.xml | 37 <field name="ACCESS_CHECKIN_PROPERTIES" 47 </field> 48 <field name="ACCESS_COARSE_LOCATION" 58 </field> 59 <field name="ACCESS_FINE_LOCATION" 69 </field> 70 <field name="ACCESS_LOCATION_EXTRA_COMMANDS" 80 </field> 81 <field name="ACCESS_MOCK_LOCATION" 91 </field> [all...] |
4.xml | 37 <field name="ACCESS_CHECKIN_PROPERTIES" 47 </field> 48 <field name="ACCESS_COARSE_LOCATION" 58 </field> 59 <field name="ACCESS_FINE_LOCATION" 69 </field> 70 <field name="ACCESS_LOCATION_EXTRA_COMMANDS" 80 </field> 81 <field name="ACCESS_MOCK_LOCATION" 91 </field> [all...] |
3.xml | 37 <field name="ACCESS_CHECKIN_PROPERTIES" 47 </field> 48 <field name="ACCESS_COARSE_LOCATION" 58 </field> 59 <field name="ACCESS_FINE_LOCATION" 69 </field> 70 <field name="ACCESS_LOCATION_EXTRA_COMMANDS" 80 </field> 81 <field name="ACCESS_MOCK_LOCATION" 91 </field> [all...] |
2.xml | 37 <field name="ACCESS_CHECKIN_PROPERTIES" 47 </field> 48 <field name="ACCESS_COARSE_LOCATION" 58 </field> 59 <field name="ACCESS_FINE_LOCATION" 69 </field> 70 <field name="ACCESS_LOCATION_EXTRA_COMMANDS" 80 </field> 81 <field name="ACCESS_MOCK_LOCATION" 91 </field> [all...] |
1.xml | 37 <field name="ACCESS_CHECKIN_PROPERTIES" 47 </field> 48 <field name="ACCESS_COARSE_LOCATION" 58 </field> 59 <field name="ACCESS_FINE_LOCATION" 69 </field> 70 <field name="ACCESS_LOCATION_EXTRA_COMMANDS" 80 </field> 81 <field name="ACCESS_MOCK_LOCATION" 91 </field> [all...] |
/dalvik/libcore/text/src/test/java/org/apache/harmony/text/tests/java/text/ |
Support_DecimalFormat.java | 48 t_FormatWithField(0, format, number, text, NumberFormat.Field.CURRENCY, 50 t_FormatWithField(1, format, number, text, NumberFormat.Field.INTEGER, 53 NumberFormat.Field.GROUPING_SEPARATOR, 3, 4); 55 NumberFormat.Field.DECIMAL_SEPARATOR, 11, 12); 56 t_FormatWithField(4, format, number, text, NumberFormat.Field.FRACTION, 60 t_FormatWithField(5, format, number, text, NumberFormat.Field.SIGN, 0, 62 t_FormatWithField(6, format, number, text, NumberFormat.Field.EXPONENT, 65 NumberFormat.Field.EXPONENT_SIGN, 0, 0); 67 NumberFormat.Field.EXPONENT_SYMBOL, 0, 0); 68 t_FormatWithField(9, format, number, text, NumberFormat.Field.PERCENT [all...] |
Support_MessageFormat.java | 23 import java.text.MessageFormat.Field; 58 // test with MessageFormat.Field.ARGUMENT 59 t_FormatWithField(1, format, objects, null, Field.ARGUMENT, 3, 15); 62 t_FormatWithField(2, format, objects, null, DateFormat.Field.AM_PM, 0, 65 NumberFormat.Field.FRACTION, 0, 0); 68 t_FormatWithField(4, format, objects, null, DateFormat.Field.ERA, 0, 0); 70 NumberFormat.Field.EXPONENT_SIGN, 0, 0); 88 v.add(new FieldContainer(3, 6, Field.ARGUMENT, 4)); 89 v.add(new FieldContainer(3, 6, DateFormat.Field.MONTH)); 90 v.add(new FieldContainer(6, 7, Field.ARGUMENT, 4)) [all...] |
/dalvik/libcore/suncompat/src/main/java/sun/misc/ |
Unsafe.java | 23 import java.lang.reflect.Field; 65 * the memory used to store the indicated instance field. 67 * @param field non-null; the field in question, which must be an 68 * instance field 69 * @return the offset to the field 71 public long objectFieldOffset(Field field) { 72 if (Modifier.isStatic(field.getModifiers())) { 77 return objectFieldOffset0(field); [all...] |
/external/icu4c/test/intltest/ |
fldset.cpp | 23 FieldsSet::FieldsSet(UDebugEnumType field) { 24 construct(field, udbg_enumCount(field)); 35 void FieldsSet::construct(UDebugEnumType field, int32_t fieldCount) { 36 fEnum = field; 61 str = str + UnicodeString("some field") + "=" + myVal+" not " + theirVal+", "; 113 int32_t field = handleParseName(inheritFrom, kv[0], kv[1], status); local 121 it_errln(UnicodeString("Parse Failed: Field ") + UnicodeString(ch) + UnicodeString(", err ") + UnicodeString(u_errorName(status))); 125 if(field != -1) { 126 handleParseValue(inheritFrom, field, kv[1], status) [all...] |
/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/webkit/WebCore/manual-tests/ |
password-ctrl-click-lose-focus.html | 7 <p><b>BUG ID:</b> <a href="rdar://problem/4604703">4604703</a> REGRESSION (NativeTextField): Focus is not removed from password field after I ctrl-click into a different field</p> 10 <br>1) Make a selection in the password field 11 <br>2) Ctrl-click in the text field</p> 14 After ctrl-clicking in the text field, the password field should lose focus, and its selection should be cleared. 18 After ctrl-clicking in the text field, if the password field still has a selection, the test has failed. 20 <br><input type="text" value="Ctrl-Click in this field. Test passes if the password field no longer has a selection." size=100></input [all...] |
/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...] |
/dalvik/libcore/text/src/main/java/java/text/ |
FieldPosition.java | 23 * the start and end indices of the field in the formatted string. 27 * one of the fields of type {@code Format.Field}. 29 * If more than one field information is needed, the method 36 private Format.Field myAttribute; 39 * Constructs a new {@code FieldPosition} for the specified field. 41 * @param field 42 * the field to identify. 44 public FieldPosition(int field) { 45 myField = field; 49 * Constructs a new {@code FieldPosition} for the specified {@code Field} [all...] |
/external/webkit/WebCore/manual-tests/resources/ |
liveconnect-security-exception-popup.html | 22 "applet.field returned " + 23 document.getElementById('applet').field 26 document.getElementById('applet').field += 1; 28 "incremented applet.field by 1" 32 "applet.field returned " + 33 document.getElementById('applet').field
|
/dalvik/libcore/luni/src/main/java/java/io/ |
EmulatedFields.java | 32 // A slot is a field plus its value 35 // Field descriptor 36 ObjectStreamField field; field in class:EmulatedFields.ObjectSlot 38 // Actual value this emulated field holds 41 // If this field has a default value (true) or something has been 46 * Returns the descriptor for this emulated field. 48 * @return the field descriptor 51 return field; 55 * Returns the value held by this emulated field. 57 * @return the field valu 173 ObjectStreamField field = declaredFields[i]; local [all...] |
/dalvik/libcore/support/src/test/java/tests/support/ |
Support_MessageFormat.java | 23 import java.text.MessageFormat.Field; 57 // test with MessageFormat.Field.ARGUMENT 58 t_FormatWithField(1, format, objects, null, Field.ARGUMENT, 3, 15); 61 t_FormatWithField(2, format, objects, null, DateFormat.Field.AM_PM, 0, 64 NumberFormat.Field.FRACTION, 0, 0); 67 t_FormatWithField(4, format, objects, null, DateFormat.Field.ERA, 0, 0); 69 NumberFormat.Field.EXPONENT_SIGN, 0, 0); 87 v.add(new FieldContainer(3, 6, Field.ARGUMENT, 4)); 88 v.add(new FieldContainer(3, 6, DateFormat.Field.MONTH)); 89 v.add(new FieldContainer(6, 7, Field.ARGUMENT, 4)) [all...] |
/dalvik/tests/004-annotations/src/android/test/anno/ |
AnnoSimpleField.java | 5 @Target(ElementType.FIELD)
|
/dalvik/vm/mterp/armv5te/ |
OP_SGET.S | 2 %verify "field already resolved" 3 %verify "field not yet resolved" 4 %verify "field cannot be resolved" 10 /* op vAA, field@BBBB */ 12 FETCH(r1, 1) @ r1<- field ref BBBB 17 .L${opcode}_finish: @ field ptr in r0 18 ldr r1, [r0, #offStaticField_value] @ r1<- field value 27 * Continuation if the field has not yet been resolved. 28 * r1: BBBB field ref
|
OP_SPUT.S | 2 %verify "field already resolved" 3 %verify "field not yet resolved" 4 %verify "field cannot be resolved" 10 /* op vAA, field@BBBB */ 12 FETCH(r1, 1) @ r1<- field ref BBBB 17 .L${opcode}_finish: @ field ptr in r0 22 str r1, [r0, #offStaticField_value] @ field<- vAA 27 * Continuation if the field has not yet been resolved. 28 * r1: BBBB field ref
|
OP_SPUT_WIDE.S | 2 %verify "field already resolved" 3 %verify "field not yet resolved" 4 %verify "field cannot be resolved" 8 /* sput-wide vAA, field@BBBB */ 10 FETCH(r1, 1) @ r1<- field ref BBBB 17 .L${opcode}_finish: @ field ptr in r0, AA in r9 21 strd r2, [r0, #offStaticField_value] @ field<- vAA/vAA+1 26 * Continuation if the field has not yet been resolved. 27 * r1: BBBB field ref
|
/dalvik/vm/mterp/c/ |
OP_THROW_VERIFICATION_ERROR.c | 4 ref = FETCH(1); /* class/field/method ref */
|
/dalvik/dx/src/com/android/dx/dex/file/ |
FieldAnnotationStruct.java | 26 * Association of a field and its annotations. 30 /** {@code non-null;} the field in question */ 31 private final CstFieldRef field; field in class:FieldAnnotationStruct 39 * @param field {@code non-null;} the field in question 42 public FieldAnnotationStruct(CstFieldRef field, 44 if (field == null) { 45 throw new NullPointerException("field == null"); 52 this.field = field; [all...] |
/external/jsr305/ri/src/main/java/javax/annotation/concurrent/ |
GuardedBy.java | 18 * The field or method to which this annotation is applied can only be accessed 22 * The argument determines which lock guards the annotated field or method: this : 23 * The string literal "this" means that this field is guarded by the class in 27 * object to which the field refers. field-name : The lock object is referenced 28 * by the (instance or static) field specified by field-name. 29 * class-name.field-name : The lock object is reference by the static field 30 * specified by class-name.field-name. method-name() : The lock object i [all...] |
/frameworks/base/docs/html/sdk/api_diff/5/ |
missingSinces.txt | 291 NO DOC BLOCK: android.provider.Contacts.SettingsColumns Field _SYNC_ACCOUNT_TYPE 292 NO DOC BLOCK: android.Manifest.permission Field ACCOUNT_MANAGER 293 NO DOC BLOCK: android.content.Context Field ACCOUNT_SERVICE 294 NO DOC BLOCK: android.R.attr Field accountPreferences 295 NO DOC BLOCK: android.R.attr Field accountType 296 NO DOC BLOCK: android.provider.Settings Field ACTION_ACCESSIBILITY_SETTINGS 297 NO DOC BLOCK: android.content.Intent Field ACTION_DOCK_EVENT 298 NO DOC BLOCK: android.view.MotionEvent Field ACTION_MASK 299 NO DOC BLOCK: android.view.MotionEvent Field ACTION_POINTER_1_DOWN 300 NO DOC BLOCK: android.view.MotionEvent Field ACTION_POINTER_1_U [all...] |