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()
141 appendArgument("HashLoc", HashLoc); in InclusionDirective()
142 appendArgument("IncludeTok", IncludeTok); in InclusionDirective()
144 appendArgument("IsAngled", IsAngled); in InclusionDirective()
145 appendArgument("FilenameRange", FilenameRange); in InclusionDirective()
146 appendArgument("File", File); in InclusionDirective()
149 appendArgument("SuggestedModule", SuggestedModule); in InclusionDirective()
150 appendArgument("ModuleImported", ModuleImported); in InclusionDirective()
159 appendArgument("ImportLoc", ImportLoc); in moduleImport()
160 appendArgument("Path", Path); in moduleImport()
161 appendArgument("Imported", Imported); in moduleImport()
171 appendArgument("Loc", Loc); in Ident()
172 appendArgument("Str", Str); in Ident()
179 appendArgument("Loc", Loc); in PragmaDirective()
180 appendArgument("Introducer", Introducer, PragmaIntroducerKindStrings); in PragmaDirective()
188 appendArgument("Loc", Loc); in PragmaComment()
189 appendArgument("Kind", Kind); in PragmaComment()
190 appendArgument("Str", Str); in PragmaComment()
199 appendArgument("Loc", Loc); in PragmaDetectMismatch()
200 appendArgument("Name", Name); in PragmaDetectMismatch()
201 appendArgument("Value", Value); in PragmaDetectMismatch()
208 appendArgument("Loc", Loc); in PragmaDebug()
209 appendArgument("DebugType", DebugType); in PragmaDebug()
218 appendArgument("Loc", Loc); in PragmaMessage()
219 appendArgument("Namespace", Namespace); in PragmaMessage()
220 appendArgument("Kind", Kind, PragmaMessageKindStrings); in PragmaMessage()
221 appendArgument("Str", Str); in PragmaMessage()
229 appendArgument("Loc", Loc); in PragmaDiagnosticPush()
230 appendArgument("Namespace", Namespace); in PragmaDiagnosticPush()
238 appendArgument("Loc", Loc); in PragmaDiagnosticPop()
239 appendArgument("Namespace", Namespace); in PragmaDiagnosticPop()
248 appendArgument("Loc", Loc); in PragmaDiagnostic()
249 appendArgument("Namespace", Namespace); in PragmaDiagnostic()
250 appendArgument("Mapping", (unsigned)Mapping, MappingStrings); in PragmaDiagnostic()
251 appendArgument("Str", Str); in PragmaDiagnostic()
261 appendArgument("NameLoc", NameLoc); in PragmaOpenCLExtension()
262 appendArgument("Name", Name); in PragmaOpenCLExtension()
263 appendArgument("StateLoc", StateLoc); in PragmaOpenCLExtension()
264 appendArgument("State", (int)State); in PragmaOpenCLExtension()
272 appendArgument("Loc", Loc); in PragmaWarning()
273 appendArgument("WarningSpec", WarningSpec, PragmaWarningSpecifierStrings); in PragmaWarning()
284 appendArgument("Ids", SS.str()); in PragmaWarning()
290 appendArgument("Loc", Loc); in PragmaWarningPush()
291 appendArgument("Level", Level); in PragmaWarningPush()
297 appendArgument("Loc", Loc); in PragmaWarningPop()
305 appendArgument("Loc", Loc); in PragmaExecCharsetPush()
306 appendArgument("Charset", Str); in PragmaExecCharsetPush()
313 appendArgument("Loc", Loc); in PragmaExecCharsetPop()
323 appendArgument("MacroNameTok", MacroNameTok); in MacroExpands()
324 appendArgument("MacroDefinition", MacroDefinition); in MacroExpands()
325 appendArgument("Range", Range); in MacroExpands()
326 appendArgument("Args", Args); in MacroExpands()
333 appendArgument("MacroNameTok", MacroNameTok); in MacroDefined()
334 appendArgument("MacroDirective", MacroDirective); in MacroDefined()
342 appendArgument("MacroNameTok", MacroNameTok); in MacroUndefined()
343 appendArgument("MacroDefinition", MacroDefinition); in MacroUndefined()
351 appendArgument("MacroNameTok", MacroNameTok); in Defined()
352 appendArgument("MacroDefinition", MacroDefinition); in Defined()
353 appendArgument("Range", Range); in Defined()
360 appendArgument("Range", SourceRange(Range.getBegin(), EndifLoc)); in SourceRangeSkipped()
367 appendArgument("Loc", Loc); in If()
368 appendArgument("ConditionRange", ConditionRange); in If()
369 appendArgument("ConditionValue", ConditionValue, ConditionValueKindStrings); in If()
377 appendArgument("Loc", Loc); in Elif()
378 appendArgument("ConditionRange", ConditionRange); in Elif()
379 appendArgument("ConditionValue", ConditionValue, ConditionValueKindStrings); in Elif()
380 appendArgument("IfLoc", IfLoc); in Elif()
387 appendArgument("Loc", Loc); in Ifdef()
388 appendArgument("MacroNameTok", MacroNameTok); in Ifdef()
389 appendArgument("MacroDefinition", MacroDefinition); in Ifdef()
396 appendArgument("Loc", Loc); in Ifndef()
397 appendArgument("MacroNameTok", MacroNameTok); in Ifndef()
398 appendArgument("MacroDefinition", MacroDefinition); in Ifndef()
404 appendArgument("Loc", Loc); in Else()
405 appendArgument("IfLoc", IfLoc); in Else()
411 appendArgument("Loc", Loc); in Endif()
412 appendArgument("IfLoc", IfLoc); in Endif()
433 void PPCallbacksTracker::appendArgument(const char *Name, bool Value) { in appendArgument() function in clang::pp_trace::PPCallbacksTracker
434 appendArgument(Name, (Value ? "true" : "false")); in appendArgument()
438 void PPCallbacksTracker::appendArgument(const char *Name, int Value) { in appendArgument() function in clang::pp_trace::PPCallbacksTracker
442 appendArgument(Name, SS.str()); in appendArgument()
446 void PPCallbacksTracker::appendArgument(const char *Name, const char *Value) { in appendArgument() function in clang::pp_trace::PPCallbacksTracker
453 void PPCallbacksTracker::appendArgument(const char *Name, in appendArgument() function in clang::pp_trace::PPCallbacksTracker
455 appendArgument(Name, Value.str()); in appendArgument()
459 void PPCallbacksTracker::appendArgument(const char *Name, in appendArgument() function in clang::pp_trace::PPCallbacksTracker
461 appendArgument(Name, Value.c_str()); in appendArgument()
465 void PPCallbacksTracker::appendArgument(const char *Name, const Token &Value) { in appendArgument() function in clang::pp_trace::PPCallbacksTracker
466 appendArgument(Name, PP.getSpelling(Value)); in appendArgument()
470 void PPCallbacksTracker::appendArgument(const char *Name, int Value, in appendArgument() function in clang::pp_trace::PPCallbacksTracker
472 appendArgument(Name, Strings[Value]); in appendArgument()
476 void PPCallbacksTracker::appendArgument(const char *Name, FileID Value) { in appendArgument() function in clang::pp_trace::PPCallbacksTracker
478 appendArgument(Name, "(invalid)"); in appendArgument()
484 appendArgument(Name, "(getFileEntryForID failed)"); in appendArgument()
491 void PPCallbacksTracker::appendArgument(const char *Name, in appendArgument() function in clang::pp_trace::PPCallbacksTracker
494 appendArgument(Name, "(null)"); in appendArgument()
497 appendArgument(Name, *Value); in appendArgument()
500 void PPCallbacksTracker::appendArgument(const char *Name, FileEntryRef Value) { in appendArgument() function in clang::pp_trace::PPCallbacksTracker
505 void PPCallbacksTracker::appendArgument(const char *Name, in appendArgument() function in clang::pp_trace::PPCallbacksTracker
508 appendArgument(Name, "(invalid)"); in appendArgument()
511 appendArgument(Name, getSourceLocationString(PP, Value).c_str()); in appendArgument()
515 void PPCallbacksTracker::appendArgument(const char *Name, SourceRange Value) { in appendArgument() function in clang::pp_trace::PPCallbacksTracker
519 appendArgument(Name, "(invalid)"); in appendArgument()
526 appendArgument(Name, SS.str()); in appendArgument()
530 void PPCallbacksTracker::appendArgument(const char *Name, in appendArgument() function in clang::pp_trace::PPCallbacksTracker
533 appendArgument(Name, "(invalid)"); in appendArgument()
536 appendArgument(Name, getSourceString(Value).str().c_str()); in appendArgument()
540 void PPCallbacksTracker::appendArgument(const char *Name, ModuleIdPath Value) { in appendArgument() function in clang::pp_trace::PPCallbacksTracker
554 appendArgument(Name, SS.str()); in appendArgument()
558 void PPCallbacksTracker::appendArgument(const char *Name, in appendArgument() function in clang::pp_trace::PPCallbacksTracker
561 appendArgument(Name, "(null)"); in appendArgument()
564 appendArgument(Name, Value->getName().str().c_str()); in appendArgument()
568 void PPCallbacksTracker::appendArgument(const char *Name, in appendArgument() function in clang::pp_trace::PPCallbacksTracker
571 appendArgument(Name, "(null)"); in appendArgument()
574 appendArgument(Name, MacroDirectiveKindStrings[Value->getKind()]); in appendArgument()
578 void PPCallbacksTracker::appendArgument(const char *Name, in appendArgument() function in clang::pp_trace::PPCallbacksTracker
593 appendArgument(Name, SS.str()); in appendArgument()
597 void PPCallbacksTracker::appendArgument(const char *Name, in appendArgument() function in clang::pp_trace::PPCallbacksTracker
600 appendArgument(Name, "(null)"); in appendArgument()
630 appendArgument(Name, SS.str()); in appendArgument()
634 void PPCallbacksTracker::appendArgument(const char *Name, const Module *Value) { in appendArgument() function in clang::pp_trace::PPCallbacksTracker
636 appendArgument(Name, "(null)"); in appendArgument()
639 appendArgument(Name, Value->Name.c_str()); in appendArgument()
648 appendArgument(Name, SS.str()); in appendQuotedArgument()