Searched defs:field (Results 51 - 75 of 695) sorted by relevance

1234567891011>>

/external/proguard/src/proguard/classfile/attribute/
H A DDeprecatedAttribute.java57 public void accept(Clazz clazz, Field field, AttributeVisitor attributeVisitor) argument
59 attributeVisitor.visitDeprecatedAttribute(clazz, field, this);
H A DSyntheticAttribute.java57 public void accept(Clazz clazz, Field field, AttributeVisitor attributeVisitor) argument
59 attributeVisitor.visitSyntheticAttribute(clazz, field, this);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
H A DFieldUtil.java54 public static boolean isStatic(@Nonnull Field field) { argument
55 return AccessFlags.STATIC.isSet(field.getAccessFlags());
/external/chromium_org/android_webview/browser/
H A Daw_form_database_service_unittest.cc65 FormFieldData field; local
66 field.name = base::ASCIIToUTF16("foo");
67 field.value = base::ASCIIToUTF16("bar");
68 fields.push_back(field);
/external/chromium_org/chrome/browser/extensions/api/log_private/
H A Dfilter_handler.cc17 bool IsValidField(const std::vector<T>& filter, const T& field) { argument
19 std::find(filter.begin(), filter.end(), field) != filter.end());
/external/chromium_org/components/autofill/core/browser/
H A Daddress_i18n.cc95 bool FieldForType(ServerFieldType server_type, AddressField* field) { argument
99 if (field)
100 *field = ::i18n::addressinput::COUNTRY;
104 if (field)
105 *field = ::i18n::addressinput::ADMIN_AREA;
109 if (field)
110 *field = ::i18n::addressinput::LOCALITY;
114 if (field)
115 *field = ::i18n::addressinput::DEPENDENT_LOCALITY;
119 if (field)
[all...]
H A Dcredit_card_field_unittest.cc58 FormFieldData field; local
59 field.form_control_type = "text";
61 field.label = ASCIIToUTF16("Exp Month");
62 field.name = ASCIIToUTF16("ccmonth");
63 list_.push_back(new AutofillField(field, ASCIIToUTF16("month1")));
65 field.label = ASCIIToUTF16("Exp Year");
66 field.name = ASCIIToUTF16("ccyear");
67 list_.push_back(new AutofillField(field, ASCIIToUTF16("year2")));
74 FormFieldData field; local
75 field
86 FormFieldData field; local
117 FormFieldData field; local
170 FormFieldData field; local
208 FormFieldData field; local
246 FormFieldData field; local
277 FormFieldData field; local
308 FormFieldData field; local
325 FormFieldData field; local
353 FormFieldData field; local
384 FormFieldData field; local
452 FormFieldData field; local
[all...]
/external/chromium_org/components/autofill/core/common/
H A Dautofill_data_validation.cc32 bool IsValidFormFieldData(const FormFieldData& field) { argument
34 IsValidString16(field.label) &&
35 IsValidString16(field.name) &&
36 IsValidString16(field.value) &&
37 IsValidString(field.form_control_type) &&
38 IsValidString(field.autocomplete_attribute) &&
39 IsValidString16Vector(field.option_values) &&
40 IsValidString16Vector(field.option_contents);
/external/chromium_org/components/password_manager/core/browser/
H A Dpassword_generation_manager.cc32 autofill::AutofillField* field = *field_it; local
33 if (field->server_type() == autofill::ACCOUNT_CREATION_PASSWORD) {
/external/chromium_org/components/signin/core/browser/
H A Dsignin_internals_util.cc22 std::string SigninStatusFieldToString(UntimedSigninStatusField field) { argument
23 switch (field) {
34 std::string SigninStatusFieldToString(TimedSigninStatusField field) { argument
35 switch (field) {
/external/chromium_org/content/renderer/
H A Dskia_benchmarking_extension_unittest.cc16 const char* field) {
30 if (strstr(info_str->c_str(), field) != NULL)
31 return testing::AssertionSuccess() << field << " found";
34 return testing::AssertionFailure() << field << " not found";
15 HasInfoField(SkDebugCanvas& canvas, int index, const char* field) argument
/external/chromium_org/net/cert/
H A Dx509_util_mac.h60 // 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) cons
[all...]
/external/chromium_org/ppapi/thunk/
H A Dppb_x509_certificate_private_thunk.cc41 PP_X509Certificate_Private_Field field) {
45 return enter.object()->GetField(field);
40 GetField(PP_Resource certificate, PP_X509Certificate_Private_Field field) argument
/external/chromium_org/sync/syncable/
H A Dsyncable_columns.h78 static inline const char* ColumnName(int field) { argument
79 DCHECK(field < BEGIN_TEMPS);
80 return g_metas_columns[field].name;
/external/chromium_org/third_party/libaddressinput/chromium/
H A Daddressinput_util.cc26 // Returns true if the |problem| should not be reported for the |field| because
29 AddressField field,
35 field, problem)) == filter->end();
65 AddressField field = kFields[i]; local
66 if (address_to_check.IsFieldEmpty(field) &&
67 IsFieldRequired(field, address_to_check.region_code) &&
68 !FilterExcludes(filter, field, MISSING_REQUIRED_FIELD)) {
69 problems->insert(std::make_pair(field, MISSING_REQUIRED_FIELD));
28 FilterExcludes(const std::multimap<AddressField, AddressProblem>* filter, AddressField field, AddressProblem problem) argument
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Duniforms.h237 const char *field; member in struct:gl_builtin_uniform_element
272 * b) an array/field offset (0 for simple types)
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_helpers.h71 // Get the (unqualified) name that should be used for this field in C++ code.
73 // should be using lowercase-with-underscores style for proto field names
74 // anyway, so normally this just returns field->name().
75 string FieldName(const FieldDescriptor* field);
77 // Get the unqualified name that should be used for a field's field
79 string FieldConstantName(const FieldDescriptor *field);
81 // Returns the scope where the field was defined (for extensions, this is
82 // different from the message type to which the field applies).
83 inline const Descriptor* FieldScope(const FieldDescriptor* field) { argument
[all...]
/external/clang/test/Analysis/
H A Dno-outofbounds.c26 void field() { function
/external/clang/test/CodeGen/
H A Dvisibility.c51 struct Test1 { int field; }; member in struct:Test1
/external/clang/test/CodeGenCXX/
H A Dreference-in-blocks.cpp15 A() : field(10), d1(3.14) {}
18 printf(" field = %d\n", field);
19 printf(" field = %f\n", d1);
21 int field; member in class:A
/external/clang/test/Modules/Inputs/
H A Dredecl-merge-left.h20 int field; member in struct:S2
53 int field; member in struct:S4
/external/clang/test/SemaObjC/Inputs/
H A Darc-system-header.h14 id *field; member in struct:Test3
25 id field; member in struct:Test5
/external/clang/test/SemaTemplate/
H A Dinstantiate-deeply.cpp8 e field; member in struct:A::B::C::D::E
9 E() : field(0) {
14 field += v2 + v4;
/external/deqp/framework/platform/android/
H A DtcuAndroidJNI.cpp53 jfieldID field = getExecServiceField(env, obj); local
54 return (tcu::Android::ExecService*)(deIntptr)env->GetLongField(obj, field);
59 jfieldID field = getExecServiceField(env, obj); local
60 env->SetLongField(obj, field, (jlong)(deIntptr)service);
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DFieldIdItem.java22 * Representation of a field reference inside a Dalvik file.
28 * @param field {@code non-null;} the constant for the field
30 public FieldIdItem(CstFieldRef field) { argument
31 super(field);
50 * Gets the field constant.

Completed in 1385 milliseconds

1234567891011>>