| /external/guava/src/com/google/common/collect/ |
| CustomConcurrentHashMap.java | 709 * created to replace them. This works well for hash tables 870 boolean replace(K key, int hash, V oldValue, V newValue) { method in class:CustomConcurrentHashMap.Impl.Segment 898 V replace(K key, int hash, V newValue) { method in class:CustomConcurrentHashMap.Impl.Segment 1507 public boolean replace(K key, V oldValue, V newValue) { method in class:CustomConcurrentHashMap.Impl 1528 public V replace(K key, V value) { method in class:CustomConcurrentHashMap.Impl [all...] |
| /external/proguard/src/proguard/optimize/evaluation/ |
| EvaluationShrinker.java | 330 // Replace traced but unmarked backward branches by infinite loops. [all...] |
| /libcore/luni/src/test/java/tests/api/java/util/concurrent/ |
| ConcurrentSkipListMapTest.java | 367 * replace fails when the given key is not present 371 assertNull(map.replace(six, "Z")); 376 * replace succeeds if the key is already present 380 assertNotNull(map.replace(one, "Z")); 386 * replace value fails when the given key not mapped to expected value 391 assertFalse(map.replace(one, "Z", "Z")); 396 * replace value succeeds when the given key mapped to expected value 401 assertTrue(map.replace(one, "A", "Z")); 743 * replace(null, x) throws NPE 748 c.replace(null, "whatever") [all...] |
| /build/tools/ |
| warn.py | [all...] |
| /cts/tests/tests/database/src/android/database/cts/ |
| DatabaseUtils_InsertHelperTest.java | 310 method = "replace", 393 // will replace row id 400 values.put("string_value", "replace the row"); 403 id = mInsertHelper.replace(values); 414 assertEquals("replace the row", cursor.getString(stringValueIndex)); 422 assertEquals(-1, mInsertHelper.replace(values));
|
| /external/clearsilver/scripts/ |
| document.py | 212 fp.write('%s\n\n' % string.replace(f._args, '\n', '\n.br\n')) 219 fp.write('%s\n\n' % string.replace(f._output, '\n', '\n.br\n'))
|
| /external/jdiff/src/jdiff/ |
| Comments.java | 247 ref = ref.replace('.', '/'); 341 result.append(identifier.toString().replace('.', '/'));
|
| /external/v8/tools/ |
| csvparser.js | 72 fields.push(field.replace(doubleQuoteRe, '"'));
|
| /external/webkit/JavaScriptCore/tests/mozilla/js1_3/ |
| shell.js | 95 // need to replace w/ IEEE standard for rounding
|
| /external/webkit/WebCore/platform/win/ |
| ClipboardUtilitiesWin.cpp | 220 str.replace(Newline, WindowsNewline); 227 str.replace(NonBreakingSpaceCharacter, SpaceCharacter);
|
| /packages/apps/Email/src/org/apache/commons/io/ |
| FilenameUtils.java | 427 return path.replace(WINDOWS_SEPARATOR, UNIX_SEPARATOR);
440 return path.replace(UNIX_SEPARATOR, WINDOWS_SEPARATOR);
[all...] |
| /external/webkit/SunSpider/tests/parse-only/ |
| prototype-1.6.0.3.js | 206 .replace(/\s+/g, '').split(','); 289 return String(str).replace(/([.*+?^=!:${}()|[\]\/\\])/g, '\\$1'); 382 return this.replace(/^\s+/, '').replace(/\s+$/, ''); 386 return this.replace(/<\/?[^>]+>/gi, ''); 390 return this.replace(new RegExp(Prototype.ScriptFragment, 'img'), ''); 483 if (useDoubleQuotes) return '"' + escapedString.replace(/"/g, '\\"') + '"'; 484 return "'" + escapedString.replace(/'/g, '\\\'') + "'"; 498 str = this.replace(/\\./g, '@').replace(/"[^"\\\n\r]*"/g, '') [all...] |
| /dalvik/dx/src/junit/runner/ |
| TestCaseClassLoader.java | 115 String fileName= className.replace('.', '/')+".class";
|
| /dalvik/tests/082-inline-execute/src/ |
| Main.java | 202 Assert.assertEquals("this is a path", test.replace("/", " "));
|
| /development/scripts/app_engine_server/gae_shell/ |
| shell.py | 211 statement = statement.replace('\r\n', '\n')
|
| /development/scripts/app_engine_server/gae_shell/static/ |
| shell.js | 144 var result = req.responseText.replace(/^\s*|\s*$/g, ''); // trim whitespace 182 var value = escape(elem.value).replace(/\+/g, '%2B'); // escape ignores +
|
| /development/tools/idegen/src/ |
| Configuration.java | 187 String packagePath = packageName.replace('.', File.separatorChar);
|
| /development/tools/mkstubs/src/com/android/mkstubs/sourcer/ |
| MethodSourcer.java | 122 mOutput.write(mExceptions[i].replace('/', '.'));
|
| /external/chromium/googleurl/base/ |
| logging.cc | 114 // \ is not a legal character in mutex names so we replace \ with / 116 std::replace(safe_name.begin(), safe_name.end(), '\\', '/');
|
| /external/chromium/net/http/ |
| http_transaction_unittest.h | 227 std::replace(header_data.begin(), header_data.end(), '\n', '\0');
|
| /external/chromium/net/tools/dump_cache/ |
| cache_dumper.cc | 173 headers.replace(headers.length() - 2, 0, x_original_url);
|
| /external/chromium/third_party/icu/public/common/unicode/ |
| utext.h | 784 * Replace a range of the original text with a replacement text. 793 * underlying native text string. Behavior after a replace operation 826 * it does not replace or overwrite any existing text. 1237 UTextReplace *replace; member in struct:UTextFuncs [all...] |
| /external/chromium/third_party/icu/source/i18n/ |
| strmatch.cpp | 213 int32_t StringMatcher::replace(Replaceable& text, function in class:StringMatcher
|
| /external/clearsilver/python/examples/base/ |
| hdfhelp.py | 116 value = string.replace(value,k,v)
|
| odb_test.py | 155 # replace 158 repl_row = tbl.newRow(replace=1) 166 raise "replace failed" 167 output("PASSED! replace")
|