| /third_party/vulkan-loader/scripts/ |
| H A D | update_deps.py | 113 The name of the dependent repository. This field can be referenced 781 repo_dict[repo.name] = {field: getattr(repo, field) for field in field_list}
|
| /third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_util/ |
| H A D | FindPreciseNodes.cpp | 9 // subobject (a precise struct whose field is being assigned) or superobject (a struct with a 10 // precise field), two things happen: 33 // includes block field selections. The access chain is used to identify the part of an object 88 // For fields of nameless interface blocks, add the field index too. in build() 239 const TField *field = block->fields()[accessChain[length]]; in GetObjectPreciseSubChainLength() local 240 if (field->type()->isPrecise()) in GetObjectPreciseSubChainLength() 245 block = field->type()->getStruct(); in GetObjectPreciseSubChainLength() 307 // If the field is precise, add it as a precise subobject. Otherwise recurse. in AddPreciseSubObjects() 583 // to the field selected by the access chain. 595 // Visit only said field [all...] |
| /third_party/mesa3d/src/amd/vulkan/ |
| H A D | radv_device_generated_commands.c | 211 #define load_param32(b, field) \ 213 .base = offsetof(struct radv_dgc_params, field), .range = 4) 215 #define load_param16(b, field) \ 219 .base = (offsetof(struct radv_dgc_params, field) & ~3), .range = 4), \ 220 nir_imm_int((b), (offsetof(struct radv_dgc_params, field) & 2) * 8), nir_imm_int((b), 16)) 222 #define load_param8(b, field) \ 226 .base = (offsetof(struct radv_dgc_params, field) & ~3), .range = 4), \ 227 nir_imm_int((b), (offsetof(struct radv_dgc_params, field) & 3) * 8), nir_imm_int((b), 8)) 229 #define load_param64(b, field) \ 231 .base = offsetof(struct radv_dgc_params, field), [all...] |
| /third_party/node/deps/v8/src/objects/ |
| H A D | string-inl.h | 1406 uint32_t field = raw_hash_field(); 1407 if (ContainsCachedArrayIndex(field)) { 1408 *index = ArrayIndexValueBits::decode(field); 1411 if (IsHashFieldComputed(field) && !IsIntegerIndex(field)) { 1418 uint32_t field = raw_hash_field(); 1419 if (ContainsCachedArrayIndex(field)) { 1420 *index = ArrayIndexValueBits::decode(field); 1423 if (IsHashFieldComputed(field) && !IsIntegerIndex(field)) { [all...] |
| /third_party/python/Python/ |
| H A D | sysmodule.c | 1363 int field = 0; in get_hash_info() local 1369 PyStructSequence_SET_ITEM(hash_info, field++, in get_hash_info() 1371 PyStructSequence_SET_ITEM(hash_info, field++, in get_hash_info() 1373 PyStructSequence_SET_ITEM(hash_info, field++, in get_hash_info() 1375 PyStructSequence_SET_ITEM(hash_info, field++, in get_hash_info() 1377 PyStructSequence_SET_ITEM(hash_info, field++, in get_hash_info() 1379 PyStructSequence_SET_ITEM(hash_info, field++, in get_hash_info() 1381 PyStructSequence_SET_ITEM(hash_info, field++, in get_hash_info() 1383 PyStructSequence_SET_ITEM(hash_info, field++, in get_hash_info() 1385 PyStructSequence_SET_ITEM(hash_info, field in get_hash_info() [all...] |
| /third_party/rust/crates/serde/serde/src/private/ |
| H A D | de.rs | 21 /// If the missing field is of type `Option<T>` then treat is as `None`, 23 pub fn missing_field<'de, V, E>(field: &'static str) -> Result<V, E> in missing_field() 57 let deserializer = MissingFieldDeserializer(field, PhantomData); in missing_field() 936 fn visit_str<E>(self, field: &str) -> Result<Self::Value, E> in visit_str() 940 if field == self.tag { in visit_str() 942 } else if field == self.content { in visit_str() 945 Err(de::Error::invalid_value(Unexpected::Str(field), &self)) in visit_str() 949 fn visit_bytes<E>(self, field: &[u8]) -> Result<Self::Value, E> in visit_bytes() 953 if field == self.tag.as_bytes() { in visit_bytes() 955 } else if field in visit_bytes() [all...] |
| /arkcompiler/runtime_core/static_core/disassembler/ |
| H A D | disassembler.h | 102 void GetField(pandasm::Field &field, const panda_file::FieldDataAccessor &fieldAccessor); 124 void GetMetaData(pandasm::Field *field, const panda_file::File::EntityId &fieldId) const;
|
| /base/security/crypto_framework/frameworks/key/ |
| H A D | key_utils.c | 90 LOGE("Failed to allocate field memory."); in CopyEcField() 139 HcfResult res = CopyEcField(srcSpec->field, &(destSpec->field)); in CopyEccCommonSpec() 141 LOGE("Failed to allocate field data memory"); in CopyEccCommonSpec() 147 LOGE("Failed to allocate field data memory"); in CopyEccCommonSpec()
|
| /base/telephony/sms_mms/frameworks/native/mms/src/ |
| H A D | mms_content_type.cpp | 46 * wap-230-wsp-20010705-a section:8.4.2.24 Content type field section:8.4.2.1 Basic rules
92 * wap-230-wsp-20010705-a section:8.4.2.24 Content type field section:8.4.2.1 Basic rules
274 * @param field
279 bool MmsContentType::DecodeTextField(MmsDecodeBuffer &decodeBuffer, uint8_t field, int32_t &valueLength)
in DecodeTextField() argument 287 msgContentParm_.GetParamMap().insert(std::make_pair(field, str));
in DecodeTextField() 295 * wap-230-wsp-20010705-a section:8.4.2.8 Accept charset field
422 * wap-230-wsp-20010705-a section:8.4.2.8 Accept charset field
505 * wap-230-wsp-20010705-a section:8.4.2.24 Content type field section:8.4.2.1 Basic rules
|
| /base/telephony/sms_mms/services/sms/ |
| H A D | sms_wap_push_buffer.cpp | 612 std::string field = "";
in DecodeTextValue() local 614 if (!DecodeTokenText(field, fieldLength)) {
in DecodeTextValue()
|
| /foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/rust/ylong_cloud_extension/src/service_impl/ |
| H A D | types.rs | 109 for (key, field) in value.0 { in from() 110 map.insert(key, Value::from(field)); in from() 284 /// New a field instance
|
| /third_party/ffmpeg/libavcodec/ |
| H A D | amrnbdata.h | 74 #define AMR_BIT(field) (offsetof(AMRNBFrame, field)) 80 // Each field in AMRNBFrame is stored as: 81 // * one byte for the number of bits in the field 82 // * one byte for the field index 83 // * then, one byte for each bit of the field (from most-significant to least)
|
| /third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/ |
| H A D | AffixUtils.java | 76 /** Represents a literal character; the value is stored in the code point field. */ 319 NumberFormat.Field field) { in unescape() 334 length += output.insertCodePoint(position + length, typeOrCp, field); in unescape() 314 unescape( CharSequence affixPattern, FormattedStringBuilder output, int position, SymbolProvider provider, NumberFormat.Field field) unescape() argument
|
| /third_party/icu/icu4c/source/i18n/unicode/ |
| H A D | udat.h | 93 * pos.field = 1; // Same as the DateFormat::EField enum 138 * <li> Align any particular field, or find out where it is for selection 149 * <a href="https://unicode-org.github.io/icu/userguide/format_parse/datetime#date-field-symbol-table">ICU 517 * FieldPosition and UFieldPosition selector for 'G' field alignment, 518 * corresponding to the UCAL_ERA field. 524 * FieldPosition and UFieldPosition selector for 'y' field alignment, 525 * corresponding to the UCAL_YEAR field. 531 * FieldPosition and UFieldPosition selector for 'M' field alignment, 532 * corresponding to the UCAL_MONTH field. 538 * FieldPosition and UFieldPosition selector for 'd' field alignmen [all...] |
| /third_party/icu/tools/multi/proj/provider/glue/ |
| H A D | cal_fe.cpp | 57 virtual int32_t handleGetLimit(UCalendarDateFields field, ELimitType limitType) const ; \ 116 int32_t GLUE_SYM ( Calendar ) :: handleGetLimit(UCalendarDateFields field, ELimitType limitType) const { in GLUE_SYM()
|
| /third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/ |
| H A D | AffixUtils.java | 78 /** Represents a literal character; the value is stored in the code point field. */ 322 NumberFormat.Field field) { in unescape() 337 length += output.insertCodePoint(position + length, typeOrCp, field); in unescape() 317 unescape( CharSequence affixPattern, FormattedStringBuilder output, int position, SymbolProvider provider, NumberFormat.Field field) unescape() argument
|
| /third_party/icu/icu4c/source/i18n/ |
| H A D | number_affixutils.cpp | 162 const SymbolProvider &provider, Field field, UErrorCode &status) { in unescape() 179 length += output.insertCodePoint(position + length, tag.codePoint, field, status); in unescape() 161 unescape(const UnicodeString &affixPattern, FormattedStringBuilder &output, int32_t position, const SymbolProvider &provider, Field field, UErrorCode &status) unescape() argument
|
| /third_party/libdrm/freedreno/kgsl/ |
| H A D | msm_kgsl.h | 83 * This field contains the adreno revision 107 #define KGSL_MEMSTORE_OFFSET(ctxt_id, field) \ 109 offsetof(struct kgsl_devmemstore, field)) 306 * The flags field may contain a mask KGSL_CONTEXT_* values
|
| /third_party/node/test/fixtures/wpt/resources/webidl2/lib/ |
| H A D | writer.js | 120 function field(it) { function 180 field,
|
| /third_party/node/deps/v8/tools/ |
| H A D | gen-postmortem-metadata.py | 332 fields = []; # field declarations 612 field = args[1]; 628 'name': 'class_%s__%s__%s' % (klass, field, dtype), 633 # Load field offset information from objects-inl.h etc. 757 out.write('/* field information */\n');
|
| /third_party/node/deps/icu-small/source/i18n/ |
| H A D | number_affixutils.cpp | 162 const SymbolProvider &provider, Field field, UErrorCode &status) { in unescape() 179 length += output.insertCodePoint(position + length, tag.codePoint, field, status); in unescape() 161 unescape(const UnicodeString &affixPattern, FormattedStringBuilder &output, int32_t position, const SymbolProvider &provider, Field field, UErrorCode &status) unescape() argument
|
| /third_party/node/deps/icu-small/source/i18n/unicode/ |
| H A D | udat.h | 93 * pos.field = 1; // Same as the DateFormat::EField enum 138 * <li> Align any particular field, or find out where it is for selection 149 * <a href="https://unicode-org.github.io/icu/userguide/format_parse/datetime#date-field-symbol-table">ICU 517 * FieldPosition and UFieldPosition selector for 'G' field alignment, 518 * corresponding to the UCAL_ERA field. 524 * FieldPosition and UFieldPosition selector for 'y' field alignment, 525 * corresponding to the UCAL_YEAR field. 531 * FieldPosition and UFieldPosition selector for 'M' field alignment, 532 * corresponding to the UCAL_MONTH field. 538 * FieldPosition and UFieldPosition selector for 'd' field alignmen [all...] |
| /third_party/node/deps/v8/src/base/ |
| H A D | macros.h | 27 // have to make sure that only standard-layout types and simple field 29 #define OFFSET_OF(type, field) \ 30 (reinterpret_cast<intptr_t>(&(reinterpret_cast<type*>(16)->field)) - 16)
|
| /third_party/node/deps/v8/src/diagnostics/ |
| H A D | system-jit-metadata-win.h | 33 // Number of metadescriptors. Use this to find out the index of the field 84 // Creates an str_bytes which is the field name suffixed with the field type 108 // Only one field, or base case when multiple fields. 110 constexpr auto JoinFields(T1 field) { in JoinFields() argument 111 return field; in JoinFields() 123 // followed by a series of `Field` invocations for each field. 159 // The second descriptor contains the data to describe the field layout in SetMetaDescriptors()
|
| /third_party/rust/crates/cxx/gen/cmd/src/syntax/ |
| H A D | trivial.rs | 42 for field in &strct.fields { 43 if let Type::Ident(ident) = &field.ty { 174 desc: "field of", in fmt()
|