Searched defs:field (Results 1 - 25 of 695) sorted by path

1234567891011>>

/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DTypeExtensions.cs43 public static object get( this FieldInfo field, object obj ) argument
45 return field.GetValue( obj );
63 FieldInfo field = type.GetField( name );
64 if ( field == null )
67 return field;
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
H A DVmMirror.java791 * Returns FieldID for specified class and field name.
794 * ClassID to find field
796 * field name
809 * @param field
810 * field name to get ID for
813 public long getFieldID(ReplyPacket request, String field) { argument
821 if (field.equals(fieldName)) {
1629 * Sets field access event request for specified class signature and field
1637 * field nam
[all...]
/external/blktrace/
H A Dblkparse_fmt.c164 int pdu_len, unsigned char *pdu_buf, char field,
177 switch (field) {
251 fprintf(ofp,strcat(format, "c"), field);
162 print_field(char *act, struct per_cpu_info *pci, struct blk_io_trace *t, unsigned long long elapsed, int pdu_len, unsigned char *pdu_buf, char field, int minus, int has_w, int width) argument
/external/checkpolicy/test/
H A Ddismod.c590 int display_avdecl(avrule_decl_t * decl, int field, argument
595 switch (field) {
671 int display_avblock(int field, policydb_t * policy, argument
679 if (display_avdecl(decl, field, policy, out_fp)) {
/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/ash/display/
H A Ddisplay_layout.cc41 DisplayLayout::Position* field) {
42 if (ReverseFind(GetPositionToStringMap(), position, field))
54 bool GetDisplayIdFromString(const base::StringPiece& position, int64* field) { argument
55 return base::StringToInt64(position, field);
40 GetPositionFromString(const base::StringPiece& position, DisplayLayout::Position* field) argument
/external/chromium_org/base/json/
H A Djson_value_converter.h51 // for an int field. Do not report failures for missing fields.
55 // For nested field, the internal message also has to implement the registration
66 // For repeated field, we just assume ScopedVector for its container
111 virtual bool Convert(const base::Value& value, FieldType* field) const = 0;
118 FieldType StructType::* field,
121 field_pointer_(field),
144 virtual bool Convert(const base::Value& value, int* field) const OVERRIDE {
145 return value.GetAsInteger(field);
158 const base::Value& value, std::string* field) const OVERRIDE {
159 return value.GetAsString(field);
117 FieldConverter(const std::string& path, FieldType StructType::* field, ValueConverter<FieldType>* converter) argument
377 RegisterIntField(const std::string& field_name, int StructType::* field) argument
383 RegisterStringField(const std::string& field_name, std::string StructType::* field) argument
389 RegisterStringField(const std::string& field_name, string16 StructType::* field) argument
395 RegisterBoolField(const std::string& field_name, bool StructType::* field) argument
401 RegisterDoubleField(const std::string& field_name, double StructType::* field) argument
408 RegisterNestedField( const std::string& field_name, NestedType StructType::* field) argument
417 RegisterCustomField( const std::string& field_name, FieldType StructType::* field, bool (*convert_func)(const StringPiece&, FieldType*)) argument
428 RegisterCustomValueField( const std::string& field_name, FieldType StructType::* field, bool (*convert_func)(const base::Value*, FieldType*)) argument
438 RegisterRepeatedInt(const std::string& field_name, ScopedVector<int> StructType::* field) argument
445 RegisterRepeatedString(const std::string& field_name, ScopedVector<std::string> StructType::* field) argument
454 RegisterRepeatedString(const std::string& field_name, ScopedVector<string16> StructType::* field) argument
463 RegisterRepeatedDouble(const std::string& field_name, ScopedVector<double> StructType::* field) argument
470 RegisterRepeatedBool(const std::string& field_name, ScopedVector<bool> StructType::* field) argument
478 RegisterRepeatedCustomValue( const std::string& field_name, ScopedVector<NestedType> StructType::* field, bool (*convert_func)(const base::Value*, NestedType*)) argument
491 RegisterRepeatedMessage(const std::string& field_name, ScopedVector<NestedType> StructType::* field) argument
508 const base::Value* field = NULL; local
[all...]
H A Djson_value_converter_unittest.cc34 static bool ParseSimpleEnum(const StringPiece& value, SimpleEnum* field) { argument
36 *field = FOO;
39 *field = BAR;
212 // Convert() still succeeds even if the input doesn't have "bar" field.
/external/chromium_org/base/process/
H A Dprocess_metrics_linux.cc51 // Read /proc/<pid>/status and return the value for |field|, or 0 on failure.
53 size_t ReadProcStatusAndGetFieldAsSizeT(pid_t pid, const std::string& field) { argument
69 if (key == field) {
89 // Read /proc/<pid>/sched and look for |field|. On succes, return true and
90 // write the value for |field| into |result|.
91 // Only works for fields in the form of "field : uint_value"
93 const std::string& field,
110 if (key == field) {
430 // Field 2 -- # of reads merged, field 6 -- # of writes merged
434 // as only one I/O. This field let
92 ReadProcSchedAndGetFieldAsUint64(pid_t pid, const std::string& field, uint64* result) argument
[all...]
/external/chromium_org/base/win/
H A Devent_trace_provider.h67 void SetField(int field, size_t size, const void *data) { argument
68 // DCHECK(field < N);
69 if ((field < N) && (size <= kuint32max)) {
70 fields[field].DataPtr = reinterpret_cast<ULONG64>(data);
71 fields[field].Length = static_cast<ULONG>(size);
/external/chromium_org/chrome/browser/chromeos/display/
H A Ddisplay_preferences.cc293 chromeos::DisplayPowerState* field) {
294 if (ash::ReverseFind(GetDisplayPowerStateToStringMap(), state, field))
292 GetDisplayPowerStateFromString(const base::StringPiece& state, chromeos::DisplayPowerState* field) argument
/external/chromium_org/chrome/browser/extensions/api/downloads/
H A Ddownloads_api.cc93 const char kInvalidOrderBy[] = "Invalid orderBy field";
950 bool IsDownloadDeltaField(const std::string& field) { argument
951 return ((field == kUrlKey) ||
952 (field == kFilenameKey) ||
953 (field == kDangerKey) ||
954 (field == kMimeKey) ||
955 (field == kStartTimeKey) ||
956 (field == kEndTimeKey) ||
957 (field == kStateKey) ||
958 (field
[all...]
/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/chrome/browser/sync/test/integration/
H A Dautofill_helper.cc183 FormFieldData field; local
184 field.name = i->name();
185 field.value = i->value();
186 form_fields.push_back(field);
/external/chromium_org/chrome/browser/ui/android/autofill/
H A Dautofill_dialog_controller_android.cc146 AutofillField* field = form_structure.field(i); local
147 if (field->Type().GetStorableType() == EMAIL_ADDRESS)
148 field->value = email_address;
158 const AutofillField* field = form_structure.field(i); local
159 if (field && common::ServerTypeMatchesField(section, input_type, *field))
256 // Determine what field types should be included in the dialog.
277 AutofillType type = form_structure_.field(
[all...]
/external/chromium_org/chrome/browser/ui/autofill/
H A Dautofill_dialog_common.cc55 const AutofillField& field) {
56 AutofillType field_type = field.Type();
53 ServerTypeMatchesField(DialogSection section, ServerFieldType type, const AutofillField& field) argument
H A Dautofill_dialog_controller_browsertest.cc352 FormFieldData field; local
353 field.autocomplete_attribute = "shipping tel";
354 form.fields.push_back(field);
516 // Returns the value filled into the first field with autocomplete attribute
517 // equal to |autocomplete_type|, or an empty string if there is no such field.
H A Dautofill_dialog_controller_impl.cc189 // Returns true if |input| should be used to fill a site-requested |field| which
193 const AutofillField& field) {
194 // Equivalent billing field type is used to support UseBillingAsShipping
199 field.Type().GetStorableType())));
740 // Determine what field types should be included in the dialog.
760 AutofillType type = form_structure_.field(i)->Type();
1902 // If the field is edited, clear any Wallet errors.
1975 NOTREACHED(); // Trying to validate unknown field.
2022 // Skip empty/unchanged fields in edit mode. If the individual field does
2043 // Validate the date formed by month and year field
192 ServerTypeMatchesShippingField(ServerFieldType type, const AutofillField& field) argument
3300 AutofillField* field = form_structure_.field(i); local
[all...]
H A Dautofill_dialog_controller_unittest.cc144 bool HasAnyError(const ValidityMessages& messages, ServerFieldType field) { argument
145 return !messages.GetMessageOrDefault(field).text.empty();
148 bool HasUnsureError(const ValidityMessages& messages, ServerFieldType field) { argument
149 const ValidityMessage& message = messages.GetMessageOrDefault(field);
439 FormFieldData field; local
440 field.autocomplete_attribute = kFieldsFromPage[i];
441 form_data.fields.push_back(field);
584 // Returns true if the given |section| contains a field of the given |type|.
609 form_structure()->field(11)->Type().GetStorableType());
610 EXPECT_EQ(ADDRESS_BILLING, form_structure()->field(1
1484 FormFieldData field; local
3385 FormFieldData field; local
3457 FormFieldData field; local
3518 FormFieldData field; local
3544 FormFieldData field; local
[all...]
H A Dautofill_dialog_types.cc145 ServerFieldType field, const ValidityMessage& message) {
146 MessageMap::iterator iter = messages_.find(field);
154 messages_.insert(MessageMap::value_type(field, message));
158 ServerFieldType field) const {
159 MessageMap::const_iterator iter = messages_.find(field);
163 bool ValidityMessages::HasSureError(ServerFieldType field) const {
164 return IsSureError(GetMessageOrDefault(field));
144 Set( ServerFieldType field, const ValidityMessage& message) argument
H A Ddata_model_wrapper.cc64 // Interactive autofill dialog does not display organization field.
386 ::i18n::addressinput::AddressField field; local
387 if (!i18n::FieldForType(type.GetStorableType(), &field))
390 if (field == ::i18n::addressinput::STREET_ADDRESS)
393 if (field == ::i18n::addressinput::COUNTRY) {
398 return base::UTF8ToUTF16(address_->GetFieldValue(field));
/external/chromium_org/chrome/browser/ui/cocoa/omnibox/
H A Domnibox_view_mac.h28 AutocompleteTextField* field);
103 // Helper to get the font to use in the field, exposed for the
116 AutocompleteTextField* field() const { return field_; } function in class:OmniboxViewMac
125 // Returns the field's currently selected range. Only valid if the
126 // field has focus.
129 // Returns the field's currently marked range. Only valid if the field has
142 // Update the field with |display_text| and highlight the host and scheme (if
150 // Update the field with |display_text| and set the selection.
/external/chromium_org/chrome/browser/ui/views/autofill/
H A Dautofill_dialog_views.cc1694 // If user leaves an edit-field, revalidate the group it belongs to.
1954 ExpandingTextfield* field = new ExpandingTextfield(input.initial_value, local
1958 textfields->insert(std::make_pair(input.type, field));
1959 view_to_add.reset(field);
2281 // If the field is a textfield and is invalid, check if the text is now valid.
2292 // If the field transitioned from invalid to valid, re-validate the group,
2293 // since inter-field checks become meaningful with valid fields.
/external/chromium_org/chrome/browser/ui/webui/options/chromeos/
H A Ddisplay_options_handler.cc80 const std::string& field) {
82 if (dict->GetDouble(field, &double_result))
86 dict->GetInteger(field, &result);
91 const std::string& field,
94 if (dict->GetDouble(field, &double_result)) {
79 GetIntOrDouble(const base::DictionaryValue* dict, const std::string& field) argument
90 GetFloat(const base::DictionaryValue* dict, const std::string& field, float* result) argument
/external/chromium_org/chrome/renderer/autofill/
H A Dform_autofill_browsertest.cc55 const char* const autofill_value; // The value being used to fill the field.
194 FormFieldData field; local
198 &field,
208 // Verify field's initial value.
210 SCOPED_TRACE(base::StringPrintf("Verify initial value for field %s",
220 // Fill the form_data for the field.
222 // Set the is_autofilled property for the field.
235 // Validate an Autofilled field.
238 SCOPED_TRACE(base::StringPrintf("Verify autofilled value for field %s",
291 // We should be able to extract a normal text field
835 FormFieldData field; local
914 FormFieldData field; local
1274 FormFieldData field; local
1368 FormFieldData field; local
2474 FormFieldData field; local
2574 FormFieldData field; local
2655 FormFieldData field; local
2745 FormFieldData field; local
2971 FormFieldData field; local
[all...]

Completed in 701 milliseconds

1234567891011>>