HomeSort by relevance Sort by last modified time
    Searched refs:empty (Results 176 - 200 of 3245) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
StackTest.java 36 * @tests java.util.Stack#empty()
39 // Test for method boolean java.util.Stack.empty()
40 assertTrue("New stack answers non-empty", s.empty());
42 assertTrue("Stack should not be empty but answers empty", !s.empty());
44 assertTrue("Stack should be empty but answers non-empty", s.empty());
    [all...]
  /external/chromium/base/i18n/
char_iterator_unittest.cc 14 std::string empty("");
15 UTF8CharIterator empty_iter(&empty);
52 string16 empty = UTF8ToUTF16(""); local
53 UTF16CharIterator empty_iter(&empty);
  /external/chromium/base/test/
perf_test_suite.cc 27 if (log_path.empty()) {
  /external/chromium/base/win/
win_util_unittest.cc 46 EXPECT_TRUE(!user_sid.empty());
  /external/chromium/chrome/browser/autofill/
address.cc 60 // If the text to match against the field types is empty, then no results will
62 if (text.empty())
87 if (!line1_.empty())
90 if (!line2_.empty())
93 if (!city_.empty())
96 if (!state_.empty())
99 if (!zip_code_.empty())
102 if (!country_code_.empty())
158 if (country_code().empty())
207 return (!country_code.empty() && country_code_ == country_code)
    [all...]
phone_number.cc 79 if (!number().empty())
82 if (!city_code().empty())
85 if (!country_code().empty())
88 if (!CityAndNumber().empty())
91 if (!WholeNumber().empty())
167 if (working.empty())
177 if (!country_code_.empty())
180 if (!city_code_.empty())
183 if (!number_.empty())
  /external/chromium/chrome/browser/chromeos/login/
base_login_display_host.cc 48 if (!oem_layout.empty()) {
65 if (!layout.empty()) {
127 if (!WizardController::IsDeviceRegistered() && !users.empty()) {
184 if (initial_input_method_id.empty()) {
199 (first_screen_name.empty() && oobe_complete) ||
233 if (current_locale.empty()) {
238 if (!locale.empty()) {
258 CHECK(!loaded_locale.empty()) << "Locale could not be found for "
279 if (!timezone_name.empty()) {
textfield_with_margin.cc 39 if (e.key_code() == ui::VKEY_ESCAPE && !text().empty()) {
  /external/chromium/chrome/browser/content_settings/
content_settings_details.h 34 bool update_all() const { return pattern_.AsString().empty(); }
  /external/chromium/chrome/browser/extensions/
external_policy_extension_loader_unittest.cc 113 std::set<std::string> empty; local
114 mv.Visit(&forced_extensions, &forced_extensions, empty);
143 std::set<std::string> empty; local
144 mv.Visit(&forced_extensions, &valid_extensions, empty);
  /external/chromium/chrome/browser/net/
file_system_url_request_job_factory.cc 26 if (!path.empty() && path[path.size() - 1] == '/') {
  /external/chromium/chrome/browser/policy/
policy_map.h 39 bool empty() const;
  /external/chromium/chrome/browser/service/
service_process_control_manager.cc 17 DCHECK(process_control_list_.empty());
  /external/chromium/chrome/browser/tab_contents/
tab_specific_content_settings.cc 15 bool TabSpecificContentSettings::LocalSharedObjectsContainer::empty() const { function in class:TabSpecificContentSettings::LocalSharedObjectsContainer
16 return cookies_->GetAllCookies().empty() &&
17 appcaches_->empty() &&
18 databases_->empty() &&
19 indexed_dbs_->empty() &&
20 local_storages_->empty() &&
21 session_storages_->empty();
87 if (!resource_identifier.empty())
110 if (cookie_list.empty())
  /external/chromium/chrome/common/
common_glue.cc 39 DCHECK(!lang.empty() ||
switch_utils_unittest.cc 24 EXPECT_FALSE(cmd_line.command_line_string().empty());
  /external/chromium/chrome/common/web_resource/
web_resource_unpacker.cc 28 if (!resource_data_.empty()) {
  /external/chromium/net/base/
platform_mime_util_linux.cc 27 if (out == "application/octet-stream" || out.empty())
  /external/clang/include/clang/Sema/
CXXFieldCollector.h 62 assert(!FieldCount.empty() && "no currently-parsed class");
  /external/gtest/test/
gtest-port_test.cc 124 const RE empty(TypeParam(""));
125 EXPECT_STREQ("", empty.pattern());
143 const RE empty(TypeParam(""));
144 EXPECT_TRUE(RE::FullMatch(TypeParam(""), empty));
145 EXPECT_FALSE(RE::FullMatch(TypeParam("a"), empty));
156 const RE empty(TypeParam(""));
157 EXPECT_TRUE(RE::PartialMatch(TypeParam(""), empty));
158 EXPECT_TRUE(RE::PartialMatch(TypeParam("a"), empty));
580 const RE empty("");
581 EXPECT_STREQ("", empty.pattern())
    [all...]
  /external/llvm/include/llvm/ADT/
SetVector.h 48 /// @brief Construct an empty SetVector
57 /// @brief Determine if the SetVector is empty or not.
58 bool empty() const { function in class:llvm::SetVector
59 return vector_.empty();
89 assert(!empty() && "Cannot call back() on empty SetVector!");
143 assert(!empty() && "Cannot remove an element from an empty SetVector!");
  /external/llvm/lib/Bitcode/Writer/
BitWriter.cpp 23 if (!ErrorInfo.empty())
  /external/llvm/lib/CodeGen/
MachineModuleInfoImpls.cpp 41 if (!List.empty())
  /external/llvm/lib/MC/
MCSectionMachO.cpp 168 while (!Str.empty() && isspace(Str[0]))
170 while (!Str.empty() && isspace(Str.back()))
177 /// parameters and returns an empty string. When an invalid section
190 if (Comma.second.empty())
199 if (Segment.empty() || Segment.size() > 16)
211 if (Section.empty() || Section.size() > 16)
218 if (Comma.second.empty())
244 if (Comma.second.empty()) {
276 if (Plus.second.empty()) break;
281 if (Comma.second.empty()) {
    [all...]
  /external/llvm/lib/Support/
ToolOutputFile.cpp 41 if (!ErrorInfo.empty())

Completed in 997 milliseconds

1 2 3 4 5 6 78 91011>>