HomeSort by relevance Sort by last modified time
    Searched full:formatted (Results 1 - 25 of 1194) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/markdown/tests/misc/
pre.html 9 * and this is pre-formatted content
11 * and not formatted as a list
pre.txt 9 * and this is pre-formatted content
11 * and not formatted as a list
  /external/chromium/chrome/browser/resources/shared/js/
local_strings.js 26 * Returns a formatted string where $1 to $9 are replaced by the second to the
29 * @param {...string} The extra values to include in the formatted output.
67 * Returns a formatted localized string where $1 to $9 are replaced by the
70 * @param {...string} The extra values to include in the formatted output.
71 * @return {string} The formatted string.
  /frameworks/base/telephony/java/android/telephony/
PhoneNumberFormattingTextWatcher.java 110 String formatted = reformat(s, Selection.getSelectionEnd(s)); local
111 if (formatted != null) {
114 s.replace(0, s.length(), formatted, 0, formatted.length());
117 if (formatted.equals(s.toString())) {
125 * Generate the formatted number by ignoring all non-dialable chars and stick the cursor to the
132 String formatted = null; local
141 formatted = getFormattedNumber(lastNonSeparator, hasCursor);
151 formatted = getFormattedNumber(lastNonSeparator, hasCursor);
153 return formatted;
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/tests/
t014parser.py 34 # FIXME: currently strings with formatted errors are collected
48 # FIXME: currently strings with formatted errors are collected
64 # FIXME: currently strings with formatted errors are collected
t017parser.py 40 # FIXME: currently strings with formatted errors are collected
52 # FIXME: currently strings with formatted errors are collected
t013parser.py 29 # FIXME: currently strings with formatted errors are collected
  /external/chromium/net/base/
net_switches.cc 9 // This switch will take the JSON-formatted HSTS specification and load it
  /sdk/find_java/
utils.cpp 31 CString formatted; local
34 formatted.setv(text, ap);
37 MessageBoxA(NULL, formatted.cstr(), "Android SDK Manager", MB_OK | MB_ICONINFORMATION);
42 CString formatted; local
45 formatted.setv(description, ap);
50 formatted.add("\r\n");
51 formatted.add(error.cstr());
54 fprintf(stderr, "%s\n", formatted.cstr());
56 MessageBox(NULL, formatted.cstr(), "Android SDK Manager - Error", MB_OK | MB_ICONERROR);
  /dalvik/dexgen/src/com/android/dexgen/util/
Hex.java 34 * @return {@code non-null;} formatted form
50 * @return {@code non-null;} formatted form
66 * @return {@code non-null;} formatted form
82 * @return {@code non-null;} formatted form
100 * @return {@code non-null;} formatted form
114 * @return {@code non-null;} formatted form
130 * @return {@code non-null;} formatted form
143 * @return {@code non-null;} formatted form
167 * @return {@code non-null;} formatted form
191 * @return {@code non-null;} formatted for
    [all...]
  /dalvik/dx/src/com/android/dx/util/
Hex.java 34 * @return {@code non-null;} formatted form
50 * @return {@code non-null;} formatted form
66 * @return {@code non-null;} formatted form
82 * @return {@code non-null;} formatted form
100 * @return {@code non-null;} formatted form
114 * @return {@code non-null;} formatted form
130 * @return {@code non-null;} formatted form
143 * @return {@code non-null;} formatted form
167 * @return {@code non-null;} formatted form
191 * @return {@code non-null;} formatted for
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/util/
Hex.java 34 * @return {@code non-null;} formatted form
50 * @return {@code non-null;} formatted form
66 * @return {@code non-null;} formatted form
82 * @return {@code non-null;} formatted form
100 * @return {@code non-null;} formatted form
114 * @return {@code non-null;} formatted form
130 * @return {@code non-null;} formatted form
143 * @return {@code non-null;} formatted form
167 * @return {@code non-null;} formatted form
191 * @return {@code non-null;} formatted for
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
X509CollectionStoreParameters.java 58 * Returns a formatted string describing the parameters.
60 * @return a formatted string describing the parameters
  /external/guava/guava/src/com/google/common/base/
Objects.java 196 * Adds a name/value pair to the formatted output in {@code name=value}
206 * Adds a name/value pair to the formatted output in {@code name=value}
217 * Adds a name/value pair to the formatted output in {@code name=value}
228 * Adds a name/value pair to the formatted output in {@code name=value}
239 * Adds a name/value pair to the formatted output in {@code name=value}
250 * Adds a name/value pair to the formatted output in {@code name=value}
261 * Adds a name/value pair to the formatted output in {@code name=value}
277 * Adds an unnamed value to the formatted output.
288 * Adds an unnamed value to the formatted output.
301 * Adds an unnamed value to the formatted output
    [all...]
  /external/oprofile/libutil++/
string_manip.cpp 130 string formatted = os.str(); local
131 if (is_prefix(formatted, "100."))
132 formatted.erase(formatted.size() - 1);
133 return formatted;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/formatting/
AndroidXmlFormattingStrategy.java 72 * overlapping the formatted region, then it pretty-prints that XML region
156 * @param model the model to be formatted
158 * @param length the length of the text range to be formatted
159 * @return a {@link TextEdit} which edits the model into a formatted document
297 // If you select this text range, we want <foo> to be formatted at whatever
311 // this is that some of theses nodes, which have not yet been formatted,
335 String formatted = sb.toString(); local
336 ReplaceEdit replaceEdit = createReplaceEdit(document, replaceStart, replaceEnd, formatted,
344 // old positions of the formatted text:
358 * given new formatted content. The replaceStart and replaceEnd parameters point t
    [all...]
  /frameworks/base/core/java/android/database/sqlite/
SQLiteQueryBuilder.java 183 * @param where A filter declaring which rows to return, formatted as an SQL
186 * @param groupBy A filter declaring how to group rows, formatted as an SQL
190 * if row grouping is being used, formatted as an SQL HAVING
194 * @param orderBy How to order the rows, formatted as an SQL ORDER BY clause
198 * formatted as LIMIT clause. Passing null denotes no LIMIT clause.
270 * formatted as an SQL WHERE clause (excluding the WHERE
276 * @param groupBy A filter declaring how to group rows, formatted
280 * the cursor, if row grouping is being used, formatted as an
284 * @param sortOrder How to order the rows, formatted as an SQL
307 * formatted as an SQL WHERE clause (excluding the WHER
    [all...]
  /dalvik/tests/021-string2/src/junit/framework/
Assert.java 268 String formatted= ""; local
270 formatted= message+" ";
271 fail(formatted+"expected not same");
275 String formatted= ""; local
277 formatted= message+" ";
278 fail(formatted+"expected same:<"+expected+"> was not:<"+actual+">");
286 String formatted= ""; local
288 formatted= message+" ";
289 return formatted+"expected:<"+expected+"> but was:<"+actual+">";
  /dalvik/tests/082-inline-execute/src/junit/framework/
Assert.java 268 String formatted= ""; local
270 formatted= message+" ";
271 fail(formatted+"expected not same");
275 String formatted= ""; local
277 formatted= message+" ";
278 fail(formatted+"expected same:<"+expected+"> was not:<"+actual+">");
286 String formatted= ""; local
288 formatted= message+" ";
289 return formatted+"expected:<"+expected+"> but was:<"+actual+">";
  /external/junit/src/junit/framework/
Assert.java 273 String formatted= ""; local
275 formatted= message+" ";
276 fail(formatted+"expected not same");
280 String formatted= ""; local
282 formatted= message+" ";
283 fail(formatted+"expected same:<"+expected+"> was not:<"+actual+">");
291 String formatted= ""; local
293 formatted= message+" ";
294 return formatted+"expected:<"+expected+"> but was:<"+actual+">";
ComparisonCompactor.java 82 String formatted= ""; local
84 formatted= message+" ";
85 return formatted+"expected:<"+expected+"> but was:<"+actual+">";
  /libcore/luni/src/main/java/java/text/
Format.java 88 * @return the formatted string.
90 * if the object cannot be formatted by this format.
104 * text offset of the first occurrence of this field in the formatted text.
109 * the string buffer where the formatted string is appended to.
112 * of the alignment field in the formatted text.
115 * if the object cannot be formatted by this format.
122 * an {@code AttributedCharacterIterator} with the formatted string and no
130 * @return an {@code AttributedCharacterIterator} with the formatted object
133 * if the object cannot be formatted by this format.
  /external/webkit/LayoutTests/dom/html/level2/html/
HTMLPreElement01.html 8 <PRE WIDTH="277">The PRE is used to indicate pre-formatted text. Visual agents may:
  /external/webkit/LayoutTests/dom/xhtml/level2/html/
HTMLPreElement01.xhtml 10 <pre>The PRE is used to indicate pre-formatted text. Visual agents may:
  /frameworks/compile/libbcc/runtime/
CREDITS.TXT 6 The list is sorted by surname and formatted to allow easy grepping and

Completed in 1735 milliseconds

1 2 3 4 5 6 7 8 91011>>