HomeSort by relevance Sort by last modified time
    Searched refs:_state (Results 26 - 50 of 71) sorted by null

12 3

  /external/jmdns/src/javax/jmdns/impl/
ServiceInfoImpl.java 64 private final ServiceInfoState _state; field in class:ServiceInfoImpl
95 if (this._state.isAnnounced()) {
199 this._state = new ServiceInfoState(this);
233 this._state = new ServiceInfoState(this);
    [all...]
  /external/lzma/Java/SevenZip/Compression/LZMA/
Encoder.java 53 int _state = Base.StateInit(); field in class:Encoder
59 _state = Base.StateInit();
604 _optimum[0].State = _state;
608 _optimum[1].Price = SevenZip.Compression.RangeCoder.Encoder.GetPrice0(_isMatch[(_state << Base.kNumPosStatesBitsMax) + posState]) +
609 _literalEncoder.GetSubCoder(position, _previousByte).GetPrice(!Base.StateIsCharState(_state), matchByte, currentByte);
612 int matchPrice = SevenZip.Compression.RangeCoder.Encoder.GetPrice1(_isMatch[(_state << Base.kNumPosStatesBitsMax) + posState]);
613 int repMatchPrice = matchPrice + SevenZip.Compression.RangeCoder.Encoder.GetPrice1(_isRep[_state]);
617 int shortRepPrice = repMatchPrice + GetRepLen1Price(_state, posState);
650 int price = repMatchPrice + GetPureRepPrice(i, _state, posState);
666 int normalMatchPrice = matchPrice + SevenZip.Compression.RangeCoder.Encoder.GetPrice0(_isRep[_state]);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
StatusBarButton.js 119 this._state = false;
121 this._state = 0;
173 return this._state;
178 if (this._state === x)
184 this.element.classList.remove("toggled-" + this._state);
188 this._state = x;
  /external/chromium/net/tools/testserver/
chromiumsync.py 183 self._state = {}
195 self._state[data_type] = timestamp
198 self._state[data_type] = request.from_timestamp
199 if self._state:
200 self._state[TOP_LEVEL] = min(self._state.itervalues())
204 return self._state.get(GetEntryType(item), sys.maxint) < item.version
208 return bool(self._state)
212 return min(self._state.itervalues())
216 return [datatype for datatype, timestamp in self._state.iteritems(
    [all...]
chromiumsync_test.py 354 self.assertEqual(sieve._state,
379 self.assertEqual(sieve._state,
402 self.assertEqual(sieve._state,
446 self.assertEqual(sieve._state,
471 self.assertEqual(sieve._state,
  /external/chromium_org/sync/tools/testserver/
xmppserver.py 258 self._state = self._INITIAL_STREAM_NEEDED
314 self._state = self._FINISHED
317 if self._state == self._INITIAL_STREAM_NEEDED:
320 self._state = self._AUTH_NEEDED
322 elif self._state == self._AUTH_NEEDED:
327 self._state = self._AUTH_STREAM_NEEDED
332 elif self._state == self._AUTH_STREAM_NEEDED:
335 self._state = self._BIND_NEEDED
337 elif self._state == self._BIND_NEEDED:
349 self._state = self._SESSION_NEEDE
    [all...]
chromiumsync.py 395 self._state = {}
413 self._state[data_type] = timestamp
416 self._state[data_type] = request.from_timestamp
418 if self._state:
419 self._state[TOP_LEVEL] = min(self._state.itervalues())
423 for data_type, timestamp in self._state.iteritems():
435 return self._state.get(GetEntryType(item), sys.maxint) < item.version
439 return bool(self._state)
443 return min(self._state.itervalues()
    [all...]
chromiumsync_test.py 319 self.assertEqual(sieve._state,
344 self.assertEqual(sieve._state,
367 self.assertEqual(sieve._state,
412 self.assertEqual(sieve._state,
435 self.assertEqual(sieve._state,
477 self.assertEqual(sieve._state,
  /external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
__init__.py 22 self._state = state
  /external/lzma/CPP/7zip/Compress/
Lzma2Decoder.h 30 CLzma2Dec _state; member in class:NCompress::NLzma2::CDecoder
LzmaDecoder.h 29 CLzmaDec _state; member in class:NCompress::NLzma::CDecoder
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/
Python.stg 125 self._state.ruleMemo = {}
169 self._state.token = None
170 self._state.channel = DEFAULT_CHANNEL
171 self._state.tokenStartCharIndex = self.input.index()
172 self._state.tokenStartCharPositionInLine = self.input.charPositionInLine
173 self._state.tokenStartLine = self.input.line
174 self._state._text = None
179 self._state.backtracking = 1
183 self._state.backtracking = 0
193 return self._state.toke
    [all...]
  /external/chromium_org/v8/tools/push-to-trunk/
common_includes.py 221 self._state = state
226 assert self._state is not None
241 if not self._state[self._requires]:
342 if self._state.get(var_name) is None:
343 self._state[var_name] = self.Restore(var_name)
377 if self._state["current_branch"] != self._config[TEMP_BRANCH]:
386 self.Git("checkout -f %s" % self._state["current_branch"])
387 if self._config[TEMP_BRANCH] != self._state["current_branch"]:
389 if self._config[BRANCHNAME] != self._state["current_branch"]:
401 self._state["%s%s" % (prefix, var_name)] = valu
    [all...]
test_scripts.py 408 self.assertEquals("3", step._state["major"])
409 self.assertEquals("22", step._state["minor"])
410 self.assertEquals("5", step._state["build"])
411 self.assertEquals("0", step._state["patch"])
  /external/lzma/CS/7zip/Compress/LZMA/
LzmaEncoder.cs 53 Base.State _state = new Base.State(); field in class:SevenZip.Compression.LZMA.Encoder
59 _state.Init();
604 _optimum[0].State = _state;
608 _optimum[1].Price = _isMatch[(_state.Index << Base.kNumPosStatesBitsMax) + posState].GetPrice0() +
609 _literalEncoder.GetSubCoder(position, _previousByte).GetPrice(!_state.IsCharState(), matchByte, currentByte);
612 UInt32 matchPrice = _isMatch[(_state.Index << Base.kNumPosStatesBitsMax) + posState].GetPrice1();
613 UInt32 repMatchPrice = matchPrice + _isRep[_state.Index].GetPrice1();
617 UInt32 shortRepPrice = repMatchPrice + GetRepLen1Price(_state, posState);
650 UInt32 price = repMatchPrice + GetPureRepPrice(i, _state, posState);
666 UInt32 normalMatchPrice = matchPrice + _isRep[_state.Index].GetPrice0();
    [all...]
  /dalvik/vm/compiler/
CompilerIR.h 284 #define HEAP_ACCESS_SHADOW(_state) cUnit->heapMemOp = _state
286 #define HEAP_ACCESS_SHADOW(_state)
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/galahad/
glhd_context.c 503 const struct pipe_framebuffer_state *_state)
511 if (_state->nr_cbufs > PIPE_MAX_COLOR_BUFS) {
513 _state->nr_cbufs, PIPE_MAX_COLOR_BUFS);
514 } else if (_state->nr_cbufs >
517 _state->nr_cbufs,
522 if (_state) {
523 memcpy(&unwrapped_state, _state, sizeof(unwrapped_state));
524 for(i = 0; i < _state->nr_cbufs; i++)
525 unwrapped_state.cbufs[i] = galahad_surface_unwrap(_state->cbufs[i]);
528 unwrapped_state.zsbuf = galahad_surface_unwrap(_state->zsbuf)
    [all...]
  /external/mesa3d/src/gallium/drivers/galahad/
glhd_context.c 503 const struct pipe_framebuffer_state *_state)
511 if (_state->nr_cbufs > PIPE_MAX_COLOR_BUFS) {
513 _state->nr_cbufs, PIPE_MAX_COLOR_BUFS);
514 } else if (_state->nr_cbufs >
517 _state->nr_cbufs,
522 if (_state) {
523 memcpy(&unwrapped_state, _state, sizeof(unwrapped_state));
524 for(i = 0; i < _state->nr_cbufs; i++)
525 unwrapped_state.cbufs[i] = galahad_surface_unwrap(_state->cbufs[i]);
528 unwrapped_state.zsbuf = galahad_surface_unwrap(_state->zsbuf)
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
dfa.py 153 if self.recognizer._state.backtracking > 0:
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/rbug/
rbug_context.c 645 const struct pipe_framebuffer_state *_state)
661 if (_state) {
662 memcpy(&unwrapped_state, _state, sizeof(unwrapped_state));
664 rb_pipe->curr.nr_cbufs = _state->nr_cbufs;
665 for(i = 0; i < _state->nr_cbufs; i++) {
666 unwrapped_state.cbufs[i] = rbug_surface_unwrap(_state->cbufs[i]);
667 if (_state->cbufs[i])
668 rb_pipe->curr.cbufs[i] = rbug_resource(_state->cbufs[i]->texture);
670 unwrapped_state.zsbuf = rbug_surface_unwrap(_state->zsbuf);
671 if (_state->zsbuf
    [all...]
  /external/mesa3d/src/gallium/drivers/rbug/
rbug_context.c 645 const struct pipe_framebuffer_state *_state)
661 if (_state) {
662 memcpy(&unwrapped_state, _state, sizeof(unwrapped_state));
664 rb_pipe->curr.nr_cbufs = _state->nr_cbufs;
665 for(i = 0; i < _state->nr_cbufs; i++) {
666 unwrapped_state.cbufs[i] = rbug_surface_unwrap(_state->cbufs[i]);
667 if (_state->cbufs[i])
668 rb_pipe->curr.cbufs[i] = rbug_resource(_state->cbufs[i]->texture);
670 unwrapped_state.zsbuf = rbug_surface_unwrap(_state->zsbuf);
671 if (_state->zsbuf
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
managers.py 478 self._state = State()
479 self._state.value = State.INITIAL
491 assert self._state.value == State.INITIAL
502 self._state.value = State.STARTED
508 assert self._state.value == State.INITIAL
532 self._state.value = State.STARTED
536 self._state, self._Client),
564 assert self._state.value == State.STARTED, 'server not yet started'
788 state = self._manager and self._manager._state
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
managers.py 478 self._state = State()
479 self._state.value = State.INITIAL
491 assert self._state.value == State.INITIAL
502 self._state.value = State.STARTED
508 assert self._state.value == State.INITIAL
532 self._state.value = State.STARTED
536 self._state, self._Client),
564 assert self._state.value == State.STARTED, 'server not yet started'
788 state = self._manager and self._manager._state
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/identity/
id_context.c 454 const struct pipe_framebuffer_state *_state)
463 if (_state) {
464 memcpy(&unwrapped_state, _state, sizeof(unwrapped_state));
465 for(i = 0; i < _state->nr_cbufs; i++)
466 unwrapped_state.cbufs[i] = identity_surface_unwrap(_state->cbufs[i]);
469 unwrapped_state.zsbuf = identity_surface_unwrap(_state->zsbuf);
  /external/mesa3d/src/gallium/drivers/identity/
id_context.c 454 const struct pipe_framebuffer_state *_state)
463 if (_state) {
464 memcpy(&unwrapped_state, _state, sizeof(unwrapped_state));
465 for(i = 0; i < _state->nr_cbufs; i++)
466 unwrapped_state.cbufs[i] = identity_surface_unwrap(_state->cbufs[i]);
469 unwrapped_state.zsbuf = identity_surface_unwrap(_state->zsbuf);

Completed in 1499 milliseconds

12 3