/external/chromium_org/third_party/libaddressinput/chromium/cpp/src/ |
address_ui.cc | 38 int GetMessageIdForField(AddressField field, 41 switch (field) { 198 // For avoiding showing an input field twice, when the field is displayed 230 AddressField field = element_it->field; local 231 if (!element_it->IsField() || fields.find(field) != fields.end()) { 234 fields.insert(field); 240 component.field = field; [all...] |
/external/chromium_org/third_party/libaddressinput/src/cpp/src/ |
region_data_constants.cc | 1417 AddressField field = LookupKey::kHierarchy[depth]; local [all...] |
/external/chromium_org/third_party/protobuf/src/google/protobuf/ |
reflection_ops.cc | 67 const FieldDescriptor* field = fields[i]; local 69 if (field->is_repeated()) { 70 int count = from_reflection->FieldSize(from, field); 72 switch (field->cpp_type()) { 75 to_reflection->Add##METHOD(to, field, \ 76 from_reflection->GetRepeated##METHOD(from, field, j)); \ 91 to_reflection->AddMessage(to, field)->MergeFrom( 92 from_reflection->GetRepeatedMessage(from, field, j)); 97 switch (field->cpp_type()) { 100 to_reflection->Set##METHOD(to, field, \ 156 const FieldDescriptor* field = fields[i]; local 187 const FieldDescriptor* field = fields[i]; local 242 const FieldDescriptor* field = fields[i]; local [all...] |
/external/clang/test/CXX/class.access/class.access.base/ |
p5.cpp | 76 // Note that 'field' is indeed a private member of X but that access 87 int field; // expected-note {{member is declared here}} member in class:test4::X 94 p->field = 0; // expected-error {{cannot cast 'test4::Z' to its protected base class 'test4::X'}} expected-error {{'field' is a private member of 'test4::X'}}
|
/external/dexmaker/src/dx/java/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/mockito/src/org/mockito/internal/util/reflection/ |
BeanPropertySetter.java | 7 import java.lang.reflect.Field;
21 private final Field field;
field in class:BeanPropertySetter 26 * @param propertyField The field that should be accessed with the setter
29 public BeanPropertySetter(final Object target, final Field propertyField, boolean reportNoSetterFound) {
30 this.field = propertyField;
40 public BeanPropertySetter(final Object target, final Field propertyField) {
56 writeMethod = target.getClass().getMethod(setterName(field.getName()), field.getType());
64 throw new RuntimeException("Access not authorized on field '" + field + "' of object '" + target + "' with value: '" + value + "'", e); [all...] |
InstanceField.java | 10 import java.lang.reflect.Field; 13 * Represents an accessible instance field. 15 * Contains the instance reference on which the field can be read adn write. 18 private final Field field; field in class:InstanceField 25 * @param field The field that should be accessed, note that no checks are performed to ensure 26 * the field belong to this instance class. 27 * @param instance The instance from which the field shall be accessed. 29 public InstanceField(Field field, Object instance) [all...] |
LenientCopyTool.java | 7 import java.lang.reflect.Field;
31 Field[] fields = classFrom.getDeclaredFields();
35 Field field = fields[i];
local 36 if (Modifier.isStatic(field.getModifiers())) {
41 accessibilityChanger.enableAccess(field);
42 fieldCopier.copyValue(from, mock, field);
44 //Ignore - be lenient - if some field cannot be copied then let's be it
46 accessibilityChanger.safelyDisableAccess(field);
|
/external/protobuf/src/google/protobuf/ |
reflection_ops.cc | 63 const FieldDescriptor* field = fields[i]; local 65 if (field->is_repeated()) { 66 int count = from_reflection->FieldSize(from, field); 68 switch (field->cpp_type()) { 71 to_reflection->Add##METHOD(to, field, \ 72 from_reflection->GetRepeated##METHOD(from, field, j)); \ 87 to_reflection->AddMessage(to, field)->MergeFrom( 88 from_reflection->GetRepeatedMessage(from, field, j)); 93 switch (field->cpp_type()) { 96 to_reflection->Set##METHOD(to, field, \ 152 const FieldDescriptor* field = fields[i]; local 182 const FieldDescriptor* field = fields[i]; local 237 const FieldDescriptor* field = fields[i]; local [all...] |
/frameworks/base/core/jni/ |
android_os_UEventObserver.cpp | 51 const char* field = buffer; local 54 if (strstr(field, match.string())) { 58 field += strlen(field) + 1; 59 } while (field != end);
|
/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 170 ObjectStreamField field = declaredFields[i]; local [all...] |
ObjectInputStream.java | 23 import java.lang.reflect.Field; 129 * Gets the ObjectStreamClass that describes a field. 131 * @return the descriptor class for a serialized field. 136 * Indicates if the field identified by {@code name} is defaulted. This 140 * the name of the field to check. 141 * @return {@code true} if the field is defaulted, {@code false} 144 * if {@code name} does not identify a serializable field. 153 * Gets the value of the boolean field identified by {@code name} from 154 * the persistent field. 157 * the name of the field to get 1069 Field field = classDesc.checkAndGetReflectionField(fieldDesc); local [all...] |
/libcore/luni/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 * <p>If more than one field position is needed, the method 34 private int field; field in class:FieldPosition 37 private Format.Field attribute; 40 * Constructs a new {@code FieldPosition} for the given field id. 42 public FieldPosition(int field) { 43 this.field = field; 47 * Constructs a new {@code FieldPosition} for the given {@code Field} attribute [all...] |
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/ |
AbstractContentHandler.java | 79 * @see org.apache.james.mime4j.ContentHandler#field(java.lang.String) 81 public void field(String fieldData) { method in class:AbstractContentHandler
|
ContentHandler.java | 41 * field(...) 42 * field(...) 49 * field(...) 50 * field(...) 57 * field(...) 58 * field(...) 108 * Called for each field of a header. 110 * @param fieldData the raw contents of the field 111 * (<code>Field-Name: field value</code>). The value will not be 114 void field(String fieldData); method in interface:ContentHandler [all...] |
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/ |
Mailbox.java | 20 package org.apache.james.mime4j.field.address;
|
NamedMailbox.java | 20 package org.apache.james.mime4j.field.address;
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/ |
Token.java | 17 package org.apache.james.mime4j.field.address.parser; 47 * token manager has not read tokens beyond this one, this field is 50 * this field. 55 * This field is used to access special tokens that occur prior to this 57 * If there are no such special tokens, this field is set to null. 58 * When there are more than one such special token, this field refers 60 * previous special token through its specialToken field, and so on 61 * until the first special token (whose specialToken field is null). 64 * is no such token, this field is null.
|
TokenMgrError.java | 17 package org.apache.james.mime4j.field.address.parser;
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/contenttype/parser/ |
Token.java | 17 package org.apache.james.mime4j.field.contenttype.parser; 47 * token manager has not read tokens beyond this one, this field is 50 * this field. 55 * This field is used to access special tokens that occur prior to this 57 * If there are no such special tokens, this field is set to null. 58 * When there are more than one such special token, this field refers 60 * previous special token through its specialToken field, and so on 61 * until the first special token (whose specialToken field is null). 64 * is no such token, this field is null.
|
TokenMgrError.java | 17 package org.apache.james.mime4j.field.contenttype.parser;
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/datetime/parser/ |
DateTimeParserConstants.java | 17 package org.apache.james.mime4j.field.datetime.parser;
|
Token.java | 17 package org.apache.james.mime4j.field.datetime.parser; 47 * token manager has not read tokens beyond this one, this field is 50 * this field. 55 * This field is used to access special tokens that occur prior to this 57 * If there are no such special tokens, this field is set to null. 58 * When there are more than one such special token, this field refers 60 * previous special token through its specialToken field, and so on 61 * until the first special token (whose specialToken field is null). 64 * is no such token, this field is null.
|
TokenMgrError.java | 17 package org.apache.james.mime4j.field.datetime.parser;
|
/external/protobuf/java/src/main/java/com/google/protobuf/ |
AbstractMessage.java | 53 for (final FieldDescriptor field : getDescriptorForType().getFields()) { 54 if (field.isRequired()) { 55 if (!hasField(field)) { 64 final FieldDescriptor field = entry.getKey(); local 65 if (field.getJavaType() == FieldDescriptor.JavaType.MESSAGE) { 66 if (field.isRepeated()) { 94 final FieldDescriptor field = entry.getKey(); local 96 if (isMessageSet && field.isExtension() && 97 field.getType() == FieldDescriptor.Type.MESSAGE && 98 !field.isRepeated()) 127 final FieldDescriptor field = entry.getKey(); local 215 final FieldDescriptor field = entry.getKey(); local 296 final FieldDescriptor field; local 454 FieldDescriptor field = null; local 576 final FieldDescriptor field = entry.getKey(); local [all...] |