Searched refs:strc (Results 1 – 6 of 6) sorted by relevance
87 bool FX_atonum(const ByteStringView& strc, void* pData) { in FX_atonum() argument88 if (strc.Contains('.')) { in FX_atonum()90 *pFloat = FX_atof(strc); in FX_atonum()103 if (strc[0] == '+') { in FX_atonum()106 } else if (strc[0] == '-') { in FX_atonum()112 while (cc < strc.GetLength() && std::isdigit(strc[cc])) { in FX_atonum()113 integer = integer * 10 + FXSYS_DecimalCharToInt(strc.CharAt(cc)); in FX_atonum()144 float FX_atof(const ByteStringView& strc) { in FX_atof() argument145 if (strc.IsEmpty()) in FX_atof()150 int len = strc.GetLength(); in FX_atof()[all …]
513 wchar_t strc[1024]; in OsDisplayDebugString() local516 for(i = 0; (str[i] != '\0') && (i < (sizeof(strc) / sizeof(*strc))); ++i) in OsDisplayDebugString()518 strc[i] = (wchar_t)str[i]; in OsDisplayDebugString()521 strc[i] = '\0'; in OsDisplayDebugString()523 OutputDebugString(strc); in OsDisplayDebugString()
22 @strc = constant [12 x i8] zeroinitializer ; <[12 x i8]*> [#uses=0]
1558 ByteStringView strc = m_pSyntax->GetWord(); in ParsePathObject() local1559 int len = strc.GetLength(); in ParsePathObject()1561 switch (strc[0]) { in ParsePathObject()1598 if (strc[0] == kPathOperatorRectangle[0] && in ParsePathObject()1599 strc[1] == kPathOperatorRectangle[1]) { in ParsePathObject()