Home
last modified time | relevance | path

Searched refs:FormatList (Results 1 – 6 of 6) sorted by relevance

/external/webrtc/android_tools/
Dgenerate_bp.py58 def FormatList(l): function
305 print(' srcs: {0},'.format(FormatList(sources)))
316 print(' srcs: {0},'.format(FormatList(sources)))
321 print(' asflags: {0},'.format(FormatList(asmflags)))
324 print(' cflags: {0},'.format(FormatList(cflags)))
328 print(' conlyflags: {0},'.format(FormatList(cflags_c)))
332 print(' cppflags: {0},'.format(FormatList(cflags_cc)))
335 print(' static_libs: {0},'.format(FormatList(static_libs)))
345 print(' cflags: {0},'.format(FormatList(cflags)))
349 print(' conlyflags: {0},'.format(FormatList(cflags_c)))
[all …]
/external/golang-protobuf/internal/filedesc/
Ddesc_list_gen.go37 descfmt.FormatList(s, r, p)
81 descfmt.FormatList(s, r, p)
122 descfmt.FormatList(s, r, p)
180 descfmt.FormatList(s, r, p)
229 descfmt.FormatList(s, r, p)
266 descfmt.FormatList(s, r, p)
303 descfmt.FormatList(s, r, p)
340 descfmt.FormatList(s, r, p)
Ddesc_list.go26 func (p *FileImports) Format(s fmt.State, r rune) { descfmt.FormatList(s, r, p) }
38 func (p *Names) Format(s fmt.State, r rune) { descfmt.FormatList(s, r, p) }
90 func (p *EnumRanges) Format(s fmt.State, r rune) { descfmt.FormatList(s, r, p) }
152 func (p *FieldRanges) Format(s fmt.State, r rune) { descfmt.FormatList(s, r, p) }
242 func (p *FieldNumbers) Format(s fmt.State, r rune) { descfmt.FormatList(s, r, p) }
268 func (p *OneofFields) Format(s fmt.State, r rune) { descfmt.FormatList(s, r, p) }
/external/bcc/src/cc/vendor/
Dtinyformat.hpp835 class FormatList class
838 FormatList(detail::FormatArg* formatters, int N) in FormatList() function in tinyformat::FormatList
842 const FormatList& list);
850 typedef const FormatList& FormatListRef;
857 class FormatListN : public FormatList
863 : FormatList(&m_formatterStore[0], N), in FormatListN()
872 : FormatList(&m_formatterStore[0], n) \
891 template<> class FormatListN<0> : public FormatList
893 public: FormatListN() : FormatList(0, 0) {} in FormatListN()
/external/golang-protobuf/internal/cmd/generate-types/
Dmain.go149 descfmt.FormatList(s, r, p)
/external/golang-protobuf/internal/descfmt/
Dstringer.go25 func FormatList(s fmt.State, r rune, vs list) { func