Home | History | Annotate | Download | only in octane

Lines Matching refs:Command

13436             // invalid content command, trying to recover
13441 // feeding other command on the next interation
13446 assertWellFormed(fn, 'Unknown command "' + cmd + '"');
16652 * The value in a byte indicates a command, a number, or subsequent bytes
16677 * CharString Command Encoding:
16682 * If a command byte contains the value 12, then the value in the next byte
16683 * indicates a command. This "escape" mechanism allows many extra commands
16696 // closepath is a Type1 command that do not take argument and is useless
16710 // dotsection is a Type1 command to specify some hinting feature for dots
16720 // Type1 only command with command not (yet) built-in ,throw an error
16735 // moveto (this is a one shot positionning command). This is used only
16763 var command = null;
16798 command = charStringDictionary['12'][escape];
16831 // type2 flex command does not need final coords
16847 command = charStringDictionary[value];
16852 if (!command && i < count) {
16854 } else if (!command) {
16856 } else if (command == -1) {
16857 warn('Support for Type1 command ' + value +
16873 value = command;
17376 var command = charstring[i];
17377 if (command.charAt) {
17378 var cmd = map[command];
17379 assert(cmd, 'Unknow command: ' + command);
17387 if (command > 32000) {
17389 command /= divisor;
17390 charstring.splice(i, 3, 28, command >> 8, command & 0xff);
17392 charstring.splice(i, 1, 28, command >> 8, command & 0xff);
17734 error('255 is not a valid DICT command');
17859 // The CFF specification state that the 'dotsection' command
26560 // '2' means the character ends a name or command.
26814 // command
26819 error('Command token too long: ' + str.length);