Searched defs:replacement (Results 1 - 25 of 120) sorted by relevance

12345

/external/antlr/antlr-3.4/runtime/Python/unittests/
H A Dtestbase.py14 def replacement(*args, **kwargs): function in function:broken.wrapper
21 replacement.__doc__ = test_method.__doc__
22 replacement.__name__ = 'XXX_' + test_method.__name__
23 replacement.todo = reason
24 return replacement
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
H A DTestUtility.java43 public static String replace(String source, String toBeReplaced, String replacement) { argument
48 results.append(replacement);
57 public static String replaceAll(String source, UnicodeSet set, String replacement) { argument
63 results.append(replacement);
/external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/processors/
H A DRenamePackage.java33 private final String replacement; field in class:RenamePackage
35 public RenamePackage(String toMatch, String replacement) { argument
37 this.replacement = replacement;
50 String newFqn = replacement + fqn.substring(toMatch.length());
60 ", replacement='" + replacement + '\'' +
/external/slf4j/slf4j-migrator/src/main/java/org/slf4j/migrator/line/
H A DMultiGroupConversionRule.java32 * each capturing group of this Pattern a replacement text
59 public void addReplacement(int groupIndex, String replacement) { argument
63 replacementTable[groupIndex] = replacement;
/external/v8/src/crankshaft/
H A Dhydrogen-redundant-phi.cc50 HValue* replacement = phi->GetRedundantReplacement(); local
51 if (replacement != NULL) {
55 value->SetOperandAt(it.index(), replacement);
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
H A DTestUtility.java40 public static String replace(String source, String toBeReplaced, String replacement) { argument
45 results.append(replacement);
54 public static String replaceAll(String source, UnicodeSet set, String replacement) { argument
60 results.append(replacement);
/external/slf4j/slf4j-migrator/src/main/java/org/slf4j/migrator/
H A DInplaceFileConverter.java95 String[] replacement = lineConverter.getReplacement(line);
96 writeReplacement(baos, replacement);
104 private void writeReplacement(OutputStream os, String[] replacement) throws IOException { argument
105 for (int i = 0; i < replacement.length; i++) {
106 os.write(replacement[i].getBytes());
/external/v8/src/compiler/
H A Dverifier.h42 // Verify that {replacement} has the required outputs
45 const Node* replacement);
49 const Node* replacement) {}
48 VerifyEdgeInputReplacement(const Edge& edge, const Node* replacement) argument
H A Dgraph-reducer.h30 explicit Reduction(Node* replacement = nullptr) : replacement_(replacement) {}
32 Node* replacement() const { return replacement_; } function in class:v8::internal::compiler::final
33 bool Changed() const { return replacement() != nullptr; }
73 // Replace {node} with {replacement}.
74 virtual void Replace(Node* node, Node* replacement) = 0;
91 void Replace(Node* node, Node* replacement) { argument
93 editor_->Replace(node, replacement);
151 // Replace {node} with {replacement}.
152 void Replace(Node* node, Node* replacement) fina
[all...]
H A Dvalue-numbering-reducer.cc163 Node* replacement) {
164 // Make sure the replacement has at least as good type as the original node.
165 if (NodeProperties::IsTyped(replacement) && NodeProperties::IsTyped(node)) {
166 Type* replacement_type = NodeProperties::GetType(replacement);
175 NodeProperties::SetType(replacement, node_type);
182 return Replace(replacement);
162 ReplaceIfTypesMatch(Node* node, Node* replacement) argument
/external/guava/guava/src/com/google/common/escape/
H A DEscapers.java69 * <li>There are no replacement mappings<li>
106 * range that have no explicit replacement are considered 'safe' and remain
121 * Sets the replacement string for any characters outside the 'safe' range
122 * that have no explicit replacement. If {@code unsafeReplacement} is
123 * {@code null} then no replacement will occur, if it is {@code ""} then
135 * Adds a replacement string for the given input character. The specified
141 * @param replacement the string to replace the given character
143 * @throws NullPointerException if {@code replacement} is null
145 public Builder addEscape(char c, String replacement) { argument
146 checkNotNull(replacement);
[all...]
/external/harfbuzz_ng/src/
H A Dhb-utf-private.hh41 hb_codepoint_t replacement)
45 * Generates one "replacement" for each ill-formed byte. */
102 *unicode = replacement;
110 hb_codepoint_t replacement)
116 if (likely (next (text, end, unicode, replacement) == end))
119 *unicode = replacement;
139 hb_codepoint_t replacement)
163 *unicode = replacement;
171 hb_codepoint_t replacement)
195 *unicode = replacement;
38 next(const uint8_t *text, const uint8_t *end, hb_codepoint_t *unicode, hb_codepoint_t replacement) argument
107 prev(const uint8_t *text, const uint8_t *start, hb_codepoint_t *unicode, hb_codepoint_t replacement) argument
136 next(const uint16_t *text, const uint16_t *end, hb_codepoint_t *unicode, hb_codepoint_t replacement) argument
168 prev(const uint16_t *text, const uint16_t *start, hb_codepoint_t *unicode, hb_codepoint_t replacement) argument
216 next(const uint32_t *text, const uint32_t *end HB_UNUSED, hb_codepoint_t *unicode, hb_codepoint_t replacement) argument
228 prev(const uint32_t *text, const uint32_t *start HB_UNUSED, hb_codepoint_t *unicode, hb_codepoint_t replacement) argument
264 prev(const uint8_t *text, const uint8_t *start HB_UNUSED, hb_codepoint_t *unicode, hb_codepoint_t replacement) argument
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DUnicodeSetSpanner.java18 * <p><b>Note:</b> The counting, deletion, and replacement depend on alternating a {@link SpanCondition} with
199 * Replace all matching spans in sequence by the replacement,
204 * @param replacement
205 * replacement sequence. To delete, use ""
208 public String replaceFrom(CharSequence sequence, CharSequence replacement) { argument
209 return replaceFrom(sequence, replacement, CountMethod.MIN_ELEMENTS, SpanCondition.SIMPLE);
213 * Replace all matching spans in sequence by replacement, according to the CountMethod, using SpanCondition.SIMPLE.
218 * @param replacement
219 * replacement sequence. To delete, use ""
224 public String replaceFrom(CharSequence sequence, CharSequence replacement, CountMetho argument
242 replaceFrom(CharSequence sequence, CharSequence replacement, CountMethod countMethod, SpanCondition spanCondition) argument
[all...]
/external/icu/icu4c/source/common/
H A Dlocresdata.cpp95 const char* replacement = NULL; local
100 replacement = uloc_getCurrentCountryID(itemKey);
102 replacement = uloc_getCurrentLanguageID(itemKey);
104 /*pointer comparison is ok since uloc_getCurrentCountryID & uloc_getCurrentLanguageID return the key itself is replacement is not found*/
105 if(replacement!=NULL && itemKey != replacement){
106 item = ures_getStringByKeyWithFallback(&table, replacement, pLength, &errorCode);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DUnicodeSetSpanner.java17 * <p><b>Note:</b> The counting, deletion, and replacement depend on alternating a {@link SpanCondition} with
224 * Replace all matching spans in sequence by the replacement,
229 * @param replacement
230 * replacement sequence. To delete, use ""
235 public String replaceFrom(CharSequence sequence, CharSequence replacement) { argument
236 return replaceFrom(sequence, replacement, CountMethod.MIN_ELEMENTS, SpanCondition.SIMPLE);
240 * Replace all matching spans in sequence by replacement, according to the CountMethod, using SpanCondition.SIMPLE.
245 * @param replacement
246 * replacement sequence. To delete, use ""
253 public String replaceFrom(CharSequence sequence, CharSequence replacement, CountMetho argument
273 replaceFrom(CharSequence sequence, CharSequence replacement, CountMethod countMethod, SpanCondition spanCondition) argument
[all...]
/external/syslinux/gpxe/src/core/
H A Dimage.c52 image_put ( image->replacement );
237 struct image *replacement; local
271 /* Pick up replacement image before we drop the original
274 replacement = image->replacement;
283 /* Tail-recurse into replacement image, if one exists */
284 if ( replacement ) {
286 image, replacement );
287 if ( ( rc = image_exec ( replacement ) ) != 0 )
/external/antlr/antlr-3.4/runtime/Python/tests/
H A Dtestbase.py46 def replacement(*args, **kwargs): function in function:broken.wrapper
53 replacement.__doc__ = test_method.__doc__
54 replacement.__name__ = 'XXX_' + test_method.__name__
55 replacement.todo = reason
56 return replacement
/external/clang/lib/AST/
H A DTemplateName.cpp36 TemplateName replacement) {
38 ID.AddPointer(replacement.getAsVoidPointer());
34 Profile(llvm::FoldingSetNodeID &ID, TemplateTemplateParmDecl *parameter, TemplateName replacement) argument
/external/compiler-rt/lib/interception/
H A Dinterception.h79 // our replacement functions invisible to other libraries. This may be overcomed
95 const uptr replacement; member in struct:interpose_substitution
/external/syslinux/gpxe/src/include/gpxe/
H A Dimage.h56 * exec() method with the replacement image set to point to
61 * executed, it must make sure that its replacement image (if
62 * any) is registered, otherwise the replacement is likely to
65 struct image *replacement; member in struct:image
/external/ImageMagick/coders/
H A Dpcl.c497 replacement;
530 replacement=j >= 31 ? 31 : j;
531 j-=replacement;
533 *q++=(unsigned char) (((delta-1) << 5) | replacement);
534 if (replacement == 31)
536 for (replacement=255; j != 0; )
538 if (replacement > j)
539 replacement=j;
540 *q++=(unsigned char) replacement;
541 j-=replacement;
490 replacement; local
[all...]
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/lexicalpreservation/
H A DDifference.java251 private static boolean replacement(CsmElement a, CsmElement b) { method in class:Difference
371 } else if (replacement(nextOriginal, nextAfter)) {
/external/mesa3d/src/compiler/nir/
H A Dnir_lower_io.c424 nir_intrinsic_instr *replacement; local
428 replacement = lower_load(intrin, state, vertex_index, offset,
433 replacement = lower_store(intrin, state, vertex_index, offset,
448 replacement = lower_atomic(intrin, state, offset);
455 replacement = lower_interpolate_at(intrin, state, offset,
465 nir_ssa_dest_init(&replacement->instr, &replacement->dest,
469 nir_src_for_ssa(&replacement->dest.ssa));
471 nir_dest_copy(&replacement->dest, &intrin->dest, &intrin->instr);
475 nir_instr_insert_before(&intrin->instr, &replacement
[all...]
/external/skia/src/utils/
H A DSkParseColor.cpp183 int replacement = 0; local
198 replacement += sizeof(int);
213 replacement += sizeof(int);
218 SkDebugf("// original = %d : replacement = %d\n", originalSize, replacement);
366 }; // original = 2505 : replacement = 1616
/external/skqp/src/utils/
H A DSkParseColor.cpp183 int replacement = 0; local
198 replacement += sizeof(int);
213 replacement += sizeof(int);
218 SkDebugf("// original = %d : replacement = %d\n", originalSize, replacement);
366 }; // original = 2505 : replacement = 1616

Completed in 3168 milliseconds

12345