Searched defs:replace (Results 76 - 100 of 188) sorted by relevance

12345678

/external/harfbuzz_ng/src/
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
H A Dhb-object-private.hh92 hb_bool_t replace);
148 hb_bool_t replace) {
152 return user_data.set (key, data, destroy_func, replace);
214 hb_bool_t replace)
216 return obj->header.set_user_data (key, data, destroy, replace);
145 set_user_data(hb_user_data_key_t *key, void * data, hb_destroy_func_t destroy_func, hb_bool_t replace) argument
210 hb_object_set_user_data(Type *obj, hb_user_data_key_t *key, void * data, hb_destroy_func_t destroy, hb_bool_t replace) argument
/external/icu/icu4c/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/icu/icu4c/source/i18n/
H A Dstrmatch.cpp218 int32_t StringMatcher::replace(Replaceable& text, function in class:StringMatcher
/external/javassist/src/main/javassist/expr/
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/lldb/source/Target/
H A DCPPLanguageRuntime.cpp93 std::string& replace (std::string& target, function in class:CPPRuntimeEquivalents
101 target.replace(pos, pattern_len, with);
124 replace (target, matching_key_str, equiv_class);
/external/oprofile/libregex/
H A Dop_regex.cpp4 * libc regex, providing regular expression match and replace facility.
104 string const & replace)
110 replace_t regex = { regexp, replace };
197 do_replace(str, regexp.replace, match);
216 (string & str, string const & replace, regmatch_t const * match) const
219 for (size_t i = 0 ; i < replace.length() ; ++i) {
220 if (replace[i] == '\\') {
221 if (i == replace.length() - 1) {
223 replace);
226 if (replace[
103 add_pattern(string const & pattern, string const & replace) argument
215 do_replace(string & str, string const & replace, regmatch_t const * match) const argument
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowSQLiteDatabase.java84 public long replace(String table, String nullColumnHack, ContentValues values) { method in class:ShadowSQLiteDatabase
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/util/
H A DTestFragmentManager.java141 public void addFragment(int containerViewId, String tag, Fragment fragment, boolean replace) { argument
148 shadowFragment.setShouldReplace(replace);
H A DTestFragmentTransaction.java50 public FragmentTransaction replace(int containerViewId, Fragment fragment) { method in class:TestFragmentTransaction
51 return replace(containerViewId, fragment, null);
55 public FragmentTransaction replace(int containerViewId, Fragment fragment, String tag) { method in class:TestFragmentTransaction
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DFragmentTransactionTest.java66 txn.replace(id, fragment);
71 txn.replace(id, fragment, tag);
122 txn.replace(111, fragment).commit();
133 txn.replace(111, fragment, "tag1").commit();
280 public void addFragment(int containerViewId, String tag, Fragment fragment, boolean replace) { argument
285 addFragmentReplace = replace;
/external/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/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/skia/src/utils/
H A DSkRTConf.cpp232 static inline void str_replace(char *s, char search, char replace) { argument
235 *ptr = replace;
/external/stlport/stlport/stl/
H A D_algobase.h698 // replace
701 replace(_ForwardIter __first, _ForwardIter __last, function
H A D_string.c372 basic_string<_CharT,_Traits,_Alloc> ::replace(iterator __first, iterator __last, function in class:_Alloc
H A D_string_workaround.h472 _Self& replace(size_type __pos, size_type __n, const _Self& __s) { function in class:basic_string
473 _Base::replace(__pos, __n, __s);
477 _Self& replace(size_type __pos1, size_type __n1, const _Self& __s, function in class:basic_string
479 _Base::replace(__pos1, __n1, __s, __pos2, __n2);
483 _Self& replace(size_type __pos, size_type __n1, function in class:basic_string
486 _Base::replace(__pos, __n1, __s, __n2);
490 _Self& replace(size_type __pos, size_type __n1, const _CharT* __s) { function in class:basic_string
492 _Base::replace(__pos, __n1, __s);
496 _Self& replace(size_type __pos, size_type __n1, function in class:basic_string
498 _Base::replace(__po
502 _Self& replace(iterator __first, iterator __last, const _Self& __s) { function in class:basic_string
508 _Self& replace(iterator __first, iterator __last, function in class:basic_string
516 _Self& replace(iterator __first, iterator __last, function in class:basic_string
524 _Self& replace(iterator __first, iterator __last, function in class:basic_string
534 _Self& replace(iterator __first, iterator __last, function in class:basic_string
542 _Self& replace(iterator __first, iterator __last, function in class:basic_string
[all...]
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Dstreams.py1029 You can insert stuff, replace, and delete chunks. Note that the
1168 def replace(self, *args): member in class:TokenRewriteStream
1200 "replace: range invalid: %d..%d (size=%d)"
1210 self.replace(*(list(args) + [None]))
1350 Delete special case of replace (text==null):
1365 R.x-y.u = replace x-y indexed tokens with u
1367 First we need to examine replaces. For any replace op:
1370 2. Drop any replace op before that is contained completely within
1372 3. Throw exception upon boundary overlap with any previous replace.
1377 2. for any prior replace wit
[all...]
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DVisitor.py420 def replace(self, node, replacement): member in class:NodeRefCleanupMixin
648 Recursively replace all occurrences of a node in a subtree by
/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DMemoryCache.cpp163 void MemoryCache::replace(Resource* newResource, Resource* oldResource) function in class:blink::MemoryCache
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DWTFString.h286 String& replace(UChar a, UChar b) { if (m_impl) m_impl = m_impl->replace(a, b); return *this; } function in class:WTF::String
287 String& replace(UChar a, const String& b) { if (m_impl) m_impl = m_impl->replace(a, b.impl()); return *this; } function in class:WTF::String
288 String& replace(const String& a, const String& b) { if (m_impl) m_impl = m_impl->replace(a.impl(), b.impl()); return *this; } function in class:WTF::String
289 String& replace(unsigned index, unsigned len, const String& b) { if (m_impl) m_impl = m_impl->replace(index, len, b.impl()); return *this; } function in class:WTF::String
295 m_impl = m_impl->replace(a, characters, charactersCount - 1);
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-font.cc312 * @replace:
325 hb_bool_t replace)
327 return hb_object_set_user_data (ffuncs, key, data, destroy, replace);
990 * @replace:
1003 hb_bool_t replace)
1005 return hb_object_set_user_data (font, key, data, destroy, replace);
321 hb_font_funcs_set_user_data(hb_font_funcs_t *ffuncs, hb_user_data_key_t *key, void * data, hb_destroy_func_t destroy, hb_bool_t replace) argument
999 hb_font_set_user_data(hb_font_t *font, 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 Dunistr.h1813 * @param srcText The text containing the characters to replace
1837 * @param src The text containing the characters to replace.
1846 * @param ch the code unit to replace
1855 * @param ch the code point to replace
1884 * replace string.
2231 * @param start the offset at which the replace operation begins
2232 * @param length the number of characters to replace. The character at
2238 * the replace string
2242 UnicodeString& replace(int32_t start,
2253 * @param start the offset at which the replace operatio
4119 UnicodeString::replace(int32_t start, function in class:UnicodeString
4125 UnicodeString::replace(int32_t start, function in class:UnicodeString
4133 UnicodeString::replace(int32_t start, function in class:UnicodeString
4140 UnicodeString::replace(int32_t start, function in class:UnicodeString
4148 UnicodeString::replace(int32_t start, function in class:UnicodeString
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dsymrec.c187 int replace = 0; local
197 return HAMT_insert(symtab->sym_table, name, rec, &replace,
/external/guava/guava/src/com/google/common/collect/
H A DMapMaker.java372 * {@link ConcurrentMap#replace(Object, Object, Object) replace(K, V, V)}, and may not be what you
398 * {@link ConcurrentMap#replace(Object, Object, Object) replace(K, V, V)}, and may not be what you
787 * {@link ConcurrentMap#replace(Object, Object)}, or
788 * {@link ConcurrentMap#replace(Object, Object, Object)}.
898 public V replace(K key, V value) { method in class:MapMaker.NullConcurrentMap
905 public boolean replace(K key, @Nullable V oldValue, V newValue) { method in class:MapMaker.NullConcurrentMap

Completed in 1177 milliseconds

12345678