HomeSort by relevance Sort by last modified time
    Searched full:replacement (Results 26 - 50 of 2383) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/v8/src/
hydrogen-escape-analysis.h 55 // Number of captured objects on which scalar replacement was done.
58 // Number of scalar values tracked during scalar replacement phase.
63 // scalar replacement phase.
hydrogen-redundant-phi.cc 49 HValue* replacement = phi->GetRedundantReplacement(); local
50 if (replacement != NULL) {
54 value->SetOperandAt(it.index(), replacement);
  /external/clang/unittests/Tooling/
ReplacementsYamlTest.cpp 27 .push_back(Replacement("/path/to/file1.h", 232, 56, "replacement #1"));
29 .push_back(Replacement("/path/to/file2.h", 301, 2, "replacement #2"));
45 " ReplacementText: 'replacement #1'\n"
49 " ReplacementText: 'replacement #2'\n"
62 " ReplacementText: 'replacement #1'\n"
66 " ReplacementText: 'replacement #2'\n"
78 ASSERT_EQ("replacement #1", DocActual.Replacements[0].getReplacementText());
82 ASSERT_EQ("replacement #2", DocActual.Replacements[1].getReplacementText())
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/m4/
regex.m4 178 [Define to rpl_re_syntax_options if the replacement should be used.])
180 [Define to rpl_re_set_syntax if the replacement should be used.])
182 [Define to rpl_re_compile_pattern if the replacement should be used.])
184 [Define to rpl_re_compile_fastmap if the replacement should be used.])
186 [Define to rpl_re_search if the replacement should be used.])
188 [Define to rpl_re_search_2 if the replacement should be used.])
190 [Define to rpl_re_match if the replacement should be used.])
192 [Define to rpl_re_match_2 if the replacement should be used.])
194 [Define to rpl_re_set_registers if the replacement should be used.])
196 [Define to rpl_re_comp if the replacement should be used.]
    [all...]
  /libcore/luni/src/main/java/java/nio/charset/
CharsetEncoder.java 59 * the problematic input with the byte sequence returned by {@link #replacement}. The disposition
63 * <p>The default replacement bytes depend on the charset but can be overridden using the
96 // decoder instance for this encoder's charset, used for replacement value checking
101 * the replacement byte array {@code { (byte) '?' }}.
109 * <code>Charset</code>, replacement byte array, average number and
120 * @param replacement
121 * the replacement byte array, cannot be null or empty, its
123 * and must be a legal replacement, which can be justified by
128 protected CharsetEncoder(Charset cs, float averageBytesPerChar, float maxBytesPerChar, byte[] replacement) {
129 this(cs, averageBytesPerChar, maxBytesPerChar, replacement, false)
608 public final byte[] replacement() { method in class:CharsetEncoder
    [all...]
  /external/chromium_org/v8/test/preparser/
duplicate-property.pyt 35 replacement = {"id1": propa, "id2": propb, "name": name}
38 def StrictTest(name, source, replacement, expectation):
41 "\"use strict\";\n" + source)(replacement, expectation)
42 Template(name, source)(replacement, expectation)
49 """)(replacement, "strict_duplicate_property")
53 """)(replacement, None)
57 """, replacement, "accessor_data_property")
61 """, replacement, "accessor_data_property")
65 """, replacement, "accessor_data_property")
69 """, replacement, "accessor_data_property"
    [all...]
  /external/chromium_org/third_party/bintrees/bintrees/
bintree.py 129 replacement = node.right
130 while replacement.left is not None:
131 parent = replacement
133 replacement = replacement.left
134 parent[direction] = replacement.right
136 node.key = replacement.key
137 node.value = replacement.value
138 node = replacement # delete replacement!
    [all...]
  /frameworks/base/core/java/android/text/method/
