Searched refs:Str (Results 226 - 250 of 583) sorted by relevance

1234567891011>>

/external/clang/lib/Rewrite/
H A DHTMLRewrite.cpp170 std::string Str; local
171 llvm::raw_string_ostream os(Str);
210 SmallString<256> Str; local
211 llvm::raw_svector_ostream OS(Str);
/external/llvm/include/llvm/IR/
H A DMDBuilder.h39 MDString *createString(StringRef Str);
/external/llvm/include/llvm/Support/
H A DGCOV.h191 StringRef Str = Buffer->getBuffer().slice(Cursor, Cursor + 4); local
193 Val = *(const uint32_t *)(Str.data());
205 bool readString(StringRef &Str) { argument
217 Str = Buffer->getBuffer().slice(Cursor, Cursor + Len).split('\0').first;
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDIEHash.h116 /// \brief Adds \param Str to the hash and includes a NULL byte.
117 void addString(StringRef Str);
/external/llvm/lib/CodeGen/MIRParser/
H A DMILexer.cpp37 explicit Cursor(StringRef Str) { argument
38 Ptr = Str.data();
39 End = Ptr + Str.size();
116 std::string Str; local
117 Str.reserve(C.remaining().size());
123 Str += '\\';
128 Str += hexDigitValue(C.peek(1)) * 16 + hexDigitValue(C.peek(2));
133 Str += Char;
136 return Str;
/external/llvm/lib/Support/
H A DPrettyStackTrace.cpp145 OS << Str << "\n"; local
/external/llvm/lib/Target/Mips/
H A DMips16InstrInfo.h104 unsigned getInlineAsmLength(const char *Str,
/external/skia/src/pathops/
H A DSkPathOpsDebug.h41 #define WIND_AS_STRING(x) char x##Str[12]; \
42 if (!SkPathOpsDebug::ValidWind(x)) strcpy(x##Str, "?"); \
43 else SK_SNPRINTF(x##Str, sizeof(x##Str), "%d", x)
/external/v8/src/arm64/
H A Ddeoptimizer-arm64.cc109 __ Str(fp, MemOperand(x3));
165 __ Str(x2, MemOperand(x1, offset));
176 __ Str(x2, MemOperand(x1, dst_offset));
197 __ Str(x4, MemOperand(x3, kPointerSize, PostIndex));
/external/vixl/test/aarch32/
H A Dtest-disasm-a32.cc832 COMPARE_BOTH(Str(r0, MemOperand(r1, r8, Offset)), "str r0, [r1, r8]\n");
835 COMPARE_T32(Str(r0, MemOperand(r0, minus, r0, Offset)),
839 COMPARE_T32(Str(r0, MemOperand(r0, minus, r1, Offset)),
843 COMPARE_T32(Str(r0, MemOperand(r1, minus, r0, Offset)),
847 COMPARE_T32(Str(r0, MemOperand(r1, minus, r2, Offset)),
852 COMPARE_T32(Str(r0, MemOperand(r1, minus, r2, PreIndex)),
857 COMPARE_T32(Str(r0, MemOperand(r1, minus, r2, PostIndex)),
862 COMPARE_BOTH(Str(sp, MemOperand(sp, sp, Offset)), "str sp, [sp, sp]\n");
866 COMPARE_A32(Str(pc, MemOperand(r0, r0, Offset)), "str pc, [r0, r0]\n");
867 COMPARE_A32(Str(p
[all...]
/external/webrtc/webrtc/libjingle/xmpp/
H A Dmucroomdiscoverytask_unittest.cc95 EXPECT_EQ(expected_iq, xmpp_client->sent_stanzas()[0]->Str());
/external/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp202 StringRef Str;
203 if (!getConstantStringInfo(SrcStr, Str)) {
213 ? Str.size()
214 : Str.find(CharC->getSExtValue());
230 StringRef Str;
231 if (!getConstantStringInfo(SrcStr, Str)) {
240 ? Str.size()
241 : Str.rfind(CharC->getSExtValue());
419 StringRef Str;
420 if (getConstantStringInfo(GEP->getOperand(0), Str,
[all...]
/external/clang/include/clang/Driver/
H A DDriver.h480 static bool GetReleaseVersion(const char *Str, unsigned &Major,
484 /// Parse digits from a string \p Str and fulfill \p Digits with
490 static bool GetReleaseVersion(const char *Str,
/external/clang/include/clang/Sema/
H A DTypoCorrection.h195 bool isKeyword(const char (&Str)[StrLen]) const {
196 return isKeyword() && getCorrectionAsIdentifierInfo()->isStr(Str);
/external/clang/lib/StaticAnalyzer/Core/
H A DIssueHash.cpp133 StringRef Str = GetNthLineOfFile(SM.getBuffer(L.getFileID(), L), local
135 StringRef::size_type col = Str.find_first_not_of(Whitespaces);
/external/compiler-rt/lib/ubsan/
H A Dubsan_diag.h204 Diag &operator<<(const char *Str) { return AddArg(Str); } argument
/external/elfutils/libdwfl/
H A Dargp-std.c38 #define _(Str) dgettext ("elfutils", Str)
/external/elfutils/tests/
H A Ddwflmodtest.c209 #define N_(Str) Str
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dtoy-jit.cpp278 ExprAST *Error(const char *Str) { fprintf(stderr, "Error: %s\n", Str);return 0;} argument
279 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; } argument
280 FunctionAST *ErrorF(const char *Str) { Error(Str); return 0; } argument
630 Value *ErrorV(const char *Str) { Error(Str); return 0; } argument
/external/llvm/examples/Kaleidoscope/MCJIT/initial/
H A Dtoy.cpp262 ExprAST *Error(const char *Str) { fprintf(stderr, "Error: %s\n", Str);return 0;} argument
263 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; } argument
264 FunctionAST *ErrorF(const char *Str) { Error(Str); return 0; } argument
859 Value *ErrorV(const char *Str) { Error(Str); return 0; } argument
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
H A Dtoy-jit.cpp263 ExprAST *Error(const char *Str) { fprintf(stderr, "Error: %s\n", Str);return 0;} argument
264 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; } argument
265 FunctionAST *ErrorF(const char *Str) { Error(Str); return 0; } argument
615 Value *ErrorV(const char *Str) { Error(Str); return 0; } argument
H A Dtoy.cpp264 ExprAST *Error(const char *Str) { fprintf(stderr, "Error: %s\n", Str);return 0;} argument
265 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; } argument
266 FunctionAST *ErrorF(const char *Str) { Error(Str); return 0; } argument
899 Value *ErrorV(const char *Str) { Error(Str); return 0; } argument
/external/llvm/lib/IR/
H A DMDBuilder.cpp20 MDString *MDBuilder::createString(StringRef Str) { argument
21 return MDString::get(Context, Str);
/external/llvm/lib/Target/AMDGPU/
H A DAMDGPUMCInstLower.cpp122 raw_svector_ostream Str(BBStr);
127 Expr->print(Str, MAI);
/external/llvm/utils/TableGen/
H A DOptParserEmitter.cpp97 static raw_ostream &write_cstring(raw_ostream &OS, llvm::StringRef Str) { argument
99 OS.write_escaped(Str);

Completed in 1010 milliseconds

1234567891011>>