Home
last modified time | relevance | path

Searched refs:field (Results 901 - 925 of 1938) sorted by relevance

1...<<31323334353637383940>>...78

/third_party/rust/crates/serde/serde_derive_internals/src/
H A Dreceiver.rs248 for field in &mut data.fields { in visit_data_mut()
249 self.visit_type_mut(&mut field.ty); in visit_data_mut()
254 for field in &mut variant.fields { in visit_data_mut()
255 self.visit_type_mut(&mut field.ty); in visit_data_mut()
/third_party/rust/crates/serde/serde_derive/src/internals/
H A Dreceiver.rs248 for field in &mut data.fields { in visit_data_mut()
249 self.visit_type_mut(&mut field.ty); in visit_data_mut()
254 for field in &mut variant.fields { in visit_data_mut()
255 self.visit_type_mut(&mut field.ty); in visit_data_mut()
/third_party/rust/crates/nix/src/sys/
H A Dstatfs.rs475 // The f_flags field exists on Android and Fuchsia too, but without man
698 ds.field("optimal_transfer_size", &self.optimal_transfer_size()); in fmt()
699 ds.field("block_size", &self.block_size()); in fmt()
700 ds.field("blocks", &self.blocks()); in fmt()
701 ds.field("blocks_free", &self.blocks_free()); in fmt()
702 ds.field("blocks_available", &self.blocks_available()); in fmt()
703 ds.field("files", &self.files()); in fmt()
704 ds.field("files_free", &self.files_free()); in fmt()
705 ds.field("filesystem_id", &self.filesystem_id()); in fmt()
716 ds.field("flag in fmt()
[all...]
/third_party/rust/crates/libc/src/unix/linux_like/linux/
H A Dmod.rs785 .field("nl_family", &self.nl_family) in fmt()
786 .field("nl_pid", &self.nl_pid) in fmt()
787 .field("nl_groups", &self.nl_groups) in fmt()
818 .field("d_ino", &self.d_ino) in fmt()
819 .field("d_off", &self.d_off) in fmt()
820 .field("d_reclen", &self.d_reclen) in fmt()
821 .field("d_type", &self.d_type) in fmt()
822 // FIXME: .field("d_name", &self.d_name) in fmt()
856 .field("d_ino", &self.d_ino) in fmt()
857 .field("d_of in fmt()
[all...]
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/moduletest/src/
H A Ddistributeddb_nb_predicate_query_test.cpp326 * @tc.steps: step4. test IsNull interface where field = field3. in HWTEST_F()
333 * @tc.steps: step5. test OrderBy interface where field = field1. in HWTEST_F()
344 bool InvalidFieldCheck(KvStoreNbDelegate *&delegate, string field, DBStatus status) in InvalidFieldCheck() argument
347 Query query1 = Query::Select().EqualTo(field, "bxz"); in InvalidFieldCheck()
351 Query query2 = Query::Select().NotEqualTo(field, "bxz"); in InvalidFieldCheck()
356 Query query3 = Query::Select().In(field, scope); in InvalidFieldCheck()
360 Query query4 = Query::Select().NotIn(field, scope); in InvalidFieldCheck()
364 Query query5 = Query::Select().GreaterThan(field, "abc"); in InvalidFieldCheck()
368 Query query6 = Query::Select().LessThan(field, "abc"); in InvalidFieldCheck()
372 Query query7 = Query::Select().GreaterThanOrEqualTo(field, "ab in InvalidFieldCheck()
573 InvalidBoolFieldCheck(KvStoreNbDelegate *&delegate, string field, DBStatus status) InvalidBoolFieldCheck() argument
850 InvalidFieldCheck(KvStoreNbDelegate *&delegate, string field, T value, DBStatus status) InvalidFieldCheck() argument
[all...]
/third_party/ffmpeg/libavcodec/
H A Dh264_refs.c252 * the current decoding context (frame or field). Note that pic_num is
265 /* opposite field */ in pic_num_extract()
279 H264Ref *field = &sl->ref_list[list][16 + 2 * i]; in h264_fill_mbaff_ref_list() local
281 field[0] = *frame; in h264_fill_mbaff_ref_list()
284 field[0].linesize[j] <<= 1; in h264_fill_mbaff_ref_list()
285 field[0].reference = PICT_TOP_FIELD; in h264_fill_mbaff_ref_list()
286 field[0].poc = field[0].parent->field_poc[0]; in h264_fill_mbaff_ref_list()
288 field[1] = field[ in h264_fill_mbaff_ref_list()
[all...]
H A Dpthread_frame.c610 void ff_thread_report_progress(ThreadFrame *f, int n, int field) in ff_thread_report_progress() argument
616 atomic_load_explicit(&progress[field], memory_order_relaxed) >= n) in ff_thread_report_progress()
619 p = f->owner[field]->internal->thread_ctx; in ff_thread_report_progress()
622 av_log(f->owner[field], AV_LOG_DEBUG, in ff_thread_report_progress()
623 "%p finished %d field %d\n", progress, n, field); in ff_thread_report_progress()
627 atomic_store_explicit(&progress[field], n, memory_order_release); in ff_thread_report_progress()
633 void ff_thread_await_progress(ThreadFrame *f, int n, int field) in ff_thread_await_progress() argument
639 atomic_load_explicit(&progress[field], memory_order_acquire) >= n) in ff_thread_await_progress()
642 p = f->owner[field] in ff_thread_await_progress()
[all...]
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
H A DCollectVariables.cpp75 for (auto &field : variable->fields) in MarkActive()
77 MarkActive(&field); in MarkActive()
749 for (const TField *field : fields) in setFieldOrVariableProperties()
754 setFieldProperties(*field->type(), field->name(), staticUse, isShaderIOBlock, isPatch, in setFieldOrVariableProperties()
769 for (const TField *field : fields) in setFieldOrVariableProperties()
772 setFieldProperties(*field->type(), field->name(), staticUse, true, isPatch, in setFieldOrVariableProperties()
1016 // Gather field information in recordInterfaceBlock()
1019 for (const TField *field in recordInterfaceBlock()
[all...]
/third_party/rust/crates/rust-openssl/openssl/src/x509/
H A Dmod.rs275 /// The `CN` field is used for the common name, such as a DNS name.
608 /// Access field.
798 debug_struct.field("serial_number", &serial);
799 debug_struct.field("signature_algorithm", &self.signature_algorithm().object());
800 debug_struct.field("issuer", &self.issuer_name());
801 debug_struct.field("subject", &self.subject_name());
803 debug_struct.field("subject_alt_names", subject_alt_names);
805 debug_struct.field("not_before", &self.not_before());
806 debug_struct.field("not_after", &self.not_after());
809 debug_struct.field("public_ke
[all...]
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/test/
H A Dobject_asset_machine_test.cpp64 .field = "attachment", in SetUp()
203 .field = "attachment_" + timestamp, in HWTEST_F()
247 .field = "attachment_006", in HWTEST_F()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/include/
H A Dschema_object.h94 // E_VALUE_MISMATCH_FEILD_COUNT : Value contain more field then schema when in strict mode
182 int ParseCheckFieldInfo(const reflection::Schema &schema, const reflection::Field &field,
184 void CollectRawIndexInfos(const reflection::Field &field, RawIndexInfos &indexCollect) const;
185 int ParseCheckStructDefine(const reflection::Schema &schema, const reflection::Field &field,
/third_party/icu/icu4c/source/i18n/
H A Dformattedval_iterimpl.cpp53 int32_t field = fFields.elementAti(i * 4 + 1); in nextPosition() local
54 if (cfpos.matchesField(category, field)) { in nextPosition()
57 cfpos.setState(category, field, start, limit); in nextPosition()
148 // Higher field category -> lower rank in sort()
151 // Higher field -> higher rank in sort()
/third_party/mesa3d/src/compiler/glsl/
H A Dlink_uniforms.cpp119 /* Records need to have each field processed individually. in recursion()
122 * individually, then each field of the resulting array elements processed in recursion()
138 const char *field = t->fields.structure[i].name; in recursion() local
144 /* Append '.field' to the current variable name. */ in recursion()
146 ralloc_asprintf_rewrite_tail(name, &new_length, "%s", field); in recursion()
148 ralloc_asprintf_rewrite_tail(name, &new_length, ".%s", field); in recursion()
172 /* Only the first leaf-field of the record gets called with the in recursion()
210 /* Only the first leaf-field of the record gets called with the in recursion()
/third_party/node/deps/icu-small/source/i18n/
H A Dformattedval_iterimpl.cpp53 int32_t field = fFields.elementAti(i * 4 + 1); in nextPosition() local
54 if (cfpos.matchesField(category, field)) { in nextPosition()
57 cfpos.setState(category, field, start, limit); in nextPosition()
148 // Higher field category -> lower rank in sort()
151 // Higher field -> higher rank in sort()
/third_party/protobuf/csharp/src/Google.Protobuf/
H A DExtensionSet.cs182 /// Tries to merge a field from the coded input, returning true if the field was merged.
183 /// If the set is null or the field was not otherwise merged, this returns false.
199 /// Tries to merge a field from the coded input, returning true if the field was merged.
200 /// If the set is null or the field was not otherwise merged, this returns false.
292 foreach (KeyValuePair<int, IExtensionValue> field in ValuesByNumber) in GetHashCode()
294 // Use ^ here to make the field order irrelevant. in GetHashCode()
295 int hash = field.Key.GetHashCode() ^ field in GetHashCode()
[all...]
/third_party/protobuf/csharp/src/Google.Protobuf.Test/
H A DUnknownFieldSetTest.cs66 UnknownField field = new UnknownField(); in MergeUnknownFieldSet()
67 field.AddFixed32(123); in MergeUnknownFieldSet()
68 unknownFields.AddOrReplaceField(1, field); in MergeUnknownFieldSet()
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dformattedval_iterimpl.cpp53 int32_t field = fFields.elementAti(i * 4 + 1); in nextPosition() local
54 if (cfpos.matchesField(category, field)) { in nextPosition()
57 cfpos.setState(category, field, start, limit); in nextPosition()
148 // Higher field category -> lower rank in sort()
151 // Higher field -> higher rank in sort()
/third_party/protobuf/src/google/protobuf/util/internal/
H A Dtype_info.cc146 const google::protobuf::Field& field = type->fields(i); in PopulateNameLookupTable() local
147 StringPiece name = field.name(); in PopulateNameLookupTable()
148 StringPiece camel_case_name = field.json_name(); in PopulateNameLookupTable()
/third_party/rust/crates/syn/codegen/src/
H A Deq.rs36 for (i, field) in fields.iter().enumerate() { in expand_impl_body()
37 if always_eq(field) { in expand_impl_body()
44 comparisons.push(match field { in expand_impl_body()
/third_party/vk-gl-cts/framework/egl/
H A DegluGLUtil.cpp241 int glu::RenderConfig::*field; in configMatches() member in eglu::__anon30230::glu::RenderConfig
257 if (renderConfig.*s_attribs[attribNdx].field != glu::RenderConfig::DONT_CARE) in configMatches()
261 if (value != renderConfig.*s_attribs[attribNdx].field) in configMatches()
/third_party/rust/crates/libc/src/unix/haiku/
H A Dmod.rs504 .field("ut_type", &self.ut_type) in fmt()
505 .field("ut_tv", &self.ut_tv) in fmt()
506 .field("ut_id", &self.ut_id) in fmt()
507 .field("ut_pid", &self.ut_pid) in fmt()
508 .field("ut_user", &self.ut_user) in fmt()
509 .field("ut_line", &self.ut_line) in fmt()
510 .field("ut_host", &self.ut_host) in fmt()
511 .field("__ut_reserved", &self.__ut_reserved) in fmt()
543 .field("sun_len", &self.sun_len) in fmt()
544 .field("sun_famil in fmt()
[all...]
/third_party/icu/icu4c/source/common/
H A Dlocid.cpp572 // Allocate length items for types, to store the type field.
584 // Allocate length items for types, to store the type field.
595 // Allocate length items for types, to store the type field.
606 // Allocate length items for types, to store the type field.
617 // Allocate length items for types, to store the type field.
737 * Allocate length items for types, to store the type field. Allocate length
774 * Allocate length items for types, to store the type field. Allocate length
805 * Allocate length items for types, to store the type field. Allocate length
833 * Allocate length items for types, to store the type field. Allocate length
869 * Allocate length items for types, to store the type field
[all...]
/third_party/node/deps/icu-small/source/common/
H A Dlocid.cpp572 // Allocate length items for types, to store the type field.
584 // Allocate length items for types, to store the type field.
595 // Allocate length items for types, to store the type field.
606 // Allocate length items for types, to store the type field.
617 // Allocate length items for types, to store the type field.
737 * Allocate length items for types, to store the type field. Allocate length
774 * Allocate length items for types, to store the type field. Allocate length
805 * Allocate length items for types, to store the type field. Allocate length
833 * Allocate length items for types, to store the type field. Allocate length
870 * Allocate length items for types, to store the type field
[all...]
/third_party/skia/third_party/externals/icu/source/common/
H A Dlocid.cpp592 // Allocate length items for types, to store the type field.
604 // Allocate length items for types, to store the type field.
615 // Allocate length items for types, to store the type field.
626 // Allocate length items for types, to store the type field.
637 // Allocate length items for types, to store the type field.
758 * Allocate length items for types, to store the type field. Allocate length
795 * Allocate length items for types, to store the type field. Allocate length
826 * Allocate length items for types, to store the type field. Allocate length
854 * Allocate length items for types, to store the type field. Allocate length
890 * Allocate length items for types, to store the type field
[all...]
/third_party/protobuf/python/google/protobuf/internal/
H A Ddescriptor_pool_test.py135 # Can find field.
307 field = self.pool.FindFieldByName(
309 self.assertEqual(field.name, 'list_value')
310 self.assertEqual(field.label, field.LABEL_REPEATED)
311 self.assertFalse(field.has_options)
632 field = message_type.field.add()
633 field.number = 1
634 field
[all...]

Completed in 32 milliseconds

1...<<31323334353637383940>>...78