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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/wtf/text/
TextCodec.cpp 39 int TextCodec::getUnencodableReplacement(unsigned codePoint, UnencodableHandling handling, UnencodableReplacementArray replacement)
43 replacement[0] = '?';
44 replacement[1] = 0;
47 snprintf(replacement, sizeof(UnencodableReplacementArray), "&#%u;", codePoint);
48 return static_cast<int>(strlen(replacement));
50 snprintf(replacement, sizeof(UnencodableReplacementArray), "%%26%%23%u%%3B", codePoint);
51 return static_cast<int>(strlen(replacement));
54 replacement[0] = 0;
  /external/chromium_org/third_party/WebKit/Source/web/
WebTextCheckingResult.cpp 46 result.replacement = replacement;
52 detail.userDescription = replacement;
  /external/chromium_org/third_party/WebKit/public/web/
WebTextCheckingResult.h 54 WebTextCheckingResult(WebTextCheckingType type, int location, int length, const WebString& replacement = WebString(), uint32_t hash = 0)
58 , replacement(replacement)
70 WebString replacement; member in struct:WebKit::WebTextCheckingResult
  /libcore/harmony-tests/src/test/java/tests/api/java/nio/charset/
ASCCharsetTest.java 43 this.testingCharset.newEncoder().replacement()[0],
44 this.testingCharset.newEncoder().replacement()[0] };
ISOCharsetTest.java 42 this.testingCharset.newEncoder().replacement()[0],
43 this.testingCharset.newEncoder().replacement()[0] };
  /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.
29 : type(t), location(loc), length(len), replacement(rep), hash(h) {
35 string16 replacement; member in struct:SpellCheckResult
thumbnail_score.cc 86 const ThumbnailScore& replacement) {
88 int replacement_type = GetThumbnailType(replacement);
92 return replacement.boring_score <
100 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/smack/src/org/xbill/DNS/
NAPTRRecord.java 20 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 domain-name *
    [all...]
  /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/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/chrome/common/
thumbnail_score.cc 87 const ThumbnailScore& replacement) {
89 int replacement_type = GetThumbnailType(replacement.good_clipping,
90 replacement.at_top);
94 return replacement.boring_score <
102 double replacement_interesting_score = 1.0 - replacement.boring_score;
110 1.0 / (replacement.redirect_hops_from_dest + 1);
116 replacement.time_at_snapshot - current.time_at_snapshot;
127 // requirements, but the replacement does, always replace the
130 replacement.boring_score < ThumbnailScore::kThumbnailMaximumBoringness;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
compatibility.h 227 * *ptr=replacement and return @c true, return @c false otherwise.
232 * @param replacement Replacement value.
235 compare_and_swap_32(volatile int32* ptr, int32 comparand, int32 replacement)
238 return _InterlockedCompareExchange((void*)ptr, replacement,
241 return _InterlockedCompareExchange((void*)ptr, replacement,
245 replacement, comparand) == comparand;
247 return __sync_bool_compare_and_swap(ptr, comparand, replacement);
250 replacement) == comparand;
258 *ptr = replacement;
    [all...]
  /external/chromium_org/chrome/browser/policy/
policy_error_map.cc 23 const std::string& replacement)
29 replacement(replacement) {}
46 std::string replacement; member in struct:policy::PolicyErrorMap::PendingError
77 const std::string& replacement) {
78 AddError(PendingError(policy, std::string(), -1, message_id, replacement));
84 const std::string& replacement) {
85 AddError(PendingError(policy, subkey, -1, message_id, replacement));
91 const std::string& replacement) {
92 AddError(PendingError(policy, std::string(), index, message_id, replacement));
    [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/chrome/browser/chromeos/input_method/
xkeyboard.h 35 : original(in_original), replacement(in_replacement) {}
38 return (rhs.original == original) && (rhs.replacement == replacement);
41 ModifierKey replacement; // this key. member in struct:chromeos::input_method::ModifierKeyPair
100 // Returns true if |key| is in |modifier_map| as replacement.
  /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...]
  /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...]
  /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/icu4c/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/chrome/common/extensions/docs/server2/
test_util.py 21 def _ReplaceLogging(name, replacement):
25 setattr(logging, name, replacement)
  /external/chromium_org/third_party/mach_override/
mach_override.h 102 (void*)mach_override_class__##ORIGINAL_FUNCTION_NAME::replacement, \
107 static ORIGINAL_FUNCTION_RETURN_TYPE replacement ORIGINAL_FUNCTION_ARGS {
  /external/chromium_org/v8/src/
hydrogen-redundant-phi.cc 48 HValue* replacement = phi->GetRedundantReplacement(); local
49 if (replacement != NULL) {
54 value->SetOperandAt(it.index(), replacement);

Completed in 989 milliseconds

1 2 3 4 5 6 7 8 91011>>