Searched defs:strc (Results 1 - 3 of 3) sorted by relevance

/external/lldb/source/API/
H A DSBStringList.cpp86 SBStringList::AppendList (const char **strv, int strc) argument
89 && (strc > 0))
92 m_opaque_ap->AppendList (strv, strc);
94 m_opaque_ap.reset (new lldb_private::StringList (strv, strc));
/external/lldb/source/Core/
H A DStringList.cpp31 StringList::StringList (const char **strv, int strc) : argument
34 for (int i = 0; i < strc; ++i)
66 StringList::AppendList (const char **strv, int strc) argument
68 for (int i = 0; i < strc; ++i)
/external/pdfium/core/src/fxcrt/
H A Dfx_basic_util.cpp93 void FX_atonum(FX_BSTR strc, FX_BOOL& bInteger, void* pData) argument
95 if (FXSYS_memchr(strc.GetPtr(), '.', strc.GetLength()) == NULL) {
98 FX_LPCSTR str = strc.GetCStr();
99 int len = strc.GetLength();
123 *(FX_FLOAT*)pData = FX_atof(strc);
126 FX_FLOAT FX_atof(FX_BSTR strc) argument
128 if (strc.GetLength() == 0) {
133 FX_LPCSTR str = strc.GetCStr();
134 int len = strc
[all...]

Completed in 444 milliseconds