HomeSort by relevance Sort by last modified time
    Searched refs:rewrite (Results 51 - 75 of 340) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/rewriter/
RewriterUtils.java 44 return value==null?null:rewriter.rewrite(value);
112 return typeRewriter.rewrite(typeReference.getType());
MethodImplementationRewriter.java 50 @Nonnull @Override public MethodImplementation rewrite(@Nonnull MethodImplementation methodImplementation) { method in class:MethodImplementationRewriter
TryBlockRewriter.java 48 @Nonnull @Override public TryBlock<? extends ExceptionHandler> rewrite( method in class:TryBlockRewriter
  /prebuilts/go/darwin-x86/src/testing/
match.go 33 filter[i] = rewrite(s)
57 name = m.unique(c.name, rewrite(subname))
132 // rewrite rewrites a subname to having only printable characters and no white
134 func rewrite(s string) string { func
  /prebuilts/go/linux-x86/src/testing/
match.go 33 filter[i] = rewrite(s)
57 name = m.unique(c.name, rewrite(subname))
132 // rewrite rewrites a subname to having only printable characters and no white
134 func rewrite(s string) string { func
  /external/pcre/pcrecpp/include/
pcrecpp.h 305 // "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,
671 // Append the "rewrite" string, with backslash subsitutions from "text"
673 bool Rewrite(string *out
    [all...]
  /external/r8/src/test/java/com/android/tools/r8/rewrite/assertions/
RemoveAssertionsTest.java 5 package com.android.tools.r8.rewrite.assertions;
  /external/r8/src/test/java/com/android/tools/r8/rewrite/switchmaps/
RewriteSwitchMapsTest.java 4 package com.android.tools.r8.rewrite.switchmaps;
  /prebuilts/go/darwin-x86/src/cmd/fix/
doc.go 19 error giving the name of the file and the rewrite applied.
22 the differences a rewrite would introduce.
  /prebuilts/go/darwin-x86/src/cmd/gofmt/
rewrite.go 21 rewrite = nil // disable any previous rewrite
26 fmt.Fprintf(os.Stderr, "rewrite rule must be of the form 'pattern -> replacement'\n")
31 rewrite = func(p *ast.File) *ast.File { return rewriteFile(pattern, replace, p) }
56 // rewriteFile applies the rewrite rule 'pattern -> replace' to an entire file.
94 // x cannot be set to y - ignore this rewrite
123 // rewrite; don't follow them but replace with nil instead
128 // similarly for scopes: they are likely incorrect after a rewrite;
doc.go 29 Apply the rewrite rule to the source before reformatting.
31 Try to simplify code (after applying the rewrite rule, if any).
43 The rewrite rule specified with the -r flag must be a string of the form:
  /prebuilts/go/linux-x86/src/cmd/fix/
doc.go 19 error giving the name of the file and the rewrite applied.
22 the differences a rewrite would introduce.
  /prebuilts/go/linux-x86/src/cmd/gofmt/
rewrite.go 21 rewrite = nil // disable any previous rewrite
26 fmt.Fprintf(os.Stderr, "rewrite rule must be of the form 'pattern -> replacement'\n")
31 rewrite = func(p *ast.File) *ast.File { return rewriteFile(pattern, replace, p) }
56 // rewriteFile applies the rewrite rule 'pattern -> replace' to an entire file.
94 // x cannot be set to y - ignore this rewrite
123 // rewrite; don't follow them but replace with nil instead
128 // similarly for scopes: they are likely incorrect after a rewrite;
doc.go 29 Apply the rewrite rule to the source before reformatting.
31 Try to simplify code (after applying the rewrite rule, if any).
43 The rewrite rule specified with the -r flag must be a string of the form:
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
rewrite.rb 39 TokenRewriteStream is a specialized form of CommonTokenStream that provides simple stream editing functionality. By creating <i>rewrite programs</i>, new text output can be created based upon the tokens in the stream. The basic token stream itself is preserved, and text output is rendered on demand using the #to_s method.
52 be executed by a token rewrite stream at some time in future when the stream is
57 Rewrite streams implement lazy rewriting by storing the parameters of
59 a rewrite program list.
78 # run the rewrite operation represented by this object and append the output to +buffer+
97 Represents rewrite operation:
99 add string <tt>op.text</tt> to the rewrite output immediately before adding the
120 Represents rewrite operation:
122 add text <tt>op.text</tt> to the rewrite buffer in lieu of the text of tokens
158 Represents rewrite operation
377 def rewrite( program_name = 'default', range = nil ) method
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
cse.go 152 rewrite := make([]*Value, f.NumValues())
173 rewrite[w.ID] = v
183 // if we rewrite a tuple generator to a new one in a different block,
194 if int(v.ID) >= len(rewrite) || rewrite[v.ID] != nil {
203 t := rewrite[v.Args[0].ID]
209 rewrite[v.ID] = c
214 rewrite[v.ID] = c
226 if x := rewrite[w.ID]; x != nil {
233 if x := rewrite[v.ID]; x != nil
    [all...]
loopreschedchecks.go 19 // where a rewrite is applied. Note that this is for values,
27 type rewrite struct { type
28 before, after *Value // before is the expected value before rewrite, after is the new value installed.
29 rewrites []rewriteTarget // all the targets for this rewrite.
32 func (r *rewrite) String() string {
64 // 6. Rewrite backedges to include counter check, reschedule check,
143 newmemphis := make(map[*Block]rewrite)
144 newctrphis := make(map[*Block]rewrite)
164 newmemphis[h] = rewrite{before: mem0, after: headerMemPhi}
174 newctrphis[h] = rewrite{before: counter0, after: headerCtrPhi
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
cse.go 152 rewrite := make([]*Value, f.NumValues())
173 rewrite[w.ID] = v
183 // if we rewrite a tuple generator to a new one in a different block,
194 if int(v.ID) >= len(rewrite) || rewrite[v.ID] != nil {
203 t := rewrite[v.Args[0].ID]
209 rewrite[v.ID] = c
214 rewrite[v.ID] = c
226 if x := rewrite[w.ID]; x != nil {
233 if x := rewrite[v.ID]; x != nil
    [all...]
loopreschedchecks.go 19 // where a rewrite is applied. Note that this is for values,
27 type rewrite struct { type
28 before, after *Value // before is the expected value before rewrite, after is the new value installed.
29 rewrites []rewriteTarget // all the targets for this rewrite.
32 func (r *rewrite) String() string {
64 // 6. Rewrite backedges to include counter check, reschedule check,
143 newmemphis := make(map[*Block]rewrite)
144 newctrphis := make(map[*Block]rewrite)
164 newmemphis[h] = rewrite{before: mem0, after: headerMemPhi}
174 newctrphis[h] = rewrite{before: counter0, after: headerCtrPhi
    [all...]
  /external/pcre/pcrecpp/
pcrecpp.cc 151 bool RE::Replace(const StringPiece& rewrite,
159 if (!Rewrite(&s, rewrite, *str, match_data))
184 int RE::GlobalReplace(const StringPiece& rewrite,
242 Rewrite(&out, rewrite, *str, match_data);
257 bool RE::Extract(const StringPiece& rewrite,
265 return Rewrite(out, rewrite, text, match_data);
417 bool RE::Rewrite(string *out, const StringPiece &rewrite
    [all...]
  /build/make/core/
cleanbuild.mk 86 # Rewrite the clean step for the second arch.
91 define -cs-rewrite-cleanstep
98 $(call -cs-rewrite-cleanstep,$(INTERNAL_CLEAN_STEP.$(step)),$(TARGET_OUT_INTERMEDIATES),$($(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_OUT_INTERMEDIATES))\
99 $(call -cs-rewrite-cleanstep,$(INTERNAL_CLEAN_STEP.$(step)),$(TARGET_OUT_SHARED_LIBRARIES),$($(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_OUT_SHARED_LIBRARIES))\
100 $(call -cs-rewrite-cleanstep,$(INTERNAL_CLEAN_STEP.$(step)),$(TARGET_OUT_VENDOR_SHARED_LIBRARIES),$($(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_OUT_VENDOR_SHARED_LIBRARIES))\
101 $(call -cs-rewrite-cleanstep,$(INTERNAL_CLEAN_STEP.$(step)),$($(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_OUT_INTERMEDIATES),$(TARGET_OUT_INTERMEDIATES))\
102 $(call -cs-rewrite-cleanstep,$(INTERNAL_CLEAN_STEP.$(step)),$($(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_OUT_SHARED_LIBRARIES),$(TARGET_OUT_SHARED_LIBRARIES))\
103 $(call -cs-rewrite-cleanstep,$(INTERNAL_CLEAN_STEP.$(step)),$($(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_OUT_VENDOR_SHARED_LIBRARIES),$(TARGET_OUT_VENDOR_SHARED_LIBRARIES))\
  /external/antlr/antlr-3.4/gunit/src/main/antlr3/org/antlr/gunit/swingui/parsers/
ANTLRv3.g 63 LABEL; // $x used in rewrite rules
75 REWRITE='->';
199 a1=alternative rewrite ( '|' a2=alternative rewrite )*
201 -> ^( BLOCK[$lp,"BLOCK"] optionsSpec? (alternative rewrite?)+ EOB[$rp,"EOB"] )
207 // leave here to demonstrate use of {...} in rewrite rule
211 : a1=alternative rewrite ( '|' a2=alternative rewrite )*
212 -> ^( {blkRoot} (alternative rewrite?)+ EOB["EOB"] )
346 rewrite
    [all...]
  /external/regex-re2/util/
pcre.cc 328 const StringPiece& rewrite) {
335 if (!pattern.Rewrite(&s, rewrite, *str, vec, matches))
346 const StringPiece& rewrite) {
385 pattern.Rewrite(&out, rewrite, *str, vec, matches);
402 const StringPiece &rewrite,
409 return pattern.Rewrite(out, rewrite, text, vec, matches);
606 bool PCRE::Rewrite(string *out, const StringPiece &rewrite
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
LeftRecursiveRuleWalker.g 147 rewrite?
157 ( ^(ALT element+ EOA) rewrite? )+
238 rewrite
239 : ^(REWRITES ( ^( REWRITE SEMPRED? (^(ALT .*)|^(TEMPLATE .*)|ACTION|ETC) ) )* )
  /external/regex-re2/re2/
re2.h 357 // Replace the first match of "pattern" in "str" with "rewrite".
358 // Within "rewrite", backslash-escaped digits (\1 to \9) can be
360 // from the pattern. \0 in "rewrite" refers to the entire matching
372 const StringPiece& rewrite);
375 // of the pattern in the string with the rewrite. E.g.
389 const StringPiece& rewrite);
391 // Like Replace, except that if the pattern matches, "rewrite"
399 const StringPiece &rewrite,
479 // Check that the given rewrite string is suitable for use with this
482 // to satisfy all of the \N tokens in rewrite
    [all...]

Completed in 1210 milliseconds

1 23 4 5 6 7 8 91011>>