Home
last modified time | relevance | path

Searched refs:StartChar (Results 1 – 2 of 2) sorted by relevance

/external/llvm/lib/AsmParser/
DLLLexer.cpp452 const char *StartChar = CurPtr; in LexIdentifier() local
453 const char *IntEnd = CurPtr[-1] == 'i' ? nullptr : StartChar; in LexIdentifier()
467 StrVal.assign(StartChar-1, CurPtr++); in LexIdentifier()
474 if (IntEnd != StartChar) { in LexIdentifier()
476 uint64_t NumBits = atoull(StartChar, CurPtr); in LexIdentifier()
489 --StartChar; in LexIdentifier()
490 StringRef Keyword(StartChar, CurPtr - StartChar); in LexIdentifier()
/external/pdfium/core/src/fpdfapi/fpdf_font/
Dfpdf_font.cpp1624 int StartChar = m_pFontDict->GetInteger("FirstChar"); in _Load() local
1626 if (pWidthArray && (StartChar >= 0 && StartChar < 256)) { in _Load()
1631 if (StartChar + count > 256) { in _Load()
1632 count = 256 - StartChar; in _Load()
1635 m_CharWidthL[StartChar + i] = in _Load()