Home
last modified time | relevance | path

Searched refs:field (Results 1 - 25 of 3881) sorted by relevance

12345678910>>...156

/kernel/linux/linux-5.10/drivers/scsi/aic7xxx/
H A Dqueue.h127 #define SLIST_FOREACH(var, head, field) \
130 (var) = SLIST_NEXT((var), field))
136 #define SLIST_INSERT_AFTER(slistelm, elm, field) do { \
137 SLIST_NEXT((elm), field) = SLIST_NEXT((slistelm), field); \
138 SLIST_NEXT((slistelm), field) = (elm); \
141 #define SLIST_INSERT_HEAD(head, elm, field) do { \
142 SLIST_NEXT((elm), field) = SLIST_FIRST((head)); \
146 #define SLIST_NEXT(elm, field) ((elm)->field
[all...]
/kernel/linux/linux-6.6/drivers/scsi/aic7xxx/
H A Dqueue.h127 #define SLIST_FOREACH(var, head, field) \
130 (var) = SLIST_NEXT((var), field))
136 #define SLIST_INSERT_AFTER(slistelm, elm, field) do { \
137 SLIST_NEXT((elm), field) = SLIST_NEXT((slistelm), field); \
138 SLIST_NEXT((slistelm), field) = (elm); \
141 #define SLIST_INSERT_HEAD(head, elm, field) do { \
142 SLIST_NEXT((elm), field) = SLIST_FIRST((head)); \
146 #define SLIST_NEXT(elm, field) ((elm)->field
[all...]
/third_party/FreeBSD/sys/sys/
H A Dqueue.h215 #define SLIST_CONCAT(head1, head2, type, field) do { \
221 while (SLIST_NEXT(curelm, field) != NULL) \
222 curelm = SLIST_NEXT(curelm, field); \
223 SLIST_NEXT(curelm, field) = SLIST_FIRST(head2); \
232 #define SLIST_FOREACH(var, head, field) \
235 (var) = SLIST_NEXT((var), field))
237 #define SLIST_FOREACH_FROM(var, head, field) \
240 (var) = SLIST_NEXT((var), field))
242 #define SLIST_FOREACH_SAFE(var, head, field, tvar) \
244 (var) && ((tvar) = SLIST_NEXT((var), field),
[all...]
H A Dtree.h86 #define SPLAY_LEFT(elm, field) (elm)->field.spe_left
87 #define SPLAY_RIGHT(elm, field) (elm)->field.spe_right
92 #define SPLAY_ROTATE_RIGHT(head, tmp, field) do { \
93 SPLAY_LEFT((head)->sph_root, field) = SPLAY_RIGHT(tmp, field); \
94 SPLAY_RIGHT(tmp, field) = (head)->sph_root; \
98 #define SPLAY_ROTATE_LEFT(head, tmp, field) do { \
99 SPLAY_RIGHT((head)->sph_root, field)
[all...]
/third_party/node/lib/
H A D_http_incoming.js269 // This function is used to help avoid the lowercasing of a field name if it
270 // matches a 'traditional cased' version of a field name. It then returns the
272 // indicate whether the field was a 'no duplicates' field. If a field is not a
273 // 'no duplicates' field, a `0` byte is prepended as a flag. The one exception
275 // it is an 'array' field and thus is treated differently in _addHeaderLines().
279 function matchKnownFields(field, lowercased) {
280 switch (field.length) {
282 if (field
[all...]
/kernel/linux/linux-6.6/arch/x86/kvm/vmx/
H A Dvmx_ops.h13 void vmread_error(unsigned long field);
14 void vmwrite_error(unsigned long field, unsigned long value);
31 * void vmread_error_trampoline(unsigned long field, bool fault);
39 void vmread_error_trampoline2(unsigned long field, bool fault);
43 static __always_inline void vmcs_check16(unsigned long field) in vmcs_check16() argument
45 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2000, in vmcs_check16()
46 "16-bit accessor invalid for 64-bit field"); in vmcs_check16()
47 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) in vmcs_check16()
55 vmcs_check32(unsigned long field) vmcs_check32() argument
67 vmcs_check64(unsigned long field) vmcs_check64() argument
79 vmcs_checkl(unsigned long field) vmcs_checkl() argument
91 __vmcs_readl(unsigned long field) __vmcs_readl() argument
153 vmcs_read16(unsigned long field) vmcs_read16() argument
161 vmcs_read32(unsigned long field) vmcs_read32() argument
169 vmcs_read64(unsigned long field) vmcs_read64() argument
181 vmcs_readl(unsigned long field) vmcs_readl() argument
223 __vmcs_writel(unsigned long field, unsigned long value) __vmcs_writel() argument
228 vmcs_write16(unsigned long field, u16 value) vmcs_write16() argument
237 vmcs_write32(unsigned long field, u32 value) vmcs_write32() argument
246 vmcs_write64(unsigned long field, u64 value) vmcs_write64() argument
258 vmcs_writel(unsigned long field, unsigned long value) vmcs_writel() argument
267 vmcs_clear_bits(unsigned long field, u32 mask) vmcs_clear_bits() argument
277 vmcs_set_bits(unsigned long field, u32 mask) vmcs_set_bits() argument
[all...]
/third_party/protobuf/src/google/protobuf/
H A Dgenerated_message_reflection.cc80 bool IsMapFieldInApi(const FieldDescriptor* field) { return field->is_map(); } in IsMapFieldInApi() argument
102 // a string field).
111 const FieldDescriptor* field, in ReportReflectionUsageError()
121 << field->full_name() in ReportReflectionUsageError()
133 const Descriptor* descriptor, const FieldDescriptor* field, in ReportReflectionUsageTypeError()
144 << field->full_name() in ReportReflectionUsageTypeError()
151 << cpptype_names_[field->cpp_type()]; in ReportReflectionUsageTypeError()
155 const Descriptor* descriptor, const FieldDescriptor* field, in ReportReflectionUsageEnumTypeError()
165 << field in ReportReflectionUsageEnumTypeError()
110 ReportReflectionUsageError(const Descriptor* descriptor, const FieldDescriptor* field, const char* method, const char* description) ReportReflectionUsageError() argument
132 ReportReflectionUsageTypeError( const Descriptor* descriptor, const FieldDescriptor* field, const char* method, FieldDescriptor::CppType expected_type) ReportReflectionUsageTypeError() argument
154 ReportReflectionUsageEnumTypeError( const Descriptor* descriptor, const FieldDescriptor* field, const char* method, const EnumValueDescriptor* value) ReportReflectionUsageEnumTypeError() argument
175 CheckInvalidAccess(const internal::ReflectionSchema& schema, const FieldDescriptor* field) CheckInvalidAccess() argument
252 const FieldDescriptor* field = descriptor_->field(i); SpaceUsedLong() local
644 const FieldDescriptor* field = descriptor_->field(i); Swap() local
659 const FieldDescriptor* field = descriptor_->field(i); Swap() local
706 const FieldDescriptor* field = fields[i]; SwapFields() local
981 SwapElements(Message* message, const FieldDescriptor* field, int index1, int index2) const SwapElements() argument
1043 CreateUnknownEnumValues(const FieldDescriptor* field) CreateUnknownEnumValues() argument
1068 const FieldDescriptor* field = descriptor_->field(i); ListFieldsMayFailOnStripped() local
1206 GetStringReference(const Message& message, const FieldDescriptor* field, std::string* scratch) const GetStringReference() argument
1228 SetString(Message* message, const FieldDescriptor* field, std::string value) const SetString() argument
1261 GetRepeatedString(const Message& message, const FieldDescriptor* field, int index) const GetRepeatedString() argument
1276 GetRepeatedStringReference( const Message& message, const FieldDescriptor* field, int index, std::string* scratch) const GetRepeatedStringReference() argument
1292 SetRepeatedString(Message* message, const FieldDescriptor* field, int index, std::string value) const SetRepeatedString() argument
1311 AddString(Message* message, const FieldDescriptor* field, std::string value) const AddString() argument
1351 SetEnum(Message* message, const FieldDescriptor* field, const EnumValueDescriptor* value) const SetEnum() argument
1358 SetEnumValue(Message* message, const FieldDescriptor* field, int value) const SetEnumValue() argument
1374 SetEnumValueInternal(Message* message, const FieldDescriptor* field, int value) const SetEnumValueInternal() argument
1385 GetRepeatedEnum( const Message& message, const FieldDescriptor* field, int index) const GetRepeatedEnum() argument
1392 GetRepeatedEnumValue(const Message& message, const FieldDescriptor* field, int index) const GetRepeatedEnumValue() argument
1406 SetRepeatedEnum(Message* message, const FieldDescriptor* field, int index, const EnumValueDescriptor* value) const SetRepeatedEnum() argument
1414 SetRepeatedEnumValue(Message* message, const FieldDescriptor* field, int index, int value) const SetRepeatedEnumValue() argument
1431 SetRepeatedEnumValueInternal(Message* message, const FieldDescriptor* field, int index, int value) const SetRepeatedEnumValueInternal() argument
1442 AddEnum(Message* message, const FieldDescriptor* field, const EnumValueDescriptor* value) const AddEnum() argument
1449 AddEnumValue(Message* message, const FieldDescriptor* field, int value) const AddEnumValue() argument
1465 AddEnumValueInternal(Message* message, const FieldDescriptor* field, int value) const AddEnumValueInternal() argument
1479 GetMessage(const Message& message, const FieldDescriptor* field, MessageFactory* factory) const GetMessage() argument
1499 MutableMessage(Message* message, const FieldDescriptor* field, MessageFactory* factory) const MutableMessage() argument
1597 UnsafeArenaReleaseMessage(Message* message, const FieldDescriptor* field, MessageFactory* factory) const UnsafeArenaReleaseMessage() argument
1627 ReleaseMessage(Message* message, const FieldDescriptor* field, MessageFactory* factory) const ReleaseMessage() argument
1641 GetRepeatedMessage(const Message& message, const FieldDescriptor* field, int index) const GetRepeatedMessage() argument
1662 MutableRepeatedMessage(Message* message, const FieldDescriptor* field, int index) const MutableRepeatedMessage() argument
1684 AddMessage(Message* message, const FieldDescriptor* field, MessageFactory* factory) const AddMessage() argument
1726 AddAllocatedMessage(Message* message, const FieldDescriptor* field, Message* new_entry) const AddAllocatedMessage() argument
1746 MutableRawRepeatedField(Message* message, const FieldDescriptor* field, FieldDescriptor::CppType cpptype, int ctype, const Descriptor* desc) const MutableRawRepeatedField() argument
1774 GetRawRepeatedField(const Message& message, const FieldDescriptor* field, FieldDescriptor::CppType cpptype, int ctype, const Descriptor* desc) const GetRawRepeatedField() argument
1807 const FieldDescriptor* field = oneof_descriptor->field(0); GetOneofFieldDescriptor() local
1817 ContainsMapKey(const Message& message, const FieldDescriptor* field, const MapKey& key) const ContainsMapKey() argument
1825 InsertOrLookupMapValue(Message* message, const FieldDescriptor* field, const MapKey& key, MapValueRef* val) const InsertOrLookupMapValue() argument
1836 DeleteMapValue(Message* message, const FieldDescriptor* field, const MapKey& key) const DeleteMapValue() argument
2111 const FieldDescriptor* field = descriptor_->FindFieldByNumber(oneof_case); ClearOneof() local
2166 MutableRawRepeatedString(Message* message, const FieldDescriptor* field, bool is_string) const MutableRawRepeatedString() argument
2184 SetField(Message* message, const FieldDescriptor* field, const Type& value) const SetField() argument
2203 GetRepeatedField(const Message& message, const FieldDescriptor* field, int index) const GetRepeatedField() argument
2210 GetRepeatedPtrField(const Message& message, const FieldDescriptor* field, int index) const GetRepeatedPtrField() argument
2217 SetRepeatedField(Message* message, const FieldDescriptor* field, int index, Type value) const SetRepeatedField() argument
2224 MutableRepeatedField(Message* message, const FieldDescriptor* field, int index) const MutableRepeatedField() argument
2233 AddField(Message* message, const FieldDescriptor* field, const Type& value) const AddField() argument
2250 RepeatedFieldData(Message* message, const FieldDescriptor* field, FieldDescriptor::CppType cpp_type, const Descriptor* message_type) const RepeatedFieldData() argument
[all...]
H A Dmessage.h212 bool CreateUnknownEnumValues(const FieldDescriptor* field);
281 // that have new field definitions which they don't yet know about. However,
399 // - The FieldDescriptor is not a field of this message type.
400 // - The method called is not appropriate for the field's type. For
401 // each field type in FieldDescriptor::TYPE_*, there is only one
406 // field.
408 // field.
412 // You might wonder why there is not any abstract representation for a field
417 // allocate space for an additional object to wrap every field would at least
440 // Check if the given non-repeated field i
[all...]
H A Dreflection_ops.cc90 const FieldDescriptor* field = fields[i]; in Merge() local
92 if (field->is_repeated()) { in Merge()
94 // same map type to avoid sync with repeated field. in Merge()
96 // map field types are the same if they are both generated in Merge()
98 if (is_from_generated == is_to_generated && field->is_map()) { in Merge()
100 from_reflection->GetMapData(from, field); in Merge()
101 MapFieldBase* to_field = to_reflection->MutableMapData(to, field); in Merge()
107 int count = from_reflection->FieldSize(from, field); in Merge()
109 switch (field->cpp_type()) { in Merge()
113 to, field, from_reflectio in Merge()
219 MapIterator it(const_cast<Message*>(&message), field); IsInitialized() local
220 MapIterator end(const_cast<Message*>(&message), field); IsInitialized() local
275 const FieldDescriptor* field = fields[i]; IsInitialized() local
284 MapIterator iter(const_cast<Message*>(&message), field); IsInitialized() local
285 MapIterator end(const_cast<Message*>(&message), field); IsInitialized() local
334 const FieldDescriptor* field = fields[i]; DiscardUnknownFields() local
365 SubMessagePrefix(const std::string& prefix, const FieldDescriptor* field, int index) SubMessagePrefix() argument
406 const FieldDescriptor* field = fields[i]; FindInitializationErrors() local
[all...]
/third_party/libuv/include/uv/
H A Dtree.h82 #define SPLAY_LEFT(elm, field) (elm)->field.spe_left
83 #define SPLAY_RIGHT(elm, field) (elm)->field.spe_right
88 #define SPLAY_ROTATE_RIGHT(head, tmp, field) do { \
89 SPLAY_LEFT((head)->sph_root, field) = SPLAY_RIGHT(tmp, field); \
90 SPLAY_RIGHT(tmp, field) = (head)->sph_root; \
94 #define SPLAY_ROTATE_LEFT(head, tmp, field) do { \
95 SPLAY_RIGHT((head)->sph_root, field)
[all...]
/third_party/node/deps/uv/include/uv/
H A Dtree.h82 #define SPLAY_LEFT(elm, field) (elm)->field.spe_left
83 #define SPLAY_RIGHT(elm, field) (elm)->field.spe_right
88 #define SPLAY_ROTATE_RIGHT(head, tmp, field) do { \
89 SPLAY_LEFT((head)->sph_root, field) = SPLAY_RIGHT(tmp, field); \
90 SPLAY_RIGHT(tmp, field) = (head)->sph_root; \
94 #define SPLAY_ROTATE_LEFT(head, tmp, field) do { \
95 SPLAY_RIGHT((head)->sph_root, field)
[all...]
/kernel/linux/linux-5.10/arch/x86/kvm/vmx/
H A Dvmx_ops.h15 asmlinkage void vmread_error(unsigned long field, bool fault);
16 __attribute__((regparm(0))) void vmread_error_trampoline(unsigned long field,
18 void vmwrite_error(unsigned long field, unsigned long value);
24 static __always_inline void vmcs_check16(unsigned long field) in vmcs_check16() argument
26 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2000, in vmcs_check16()
27 "16-bit accessor invalid for 64-bit field"); in vmcs_check16()
28 BUILD_BUG_ON_MSG(__builtin_constant_p(field) && ((field) & 0x6001) == 0x2001, in vmcs_check16()
29 "16-bit accessor invalid for 64-bit high field"); in vmcs_check16()
36 vmcs_check32(unsigned long field) vmcs_check32() argument
44 vmcs_check64(unsigned long field) vmcs_check64() argument
56 vmcs_checkl(unsigned long field) vmcs_checkl() argument
68 __vmcs_readl(unsigned long field) __vmcs_readl() argument
104 vmcs_read16(unsigned long field) vmcs_read16() argument
112 vmcs_read32(unsigned long field) vmcs_read32() argument
120 vmcs_read64(unsigned long field) vmcs_read64() argument
132 vmcs_readl(unsigned long field) vmcs_readl() argument
174 __vmcs_writel(unsigned long field, unsigned long value) __vmcs_writel() argument
179 vmcs_write16(unsigned long field, u16 value) vmcs_write16() argument
188 vmcs_write32(unsigned long field, u32 value) vmcs_write32() argument
197 vmcs_write64(unsigned long field, u64 value) vmcs_write64() argument
209 vmcs_writel(unsigned long field, unsigned long value) vmcs_writel() argument
218 vmcs_clear_bits(unsigned long field, u32 mask) vmcs_clear_bits() argument
228 vmcs_set_bits(unsigned long field, u32 mask) vmcs_set_bits() argument
[all...]
/third_party/typescript/tests/baselines/reference/
H A DprivateNameInInExpression(target=es2022).js3 #field = 1;
9 const a = #field in v;
11 const b = #field in v.p1.p2;
13 const c = #field in (v as {});
15 const d = #field in (v as Foo);
17 const e = #field in (v as never);
19 for (let f in #field in v as any) { /**/ } // unlikely but valid
22 const a = #field in (v as unknown); // Bad - RHS of in must be object type or any
26 const c = (#field) in v; // Bad - privateID is not an expression on its own
28 for (#field i
[all...]
H A DprivateNameInInExpression(target=esnext).js3 #field = 1;
9 const a = #field in v;
11 const b = #field in v.p1.p2;
13 const c = #field in (v as {});
15 const d = #field in (v as Foo);
17 const e = #field in (v as never);
19 for (let f in #field in v as any) { /**/ } // unlikely but valid
22 const a = #field in (v as unknown); // Bad - RHS of in must be object type or any
26 const c = (#field) in v; // Bad - privateID is not an expression on its own
28 for (#field i
[all...]
H A DprivateNameFieldDestructuredBinding(target=es2022).js3 #field = 1;
13 ({ x: this.#field, y } = this.testObject());
14 ([this.#field, y] = this.testArray());
15 ({ a: this.#field, b: [this.#field] } = { a: 1, b: [2] });
16 [this.#field, [this.#field]] = [1, [2]];
17 ({ a: this.#field = 1, b: [this.#field = 1] } = { b: [] });
18 [this.#field
[all...]
H A DprivateNameFieldDestructuredBinding(target=esnext).js3 #field = 1;
13 ({ x: this.#field, y } = this.testObject());
14 ([this.#field, y] = this.testArray());
15 ({ a: this.#field, b: [this.#field] } = { a: 1, b: [2] });
16 [this.#field, [this.#field]] = [1, [2]];
17 ({ a: this.#field = 1, b: [this.#field = 1] } = { b: [] });
18 [this.#field
[all...]
/third_party/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_message.cc98 void PrintPresenceCheck(const Formatter& format, const FieldDescriptor* field, in PrintPresenceCheck() argument
101 if (!field->options().weak()) { in PrintPresenceCheck()
102 int has_bit_index = has_bit_indices[field->index()]; in PrintPresenceCheck()
111 format("if (has_$1$()) {\n", FieldName(field)); in PrintPresenceCheck()
129 fields[i] = descriptor->field(i); in SortFieldsByNumber()
135 // Functor for sorting extension ranges by their "start" field number.
143 bool IsPOD(const FieldDescriptor* field) { in IsPOD() argument
144 if (field->is_repeated() || field->is_extension()) return false; in IsPOD()
145 switch (field in IsPOD()
165 CanBeManipulatedAsRawBytes(const FieldDescriptor* field, const Options& options) CanBeManipulatedAsRawBytes() argument
205 EmitFieldNonDefaultCondition(io::Printer* printer, const std::string& prefix, const FieldDescriptor* field) EmitFieldNonDefaultCondition() argument
238 HasHasMethod(const FieldDescriptor* field) HasHasMethod() argument
282 HasPrivateHasMethod(const FieldDescriptor* field) HasPrivateHasMethod() argument
383 IsCrossFileMapField(const FieldDescriptor* field) IsCrossFileMapField() argument
394 IsCrossFileMaybeMap(const FieldDescriptor* field) IsCrossFileMaybeMap() argument
781 GenerateSingularFieldHasBits( const FieldDescriptor* field, Formatter format) GenerateSingularFieldHasBits() argument
862 GenerateOneofMemberHasBits(const FieldDescriptor* field, const Formatter& format) GenerateOneofMemberHasBits() argument
907 GenerateFieldClear(const FieldDescriptor* field, bool is_inline, Formatter format) GenerateFieldClear() argument
1739 CalcFieldNum(const FieldGenerator& generator, const FieldDescriptor* field, const Options& options) CalcFieldNum() argument
1792 const FieldDescriptor* field = sorted[i]; GenerateFieldMetadata() local
1850 const FieldDescriptor* field = sorted[i]; GenerateFieldMetadata() local
2605 const FieldDescriptor* field = optimized_order_[i]; GenerateConstructorBody() local
2722 auto field = optimized_order_[i]; GenerateStructors() local
3080 const FieldDescriptor* field = optimized_order_[i]; GenerateSwap() local
3448 GenerateSerializeOneField(io::Printer* printer, const FieldDescriptor* field, int cached_has_bits_index) GenerateSerializeOneField() argument
3560 Emit(const FieldDescriptor* field) GenerateSerializeWithCachedSizesBody() argument
3599 MustFlush(const FieldDescriptor* field) GenerateSerializeWithCachedSizesBody() argument
3645 const FieldDescriptor* field = ordered_fields[i++]; GenerateSerializeWithCachedSizesBody() local
3860 const FieldDescriptor* field = chunk[j]; GenerateByteSize() local
[all...]
/third_party/protobuf/js/binary/
H A Dwriter.js38 * all the fundamental field types used in protocol buffers.
126 * Begins a new message by writing the field header and returning a bookmark
128 * @param {number} field
132 jspb.BinaryWriter.prototype.beginDelimited_ = function(field) {
133 this.writeFieldHeader_(field, jspb.BinaryConstants.WireType.DELIMITED);
251 * @param {number} field The field number of the sub-message.
253 jspb.BinaryWriter.prototype.beginSubMessage = function(field) {
254 this.bookmarks_.push(this.beginDelimited_(field));
269 * Encodes a (field numbe
[all...]
/kernel/linux/linux-5.10/include/linux/
H A Dpart_stat.h27 #define part_stat_get_cpu(part, field, cpu) \
28 (per_cpu_ptr((part)->dkstats, (cpu))->field)
30 #define part_stat_get(part, field) \
31 part_stat_get_cpu(part, field, smp_processor_id())
33 #define part_stat_read(part, field) \
35 typeof((part)->dkstats->field) res = 0; \
38 res += per_cpu_ptr((part)->dkstats, _cpu)->field; \
51 #define part_stat_read_accum(part, field) \
52 (part_stat_read(part, field[STAT_READ]) + \
53 part_stat_read(part, field[STAT_WRIT
[all...]
/kernel/linux/linux-6.6/include/linux/
H A Dpart_stat.h28 #define part_stat_get_cpu(part, field, cpu) \
29 (per_cpu_ptr((part)->bd_stats, (cpu))->field)
31 #define part_stat_get(part, field) \
32 part_stat_get_cpu(part, field, smp_processor_id())
34 #define part_stat_read(part, field) \
36 typeof((part)->bd_stats->field) res = 0; \
39 res += per_cpu_ptr((part)->bd_stats, _cpu)->field; \
52 #define part_stat_read_accum(part, field) \
53 (part_stat_read(part, field[STAT_READ]) + \
54 part_stat_read(part, field[STAT_WRIT
[all...]
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H A DDynamicMessage.java60 * FieldDescriptor for each oneof to indicate which field is set. Caller should make sure the
173 FieldDescriptor field = oneofCases[oneof.getIndex()]; in hasOneof()
174 if (field == null) { in hasOneof()
187 public boolean hasField(FieldDescriptor field) { in hasField() argument
188 verifyContainingType(field); in hasField()
189 return fields.hasField(field); in hasField()
193 public Object getField(FieldDescriptor field) { in getField() argument
194 verifyContainingType(field); in getField()
195 Object result = fields.getField(field); in getField()
197 if (field in getField()
209 getRepeatedFieldCount(FieldDescriptor field) getRepeatedFieldCount() argument
215 getRepeatedField(FieldDescriptor field, int index) getRepeatedField() argument
303 verifyContainingType(FieldDescriptor field) verifyContainingType() argument
463 newBuilderForField(FieldDescriptor field) newBuilderForField() argument
501 hasField(FieldDescriptor field) hasField() argument
507 getField(FieldDescriptor field) getField() argument
523 setField(FieldDescriptor field, Object value) setField() argument
556 clearField(FieldDescriptor field) clearField() argument
571 getRepeatedFieldCount(FieldDescriptor field) getRepeatedFieldCount() argument
577 getRepeatedField(FieldDescriptor field, int index) getRepeatedField() argument
583 setRepeatedField(FieldDescriptor field, int index, Object value) setRepeatedField() argument
591 addRepeatedField(FieldDescriptor field, Object value) addRepeatedField() argument
617 verifyContainingType(FieldDescriptor field) verifyContainingType() argument
631 ensureSingularEnumValueDescriptor(FieldDescriptor field, Object value) ensureSingularEnumValueDescriptor() argument
649 ensureEnumValueDescriptor(FieldDescriptor field, Object value) ensureEnumValueDescriptor() argument
666 getFieldBuilder(FieldDescriptor field) getFieldBuilder() argument
673 getRepeatedFieldBuilder( FieldDescriptor field, int index) getRepeatedFieldBuilder() argument
[all...]
H A DMessageReflection.java57 for (final FieldDescriptor field : message.getDescriptorForType().getFields()) { in writeMessageTo()
58 if (field.isRequired() && !fields.containsKey(field)) { in writeMessageTo()
59 fields.put(field, message.getField(field)); in writeMessageTo()
64 final Descriptors.FieldDescriptor field = entry.getKey(); in writeMessageTo()
67 && field.isExtension() in writeMessageTo()
68 && field.getType() == Descriptors.FieldDescriptor.Type.MESSAGE in writeMessageTo()
69 && !field.isRepeated()) { in writeMessageTo()
70 output.writeMessageSetExtension(field in writeMessageTo()
156 subMessagePrefix( final String prefix, final Descriptors.FieldDescriptor field, final int index) subMessagePrefix() argument
234 getField(Descriptors.FieldDescriptor field) getField() argument
243 hasField(Descriptors.FieldDescriptor field) hasField() argument
249 setField(Descriptors.FieldDescriptor field, Object value) setField() argument
255 clearField(Descriptors.FieldDescriptor field) clearField() argument
265 setRepeatedField(Descriptors.FieldDescriptor field, int index, Object value) setRepeatedField() argument
273 addRepeatedField(Descriptors.FieldDescriptor field, Object value) addRepeatedField() argument
363 getField(Descriptors.FieldDescriptor field) getField() argument
368 hasField(Descriptors.FieldDescriptor field) hasField() argument
373 setField(Descriptors.FieldDescriptor field, Object value) setField() argument
379 clearField(Descriptors.FieldDescriptor field) clearField() argument
385 setRepeatedField( Descriptors.FieldDescriptor field, int index, Object value) setRepeatedField() argument
392 addRepeatedField(Descriptors.FieldDescriptor field, Object value) addRepeatedField() argument
431 parseGroup( CodedInputStream input, ExtensionRegistryLite extensionRegistry, Descriptors.FieldDescriptor field, Message defaultInstance) parseGroup() argument
455 parseMessage( CodedInputStream input, ExtensionRegistryLite extensionRegistry, Descriptors.FieldDescriptor field, Message defaultInstance) parseMessage() argument
479 parseMessageFromBytes( ByteString bytes, ExtensionRegistryLite extensionRegistry, Descriptors.FieldDescriptor field, Message defaultInstance) parseMessageFromBytes() argument
503 newMergeTargetForField( Descriptors.FieldDescriptor field, Message defaultInstance) newMergeTargetForField() argument
521 newEmptyTargetForField( Descriptors.FieldDescriptor field, Message defaultInstance) newEmptyTargetForField() argument
565 getField(Descriptors.FieldDescriptor field) getField() argument
570 hasField(Descriptors.FieldDescriptor field) hasField() argument
575 setField(Descriptors.FieldDescriptor field, Object value) setField() argument
581 clearField(Descriptors.FieldDescriptor field) clearField() argument
587 setRepeatedField( Descriptors.FieldDescriptor field, int index, Object value) setRepeatedField() argument
594 addRepeatedField(Descriptors.FieldDescriptor field, Object value) addRepeatedField() argument
633 parseGroup( CodedInputStream input, ExtensionRegistryLite registry, Descriptors.FieldDescriptor field, Message defaultInstance) parseGroup() argument
651 parseMessage( CodedInputStream input, ExtensionRegistryLite registry, Descriptors.FieldDescriptor field, Message defaultInstance) parseMessage() argument
669 parseMessageFromBytes( ByteString bytes, ExtensionRegistryLite registry, Descriptors.FieldDescriptor field, Message defaultInstance) parseMessageFromBytes() argument
[all...]
/third_party/mesa3d/src/asahi/lib/
H A Dgen_pack.py297 def overlaps(self, field):
298 return self != field and max(self.start, field.start) <= min(self.end, field.end)
313 calculated = max(field.end // 8 for field in self.fields) + 1 if len(self.fields) > 0 else 0
331 for field in self.fields:
332 if field.exact is not None:
335 field.emit_template_struct(dim)
343 def __init__(self, field, pat
[all...]
/third_party/protobuf/csharp/src/Google.Protobuf/Reflection/
H A DCustomOptions.cs43 /// Container for a set of custom options specified within a message, field etc.
75 /// Retrieves a Boolean value for the specified option field.
77 /// <param name="field">The field to fetch the value for.</param>
79 /// <returns><c>true</c> if a suitable value for the field was found; <c>false</c> otherwise.</returns>
80 public bool TryGetBool(int field, out bool value) => TryGetPrimitiveValue(field, out value); in TryGetBool() argument
83 /// Retrieves a signed 32-bit integer value for the specified option field.
85 /// <param name="field">The field t
88 TryGetInt32(int field, out int value) TryGetInt32() argument
96 TryGetInt64(int field, out long value) TryGetInt64() argument
105 TryGetFixed32(int field, out uint value) TryGetFixed32() argument
114 TryGetFixed64(int field, out ulong value) TryGetFixed64() argument
123 TryGetSFixed32(int field, out int value) TryGetSFixed32() argument
132 TryGetSFixed64(int field, out long value) TryGetSFixed64() argument
141 TryGetSInt32(int field, out int value) TryGetSInt32() argument
150 TryGetSInt64(int field, out long value) TryGetSInt64() argument
158 TryGetUInt32(int field, out uint value) TryGetUInt32() argument
166 TryGetUInt64(int field, out ulong value) TryGetUInt64() argument
174 TryGetFloat(int field, out float value) TryGetFloat() argument
182 TryGetDouble(int field, out double value) TryGetDouble() argument
190 TryGetString(int field, out string value) TryGetString() argument
198 TryGetBytes(int field, out ByteString value) TryGetBytes() argument
243 TryGetPrimitiveValue(int field, out T value) TryGetPrimitiveValue() argument
[all...]
/third_party/rust/crates/syn/src/gen/
H A Ddebug.rs11 formatter.field("extern_token", &self.extern_token); in fmt()
12 formatter.field("name", &self.name); in fmt()
23 formatter.field("colon2_token", &self.colon2_token); in fmt()
24 formatter.field("lt_token", &self.lt_token); in fmt()
25 formatter.field("args", &self.args); in fmt()
26 formatter.field("gt_token", &self.gt_token); in fmt()
38 formatter.field("attrs", &self.attrs); in fmt()
39 formatter.field("pat", &self.pat); in fmt()
40 formatter.field("guard", &self.guard); in fmt()
41 formatter.field("fat_arrow_toke in fmt()
[all...]

Completed in 19 milliseconds

12345678910>>...156