/external/valgrind/main/cachegrind/docs/ |
cg_annotate-manpage.xml | 23 <arg><replaceable>options</replaceable></arg> 24 <arg choice="plain"><replaceable>cachegrind-out-file</replaceable></arg> 25 <arg choice="opt" rep="repeat"><replaceable>source-files</replaceable></arg>
|
/external/icu4c/test/intltest/ |
reptest.h | 7 * This test program is intended for testing Replaceable class. 27 * @summary Testing the Replaceable class 33 /*Tests the Replaceable class according to the API documentation. */
|
reptest.cpp | 7 * This test program is intended for testing Replaceable class. 39 class TestReplaceable : public Replaceable { 72 virtual Replaceable *clone() const { 176 * Dummy Replaceable implementation for better API/code coverage. 178 class NoopReplaceable : public Replaceable { 244 Replaceable *p; 246 errln("Replaceable::clone() does not return NULL"); 251 errln("Replaceable::hasMetaData() does not return TRUE"); 255 // UMemory/UObject/Replaceable assignment operators 259 errln("noop2.Replaceable::clone() does not return NULL") [all...] |
transapi.cpp | 310 message.append("->transliterate(Replaceable) for \n\tSource:"); 354 doTest(t->getID() + ".transliterate(Replaceable, int32_t, int32_t, ):(" + start + "," + limit + ") for \n\t source: " + prettify(Data2[i+1]), temp, Data2[i+5]); 382 UnicodeString rs="This is the replaceable String"; 384 "0", "0", "This is the replaceable String", 385 "2", "3", UnicodeString("Th\\u0069s is the replaceable String", ""), 436 errln("FAIL: " + t->getID()+ ".translitere(Replaceable, int[], UnicodeString, UErrorCode)-->" + (UnicodeString)u_errorName(status)); 487 logln("Testing transliterate(Replaceable, int32_t, UnicodeString, UErrorCode)"); 494 errln("FAIL: " + t->getID()+ ".transliterate(Replaceable, int32_t[], UnicodeString, UErrorCode)-->" + (UnicodeString)u_errorName(status)); 509 logln("Testing transliterate(Replaceable, int32_t, UChar, UErrorCode)"); 517 errln("FAIL: " + t->getID()+ ".transliterate(Replaceable, int32_t[], UChar, UErrorCode)-->" + (UnicodeString)u_errorName(status)) 622 UnicodeString replaceable=s; local [all...] |
/external/valgrind/main/callgrind/docs/ |
callgrind_annotate-manpage.xml | 23 <arg choice="opt"><replaceable>options</replaceable></arg> 25 <arg choice="opt"><replaceable>callgrind-out-file</replaceable> 26 <arg choice="opt" rep="repeat"><replaceable>source-files</replaceable></arg></arg>
|
callgrind_control-manpage.xml | 22 <arg choice="opt"><replaceable>options</replaceable></arg> 23 <arg choice="opt" rep="repeat"><replaceable>pid|program-name</replaceable></arg>
|
/external/valgrind/main/massif/docs/ |
ms_print-manpage.xml | 24 <arg><replaceable>options</replaceable></arg> 25 <arg choice="plain"><replaceable>massif-out-file</replaceable></arg>
|
/external/wpa_supplicant_8/wpa_supplicant/doc/docbook/ |
wpa_passphrase.sgml | 15 <arg><replaceable>ssid</replaceable></arg> 16 <arg><replaceable>passphrase</replaceable></arg>
|
wpa_gui.sgml | 17 <arg>-p <replaceable>path to ctrl sockets</replaceable></arg> 18 <arg>-i <replaceable>ifname</replaceable></arg>
|
wpa_priv.sgml | 17 <arg>-c <replaceable>ctrl path</replaceable></arg> 19 <arg>-P <replaceable>pid file</replaceable></arg> 20 <arg>driver:ifname <replaceable>[driver:ifname ...]</replaceable></arg>
|
wpa_cli.sgml | 17 <arg>-p <replaceable>path to ctrl sockets</replaceable></arg> 18 <arg>-i <replaceable>ifname</replaceable></arg> 20 <arg>-a <replaceable>action file</replaceable></arg> 21 <arg>-P <replaceable>pid file</replaceable></arg> 22 <arg><replaceable>command ...</replaceable></arg [all...] |
/ndk/sources/cxx-stl/llvm-libc++/include/ |
new | 38 void* operator new(std::size_t size); // replaceable 39 void* operator new(std::size_t size, const std::nothrow_t&) noexcept; // replaceable 40 void operator delete(void* ptr) noexcept; // replaceable 41 void operator delete(void* ptr, const std::nothrow_t&) noexcept; // replaceable 43 void* operator new[](std::size_t size); // replaceable 44 void* operator new[](std::size_t size, const std::nothrow_t&) noexcept; // replaceable 45 void operator delete[](void* ptr) noexcept; // replaceable 46 void operator delete[](void* ptr, const std::nothrow_t&) noexcept; // replaceable
|
/external/icu4c/common/unicode/ |
rep.h | 21 * \brief C++ API: Replaceable String 29 * <code>Replaceable</code> is an abstract base class representing a 37 * <p>An implicit aspect of the <code>Replaceable</code> API is that 43 * <p><code>Replaceable</code> specifies ranges using a start 48 * <p><code>Replaceable</code> also includes API to access characters 61 * <li>If there is no following character (i.e. the replaceable was 71 class U_COMMON_API Replaceable : public UObject { 78 virtual ~Replaceable(); 176 * Replaceable object has metadata, calls to the Replaceable AP [all...] |
/external/icu4c/samples/translit/answers/ |
unaccent.h | 29 virtual void handleTransliterate(Replaceable& text,
|
unaccent.cpp | 41 void UnaccentTransliterator::handleTransliterate(Replaceable& text,
|
/external/icu4c/i18n/ |
nultrans.cpp | 29 void NullTransliterator::handleTransliterate(Replaceable& /*text*/, UTransPosition& offsets,
|
casetrn.cpp | 31 /* case context iterator using a Replaceable */ 38 Replaceable *rep=(Replaceable *)csc->p; 54 // automatically adjust start and limit if the Replaceable disagrees 135 void CaseMapTransliterator::handleTransliterate(Replaceable& text,
|
casetrn.h | 81 virtual void handleTransliterate(Replaceable& text, 98 /** case context iterator using a Replaceable. This must be a C function because it is a callback. */
|
brktrans.h | 92 virtual void handleTransliterate(Replaceable& text, UTransPosition& offset, 101 static UnicodeString replaceableAsString(Replaceable &r);
|
utrans.cpp | 31 * Replaceable-UReplaceableCallbacks glue 35 * Make a UReplaceable + UReplaceableCallbacks into a Replaceable object. 38 class ReplaceableGlue : public Replaceable { 45 ReplaceableGlue(UReplaceable *replaceable, 60 // virtual Replaceable *clone() const { return NULL; } same as default 87 ReplaceableGlue::ReplaceableGlue(UReplaceable *replaceable, 89 : Replaceable() 91 this->rep = replaceable;
|
/external/icu4c/i18n/unicode/ |
unirepl.h | 22 class Replaceable; 28 * replace a range of characters in a Replaceable string with output 29 * text. The replacement is done via the Replaceable API so as to 64 virtual int32_t replace(Replaceable& text,
|
/external/webkit/Source/WebCore/page/ |
DOMWindow.idl | 47 attribute [Replaceable] Screen screen; 49 attribute [Replaceable] BarInfo locationbar; 50 attribute [Replaceable] BarInfo menubar; 51 attribute [Replaceable] BarInfo personalbar; 52 attribute [Replaceable] BarInfo scrollbars; 53 attribute [Replaceable] BarInfo statusbar; 54 attribute [Replaceable] BarInfo toolbar; 55 attribute [Replaceable] Navigator navigator; 56 attribute [Replaceable] Navigator clientInformation; 60 attribute [Replaceable, CustomGetter, V8CustomSetter] Event event [all...] |
/external/icu4c/samples/translit/ |
unaccent.cpp | 43 void UnaccentTransliterator::handleTransliterate(Replaceable& text,
|
/external/webkit/Source/WebCore/workers/ |
WorkerContext.idl | 43 attribute [Replaceable] WorkerContext self; 45 attribute [Replaceable] WorkerLocation location; 51 attribute [Replaceable] WorkerNavigator navigator;
|
/external/icu4c/common/ |
unifilt.cpp | 40 UMatchDegree UnicodeFilter::matches(const Replaceable& text,
|