HomeSort by relevance Sort by last modified time
    Searched refs:empty (Results 1 - 25 of 837) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/WebKit/chromium/src/
WebCrossOriginPreflightResultCache.cpp 40 WebCore::CrossOriginPreflightResultCache::shared().empty();
  /external/webkit/WebCore/rendering/
RenderWordBreak.cpp 35 : RenderText(element, StringImpl::empty())
  /external/webkit/WebKit/mac/Misc/
WebCache.h 31 + (void)empty; variable
  /cts/tools/dasm/src/java_cup/runtime/
virtual_parse_stack.java 67 * on the virtual stack). When this portion of the stack becomes empty we
77 * that the virtual stack is currently empty.
83 /* don't transfer if the real stack is empty */
98 /** Indicate whether the stack is empty. */
99 public boolean empty() method in class:virtual_parse_stack
101 /* if vstack is empty then we were unable to transfer onto it and
102 the whole thing is empty. */
103 return vstack.empty();
111 if (vstack.empty())
113 "Internal parser error: top() called on empty virtual stack")
    [all...]
  /external/clearsilver/cs/
test_joo.cs 1 Testing Empty String and empty var
2 Empty has no value assigned (ie, empty), Foo has a value, NotExist doesn't exist
7 [1] Empty == ''
8 <?cs if:Empty == '' ?>
11 FAIL - empty string should equal empty string [1]
15 FAIL - existing var shouldn't equal empty string [2]
21 FAIL - non-existing should be NULL, not empty string [3
    [all...]
  /external/chromium/base/
scoped_temp_dir.cc 15 if (!path_.empty() && !file_util::Delete(path_, true))
30 DCHECK(path_.empty());
46 return !path_.empty() && file_util::DirectoryExists(path_);
simple_thread.cc 53 DCHECK(threads_.empty());
54 DCHECK(delegates_.empty());
59 DCHECK(threads_.empty()) << "Start() called with outstanding threads.";
68 DCHECK(!threads_.empty()) << "JoinAll() called with no outstanding threads.";
79 DCHECK(delegates_.empty());
86 // If we were empty, signal that we have work now.
101 DCHECK(!delegates_.empty());
106 if (delegates_.empty())
string_split_unittest.cc 17 EXPECT_FALSE(SplitStringIntoKeyValues("", // Empty input
20 EXPECT_TRUE(key.empty());
21 EXPECT_TRUE(values.empty());
29 EXPECT_TRUE(values.empty());
33 EXPECT_TRUE(SplitStringIntoKeyValues("\tvalue for empty key",
36 EXPECT_TRUE(key.empty());
50 EXPECT_FALSE(SplitStringIntoKeyValues("", // Empty input
53 EXPECT_TRUE(key.empty());
54 EXPECT_TRUE(values.empty());
62 EXPECT_TRUE(values.empty());
    [all...]
path_service_unittest.cc 20 // to non-empty for the given PathService::DirType enumeration value.
24 return result && !path.value().empty() && file_util::PathExists(path);
32 return !result && path.empty();
  /external/webkit/WebKit/gtk/webkit/
webkitapplicationcache.cpp 30 WebCore::cacheStorage().empty();
  /external/chromium/net/base/
net_util_win.cc 26 if (host.empty()) {
42 if (path.empty())
53 // the given string is not in the current encoding and give us an empty
56 return !file_path_str.empty();
net_util_posix.cc 28 if (old_path.empty())
45 return !file_path_str.empty();
  /frameworks/base/libs/ui/tests/region/
region.cpp 28 Region empty; local
33 Region reg4 = empty | reg1;
34 Region reg5 = reg1 | empty;
  /external/webkit/WebKit/mac/WebCoreSupport/
WebApplicationCache.mm 37 cacheStorage().empty();
  /external/chromium/third_party/icu/source/test/intltest/
strtest.cpp 257 StringPiece empty; local
258 if(!empty.empty() || empty.data()!=NULL || empty.length()!=0 || empty.size()!=0) {
263 if(!null.empty() || null.data()!=NULL || null.length()!=0 || null.size()!=0) {
269 if(abc.empty() || abc.data()!=abc_chars || abc.length()!=3 || abc.size()!=3) {
275 if(abcd.empty() || abcd.data()!=abcdefg_chars || abcd.length()!=4 || abcd.size()!=4) {
282 if(uvwxyz.empty() || uvwxyz.data()!=uvwxyz_string.data() || uvwxyz.length()!=6 || uvwxyz.size()!=6)
    [all...]
  /external/icu4c/test/intltest/
strtest.cpp 257 StringPiece empty; local
258 if(!empty.empty() || empty.data()!=NULL || empty.length()!=0 || empty.size()!=0) {
263 if(!null.empty() || null.data()!=NULL || null.length()!=0 || null.size()!=0) {
269 if(abc.empty() || abc.data()!=abc_chars || abc.length()!=3 || abc.size()!=3) {
275 if(abcd.empty() || abcd.data()!=abcdefg_chars || abcd.length()!=4 || abcd.size()!=4) {
282 if(uvwxyz.empty() || uvwxyz.data()!=uvwxyz_string.data() || uvwxyz.length()!=6 || uvwxyz.size()!=6)
    [all...]
  /external/chromium/net/disk_cache/
eviction.h 29 // If empty is true, the whole cache will be trimmed, regardless of being in
31 void TrimCache(bool empty);
47 bool EvictEntry(CacheRankingsBlock* node, bool empty);
52 void TrimCacheV2(bool empty);
59 void TrimDeleted(bool empty);
hash.h 23 if (key.empty())
block_files_unittest.cc 20 for (FilePath file = iter.Next(); !file.value().empty(); file = iter.Next()) {
56 // We should be able to delete empty block files.
128 int empty_1 = header->empty[0];
129 int empty_2 = header->empty[1];
130 int empty_3 = header->empty[2];
131 int empty_4 = header->empty[3];
134 header->max_entries = header->empty[0] = 0;
135 header->empty[1] = header->empty[2] = header->empty[3] = 0
    [all...]
eviction.cc 72 void Eviction::TrimCache(bool empty) {
74 return TrimCacheV2(empty);
79 if (!empty && backend_->IsLoaded())
88 int target_size = empty ? 0 : max_size_;
95 if (node->Data()->dirty != backend_->GetCurrentEntryId() || empty) {
99 if (!EvictEntry(node.get(), empty))
102 if (!empty) {
197 bool Eviction::EvictEntry(CacheRankingsBlock* node, bool empty) {
205 if (empty || !new_eviction_) {
225 void Eviction::TrimCacheV2(bool empty) {
    [all...]
  /external/webkit/LayoutTests/fast/js/resources/
select-options-remove.js 6 debug("1.1 Remove (object) from empty Options");
13 debug("1.2 Remove (string) from empty Options");
20 debug("1.3 Remove (float) from empty Options");
27 debug("1.4 Remove (boolean) from empty Options");
34 debug("1.5 Remove (undefined) from empty Options");
41 debug("1.6 Remove (null) from empty Options");
48 debug("1.7 Remove (negative infinity) from empty Options");
55 debug("1.8 Remove (NaN) from empty Options");
62 debug("1.9 Remove (positive infinity) from empty Options");
69 debug("1.10 Remove no args from empty Options")
    [all...]
  /external/chromium/net/ftp/
ftp_directory_listing_parser_vms.cc 84 while (!match.empty() && !pattern.empty()) {
89 return match.empty();
171 DCHECK(last_filename_.empty());
172 if (line.empty())
178 // We assume that the first non-empty line is the listing header. It often
183 DCHECK(last_filename_.empty());
184 if (line.empty())
189 if (line.empty()) {
190 if (!last_filename_.empty())
    [all...]
  /external/v8/src/ia32/
jump-target-ia32.cc 66 RegisterFile empty; local
67 cgen()->SetFrame(NULL, &empty);
182 RegisterFile empty; local
186 cgen()->SetFrame(new VirtualFrame(entry_frame_), &empty);
189 cgen()->SetFrame(entry_frame_, &empty);
227 RegisterFile empty; local
228 cgen()->SetFrame(frame, &empty);
250 RegisterFile empty; local
251 cgen()->SetFrame(NULL, &empty);
292 RegisterFile empty; local
319 RegisterFile empty; local
330 RegisterFile empty; local
356 RegisterFile empty; local
    [all...]
  /external/v8/src/x64/
jump-target-x64.cc 66 RegisterFile empty; local
67 cgen()->SetFrame(NULL, &empty);
182 RegisterFile empty; local
186 cgen()->SetFrame(new VirtualFrame(entry_frame_), &empty);
189 cgen()->SetFrame(entry_frame_, &empty);
227 RegisterFile empty; local
228 cgen()->SetFrame(frame, &empty);
250 RegisterFile empty; local
251 cgen()->SetFrame(NULL, &empty);
292 RegisterFile empty; local
319 RegisterFile empty; local
330 RegisterFile empty; local
356 RegisterFile empty; local
    [all...]
  /device/samsung/crespo/alsa-lib/src/pcm/
interval.c 230 t.empty = 0;
239 if (a->empty || b->empty) {
243 c->empty = 0;
253 if (a->empty || b->empty) {
257 c->empty = 0;
267 if (a->empty || b->empty) {
271 c->empty = 0
    [all...]

Completed in 406 milliseconds

1 2 3 4 5 6 7 8 91011>>