Home
last modified time | relevance | path

Searched refs:strLen (Results 1 – 25 of 41) sorted by relevance

12

/external/webrtc/webrtc/voice_engine/
Dvoe_hardware_impl.cc164 const uint16_t strLen = 128; in GetRecordingDeviceName() local
167 static_assert(strLen == kAdmMaxDeviceNameSize, ""); in GetRecordingDeviceName()
168 static_assert(strLen == kAdmMaxGuidSize, ""); in GetRecordingDeviceName()
170 char name[strLen]; in GetRecordingDeviceName()
171 char guid[strLen]; in GetRecordingDeviceName()
181 strncpy(strNameUTF8, name, strLen); in GetRecordingDeviceName()
184 strncpy(strGuidUTF8, guid, strLen); in GetRecordingDeviceName()
206 const uint16_t strLen = 128; in GetPlayoutDeviceName() local
209 static_assert(strLen == kAdmMaxDeviceNameSize, ""); in GetPlayoutDeviceName()
210 static_assert(strLen == kAdmMaxGuidSize, ""); in GetPlayoutDeviceName()
[all …]
/external/icu/icu4c/source/common/
Duset.cpp90 uset_addString(USet* set, const UChar* str, int32_t strLen) { in uset_addString() argument
92 UnicodeString s(strLen<0, str, strLen); in uset_addString()
97 uset_addAllCodePoints(USet* set, const UChar *str, int32_t strLen) { in uset_addAllCodePoints() argument
99 UnicodeString s(str, strLen); in uset_addAllCodePoints()
114 uset_removeString(USet* set, const UChar* str, int32_t strLen) { in uset_removeString() argument
115 UnicodeString s(strLen==-1, str, strLen); in uset_removeString()
175 uset_containsString(const USet* set, const UChar* str, int32_t strLen) { in uset_containsString() argument
176 UnicodeString s(strLen==-1, str, strLen); in uset_containsString()
186 uset_containsAllCodePoints(const USet* set, const UChar *str, int32_t strLen) { in uset_containsAllCodePoints() argument
188 UnicodeString s(strLen==-1, str, strLen); in uset_containsAllCodePoints()
Dutext.cpp1200 int32_t strLen = ut->b; in utf8TextAccess() local
1202 if (strLen < 0) { in utf8TextAccess()
1203 strLen = 0x7fffffff; in utf8TextAccess()
1236 U8_NEXT_OR_FFFD(s8, srcIx, strLen, c); in utf8TextAccess()
1251 if (srcIx>=strLen) { in utf8TextAccess()
/external/icu/icu4c/source/common/unicode/
Duset.h575 uset_addString(USet* set, const UChar* str, int32_t strLen);
587 uset_addAllCodePoints(USet* set, const UChar *str, int32_t strLen);
622 uset_removeString(USet* set, const UChar* str, int32_t strLen);
796 uset_containsString(const USet* set, const UChar* str, int32_t strLen);
892 uset_containsAllCodePoints(const USet* set, const UChar *str, int32_t strLen);
/external/icu/icu4c/source/io/
Dufmt_cmn.h30 #define MAX_UCHAR_BUFFER_NEEDED(strLen) ((strLen+1)*U16_MAX_LENGTH*sizeof(UChar)) argument
/external/skia/src/ports/
DSkOSFile_posix.cpp153 size_t strLen = strlen(str); in issuffixfor() local
155 return strLen >= suffixLen && in issuffixfor()
156 memcmp(suffix.c_str(), str + strLen - suffixLen, suffixLen) == 0; in issuffixfor()
DSkFontConfigInterface_direct.cpp103 uint32_t strLen, weight, width; in readFromMemory() local
104 (void)buffer.readU32(&strLen); in readFromMemory()
111 fString.resize(strLen); in readFromMemory()
112 (void)buffer.read(fString.writable_str(), strLen); in readFromMemory()
DSkRemotableFontMgr_win_dw.cpp398 UINT32 strLen = static_cast<UINT32>( in matchNameStyleCharacter() local
401 HR_GENERAL(dwFactory->CreateTextLayout(str, strLen, fallbackFormat.get(), in matchNameStyleCharacter()
DSkFontMgr_win_dw.cpp747 UINT32 strLen = static_cast<UINT32>( in onMatchFamilyStyleCharacter() local
776 new FontFallbackSource(str, strLen, *dwBcp47, numberSubstitution.get())); in onMatchFamilyStyleCharacter()
783 strLen, in onMatchFamilyStyleCharacter()
817 HRNM(fFactory->CreateTextLayout(str, strLen, fallbackFormat.get(), in onMatchFamilyStyleCharacter()
/external/protobuf/javanano/src/main/java/com/google/protobuf/nano/
DMessageNanoPrinter.java240 int strLen = str.length(); in escapeString() local
241 StringBuilder b = new StringBuilder(strLen); in escapeString()
242 for (int i = 0; i < strLen; i++) { in escapeString()
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
DStringMap.h124 explicit StringMapEntry(unsigned strLen) in StringMapEntry() argument
125 : StringMapEntryBase(strLen), second() {} in StringMapEntry()
126 StringMapEntry(unsigned strLen, const ValueTy &V) in StringMapEntry() argument
127 : StringMapEntryBase(strLen), second(V) {} in StringMapEntry()
/external/deqp/execserver/
DxsProtocol.cpp135 int strLen = (int)strlen(value); in put() local
137 m_buf.resize(curPos + strLen+1); in put()
138 deMemcpy(&m_buf[curPos], &value[0], strLen+1); in put()
/external/icu/icu4c/source/test/cintltst/
Dcreststn.c679 int32_t strLen =0; in TestNewTypes() local
680 const UChar* str = tres_getString(theBundle, -1, "testincludeUTF",&strLen,&status); in TestNewTypes()
694 if(strLen != len ){ in TestNewTypes()
695 … log_err("Did not get the expected len for riwords. Expected: %i , Got: %i\n", len ,strLen); in TestNewTypes()
698 if(u_strlen(str) != strLen || str[strLen]!= 0 ){ in TestNewTypes()
701 if(u_strncmp(str, buffer,strLen)!=0){ in TestNewTypes()
716 int32_t strLen =0; in TestNewTypes() local
717 const UChar* str = tres_getString(theBundle, -1, "testinclude",&strLen,&status); in TestNewTypes()
732 if(strLen != len ){ in TestNewTypes()
733 … log_err("Did not get the expected len for translit_rules. Expected: %i , Got: %i\n", len ,strLen); in TestNewTypes()
[all …]
Dcapitst.c1684 static void doOverrunTest(UCollator *coll, const UChar *uString, int32_t strLen) { in doOverrunTest() argument
1690 skLen = ucol_getSortKey(coll, uString, strLen, NULL, 0); in doOverrunTest()
1694 skLen2 = ucol_getSortKey(coll, uString, strLen, sortKey, i); in doOverrunTest()
1715 int32_t strLen = 0; in TestSortKeyBufferOverrun() local
1717 strLen = u_unescape(cString, uString, 256); in TestSortKeyBufferOverrun()
1722 doOverrunTest(coll, uString, strLen); in TestSortKeyBufferOverrun()
1726 doOverrunTest(coll, uString, strLen); in TestSortKeyBufferOverrun()
1730 doOverrunTest(coll, uString, strLen); in TestSortKeyBufferOverrun()
1736 doOverrunTest(coll, uString, strLen); in TestSortKeyBufferOverrun()
Dcldrtest.c1148 int32_t strLen; in TestExemplarSet() local
1209 strLen = uset_getItem(exemplarSet, m, &start, &end, ubuf, in TestExemplarSet()
1213 if (strLen == 0) { in TestExemplarSet()
1222 if (codeSets[j]!=NULL && uset_containsString(codeSets[j], ubuf, strLen)) { in TestExemplarSet()
/external/skia/src/core/
DSkString.cpp93 size_t strLen = strlen(string); in SkStrEndsWith() local
95 return strLen >= suffixLen && in SkStrEndsWith()
96 !strncmp(string + strLen - suffixLen, suffixStr, suffixLen); in SkStrEndsWith()
101 size_t strLen = strlen(string); in SkStrEndsWith() local
102 if (0 == strLen) { in SkStrEndsWith()
105 return (suffixChar == string[strLen-1]); in SkStrEndsWith()
/external/llvm/include/llvm/ADT/
DStringMap.h127 explicit StringMapEntry(unsigned strLen) in StringMapEntry() argument
128 : StringMapEntryBase(strLen), second() {} in StringMapEntry()
130 StringMapEntry(unsigned strLen, InitTy &&... InitVals) in StringMapEntry() argument
131 : StringMapEntryBase(strLen), second(std::forward<InitTy>(InitVals)...) {} in StringMapEntry()
/external/owasp/sanitizer/tools/findbugs/lib/
Dcommons-lang-2.6.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/ ...
/external/libphonenumber/demo/war/WEB-INF/lib/
Dcommons-lang-2.6.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/ ...
/external/deqp/external/vulkancts/framework/vulkan/
DvkBinaryRegistry.cpp170 const size_t strLen = combinedStr.size(); in getSearchPath() local
171 const size_t numWords = strLen/4 + 1; // Must always end up with at least one 0 byte in getSearchPath()
174 deMemcpy(&words[0], combinedStr.c_str(), strLen); in getSearchPath()
/external/pdfium/core/fpdftext/
Dcpdf_textpagefind.cpp139 int strLen = m_strText.GetLength(); in FindNext() local
140 if (m_findNextStart > strLen - 1) { in FindNext()
/external/icu/icu4c/source/i18n/
Duspoof_conf.cpp315 int32_t strLen = s->fStr->length(); in build() local
317 if (strLen == 1) { in build()
/external/fonttools/Lib/fontTools/ttLib/tables/
DM_E_T_A_.py235 strLen = len(string)
237 while i < strLen:
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DUTF16.java2653 final int strLen = s.length(); in compareCodePoint() local
2654 if (strLen == 0) { in compareCodePoint()
2662 return strLen == Character.charCount(codePoint) ? 0 : -1; in compareCodePoint()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DUTF16.java2565 final int strLen = s.length(); in compareCodePoint() local
2566 if (strLen == 0) { in compareCodePoint()
2574 return strLen == Character.charCount(codePoint) ? 0 : -1; in compareCodePoint()

12