Home
last modified time | relevance | path

Searched refs:readValue (Results 1 – 10 of 10) sorted by relevance

/external/icu4c/common/
Ducharstrieiterator.cpp141 value_=readValue(pos, node&0x7fff); in next()
199 int32_t value=readValue(pos, node&=0x7fff); in branchNext()
Dbytestrie.cpp30 BytesTrie::readValue(const uint8_t *pos, int32_t leadByte) { in readValue() function in BytesTrie
329 int32_t value=readValue(pos, node>>1); in findUniqueValueFromBranch()
368 int32_t value=readValue(pos, node>>1); in findUniqueValue()
Dbytestrieiterator.cpp136 value_=readValue(pos, node>>1); in next()
195 int32_t value=readValue(pos, node>>1); in branchNext()
Ducharstrie.cpp299 int32_t value=readValue(pos, node); in findUniqueValueFromBranch()
342 value=readValue(pos, node&0x7fff); in findUniqueValue()
/external/proguard/src/proguard/classfile/instruction/
DConstantInstruction.java133 constantIndex = readValue(code, offset, constantIndexSize); offset += constantIndexSize; in readInfo()
134 constant = readValue(code, offset, constantSize); in readInfo()
DInstruction.java812 protected static int readValue(byte[] code, int offset, int valueSize) in readValue() method in Instruction
DVariableInstruction.java271 variableIndex = readValue(code, offset, variableIndexSize); offset += variableIndexSize; in readInfo()
/external/icu4c/common/unicode/
Dbytestrie.h210 return readValue(pos, leadByte>>1); in getValue()
365 static int32_t readValue(const uint8_t *pos, int32_t leadByte);
Ducharstrie.h225 readValue(pos, leadUnit&0x7fff) : readNodeValue(pos, leadUnit); in getValue()
382 static inline int32_t readValue(const UChar *pos, int32_t leadUnit) { in readValue() function
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/material/plugins/
DJ3MLoader.java124 private Object readValue(VarType type, String value) throws IOException{ in readValue() method in J3MLoader
257 defaultValObj = readValue(type, defaultVal); in readParam()
277 Object valueObj = readValue(p.getVarType(), split[1]); in readValueParam()