HomeSort by relevance Sort by last modified time
    Searched refs:str (Results 126 - 150 of 2738) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/icu4c/samples/numfmt/
util.h 17 void uprintf(const UnicodeString &str);
  /external/icu4c/samples/translit/
util.h 16 void uprintf(const UnicodeString &str);
unaccent.cpp 29 UnicodeString str(c);
33 t->normalizer.setText(str, status);
46 UnicodeString str("a");
51 str.setCharAt(0, d);
52 text.handleReplaceBetween(index.start, index.start+1, str);
  /external/ipsec-tools/src/libipsec/
ipsec_strerror.c 90 void __ipsec_set_strerror(const char *str)
93 ipsec_errlist[EIPSEC_SYSTEM_ERROR] = str;
  /external/webkit/WebCore/platform/brew/
MIMETypeRegistryBrew.cpp 66 String str = ext.lower(); local
70 if (str == e->extension)
  /external/webkit/WebCore/platform/haiku/
MIMETypeRegistryHaiku.cpp 64 String str = ext.lower(); local
67 if (str == extMap->extension)
  /external/webkit/WebCore/platform/text/
CString.cpp 34 CString::CString(const char* str)
36 init(str, strlen(str));
39 CString::CString(const char* str, unsigned length)
41 init(str, length);
44 void CString::init(const char* str, unsigned length)
46 if (!str)
50 memcpy(m_buffer->mutableData(), str, length);
  /external/webkit/WebCore/platform/text/mac/
StringMac.mm 27 String::String(NSString* str)
29 if (!str)
32 CFIndex size = CFStringGetLength(reinterpret_cast<CFStringRef>(str));
37 CFStringGetCharacters(reinterpret_cast<CFStringRef>(str), CFRangeMake(0, size), buffer.data());
  /external/webkit/WebCore/rendering/
RenderTextFragment.cpp 30 RenderTextFragment::RenderTextFragment(Node* node, StringImpl* str, int startOffset, int length)
31 : RenderText(node, str ? str->substring(startOffset, length) : 0)
38 RenderTextFragment::RenderTextFragment(Node* node, StringImpl* str)
39 : RenderText(node, str)
41 , m_end(str ? str->length() : 0)
42 , m_contentString(str)
break_lines.h 30 inline bool isBreakable(const UChar* str, int pos, int len, int& nextBreakable, bool breakNBSP = false)
33 nextBreakable = nextBreakablePosition(str, pos, len, breakNBSP);
  /external/webkit/WebCore/xml/
DOMParser.cpp 27 PassRefPtr<Document> DOMParser::parseFromString(const String& str, const String& contentType)
35 doc->write(str);
DOMParser.idl 22 Document parseFromString(in DOMString str, in DOMString contentType);
  /external/webkit/WebKit/android/wds/client/
ClientUtils.h 40 #define log_errno(str) LOGE("%s: %s", str, strerror(errno))
  /external/wpa_supplicant_6/wpa_supplicant/src/utils/
uuid.h 20 int uuid_str2bin(const char *str, u8 *bin);
21 int uuid_bin2str(const u8 *bin, char *str, size_t max_len);
  /frameworks/base/core/java/android/net/
InterfaceConfiguration.java 37 StringBuffer str = new StringBuffer(); local
39 str.append("ipddress "); putAddress(str, ipAddr);
40 str.append(" netmask "); putAddress(str, netmask);
41 str.append(" flags ").append(interfaceFlags);
42 str.append(" hwaddr ").append(hwAddr);
44 return str.toString();
  /frameworks/base/tests/CoreTests/android/core/
