| /third_party/skia/src/sksl/ir/ |
| H A D | SkSLConstructorStruct.cpp | 31 // Convert each constructor argument to the struct's field type. in Convert() 34 const Type::Field& field = type.fields()[index]; in Convert() local 36 argument = field.fType->coerceExpression(std::move(argument), context); in Convert() 51 const Type::Field& field = type.fields()[index]; in arguments_match_field_types() local 52 if (argument->type() != *field.fType) { in arguments_match_field_types()
|
| /third_party/python/Lib/ctypes/test/ |
| H A D | test_struct_fields.py | 10 # 3. The type is used as field of another Structure/Union. 76 _fields_ = (("field", c_int),) 78 MyCStruct.field.__set__, 'wrong type self', 42) 81 _fields_ = (("field", c_int),) 83 MyCUnion.field.__set__, 'wrong type self', 42) 87 _fields_ = (("field", c_int),) 89 MyCStruct.field.__get__, 'wrong type self', 42) 92 _fields_ = (("field", c_int),) 94 MyCUnion.field.__get__, 'wrong type self', 42)
|
| /third_party/rust/crates/rustix/src/fs/ |
| H A D | raw_dir.rs | 132 f.field("file_name", &self.file_name()); 133 f.field("file_type", &self.file_type()); 134 f.field("ino", &self.ino()); 135 f.field("next_entry_cookie", &self.next_entry_cookie());
|
| /third_party/vk-gl-cts/framework/platform/android/ |
| H A D | tcuAndroidJNI.cpp | 53 jfieldID field = getExecServiceField(env, obj); in getExecService() local 54 return (tcu::Android::ExecService*)(deIntptr)env->GetLongField(obj, field); in getExecService() 59 jfieldID field = getExecServiceField(env, obj); in setExecService() local 60 env->SetLongField(obj, field, (jlong)(deIntptr)service); in setExecService()
|
| /third_party/python/Tools/gdb/ |
| H A D | libpython.py | 173 def field(self, name): member in PyObjectPtr 175 Get the gdb.Value for the given field within the PyObject, coping with 186 so that the "ob_size" field is located insize the "ob_base" field, and 205 Get a PyObjectPtr for the given PyObject* field within this PyObject, 208 return PyObjectPtr.from_pyobject_ptr(self.field(name)) 212 Extract the PyObject* field named "name", and write its representation 234 return PyTypeObjectPtr(self.field('ob_type')) 254 tp_name = ob_type.field('tp_name') 331 tp_name = t.field('tp_nam [all...] |
| /third_party/mesa3d/include/drm-uapi/ |
| H A D | drm_fourcc.h | 745 * 19:12 k Page Kind. This value directly maps to a field in the page 780 * Kind field 782 * Kind field 1407 * relevant for GFX9 and later and if the tile field is *_X/_T. 1426 #define AMD_FMT_MOD_SET(field, value) \ 1427 ((uint64_t)(value) << AMD_FMT_MOD_##field##_SHIFT) 1428 #define AMD_FMT_MOD_GET(field, value) \ 1429 (((value) >> AMD_FMT_MOD_##field##_SHIFT) & AMD_FMT_MOD_##field##_MASK) 1430 #define AMD_FMT_MOD_CLEAR(field) \ [all...] |
| /third_party/mesa3d/src/amd/common/ |
| H A D | sid_tables.py | 205 for field in array: 206 self.name_to_idx[field.name].append(len(self.table)) 207 self.table.append(field) 223 for field in self.table[start:end]: 224 filp.write('\t%s,\n' % (field.format(string_table, idx_table))) 309 field = Field(dbfield.name, dbfield.bits) 313 field.values.append((entry.name, entry.value)) 314 fields.append(field)
|
| /third_party/libdrm/include/drm/ |
| H A D | drm_fourcc.h | 679 * 19:12 k Page Kind. This value directly maps to a field in the page 714 * Kind field 716 * Kind field 1335 * relevant for GFX9 and later and if the tile field is *_X/_T. 1354 #define AMD_FMT_MOD_SET(field, value) \ 1355 ((uint64_t)(value) << AMD_FMT_MOD_##field##_SHIFT) 1356 #define AMD_FMT_MOD_GET(field, value) \ 1357 (((value) >> AMD_FMT_MOD_##field##_SHIFT) & AMD_FMT_MOD_##field##_MASK) 1358 #define AMD_FMT_MOD_CLEAR(field) \ [all...] |
| /third_party/node/deps/icu-small/source/i18n/unicode/ |
| H A D | ucal.h | 61 * A <code>UCalendar</code> object can produce all the time field values 75 * the Gregorian calendar, the default for a field is the same as that of the 83 * most recently set single field, will be used. 134 * <code>Calendar</code> provides an API for field "rolling", where fields 141 * adding the specified (signed) amount of time to a particular time field. 283 * of the week. This field takes values <code>SUNDAY</code>, 300 * with the <code>DAY_OF_WEEK</code> field, this uniquely specifies a day 302 * <code>WEEK_OF_YEAR</code>, this field's value does <em>not</em> depend on 394 * <code>UCAL_WEEK_OF_YEAR</code> field. This may be one greater or less 429 * Ranges from 0 to 23:59:59.999 (regardless of DST). This field behave [all...] |
| /third_party/icu/icu4c/source/i18n/unicode/ |
| H A D | ucal.h | 61 * A <code>UCalendar</code> object can produce all the time field values 75 * the Gregorian calendar, the default for a field is the same as that of the 83 * most recently set single field, will be used. 134 * <code>Calendar</code> provides an API for field "rolling", where fields 141 * adding the specified (signed) amount of time to a particular time field. 283 * of the week. This field takes values <code>SUNDAY</code>, 300 * with the <code>DAY_OF_WEEK</code> field, this uniquely specifies a day 302 * <code>WEEK_OF_YEAR</code>, this field's value does <em>not</em> depend on 394 * <code>UCAL_WEEK_OF_YEAR</code> field. This may be one greater or less 429 * Ranges from 0 to 23:59:59.999 (regardless of DST). This field behave [all...] |
| /third_party/mesa3d/src/gallium/drivers/r600/ |
| H A D | eg_debug.c | 100 const struct eg_field *field = egd_fields_table + reg->fields_offset + f; in eg_dump_reg() local 101 const int *values_offsets = egd_strings_offsets + field->values_offset; in eg_dump_reg() 102 uint32_t val = (value & field->mask) >> in eg_dump_reg() 103 (ffs(field->mask) - 1); in eg_dump_reg() 105 if (!(field->mask & field_mask)) in eg_dump_reg() 108 /* Indent the field. */ in eg_dump_reg() 113 /* Print the field. */ in eg_dump_reg() 114 fprintf(file, "%s = ", egd_strings + field->name_offset); in eg_dump_reg() 116 if (val < field->num_values && values_offsets[val] >= 0) in eg_dump_reg() 120 util_bitcount(field in eg_dump_reg() [all...] |
| /third_party/rust/crates/libc/src/unix/linux_like/android/b64/ |
| H A D | mod.rs | 161 .field("value", &self.value) in fmt() 162 // FIXME: .field("__reserved", &self.__reserved) in fmt() 190 .field("value", &self.value) in fmt() 191 // FIXME: .field("__reserved", &self.__reserved) in fmt() 223 .field("numLocks", &self.numLocks) in fmt() 224 .field("writerThreadId", &self.writerThreadId) in fmt() 225 .field("pendingReaders", &self.pendingReaders) in fmt() 226 .field("pendingWriters", &self.pendingWriters) in fmt() 227 .field("attr", &self.attr) in fmt() 228 // FIXME: .field("__reserve in fmt() [all...] |
| /third_party/skia/third_party/externals/icu/source/i18n/unicode/ |
| H A D | ucal.h | 61 * A <code>UCalendar</code> object can produce all the time field values 75 * the Gregorian calendar, the default for a field is the same as that of the 83 * most recently set single field, will be used. 134 * <code>Calendar</code> provides an API for field "rolling", where fields 141 * adding the specified (signed) amount of time to a particular time field. 283 * of the week. This field takes values <code>SUNDAY</code>, 300 * with the <code>DAY_OF_WEEK</code> field, this uniquely specifies a day 302 * <code>WEEK_OF_YEAR</code>, this field's value does <em>not</em> depend on 394 * <code>UCAL_WEEK_OF_YEAR</code> field. This may be one greater or less 429 * Ranges from 0 to 23:59:59.999 (regardless of DST). This field behave [all...] |
| /third_party/skia/src/sksl/dsl/ |
| H A D | DSLType.cpp | 265 for (const DSLField& field : fields) { in Struct() 266 if (field.fModifiers.fModifiers.fFlags != Modifiers::kNo_Flag) { in Struct() 267 String desc = field.fModifiers.fModifiers.description(); in Struct() 269 ThreadContext::ReportError("modifier '" + desc + "' is not permitted on a struct field", in Struct() 270 field.fPosition); in Struct() 273 const SkSL::Type& type = field.fType.skslType(); in Struct() 276 "' is not permitted in a struct", field.fPosition); in Struct() 278 skslFields.emplace_back(field.fModifiers.fModifiers, field.fName, &type); in Struct()
|
| /third_party/typescript/tests/baselines/reference/tsc/declarationEmit/ |
| H A D | when-same-version-is-referenced-through-source-and-another-symlinked-package-moduleCaseChange.js | 94 'package.json' does not have a 'typesVersions' field. 100 'package.json' does not have a 'typings' field. 101 'package.json' does not have a 'types' field. 102 'package.json' does not have a 'main' field. 126 'package.json' does not have a 'typesVersions' field. 132 'package.json' does not have a 'typings' field. 133 'package.json' does not have a 'types' field. 134 'package.json' does not have a 'main' field.
|
| H A D | when-same-version-is-referenced-through-source-and-another-symlinked-package.js | 94 'package.json' does not have a 'typesVersions' field. 100 'package.json' does not have a 'typings' field. 101 'package.json' does not have a 'types' field. 102 'package.json' does not have a 'main' field. 126 'package.json' does not have a 'typesVersions' field. 132 'package.json' does not have a 'typings' field. 133 'package.json' does not have a 'types' field. 134 'package.json' does not have a 'main' field.
|
| /third_party/protobuf/java/util/src/main/java/com/google/protobuf/util/ |
| H A D | FieldMaskUtil.java | 91 * Parses from a string to a FieldMask and validates all field paths. 93 * @throws IllegalArgumentException if any of the field path is invalid. 101 * Constructs a FieldMask for a list of field paths in a certain type. 103 * @throws IllegalArgumentException if any of the field path is not valid. 111 * Constructs a FieldMask for a list of field paths in a certain type. 113 * @throws IllegalArgumentException if any of the field path is not valid. 120 * Constructs a FieldMask for a list of field paths in a certain type. Does not validate the given 131 // Ignore empty field paths. in fromStringList() 144 * Constructs a FieldMask from the passed field numbers. 153 * Constructs a FieldMask from the passed field number [all...] |
| /third_party/node/deps/v8/third_party/inspector_protocol/crdtp/ |
| H A D | protocol_core.h | 35 // Registers |name| as a segment of the field path. 111 void AddField(span<char> name, const T& field) { in AddField() argument 112 serializer_.AddField(name, field); in AddField() 363 #define V8_CRDTP_DESERIALIZE_FILED_IMPL(name, field, is_optional) \ 367 return ProtocolTypeTraits<decltype(field)>::Deserialize( \ 368 __state, &static_cast<ProtocolType*>(__obj)->field); \ 385 #define V8_CRDTP_DESERIALIZE_FIELD(name, field) \ 386 V8_CRDTP_DESERIALIZE_FILED_IMPL(name, field, false) 387 #define V8_CRDTP_DESERIALIZE_FIELD_OPT(name, field) \ 388 V8_CRDTP_DESERIALIZE_FILED_IMPL(name, field, tru [all...] |
| /third_party/node/src/ |
| H A D | node_options.h | 349 bool Options::*field, 354 uint64_t Options::*field, 358 int64_t Options::*field, 362 std::string Options::*field, 366 std::vector<std::string> Options::*field, 370 HostPort Options::*field, 433 // Represents a field within `Options`. 445 // Represents a field of type T within `Options` that can be looked up 446 // as a C++ member field. 450 explicit SimpleOptionField(T Options::* field) argument 460 Lookup(std::shared_ptr<BaseOptionField> field, Options* options) const Lookup() argument 471 std::shared_ptr<BaseOptionField> field; global() member [all...] |
| /third_party/protobuf/src/google/protobuf/compiler/objectivec/ |
| H A D | objectivec_message.cc | 135 // Within the group, order by field number (provides stable ordering). in operator ()() 153 fields[i] = descriptor->field(i); in SortFieldsByNumber() 165 fields[i] = descriptor->field(i); in SortFieldsByStorageSize() 223 const FieldDescriptor* fieldDescriptor = descriptor_->field(i); in DetermineForwardDeclarations() 237 const FieldDescriptor* fieldDescriptor = descriptor_->field(i); in DetermineObjectiveCClassDefinitions() 344 const FieldDescriptor* field = descriptor_->field(i); in GenerateMessageHeader() local 345 const OneofDescriptor *oneof = field->real_containing_oneof(); in GenerateMessageHeader() 354 field_generators_.get(field).GeneratePropertyDeclaration(printer); in GenerateMessageHeader() 360 field_generators_.get(descriptor_->field( in GenerateMessageHeader() [all...] |
| /third_party/protobuf/src/google/protobuf/util/internal/ |
| H A D | utility.cc | 159 const google::protobuf::Field& field = type->fields(i); in FindFieldInTypeOrNull() local 160 if (field.name() == field_name) { in FindFieldInTypeOrNull() 161 return &field; in FindFieldInTypeOrNull() 172 const google::protobuf::Field& field = type->fields(i); in FindJsonFieldInTypeOrNull() local 173 if (field.json_name() == json_name) { in FindJsonFieldInTypeOrNull() 174 return &field; in FindJsonFieldInTypeOrNull() 185 const google::protobuf::Field& field = type->fields(i); in FindFieldInTypeByNumberOrNull() local 186 if (field.number() == number) { in FindFieldInTypeByNumberOrNull() 187 return &field; in FindFieldInTypeByNumberOrNull() 364 bool IsMap(const google::protobuf::Field& field, in IsMap() argument [all...] |
| /third_party/nghttp2/src/ |
| H A D | util.cc | 659 bool has_uri_field(const http_parser_url &u, http_parser_url_fields field) { in has_uri_field() argument 660 return u.field_set & (1 << field); in has_uri_field() 664 const http_parser_url &u2, http_parser_url_fields field) { in fieldeq() 665 if (!has_uri_field(u1, field)) { in fieldeq() 666 if (!has_uri_field(u2, field)) { in fieldeq() 671 } else if (!has_uri_field(u2, field)) { in fieldeq() 674 if (u1.field_data[field].len != u2.field_data[field].len) { in fieldeq() 677 return memcmp(uri1 + u1.field_data[field].off, in fieldeq() 678 uri2 + u2.field_data[field] in fieldeq() 663 fieldeq(const char *uri1, const http_parser_url &u1, const char *uri2, const http_parser_url &u2, http_parser_url_fields field) fieldeq() argument 681 fieldeq(const char *uri, const http_parser_url &u, http_parser_url_fields field, const char *t) fieldeq() argument 686 fieldeq(const char *uri, const http_parser_url &u, http_parser_url_fields field, const StringRef &t) fieldeq() argument 695 get_uri_field(const char *uri, const http_parser_url &u, http_parser_url_fields field) get_uri_field() argument 724 write_uri_field(std::ostream &o, const char *uri, const http_parser_url &u, http_parser_url_fields field) write_uri_field() argument [all...] |
| /third_party/skia/third_party/externals/angle2/src/compiler/translator/TranslatorMetalDirect/ |
| H A D | RewritePipelines.cpp | 252 auto *field = new TField(&type, var->name(), kNoSourceLoc, var->symbolType()); in createInternalPipelineStruct() local 253 mSymbolEnv.markAsPointer(*field, AddressSpace::Constant); in createInternalPipelineStruct() 254 mSymbolEnv.markAsUBO(*field); in createInternalPipelineStruct() 256 fields.push_back(field); in createInternalPipelineStruct() 269 auto *field = new TField(&type, var->name(), kNoSourceLoc, var->symbolType()); in createInternalPipelineStruct() local 270 fields.push_back(field); in createInternalPipelineStruct() 405 for (const TField *field : mPipelineStruct.external->fields()) in getUpdatedFunction() 407 variables.push_back(new TVariable(&mSymbolTable, field->name(), field->type(), in getUpdatedFunction() 408 field in getUpdatedFunction() [all...] |
| /third_party/icu/icu4c/source/i18n/ |
| H A D | ufieldpositer.cpp | 47 int32_t field = -1; in ufieldpositer_next() local 49 field = fp.getField(); in ufieldpositer_next() 57 return field; in ufieldpositer_next()
|
| /third_party/node/deps/icu-small/source/i18n/ |
| H A D | ufieldpositer.cpp | 47 int32_t field = -1; in ufieldpositer_next() local 49 field = fp.getField(); in ufieldpositer_next() 57 return field; in ufieldpositer_next()
|