Searched defs:field (Results 226 - 250 of 402) sorted by relevance

1234567891011>>

/external/openssl/crypto/asn1/
H A Dtasn_enc.c423 ASN1_VALUE *field; member in struct:__anon10532
479 tder->field = skitem;
497 (void)sk_ASN1_VALUE_set(sk, i, tder->field);
624 /* Default handling if value == size field then omit */
/external/openssl/crypto/bn/
H A Dbn_nist.c356 int BN_nist_mod_192(BIGNUM *r, const BIGNUM *a, const BIGNUM *field, argument
375 field = &_bignum_nist_p_192; /* just to make sure */
378 return BN_nnmod(r, a, field, ctx);
380 i = BN_ucmp(field, a);
476 int BN_nist_mod_224(BIGNUM *r, const BIGNUM *a, const BIGNUM *field, argument
494 field = &_bignum_nist_p_224; /* just to make sure */
497 return BN_nnmod(r, a, field, ctx);
499 i = BN_ucmp(field, a);
630 int BN_nist_mod_256(BIGNUM *r, const BIGNUM *a, const BIGNUM *field, argument
650 field
833 BN_nist_mod_384(BIGNUM *r, const BIGNUM *a, const BIGNUM *field, BN_CTX *ctx) argument
1042 BN_nist_mod_521(BIGNUM *r, const BIGNUM *a, const BIGNUM *field, BN_CTX *ctx) argument
[all...]
/external/openssl/crypto/ec/
H A Dec_lcl.h171 * optimized implementations of expensive field operations: */
207 BIGNUM field; /* Field specification. member in struct:ec_group_st
210 * irreducible polynomial defining the field.
/external/proguard/src/proguard/obfuscate/
H A DUtf8UsageMarker.java175 public void visitConstantValueAttribute(Clazz clazz, Field field, ConstantValueAttribute constantValueAttribute) argument
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DUnknownFieldSet.java47 * parsing a protocol message but whose field numbers or types are unrecognized.
113 /** Check if the given field number is present in the set. */
119 * Get a field by number. Returns an empty field if not present. Never
286 // Optimization: We keep around a builder for the last field that was
288 // row (important when parsing an unknown repeated field).
299 * Get a field builder for the given field number which includes any
372 * Merge the fields from {@code other} into this set. If a field number
373 * exists in both sets, {@code other}'s values for that field wil
389 mergeField(final int number, final Field field) argument
429 addField(final int number, final Field field) argument
[all...]
/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/protobuf/src/google/protobuf/
H A Ddescriptor_database.cc151 const FieldDescriptorProto& field,
153 if (!field.extendee().empty() && field.extendee()[0] == '.') {
157 make_pair(field.extendee().substr(1),
158 field.number()),
161 "extend " << field.extendee() << " { "
162 << field.name() << " = " << field.number() << " }";
346 // Optimization: The name should be the first field in the encoded message.
150 AddExtension( const FieldDescriptorProto& field, Value value) argument
H A Dwire_format.cc165 const UnknownField& field = unknown_fields.field(i); local
166 switch (field.type()) {
168 output->WriteVarint32(WireFormatLite::MakeTag(field.number(),
170 output->WriteVarint64(field.varint());
173 output->WriteVarint32(WireFormatLite::MakeTag(field.number(),
175 output->WriteLittleEndian32(field.fixed32());
178 output->WriteVarint32(WireFormatLite::MakeTag(field.number(),
180 output->WriteLittleEndian64(field.fixed64());
183 output->WriteVarint32(WireFormatLite::MakeTag(field
203 const UnknownField& field = unknown_fields.field(i); local
238 const UnknownField& field = unknown_fields.field(i); local
266 const UnknownField& field = unknown_fields.field(i); local
302 const UnknownField& field = unknown_fields.field(i); local
350 const UnknownField& field = unknown_fields.field(i); local
386 const FieldDescriptor* field = NULL; local
420 ParseAndMergeField( uint32 tag, const FieldDescriptor* field, Message* message, io::CodedInputStream* input) argument
642 const FieldDescriptor* field = NULL; local
737 SerializeFieldWithCachedSizes( const FieldDescriptor* field, const Message& message, io::CodedOutputStream* output) argument
855 SerializeMessageSetItemWithCachedSizes( const FieldDescriptor* field, const Message& message, io::CodedOutputStream* output) argument
904 FieldByteSize( const FieldDescriptor* field, const Message& message) argument
939 FieldDataOnlyByteSize( const FieldDescriptor* field, const Message& message) argument
1025 MessageSetItemByteSize( const FieldDescriptor* field, const Message& message) argument
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/bytecode/
H A DShadowWrangler.java61 CtField field = new CtField(objectClass, SHADOW_FIELD_NAME, ctClass);
62 field.setModifiers(Modifier.PUBLIC);
63 ctClass.addField(field);
158 Field field = getShadowField(instance);
159 Object shadow = readField(instance, field);
177 field.set(instance, shadow);
234 Field field = shadowFieldMap.get(clazz);
235 if (field == null) {
237 field = clazz.getField(SHADOW_FIELD_NAME);
239 throw new RuntimeException(instance.getClass().getName() + " has no shadow field",
254 readField(Object target, Field field) argument
[all...]
/external/skia/legacy/src/views/
H A DSkListWidget.cpp469 const char* fieldName = dom.findAttr(child, "field");
504 virtual void getFieldName(int index, SkString* field) argument
507 if (field)
508 *field = fFields[index];
510 virtual int findFieldIndex(const char field[]) argument
513 if (fFields[i].equals(field))
559 fFieldCount = dom.countChildren(child, "field");
563 child = dom.getFirstChild(child, "field");
567 child = dom.getNextSibling(child, "field");
599 "<field nam
[all...]
/external/skia/src/svg/
H A DSkSVGParser.cpp112 SkString& SkSVGParser::getPaintLast(SkSVGPaint::Field field) { argument
115 SkString* attr = (*state)[field];
122 SkASSERT(fEmptyPaint[field]);
123 return *fEmptyPaint[field];
/external/smack/src/org/xbill/DNS/
H A DRecord.java689 checkU8(String field, int val) { argument
691 throw new IllegalArgumentException("\"" + field + "\" " + val +
699 checkU16(String field, int val) { argument
701 throw new IllegalArgumentException("\"" + field + "\" " + val +
709 checkU32(String field, long val) { argument
711 throw new IllegalArgumentException("\"" + field + "\" " + val +
719 checkName(String field, Name name) { argument
726 checkByteArrayLength(String field, byte [] array, int maxLength) { argument
728 throw new IllegalArgumentException("\"" + field + "\" array " +
/external/svox/pico/lib/
H A Dpicoos.h476 picoos_file_header_field_t field[PICOOS_MAX_NUM_HEADER_FIELDS]; member in struct:picoos_file_header
/external/v8/src/
H A Dstub-cache.h323 // shift are equal. Shifting down the length field to get the
327 // Compute the hash of the name (use entire hash field).
329 uint32_t field = name->hash_field(); local
340 uint32_t key = (map_low32bits + field) ^ iflags;
/external/valgrind/main/coregrind/m_debuginfo/
H A Dtytypes.c324 the entry which has .cuOff field as specified. Returns NULL if not
584 this TyEnt, and set its tag to Te_EMPTY. The .cuOff field is
784 TyEnt* field = NULL; local
791 field = ML_(TyEnts__index_by_cuOff)(tyents, NULL, fieldR);
792 vg_assert(field);
793 vg_assert(field->tag == Te_Field);
794 vg_assert(field->Te.Field.nLoc < 0
795 || (field->Te.Field.nLoc > 0
796 && field->Te.Field.pos.loc));
797 if (field
[all...]
/external/wpa_supplicant_8/hostapd/src/eap_peer/
H A Deap_fast_pac.c476 const char *field, const u8 *data,
487 need = os_strlen(field) + len * 2 + 30;
489 need += os_strlen(field) + len + 20;
504 ret = os_snprintf(*pos, end - *pos, "%s=", field);
515 ret = os_snprintf(*pos, end - *pos, "%s-txt=", field);
475 eap_fast_write(char **buf, char **pos, size_t *buf_len, const char *field, const u8 *data, size_t len, int txt) argument
/external/wpa_supplicant_8/src/eap_peer/
H A Deap_fast_pac.c476 const char *field, const u8 *data,
487 need = os_strlen(field) + len * 2 + 30;
489 need += os_strlen(field) + len + 20;
504 ret = os_snprintf(*pos, end - *pos, "%s=", field);
515 ret = os_snprintf(*pos, end - *pos, "%s-txt=", field);
475 eap_fast_write(char **buf, char **pos, size_t *buf_len, const char *field, const u8 *data, size_t len, int txt) argument
/external/wpa_supplicant_8/wpa_supplicant/
H A Dconfig_file.c456 static void write_str(FILE *f, const char *field, struct wpa_ssid *ssid) argument
458 char *value = wpa_config_get(ssid, field);
461 fprintf(f, "\t%s=%s\n", field, value);
466 static void write_int(FILE *f, const char *field, int value, int def) argument
470 fprintf(f, "\t%s=%d\n", field, value);
592 char field[20], *value; local
595 res = os_snprintf(field, sizeof(field), "wep_key%d", idx);
596 if (res < 0 || (size_t) res >= sizeof(field))
598 value = wpa_config_get(ssid, field);
784 write_global_bin(FILE *f, const char *field, const struct wpabuf *val) argument
[all...]
H A Dconfig_winreg.c93 wpa_printf(MSG_MSGDUMP, "blob %d: field='%s' len %d",
678 static void write_str(HKEY hk, const char *field, struct wpa_ssid *ssid) argument
680 char *value = wpa_config_get(ssid, field);
683 wpa_config_write_reg_string(hk, field, value);
688 static void write_int(HKEY hk, const char *field, int value, int def) argument
694 wpa_config_write_reg_string(hk, field, val);
816 char field[20], *value; local
818 os_snprintf(field, sizeof(field), "wep_key%d", idx);
819 value = wpa_config_get(ssid, field);
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/eap_peer/
H A Deap_fast_pac.c476 const char *field, const u8 *data,
487 need = os_strlen(field) + len * 2 + 30;
489 need += os_strlen(field) + len + 20;
504 ret = os_snprintf(*pos, end - *pos, "%s=", field);
515 ret = os_snprintf(*pos, end - *pos, "%s-txt=", field);
475 eap_fast_write(char **buf, char **pos, size_t *buf_len, const char *field, const u8 *data, size_t len, int txt) argument
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
H A Dnetworkconfig.cpp426 int NetworkConfig::setNetworkParam(int id, const char *field, argument
432 id, field, quote ? "\"" : "", value, quote ? "\"" : "");
/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/chrome/browser/autofill/
H A Dautofill_manager.cc102 // autofilled, and |field| should be the field in the |form| that corresponds to
103 // the initiating field. |is_filling_credit_card| should be true if filling
106 // gives the bounds of logical section within |form| that includes |field|.
113 const AutofillField& field,
127 const AutofillField* current_field = form.field(i);
138 // generally a little off. Hence, ignore both field types as a signal here.
140 // field type as well.
155 // We reached the end of the section containing the initiating field.
163 // Only include the current field i
112 FindSectionBounds(const FormStructure& form, const AutofillField& field, bool is_filling_credit_card, size_t* section_start, size_t* section_end) argument
363 OnQueryFormFieldAutofill( int query_id, const webkit_glue::FormData& form, const webkit_glue::FormField& field) argument
477 OnFillAutofillFormData(int query_id, const FormData& form, const FormField& field, int unique_id) argument
684 const AutofillField* field = submitted_form->field(i); local
804 FindCachedFormAndField(const FormData& form, const FormField& field, FormStructure** form_structure, AutofillField** autofill_field) argument
838 GetProfileSuggestions(FormStructure* form, const FormField& field, AutofillFieldType type, std::vector<string16>* values, std::vector<string16>* labels, std::vector<string16>* icons, std::vector<int>* unique_ids) argument
918 GetCreditCardSuggestions(FormStructure* form, const FormField& field, AutofillFieldType type, std::vector<string16>* values, std::vector<string16>* labels, std::vector<string16>* icons, std::vector<int>* unique_ids) argument
955 FillCreditCardFormField(const CreditCard* credit_card, AutofillFieldType type, webkit_glue::FormField* field) argument
981 FillFormField(const AutofillProfile* profile, AutofillFieldType type, size_t variant, webkit_glue::FormField* field) argument
[all...]
H A Dautofill_profile.cc27 // for first, middle, and last name field types.
70 // Always ignore fields of unknown type and the excluded field.
85 // Special case: If the excluded field is a partial name (e.g. first name) and
138 // Collapse compound field types to their "full" type. I.e. First name
268 << "Attempt to set multiple values on single-valued field.";
386 // The following Autofill field types are the only types we store in the WebDB
509 string16 field = GetInfo(*it); local
510 if (field.empty())
519 field = l10n_util::GetStringFUTF16(
520 IDS_AUTOFILL_DIALOG_ADDRESS_SUMMARY_FAX_FORMAT, field);
[all...]
H A Dform_field.cc27 // made these names lowercase since we convert labels and field names to
107 AutofillField* field; local
108 if (ParseText(iter, pattern, &field))
109 return new EmailField(field);
115 explicit EmailField(AutofillField *field) : field_(field) {} argument
125 bool FormField::Match(AutofillField* field, argument
129 if (autofill::MatchString(field->label, pattern)) {
133 // For now, we apply the same pattern to the field's label and the field'
150 FormField *field; local
173 AutofillField* field; local
204 AutofillField* field = **iter; local
223 AutofillField* field = **iter; local
245 Add(FieldTypeMap* field_type_map, AutofillField* field, const AutofillType& type) argument
273 std::vector<AutofillField*>::const_iterator field = fields->begin(); local
[all...]

Completed in 602 milliseconds

1234567891011>>