Searched defs:literalValue (Results 1 - 2 of 2) sorted by relevance

/external/jsilver/src/com/google/clearsilver/jsilver/values/
H A DValue.java115 public static Value literalValue(int value, EscapeMode mode, boolean partiallyEscaped) { method in class:Value
122 public static Value literalValue(String value, EscapeMode mode, boolean partiallyEscaped) { method in class:Value
136 public static Value literalValue(boolean value, EscapeMode mode, boolean partiallyEscaped) { method in class:Value
171 return literalValue(value, EscapeMode.ESCAPE_IS_CONSTANT, isPartiallyEscaped);
190 return literalValue(value, EscapeMode.ESCAPE_IS_CONSTANT, isPartiallyEscaped);
209 return literalValue(value, EscapeMode.ESCAPE_IS_CONSTANT, isPartiallyEscaped);
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
H A DRegisterType.java238 public static RegisterType getRegisterTypeForLiteral(long literalValue) { argument
239 if (literalValue < -32768) {
242 if (literalValue < -128) {
245 if (literalValue < 0) {
248 if (literalValue == 0) {
251 if (literalValue == 1) {
254 if (literalValue < 128) {
257 if (literalValue < 32768) {
260 if (literalValue < 65536) {

Completed in 126 milliseconds