/packages/services/Car/car-lib/src/android/car/hardware/ |
CarPropertyValue.java | 53 mValue = (T) in.readValue(getClass().getClassLoader());
|
CarPropertyConfig.java | 195 mMinValue = (T) in.readValue(getClass().getClassLoader()); 196 mMaxValue = (T) in.readValue(getClass().getClassLoader());
|
/external/icu/icu4c/source/common/ |
bytestrieiterator.cpp | 136 value_=readValue(pos, node>>1); 195 int32_t value=readValue(pos, node>>1);
|
ucharstrieiterator.cpp | 141 value_=readValue(pos, node&0x7fff); 199 int32_t value=readValue(pos, node&=0x7fff);
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/influencers/ |
ColorInfluencer.java | 120 alphaValue = json.readValue("alpha", ScaledNumericValue.class, jsonData); 121 colorValue = json.readValue("color", GradientColorValue.class, jsonData);
|
DynamicsModifier.java | 110 strengthValue = json.readValue("strengthValue", ScaledNumericValue.class, jsonData); 177 thetaValue = json.readValue("thetaValue", ScaledNumericValue.class, jsonData); 178 phiValue = json.readValue("phiValue", ScaledNumericValue.class, jsonData); 499 isGlobal = json.readValue("isGlobal", boolean.class, jsonData);
|
SimpleInfluencer.java | 85 value = json.readValue("value", ScaledNumericValue.class, jsonData);
|
RegionInfluencer.java | 223 regions.addAll(json.readValue("regions", Array.class, AspectTextureRegion.class, jsonData));
|
/frameworks/base/core/java/android/util/jar/ |
StrictJarManifestReader.java | 108 readValue(); 142 private void readValue() throws IOException {
|
/frameworks/compile/mclinker/include/mcld/Target/ |
ELFAttributeData.h | 90 /// ReadValue - read an attribute value from input buffer 95 static bool ReadValue(ELFAttributeValue& pValue,
|
/art/runtime/jdwp/ |
jdwp_request.cc | 65 uint64_t Request::ReadValue(size_t width) {
|
/cts/tests/tests/os/src/android/os/cts/ |
ParcelTest.java | 253 assertNull(p.readValue(mcl)); 260 assertEquals("String", p.readValue(mcl)); 267 assertEquals(Integer.MAX_VALUE, p.readValue(mcl)); 279 map2 = (HashMap) p.readValue(mcl); 296 bundle2 = (Bundle) p.readValue(mcl); 309 assertEquals(s, p.readValue(mcl)); 316 assertEquals(Short.MAX_VALUE, p.readValue(mcl)); 323 assertEquals(Long.MAX_VALUE, p.readValue(mcl)); 330 assertEquals(Float.MAX_VALUE, p.readValue(mcl)); 337 assertEquals(Double.MAX_VALUE, p.readValue(mcl)) [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/util/ |
CharsTrie.java | 307 readValue(chars_, pos, leadUnit&0x7fff) : readNodeValue(chars_, pos, leadUnit); 507 entry_.value=readValue(chars_, pos, node&0x7fff); 580 int value=readValue(chars_, pos, node&=0x7fff); 621 private static int readValue(CharSequence chars, int pos, int leadUnit) { 729 // int delta=readValue(pos, node); 739 // end readValue() 813 int value=readValue(chars, pos, node); 858 value=readValue(chars, pos, node&0x7fff); [all...] |
BytesTrie.java | 338 return readValue(bytes_, pos, leadByte>>1); 576 entry_.value=readValue(bytes_, pos, node>>1); 636 int value=readValue(bytes_, pos, node>>1); 674 private static int readValue(byte[] bytes, int pos, int leadByte) { 775 // int delta=readValue(pos, node>>1); 792 // end readValue() 866 int value=readValue(bytes, pos, node>>1); [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
CharsTrie.java | 320 readValue(chars_, pos, leadUnit&0x7fff) : readNodeValue(chars_, pos, leadUnit); 532 entry_.value=readValue(chars_, pos, node&0x7fff); 606 int value=readValue(chars_, pos, node&=0x7fff); 647 private static int readValue(CharSequence chars, int pos, int leadUnit) { 755 // int delta=readValue(pos, node); 765 // end readValue() 839 int value=readValue(chars, pos, node); 884 value=readValue(chars, pos, node&0x7fff); [all...] |
BytesTrie.java | 357 return readValue(bytes_, pos, leadByte>>1); 610 entry_.value=readValue(bytes_, pos, node>>1); 671 int value=readValue(bytes_, pos, node>>1); 709 private static int readValue(byte[] bytes, int pos, int leadByte) { 810 // int delta=readValue(pos, node>>1); 827 // end readValue() [all...] |
/external/proguard/src/proguard/classfile/instruction/ |
ConstantInstruction.java | 129 constantIndex = readValue(code, offset, constantIndexSize); offset += constantIndexSize; 130 constant = readValue(code, offset, constantSize);
|
/packages/apps/Settings/src/com/android/settings/widget/ |
SwitchBar.java | 284 checked = (Boolean)in.readValue(null); 285 visible = (Boolean)in.readValue(null);
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowParcel.java | 687 public Object readValue(ClassLoader loader) { 964 Object key = readValue(loader); 965 Object value = readValue(loader); 972 Object value = readValue(loader); 980 Object value = readValue(loader);
|
/prebuilts/go/darwin-x86/src/encoding/json/ |
stream.go | 57 n, err := dec.readValue() 81 // readValue reads a JSON value into dec.buf. 83 func (dec *Decoder) readValue() (int, error) {
|
/prebuilts/go/linux-x86/src/encoding/json/ |
stream.go | 57 n, err := dec.readValue() 81 // readValue reads a JSON value into dec.buf. 83 func (dec *Decoder) readValue() (int, error) {
|
/external/jsoncpp/src/lib_json/ |
json_reader.cpp | 130 bool successful = readValue(); 151 bool Reader::readValue() { 439 bool ok = readValue(); 475 bool ok = readValue();
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/ |
TextureAtlas.java | 126 String direction = readValue(reader);
141 boolean rotate = Boolean.valueOf(readValue(reader));
179 region.index = Integer.parseInt(readValue(reader));
432 static String readValue (BufferedReader reader) throws IOException {
|
/frameworks/compile/mclinker/lib/Target/ |
ELFAttribute.cpp | 250 if (!ELFAttributeData::ReadValue(*out_attr, attr_buf, attr_size)) 259 if (!ELFAttributeData::ReadValue(in_attr, attr_buf, attr_size))
|
/external/jsoncpp/include/json/ |
reader.h | 199 bool readValue();
|