| /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()
|
| H A D | types.rs | 85 for field in &strct.fields { 86 visit(&mut all, &field.ty);
|
| /third_party/rust/crates/cxx/gen/lib/src/syntax/ |
| H A D | types.rs | 85 for field in &strct.fields { 86 visit(&mut all, &field.ty);
|
| 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()
|
| /third_party/rust/crates/cxx/gen/build/src/syntax/ |
| H A D | types.rs | 85 for field in &strct.fields { 86 visit(&mut all, &field.ty);
|
| 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()
|
| /third_party/rust/crates/cxx/syntax/ |
| H A D | types.rs | 85 for field in &strct.fields { 86 visit(&mut all, &field.ty);
|
| 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()
|
| /third_party/skia/third_party/externals/angle2/src/compiler/translator/TranslatorMetalDirect/ |
| H A D | ToposortStructs.cpp | 285 for (const TField *field : structure.fields()) in useStruct() 287 if (const TStructure *subStruct = mSymbolEnv.remap(field->type()->getStruct())) in useStruct()
|
| /third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/d3d/ |
| H A D | RecordUniformBlocksWithLargeArrayMember.cpp | 125 static bool FieldIsOrHasLargeArrayField(const TField &field) in FieldIsOrHasLargeArrayField() argument 127 const TType *type = field.type(); in FieldIsOrHasLargeArrayField()
|
| /third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_util/ |
| H A D | IntermNode_util.cpp | 107 for (const auto &field : structure->fields()) in CreateZeroNode() 109 arguments.push_back(CreateZeroNode(*field->type())); in CreateZeroNode()
|
| /third_party/skia/third_party/externals/icu/source/i18n/ |
| H A D | number_affixutils.cpp | 160 const SymbolProvider &provider, Field field, UErrorCode &status) { in unescape() 177 length += output.insertCodePoint(position + length, tag.codePoint, field, status); in unescape() 159 unescape(const UnicodeString &affixPattern, FormattedStringBuilder &output, int32_t position, const SymbolProvider &provider, Field field, UErrorCode &status) unescape() argument
|
| /third_party/skia/third_party/externals/icu/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/skia/third_party/externals/freetype/src/gxvalid/ |
| H A D | gxvcommn.h | 267 #define GXV_TABLE_DATA( tag, field ) \ 268 ( ( (GXV_ ## tag ## _Data)gxvalid->table_data )->field )
|
| /third_party/rust/crates/cxx/macro/src/syntax/ |
| H A D | types.rs | 85 for field in &strct.fields { 86 visit(&mut all, &field.ty);
|
| 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()
|
| /third_party/skia/include/sksl/ |
| H A D | DSLExpression.h | 119 * Creates an SkSL struct field access expression. 121 DSLExpression field(skstd::string_view name, PositionInfo pos = PositionInfo::Capture()); 261 DSLExpression field(skstd::string_view name, PositionInfo pos = PositionInfo::Capture());
|
| H A D | DSLVar.h | 94 DSLExpression field(skstd::string_view name) { in field() function in SkSL::VariableStorage::DSLVarBase 95 return DSLExpression(*this, PositionInfo()).field(name); in field() 123 // predefined variables this field is unnecessary, so we don't bother tracking it and just set 124 // it to kVoid; in other words, you shouldn't generally be relying on this field to be correct.
|
| /third_party/rust/crates/syn/codegen/src/ |
| H A D | fold.rs | 140 for (field, ty) in fields { in node() 141 let id = Ident::new(field, Span::call_site()); in node()
|
| H A D | visit_mut.rs | 156 for (field, ty) in fields { in node() 157 let id = Ident::new(field, Span::call_site()); in node()
|
| /third_party/rust/crates/syn/src/ |
| H A D | error.rs | 355 .field(&self.messages[0]) in fmt() 360 .field(&self.messages) in fmt()
|
| /third_party/zlib/contrib/pascal/ |
| H A D | zlibpas.pas | 55 extra: PChar; (* pointer to extra field or Z_NULL if none *) 56 extra_len: Integer; (* extra field length (valid if extra != Z_NULL) *)
|
| /arkcompiler/runtime_core/assembler/ |
| H A D | assembly-emitter.cpp | 761 SetLastError("External record " + name + " has a non-external field " + f.name); in HandleRecordAsForeign() 769 auto *field = items->CreateItem<ForeignFieldItem>(foreign_record, field_name, type_item); in HandleRecordAsForeign() local 770 entities.field_items.insert({full_field_name, field}); in HandleRecordAsForeign() 835 BaseFieldItem *field; in HandleFields() local 837 field = items->CreateItem<ForeignFieldItem>(record, field_name, type_item); in HandleFields() 839 field = record->AddField(field_name, type_item, f.metadata->GetAccessFlags()); in HandleFields() 841 entities.field_items.insert({full_field_name, field}); in HandleFields() 1092 SetLastError("Duplicated array type field {" + field_name + "} is not supported."); in CheckDuplicateField() 1106 for (const auto &field : record.field_list) { in FillFields() 1107 auto field_name = record.name + "." + field in FillFields() [all...] |