Lines Matching refs:appendArgument
114 appendArgument("Loc", Loc); in FileChanged()
115 appendArgument("Reason", Reason, FileChangeReasonStrings); in FileChanged()
116 appendArgument("FileType", FileType, CharacteristicKindStrings); in FileChanged()
117 appendArgument("PrevFID", PrevFID); in FileChanged()
126 appendArgument("ParentFile", SkippedFile); in FileSkipped()
127 appendArgument("FilenameTok", FilenameTok); in FileSkipped()
128 appendArgument("FileType", FileType, CharacteristicKindStrings); in FileSkipped()
140 appendArgument("HashLoc", HashLoc); in InclusionDirective()
141 appendArgument("IncludeTok", IncludeTok); in InclusionDirective()
143 appendArgument("IsAngled", IsAngled); in InclusionDirective()
144 appendArgument("FilenameRange", FilenameRange); in InclusionDirective()
145 appendArgument("File", File); in InclusionDirective()
148 appendArgument("Imported", Imported); in InclusionDirective()
157 appendArgument("ImportLoc", ImportLoc); in moduleImport()
158 appendArgument("Path", Path); in moduleImport()
159 appendArgument("Imported", Imported); in moduleImport()
169 appendArgument("Loc", Loc); in Ident()
170 appendArgument("Str", Str); in Ident()
177 appendArgument("Loc", Loc); in PragmaDirective()
178 appendArgument("Introducer", Introducer, PragmaIntroducerKindStrings); in PragmaDirective()
186 appendArgument("Loc", Loc); in PragmaComment()
187 appendArgument("Kind", Kind); in PragmaComment()
188 appendArgument("Str", Str); in PragmaComment()
197 appendArgument("Loc", Loc); in PragmaDetectMismatch()
198 appendArgument("Name", Name); in PragmaDetectMismatch()
199 appendArgument("Value", Value); in PragmaDetectMismatch()
206 appendArgument("Loc", Loc); in PragmaDebug()
207 appendArgument("DebugType", DebugType); in PragmaDebug()
216 appendArgument("Loc", Loc); in PragmaMessage()
217 appendArgument("Namespace", Namespace); in PragmaMessage()
218 appendArgument("Kind", Kind, PragmaMessageKindStrings); in PragmaMessage()
219 appendArgument("Str", Str); in PragmaMessage()
227 appendArgument("Loc", Loc); in PragmaDiagnosticPush()
228 appendArgument("Namespace", Namespace); in PragmaDiagnosticPush()
236 appendArgument("Loc", Loc); in PragmaDiagnosticPop()
237 appendArgument("Namespace", Namespace); in PragmaDiagnosticPop()
246 appendArgument("Loc", Loc); in PragmaDiagnostic()
247 appendArgument("Namespace", Namespace); in PragmaDiagnostic()
248 appendArgument("Mapping", (unsigned)Mapping, MappingStrings); in PragmaDiagnostic()
249 appendArgument("Str", Str); in PragmaDiagnostic()
259 appendArgument("NameLoc", NameLoc); in PragmaOpenCLExtension()
260 appendArgument("Name", Name); in PragmaOpenCLExtension()
261 appendArgument("StateLoc", StateLoc); in PragmaOpenCLExtension()
262 appendArgument("State", (int)State); in PragmaOpenCLExtension()
270 appendArgument("Loc", Loc); in PragmaWarning()
271 appendArgument("WarningSpec", WarningSpec, PragmaWarningSpecifierStrings); in PragmaWarning()
282 appendArgument("Ids", SS.str()); in PragmaWarning()
288 appendArgument("Loc", Loc); in PragmaWarningPush()
289 appendArgument("Level", Level); in PragmaWarningPush()
295 appendArgument("Loc", Loc); in PragmaWarningPop()
303 appendArgument("Loc", Loc); in PragmaExecCharsetPush()
304 appendArgument("Charset", Str); in PragmaExecCharsetPush()
311 appendArgument("Loc", Loc); in PragmaExecCharsetPop()
321 appendArgument("MacroNameTok", MacroNameTok); in MacroExpands()
322 appendArgument("MacroDefinition", MacroDefinition); in MacroExpands()
323 appendArgument("Range", Range); in MacroExpands()
324 appendArgument("Args", Args); in MacroExpands()
331 appendArgument("MacroNameTok", MacroNameTok); in MacroDefined()
332 appendArgument("MacroDirective", MacroDirective); in MacroDefined()
340 appendArgument("MacroNameTok", MacroNameTok); in MacroUndefined()
341 appendArgument("MacroDefinition", MacroDefinition); in MacroUndefined()
349 appendArgument("MacroNameTok", MacroNameTok); in Defined()
350 appendArgument("MacroDefinition", MacroDefinition); in Defined()
351 appendArgument("Range", Range); in Defined()
358 appendArgument("Range", SourceRange(Range.getBegin(), EndifLoc)); in SourceRangeSkipped()
365 appendArgument("Loc", Loc); in If()
366 appendArgument("ConditionRange", ConditionRange); in If()
367 appendArgument("ConditionValue", ConditionValue, ConditionValueKindStrings); in If()
375 appendArgument("Loc", Loc); in Elif()
376 appendArgument("ConditionRange", ConditionRange); in Elif()
377 appendArgument("ConditionValue", ConditionValue, ConditionValueKindStrings); in Elif()
378 appendArgument("IfLoc", IfLoc); in Elif()
385 appendArgument("Loc", Loc); in Ifdef()
386 appendArgument("MacroNameTok", MacroNameTok); in Ifdef()
387 appendArgument("MacroDefinition", MacroDefinition); in Ifdef()
394 appendArgument("Loc", Loc); in Ifndef()
395 appendArgument("MacroNameTok", MacroNameTok); in Ifndef()
396 appendArgument("MacroDefinition", MacroDefinition); in Ifndef()
402 appendArgument("Loc", Loc); in Else()
403 appendArgument("IfLoc", IfLoc); in Else()
409 appendArgument("Loc", Loc); in Endif()
410 appendArgument("IfLoc", IfLoc); in Endif()
431 void PPCallbacksTracker::appendArgument(const char *Name, bool Value) { in appendArgument() function in clang::pp_trace::PPCallbacksTracker
432 appendArgument(Name, (Value ? "true" : "false")); in appendArgument()
436 void PPCallbacksTracker::appendArgument(const char *Name, int Value) { in appendArgument() function in clang::pp_trace::PPCallbacksTracker
440 appendArgument(Name, SS.str()); in appendArgument()
444 void PPCallbacksTracker::appendArgument(const char *Name, const char *Value) { in appendArgument() function in clang::pp_trace::PPCallbacksTracker
451 void PPCallbacksTracker::appendArgument(const char *Name, in appendArgument() function in clang::pp_trace::PPCallbacksTracker
453 appendArgument(Name, Value.str()); in appendArgument()
457 void PPCallbacksTracker::appendArgument(const char *Name, in appendArgument() function in clang::pp_trace::PPCallbacksTracker
459 appendArgument(Name, Value.c_str()); in appendArgument()
463 void PPCallbacksTracker::appendArgument(const char *Name, const Token &Value) { in appendArgument() function in clang::pp_trace::PPCallbacksTracker
464 appendArgument(Name, PP.getSpelling(Value)); in appendArgument()
468 void PPCallbacksTracker::appendArgument(const char *Name, int Value, in appendArgument() function in clang::pp_trace::PPCallbacksTracker
470 appendArgument(Name, Strings[Value]); in appendArgument()
474 void PPCallbacksTracker::appendArgument(const char *Name, FileID Value) { in appendArgument() function in clang::pp_trace::PPCallbacksTracker
476 appendArgument(Name, "(invalid)"); in appendArgument()
481 appendArgument(Name, "(getFileEntryForID failed)"); in appendArgument()
488 void PPCallbacksTracker::appendArgument(const char *Name, in appendArgument() function in clang::pp_trace::PPCallbacksTracker
491 appendArgument(Name, "(null)"); in appendArgument()
494 appendArgument(Name, *Value); in appendArgument()
497 void PPCallbacksTracker::appendArgument(const char *Name, FileEntryRef Value) { in appendArgument() function in clang::pp_trace::PPCallbacksTracker
502 void PPCallbacksTracker::appendArgument(const char *Name, in appendArgument() function in clang::pp_trace::PPCallbacksTracker
505 appendArgument(Name, "(invalid)"); in appendArgument()
508 appendArgument(Name, getSourceLocationString(PP, Value).c_str()); in appendArgument()
512 void PPCallbacksTracker::appendArgument(const char *Name, SourceRange Value) { in appendArgument() function in clang::pp_trace::PPCallbacksTracker
516 appendArgument(Name, "(invalid)"); in appendArgument()
523 appendArgument(Name, SS.str()); in appendArgument()
527 void PPCallbacksTracker::appendArgument(const char *Name, in appendArgument() function in clang::pp_trace::PPCallbacksTracker
530 appendArgument(Name, "(invalid)"); in appendArgument()
533 appendArgument(Name, getSourceString(Value).str().c_str()); in appendArgument()
537 void PPCallbacksTracker::appendArgument(const char *Name, ModuleIdPath Value) { in appendArgument() function in clang::pp_trace::PPCallbacksTracker
551 appendArgument(Name, SS.str()); in appendArgument()
555 void PPCallbacksTracker::appendArgument(const char *Name, in appendArgument() function in clang::pp_trace::PPCallbacksTracker
558 appendArgument(Name, "(null)"); in appendArgument()
561 appendArgument(Name, Value->getName().str().c_str()); in appendArgument()
565 void PPCallbacksTracker::appendArgument(const char *Name, in appendArgument() function in clang::pp_trace::PPCallbacksTracker
568 appendArgument(Name, "(null)"); in appendArgument()
571 appendArgument(Name, MacroDirectiveKindStrings[Value->getKind()]); in appendArgument()
575 void PPCallbacksTracker::appendArgument(const char *Name, in appendArgument() function in clang::pp_trace::PPCallbacksTracker
590 appendArgument(Name, SS.str()); in appendArgument()
594 void PPCallbacksTracker::appendArgument(const char *Name, in appendArgument() function in clang::pp_trace::PPCallbacksTracker
597 appendArgument(Name, "(null)"); in appendArgument()
627 appendArgument(Name, SS.str()); in appendArgument()
631 void PPCallbacksTracker::appendArgument(const char *Name, const Module *Value) { in appendArgument() function in clang::pp_trace::PPCallbacksTracker
633 appendArgument(Name, "(null)"); in appendArgument()
636 appendArgument(Name, Value->Name.c_str()); in appendArgument()
645 appendArgument(Name, SS.str()); in appendQuotedArgument()