Lines Matching refs:Num
670 if (kidRef.num == ref.num && kidRef.gen == ref.gen)
830 var num = linearization ? linearization.numPages : this.catalog.numPages;
832 return shadow(this, 'numPages', num);
1059 Util.sign = function Util_sign(num) {
1060 return num < 0 ? -1 : 1;
1597 * @return {object} The reference that points to this page. It has 'num' and
2880 malformed('TJ array element ' + e + ' is not string or num');
3378 function Ref(num, gen) {
3379 this.num = num;
3397 return !!this.dict['R' + ref.num + '.' + ref.gen];
3401 this.dict['R' + ref.num + '.' + ref.gen] = ref;
3499 return shadow(this, 'num', obj);
3877 this.readXRef(obj.num, recoveryMode);
3904 var num = ref.num;
3905 if (num in this.cache)
3906 return this.cache[num];
3908 var e = this.getEntry(num);
3912 return (this.cache[num] = e);
3924 if (!isInt(obj1) || obj1 != num ||
3932 num = parseInt(obj3.cmd.substring(3), 10);
3933 if (!isNaN(num))
3934 return num;
3940 e = parser.getObj(this.encrypt.createCipherTransform(num, gen));
3952 this.cache[num] = e;
3969 num = parser.getObj();
3970 if (!isInt(num)) {
3971 error('invalid object number in the ObjStm stream: ' + num);
3973 nums.push(num);
13082 function buildObjectKey(num, gen, encryptionKey, isAes) {
13086 key[i++] = num & 0xFF;
13087 key[i++] = (num >> 8) & 0xFF;
13088 key[i++] = (num >> 16) & 0xFF;
13101 function buildCipherConstructor(cf, name, num, gen, key) {
13114 buildObjectKey(num, gen, key, false));
13120 buildObjectKey(num, gen, key, true));
13128 function CipherTransformFactory_createCipherTransform(num, gen) {
13132 num, gen, this.encryptionKey),
13134 num, gen, this.encryptionKey));
13137 var key = buildObjectKey(num, gen, this.encryptionKey, false);
15855 // The new numbers of tables will be the last one plus the num
16327 string16(charstrings.length + 1)); // Num of glyphs
17002 var num = parseInt(getToken(), 10);
17004 for (var j = 0; j < num; ++j) {
18178 if (type === 'num' || type === 'sid' || type === 'offset')
18224 [[12, 30], 'ROS', ['sid', 'sid', 'num'], null],
18225 [[12, 20], 'SyntheticBase', 'num', null],
18232 [[12, 1], 'isFixedPitch', 'num', 0],
18233 [[12, 2], 'ItalicAngle', 'num', 0],
18234 [[12, 3], 'UnderlinePosition', 'num', -100],
18235 [[12, 4], 'UnderlineThickness', 'num', 50],
18236 [[12, 5], 'PaintType', 'num', 0],
18237 [[12, 6], 'CharstringType', 'num', 2],
18238 [[12, 7], 'FontMatrix', ['num', 'num', 'num', 'num', 'num', 'num'],
18240 [13, 'UniqueID', 'num', null],
18241 [5, 'FontBBox', ['num', 'num', 'num', 'num'], [0, 0, 0, 0]],
18242 [[12, 8], 'StrokeWidth', 'num', 0],
18251 [[12, 31], 'CIDFontVersion', 'num', 0],
18252 [[12, 32], 'CIDFontRevision', 'num', 0],
18253 [[12, 33], 'CIDFontType', 'num', 0],
18254 [[12, 34], 'CIDCount', 'num', 8720],
18255 [[12, 35], 'UIDBase', 'num', null],
18276 [[12, 9], 'BlueScale', 'num', 0.039625],
18277 [[12, 10], 'BlueShift', 'num', 7],
18278 [[12, 11], 'BlueFuzz', 'num', 1],
18279 [10, 'StdHW', 'num', null],
18280 [11, 'StdVW', 'num', null],
18283 [[12, 14], 'ForceBold', 'num', 0],
18284 [[12, 17], 'LanguageGroup', 'num', 0],
18285 [[12, 18], 'ExpansionFactor', 'num', 0.06],
18286 [[12, 19], 'initialRandomSeed', 'num', 0],
18288 [20, 'defaultWidthX', 'num', 0],
18289 [21, 'nominalWidthX', 'num', 0]
18622 case 'num':
26362 var num = this.buf1;
26365 var ref = new Ref(num, this.buf1);
26370 return num;