Searched defs:replace (Results 51 - 75 of 205) sorted by relevance

123456789

/external/harfbuzz_ng/src/
H A Dhb-set.cc109 * @replace:
120 hb_bool_t replace)
122 return hb_object_set_user_data (set, key, data, destroy, replace);
116 hb_set_set_user_data(hb_set_t *set, hb_user_data_key_t *key, void * data, hb_destroy_func_t destroy, hb_bool_t replace) argument
H A Dhb-unicode.cc260 * @replace:
273 hb_bool_t replace)
275 return hb_object_set_user_data (ufuncs, key, data, destroy, replace);
269 hb_unicode_funcs_set_user_data(hb_unicode_funcs_t *ufuncs, hb_user_data_key_t *key, void * data, hb_destroy_func_t destroy, hb_bool_t replace) argument
H A Dhb-face.cc248 * @replace:
261 hb_bool_t replace)
263 return hb_object_set_user_data (face, key, data, destroy, replace);
257 hb_face_set_user_data(hb_face_t *face, hb_user_data_key_t *key, void * data, hb_destroy_func_t destroy, hb_bool_t replace) argument
H A Dhb-shape-plan.cc273 * @replace:
286 hb_bool_t replace)
288 return hb_object_set_user_data (shape_plan, key, data, destroy, replace);
282 hb_shape_plan_set_user_data(hb_shape_plan_t *shape_plan, hb_user_data_key_t *key, void * data, hb_destroy_func_t destroy, hb_bool_t replace) argument
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DStringMatcher.java242 public int replace(Replaceable text, method in class:StringMatcher
260 text.replace(start, limit, ""); // delete original text
/external/icu/icu4c/source/i18n/
H A Dstrrepl.cpp31 * @param theOutput text that will replace input text when the
32 * replace() method is called. May contain stand-in characters
35 * the replace() method
52 * @param theOutput text that will replace input text when the
53 * replace() method is called. May contain stand-in characters
104 int32_t StringReplacer::replace(Replaceable& text, function in class:StringReplacer
179 int32_t len = r->replace(text, destLimit, destLimit, cursor);
H A Dstrmatch.cpp220 int32_t StringMatcher::replace(Replaceable& text, function in class:StringMatcher
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
H A DStringMatcher.java241 public int replace(Replaceable text, method in class:StringMatcher
259 text.replace(start, limit, ""); // delete original text
/external/javassist/src/main/javassist/expr/
H A DFieldAccess.java149 public void replace(String statement) throws CannotCompileException { method in class:FieldAccess
H A DNewArray.java158 public void replace(String statement) throws CannotCompileException { method in class:NewArray
H A DNewExpr.java161 public void replace(String statement) throws CannotCompileException { method in class:NewExpr
H A DExpr.java258 // The implementation of replace() should call thisClass.checkModify()
269 public abstract void replace(String statement) throws CannotCompileException; method in class:Expr
281 public void replace(String statement, ExprEditor recursive) method in class:Expr
284 replace(statement);
/external/protobuf/ruby/src/main/java/com/google/protobuf/jruby/
H A DRubyRepeatedField.java187 * RepeatedField.replace(list)
192 public IRubyObject replace(ThreadContext context, IRubyObject list) { method in class:RubyRepeatedField
/external/skia/src/core/
H A DSkRecord.h84 T* replace(int i) { function in class:SkRecord
97 T* replace(int i, const SkRecords::Adopted<Existing>& proofOfAdoption) { function in class:SkRecord
130 // A mutator that can be used with replace to destroy canvas commands.
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
H A DIntrusiveRefCntPtr.h123 replace(S.getPtr());
129 replace(S.getPtr());
134 replace(S);
165 void replace(T* S) { function in class:llvm::IntrusiveRefCntPtr
/external/webrtc/webrtc/base/
H A Dstringutils.cc94 const char *replace,
99 s->replace(pos, search_len, replace, replace_len);
92 replace_substrs(const char *search, size_t search_len, const char *replace, size_t replace_len, std::string *s) argument
/external/ImageMagick/MagickCore/
H A Dlist.c1158 % ReplaceImageInList(Image **images,Image *replace)
1162 % o images: the list and pointer to image to replace
1164 % o replace: the image or image list replacing the original
1167 MagickExport void ReplaceImageInList(Image **images,Image *replace)
1170 assert(replace != (Image *) NULL);
1171 assert(replace->signature == MagickCoreSignature);
1172 if (replace->debug != MagickFalse)
1173 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",replace->filename);
1179 replace=GetLastImageInList(replace);
1144 ReplaceImageInList(Image **images,Image *replace) argument
1202 ReplaceImageInListReturnLast(Image **images,Image *replace) argument
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DTokenRewriteStream.java35 * You can insert stuff, replace, and delete chunks. Note that the
247 public void replace(int index, Object text) { method in class:TokenRewriteStream
248 replace(DEFAULT_PROGRAM_NAME, index, index, text);
251 public void replace(int from, int to, Object text) { method in class:TokenRewriteStream
252 replace(DEFAULT_PROGRAM_NAME, from, to, text);
255 public void replace(Token indexT, Object text) { method in class:TokenRewriteStream
256 replace(DEFAULT_PROGRAM_NAME, indexT, indexT, text);
259 public void replace(Token from, Token to, Object text) { method in class:TokenRewriteStream
260 replace(DEFAULT_PROGRAM_NAME, from, to, text);
263 public void replace(Strin method in class:TokenRewriteStream
273 public void replace(String programName, Token from, Token to, Object text) { method in class:TokenRewriteStream
[all...]
/external/clang/include/clang/Edit/
H A DCommit.h84 bool replace(CharSourceRange range, StringRef text);
101 bool replace(SourceRange TokenRange, StringRef text) { function in class:clang::edit::Commit
102 return replace(CharSourceRange::getTokenRange(TokenRange), text);
/external/clang/lib/Edit/
H A DCommit.cpp111 bool Commit::replace(CharSourceRange range, StringRef text) { function in class:Commit
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
H A DReplaceableTest.java131 public void replace(int start, int limit, String text) { method in class:ReplaceableTest.TestReplaceable
133 if (DEBUG) System.out.print(Utility.escape(toString() + " -> replace(" + start +
135 chars.replace(start, limit, text);
140 public void replace(int start, int limit, char[] charArray, method in class:ReplaceableTest.TestReplaceable
143 this.chars.replace(start, limit, charArray, charsStart, charsLen);
168 styles.replace(start, limit, s.toString());
/external/icu/icu4c/source/common/unicode/
H A Dutext.h831 * underlying native text string. Behavior after a replace operation
864 * it does not replace or overwrite any existing text.
941 * The provider supports modifying the text via the replace() and copy()
1077 * Function type declaration for UText.replace().
1090 * by the replace operation.
1120 * it does not replace or overwrite any existing text.
1128 * by the replace operation.
1275 UTextReplace *replace; member in struct:UTextFuncs
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
H A DReplaceableTest.java130 public void replace(int start, int limit, String text) { method in class:ReplaceableTest.TestReplaceable
132 if (DEBUG) System.out.print(Utility.escape(toString() + " -> replace(" + start +
134 chars.replace(start, limit, text);
139 public void replace(int start, int limit, char[] charArray, method in class:ReplaceableTest.TestReplaceable
142 this.chars.replace(start, limit, charArray, charsStart, charsLen);
167 styles.replace(start, limit, s.toString());
/external/libxml2/os400/
H A Dxmlcatlgcl.c44 paramlist(256, char) replace; /* vary2(256). */ member in struct:__anon12109
230 vary4vargquote(&cmd, (vary2 *) &aelp->replace);
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowSQLiteDatabase.java84 public long replace(String table, String nullColumnHack, ContentValues values) { method in class:ShadowSQLiteDatabase

Completed in 4089 milliseconds

123456789