Home
last modified time | relevance | path

Searched refs:field (Results 326 - 350 of 2003) sorted by relevance

1...<<11121314151617181920>>...81

/foundation/multimedia/media_library/interfaces/inner_api/media_library_helper/include/
H A Dresult_set_utils.h129 static inline std::string GetStringVal(const std::string &field, const ResultSet &result) in GetStringVal() argument
131 return get<std::string>(ResultSetUtils::GetValFromColumn(field, result, TYPE_STRING)); in GetStringVal()
134 static inline int32_t GetInt32Val(const std::string &field, const ResultSet &result) in GetInt32Val() argument
136 return get<int32_t>(ResultSetUtils::GetValFromColumn(field, result, TYPE_INT32)); in GetInt32Val()
139 static inline int64_t GetInt64Val(const std::string &field, const ResultSet &result) in GetInt64Val() argument
141 return get<int64_t>(ResultSetUtils::GetValFromColumn(field, result, TYPE_INT64)); in GetInt64Val()
144 static inline double GetDoubleVal(const std::string &field, const ResultSet &result) in GetDoubleVal() argument
146 return get<double>(ResultSetUtils::GetValFromColumn(field, result, TYPE_DOUBLE)); in GetDoubleVal()
/third_party/rust/crates/libc/src/unix/bsd/netbsdlike/openbsd/
H A Dx86_64.rs63 // `fxsave64` is packed, so field access is unaligned.
64 // use {x} to create temporary storage, copy field to it, and do aligned access.
83 .field("fx_fcw", &{self.fx_fcw}) in fmt()
84 .field("fx_fsw", &{self.fx_fsw}) in fmt()
85 .field("fx_ftw", &{self.fx_ftw}) in fmt()
86 .field("fx_fop", &{self.fx_fop}) in fmt()
87 .field("fx_rip", &{self.fx_rip}) in fmt()
88 .field("fx_rdp", &{self.fx_rdp}) in fmt()
89 .field("fx_mxcsr", &{self.fx_mxcsr}) in fmt()
90 .field("fx_mxcsr_mas in fmt()
[all...]
/foundation/distributeddatamgr/relational_store/frameworks/cj/include/
H A Drelational_store_ffi.h86 FFI_EXPORT int32_t FfiOHOSRelationalStoreContains(int64_t id, const char* field, const char* value);
88 FFI_EXPORT int32_t FfiOHOSRelationalStoreBeginsWith(int64_t id, const char* field, const char* value);
90 FFI_EXPORT int32_t FfiOHOSRelationalStoreEndsWith(int64_t id, const char* field, const char* value);
92 FFI_EXPORT int32_t FfiOHOSRelationalStoreIsNull(int64_t id, const char* field);
94 FFI_EXPORT int32_t FfiOHOSRelationalStoreIsNotNull(int64_t id, const char* field);
96 FFI_EXPORT int32_t FfiOHOSRelationalStoreLike(int64_t id, const char* field, const char* value);
98 FFI_EXPORT int32_t FfiOHOSRelationalStoreGlob(int64_t id, const char* field, const char* value);
100 FFI_EXPORT int32_t FfiOHOSRelationalStoreOrderByAsc(int64_t id, const char* field);
102 FFI_EXPORT int32_t FfiOHOSRelationalStoreOrderByDesc(int64_t id, const char* field);
112 FFI_EXPORT int32_t FfiOHOSRelationalStoreIndexedBy(int64_t id, const char* field);
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DFormattedStringBuilder.java125 public int appendChar16(char codeUnit, Object field) { in appendChar16() argument
126 return insertChar16(length - appendOffset, codeUnit, field); in appendChar16()
129 public int insertChar16(int index, char codeUnit, Object field) { in insertChar16() argument
133 fields[position] = field; in insertChar16()
142 public int appendCodePoint(int codePoint, Object field) { in appendCodePoint() argument
143 return insertCodePoint(length - appendOffset, codePoint, field); in appendCodePoint()
151 public int insertCodePoint(int index, int codePoint, Object field) { in insertCodePoint() argument
155 fields[position] = field; in insertCodePoint()
157 fields[position + 1] = field; in insertCodePoint()
166 public int append(CharSequence sequence, Object field) { in append() argument
175 insert(int index, CharSequence sequence, Object field) insert() argument
194 insert(int index, CharSequence sequence, int start, int end, Object field) insert() argument
212 splice( int startThis, int endThis, CharSequence sequence, int startOther, int endOther, Object field) splice() argument
490 setAppendableField(Object field) setAppendableField() argument
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DDateIntervalFormat.java80 * only keeps the field pattern letter and ignores all other parts
85 * might hide a field's pattern letter length.
89 * and the field's pattern letter length is honored.
92 * the field pattern length is ignored and the best match, which is defined
93 * in date time patterns, will be returned without honor the field pattern
106 * first different calendar field in above order.
121 * in en_US, if the largest different calendar field between date1 and date2
124 * If the largest different calendar field between date1 and date2 is "month",
127 * If the largest different calendar field between date1 and date2 is "day",
197 * For the calendar field patter
1583 genFallbackPattern(int field, String skeleton, Map<String, PatternInfo> intervalPatterns, DateTimePatternGenerator dtpng) genFallbackPattern() argument
1980 genIntervalPattern( int field, String skeleton, String bestSkeleton, int differenceInfo, Map<String, PatternInfo> intervalPatterns) genIntervalPattern() argument
2279 concatSingleDate2TimeInterval(String dtfmt, String datePattern, int field, Map<String, PatternInfo> intervalPatterns) concatSingleDate2TimeInterval() argument
2308 fieldExistsInSkeleton(int field, String skeleton) fieldExistsInSkeleton() argument
[all...]
H A DDateTimePatternGenerator.java203 // keep this pattern to populate other time field in consumeShortTimePattern()
216 int field = getAppendFormatNumber(key); in put()
217 if (field < 0) { return; } in put()
218 if (getAppendItemFormat(field) == null) { in put()
219 setAppendItemFormat(field, value.toString()); in put()
229 int field = fieldAndWidth / DisplayWidth.COUNT; in put()
233 if (getFieldDisplayName(field, width) == null) { in put()
234 setFieldDisplayName(field, width, value.toString()); in put()
654 // we have a good item. Adjust the field types in getBestPattern()
704 // 1,3,5 => hour field lengt in mapSkeletonMetacharacters()
1381 setAppendItemFormat(int field, String value) setAppendItemFormat() argument
1394 getAppendItemFormat(int field) getAppendItemFormat() argument
1409 setAppendItemName(int field, String value) setAppendItemName() argument
1423 getAppendItemName(int field) getAppendItemName() argument
1452 setFieldDisplayName(int field, DisplayWidth width, String value) setFieldDisplayName() argument
1468 getFieldDisplayName(int field, DisplayWidth width) getFieldDisplayName() argument
2487 getCanonicalChar(int field, char reference) getCanonicalChar() argument
2625 copyFieldFrom(SkeletonFields other, int field) copyFieldFrom() argument
2630 clearField(int field) clearField() argument
2635 getFieldChar(int field) getFieldChar() argument
2639 getFieldLength(int field) getFieldLength() argument
2643 populate(int field, String value) populate() argument
2652 populate(int field, char ch, int length) populate() argument
2660 isFieldEmpty(int field) isFieldEmpty() argument
2697 appendFieldTo(int field, StringBuilder sb) appendFieldTo() argument
2701 appendFieldTo(int field, StringBuilder sb, boolean canonical) appendFieldTo() argument
2752 fieldIsNumeric(int field) fieldIsNumeric() argument
2946 addMissing(int field) addMissing() argument
2949 addExtra(int field) addExtra() argument
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DDateIntervalFormat.java81 * only keeps the field pattern letter and ignores all other parts
86 * might hide a field's pattern letter length.
90 * and the field's pattern letter length is honored.
93 * the field pattern length is ignored and the best match, which is defined
94 * in date time patterns, will be returned without honor the field pattern
107 * first different calendar field in above order.
122 * in en_US, if the largest different calendar field between date1 and date2
125 * If the largest different calendar field between date1 and date2 is "month",
128 * If the largest different calendar field between date1 and date2 is "day",
198 * For the calendar field patter
1491 genFallbackPattern(int field, String skeleton, Map<String, PatternInfo> intervalPatterns, DateTimePatternGenerator dtpng) genFallbackPattern() argument
1807 genIntervalPattern( int field, String skeleton, String bestSkeleton, int differenceInfo, Map<String, PatternInfo> intervalPatterns) genIntervalPattern() argument
2024 concatSingleDate2TimeInterval(String dtfmt, String datePattern, int field, Map<String, PatternInfo> intervalPatterns) concatSingleDate2TimeInterval() argument
2053 fieldExistsInSkeleton(int field, String skeleton) fieldExistsInSkeleton() argument
[all...]
H A DDateTimePatternGenerator.java176 // keep this pattern to populate other time field in consumeShortTimePattern()
191 int field = getAppendFormatNumber(key); in put()
192 assert field != -1; in put()
193 if (getAppendItemFormat(field) == null) { in put()
194 setAppendItemFormat(field, value.toString()); in put()
214 int field = fieldAndWidth / DisplayWidth.COUNT; in put()
219 if (getFieldDisplayName(field, width) == null) { in put()
220 setFieldDisplayName(field, width, value.toString()); in put()
633 // we have a good item. Adjust the field types in getBestPattern()
665 // 1,3,5 => hour field lengt in mapSkeletonMetacharacters()
1250 setAppendItemFormat(int field, String value) setAppendItemFormat() argument
1262 getAppendItemFormat(int field) getAppendItemFormat() argument
1276 setAppendItemName(int field, String value) setAppendItemName() argument
1289 getAppendItemName(int field) getAppendItemName() argument
1318 setFieldDisplayName(int field, DisplayWidth width, String value) setFieldDisplayName() argument
1333 getFieldDisplayName(int field, DisplayWidth width) getFieldDisplayName() argument
2349 getCanonicalChar(int field, char reference) getCanonicalChar() argument
2487 copyFieldFrom(SkeletonFields other, int field) copyFieldFrom() argument
2492 clearField(int field) clearField() argument
2497 getFieldChar(int field) getFieldChar() argument
2501 getFieldLength(int field) getFieldLength() argument
2505 populate(int field, String value) populate() argument
2514 populate(int field, char ch, int length) populate() argument
2522 isFieldEmpty(int field) isFieldEmpty() argument
2559 appendFieldTo(int field, StringBuilder sb) appendFieldTo() argument
2563 appendFieldTo(int field, StringBuilder sb, boolean canonical) appendFieldTo() argument
2614 fieldIsNumeric(int field) fieldIsNumeric() argument
2810 addMissing(int field) addMissing() argument
2813 addExtra(int field) addExtra() argument
[all...]
/third_party/protobuf/csharp/src/Google.Protobuf/Reflection/
H A DMessageDescriptor.cs111 (field, index) => in MessageDescriptor()
112 new FieldDescriptor(field, file, this, index, generatedCodeInfo?.PropertyNames[index], null)); in MessageDescriptor()
113 fieldsInNumberOrder = new ReadOnlyCollection<FieldDescriptor>(fieldsInDeclarationOrder.OrderBy(field => field.FieldNumber).ToArray()); in MessageDescriptor()
114 // TODO: Use field => field.Proto.JsonName when we're confident it's appropriate. (And then use it in the formatter, too.) in MessageDescriptor()
123 foreach (var field in fields) in CreateJsonFieldMap()
125 map[field.Name] = field; in CreateJsonFieldMap()
126 map[field in CreateJsonFieldMap()
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/
H A Dwpa_helpers.c163 int get_wpa_status(const char *ifname, const char *field, char *obuf, in get_wpa_status() argument
183 flen = strlen(field); in get_wpa_status()
193 if (strncmp(pos, field, flen) != 0 || pos[flen] != '=') { in get_wpa_status()
250 int set_network(const char *ifname, int id, const char *field, in set_network() argument
254 snprintf(buf, sizeof(buf), "SET_NETWORK %d %s %s", id, field, value); in set_network()
259 int set_network_quoted(const char *ifname, int id, const char *field, in set_network_quoted() argument
264 id, field, value); in set_network_quoted()
279 int set_cred(const char *ifname, int id, const char *field, const char *value) in set_cred() argument
282 snprintf(buf, sizeof(buf), "SET_CRED %d %s %s", id, field, value); in set_cred()
287 int set_cred_quoted(const char *ifname, int id, const char *field, in set_cred_quoted() argument
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/common/
H A Dwpa_helpers.c163 int get_wpa_status(const char *ifname, const char *field, char *obuf, in get_wpa_status() argument
183 flen = strlen(field); in get_wpa_status()
193 if (strncmp(pos, field, flen) != 0 || pos[flen] != '=') { in get_wpa_status()
250 int set_network(const char *ifname, int id, const char *field, in set_network() argument
254 snprintf(buf, sizeof(buf), "SET_NETWORK %d %s %s", id, field, value); in set_network()
259 int set_network_quoted(const char *ifname, int id, const char *field, in set_network_quoted() argument
264 id, field, value); in set_network_quoted()
279 int set_cred(const char *ifname, int id, const char *field, const char *value) in set_cred() argument
282 snprintf(buf, sizeof(buf), "SET_CRED %d %s %s", id, field, value); in set_cred()
287 int set_cred_quoted(const char *ifname, int id, const char *field, in set_cred_quoted() argument
[all...]
/third_party/python/Lib/
H A Dmailcap.py133 field, i = parsefield(line, i, n)
134 fields.append(field)
140 for field in rest:
141 i = field.find('=')
143 fkey = field
146 fkey = field[:i].strip()
147 fvalue = field[i+1:].strip()
211 def subst(field, MIMEtype, filename, plist=[]):
214 i, n = 0, len(field)
216 c = field[
[all...]
/foundation/distributeddatamgr/kv_store/frameworks/cj/src/
H A Ddistributed_kv_store_ffi.cpp400 void FfiOHOSDistributedKVStoreQueryEqualTo(int64_t id, const char* field, ValueType value) in FfiOHOSDistributedKVStoreQueryEqualTo() argument
406 return instance->EqualTo(field, value); in FfiOHOSDistributedKVStoreQueryEqualTo()
409 void FfiOHOSDistributedKVStoreQueryNotEqualTo(int64_t id, const char* field, ValueType value) in FfiOHOSDistributedKVStoreQueryNotEqualTo() argument
415 return instance->NotEqualTo(field, value); in FfiOHOSDistributedKVStoreQueryNotEqualTo()
418 void FfiOHOSDistributedKVStoreQueryGreaterThan(int64_t id, const char* field, ValueType value) in FfiOHOSDistributedKVStoreQueryGreaterThan() argument
424 return instance->GreaterThan(field, value); in FfiOHOSDistributedKVStoreQueryGreaterThan()
427 void FfiOHOSDistributedKVStoreQueryLessThan(int64_t id, const char* field, ValueType value) in FfiOHOSDistributedKVStoreQueryLessThan() argument
433 return instance->LessThan(field, value); in FfiOHOSDistributedKVStoreQueryLessThan()
436 void FfiOHOSDistributedKVStoreQueryGreaterThanOrEqualTo(int64_t id, const char* field, ValueType value) in FfiOHOSDistributedKVStoreQueryGreaterThanOrEqualTo() argument
442 return instance->GreaterThanOrEqualTo(field, valu in FfiOHOSDistributedKVStoreQueryGreaterThanOrEqualTo()
445 FfiOHOSDistributedKVStoreQueryLessThanOrEqualTo(int64_t id, const char* field, ValueType value) FfiOHOSDistributedKVStoreQueryLessThanOrEqualTo() argument
454 FfiOHOSDistributedKVStoreQueryIsNull(int64_t id, const char* field) FfiOHOSDistributedKVStoreQueryIsNull() argument
463 FfiOHOSDistributedKVStoreQueryInNumber(int64_t id, const char* field, const CArrNumber valueList) FfiOHOSDistributedKVStoreQueryInNumber() argument
472 FfiOHOSDistributedKVStoreQueryInString(int64_t id, const char* field, const CArrStr valueList) FfiOHOSDistributedKVStoreQueryInString() argument
481 FfiOHOSDistributedKVStoreQueryNotInNumber(int64_t id, const char* field, const CArrNumber valueList) FfiOHOSDistributedKVStoreQueryNotInNumber() argument
490 FfiOHOSDistributedKVStoreQueryNotInString(int64_t id, const char* field, const CArrStr valueList) FfiOHOSDistributedKVStoreQueryNotInString() argument
499 FfiOHOSDistributedKVStoreQueryLike(int64_t id, const char* field, const char* value) FfiOHOSDistributedKVStoreQueryLike() argument
508 FfiOHOSDistributedKVStoreQueryUnlike(int64_t id, const char* field, const char* value) FfiOHOSDistributedKVStoreQueryUnlike() argument
535 FfiOHOSDistributedKVStoreQueryOrderByAsc(int64_t id, const char* field) FfiOHOSDistributedKVStoreQueryOrderByAsc() argument
544 FfiOHOSDistributedKVStoreQueryOrderByDesc(int64_t id, const char* field) FfiOHOSDistributedKVStoreQueryOrderByDesc() argument
562 FfiOHOSDistributedKVStoreQueryIsNotNull(int64_t id, const char* field) FfiOHOSDistributedKVStoreQueryIsNotNull() argument
[all...]
/third_party/node/deps/v8/src/objects/
H A Dname-inl.h114 uint32_t field = raw_hash_field(); in EnsureHash() local
115 if (IsHashFieldComputed(field)) return HashBits::decode(field); in EnsureHash()
122 uint32_t field = raw_hash_field(); in EnsureHash() local
123 if (IsHashFieldComputed(field)) return HashBits::decode(field); in EnsureHash()
129 uint32_t field = raw_hash_field(); in hash() local
130 DCHECK(IsHashFieldComputed(field)); in hash()
131 return HashBits::decode(field); in hash()
/third_party/skia/third_party/externals/icu/source/i18n/unicode/
H A Dgregocal.h59 * <p>Values calculated for the <code>WEEK_OF_YEAR</code> field range from 1 to
238 * @param year The value used to set the YEAR time field in the calendar.
239 * @param month The value used to set the MONTH time field in the calendar. Month
241 * @param date The value used to set the DATE time field in the calendar.
252 * @param year The value used to set the YEAR time field in the calendar.
253 * @param month The value used to set the MONTH time field in the calendar. Month
255 * @param date The value used to set the DATE time field in the calendar.
256 * @param hour The value used to set the HOUR_OF_DAY time field in the calendar.
257 * @param minute The value used to set the MINUTE time field in the calendar.
268 * @param year The value used to set the YEAR time field i
[all...]
/third_party/protobuf/python/google/protobuf/internal/
H A Dextension_dict.py95 'Uninitialized concrete class found for field %r (message type %r)'
127 my_fields = [field for field in my_fields if field.is_extension]
128 other_fields = [field for field in other_fields if field.is_extension]
138 extension_fields = [field for field in fields if field[
[all...]
/third_party/protobuf/src/google/protobuf/compiler/
H A Dparser_unittest.cc283 " field { name:\"foo\" label:LABEL_REQUIRED type:TYPE_INT32 number:1 }" in TEST_F()
307 " field { name:\"foo\" label:LABEL_REQUIRED type:TYPE_INT32 number:1 }" in TEST_F()
320 " field { name:\"foo\" label:LABEL_REQUIRED type:TYPE_INT32 number:1 }" in TEST_F()
335 " field { name:\"foo\" label:LABEL_REQUIRED type:TYPE_INT32 number:1 }" in TEST_F()
351 " field { name:\"foo\" label:LABEL_REQUIRED type:TYPE_INT32 number:1 }" in TEST_F()
366 " field { name:\"foo\" label:LABEL_REQUIRED type:TYPE_INT32 number:15 }" in TEST_F()
367 " field { name:\"bar\" label:LABEL_OPTIONAL type:TYPE_INT32 number:34 }" in TEST_F()
368 " field { name:\"baz\" label:LABEL_REPEATED type:TYPE_INT32 number:3 }" in TEST_F()
394 " field { name:\"foo\" label:LABEL_REQUIRED type:TYPE_INT32 number:1 " in TEST_F()
396 " field { nam in TEST_F()
2477 const FieldDescriptor* field = descriptor->FindFieldByNumber(*path_begin); FollowPath() local
2571 const FieldDescriptor* field = NULL; Parse() local
2630 const FieldDescriptor* field = HasSpan() local
2653 HasSpanWithComment(char start_marker, char end_marker, const Message& descriptor_proto, const FieldDescriptor* field, int index, const char* expected_leading_comments, const char* expected_trailing_comments, const char* expected_leading_detached_comments) HasSpanWithComment() argument
2717 const FieldDescriptor* field; global() member
3023 const FieldDescriptorProto& field = file_.message_type(0).field(0); TEST_F() local
3077 const FieldDescriptorProto& field = file_.message_type(0).field(0); TEST_F() local
3374 const FieldDescriptorProto& field = file_.message_type(0).field(0); TEST_F() local
[all...]
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
H A DShaderStorageBlockOutputHLSL.cpp58 // The column_major/row_major qualifier of a field member overrides the interface in GetBlockLayoutInfo()
126 for (const TField *field : interfaceBlock->fields()) in GetFieldMemberInShaderStorageBlock()
128 if (field->name() == variableName) in GetFieldMemberInShaderStorageBlock()
130 return field; in GetFieldMemberInShaderStorageBlock()
169 const TField *field, in MapVariableToField()
173 ASSERT((field->type()->getStruct() == nullptr) == variable.fields.empty()); in MapVariableToField()
174 (*shaderVarToFieldMap)[currentName] = field; in MapVariableToField()
178 const TStructure *subStruct = field->type()->getStruct(); in MapVariableToField()
255 const TField *field = iter->second; variable
256 if (mBlockInfoOut->count(field)
168 MapVariableToField(const ShaderVariable &variable, const TField *field, std::string currentName, ShaderVarToFieldMap *shaderVarToFieldMap) MapVariableToField() argument
283 const TField *field = interfaceBlock->fields()[index]; GetShaderStorageBlockMembersInfo() local
473 const TField *field = interfaceBlock->fields()[index->getIConst(0)]; traverseSSBOAccess() local
484 const TField *field = traverseSSBOAccess() local
528 const TField *field = traverseNode() local
573 const TField *field = structure->fields()[index->getIConst(0)]; traverseNode() local
583 const TField *field = interfaceBlock->fields()[index->getIConst(0)]; traverseNode() local
640 createFieldOffset(const TField *field, BlockMemberInfo *blockMemberInfo) createFieldOffset() argument
[all...]
/third_party/jerryscript/tests/jerry-test-suite/11/11.02/11.02.03/
H A D11.02.03-017.js16 field: Number,
18 this.field++;
22 obj.field = 3;
25 assert(obj.field === 4);
/third_party/curl/tests/libtest/
H A Dlib653.c35 curl_mimepart *field = NULL; in test() local
42 field = curl_mime_addpart(mime); in test()
43 curl_mime_name(field, "name"); in test()
44 curl_mime_data(field, "short value", CURL_ZERO_TERMINATED); in test()
57 curl_mime_data(field, "long value for length change", CURL_ZERO_TERMINATED); in test()
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H A DUnsafeUtil.java108 static long objectFieldOffset(Field field) { in objectFieldOffset() argument
109 return MEMORY_ACCESSOR.objectFieldOffset(field); in objectFieldOffset()
278 /** Gets the offset of the {@code address} field of the given direct {@link ByteBuffer}. */
283 static Object getStaticObject(Field field) { in getStaticObject() argument
284 return MEMORY_ACCESSOR.getStaticObject(field); in getStaticObject()
307 // The sun.misc.Unsafe field does not exist. in getUnsafe()
427 /** Finds the address field within a direct {@link Buffer}. */
430 // Old versions of Android had renamed the address field to 'effectiveDirectAddress', but in bufferAddressField()
432 Field field = field(Buffe in bufferAddressField()
519 fieldOffset(Field field) fieldOffset() argument
526 private static Field field(Class<?> clazz, String fieldName) { field() method in UnsafeUtil
545 objectFieldOffset(Field field) objectFieldOffset() argument
609 getStaticObject(Field field) getStaticObject() argument
703 getStaticObject(Field field) getStaticObject() argument
811 getStaticObject(Field field) getStaticObject() argument
931 getStaticObject(Field field) getStaticObject() argument
[all...]
/third_party/protobuf/src/google/protobuf/util/internal/
H A Dprotostream_objectwriter.cc218 // field. in StartObject()
220 // Save data before the "@type" field for later replay. in StartObject()
223 // For well-known types, the only other field besides "@type" should be a in StartObject()
224 // "value" field. in StartObject()
227 "Expect a \"value\" field for well-known types."); in StartObject()
243 // Save data before the "@type" field for later replay. in EndObject()
264 // Save data before the "@type" field for later replay. in StartList()
269 "Expect a \"value\" field for well-known types."); in StartList()
285 // Save data before the "@type" field for later replay. in EndList()
299 // Save data before the "@type" field in RenderDataPiece()
586 const google::protobuf::Field* field = BeginNamed(name, false); StartObject() local
801 const google::protobuf::Field* field = Lookup(name); StartList() local
1132 const google::protobuf::Field* field = nullptr; RenderDataPiece() local
1328 IsMap(const google::protobuf::Field& field) IsMap() argument
1340 IsAny(const google::protobuf::Field& field) IsAny() argument
1344 IsStruct(const google::protobuf::Field& field) IsStruct() argument
1348 IsStructValue( const google::protobuf::Field& field) IsStructValue() argument
1353 IsStructListValue( const google::protobuf::Field& field) IsStructListValue() argument
[all...]
/third_party/skia/src/sksl/ir/
H A DSkSLFieldAccess.cpp20 skstd::string_view field) { in Convert()
23 // Turn the field name into a free function name, prefixed with '$': in Convert()
24 String methodName = String("$") + field; in Convert()
45 "type '" + baseType.displayName() + "' has no method named '" + field + "'"); in Convert()
51 if (fields[i].fName == field) { in Convert()
57 return Setting::Convert(context, base->fLine, field); in Convert()
61 "' does not have a field named '" + field + "'"); in Convert()
17 Convert(const Context& context, SymbolTable& symbolTable, std::unique_ptr<Expression> base, skstd::string_view field) Convert() argument
/third_party/protobuf/python/google/protobuf/pyext/
H A Dfield.cc31 #include <google/protobuf/pyext/field.h>
45 namespace field { namespace
48 return PyString_FromFormat("<field property '%s'>", in Repr()
65 PyErr_SetString(PyExc_AttributeError, "Cannot delete field attribute"); in DescrSet()
85 } // namespace field
97 (reprfunc)field::Repr, // tp_repr
117 field::Getters, // tp_getset
120 (descrgetfunc)field::DescrGet, // tp_descr_get
121 (descrsetfunc)field::DescrSet, // tp_descr_set
/third_party/rust/crates/rustix/src/process/
H A Dsched.rs35 /// `field` is the CPU id to test.
37 pub fn is_set(&self, field: usize) -> bool { in is_set()
38 backend::process::cpu_set::CPU_ISSET(field, &self.cpu_set) in is_set()
43 /// `field` is the CPU id to add.
45 pub fn set(&mut self, field: usize) { in set()
46 backend::process::cpu_set::CPU_SET(field, &mut self.cpu_set) in set()
51 /// `field` is the CPU id to remove.
53 pub fn unset(&mut self, field: usize) { in unset()
54 backend::process::cpu_set::CPU_CLR(field, &mut self.cpu_set) in unset()

Completed in 21 milliseconds

1...<<11121314151617181920>>...81