Home
last modified time | relevance | path

Searched refs:clstring (Results 1 – 10 of 10) sorted by relevance

/external/webrtc/third_party/gflags/gen/posix/include/gflags/
Dgflags.h550 typedef std::string clstring; typedef
552 inline clstring* dont_pass0toDEFINE_string(char *stringspot, in dont_pass0toDEFINE_string()
554 return new(stringspot) clstring(value); in dont_pass0toDEFINE_string()
556 inline clstring* dont_pass0toDEFINE_string(char *stringspot, in dont_pass0toDEFINE_string()
557 const clstring &value) { in dont_pass0toDEFINE_string()
558 return new(stringspot) clstring(value); in dont_pass0toDEFINE_string()
560 inline clstring* dont_pass0toDEFINE_string(char *stringspot,
564 #define DECLARE_string(name) namespace fLS { extern ::fLS::clstring& FLAGS_##name; } \
576 using ::fLS::clstring; \
577 static union { void* align; char s[sizeof(clstring)]; } s_##name[2]; \
[all …]
/external/libyuv/files/third_party/gflags/gen/win/include/gflags/
Dgflags.h531 inline clstring* dont_pass0toDEFINE_string(char *stringspot, in dont_pass0toDEFINE_string()
533 return new(stringspot) clstring(value); in dont_pass0toDEFINE_string()
535 inline clstring* dont_pass0toDEFINE_string(char *stringspot, in dont_pass0toDEFINE_string()
536 const clstring &value) { in dont_pass0toDEFINE_string()
537 return new(stringspot) clstring(value); in dont_pass0toDEFINE_string()
539 inline clstring* dont_pass0toDEFINE_string(char *stringspot,
552 using ::fLS::clstring; \
553 static union { void* align; char s[sizeof(clstring)]; } s_##name[2]; \
554 clstring* const FLAGS_no##name = ::fLS:: \
559 s_##name[0].s, new (s_##name[1].s) clstring(*FLAGS_no##name)); \
[all …]
Dgflags_declare.h107 typedef std::string clstring; typedef
135 using ::fLS::clstring; \
136 extern GFLAGS_DLL_DECLARE_FLAG ::fLS::clstring& FLAGS_##name; \
/external/libyuv/files/third_party/gflags/gen/posix/include/gflags/
Dgflags.h531 inline clstring* dont_pass0toDEFINE_string(char *stringspot, in dont_pass0toDEFINE_string()
533 return new(stringspot) clstring(value); in dont_pass0toDEFINE_string()
535 inline clstring* dont_pass0toDEFINE_string(char *stringspot, in dont_pass0toDEFINE_string()
536 const clstring &value) { in dont_pass0toDEFINE_string()
537 return new(stringspot) clstring(value); in dont_pass0toDEFINE_string()
539 inline clstring* dont_pass0toDEFINE_string(char *stringspot,
552 using ::fLS::clstring; \
553 static union { void* align; char s[sizeof(clstring)]; } s_##name[2]; \
554 clstring* const FLAGS_no##name = ::fLS:: \
559 s_##name[0].s, new (s_##name[1].s) clstring(*FLAGS_no##name)); \
[all …]
Dgflags_declare.h107 typedef std::string clstring; typedef
135 using ::fLS::clstring; \
136 extern GFLAGS_DLL_DECLARE_FLAG ::fLS::clstring& FLAGS_##name; \
/external/webrtc/third_party/gflags/gen/win/include/gflags/
Dgflags.h570 typedef std::string clstring; typedef
572 inline clstring* dont_pass0toDEFINE_string(char *stringspot, in dont_pass0toDEFINE_string()
574 return new(stringspot) clstring(value); in dont_pass0toDEFINE_string()
576 inline clstring* dont_pass0toDEFINE_string(char *stringspot, in dont_pass0toDEFINE_string()
577 const clstring &value) { in dont_pass0toDEFINE_string()
578 return new(stringspot) clstring(value); in dont_pass0toDEFINE_string()
580 inline clstring* dont_pass0toDEFINE_string(char *stringspot,
584 #define DECLARE_string(name) namespace fLS { extern GFLAGS_DLL_DECLARE_FLAG ::fLS::clstring& FLAGS…
593 using ::fLS::clstring; \
594 static union { void* align; char s[sizeof(clstring)]; } s_##name[2]; \
[all …]
/external/clang/test/Modules/Inputs/using-decl-redecl/
Db.h2 namespace N { using ::N::clstring; }
3 extern N::clstring b;
Dc.h2 namespace N { using ::N::clstring; }
Da.h3 namespace N { typedef ::string clstring; using ::n; } typedef
/external/clang/test/Modules/
Dusing-decl-redecl.cpp15 N::clstring y = b;