Searched refs:strLen (Results 1 - 25 of 46) sorted by relevance

12

/external/chromium_org/third_party/icu/source/io/
H A Dufmt_cmn.h28 #define MAX_UCHAR_BUFFER_NEEDED(strLen) ((strLen+1)*U16_MAX_LENGTH*sizeof(UChar))
/external/icu/icu4c/source/io/
H A Dufmt_cmn.h28 #define MAX_UCHAR_BUFFER_NEEDED(strLen) ((strLen+1)*U16_MAX_LENGTH*sizeof(UChar))
/external/chromium_org/third_party/webrtc/voice_engine/
H A Dvoe_hardware_impl.cc208 const uint16_t strLen = 128; local
211 assert(strLen == kAdmMaxDeviceNameSize);
212 assert(strLen == kAdmMaxGuidSize);
214 char name[strLen];
215 char guid[strLen];
226 strncpy(strNameUTF8, name, strLen);
233 strncpy(strGuidUTF8, guid, strLen);
264 const uint16_t strLen = 128; local
267 assert(strLen == kAdmMaxDeviceNameSize);
268 assert(strLen
[all...]
/external/chromium_org/third_party/icu/source/common/
H A Duset.cpp88 uset_addString(USet* set, const UChar* str, int32_t strLen) { argument
89 // UnicodeString handles -1 for strLen
90 UnicodeString s(strLen<0, str, strLen);
95 uset_addAllCodePoints(USet* set, const UChar *str, int32_t strLen) { argument
96 // UnicodeString handles -1 for strLen
97 UnicodeString s(str, strLen);
112 uset_removeString(USet* set, const UChar* str, int32_t strLen) { argument
113 UnicodeString s(strLen==-1, str, strLen);
173 uset_containsString(const USet* set, const UChar* str, int32_t strLen) argument
184 uset_containsAllCodePoints(const USet* set, const UChar *str, int32_t strLen) argument
[all...]
/external/icu/icu4c/source/common/
H A Duset.cpp88 uset_addString(USet* set, const UChar* str, int32_t strLen) { argument
89 // UnicodeString handles -1 for strLen
90 UnicodeString s(strLen<0, str, strLen);
95 uset_addAllCodePoints(USet* set, const UChar *str, int32_t strLen) { argument
96 // UnicodeString handles -1 for strLen
97 UnicodeString s(str, strLen);
112 uset_removeString(USet* set, const UChar* str, int32_t strLen) { argument
113 UnicodeString s(strLen==-1, str, strLen);
173 uset_containsString(const USet* set, const UChar* str, int32_t strLen) argument
184 uset_containsAllCodePoints(const USet* set, const UChar *str, int32_t strLen) argument
[all...]
/external/protobuf/java/src/main/java/com/google/protobuf/nano/
H A DMessageNanoPrinter.java222 int strLen = str.length();
223 StringBuilder b = new StringBuilder(strLen);
224 for (int i = 0; i < strLen; i++) {
/external/chromium_org/third_party/icu/source/common/unicode/
H A Duset.h561 * uset_containsString(set, str, strLen) will return TRUE.
565 * @param strLen the length of the string or -1 if null terminated.
569 uset_addString(USet* set, const UChar* str, int32_t strLen);
577 * @param strLen the length of the string or -1 if null terminated.
581 uset_addAllCodePoints(USet* set, const UChar *str, int32_t strLen);
608 * uset_containsString(set, str, strLen) will return FALSE.
612 * @param strLen the length of the string or -1 if null terminated.
616 uset_removeString(USet* set, const UChar* str, int32_t strLen);
785 * @param strLen the length of the string or -1 if null terminated.
790 uset_containsString(const USet* set, const UChar* str, int32_t strLen);
[all...]
/external/icu/icu4c/source/common/unicode/
H A Duset.h561 * uset_containsString(set, str, strLen) will return TRUE.
565 * @param strLen the length of the string or -1 if null terminated.
569 uset_addString(USet* set, const UChar* str, int32_t strLen);
577 * @param strLen the length of the string or -1 if null terminated.
581 uset_addAllCodePoints(USet* set, const UChar *str, int32_t strLen);
608 * uset_containsString(set, str, strLen) will return FALSE.
612 * @param strLen the length of the string or -1 if null terminated.
616 uset_removeString(USet* set, const UChar* str, int32_t strLen);
785 * @param strLen the length of the string or -1 if null terminated.
790 uset_containsString(const USet* set, const UChar* str, int32_t strLen);
[all...]
/external/chromium_org/third_party/skia/src/utils/
H A DSkOSFile.cpp207 size_t strLen = strlen(str); local
209 return strLen >= suffixLen &&
210 memcmp(suffix.c_str(), str + strLen - suffixLen, suffixLen) == 0;
/external/deqp/execserver/
H A DxsProtocol.cpp135 int strLen = (int)strlen(value); local
137 m_buf.resize(curPos + strLen+1);
138 deMemcpy(&m_buf[curPos], &value[0], strLen+1);
/external/skia/src/utils/
H A DSkOSFile.cpp203 size_t strLen = strlen(str); local
205 return strLen >= suffixLen &&
206 memcmp(suffix.c_str(), str + strLen - suffixLen, suffixLen) == 0;
/external/chromium_org/third_party/skia/src/core/
H A DSkString.cpp42 size_t strLen = strlen(string); local
44 return strLen >= suffixLen &&
45 !strncmp(string + strLen - suffixLen, suffixStr, suffixLen);
50 size_t strLen = strlen(string); local
51 if (0 == strLen) {
54 return (suffixChar == string[strLen-1]);
/external/skia/src/core/
H A DSkString.cpp42 size_t strLen = strlen(string); local
44 return strLen >= suffixLen &&
45 !strncmp(string + strLen - suffixLen, suffixStr, suffixLen);
50 size_t strLen = strlen(string); local
51 if (0 == strLen) {
54 return (suffixChar == string[strLen-1]);
/external/llvm/include/llvm/ADT/
H A DStringMap.h118 explicit StringMapEntry(unsigned strLen) argument
119 : StringMapEntryBase(strLen), second() {}
120 StringMapEntry(unsigned strLen, ValueTy V) argument
121 : StringMapEntryBase(strLen), second(std::move(V)) {}
/external/chromium_org/third_party/icu/source/i18n/
H A Duspoof_conf.cpp333 int32_t strLen = s->fStr->length(); local
335 U_ASSERT(strLen >= previousStringLength);
336 if (strLen == 1) {
342 if ((strLen > previousStringLength) && (previousStringLength >= 4)) {
349 previousStringLength = strLen;
H A Ddtfmtsym.cpp1255 int32_t strLen = 0; local
1260 const UChar *resStr = ures_getStringByIndex(data, i, &strLen, &status);
1262 (*(field)+i)->setTo(TRUE, resStr, strLen);
1273 initField(UnicodeString **field, int32_t& length, const UChar *data, LastResortSize numStr, LastResortSize strLen, UErrorCode &status) { argument
1281 (*(field)+i)->setTo(TRUE, data+(i*((int32_t)strLen)), -1);
1295 int32_t strLen = 0; local
1296 const UChar *resStr = ures_getStringByKey(data, gNamesLeapTag, &strLen, &status);
1298 field[index].setTo(TRUE, resStr, strLen);
/external/icu/icu4c/source/i18n/
H A Duspoof_conf.cpp333 int32_t strLen = s->fStr->length(); local
335 U_ASSERT(strLen >= previousStringLength);
336 if (strLen == 1) {
342 if ((strLen > previousStringLength) && (previousStringLength >= 4)) {
349 previousStringLength = strLen;
H A Ddtfmtsym.cpp1265 int32_t strLen = 0; local
1270 const UChar *resStr = ures_getStringByIndex(data, i, &strLen, &status);
1272 (*(field)+i)->setTo(TRUE, resStr, strLen);
1283 initField(UnicodeString **field, int32_t& length, const UChar *data, LastResortSize numStr, LastResortSize strLen, UErrorCode &status) { argument
1291 (*(field)+i)->setTo(TRUE, data+(i*((int32_t)strLen)), -1);
1305 int32_t strLen = 0; local
1306 const UChar *resStr = ures_getStringByKey(data, gNamesLeapTag, &strLen, &status);
1308 field[index].setTo(TRUE, resStr, strLen);
/external/chromium_org/third_party/skia/src/ports/
H A DSkFontConfigInterface_direct.cpp48 uint32_t strLen, weight, width; local
49 (void)buffer.readU32(&strLen);
56 fString.resize(strLen);
57 (void)buffer.read(fString.writable_str(), strLen);
H A DSkRemotableFontMgr_win_dw.cpp467 UINT32 strLen = static_cast<UINT32>( variable
470 HR_GENERAL(dwFactory->CreateTextLayout(str, strLen, fallbackFormat.get(),
/external/skia/src/ports/
H A DSkFontConfigInterface_direct.cpp48 uint32_t strLen, weight, width; local
49 (void)buffer.readU32(&strLen);
56 fString.resize(strLen);
57 (void)buffer.read(fString.writable_str(), strLen);
/external/fonttools/Lib/fontTools/ttLib/tables/
H A DM_E_T_A_.py235 strLen = len(string)
237 while i < strLen:
/external/fonttools/Tools/fontTools/ttLib/tables/
H A DM_E_T_A_.py235 strLen = len(string)
237 while i < strLen:
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dcreststn.c678 int32_t strLen =0; local
679 const UChar* str = tres_getString(theBundle, -1, "testincludeUTF",&strLen,&status);
693 if(strLen != len ){
694 log_err("Did not get the expected len for riwords. Expected: %i , Got: %i\n", len ,strLen);
697 if(u_strlen(str) != strLen || str[strLen]!= 0 ){
700 if(u_strncmp(str, buffer,strLen)!=0){
715 int32_t strLen =0; local
716 const UChar* str = tres_getString(theBundle, -1, "testinclude",&strLen,&status);
731 if(strLen !
2165 int32_t strLen = 0, seqLen = 0;/*, binLen = 0, binSeqLen = 0;*/ local
[all...]
/external/icu/icu4c/source/test/cintltst/
H A Dcreststn.c680 int32_t strLen =0; local
681 const UChar* str = tres_getString(theBundle, -1, "testincludeUTF",&strLen,&status);
695 if(strLen != len ){
696 log_err("Did not get the expected len for riwords. Expected: %i , Got: %i\n", len ,strLen);
699 if(u_strlen(str) != strLen || str[strLen]!= 0 ){
702 if(u_strncmp(str, buffer,strLen)!=0){
717 int32_t strLen =0; local
718 const UChar* str = tres_getString(theBundle, -1, "testinclude",&strLen,&status);
733 if(strLen !
2173 int32_t strLen = 0, seqLen = 0;/*, binLen = 0, binSeqLen = 0;*/ local
[all...]

Completed in 8843 milliseconds

12