/external/clang/test/Lexer/ |
has_feature_type_traits.cpp | 63 #if __has_feature(is_empty) 64 int is_empty(); 66 // CHECK: int is_empty();
|
/external/chromium/net/proxy/ |
proxy_info.h | 48 if (is_empty()) 55 if (is_empty()) 62 if (is_empty()) 69 if (is_empty()) 75 bool is_empty() const { function in class:net::ProxyInfo 79 // Returns the first valid proxy server. is_empty() must be false to be able
|
/external/chromium/net/base/ |
static_cookie_policy.cc | 22 if (first_party_for_cookies.is_empty()) 42 if (first_party_for_cookies.is_empty())
|
/external/chromium/chrome/common/extensions/ |
extension_extent.h | 24 bool is_empty() const;
|
extension_extent.cc | 25 bool ExtensionExtent::is_empty() const { function in class:ExtensionExtent
|
/external/mesa3d/src/glsl/ |
list.h | 323 bool is_empty() const function in struct:exec_list 340 return !is_empty() ? head : NULL; 345 return !is_empty() ? head : NULL; 350 return !is_empty() ? tail_pred : NULL; 355 return !is_empty() ? tail_pred : NULL; 408 if (is_empty()) { 428 if (source->is_empty()) 462 if (before->is_empty())
|
opt_redundant_jumps.cpp | 79 if (ir->then_instructions.is_empty() && ir->else_instructions.is_empty())
|
loop_analysis.cpp | 141 assert(!this->state.is_empty()); 157 if (this->state.is_empty()) 327 if (!this->state.is_empty()) 338 if (!this->state.is_empty()) 349 if (this->state.is_empty()) 363 assert(!this->state.is_empty()); 472 if (!ir->else_instructions.is_empty())
|
main.cpp | 73 if (!state->error && !state->translation_unit.is_empty()) 83 if (!state->error && !shader->ir->is_empty()) {
|
/external/chromium/chrome/browser/net/ |
browser_url_util.cc | 19 if (url.is_empty() || !url.is_valid() || !clipboard)
|
/external/dbus/bus/ |
config-loader-libxml.c | 54 int i, status, is_empty; local 64 is_empty = xmlTextReaderIsEmptyElement (reader); 66 if (name == NULL || n_attributes < 0 || is_empty == -1) 102 if (ret && is_empty == 1)
|
/external/v8/src/ |
splay-tree-inl.h | 46 if (is_empty()) { 85 if (is_empty()) 106 if (is_empty()) 130 if (is_empty()) 153 if (is_empty()) 165 if (is_empty()) 227 if (is_empty())
|
func-name-inferrer.h | 54 bool IsOpen() const { return !entries_stack_.is_empty(); } 79 if (!funcs_to_infer_.is_empty()) {
|
smart-pointer.h | 90 ASSERT(is_empty()); 98 inline bool is_empty() { function in class:v8::internal::SmartPointer
|
codegen.cc | 79 if (print_source && !filter.is_empty()) { 82 if (print_ast && !filter.is_empty()) { 85 if (print_json_ast && !filter.is_empty()) { 141 bool match = filter.is_empty() || function->debug_name()->IsEqualTo(filter);
|
/external/chromium/chrome/browser/autocomplete/ |
search_provider_unittest.cc | 249 EXPECT_TRUE(!term1_match.destination_url.is_empty()); 257 EXPECT_TRUE(!what_you_typed_match.destination_url.is_empty()); 313 ASSERT_TRUE(!match.destination_url.is_empty()); 377 EXPECT_TRUE(!instant_match.destination_url.is_empty()); 387 EXPECT_TRUE(!what_you_typed_match.destination_url.is_empty()); 411 EXPECT_FALSE(instant_match.destination_url.is_empty()); 424 EXPECT_FALSE(instant_match.destination_url.is_empty()); 454 EXPECT_FALSE(instant_match.destination_url.is_empty());
|
/external/chromium/chrome/browser/safe_browsing/ |
malware_details.cc | 133 if (!parent.is_empty() && IsPublicUrl(parent)) { 176 if (!resource_.original_url.is_empty() && 191 if (!resource_.original_url.is_empty()) { 201 if (nav_entry && !referrer_url.is_empty()) {
|
/external/chromium/chrome/browser/sync/glue/ |
extension_util.cc | 33 if (!extension.update_url().is_empty() && 78 if (!update_url.is_empty() && !update_url.is_valid()) { 200 if (!update_url.is_empty() && !update_url.is_valid()) {
|
/frameworks/base/core/java/android/os/ |
DropBoxManager.java | 49 public static final int IS_EMPTY = 1; 105 mFlags = IS_EMPTY; 126 if (((flags & IS_EMPTY) != 0) != (data == null)) { 143 if (((flags & IS_EMPTY) != 0) != (data == null)) { 160 if ((flags & IS_EMPTY) != 0) throw new IllegalArgumentException("Bad flags: " + flags);
|
/frameworks/base/services/tests/servicestests/src/com/android/server/ |
DropBoxTest.java | 554 DropBoxManager.IS_EMPTY).writeToParcel(parcel, 0); 559 DropBoxManager.IS_EMPTY).writeToParcel(parcel, 0); 560 fail("IllegalArgumentException expected for non-null byte[] and IS_EMPTY flags"); 567 fail("IllegalArgumentException expected for null byte[] and non-IS_EMPTY flags"); 582 DropBoxManager.IS_EMPTY).writeToParcel(parcel, 0); 592 new DropBoxManager.Entry("badfile", 99999, f, DropBoxManager.IS_EMPTY).writeToParcel( 594 fail("IllegalArgumentException expected for non-null file and IS_EMPTY flags"); 601 fail("IllegalArgumentException expected for null PFD and non-IS_EMPTY flags"); 628 assertEquals(DropBoxManager.IS_EMPTY, e.getFlags()); 661 assertEquals(DropBoxManager.IS_EMPTY, e.getFlags()) [all...] |
/frameworks/base/services/java/com/android/server/ |
DropBoxManagerService.java | 166 if ((flags & DropBoxManager.IS_EMPTY) != 0) throw new IllegalArgumentException(); 270 if ((entry.flags & DropBoxManager.IS_EMPTY) != 0) { 344 } else if ((entry.flags & DropBoxManager.IS_EMPTY) != 0) { 468 if ((flags & DropBoxManager.IS_EMPTY) != 0) throw new IllegalArgumentException(); 493 this.flags = DropBoxManager.IS_EMPTY; 513 this.flags = DropBoxManager.IS_EMPTY; 524 flags |= DropBoxManager.IS_EMPTY; 532 this.flags = DropBoxManager.IS_EMPTY; 550 this.flags = DropBoxManager.IS_EMPTY; 647 if ((late.flags & DropBoxManager.IS_EMPTY) == 0) [all...] |
/external/chromium/chrome/browser/geolocation/ |
geolocation_exceptions_table_model.cc | 149 if (entry.embedding_origin.is_empty()) { 207 bool embedding_origin1_empty = entry1.embedding_origin.is_empty(); 208 bool embedding_origin2_empty = entry2.embedding_origin.is_empty();
|
/external/chromium/chrome/browser/printing/cloud_print/ |
cloud_print_url.cc | 40 if (cloud_print_service_url.is_empty()) {
|
/external/chromium/chrome/browser/prerender/ |
prerender_resource_handler_unittest.cc | 131 EXPECT_TRUE(last_handled_url_.is_empty()); 192 EXPECT_TRUE(last_handled_url_.is_empty());
|
/external/chromium/chrome/browser/extensions/ |
extension_context_menu_model.cc | 118 DCHECK(!extension->options_url().is_empty());
|