/external/deqp/framework/qphelper/ |
D | qpXmlWriter.c | 55 const char* repl = DE_NULL; in writeEscaped() local 59 case '<': repl = "<"; break; in writeEscaped() 60 case '>': repl = ">"; break; in writeEscaped() 61 case '&': repl = "&"; break; in writeEscaped() 62 case '\'': repl = "'"; break; in writeEscaped() 63 case '"': repl = """; break; in writeEscaped() 66 case 1: repl = "<SOH>"; break; in writeEscaped() 67 case 2: repl = "<STX>"; break; in writeEscaped() 68 case 3: repl = "<ETX>"; break; in writeEscaped() 69 case 4: repl = "<EOT>"; break; in writeEscaped() [all …]
|
/external/libnl/lib/netfilter/ |
D | ct_obj.c | 583 int nfnl_ct_set_src(struct nfnl_ct *ct, int repl, struct nl_addr *addr) in nfnl_ct_set_src() argument 585 struct nfnl_ct_dir *dir = repl ? &ct->ct_repl : &ct->ct_orig; in nfnl_ct_set_src() 586 int attr = repl ? CT_ATTR_REPL_SRC : CT_ATTR_ORIG_SRC; in nfnl_ct_set_src() 590 int nfnl_ct_set_dst(struct nfnl_ct *ct, int repl, struct nl_addr *addr) in nfnl_ct_set_dst() argument 592 struct nfnl_ct_dir *dir = repl ? &ct->ct_repl : &ct->ct_orig; in nfnl_ct_set_dst() 593 int attr = repl ? CT_ATTR_REPL_DST : CT_ATTR_ORIG_DST; in nfnl_ct_set_dst() 597 struct nl_addr *nfnl_ct_get_src(const struct nfnl_ct *ct, int repl) in nfnl_ct_get_src() argument 599 const struct nfnl_ct_dir *dir = repl ? &ct->ct_repl : &ct->ct_orig; in nfnl_ct_get_src() 600 int attr = repl ? CT_ATTR_REPL_SRC : CT_ATTR_ORIG_SRC; in nfnl_ct_get_src() 606 struct nl_addr *nfnl_ct_get_dst(const struct nfnl_ct *ct, int repl) in nfnl_ct_get_dst() argument [all …]
|
D | ct.c | 105 static int ct_parse_ip(struct nfnl_ct *ct, int repl, struct nlattr *attr) in ct_parse_ip() argument 119 err = nfnl_ct_set_src(ct, repl, addr); in ct_parse_ip() 128 err = nfnl_ct_set_dst(ct, repl, addr); in ct_parse_ip() 137 err = nfnl_ct_set_src(ct, repl, addr); in ct_parse_ip() 146 err = nfnl_ct_set_dst(ct, repl, addr); in ct_parse_ip() 160 static int ct_parse_proto(struct nfnl_ct *ct, int repl, struct nlattr *attr) in ct_parse_proto() argument 169 if (!repl && tb[CTA_PROTO_NUM]) in ct_parse_proto() 172 nfnl_ct_set_src_port(ct, repl, in ct_parse_proto() 175 nfnl_ct_set_dst_port(ct, repl, in ct_parse_proto() 178 nfnl_ct_set_icmp_id(ct, repl, in ct_parse_proto() [all …]
|
/external/clang/www/ |
D | builtins.py | 147 def report_repl(builtin, repl): argument 148 …iltin %s used, replaced with %s\n" % (fileinput.filename(), fileinput.filelineno(), builtin, repl)) 154 for builtin, repl in repl_map.iteritems(): 156 line = line.replace(builtin, repl) 157 report_repl(builtin, repl)
|
/external/iptables/libiptc/ |
D | libiptc.c | 1118 static inline int iptcc_compile_rule (struct xtc_handle *h, STRUCT_REPLACE *repl, struct rule_head … in iptcc_compile_rule() argument 1137 memcpy((char *)repl->entries+r->offset, r->entry, r->size); in iptcc_compile_rule() 1143 static int iptcc_compile_chain(struct xtc_handle *h, STRUCT_REPLACE *repl, struct chain_head *c) in iptcc_compile_chain() argument 1153 head = (void *)repl->entries + c->head_offset; in iptcc_compile_chain() 1161 repl->hook_entry[c->hooknum-1] = c->head_offset; in iptcc_compile_chain() 1162 repl->underflow[c->hooknum-1] = c->foot_offset; in iptcc_compile_chain() 1167 ret = iptcc_compile_rule(h, repl, r); in iptcc_compile_chain() 1173 foot = (void *)repl->entries + c->foot_offset; in iptcc_compile_chain() 1249 static int iptcc_compile_table(struct xtc_handle *h, STRUCT_REPLACE *repl) in iptcc_compile_table() argument 1256 int ret = iptcc_compile_chain(h, repl, c); in iptcc_compile_table() [all …]
|
/external/lldb/source/Interpreter/ |
D | embedded_interpreter.py | 97 repl = SimpleREPL('>>> ', dict) 98 repl.interact() 101 repl = SimpleREPL ('', dict) 102 repl.one_line (input_string)
|
/external/selinux/libsemanage/src/ |
D | genhomedircon.c | 491 static Ustr *replace_all(const char *str, const replacement_pair_t * repl) in replace_all() argument 496 if (!str || !repl) in replace_all() 501 for (i = 0; repl[i].search_for; i++) { in replace_all() 502 ustr_replace_cstr(&retval, repl[i].search_for, in replace_all() 503 repl[i].replace_with, 0); in replace_all() 556 replacement_pair_t repl[] = { in write_home_dir_context() local 569 line = replace_all(tpl->data, repl); in write_home_dir_context() 588 replacement_pair_t repl[] = { in write_home_root_context() local 595 line = replace_all(tpl->data, repl); in write_home_root_context() 615 replacement_pair_t repl[] = { in write_user_context() local [all …]
|
/external/owasp/sanitizer/src/main/org/owasp/html/ |
D | Encoding.java | 171 String repl = REPLACEMENTS[ch]; in encodeHtmlOnto() local 172 if (repl != null) { in encodeHtmlOnto() 173 output.append(plainText, pos, i).append(repl); in encodeHtmlOnto()
|
/external/icu/icu4c/source/test/intltest/ |
D | regextst.cpp | 5357 UnicodeString repl; in NamedCapture() local 5360 repl = UnicodeString("<$0>"); in NamedCapture() 5361 …resultLength = uregex_replaceAll(re, repl.getBuffer(), repl.length(), resultBuf, UPRV_LENGTHOF(res… in NamedCapture() 5366 repl = UnicodeString("<$1>"); in NamedCapture() 5367 …resultLength = uregex_replaceAll(re, repl.getBuffer(), repl.length(), resultBuf, UPRV_LENGTHOF(res… in NamedCapture() 5372 repl = UnicodeString("<${one}>"); in NamedCapture() 5373 …resultLength = uregex_replaceAll(re, repl.getBuffer(), repl.length(), resultBuf, UPRV_LENGTHOF(res… in NamedCapture() 5378 repl = UnicodeString("<$2>"); in NamedCapture() 5379 …resultLength = uregex_replaceAll(re, repl.getBuffer(), repl.length(), resultBuf, UPRV_LENGTHOF(res… in NamedCapture() 5384 repl = UnicodeString("<$3>"); in NamedCapture() [all …]
|
/external/protobuf/python/ |
D | ez_setup.py | 263 repl = "".join(data) 274 src = src[:match.start(1)] + repl + src[match.end(1):]
|
/external/antlr/antlr-3.4/runtime/Python/ |
D | ez_setup.py | 202 repl = "".join(data) 213 src = src[:match.start(1)] + repl + src[match.end(1):]
|
/external/llvm/test/Transforms/Inline/ |
D | alloca-bonus.ll | 36 ; %D poisons this call, scalar-repl can't handle that instruction. 95 ; %B poisons this call, scalar-repl can't handle that instruction. However, we 136 ; %D poisons this call, scalar-repl can't handle that instruction. However, if
|
/external/icu/icu4c/source/test/cintltst/ |
D | reapits.c | 997 UChar repl[100]; in TestRegexCAPI() local 1008 u_uastrncpy(repl, "some other", UPRV_LENGTHOF(repl)); in TestRegexCAPI() 1016 uregex_appendReplacement(re, repl, -1, &bufPtr, &bufCap, &status); in TestRegexCAPI() 1025 u_uastrncpy(repl, "abc\\u0041\\U00000042 \\\\ \\$ \\abc", UPRV_LENGTHOF(repl)); in TestRegexCAPI() 1026 uregex_appendReplacement(re, repl, -1, &bufPtr, &bufCap, &status); in TestRegexCAPI() 1036 uregex_appendReplacement(re, repl, -1, &bufPtr, NULL, &status); in TestRegexCAPI() 1902 UChar repl[100]; in TestUTextAPI() local 1912 u_uastrncpy(repl, "some other", UPRV_LENGTHOF(repl)); in TestUTextAPI() 1920 uregex_appendReplacement(re, repl, -1, &bufPtr, &bufCap, &status); in TestUTextAPI() 1929 u_uastrncpy(repl, "abc\\u0041\\U00000042 \\\\ \\$ \\abc", UPRV_LENGTHOF(repl)); in TestUTextAPI() [all …]
|
/external/openssh/ |
D | misc.c | 573 const char *repl; in percent_expand() member 584 keys[num_keys].repl = va_arg(ap, char *); in percent_expand() 585 if (keys[num_keys].repl == NULL) in percent_expand() 609 i = strlcat(buf, keys[j].repl, sizeof(buf)); in percent_expand()
|
/external/chromium-trace/agents/ |
D | atrace_agent.py | 502 def repl(m): function 514 trace_data = re.sub(r'^\s*(\S+)-(\d+)', repl, trace_data,
|
/external/chromium-trace/trace-viewer/third_party/Paste/paste/exceptions/ |
D | formatter.py | 69 for path, repl in self.trim_source_paths: 71 filename = repl + filename[len(path):]
|
/external/libhevc/common/arm/ |
D | ihevc_intra_pred_luma_vert.s | 183 …vld1.8 {d16,d17}, [r6] @ld for repl to cols src[2nt+1+col(0:15)] (0 ignored for s… 321 …vld1.8 d16, [r6] @ld for repl to cols src[2nt+1+col(0:3 or 0:7)](0 ignored …
|
/external/llvm/test/CodeGen/Mips/ |
D | dsp-r1.ll | 1144 ; CHECK: repl.qb 1146 %0 = tail call <4 x i8> @llvm.mips.repl.qb(i32 127) 1152 declare <4 x i8> @llvm.mips.repl.qb(i32) nounwind readnone 1158 %0 = tail call <4 x i8> @llvm.mips.repl.qb(i32 %a0) 1166 ; CHECK: repl.ph 1168 %0 = tail call <2 x i16> @llvm.mips.repl.ph(i32 0) 1174 declare <2 x i16> @llvm.mips.repl.ph(i32) nounwind readnone 1180 %0 = tail call <2 x i16> @llvm.mips.repl.ph(i32 %a0)
|
/external/valgrind/none/tests/mips32/ |
D | mips32_dsp.stdout.exp-LE | 3217 repl.ph $t0, 0 :: rd 0x00000000 imm 0x00000000 3218 repl.ph $t1, 1 :: rd 0x00010001 imm 0x00000001 3219 repl.ph $t2, -1 :: rd 0xffffffff imm 0xffffffff 3220 repl.ph $t3, -129 :: rd 0xff7fff7f imm 0xffffff7f 3221 repl.ph $t4, -2 :: rd 0xfffefffe imm 0xfffffffe 3222 repl.ph $t0, 0x123 :: rd 0x01230123 imm 0x00000123 3223 repl.ph $t1, 0x07b :: rd 0x007b007b imm 0x0000007b 3224 repl.ph $t2, 0x1c8 :: rd 0x01c801c8 imm 0x000001c8 3225 repl.ph $t3, 0x080 :: rd 0x00800080 imm 0x00000080 3226 repl.ph $t4, 0x07f :: rd 0x007f007f imm 0x0000007f [all …]
|
D | mips32_dsp.stdout.exp-BE | 3217 repl.ph $t0, 0 :: rd 0x00000000 imm 0x00000000 3218 repl.ph $t1, 1 :: rd 0x00010001 imm 0x00000001 3219 repl.ph $t2, -1 :: rd 0xffffffff imm 0xffffffff 3220 repl.ph $t3, -129 :: rd 0xff7fff7f imm 0xffffff7f 3221 repl.ph $t4, -2 :: rd 0xfffefffe imm 0xfffffffe 3222 repl.ph $t0, 0x123 :: rd 0x01230123 imm 0x00000123 3223 repl.ph $t1, 0x07b :: rd 0x007b007b imm 0x0000007b 3224 repl.ph $t2, 0x1c8 :: rd 0x01c801c8 imm 0x000001c8 3225 repl.ph $t3, 0x080 :: rd 0x00800080 imm 0x00000080 3226 repl.ph $t4, 0x07f :: rd 0x007f007f imm 0x0000007f [all …]
|
/external/libxml2/ |
D | valid.c | 5232 xmlNodePtr repl = NULL, last = NULL, tmp; in xmlValidateElementContent() local 5386 xmlFreeNodeList(repl); in xmlValidateElementContent() 5395 if (repl == NULL) in xmlValidateElementContent() 5396 repl = last = tmp; in xmlValidateElementContent() 5430 NODE = repl; in xmlValidateElementContent() 5446 if (repl != NULL) in xmlValidateElementContent() 5447 xmlSnprintfElements(&list[0], 5000, repl, 1); in xmlValidateElementContent() 5482 while (repl != NULL) { in xmlValidateElementContent() 5483 tmp = repl->next; in xmlValidateElementContent() 5484 xmlFree(repl); in xmlValidateElementContent() [all …]
|
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/ |
D | CharsetEncoderICU.java | 674 public boolean isLegalReplacement(byte[] repl) { in isLegalReplacement() argument
|
/external/llvm/lib/Transforms/Scalar/ |
D | GVN.cpp | 2327 Value *repl = findLeader(I->getParent(), Num); in processInstruction() local 2328 if (!repl) { in processInstruction() 2335 patchAndReplaceAllUsesWith(I, repl); in processInstruction() 2336 if (MD && repl->getType()->getScalarType()->isPointerTy()) in processInstruction() 2337 MD->invalidateCachedPointerInfo(repl); in processInstruction()
|
/external/google-breakpad/src/testing/gtest/scripts/ |
D | upload.py | 827 def repl(m): function 834 return re.sub(r"\$(%s):(:?)([^\$]+)\$" % '|'.join(keywords), repl, content)
|
/external/deqp/modules/gles2/scripts/ |
D | genutil.py | 74 repl = "\n".join(["%s%s" % (ws, line) for line in value.split("\n")]) 75 s = s[:start] + repl + s[end:]
|