HomeSort by relevance Sort by last modified time
    Searched refs:replace (Results 1 - 25 of 4292) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/OpenPlatformPkg/Platforms/TexasInstruments/BeagleBoard/Tools/
makefile 13 all: GenerateImage replace
18 replace: replace.c
19 $(CC) $(CCFLAGS) $(LDFLAGS) -o replace.exe replace.c
22 del GenerateImage.exe generate_image.obj replace.exe replace.obj
  /device/linaro/bootloader/edk2/BeagleBoardPkg/Tools/
makefile 13 all: GenerateImage replace
18 replace: replace.c
19 $(CC) $(CCFLAGS) $(LDFLAGS) -o replace.exe replace.c
22 del GenerateImage.exe generate_image.obj replace.exe replace.obj
  /packages/apps/UnifiedEmail/tests/src/com/android/mail/ui/
ImgSrcReplacementTest.java 29 private static void replace(final String input, final String expectedOutput) { method in class:ImgSrcReplacementTest
35 replace(
43 replace(
51 replace(
59 replace(
67 replace(
75 replace(
84 replace(
93 replace(
101 replace(
    [all...]
  /frameworks/support/samples/SupportLeanbackDemos/
generatev4.py 26 return line.replace('<?xml version="1.0" encoding="utf-8"?>', '<?xml version="1.0" encoding="utf-8"?>\n<!-- This file is auto-generated from {}.xml. DO NOT MODIFY. -->\n'.format(name))
32 line = line.replace('android.app.Fragment', 'android.support.v4.app.Fragment')
33 line = line.replace('android.app.Activity', 'android.support.v4.app.FragmentActivity')
34 line = line.replace('GuidedStepFragment', 'GuidedStepSupportFragment')
35 line = line.replace('GuidedStepActivity', 'GuidedStepSupportActivity')
36 line = line.replace('extends Activity', 'extends FragmentActivity')
45 line = line.replace('android.app.Fragment', 'android.support.v4.app.Fragment')
46 line = line.replace('android.app.Activity', 'android.support.v4.app.FragmentActivity')
47 line = line.replace('GuidedStepFragment', 'GuidedStepSupportFragment')
48 line = line.replace('GuidedStepActivity', 'GuidedStepSupportActivity'
    [all...]
  /frameworks/support/v17/leanback/tests/
generatev4.py 42 line = line.replace('{}Fragment'.format(w), '{}SupportFragment'.format(w))
43 line = line.replace('android.app.Fragment', 'android.support.v4.app.Fragment')
44 line = line.replace('android.app.Activity', 'android.support.v4.app.FragmentActivity')
45 line = line.replace('Activity getActivity()', 'FragmentActivity getActivity()')
65 line = line.replace('{}Fragment'.format(w), '{}SupportFragment'.format(w))
67 line = line.replace('{}FragmentTestBase'.format(w), '{}SupportFragmentTestBase'.format(w))
68 line = line.replace('{}FragmentTestActivity'.format(w), '{}SupportFragmentTestActivity'.format(w))
69 line = line.replace('{}TestFragment'.format(w), '{}TestSupportFragment'.format(w))
70 line = line.replace('android.app.Fragment', 'android.support.v4.app.Fragment')
71 line = line.replace('android.app.Activity', 'android.support.v4.app.FragmentActivity'
    [all...]
  /frameworks/support/v17/leanback/
generatev4.py 37 line = line.replace('IS_FRAMEWORK_FRAGMENT = true', 'IS_FRAMEWORK_FRAGMENT = false');
39 line = line.replace('{}Fragment'.format(w), '{}SupportFragment'.format(w))
40 line = line.replace('android.app.Fragment', 'android.support.v4.app.Fragment')
41 line = line.replace('android.app.Activity', 'android.support.v4.app.FragmentActivity')
42 line = line.replace('activity.getFragmentManager()', 'activity.getSupportFragmentManager()')
43 line = line.replace('Activity activity', 'FragmentActivity activity')
44 line = line.replace('(Activity', '(FragmentActivity')
58 line = line.replace('IS_FRAMEWORK_FRAGMENT = true', 'IS_FRAMEWORK_FRAGMENT = false');
59 line = line.replace('VideoSupportFragmentGlueHost'.format(w), 'VideoSupportFragmentGlueHost'.format(w))
60 line = line.replace('android.app.Fragment', 'android.support.v4.app.Fragment'
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/token-rewrite/
basic.rb 45 example 'replace index 0' do
47 stream.replace( 0, 'x' )
51 example 'replace last index' do
53 stream.replace 2, 'x'
57 example 'replace last index' do
59 stream.replace( 2, 'x' )
63 example 'replace middle index' do
65 stream.replace 1, 'x'
69 example 'replace middle index' do
71 stream.replace 1, 'x
    [all...]
  /external/doclava/src/com/google/doclava/
CodeTagInfo.java 27 t = t.replace("&", "&amp;");
28 t = t.replace("<", "&lt;");
29 t = t.replace(">", "&gt;");
LiteralTagInfo.java 27 t = t.replace("&", "&amp;");
28 t = t.replace("<", "&lt;");
29 t = t.replace(">", "&gt;");
  /external/v8/benchmarks/
regexp.js 128 s2[i].replace(re2, '');
146 s8[i].replace(re5, '');
149 s9[i].replace(re6, '');
160 s14[i].replace(re6, '');
166 s16[i].replace(re10, '');
167 s16[i].replace(/\[/g, '');
168 s17[i].replace(re11, '');
171 s18[i].replace(re2, '');
177 s20[i].replace(re12, '');
181 s21[i].replace(/([a-zA-Z]|\s)+/, '')
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
Replaceable.java 22 * during a replace operation, new characters take on the metadata of
37 * <code>replace()</code> is the following:
110 * limit is equal to the replacement text, that replace has no
120 * @param text the text to replace characters <code>start</code>
123 void replace(int start, int limit, String text); method in interface:Replaceable
129 * limit is equal to the replacement text, that replace has no
139 * @param chars the text to replace characters <code>start</code>
145 void replace(int start, int limit, char[] chars, method in interface:Replaceable
159 * replace(dest, dest, text, 0, limit - start);</pre>
UnicodeReplacer.java 18 * replace a range of characters in a Replaceable string with output
26 * Replace characters in 'text' from 'start' to 'limit' with the
42 public abstract int replace(Replaceable text, method in interface:UnicodeReplacer
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
Replaceable.java 21 * during a replace operation, new characters take on the metadata of
36 * <code>replace()</code> is the following:
114 * limit is equal to the replacement text, that replace has no
124 * @param text the text to replace characters <code>start</code>
128 void replace(int start, int limit, String text); method in interface:Replaceable
134 * limit is equal to the replacement text, that replace has no
144 * @param chars the text to replace characters <code>start</code>
151 void replace(int start, int limit, char[] chars, method in interface:Replaceable
165 * replace(dest, dest, text, 0, limit - start);</pre>
UnicodeReplacer.java 17 * replace a range of characters in a Replaceable string with output
25 * Replace characters in 'text' from 'start' to 'limit' with the
41 public abstract int replace(Replaceable text, method in interface:UnicodeReplacer
  /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'});
  /frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/util/
StringUtils.java 67 return escaped.replace(QUOT_ENTITY, "\"")
68 .replace(LT_ENTITY, "<")
69 .replace(GT_ENTITY, ">")
70 .replace(APOS_ENTITY, "'")
71 .replace(AMP_ENTITY, "&")
72 .replace(TAB_ENTITY, "\t")
73 .replace(CR_ENTITY, "\r")
74 .replace(LFEED_ENTITY, "\n");
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/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/markdown/markdown/
postprocessors.py 55 text = text.replace("<p>%s</p>" %
58 text = text.replace(markdown.preprocessors.HTML_PLACEHOLDER % i,
64 html = html.replace('&', '&amp;')
65 html = html.replace('<', '&lt;')
66 html = html.replace('>', '&gt;')
67 return html.replace('"', '&quot;')
76 text = text.replace(markdown.AMP_SUBSTITUTE, "&")
  /development/scripts/
combine_sdks.sh 3 function replace() function
67 # replace tools/emulator # at this time we do not want the exe from SDK1.x
68 replace tools/lib/images
69 replace tools/lib/res
70 replace tools/lib/fonts
71 replace tools/lib/layoutlib.jar
72 replace docs
73 replace android.jar
76 replace tools/lib/$i.txt
80 replace usb_drive
    [all...]
  /external/clang/
clang-version-inc.py 25 for replace, to in replacements.iteritems():
26 line = line.replace(replace, to)
  /development/apps/BluetoothDebug/src/com/android/bluetoothdebug/
DebugReceiver.java 59 return action.replace("android", "a")
60 .replace("bluetooth", "b")
61 .replace("extra", "e")
62 .replace("action", "a");
  /external/abi-compliance-checker/modules/Internals/Scripts/
Sections.js 8 header.innerHTML = header.innerHTML.replace(/\[[^0-9 ]\]/gi,"[&minus;]");
14 header.innerHTML = header.innerHTML.replace(/\[[^0-9 ]\]/gi,"[+]");
  /external/guava/guava/src/com/google/common/collect/
ForwardingConcurrentMap.java 52 public V replace(K key, V value) { method in class:ForwardingConcurrentMap
53 return delegate().replace(key, value);
57 public boolean replace(K key, V oldValue, V newValue) { method in class:ForwardingConcurrentMap
58 return delegate().replace(key, oldValue, newValue);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
google.py 13 arg = arg.replace('+', '%2B')
16 arg = arg.replace(' ', '+')
  /external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
ConcurrentMap.java 32 V replace(K key, V value); method in interface:ConcurrentMap
34 boolean replace(K key, V oldValue, V newValue); method in interface:ConcurrentMap

Completed in 4456 milliseconds

1 2 3 4 5 6 7 8 91011>>