Searched refs:empty (Results 276 - 300 of 2008) sorted by relevance

<<11121314151617181920>>

/macosx-10.10.1/Security-57031.1.35/Security/include/security_utilities/
H A Dselector.cpp138 if (!clientMap.empty())
145 if (!clientMap.empty())
158 assert(!clientMap.empty());
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_utilities/lib/
H A Dselector.cpp138 if (!clientMap.empty())
145 if (!clientMap.empty())
158 assert(!clientMap.empty());
/macosx-10.10.1/bind9-45.101/bind9/unit/atf-src/atf-c++/
H A Dconfig_test.cpp148 // Test the behavior of empty values.
151 if (!atf::config::get(v->lc).empty()) {
155 ATF_REQUIRE(atf::config::get(v->lc).empty());
157 ATF_REQUIRE(!atf::config::get(v->lc).empty());
/macosx-10.10.1/libstdcxx-104.1/include/c++/4.2.1/ext/pb_ds/detail/thin_heap_/
H A Derase_fn_imps.hpp53 _GLIBCXX_DEBUG_ASSERT(!base_type::empty());
228 _GLIBCXX_DEBUG_ASSERT(!base_type::empty());
247 if (base_type::empty())
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/ADT/
H A DSparseSet.h151 // It's not hard to resize the universe on a non-empty set, but it doesn't
153 assert(empty() && "Can only resize universe on an empty map");
174 /// empty - Returns true if the set is empty.
176 /// This is not the same as BitVector::empty().
178 bool empty() const { return Dense.empty(); } function in class:llvm::SparseSet
/macosx-10.10.1/llvmCore-3425.0.34/lib/CodeGen/
H A DLatencyPriorityQueue.cpp120 if (empty()) return NULL;
134 assert(!Queue.empty() && "Queue is empty!");
146 while (!q.empty()) {
H A DLiveRegMatrix.cpp114 return !RegMaskUsable.empty() && (!PhysReg || !RegMaskUsable.test(PhysReg));
119 if (VirtReg.empty())
137 if (VirtReg.empty())
H A DProcessImplicitDefs.cpp148 assert(WorkList.empty() && "Inconsistent worklist state");
158 if (WorkList.empty())
167 while (!WorkList.empty());
/macosx-10.10.1/llvmCore-3425.0.34/lib/Linker/
H A DLinkArchives.cpp108 if (UndefinedSymbols.empty()) {
150 if (Modules.empty())
192 if (UndefinedSymbols.empty())
/macosx-10.10.1/ruby-106/ruby/bin/
H A Derb11 return nil if self.empty?
140 Encoding.default_external = extern unless extern.nil? || extern.empty?
141 Encoding.default_internal = intern unless intern.nil? || intern.empty?
/macosx-10.10.1/ruby-106/ruby/lib/rdoc/
H A Dcode_object.rb135 # Replaces our comment with +comment+, unless it is empty.
143 if comment and not comment.empty? then
149 Object.const_defined? :Encoding and @comment.empty? then
188 @received_nodoc or !@comment.empty?
/macosx-10.10.1/ruby-106/ruby/lib/
H A Dthread.rb182 # Retrieves data from the queue. If the queue is empty, the calling thread is
190 if @que.empty?
192 raise ThreadError, "queue empty"
220 # Returns +true+ if the queue is empty.
222 def empty?
223 @que.empty?
/macosx-10.10.1/BerkeleyDB-21/db/qam/
H A Dqam_method.c155 int empty, ret, t_ret; local
169 empty = meta->cur_recno == meta->first_recno;
175 *emptyp = empty;
207 int empty, ret, t_ret; local
209 if ((ret = __queue_pageinfo(dbp, &first, &last, &empty, 1, flags)) != 0)
212 if (empty || ret != 0)
/macosx-10.10.1/llvmCore-3425.0.34/lib/MC/
H A DMCContext.cpp71 assert(!Name.empty() && "Normal symbols cannot be unnamed!");
218 if (!Group.empty())
281 if (Directory.empty()) {
284 if (!tFileName.empty()) {
286 if (!Directory.empty())
294 if (Directory.empty()) {
/macosx-10.10.1/llvmCore-3425.0.34/utils/TableGen/
H A DCodeGenSchedule.h41 /// may not be empty. TheDef is null for inferred sequences, and Sequence must
85 assert((!IsSequence || !Sequence.empty()) && "Sequence should be nonempty");
86 assert((!IsAlias || Aliases.empty()) && "Alias cannot have aliases");
87 return TheDef || !Sequence.empty();
108 /// Writes and ReadDefs are empty. ProcIndices contains 0 for any processor.
164 // default NoItineraries. NoItineraries has an empty list of InstrItinData
177 // This list is empty if the Processor has no value for Itineraries.
182 // This list is empty if no ItinRW refers to this Processor.
197 return !WriteResDefs.empty() || !ItinRWDefs.empty();
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/include/security_codesigning/
H A Dcsdatabase.cpp97 if (!this->empty()) {
124 if (this->empty())
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_codesigning/lib/
H A Dcsdatabase.cpp97 if (!this->empty()) {
124 if (this->empty())
/macosx-10.10.1/Security-57031.1.35/certificates/ota_cert_tool/Scripts/
H A DFile.rb21 return false if path.nil? || path.empty?
50 if output_directory.nil? || output_directory.empty?
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/External/CodeMirror/
H A Dclosebrackets.js46 if (!ranges[i].empty()) return CodeMirror.Pass;
67 if (!range.empty())
112 if (!range.empty() ||
127 if (!ranges[i].empty()) return CodeMirror.Pass;
/macosx-10.10.1/bind9-45.101/bind9/unit/atf-src/atf-c++/detail/
H A Dparser.hpp235 if (text.empty()) {
270 if (text.empty())
277 if (text.empty())
282 if (!text.empty())
289 if (!quoted && !text.empty()) {
391 if (!m_errors.empty() && !m_thrown)
415 return !m_errors.empty();
427 if (!m_errors.empty()) {
H A Dtext.cpp62 // Special case: regcomp does not like empty regular expressions.
63 if (regex.empty()) {
64 found = str.empty();
/macosx-10.10.1/bind9-45.101/bind9/unit/atf-src/atf-report/
H A Datf-report.cpp128 if (!reason.empty())
148 if (!reason.empty())
220 if (!reason.empty()) {
302 if (!m_failed_tps.empty()) {
309 if (!m_expected_failures_tcs.empty()) {
314 if (!m_failed_tcs.empty()) {
399 if (!reason.empty())
641 if (m_oflags.empty())
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/hash/
H A Dhashscan.c51 static Hash_bucket_t empty; local
55 pos->bucket = &empty;
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/include/
H A Derror.h103 #define errorpush(p,f) (*(p)=*ERROR_CONTEXT_BASE,*ERROR_CONTEXT_BASE=error_info.empty,error_info.context=(Error_context_t*)(p),error_info.flags=(f))
147 Error_context_t empty; /* empty context stack element */ member in struct:Error_info_s
/macosx-10.10.1/libstdcxx-104.1/include/c++/4.2.1/bits/
H A Dstl_stack.h135 * Returns true if the %stack is empty.
138 empty() const function in class:stack
139 { return c.empty(); }

Completed in 249 milliseconds

<<11121314151617181920>>