/external/chromium_org/third_party/icu/source/i18n/ |
strrepl.h | 75 * @param theOutput text that will replace input text when the 76 * replace() method is called. May contain stand-in characters 79 * the replace() method 90 * @param theOutput text that will replace input text when the 91 * replace() method is called. May contain stand-in characters 123 virtual int32_t replace(Replaceable& text,
|
/external/chromium_org/third_party/libxslt/win32/ |
configure.js | 228 of.WriteLine(s.replace(/\@VERSION\@/, 231 of.WriteLine(s.replace(/\@LIBXSLT_VERSION_NUMBER\@/, 234 of.WriteLine(s.replace(/\@LIBXSLT_VERSION_EXTRA\@/, verCvs)); 236 of.WriteLine(s.replace(/\@WITH_TRIO\@/, withTrio? "1" : "0")); 238 of.WriteLine(s.replace(/\@WITH_XSLT_DEBUG\@/, withXsltDebug? "1" : "0")); 240 of.WriteLine(s.replace(/\@WITH_MEM_DEBUG\@/, withMemDebug? "1" : "0")); 242 of.WriteLine(s.replace(/\@WITH_DEBUGGER\@/, withDebugger? "1" : "0")); 244 of.WriteLine(s.replace(/\@WITH_MODULES\@/, withModules? "1" : "0")); 246 of.WriteLine(s.replace(/\@XSLT_LOCALE_XLOCALE\@/, "0")); 248 of.WriteLine(s.replace(/\@XSLT_LOCALE_WINAPI\@/, withLocale? "1" : "0")) [all...] |
/external/chromium_org/third_party/markupsafe/ |
_native.py | 23 .replace('&', '&') 24 .replace('>', '>') 25 .replace('<', '<') 26 .replace("'", ''') 27 .replace('"', '"')
|
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/ |
hamt.h | 62 * If the key is not present in the HAMT, inserts it, sets *replace to 1, and 64 * If the key is already present and *replace is 0, deletes the data passed 67 * If the key is already present and *replace is 1, deletes the data currently 73 * \param replace See above description 79 /*@only@*/ void *data, int *replace,
|
/external/chromium_org/tools/grit/grit/gather/ |
igoogle_strings_unittest.py | 26 self.failUnless(gatherer.Translate('en').replace('\n', '') == original)
|
/external/chromium_org/tools/gyp/pylib/gyp/ |
flock_tool.py | 33 return name_string.title().replace('-', '')
|
/external/chromium_org/tools/perf/benchmarks/ |
blink_perf.py | 25 page_urls.append('file://' + path.replace('\\', '/')) 47 skipped.append(line.replace('/', os.sep)) 87 values = [float(v.replace(',', '')) for v in parts[1:-1]] 89 metric = page.display_name.split('.')[0].replace('/', '_')
|
/external/chromium_org/tools/swig/ |
swig.py | 40 args = [x.replace('/', os.sep) for x in args]
|
/external/chromium_org/v8/test/webkit/fast/js/ |
function-toString-parentheses.js | 33 serializedString = serializedString.replace(/[ \t\r\n]+/g, " "); 34 serializedString = serializedString.replace("function () { return ", ""); 35 serializedString = serializedString.replace("; }", ""); 43 serializedString = serializedString.replace(/[ \t\r\n]+/g, " "); 44 serializedString = serializedString.replace("function () { ", ""); 45 serializedString = serializedString.replace("; }", ""); 60 ? expression.replace(/\(/g, '').replace(/\)/g, '')
|
/external/clang/www/ |
builtins.py | 156 line = line.replace(builtin, repl)
|
/external/eigen/scripts/ |
relicense.py | 49 return text.replace(lgpl3_header, mpl2_header), True
|
/external/harfbuzz_ng/src/ |
hb-blob.h | 99 hb_bool_t replace);
|
hb-shape-plan.h | 69 hb_bool_t replace);
|
/external/icu/icu4c/source/i18n/ |
strrepl.h | 75 * @param theOutput text that will replace input text when the 76 * replace() method is called. May contain stand-in characters 79 * the replace() method 90 * @param theOutput text that will replace input text when the 91 * replace() method is called. May contain stand-in characters 123 virtual int32_t replace(Replaceable& text,
|
/external/jarjar/src/main/com/tonicsystems/jarjar/util/ |
JarTransformer.java | 45 return className.replace('.', '/') + ".class";
|
/external/proguard/src/proguard/io/ |
FileDataEntry.java | 56 .replace(File.separatorChar, ClassConstants.INTERNAL_PACKAGE_SEPARATOR);
|
ZipDataEntry.java | 56 .replace(File.separatorChar, ClassConstants.INTERNAL_PACKAGE_SEPARATOR);
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowPasswordTransformationMethod.java | 20 return String.format(String.format("%%0%dd", charSequence.length()), 0).replace("0", "\u2022");
|
/frameworks/base/core/java/android/text/method/ |
CharacterPickerDialog.java | 93 private void replaceCharacterAndClose(CharSequence replace) { 96 mText.insert(selEnd, replace); 98 mText.replace(selEnd - 1, selEnd, replace);
|
/hardware/libhardware/modules/camera/ |
Metadata.cpp | 37 replace(NULL); 40 void Metadata::replace(camera_metadata_t *m) function in class:default_camera_hal::Metadata 62 replace(tmp); 165 replace(tmp);
|
Metadata.h | 50 // Destroy old metadata and replace with new 51 void replace(camera_metadata_t *m);
|
/libcore/luni/src/test/java/libcore/java/lang/ |
OldStringBufferTest.java | 208 testBuffer.replace(-1, 0, "text"); 215 testBuffer.replace(0, -1, "text"); 222 testBuffer.replace(2, 1, "text"); 229 testBuffer.replace(testBuffer.length() + 1, testBuffer.length() + 1,
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/detail/ |
sequence.hpp | 62 // replace helper implementation ----------------------------------// 64 // Optimized version of replace for generic sequence containers 87 // Replace sequence is longer, insert it 94 // Replace sequence is shorter, erase the rest 128 // No native replace method 148 // Container has native replace method 160 Input.replace( From, To, Begin, End ); 164 // replace helper -------------------------------------------------// 167 inline void replace( function in namespace:boost::algorithm::detail 179 inline void replace( function in namespace:boost::algorithm::detail [all...] |
/packages/services/Telephony/src/com/android/phone/settings/ |
PhoneAccountSettingsActivity.java | 36 getFragmentManager().beginTransaction().replace(
|
/prebuilts/gcc/darwin-x86/aarch64/aarch64-linux-android-4.8/share/gdb/python/gdb/command/ |
prompt.py | 62 return newprompt.replace('\\', '\\\\')
|