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

12345678

/external/icu/icu4c/source/i18n/
H A Dstrrepl.cpp29 * @param theOutput text that will replace input text when the
30 * replace() method is called. May contain stand-in characters
33 * the replace() method
50 * @param theOutput text that will replace input text when the
51 * replace() method is called. May contain stand-in characters
102 int32_t StringReplacer::replace(Replaceable& text, function in class:StringReplacer
177 int32_t len = r->replace(text, destLimit, destLimit, cursor);
/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
/external/skia/experimental/Intersection/
H A DQuadraticReduceOrder.cpp107 // sameSide > 0 means mid is smaller than either [0] or [2], so replace smaller
108 int replace; local
113 replace = (extrema.x < quad[0].x | extrema.x < quad[2].x)
119 replace = (extrema.y < quad[0].y | extrema.y < quad[2].y)
122 reduction[replace] = extrema;
/external/skia/src/core/
H A DSkRecord.h89 T* replace(unsigned i) { function in class:SkRecord
103 T* replace(unsigned i, const SkRecords::Adopted<Existing>& proofOfAdoption) { function in class:SkRecord
150 // A mutator that can be used with replace to destroy canvas commands.
/external/smali/util/src/main/java/ds/tree/
H A DRadixTreeImpl.java73 public boolean replace(String key, final T value) { method in class:RadixTreeImpl
/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/arduino/hardware/arduino/cores/arduino/
H A DWString.cpp236 String String::replace( char findChar, char replaceChar ) function in class:String
247 String String::replace( const String& match, const String& replace ) function in class:String
256 newString += replace;
/external/chromium_org/chrome/browser/prefs/
H A Dprofile_pref_store_manager_unittest.cc237 const std::string& replace) {
246 ReplaceSubstringsAfterOffset(&contents, 0u, find, replace);
236 ReplaceStringInPrefs(const std::string& find, const std::string& replace) argument
/external/chromium_org/chrome/renderer/safe_browsing/
H A Dphishing_dom_feature_extractor_browsertest.cc164 GURL::Replacements replace; local
165 replace.SetHostStr(host);
166 replace.SetPathStr(path);
167 return embedded_test_server_->base_url().ReplaceComponents(replace);
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-common.cc508 hb_bool_t replace)
513 if (replace) {
520 bool ret = !!items.replace_or_insert (item, lock, replace);
505 set(hb_user_data_key_t *key, void * data, hb_destroy_func_t destroy, hb_bool_t replace) argument
H A Dhb-face.cc254 * @replace:
267 hb_bool_t replace)
269 return hb_object_set_user_data (face, key, data, destroy, replace);
263 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
/external/chromium_org/third_party/icu/source/common/unicode/
H A Dutext.h829 * underlying native text string. Behavior after a replace operation
862 * it does not replace or overwrite any existing text.
939 * The provider supports modifying the text via the replace() and copy()
1075 * Function type declaration for UText.replace().
1088 * by the replace operation.
1118 * it does not replace or overwrite any existing text.
1126 * by the replace operation.
1273 UTextReplace *replace; member in struct:UTextFuncs
/external/chromium_org/third_party/icu/source/i18n/
H A Dstrmatch.cpp218 int32_t StringMatcher::replace(Replaceable& text, function in class:StringMatcher
/external/chromium_org/third_party/libsrtp/srtp/crypto/kernel/
H A Dcrypto_kernel.c302 int replace) {
323 if (!replace)
372 int replace) {
393 if (!replace)
301 crypto_kernel_do_load_cipher_type(cipher_type_t *new_ct, cipher_type_id_t id, int replace) argument
371 crypto_kernel_do_load_auth_type(auth_type_t *new_at, auth_type_id_t id, int replace) argument
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DCubicReduceOrder.cpp138 // sameSide > 0 means mid is smaller than either [0] or [3], so replace smaller
139 int replace; local
144 replace = (extrema.x < cubic[0].x | extrema.x < cubic[3].x)
150 replace = (extrema.y < cubic[0].y | extrema.y < cubic[3].y)
153 reduction[replace] = extrema;
/external/chromium_org/third_party/skia/src/pathops/
H A DSkIntersections.cpp159 void SkIntersections::quickRemoveOne(int index, int replace) { argument
160 if (index < replace) {
161 fT[0][index] = fT[0][replace];
/external/chromium_org/third_party/skia/src/utils/
H A DSkRTConf.cpp232 static inline void str_replace(char *s, char search, char replace) { argument
235 *ptr = replace;
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dhamt.c219 HAMT_insert(HAMT *hamt, const char *str, void *data, int *replace, argument
242 *replace = 1;
252 if (*replace) {
266 /* replace node with subtrie */
314 *replace = 1;
361 *replace = 1;
/external/clang/include/clang/AST/
H A DUnresolvedSet.h126 bool replace(const NamedDecl* Old, NamedDecl *New) { function in class:clang::UnresolvedSetImpl
135 void replace(iterator I, NamedDecl *New) { function in class:clang::UnresolvedSetImpl
139 void replace(iterator I, NamedDecl *New, AccessSpecifier AS) { function in class:clang::UnresolvedSetImpl
/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/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/
H A DCacheBuilder.java252 public boolean replace(K key, V oldValue, V newValue) { method in class:CacheBuilder.LocalCache
261 public V replace(K key, V value) { method in class:CacheBuilder.LocalCache
/external/harfbuzz_ng/src/
H A Dhb-common.cc508 hb_bool_t replace)
513 if (replace) {
520 bool ret = !!items.replace_or_insert (item, lock, replace);
505 set(hb_user_data_key_t *key, void * data, hb_destroy_func_t destroy, hb_bool_t replace) argument

Completed in 629 milliseconds

12345678