/external/apache-xml/src/main/java/org/apache/xml/utils/ |
D | PrefixResolverDefault.java | 105 boolean isPrefix = aname.startsWith("xmlns:"); in getNamespaceForPrefix() 107 if (isPrefix || aname.equals("xmlns")) in getNamespaceForPrefix() 110 String p = isPrefix ? aname.substring(index + 1) : ""; in getNamespaceForPrefix()
|
D | DOMHelper.java | 712 boolean isPrefix = aname.startsWith("xmlns:"); in getNamespaceOfNode() 714 if (aname.equals("xmlns") || isPrefix) in getNamespaceOfNode() 722 String p = isPrefix ? aname.substring(6) : ""; in getNamespaceOfNode()
|
/external/apache-xml/src/main/java/org/apache/xpath/jaxp/ |
D | JAXPPrefixResolver.java | 106 boolean isPrefix = aname.startsWith("xmlns:"); in getNamespaceForPrefix() 108 if (isPrefix || aname.equals("xmlns")) { in getNamespaceForPrefix() 110 String p =isPrefix ?aname.substring(index + 1) :""; in getNamespaceForPrefix()
|
/external/llvm/lib/Target/X86/Disassembler/ |
D | X86DisassemblerDecoder.c | 302 BOOL isPrefix = TRUE; in readPrefixes() local 312 while (isPrefix) { in readPrefixes() 376 isPrefix = FALSE; in readPrefixes() 380 if (isPrefix) in readPrefixes()
|
/external/icu4c/i18n/unicode/ |
D | decimfmt.h | 1973 UBool isPrefix, 2008 UBool isPrefix) const;
|
/external/llvm/lib/Target/X86/AsmParser/ |
D | X86AsmParser.cpp | 707 bool isPrefix = in ParseInstruction() local 718 if (getLexer().isNot(AsmToken::EndOfStatement) && !isPrefix) { in ParseInstruction() 756 else if (isPrefix && getLexer().is(AsmToken::Slash)) in ParseInstruction()
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | DeadStoresChecker.cpp | 227 if (!U->isIncrementOp() || U->isPrefix()) in ObserveStmt()
|
/external/icu4c/i18n/ |
D | decimfmt.cpp | 2124 UBool isPrefix, in compareAffix() argument 2140 if (isPrefix) { in compareAffix() 2148 if (isPrefix) { in compareAffix() 3193 UBool isNegative, UBool isPrefix) const { in appendAffix() 3198 if (isPrefix) { in appendAffix() 3221 if (isPrefix) { in appendAffix() 3229 if (isPrefix) { in appendAffix()
|
D | ucol_imp.h | 629 #define isPrefix(CE) (isSpecial((CE)) && (getCETag((CE)) == SPEC_PROC_TAG)) macro
|
D | ucol_elm.cpp | 903 if(!isPrefix(CE)) { in uprv_uca_addPrefix() 1088 …if(!isPrefix(element->mapCE)) { // we cannot reenter prefix elements - as we are going to create a… in uprv_uca_finalizeAddition()
|
D | ucol_bld.cpp | 1218 if (!needToAdd && isPrefix(tailoredCE) && *(conts+1)==0) { in ucol_assembleTailoringTable()
|
D | ucol.cpp | 2737 if(!isPrefix(CE)) { in ucol_prv_getSpecialCE() 3422 if(!isPrefix(CE)) { in ucol_prv_getSpecialPrevCE()
|
/external/clang/include/clang/AST/ |
D | Expr.h | 1426 static bool isPrefix(Opcode Op) { in isPrefix() function 1430 bool isPrefix() const { return isPrefix(getOpcode()); } in isPrefix() function
|
/external/clang/lib/Sema/ |
D | SemaExpr.cpp | 6886 bool isInc, bool isPrefix) { in CheckIncrementDecrementOperand() argument 6924 isInc, isPrefix); in CheckIncrementDecrementOperand() 6939 if (isPrefix && S.getLangOptions().CPlusPlus) { in CheckIncrementDecrementOperand()
|
/external/sqlite/dist/ |
D | sqlite3.c | 108554 int isPrefix; /* True if token ends with a "*" character */ 110383 int isPrefix, /* True for a prefix search */ 110394 rc = sqlite3Fts3SegReaderPending(p, zTerm, nTerm, isPrefix, &pReader); 110421 rc = fts3SelectLeaf(p, zTerm, nTerm, zRoot, nRoot, &i1, (isPrefix?&i2:0)); 110422 if( isPrefix==0 ) i2 = i1; 110481 | (pTok->isPrefix ? FTS3_SEGMENT_PREFIX : 0) 110635 pCsr, pTok->z, pTok->n, pTok->isPrefix, &pTok->pArray 110873 pCsr, pTok->z, pTok->n, pTok->isPrefix, &pTok->pArray 112076 pRet->pPhrase->aToken[0].isPrefix = 1; 112158 p->pPhrase->aToken[ii].isPrefix = 1; [all …]
|
D | sqlite3.c.orig | 108526 int isPrefix; /* True if token ends with a "*" character */ 110355 int isPrefix, /* True for a prefix search */ 110366 rc = sqlite3Fts3SegReaderPending(p, zTerm, nTerm, isPrefix, &pReader); 110393 rc = fts3SelectLeaf(p, zTerm, nTerm, zRoot, nRoot, &i1, (isPrefix?&i2:0)); 110394 if( isPrefix==0 ) i2 = i1; 110453 | (pTok->isPrefix ? FTS3_SEGMENT_PREFIX : 0) 110607 pCsr, pTok->z, pTok->n, pTok->isPrefix, &pTok->pArray 110845 pCsr, pTok->z, pTok->n, pTok->isPrefix, &pTok->pArray 112045 pRet->pPhrase->aToken[0].isPrefix = 1; 112127 p->pPhrase->aToken[ii].isPrefix = 1; [all …]
|