Lines Matching refs:unsetAlpha
524 RemoteColor.prototype.toColor = function(unsetAlpha) argument
527 + (unsetAlpha ? 1 : this.alpha / 255) + ')';
531 RemoteColor.prototype.toUint32 = function(unsetAlpha) argument
534 | (unsetAlpha ? 255 : this.alpha) << 24;
631 function RemoteBitmap(remoteMessage, unsetAlpha, colorSpace, flags) argument
634 this.readFrom(remoteMessage, unsetAlpha, colorSpace, flags);
640 RemoteBitmap.prototype.readFrom = function(remoteMessage, unsetAlpha, argument
676 if (unsetAlpha) {
691 if (!unsetAlpha && output[i] == B_TRANSPARENT_MAGIC_RGBA32)
827 function RemoteGradient(remoteMessage, context, unsetAlpha) argument
830 this.readFrom(remoteMessage, context, unsetAlpha);
838 RemoteGradient.prototype.readFrom = function(remoteMessage, context, unsetAlpha) argument
866 var color = remoteMessage.readColor(unsetAlpha);
1018 RemoteMessage.prototype.readColor = function(unsetAlpha) argument
1020 return RemoteMessage.staticRemoteColor.readFrom(this).toColor(unsetAlpha);
1063 style = style.toColor(this.unsetAlpha);
1066 this.invert ? 0x00000000 : this.lowColor.toUint32(this.unsetAlpha),
1068 ? 0xffffffff : this.highColor.toUint32(this.unsetAlpha));
1193 this.unsetAlpha = this.constantAlpha;
1205 this.unsetAlpha = false;
1211 this.unsetAlpha = true;
1221 this.unsetAlpha = this.constantAlpha;
1301 var bitmap = new RemoteBitmap(remoteMessage, this.unsetAlpha);
1321 var bitmap = new RemoteBitmap(remoteMessage, this.unsetAlpha,
1338 context.fillStyle = this.highColor.toColor(this.unsetAlpha);
1359 context.fillStyle = this.highColor.toColor(this.unsetAlpha);
1487 this.unsetAlpha);
1525 context.strokeStyle = remoteMessage.readColor(this.unsetAlpha);
1541 context.fillStyle = remoteMessage.readColor(this.unsetAlpha);
1554 context.strokeStyle = remoteMessage.readColor(this.unsetAlpha);
1574 context.strokeStyle = remoteMessage.readColor(this.unsetAlpha);
1594 this.unsetAlpha);
1633 this.unsetAlpha);
1662 context.fillStyle = remoteMessage.readColor(this.unsetAlpha);
1679 this.unsetAlpha);
1702 this.unsetAlpha);