Searched defs:identifier (Results 1 - 1 of 1) sorted by relevance

/inkscape/src/util/
H A Dexpression-evaluator.cpp220 char *identifier; local
225 identifier = g_newa(char, consumed_token.value.size + 1);
227 strncpy(identifier, consumed_token.value.c, consumed_token.value.size);
228 identifier[consumed_token.value.size] = '\0';
230 if (resolveUnit(identifier, &result, unit)) {
287 // Unit identifier
336 * Returns: Size of identifier in bytes (not including NULL
361 bool ExpressionEvaluator::resolveUnit (const char* identifier, argument
369 }else if (!identifier) {
373 } else if (unit_table.hasUnit(identifier)) {
[all...]

Completed in 282 milliseconds