Home
last modified time | relevance | path

Searched +defs:val +defs:fields (Results 1 – 25 of 1076) sorted by relevance

12345678910>>...44

/aosp_15_r20/packages/modules/Connectivity/staticlibs/device/com/android/net/module/util/
DStruct.java277 private static boolean allFieldsFinal(final FieldInfo[] fields, boolean immutable) { in allFieldsFinal()
284 private static boolean hasBothMutableAndImmutableFields(final FieldInfo[] fields) { in hasBothMutableAndImmutableFields()
289 private static boolean matchConstructor(final Constructor cons, final FieldInfo[] fields) { in matchConstructor()
765 public final boolean val; field in Struct.Bool
767 public Bool(final boolean val) { in Bool()
775 public final short val; field in Struct.U8
777 public U8(final short val) { in U8()
785 public final int val; field in Struct.S32
787 public S32(final int val) { in S32()
795 public final long val; field in Struct.U32
[all …]
/aosp_15_r20/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
H A DFieldTest.java195 Double val = (Double) f.get(x); in test_getLjava_lang_Object() local
437 Field fields[] = { objectField, byteField, shortField, charField, in testProtectedFieldAccess() local
674 char val = 0; in test_getCharLjava_lang_Object() local
725 Field[] fields; in test_getDeclaringClass() local
750 double val = 0.0; in test_getDoubleLjava_lang_Object() local
805 float val = 0; in test_getFloatLjava_lang_Object() local
859 int val = 0; in test_getIntLjava_lang_Object() local
915 long val = 0; in test_getLongLjava_lang_Object() local
1004 short val = 0; in test_getShortLjava_lang_Object() local
1076 double val = 0.0; in test_setLjava_lang_ObjectLjava_lang_Object() local
[all …]
/aosp_15_r20/external/tensorflow/tensorflow/lite/testing/
H A Dsplit.h44 std::vector<string> fields; in Split() local
53 std::vector<int> fields; in Split() local
63 std::vector<uint32_t> fields; in Split() local
73 std::vector<int64_t> fields; in Split() local
83 std::vector<uint64_t> fields; in Split() local
93 std::vector<float> fields; in Split() local
102 std::vector<double> fields; in Split() local
111 std::vector<uint8_t> fields; in Split() local
121 std::vector<int8_t> fields; in Split() local
131 std::vector<int16_t> fields; in Split() local
[all …]
/aosp_15_r20/external/scapy/scapy/layers/
H A Dradius.py289 def __init__(self, _pkt="", post_transform=None, _internal=0, _underlayer=None, **fields):
323 val = 5 variable in RadiusAttr_NAS_Port
328 val = 12 variable in RadiusAttr_Framed_MTU
333 val = 16 variable in RadiusAttr_Login_TCP_Port
338 val = 27 variable in RadiusAttr_Session_Timeout
343 val = 28 variable in RadiusAttr_Idle_Timeout
348 val = 37 variable in RadiusAttr_Framed_AppleTalk_Link
353 val = 38 variable in RadiusAttr_Framed_AppleTalk_Network
358 val = 41 variable in RadiusAttr_Acct_Delay_Time
363 val = 42 variable in RadiusAttr_Acct_Input_Octets
[all …]
/aosp_15_r20/out/soong/.intermediates/packages/modules/Connectivity/staticlibs/net-utils-device-common-struct-base/android_common/javac/
Dnet-utils-device-common-struct-base.jar ... .module.util.Struct { public final boolean val public void <init> (boolean) boolean val ...
/aosp_15_r20/external/nanopb-c/
H A Dpb_encode.c528 bool checkreturn pb_encode(pb_ostream_t *stream, const pb_field_t fields[], const void *src_struct) in pb_encode()
552 bool pb_encode_delimited(pb_ostream_t *stream, const pb_field_t fields[], const void *src_struct) in pb_encode_delimited()
557 bool pb_encode_nullterminated(pb_ostream_t *stream, const pb_field_t fields[], const void *src_stru… in pb_encode_nullterminated()
567 bool pb_get_encoded_size(size_t *size, const pb_field_t fields[], const void *src_struct) in pb_get_encoded_size()
643 uint32_t val = *(const uint32_t*)value; in pb_encode_fixed32() local
655 uint64_t val = *(const uint64_t*)value; in pb_encode_fixed64() local
717 bool checkreturn pb_encode_submessage(pb_ostream_t *stream, const pb_field_t fields[], const void *… in pb_encode_submessage()
/aosp_15_r20/external/turbine/java/com/google/turbine/binder/bytecode/
H A DBytecodeBoundClass.java349 private final Supplier<ImmutableList<FieldInfo>> fields = field in BytecodeBoundClass
376 public ImmutableList<FieldInfo> fields() { in fields() method in BytecodeBoundClass
530 ElementValue val = annotation.elementValuePairs().get("value"); in bindRetention() local
546 ElementValue val = annotation.elementValuePairs().get("value"); in bindTarget() local
573 ElementValue val = annotation.elementValuePairs().get("value"); in bindRepeatable() local
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/1/libcore/ojluni/src/main/java/java/io/
DObjectOutputStream.java700 public void write(int val) throws IOException { in write()
775 public void writeBoolean(boolean val) throws IOException { in writeBoolean()
786 public void writeByte(int val) throws IOException { in writeByte()
797 public void writeShort(int val) throws IOException { in writeShort()
808 public void writeChar(int val) throws IOException { in writeChar()
819 public void writeInt(int val) throws IOException { in writeInt()
830 public void writeLong(long val) throws IOException { in writeLong()
841 public void writeFloat(float val) throws IOException { in writeFloat()
852 public void writeDouble(double val) throws IOException { in writeDouble()
913 public abstract void put(String name, boolean val); in put()
[all …]
DObjectInputStream.java1202 public abstract boolean get(String name, boolean val) in get()
1217 public abstract byte get(String name, byte val) throws IOException; in get()
1231 public abstract char get(String name, char val) throws IOException; in get()
1245 public abstract short get(String name, short val) throws IOException; in get()
1259 public abstract int get(String name, int val) throws IOException; in get()
1273 public abstract long get(String name, long val) throws IOException; in get()
1287 public abstract float get(String name, float val) throws IOException; in get()
1301 public abstract double get(String name, double val) throws IOException; in get()
1315 public abstract Object get(String name, Object val) throws IOException; in get()
2181 ObjectStreamField[] fields = desc.getFields(false); in defaultReadFields() local
[all …]
/aosp_15_r20/libcore/ojluni/src/main/java/java/io/
H A DObjectOutputStream.java700 public void write(int val) throws IOException { in write()
775 public void writeBoolean(boolean val) throws IOException { in writeBoolean()
786 public void writeByte(int val) throws IOException { in writeByte()
797 public void writeShort(int val) throws IOException { in writeShort()
808 public void writeChar(int val) throws IOException { in writeChar()
819 public void writeInt(int val) throws IOException { in writeInt()
830 public void writeLong(long val) throws IOException { in writeLong()
841 public void writeFloat(float val) throws IOException { in writeFloat()
852 public void writeDouble(double val) throws IOException { in writeDouble()
913 public abstract void put(String name, boolean val); in put()
[all …]
H A DObjectInputStream.java1202 public abstract boolean get(String name, boolean val) in get()
1217 public abstract byte get(String name, byte val) throws IOException; in get()
1231 public abstract char get(String name, char val) throws IOException; in get()
1245 public abstract short get(String name, short val) throws IOException; in get()
1259 public abstract int get(String name, int val) throws IOException; in get()
1273 public abstract long get(String name, long val) throws IOException; in get()
1287 public abstract float get(String name, float val) throws IOException; in get()
1301 public abstract double get(String name, double val) throws IOException; in get()
1315 public abstract Object get(String name, Object val) throws IOException; in get()
2181 ObjectStreamField[] fields = desc.getFields(false); in defaultReadFields() local
[all …]
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/gensrcs/libcore/ojluni/src/main/java/java/io/
DObjectOutputStream.java700 public void write(int val) throws IOException { in write()
775 public void writeBoolean(boolean val) throws IOException { in writeBoolean()
786 public void writeByte(int val) throws IOException { in writeByte()
797 public void writeShort(int val) throws IOException { in writeShort()
808 public void writeChar(int val) throws IOException { in writeChar()
819 public void writeInt(int val) throws IOException { in writeInt()
830 public void writeLong(long val) throws IOException { in writeLong()
841 public void writeFloat(float val) throws IOException { in writeFloat()
852 public void writeDouble(double val) throws IOException { in writeDouble()
913 public abstract void put(String name, boolean val); in put()
[all …]
DObjectInputStream.java1202 public abstract boolean get(String name, boolean val) in get()
1217 public abstract byte get(String name, byte val) throws IOException; in get()
1231 public abstract char get(String name, char val) throws IOException; in get()
1245 public abstract short get(String name, short val) throws IOException; in get()
1259 public abstract int get(String name, int val) throws IOException; in get()
1273 public abstract long get(String name, long val) throws IOException; in get()
1287 public abstract float get(String name, float val) throws IOException; in get()
1301 public abstract double get(String name, double val) throws IOException; in get()
1315 public abstract Object get(String name, Object val) throws IOException; in get()
2181 ObjectStreamField[] fields = desc.getFields(false); in defaultReadFields() local
[all …]
/aosp_15_r20/external/grpc-grpc/third_party/upb/upb/util/
H A Dcompare_test.cc30 uint64_t val; member
34 uint64_t val; // Over-encoded. member
38 std::string val; member
42 uint64_t val; member
46 uint32_t val; member
50 UnknownFields val; member
60 void EncodeVarint(uint64_t val, std::string* str) { in EncodeVarint()
69 std::string ToBinaryPayload(const UnknownFields& fields) { in ToBinaryPayload()
73 if (const auto* val = std::get_if<Varint>(&field.value)) { in ToBinaryPayload() local
76 } else if (const auto* val = std::get_if<LongVarint>(&field.value)) { in ToBinaryPayload() local
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/third_party/upb/upb/util/
Dcompare_test.cc47 uint64_t val; member
51 uint64_t val; // Over-encoded. member
55 std::string val; member
59 uint64_t val; member
63 uint32_t val; member
67 UnknownFields val; member
75 void EncodeVarint(uint64_t val, std::string* str) { in EncodeVarint()
84 std::string ToBinaryPayload(const UnknownFields& fields) { in ToBinaryPayload()
88 if (const auto* val = std::get_if<Varint>(&field.value)) { in ToBinaryPayload() local
91 } else if (const auto* val = std::get_if<LongVarint>(&field.value)) { in ToBinaryPayload() local
[all …]
/aosp_15_r20/external/mesa3d/src/compiler/nir/tests/
H A Dload_store_vectorizer_tests.cpp716 nir_def *val = store->src[0].ssa; in TEST_F() local
739 nir_def *val = store->src[0].ssa; in TEST_F() local
763 nir_def *val = store->src[0].ssa; in TEST_F() local
927 nir_def *val = loads[0x3]->src.ssa; in TEST_F() local
959 nir_def *val = loads[0x2]->src.ssa; in TEST_F() local
986 nir_def *val = loads[0x2]->src.ssa; in TEST_F() local
1019 nir_def *val = loads[0x2]->src.ssa; in TEST_F() local
1043 nir_def *val = store->src[0].ssa; in TEST_F() local
1068 nir_def *val = store->src[0].ssa; in TEST_F() local
1094 nir_def *val = store->src[0].ssa; in TEST_F() local
[all …]
/aosp_15_r20/external/webrtc/rtc_base/
H A Dstring_encode.cc30 char hex_encode(unsigned char val) { in hex_encode()
36 bool hex_decode(char ch, unsigned char* val) { in hex_decode()
139 std::vector<std::string>* fields) { in tokenize()
178 std::vector<absl::string_view> fields; in split() local
/aosp_15_r20/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DEraRules.java77 int[] fields = res.getIntVector(); in getInstance() local
85 String val = res.getString(); in getInstance() local
167 int[] fields = decodeDate(startDates[eraIdx], null); in getStartYear() local
221 int[] fields = Grego.timeToFields(localMillis, null); in initCurrentEra() local
/aosp_15_r20/external/icu/icu4j/main/core/src/main/java/com/ibm/icu/impl/
H A DEraRules.java75 int[] fields = res.getIntVector(); in getInstance() local
83 String val = res.getString(); in getInstance() local
165 int[] fields = decodeDate(startDates[eraIdx], null); in getStartYear() local
219 int[] fields = Grego.timeToFields(localMillis, null); in initCurrentEra() local
/aosp_15_r20/external/cronet/third_party/icu/source/tools/tzcode/
H A Dzic.c977 register char ** fields; in infile() local
1119 inrule(register char **const fields, const int nfields) in inrule()
1145 inzone(register char **const fields, const int nfields) in inzone()
1179 inzcont(register char **const fields, const int nfields) in inzcont()
1189 inzsub(register char **const fields, const int nfields, const int iscont) in inzsub()
1266 inleap(register char ** const fields, const int nfields) in inleap()
1369 inlink(register char **const fields, const int nfields) in inlink()
1544 convert(const int_fast32_t val, char *const buf) in convert()
1555 convert64(const zic_t val, char *const buf) in convert64()
1566 puttzcode(const int_fast32_t val, FILE *const fp) in puttzcode()
[all …]
/aosp_15_r20/external/icu/icu4c/source/tools/tzcode/
H A Dzic.c977 register char ** fields; in infile() local
1119 inrule(register char **const fields, const int nfields) in inrule()
1145 inzone(register char **const fields, const int nfields) in inzone()
1179 inzcont(register char **const fields, const int nfields) in inzcont()
1189 inzsub(register char **const fields, const int nfields, const int iscont) in inzsub()
1266 inleap(register char ** const fields, const int nfields) in inleap()
1369 inlink(register char **const fields, const int nfields) in inlink()
1544 convert(const int_fast32_t val, char *const buf) in convert()
1555 convert64(const zic_t val, char *const buf) in convert64()
1566 puttzcode(const int_fast32_t val, FILE *const fp) in puttzcode()
[all …]
/aosp_15_r20/hardware/google/pixel/perfstatsd/
Dcpu_usage.cpp37 std::vector<std::string> fields = android::base::Split(line, " "); in CpuUsage() local
52 uint32_t val = 0; in setOptions() local
89 std::vector<std::string> fields = android::base::Split(pidStat, " "); in profileProcess() local
164 std::vector<std::string> fields = android::base::Split(line, " "); in getOverallUsage() local
/aosp_15_r20/external/turbine/java/com/google/turbine/binder/
H A DConstBinder.java109 ImmutableList<TypeBoundClass.FieldInfo> fields = fields(base.fields()); in bind() local
232 Const val = requireNonNull(annotation.values().get("value")); in bindTarget() local
270 private ImmutableList<TypeBoundClass.FieldInfo> fields(ImmutableList<FieldInfo> fields) { in fields() method in ConstBinder
/aosp_15_r20/libcore/ojluni/src/main/java/java/lang/
H A DStringBuffer.java753 java.io.ObjectOutputStream.PutField fields = s.putFields(); in writeObject() local
754 char[] val = new char[capacity()]; in writeObject() local
772 java.io.ObjectInputStream.GetField fields = s.readFields(); in readObject() local
773 char[] val = (char[])fields.get("value", null); in readObject() local
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/gensrcs/libcore/ojluni/src/main/java/java/lang/
DStringBuffer.java753 java.io.ObjectOutputStream.PutField fields = s.putFields(); in writeObject() local
754 char[] val = new char[capacity()]; in writeObject() local
772 java.io.ObjectInputStream.GetField fields = s.readFields(); in readObject() local
773 char[] val = (char[])fields.get("value", null); in readObject() local

12345678910>>...44