HomeSort by relevance Sort by last modified time
    Searched full:replace (Results 201 - 225 of 5102) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium/chrome/common/extensions/docs/examples/extensions/chrome_search/
background.html 43 // Replace any extraneous whitespace to make it look nicer.
44 content = content.replace(/[\n\t]/g, ' ');
45 content = content.replace(/ {2,}/g, ' ');
49 content = content.replace(/<\/?pre>/g, '');
53 content = content.replace(/<(\/)?b>/g, '<$1match>');
  /frameworks/base/core/java/com/android/internal/widget/
DrawableHolder.java 68 * @param replace if true, replace the current animation with this one.
71 String property, float toValue, boolean replace) {
73 if (replace) removeAnimationFor(property);
79 this.addAnimation(anim, replace);
  /packages/apps/Browser/src/com/android/browser/search/
SearchEngineInfo.java 94 mSearchEngineData[FIELD_SEARCH_URI].replace(PARAMETER_LANGUAGE, language_str);
96 mSearchEngineData[FIELD_SUGGEST_URI].replace(PARAMETER_LANGUAGE, language_str);
107 mSearchEngineData[FIELD_SEARCH_URI].replace(PARAMETER_INPUT_ENCODING, enc);
109 mSearchEngineData[FIELD_SUGGEST_URI].replace(PARAMETER_INPUT_ENCODING, enc);
164 return templateUri.replace(PARAMETER_SEARCH_TERMS, URLEncoder.encode(query, enc));
  /sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
TypographyDetector.java 48 /** Replace hyphens with dashes? */
63 /** Replace dumb quotes with smart quotes? */
85 /** Replace fraction strings with fraction characters? */
89 "You can replace certain strings, such as 1/2, and 1/4, with dedicated " +
99 /** Replace ... with the ellipsis character? */
103 "You can replace the string \"...\" with a dedicated ellipsis character, " +
128 "Replace \"...\" with ellipsis character (\u2026, &#8230;) ?";
130 "Replace \"-\" with an \"en dash\" character (\u2013, &#8211;) ?";
132 "Replace \"--\" with an \"em dash\" character (\u2014, &#8212;) ?";
134 "Replace apostrophe (') with typographic apostrophe (\u2019, &#8217;) ?"
487 String replace = matcher.group(3); local
    [all...]
  /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/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
ClassicToken.cs 165 txt = txt.Replace("\n", "\\\\n");
166 txt = txt.Replace("\r", "\\\\r");
167 txt = txt.Replace("\t", "\\\\t");
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
StringExtensions.cs 96 public static string replace( string str, char oldValue, char newValue ) method in class:Antlr.Runtime.JavaExtensions.StringExtensions
109 return System.Text.RegularExpressions.Regex.Replace( str, regex, newValue );
114 return System.Text.RegularExpressions.Regex.Replace( str, regex, replacement );
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
ClassicToken.cs 201 txt = txt.Replace( "\n", "\\\\n" );
202 txt = txt.Replace( "\r", "\\\\r" );
203 txt = txt.Replace( "\t", "\\\\t" );
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
CommonToken.js 131 txt = txt.replace(/\n/g,"\\\\n");
132 txt = txt.replace(/\r/g,"\\\\r");
133 txt = txt.replace(/\t/g,"\\\\t");
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
Utils.java 53 a string to replace, replacee,
54 and a string to replace with, replacer,
61 public static String replace(String src, String replacee, String replacer) { method in class:Utils
  /external/clang/include/clang/Edit/
Commit.h 81 bool replace(CharSourceRange range, StringRef text);
98 bool replace(SourceRange TokenRange, StringRef text) { function in class:clang::edit::Commit
99 return replace(CharSourceRange::getTokenRange(TokenRange), text);
  /external/jpeg/
wrjpgcom.1 7 .B \-replace
41 .B \-replace
69 \fB\-replace \-comment ""\fR can be used to delete all COM blocks from a file.
  /external/qemu/distrib/jpeg-6b/
wrjpgcom.1 7 .B \-replace
41 .B \-replace
69 \fB\-replace \-comment ""\fR can be used to delete all COM blocks from a file.
  /external/webkit/LayoutTests/fast/js/resources/
json2-es5-compat.js 68 a replacer function to replace those with JSON values.
154 lastIndex, length, parse, prototype, push, replace, slice, stringify,
204 // Otherwise we must also replace the offending characters with safe escape
209 '"' + string.replace(escapable, function (a) {
356 // that can replace values, or an array of strings that will select the keys.
428 // Parsing happens in four stages. In the first stage, we replace certain
434 text = text.replace(cx, function (a) {
447 // replace the JSON backslash pairs with '@' (a non-JSON character). Second, we
448 // replace all simple value tokens with ']' characters. Third, we delete all
454 test(text.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g, '@')
    [all...]
  /external/webkit/PerformanceTests/SunSpider/hosted/
json2.js 76 a replacer function to replace those with JSON values.
154 lastIndex, length, parse, prototype, push, replace, slice, stringify,
213 // Otherwise we must also replace the offending characters with safe escape
218 '"' + string.replace(escapable, function (a) {
360 // that can replace values, or an array of strings that will select the keys.
432 // Parsing happens in four stages. In the first stage, we replace certain
438 text = text.replace(cx, function (a) {
451 // replace the JSON backslash pairs with '@' (a non-JSON character). Second, we
452 // replace all simple value tokens with ']' characters. Third, we delete all
458 test(text.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g, '@')
    [all...]
  /external/webkit/Source/WebKit/chromium/scripts/
generate_devtools_grd.py 76 return (filename.replace('/', '_')
77 .replace('\\', '_')
78 .replace('.', '_')).upper()
  /external/webkit/Tools/TestResultServer/model/
jsonresults_unittest.py 97 counts.append(JSON_RESULTS_COUNTS_TEMPLATE.replace("[TESTDATA]", build))
103 json = json.replace("[TESTDATA_COUNTS]", ",".join(counts))
104 json = json.replace("[TESTDATA_COUNT]", ",".join(builds))
105 json = json.replace("[TESTDATA_BUILDNUMBERS]", ",".join(build_numbers))
106 json = json.replace("[TESTDATA_WEBKITREVISION]", ",".join(webkit_revision))
107 json = json.replace("[TESTDATA_CHROMEREVISION]", ",".join(chrome_revision))
108 json = json.replace("[TESTDATA_TIMES]", ",".join(times))
112 t = JSON_RESULTS_TESTS_TEMPLATE.replace("[TESTDATA_TEST_NAME]", test[0])
113 t = t.replace("[TESTDATA_TEST_RESULTS]", test[1])
114 t = t.replace("[TESTDATA_TEST_TIMES]", test[2]
    [all...]
  /frameworks/compile/mclinker/include/mcld/ADT/
TreeAllocator.h 63 replace(pClient);
78 /// replace - be the agent of client.
79 void replace(NodeFactory& pClient) { function in class:mcld::NodeFactory
  /frameworks/compile/mclinker/scripts/bin/
add_class 17 # 6. replace the keywords
137 # 6. replace the keywords
146 # 6. replace the keywords
  /packages/apps/Email/tests/src/com/android/email/activity/
IntentUtilitiesTests.java 78 Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse(uri.replace("ID", "ACCOUNT_ID")));
81 i = new Intent(Intent.ACTION_VIEW, Uri.parse(uri.replace("ID", "MAILBOX_ID")));
84 i = new Intent(Intent.ACTION_VIEW, Uri.parse(uri.replace("ID", "MESSAGE_ID")));
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
SynchronousContactsProvider2.java 207 db.execSQL("replace into SQLITE_SEQUENCE (name,seq) values('raw_contacts', 42)");
208 db.execSQL("replace into SQLITE_SEQUENCE (name,seq) values('contacts', 2009)");
209 db.execSQL("replace into SQLITE_SEQUENCE (name,seq) values('data', 777)");
  /prebuilts/tools/common/proguard/proguard4.7/docs/
acknowledgements.html 11 window.top.location.replace("index.html#"+window.location.pathname+window.location.hash);
13 var hash="#"+window.location.pathname.replace(window.top.location.pathname.replace("index.html", ""), "");
license.html 11 window.top.location.replace("index.html#"+window.location.pathname+window.location.hash);
13 var hash="#"+window.location.pathname.replace(window.top.location.pathname.replace("index.html", ""), "");
  /prebuilts/tools/common/proguard/proguard4.7/docs/manual/
limitations.html 11 window.top.location.replace("../index.html#"+window.location.pathname+window.location.hash);
13 var hash="#"+window.location.pathname.replace(window.top.location.pathname.replace("index.html", ""), "");
  /prebuilts/tools/common/proguard/proguard4.7/docs/manual/retrace/
introduction.html 11 window.top.location.replace("../../index.html#"+window.location.pathname+window.location.hash);
13 var hash="#"+window.location.pathname.replace(window.top.location.pathname.replace("index.html", ""), "");

Completed in 4769 milliseconds

1 2 3 4 5 6 7 891011>>