Home
last modified time | relevance | path

Searched refs:field (Results 701 - 725 of 1938) sorted by relevance

1...<<21222324252627282930>>...78

/third_party/rust/crates/libc/src/unix/linux_like/android/b32/
H A Darm.rs74 .field("uc_sigmask_with_padding", &self.uc_sigmask) in fmt()
95 .field("uc_sigmask", unsafe { &self.uc_sigmask }) in fmt()
114 // Ignore padding field in eq()
121 .field("uc_flags", &self.uc_flags) in fmt()
122 .field("uc_link", &self.uc_link) in fmt()
123 .field("uc_stack", &self.uc_stack) in fmt()
124 .field("uc_mcontext", &self.uc_mcontext) in fmt()
125 .field( in fmt()
129 .field("uc_regspace", &&self.uc_regspace[..]) in fmt()
130 // Ignore padding field in fmt()
[all...]
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
H A DShaderVars.cpp218 for (const auto &field : fields) in getExternalSize()
220 memorySize += field.getExternalSize(); in getExternalSize()
315 // If this is a shader I/O block without an instance name, return the field given only the in findField()
316 // field name. in findField()
338 for (size_t field = 0; field < fields.size(); ++field) in findField()
340 if (fields[field].name == fieldName) in findField()
342 *fieldIndexOut = static_cast<GLuint>(field); in findField()
343 return &fields[field]; in findField()
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DUFieldPosition.java38 public UFieldPosition(int field) { in UFieldPosition() argument
39 super(field); in UFieldPosition()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DUFieldPosition.java40 public UFieldPosition(int field) { in UFieldPosition() argument
41 super(field); in UFieldPosition()
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H A DUninitializedMessageException.java66 * full path to a field, e.g. "foo.bar[5].baz". Returns null if the lite runtime was used, since
86 for (final String field : missingFields) { in buildDescription()
92 description.append(field); in buildDescription()
/third_party/rust/crates/libc/src/unix/linux_like/android/
H A Dmod.rs602 .field("nl_family", &self.nl_family) in fmt()
603 .field("nl_pid", &self.nl_pid) in fmt()
604 .field("nl_groups", &self.nl_groups) in fmt()
635 .field("d_ino", &self.d_ino) in fmt()
636 .field("d_off", &self.d_off) in fmt()
637 .field("d_reclen", &self.d_reclen) in fmt()
638 .field("d_type", &self.d_type) in fmt()
639 // FIXME: .field("d_name", &self.d_name) in fmt()
673 .field("d_ino", &self.d_ino) in fmt()
674 .field("d_of in fmt()
[all...]
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
H A DGeneratedMessageTest.java93 FieldDescriptor field = in testGetFieldBuilderForExtensionField()
95 fieldBuilder.setField(field, expected); in testGetFieldBuilderForExtensionField()
102 fieldBuilder.setField(field, expected); in testGetFieldBuilderForExtensionField()
116 FieldDescriptor field = in testGetFieldBuilderWithExistingMessage()
118 fieldBuilder.setField(field, expected); in testGetFieldBuilderWithExistingMessage()
125 fieldBuilder.setField(field, expected); in testGetFieldBuilderWithExistingMessage()
139 FieldDescriptor field = in testGetFieldBuilderWithExistingBuilder()
141 fieldBuilder.setField(field, expected); in testGetFieldBuilderWithExistingBuilder()
155 fieldBuilder.setField(field, expected); in testGetFieldBuilderWithExistingBuilder()
170 FieldDescriptor field in testGetRepeatedFieldBuilderForExtensionField()
[all...]
H A DDescriptorsTest.java164 FieldDescriptor field = messageType.getFields().get(0); in testDescriptor()
165 assertEquals("optional_int32", field.getName()); in testDescriptor()
166 assertEquals(field, messageType.findFieldByName("optional_int32")); in testDescriptor()
168 assertEquals(field, messageType.findFieldByNumber(1)); in testDescriptor()
342 .findFieldByName("field") in testCustomOptions()
350 FieldDescriptor field = descriptor.findFieldByName("field1"); in testCustomOptions()
351 assertNotNull(field); in testCustomOptions()
353 assertTrue(field.getOptions().hasExtension(UnittestCustomOptions.fieldOpt1)); in testCustomOptions()
356 field.getOptions().getExtension(UnittestCustomOptions.fieldOpt1)); in testCustomOptions()
450 * Tests the translate/crosslink for an example where a message field'
[all...]
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/src/relational/
H A Drelational_schema_object.cpp701 for (const auto &field : tableFields) {
702 if (field.second != FieldType::INTERNAL_FIELD_OBJECT) {
704 SchemaUtils::FieldTypeString(field.second).c_str());
709 errCode = inJsonObject.GetObjectByFieldPath(field.first, fieldObj);
711 LOGE("[RelationalSchema][Parse] Get table field object failed. %d", errCode);
715 if (!DBCommon::CheckIsAlnumOrUnderscore(field.first[1])) {
716 LOGE("[RelationalSchema][Parse] Invalid characters in field name, err=%d.", errCode);
721 fieldInfo.SetFieldName(field.first[1]); // 1 : table name element in path
722 errCode = ParseCheckTableFieldInfo(fieldObj, field.first, fieldInfo);
724 LOGE("[RelationalSchema][Parse] Parse table field inf
[all...]
/third_party/icu/icu4c/source/common/
H A Dputil.cpp2288 uint8_t field; local
2308 /* write the decimal field value */
2309 field=versionArray[0];
2310 if(field>=100) {
2311 *versionString++=(char)('0'+field/100);
2312 field%=100;
2314 if(field>=10) {
2315 *versionString++=(char)('0'+field/10);
2316 field%=10;
2318 *versionString++=(char)('0'+field);
[all...]
/third_party/node/deps/icu-small/source/common/
H A Dputil.cpp2303 uint8_t field; local
2323 /* write the decimal field value */
2324 field=versionArray[0];
2325 if(field>=100) {
2326 *versionString++=(char)('0'+field/100);
2327 field%=100;
2329 if(field>=10) {
2330 *versionString++=(char)('0'+field/10);
2331 field%=10;
2333 *versionString++=(char)('0'+field);
[all...]
/third_party/skia/third_party/externals/icu/source/common/
H A Dputil.cpp2279 uint8_t field; local
2299 /* write the decimal field value */
2300 field=versionArray[0];
2301 if(field>=100) {
2302 *versionString++=(char)('0'+field/100);
2303 field%=100;
2305 if(field>=10) {
2306 *versionString++=(char)('0'+field/10);
2307 field%=10;
2309 *versionString++=(char)('0'+field);
[all...]
/third_party/icu/icu4c/source/test/cintltst/
H A Dudatpg_test.c133 UDateTimePatternField field; member
229 for (appItemNameDataPtr = appendItemNameData; appItemNameDataPtr->field < UDATPG_FIELD_COUNT; appItemNameDataPtr++) { in TestUsage()
231 const UChar * namePtr = udatpg_getAppendItemName(dtpg, appItemNameDataPtr->field, &nameLength); in TestUsage()
233 log_err("udatpg_getAppendItemName returns invalid name for field %d\n", (int)appItemNameDataPtr->field); in TestUsage()
305 /* replace field type */ in TestBuilder()
458 UDateTimePatternField field; member
466 /*loc field width expectedName */ in TestGetFieldDisplayNames()
493 int32_t getLen = udatpg_getFieldDisplayName(dtpgen, testDataPtr->field, testDataPtr->width, in TestGetFieldDisplayNames()
496 log_err("ERROR udatpg_getFieldDisplayName locale %s field in TestGetFieldDisplayNames()
[all...]
/third_party/node/deps/v8/src/builtins/
H A Dbuiltins-temporal.cc447 #define TEMPORAL_GET_SMI(T, METHOD, field) \
450 const char* method = "get Temporal." #T ".prototype." #field; \
452 return Smi::FromInt(obj->field()); \
463 #define TEMPORAL_GET(T, METHOD, field) \
466 const char* method = "get Temporal." #T ".prototype." #field; \
468 return obj->field(); \
471 #define TEMPORAL_GET_NUMBER_AFTER_DIVID(T, M, field, scale, name) \
479 BigInt::Divide(isolate, Handle<BigInt>(handle->field(), isolate), \
486 #define TEMPORAL_GET_BIGINT_AFTER_DIVID(T, M, field, scale, name) \
494 BigInt::Divide(isolate, Handle<BigInt>(handle->field(), isolat
[all...]
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/storage/
H A Ddistributeddb_relational_schema_analysis_test.cpp196 for (const auto &field : fieldInfos) { in HWTEST_F()
197 if (index < 7) { // 7 is field index in HWTEST_F()
198 EXPECT_EQ(field.GetStorageType(), StorageType::STORAGE_TYPE_BLOB); // asset and assets affinity blob in HWTEST_F()
200 EXPECT_EQ(field.GetStorageType(), StorageType::STORAGE_TYPE_NULL); // asset and assets affinity blob in HWTEST_F()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
H A DConstantMultiFieldModifier.java79 public boolean containsField(Field field) { in containsField() argument
81 if (prefixFields[i] == field) { in containsField()
86 if (suffixFields[i] == field) { in containsField()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DEthiopicCalendar.java146 // Amete Mihret won't be used for the ERA field.
223 * @param year The value used to set the calendar's {@link #YEAR YEAR} time field.
224 * @param month The value used to set the calendar's {@link #MONTH MONTH} time field.
226 * @param date The value used to set the calendar's {@link #DATE DATE} time field.
248 * @param year The value used to set the calendar's {@link #YEAR YEAR} time field.
249 * @param month The value used to set the calendar's {@link #MONTH MONTH} time field.
251 * @param date The value used to set the calendar's {@link #DATE DATE} time field.
252 * @param hour The value used to set the calendar's {@link #HOUR_OF_DAY HOUR_OF_DAY} time field.
253 * @param minute The value used to set the calendar's {@link #MINUTE MINUTE} time field.
254 * @param second The value used to set the calendar's {@link #SECOND SECOND} time field
367 handleGetLimit(int field, int limitType) handleGetLimit() argument
[all...]
/third_party/icu/icu4c/source/i18n/unicode/
H A Duformattedvalue.h23 * All possible field categories in ICU. Every entry in this enum corresponds
36 * For an undefined field category.
108 * Represents a span of a string containing a given field.
112 * 1. It has information on the field category.
113 * 2. It allows you to set constraints to use when iterating over field positions.
160 * Sets a constraint on the field category.
172 * // handle the number-related field position
180 * @param category The field category to fix when iterating.
192 * Sets a constraint on the category and field.
195 * positions are skipped unless they have the given category and field
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/
H A DEthiopicCalendar.java133 // Amete Mihret won't be used for the ERA field.
204 * @param year The value used to set the calendar's {@link #YEAR YEAR} time field.
205 * @param month The value used to set the calendar's {@link #MONTH MONTH} time field.
207 * @param date The value used to set the calendar's {@link #DATE DATE} time field.
227 * @param year The value used to set the calendar's {@link #YEAR YEAR} time field.
228 * @param month The value used to set the calendar's {@link #MONTH MONTH} time field.
230 * @param date The value used to set the calendar's {@link #DATE DATE} time field.
231 * @param hour The value used to set the calendar's {@link #HOUR_OF_DAY HOUR_OF_DAY} time field.
232 * @param minute The value used to set the calendar's {@link #MINUTE MINUTE} time field.
233 * @param second The value used to set the calendar's {@link #SECOND SECOND} time field
338 handleGetLimit(int field, int limitType) handleGetLimit() argument
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/
H A DConstantMultiFieldModifier.java81 public boolean containsField(Field field) { in containsField() argument
83 if (prefixFields[i] == field) { in containsField()
88 if (suffixFields[i] == field) { in containsField()
/third_party/icu/icu4c/source/i18n/
H A Dethpccal.cpp131 EthiopicCalendar::handleGetLimit(UCalendarDateFields field, ELimitType limitType) const in handleGetLimit() argument
133 if (isAmeteAlemEra() && field == UCAL_ERA) { in handleGetLimit()
136 return CECalendar::handleGetLimit(field, limitType); in handleGetLimit()
H A Dtaiwncal.cpp99 int32_t TaiwanCalendar::handleGetLimit(UCalendarDateFields field, ELimitType limitType) const in handleGetLimit() argument
101 if(field == UCAL_ERA) { in handleGetLimit()
108 return GregorianCalendar::handleGetLimit(field,limitType); in handleGetLimit()
H A Dbuddhcal.cpp96 int32_t BuddhistCalendar::handleGetLimit(UCalendarDateFields field, ELimitType limitType) const in handleGetLimit() argument
98 if(field == UCAL_ERA) { in handleGetLimit()
101 return GregorianCalendar::handleGetLimit(field,limitType); in handleGetLimit()
/third_party/mesa3d/.gitlab-ci/lava/utils/
H A Dgitlab_section.py4 from dataclasses import dataclass, field namespace
22 __start_time: Optional[datetime] = field(default=None, init=False)
23 __end_time: Optional[datetime] = field(default=None, init=False)
/third_party/node/deps/icu-small/source/i18n/
H A Dbuddhcal.cpp89 int32_t BuddhistCalendar::handleGetLimit(UCalendarDateFields field, ELimitType limitType) const in handleGetLimit() argument
91 if(field == UCAL_ERA) { in handleGetLimit()
94 return GregorianCalendar::handleGetLimit(field,limitType); in handleGetLimit()

Completed in 30 milliseconds

1...<<21222324252627282930>>...78