Home | History | Annotate | Download | only in css

Lines Matching refs:psz

194         const FX_WCHAR* psz = pSyntax->GetCurrentString(iLen);

196 FDE_GetCSSMediaTypeByName(psz, iLen);
385 int32_t FDE_GetCSSPersudoLen(const FX_WCHAR* psz, const FX_WCHAR* pEnd) {
386 FXSYS_assert(*psz == ':');
387 const FX_WCHAR* pStart = psz;
388 while (psz < pEnd) {
389 FX_WCHAR wch = *psz;
391 ++psz;
396 return psz - pStart;
398 int32_t FDE_GetCSSNameLen(const FX_WCHAR* psz, const FX_WCHAR* pEnd) {
399 const FX_WCHAR* pStart = psz;
400 while (psz < pEnd) {
401 FX_WCHAR wch = *psz;
404 ++psz;
409 return psz - pStart;
412 const FX_WCHAR* psz,
414 FXSYS_assert(pStaticStore != NULL && psz != NULL && iLen > 0);
415 const FX_WCHAR* pStart = psz;
416 const FX_WCHAR* pEnd = psz + iLen;
417 for (; psz < pEnd; ++psz) {
418 switch (*psz) {
427 for (psz = pStart; psz < pEnd;) {
428 FX_WCHAR wch = *psz;
430 if (psz == pStart || psz[-1] == ' ') {
443 int32_t iNameLen = FDE_GetCSSNameLen(++psz, pEnd);
450 CFDE_CSSSelector(eType, psz
457 psz += iNameLen;
459 int32_t iNameLen = wch == '*' ? 1 : FDE_GetCSSNameLen(psz, pEnd);
464 CFDE_CSSSelector(FDE_CSSSELECTORTYPE_Element, psz, iNameLen, TRUE);
475 psz += iNameLen;
477 int32_t iNameLen = FDE_GetCSSPersudoLen(psz, pEnd);
482 CFDE_CSSSelector(FDE_CSSSELECTORTYPE_Persudo, psz, iNameLen, TRUE);
492 psz += iNameLen;
494 psz++;