Searched refs:empty (Results 251 - 275 of 2008) sorted by relevance

<<11121314151617181920>>

/macosx-10.10.1/ruby-106/ruby/test/readline/
H A Dtest_readline_history.rb242 assert(HISTORY.empty?)
244 assert_equal(false, HISTORY.empty?)
246 assert(HISTORY.empty?)
256 assert(HISTORY.empty?)
262 assert(HISTORY.empty?)
270 assert(HISTORY.empty?)
/macosx-10.10.1/security_certificates-55040/
H A DbuildRootKeychain32 echo Creating empty $ROOT_CERT_KC...
36 echo Creating empty $SETTINGS_FILE...
58 echo Creating empty $TEMP_CERT_KC...
/macosx-10.10.1/vim-55/runtime/indent/
H A Didlang.vim23 " First non-empty line above the current line.
25 " v:lnum is the first non-empty line -- zero indent.
29 " Second non-empty line above the current line.
H A Dliquid.vim30 setlocal indentkeys=o,O,*<Return>,<>>,{,},0),0],o,O,!^F,=end,=endif,=endunless,=endifchanged,=endcase,=endfor,=endtablerow,=endcapture,=else,=elsif,=when,=empty
59 let ind += &sw * s:count(line,'{%\s*\%(elsif\|else\|when\|empty\)\>')
60 let ind -= &sw * s:count(cline,'{%\s*\%(elsif\|else\|when\|empty\)\>')
/macosx-10.10.1/llvmCore-3425.0.34/tools/bugpoint/
H A DExecutionDriver.cpp205 if (Path.empty())
303 if (BitcodeFile.empty()) {
326 if (OutputFile.empty()) OutputFile = OutputPrefix + "-execution-output";
339 if (!SharedObj.empty())
345 if (!Error->empty())
388 if (!Error.empty())
394 if (!Error.empty())
413 if (!Error.empty())
417 if (!Error.empty()) {
444 if (!ErrMsg->empty())
[all...]
H A DCrashDebugger.cpp67 if (!Prefix.empty()) {
118 if (!Kept.empty() && TestGlobalVariables(Kept))
120 if (!Prefix.empty() && TestGlobalVariables(Prefix))
188 if (!Kept.empty() && TestFuncs(Kept))
190 if (!Prefix.empty() && TestFuncs(Prefix))
261 if (!Kept.empty() && TestBlocks(Kept))
263 if (!Prefix.empty() && TestBlocks(Prefix))
370 if (!Kept.empty() && TestInsts(Kept))
372 if (!Prefix.empty() && TestInsts(Prefix))
482 if (!Error.empty())
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/utils/FileCheck/
H A DFileCheck.cpp59 /// FixedStr - If non-empty, this pattern is a fixed string match with the
63 /// RegEx - If non-empty, this is a regex pattern.
114 while (!PatternStr.empty() &&
119 if (PatternStr.empty()) {
121 "found empty check string with prefix '" +
140 while (!PatternStr.empty()) {
190 if (Name.empty()) {
192 "invalid name in named regex: empty name");
294 if (!FixedStr.empty()) {
305 if (!VariableUses.empty()) {
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/ADT/
H A DTinyPtrVector.h48 if (RHS.empty()) {
80 if (RHS.empty()) {
112 bool empty() const { function in class:llvm::TinyPtrVector
113 // This vector can be empty if it contains no element, or if it
114 // contains a pointer to an empty vector.
117 return Vec->empty();
122 if (empty())
155 assert(!Val.isNull() && "can't index into an empty vector");
167 assert(!empty() && "vector empty");
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/
H A DModule.h269 if (!GlobalScopeAsm.empty() &&
278 if (!GlobalScopeAsm.empty() &&
516 bool global_empty() const { return GlobalList.empty(); }
527 bool empty() const { return FunctionList.empty(); } function in class:llvm::Module
555 bool alias_empty() const { return AliasList.empty(); }
573 bool named_metadata_empty() const { return NamedMDList.empty(); }
/macosx-10.10.1/llvmCore-3425.0.34/lib/MC/
H A DSubtargetFeature.cpp31 assert(!Feature.empty() && "Empty string");
47 assert(!Feature.empty() && "Empty string");
58 assert(!Feature.empty() && "Empty string");
69 if (S.empty())
93 // Start with empty string.
95 // If the vector is not empty
96 if (!V.empty()) {
114 // Don't add empty features
115 if (!String.empty()) {
284 if (!CPU.empty()) {
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/unittests/ADT/
H A DBitVectorTest.cpp36 EXPECT_TRUE(Vec.empty());
44 EXPECT_FALSE(Vec.empty());
52 EXPECT_FALSE(Vec.empty());
61 EXPECT_FALSE(Inv.empty());
142 EXPECT_FALSE(Vec.empty());
150 EXPECT_TRUE(Inv.empty());
158 EXPECT_TRUE(Vec.empty());
/macosx-10.10.1/llvmCore-3425.0.34/utils/TableGen/
H A DCodeGenInstruction.cpp109 if (ArgName.empty())
131 /// non-empty name. If the instruction does not have an operand with the
145 assert(!Name.empty() && "Cannot search for operand with no name!");
156 if (Op.empty() || Op[0] != '$')
166 if (SubOpName.empty())
167 throw TheDef->getName() + ": illegal empty suboperand name in '" +Op +"'";
173 if (SubOpName.empty()) { // If no suboperand name was specified:
176 SubOpName.empty())
252 if (CStr.empty()) return;
273 if (OpName.empty()) brea
[all...]
H A DFastISelEmitter.cpp125 bool empty() const { return Operands.empty(); }
198 if (!Op->getPredicateFns().empty()) {
228 if (!Op->getPredicateFns().empty() || Op->getNumTypes() != 1)
441 if (II.Operands.empty())
502 if (!InstPatNode->getPredicateFns().empty())
521 if (PhysReg.empty()) {
626 if (PredicateCheck.empty()) {
644 if (Memo.SubRegNo.empty()) {
649 if (!Operands.empty())
[all...]
H A DRegisterInfoEmitter.cpp91 if (!Namespace.empty())
102 if (!Namespace.empty())
106 if (!RegisterClasses.empty()) {
113 if (!Namespace.empty())
122 if (!Namespace.empty())
131 if (!Namespace.empty())
138 if (!Namespace.empty())
143 if (!SubRegIndices.empty()) {
147 if (!Namespace.empty())
153 if (!Namespace.empty())
[all...]
H A DAsmWriterEmitter.cpp128 while (!OpsToPrint.empty())
155 if (Inst->Operands.empty())
244 if (!Instrs.empty())
294 if (!(*I)->AsmString.empty() &&
327 !AWI->Operands[0].Str.empty()) {
345 AWI->Operands[0].Str.empty()) {
379 if (UniqueOperandCommands.empty()) break;
402 if (!Inst->Operands.empty()) {
510 if (Inst.Operands.empty()) {
526 if (!Instructions.empty()) {
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/tools/gold/
H A Dgold-plugin.cpp113 if (!bc_path.empty()) {
284 if (!options::triple.empty())
350 if (!cf.syms.empty()) {
386 if (I->syms.empty())
411 if (!options::mcpu.empty())
415 if (!options::extra.empty()) {
426 else if (!options::bc_path.empty())
456 if (!options::extra_library_path.empty() &&
462 if (options::obj_path.empty())
/macosx-10.10.1/bind9-45.101/bind9/unit/atf-src/atf-c++/detail/
H A Dapplication.cpp175 if (!opt.m_argument.empty())
216 if (!args.empty())
223 INV(!opts.empty());
238 if (opt.m_argument.empty())
248 if (!m_global_manpage.empty())
/macosx-10.10.1/llvmCore-3425.0.34/lib/Analysis/
H A DLoopPass.cpp194 if (LQ.empty()) // No loops, skip calling finalizers
208 while (!LQ.empty()) {
317 while (!PMS.empty() &&
333 while (!PMS.empty() &&
342 assert (!PMS.empty() && "Unable to create Loop Pass Manager");
H A DRegionPass.cpp62 if (RQ.empty()) // No regions, skip calling finalizers
76 while (!RQ.empty()) {
221 while (!PMS.empty() &&
238 while (!PMS.empty() &&
249 assert (!PMS.empty() && "Unable to create Region Pass Manager");
/macosx-10.10.1/llvmCore-3425.0.34/lib/CodeGen/
H A DLiveIntervalUnion.cpp31 if (VirtReg.empty())
58 if (VirtReg.empty())
84 if (empty()) {
85 OS << " empty\n";
130 // Quickly skip interference check for empty sets.
131 if (VirtReg->empty() || LiveUnion->empty()) {
/macosx-10.10.1/llvmCore-3425.0.34/lib/Target/X86/
H A DX86Subtarget.cpp323 if (!FS.empty() || !CPU.empty()) {
324 if (CPUName.empty()) {
337 if (!FullFS.empty())
343 // If feature string is not empty, parse features string.
346 if (CPUName.empty()) {
/macosx-10.10.1/ruby-106/ruby/lib/irb/
H A Dslex.rb105 return self if chrs.empty?
120 if chrs.empty?
134 if chrs.empty?
150 if chrs.empty?
169 if chrs.empty?
/macosx-10.10.1/ruby-106/ruby/lib/rss/maker/
H A Dentry.rb88 super or !authors.empty?
113 authors.replace(@maker.channel.authors) if keep[:authors].empty?
114 if keep[:contributors].empty?
117 if keep[:categories].empty?
121 links.replace(@maker.channel.links) if keep[:links].empty?
/macosx-10.10.1/ruby-106/ruby/lib/rubygems/
H A Duninstaller.rb98 if list.empty? then
99 if other_repo_specs.empty?
100 if default_specs.empty?
171 return if spec.nil? or spec.executables.empty?
188 return if executables.empty?
/macosx-10.10.1/ruby-106/ruby/lib/webrick/
H A Dcgi.rb206 unless query_string.empty?
228 unless value.empty?
270 OpenSSL::X509::Certificate.new(pem) unless pem.empty?
277 OpenSSL::X509::Certificate.new(pem) unless pem.empty?
288 OpenSSL::X509::Certificate.new(pem) unless pem.empty?

Completed in 212 milliseconds

<<11121314151617181920>>