HomeSort by relevance Sort by last modified time
    Searched defs:conv (Results 1 - 25 of 98) sorted by null

1 2 3 4

  /external/chromium_org/third_party/icu/source/i18n/
csmatch.cpp 51 UConverter *conv = ucnv_open(getName(), status); local
52 int32_t result = ucnv_toUChars(conv, buf, cap, (const char *) textIn->fRawInput, textIn->fRawLength, status);
54 ucnv_close(conv);
  /external/icu4c/i18n/
csmatch.cpp 61 UConverter *conv = ucnv_open(getName(), status); local
62 int32_t result = ucnv_toUChars(conv, buf, cap, (const char *) textIn->fRawInput, textIn->fRawLength, status);
64 ucnv_close(conv);
  /external/compiler-rt/lib/tsan/rtl/
tsan_suppressions.cc 78 SuppressionType conv(ReportType typ) { function in namespace:__tsan
100 SuppressionType stype = conv(typ);
122 SuppressionType stype = conv(typ);
  /external/sfntly/cpp/src/test/
test_utils.cc 76 UConverter* conv = ucnv_open(charset_name, &status); local
79 return conv; // returns NULL @ error anyway
test_utils_test.cc 32 UConverter* conv = TestUtils::GetEncoder("utf8"); local
33 EXPECT_TRUE(conv != NULL);
41 int32_t encoded = TestUtils::EncodeOneChar(conv, (int16_t)from[i]);
48 ucnv_close(conv);
53 ucnv_close(conv);
  /external/chromium_org/remoting/host/
pam_authorization_factory_posix.cc 109 struct pam_conv conv = { PamConversation, NULL }; local
112 &conv, &handle);
  /external/chromium_org/third_party/libxml/src/include/libxml/
xmlIO.h 149 xmlBufferPtr conv; /* if encoder != NULL buffer for output */ member in struct:_xmlOutputBuffer
  /external/libxml2/include/libxml/
xmlIO.h 149 xmlBufferPtr conv; /* if encoder != NULL buffer for output */ member in struct:_xmlOutputBuffer
  /external/llvm/lib/Target/NVPTX/
NVVMReflect.cpp 156 const Value *conv = Reflect->getArgOperand(0); local
157 assert(isa<CallInst>(conv) && "Expected a const-to-gen conversion");
158 const CallInst *ConvCall = cast<CallInst>(conv);
  /dalvik/vm/
Misc.h 49 union { u4 in; float out; } conv; local
50 conv.in = val;
51 return conv.out;
54 union { float in; u4 out; } conv; local
55 conv.in = val;
56 return conv.out;
  /dalvik/vm/mterp/c/
header.cpp 151 union { s8 ll; u4 parts[2]; } conv; local
154 conv.parts[0] = ptr[0];
155 conv.parts[1] = ptr[1];
156 return conv.ll;
168 union { s8 ll; u4 parts[2]; } conv; local
171 conv.ll = val;
172 ptr[0] = conv.parts[0];
173 ptr[1] = conv.parts[1];
183 union { double d; u4 parts[2]; } conv; local
186 conv.parts[0] = ptr[0]
200 union { double d; u4 parts[2]; } conv; local
    [all...]
  /external/chromium_org/third_party/icu/source/common/
