/external/webrtc/webrtc/voice_engine/ |
D | voe_hardware_impl.cc | 164 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/ |
D | uset.cpp | 90 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()
|
D | utext.cpp | 1200 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/ |
D | uset.h | 575 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/ |
D | ufmt_cmn.h | 30 #define MAX_UCHAR_BUFFER_NEEDED(strLen) ((strLen+1)*U16_MAX_LENGTH*sizeof(UChar)) argument
|
/external/skia/src/ports/ |
D | SkOSFile_posix.cpp | 153 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()
|
D | SkFontConfigInterface_direct.cpp | 103 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()
|
D | SkRemotableFontMgr_win_dw.cpp | 398 UINT32 strLen = static_cast<UINT32>( in matchNameStyleCharacter() local 401 HR_GENERAL(dwFactory->CreateTextLayout(str, strLen, fallbackFormat.get(), in matchNameStyleCharacter()
|
D | SkFontMgr_win_dw.cpp | 747 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/ |
D | MessageNanoPrinter.java | 240 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/ |
D | StringMap.h | 124 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/ |
D | xsProtocol.cpp | 135 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/ |
D | creststn.c | 679 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 …]
|
D | capitst.c | 1684 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()
|
D | cldrtest.c | 1148 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/ |
D | SkString.cpp | 93 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/ |
D | StringMap.h | 127 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/ |
D | commons-lang-2.6.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/apache/
org/ ... |
/external/libphonenumber/demo/war/WEB-INF/lib/ |
D | commons-lang-2.6.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/apache/
org/ ... |
/external/deqp/external/vulkancts/framework/vulkan/ |
D | vkBinaryRegistry.cpp | 170 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/ |
D | cpdf_textpagefind.cpp | 139 int strLen = m_strText.GetLength(); in FindNext() local 140 if (m_findNextStart > strLen - 1) { in FindNext()
|
/external/icu/icu4c/source/i18n/ |
D | uspoof_conf.cpp | 315 int32_t strLen = s->fStr->length(); in build() local 317 if (strLen == 1) { in build()
|
/external/fonttools/Lib/fontTools/ttLib/tables/ |
D | M_E_T_A_.py | 235 strLen = len(string) 237 while i < strLen:
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | UTF16.java | 2653 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/ |
D | UTF16.java | 2565 final int strLen = s.length(); in compareCodePoint() local 2566 if (strLen == 0) { in compareCodePoint() 2574 return strLen == Character.charCount(codePoint) ? 0 : -1; in compareCodePoint()
|