/external/llvm/include/llvm/Transforms/Utils/ |
IntegerDivision.h | 32 /// @brief Replace Rem with generated code. 41 /// @brief Replace Div with generated code. 49 /// @brief Replace Rem with generated code. 55 /// @brief Replace Rem with generated code. 62 /// @brief Replace Rem with generated code. 68 /// @brief Replace Rem with generated code.
|
/external/v8/test/mjsunit/ |
string-replace-one-char.js | 28 // Make sure the strings are long enough to trigger the one-char string replace. 32 function test_replace(result, expected, search, replace) { 33 assertEquals(expected, result.replace(search, replace)); 36 // '$' in the replace string. 53 // Zero length replace string.
|
debug-liveedit-stepin.js | 27 Replace(BestEditor, "Emacs", "Eclipse"); 30 Replace(BestEditor, "Eclipse", "Vim"); 42 function Replace(fun, original, patch) {
|
this-in-callbacks.js | 41 // test String.replace 46 assertEquals('id', 'hello'.replace('hello', r)); 47 assertEquals('id', 'hello'.replace(/hello/, r));
|
/system/connectivity/shill/binder/ |
manager_binder_adaptor.cc | 106 // TODO(samueltan): replace this with proper implementation. 113 // TODO(samueltan): replace this with proper implementation. 120 // TODO(samueltan): replace this with proper implementation. 128 // TODO(samueltan): replace this with proper implementation. 134 // TODO(samueltan): replace this with proper implementation. 140 // TODO(samueltan): replace this with proper implementation.
|
/cts/tests/tests/graphics/src/android/graphics/cts/ |
Region_OpTest.java | 31 assertEquals(Op.REPLACE, Op.valueOf("REPLACE")); 45 Op.REPLACE};
|
/cts/tools/selinux/ |
SELinuxNeverallowTestGen.py | 25 squashed_neverallow = neverallow_rule.replace("\n", " ") 27 method = method.replace("testNeverallowRules()", 29 return method.replace("$NEVERALLOW_RULE_HERE$", squashed_neverallow)
|
/external/autotest/server/bin/ |
unit_test_server.py | 21 # simple replace to make a valid identifier 22 key = f.replace('/', '_').replace('.', '_')
|
/external/bison/m4/ |
perror.m4 | 16 dnl replace perror if strerror_r was replaced for a content fix. 19 dnl to <errno.h>, or any fix for strerror(0). Replace it. 59 dnl system's strerror_r(). Replace it.
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
UnicodeReplacer.java | 15 * replace a range of characters in a Replaceable string with output 23 * Replace characters in 'text' from 'start' to 'limit' with the 39 public abstract int replace(Replaceable text, method in interface:UnicodeReplacer
|
/external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/processors/ |
ModifyStringLiterals.java | 48 // TODO Replace with Pattern 50 String newLiteralValue = literalValue.replace(oldString, newString); 53 rewrite.replace(node, newLiteral, null /* editGorup */);
|
/external/libcxx/test/std/strings/basic.string/string.modifiers/string_replace/ |
iter_iter_initializer_list.pass.cpp | 12 // basic_string& replace(const_iterator i1, const_iterator i2, initializer_list<charT> il); 24 s.replace(s.cbegin() + 3, s.cbegin() + 6, {'a', 'b', 'c'}); 31 s.replace(s.cbegin() + 3, s.cbegin() + 6, {'a', 'b', 'c'});
|
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/ |
JsonTest.java | 113 text = text.replace("{", "/*moo*/{/*moo*/"); 116 text = text.replace("}", "/*moo*/}/*moo*/"); 117 text = text.replace("[", "/*moo*/[/*moo*/"); 118 text = text.replace("]", "/*moo*/]/*moo*/"); 119 text = text.replace(":", "/*moo*/:/*moo*/"); 120 text = text.replace(",", "/*moo*/,/*moo*/"); 123 text = text.replace("/*moo*/", " /*moo*/ "); 126 text = text.replace("/*moo*/", "// moo\n"); 129 text = text.replace("\n", "\r\n"); 132 text = text.replace(",", "\n") [all...] |
/external/v8/build/ |
apply_locales.py | 15 parser.set_usage(usage.replace('%s', '%prog')) 37 locale = locale.replace('-', '_') 38 results.append(str_template.replace('ZZLOCALE', locale))
|
/external/v8/test/webkit/ |
regexp-extended-characters-more-expected.txt | 29 PASS "foo\xa0\xa0\xa0".replace(/\xa0*/, "") is "foo\xa0\xa0\xa0" 30 PASS "foo\xa0\xa0\xa0".replace(/\xa0+/, "") is "foo" 31 PASS "foo\xa0\xa0\xa0".replace(/\xa0*$/, "") is "foo"
|
regexp-extended-characters-more.js | 28 shouldBe('"foo\\xa0\\xa0\\xa0".replace(/\\xa0*/, "")', '"foo\\xa0\\xa0\\xa0"'); 29 shouldBe('"foo\\xa0\\xa0\\xa0".replace(/\\xa0+/, "")', '"foo"'); 30 shouldBe('"foo\\xa0\\xa0\\xa0".replace(/\\xa0*$/, "")', '"foo"');
|
typeof-constant-string.js | 138 return "%d".replace(/%d/, replace_formats); 154 return "%d".replace(/%d/, replace_formats); 170 return "%d".replace(/%d/, replace_formats); 186 return "%d".replace(/%d/, replace_formats); 203 return "%d".replace(/%d/, replace_formats); 219 return "%d".replace(/%d/, replace_formats); 235 return "%d".replace(/%d/, replace_formats); 251 return "%d".replace(/%d/, replace_formats); 267 return "%d".replace(/%d/, replace_formats); 283 return "%d".replace(/%d/, replace_formats) [all...] |
/external/v8/tools/gyp/test/variables/commands/ |
gyptest-commands-ignore-env.py | 23 expect = test.read('commands.gyp.ignore-env.stdout').replace('\r\n', '\n') 39 contents = test.read('commands.gypd').replace('\r', '') 40 expect = test.read('commands.gypd.golden').replace('\r', '')
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.modifiers/string_replace/ |
iter_iter_initializer_list.pass.cpp | 12 // basic_string& replace(const_iterator i1, const_iterator i2, initializer_list<charT> il); 24 s.replace(s.cbegin() + 3, s.cbegin() + 6, {'a', 'b', 'c'}); 31 s.replace(s.cbegin() + 3, s.cbegin() + 6, {'a', 'b', 'c'});
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/ |
find_format.hpp | 27 Defines generic replace algorithms. Each algorithm replaces 35 // generic replace -----------------------------------------------------------------// 37 //! Generic replace algorithm 40 this substring and replace it in the input. 85 //! Generic replace algorithm 116 //! Generic replace algorithm 119 this substring and replace it in the input. The input is modified in-place. 155 //! Generic replace all algorithm 158 this substring and replace it in the input. Repeat this for all matching 205 //! Generic replace all algorith [all...] |
/packages/apps/Camera2/src/com/android/camera/data/ |
FilmstripItemAttributes.java | 52 // TODO: Replace this with a command. 57 // TODO: Replace this with a command. 62 // TODO: Replace this with a command.
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
findtext.dlg | 30 CAPTION "Replace" 43 PUSHBUTTON "&Replace",psh1,174,21,50,14 44 PUSHBUTTON "Replace &All",psh2,174,38,50,14
|
/dalvik/dx/tests/123-dex-transform-invalid-virtual-to-direct/ |
info.txt | 5 with java6 and manually editing the file to replace the opcode at
|
/developers/build/prebuilts/gradle/SpeedTracker/ |
README | 11 and replace YOUR_MAP_V2_API_KEY with your own key.
|
/developers/samples/android/wearable/wear/SpeedTracker/ |
README | 11 and replace YOUR_MAP_V2_API_KEY with your own key.
|