Lines Matching refs:source
62 return parsing->allCooked().GetSourcePositionRange(o.source)->first;
70 return parsing->allCooked().GetSourcePositionRange(c.source)->first;
73 // OpenMPBlockConstruct, OpenMPCriticalConstruct Get the source from
76 const CharBlock &source{std::get<0>(c.t).source};
77 return (parsing->allCooked().GetSourcePositionRange(source))->first;
82 const CharBlock &source{std::get<Verbatim>(o.t).source};
84 .GetSourcePositionRange(source)
90 const CharBlock &source{c.source};
91 return (parsing->allCooked().GetSourcePositionRange(source))->first;
94 const CharBlock &source{c.source};
95 return (parsing->allCooked().GetSourcePositionRange(source))->first;
112 const CharBlock &source{o.source};
113 return normalize_construct_name(source.ToString());
116 const CharBlock &source{std::get<Verbatim>(o.t).source};
117 return normalize_construct_name(source.ToString());
128 // Get source from the directive or verbatim fields
129 const CharBlock &source{std::get<0>(c.t).source};
130 return normalize_construct_name(source.ToString());
135 const CharBlock &source{std::get<0>(c.t).source};
136 return normalize_construct_name(source.ToString());
139 const CharBlock &source{std::get<0>(c.t).source};
140 return normalize_construct_name(source.ToString());
143 const CharBlock &source{std::get<0>(c.t).source};
144 return normalize_construct_name(source.ToString());
149 // Get source from the verbatim fields
150 const CharBlock &source{std::get<Verbatim>(c.t).source};
152 normalize_construct_name(source.ToString());
157 const CharBlock &source{c.source};
158 return normalize_construct_name(source.ToString());
164 // OpenMPBlockConstruct, OpenMPCriticalConstruct Get the source from
168 const CharBlock &source{std::get<0>(std::get<0>(c.t).t).source};
169 return normalize_construct_name(source.ToString());
264 PostClauseCommon(normalize_clause_name(c.source.ToString()));