Searched refs:ndx (Results 1 - 6 of 6) sorted by relevance

/inkscape/src/extension/internal/
H A Dwmf-print.h70 static void smuggle_adxky_out(const char *string, int16_t **adx, double *ky, int *rtl, int *ndx, float scale);
H A Demf-print.h70 static void smuggle_adxkyrtl_out(const char *string, uint32_t **adx, double *ky, int *rtl, int *ndx, float scale);
H A Dwmf-print.cpp84 void PrintWmf::smuggle_adxky_out(const char *string, int16_t **adx, double *ky, int *rtl, int *ndx, float scale) argument
93 sscanf(cptr, "%7d", ndx);
94 if (!*ndx) {
98 ladx = (int16_t *) malloc(*ndx * sizeof(int16_t));
103 for (i = 0; i < *ndx; i++, cptr += 7, ladx++) {
1343 int ndx, rtl; local
1345 smuggle_adxky_out(text, &adx, &ky, &rtl, &ndx, PX2WORLD * std::min(tf.expansionX(), tf.expansionY())); // side effect: free() adx
1512 // The number of characters in the string is a bit fuzzy. ndx, the number of entries in adx is
1524 ndx, U_ETO_NONE, latin1_text, adx, U_RCL16_DEF);
1529 ndx, U_ETO_RTLREADIN
[all...]
H A Demf-print.cpp80 void PrintEmf::smuggle_adxkyrtl_out(const char *string, uint32_t **adx, double *ky, int *rtl, int *ndx, float scale) argument
89 sscanf(cptr, "%7d", ndx);
90 if (!*ndx) {
94 ladx = (uint32_t *) malloc(*ndx * sizeof(uint32_t));
99 for (i = 0; i < *ndx; i++, cptr += 7, ladx++) {
1985 int ndx, rtl; local
1987 smuggle_adxkyrtl_out(text, &adx, &ky, &rtl, &ndx, PX2WORLD * std::min(tf.expansionX(), tf.expansionY())); // side effect: free() adx
2137 // The number of characters in the string is a bit fuzzy. ndx, the number of entries in adx is
2149 }, ndx, 2, unicode_text, U_ETO_NONE, U_RCL_DEF, adx);
2153 }, ndx,
[all...]
/inkscape/src/libnrtype/
H A DLayout-TNG-Output.cpp47 The ndx, widths, y kern, and rtl are all 7 characters wide. ndx and rtl are ints, the widths and ky are
50 char *smuggle_adxkyrtl_in(const char *string, int ndx, float *adx, float ky, float rtl){ argument
54 Number of widths (ndx)
55 series of widths (ndx entries)
61 int newsize=slen + 1 + 7 + 7*ndx + 1 + 7 + 7 + 2;
66 sprintf(cptr,"%07d",ndx); // number of widths to pass
67 cptr+=7; // advance over ndx
68 for(int i=0; i<ndx ; i++){ // all the widths
285 int ndx local
[all...]
/inkscape/src/ui/dialog/
H A Dfilter-effects-dialog.cpp509 int ndx = 0; local
521 for(int c = 0; c < cols; ++c, ++ndx)
522 row[_columns.cols[c]] = ndx < (int)values->size() ? (*values)[ndx] : (r == c ? 1 : 0);
2642 int ndx = 0; local
2645 iter != _model->children().end(); ++iter, ++ndx) {
2648 prim->getRepr()->setPosition(ndx);
2654 iter != _model->children().end(); ++iter, ++ndx) {

Completed in 39 milliseconds