Searched refs:replace (Results 126 - 150 of 1536) sorted by relevance

1234567891011>>

/external/mockftpserver/tags/2.4/src/main/java/org/mockftpserver/fake/filesystem/
H A DWindowsFakeFileSystem.java81 String standardized = path.replace('/', '\\');
/external/mockftpserver/tags/2.4/src/test/groovy/org/mockftpserver/test/
H A DAbstractGroovyTestCase.groovy90 return paths.join("/").replace('\\', '/').replace("//", "/")
/external/mockftpserver/tags/2.5/src/main/java/org/mockftpserver/fake/filesystem/
H A DWindowsFakeFileSystem.java81 String standardized = path.replace('/', '\\');
/external/mockftpserver/tags/2.5/src/test/groovy/org/mockftpserver/test/
H A DAbstractGroovyTestCase.groovy90 return paths.join("/").replace('\\', '/').replace("//", "/")
/external/mockftpserver/tags/2.x_Before_IDEA/src/main/groovy/org/mockftpserver/fake/filesystem/
H A DFakeWindowsFileSystem.groovy52 def standardized = path.replace("/", "\\")
85 def p = path.replace("/", this.separator)
/external/python/cpython2/Lib/lib2to3/fixes/
H A Dfix_asserts.py34 name.replace(Name(NAMES[str(name)], prefix=name.prefix))
H A Dfix_next.py55 attr.replace(Name(u"__next__", prefix=attr.prefix))
59 node.replace(Call(Name(u"next", prefix=node.prefix), base))
62 name.replace(n)
72 attr.replace(Name(u"__next__"))
/external/python/cpython2/Lib/wsgiref/
H A Dheaders.py22 value = value.replace('\\', '\\\\').replace('"', r'\"')
166 parts.append(k.replace('_', '-'))
168 parts.append(_formatparam(k.replace('_', '-'), v))
/external/slf4j/slf4j-migrator/src/main/java/org/slf4j/migrator/line/
H A DSingleConversionRule.java65 * @see org.slf4j.converter.ConversionRule#replace(java.util.regex.Matcher)
67 public String replace(Matcher matcher) { method in class:SingleConversionRule
/external/testng/src/main/java/org/testng/reporters/jq/
H A DBasePanel.java33 return suite.getName().replace(" ", "_");
/external/ImageMagick/MagickCore/
H A Dlist.c1158 % ReplaceImageInList(Image **images,Image *replace)
1162 % o images: the list and pointer to image to replace
1164 % o replace: the image or image list replacing the original
1167 MagickExport void ReplaceImageInList(Image **images,Image *replace)
1170 assert(replace != (Image *) NULL);
1171 assert(replace->signature == MagickCoreSignature);
1172 if (replace->debug != MagickFalse)
1173 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",replace->filename);
1179 replace=GetLastImageInList(replace);
1144 ReplaceImageInList(Image **images,Image *replace) argument
1202 ReplaceImageInListReturnLast(Image **images,Image *replace) argument
[all...]
/external/skia/src/core/
H A DSkRecordOpts.cpp46 record->replace<NoOp>(begin); // first SetMatrix
64 record->replace<NoOp>(begin); // first SetMatrix
83 record->replace<NoOp>(begin); // Save
84 record->replace<NoOp>(end-1); // Restore
162 record->replace<NoOp>(i);
224 record->replace<NoOp>(saveLayerIndex); // SaveLayer
225 record->replace<NoOp>(saveLayerIndex+2); // Restore
278 record->replace<NoOp>(saveLayerIndex); // SaveLayer
279 record->replace<NoOp>(saveLayerIndex + 6); // Restore
/external/antlr/antlr-3.4/runtime/Perl5/examples/tweak/
H A DT.g3 * extra text into a stream of tokens and how to replace a token
24 { $input->replace($m, "public void"); }
/external/autotest/client/common_lib/cros/fake_device_server/client_lib/
H A Dcommands.py46 def update_command(self, command_id, data, replace=False):
51 @param replace: If True, replace all data with the given data using the
60 if replace:
/external/autotest/client/site_tests/platform_GesturesRegressionTest/
H A Dplatform_GesturesRegressionTest.py58 self.test_results[key.replace('/', '-')] = score
59 self.output_perf_value(key.replace('/', '-'), score, 'points')
/external/autotest/server/bin/
H A Dunit_test_server.py21 # simple replace to make a valid identifier
22 key = f.replace('/', '_').replace('.', '_')
/external/autotest/tko/
H A Ddisplay.py47 return int(key.replace('pct',''))
53 hint = key.replace('pct',' %')
224 reason = reason.replace('<br>','\n')
225 reason = reason.replace('<','[').replace('>',']')
226 reason = reason.replace('|','\n').replace('&',' AND ')
227 reason = reason.replace('\n','<br>')
H A Dquery_lib.py50 val = match.group(4).replace("''", "'")
52 val = match.group(6).replace('""', '"')
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DStringReplacer.java62 * @param theOutput text that will replace input text when the
63 * replace() method is called. May contain stand-in characters
66 * the replace() method
83 * @param theOutput text that will replace input text when the
84 * replace() method is called. May contain stand-in characters
115 public int replace(Replaceable text, method in class:StringReplacer
128 text.replace(start, limit, output);
163 text.replace(tempStart, tempStart, "\uFFFF");
184 // right context for previous replace() operations.
200 text.replace(destLimi
[all...]
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
H A DStringReplacer.java61 * @param theOutput text that will replace input text when the
62 * replace() method is called. May contain stand-in characters
65 * the replace() method
82 * @param theOutput text that will replace input text when the
83 * replace() method is called. May contain stand-in characters
114 public int replace(Replaceable text, method in class:StringReplacer
127 text.replace(start, limit, output);
162 text.replace(tempStart, tempStart, "\uFFFF");
183 // right context for previous replace() operations.
199 text.replace(destLimi
[all...]
/external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/processors/
H A DModifyStringLiterals.java50 String newLiteralValue = literalValue.replace(oldString, newString);
53 rewrite.replace(node, newLiteral, null /* editGorup */);
/external/icu/tools/srcgen/src/main/java/com/android/icu4j/srcgen/
H A DFixupBidiClassDoc.java56 String newCommentText = commentText.replace(BAD_TEXT, "");
57 document.replace(javadoc.getStartPosition(), javadoc.getLength(), newCommentText);
/external/jacoco/jacoco-maven-plugin.test/it/it-customize-agent/
H A Dverify.bsh31 agentOptions = agentOptions.replace("\\","\\\\");
/external/proguard/src/proguard/io/
H A DDataEntryRewriter.java127 word.replace('.', ClassConstants.PACKAGE_SEPARATOR) :
140 newClassName.replace(ClassConstants.PACKAGE_SEPARATOR, '.') :
/external/python/cpython2/Doc/tools/static/
H A Dversion_switch.js30 new_url = url.replace(url_re, '.org/' + new_version + '/');
34 new_url = url.replace(/\.org\//, '.org/' + new_version + '/');

Completed in 2082 milliseconds

1234567891011>>