Searched refs:replacement (Results 1 - 25 of 241) sorted by relevance

12345678910

/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DTextCodec.cpp38 int TextCodec::getUnencodableReplacement(unsigned codePoint, UnencodableHandling handling, UnencodableReplacementArray replacement) argument
42 replacement[0] = '?';
43 replacement[1] = 0;
46 snprintf(replacement, sizeof(UnencodableReplacementArray), "&#%u;", codePoint);
47 return static_cast<int>(strlen(replacement));
49 snprintf(replacement, sizeof(UnencodableReplacementArray), "%%26%%23%u%%3B", codePoint);
50 return static_cast<int>(strlen(replacement));
53 replacement[0] = 0;
/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/chromium_org/v8/src/compiler/
H A Dphi-reducer.h25 Node* replacement = NULL;
29 if (input != node && input != replacement) {
30 if (replacement != NULL) return NoChange();
31 replacement = input;
34 DCHECK_NE(node, replacement);
35 return Replace(replacement);
H A Dgraph-reducer.cc36 Node* replacement = reduction.replacement(); local
37 if (replacement == NULL) {
39 } else if (replacement == node) {
40 // {replacement == node} represents an in-place reduction.
47 if (node == graph_->start()) graph_->SetStart(replacement);
48 if (node == graph_->end()) graph_->SetEnd(replacement);
50 // {replacement} was already reduced and finish.
51 if (replacement->id() < before) {
52 node->ReplaceUses(replacement);
[all...]
H A Dgraph-reducer.h22 explicit Reduction(Node* replacement = NULL) : replacement_(replacement) {}
24 Node* replacement() const { return replacement_; } function in class:v8::internal::compiler::FINAL
25 bool Changed() const { return replacement() != NULL; }
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebTextCheckingResult.cpp44 result.replacement = replacement;
50 detail.userDescription = replacement;
/external/chromium_org/third_party/WebKit/public/web/
H A DWebTextCheckingResult.h52 WebTextCheckingResult(WebTextDecorationType decoration, int location, int length, const WebString& replacement = WebString(), uint32_t hash = 0)
56 , replacement(replacement)
68 WebString replacement; member in struct:blink::WebTextCheckingResult
/external/chromium_org/chrome/common/
H A Dspellcheck_result.h12 // possible replacement of the misspelling if it is available.
33 : decoration(d), location(loc), length(len), replacement(rep), hash(h) {
39 base::string16 replacement; member in struct:SpellCheckResult
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DUnfoldShortCircuitAST.h17 // be replaced, and creates the corresponding replacement nodes. However,
37 replacement(_replacement) {}
41 TIntermNode *replacement; member in struct:UnfoldShortCircuitAST::NodeUpdateEntry
H A DUnfoldShortCircuitAST.cpp38 TIntermSelection *replacement = NULL; local
43 replacement = UnfoldOR(node->getLeft(), node->getRight());
46 replacement = UnfoldAND(node->getLeft(), node->getRight());
51 if (replacement)
54 NodeUpdateEntry(getParentNode(), node, replacement));
66 entry.original, entry.replacement);
72 // node; instead, we update the replacement node.
77 entry2.parent = entry.replacement;
/external/smack/src/org/xbill/DNS/
H A DNAPTRRecord.java20 private Name replacement; field in class:NAPTRRecord
38 * @param replacement The domain-name to query for the next DNS resource
44 String flags, String service, String regexp, Name replacement)
57 this.replacement = checkName("replacement", replacement);
67 replacement = new Name(in);
82 replacement = st.getName(origin);
99 sb.append(replacement);
133 /** Returns the replacement domai
43 NAPTRRecord(Name name, int dclass, long ttl, int order, int preference, String flags, String service, String regexp, Name replacement) argument
[all...]
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-utf-private.hh44 hb_codepoint_t replacement)
48 * Generates one "replacement" for each ill-formed byte. */
105 *unicode = replacement;
113 hb_codepoint_t replacement)
119 if (likely (next (text, end, unicode, replacement) == end))
122 *unicode = replacement;
143 hb_codepoint_t replacement)
167 *unicode = replacement;
175 hb_codepoint_t replacement)
189 if (likely (next (text, end, unicode, replacement)
41 next(const uint8_t *text, const uint8_t *end, hb_codepoint_t *unicode, hb_codepoint_t replacement) argument
110 prev(const uint8_t *text, const uint8_t *start, hb_codepoint_t *unicode, hb_codepoint_t replacement) argument
140 next(const uint16_t *text, const uint16_t *end, hb_codepoint_t *unicode, hb_codepoint_t replacement) argument
172 prev(const uint16_t *text, const uint16_t *start, hb_codepoint_t *unicode, hb_codepoint_t replacement) argument
213 next(const uint32_t *text, const uint32_t *end HB_UNUSED, hb_codepoint_t *unicode, hb_codepoint_t replacement) argument
230 prev(const uint32_t *text, const uint32_t *start HB_UNUSED, hb_codepoint_t *unicode, hb_codepoint_t replacement) argument
[all...]
/external/harfbuzz_ng/src/
H A Dhb-utf-private.hh44 hb_codepoint_t replacement)
48 * Generates one "replacement" for each ill-formed byte. */
105 *unicode = replacement;
113 hb_codepoint_t replacement)
119 if (likely (next (text, end, unicode, replacement) == end))
122 *unicode = replacement;
143 hb_codepoint_t replacement)
167 *unicode = replacement;
175 hb_codepoint_t replacement)
189 if (likely (next (text, end, unicode, replacement)
41 next(const uint8_t *text, const uint8_t *end, hb_codepoint_t *unicode, hb_codepoint_t replacement) argument
110 prev(const uint8_t *text, const uint8_t *start, hb_codepoint_t *unicode, hb_codepoint_t replacement) argument
140 next(const uint16_t *text, const uint16_t *end, hb_codepoint_t *unicode, hb_codepoint_t replacement) argument
172 prev(const uint16_t *text, const uint16_t *start, hb_codepoint_t *unicode, hb_codepoint_t replacement) argument
213 next(const uint32_t *text, const uint32_t *end HB_UNUSED, hb_codepoint_t *unicode, hb_codepoint_t replacement) argument
230 prev(const uint32_t *text, const uint32_t *start HB_UNUSED, hb_codepoint_t *unicode, hb_codepoint_t replacement) argument
[all...]
/external/chromium_org/third_party/bintrees/bintrees/
H A Dbintree.py129 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...]
/external/chromium_org/third_party/tcmalloc/chromium/src/windows/
H A Dauto_testing_hook.h137 T replacement,
139 return AutoTestingHookImpl<T>::MakeTestingHook(target, replacement, do_it);
143 inline AutoTestingHookImpl<T> MakeTestingHook(T target, T replacement) { argument
144 return AutoTestingHookImpl<T>::MakeTestingHook(target, replacement, true);
148 inline AutoTestingHookImpl<T>* MakeTestingHookHolder(T target, T replacement) { argument
149 return AutoTestingHookImpl<T>::MakeTestingHookHolder(target, replacement,
136 MakeTestingHook(T target, T replacement, bool do_it) argument
/external/chromium_org/third_party/tcmalloc/vendor/src/windows/
H A Dauto_testing_hook.h137 T replacement,
139 return AutoTestingHookImpl<T>::MakeTestingHook(target, replacement, do_it);
143 inline AutoTestingHookImpl<T> MakeTestingHook(T target, T replacement) { argument
144 return AutoTestingHookImpl<T>::MakeTestingHook(target, replacement, true);
148 inline AutoTestingHookImpl<T>* MakeTestingHookHolder(T target, T replacement) { argument
149 return AutoTestingHookImpl<T>::MakeTestingHookHolder(target, replacement,
136 MakeTestingHook(T target, T replacement, bool do_it) argument
/external/chromium_org/components/history/core/common/
H A Dthumbnail_score.cc87 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;
86 ShouldReplaceThumbnailWith(const ThumbnailScore& current, const ThumbnailScore& replacement) argument
/external/chromium_org/tools/git/
H A Dmffr.py32 def MultiFileFindReplace(original, replacement, file_globs):
35 Given an |original| string and a |replacement| string, find matching
40 |replacement|. |replacement| may use capture group back-references.
44 replacement: '\1chrome/browser/ui/browser/browser.h\3'
66 contents = re.sub(original, replacement, original_contents)
150 replacement = args[1]
151 search_replace_tasks.append([original, replacement, global_file_globs])
160 for (original, replacement, file_globs) in search_replace_tasks:
163 print 'Replacement: %s' % replacement
[all...]
/external/chromium_org/components/policy/core/browser/
H A Dpolicy_error_map.cc40 const std::string& replacement)
43 replacement_(replacement) {}
68 const std::string& replacement)
69 : SimplePendingError(policy_name, message_id, replacement),
90 const std::string& replacement)
91 : SimplePendingError(policy_name, message_id, replacement),
111 const std::string& replacement)
112 : SimplePendingError(policy_name, -1, replacement),
159 const std::string& replacement) {
160 AddError(new SimplePendingError(policy, message_id, replacement));
38 SimplePendingError(const std::string& policy_name, int message_id, const std::string& replacement) argument
65 DictSubkeyPendingError(const std::string& policy_name, const std::string& subkey, int message_id, const std::string& replacement) argument
87 ListItemPendingError(const std::string& policy_name, int index, int message_id, const std::string& replacement) argument
109 SchemaValidatingPendingError(const std::string& policy_name, const std::string& error_path, const std::string& replacement) argument
157 AddError(const std::string& policy, int message_id, const std::string& replacement) argument
163 AddError(const std::string& policy, const std::string& subkey, int message_id, const std::string& replacement) argument
170 AddError(const std::string& policy, int index, int message_id, const std::string& replacement) argument
[all...]
/external/chromium_org/third_party/icu/source/common/
H A Dlocresdata.cpp93 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/
H A Dlocresdata.cpp93 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/third_party/mach_override/
H A Dmach_override.h61 (void*)mach_override_class__##ORIGINAL_FUNCTION_NAME::replacement, \
66 static ORIGINAL_FUNCTION_RETURN_TYPE replacement ORIGINAL_FUNCTION_ARGS {
/external/doclava/res/assets/templates/
H A Dcomponents.cs2 <?cs # Use the -tempatedir arg to javadoc to set your own directory with a replacement for this file in it. ?>
/external/llvm/utils/llvm-build/llvmbuild/
H A Dconfigutil.py16 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)
/external/lldb/include/lldb/Target/
H A DPathMappingList.h47 Append (const ConstString &path, const ConstString &replacement, bool notify);
76 const ConstString &replacement,
88 const ConstString &replacement,
93 const ConstString &replacement,

Completed in 991 milliseconds

12345678910