| /third_party/mesa3d/src/mesa/main/ |
| H A D | format_parser.py | 523 for field in fields: 524 if not field: 527 type = field[0] if field[0] else 'x' 529 if field[1] == 'n': 531 size = int(field[2:]) 534 size = int(field[1:]) 559 fields = [field.strip() for field in line.split(',')]
|
| /third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
| H A D | StructureHLSL.cpp | 41 for (const TField *field : fields) in Define() 44 const TType &fieldType = *field->type(); in Define() 59 string += " " + fieldTypeString + " " + DecorateField(field->name(), structure) + in Define() 141 // no padding needed, HLSL will align the field to a new register in prePadding() 161 // no padding needed, HLSL will align the field to a new register in prePadding() 178 // no padding needed, HLSL will align the field to a new register in prePadding() 315 for (const TField *field : structure.fields()) in defineVariants() 317 const TType *fieldType = field->type(); in defineVariants() 397 for (const TField *field : fields) in addStructConstructor() 399 const TType *fieldType = field in addStructConstructor() [all...] |
| /third_party/protobuf/src/google/protobuf/compiler/java/ |
| H A D | java_map_field.cc | 60 std::string TypeName(const FieldDescriptor* field, in TypeName() argument 62 if (GetJavaType(field) == JAVATYPE_MESSAGE) { in TypeName() 63 return name_resolver->GetImmutableClassName(field->message_type()); in TypeName() 64 } else if (GetJavaType(field) == JAVATYPE_ENUM) { in TypeName() 65 return name_resolver->GetImmutableClassName(field->enum_type()); in TypeName() 67 return boxed ? BoxedPrimitiveTypeName(GetJavaType(field)) in TypeName() 68 : PrimitiveTypeName(GetJavaType(field)); in TypeName() 72 std::string WireType(const FieldDescriptor* field) { in WireType() argument 74 std::string(FieldTypeName(field->type())); in WireType()
|
| H A D | java_map_field_lite.cc | 60 std::string TypeName(const FieldDescriptor* field, in TypeName() argument 62 if (GetJavaType(field) == JAVATYPE_MESSAGE) { in TypeName() 63 return name_resolver->GetImmutableClassName(field->message_type()); in TypeName() 64 } else if (GetJavaType(field) == JAVATYPE_ENUM) { in TypeName() 65 return name_resolver->GetImmutableClassName(field->enum_type()); in TypeName() 67 return boxed ? BoxedPrimitiveTypeName(GetJavaType(field)) in TypeName() 68 : PrimitiveTypeName(GetJavaType(field)); in TypeName() 72 std::string WireType(const FieldDescriptor* field) { in WireType() argument 74 std::string(FieldTypeName(field->type())); in WireType()
|
| /foundation/arkui/napi/native_engine/ |
| H A D | native_async_work.h | 63 static Outer* DereferenceOf(const Inner Outer::*field, const Inner* pointer) in DereferenceOf() 65 if (field != nullptr && pointer != nullptr) { in DereferenceOf() 66 auto fieldOffset = reinterpret_cast<uintptr_t>(&(static_cast<Outer*>(0)->*field)); in DereferenceOf()
|
| /foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/syncer/cloud/ |
| H A D | cloud_db_data_utils.cpp | 34 for (const auto &field: schema.fields) { in GenerateRecord() 35 switch (field.type) { in GenerateRecord() 58 bucket[field.colName] = std::move(value); in GenerateRecord()
|
| /third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
| H A D | BuddhistCalendar.java | 144 * @param year The value used to set the calendar's {@link #YEAR YEAR} time field. 146 * @param month The value used to set the calendar's {@link #MONTH MONTH} time field. 149 * @param date The value used to set the calendar's {@link #DATE DATE} time field. 160 * @param year The value used to set the calendar's {@link #YEAR YEAR} time field. 162 * @param month The value used to set the calendar's {@link #MONTH MONTH} time field. 165 * @param date The value used to set the calendar's {@link #DATE DATE} time field. 167 * @param hour The value used to set the calendar's {@link #HOUR_OF_DAY HOUR_OF_DAY} time field. 169 * @param minute The value used to set the calendar's {@link #MINUTE MINUTE} time field. 171 * @param second The value used to set the calendar's {@link #SECOND SECOND} time field. 233 protected int handleGetLimit(int field, in argument [all...] |
| H A D | TaiwanCalendar.java | 147 * @param year The value used to set the calendar's {@link #YEAR YEAR} time field. 149 * @param month The value used to set the calendar's {@link #MONTH MONTH} time field. 152 * @param date The value used to set the calendar's {@link #DATE DATE} time field. 163 * @param year The value used to set the calendar's {@link #YEAR YEAR} time field. 165 * @param month The value used to set the calendar's {@link #MONTH MONTH} time field. 167 * @param date The value used to set the calendar's {@link #DATE DATE} time field. 168 * @param hour The value used to set the calendar's {@link #HOUR_OF_DAY HOUR_OF_DAY} time field. 169 * @param minute The value used to set the calendar's {@link #MINUTE MINUTE} time field. 170 * @param second The value used to set the calendar's {@link #SECOND SECOND} time field. 236 protected int handleGetLimit(int field, in argument [all...] |
| /third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/ |
| H A D | TaiwanCalendar.java | 137 * @param year The value used to set the calendar's {@link #YEAR YEAR} time field. 139 * @param month The value used to set the calendar's {@link #MONTH MONTH} time field. 142 * @param date The value used to set the calendar's {@link #DATE DATE} time field. 152 * @param year The value used to set the calendar's {@link #YEAR YEAR} time field. 154 * @param month The value used to set the calendar's {@link #MONTH MONTH} time field. 156 * @param date The value used to set the calendar's {@link #DATE DATE} time field. 157 * @param hour The value used to set the calendar's {@link #HOUR_OF_DAY HOUR_OF_DAY} time field. 158 * @param minute The value used to set the calendar's {@link #MINUTE MINUTE} time field. 159 * @param second The value used to set the calendar's {@link #SECOND SECOND} time field. 221 protected int handleGetLimit(int field, in argument [all...] |
| H A D | BuddhistCalendar.java | 136 * @param year The value used to set the calendar's {@link #YEAR YEAR} time field. 138 * @param month The value used to set the calendar's {@link #MONTH MONTH} time field. 141 * @param date The value used to set the calendar's {@link #DATE DATE} time field. 151 * @param year The value used to set the calendar's {@link #YEAR YEAR} time field. 153 * @param month The value used to set the calendar's {@link #MONTH MONTH} time field. 156 * @param date The value used to set the calendar's {@link #DATE DATE} time field. 158 * @param hour The value used to set the calendar's {@link #HOUR_OF_DAY HOUR_OF_DAY} time field. 160 * @param minute The value used to set the calendar's {@link #MINUTE MINUTE} time field. 162 * @param second The value used to set the calendar's {@link #SECOND SECOND} time field. 219 protected int handleGetLimit(int field, in argument [all...] |
| /third_party/icu/icu4c/source/i18n/ |
| H A D | number_utils.h | 40 const DecimalFormatSymbols& symbols, Field field, in insertDigitFromSymbols() 43 return output.insertCodePoint(index, symbols.getCodePointZero() + digit, field, status); in insertDigitFromSymbols() 45 return output.insert(index, symbols.getConstDigitSymbol(digit), field, status); in insertDigitFromSymbols() 39 insertDigitFromSymbols(FormattedStringBuilder& output, int32_t index, int8_t digit, const DecimalFormatSymbols& symbols, Field field, UErrorCode& status) insertDigitFromSymbols() argument
|
| /third_party/jinja2/ |
| H A D | visitor.py | 62 for field, old_value in node.iter_fields(): 78 delattr(node, field) 80 setattr(node, field, new_node)
|
| /third_party/node/deps/v8/third_party/jinja2/ |
| H A D | visitor.py | 53 for field, old_value in node.iter_fields(): 69 delattr(node, field) 71 setattr(node, field, new_node)
|
| /third_party/node/tools/inspector_protocol/jinja2/ |
| H A D | visitor.py | 59 for field, old_value in node.iter_fields(): 75 delattr(node, field) 77 setattr(node, field, new_node)
|
| /third_party/node/deps/icu-small/source/i18n/ |
| H A D | number_utils.h | 40 const DecimalFormatSymbols& symbols, Field field, in insertDigitFromSymbols() 43 return output.insertCodePoint(index, symbols.getCodePointZero() + digit, field, status); in insertDigitFromSymbols() 45 return output.insert(index, symbols.getConstDigitSymbol(digit), field, status); in insertDigitFromSymbols() 39 insertDigitFromSymbols(FormattedStringBuilder& output, int32_t index, int8_t digit, const DecimalFormatSymbols& symbols, Field field, UErrorCode& status) insertDigitFromSymbols() argument
|
| /third_party/protobuf/csharp/src/Google.Protobuf.Test/ |
| H A D | IssuesTest.cs | 51 FieldDescriptor field = ItemField.Descriptor.FindFieldByName("item");
in FieldCalledItem() 52 Assert.NotNull(field);
in FieldCalledItem() 53 Assert.AreEqual(3, (int)field.Accessor.GetValue(message));
in FieldCalledItem() 70 // It is safe to use either original field name or explicitly specified json_name
in JsonNameParseTest() 110 // (which is a corner case and will most likely result in an error when trying to read value of the field
in CodedInputStream_LimitReachedRightAfterTag()
|
| /third_party/skia/third_party/externals/jinja2/ |
| H A D | visitor.py | 53 for field, old_value in node.iter_fields(): 69 delattr(node, field) 71 setattr(node, field, new_node)
|
| /third_party/skia/third_party/externals/icu/source/i18n/ |
| H A D | number_utils.h | 40 const DecimalFormatSymbols& symbols, Field field, in insertDigitFromSymbols() 43 return output.insertCodePoint(index, symbols.getCodePointZero() + digit, field, status); in insertDigitFromSymbols() 45 return output.insert(index, symbols.getConstDigitSymbol(digit), field, status); in insertDigitFromSymbols() 39 insertDigitFromSymbols(FormattedStringBuilder& output, int32_t index, int8_t digit, const DecimalFormatSymbols& symbols, Field field, UErrorCode& status) insertDigitFromSymbols() argument
|
| /third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
| H A D | LazyField.java | 105 LazyField field = entry.getValue(); in getValue() 106 if (field == null) { in getValue() 109 return field.getValue(); in getValue()
|
| /third_party/skia/experimental/tskit/bindings/ |
| H A D | extension.cpp | 87 .field("alpha", &CompoundObj::alpha) in EMSCRIPTEN_BINDINGS() 89 .field("beta", &CompoundObj::beta) in EMSCRIPTEN_BINDINGS() 91 * This field (gamma) should be documented. in EMSCRIPTEN_BINDINGS() 95 .field("gamma", &CompoundObj::gamma); in EMSCRIPTEN_BINDINGS()
|
| /third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/wpa_gui-qt4/ |
| H A D | userdatarequest.cpp | 50 field = tmp; in setParams() 72 queryField->setText(field + ":"); in setParams() 89 QString cmd = QString(WPA_CTRL_RSP) + field + '-' + in sendReply()
|
| /third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/wpa_gui-qt4/ |
| H A D | userdatarequest.cpp | 50 field = tmp; in setParams() 72 queryField->setText(field + ":"); in setParams() 89 QString cmd = QString(WPA_CTRL_RSP) + field + '-' + in sendReply()
|
| /third_party/ltp/tools/sparse/sparse-src/validation/ |
| H A D | transparent-union.c | 2 int field; member 5 int field; member
|
| /third_party/rust/crates/bindgen/bindgen/ir/ |
| H A D | comp.rs | 82 /// This is tricky and probably this field should be renamed. 135 /// Methods common to the various field types. 137 /// Get the name of this field. 140 /// Get the type of this field. 143 /// Get the comment for this field. 152 /// Get the annotations for this field. 155 /// The offset of the field (in bits) 172 /// struct. Useful for generating a Rust struct's field name for this unit 189 /// A struct representing a C++ field. 200 /// Get this field' [all...] |
| /third_party/icu/icu4c/source/test/cintltst/ |
| H A D | uformattedvaluetst.c | 25 int32_t field, 139 int32_t field, in AssertAllPartsEqual() 160 assertSuccess(AAPE_MSG("field"), &status); in AssertAllPartsEqual() 161 assertIntEquals(AAPE_MSG("field"), field, _field); in AssertAllPartsEqual() 174 assertSuccess(AAPE_MSG("integer field"), &status); in AssertAllPartsEqual() 175 assertTrue(AAPE_MSG("integer field"), in AssertAllPartsEqual() 179 assertSuccess(AAPE_MSG("compact field"), &status); in AssertAllPartsEqual() 180 assertTrue(AAPE_MSG("compact field"), in AssertAllPartsEqual() 184 assertSuccess(AAPE_MSG("date field"), in AssertAllPartsEqual() 134 AssertAllPartsEqual( const char* messagePrefix, const UConstrainedFieldPosition* ucfpos, int32_t matching, UFieldCategory category, int32_t field, int32_t start, int32_t limit, int64_t context) AssertAllPartsEqual() argument [all...] |