Searched refs:Str (Results 76 - 100 of 583) sorted by relevance

1234567891011>>

/external/libcxx/test/std/experimental/filesystem/class.path/path.member/path.native.obs/
H A Dstring_alloc.pass.cpp41 using Str = std::basic_string<CharT>;
47 Str s = p.string<CharT>();
49 Str s2 = p.string<CharT>(Alloc{});
83 using Str = std::basic_string<CharT>;
88 Str s = p.string<CharT>();
90 Str s2 = p.string<CharT>(Alloc{});
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfAccelTable.h69 static uint32_t HashDJB(StringRef Str) { argument
71 for (unsigned i = 0, e = Str.size(); i != e; ++i)
72 h = ((h << 5) + h) + Str[i];
189 StringRef Str; member in struct:llvm::DwarfAccelTable::HashData
194 : Str(S), Data(Data) {
199 O << "Name: " << Str << "\n"; local
H A DDwarfStringPool.cpp23 StringRef Str) {
24 auto I = Pool.insert(std::make_pair(Str, EntryTy()));
31 NumBytes += Str.size() + 1;
22 getEntry(AsmPrinter &Asm, StringRef Str) argument
H A DDwarfStringPool.h46 EntryRef getEntry(AsmPrinter &Asm, StringRef Str);
/external/swiftshader/third_party/LLVM/unittests/VMCore/
H A DMetadataTest.cpp58 std::string Str; local
59 raw_string_ostream oss(Str);
68 std::string Str; local
69 raw_string_ostream oss(Str);
139 std::string Str; local
140 raw_string_ostream oss(Str);
/external/clang/include/clang/Basic/
H A DOpenMPKinds.h26 #define OPENMP_DIRECTIVE_EXT(Name, Str) \
130 OpenMPDirectiveKind getOpenMPDirectiveKind(llvm::StringRef Str);
133 OpenMPClauseKind getOpenMPClauseKind(llvm::StringRef Str);
136 unsigned getOpenMPSimpleClauseType(OpenMPClauseKind Kind, llvm::StringRef Str);
/external/clang/utils/TableGen/
H A DClangCommentCommandInfoEmitter.cpp79 static std::string MangleName(StringRef Str) { argument
81 for (unsigned i = 0, e = Str.size(); i != e; ++i) {
82 switch (Str[i]) {
84 Mangled += Str[i];
/external/llvm/include/llvm/Bitcode/
H A DBitcodeWriterPass.h38 ModulePass *createBitcodeWriterPass(raw_ostream &Str,
/external/llvm/lib/DebugInfo/PDB/Raw/
H A DNameHashTable.cpp82 uint32_t NameHashTable::getIDForString(StringRef Str) const {
83 uint32_t Hash = (HashVersion == 1) ? hashStringV1(Str) : hashStringV2(Str);
94 if (S == Str)
/external/llvm/lib/Option/
H A DOptTable.cpp173 static unsigned matchOption(const OptTable::Info *I, StringRef Str, argument
177 if (Str.startswith(Prefix)) {
178 StringRef Rest = Str.substr(Prefix.size());
193 const char *Str = Args.getArgString(Index); local
197 if (isInput(PrefixesUnion, Str))
198 return new Arg(getOption(TheInputOptionID), Str, Index++, Str);
202 StringRef Name = StringRef(Str).ltrim(PrefixChars);
219 if ((ArgSize = matchOption(Start, Str, IgnoreCase)))
242 if (Str[
266 StringRef Str = Args.getArgString(Index); local
[all...]
H A DOption.cpp145 const char *Str = Args.getArgString(Index) + ArgSize; local
149 const char *Prev = Str;
150 for (;; ++Str) {
151 char c = *Str;
154 if (Prev != Str) {
155 char *Value = new char[Str - Prev + 1];
156 memcpy(Value, Prev, Str - Prev);
157 Value[Str - Prev] = '\0';
164 Prev = Str + 1;
/external/swiftshader/third_party/LLVM/include/llvm/MC/
H A DMCObjectWriter.h178 void WriteBytes(StringRef Str, unsigned ZeroFillSize = 0) { argument
179 assert((ZeroFillSize == 0 || Str.size () <= ZeroFillSize) &&
181 OS << Str; local
183 WriteZeros(ZeroFillSize - Str.size());
/external/libcxx/test/std/experimental/filesystem/class.path/path.member/
H A Dpath.append.pass.cpp43 #define S(Str) MKSTR(Str)
80 using Str = std::basic_string<CharT>;
85 Str RShort = (Ptr)TC.rhs;
86 Str EShort = (Ptr)TC.expect;
92 const Str& E = EShort;
97 Str RHS(R);
167 using Str = std::basic_string<CharT>;
176 Str RHS(R);
183 Str RH
[all...]
/external/clang/include/clang/Frontend/
H A DCommandLineSourceLoc.h33 static ParsedSourceLocation FromString(StringRef Str) { argument
35 std::pair<StringRef, StringRef> ColSplit = Str.rsplit(':');
/external/llvm/lib/Bitcode/Writer/
H A DBitcodeWriterPass.cpp78 ModulePass *llvm::createBitcodeWriterPass(raw_ostream &Str, argument
81 return new WriteBitcodePass(Str, ShouldPreserveUseListOrder,
/external/llvm/lib/Fuzzer/test/
H A DCustomCrossOverTest.cpp20 std::string Str(reinterpret_cast<const char *>(Data), Size);
22 if (Str.find(Target) != std::string::npos) {
/external/syslinux/gnu-efi/gnu-efi-3.0/lib/
H A Dconsole.c24 IN CHAR16 *Str
28 uefi_call_wrapper(ST->ConOut->OutputString, 2, ST->ConOut, Str);
H A Dlib.h64 IN CHAR16 *Str
/external/webrtc/webrtc/libjingle/xmpp/
H A Dxmppauth.cc78 mechanism, jid_.Str(), auth_token_, "oauth2");
80 return new buzz::SaslCookieMechanism(mechanism, jid_.Str(), auth_token_);
82 // return new buzz::SaslCookieMechanism(mechanism, jid.Str(), sid_);
/external/swiftshader/third_party/LLVM/unittests/ADT/
H A DTripleTest.cpp107 std::string Str = A; Str += '-'; Str += B; Str += '-'; Str += C; local
108 return Str;
112 std::string Str = A; Str += '-'; Str += B; Str local
[all...]
/external/elfutils/lib/
H A Dsystem.h65 #define sgettext(Str) \
66 ({ const char *__res = strrchr (gettext (Str), '|'); \
67 __res ? __res + 1 : Str; })
69 #define gettext_noop(Str) Str
/external/llvm/lib/Target/NVPTX/
H A DNVVMReflect.cpp170 const Value *Str = Call->getArgOperand(0); local
171 if (const CallInst *ConvCall = dyn_cast<CallInst>(Str)) {
173 Str = ConvCall->getArgOperand(0);
175 assert(isa<ConstantExpr>(Str) &&
177 const ConstantExpr *GEP = cast<ConstantExpr>(Str);
/external/llvm/unittests/DebugInfo/PDB/
H A DMappedBlockStreamTest.cpp111 StringRef Str = "ZYXWVUTSRQPONMLKJIHGFEDCBA"; local
112 EXPECT_NO_ERROR(R.readFixedString(Str, 1));
113 EXPECT_EQ(Str, StringRef("A"));
124 StringRef Str; local
125 EXPECT_NO_ERROR(R.readFixedString(Str, 2));
126 EXPECT_EQ(Str, StringRef("AB"));
130 EXPECT_NO_ERROR(R.readFixedString(Str, 4));
131 EXPECT_EQ(Str, StringRef("GHIJ"));
142 StringRef Str; local
143 EXPECT_NO_ERROR(R.readFixedString(Str, 1
154 StringRef Str; local
167 StringRef Str; local
180 StringRef Str; local
192 StringRef Str; local
[all...]
/external/llvm/utils/TableGen/
H A DAsmWriterInst.cpp31 if (Str.size() == 1)
32 return "O << '" + Str + "';";
33 return "O << \"" + Str + "\";";
37 return Str;
39 std::string Result = Str + "(MI";
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DGCOV.h128 StringRef Str = Buffer->getBuffer().slice(Cursor, Cursor+4); local
129 assert (Str.empty() == false && "Unexpected memory buffer end!");
131 Result = *(uint32_t *)(Str.data());
144 StringRef Str = Buffer->getBuffer().slice(Cursor, Cursor+Len); local
146 return Str;

Completed in 584 milliseconds

1234567891011>>