Searched defs:replace (Results 101 - 125 of 188) sorted by relevance

12345678

/external/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/icu/icu4c/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/stlport/stlport/stl/
H A D_string_sum.h167 //replace
168 _BString& replace(size_type __pos, size_type __n, const _BString& __s) function in class:__bstr_sum
169 {return _M_get_storage().replace(__pos, __n, __s);}
170 _BString& replace(size_type __pos1, size_type __n1, const _BString& __s, size_type __pos2, size_type __n2) function in class:__bstr_sum
171 {return _M_get_storage().replace(__pos1, __n1, __s, __pos2, __n2);}
172 _BString& replace(size_type __pos, size_type __n1, const _CharT* __s, size_type __n2) function in class:__bstr_sum
173 {return _M_get_storage().replace(__pos, __n1, __s, __n2);}
174 _BString& replace(size_type __pos, size_type __n1, const _CharT* __s) function in class:__bstr_sum
175 {return _M_get_storage().replace(__pos, __n1, __s);}
176 _BString& replace(size_typ function in class:__bstr_sum
[all...]
H A D_string.h813 _Self& replace(size_type __pos, size_type __n, const _Self& __s) { function in class:basic_string
824 _Self& replace(size_type __pos1, size_type __n1, const _Self& __s, function in class:basic_string
838 _Self& replace(size_type __pos, size_type __n1, function in class:basic_string
851 _Self& replace(size_type __pos, size_type __n1, const _CharT* __s) { function in class:basic_string
853 return replace(__pos, __n1, __s, _Traits::length(__s));
856 _Self& replace(size_type __pos, size_type __n1, function in class:basic_string
864 return replace(begin() + __pos, begin() + __pos + __len, __n2, __c);
867 _Self& replace(iterator __first, iterator __last, const _Self& __s) { function in class:basic_string
872 _Self& replace(iterator __first, iterator __last, function in class:basic_string
879 _Self& replace(iterato function in class:basic_string
913 _Self& replace(iterator __first, iterator __last, function in class:basic_string
923 _Self& replace(iterator __first, iterator __last, function in class:basic_string
[all...]
/external/stlport/stlport/stl/debug/
H A D_string.h515 _Self& replace(size_type __pos, size_type __n, const _Self& __s) { function in class:basic_string
517 _M_non_dbg_impl.replace(__pos, __n, __s._M_non_dbg_impl);
522 _Self& replace(size_type __pos1, size_type __n1, const _Self& __s, function in class:basic_string
525 _M_non_dbg_impl.replace(__pos1, __n1, __s._M_non_dbg_impl, __pos2, __n2);
530 _Self& replace(size_type __pos, size_type __n1, const _CharT* __s, size_type __n2) { function in class:basic_string
534 _M_non_dbg_impl.replace(__pos, __n1, __s, __n2);
539 _Self& replace(size_type __pos, size_type __n1, const _CharT* __s) { function in class:basic_string
543 _M_non_dbg_impl.replace(__pos, __n1, __s);
548 _Self& replace(size_type __pos, size_type __n1, size_type __n2, _CharT __c) { function in class:basic_string
550 _M_non_dbg_impl.replace(__po
555 _Self& replace(iterator __f, iterator __l, const _Self& __s) { function in class:basic_string
563 _Self& replace(iterator __f, iterator __l, const _CharT* __s, size_type __n) { function in class:basic_string
573 _Self& replace(iterator __f, iterator __l, const _CharT* __s) { function in class:basic_string
583 _Self& replace(iterator __f, iterator __l, size_type __n, _CharT __c) { function in class:basic_string
593 _Self& replace(iterator __first, iterator __last, function in class:basic_string
607 _Self& replace(iterator __first, iterator __last, function in class:basic_string
620 _Self& replace(iterator __first, iterator __last, function in class:basic_string
630 _Self& replace(iterator __first, iterator __last, function in class:basic_string
[all...]
/external/stlport/test/unit/
H A Dstring_test.cpp59 CPPUNIT_TEST(replace);
118 void replace();
530 void StringTest::replace() function in class:StringTest
533 * This test case is for the non template basic_string::replace method,
542 s.replace(i, i + 3, v.begin(), v.end());
547 s.replace(i, i + 1, v.begin(), v.end());
553 s.replace(i, i + 3, ci + 3, cs.end());
559 s.replace(i, i + 3, ci, ci + 2);
565 s.replace(i, i + 3, ci + 1, cs.end());
571 s.replace(
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-netrexx.jar ... boolean format private boolean keep private boolean logo private boolean replace private boolean savelog private java.io.File srcDir ...
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir.cpp164 // Check if we can replace this definition's value by the value in @rep,
201 ValueDef::replace(const ValueRef &repVal, bool doSet) function in class:nv50_ir::ValueDef
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/gas/
H A Dgas-parse.c1728 int replace = 1; local
1737 HAMT_insert(parser_gas->dirs, word.name, &word, &replace, no_delete);
1739 replace = 1;
1741 &dirs_static[i], &replace, no_delete);
/external/chromium_org/ui/file_manager/gallery/js/image_editor/
H A Dimage_view.js329 self.replace(
366 // If we already displayed the preview we should not replace the content if
372 self.replace(content, replaceEffect);
516 ImageView.prototype.replace = function(
/external/clang/include/clang/Sema/
H A DLookup.h591 void replace(NamedDecl *D) { function in class:clang::LookupResult::Filter
592 Results.Decls.replace(I-1, D);
597 void replace(NamedDecl *D, AccessSpecifier AS) { function in class:clang::LookupResult::Filter
598 Results.Decls.replace(I-1, D, AS);
/external/clang/lib/ARCMigrate/
H A DTransformActions.cpp138 void replace(SourceRange range, StringRef text);
139 void replace(SourceRange range, SourceRange replacementRange);
321 void TransformActionsImpl::replace(SourceRange range, StringRef text) { function in class:TransformActionsImpl
328 void TransformActionsImpl::replace(SourceRange range, function in class:TransformActionsImpl
642 void TransformActions::replace(SourceRange range, StringRef text) { function in class:TransformActions
643 static_cast<TransformActionsImpl*>(Impl)->replace(range, text);
646 void TransformActions::replace(SourceRange range, function in class:TransformActions
648 static_cast<TransformActionsImpl*>(Impl)->replace(range, replacementRange);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/
H A DTestResultsGenerator.java232 replace(testResultsTemplateString, compileLogsToken, String.valueOf(compilerString));
235 replace(testResultsTemplateString, accessesLogsToken, String.valueOf(accessesString));
267 stringBuffer.replace(
347 buffer.replace(
572 replace(
596 return xmlFileCanonicalPath.substring(rootCanonicalPath.length() + 1).replace('\\', '/');
601 private String replace( method in class:TestResultsGenerator
636 replace(
642 dropTemplateString = replace(dropTemplateString,"%testsStatus%",testResultsStatus);
657 replace(
[all...]
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir.cpp164 // Check if we can replace this definition's value by the value in @rep,
201 ValueDef::replace(const ValueRef &repVal, bool doSet) function in class:nv50_ir::ValueDef
/external/proguard/src/proguard/optimize/evaluation/
H A DEvaluationShrinker.java1647 boolean replace,
1660 if (replace)
1703 private void insertPopInstructions(int offset, boolean replace, int popCount) argument
1716 if (replace)
1737 if (replace)
1774 if (replace)
1646 insertPushInstructions(int offset, boolean replace, int computationalType) argument
/external/wpa_supplicant_8/hs20/client/
H A Doma_dm_client.c239 xml_node_t *info, *child, *replace; local
249 replace = xml_node_create(ctx->xml, parent, NULL, "Replace");
250 if (replace == NULL) {
254 oma_dm_add_cmdid(ctx, replace, cmdid);
262 add_item(ctx, replace, locuri, txt);
701 static int oma_dm_replace(struct hs20_osu_client *ctx, xml_node_t *replace, argument
710 locuri = oma_dm_get_target_locuri(ctx, replace);
754 node = get_node(ctx->xml, replace, "Item/Meta/Type");
762 node = get_node(ctx->xml, replace, "Item/Data");
1345 xml_node_t *pps, *replace; local
[all...]
/external/chromium_org/content/browser/frame_host/
H A Dnavigation_controller_impl.cc777 // If we are doing a cross-site reload, we need to replace the existing
1449 CHECK(successful_insert) << "Cannot replace existing SessionStorageNamespace";
1547 bool replace) {
1564 // Also prune the current entry if we are to replace the current entry.
1568 if (replace)
1546 InsertOrReplaceEntry(NavigationEntryImpl* entry, bool replace) argument
/external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/lib/
H A Ddojo-1.6.1.js26 /**Build will replace this comment with a scoped djConfig **/
1598 uri += (uri.indexOf("?") == -1 ? "?" : "&") + String(d.config.cacheBust).replace(/\W+/g,"");
2141 function(str){ return str.replace(/^\s\s*/, '').replace(/\s\s*$/, ''); };
2144 dojo.replace = function(tmpl, map, pattern){
2154 // string (see https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects/String/replace
2165 // | dojo.replace("Hello, {name.first} {name.last} AKA {nick}!",
2177 // | dojo.replace("Hello, {0} {2}!",
2187 // | dojo.replace(
2205 // | dojo.replace("Hell
[all...]
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebRemoteFrameImpl.cpp427 const WebURL& baseURL, const WebURL& unreachableURL, bool replace)
434 bool replace)
425 loadData( const WebData&, const WebString& mimeType, const WebString& textEncoding, const WebURL& baseURL, const WebURL& unreachableURL, bool replace) argument
432 loadHTMLString( const WebData& html, const WebURL& baseURL, const WebURL& unreachableURL, bool replace) argument
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DStringImpl.cpp1528 PassRefPtr<StringImpl> StringImpl::replace(UChar oldC, UChar newC) function in class:WTF::StringImpl
1581 PassRefPtr<StringImpl> StringImpl::replace(unsigned position, unsigned lengthToReplace, StringImpl* str) function in class:WTF::StringImpl
1627 PassRefPtr<StringImpl> StringImpl::replace(UChar pattern, StringImpl* replacement) function in class:WTF::StringImpl
1633 return replace(pattern, replacement->characters8(), replacement->length());
1635 return replace(pattern, replacement->characters16(), replacement->length());
1638 PassRefPtr<StringImpl> StringImpl::replace(UChar pattern, const LChar* replacement, unsigned repStrLength) function in class:WTF::StringImpl
1713 PassRefPtr<StringImpl> StringImpl::replace(UChar pattern, const UChar* replacement, unsigned repStrLength) function in class:StringImpl
1791 PassRefPtr<StringImpl> StringImpl::replace(StringImpl* pattern, StringImpl* replacement)
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-private.hh455 inline item_t *replace_or_insert (T v, lock_t &l, bool replace) argument
460 if (replace) {
/external/chromium_org/third_party/icu/source/common/
H A Dunistr.cpp1098 // we found oldText, replace it by newText and go beyond it
1099 replace(pos, oldLength, newText, newStart, newLength);
1283 UnicodeString::replace(int32_t start, function in class:UnicodeString
1319 // and replace the range in ourselves with them
1367 // calculate the size of the string after the replace
1423 // now do the replace
/external/chromium_org/third_party/libxml/src/
H A Dcatalog.c1489 * @replace: the replacement value for the match
1498 const xmlChar *orig, const xmlChar *replace) {
1536 cur->value = xmlStrdup(replace);
1537 cur->URL = xmlStrdup(replace);
1549 catal->children = xmlNewCatalogEntry(typ, orig, replace,
1552 cur->next = xmlNewCatalogEntry(typ, orig, replace,
2949 * @replace: the replacement value for the match
2958 const xmlChar * orig, const xmlChar * replace)
2966 res = xmlAddXMLCatalog(catal->xml, type, orig, replace);
2974 entry = xmlNewCatalogEntry(cattype, orig, replace, NUL
1497 xmlAddXMLCatalog(xmlCatalogEntryPtr catal, const xmlChar *type, const xmlChar *orig, const xmlChar *replace) argument
2957 xmlACatalogAdd(xmlCatalogPtr catal, const xmlChar * type, const xmlChar * orig, const xmlChar * replace) argument
3411 xmlCatalogAdd(const xmlChar *type, const xmlChar *orig, const xmlChar *replace) argument
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dsection.c195 int replace; local
199 replace = 0;
202 &replace, directive_level1_delete);
204 replace = 0;
206 HAMT_insert(level2, dir->name, wrap, &replace,
/external/dnsmasq/src/
H A Doption.c1154 /* replace default resolv file - possibly with nothing */
2369 char *name, *replace = NULL; local
2381 (k == 7 && !(replace = canonicalise_opt(a[6]))))
2392 new->replace = replace;

Completed in 2751 milliseconds

12345678