HomeSort by relevance Sort by last modified time
    Searched refs:constantString (Results 1 - 4 of 4) sorted by null

  /dalvik/dx/src/com/android/dx/rop/code/
ThrowingCstInsn.java 62 String constantString = cst.toHuman();
64 constantString = ((CstString) cst).toQuoted();
66 return constantString + " " + ThrowingInsn.toCatchString(catches);
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
ThrowingCstInsn.java 62 String constantString = cst.toHuman();
64 constantString = ((CstString) cst).toQuoted();
66 return constantString + " " + ThrowingInsn.toCatchString(catches);
  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
CSSTokenizer-in.cpp 233 static inline bool isEqualToCSSIdentifier(CharacterType* cssString, const char* constantString)
239 ASSERT((*constantString >= 'a' && *constantString <= 'z') || *constantString == '-');
240 ASSERT(*constantString != '-' || isCSSLetter(*cssString));
241 if (toASCIILowerUnchecked(*cssString++) != (*constantString++))
243 } while (*constantString);
248 static inline bool isEqualToCSSCaseSensitiveIdentifier(CharacterType* string, const char* constantString)
250 ASSERT(*constantString);
253 if (*string++ != *constantString++
    [all...]
  /art/test/046-reflect/src/
Main.java 328 field = target.getField("constantString");
768 public static final String constantString = "a constant string";

Completed in 296 milliseconds