OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsFull
(Results
1 - 25
of
36
) sorted by null
1
2
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
fifo_interface.h
23
virtual bool
IsFull
() = 0;
fifo_null.h
20
virtual bool
IsFull
() { return false; }
fifo_packet.h
34
virtual bool
IsFull
();
event_emitter_stream.cc
35
if (!out_fifo()->
IsFull
())
fifo_char.h
25
virtual bool
IsFull
();
fifo_packet.cc
45
bool FIFOPacket::
IsFull
() {
fifo_char.cc
31
bool FIFOChar::
IsFull
() {
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
jid_unittest.cc
18
EXPECT_FALSE(jid.
IsFull
());
30
EXPECT_FALSE(jid.
IsFull
());
42
EXPECT_TRUE(jid.
IsFull
());
54
EXPECT_TRUE(jid.
IsFull
());
66
EXPECT_FALSE(jid.
IsFull
());
78
EXPECT_FALSE(jid.
IsFull
());
90
EXPECT_FALSE(jid.
IsFull
());
102
EXPECT_TRUE(jid.
IsFull
());
114
EXPECT_TRUE(jid.
IsFull
());
jid.h
64
bool
IsFull
() const;
jid.cc
134
bool Jid::
IsFull
() const {
141
if (!
IsFull
())
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
fifo_test.cc
33
EXPECT_FALSE(fifo.
IsFull
());
95
EXPECT_FALSE(fifo.
IsFull
());
105
EXPECT_FALSE(fifo.
IsFull
());
111
EXPECT_FALSE(fifo.
IsFull
());
122
EXPECT_FALSE(fifo.
IsFull
());
138
EXPECT_FALSE(fifo.
IsFull
());
145
EXPECT_FALSE(fifo.
IsFull
());
152
EXPECT_TRUE(fifo.
IsFull
());
159
EXPECT_TRUE(fifo.
IsFull
());
167
EXPECT_FALSE(fifo.
IsFull
());
[
all
...]
/external/chromium_org/third_party/libjingle/source/talk/base/
atomicops.h
97
if (
IsFull
()) {
146
int
IsFull
() const { return pushed_count_ == popped_count_ + capacity_; }
/external/chromium_org/content/common/gpu/media/
h264_dpb.h
122
bool
IsFull
() const { return pics_.size() == max_num_pics_; }
/external/chromium_org/third_party/libwebp/utils/
huffman.c
34
static int
IsFull
(const HuffmanTree* const tree) {
129
if (
IsFull
(tree)) return 0; // error: too many symbols.
198
ok = ok &&
IsFull
(tree);
233
ok = ok &&
IsFull
(tree);
/external/webp/src/utils/
huffman.c
34
static int
IsFull
(const HuffmanTree* const tree) {
129
if (
IsFull
(tree)) return 0; // error: too many symbols.
198
ok = ok &&
IsFull
(tree);
233
ok = ok &&
IsFull
(tree);
/external/v8/src/
mark-compact.h
184
inline bool
IsFull
() { return ((top_ + 1) & mask_) == bottom_; }
199
if (
IsFull
()) {
211
if (
IsFull
()) {
229
if (
IsFull
()) {
319
inline bool
IsFull
() {
354
if (buffer == NULL || buffer->
IsFull
()) {
/external/chromium_org/jingle/notifier/listener/
push_notifications_subscribe_task.cc
81
DCHECK(jid.
IsFull
());
/external/chromium_org/sync/engine/
get_commit_ids.cc
229
bool
IsFull
() const;
354
bool Traversal::
IsFull
() const {
377
!
IsFull
() && iter != ready_unsynced_set.end(); ++iter) {
412
!
IsFull
() && iter != ready_unsynced_set.end(); ++iter) {
469
!
IsFull
() && iter != ready_unsynced_set.end(); ++iter) {
/external/chromium_org/v8/src/
mark-compact.h
184
inline bool
IsFull
() { return ((top_ + 1) & mask_) == bottom_; }
199
if (
IsFull
()) {
211
if (
IsFull
()) {
229
if (
IsFull
()) {
339
inline bool
IsFull
() {
374
if (buffer == NULL || buffer->
IsFull
()) {
[
all
...]
/external/chromium/chrome/browser/history/
top_sites.h
164
virtual bool
IsFull
();
/external/chromium/third_party/libjingle/source/talk/xmpp/
jid.h
86
bool
IsFull
() const;
jid.cc
177
Jid::
IsFull
() const {
186
if (!
IsFull
())
/external/chromium/chrome/browser/tab_contents/
thumbnail_generator_unittest.cc
293
virtual bool
IsFull
() {
355
ASSERT_TRUE(top_sites->
IsFull
());
/external/chromium_org/base/debug/
trace_event_impl.cc
159
virtual bool
IsFull
() const OVERRIDE {
228
virtual bool
IsFull
() const OVERRIDE { return false; }
291
// AddMetadataEventsWhileLocked(). We can not DECHECK(!
IsFull
()) because we
311
virtual bool
IsFull
() const OVERRIDE {
402
DCHECK(!
IsFull
());
[
all
...]
trace_event_impl.h
196
bool
IsFull
() const { return next_free_ == kTraceBufferChunkSize; }
230
virtual bool
IsFull
() const = 0;
Completed in 246 milliseconds
1
2