Searched refs:field (Results 226 - 250 of 4666) sorted by relevance

1234567891011>>

/external/proguard/src/proguard/optimize/info/
H A DReadWriteFieldMarker.java62 // Mark the field, if any, as being read from and written to.
70 // Mark the field as being read from.
78 // Mark the field as being written to.
94 // Mark the referenced field, if any.
101 // Mark the referenced field.
113 // Mark the field if it is being read from.
119 // Mark the field if it is being written to.
129 private static void markAsRead(Field field) argument
131 FieldOptimizationInfo info = FieldOptimizationInfo.getFieldOptimizationInfo(field);
139 public static boolean isRead(Field field) argument
147 markAsWritten(Field field) argument
157 isWritten(Field field) argument
[all...]
/external/protobuf/src/google/protobuf/
H A Ddynamic_message.cc93 // Compute the byte size of the in-memory representation of the field.
94 int FieldSpaceUsed(const FieldDescriptor* field) { argument
96 if (field->label() == FD::LABEL_REPEATED) {
97 switch (field->cpp_type()) {
109 switch (field->options().ctype()) {
117 switch (field->cpp_type()) {
129 switch (field->options().ctype()) {
243 const FieldDescriptor* field = descriptor->field(i); local
245 switch (field
323 const FieldDescriptor* field = descriptor->field(i); local
390 const FieldDescriptor* field = descriptor->field(i); local
[all...]
/external/chromium_org/v8/src/
H A Dhydrogen-load-elimination.cc19 // An element in the field approximation list.
26 // Recursively copy the entire linked list of field approximations.
38 // field is tracked separately. For each field, store a list of known field
50 TRACE((" process L%d field %d (o%d)\n",
64 TRACE((" process S%d field %d (o%d) = v%d\n",
109 // - learn from HCheckMaps for field 0
167 // Merge the field approximations for like fields.
199 // load or store for this object and field exist
206 int field = FieldOf(instr->access()); local
236 int field = FieldOf(instr->access()); local
270 int field = FieldOf(offset); local
278 int field = FieldOf(s->access()); local
294 int field = offset / kPointerSize; local
307 Find(HValue* object, int field) argument
318 FindOrCreate(HValue* object, int field) argument
349 KillFieldInternal(HValue* object, int field, HValue* value) argument
383 ReuseLastApproximation(int field) argument
[all...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/java/
H A Djava_message.cc63 void PrintFieldComment(io::Printer* printer, const FieldDescriptor* field) { argument
64 // Print the field's proto-syntax definition as a comment. We don't want to
66 string def = field->DebugString();
91 fields[i] = descriptor->field(i);
132 const FieldDescriptor* field = type->field(i); local
133 if (field->is_required()) {
136 if (GetJavaType(field) == JAVATYPE_MESSAGE) {
137 if (HasRequiredFields(field->message_type(), already_seen)) {
240 UnderscoresToCapitalizedCamelCase(descriptor_->field(
667 GenerateSerializeOneField( io::Printer* printer, const FieldDescriptor* field) argument
911 const FieldGenerator& field = field_generators_.get(descriptor_->field(i)); local
1052 const FieldDescriptor* field = descriptor_->field(i); local
1067 const FieldDescriptor* field = descriptor_->field(i); local
1151 const FieldDescriptor* field = descriptor_->field(i); local
1200 const FieldDescriptor* field = descriptor_->field(i); local
1263 const FieldGenerator& field = field_generators_.get(descriptor_->field(i)); local
1307 const FieldDescriptor* field = sorted_fields[i]; local
1360 const FieldDescriptor* field = sorted_fields[i]; local
[all...]
/external/junit/src/org/junit/experimental/theories/internal/
H A DAllMembersSupplier.java96 for (final Field field : fClass.getJavaClass().getFields()) {
97 if (Modifier.isStatic(field.getModifiers())) {
98 Class<?> type= field.getType();
100 && field.getAnnotation(DataPoints.class) != null) {
101 addArrayValues(field.getName(), list, getStaticFieldValue(field));
103 && field.getAnnotation(DataPoint.class) != null) {
105 .forValue(field.getName(), getStaticFieldValue(field)));
116 private Object getStaticFieldValue(final Field field) { argument
[all...]
/external/smack/src/org/jivesoftware/smackx/
H A DReportedData.java73 FormField field = (FormField)fields.next();
74 columns.add(new Column(field.getLabel(), field.getVariable(), field.getType()));
81 FormField field;
83 field = (FormField) fields.next();
84 // The field is created with all the values of the data form's field
86 for (Iterator<String> it=field.getValues(); it.hasNext();) {
89 fieldList.add(new Field(field
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
H A DDateTimeEditElement.cpp151 RefPtrWillBeRawPtr<DateTimeFieldElement> field = DateTimeDayFieldElement::create(document, m_editElement, m_parameters.placeholderForDay, m_dayRange); local
152 m_editElement.addField(field);
154 field->setValueAsDate(m_dateValue);
155 field->setDisabled();
162 RefPtrWillBeRawPtr<DateTimeFieldElement> field = DateTimeHour11FieldElement::create(document, m_editElement, m_hour23Range, step); local
163 m_editElement.addField(field);
165 field->setValueAsDate(m_dateValue);
166 field->setDisabled();
173 RefPtrWillBeRawPtr<DateTimeFieldElement> field = DateTimeHour12FieldElement::create(document, m_editElement, m_hour23Range, step); local
174 m_editElement.addField(field);
184 RefPtrWillBeRawPtr<DateTimeFieldElement> field = DateTimeHour23FieldElement::create(document, m_editElement, m_hour23Range, step); local
195 RefPtrWillBeRawPtr<DateTimeFieldElement> field = DateTimeHour24FieldElement::create(document, m_editElement, m_hour23Range, step); local
206 RefPtrWillBeRawPtr<DateTimeNumericFieldElement> field = DateTimeMinuteFieldElement::create(document, m_editElement, m_minuteRange, step); local
225 RefPtrWillBeRawPtr<DateTimeFieldElement> field; local
247 RefPtrWillBeRawPtr<DateTimeFieldElement> field = DateTimeAMPMFieldElement::create(document, m_editElement, m_parameters.locale.timeAMPMLabels()); local
258 RefPtrWillBeRawPtr<DateTimeNumericFieldElement> field = DateTimeSecondFieldElement::create(document, m_editElement, m_secondRange, step); local
274 RefPtrWillBeRawPtr<DateTimeNumericFieldElement> field = DateTimeMillisecondFieldElement::create(document, m_editElement, m_millisecondRange, step); local
317 RefPtrWillBeRawPtr<DateTimeFieldElement> field = DateTimeYearFieldElement::create(document, m_editElement, yearParams); local
473 addField(PassRefPtrWillBeRawPtr<DateTimeFieldElement> field) argument
613 focusOnNextField(const DateTimeFieldElement& field) argument
621 focusOnPreviousField(const DateTimeFieldElement& field) argument
[all...]
/external/chromium_org/chrome/browser/resources/net_internals/
H A Dcros_log_marker.js47 function CrosHighlightTag(color, field, range, priority) {
49 this.field = field;
149 * @param {string} field The field of entry to be highlighted
152 mark: function(entry, position, field, color) {
154 var tag = new CrosHighlightTag(color, field, position, this.markCount);
163 * @param {string} field The target field
166 getHighlight: function(highlights, index, field) {
[all...]
/external/protobuf/src/google/protobuf/compiler/javanano/
H A Djavanano_message.cc70 fields[i] = descriptor->field(i);
214 PrintFieldComment(printer, descriptor_->field(i));
215 field_generators_.get(descriptor_->field(i)).GenerateMembers(
226 " // Lazily initializes the field defaults\n"
237 field_generators_.get(descriptor_->field(i))
373 const FieldDescriptor* field = sorted_fields[i]; local
374 uint32 tag = WireFormatLite::MakeTag(field->number(),
375 WireFormat::WireTypeForFieldType(field->type()));
382 field_generators_.get(field).GenerateMergingCode(printer);
389 if (field
437 GenerateSerializeOneField( io::Printer* printer, const FieldDescriptor* field) argument
458 const FieldDescriptor* field = descriptor_->field(i); local
498 const FieldDescriptor* field = descriptor_->field(i); local
527 const FieldDescriptor* field = descriptor_->field(i); local
[all...]
/external/stlport/test/unit/
H A Dmoney_facets_test.cpp86 //On a positive value we skip the sign field if exists:
87 if (intl_fmp.pos_format().field[fieldIndex] == money_base::sign) {
105 CPPUNIT_ASSERT( intl_fmp.pos_format().field[fieldIndex] == money_base::symbol );
119 if (intl_fmp.pos_format().field[fieldIndex] == money_base::space ||
120 intl_fmp.pos_format().field[fieldIndex] == money_base::none) {
128 if (intl_fmp.pos_format().field[fieldIndex] == money_base::sign) {
148 if (intl_fmp.pos_format().field[fieldIndex] == money_base::sign) {
153 if (intl_fmp.pos_format().field[fieldIndex] == money_base::space ) {
159 if (intl_fmp.pos_format().field[fieldIndex] == money_base::sign) {
165 CPPUNIT_ASSERT( intl_fmp.pos_format().field[fieldInde
[all...]
/external/protobuf/src/google/protobuf/compiler/java/
H A Djava_message.cc57 void PrintFieldComment(io::Printer* printer, const FieldDescriptor* field) { argument
58 // Print the field's proto-syntax definition as a comment. We don't want to
60 string def = field->DebugString();
85 fields[i] = descriptor->field(i);
126 const FieldDescriptor* field = type->field(i); local
127 if (field->is_required()) {
130 if (GetJavaType(field) == JAVATYPE_MESSAGE) {
131 if (HasRequiredFields(field->message_type(), already_seen)) {
234 UnderscoresToCapitalizedCamelCase(descriptor_->field(
580 GenerateSerializeOneField( io::Printer* printer, const FieldDescriptor* field) argument
856 const FieldDescriptor* field = sorted_fields[i]; local
912 const FieldDescriptor* field = descriptor_->field(i); local
923 const FieldDescriptor* field = descriptor_->field(i); local
[all...]
/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/renderer/resources/extensions/
H A Dextension_options_events.js53 $Array.forEach(info.fields, function(field) {
54 if (e.hasOwnProperty(field)) {
55 extensionOptionsEvent[field] = e[field];
/external/chromium_org/components/autofill/core/browser/
H A Demail_field.h23 explicit EmailField(const AutofillField* field);
/external/chromium_org/components/autofill/core/common/
H A Dform_field_data.h18 // Stores information about a field in a form.
25 // TODO(dhollowa): These operators need to be revised when we implement field
27 bool operator==(const FormFieldData& field) const;
28 bool operator!=(const FormFieldData& field) const;
30 bool operator<(const FormFieldData& field) const;
59 std::ostream& operator<<(std::ostream& os, const FormFieldData& field);
H A Dform_field_data_predictions.h15 // Stores information about a field in a form.
21 FormFieldData field; member in struct:autofill::FormFieldDataPredictions
/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) {
H A Dsignin_internals_util.h60 // Returns the name of a SigninStatus field.
61 std::string SigninStatusFieldToString(UntimedSigninStatusField field);
62 std::string SigninStatusFieldToString(TimedSigninStatusField field);
68 virtual void NotifySigninValueChanged(const UntimedSigninStatusField& field, argument
70 virtual void NotifySigninValueChanged(const TimedSigninStatusField& 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/cpp/private/
H A Dx509_certificate_private.h29 // Returns the specified field as a |Var|.
30 Var GetField(PP_X509Certificate_Private_Field field) const;
/external/chromium_org/ppapi/thunk/
H A Dppb_x509_certificate_private_api.h19 virtual PP_Var GetField(PP_X509Certificate_Private_Field field) = 0;
/external/chromium_org/third_party/libaddressinput/src/cpp/include/libaddressinput/
H A Daddress_field.h23 // Address field types, ordered by size, from largest to smallest.
45 i18n::addressinput::AddressField field);
H A Daddress_ui_component.h25 // A description of an input field in an address form. The user of the library
28 // The types of hints for how large the field should be in a multiline address
31 HINT_LONG, // The field should take up the whole line.
32 HINT_SHORT // The field does not need to take up the whole line.
35 // The address field type for this UI component, for example LOCALITY.
36 AddressField field; member in struct:i18n::addressinput::AddressUiComponent
38 // The name of the field, for example "City".
41 // The hint for how large the input field should be in a multiline address
/external/guava/guava-tests/test/com/google/common/net/
H A DHttpHeadersTest.java37 for (Field field : HttpHeaders.class.getDeclaredFields()) {
43 if (!field.isSynthetic()) {
44 assertEquals(upperToHttpHeaderName(field.getName()), field.get(null));
/external/ipsec-tools/src/racoon/
H A Dmisc.h55 #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)

Completed in 736 milliseconds

1234567891011>>