HomeSort by relevance Sort by last modified time
    Searched defs:Full (Results 1 - 4 of 4) sorted by null

  /external/chromium/net/tools/flip_server/
ring_buffer.h 46 virtual bool Full() const { return ReadableBytes() == BufferSize(); }
simple_buffer.cc 77 bool SimpleBuffer::Full() const {
  /external/webkit/WebCore/inspector/front-end/
Drawer.js 121 this.state = (this.fullPanel ? WebInspector.Drawer.State.Full : WebInspector.Drawer.State.Variable);
201 this._animateDrawerHeight(height, WebInspector.Drawer.State.Full);
212 // so that the new animation can't do an immediate transition between Hidden/Full states.
254 // Immediate if going between Hidden and Full in full panel mode
255 if (this.fullPanel && (this.state === WebInspector.Drawer.State.Hidden || this.state === WebInspector.Drawer.State.Full))
315 Full: 2
  /libcore/luni/src/main/java/java/util/
ArrayDeque.java 47 Empty, Normal, Full;
87 // canRemove means "next" method is called, and the Full
92 || ((status == DequeStatus.Full) && !canRemove);
154 // canRemove means "next" method is called, and the Full
159 || ((status == DequeStatus.Full) && !canRemove);
518 * If array of elements is full, there will be a new bigger array to store
522 if (status != DequeStatus.Full) {
551 status = adding ? DequeStatus.Full : DequeStatus.Empty;
683 if (status == DequeStatus.Full) {

Completed in 57 milliseconds