Searched refs:StringType (Results 1 – 8 of 8) sorted by relevance
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/ |
H A D | uri.d | 578 foreach (StringType; AliasSeq!(char[], wchar[], dchar[], string, wstring, dstring)) 581 StringType decoded1 = source.to!StringType; 583 assert(decoded1 == source.to!StringType); // check that `decoded1` wasn't changed 585 assert(decoded1 == decode(encoded1).to!StringType); 587 StringType encoded2 = target.to!StringType; 589 assert(encoded2 == target.to!StringType); // check that `encoded2` wasn't changed 591 assert(encoded2 == encode(decoded2).to!StringType);
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/ |
H A D | uri.d | 617 static foreach (StringType; AliasSeq!(char[], wchar[], dchar[], string, wstring, dstring)) 620 StringType decoded1 = source.to!StringType; 622 assert(decoded1 == source.to!StringType); // check that `decoded1` wasn't changed 624 assert(decoded1 == decode(encoded1).to!StringType); 626 StringType encoded2 = target.to!StringType; 628 assert(encoded2 == target.to!StringType); // check that `encoded2` wasn't changed 630 assert(encoded2 == encode(decoded2).to!StringType);
|
/netbsd-src/external/apache2/llvm/dist/llvm/utils/unittest/googlemock/include/gmock/ |
H A D | gmock-matchers.h | 641 template <typename StringType> 642 bool CaseInsensitiveStringEquals(const StringType& s1, 643 const StringType& s2) { 650 const typename StringType::value_type nul = 0; 654 if (i1 == StringType::npos || i2 == StringType::npos) { 665 template <typename StringType> 668 StrEqualityMatcher(const StringType& str, bool expect_eq, 677 const StringType& str = std::string(s); 692 return MatchAndExplain(StringType(s), listener); 702 const StringType& s2(s); [all …]
|
/netbsd-src/sys/external/bsd/gnu-efi/dist/lib/ |
H A D | misc.c | 533 IN UI_STRING_TYPE StringType, in LibGetUiString() argument 551 for (Index = UiDeviceString, Array = Ui->Entry; Index < StringType; Index++, Array++) { in LibGetUiString()
|
/netbsd-src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/src/ |
H A D | gtest.cc | 1577 template <typename StringType> 1578 bool IsSubstringPred(const StringType& needle, in IsSubstringPred() 1579 const StringType& haystack) { in IsSubstringPred() 1580 return haystack.find(needle) != StringType::npos; in IsSubstringPred() 1587 template <typename StringType> 1591 const StringType& needle, const StringType& haystack) { in IsSubstringImpl()
|
/netbsd-src/sys/external/bsd/gnu-efi/dist/inc/ |
H A D | efilib.h | 1004 IN UI_STRING_TYPE StringType,
|
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/range/ |
H A D | package.d | 11701 foreach (StringType; AliasSeq!(string, wstring, dstring)) 11703 auto appSink = appender!StringType();
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
H A D | SemaExpr.cpp | 10552 const QualType StringType = StringRefExpr->getType(); in diagnoseStringPlusChar() local 10555 if (!StringType->isAnyPointerType()) in diagnoseStringPlusChar() 10559 if (!StringType->getPointeeType()->isAnyCharacterType()) in diagnoseStringPlusChar()
|