Lines Matching defs:ApiOpCodes

316 struct ApiOpCodes  struct
319 sal_Int32 OPCODE_UNKNOWN; /// Internal: function name unknown to mapper.
320 sal_Int32 OPCODE_EXTERNAL; /// External function call (e.g. add-ins).
322 sal_Int32 OPCODE_PUSH; /// Op-code for common value operands.
323 sal_Int32 OPCODE_MISSING; /// Placeholder for a missing function parameter.
324 sal_Int32 OPCODE_SPACES; /// Spaces between other formula tokens.
325 sal_Int32 OPCODE_NAME; /// Index of a defined name.
326 sal_Int32 OPCODE_DBAREA; /// Index of a database area.
327 sal_Int32 OPCODE_NLR; /// Natural language reference.
328 sal_Int32 OPCODE_DDE; /// DDE link function.
329 sal_Int32 OPCODE_MACRO; /// Macro function call.
330 sal_Int32 OPCODE_BAD; /// Bad token (unknown name, formula error).
331 sal_Int32 OPCODE_NONAME; /// Function style #NAME? error.
333 sal_Int32 OPCODE_OPEN; /// Opening parenthesis.
334 sal_Int32 OPCODE_CLOSE; /// Closing parenthesis.
335 sal_Int32 OPCODE_SEP; /// Function parameter separator.
337 sal_Int32 OPCODE_ARRAY_OPEN; /// Opening brace for constant arrays.
338 sal_Int32 OPCODE_ARRAY_CLOSE; /// Closing brace for constant arrays.
339 sal_Int32 OPCODE_ARRAY_ROWSEP; /// Row separator in constant arrays.
340 sal_Int32 OPCODE_ARRAY_COLSEP; /// Column separator in constant arrays.
342 sal_Int32 OPCODE_PLUS_SIGN; /// Unary plus sign.
343 sal_Int32 OPCODE_MINUS_SIGN; /// Unary minus sign.
344 sal_Int32 OPCODE_PERCENT; /// Percent sign.
346 sal_Int32 OPCODE_ADD; /// Addition operator.
347 sal_Int32 OPCODE_SUB; /// Subtraction operator.
348 sal_Int32 OPCODE_MULT; /// Multiplication operator.
349 sal_Int32 OPCODE_DIV; /// Division operator.
350 sal_Int32 OPCODE_POWER; /// Power operator.
351 sal_Int32 OPCODE_CONCAT; /// String concatenation operator.
352 sal_Int32 OPCODE_EQUAL; /// Compare equal operator.
353 sal_Int32 OPCODE_NOT_EQUAL; /// Compare not equal operator.
354 sal_Int32 OPCODE_LESS; /// Compare less operator.
355 sal_Int32 OPCODE_LESS_EQUAL; /// Compare less or equal operator.
356 sal_Int32 OPCODE_GREATER; /// Compare greater operator.
357 sal_Int32 OPCODE_GREATER_EQUAL; /// Compare greater or equal operator.
358 sal_Int32 OPCODE_INTERSECT; /// Range intersection operator.
359 sal_Int32 OPCODE_LIST; /// Range list operator.
360 sal_Int32 OPCODE_RANGE; /// Range operator.