Searched defs:MDString (Results 1 - 4 of 4) sorted by relevance

/external/llvm/include/llvm/
H A DMetadata.h35 /// MDString - a single uniqued string.
37 /// MDString is always unnamed.
38 class MDString : public Value { class in namespace:llvm
40 MDString(const MDString &); // DO NOT IMPLEMENT
42 explicit MDString(LLVMContext &C);
44 static MDString *get(LLVMContext &Context, StringRef Str);
45 static MDString *get(LLVMContext &Context, const char *Str) {
62 static inline bool classof(const MDString *) { return true; }
/external/llvm/lib/VMCore/
H A DMetadata.cpp30 // MDString implementation.
33 void MDString::anchor() { }
35 MDString::MDString(LLVMContext &C) function in class:MDString
38 MDString *MDString::get(LLVMContext &Context, StringRef Str) {
43 if (!S) S = new MDString(Context);
45 return cast<MDString>(S);
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.ml215 | MDString Constructor in type:ValueKind/t
H A Dllvm_ocaml.c415 MDString, enumerator in enum:ValueKind
466 DEFINE_CASE(Val, MDString);

Completed in 104 milliseconds