HomeSort by relevance Sort by last modified time
    Searched refs:replace (Results 226 - 250 of 2863) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/skia/src/core/
SkRecordOpts.cpp 52 record->replace<NoOp>(begin); // PushCull
53 record->replace<NoOp>(end-1); // PopCull
71 record->replace<NoOp>(begin); // Save
72 record->replace<NoOp>(end-1); // Restore
94 record->replace<NoOp>(i);
146 record->replace<NoOp>(saveLayerIndex); // SaveLayer
147 record->replace<NoOp>(saveLayerIndex+2); // Restore
194 // All ys are the same. We can replace DrawPosText with DrawPosTextH.
207 SkNEW_PLACEMENT_ARGS(record->replace<DrawPosTextH>(begin, adopted),
218 // Tries to replace DrawPosTextH with BoundedDrawPosTextH, which knows conservative upper and lowe
    [all...]
  /external/skia/src/core/
SkRecordOpts.cpp 52 record->replace<NoOp>(begin); // PushCull
53 record->replace<NoOp>(end-1); // PopCull
71 record->replace<NoOp>(begin); // Save
72 record->replace<NoOp>(end-1); // Restore
94 record->replace<NoOp>(i);
146 record->replace<NoOp>(saveLayerIndex); // SaveLayer
147 record->replace<NoOp>(saveLayerIndex+2); // Restore
194 // All ys are the same. We can replace DrawPosText with DrawPosTextH.
207 SkNEW_PLACEMENT_ARGS(record->replace<DrawPosTextH>(begin, adopted),
218 // Tries to replace DrawPosTextH with BoundedDrawPosTextH, which knows conservative upper and lowe
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/std/
std_basic_string.i 104 replace(size_type __pos, size_type __n, const basic_string& __str);
107 replace(size_type __pos1, size_type __n1, const basic_string& __str,
111 replace(size_type __pos, size_type __n1, const _CharT* __s,
115 replace(size_type __pos, size_type __n1, size_type __n2, _CharT __c);
222 replace(iterator __i1, iterator __i2, const basic_string& __str);
225 replace(iterator __i1, iterator __i2, const _CharT* __s, size_type __n);
228 replace(iterator __i1, iterator __i2, size_type __n, _CharT __c);
232 replace(iterator __i1, iterator __i2, const _CharT* __k1, const _CharT* __k2);
235 replace(iterator __i1, iterator __i2, const_iterator __k1, const_iterator __k2);
  /external/lldb/scripts/Python/
modify-python-lldb.py 47 line = line.replace(' char', ' str')
48 line = line.replace('char ', 'str ')
50 line = line.replace('str argv', 'list argv')
51 line = line.replace('str envp', 'list envp')
406 line = line.replace('\a ', '')
407 line = line.replace('\b ', '')
411 line = line.replace(doxygen_comment_match.group(1), '', 1)
  /packages/apps/Browser/tools/
get_search_engines.py 87 str = str.replace('&', '&amp;').replace('<', '&lt;').replace('>', '&gt;')
88 str = str.replace('"', '&quot;').replace('\'', '&apos;')
130 engine_data_str = engine_data_str.replace('"L"', '')
166 engines_str = engines_str.replace('&','')
  /cts/hostsidetests/appsecurity/test-apps/SplitApp/
Android.mk 33 LOCAL_AAPT_FLAGS := --version-code 100 --version-name OneHundred --replace-version -c mdpi -c hdpi -c xhdpi -c xxhdpi
56 LOCAL_AAPT_FLAGS := --version-code 101 --version-name OneHundredOne --replace-version -c mdpi -c hdpi -c xhdpi -c xxhdpi
79 LOCAL_AAPT_FLAGS := --version-code 100 --version-name OneHundred --replace-version -c mdpi -c hdpi -c xhdpi -c xxhdpi
  /development/tools/mkstubs/src/com/android/mkstubs/sourcer/
ClassSourcer.java 52 String pkg = name.substring(0, name.lastIndexOf('/')).replace('/', '.');
77 mOutput.write(" extends %s", superName.replace('/', '.'));
88 mOutput.write(i.replace('/', '.'));
  /external/chromium_org/chrome/common/extensions/docs/server2/
api_models.py 66 file_name = UnixName(api_name).replace('.', '_')
72 'devtools', file_name.replace(basename,
73 basename.replace('devtools_' , '')))
  /external/chromium_org/device/usb/tools/
usb_ids.py 13 name = name.replace("\\", "\\\\")
14 name = name.replace("\"", "\\\"")
15 name = name.replace("?", "\?")
  /external/chromium_org/third_party/libjingle/source/talk/base/
stringutils.cc 111 const char *replace,
116 s->replace(pos, search_len, replace, replace_len);
  /external/chromium_org/third_party/webrtc/base/
stringutils.cc 94 const char *replace,
99 s->replace(pos, search_len, replace, replace_len);
  /external/chromium_org/tools/code_coverage/third_party/
sorttable.js 98 this.className = this.className.replace('sorttable_sorted',
111 this.className = this.className.replace('sorttable_sorted_reverse',
125 cell.className = cell.className.replace('sorttable_sorted_reverse','');
126 cell.className = cell.className.replace('sorttable_sorted','');
215 return node.textContent.replace(/^\s+|\s+$/g, '');
218 return node.innerText.replace(/^\s+|\s+$/g, '');
221 return node.text.replace(/^\s+|\s+$/g, '');
227 return node.value.replace(/^\s+|\s+$/g, '');
230 return node.nodeValue.replace(/^\s+|\s+$/g, '');
238 return innerText.replace(/^\s+|\s+$/g, '')
    [all...]
  /external/chromium_org/tools/grit/grit/format/policy_templates/
policy_template_generator.py 21 # Replace the placeholder of app name.
22 msg_txt = msg_txt.replace('$1', self._config['app_name'])
23 msg_txt = msg_txt.replace('$2', self._config['os_name'])
24 msg_txt = msg_txt.replace('$3', self._config['frame_name'])
  /external/chromium_org/tools/gyp/pylib/gyp/
easy_xml.py 117 xml_string = xml_string.replace('\n', '\r\n')
151 def replace(match): function in function:_XmlEscape
153 # don't replace single quotes in attrs
157 return _xml_escape_re.sub(replace, value)
  /external/chromium_org/tools/json_schema_compiler/
cpp_util.py 99 .upper().replace(os.sep, '_').replace('/', '_'))
139 for word in feature_name.replace('.', ' ').split()))
  /external/chromium_org/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.
  /external/clang/tools/scan-build/
sorttable.js 98 this.className = this.className.replace('sorttable_sorted',
111 this.className = this.className.replace('sorttable_sorted_reverse',
125 cell.className = cell.className.replace('sorttable_sorted_reverse','');
126 cell.className = cell.className.replace('sorttable_sorted','');
213 return node.textContent.replace(/^\s+|\s+$/g, '');
216 return node.innerText.replace(/^\s+|\s+$/g, '');
219 return node.text.replace(/^\s+|\s+$/g, '');
225 return node.value.replace(/^\s+|\s+$/g, '');
228 return node.nodeValue.replace(/^\s+|\s+$/g, '');
236 return innerText.replace(/^\s+|\s+$/g, '')
    [all...]
  /frameworks/base/tools/preload/
sorttable.js 98 this.className = this.className.replace('sorttable_sorted',
111 this.className = this.className.replace('sorttable_sorted_reverse',
125 cell.className = cell.className.replace('sorttable_sorted_reverse','');
126 cell.className = cell.className.replace('sorttable_sorted','');
213 return node.textContent.replace(/^\s+|\s+$/g, '');
216 return node.innerText.replace(/^\s+|\s+$/g, '');
219 return node.text.replace(/^\s+|\s+$/g, '');
225 return node.value.replace(/^\s+|\s+$/g, '');
228 return node.nodeValue.replace(/^\s+|\s+$/g, '');
236 return innerText.replace(/^\s+|\s+$/g, '')
    [all...]
  /packages/apps/Email/tests/src/com/android/email/activity/
IntentUtilitiesTests.java 80 Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse(uri.replace("ID", "ACCOUNT_ID")));
83 i = new Intent(Intent.ACTION_VIEW, Uri.parse(uri.replace("ID", "MAILBOX_ID")));
86 i = new Intent(Intent.ACTION_VIEW, Uri.parse(uri.replace("ID", "MESSAGE_ID")));
  /prebuilts/misc/darwin-x86/analyzer/tools/scan-build/
sorttable.js 98 this.className = this.className.replace('sorttable_sorted',
111 this.className = this.className.replace('sorttable_sorted_reverse',
125 cell.className = cell.className.replace('sorttable_sorted_reverse','');
126 cell.className = cell.className.replace('sorttable_sorted','');
213 return node.textContent.replace(/^\s+|\s+$/g, '');
216 return node.innerText.replace(/^\s+|\s+$/g, '');
219 return node.text.replace(/^\s+|\s+$/g, '');
225 return node.value.replace(/^\s+|\s+$/g, '');
228 return node.nodeValue.replace(/^\s+|\s+$/g, '');
236 return innerText.replace(/^\s+|\s+$/g, '')
    [all...]
  /prebuilts/misc/linux-x86/analyzer/tools/scan-build/
sorttable.js 98 this.className = this.className.replace('sorttable_sorted',
111 this.className = this.className.replace('sorttable_sorted_reverse',
125 cell.className = cell.className.replace('sorttable_sorted_reverse','');
126 cell.className = cell.className.replace('sorttable_sorted','');
213 return node.textContent.replace(/^\s+|\s+$/g, '');
216 return node.innerText.replace(/^\s+|\s+$/g, '');
219 return node.text.replace(/^\s+|\s+$/g, '');
225 return node.value.replace(/^\s+|\s+$/g, '');
228 return node.nodeValue.replace(/^\s+|\s+$/g, '');
236 return innerText.replace(/^\s+|\s+$/g, '')
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_idioms.py 114 one.replace(Name(u"True", prefix=one.prefix))
123 list_call.replace(Name(u"sorted", prefix=list_call.prefix))
127 simple_expr.replace(Call(Name(u"sorted"), [new],
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_idioms.py 114 one.replace(Name(u"True", prefix=one.prefix))
123 list_call.replace(Name(u"sorted", prefix=list_call.prefix))
127 simple_expr.replace(Call(Name(u"sorted"), [new],
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/tests/
AdtTestData.java 75 mOsRootDataPath = mOsRootDataPath.replace("/./", "/");
93 mOsRootDataPath.replace('\\', DIR_SEP_CHAR);
127 path = new File(mOsRootDataPath.replace(pkgAdt, pkgTests), osRelativePath);
  /external/deqp/framework/delibs/coding_guidelines/
prettify.js 5 "delete","do","else","finally","instanceof","return","throw","try","typeof"],a="(?:(?:(?:^|[^0-9.])\\.{1,3})|(?:(?:^|[^\\+])\\+)|(?:(?:^|[^\\-])-)";for(var c=0;c<b.length;++c){var d=b[c];a+=X(d.charAt(0))?"|\\b"+d:"|"+d.replace(/([^=<>:&])/g,"\\$1")}a+="|^)\\s*$";return new RegExp(a)})(),P=/&/g,Q=/</g,R=/>/g,Z=/\"/g;function $(b){return b.replace(P,"&amp;").replace(Q,"&lt;").replace(R,"&gt;").replace(Z,"&quot;")}function E(b){return b.replace(P,"&amp;").replace(Q,"&lt;").replace(R,"&gt;")}var aa=
6 /&lt;/g,ba=/&gt;/g,ca=/&apos;/g,da=/&quot;/g,ea=/&amp;/g,fa=/&nbsp;/g;function ga(b){var a=b.indexOf("&");if(a<0)return b;for(--a;(a=b.indexOf("&#",a+1))>=0;){var c=b.indexOf(";",a);if(c>=0){var d=b.substring(a+3,c),g=10;if(d&&d.charAt(0)==="x"){d=d.substring(1);g=16}var e=parseInt(d,g);if(!isNaN(e))b=b.substring(0,a)+String.fromCharCode(e)+b.substring(c+1)}}return b.replace(aa,"<").replace(ba,">").replace(ca,"'").replace(da,'"').replace(ea,"&").replace(fa," ")}function S(b){return"XMP"= (…)
    [all...]

Completed in 787 milliseconds

1 2 3 4 5 6 7 8 91011>>