HomeSort by relevance Sort by last modified time
    Searched refs:replacement (Results 51 - 75 of 446) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/include/backward/
backward_warning.h 36 listing of replacement headers and interfaces, consult the file \
  /external/chromium_org/v8/src/compiler/
machine-operator-reducer-unittest.cc 254 EXPECT_THAT(reduction.replacement(), IsFloat64Constant(x));
270 EXPECT_EQ(value, reduction.replacement());
279 EXPECT_THAT(reduction.replacement(), IsInt32Constant(x));
295 EXPECT_EQ(value, reduction.replacement());
304 EXPECT_THAT(reduction.replacement(), IsInt32Constant(bit_cast<int32_t>(x)));
318 EXPECT_THAT(reduction.replacement(), IsFloat64Constant(FastI2D(x)));
332 EXPECT_THAT(reduction.replacement(), IsInt64Constant(x));
347 EXPECT_THAT(reduction.replacement(), IsFloat64Constant(FastUI2D(x)));
362 EXPECT_THAT(reduction.replacement(),
379 EXPECT_EQ(value, reduction.replacement());
    [all...]
js-context-specialization.cc 27 if (r.Changed() && r.replacement() != node) {
28 NodeProperties::ReplaceWithValue(node, r.replacement());
35 if (r.Changed() && r.replacement() != node) {
36 NodeProperties::ReplaceWithValue(node, r.replacement());
  /frameworks/base/core/java/android/text/format/
DateFormat.java 515 String replacement; local
519 replacement = localeData.amPm[inDate.get(Calendar.AM_PM) - Calendar.AM];
522 replacement = zeroPad(inDate.get(Calendar.DATE), count);
526 replacement = getDayOfWeekString(localeData,
536 replacement = zeroPad(hour, count);
549 replacement = zeroPad(hour, count);
554 replacement = getMonthString(localeData,
558 replacement = zeroPad(inDate.get(Calendar.MINUTE), count);
561 replacement = zeroPad(inDate.get(Calendar.SECOND), count);
564 replacement = getYearString(inDate.get(Calendar.YEAR), count)
    [all...]
  /external/chromium_org/chrome/browser/spellchecker/
spellcheck_message_filter_mac_unittest.cc 33 result.replacement = remote_suggestion;
43 EXPECT_EQ(remote_suggestion, remote_results[1].replacement);
  /external/chromium_org/chrome/common/extensions/docs/server2/
test_util.py 43 def _ReplaceLogging(name, replacement):
47 setattr(logging, name, replacement)
  /external/llvm/utils/llvm-build/llvmbuild/
configutil.py 16 replacement), where the regex and replacement will be used as in 're.sub' to
17 execute the variable replacement.
34 for regex_string,replacement in substitutions:
36 data = regex.sub(replacement, data)
  /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...]
CharsetEncoderICU.java 31 // the byte corresponding to '?' in ASCII as the replacement byte for charsets where that
73 byte[] replacement = makeReplacement(icuCanonicalName, address);
74 CharsetEncoderICU result = new CharsetEncoderICU(cs, averageBytesPerChar, maxBytesPerChar, replacement, address);
86 byte[] replacement = DEFAULT_REPLACEMENTS.get(icuCanonicalName);
87 if (replacement != null) {
88 return replacement.clone();
94 private CharsetEncoderICU(Charset cs, float averageBytesPerChar, float maxBytesPerChar, byte[] replacement, long address) {
95 super(cs, averageBytesPerChar, maxBytesPerChar, replacement, true);
  /libcore/luni/src/main/java/libcore/icu/
NativeConverter.java 59 decoder.replacement());
67 encoder.replacement());
  /external/chromium_org/net/dns/
mock_host_resolver.cc 233 std::string replacement; member in struct:net::RuleBasedHostResolverProc::Rule
241 const std::string& replacement,
248 replacement(replacement),
258 const std::string& replacement) {
260 replacement);
266 const std::string& replacement) {
267 DCHECK(!replacement.empty());
274 replacement,
300 const std::string& replacement,
    [all...]
  /external/chromium_org/third_party/skia/src/svg/
SkSVGGradient.cpp 95 SkString replacement; local
96 replacement.set("0x");
97 replacement.append(color.c_str() + 1, 2); // add stop colors using given color, turning existing stop color into alpha
100 replacement.append(baseColor.c_str() + 1);
101 color.set(replacement);
  /external/skia/src/svg/
SkSVGGradient.cpp 95 SkString replacement; local
96 replacement.set("0x");
97 replacement.append(color.c_str() + 1, 2); // add stop colors using given color, turning existing stop color into alpha
100 replacement.append(baseColor.c_str() + 1);
101 color.set(replacement);
  /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$
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
TextCodecUserDefined.cpp 80 UnencodableReplacementArray replacement; local
81 int replacementLength = TextCodec::getUnencodableReplacement(c, handling, replacement);
84 memcpy(bytes + resultLength, replacement, replacementLength);
  /development/ndk/platforms/android-9/arch-x86/include/asm/
alternative_32.h 27 u8 *replacement; member in struct:alt_instr
  /external/chromium_org/chrome/browser/ui/android/infobars/
infobar_android.h 47 // Tells the Java-side counterpart of this InfoBar to point to the replacement
49 void ReassignJavaInfoBar(InfoBarAndroid* replacement);
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTextAreaElement.idl 55 [RaisesException] void setRangeText(DOMString replacement);
56 [RaisesException] void setRangeText(DOMString replacement,
  /external/chromium_org/v8/test/preparser/
testcfg.py 71 def MkTest(replacement, expectation):
74 for key in replacement.keys():
75 testname = testname.replace("$" + key, replacement[key]);
76 testsource = testsource.replace("$" + key, replacement[key]);
  /ndk/sources/host-tools/sed-4.2.1/sed/
sed.h 114 struct replacement { struct
119 struct replacement *next;
124 struct replacement *replacement; member in struct:subst
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/asm/
alternative_32.h 21 u8 *replacement; member in struct:alt_instr
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/asm/
alternative_32.h 21 u8 *replacement; member in struct:alt_instr
  /prebuilts/ndk/6/platforms/android-9/arch-x86/usr/include/asm/
alternative_32.h 21 u8 *replacement; member in struct:alt_instr
  /prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/asm/
alternative_32.h 21 u8 *replacement; member in struct:alt_instr
  /prebuilts/ndk/7/platforms/android-9/arch-x86/usr/include/asm/
alternative_32.h 21 u8 *replacement; member in struct:alt_instr

Completed in 756 milliseconds

1 23 4 5 6 7 8 91011>>