Searched refs:Str (Results 201 - 225 of 391) sorted by relevance

1234567891011>>

/external/llvm/lib/CodeGen/AsmPrinter/
H A DDIE.h384 const StringRef Str; member in class:llvm::DIEString
388 : DIEValue(isString), Access(Acc), Str(S) {}
391 StringRef getString() const { return Str; }
H A DDIEHash.cpp50 /// \brief Adds the string in \p Str to the hash. This also hashes
52 void DIEHash::addString(StringRef Str) { argument
53 DEBUG(dbgs() << "Adding string " << Str << " to hash.\n");
54 Hash.update(Str);
/external/llvm/lib/Support/
H A Draw_ostream.cpp177 raw_ostream &raw_ostream::write_escaped(StringRef Str, argument
179 for (unsigned i = 0, e = Str.size(); i != e; ++i) {
180 unsigned char c = Str[i];
H A DAPFloat.cpp3448 void append(SmallVectorImpl<char> &Buffer, StringRef Str) {
3449 Buffer.append(Str.begin(), Str.end());
3531 void APFloat::toString(SmallVectorImpl<char> &Str,
3537 return append(Str, "-Inf");
3539 return append(Str, "+Inf");
3541 case fcNaN: return append(Str, "NaN");
3545 Str.push_back('-');
3548 append(Str, "0.0E+0");
3550 Str
[all...]
H A DAPInt.cpp117 APInt::APInt(unsigned numbits, StringRef Str, uint8_t radix) argument
120 fromString(numbits, Str, radix);
2125 void APInt::toString(SmallVectorImpl<char> &Str, unsigned Radix,
2155 Str.push_back(*Prefix);
2158 Str.push_back('0');
2176 Str.push_back('-');
2182 Str.push_back(*Prefix);
2190 Str.append(BufPtr, Buffer+65);
2202 Str.push_back('-');
2206 Str
[all...]
/external/chromium_org/remoting/signaling/
H A Dfake_signal_strategy.cc133 << ". Message content: " << stanza_ptr->Str();
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Dchatroommoduleimpl.cc292 element.AddAttr(QN_TO, member_jid().Str());
325 element.AddAttr(QN_TO, member_jid().Str());
352 element.AddAttr(QN_TO, member_jid().Str());
403 if (message.Attr(QN_TO) != chatroom_jid_.Str()) {
H A Dmucroomlookuptask.cc94 jid_elem->SetBodyText(room_jid.Str());
H A Dxmpptask.cc116 result->AddAttr(QN_TO, to.Str());
/external/clang/lib/StaticAnalyzer/Checkers/
H A DCallAndMessageChecker.cpp263 SmallString<512> Str; local
264 llvm::raw_svector_ostream os(Str);
397 SmallString<512> Str; local
398 llvm::raw_svector_ostream os(Str);
/external/lldb/include/lldb/Interpreter/
H A DPythonDataObjects.h106 Str ();
/external/llvm/include/llvm/IR/
H A DInlineAsm.h170 bool Parse(StringRef Str, ConstraintInfoVector &ConstraintsSoFar);
H A DConstants.h95 static ConstantInt *get(IntegerType *Ty, StringRef Str,
256 static Constant *get(Type* Ty, StringRef Str);
618 StringRef Str = getAsString(); local
619 return Str.substr(0, Str.size()-1);
/external/llvm/lib/IR/
H A DDataLayout.cpp197 static std::pair<StringRef, StringRef> split(StringRef Str, char Separator) { argument
198 assert(!Str.empty() && "parse error, string can't be empty here");
199 std::pair<StringRef, StringRef> Split = Str.split(Separator);
200 assert((!Split.second.empty() || Split.first == Str) &&
/external/llvm/lib/Target/X86/AsmParser/
H A DX86Operand.h414 static std::unique_ptr<X86Operand> CreateToken(StringRef Str, SMLoc Loc) { argument
415 SMLoc EndLoc = SMLoc::getFromPointer(Loc.getPointer() + Str.size());
417 Res->Tok.Data = Str.data();
418 Res->Tok.Length = Str.size();
/external/llvm/include/llvm/Support/
H A DCommandLine.h293 desc(const char *Str) : Desc(Str) {} argument
301 value_desc(const char *Str) : Desc(Str) {} argument
1018 static void opt(const char *Str, Opt &O) { O.setArgStr(Str); } argument
1022 static void opt(const char *Str, Opt &O) { O.setArgStr(Str); } argument
1026 static void opt(const char *Str, Opt &O) { O.setArgStr(Str); } argument
[all...]
/external/clang/include/clang/Lex/
H A DLexer.h231 static std::string Stringify(const std::string &Str, bool Charify = false);
235 static void Stringify(SmallVectorImpl<char> &Str);
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dtoy.cpp285 ExprAST *Error(const char *Str) { fprintf(stderr, "Error: %s\n", Str);return 0;} argument
286 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; } argument
287 FunctionAST *ErrorF(const char *Str) { Error(Str); return 0; } argument
1001 Value *ErrorV(const char *Str) { Error(Str); return 0; } argument
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dtoy.cpp309 ExprAST *Error(const char *Str) { fprintf(stderr, "Error: %s\n", Str);return 0;} argument
310 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; } argument
311 FunctionAST *ErrorF(const char *Str) { Error(Str); return 0; } argument
1168 Value *ErrorV(const char *Str) { Error(Str); return 0; } argument
/external/llvm/include/llvm/ADT/
H A DAPSInt.h55 void toString(SmallVectorImpl<char> &Str, unsigned Radix = 10) const { argument
56 APInt::toString(Str, Radix, isSigned());
H A DAPInt.h1401 /// Converts an APInt to a string and append it to Str. Str is commonly a
1403 void toString(SmallVectorImpl<char> &Str, unsigned Radix, bool Signed,
1408 void toStringUnsigned(SmallVectorImpl<char> &Str, unsigned Radix = 10) const {
1409 toString(Str, Radix, false, false);
1414 void toStringSigned(SmallVectorImpl<char> &Str, unsigned Radix = 10) const {
1415 toString(Str, Radix, true, false);
/external/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c667 CAMLlocal2(Option, Str);
669 Str = caml_alloc_string(Len);
670 memcpy(String_val(Str), S, Len);
672 Store_field(Option, 0, Str);
741 CAMLprim LLVMValueRef llvm_const_string(LLVMContextRef Context, value Str, argument
743 return LLVMConstStringInContext(Context, String_val(Str), string_length(Str),
748 CAMLprim LLVMValueRef llvm_const_stringz(LLVMContextRef Context, value Str, argument
750 return LLVMConstStringInContext(Context, String_val(Str), string_length(Str),
1904 llvm_build_global_string(value Str, value Name, value B) argument
1910 llvm_build_global_stringptr(value Str, value Name, value B) argument
[all...]
/external/clang/lib/Basic/
H A DDiagnostic.cpp32 StringRef Str = "<can't format argument>"; local
33 Output.append(Str.begin(), Str.end());
397 const char (&Str)[StrLen]) {
398 return StrLen-1 == ModifierLen && !memcmp(Modifier, Str, StrLen-1);
612 /// formal arguments into the %0 slots. The result is appended onto the Str
648 // Append non-%0 substrings to Str if we have one.
396 ModifierIs(const char *Modifier, unsigned ModifierLen, const char (&Str)[StrLen]) argument
/external/lldb/source/Commands/
H A DCommandObjectWatchpoint.cpp67 static inline void StripLeadingSpaces(llvm::StringRef &Str) argument
69 while (!Str.empty() && isspace(Str[0]))
70 Str = Str.substr(1);
/external/llvm/lib/AsmParser/
H A DLLLexer.cpp116 static void UnEscapeLexed(std::string &Str) { argument
117 if (Str.empty()) return;
119 char *Buffer = &Str[0], *EndBuffer = Buffer+Str.size();
139 Str.resize(BOut-Buffer);

Completed in 4263 milliseconds

1234567891011>>