HomeSort by relevance Sort by last modified time
    Searched refs:replacement (Results 1 - 25 of 246) sorted by null

1 2 3 4 5 6 7 8 910

  /external/chromium_org/third_party/WebKit/Source/wtf/text/
TextCodec.cpp 38 int TextCodec::getUnencodableReplacement(unsigned codePoint, UnencodableHandling handling, UnencodableReplacementArray replacement)
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/chromium_org/third_party/WebKit/public/web/
WebTextCheckingResult.h 52 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/v8/src/compiler/
phi-reducer.h 25 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);
graph-reducer.cc 36 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...]
graph-reducer.h 22 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; }
simplified-operator-reducer-unittest.cc 185 EXPECT_EQ(param0, reduction.replacement());
193 EXPECT_THAT(reduction0.replacement(), IsTrueConstant());
201 EXPECT_THAT(reduction1.replacement(), IsFalseConstant());
215 EXPECT_EQ(param0, reduction.replacement());
223 EXPECT_THAT(reduction.replacement(), IsFalseConstant());
231 EXPECT_THAT(reduction.replacement(), IsTrueConstant());
243 EXPECT_THAT(reduction.replacement(), IsInt32Constant(0));
251 EXPECT_THAT(reduction.replacement(), IsInt32Constant(1));
261 EXPECT_EQ(param0, reduction.replacement());
274 EXPECT_THAT(reduction.replacement(), IsNumberConstant(n))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebTextCheckingResult.cpp 44 result.replacement = replacement;
50 detail.userDescription = replacement;
  /external/antlr/antlr-3.4/runtime/Python/unittests/
testbase.py 14 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/chrome/common/
spellcheck_result.h 12 // 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/
UnfoldShortCircuitAST.h 17 // be replaced, and creates the corresponding replacement nodes. However,
37 replacement(_replacement) {}
41 TIntermNode *replacement; member in struct:UnfoldShortCircuitAST::NodeUpdateEntry
UnfoldShortCircuitAST.cpp 38 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/chromium_org/third_party/harfbuzz-ng/src/
hb-utf-private.hh 44 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) == end)
    [all...]
  /external/harfbuzz_ng/src/
hb-utf-private.hh 44 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) == end)
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/windows/
auto_testing_hook.h 137 T replacement,
139 return AutoTestingHookImpl<T>::MakeTestingHook(target, replacement, do_it);
143 inline AutoTestingHookImpl<T> MakeTestingHook(T target, T replacement) {
144 return AutoTestingHookImpl<T>::MakeTestingHook(target, replacement, true);
148 inline AutoTestingHookImpl<T>* MakeTestingHookHolder(T target, T replacement) {
149 return AutoTestingHookImpl<T>::MakeTestingHookHolder(target, replacement,
  /external/chromium_org/third_party/tcmalloc/vendor/src/windows/
auto_testing_hook.h 137 T replacement,
139 return AutoTestingHookImpl<T>::MakeTestingHook(target, replacement, do_it);
143 inline AutoTestingHookImpl<T> MakeTestingHook(T target, T replacement) {
144 return AutoTestingHookImpl<T>::MakeTestingHook(target, replacement, true);
148 inline AutoTestingHookImpl<T>* MakeTestingHookHolder(T target, T replacement) {
149 return AutoTestingHookImpl<T>::MakeTestingHookHolder(target, 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/tools/git/
mffr.py 6 """Usage: mffr.py [-d] [-g *.h] [-g *.cc] REGEXP REPLACEMENT
16 REGEXP uses full Python regexp syntax. REPLACEMENT can use
32 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)
78 (1) %prog <options> REGEXP REPLACEMENT
79 REGEXP uses full Python regexp syntax. REPLACEMENT can use back-references
    [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...]
  /external/chromium_org/components/policy/core/browser/
policy_error_map.cc 40 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));
    [all...]
  /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/third_party/mach_override/
mach_override.h 61 (void*)mach_override_class__##ORIGINAL_FUNCTION_NAME::replacement, \
66 static ORIGINAL_FUNCTION_RETURN_TYPE replacement ORIGINAL_FUNCTION_ARGS {
  /external/lldb/include/lldb/Target/
PathMappingList.h 47 Append (const ConstString &path, const ConstString &replacement, bool notify);
76 const ConstString &replacement,
88 const ConstString &replacement,
93 const ConstString &replacement,
  /external/chromium_org/chrome/browser/ui/android/infobars/
infobar_android.cc 26 void InfoBarAndroid::ReassignJavaInfoBar(InfoBarAndroid* replacement) {
27 DCHECK(replacement);
29 replacement->set_java_infobar(java_info_bar_);
  /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...]

Completed in 654 milliseconds

1 2 3 4 5 6 7 8 910