Searched defs:field (Results 1 - 25 of 402) sorted by relevance

1234567891011>>

/external/chromium/chrome/browser/autofill/
H A Dautofill_field_unittest.cc14 AutofillField field; local
15 ASSERT_EQ(NO_SERVER_DATA, field.server_type());
16 ASSERT_EQ(UNKNOWN_TYPE, field.heuristic_type());
19 EXPECT_EQ(UNKNOWN_TYPE, field.type());
22 field.set_heuristic_type(NAME_FIRST);
23 EXPECT_EQ(NAME_FIRST, field.type());
26 field.set_server_type(ADDRESS_BILLING_LINE1);
27 EXPECT_EQ(ADDRESS_BILLING_LINE1, field.type());
30 field.set_server_type(NO_SERVER_DATA);
31 EXPECT_EQ(NAME_FIRST, field
35 AutofillField field; local
47 AutofillField field; local
72 AutofillField field; local
[all...]
H A Dform_field_unittest.cc13 AutofillField field; local
16 EXPECT_TRUE(FormField::Match(&field, string16(), true));
19 field.label = ASCIIToUTF16("a");
20 EXPECT_TRUE(FormField::Match(&field, string16(), true));
23 field.label = ASCIIToUTF16("");
24 EXPECT_TRUE(FormField::Match(&field, ASCIIToUTF16("^$"), true));
27 field.label = ASCIIToUTF16("a");
28 EXPECT_FALSE(FormField::Match(&field, ASCIIToUTF16("^$"), true));
31 field.label = string16();
32 EXPECT_FALSE(FormField::Match(&field, ASCIIToUTF1
[all...]
H A Dselect_control_handler_unittest.cc21 webkit_glue::FormField field; local
22 field.form_control_type = ASCIIToUTF16("select-one");
23 field.option_strings = options;
27 autofill::FillSelectControl(credit_card, CREDIT_CARD_EXP_MONTH, &field);
28 EXPECT_EQ(ASCIIToUTF16("01"), field.value);
40 webkit_glue::FormField field; local
41 field.form_control_type = ASCIIToUTF16("select-one");
42 field.option_strings = options;
46 autofill::FillSelectControl(credit_card, CREDIT_CARD_EXP_MONTH, &field);
47 EXPECT_EQ(ASCIIToUTF16("Jan"), field
59 webkit_glue::FormField field; local
77 webkit_glue::FormField field; local
95 webkit_glue::FormField field; local
113 webkit_glue::FormField field; local
131 webkit_glue::FormField field; local
149 webkit_glue::FormField field; local
[all...]
/external/clang/test/Index/
H A Din-class-init.cpp2 int field = 2; member in struct:S
6 // CHECK: 2:7: FieldDecl=field:2:7 (Definition) Extent=[2:3 - 2:16]
/external/clang/test/CodeGen/
H A D2005-03-05-OffsetOfHack.c4 unsigned long int field[0]; member in struct:s
8 (((char *) &((struct s *) 0)->field[0]) - (char *) 0)
/external/clang/test/CodeGenCXX/
H A Dpr11676.cpp15 union U { int field; } u = U(); member in union:U
16 (void)U().field;
H A Dglobal-block-literal-helpers.cpp22 BL field = ^{}; member in struct:N::S
H A Dvtable-pointer-initialization.cpp19 Field field; member in struct:A
39 Field field; member in struct:B
/external/clang/test/Modules/Inputs/
H A Dmodule_private_right.h11 __module_private__ int field; member in struct:VisibleStruct
/external/valgrind/main/none/tests/s390x/
H A Dtest.h25 static inline void dump_field(void *field, int size) argument
29 printf("%2.2X ", ((char *) field)[i]);
/external/webkit/Source/WebCore/manual-tests/resources/
H A DTestApplet.java5 public int field; field in class:TestApplet
9 field = MAGIC_NUMBER;
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
H A Duserdatarequest.h37 QString field; member in class:UserDataRequest
/external/icu4c/common/unicode/
H A Dumisc.h29 /** A struct representing a range of text containing a specific field
34 * The field
37 int32_t field; member in struct:UFieldPosition
39 * The start of the text range containing field
44 * The limit of the text range containing field
/external/libvorbis/doc/
H A D05-comment.tex4 \section{comment field and header specification} \label{vorbis:spec:comment}
14 The comment field is meant to be used much like someone jotting a
67 That is, comment fields consist of a field name and a corresponding value and
77 The field name is case-insensitive and may consist of ASCII 0x20
83 The field name is immediately followed by ASCII 0x3D ('=');
84 this equals sign is used to terminate the field name.
88 field contents to the end of the field.
93 Below is a proposed, minimal list of standard field names with a
94 description of intended use. No single or group of field name
[all...]
/external/chromium/chrome/browser/sync/syncable/
H A Dsyncable_columns.h66 static inline const char* ColumnName(int field) { argument
67 DCHECK(field < BEGIN_TEMPS);
68 return g_metas_columns[field].name;
/external/mockito/src/org/mockito/configuration/
H A DAnnotationEngine.java23 * Creates mock, ArgumentCaptor or wraps field instance in spy object.
27 * @param field Field details
30 Object createMockFor(Annotation annotation, Field field); argument
37 * @param clazz Class where to extract field information, check implementation for details
/external/mockito/src/org/mockito/internal/configuration/
H A DCaptorAnnotationProcessor.java15 * Instantiate {@link ArgumentCaptor} a field annotated by &#64;Captor.
18 public Object process(Captor annotation, Field field) { argument
19 Class<?> type = field.getType();
21 throw new MockitoException("@Captor field must be of the type ArgumentCaptor.\n" + "Field: '"
22 + field.getName() + "' has wrong type\n"
25 Class cls = new GenericMaster().getGenericType(field);
H A DFieldAnnotationProcessor.java14 Object process(A annotation, Field field); argument
H A DMockAnnotationProcessor.java14 * Instantiates a mock on a field annotated by {@link Mock}
17 public Object process(Mock annotation, Field field) { argument
23 mockSettings.name(field.getName());
33 return Mockito.mock(field.getType(), mockSettings);
H A DMockitoAnnotationsMockAnnotationProcessor.java13 * Instantiates a mock on a field annotated by {@link Mock}
18 public Object process(Mock annotation, Field field) { argument
19 return Mockito.mock(field.getType(), field.getName());
/external/mockito/src/org/mockito/internal/configuration/injection/
H A DSpyOnInjectedFieldsHandler.java21 * Handler for field annotated with &#64;InjectMocks and &#64;Spy.
24 * The handler assumes that field initialization AND injection already happened.
25 * So if the field is still null, then nothing will happen there.
31 protected boolean processInjection(Field field, Object fieldOwner, Set<Object> mockCandidates) { argument
32 FieldReader fieldReader = new FieldReader(fieldOwner, field);
35 if(!fieldReader.isNull() && field.isAnnotationPresent(Spy.class)) {
43 new FieldSetter(fieldOwner, field).set(
47 .name(field.getName()))
51 throw new MockitoException("Problems initiating spied field " + field
[all...]
/external/mockito/src/org/mockito/internal/util/reflection/
H A DFieldCopier.java11 public <T> void copyValue(T from, T to, Field field) throws IllegalAccessException { argument
12 Object value = field.get(from);
13 field.set(to, value);
H A DFieldSetter.java12 private final Field field; field in class:FieldSetter
14 public FieldSetter(Object target, Field field) { argument
16 this.field = field;
21 changer.enableAccess(field);
23 field.set(target, value);
25 throw new RuntimeException("Access not authorized on field '" + field + "' of object '" + target + "' with value: '" + value + "'", e);
27 throw new RuntimeException("Wrong argument on field '" + field
[all...]
H A DGenericMaster.java15 * Finds the generic type (parametrized type) of the field. If the field is not generic it returns Object.class.
17 * @param field
19 public Class getGenericType(Field field) { argument
20 Type generic = field.getGenericType();
/external/proguard/src/proguard/classfile/attribute/
H A DConstantValueAttribute.java58 public void accept(Clazz clazz, Field field, AttributeVisitor attributeVisitor) argument
60 attributeVisitor.visitConstantValueAttribute(clazz, field, this);

Completed in 728 milliseconds

1234567891011>>