BufferedInputStreamTest.java 32 String str = "AbCdEfGhIjKlM\nOpQrStUvWxYz"; local
33 ByteArrayInputStream aa = new ByteArrayInputStream(str.getBytes());
34 ByteArrayInputStream ba = new ByteArrayInputStream(str.getBytes());
35 ByteArrayInputStream ca = new ByteArrayInputStream(str.getBytes());
36 ByteArrayInputStream da = new ByteArrayInputStream(str.getBytes());
37 ByteArrayInputStream ea = new ByteArrayInputStream(str.getBytes());
41 assertEquals(str, IOUtil.read(a));
76 assertEquals(str, IOUtil.read(e, 10000));
  /libcore/luni/src/test/java/tests/api/javax/net/ssl/
SSLEngineResultHandshakeStatusTest.java 44 String[] str = {"NOT_HANDSHAKING", "FINISHED", "NEED_TASK", "NEED_WRAP", "NEED_UNWRAP"}; local
46 if (enS.length == str.length) {
49 assertEquals("Incorrect Status", enS[i].toString(), str[i]);
66 String[] str = {"FINISHED", "NEED_TASK", "NEED_UNWRAP", "NEED_WRAP", "NOT_HANDSHAKING"}; local
72 for (int i = 0; i < str.length; i++) {
74 enS = SSLEngineResult.HandshakeStatus.valueOf(str[i]);
75 assertEquals("Incorrect Status", enS.toString(), str[i]);
77 fail("Unexpected exception " + e + " was thrown for " + str[i]);
  /packages/apps/Email/src/org/apache/commons/io/output/
NullWriter.java 70 * @param str The string to write
72 public void write(String str) {
78 * @param str The string to write
82 public void write(String str, int st, int end) {
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
DurationTest.java 25 private void verifyDuration(String str,
30 duration.parse(str);
32 assertEquals("Duration sign is not equal for " + str, sign, duration.sign);
33 assertEquals("Duration weeks is not equal for " + str, weeks, duration.weeks);
34 assertEquals("Duration days is not equal for " + str, days, duration.days);
35 assertEquals("Duration hours is not equal for " + str, hours, duration.hours);
36 assertEquals("Duration minutes is not equal for " + str, minutes, duration.minutes);
37 assertEquals("Duration seconds is not equal for " + str, seconds, duration.seconds);
  /system/media/opensles/libopensles/
trace.c 49 const char *str = slesutResultToString(result); local
50 if (NULL != str) {
51 SL_LOGW("Leaving %s (%s)", function, str);
112 const char *str = slesutResultToString(result); local
114 if (NULL != str) {
116 &underscore[1], str);
122 if (NULL != str) {
123 SL_LOGW("Leaving %s (%s)", function, str);
  /external/astl/src/
streambuf.cpp 42 streamsize streambuf::xsputn(const char_type* str, streamsize num) {
50 traits_type::copy(this->pptr(), str, len);
52 str += len;
61 int_type c = this->overflow(traits_type::to_int_type(*str));
64 ++str;
  /external/icu4c/samples/translit/answers/
unaccent.cpp 27 UnicodeString str(c);
31 t->normalizer.setText(str, status);
44 UnicodeString str("a");
49 str.setCharAt(0, d);
50 text.handleReplaceBetween(index.start, index.start+1, str);
  /external/webkit/WebCore/platform/text/wince/
TextBoundariesWince.cpp 51 String str(buffer, len);
55 while (currentPosition >= 0 && isLetter(str[currentPosition])) {
56 UChar c = str[currentPosition];
65 while (isLetter(str[currentPosition])) {
66 foundWord.append(str[currentPosition]);
  /external/webkit/WebKit/android/jni/
WebCoreJni.cpp 61 WebCore::String to_string(JNIEnv* env, jstring str)
63 if (!str || !env)
65 const jchar* s = env->GetStringChars(str, NULL);
68 WebCore::String ret(s, env->GetStringLength(str));
69 env->ReleaseStringChars(str, s);
  /packages/apps/Tag/src/com/android/apps/tag/
HelpUtils.java 33 private static String replaceLocale(String str) {
35 if (str.contains("%locale%")) {
37 str = str.replace("%locale%", locale.getLanguage());
39 return str;

Completed in 1600 milliseconds

1 2 3 4 56 7 8 91011>>