HomeSort by relevance Sort by last modified time
    Searched refs:replace (Results 251 - 275 of 3922) sorted by null

<<11121314151617181920>>

  /external/smali/util/src/main/java/org/jf/util/
TextUtils.java 48 return source.replace("\r", "").replace("\n", newlineValue);
  /external/v8/test/mjsunit/es6/
regexp-replace-lastindex.js 10 assertEquals("X", "x".replace(global, function(a) { return "X"; }));
  /external/v8/test/mjsunit/
regexp-capture-3.js 29 "abcd".replace(re, function() { });
45 "abcdabcd".replace(/b/g, function() { });
58 "abcd".replace(re, function() { });
76 "abcdabcd".replace(/(b)(c)/g, function() { });
95 "abcdabcd".replace(/(b)(c)/g, function() { });
109 OverrideCase(function() { return input.replace(re, "x"); });
110 OverrideCase(function() { return input.replace(re_g, "x"); });
111 OverrideCase(function() { return input.replace(re, ""); });
112 OverrideCase(function() { return input.replace(re_g, ""); });
135 no_last_match(function() { "foo".replace("f", ""); })
    [all...]
  /external/v8/test/mjsunit/regress/
regress-crbug-467047.js 9 "abcd".replace(re, function() { });
regress-crbug-471659.js 18 s.replace("+", "-");
  /frameworks/base/telephony/java/android/telephony/
JapanesePhoneNumberFormatter.java 190 text.replace(0, length, saved);
196 text.replace(0, length, saved);
  /frameworks/compile/mclinker/include/mcld/ADT/
TreeAllocator.h 60 replace(pClient);
74 /// replace - be the agent of client.
75 void replace(NodeFactory& pClient) { function in class:mcld::NodeFactory
  /frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/media/
MediaBrowserSupport.java 48 .replace(R.id.container, queueFragment)
53 .replace(R.id.container, BrowseFragment.newInstance(item.getMediaId()))
  /frameworks/support/samples/SupportPreferenceDemos/src/com/example/android/supportpreference/
FragmentSupportPreferences.java 37 getFragmentManager().beginTransaction().replace(android.R.id.content,
47 getFragmentManager().beginTransaction().replace(android.R.id.content, f)
FragmentSupportPreferencesCompat.java 37 getSupportFragmentManager().beginTransaction().replace(android.R.id.content,
48 .replace(android.R.id.content, f)
  /libcore/luni/src/main/java/libcore/reflect/
InternalNames.java 51 String name = internalName.substring(1, internalName.length() - 1).replace('/', '.');
84 return 'L' + c.getName().replace('.', '/') + ';';
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/
fix_throw.py 54 throw_args.replace(pytree.Node(syms.power, with_tb))
56 throw_args.replace(Call(exc, args))
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
inspect_fodder2.py 8 def replace(func): function
20 @replace
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/
fix_throw.py 54 throw_args.replace(pytree.Node(syms.power, with_tb))
56 throw_args.replace(Call(exc, args))
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
inspect_fodder2.py 8 def replace(func): function
20 @replace
  /prebuilts/misc/common/swig/include/2.0.11/ruby/
rubystdautodoc.swg 16 AUTODOC(replace, "Replace all or a portion of the $class");
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_throw.py 54 throw_args.replace(pytree.Node(syms.power, with_tb))
56 throw_args.replace(Call(exc, args))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
inspect_fodder2.py 8 def replace(func): function
20 @replace
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_throw.py 54 throw_args.replace(pytree.Node(syms.power, with_tb))
56 throw_args.replace(Call(exc, args))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
inspect_fodder2.py 8 def replace(func): function
20 @replace
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/tests/
EclipseTestCollector.java 54 String filePath = entry.getPath().replace(".class", "");
112 String dotPath = filePath.replace('/', '.');
  /system/extras/simpleperf/
generate_event_type_table.py 41 event_config = "PERF_COUNT_HW_" + config.replace('-', '_').upper()
67 event_config = "PERF_COUNT_SW_" + config.replace('-', '_').upper()
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/all/
align.d 3 # The RX port will always replace zeros in any aligned area with NOPs,
  /bionic/libc/tools/
generate-NOTICE.py 78 line = line.replace("\t", " ")
79 line = line.replace("/* ", "")
81 line = line.replace("** ", "")
82 line = line.replace("# ", "")
85 line = line.replace("--Copyright--", "")
  /cts/tests/tests/text/src/android/text/cts/
SpannableStringBuilderTest.java 171 builder.replace(0, 5, text);
175 builder.replace(7, 12, "google");
179 builder.replace(4, 2, text);
186 builder.replace(-4, 100, text);
193 builder.replace(0, 1, null);
203 builder.replace(0, 5, text, 3, text.length());
207 builder.replace(3, 5, text, 3, text.length());
211 builder.replace(0, 5, text, 0, text.length());
216 builder.replace(4, 6, "", 0, 0);
220 builder.replace(4, 6, "any string", 5, 5)
    [all...]

Completed in 3942 milliseconds

<<11121314151617181920>>