/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/ |
SimpleNode.java | 3 package org.apache.james.mime4j.field.address.parser; 5 public class SimpleNode extends org.apache.james.mime4j.field.address.parser.BaseNode implements Node {
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/contenttype/parser/ |
ContentTypeParserConstants.java | 17 package org.apache.james.mime4j.field.contenttype.parser;
|
ParseException.java | 17 package org.apache.james.mime4j.field.contenttype.parser;
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/datetime/parser/ |
ParseException.java | 17 package org.apache.james.mime4j.field.datetime.parser;
|
/art/test/201-built-in-exception-detail-messages/src/ |
Main.java | 18 import java.lang.reflect.Field; 308 // Read field. 314 assertEquals("Attempt to read from field 'int A.i' on a null object reference", ex.getMessage()); 317 // Write field. 323 assertEquals("Attempt to write to field 'int A.i' on a null object reference", ex.getMessage()); 355 // Can't assign Integer to a String field. 357 Field field = A.class.getField("b"); local 358 field.set(new A(), 5); 361 assertEquals("field A.b has type java.lang.String, got java.lang.Integer", expected.getMessage()) 366 Field field = A.class.getField("i"); local 375 Field field = A.class.getField("i"); local [all...] |
/external/guava/guava/src/com/google/common/collect/ |
Serialization.java | 22 import java.lang.reflect.Field; 199 Field field = clazz.getDeclaredField(fieldName); local 200 return new FieldSetter<T>(field); 208 private final Field field; field in class:Serialization.FieldSetter 210 private FieldSetter(Field field) { 211 this.field = field; [all...] |
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/ |
DumpFields.java | 40 import org.jf.dexlib2.iface.Field; 121 String field = fields.keyAt(i) + ":" + fields.valueAt(i).getType() + " " + fields.valueAt(i).getName() + "\n"; local 122 outStream.write(field.getBytes());
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/refactorings/core/ |
RenameResourceParticipantTest.java | 237 // Test refactoring initiated on a Java field rename 248 IField field = type.getField("activity_main"); local 249 assertNotNull(field); 250 assertTrue(field.exists()); 254 field,
|
/art/test/046-reflect/src/ |
Main.java | 51 void printFieldInfo(Field field) { 52 System.out.println("Field name is " + field.getName()); 54 + field.getDeclaringClass().getName()); 55 System.out.println(" Field type is " + field.getType().getName()); 57 + Integer.toHexString(field.getModifiers())); 65 Field field = null local 107 Field field = target.getField("innerField"); local 124 Field field = null; local 450 Field field = niuClass.getField("staticField"); local 491 Field field; local [all...] |
/external/protobuf/java/src/main/java/com/google/protobuf/ |
TextFormat.java | 113 for (final Map.Entry<FieldDescriptor, Object> field : 115 printField(field.getKey(), field.getValue(), generator); 120 public static void printField(final FieldDescriptor field, 125 printField(field, value, generator); 128 public static String printFieldToString(final FieldDescriptor field, 132 printField(field, value, text); 141 private static void printField(final FieldDescriptor field, 145 if (field.isRepeated()) { 146 // Repeated field. Print each element 254 final UnknownFieldSet.Field field = entry.getValue(); local 867 FieldDescriptor field; local [all...] |
/external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/ |
AbstractMessage.java | 55 for (final FieldDescriptor field : getDescriptorForType().getFields()) { 56 if (field.isRequired()) { 57 if (!hasField(field)) { 66 final FieldDescriptor field = entry.getKey(); local 67 if (field.getJavaType() == FieldDescriptor.JavaType.MESSAGE) { 68 if (field.isRepeated()) { 115 final FieldDescriptor field = entry.getKey(); local 117 if (isMessageSet && field.isExtension() && 118 field.getType() == FieldDescriptor.Type.MESSAGE && 119 !field.isRepeated()) 148 final FieldDescriptor field = entry.getKey(); local 200 FieldDescriptor field = entry.getKey(); local 308 final FieldDescriptor field = entry.getKey(); local 456 final FieldDescriptor field; local 688 FieldDescriptor field = extension.descriptor; local 715 FieldDescriptor field = extension.descriptor; local 797 final FieldDescriptor field = entry.getKey(); local [all...] |
/art/compiler/driver/ |
compiler_driver_test.cc | 141 mirror::ArtField* field = dex_cache->GetResolvedField(i); local 142 EXPECT_TRUE(field != NULL) << "field_idx=" << i
|
/art/runtime/mirror/ |
object.cc | 206 ArtField* field = fields->Get(i); local 207 if (field->GetOffset().Int32Value() == field_offset.Int32Value()) { 209 FieldHelper fh(hs.NewHandle(field)); 225 ArtField* field = fields->Get(i); local 226 if (field->GetOffset().Int32Value() == field_offset.Int32Value()) { 228 FieldHelper fh(hs.NewHandle(field)); 235 LOG(FATAL) << "Failed to find field for assignment to " << reinterpret_cast<void*>(this)
|
/art/test/005-annotations/src/android/test/anno/ |
TestAnnotations.java | 5 import java.lang.reflect.Field; 60 for (Field f: clazz.getDeclaredFields()) { 62 System.out.println(" annotations on FIELD " + f + ":"); 103 Field field; local 107 field = TestAnnotations.class.getDeclaredField("thing1"); 108 annotations = field.getAnnotations(); 109 System.out.println(field + ": " + annotations[0].toString()); 111 field = TestAnnotations.class.getDeclaredField("thing2"); 112 annotations = field.getAnnotations() [all...] |
/art/test/067-preemptive-unpark/src/ |
Main.java | 3 import java.lang.reflect.Field; 50 Field field = Unsafe.class.getDeclaredField("THE_ONE"); local 51 field.setAccessible(true); 53 UNSAFE = (Unsafe) field.get(null);
|
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
EncodedField.java | 29 * Representation of a field of a class, of any sort. 33 /** {@code non-null;} constant for the field */ 34 private final CstFieldRef field; field in class:EncodedField 39 * @param field {@code non-null;} constant for the field 42 public EncodedField(CstFieldRef field, int accessFlags) { 45 if (field == null) { 46 throw new NullPointerException("field == null"); 54 this.field = field; [all...] |
/dalvik/dx/src/com/android/dx/dex/file/ |
EncodedField.java | 28 * Representation of a field of a class, of any sort. 32 /** {@code non-null;} constant for the field */ 33 private final CstFieldRef field; field in class:EncodedField 38 * @param field {@code non-null;} constant for the field 41 public EncodedField(CstFieldRef field, int accessFlags) { 44 if (field == null) { 45 throw new NullPointerException("field == null"); 53 this.field = field; [all...] |
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/ |
Field.java | 30 * This class provides description of class field. 33 public final class Field { 50 public Field() { 59 * Constructor initializing all members of the Field instance. 62 * field id 66 * field name 68 * signature signature of the field class 70 * field modifiers 72 public Field(long id, long classID, String name, String signature, 85 * signature of the field clas 292 Field field = (Field) obj; local [all...] |
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/ |
AndroidProtocolHandler.java | 67 java.lang.reflect.Field field = d.getField(assetName); local 68 int id = field.getInt(null);
|
/external/chromium_org/components/autofill/core/browser/ |
autofill_download_unittest.cc | 138 FormFieldData field; local 139 field.label = ASCIIToUTF16("username"); 140 field.name = ASCIIToUTF16("username"); 141 field.form_control_type = "text"; 142 form.fields.push_back(field); 144 field.label = ASCIIToUTF16("First Name"); 145 field.name = ASCIIToUTF16("firstname"); 146 field.form_control_type = "text"; 147 form.fields.push_back(field); 149 field.label = ASCIIToUTF16("Last Name") 349 FormFieldData field; local [all...] |
autofill_merge_unittest.cc | 150 // Deserializes |str| into a field type. 200 // Add a field to the current profile. 208 FormFieldData field; local 209 field.label = field_type; 210 field.name = field_type; 211 field.value = value; 212 field.form_control_type = "text"; 213 form.fields.push_back(field); 222 // Set the heuristic type for each field, which is currently serialized 223 // into the field's name 224 AutofillField* field = local [all...] |
form_structure_unittest.cc | 69 FormFieldData field; local 70 field.label = ASCIIToUTF16("username"); 71 field.name = ASCIIToUTF16("username"); 72 field.form_control_type = "text"; 73 form.fields.push_back(field); 75 field.label = ASCIIToUTF16("password"); 76 field.name = ASCIIToUTF16("password"); 77 field.form_control_type = "password"; 78 form.fields.push_back(field); 80 field.label = base::string16() 102 FormFieldData field; local 157 FormFieldData field; local 232 FormFieldData field; local 317 FormFieldData field; local 386 FormFieldData field; local 427 FormFieldData field; local 471 FormFieldData field; local 519 FormFieldData field; local 583 FormFieldData field; local 627 FormFieldData field; local 657 FormFieldData field; local 694 FormFieldData field; local 772 FormFieldData field; local 835 FormFieldData field; local 901 FormFieldData field; local 956 FormFieldData field; local 1019 FormFieldData field; local 1060 FormFieldData field; local 1104 FormFieldData field; local 1147 FormFieldData field; local 1181 FormFieldData field; local 1216 FormFieldData field; local 1288 FormFieldData field; local 1336 FormFieldData field; local 1385 FormFieldData field; local 1440 FormFieldData field; local 1578 FormFieldData field; local 1736 FormFieldData field; local 1860 FormFieldData field; local 2114 FormFieldData field; local 2220 FormFieldData field; local 2291 FormFieldData field; local 2322 FormFieldData field; local 2364 FormFieldData field; local [all...] |
/external/chromium_org/content/common/gpu/media/ |
h264_dpb.h | 19 // A picture (a frame or a field) in the H.264 spec sense. 22 enum Field { 52 Field field; member in struct:content::H264Picture
|
/external/chromium_org/sync/syncable/ |
entry_kernel.cc | 62 // field keys/values in the kernel to the given dictionary. 73 T field = static_cast<T>(i); local 74 const std::string& key = enum_key_fn(field); 75 V* value = enum_value_fn(kernel.ref(field)); 87 ProtoField field = static_cast<ProtoField>(i); local 88 const std::string& key = GetProtoFieldString(field); 92 const sync_pb::EncryptedData& encrypted = kernel.ref(field).encrypted(); 94 kernel.ref(field).has_encrypted() && 100 value = EntitySpecificsToValue(kernel.ref(field));
|
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/ |
DateTimeFieldElements.cpp | 52 DEFINE_STATIC_LOCAL(AtomicString, ampmPsuedoId, ("-webkit-datetime-edit-ampm-field", AtomicString::ConstructFromLiteral)); 53 RefPtrWillBeRawPtr<DateTimeAMPMFieldElement> field = adoptRefWillBeNoop(new DateTimeAMPMFieldElement(document, fieldOwner, ampmLabels)); local 54 field->initialize(ampmPsuedoId, queryString(WebLocalizedString::AXAMPMFieldText)); 55 return field.release(); 88 DEFINE_STATIC_LOCAL(AtomicString, dayPsuedoId, ("-webkit-datetime-edit-day-field", AtomicString::ConstructFromLiteral)); 89 RefPtrWillBeRawPtr<DateTimeDayFieldElement> field = adoptRefWillBeNoop(new DateTimeDayFieldElement(document, fieldOwner, placeholder.isEmpty() ? "--" : placeholder, range)); local 90 field->initialize(dayPsuedoId, queryString(WebLocalizedString::AXDayOfMonthFieldText)); 91 return field.release(); 129 DEFINE_STATIC_LOCAL(AtomicString, hourPsuedoId, ("-webkit-datetime-edit-hour-field", AtomicString::ConstructFromLiteral)); 175 RefPtrWillBeRawPtr<DateTimeHour11FieldElement> field = adoptRefWillBeNoop(new DateTimeHour11FieldElement(document, fieldOwner, range, step)) local 223 RefPtrWillBeRawPtr<DateTimeHour12FieldElement> field = adoptRefWillBeNoop(new DateTimeHour12FieldElement(document, fieldOwner, range, step)); local 251 RefPtrWillBeRawPtr<DateTimeHour23FieldElement> field = adoptRefWillBeNoop(new DateTimeHour23FieldElement(document, fieldOwner, hour23Range, step)); local 293 RefPtrWillBeRawPtr<DateTimeHour24FieldElement> field = adoptRefWillBeNoop(new DateTimeHour24FieldElement(document, fieldOwner, range, step)); local 332 RefPtrWillBeRawPtr<DateTimeMillisecondFieldElement> field = adoptRefWillBeNoop(new DateTimeMillisecondFieldElement(document, fieldOwner, range, step)); local 373 RefPtrWillBeRawPtr<DateTimeMinuteFieldElement> field = adoptRefWillBeNoop(new DateTimeMinuteFieldElement(document, fieldOwner, range, step)); local 414 RefPtrWillBeRawPtr<DateTimeMonthFieldElement> field = adoptRefWillBeNoop(new DateTimeMonthFieldElement(document, fieldOwner, placeholder.isEmpty() ? "--" : placeholder, range)); local 455 RefPtrWillBeRawPtr<DateTimeSecondFieldElement> field = adoptRefWillBeNoop(new DateTimeSecondFieldElement(document, fieldOwner, range, step)); local 496 RefPtrWillBeRawPtr<DateTimeSymbolicMonthFieldElement> field = adoptRefWillBeNoop(new DateTimeSymbolicMonthFieldElement(document, fieldOwner, labels, minimum, maximum)); local 540 RefPtrWillBeRawPtr<DateTimeWeekFieldElement> field = adoptRefWillBeNoop(new DateTimeWeekFieldElement(document, fieldOwner, range)); local 585 RefPtrWillBeRawPtr<DateTimeYearFieldElement> field = adoptRefWillBeNoop(new DateTimeYearFieldElement(document, fieldOwner, parameters)); local [all...] |