HomeSort by relevance Sort by last modified time
    Searched refs:field (Results 351 - 375 of 3501) sorted by null

<<11121314151617181920>>

  /external/chromium_org/components/autofill/core/common/
form_field_data.h 15 // Stores information about a field in a form.
22 // TODO(dhollowa): These operators need to be revised when we implement field
24 bool operator==(const FormFieldData& field) const;
25 bool operator!=(const FormFieldData& field) const;
27 bool operator<(const FormFieldData& field) const;
49 std::ostream& operator<<(std::ostream& os, const FormFieldData& field);
form_field_data_predictions.h 15 // Stores information about a field in a form.
21 FormFieldData field; member in struct:autofill::FormFieldDataPredictions
  /external/chromium_org/net/cert/
x509_util_mac.h 60 // Wrapper for a CSSM_DATA_PTR that was obtained via one of the CSSM field
68 CSSM_DATA_PTR field);
72 CSSM_DATA_PTR field() const { return field_; } function in class:net::x509_util::CSSMFieldValue
74 // Returns the field as if it was an arbitrary type - most commonly, by
75 // interpreting the field as a specific CSSM/CDSA parsed type, such as
77 // An added check is applied to ensure that the current field is large
87 CSSM_DATA_PTR field);
124 // Fetches the first value for the field associated with |field_oid|.
126 // returns CSSM_OK and stores the first value in |field|. If additional
128 OSStatus GetField(const CSSM_OID* field_oid, CSSMFieldValue* field) const
    [all...]
  /external/chromium_org/ppapi/cpp/private/
x509_certificate_private.h 29 // Returns the specified field as a |Var|.
30 Var GetField(PP_X509Certificate_Private_Field field) const;
  /external/guava/guava-tests/test/com/google/common/net/
HttpHeadersTest.java 27 import java.lang.reflect.Field;
37 for (Field field : HttpHeaders.class.getDeclaredFields()) {
43 if (!field.isSynthetic()) {
44 assertEquals(upperToHttpHeaderName(field.getName()), field.get(null));
  /external/ipsec-tools/src/racoon/
misc.h 55 #define RACOON_TAILQ_FOREACH_REVERSE(var, head, headname ,field) \
56 TAILQ_FOREACH_REVERSE(var, head, field, headname)
58 #define RACOON_TAILQ_FOREACH_REVERSE(var, head, headname ,field) \
59 TAILQ_FOREACH_REVERSE(var, head, headname, field)
  /external/javassist/src/main/javassist/convert/
TransformFieldAccess.java 33 public TransformFieldAccess(Transformer next, CtField field,
37 this.fieldClass = field.getDeclaringClass();
38 this.fieldname = field.getName();
39 this.isPrivate = Modifier.isPrivate(field.getModifiers());
52 * a different field is accessed. The new field must be declared
53 * in a superclass of the class in which the original field is
  /external/kernel-headers/original/media/
v4l2-mediabus.h 27 * Note: in BT.656 mode HSYNC, FIELD, and VSYNC are unused
39 /* FIELD = 0/1 - Field1 (odd)/Field2 (even) */
41 /* FIELD = 1/0 - Field1 (odd)/Field2 (even) */
92 pix_fmt->field = mbus_fmt->field;
102 mbus_fmt->field = pix_fmt->field;
  /external/mockito/src/org/mockito/configuration/
AnnotationEngine.java 10 import java.lang.reflect.Field;
23 * Creates mock, ArgumentCaptor or wraps field instance in spy object.
27 * @param field Field details
30 Object createMockFor(Annotation annotation, Field field);
37 * @param clazz Class where to extract field information, check implementation for details
  /external/mockito/src/org/mockito/internal/configuration/
FieldAnnotationProcessor.java 8 import java.lang.reflect.Field;
14 Object process(A annotation, Field field);
  /external/proguard/src/proguard/classfile/attribute/annotation/visitor/
AllAnnotationVisitor.java 60 public void visitRuntimeVisibleAnnotationsAttribute(Clazz clazz, Field field, RuntimeVisibleAnnotationsAttribute runtimeVisibleAnnotationsAttribute)
63 runtimeVisibleAnnotationsAttribute.annotationsAccept(clazz, field, annotationVisitor);
81 public void visitRuntimeInvisibleAnnotationsAttribute(Clazz clazz, Field field, RuntimeInvisibleAnnotationsAttribute runtimeInvisibleAnnotationsAttribute)
84 runtimeInvisibleAnnotationsAttribute.annotationsAccept(clazz, field, annotationVisitor);
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
userdatarequest.h 37 QString field; member in class:UserDataRequest
  /libcore/luni/src/main/java/java/text/
AttributedCharacterIterator.java 22 import java.lang.reflect.Field;
130 for (Field field : getClass().getFields()) {
131 if (field.getType() == getClass() && Modifier.isStatic(field.getModifiers())) {
132 Attribute candidate = (Attribute) field.get(null);
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...]
  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
GenericArrayTypeTest.java 19 import java.lang.reflect.Field;
36 Field field = clazz.getDeclaredField("array"); local
37 Type genericType = field.getGenericType();
53 Field field = clazz.getDeclaredField("array"); local
54 Type genericType = field.getGenericType();
  /packages/apps/Contacts/src/com/android/contacts/editor/
StructuredNameEditorView.java 119 for (String field : NameConverter.STRUCTURED_NAME_FIELDS) {
120 values.put(field, mSnapshot.getContentValues().getAsString(field));
130 for (String field : structuredNameMap.keySet()) {
131 values.put(field, structuredNameMap.get(field));
158 for (String field : structuredNameMap.keySet()) {
159 mSnapshot.getContentValues().put(field, structuredNameMap.get(field));
183 for (String field : NameConverter.STRUCTURED_NAME_FIELDS)
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/provider/
GalResult.java 82 public String get(String field) {
83 return builder.get(field);
86 public void put(String field, String value) {
87 builder.put(field, value);
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/
MailboxListField.java 20 package org.apache.james.mime4j.field;
26 import org.apache.james.mime4j.field.address.AddressList;
27 import org.apache.james.mime4j.field.address.MailboxList;
28 import org.apache.james.mime4j.field.address.parser.ParseException;
30 public class MailboxListField extends Field {
52 public Field parse(final String name, final String body, final String raw) {
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/
ASTaddr_spec.java 3 package org.apache.james.mime4j.field.address.parser;
ASTaddress.java 3 package org.apache.james.mime4j.field.address.parser;
ASTaddress_list.java 3 package org.apache.james.mime4j.field.address.parser;
ASTangle_addr.java 3 package org.apache.james.mime4j.field.address.parser;
ASTdomain.java 3 package org.apache.james.mime4j.field.address.parser;
ASTgroup_body.java 3 package org.apache.james.mime4j.field.address.parser;
ASTlocal_part.java 3 package org.apache.james.mime4j.field.address.parser;

Completed in 289 milliseconds

<<11121314151617181920>>