/external/elfutils/0.153/m4/ |
iconv.m4 | 93 iconv_t cd_88591_to_utf8 = iconv_open ("utf8", "iso88591"); 119 && iconv_open ("utf8", "eucJP") == (iconv_t)(-1))
|
/external/llvm/lib/Support/Windows/ |
WindowsSupport.h | 166 std::error_code UTF8ToUTF16(StringRef utf8, SmallVectorImpl<wchar_t> &utf16); 168 SmallVectorImpl<char> &utf8);
|
/external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/internal/spdy/ |
SpdyServer.java | 74 return Arrays.asList(Protocol.SPDY_3.name.utf8()); 88 path = requestHeaders.get(i).value.utf8();
|
/frameworks/base/tools/aapt/ |
StringPool.h | 82 * If 'utf8' is true, strings will be encoded with UTF-8 instead of 85 explicit StringPool(bool utf8 = false);
|
/ndk/sources/host-tools/sed-4.2.1/m4/ |
iconv.m4 | 93 iconv_t cd_88591_to_utf8 = iconv_open ("utf8", "iso88591"); 119 && iconv_open ("utf8", "eucJP") == (iconv_t)(-1))
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/pulse/ |
pulseaudio.h | 40 #include <pulse/utf8.h> 54 * operation.h,\ref volume.h, \ref xmalloc.h, \ref utf8.h, \ref
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/pulse/ |
pulseaudio.h | 40 #include <pulse/utf8.h> 54 * operation.h,\ref volume.h, \ref xmalloc.h, \ref utf8.h, \ref
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
locale.py | 713 # updated 'sr_yu.utf8@cyrillic' -> 'sr_YU.UTF-8' to 'sr_CS.UTF-8' 731 # updated 'sr_cs.utf8@latn' -> 'sr_CS.UTF-8' to 'sr_RS.UTF-8@latin' 734 # updated 'sr_yu.utf8@cyrillic' -> 'sr_CS.UTF-8' to 'sr_RS.UTF-8' 797 'be_by.utf8@latin': 'be_BY.UTF-8@latin', 814 'br_fr.utf8@euro': 'br_FR.UTF-8', 832 'ca_ad.utf8@euro': 'ca_AD.UTF-8', 838 'ca_es.utf8@euro': 'ca_ES.UTF-8', [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
locale.py | 713 # updated 'sr_yu.utf8@cyrillic' -> 'sr_YU.UTF-8' to 'sr_CS.UTF-8' 731 # updated 'sr_cs.utf8@latn' -> 'sr_CS.UTF-8' to 'sr_RS.UTF-8@latin' 734 # updated 'sr_yu.utf8@cyrillic' -> 'sr_CS.UTF-8' to 'sr_RS.UTF-8' 797 'be_by.utf8@latin': 'be_BY.UTF-8@latin', 814 'br_fr.utf8@euro': 'br_FR.UTF-8', 832 'ca_ad.utf8@euro': 'ca_AD.UTF-8', 838 'ca_es.utf8@euro': 'ca_ES.UTF-8', [all...] |
/external/chromium_org/chrome/renderer/autofill/ |
password_autofill_agent_browsertest.cc | 345 static_cast<std::string>(username_element.value().utf8())); 349 checkSuggestedValue ? password_element.suggestedValue().utf8() 350 : password_element.value().utf8())); [all...] |
/external/chromium_org/third_party/libjingle/source/talk/base/ |
win32.cc | 386 bool Utf8ToWindowsFilename(const std::string& utf8, std::wstring* filename) { 393 int wlen = ::MultiByteToWideChar(CP_UTF8, 0, utf8.c_str(), 394 static_cast<int>(utf8.length() + 1), NULL, 400 if (0 == ::MultiByteToWideChar(CP_UTF8, 0, utf8.c_str(), 401 static_cast<int>(utf8.length() + 1),
|
/external/chromium_org/third_party/libxslt/libxslt/ |
xsltlocale.c | 82 char localeName[XSLTMAX_LANGTAGLEN+6]; /* 6 chars for ".utf8\0" */ 88 /* Convert something like "pt-br" to "pt_BR.utf8" */ 112 memcpy(q, ".utf8", 6); 124 memcpy(q, ".utf8", 6); 141 memcpy(q, ".utf8", 6);
|
/external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/ |
Utf8.java | 67 final class Utf8 { 68 private Utf8() {} 119 * partialIsValidUtf8(bytes, index, limit) == Utf8.COMPLETE}. 131 * @param state either {@link Utf8#COMPLETE} (if this is the initial decoding 238 * partialIsValidUtf8(Utf8.COMPLETE, bytes, index, limit)}.
|
/external/chromium_org/third_party/webrtc/base/ |
win32.cc | 369 bool Utf8ToWindowsFilename(const std::string& utf8, std::wstring* filename) { 376 int wlen = ::MultiByteToWideChar(CP_UTF8, 0, utf8.c_str(), 377 static_cast<int>(utf8.length() + 1), NULL, 383 if (0 == ::MultiByteToWideChar(CP_UTF8, 0, utf8.c_str(), 384 static_cast<int>(utf8.length() + 1),
|
/frameworks/wilhelm/tests/native-media/jni/ |
native-media-jni.c | 346 const char *utf8 = (*env)->GetStringUTFChars(env, filename, NULL); local 347 assert(NULL != utf8); 350 file = fopen(utf8, "rb"); 352 ALOGE("Failed to open %s", utf8); 393 (*env)->ReleaseStringUTFChars(env, filename, utf8);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_multibytecodec_support.py | 38 for native, utf8 in zip(*[StringIO(f).readlines() 41 self.assertEqual(u, utf8.decode('utf-8')) 372 with open(os.path.join(dir, name + '-utf8.txt'), 'rb') as f: 373 utf8 = f.read() 374 return encoded, utf8
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_multibytecodec_support.py | 38 for native, utf8 in zip(*[StringIO(f).readlines() 41 self.assertEqual(u, utf8.decode('utf-8')) 372 with open(os.path.join(dir, name + '-utf8.txt'), 'rb') as f: 373 utf8 = f.read() 374 return encoded, utf8
|
/external/chromium_org/chrome/renderer/net/ |
net_error_helper_core.cc | 114 return error.domain.utf8() == net::kErrorDomain && 153 std::string domain = error.domain.utf8(); 248 // Translate punycode into UTF8, unescape UTF8 URLs. 345 if (error.domain.utf8() != net::kErrorDomain) 359 if (error.domain.utf8() != net::kErrorDomain) 428 return info.error.domain.utf8() == net::kErrorDomain && [all...] |
/external/chromium_org/content/renderer/browser_plugin/ |
browser_plugin.cc | 112 (std::string(element.getAttribute(web_attribute_name).utf8()) != 133 blink::WebString::fromUTF8(attribute_name)).utf8(); 876 name.utf8())); 884 edit_commands_.push_back(EditCommand(name.utf8(), value.utf8())); 903 text.utf8(), 920 text.utf8(), [all...] |
/external/chromium_org/content/renderer/media/ |
media_stream_impl.cc | 42 mandatory_constraints[i].m_name.utf8(), 43 mandatory_constraints[i].m_value.utf8())); 50 optional_constraints[i].m_name.utf8(), 51 optional_constraints[i].m_value.utf8())); 401 << webkit_source->id().utf8(); 411 << "id = " << webkit_source->id().utf8() 412 << ", name = " << webkit_source->name().utf8(); [all...] |
/dalvik/dx/src/com/android/dx/cf/cst/ |
ConstantPoolParser.java | 170 ? Hex.u2(i) + ": utf8{\"" + cst.toHuman() + "\"}" 181 * Populates {@link #offsets} and also completely parse utf8 constants. 358 * Parses a utf8 constant.
|
/external/antlr/antlr-3.4/runtime/C/include/ |
antlr3string.h | 48 * that don't reallocate it, like strchr() etc. Perhaps someone will want to provide implementations for UTF8 196 /// regardless of the current encoding of the string. Because there is currently no UTF8 198 /// applications as it will not contain methods that deal with UTF8 at the moment.
|
/external/chromium_org/chrome/renderer/plugins/ |
chrome_plugin_placeholder.cc | 115 params.mimeType.utf8())); 277 std::string mime_type(GetPluginParams().mimeType.utf8()); 291 GetPluginParams().mimeType.utf8(), GURL(GetPluginParams().url));
|
/external/chromium_org/chromeos/network/ |
shill_property_util.cc | 26 // Replace non UTF8 characters in |str| with a replacement character. 39 // or is not readable UTF8. 167 base::StringPrintf("Validated name %s: UTF8: %s",
|
/external/chromium_org/third_party/WebKit/Source/core/xml/ |
XSLTProcessorLibxslt.cpp | 48 #include "wtf/unicode/UTF8.h" 200 parameterArray[index++] = fastStrDup(it->key.utf8().data()); 201 parameterArray[index++] = fastStrDup(it->value.utf8().data());
|