ustr_wcs.c 71 UConverter* conv = NULL; local
80 conv = u_getDefaultConverter(pErrorCode);
97 ucnv_fromUnicode(conv,&tempBuf,tempBufLimit,&pSrc,pSrcLimit,NULL,(UBool)(pSrc==pSrcLimit),pErrorCode);
216 u_releaseDefaultConverter(conv);
282 UConverter* conv = NULL; local
428 conv= u_getDefaultConverter(pErrorCode);
430 if(U_FAILURE(*pErrorCode)|| conv==NULL){
439 ucnv_toUnicode(conv,&pTarget,pTargetLimit,(const char**)&pCSrc,pCSrcLimit,NULL,(UBool)(pCSrc==pCSrcLimit),pErrorCode);
470 u_releaseDefaultConverter(conv);
  /external/chromium_org/third_party/skia/src/gpu/effects/
GrConfigConversionEffect.cpp 80 const GrConfigConversionEffect& conv = drawEffect.castEffect<GrConfigConversionEffect>(); local
81 fEffectMatrix.setData(uman, conv.getMatrix(), drawEffect, conv.texture(0));
85 const GrConfigConversionEffect& conv = drawEffect.castEffect<GrConfigConversionEffect>(); local
86 EffectKey key = static_cast<EffectKey>(conv.swapsRedAndBlue()) | (conv.pmConversion() << 1);
88 EffectKey matrixKey = GrGLEffectMatrix::GenKey(conv.getMatrix(),
90 conv.coordsType(),
91 conv.texture(0));
GrConvolutionEffect.cpp 113 const GrConvolutionEffect& conv = drawEffect.castEffect<GrConvolutionEffect>(); local
114 GrTexture& texture = *conv.texture(0);
116 GrAssert(conv.radius() == fRadius);
119 switch (conv.direction()) {
130 if (conv.useBounds()) {
131 const float* bounds = conv.bounds();
132 if (Gr1DKernelEffect::kY_Direction == conv.direction() &&
139 uman.set1fv(fKernelUni, 0, this->width(), conv.kernel());
140 fEffectMatrix.setData(uman, conv.getMatrix(), drawEffect, conv.texture(0))
145 const GrConvolutionEffect& conv = drawEffect.castEffect<GrConvolutionEffect>(); local
    [all...]
  /external/e2fsprogs/intl/
gettextP.h 117 __gconv_t conv; member in struct:loaded_domain
120 iconv_t conv; member in struct:loaded_domain
  /external/icu4c/common/
ustr_wcs.cpp 74 UConverter* conv = NULL; local
83 conv = u_getDefaultConverter(pErrorCode);
100 ucnv_fromUnicode(conv,&tempBuf,tempBufLimit,&pSrc,pSrcLimit,NULL,(UBool)(pSrc==pSrcLimit),pErrorCode);
223 u_releaseDefaultConverter(conv);
289 UConverter* conv = NULL; local
435 conv= u_getDefaultConverter(pErrorCode);
437 if(U_FAILURE(*pErrorCode)|| conv==NULL){
446 ucnv_toUnicode(conv,&pTarget,pTargetLimit,(const char**)&pCSrc,pCSrcLimit,NULL,(UBool)(pCSrc==pCSrcLimit),pErrorCode);
477 u_releaseDefaultConverter(conv);
  /external/icu4c/samples/ugrep/
ugrep.cpp 317 UConverter* conv; local
318 conv = ucnv_open(encoding, &status);
328 uint32_t destCap = ucnv_toUChars(conv,
341 ucnv_toUChars(conv,
351 ucnv_close(conv);
  /external/skia/src/gpu/effects/
GrConfigConversionEffect.cpp 80 const GrConfigConversionEffect& conv = drawEffect.castEffect<GrConfigConversionEffect>(); local
81 fEffectMatrix.setData(uman, conv.getMatrix(), drawEffect, conv.texture(0));
85 const GrConfigConversionEffect& conv = drawEffect.castEffect<GrConfigConversionEffect>(); local
86 EffectKey key = static_cast<EffectKey>(conv.swapsRedAndBlue()) | (conv.pmConversion() << 1);
88 EffectKey matrixKey = GrGLEffectMatrix::GenKey(conv.getMatrix(),
90 conv.coordsType(),
91 conv.texture(0));
  /frameworks/av/media/libmedia/
MediaScannerClient.cpp 143 UConverter *conv = ucnv_open(enc, &status); local
151 ucnv_close(conv);
181 ucnv_convertEx(utf8Conv, conv, &target, target + targetLength,
195 ucnv_close(conv);
  /packages/apps/Mms/src/com/android/mms/ui/
ConversationListAdapter.java 56 Conversation conv = Conversation.from(context, cursor); local
57 headerView.bind(context, conv);
92 Conversation conv = Conversation.from(mContext, cursor); local
93 conv.setIsChecked(false);
RecipientListActivity.java 70 Conversation conv = Conversation.get(this, mThreadId, true); local
71 if (conv == null) {
76 final ContactList contacts = conv.getRecipients();
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
ConversationPositionTracker.java 60 final Conversation conv = cursor.getConversation(); local
61 conv.position = position;
62 return conv;
  /packages/apps/UnifiedEmail/tests/src/com/android/mail/browse/
SendersFormattingTests.java 40 ConversationInfo conv = createConversationInfo(1); local
43 conv.addMessage(info);
46 SendersView.format(getContext(), conv, "", 100, strings, emailDisplays, emailDisplays, local
55 SendersView.format(getContext(), conv, "", 100, strings, emailDisplays, emailDisplays, local
66 SendersView.format(getContext(), conv, "", 100, strings, emailDisplays, emailDisplays, local
76 ConversationInfo conv = createConversationInfo(2); local
80 conv.addMessage(info);
82 conv.addMessage(info2);
83 SendersView.format(getContext(), conv, "", 100, strings, emailDisplays, emailDisplays, local
98 final ConversationInfo conv = createConversationInfo(1) local
114 final ConversationInfo conv = new ConversationInfo(42, 49, firstSnippet, local
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
idnaconf.cpp 105 UConverter* conv = ucnv_open("utf-8", &status); local
106 int dest_len = ucnv_toUChars(conv,
117 ucnv_toUChars(conv, dest, dest_len + 1, source, source_len, &status);
124 ucnv_close(conv);
129 ucnv_close(conv);
  /external/chromium_org/third_party/icu/source/test/perf/convperf/
convperf.h 26 UConverter* conv; member in class:ICUToUnicodePerfFunction
34 conv = ucnv_open(name,&status);
38 conv = NULL;
43 int32_t reqdLen = ucnv_toUChars(conv, target, 0,
59 ucnv_toUnicode(conv, &myTarget, targetLimit, &mySrc, sourceLimit, NULL, TRUE, status);
66 ucnv_close(conv);
71 UConverter* conv; member in class:ICUFromUnicodePerfFunction
80 conv = ucnv_open(name,&status);
84 conv = NULL;
89 int32_t reqdLen = ucnv_fromUChars(conv, target, 0
    [all...]

Completed in 772 milliseconds

1 2 3 4