Searched refs:empty (Results 226 - 250 of 2008) sorted by relevance

1234567891011>>

/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/CodeGen/PBQP/
H A DHeuristicBase.h145 /// list is empty.
150 if (optimalList.empty())
169 /// Reduces the problem to the empty graph by repeated application of the
195 /// list is empty.
233 /// list is empty now that reduction has completed.
239 assert(optimalList.empty() && "Nodes left over in optimal reduce list?");
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/CodeGen/
H A DResourcePriorityQueue.h119 bool empty() const { return Queue.empty(); }
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/Support/
H A DStringPool.h69 /// empty - Checks whether the pool is empty. Returns true if so.
71 inline bool empty() const { return InternTable.empty(); } function in class:llvm::StringPool
116 assert(*this && "Attempt to dereference empty PooledStringPtr!");
121 assert(*this && "Attempt to dereference empty PooledStringPtr!");
126 assert(*this && "Attempt to dereference empty PooledStringPtr!");
/macosx-10.10.1/llvmCore-3425.0.34/lib/CodeGen/
H A DSpillPlacement.cpp282 if (nodes[ib].Links.empty() && !nodes[ib].mustSpill())
284 if (nodes[ob].Links.empty() && !nodes[ob].mustSpill())
301 if (!nodes[n].Links.empty())
306 return !RecentPositive.empty();
315 while (!RecentPositive.empty())
318 if (Linked.empty())
339 if (!Changed || !RecentPositive.empty())
353 if (!Changed || !RecentPositive.empty())
/macosx-10.10.1/llvmCore-3425.0.34/lib/DebugInfo/
H A DDWARFCompileUnit.h82 if (DieArray.empty())
106 if (DieArray.empty())
117 /// Returns empty chain if there is no subprogram containing address.
/macosx-10.10.1/llvmCore-3425.0.34/lib/Transforms/Scalar/
H A DADCE.cpp67 while (!worklist.empty()) {
92 return !worklist.empty();
/macosx-10.10.1/llvmCore-3425.0.34/lib/Transforms/Utils/
H A DSimplifyInstructions.cpp59 // The first time through the loop ToSimplify is empty and we try to
61 // empty and we only bother simplifying instructions that are in it.
62 if (!ToSimplify->empty() && !ToSimplify->count(I))
82 } while (!ToSimplify->empty());
/macosx-10.10.1/llvmCore-3425.0.34/tools/llvm-as/
H A Dllvm-as.cpp55 if (OutputFilename.empty()) {
75 if (!ErrorInfo.empty()) {
/macosx-10.10.1/ruby-106/ruby/ext/tk/lib/tkextlib/bwidget/
H A Dbuttonbox.rb32 return index(name) unless name.empty?
61 idx = name unless name.empty?
/macosx-10.10.1/ruby-106/ruby/lib/rake/
H A Dfile_utils_ext.rb34 next if default_options.empty?
141 raise ArgumentError, "no such option: #{h.keys.join(' ')}" unless h.empty?
/macosx-10.10.1/ruby-106/ruby/lib/rdoc/context/
H A Dsection.rb66 return if comment.empty?
111 comment.text = if start.empty? then
134 return [] if @comments.empty?
213 return if @comments.empty?
/macosx-10.10.1/ruby-106/ruby/lib/rdoc/generator/template/darkfish/js/
H A Dsearch.js41 this.$result.empty();
54 this.$result.empty();
/macosx-10.10.1/ruby-106/ruby/lib/rubygems/
H A Dcommand.rb153 if errors and !errors.empty?
164 unless suggestions.empty?
176 if args.nil? or args.empty? then
206 if args.nil? or args.empty? then
388 until extra.empty? do
434 return if content.empty?
480 return if option_list.nil? or option_list.empty?
482 header = header.to_s.empty? ? '' : "#{header} "
/macosx-10.10.1/ruby-106/ruby/sample/openssl/
H A Dwget.rb30 path = uri.path.empty? ? "/" : uri.path
/macosx-10.10.1/ruby-106/ruby/test/rss/
H A Dtest_maker_xml-stylesheet.rb68 assert(rss.xml_stylesheets.empty?)
79 assert(rss.xml_stylesheets.empty?)
/macosx-10.10.1/swig-12/Lib/ruby/
H A Dstd_queue.i27 %rename("empty?") std::queue::empty;
H A Dstd_stack.i28 %rename("empty?") std::stack::empty;
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/struct/tree/
H A Dtn.h50 Tcl_Obj* tn_get_attr (TNPtr n, Tcl_Obj* empty);
53 int at, int parent, Tcl_Obj* empty);
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/virtchannel_base/
H A Dhalfpipe.tcl135 -empty-command {}
154 my Call -empty-command $channel
/macosx-10.10.1/vim-55/src/po/
H A Dcleanup.vim3 " - Comment-out fuzzy and empty messages.
/macosx-10.10.1/ksh-23/ksh/src/lib/libcmd/
H A Dgetconf.c157 static const char empty[] = "-"; local
229 else if (streq(name, empty))
235 if (streq(path, empty))
253 if (streq(path, empty))
258 if ((value = *++argv) && (streq(value, empty)))
279 sfputr(sfstdout, path ? path : empty, ' ');
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/ADT/
H A DArrayRef.h47 /// Construct an empty ArrayRef.
73 : Data(Vec.empty() ? (T*)0 : &Vec[0]), Length(Vec.size()) {}
87 /// empty - Check if the array is empty.
88 bool empty() const { return Length == 0; } function in class:llvm::ArrayRef
97 assert(!empty());
103 assert(!empty());
172 /// Construct an empty ArrayRef.
205 assert(!this->empty());
211 assert(!this->empty());
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/lib/Analysis/
H A DDbgInfoPrinter.cpp131 if (!D.empty())
142 if (!D.empty())
153 if (!D.empty())
161 if (!T.empty())
164 if (!F.empty())
167 if (!D.empty())
/macosx-10.10.1/llvmCore-3425.0.34/lib/Bitcode/Reader/
H A DBitcodeReader.h51 assert(ResolveConstants.empty() && "Constants not resolved?");
62 assert(ResolveConstants.empty() && "Constants not resolved?");
73 bool empty() const { return ValuePtrs.empty(); }
108 bool empty() const { return MDValuePtrs.empty(); }
/macosx-10.10.1/ruby-106/ruby/lib/
H A Dprettyprint.rb127 until group.breakables.empty?
132 while !@buffer.empty? && Text === @buffer.first
145 if @buffer.empty?
231 if group.breakables.empty?
295 @pp.group_queue.delete @group if @group.breakables.empty?
343 unless gs[i].breakables.empty?

Completed in 372 milliseconds

1234567891011>>