Home
last modified time | relevance | path

Searched refs:field (Results 951 - 975 of 2054) sorted by relevance

1...<<31323334353637383940>>...83

/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/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...]
/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...]
/device/soc/hisilicon/hi3861v100/sdk_liteos/platform/os/Huawei_LiteOS/kernel/include/
H A Dlos_list.h250 * @brief Obtain the offset of a field to a structure address.
253 * This API is used to obtain the offset of a field to a structure address.
260 * @param field [IN] Name of the field of which the offset is to be measured.
262 * @retval Offset of the field to the structure address.
267 #define OFFSET_OF_FIELD(type, field) ((UINT32)&(((type *)0)->field))
/foundation/multimedia/media_foundation/engine/plugin/plugins/source/http_source/hls/
H A Dhls_tags.h106 virtual void ParseAttributes(const std::string& field);
118 void ParseAttributes(const std::string& field) override;
/foundation/multimedia/av_codec/services/media_engine/plugins/source/http_source/hls/
H A Dhls_tags.h106 virtual void ParseAttributes(const std::string& field);
118 void ParseAttributes(const std::string& field) override;
/foundation/communication/dsoftbus/core/common/dfx/event/src/convert/
H A Dtrans_audit_converter.h25 #define TRANS_AUDIT_ASSIGNER(type, fieldName, field) \
29 if (Assigner##type(form->transAuditExtra->field, &param) && \
H A Dlnn_audit_converter.h25 #define LNN_AUDIT_ASSIGNER(type, fieldName, field) \
29 if (Assigner##type(form->lnnAuditExtra->field, &param) && \
H A Dconn_audit_converter.h25 #define CONN_AUDIT_ASSIGNER(type, fieldName, field) \
29 if (Assigner##type(form->connAuditExtra->field, &param) && \
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/oh_adapter/include/
H A Drd_json_object.h75 JsonObject GetObjectItem(const std::string &field, int &errCode);
80 int DeleteItemFromObject(const std::string &field);
/third_party/ffmpeg/libavformat/
H A Dsubfile.c34 #define OFFSET(field) offsetof(SubfileContext, field)
H A Drtpenc_rfc4175.c24 void ff_rtp_send_raw_rfc4175(AVFormatContext *s1, const uint8_t *buf, int size, int interlaced, int field) in ff_rtp_send_raw_rfc4175() argument
100 *dest++ = ((l_line >> 8) & 0x7f) | ((field << 7) & 0x80); in ff_rtp_send_raw_rfc4175()
/third_party/gn/src/gn/
H A Drust_tool.cc73 SubstitutionList* field, in ReadOutputsPatternList()
101 *field = std::move(list); in ReadOutputsPatternList()
71 ReadOutputsPatternList(Scope* scope, const char* var, SubstitutionList* field, Err* err) ReadOutputsPatternList() argument

Completed in 20 milliseconds

1...<<31323334353637383940>>...83