HomeSort by relevance Sort by last modified time
    Searched full:replacement (Results 76 - 100 of 2053) sorted by null

1 2 34 5 6 7 8 91011>>

  /libcore/luni/src/main/java/java/nio/charset/
CharsetDecoder.java 63 * replacement string. The replacement string is "\uFFFD" by default and can be
105 * created by this decoder for one input byte, and the default replacement
475 * Notifies that this decoder's replacement has been changed. The default
479 * the new replacement string.
592 * Returns the replacement string, which is never null or empty.
594 public final String replacement() { method in class:CharsetDecoder
599 * Sets the new replacement string.
601 * This method first checks the given replacement's validity, then changes
602 * the replacement value, and at last calls th
    [all...]
  /external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/test/data/tokenization/
entities.test 23 {"description": "Windows-1252 REPLACEMENT CHAR numeric entity.",
71 {"description": "Windows-1252 REPLACEMENT CHAR numeric entity.",
79 {"description": "Windows-1252 REPLACEMENT CHAR numeric entity.",
83 {"description": "Windows-1252 REPLACEMENT CHAR numeric entity.",
135 {"description": "Windows-1252 REPLACEMENT CHAR numeric entity.",
143 {"description": "Windows-1252 REPLACEMENT CHAR hexadecimal numeric entity.",
191 {"description": "Windows-1252 REPLACEMENT CHAR hexadecimal numeric entity.",
199 {"description": "Windows-1252 REPLACEMENT CHAR hexadecimal numeric entity.",
203 {"description": "Windows-1252 REPLACEMENT CHAR hexadecimal numeric entity.",
255 {"description": "Windows-1252 REPLACEMENT CHAR hexadecimal numeric entity."
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
PhoneNumberWatcherTest.java 252 * the deleted text doesn't have any formatting and neither does the replacement text: in this
253 * case the replacement text should be formatted by the PhoneNumberFormattingTextWatcher.
257 String replacement = "6501234567"; local
259 testReplacement(init, replacement, expected);
272 private void testReplacement(String init, String replacement, String expected) {
278 textWatcher.beforeTextChanged(number, 0, init.length(), replacement.length());
279 number.replace(0, init.length(), replacement, 0, replacement.length());
280 Selection.setSelection(number, replacement.length()); // move the cursor to the end
281 textWatcher.onTextChanged(number, 0, init.length(), replacement.length())
    [all...]
  /external/guava/guava/src/com/google/common/base/
CharMatcher.java 286 @Override public String replaceFrom(CharSequence sequence, char replacement) {
288 Arrays.fill(array, replacement);
292 @Override public String replaceFrom(CharSequence sequence, CharSequence replacement) {
293 StringBuilder retval = new StringBuilder(sequence.length() * replacement.length());
295 retval.append(replacement);
300 @Override public String collapseFrom(CharSequence sequence, char replacement) {
301 return (sequence.length() == 0) ? "" : String.valueOf(replacement);
363 @Override public String replaceFrom(CharSequence sequence, char replacement) {
367 @Override public String replaceFrom(CharSequence sequence, CharSequence replacement) {
368 checkNotNull(replacement);
    [all...]
  /libcore/luni/src/main/java/java/util/regex/
Matcher.java 94 * Appends a literal part of the input plus a replacement for the current
103 * @param replacement
104 * the replacement text.
109 public Matcher appendReplacement(StringBuffer buffer, String replacement) {
111 appendEvaluated(buffer, replacement);
294 * @param replacement
295 * the replacement text.
298 public String replaceFirst(String replacement) {
302 appendReplacement(buffer, replacement);
311 * @param replacement
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidSourceViewerConfig.java 193 String replacement = proposal.getDisplayString(); local
194 if (replacement.charAt(0) == '"' &&
195 replacement.charAt(replacement.length() - 1) == '"') {
201 } else if (replacement.contains("Namespace") //$NON-NLS-1$
202 || replacement.startsWith("XSL ") //$NON-NLS-1$
203 || replacement.contains("Schema")) { //$NON-NLS-1$
  /frameworks/base/core/java/android/text/method/
QwertyKeyListener.java 242 // potentially do autotext replacement if the character
365 String replacement = AutoText.get(src, start, end, view); local
367 if (replacement == null) {
369 replacement = AutoText.get(key, 0, end - start, view);
372 if (replacement == null)
388 out = replacement;
390 out = toTitleCase(replacement);
392 out = replacement.toUpperCase();
394 out = toTitleCase(replacement);
405 * contained <code>original</code> prior to AutoText replacement
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
CharMatcherTest.java 399 // Try replacement chars that both do and do not change the value.
400 for (char replacement : new char[] { '_', '-' }) {
401 String expected = out.replace('_', replacement);
402 assertEqualsSame(expected, in, is('-').collapseFrom(in, replacement));
403 assertEqualsSame(expected, in, is('-').collapseFrom(in, replacement));
404 assertEqualsSame(expected, in, is('-').or(is('#')).collapseFrom(in, replacement));
405 assertEqualsSame(expected, in, isNot('x').collapseFrom(in, replacement));
406 assertEqualsSame(expected, in, is('x').negate().collapseFrom(in, replacement));
407 assertEqualsSame(expected, in, anyOf("-").collapseFrom(in, replacement));
408 assertEqualsSame(expected, in, anyOf("-#").collapseFrom(in, replacement));
    [all...]
  /external/guava/guava-tests/test/com/google/common/base/
CharMatcherTest.java 468 // Try replacement chars that both do and do not change the value.
469 for (char replacement : new char[] { '_', '-' }) {
470 String expected = out.replace('_', replacement);
471 assertEqualsSame(expected, in, is('-').collapseFrom(in, replacement));
472 assertEqualsSame(expected, in, is('-').collapseFrom(in, replacement));
473 assertEqualsSame(expected, in, is('-').or(is('#')).collapseFrom(in, replacement));
474 assertEqualsSame(expected, in, isNot('x').collapseFrom(in, replacement));
475 assertEqualsSame(expected, in, is('x').negate().collapseFrom(in, replacement));
476 assertEqualsSame(expected, in, anyOf("-").collapseFrom(in, replacement));
477 assertEqualsSame(expected, in, anyOf("-#").collapseFrom(in, replacement));
    [all...]
  /external/v8/src/compiler/
js-builtin-reducer-unittest.cc 77 EXPECT_THAT(r.replacement(), IsFloat64Sqrt(p0));
95 EXPECT_THAT(r.replacement(), IsNumberConstant(-V8_INFINITY));
110 EXPECT_THAT(r.replacement(), p0);
132 r.replacement(),
166 EXPECT_THAT(r.replacement(), IsInt32Mul(p0, p1));
value-numbering-reducer-unittest.cc 80 EXPECT_EQ(n1, r2.replacement());
103 EXPECT_EQ(n, r.replacement());
107 EXPECT_EQ(n, r.replacement());
  /packages/apps/Browser/src/com/android/browser/homepages/
Template.java 251 String replacement; local
256 replacement = Integer.toString(dimeni);
258 replacement = Float.toString(dimen);
260 replacement = value.coerceToString().toString();
262 m.appendReplacement(sb, replacement);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/genetics/
TournamentSelection.java 25 * chromosomes without replacement from the population, and then selecting the
49 * drawing {@link #arity} random chromosomes without replacement from the
65 * chromosomes without replacement from the population, and then select the
  /cts/tests/tests/text/src/android/text/cts/
MyanmarTest.java 51 // if textA and textB render identically, test against replacement characters
52 String textC = "\ufffd\ufffd\ufffd"; // replacement characters are acceptable
  /external/chromium-trace/trace-viewer/third_party/Paste/tests/test_exceptions/
test_error_middleware.py 28 def replacement(status, headers, exc_info=None): function in function:clear_middleware.clear_throw_errors
35 return app(environ, replacement)
  /external/icu/icu4c/source/i18n/unicode/
unirepl.h 29 * text. The replacement is done via the Replaceable API so as to
50 * replacement text.
  /external/llvm/lib/Transforms/Hello/
Hello.cpp 28 static char ID; // Pass identification, replacement for typeid
46 static char ID; // Pass identification, replacement for typeid
  /external/v8/src/
hydrogen-escape-analysis.cc 127 // Insert a newly created value check as a replacement for map checks.
145 HValue* replacement = load_value; local
152 replacement = new_instr;
154 return replacement;
193 HValue* replacement = local
195 load->DeleteAndReplaceWith(replacement);
198 replacement->id(), replacement->Mnemonic());
  /external/v8/test/cctest/compiler/
test-js-context-specialization.cc 93 Node* new_context_input = NodeProperties::GetValueInput(r.replacement(), 0);
97 ContextAccess access = OpParameter<ContextAccess>(r.replacement());
109 CHECK(r.replacement() != load);
111 HeapObjectMatcher<Object> match(r.replacement());
173 Node* new_context_input = NodeProperties::GetValueInput(r.replacement(), 0);
177 ContextAccess access = OpParameter<ContextAccess>(r.replacement());
244 Node* replacement = value_use->InputAt(0); local
245 HeapObjectMatcher<Object> match(replacement);
  /bionic/libc/bionic/
time64_config.h 16 Should we use a 64 bit safe replacement for tm? This will
  /device/htc/flounder/overlay/frameworks/base/core/res/res/values-mcc310-mnc260/
config.xml 31 there is no replacement value and VoLTE is assumed to be supported -->
  /device/moto/shamu/overlay/frameworks/base/core/res/res/values-mcc310-mnc028/
config.xml 30 there is no replacement value and VoLTE is assumed to be supported -->
  /device/moto/shamu/overlay/frameworks/base/core/res/res/values-mcc311-mnc390/
config.xml 30 there is no replacement value and VoLTE is assumed to be supported -->
  /external/bison/darwin-lib/
sched.h 2 /* Replacement <sched.h> for platforms that lack it.
  /external/bison/lib/
close.c 1 /* close replacement.

Completed in 6123 milliseconds

1 2 34 5 6 7 8 91011>>