Home
last modified time | relevance | path

Searched refs:nValues (Results 1 – 4 of 4) sorted by relevance

/external/pdfium/core/fpdfapi/page/
Dcpdf_colorstate.cpp74 uint32_t nValues) { in SetFillColor() argument
76 SetColor(pData->m_FillColor, pData->m_FillRGB, pCS, pValue, nValues); in SetFillColor()
81 uint32_t nValues) { in SetStrokeColor() argument
83 SetColor(pData->m_StrokeColor, pData->m_StrokeRGB, pCS, pValue, nValues); in SetStrokeColor()
88 uint32_t nValues) { in SetFillPattern() argument
90 pData->m_FillColor.SetValue(pPattern, pValue, nValues); in SetFillPattern()
104 uint32_t nValues) { in SetStrokePattern() argument
106 pData->m_StrokeColor.SetValue(pPattern, pValue, nValues); in SetStrokePattern()
123 uint32_t nValues) { in SetColor() argument
129 if (color.GetColorSpace()->CountComponents() > nValues) in SetColor()
Dcpdf_colorstate.h42 void SetFillColor(CPDF_ColorSpace* pCS, FX_FLOAT* pValue, uint32_t nValues);
43 void SetStrokeColor(CPDF_ColorSpace* pCS, FX_FLOAT* pValue, uint32_t nValues);
46 uint32_t nValues);
49 uint32_t nValues);
72 uint32_t nValues);
/external/fonttools/Lib/fontTools/ttLib/tables/
DttProgram.py242 nValues = int(m.group(1))
245 for j in range(nValues):
411 nValues = op - argoffset + 1
414 nValues = bytecode[i]
416 assert nValues > 0
418 for j in range(nValues):
423 for j in range(nValues):
435 nValues = len(values)
436 if nValues == 1:
439 assembly.append("%s[ ] /* %s values pushed */" % (mnemonic, nValues))
/external/python/cpython2/PC/
D_winreg.c1379 DWORD nSubKeys, nValues; in PyQueryInfoKey() local
1389 &nValues, NULL, NULL, NULL, &ft)) in PyQueryInfoKey()
1397 ret = Py_BuildValue("iiO", nSubKeys, nValues, l); in PyQueryInfoKey()