Searched refs:rewrite (Results 1 - 23 of 23) sorted by relevance

/external/chromium/build/linux/
H A Dpkg-config-wrapper22 rewrite=`dirname $0`/rewrite_dirs.py
37 echo "$result"| $rewrite --sysroot "$root" --strip-prefix "$prefix"
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
H A Dlighttpd.conf63 # See the apache rewrite rule at LayoutTests/http/tests/uri/intercept/.htaccess
65 # See the apache rewrite rule at
67 url.rewrite-once = (
/external/v8/src/
H A Dscopes.cc326 Property* rewrite = local
331 rewrite->set_is_arguments_access(true);
332 var->set_rewrite(rewrite);
568 if (var->is_used() || var->rewrite() != NULL) {
573 if (var->rewrite() != NULL) {
574 PrintF("%s, ", printer->Print(var->rewrite()));
945 // need to rewrite in that case.
954 // 'arguments'. To summarize: If we need to rewrite, we allocate an
1003 Property* rewrite = local
1008 rewrite
[all...]
H A Dvariables.h141 Expression* rewrite() const { return rewrite_; } function in class:v8::internal::Variable
H A Dprettyprinter.cc979 if (var != NULL && var->rewrite() != NULL) {
981 Visit(var->rewrite());
1318 if (expr->var()->rewrite() == NULL) {
1326 Visit(expr->var()->rewrite());
H A Dast.h1077 Expression* rewrite = var_->rewrite();
1078 if (rewrite == NULL || rewrite->AsSlot() != NULL) return var_;
/external/pcre/
H A Dpcrecpp.h305 // "rewrite". Within "rewrite", backslash-escaped digits (\1 to \9)
307 // group from the pattern. \0 in "rewrite" refers to the entire
317 // occurrences of the pattern in the string with the rewrite.
327 // "rewrite" is copied into "out" (an additional argument) with
607 bool Replace(const StringPiece& rewrite,
610 int GlobalReplace(const StringPiece& rewrite,
613 bool Extract(const StringPiece &rewrite,
681 // Append the "rewrite" string, with backslash subsitutions from "text"
684 const StringPiece& rewrite,
[all...]
H A Dpcrecpp.cc331 bool RE::Replace(const StringPiece& rewrite, argument
339 if (!Rewrite(&s, rewrite, *str, vec, matches))
380 int RE::GlobalReplace(const StringPiece& rewrite, argument
440 Rewrite(&out, rewrite, *str, vec, matches);
456 bool RE::Extract(const StringPiece& rewrite, argument
464 return Rewrite(out, rewrite, text, vec, matches);
613 bool RE::Rewrite(string *out, const StringPiece &rewrite, argument
615 for (const char *s = rewrite.data(), *end = s + rewrite.size();
624 // n, rewrite
[all...]
H A Dpcrecpp_unittest.cc212 const char *rewrite; member in struct:ReplaceTest
338 CHECK(re.Replace(t->rewrite, &one));
341 const int replace_count = re.GlobalReplace(t->rewrite, &all);
/external/libvpx/examples/includes/geshi/geshi/
H A Dtyposcript.php15 * - Michiel Roos <geshi@typofree.org> Complete rewrite
/external/libxml2/
H A Dcatalog.c1648 xmlCatalogEntryPtr rewrite = NULL; local
1669 rewrite = cur;
1684 if (rewrite != NULL) {
1687 "Using rewriting rule %s\n", rewrite->name);
1688 ret = xmlStrdup(rewrite->URL);
1864 xmlCatalogEntryPtr rewrite = NULL; local
1900 rewrite = cur;
1915 if (rewrite != NULL) {
1918 "Using rewriting rule %s\n", rewrite->name);
1919 ret = xmlStrdup(rewrite
[all...]
/external/llvm/lib/CodeGen/
H A DVirtRegMap.cpp259 void VirtRegMap::rewrite(SlotIndexes *Indexes) { function in class:VirtRegMap
H A DVirtRegMap.h511 /// rewrite - Rewrite all instructions in MF to use only physical registers
516 void rewrite(SlotIndexes *Indexes);
H A DRegAllocBasic.cpp577 VRM->rewrite(LIS->getSlotIndexes());
H A DRegAllocGreedy.cpp1641 VRM->rewrite(Indexes);
/external/webkit/Tools/Scripts/webkitpy/thirdparty/
H A DBeautifulSoup.py1581 def rewrite(match): function in function:BeautifulSoup.extractCharsetFromMeta
1583 newAttr = self.CHARSET_RE.sub(rewrite, contentType)
1709 # Universal Feed Parser. It does not rewrite the XML or HTML to
/external/blktrace/
H A Dblktrace.c778 rewrite:
783 goto rewrite;
/external/v8/src/arm/
H A Dfull-codegen-arm.cc211 // The stub will rewrite receiever and parameter count if the previous
765 // cannot visit the rewrite because it's shared and we risk
1161 Expression* rewrite = slot->var()->local_if_not_shadowed()->rewrite(); local
1163 // Generate fast case for locals that rewrite to slots.
1171 } else if (rewrite != NULL) {
1173 Property* property = rewrite->AsProperty();
1262 // types of slots, and parameters that rewrite to explicit property
1573 // slot. Variables with rewrite to .arguments are treated as KEYED_PROPERTY.
1825 // slot. Variables with rewrite t
[all...]
/external/v8/src/ia32/
H A Dfull-codegen-ia32.cc198 // The stub will rewrite receiver and parameter count if the previous
723 // visit the rewrite because it's shared and we risk recording
1167 Expression* rewrite = slot->var()->local_if_not_shadowed()->rewrite(); local
1169 // Generate fast case for locals that rewrite to slots.
1178 } else if (rewrite != NULL) {
1180 Property* property = rewrite->AsProperty();
1208 // types of slots, and parameters that rewrite to explicit property
1519 // slot. Variables with rewrite to .arguments are treated as KEYED_PROPERTY.
1769 // slot. Variables with rewrite t
[all...]
/external/v8/src/x64/
H A Dfull-codegen-x64.cc199 // The stub will rewrite receiver and parameter count if the previous
725 // cannot visit the rewrite because it's shared and we risk
1179 Expression* rewrite = slot->var()->local_if_not_shadowed()->rewrite(); local
1181 // Generate fast case for locals that rewrite to slots.
1190 } else if (rewrite != NULL) {
1192 Property* property = rewrite->AsProperty();
1220 // types of slots, and parameters that rewrite to explicit property
1529 // slot. Variables with rewrite to .arguments are treated as KEYED_PROPERTY.
1742 // slot. Variables with rewrite t
[all...]
/external/clang/lib/Sema/
H A DSemaExpr.cpp3778 ExprResult rewrite = rebuildUnknownAnyFunction(*this, Fn); local
3779 if (rewrite.isInvalid()) return ExprError();
3780 Fn = rewrite.take();
/external/libvpx/examples/includes/geshi/
H A Dgeshi.php1888 //Now we need to rewrite our array to get a search string that
2110 if(!GESHI_PHP_PRE_433 && //Needs proper rewrite to work with PHP >=4.3.0; 4.3.3 is guaranteed to work.
/external/qemu-pc-bios/bochs/bios/
H A Drombios.c105 // - rewrite int13_relocated & clean up int13 entry code
8470 ; I have to rewrite it:

Completed in 1773 milliseconds