Home
last modified time | relevance | path

Searched defs:field (Results 1 – 25 of 2096) sorted by relevance

12345678910>>...84

/external/cronet/third_party/protobuf/js/binary/
Dwriter.js133 jspb.BinaryWriter.prototype.beginDelimited_ = function(field) { argument
254 jspb.BinaryWriter.prototype.beginSubMessage = function(field) { argument
278 function(field, wireType) { argument
291 jspb.BinaryWriter.prototype.writeAny = function(fieldType, field, value) { argument
367 jspb.BinaryWriter.prototype.writeUnsignedVarint32_ = function(field, value) { argument
380 jspb.BinaryWriter.prototype.writeSignedVarint32_ = function(field, value) { argument
393 jspb.BinaryWriter.prototype.writeUnsignedVarint64_ = function(field, value) { argument
406 jspb.BinaryWriter.prototype.writeSignedVarint64_ = function(field, value) { argument
419 jspb.BinaryWriter.prototype.writeZigzagVarint32_ = function(field, value) { argument
432 jspb.BinaryWriter.prototype.writeZigzagVarint64_ = function(field, value) { argument
[all …]
/external/cronet/third_party/protobuf/csharp/src/Google.Protobuf/Reflection/
DCustomOptions.cs84 public bool TryGetBool(int field, out bool value) => TryGetPrimitiveValue(field, out value); in TryGetBool()
93 public bool TryGetInt32(int field, out int value) => TryGetPrimitiveValue(field, out value); in TryGetInt32()
102 … public bool TryGetInt64(int field, out long value) => TryGetPrimitiveValue(field, out value); in TryGetInt64()
112 public bool TryGetFixed32(int field, out uint value) => TryGetUInt32(field, out value); in TryGetFixed32()
122 public bool TryGetFixed64(int field, out ulong value) => TryGetUInt64(field, out value); in TryGetFixed64()
132 public bool TryGetSFixed32(int field, out int value) => TryGetInt32(field, out value); in TryGetSFixed32()
142 public bool TryGetSFixed64(int field, out long value) => TryGetInt64(field, out value); in TryGetSFixed64()
152 … public bool TryGetSInt32(int field, out int value) => TryGetPrimitiveValue(field, out value); in TryGetSInt32()
162 … public bool TryGetSInt64(int field, out long value) => TryGetPrimitiveValue(field, out value); in TryGetSInt64()
171 … public bool TryGetUInt32(int field, out uint value) => TryGetPrimitiveValue(field, out value); in TryGetUInt32()
[all …]
/external/protobuf/csharp/src/Google.Protobuf/Reflection/
DCustomOptions.cs84 public bool TryGetBool(int field, out bool value) => TryGetPrimitiveValue(field, out value); in TryGetBool()
93 public bool TryGetInt32(int field, out int value) => TryGetPrimitiveValue(field, out value); in TryGetInt32()
102 … public bool TryGetInt64(int field, out long value) => TryGetPrimitiveValue(field, out value); in TryGetInt64()
112 public bool TryGetFixed32(int field, out uint value) => TryGetUInt32(field, out value); in TryGetFixed32()
122 public bool TryGetFixed64(int field, out ulong value) => TryGetUInt64(field, out value); in TryGetFixed64()
132 public bool TryGetSFixed32(int field, out int value) => TryGetInt32(field, out value); in TryGetSFixed32()
142 public bool TryGetSFixed64(int field, out long value) => TryGetInt64(field, out value); in TryGetSFixed64()
152 … public bool TryGetSInt32(int field, out int value) => TryGetPrimitiveValue(field, out value); in TryGetSInt32()
162 … public bool TryGetSInt64(int field, out long value) => TryGetPrimitiveValue(field, out value); in TryGetSInt64()
171 … public bool TryGetUInt32(int field, out uint value) => TryGetPrimitiveValue(field, out value); in TryGetUInt32()
[all …]
/external/libchrome/base/json/
Djson_value_converter.h120 FieldType StructType::* field, in FieldConverter()
205 bool Convert(const base::Value& value, FieldType* field) const override { in Convert()
223 bool Convert(const base::Value& value, FieldType* field) const override { in Convert()
240 bool Convert(const base::Value& value, NestedType* field) const override { in Convert()
256 std::vector<std::unique_ptr<Element>>* field) const override { in Convert()
292 std::vector<std::unique_ptr<NestedType>>* field) const override { in Convert()
329 std::vector<std::unique_ptr<NestedType>>* field) const override { in Convert()
367 int StructType::* field) { in RegisterIntField()
374 std::string StructType::* field) { in RegisterStringField()
381 string16 StructType::* field) { in RegisterStringField()
[all …]
/external/flatbuffers/include/flatbuffers/
Dtable.h35 voffset_t GetOptionalFieldOffset(voffset_t field) const { in GetOptionalFieldOffset()
45 template<typename T> T GetField(voffset_t field, T defaultval) const { in GetField()
50 template<typename P> P GetPointer(voffset_t field) { in GetPointer()
56 template<typename P> P GetPointer(voffset_t field) const { in GetPointer()
60 template<typename P> P GetStruct(voffset_t field) const { in GetStruct()
67 flatbuffers::Optional<Face> GetOptional(voffset_t field) const { in GetOptional()
74 template<typename T> bool SetField(voffset_t field, T val, T def) { in SetField()
80 template<typename T> bool SetField(voffset_t field, T val) { in SetField()
87 bool SetPointer(voffset_t field, const uint8_t *val) { in SetPointer()
95 uint8_t *GetAddressOf(voffset_t field) { in GetAddressOf()
[all …]
Dreflection.h108 template<typename T> T GetFieldDefaultI(const reflection::Field &field) { in GetFieldDefaultI()
114 template<typename T> T GetFieldDefaultF(const reflection::Field &field) { in GetFieldDefaultF()
121 T GetFieldI(const Table &table, const reflection::Field &field) { in GetFieldI()
129 T GetFieldF(const Table &table, const reflection::Field &field) { in GetFieldF()
137 const reflection::Field &field) { in GetFieldS()
144 Vector<T> *GetFieldV(const Table &table, const reflection::Field &field) { in GetFieldV()
154 const reflection::Field &field) { in GetFieldAnyV()
159 inline Table *GetFieldT(const Table &table, const reflection::Field &field) { in GetFieldT()
167 const reflection::Field &field) { in GetFieldStruct()
176 const reflection::Field &field) { in GetFieldStruct()
[all …]
/external/openthread/third_party/tcplp/bsdtcp/sys/
Dqueue.h191 #define SLIST_FOREACH(var, head, field) \ argument
196 #define SLIST_FOREACH_FROM(var, head, field) \ argument
201 #define SLIST_FOREACH_SAFE(var, head, field, tvar) \ argument
206 #define SLIST_FOREACH_FROM_SAFE(var, head, field, tvar) \ argument
211 #define SLIST_FOREACH_PREVPTR(var, varp, head, field) \ argument
220 #define SLIST_INSERT_AFTER(slistelm, elm, field) do { \ argument
225 #define SLIST_INSERT_HEAD(head, elm, field) do { \ argument
230 #define SLIST_NEXT(elm, field) ((elm)->field.sle_next) argument
232 #define SLIST_REMOVE(head, elm, type, field) do { \ argument
246 #define SLIST_REMOVE_AFTER(elm, field) do { \ argument
[all …]
/external/libiio/src/iiod/
Dqueue.h105 #define LIST_INSERT_AFTER(listelm, elm, field) do { \ argument
113 #define LIST_INSERT_BEFORE(listelm, elm, field) do { \ argument
120 #define LIST_INSERT_HEAD(head, elm, field) do { \ argument
127 #define LIST_REMOVE(elm, field) do { \ argument
134 #define LIST_FOREACH(var, head, field) \ argument
144 #define LIST_NEXT(elm, field) ((elm)->field.le_next) argument
170 #define SLIST_INSERT_AFTER(slistelm, elm, field) do { \ argument
175 #define SLIST_INSERT_HEAD(head, elm, field) do { \ argument
180 #define SLIST_REMOVE_HEAD(head, field) do { \ argument
184 #define SLIST_REMOVE(head, elm, type, field) do { \ argument
[all …]
/external/cronet/base/json/
Djson_value_converter.h122 FieldType StructType::*field, in FieldConverter()
211 bool Convert(const base::Value& value, FieldType* field) const override { in Convert()
230 bool Convert(const base::Value& value, FieldType* field) const override { in Convert()
246 bool Convert(const base::Value& value, NestedType* field) const override { in Convert()
264 std::vector<std::unique_ptr<Element>>* field) const override { in Convert()
300 std::vector<std::unique_ptr<NestedType>>* field) const override { in Convert()
338 std::vector<std::unique_ptr<NestedType>>* field) const override { in Convert()
372 void RegisterIntField(const std::string& field_name, int StructType::*field) { in RegisterIntField()
379 std::string StructType::*field) { in RegisterStringField()
386 std::u16string StructType::*field) { in RegisterStringField()
[all …]
/external/iperf3/src/
Dqueue.h113 #define SLIST_NEXT(elm, field) ((elm)->field.sle_next) argument
115 #define SLIST_FOREACH(var, head, field) \ argument
120 #define SLIST_FOREACH_PREVPTR(var, varp, head, field) \ argument
132 #define SLIST_INSERT_AFTER(slistelm, elm, field) do { \ argument
137 #define SLIST_INSERT_HEAD(head, elm, field) do { \ argument
142 #define SLIST_REMOVE_NEXT(head, elm, field) do { \ argument
146 #define SLIST_REMOVE_HEAD(head, field) do { \ argument
150 #define SLIST_REMOVE(head, elm, type, field) do { \ argument
187 #define LIST_NEXT(elm, field) ((elm)->field.le_next) argument
189 #define LIST_FOREACH(var, head, field) \ argument
[all …]
/external/libevent/compat/sys/
Dqueue.h109 #define SLIST_NEXT(elm, field) ((elm)->field.sle_next) argument
111 #define SLIST_FOREACH(var, head, field) \ argument
123 #define SLIST_INSERT_AFTER(slistelm, elm, field) do { \ argument
128 #define SLIST_INSERT_HEAD(head, elm, field) do { \ argument
133 #define SLIST_REMOVE_HEAD(head, field) do { \ argument
160 #define LIST_NEXT(elm, field) ((elm)->field.le_next) argument
162 #define LIST_FOREACH(var, head, field) \ argument
174 #define LIST_INSERT_AFTER(listelm, elm, field) do { \ argument
182 #define LIST_INSERT_BEFORE(listelm, elm, field) do { \ argument
189 #define LIST_INSERT_HEAD(head, elm, field) do { \ argument
[all …]
/external/cronet/third_party/libevent/compat/sys/
Dqueue.h109 #define SLIST_NEXT(elm, field) ((elm)->field.sle_next) argument
111 #define SLIST_FOREACH(var, head, field) \ argument
123 #define SLIST_INSERT_AFTER(slistelm, elm, field) do { \ argument
128 #define SLIST_INSERT_HEAD(head, elm, field) do { \ argument
133 #define SLIST_REMOVE_HEAD(head, field) do { \ argument
160 #define LIST_NEXT(elm, field) ((elm)->field.le_next) argument
162 #define LIST_FOREACH(var, head, field) \ argument
174 #define LIST_INSERT_AFTER(listelm, elm, field) do { \ argument
182 #define LIST_INSERT_BEFORE(listelm, elm, field) do { \ argument
189 #define LIST_INSERT_HEAD(head, elm, field) do { \ argument
[all …]
/external/ipsec-tools/src/include-glibc/sys/
Dqueue.h129 #define SLIST_FOREACH(var, head, field) \ argument
138 #define SLIST_INSERT_AFTER(slistelm, elm, field) do { \ argument
143 #define SLIST_INSERT_HEAD(head, elm, field) do { \ argument
148 #define SLIST_NEXT(elm, field) ((elm)->field.sle_next) argument
150 #define SLIST_REMOVE(head, elm, type, field) do { \ argument
163 #define SLIST_REMOVE_HEAD(head, field) do { \ argument
191 #define STAILQ_FOREACH(var, head, field) \ argument
201 #define STAILQ_INSERT_AFTER(head, tqelm, elm, field) do { \ argument
207 #define STAILQ_INSERT_HEAD(head, elm, field) do { \ argument
213 #define STAILQ_INSERT_TAIL(head, elm, field) do { \ argument
[all …]
/external/mockito/src/main/java/org/mockito/internal/util/reflection/
DFieldInitializer.java34 private final Field field; field in FieldInitializer
48 public FieldInitializer(Object fieldOwner, Field field) { in FieldInitializer()
63 … public FieldInitializer(Object fieldOwner, Field field, ConstructorArgumentResolver argResolver) { in FieldInitializer()
67 private FieldInitializer(Object fieldOwner, Field field, ConstructorInstantiator instantiator) { in FieldInitializer()
99 private void checkNotLocal(Field field) { in checkNotLocal()
105 private void checkNotInner(Field field) { in checkNotInner()
112 private void checkNotInterface(Field field) { in checkNotInterface()
118 private void checkNotAbstract(Field field) { in checkNotAbstract()
124 private void checkNotEnum(Field field) { in checkNotEnum()
176 private final Field field; field in FieldInitializer.NoArgConstructorInstantiator
[all …]
/external/protobuf/src/google/protobuf/compiler/cpp/
Dmessage.cc105 void PrintPresenceCheck(const Formatter& format, const FieldDescriptor* field, in PrintPresenceCheck()
150 bool IsPOD(const FieldDescriptor* field) { in IsPOD()
172 bool CanBeManipulatedAsRawBytes(const FieldDescriptor* field, in CanBeManipulatedAsRawBytes()
200 for (auto field : fields) { in FindRuns() local
220 const FieldDescriptor* field) { in EmitFieldNonDefaultCondition()
263 bool HasHasMethod(const FieldDescriptor* field) { in HasHasMethod()
300 bool HasPrivateHasMethod(const FieldDescriptor* field) { in HasPrivateHasMethod()
326 bool IsCrossFileMapField(const FieldDescriptor* field) { in IsCrossFileMapField()
337 bool IsCrossFileMaybeMap(const FieldDescriptor* field) { in IsCrossFileMaybeMap()
350 for (const auto* field : FieldRange(desc)) { in HasNonSplitOptionalString() local
[all …]
/external/nanopb-c/tests/alltypes_proto3_callback/
Dencode_alltypes_callback.c13 static bool write_varint(pb_ostream_t *stream, const pb_field_t *field, void * const *arg) in write_varint()
19 static bool write_svarint(pb_ostream_t *stream, const pb_field_t *field, void * const *arg) in write_svarint()
25 static bool write_fixed32(pb_ostream_t *stream, const pb_field_t *field, void * const *arg) in write_fixed32()
31 static bool write_fixed64(pb_ostream_t *stream, const pb_field_t *field, void * const *arg) in write_fixed64()
37 static bool write_string(pb_ostream_t *stream, const pb_field_t *field, void * const *arg) in write_string()
43 static bool write_submsg(pb_ostream_t *stream, const pb_field_t *field, void * const *arg) in write_submsg()
50 static bool write_emptymsg(pb_ostream_t *stream, const pb_field_t *field, void * const *arg) in write_emptymsg()
57 static bool write_repeated_varint(pb_ostream_t *stream, const pb_field_t *field, void * const *arg) in write_repeated_varint()
71 static bool write_repeated_svarint(pb_ostream_t *stream, const pb_field_t *field, void * const *arg) in write_repeated_svarint()
85 static bool write_repeated_fixed32(pb_ostream_t *stream, const pb_field_t *field, void * const *arg) in write_repeated_fixed32()
[all …]
/external/nanopb-c/tests/alltypes_callback/
Dencode_alltypes_callback.c13 static bool write_varint(pb_ostream_t *stream, const pb_field_t *field, void * const *arg) in write_varint()
19 static bool write_svarint(pb_ostream_t *stream, const pb_field_t *field, void * const *arg) in write_svarint()
25 static bool write_fixed32(pb_ostream_t *stream, const pb_field_t *field, void * const *arg) in write_fixed32()
31 static bool write_fixed64(pb_ostream_t *stream, const pb_field_t *field, void * const *arg) in write_fixed64()
37 static bool write_string(pb_ostream_t *stream, const pb_field_t *field, void * const *arg) in write_string()
43 static bool write_submsg(pb_ostream_t *stream, const pb_field_t *field, void * const *arg) in write_submsg()
50 static bool write_emptymsg(pb_ostream_t *stream, const pb_field_t *field, void * const *arg) in write_emptymsg()
57 static bool write_repeated_varint(pb_ostream_t *stream, const pb_field_t *field, void * const *arg) in write_repeated_varint()
71 static bool write_repeated_svarint(pb_ostream_t *stream, const pb_field_t *field, void * const *arg) in write_repeated_svarint()
85 static bool write_repeated_fixed32(pb_ostream_t *stream, const pb_field_t *field, void * const *arg) in write_repeated_fixed32()
[all …]
/external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/jdkadapter/
DCalendarICU.java45 public void add(int field, int amount) { in add()
103 public int get(int field) { in get()
109 public int getActualMaximum(int field) { in getActualMaximum()
114 public int getActualMinimum(int field) { in getActualMinimum()
119 public String getDisplayName(int field, int style, Locale locale) { in getDisplayName()
135 public Map<String,Integer> getDisplayNames(int field, int style, Locale locale) { in getDisplayNames()
163 public int getGreatestMinimum(int field) { in getGreatestMinimum()
168 public int getLeastMaximum(int field) { in getLeastMaximum()
173 public int getMaximum(int field) { in getMaximum()
183 public int getMinimum(int field) { in getMinimum()
[all …]
/external/grpc-grpc/third_party/nanopb/tests/alltypes_callback/
Dencode_alltypes_callback.c13 static bool write_varint(pb_ostream_t *stream, const pb_field_t *field, void * const *arg) in write_varint()
19 static bool write_svarint(pb_ostream_t *stream, const pb_field_t *field, void * const *arg) in write_svarint()
25 static bool write_fixed32(pb_ostream_t *stream, const pb_field_t *field, void * const *arg) in write_fixed32()
31 static bool write_fixed64(pb_ostream_t *stream, const pb_field_t *field, void * const *arg) in write_fixed64()
37 static bool write_string(pb_ostream_t *stream, const pb_field_t *field, void * const *arg) in write_string()
43 static bool write_submsg(pb_ostream_t *stream, const pb_field_t *field, void * const *arg) in write_submsg()
50 static bool write_emptymsg(pb_ostream_t *stream, const pb_field_t *field, void * const *arg) in write_emptymsg()
57 static bool write_repeated_varint(pb_ostream_t *stream, const pb_field_t *field, void * const *arg) in write_repeated_varint()
71 static bool write_repeated_svarint(pb_ostream_t *stream, const pb_field_t *field, void * const *arg) in write_repeated_svarint()
85 static bool write_repeated_fixed32(pb_ostream_t *stream, const pb_field_t *field, void * const *arg) in write_repeated_fixed32()
[all …]
/external/cronet/third_party/protobuf/src/google/protobuf/compiler/cpp/
Dcpp_message.cc104 void PrintPresenceCheck(const Formatter& format, const FieldDescriptor* field, in PrintPresenceCheck()
149 bool IsPOD(const FieldDescriptor* field) { in IsPOD()
171 bool CanBeManipulatedAsRawBytes(const FieldDescriptor* field, in CanBeManipulatedAsRawBytes()
199 for (auto field : fields) { in FindRuns() local
219 const FieldDescriptor* field) { in EmitFieldNonDefaultCondition()
262 bool HasHasMethod(const FieldDescriptor* field) { in HasHasMethod()
299 bool HasPrivateHasMethod(const FieldDescriptor* field) { in HasPrivateHasMethod()
325 bool IsCrossFileMapField(const FieldDescriptor* field) { in IsCrossFileMapField()
336 bool IsCrossFileMaybeMap(const FieldDescriptor* field) { in IsCrossFileMaybeMap()
349 for (const auto* field : FieldRange(desc)) { in HasSingularString() local
[all …]
/external/apache-commons-lang/src/main/java/org/apache/commons/lang3/reflect/
DFieldUtils.java107 final Field field = acls.getDeclaredField(fieldName); in getField() local
174 final Field field = cls.getDeclaredField(fieldName); in getDeclaredField() local
266 public static Object readStaticField(final Field field) throws IllegalAccessException { in readStaticField()
284 …public static Object readStaticField(final Field field, final boolean forceAccess) throws IllegalA… in readStaticField()
327 final Field field = getField(cls, fieldName, forceAccess); in readStaticField() local
371 final Field field = getDeclaredField(cls, fieldName, forceAccess); in readDeclaredStaticField() local
390 …public static Object readField(final Field field, final Object target) throws IllegalAccessExcepti… in readField()
410 …public static Object readField(final Field field, final Object target, final boolean forceAccess) … in readField()
457 final Field field = getField(cls, fieldName, forceAccess); in readField() local
500 final Field field = getDeclaredField(cls, fieldName, forceAccess); in readDeclaredField() local
[all …]
/external/protobuf/java/core/src/main/java/com/google/protobuf/
DMessageReflection.java65 final Descriptors.FieldDescriptor field = entry.getKey(); in writeMessageTo() local
91 final Descriptors.FieldDescriptor field = entry.getKey(); in getSerializedSize() local
138 final Descriptors.FieldDescriptor field = entry.getKey(); in isInitialized() local
158 final String prefix, final Descriptors.FieldDescriptor field, final int index) { in subMessagePrefix()
182 final Descriptors.FieldDescriptor field = entry.getKey(); in findMissingFields() local
235 public Object getField(Descriptors.FieldDescriptor field); in getField()
244 boolean hasField(Descriptors.FieldDescriptor field); in hasField()
250 MergeTarget setField(Descriptors.FieldDescriptor field, Object value); in setField()
256 MergeTarget clearField(Descriptors.FieldDescriptor field); in clearField()
266 MergeTarget setRepeatedField(Descriptors.FieldDescriptor field, int index, Object value); in setRepeatedField()
[all …]
/external/cronet/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
DMessageReflection.java65 final Descriptors.FieldDescriptor field = entry.getKey(); in writeMessageTo() local
91 final Descriptors.FieldDescriptor field = entry.getKey(); in getSerializedSize() local
138 final Descriptors.FieldDescriptor field = entry.getKey(); in isInitialized() local
158 final String prefix, final Descriptors.FieldDescriptor field, final int index) { in subMessagePrefix()
182 final Descriptors.FieldDescriptor field = entry.getKey(); in findMissingFields() local
235 public Object getField(Descriptors.FieldDescriptor field); in getField()
244 boolean hasField(Descriptors.FieldDescriptor field); in hasField()
250 MergeTarget setField(Descriptors.FieldDescriptor field, Object value); in setField()
256 MergeTarget clearField(Descriptors.FieldDescriptor field); in clearField()
266 MergeTarget setRepeatedField(Descriptors.FieldDescriptor field, int index, Object value); in setRepeatedField()
[all …]
/external/protobuf/php/src/Google/Protobuf/Internal/
DMessage.php267 private function defaultValue($field)
367 private static function parseFieldFromStreamNoTag($input, $field, &$value)
493 private function parseFieldFromStream($tag, $input, $field)
817 $field,
1345 private function serializeSingularFieldToStream($field, &$output)
1361 private function serializeRepeatedFieldToStream($field, &$output)
1401 private function serializeMapFieldToStream($field, $output)
1428 private function serializeFieldToStream(&$output, $field)
1442 private function serializeFieldToJsonStream(&$output, $field)
1581 private function existField($field)
[all …]
/external/cronet/third_party/protobuf/php/src/Google/Protobuf/Internal/
DMessage.php267 private function defaultValue($field)
367 private static function parseFieldFromStreamNoTag($input, $field, &$value)
493 private function parseFieldFromStream($tag, $input, $field)
817 $field,
1345 private function serializeSingularFieldToStream($field, &$output)
1361 private function serializeRepeatedFieldToStream($field, &$output)
1401 private function serializeMapFieldToStream($field, $output)
1428 private function serializeFieldToStream(&$output, $field)
1442 private function serializeFieldToJsonStream(&$output, $field)
1581 private function existField($field)
[all …]

12345678910>>...84