ReplacementTransformationMethod.java 42 * Returns a parallel array of replacement characters for the ones
54 char[] replacement = getReplacement(); local
85 original, replacement));
89 replacement).toString();
96 original, replacement);
98 return new ReplacementCharSequence(source, original, replacement);
113 char[] replacement) {
116 mReplacement = replacement;
174 char[] replacement) {
175 super(source, original, replacement);
    [all...]
HideReturnsTransformationMethod.java 27 private static char[] REPLACEMENT = new char[] { '\uFEFF' };
40 return REPLACEMENT;
SingleLineTransformationMethod.java 27 private static char[] REPLACEMENT = new char[] { ' ', '\uFEFF' };
41 return REPLACEMENT;
  /external/apache-xml/src/main/java/org/apache/xpath/res/
XPATHMessages.java 41 * Creates a message from the specified key and replacement
45 * @param args The arguments to be used as replacement text
59 * Creates a message from the specified key and replacement
63 * @param args The arguments to be used as replacement text
77 * Creates a message from the specified key and replacement
82 * @param args The arguments to be used as replacement text
  /external/chromium_org/third_party/WebKit/Source/web/
WebTextCheckingResult.cpp 46 result.replacement = replacement;
52 detail.userDescription = replacement;
  /external/chromium_org/ui/keyboard/resources/elements/
kb-key-sequence.js 20 var replacement = document.createDocumentFragment();
53 replacement.appendChild(key);
56 return replacement;
  /ndk/sources/android/support/src/stdio/
stdio_impl.h 34 // Replacement for out() in vfprintf.c
37 // Replacement for out() in fvwprintf.c
40 // Fake replacement for stdio functions of similar names.
  /external/apache-xml/src/main/java/org/apache/xalan/res/
XSLMessages.java 39 * Creates a message from the specified key and replacement
43 * @param args The arguments to be used as replacement text
57 * Creates a message from the specified key and replacement
61 * @param args The arguments to be used as replacement text
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/generators/rss/
RSSFeedUpdateEntryTask.java 51 * replacement - string to use as replacement
72 private String replacement; field in class:RSSFeedUpdateEntryTask
98 public void setReplacement(String replacement) { this.replacement = replacement; }
103 System.out.println(Messages.getString("RSSFeedUpdateEntryTask.SearchingFor") + SP + xpath + (!isNullString(replacement)?", " + Messages.getString("RSSFeedUpdateEntryTask.ReplacingWith") + " '" + replacement + "'":NS)); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$ //$NON-NLS-6$ //$NON-NLS-7$
137 if (!isNullString(replacement)) {
151 if (!isNullString(replacement) && newNode != null)
246 System.out.println(isNullString(replacement)?NS:" => " + replacement); \/\/$NON-NLS-1$ \/\/$NON-NLS-2\$ local
    [all...]
  /external/valgrind/main/tests/
malloc.h 0 // Replacement for malloc.h which factors out platform differences.
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
CDATASectionImpl.java 79 * @return the replacement node.
82 TextImpl replacement = new TextImpl(document, getData()); local
83 parent.insertBefore(replacement, this);
85 return replacement;
  /external/chromium_org/components/history/core/common/
thumbnail_score.cc 87 const ThumbnailScore& replacement) {
89 int replacement_type = GetThumbnailType(replacement);
93 return replacement.boring_score <
101 double replacement_interesting_score = 1.0 - replacement.boring_score;
108 1.0 / (replacement.redirect_hops_from_dest + 1);
114 replacement.time_at_snapshot - current.time_at_snapshot;
125 // requirements, but the replacement does, always replace the
128 replacement.boring_score < ThumbnailScore::kThumbnailMaximumBoringness;
  /external/chromium_org/v8/test/mjsunit/regress/
regress-317.js 28 // Ensure replacement with string allows $ in replacement string.
  /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);
  /external/chromium_org/third_party/icu/source/common/
locresdata.cpp 93 const char* replacement = NULL; local
98 replacement = uloc_getCurrentCountryID(itemKey);
100 replacement = uloc_getCurrentLanguageID(itemKey);
102 /*pointer comparison is ok since uloc_getCurrentCountryID & uloc_getCurrentLanguageID return the key itself is replacement is not found*/
103 if(replacement!=NULL && itemKey != replacement){
104 item = ures_getStringByKeyWithFallback(&table, replacement, pLength, &errorCode);
  /external/icu/icu4c/source/common/
locresdata.cpp 93 const char* replacement = NULL; local
98 replacement = uloc_getCurrentCountryID(itemKey);
100 replacement = uloc_getCurrentLanguageID(itemKey);
102 /*pointer comparison is ok since uloc_getCurrentCountryID & uloc_getCurrentLanguageID return the key itself is replacement is not found*/
103 if(replacement!=NULL && itemKey != replacement){
104 item = ures_getStringByKeyWithFallback(&table, replacement, pLength, &errorCode);
  /external/chromium_org/net/dns/
mock_host_resolver.h 47 // Replacement doesn't have to be string representing an IP address. It can
162 // a replacement host string. It then uses the system host resolver to return
163 // a socket address. Generally the replacement should be an IPv4 literal so
170 // replacement value. Usually, replacement should be an IP address literal.
172 const std::string& replacement);
177 const std::string& replacement);
179 // Same as AddRule(), but the replacement is expected to be an IPv4 or IPv6
191 const std::string& replacement,

Completed in 591 milliseconds

12 3 4 5 6 7 8 91011>>