Lines Matching refs:Text
65 StringRef Text = getText(E, Context); in buildParens() local
66 if (Text.empty()) in buildParens()
69 return ("(" + Text + ")").str(); in buildParens()
70 return Text.str(); in buildParens()
78 StringRef Text = in buildDereference() local
80 if (Text.empty()) in buildDereference()
82 return Text.str(); in buildDereference()
85 StringRef Text = getText(E, Context); in buildDereference() local
86 if (Text.empty()) in buildDereference()
90 return ("*(" + Text + ")").str(); in buildDereference()
91 return ("*" + Text).str(); in buildDereference()
101 StringRef Text = in buildAddressOf() local
103 if (Text.empty()) in buildAddressOf()
105 return Text.str(); in buildAddressOf()
108 StringRef Text = getText(E, Context); in buildAddressOf() local
109 if (Text.empty()) in buildAddressOf()
112 return ("&(" + Text + ")").str(); in buildAddressOf()
114 return ("&" + Text).str(); in buildAddressOf()
132 StringRef Text = getText(E, Context); in buildDot() local
133 if (Text.empty()) in buildDot()
136 return ("(" + Text + ").").str(); in buildDot()
138 return (Text + ".").str(); in buildDot()
156 StringRef Text = getText(E, Context); in buildArrow() local
157 if (Text.empty()) in buildArrow()
160 return ("(" + Text + ")->").str(); in buildArrow()
161 return (Text + "->").str(); in buildArrow()