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

1234567

/macosx-10.9.5/WebCore-7537.78.1/platform/text/
H A DTextCodec.cpp39 int TextCodec::getUnencodableReplacement(unsigned codePoint, UnencodableHandling handling, UnencodableReplacementArray replacement) argument
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;
H A DTextCodecUserDefined.cpp80 UnencodableReplacementArray replacement; local
81 int replacementLength = TextCodec::getUnencodableReplacement(c, handling, replacement);
84 memcpy(bytes + resultLength, replacement, replacementLength);
H A DRegularExpression.cpp164 void replace(String& string, const RegularExpression& target, const String& replacement) argument
172 string.replace(index, matchLength, replacement);
173 index += replacement.length();
/macosx-10.9.5/postfix-252/postfix/src/util/
H A Dprintable.c9 /* char *printable(buffer, replacement)
11 /* int replacement;
14 /* by the given replacement.
19 /* .IP replacement
42 char *printable(char *string, int replacement) argument
49 *cp = replacement;
H A Dneuter.c9 /* char *neuter(buffer, bad, replacement)
12 /* int replacement;
15 /* by the given replacement.
22 /* .IP replacement
47 char *neuter(char *string, const char *bad, int replacement) argument
54 *cp = replacement;
H A Dtranslit.c9 /* char *translit(buf, original, replacement)
12 /* char *replacement;
40 char *translit(char *string, const char *original, const char *replacement) argument
51 *cp = replacement[op - original];
/macosx-10.9.5/WebCore-7537.78.1/platform/mac/
H A DDynamicLinkerInterposing.h35 const void* replacement; \
/macosx-10.9.5/dyld-239.4/include/mach-o/
H A Ddyld-interposing.h44 __attribute__((used)) static struct{ const void* replacement; const void* replacee; } _interpose_##_replacee \
/macosx-10.9.5/objc4-551.1/runtime/
H A Dobjc-auto.h104 OBJC_EXPORT BOOL objc_atomicCompareAndSwapPtr(id predicate, id replacement, volatile id *objectLocation)
107 OBJC_EXPORT BOOL objc_atomicCompareAndSwapPtrBarrier(id predicate, id replacement, volatile id *objectLocation)
111 OBJC_EXPORT BOOL objc_atomicCompareAndSwapGlobal(id predicate, id replacement, volatile id *objectLocation)
113 OBJC_EXPORT BOOL objc_atomicCompareAndSwapGlobalBarrier(id predicate, id replacement, volatile id *objectLocation)
116 OBJC_EXPORT BOOL objc_atomicCompareAndSwapInstanceVariable(id predicate, id replacement, volatile id *objectLocation)
118 OBJC_EXPORT BOOL objc_atomicCompareAndSwapInstanceVariableBarrier(id predicate, id replacement, volatile id *objectLocation)
195 /* Deprecated. No replacement. Formerly told the collector to run using a dedicated background thread. */
225 static OBJC_INLINE BOOL objc_atomicCompareAndSwapPtr(id predicate, id replacement, volatile id *objectLocation) argument
226 { void *original = InterlockedCompareExchangePointer((void * volatile *)objectLocation, (void *)replacement, (void *)predicate); return (original == predicate); }
228 static OBJC_INLINE BOOL objc_atomicCompareAndSwapPtrBarrier(id predicate, id replacement, volatil argument
231 objc_atomicCompareAndSwapPtr(id predicate, id replacement, volatile id *objectLocation) argument
234 objc_atomicCompareAndSwapPtrBarrier(id predicate, id replacement, volatile id *objectLocation) argument
238 objc_atomicCompareAndSwapGlobal(id predicate, id replacement, volatile id *objectLocation) argument
241 objc_atomicCompareAndSwapGlobalBarrier(id predicate, id replacement, volatile id *objectLocation) argument
244 objc_atomicCompareAndSwapInstanceVariable(id predicate, id replacement, volatile id *objectLocation) argument
247 objc_atomicCompareAndSwapInstanceVariableBarrier(id predicate, id replacement, volatile id *objectLocation) argument
[all...]
/macosx-10.9.5/bind9-45.100/bind9/lib/dns/rdata/in_1/
H A Dnaptr_35.h37 dns_name_t replacement; member in struct:dns_rdata_in_naptr
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/sample/RubyRocks/English.lproj/Game.nib/
H A D_Game_EOArchive_English.java27 Object replacement;
33 if ((delegate != null) && ((replacement = delegate.objectForOutletPath(this, "window")) != null)) {
34 _eoFrame0 = (replacement == EOArchive._ObjectInstantiationDelegate.NullObject) ? null : (com.webobjects.eointerface.swing.EOFrame)replacement;
35 _replacedObjects.setObjectForKey(replacement, "_eoFrame0");
/macosx-10.9.5/ICU-511.35/icuSources/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);
/macosx-10.9.5/llvmCore-3425.0.33/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)
/macosx-10.9.5/ruby-104/ruby/lib/rake/ext/
H A Dstring.rb51 # Preform the pathmap replacement operations on the given path. The
56 pattern, replacement = pair.split(',')
58 if replacement == '*' && block_given?
60 elsif replacement
61 result = result.sub(pattern, replacement)
97 # pattern/replacement argument to perform simple string substitutions on a
98 # particular part of the path. The pattern and replacement are separated
99 # by a comma and are enclosed by curly braces. The replacement spec comes
101 # "%{old,new}d"). Multiple replacement specs should be separated by
105 # used in the replacement tex
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/java/src/com/sleepycat/persist/impl/
H A DVisitedObjects.java111 void replaceObject(Object existing, Object replacement) { argument
114 objects[i] = replacement;
/macosx-10.9.5/ruby-104/ruby/lib/rexml/
H A Dparent.rb139 # @param replacement the child to insert into the nodelist (must be a
141 def replace_child( to_replace, replacement )
142 @children.map! {|c| c.equal?( to_replace ) ? replacement : c }
144 replacement.parent = self
/macosx-10.9.5/WebCore-7537.78.1/html/
H A DHTMLTextAreaElement.idl54 [RaisesException] void setRangeText(DOMString replacement);
55 [RaisesException] void setRangeText(DOMString replacement,
H A DHTMLTextFormControlElement.h67 virtual void setRangeText(const String& replacement, ExceptionCode&);
68 virtual void setRangeText(const String& replacement, unsigned start, unsigned end, const String& selectionMode, ExceptionCode&);
/macosx-10.9.5/postfix-252/postfix/mantools/
H A Dccformat70 ) && echo replaced; } || { echo replacement FAILED; exit 1; }
/macosx-10.9.5/JavaScriptCore-7537.78.1/dfg/
H A DDFGCSEPhase.cpp981 bool setReplacement(Node* replacement) argument
983 if (!replacement)
987 dataLogF(" Replacing @%u -> @%u", m_currentNode->index(), replacement->index());
994 m_currentNode->replacement = replacement;
1147 Node* replacement = node->child1().node(); local
1148 if (replacement->op() != SetLocal)
1150 ASSERT(replacement->variableAccessData() == variableAccessData);
1170 if (replacement->canExit())
1174 setLocalStoreElimination(local, replacement);
1227 Node* replacement = pureCSE(node); local
1283 Node* replacement = getByValLoadElimination(child1.node(), child2.node()); local
[all...]
/macosx-10.9.5/CPANInternal-140/DBIx-Class-Schema-Loader/lib/DBIx/Class/Schema/Loader/DBI/
H A DSQLite.pm81 my $replacement = $extracted;
82 $replacement =~ s/,/--comma--/g;
83 $replacement =~ s/^\(//;
84 $replacement =~ s/\)$//;
85 $cols_no_bracketed_commas =~ s/$extracted/$replacement/m;
/macosx-10.9.5/CPANInternal-140/DBIx-Class-Schema-Loader-0.05003/lib/DBIx/Class/Schema/Loader/DBI/
H A DSQLite.pm81 my $replacement = $extracted;
82 $replacement =~ s/,/--comma--/g;
83 $replacement =~ s/^\(//;
84 $replacement =~ s/\)$//;
85 $cols_no_bracketed_commas =~ s/$extracted/$replacement/m;
/macosx-10.9.5/CF-855.17/
H A DCoreFoundation_Prefix.h474 CF_INLINE BOOL objc_atomicCompareAndSwapPtr(id predicate, id replacement, volatile id *objectLocation) argument
475 { return OSAtomicCompareAndSwapPtr((void *)predicate, (void *)replacement, (void * volatile *)objectLocation); }
477 CF_INLINE BOOL objc_atomicCompareAndSwapPtrBarrier(id predicate, id replacement, volatile id *objectLocation) argument
478 { return OSAtomicCompareAndSwapPtrBarrier((void *)predicate, (void *)replacement, (void * volatile *)objectLocation); }
480 CF_INLINE BOOL objc_atomicCompareAndSwapGlobal(id predicate, id replacement, volatile id *objectLocation) argument
481 { return OSAtomicCompareAndSwapPtr((void *)predicate, (void *)replacement, (void * volatile *)objectLocation); }
483 CF_INLINE BOOL objc_atomicCompareAndSwapGlobalBarrier(id predicate, id replacement, volatile id *objectLocation) argument
484 { return OSAtomicCompareAndSwapPtrBarrier((void *)predicate, (void *)replacement, (void * volatile *)objectLocation); }
486 CF_INLINE BOOL objc_atomicCompareAndSwapInstanceVariable(id predicate, id replacement, volatile id *objectLocation) argument
487 { return OSAtomicCompareAndSwapPtr((void *)predicate, (void *)replacement, (voi
489 objc_atomicCompareAndSwapInstanceVariableBarrier(id predicate, id replacement, volatile id *objectLocation) argument
[all...]
/macosx-10.9.5/CPANInternal-140/Net-DNS/lib/Net/DNS/RR/
H A DNAPTR.pm68 ($self->{"replacement"}) = Net::DNS::Packet::dn_expand($data, $offset);
89 $self->{"replacement"} = $6;
90 $self->{"replacement"} =~ s/\.+$//;
106 $self->{"replacement"} . '.';
132 $rdata .= $self->_name2wire ($self->{"replacement"});
186 =head2 replacement
188 print "replacement = ", $rr->replacement, "\n";
190 Returns the replacement field.
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/sample/RubyConsole/
H A Dconsole.rb233 textview, range, replacement)
235 replacement = replacement.to_s.gsub("\r","\n")
236 if replacement.length > 0 and replacement[-1].chr == "\n"
238 attString(replacement)
241 false # don't insert replacement text because we've already inserted it
243 true # caller should insert replacement text

Completed in 314 milliseconds

1234567