/external/llvm-project/llvm/include/llvm/Support/ |
D | Format.h | 129 class FormattedString { 132 FormattedString(StringRef S, unsigned W, Justification J) 145 inline FormattedString left_justify(StringRef Str, unsigned Width) { 146 return FormattedString(Str, Width, FormattedString::JustifyLeft); 152 inline FormattedString right_justify(StringRef Str, unsigned Width) { 153 return FormattedString(Str, Width, FormattedString::JustifyRight); 159 inline FormattedString center_justify(StringRef Str, unsigned Width) { 160 return FormattedString(Str, Width, FormattedString::JustifyCenter);
|
D | raw_ostream.h | 32 class FormattedString; variable 270 raw_ostream &operator<<(const FormattedString &);
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | Format.h | 129 class FormattedString { 132 FormattedString(StringRef S, unsigned W, Justification J) 145 inline FormattedString left_justify(StringRef Str, unsigned Width) { 146 return FormattedString(Str, Width, FormattedString::JustifyLeft); 152 inline FormattedString right_justify(StringRef Str, unsigned Width) { 153 return FormattedString(Str, Width, FormattedString::JustifyRight); 159 inline FormattedString center_justify(StringRef Str, unsigned Width) { 160 return FormattedString(Str, Width, FormattedString::JustifyCenter);
|
D | raw_ostream.h | 30 class FormattedString; variable 249 raw_ostream &operator<<(const FormattedString &);
|
/external/llvm/include/llvm/Support/ |
D | Format.h | 116 class FormattedString { 123 FormattedString(StringRef S, unsigned W, bool R) in FormattedString() function 130 inline FormattedString left_justify(StringRef Str, unsigned Width) { in left_justify() 131 return FormattedString(Str, Width, false); in left_justify() 137 inline FormattedString right_justify(StringRef Str, unsigned Width) { in right_justify() 138 return FormattedString(Str, Width, true); in right_justify()
|
D | raw_ostream.h | 24 class FormattedString; variable 220 raw_ostream &operator<<(const FormattedString &);
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | Format.h | 129 class FormattedString { 136 FormattedString(StringRef S, unsigned W, bool R) 143 inline FormattedString left_justify(StringRef Str, unsigned Width) { 144 return FormattedString(Str, Width, false); 150 inline FormattedString right_justify(StringRef Str, unsigned Width) { 151 return FormattedString(Str, Width, true);
|
D | raw_ostream.h | 30 class FormattedString; variable 227 raw_ostream &operator<<(const FormattedString &);
|
/external/pigweed/pw_tokenizer/py/pw_tokenizer/ |
D | detokenize.py | 74 self.successes: List[decode.FormattedString] = [] 75 self.failures: List[decode.FormattedString] = [] 77 decode_attempts: List[Tuple[Tuple, decode.FormattedString]] = [] 116 def matches(self) -> List[decode.FormattedString]: 120 def best_result(self) -> Optional[decode.FormattedString]:
|
D | decode.py | 286 class FormattedString(NamedTuple): class 356 show_errors: bool = False) -> FormattedString: 377 return FormattedString(''.join(self._segments), args, remaining)
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | raw_ostream.cpp | 351 raw_ostream &raw_ostream::operator<<(const FormattedString &FS) { in operator <<() 352 if (FS.Str.size() >= FS.Width || FS.Justify == FormattedString::JustifyNone) { in operator <<() 358 case FormattedString::JustifyLeft: in operator <<() 362 case FormattedString::JustifyRight: in operator <<() 366 case FormattedString::JustifyCenter: { in operator <<()
|
/external/llvm-project/llvm/lib/Support/ |
D | raw_ostream.cpp | 354 raw_ostream &raw_ostream::operator<<(const FormattedString &FS) { in operator <<() 360 case FormattedString::JustifyNone: in operator <<() 362 case FormattedString::JustifyLeft: in operator <<() 365 case FormattedString::JustifyRight: in operator <<() 368 case FormattedString::JustifyCenter: in operator <<()
|
/external/swiftshader/third_party/llvm-subzero/lib/Support/ |
D | raw_ostream.cpp | 328 raw_ostream &raw_ostream::operator<<(const FormattedString &FS) { in operator <<()
|
/external/llvm/lib/Support/ |
D | raw_ostream.cpp | 401 raw_ostream &raw_ostream::operator<<(const FormattedString &FS) { in operator <<()
|