Searched defs:string (Results 176 - 200 of 687) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/platform/haiku/
H A DFileSystemHaiku.cpp45 CString fileSystemRepresentation(const String& string) argument
47 return string.utf8();
/external/webkit/Source/WebCore/platform/text/
H A DTextCodecUTF16.cpp131 CString string = CString::newUninitialized(length * 2, bytes); local
149 return string;
/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DWebRequestContext.cpp36 static std::string acceptLanguageStdString("");
89 void WebRequestContext::setUserAgent(const String& string) argument
92 m_userAgent = string.utf8().data();
105 const std::string& WebRequestContext::GetUserAgent(const GURL& url) const
111 void WebRequestContext::setAcceptLanguage(const String& string) argument
114 acceptLanguageStdString = string.utf8().data();
115 acceptLanguageWtfString = string;
118 const std::string& WebRequestContext::accept_language() const
/external/webkit/Source/WebKit/android/nav/
H A DCachedInput.cpp67 const WTF::String& string) {
70 const UChar* ch = string.characters();
66 printWebCoreString(const char* label, const WTF::String& string) argument
/external/webkit/Source/WebKit2/Shared/Plugins/
H A DNPVariantData.cpp92 NPVariantData NPVariantData::makeString(const char* string, unsigned length) argument
97 npVariantData.m_stringValue = CString(string, length);
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
H A DNPRuntimeUtilities.cpp47 NPString createNPString(const CString& string) argument
49 char* utf8Characters = npnMemNewArray<char>(string.length());
50 memcpy(utf8Characters, string.data(), string.length());
54 npString.UTF8Length = string.length();
/external/webkit/Tools/DumpRenderTree/qt/
H A DTextInputControllerQt.cpp133 void TextInputController::setMarkedText(const QString& string, int start, int end) argument
138 QInputMethodEvent event(string, attributes);
142 void TextInputController::insertText(const QString& string) argument
145 QInputMethodEvent event(string, attributes);
146 event.setCommitString(string);
/external/webkit/Tools/MiniBrowser/qt/
H A Dutils.cpp78 QUrl urlFromUserInput(const QString& string) argument
80 QString input(string);
/external/webkit/Tools/QtTestBrowser/
H A Dutils.cpp78 QUrl urlFromUserInput(const QString& string) argument
80 QString input(string);
/external/webkit/Tools/wx/packaging/
H A Dbuild-win-installer.py28 import sys, os, string namespace
/external/android-mock/tests/com/google/android/testing/mocking/
H A DClassDoesWorkInConstructor.java42 public Object fooObject(String string) { argument
/external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
H A DInflaterOutputStreamTest.java383 // Compress the test string into compressedBytes
384 private int compressToBytes(String string) { argument
385 byte[] input = string.getBytes();
/external/bison/lib/
H A Dxmalloc.c27 #include <string.h>
238 xstrdup (char const *string) argument
240 return xmemdup (string, strlen (string) + 1);
/external/chromium/sdch/open-vcdiff/src/
H A Dencodetable.h22 #include <string>
103 // string. The output string is not null-terminated and may contain embedded
110 typedef std::string string; typedef in class:open_vcdiff::VCDiffCodeTableWriter
135 // instructions_and_sizes_ string.
149 // Appends the size value to the string as a variable-length integer.
150 static void AppendSizeToString(size_t size, string* out);
152 // Appends the size value to the output string as a variable-length integer.
160 // None of the following 'string' object
[all...]
H A Dheaderparser_test.cc19 #include <string>
31 typedef std::string string; typedef in class:open_vcdiff::__anon2392::VCDiffHeaderParserTest
92 string encoded_buffer_;
/external/chromium/testing/gtest/include/gtest/internal/
H A Dgtest-string.h45 // string.h is not guaranteed to provide strcpy on C++ Builder.
49 #include <string.h>
52 #include <string>
57 // String - a UTF-8 string class.
59 // For historic reasons, we don't use std::string.
61 // TODO(wan@google.com): replace this class with std::string or
64 // Note that String can represent both NULL and the empty string,
65 // while std::string cannot represent NULL.
67 // NULL and the empty string are considered different. NULL is less
68 // than anything (including the empty string) excep
230 operator ::std::string() const { return ::std::string(c_str(), length()); } function in class:testing::internal::String::operator::std
237 operator ::string() const { return ::string(c_str(), length()); } function in class:testing::internal::String::operator
[all...]
/external/clang/tools/libclang/
H A DCXString.cpp113 const char *clang_getCString(CXString string) { argument
114 if (string.private_flags == (unsigned) CXS_StringBuf) {
115 return ((CXStringBuf*)string.data)->Data.data();
117 return (const char*) string.data;
120 void clang_disposeString(CXString string) { argument
121 switch ((CXStringFlag) string.private_flags) {
125 if (string.data)
126 free((void*)string.data);
129 disposeCXStringBuf((CXStringBuf *) string.data);
/external/dropbear/
H A Ddss.c135 * string "ssh-dss"
174 char * string = NULL; local
183 string = buf_getstring(buf, &stringlen);
196 bytes_to_mp(&val1, &string[SHA1_HASH_SIZE], SHA1_HASH_SIZE);
218 bytes_to_mp(&val1, &string[0], SHA1_HASH_SIZE);
254 m_free(string);
/external/e2fsprogs/lib/e2p/
H A Dmntopts.c13 #include <string.h>
21 const char *string; member in struct:mntopt
42 for (f = mntopt_list; f->string; f++) {
44 return f->string;
51 int e2p_string2mntopt(char *string, unsigned int *mask) argument
57 for (f = mntopt_list; f->string; f++) {
58 if (!strcasecmp(string, f->string)) {
63 if (strncasecmp(string, "MNTOPT_", 8))
66 if (string[
[all...]
/external/embunit/src/
H A DstdImpl.c111 static char* _xtoa(unsigned long v,char *string, int r, int is_neg) argument
113 char *start = string;
127 *string++ = *--p;
130 *string = '\0';
135 char* stdimpl_itoa(int v,char *string,int r) argument
138 return _xtoa((unsigned long)(-v), string, r, 1);
140 return _xtoa((unsigned long)(v), string, r, 0);
/external/emma/core/java12/com/vladium/util/
H A DWCMatcher.java75 // private boolean matches (int pi, int si, final char [] string)
80 // return si == string.length;
87 // return (si < string.length) && matches (pi + 1, si + 1, string);
92 // return matches (pi + 1, si, string) || ((si < string.length) && matches (pi, si + 1, string));
97 // return (si < string.length) && (m_pattern [pi] == string [si]) && matches (pi + 1, si + 1, string);
293 matches(final char [] string) argument
[all...]
/external/gtest/include/gtest/internal/
H A Dgtest-string.h44 #include <string.h>
48 #include <string>
54 // String - a UTF-8 string class.
56 // We cannot use std::string as Microsoft's STL implementation in
61 // Also, String is different from std::string in that it can represent
62 // both NULL and the empty string, while std::string cannot represent
65 // NULL and the empty string are considered different. NULL is less
66 // than anything (including the empty string) except itself.
70 // string clas
233 operator ::std::string() const { return ::std::string(c_str_); } function in class:testing::internal::String::operator::std
239 operator ::string() const { return ::string(c_str_); } function in class:testing::internal::String::operator
[all...]
/external/harfbuzz/tests/linebreaking/
H A Dharfbuzz-qt.cpp103 void HB_TextCodec_FreeResult(char *string) argument
105 free(string);
/external/icu4c/samples/legacy/
H A Dnewcol.cpp27 int32_t getSortKey_current(const char *locale, const UChar *string, int32_t sLen, uint8_t *buffer, int32_t bLen) { argument
33 int32_t result = ucol_getSortKey(coll, string, sLen, buffer, bLen);
H A Doldcol.cpp28 int32_t getSortKey_legacy(const char *locale, const UChar *string, int32_t sLen, uint8_t *buffer, int32_t bLen) { argument
34 int32_t result = ucol_getSortKey(coll, string, sLen, buffer, bLen);

Completed in 503 milliseconds

1234567891011>>