OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:twine
(Results
1 - 5
of
5
) sorted by null
/external/llvm/include/llvm/ADT/
Twine.h
1
//===--
Twine
.h - Fast Temporary String Concatenation -----------*- C++ -*-===//
23
///
Twine
- A lightweight data structure for efficiently representing the
26
/// A
Twine
is a kind of rope, it represents a concatenated string using a
28
///
Twine
can be efficiently rendered into a buffer when its result is used,
30
/// results -- particularly in cases when the
Twine
result is never
35
/// A
Twine
is not intended for use directly and should not be stored, its
47
/// Given the nature of a
Twine
, it is not possible for the
Twine
's
49
/// represented inside the returned value. For this reason a
Twine
object
51
/// concatenation. We also have nullary
Twine
objects, which are effectivel
136
const Twine *
twine
;
member in union:llvm::Twine::Child
[
all
...]
/external/llvm/lib/Support/
Twine.cpp
1
//===--
Twine
.cpp - Fast Temporary String Concatenation -------------------===//
10
#include "llvm/ADT/
Twine
.h"
16
std::string
Twine
::str() const {
26
void
Twine
::toVector(SmallVectorImpl<char> &Out) const {
31
StringRef
Twine
::toNullTerminatedStringRef(SmallVectorImpl<char> &Out) const {
51
void
Twine
::printOneChild(raw_ostream &OS, Child Ptr,
54
case
Twine
::NullKind: break;
55
case
Twine
::EmptyKind: break;
56
case
Twine
::TwineKind:
57
Ptr.
twine
->print(OS)
[
all
...]
/external/clang/include/clang/Edit/
EditedSource.h
72
StringRef copyString(const
Twine
&
twine
);
/external/chromium-trace/catapult/third_party/coverage/
Makefile
61
twine
upload dist/*
/external/clang/lib/Edit/
EditedSource.cpp
17
#include "llvm/ADT/
Twine
.h"
56
StringRef EditedSource::copyString(const
Twine
&
twine
) {
58
return copyString(
twine
.toStringRef(Data));
118
FA.Text = copyString(
Twine
(text) + FA.Text);
120
FA.Text = copyString(
Twine
(FA.Text) + text);
Completed in 394 milliseconds