Lines Matching full:status

6462 	     *   { 'user': 'barney',  'status': 'busy', 'active': false },
6463 * { 'user': 'fred', 'status': 'busy', 'active': true },
6464 * { 'user': 'pebbles', 'status': 'away', 'active': true }
6472 * _.pluck(_.dropRightWhile(users, { 'status': 'away' }), 'user');
6512 * { 'user': 'barney', 'status': 'busy', 'active': true },
6513 * { 'user': 'fred', 'status': 'busy', 'active': false },
6514 * { 'user': 'pebbles', 'status': 'away', 'active': true }
6522 * _.pluck(_.dropWhile(users, { 'status': 'busy' }), 'user');
7245 * { 'user': 'barney', 'status': 'busy', 'active': false },
7246 * { 'user': 'fred', 'status': 'busy', 'active': true },
7247 * { 'user': 'pebbles', 'status': 'away', 'active': true }
7255 * _.pluck(_.takeRightWhile(users, { 'status': 'away' }), 'user');
7295 * { 'user': 'barney', 'status': 'busy', 'active': true },
7296 * { 'user': 'fred', 'status': 'busy', 'active': false },
7297 * { 'user': 'pebbles', 'status': 'away', 'active': true }
7305 * _.pluck(_.takeWhile(users, { 'status': 'busy' }), 'user');
8033 * { 'user': 'barney', 'age': 36, 'status': 'busy' },
8034 * { 'user': 'fred', 'age': 40, 'status': 'busy' }
8037 * _.result(_.findWhere(users, { 'status': 'busy' }), 'user');
8778 * { 'user': 'barney', 'age': 36, 'status': 'busy', 'pets': ['hoppy'] },
8779 * { 'user': 'fred', 'age': 40, 'status': 'busy', 'pets': ['baby puss', 'dino'] }
8788 * _.pluck(_.where(users, { 'status': 'busy' }), 'user');
11226 * _.result(object, 'status', 'busy');
11229 * _.result(object, 'status', _.constant('busy'));
21021 var status = zlib_deflate.deflateInit2(
21034 var status = zlib_inflate.inflateInit2(
21043 if (status !== exports.Z_OK) {
21044 this._error(status);
21134 var status = zlib_deflate.deflate(strm, flush);
21140 var status = zlib_inflate.inflate(strm, flush);
21146 if (status !== exports.Z_STREAM_END && status !== exports.Z_OK) {
21147 this._error(status);
21175 var status = zlib_deflate.deflateReset(this.strm);
21179 var status = zlib_inflate.inflateReset(this.strm);
21183 if (status !== exports.Z_OK) {
21184 this._error(status);
21188 Zlib.prototype._error = function(status) {
21189 this.onerror(msg[status] + ': ' + this.strm.msg, status);
22331 this.status = 0; /* as the name implies */
22536 s.status = (s.wrap ? INIT_STATE : BUSY_STATE);
22653 (s.status === FINISH_STATE && flush !== Z_FINISH)) {
22662 if (s.status === INIT_STATE) {
22679 s.status = BUSY_STATE;
22704 s.status = EXTRA_STATE;
22725 s.status = BUSY_STATE;
22738 if (s.status === EXTRA_STATE) {
22761 s.status = NAME_STATE;
22765 s.status = NAME_STATE;
22768 if (s.status === NAME_STATE) {
22799 s.status = COMMENT_STATE;
22803 s.status = COMMENT_STATE;
22806 if (s.status === COMMENT_STATE) {
22836 s.status = HCRC_STATE;
22840 s.status = HCRC_STATE;
22843 if (s.status === HCRC_STATE) {
22852 s.status = BUSY_STATE;
22856 s.status = BUSY_STATE;
22885 if (s.status === FINISH_STATE && strm.avail_in !== 0) {
22892 (flush !== Z_NO_FLUSH && s.status !== FINISH_STATE)) {
22898 s.status = FINISH_STATE;
22975 var status;
22981 status = strm.state.status;
22982 if (status !== INIT_STATE &&
22983 status !== EXTRA_STATE &&
22984 status !== NAME_STATE &&
22985 status !== COMMENT_STATE &&
22986 status !== HCRC_STATE &&
22987 status !== BUSY_STATE &&
22988 status !== FINISH_STATE
22995 return status === BUSY_STATE ? err(strm, Z_DATA_ERROR) : Z_OK;