Home
last modified time | relevance | path

Searched refs:field (Results 826 - 850 of 2054) sorted by relevance

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

/third_party/skia/third_party/externals/icu/source/i18n/
H A Djapancal.h50 * for these eras, suitable for use in the <code>UCAL_ERA</code> field, are provided
129 * Return the maximum value that this field could have, given the current date.
132 virtual int32_t getActualMaximum(UCalendarDateFields field, UErrorCode& status) const;
203 * Calculate the limit for a specified type of limit and field
206 virtual int32_t handleGetLimit(UCalendarDateFields field, ELimitType limitType) const;
/third_party/skia/third_party/externals/icu/source/tools/toolutil/
H A Dudbgutil.h53 * @param field field number
56 U_CAPI const char * U_EXPORT2 udbg_enumName(UDebugEnumType type, int32_t field);
69 * @param field field number
70 * @return should be equal to 'field' or -1 if out of range.
72 U_CAPI int32_t U_EXPORT2 udbg_enumArrayValue(UDebugEnumType type, int32_t field);
75 * Locate the specified field value by name.
78 * @return should be a field value or -1 if not found.
/third_party/typescript/tests/baselines/reference/
H A DdecoratorWithNegativeLiteralTypeNoCrash.js6 function decorator(target: any, field: any) {}
28 function decorator(target, field) { }
/third_party/protobuf/src/google/protobuf/compiler/objectivec/
H A Dobjectivec_enum_field.h44 friend FieldGenerator* FieldGenerator::Make(const FieldDescriptor* field,
61 friend FieldGenerator* FieldGenerator::Make(const FieldDescriptor* field,
H A Dobjectivec_message_field.h44 friend FieldGenerator* FieldGenerator::Make(const FieldDescriptor* field,
62 friend FieldGenerator* FieldGenerator::Make(const FieldDescriptor* field,
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
H A DUnknownFieldSetPerformanceTest.java49 input[i] = (byte) 0x08; // field 1, wiretype 0 in generateBytes()
50 input[i + 1] = (byte) 0x08; // field 1, payload 8 in generateBytes()
51 input[i + 2] = (byte) 0x20; // field 4, wiretype 0 in generateBytes()
52 input[i + 3] = (byte) 0x20; // field 4, payload 32 in generateBytes()
72 UnknownFieldSet.Field field = UnknownFieldSet.Field.newBuilder().addFixed32(i).build(); in testAddField()
73 builder.addField(i, field); in testAddField()
/third_party/rust/crates/cxx/syntax/
H A Dpod.rs20 .all(|field| self.is_guaranteed_pod(&field.ty)) in is_guaranteed_pod()
/third_party/vk-gl-cts/framework/opengl/
H A DgluRenderConfig.hpp119 T getValueOrDefault (const RenderConfig& config, const T RenderConfig::*field, T defaultValue) in getValueOrDefault()
121 T value = config.*field; in getValueOrDefault()
/device/soc/rockchip/common/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_wifi6/include/
H A Dbcmdefs.h464 * Usage example, e.g. a three-bit field (bits 4-6):
469 * field = GFIELD(regval, <NAME>);
475 #define GFIELD(val, field) \
476 (((val) >> field ## _S) & field ## _M)
477 #define SFIELD(val, field, bits) \
478 (((val) & (~(field ## _M << field ## _S))) | \
479 ((unsigned)(bits) << field ## _S))
/foundation/multimedia/media_foundation/engine/plugin/plugins/source/http_source/hls/
H A Dhls_tags.cpp196 void AttributesTag::ParseAttributes(const std::string& field) in ParseAttributes() argument
198 std::istringstream iss(field); in ParseAttributes()
260 void ValuesListTag::ParseAttributes(const std::string& field) in ParseAttributes() argument
262 auto pos = field.find(','); in ParseAttributes()
265 attr = std::make_shared<Attribute>("DURATION", field.substr(0, pos)); in ParseAttributes()
269 attr = std::make_shared<Attribute>("TITLE", field.substr(pos)); in ParseAttributes()
274 attr = std::make_shared<Attribute>("DURATION", field); in ParseAttributes()
/foundation/multimedia/av_codec/services/media_engine/plugins/source/http_source/hls/
H A Dhls_tags.cpp192 void AttributesTag::ParseAttributes(const std::string& field) in ParseAttributes() argument
194 std::istringstream iss(field); in ParseAttributes()
256 void ValuesListTag::ParseAttributes(const std::string& field) in ParseAttributes() argument
258 auto pos = field.find(','); in ParseAttributes()
261 attr = std::make_shared<Attribute>("DURATION", field.substr(0, pos)); in ParseAttributes()
265 attr = std::make_shared<Attribute>("TITLE", field.substr(pos)); in ParseAttributes()
270 attr = std::make_shared<Attribute>("DURATION", field); in ParseAttributes()
/third_party/ffmpeg/libavfilter/
H A Dvf_deinterlace_vaapi.c34 VAAPIVPPContext vpp_ctx; // must be the first field
192 int err, i, field, current_frame_index; in deint_vaapi_filter_frame() local
194 // NULL frame is used to flush the queue in field mode in deint_vaapi_filter_frame()
238 for (field = 0; field < ctx->field_rate; field++) { in deint_vaapi_filter_frame()
267 filter_params->flags |= field ? VA_DEINTERLACING_BOTTOM_FIELD : 0; in deint_vaapi_filter_frame()
270 filter_params->flags |= field ? 0 : VA_DEINTERLACING_BOTTOM_FIELD; in deint_vaapi_filter_frame()
298 if (field == 0) in deint_vaapi_filter_frame()
376 { "rate", "Generate output at frame rate or field rat
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DListFormatter.java119 * The concrete field used for spans in FormattedList.
631 SpanFieldPlaceholder field = new SpanFieldPlaceholder(); in appendElement()
632 field.spanField = SpanField.LIST_SPAN; in appendElement()
633 field.normalField = Field.ELEMENT; in appendElement()
634 field.value = position; in appendElement()
635 field.start = -1; in appendElement()
636 field.length = elementString.length(); in appendElement()
637 string.append(elementString, field); in appendElement()
/third_party/node/deps/openssl/openssl/crypto/x509/
H A Dx509_vpm.c121 * The "inh_flags" field determines how this function behaves.
142 /* Macro to test if a field should be copied from src to dest */
144 #define test_x509_verify_param_copy(field, def) \
145 (to_overwrite || (src->field != def && (to_default || dest->field == def)))
147 /* Macro to test and copy a field if necessary */
149 #define x509_verify_param_copy(field, def) \
150 if (test_x509_verify_param_copy(field, def)) \
151 dest->field = src->field;
[all...]
/third_party/rust/crates/clap/tests/derive/
H A Doptions.rs298 field: Option<Option<String>>, in two_option_option_types()
303 field: Some(Some("f".into())) in two_option_option_types()
305 Opt::try_parse_from(["test", "-a42", "--field", "f"]).unwrap() in two_option_option_types()
310 field: Some(None) in two_option_option_types()
312 Opt::try_parse_from(["test", "-a42", "--field"]).unwrap() in two_option_option_types()
317 field: Some(None) in two_option_option_types()
319 Opt::try_parse_from(["test", "-a", "--field"]).unwrap() in two_option_option_types()
324 field: Some(Some("f".into())) in two_option_option_types()
326 Opt::try_parse_from(["test", "-a", "--field", "f"]).unwrap() in two_option_option_types()
331 field in two_option_option_types()
[all...]
/third_party/skia/third_party/externals/angle2/src/compiler/translator/TranslatorMetalDirect/
H A DPipeline.cpp307 static int SaturateVectorOf(const TField &field) in SaturateVectorOf() argument
311 const TType &type = *field.type(); in SaturateVectorOf()
360 config.saturateScalarOrVector = [](const TField &field) { in externalStructModifyConfig()
361 if (field.type()->getQualifier() == TQualifier::EvqSampleMask) in externalStructModifyConfig()
365 if (int s = SaturateVectorOf<TBasicType::EbtInt, LT, 4, 4>(field)) in externalStructModifyConfig()
369 if (int s = SaturateVectorOf<TBasicType::EbtUInt, LT, 4, 4>(field)) in externalStructModifyConfig()
373 if (int s = SaturateVectorOf<TBasicType::EbtFloat, LT, 4, 4>(field)) in externalStructModifyConfig()
/third_party/openssl/crypto/x509/
H A Dx509_vpm.c121 * The "inh_flags" field determines how this function behaves.
142 /* Macro to test if a field should be copied from src to dest */
144 #define test_x509_verify_param_copy(field, def) \
145 (to_overwrite || (src->field != def && (to_default || dest->field == def)))
147 /* Macro to test and copy a field if necessary */
149 #define x509_verify_param_copy(field, def) \
150 if (test_x509_verify_param_copy(field, def)) \
151 dest->field = src->field;
[all...]
/third_party/protobuf/php/ext/google/protobuf/
H A Darray.c169 "Wrong type for this repeated field."); in RepeatedField_GetUpbArray()
175 php_error_docref(NULL, E_USER_ERROR, "Must be a repeated field"); in RepeatedField_GetUpbArray()
215 * Append element to the end of the repeated field.
515 RepeatedField *field = (RepeatedField*)Z_OBJ_P(&intern->repeated_field); in PHP_METHOD() local
516 upb_array *array = field->array; in PHP_METHOD()
527 Convert_UpbToPhp(msgval, &ret, field->type, field->desc, &field->arena); in PHP_METHOD()
558 RepeatedField *field = (RepeatedField*)Z_OBJ_P(&intern->repeated_field); in PHP_METHOD() local
559 RETURN_BOOL(intern->position < upb_array_size(field in PHP_METHOD()
[all...]
H A Dphp-upb.c188 /* Maps descriptor type -> upb field type. */
242 /* Op: an action to be performed for a wire-type/field-type combination. */
252 -1, /* field not found */
274 /* For non-repeated field type. */
275 -1, /* field not found */
294 /* For repeated field type. */
320 uint32_t end_group; /* Set to field number of END_GROUP tag, if any. */
450 return &none; /* Unknown field. */ in upb_find_field()
454 const upb_msglayout_field *field) { in decode_newsubmsg()
455 const upb_msglayout *subl = layout->submsgs[field in decode_newsubmsg()
453 decode_newsubmsg(upb_decstate *d, const upb_msglayout *layout, const upb_msglayout_field *field) decode_newsubmsg() argument
459 decode_tosubmsg(upb_decstate *d, upb_msg *submsg, const upb_msglayout *layout, const upb_msglayout_field *field, upb_strview val) decode_tosubmsg() argument
483 decode_togroup(upb_decstate *d, const char *ptr, upb_msg *submsg, const upb_msglayout *layout, const upb_msglayout_field *field) decode_togroup() argument
490 decode_toarray(upb_decstate *d, const char *ptr, upb_msg *msg, const upb_msglayout *layout, const upb_msglayout_field *field, wireval val, int op) decode_toarray() argument
582 decode_tomap(upb_decstate *d, upb_msg *msg, const upb_msglayout *layout, const upb_msglayout_field *field, wireval val) decode_tomap() argument
618 decode_tomsg(upb_decstate *d, const char *ptr, upb_msg *msg, const upb_msglayout *layout, const upb_msglayout_field *field, wireval val, int op) decode_tomsg() argument
679 const upb_msglayout_field *field; decode_msg() local
4418 upb_msglayout_field *field = &fields[upb_fielddef_index(f)]; make_layout() local
5630 in_oneof(const upb_msglayout_field *field) in_oneof() argument
5635 const upb_msglayout_field *field = upb_fielddef_layout(f); _upb_msg_getraw() local
5643 const upb_msglayout_field *field = upb_fielddef_layout(f); upb_msg_has() local
5659 const upb_msglayout_field *field; upb_msg_whichoneof() local
5720 const upb_msglayout_field *field = upb_fielddef_layout(f); upb_msg_mutable() local
5754 const upb_msglayout_field *field = upb_fielddef_layout(f); upb_msg_set() local
5766 const upb_msglayout_field *field = upb_fielddef_layout(f); upb_msg_clearfield() local
[all...]
/third_party/protobuf/python/google/protobuf/internal/
H A Dtype_checkers.py35 VALUE_CHECKERS: A dictionary of field types and a value validation object.
36 TYPE_TO_BYTE_SIZE_FN: A dictionary with field types and a size computing
38 TYPE_TO_SERIALIZE_METHOD: A dictionary with field types and serialization
40 FIELD_TYPE_TO_WIRE_TYPE: A dictionary with field typed and their
42 TYPE_TO_DESERIALIZE_METHOD: A dictionary with field types and deserialization
98 def GetTypeChecker(field):
99 """Returns a type checker for a message field of the specified types.
102 field: FieldDescriptor object for this field.
106 of values assigned to a field o
[all...]
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/syncer/cloud/
H A Ddistributeddb_cloud_db_proxy_test.cpp63 for (auto &[field, val] : record) { in ModifyRecords()
64 LOGD("modify field %s", field.c_str()); in ModifyRecords()
67 bucket.insert({ field, static_cast<int64_t>(v + 1) }); in ModifyRecords()
69 bucket.insert({ field, val }); in ModifyRecords()
216 for (const auto &field: schema.fields) { in HWTEST_F()
217 Type expect = expectRecords[i][field.colName]; in HWTEST_F()
218 Type actual = actualRecords[i][field.colName]; in HWTEST_F()
275 for (const auto &field: schema.fields) { in HWTEST_F()
276 Type expect = expectRecords[i][field in HWTEST_F()
[all...]
/third_party/protobuf/ruby/ext/google/protobuf_c/
H A Dprotobuf.h382 VALUE field_type_class(const MessageLayout* layout, const upb_fielddef* field);
388 // safe because field numbers are used as case identifiers, and no field can
392 // These operate on a map field (i.e., a repeated field of submessages whose
394 bool is_map_field(const upb_fielddef* field);
395 const upb_fielddef* map_field_key(const upb_fielddef* field);
396 const upb_fielddef* map_field_value(const upb_fielddef* field);
403 // Repeated field container type.
539 const upb_fielddef* field);
[all...]
/third_party/protobuf/python/google/protobuf/
H A Ddescriptor_pool.py103 """Returns the value of the field `options`, or None if it is not set."""
110 def _IsMessageSetExtension(field):
111 return (field.is_extension and
112 field.containing_type.has_options and
113 field.containing_type.GetOptions().message_set_wire_format and
114 field.type == descriptor.FieldDescriptor.TYPE_MESSAGE and
115 field.label == descriptor.FieldDescriptor.LABEL_OPTIONAL)
340 'with field number %d.' %
533 """Loads the named field descriptor from the pool.
536 full_name (str): The full name of the field descripto
[all...]
/base/security/crypto_framework/test/fuzztest/key/asykeygenerator_fuzzer/
H A Dasykeygenerator_fuzzer.cpp505 eccCommSpec->field = tmpField; in ConstructEcc224CommParamsSpec()
506 eccCommSpec->field->fieldType = const_cast<char *>(g_eccFieldType.c_str()); in ConstructEcc224CommParamsSpec()
507 (reinterpret_cast<HcfECFieldFp *>(eccCommSpec->field))->p.data = in ConstructEcc224CommParamsSpec()
509 (reinterpret_cast<HcfECFieldFp *>(eccCommSpec->field))->p.len = NID_secp224r1_len; in ConstructEcc224CommParamsSpec()
533 eccPubKeySpec->base.field = tmpField; in ConstructEcc224PubKeyParamsSpec()
534 eccPubKeySpec->base.field->fieldType = const_cast<char *>(g_eccFieldType.c_str()); in ConstructEcc224PubKeyParamsSpec()
535 (reinterpret_cast<HcfECFieldFp *>(eccPubKeySpec->base.field))->p.data = in ConstructEcc224PubKeyParamsSpec()
537 (reinterpret_cast<HcfECFieldFp *>(eccPubKeySpec->base.field))->p.len = NID_secp224r1_len; in ConstructEcc224PubKeyParamsSpec()
565 eccPriKeySpec->base.field = tmpField; in ConstructEcc224PriKeyParamsSpec()
566 eccPriKeySpec->base.field in ConstructEcc224PriKeyParamsSpec()
[all...]
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/common/
H A Ddistributeddb_tools_unit_test.cpp891 if (input.field.size() != expected.field.size()) { in isChangedDataEq()
894 for (size_t i = 0; i < input.field.size(); i++) { in isChangedDataEq()
895 if (!DBCommon::CaseInsensitiveCompare(input.field[i], expected.field[i])) { in isChangedDataEq()
1337 for (const auto &field : schema.fields) { in SelectData()
1338 selectSql += field.colName + ","; in SelectData()
1445 for (const auto &field : schema.fields) { in GetAllAssets()
1446 if (field.type != TYPE_INDEX<Asset> && field in GetAllAssets()
1470 Field field; GetRecordLog() local
[all...]

Completed in 25 milliseconds

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