HomeSort by relevance Sort by last modified time
    Searched refs:isPrefix (Results 1 - 25 of 38) sorted by null

1 2

  /external/apache-xml/src/main/java/org/apache/xml/utils/
PrefixResolverDefault.java 105 boolean isPrefix = aname.startsWith("xmlns:");
107 if (isPrefix || aname.equals("xmlns"))
110 String p = isPrefix ? aname.substring(index + 1) : "";
DOMHelper.java 712 boolean isPrefix = aname.startsWith("xmlns:");
714 if (aname.equals("xmlns") || isPrefix)
722 String p = isPrefix ? aname.substring(6) : "";
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/jaxp/
JAXPPrefixResolver.java 106 boolean isPrefix = aname.startsWith("xmlns:");
108 if (isPrefix || aname.equals("xmlns")) {
110 String p =isPrefix ?aname.substring(index + 1) :"";
  /external/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonMCInst.h 57 bool isPrefix() const;
HexagonMCInst.cpp 41 !isPrefix() &&
46 bool HexagonMCInst::isPrefix() const {
  /frameworks/compile/mclinker/include/mcld/Script/
WildcardPattern.h 46 bool isPrefix() const { return m_bIsPrefix; }
  /frameworks/compile/mclinker/lib/Script/
WildcardPattern.cpp 45 if (isPrefix())
  /packages/apps/Nfc/src/com/android/nfc/cardemulation/
RegisteredAidCache.java 161 boolean isPrefix = isPrefix(entry.getKey());
162 String entryAid = isPrefix ? entry.getKey().substring(0,
164 if (entryAid.equalsIgnoreCase(aid) || (isPrefix && aid.startsWith(entryAid))) {
390 static boolean isPrefix(String aid) {
440 if (isPrefix(aidToResolve)) {
  /external/smali/dexlib2/src/main/ragel/
SyntheticAccessorFSM.rl 205 boolean isPrefix = putRegister == returnRegister;
248 if (isPrefix) {
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
SyntheticAccessorFSM.java 507 boolean isPrefix = putRegister == returnRegister;
550 if (isPrefix) {
  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3Int.h 221 int isPrefix; /* True if token ends with a "*" character */
fts3_expr.c 171 pRet->pPhrase->aToken[0].isPrefix = 1;
253 p->pPhrase->aToken[ii].isPrefix = 1;
255 p->pPhrase->aToken[ii].isPrefix = 0;
807 (pPhrase->aToken[i].isPrefix?"+":"")
fts3.c     [all...]
fts3_write.c     [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts2/
fts2.c     [all...]
  /external/chromium_org/third_party/icu/source/i18n/unicode/
decimfmt.h     [all...]
  /external/icu/icu4c/source/i18n/unicode/
decimfmt.h     [all...]
  /external/llvm/lib/Target/X86/Disassembler/
X86DisassemblerDecoder.cpp 330 bool isPrefix = true;
341 while (isPrefix) {
449 isPrefix = false;
453 if (isPrefix)
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
DeadStoresChecker.cpp 301 if (!U->isIncrementOp() || U->isPrefix())
  /external/chromium_org/third_party/icu/source/i18n/
decimfmt.cpp     [all...]
ucol_imp.h 629 #define isPrefix(CE) (isSpecial((CE)) && (getCETag((CE)) == SPEC_PROC_TAG))
    [all...]
ucol_elm.cpp 903 if(!isPrefix(CE)) {
    [all...]
  /external/icu/icu4c/source/i18n/
decimfmt.cpp     [all...]
  /frameworks/compile/mclinker/lib/Object/
SectionMap.cpp 340 if (pPattern.isPrefix()) {
  /external/llvm/lib/Target/X86/AsmParser/
X86AsmParser.cpp     [all...]

Completed in 563 milliseconds

1 2