Home
last modified time | relevance | path

Searched refs:field (Results 651 - 675 of 1938) sorted by relevance

1...<<21222324252627282930>>...78

/third_party/icu/icu4c/source/i18n/unicode/
H A Dudatpg.h44 * That would be useful for getting the UI order of field elements.</i>
348 * Note that single-field patterns (like "MMM") are automatically added, and
373 * An AppendItem format is a pattern used to append a field if there is no
387 * @param field UDateTimePatternField, such as UDATPG_ERA_FIELD
394 UDateTimePatternField field,
402 * @param field UDateTimePatternField, such as UDATPG_ERA_FIELD
404 * @return appendItemFormat for field.
409 UDateTimePatternField field,
413 * Set the name of field, eg "era" in English for ERA. These are only
420 * @param field UDateTimePatternFiel
[all...]
/third_party/mesa3d/src/compiler/nir/
H A Dnir_opt_memcpy.c79 const struct glsl_struct_field *field = in type_is_tightly_packed() local
82 if (field->offset < 0 || field->offset != size) in type_is_tightly_packed()
86 if (!type_is_tightly_packed(field->type, &field_size)) in type_is_tightly_packed()
89 size = field->offset + field_size; in type_is_tightly_packed()
/third_party/node/deps/icu-small/source/i18n/unicode/
H A Dudatpg.h44 * That would be useful for getting the UI order of field elements.</i>
348 * Note that single-field patterns (like "MMM") are automatically added, and
373 * An AppendItem format is a pattern used to append a field if there is no
387 * @param field UDateTimePatternField, such as UDATPG_ERA_FIELD
394 UDateTimePatternField field,
402 * @param field UDateTimePatternField, such as UDATPG_ERA_FIELD
404 * @return appendItemFormat for field.
409 UDateTimePatternField field,
413 * Set the name of field, eg "era" in English for ERA. These are only
420 * @param field UDateTimePatternFiel
[all...]
/third_party/mesa3d/src/gallium/drivers/r600/
H A Dr600_gpu_load.c74 #define UPDATE_COUNTER(field, mask) \
77 p_atomic_inc(&counters->named.field.busy); \
79 p_atomic_inc(&counters->named.field.idle); \
201 #define BUSY_INDEX(rscreen, field) (&rscreen->mmio_counters.named.field.busy - \
/third_party/skia/third_party/externals/icu/source/i18n/unicode/
H A Dudatpg.h44 * That would be useful for getting the UI order of field elements.</i>
348 * Note that single-field patterns (like "MMM") are automatically added, and
373 * An AppendItem format is a pattern used to append a field if there is no
387 * @param field UDateTimePatternField, such as UDATPG_ERA_FIELD
394 UDateTimePatternField field,
402 * @param field UDateTimePatternField, such as UDATPG_ERA_FIELD
404 * @return appendItemFormat for field.
409 UDateTimePatternField field,
413 * Set the name of field, eg "era" in English for ERA. These are only
420 * @param field UDateTimePatternFiel
[all...]
/third_party/tzdata/
H A Dziguard.awk30 function get_minutes(field, \
33 sign = field ~ /^-/ ? -1 : 1
34 hours = +field
35 if (field ~ /:/) {
36 minutes = field
/third_party/protobuf/src/google/protobuf/compiler/csharp/
H A Dcsharp_wrapper_field.cc54 const FieldDescriptor* wrapped_field = descriptor->message_type()->field(0); in WrapperFieldGenerator()
87 "/// <summary>Gets whether the $descriptor_name$ field is set</summary>\n"); in GenerateMembers()
96 "/// <summary>Clears the value of the $descriptor_name$ field</summary>\n"); in GenerateMembers()
160 if (descriptor_->message_type()->field(0)->type() == FieldDescriptor::TYPE_FLOAT) { in WriteHash()
163 else if (descriptor_->message_type()->field(0)->type() == FieldDescriptor::TYPE_DOUBLE) { in WriteHash()
171 if (descriptor_->message_type()->field(0)->type() == FieldDescriptor::TYPE_FLOAT) { in WriteEquals()
174 else if (descriptor_->message_type()->field(0)->type() == FieldDescriptor::TYPE_DOUBLE) { in WriteEquals()
222 // Note: deliberately _oneof_$name$_codec, not _$oneof_name$_codec... we have one codec per field. in GenerateMembers()
242 "/// <summary>Gets whether the \"$descriptor_name$\" field is set</summary>\n"); in GenerateMembers()
/third_party/alsa-lib/src/
H A Dconf.c3977 SNDERR("Invalid type for field func"); in snd_config_hooks_call()
4010 SNDERR("Unknown field %s", id); in snd_config_hooks_call()
4071 SNDERR("id of field %s is not and integer", id); in snd_config_hooks()
4270 SNDERR("Invalid bool value in field errors"); in snd_config_hook_load()
4275 SNDERR("Unable to find field files in the pre-load section"); in snd_config_hook_load()
4283 SNDERR("Invalid type for field filenames"); in snd_config_hook_load()
4294 SNDERR("id of field %s is not and integer", id); in snd_config_hook_load()
4366 SNDERR("Unable to find field table.id"); in _snd_config_hook_table()
4372 SNDERR("Unable to find field table.value"); in _snd_config_hook_table()
5169 SNDERR("Unknown field in _snd_config_evaluate()
[all...]
/third_party/mesa3d/src/gallium/auxiliary/vl/
H A Dvl_deint_filter.c87 create_copy_frag_shader(struct vl_deint_filter *filter, unsigned field) in create_copy_frag_shader() argument
106 if (field) { in create_copy_frag_shader()
123 create_deint_frag_shader(struct vl_deint_filter *filter, unsigned field, in create_deint_frag_shader() argument
171 if (field == 0) { in create_deint_frag_shader()
172 /* interpolating top field -> current field is a bottom field */ in create_deint_frag_shader()
182 /* interpolating bottom field -> current field is a top field */ in create_deint_frag_shader()
435 vl_deint_filter_render(struct vl_deint_filter *filter, struct pipe_video_buffer *prevprev, struct pipe_video_buffer *prev, struct pipe_video_buffer *cur, struct pipe_video_buffer *next, unsigned field) vl_deint_filter_render() argument
[all...]
/third_party/rust/crates/clap/clap_derive/src/derives/
H A Dsubcommand.rs270 .map(|field| { in gen_augment()
272 Item::from_args_field(field, item.casing(), item.env_casing())?; in gen_augment()
273 Ok((field, item)) in gen_augment()
490 .map(|field| { in gen_from_arg_matches()
491 let item = Item::from_args_field(field, item.casing(), item.env_casing())?; in gen_from_arg_matches()
492 Ok((field, item)) in gen_from_arg_matches()
599 let field_names = fields.named.iter().map(|field| { in gen_update_from_arg_matches()
600 field.ident.as_ref().unwrap() in gen_update_from_arg_matches()
605 .map(|field| { in gen_update_from_arg_matches()
606 let item = Item::from_args_field(field, ite in gen_update_from_arg_matches()
[all...]
/third_party/openssl/test/helpers/
H A Dssl_test_ctx.c37 #define IMPLEMENT_SSL_TEST_BOOL_OPTION(struct_type, name, field) \
38 static int parse_##name##_##field(struct_type *ctx, const char *value) \
40 return parse_boolean(value, &ctx->field); \
43 #define IMPLEMENT_SSL_TEST_STRING_OPTION(struct_type, name, field) \
44 static int parse_##name##_##field(struct_type *ctx, const char *value) \
46 OPENSSL_free(ctx->field); \
47 ctx->field = OPENSSL_strdup(value); \
48 return TEST_ptr(ctx->field); \
51 #define IMPLEMENT_SSL_TEST_INT_OPTION(struct_type, name, field) \
52 static int parse_##name##_##field(struct_typ
[all...]
/third_party/node/deps/v8/src/torque/
H A Dimplementation-visitor.cc421 // For now, generated C++ is only for field offset computations. If we ever in VisitMacroCommon()
1401 const Field& field = class_type->LookupField(initializer.name->value); in VisitInitializerResults() local
1402 bool has_index = field.index.has_value(); in VisitInitializerResults()
1412 ReportError("the indexed class field '", initializer.name->value, in VisitInitializerResults()
1415 result.field_value_map[field.name_and_type.name] = Visit(e); in VisitInitializerResults()
1421 VisitResult object, const Field& field, const ClassType* class_type, in GenerateFieldReference()
1423 if (field.index.has_value()) { in GenerateFieldReference()
1425 GenerateCall(class_type->GetSliceMacroName(field), {{object}, {}})); in GenerateFieldReference()
1426 if (field.index->optional && !treat_optional_as_indexed) { in GenerateFieldReference()
1427 // This field wa in GenerateFieldReference()
1420 GenerateFieldReference( VisitResult object, const Field& field, const ClassType* class_type, bool treat_optional_as_indexed) GenerateFieldReference() argument
1449 GenerateFieldReferenceForInit( VisitResult object, const Field& field, const LayoutForInitialization& layout) GenerateFieldReferenceForInit() argument
1484 LocationReference field = InitializeClass() local
1518 GenerateArrayLength(VisitResult object, const Field& field) GenerateArrayLength() argument
1551 GenerateArrayLength( const ClassType* class_type, const InitializerResults& initializer_results, const Field& field) GenerateArrayLength() argument
2251 const Field& field = type->LookupField(fieldname); GenerateFieldAccess() local
2271 const Field& field = type->LookupField(fieldname); GenerateFieldAccess() local
2283 const BitField& field = bitfield_struct->LookupField(fieldname); GenerateFieldAccess() local
2298 const BitField& field = bitfield_struct->LookupField(fieldname); GenerateFieldAccess() local
2314 const Field& field = (*struct_type)->LookupField(fieldname); GenerateFieldAccess() local
2350 const Field& field = (*class_type)->LookupField(fieldname); GenerateFieldAccess() local
3065 const Field& field = GenerateCall() local
3136 const Field& field = GenerateCall() local
3939 std::string field = "k" + CamelifyString(f.name_and_type.name) + "Offset"; global() variable
4258 std::string field = "k" + CamelifyString(f.name_and_type.name) + "Offset"; GenerateCppObjectDefinitionAsserts() local
4265 << " \\"Types of " << name_ << "::" << field GenerateCppObjectDefinitionAsserts() local
5412 CollectAllFields(const std::string& path, const Field& field, std::vector<std::string>& result) CollectAllFields() argument
[all...]
/third_party/protobuf/conformance/
H A Dbinary_json_conformance_suite.cc233 const FieldDescriptor* f = d->field(i);
252 GOOGLE_LOG(FATAL) << "Couldn't find field with type: " << repeated_string.c_str()
264 const FieldDescriptor* f = d->field(i); in GetFieldForMapType()
267 const FieldDescriptor* key = map_entry->field(0); in GetFieldForMapType()
268 const FieldDescriptor* value = map_entry->field(1); in GetFieldForMapType()
276 GOOGLE_LOG(FATAL) << "Couldn't find map field with type: " in GetFieldForMapType()
289 const FieldDescriptor* f = d->field(i); in GetFieldForOneofType()
296 GOOGLE_LOG(FATAL) << "Couldn't find oneof field with type: " in GetFieldForOneofType()
671 const FieldDescriptor* field = GetFieldForType(type, false, true); in TestPrematureEOFForType() local
680 tag(field in TestPrematureEOFForType()
755 const FieldDescriptor* field = GetFieldForType(type, false, is_proto3); TestValidDataForType() local
934 const FieldDescriptor* field = TestValidDataForRepeatedScalarMessage() local
967 const FieldDescriptor* field = TestValidDataForMapType() local
1088 const FieldDescriptor* field = GetFieldForMapType( TestOverwriteMessageValueMap() local
1114 const FieldDescriptor* field = GetFieldForOneofType(type, is_proto3); TestValidDataForOneofType() local
1211 const FieldDescriptor* field = TestMergeOneofMessage() local
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/navigation/
H A Dnavigation_title_util.h50 bool isButtonEnabled, const std::string& field, const std::string& parentId,
57 std::vector<OptionParam>&& params, const std::string& field, const std::string& parentId,
81 static void SetInnerChildId(const RefPtr<FrameNode>& node, const std::string& field, const std::string& nodeTag, in SetInnerChildId() argument
86 id.append(field); in SetInnerChildId()
/foundation/communication/dsoftbus/core/common/dfx/event/src/convert/
H A Ddisc_event_converter.h26 #define DISC_ASSIGNER(type, fieldName, field) \
30 if (Assigner##type(form->discExtra->field, &param) && \
96 #define DISC_ALARM_ASSIGNER(type, fieldName, field) \
100 if (Assigner##type(form->discAlarmExtra->field, &param) && \
/third_party/libsnd/programs/
H A Dsndfile-metadata-set.c89 #define HANDLE_BEXT_ARG(cmd, field) \ in main()
93 info.field = argv [k] ; \ in main()
111 #define HANDLE_STR_ARG(cmd, field) \ in main()
115 info.field = argv [k] ; \ in main()
202 "Where an option is made up of a pair of a field to set (one of\n" in usage_exit()
/third_party/mesa3d/.gitlab-ci/lava/utils/
H A Dlog_follower.py16 from dataclasses import dataclass, field namespace
35 timeout_durations: dict[LogSectionType, timedelta] = field(
39 _buffer: list[str] = field(default_factory=list, init=False)
40 log_hints: LAVALogHints = field(init=False)
/third_party/protobuf/src/google/protobuf/compiler/java/
H A Djava_field.h123 const FieldGeneratorType& get(const FieldDescriptor* field) const;
134 const FieldDescriptor* field) const { in get()
135 GOOGLE_CHECK_EQ(field->containing_type(), descriptor_); in get()
136 return *field_generators_[field->index()]; in get()
179 // Print useful comments before a field's accessors.
/third_party/protobuf/src/google/protobuf/compiler/python/
H A Dpython_generator.h88 void PrintFieldDescriptor(const FieldDescriptor& field,
114 const FieldDescriptor& field,
121 const Descriptor* containing_type, const FieldDescriptor& field,
156 void FixOptionsForField(const FieldDescriptor& field) const;
/third_party/protobuf/src/google/protobuf/
H A Ddynamic_message.h161 const FieldDescriptor* field) { in Sort()
165 reflection->GetRepeatedFieldRef<Message>(message, field); in Sort()
169 MapEntryMessageComparator comparator(field->message_type()); in Sort()
188 : field_(descriptor->field(0)) {} in MapEntryMessageComparator()
224 GOOGLE_LOG(DFATAL) << "Invalid key for map field."; in operator ()()
159 Sort(const Message& message, int map_size, const Reflection* reflection, const FieldDescriptor* field) Sort() argument
H A Ddescriptor_database.cc269 const std::string& filename, const FieldDescriptorProto& field, in AddExtension()
271 if (!field.extendee().empty() && field.extendee()[0] == '.') { in AddExtension()
276 std::make_pair(field.extendee().substr(1), field.number()), in AddExtension()
280 << field.extendee() << " { " << field.name() << " = " in AddExtension()
281 << field.number() << " } from:" << filename; in AddExtension()
417 bool AddExtension(StringPiece filename, const FieldProto& field);
591 // Optimization: The name should be the first field i in FindNameOfFileContainingSymbol()
268 AddExtension( const std::string& filename, const FieldDescriptorProto& field, Value value) AddExtension() argument
746 AddExtension( StringPiece filename, const FieldProto& field) AddExtension() argument
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/
H A Deapol_test.py43 def set_network(self, id, field, value):
44 res = self.request("SET_NETWORK " + str(id) + " " + field + " " + value)
49 def set_network_quoted(self, id, field, value):
50 res = self.request("SET_NETWORK " + str(id) + " " + field + ' "' + value + '"')
/foundation/distributeddatamgr/relational_store/frameworks/js/napi/rdb/include/
H A Dnapi_rdb_predicates.h51 napi_env env, napi_callback_info info, napi_value &thiz, std::string &field, const std::string fieldName);
53 napi_env env, napi_callback_info info, napi_value &thiz, int32_t &field, const std::string fieldName);
55 std::string &field, std::vector<NativeRdb::ValueObject> &value, const std::string valueType);
57 std::string &field, NativeRdb::ValueObject &value, const std::string valueType);
59 std::string &field, std::string &value, const std::string valueType);
61 std::string &field, NativeRdb::ValueObject &low, NativeRdb::ValueObject &High);
/foundation/distributeddatamgr/relational_store/frameworks/js/napi/relationalstore/include/
H A Dnapi_rdb_predicates.h48 napi_env env, napi_callback_info info, napi_value &thiz, std::string &field, const std::string fieldName);
50 napi_env env, napi_callback_info info, napi_value &thiz, int32_t &field, const std::string fieldName);
52 std::string &field, std::vector<NativeRdb::ValueObject> &value, const std::string valueType);
54 std::string &field, NativeRdb::ValueObject &value, const std::string valueType);
56 std::string &field, std::string &value, const std::string valueType);
58 std::string &field, NativeRdb::ValueObject &low, NativeRdb::ValueObject &High);
/third_party/ffmpeg/libavcodec/
H A Dpthread_slice.c210 void ff_thread_report_progress2(AVCodecContext *avctx, int field, int thread, int n) in ff_thread_report_progress2() argument
217 entries[field] +=n; in ff_thread_report_progress2()
222 void ff_thread_await_progress2(AVCodecContext *avctx, int field, int thread, int shift) in ff_thread_await_progress2() argument
228 if (!entries || !field) return; in ff_thread_await_progress2()
234 while ((entries[field - 1] - entries[field]) < shift){ in ff_thread_await_progress2()

Completed in 26 milliseconds

1...<<21222324252627282930>>...78