Lines Matching refs:Text
77 StringRef Text = getText(E, Context); in buildParens() local
78 if (Text.empty()) in buildParens()
81 return ("(" + Text + ")").str(); in buildParens()
82 return Text.str(); in buildParens()
90 StringRef Text = in buildDereference() local
92 if (Text.empty()) in buildDereference()
94 return Text.str(); in buildDereference()
97 StringRef Text = getText(E, Context); in buildDereference() local
98 if (Text.empty()) in buildDereference()
102 return ("*(" + Text + ")").str(); in buildDereference()
103 return ("*" + Text).str(); in buildDereference()
113 StringRef Text = in buildAddressOf() local
115 if (Text.empty()) in buildAddressOf()
117 return Text.str(); in buildAddressOf()
120 StringRef Text = getText(E, Context); in buildAddressOf() local
121 if (Text.empty()) in buildAddressOf()
124 return ("&(" + Text + ")").str(); in buildAddressOf()
126 return ("&" + Text).str(); in buildAddressOf()
146 StringRef Text = getText(E, Context); in buildAccessForValue() local
147 if (Text.empty()) in buildAccessForValue()
150 return ("(" + Text + ").").str(); in buildAccessForValue()
152 return (Text + ".").str(); in buildAccessForValue()
172 StringRef Text = getText(E, Context); in buildAccessForPointer() local
173 if (Text.empty()) in buildAccessForPointer()
176 return ("(" + Text + ")->").str(); in buildAccessForPointer()
177 return (Text + "->").str(); in buildAccessForPointer()