Searched defs:empty (Results 1 - 25 of 312) sorted by path

1234567891011>>

/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dtree.rb251 children.nil? or children.empty?
288 stack.push( cursor.children.dup ) unless cursor.empty?
292 break if stack.empty?
294 stack.pop if stack.last.empty?
409 empty? and return to_s
424 stack.push( Array[ *cursor ] ) unless cursor.empty?
428 break if stack.empty?
430 stack.pop if stack.last.empty?
444 alias leaf? empty?
513 return ( empty
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DNamespaceMappings.java240 if (!stack.empty())
438 public boolean empty() { method in class:NamespaceMappings.Stack
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DIntStack.java118 * @throws EmptyStackException if this stack is empty.
136 * @throws EmptyStackException if this stack is empty.
154 * @throws EmptyStackException if this stack is empty.
168 * Tests if this stack is empty.
170 * @return <code>true</code> if this stack is empty;
174 public boolean empty() method in class:IntStack
H A DObjectStack.java121 * @throws EmptyStackException if this stack is empty.
139 * @throws EmptyStackException if this stack is empty.
157 * @throws EmptyStackException if this stack is empty.
171 * Tests if this stack is empty.
173 * @return <code>true</code> if this stack is empty;
177 public boolean empty() method in class:ObjectStack
/external/astl/tests/
H A Dtest_string.cpp81 EXPECT_TRUE(empty_str1.empty());
125 const string empty; local
129 EXPECT_TRUE(str01.c_str() == empty.c_str());
150 EXPECT_TRUE(str01.empty());
156 EXPECT_TRUE(!str02.empty());
178 const string empty; local
184 EXPECT_TRUE(str02.c_str() == empty.c_str());
187 EXPECT_TRUE(str03.c_str() == empty.c_str());
190 EXPECT_TRUE(str04.c_str() == empty.c_str());
196 EXPECT_TRUE(str06.c_str() == empty
[all...]
H A Dtest_vector.cpp46 EXPECT_TRUE(vec1.empty());
52 EXPECT_TRUE(!vec2.empty());
62 EXPECT_TRUE(!vec3.empty());
77 EXPECT_TRUE(vec1.empty());
90 EXPECT_TRUE(vec1.empty());
96 EXPECT_TRUE(!vec1.empty());
143 EXPECT_TRUE(src.empty());
145 EXPECT_TRUE(dst.empty());
149 EXPECT_TRUE(src.empty());
151 EXPECT_TRUE(dst.empty());
503 vector<B> empty; local
566 vector<B> empty; local
[all...]
/external/bluetooth/bluedroid/btif/src/
H A Dbtif_sock_thread.c423 int empty = -1; local
435 else if(empty < 0 && ps[i].pfd.fd == -1)
436 empty = i;
438 if(empty >= 0)
441 set_poll(&ps[empty], fd, type, flags, user_id);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DASN1TaggedObject.java15 boolean empty = false; field in class:ASN1TaggedObject
106 if (tagNo != other.tagNo || empty != other.empty || explicit != other.explicit)
167 return empty;
/external/chromium/base/
H A Dfile_path.h174 bool empty() const { return path_.empty(); } function in class:FilePath
216 // Returns ".jpg" for path "C:\pics\jojo.jpg", or an empty string if
217 // the file has no extension. If non-empty, Extension() will always start
243 // empty, then the extension is removed from |file_name|.
289 // Return the path as ASCII, or the empty string if the path is not ASCII.
H A Dprocess_util_unittest.cc539 const char* const empty[] = { NULL }; local
544 e = base::AlterEnvironment(changes, empty);
549 e = base::AlterEnvironment(changes, empty);
556 e = base::AlterEnvironment(changes, empty);
H A Dstring_piece.h64 bool empty() const { return length_ == 0; } function in class:base::StringPiece
106 return std::string(!empty() ? data() : "", size());
H A Dstring_util_unittest.cc429 // Convert empty strings.
431 std::string empty; local
432 EXPECT_EQ(empty, WideToASCII(wempty));
433 EXPECT_EQ(wempty, ASCIIToWide(empty));
1076 // Providing an empty list of characters should return false but for the empty
H A Dtask.h67 // // |empty| before manufacturing another task.
68 // if (!some_method_factory_.empty())
140 bool empty() const { return !weak_factory_.HasWeakPtrs(); } function in class:ScopedRunnableMethodFactory
222 // struct could be defined with empty RetainCallee and ReleaseCallee methods.
H A Dutf_string_conversions_unittest.cc60 // An empty std::wstring should be converted to an empty std::string,
63 std::string empty; local
64 EXPECT_EQ(empty, WideToUTF8(wempty));
65 EXPECT_EQ(wempty, UTF8ToWide(empty));
H A Dvalues.h220 // Returns whether the dictionary is empty.
221 bool empty() const { return dictionary_.empty(); } function in class:DictionaryValue
301 // Makes a copy of |this| but doesn't include empty dictionaries and lists in
302 // the copy. This never returns NULL, even if |this| itself is empty.
361 // Returns whether the list is empty.
362 bool empty() const { return list_.empty(); } function in class:ListValue
/external/chromium/base/i18n/
H A Dbreak_iterator_unittest.cc13 string16 empty; local
14 base::BreakIterator iter(&empty, base::BreakIterator::BREAK_WORD);
112 string16 empty; local
113 base::BreakIterator iter(&empty, base::BreakIterator::BREAK_SPACE);
214 string16 empty; local
215 base::BreakIterator iter(&empty, base::BreakIterator::BREAK_NEWLINE);
H A Dchar_iterator_unittest.cc14 std::string empty("");
15 UTF8CharIterator empty_iter(&empty);
52 string16 empty = UTF8ToUTF16(""); local
53 UTF16CharIterator empty_iter(&empty);
/external/chromium/base/memory/
H A Dscoped_vector.h33 bool empty() const { return v.empty(); } function in class:ScopedVector
/external/chromium/chrome/browser/autocomplete/
H A Dautocomplete.cc85 !canonicalized_url.host().empty()))
97 if (type == FORCED_QUERY && !text->empty() && (*text)[0] == L'?')
152 // |parts->scheme| might be empty, e.g. if the user typed "C:\foo".
253 // If we have an empty host it can't be a URL.
265 if (!desired_tld.empty()) {
343 return desired_tld.empty() ? UNKNOWN : REQUESTED_URL;
402 return desired_tld.empty() ? UNKNOWN : REQUESTED_URL;
526 if (matches_.empty())
589 if (old_matches.empty())
592 if (empty()) {
683 bool AutocompleteResult::empty() const { function in class:AutocompleteResult
[all...]
H A Dautocomplete.h276 // autocomplete. When this is non-empty, it also implies that "www." should
438 // with an empty list.
481 // True when the selection is empty.
482 bool empty() const { function in struct:AutocompleteResult::Selection
530 bool empty() const;
/external/chromium/chrome/browser/automation/
H A Dtesting_automation_provider.cc165 if (BrowserList::empty() && !CommandLine::ForCurrentProcess()->HasSwitch(
708 std::vector<GURL> empty; local
709 AutomationMsg_RedirectsFrom::WriteReplyParams(reply_message, false, empty);
2030 if (!error.empty()) {
2753 if (downloads.empty()) {
3644 if (!language.empty()) {
4019 if (!error_mesg.empty()) {
4454 // Returns empty json message.
4482 // Returns empty json message.
5455 if (host.empty()) {
[all...]
/external/chromium/chrome/browser/
H A Dbrowsing_data_appcache_helper.cc142 bool CannedBrowsingDataAppCacheHelper::empty() const { function in class:CannedBrowsingDataAppCacheHelper
143 return info_collection_->infos_by_origin.empty();
H A Dbrowsing_data_database_helper.cc190 bool CannedBrowsingDataDatabaseHelper::empty() const { function in class:CannedBrowsingDataDatabaseHelper
192 return database_info_.empty() && pending_database_info_.empty();
H A Dbrowsing_data_indexed_db_helper.cc108 for (FilePath file_path = file_enumerator.Next(); !file_path.empty();
234 bool CannedBrowsingDataIndexedDBHelper::empty() const { function in class:CannedBrowsingDataIndexedDBHelper
236 return indexed_db_info_.empty() && pending_indexed_db_info_.empty();

Completed in 623 milliseconds

1234567891011>>