Searched refs:field (Results 176 - 200 of 4666) sorted by relevance

1234567891011>>

/external/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_message.cc60 void PrintFieldComment(io::Printer* printer, const FieldDescriptor* field) { argument
61 // Print the field's proto-syntax definition as a comment. We don't want to
63 string def = field->DebugString();
90 fields[i] = descriptor->field(i);
97 // Functor for sorting extension ranges by their "start" field number.
114 // Since the first occurrence of a required field causes the whole
127 const FieldDescriptor* field = type->field(i); local
128 if (field->is_required()) {
131 if (field
215 const FieldDescriptor* field = descriptor_->field(i); local
252 const FieldDescriptor* field = descriptor_->field(i); local
694 const FieldDescriptor *field = descriptor_->field(i); local
775 const FieldDescriptor* field = descriptor_->field(i); local
828 const FieldDescriptor* field = descriptor_->field(i); local
869 const FieldDescriptor* field = descriptor_->field(i); local
961 const FieldDescriptor* field = descriptor_->field(i); local
1013 const FieldDescriptor* field = descriptor_->field(i); local
1043 const FieldDescriptor* field = descriptor_->field(i); local
1118 const FieldDescriptor* field = descriptor_->field(i); local
1129 const FieldDescriptor* field = descriptor_->field(i); local
1254 const FieldDescriptor* field = ordered_fields[i]; local
1420 GenerateSerializeOneField( io::Printer* printer, const FieldDescriptor* field, bool to_array) argument
1617 const FieldDescriptor* field = descriptor_->field(i); local
1660 const FieldDescriptor* field = descriptor_->field(i); local
1716 const FieldDescriptor* field = descriptor_->field(index); local
1735 const FieldDescriptor* field = descriptor_->field(i); local
[all...]
/external/chromium_org/chrome/browser/resources/print_preview/data/
H A Dapp_state.js32 * Enumeration of field names for serialized app state.
104 * @param {!print_preview.AppState.Field} field App state field to check if
106 * @return {boolean} Whether a field has been set in the app state.
108 hasField: function(field) {
109 return this.state_.hasOwnProperty(field);
113 * @param {!print_preview.AppState.Field} field App state field to get.
114 * @return {Object} Value of the app state field.
116 getField: function(field) {
[all...]
/external/chromium_org/components/autofill/core/browser/
H A Dautofill_metrics_unittest.cc152 AutofillField* form_field = field(i);
291 FormFieldData field; local
294 "Autofilled", "autofilled", "Elvis Aaron Presley", "text", &field);
295 field.is_autofilled = true;
296 form.fields.push_back(field);
301 "Autofill Failed", "autofillfailed", "buddy@gmail.com", "text", &field);
302 field.is_autofilled = false;
303 form.fields.push_back(field);
307 test::CreateTestFormField("Empty", "empty", "", "text", &field);
308 field
399 FormFieldData field; local
497 FormFieldData field; local
606 FormFieldData field; local
694 FormFieldData field; local
827 FormFieldData field; local
933 FormFieldData field; local
[all...]
H A Dform_field.cc30 bool IsCheckable(const AutofillField* field) { argument
31 return field->is_checkable;
82 const AutofillField* field = scanner->Cursor(); local
84 if (!MatchesFormControlType(field->form_control_type, match_type))
100 bool FormField::AddClassification(const AutofillField* field, argument
104 if (!field)
107 return map->insert(make_pair(field->unique_name(), type)).second;
115 AutofillField* field = scanner->Cursor(); local
116 if (FormField::Match(field, pattern, match_type)) {
118 *match = field;
127 Match(const AutofillField* field, const base::string16& pattern, int match_type) argument
[all...]
H A Dname_field.cc21 // A form field that can parse a full name field.
31 explicit FullNameField(AutofillField* field);
38 // A form field that can parse a first and last name field.
67 NameField* field = FirstLastNameField::Parse(scanner);
68 if (!field)
69 field = FullNameField::Parse(scanner);
70 return field;
88 // for example, Travelocity_Edit travel profile.html contains a field
101 FullNameField(AutofillField* field) argument
197 FirstLastNameField* field = ParseSpecificName(scanner); local
[all...]
/external/chromium_org/tools/memory_inspector/memory_inspector/frontends/www_content/js/
H A Dsettings.js37 $('input[type="text"]', container).each(function(_, field) {
38 field = $(field);
39 var key = field.data('key');
40 var target = field.data('target');
41 var value = field.val();
76 $('input[type="text"]', container).each(function(_, field) {
77 field = $(field);
78 if (field
[all...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Dunknown_field_set_unittest.cc67 const FieldDescriptor* field = descriptor_->FindFieldByName(name); local
68 if (field == NULL) return NULL;
70 if (unknown_fields_->field(i).number() == field->number()) {
71 return &unknown_fields_->field(i);
78 // numbers as all_fields_data_ except that each field is some other wire
85 const UnknownField& unknown_field = unknown_fields_->field(i);
112 // that's the order we parsed them in). Fields that are not valid field
118 const FieldDescriptor* field = descriptor_->FindFieldByNumber(i); local
119 if (field !
133 const UnknownField* field = GetField("optional_int32"); local
141 const UnknownField* field = GetField("optional_fixed32"); local
149 const UnknownField* field = GetField("optional_fixed64"); local
157 const UnknownField* field = GetField("optional_string"); local
165 const UnknownField* field = GetField("optionalgroup"); local
[all...]
/external/protobuf/src/google/protobuf/
H A Dwire_format.h77 // Given a field return its WireType
79 const FieldDescriptor* field);
129 // Skips a field value of the given WireType. The input should start
131 // the contents of the field will be added to it.
178 // This is different from MakeTag(field->number(), field->type()) in the case
180 static uint32 MakeTag(const FieldDescriptor* field);
182 // Parse a single field. The input should start out positioned immidately
186 const FieldDescriptor* field, // May be NULL for unknown
190 // Serialize a single field
262 WireTypeForField( const FieldDescriptor* field) argument
280 MakeTag(const FieldDescriptor* field) argument
[all...]
H A Dunknown_field_set_unittest.cc69 const FieldDescriptor* field = descriptor_->FindFieldByName(name); local
70 if (field == NULL) return NULL;
72 if (unknown_fields_->field(i).number() == field->number()) {
73 return &unknown_fields_->field(i);
80 // numbers as all_fields_data_ except that each field is some other wire
87 const UnknownField& unknown_field = unknown_fields_->field(i);
112 // that's the order we parsed them in). Fields that are not valid field
118 const FieldDescriptor* field = descriptor_->FindFieldByNumber(i); local
119 if (field !
133 const UnknownField* field = GetField("optional_int32"); local
141 const UnknownField* field = GetField("optional_fixed32"); local
149 const UnknownField* field = GetField("optional_fixed64"); local
157 const UnknownField* field = GetField("optional_string"); local
165 const UnknownField* field = GetField("optionalgroup"); local
[all...]
/external/chromium_org/components/password_manager/core/browser/
H A Dpassword_autofill_manager.h43 const autofill::FormFieldData& field,
49 const autofill::FormFieldData& field,
58 bool FillSuggestionForTest(const autofill::FormFieldData& field,
62 bool PreviewSuggestionForTest(const autofill::FormFieldData& field,
71 bool FillSuggestion(const autofill::FormFieldData& field,
76 bool PreviewSuggestion(const autofill::FormFieldData& field,
88 bool FindLoginInfo(const autofill::FormFieldData& field,
99 // The form field on which the autofill popup is shown.
/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/linux-tools-perf/perf-3.12.0/include/linux/
H A Drbtree.h95 * @field: the name of the rb_node field within 'type'.
97 #define rbtree_postorder_for_each_entry_safe(pos, n, root, field) \
98 for (pos = rb_entry(rb_first_postorder(root), typeof(*pos), field),\
99 n = rb_entry(rb_next_postorder(&pos->field), \
100 typeof(*pos), field); \
101 &pos->field; \
103 n = rb_entry(rb_next_postorder(&pos->field), \
104 typeof(*pos), field))
/external/mockito/src/org/mockito/internal/configuration/injection/
H A DMockInjection.java28 * Create a new configuration setup for a field
31 * @param field Field needing mock injection
32 * @param ofInstance Instance owning the <code>field</code>
35 public static OngoingMockInjection onField(Field field, Object ofInstance) { argument
36 return new OngoingMockInjection(field, ofInstance);
44 * @param ofInstance Instance owning the <code>field</code>
61 private OngoingMockInjection(Field field, Object fieldOwner) { argument
62 this(Collections.singleton(field), fieldOwner);
91 for (Field field : fields) {
92 injectionStrategies.process(field, fieldOwne
[all...]
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
H A DFieldDefinition.java43 public static void writeTo(IndentingWriter writer, Field field, boolean setInStaticConstructor) throws IOException { argument
44 EncodedValue initialValue = field.getInitialValue();
45 int accessFlags = field.getAccessFlags();
52 writer.write("# The value of this static final field might be set in the static constructor\n");
60 writer.write(".field ");
61 writeAccessFlags(writer, field.getAccessFlags());
62 writer.write(field.getName());
64 writer.write(field.getType());
72 Collection<? extends Annotation> annotations = field.getAnnotations();
77 writer.write(".end field\
[all...]
/external/chromium_org/third_party/icu/source/i18n/unicode/
H A Dcalendar.h84 * A <code>Calendar</code> object can produce all the time field values
99 * the Gregorian calendar, the default for a field is the same as that of the
107 * most recently set single field, will be used.
174 * <code>Calendar</code> provides an API for field "rolling", where fields
181 * adding the specified (signed) amount of time to a particular time field.
249 * who create locale resources for the field of first-day-of-week should be aware of
430 * to previous calls to set time field values. The time specified is non-local UTC
435 * previously set in the time field is invalid or restricted by
449 * set in the time field is invalid or restricted by
498 * previously set in the time field i
1559 internalGet(UCalendarDateFields field, int32_t defaultValue) const argument
2445 roll(UCalendarDateFields field, UBool up, UErrorCode& status) argument
2452 roll(EDateFields field, UBool up, UErrorCode& status) argument
2467 internalSet(UCalendarDateFields field, int32_t value) argument
[all...]
/external/icu/icu4c/source/i18n/unicode/
H A Dcalendar.h84 * A <code>Calendar</code> object can produce all the time field values
99 * the Gregorian calendar, the default for a field is the same as that of the
107 * most recently set single field, will be used.
174 * <code>Calendar</code> provides an API for field "rolling", where fields
181 * adding the specified (signed) amount of time to a particular time field.
249 * who create locale resources for the field of first-day-of-week should be aware of
430 * to previous calls to set time field values. The time specified is non-local UTC
435 * previously set in the time field is invalid or restricted by
449 * set in the time field is invalid or restricted by
498 * previously set in the time field i
1559 internalGet(UCalendarDateFields field, int32_t defaultValue) const argument
2478 roll(UCalendarDateFields field, UBool up, UErrorCode& status) argument
2485 roll(EDateFields field, UBool up, UErrorCode& status) argument
2500 internalSet(UCalendarDateFields field, int32_t value) argument
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dfldset.h72 * @param inheritFrom if a field's value is given as 0-length, such as NAME1 in "NAME1=,NAME2=VALUE2",
86 * @param inheritFrom if a field's value is given as 0-length, such as NAME1 in "NAME1=,NAME2=VALUE2",
99 * This function is called when parsing a field name, such as "MONTH" in "MONTH=4".
106 * @param name the field name (key side)
109 * @return field number, or negative if field should be skipped.
120 * @param field which field is being parsed
126 int32_t field,
133 * Implementations of this function should call set(field,
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dfldset.h72 * @param inheritFrom if a field's value is given as 0-length, such as NAME1 in "NAME1=,NAME2=VALUE2",
86 * @param inheritFrom if a field's value is given as 0-length, such as NAME1 in "NAME1=,NAME2=VALUE2",
99 * This function is called when parsing a field name, such as "MONTH" in "MONTH=4".
106 * @param name the field name (key side)
109 * @return field number, or negative if field should be skipped.
120 * @param field which field is being parsed
126 int32_t field,
133 * Implementations of this function should call set(field,
[all...]
/external/protobuf/src/google/protobuf/compiler/javanano/
H A Djavanano_helpers.h54 // Converts the field's name to camel-case, e.g. "foo_bar_baz" becomes
56 string UnderscoresToCamelCase(const FieldDescriptor* field);
57 string UnderscoresToCapitalizedCamelCase(const FieldDescriptor* field);
59 // Appends an "_" to the end of a field where the name is a reserved java
109 // Get the unqualified name that should be used for a field's field
111 string FieldConstantName(const FieldDescriptor *field);
113 string FieldDefaultConstantName(const FieldDescriptor *field);
115 // Print the field's proto-syntax definition as a comment.
116 void PrintFieldComment(io::Printer* printer, const FieldDescriptor* field);
132 GetJavaType(const FieldDescriptor* field) argument
[all...]
/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/chromium_org/third_party/libaddressinput/src/cpp/include/libaddressinput/
H A Daddress_data.h16 // locality, etc. The field names correspond to the OASIS xAL standard:
65 // Returns whether the |field| is empty.
66 bool IsFieldEmpty(AddressField field) const;
68 // Returns the value of the |field|. The parameter must not be STREET_ADDRESS,
70 const std::string& GetFieldValue(AddressField field) const;
72 // Copies |value| into the |field|. The parameter must not be STREET_ADDRESS,
74 void SetFieldValue(AddressField field, const std::string& value);
76 // Returns the value of the |field|. The parameter must be STREET_ADDRESS,
79 AddressField field) const;
86 static bool IsRepeatedFieldValue(AddressField field);
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/tests/
H A Devsel-tp-sched.c8 struct format_field *field = perf_evsel__field(evsel, name); local
12 if (field == NULL) {
13 pr_debug("%s: \"%s\" field not found!\n", evsel->name, name);
17 is_signed = !!(field->flags | FIELD_IS_SIGNED);
24 if (field->size != size) {
26 evsel->name, name, field->size, size);
/external/mockito/src/org/mockito/internal/util/reflection/
H A DLenientCopyTool.java35 Field field = fields[i];
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/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_helpers.cc169 string FieldName(const FieldDescriptor* field) { argument
170 string result = field->name();
178 string FieldConstantName(const FieldDescriptor *field) { argument
179 string field_name = UnderscoresToCamelCase(field->name(), true);
182 if (!field->is_extension() &&
183 field->containing_type()->FindFieldByCamelcaseName(
184 field->camelcase_name()) != field) {
185 // This field's camelcase name is not unique. As a hack, add the field
194 FieldMessageTypeName(const FieldDescriptor* field) argument
259 DefaultValue(const FieldDescriptor* field) argument
[all...]
/external/chromium_org/v8/tools/
H A Dgc-nvp-trace-processor.py74 fields[field] = field_count
91 def __init__(self, title, field, axis = x1y1, **keywords):
95 if type(field) is types.ListType:
96 self.field = field
98 self.field = [field]
101 return self.field
105 'using %s' % context.format_fieldref(self.field),
142 return ':'.join([str(self.field_to_index[field]) fo
[all...]

Completed in 4018 milliseconds

1234567891011>>