Searched defs:replace (Results 1 - 25 of 126) sorted by relevance

123456

/external/webkit/Source/WebCore/inspector/
H A Dinline-javascript-imports.py56 def replace(match): function in function:main
68 outputScript = re.sub(r'importScripts\([\'"]([^\'"]+)[\'"]\)', replace, inputScript)
/external/icu4c/common/unicode/
H A Durep.h100 * @param text the new text to replace the UChars from
106 void (*replace)(UReplaceable* rep, member in struct:UReplaceableCallbacks
/external/webkit/Source/WebKit/chromium/scripts/
H A Dinline_js_imports.py57 def replace(match): function in function:main
69 output_script = re.sub(r'importScripts\([\'"]([^\'"]+)[\'"]\)', replace, input_script)
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DUtils.java53 a string to replace, replacee,
54 and a string to replace with, replacer,
61 public static String replace(String src, String replacee, String replacer) { method in class:Utils
/external/guava/guava/src/com/google/common/collect/
H A DForwardingConcurrentMap.java52 public V replace(K key, V value) { method in class:ForwardingConcurrentMap
53 return delegate().replace(key, value);
57 public boolean replace(K key, V oldValue, V newValue) { method in class:ForwardingConcurrentMap
58 return delegate().replace(key, oldValue, newValue);
/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
H A DConcurrentMap.java32 V replace(K key, V value); method in interface:ConcurrentMap
34 boolean replace(K key, V oldValue, V newValue); method in interface:ConcurrentMap
H A DConcurrentHashMap.java73 public boolean replace(K key, V oldValue, V newValue) { method in class:ConcurrentHashMap
84 public V replace(K key, V value) { method in class:ConcurrentHashMap
/external/oprofile/libregex/
H A Dop_regex.h5 * and replace facility.
35 * lightweight encapsulation of regex lib search and replace
42 * @param limit limit on number of search and replace done
47 * & replace, preparing it for substitution ala sed
55 * @param replace the string to subsitute in other regular definition
60 std::string const & replace);
63 * @param replace the replace string to use when this regular
66 * You can imbed regular definition in pattern but not in replace.
69 std::string const & replace);
89 std::string replace; member in struct:regular_expression_replace::replace_t
[all...]
/external/smali/util/src/main/java/ds/tree/
H A DRadixTree.java73 * Find an existing entry and replace it's value. If no existing entry, do nothing
79 public boolean replace(String key, final T value); method in interface:RadixTree
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DStringExtensions.cs96 public static string replace( string str, char oldValue, char newValue ) method in class:Antlr.Runtime.JavaExtensions.StringExtensions
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DStringExtensions.cs97 public static string replace(this string str, char oldValue, char newValue) method in class:Antlr.Runtime.JavaExtensions.StringExtensions
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
H A Drewrite.rb129 @operation_name = 'replace'.freeze
180 def replace( *range_arguments ) method in class:ANTLR3.RewriteProgram
260 @operations.replace( reduced )
408 def replace( *args ) method
409 @programs[ 'default' ].replace( *args )
/external/clang/include/clang/AST/
H A DASTUnresolvedSet.h55 bool replace(const NamedDecl* Old, NamedDecl *New) { function in class:clang::ASTUnresolvedSet
/external/icu4c/i18n/
H A Dfuncrepl.cpp78 int32_t FunctionReplacer::replace(Replaceable& text, function in class:FunctionReplacer
85 int32_t len = replacer->toReplacer()->replace(text, start, limit, cursor);
/external/javassist/src/main/javassist/convert/
H A DTransformAccessArrayField.java74 pos = replace(cp, iterator, pos, c, getLoadReplacementSignature(c));
78 pos = replace(cp, iterator, pos, c, getStoreReplacementSignature(c));
125 private int replace(ConstPool cp, CodeIterator iterator, int pos, method in class:TransformAccessArrayField
133 // Do not replace an AALOAD instruction that we do not have a type for
/external/javassist/src/main/javassist/expr/
H A DCast.java89 public void replace(String statement) throws CannotCompileException { method in class:Cast
H A DHandler.java97 public void replace(String statement) throws CannotCompileException { method in class:Handler
H A DInstanceof.java92 public void replace(String statement) throws CannotCompileException { method in class:Instanceof
H A DMethodCall.java178 public void replace(String statement) throws CannotCompileException { method in class:MethodCall
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowSpannableStringBuilder.java30 public Editable replace(int st, int en, CharSequence text) { method in class:ShadowSpannableStringBuilder
31 builder.replace(st, en, text.toString());
/external/smack/src/org/jivesoftware/smackx/workgroup/ext/notes/
H A DChatNotes.java118 * @param newString the String that will replace all instances of oldString
121 public static final String replace(String string, String oldString, String newString) { method in class:ChatNotes
126 // to replace.
/external/smack/src/org/xbill/DNS/
H A DUpdate.java251 replace(Name name, int type, long ttl, String record) throws IOException { method in class:Update
263 replace(Name name, int type, long ttl, Tokenizer tokenizer) throws IOException method in class:Update
274 replace(Record record) { method in class:Update
284 replace(Record [] records) { method in class:Update
286 replace(records[i]);
294 replace(RRset rrset) { method in class:Update
/external/webkit/Tools/CodeCoverage/
H A Dregenerate-coverage-display132 site = "%s.html" % name.replace(os.path.sep,'__')
169 def replace(text, *pairs): function
184 return replace(text,
212 escaped_dir = dir_name.replace(os.path.sep,'__')
229 escaped_name = file_name.replace(os.path.sep,'__')
/external/webkit/Tools/Scripts/webkitpy/thirdparty/simplejson/
H A Dencoder.py53 def replace(match): function in function:encode_basestring
55 return '"' + ESCAPE.sub(replace, s) + '"'
58 def replace(match): function in function:encode_basestring_ascii
72 return '"' + str(ESCAPE_ASCII.sub(replace, s)) + '"'
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DTokenRewriteStream.as35 * You can insert stuff, replace, and delete chunks. Note that the
137 public function replace(index:int, text:Object, programName:String = DEFAULT_PROGRAM_NAME):void { function
143 throw new Error("replace: range invalid: "+fromIndex+".."+toIndex+"(size="+tokens.length+")");
287 * R.x-y.u = replace x-y indexed tokens with u
289 * First we need to examine replaces. For any replace op:
292 * 2. Drop any replace op before that is contained completely within
294 * 3. Throw exception upon boundary overlap with any previous replace.
299 * 2. for any prior replace with same left boundary, combine this
300 * insert with replace and delete this replace
[all...]

Completed in 823 milliseconds

123456