Lines Matching refs:Text

174 CodeCompletionString::Chunk::Chunk(ChunkKind Kind, const char *Text)  in Chunk()  argument
175 : Kind(Kind), Text("") { in Chunk()
183 this->Text = Text; in Chunk()
190 this->Text = "("; in Chunk()
194 this->Text = ")"; in Chunk()
198 this->Text = "["; in Chunk()
202 this->Text = "]"; in Chunk()
206 this->Text = "{"; in Chunk()
210 this->Text = "}"; in Chunk()
214 this->Text = "<"; in Chunk()
218 this->Text = ">"; in Chunk()
222 this->Text = ", "; in Chunk()
226 this->Text = ":"; in Chunk()
230 this->Text = ";"; in Chunk()
234 this->Text = " = "; in Chunk()
238 this->Text = " "; in Chunk()
242 this->Text = "\n"; in Chunk()
248 CodeCompletionString::Chunk::CreateText(const char *Text) { in CreateText() argument
249 return Chunk(CK_Text, Text); in CreateText()
321 OS << "<#" << C.Text << "#>"; in getAsString()
325 OS << "[#" << C.Text << "#]"; in getAsString()
328 OS << "<#" << C.Text << "#>"; in getAsString()
331 OS << C.Text; in getAsString()
341 return C.Text; in getTypedText()
431 void CodeCompletionBuilder::AddTypedTextChunk(const char *Text) { in AddTypedTextChunk() argument
432 Chunks.push_back(Chunk(CodeCompletionString::CK_TypedText, Text)); in AddTypedTextChunk()
435 void CodeCompletionBuilder::AddTextChunk(const char *Text) { in AddTextChunk() argument
436 Chunks.push_back(Chunk::CreateText(Text)); in AddTextChunk()
447 void CodeCompletionBuilder::AddInformativeChunk(const char *Text) { in AddInformativeChunk() argument
448 Chunks.push_back(Chunk::CreateInformative(Text)); in AddInformativeChunk()
461 const char *Text) { in AddChunk() argument
462 Chunks.push_back(Chunk(CK, Text)); in AddChunk()
625 OS << "[#" << C.Text << "#]"; in getOverloadAsString()
629 OS << "<#" << C.Text << "#>"; in getOverloadAsString()
637 OS << C.Text; in getOverloadAsString()