Lines Matching refs:Text
177 CodeCompletionString::Chunk::Chunk(ChunkKind Kind, const char *Text) in Chunk() argument
178 : Kind(Kind), Text("") { in Chunk()
186 this->Text = Text; in Chunk()
193 this->Text = "("; in Chunk()
197 this->Text = ")"; in Chunk()
201 this->Text = "["; in Chunk()
205 this->Text = "]"; in Chunk()
209 this->Text = "{"; in Chunk()
213 this->Text = "}"; in Chunk()
217 this->Text = "<"; in Chunk()
221 this->Text = ">"; in Chunk()
225 this->Text = ", "; in Chunk()
229 this->Text = ":"; in Chunk()
233 this->Text = ";"; in Chunk()
237 this->Text = " = "; in Chunk()
241 this->Text = " "; in Chunk()
245 this->Text = "\n"; in Chunk()
251 CodeCompletionString::Chunk::CreateText(const char *Text) { in CreateText() argument
252 return Chunk(CK_Text, Text); in CreateText()
324 OS << "<#" << C.Text << "#>"; in getAsString()
328 OS << "[#" << C.Text << "#]"; in getAsString()
331 OS << "<#" << C.Text << "#>"; in getAsString()
334 OS << C.Text; in getAsString()
344 return C.Text; in getTypedText()
353 Res += C.Text; in getAllTypedText()
442 void CodeCompletionBuilder::AddTypedTextChunk(const char *Text) { in AddTypedTextChunk() argument
443 Chunks.push_back(Chunk(CodeCompletionString::CK_TypedText, Text)); in AddTypedTextChunk()
446 void CodeCompletionBuilder::AddTextChunk(const char *Text) { in AddTextChunk() argument
447 Chunks.push_back(Chunk::CreateText(Text)); in AddTextChunk()
458 void CodeCompletionBuilder::AddInformativeChunk(const char *Text) { in AddInformativeChunk() argument
459 Chunks.push_back(Chunk::CreateInformative(Text)); in AddInformativeChunk()
472 const char *Text) { in AddChunk() argument
473 Chunks.push_back(Chunk(CK, Text)); in AddChunk()
729 OS << "[#" << C.Text << "#]"; in getOverloadAsString()
733 OS << "<#" << C.Text << "#>"; in getOverloadAsString()
741 OS << C.Text; in getOverloadAsString()