Searched refs:It (Results 1 - 25 of 1350) sorted by relevance

1234567891011>>

/macosx-10.9.5/sudo-72/src/
H A Dfixmdoc.sh23 /^\.It Fl a Ar type/,/BSD authentication\.$/ {
34 /^\.It Fl c Ar class/,/BSD login classes\.$/ {
40 /^BSD login class\n\.It$/d
50 /^\.It Fl r Ar role/,/newline character\.$/ {
53 /^\.It Fl t Ar type/,/specified role\.$/ {
58 /^SELinux role and type\n\.It$/d
70 /^Solaris project\n\.It\nSolaris privileges\n\.It$/d
92 /^\.It use_loginclass$/,/^\.It/ {
[all...]
/macosx-10.9.5/libstdcxx-60/include/c++/4.2.1/ext/pb_ds/detail/pairing_heap_/
H A Dconstructors_destructor_fn_imps.hpp39 // purpose. It is provided "as is" without express or implied
48 template<typename It>
51 copy_from_range(It first_it, It last_it)
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/ADT/
H A DSetVector.h52 template<typename It>
53 SetVector(It Start, It End) {
109 template<typename It>
110 void insert(It Start, It End) {
175 template<typename It>
176 SmallSetVector(It Start, It End) {
/macosx-10.9.5/libstdcxx-60/include/c++/4.2.1/ext/pb_ds/
H A Dassoc_container.hpp39 // purpose. It is provided "as is" without express or implied
217 template<typename It>
218 cc_hash_table(It first, It last)
224 template<typename It>
225 cc_hash_table(It first, It last, const hash_fn& h)
235 template<typename It>
236 cc_hash_table(It first, It las
[all...]
H A Dpriority_queue.hpp39 // purpose. It is provided "as is" without express or implied
95 template<typename It>
96 priority_queue(It first_it, It last_it)
103 template<typename It>
104 priority_queue(It first_it, It last_it, const cmp_fn& r_cmp_fn)
/macosx-10.9.5/libstdcxx-60/include/c++/4.2.1/ext/pb_ds/detail/binomial_heap_base_/
H A Dconstructors_destructor_fn_imps.hpp39 // purpose. It is provided "as is" without express or implied
48 template<typename It>
51 copy_from_range(It first_it, It last_it)
/macosx-10.9.5/libstdcxx-60/include/c++/4.2.1/ext/pb_ds/detail/rb_tree_map_/
H A Dconstructors_destructor_fn_imps.hpp39 // purpose. It is provided "as is" without express or implied
48 template<typename It>
51 copy_from_range(It first_it, It last_it)
/macosx-10.9.5/libstdcxx-60/include/c++/4.2.1/ext/pb_ds/detail/splay_tree_/
H A Dconstructors_destructor_fn_imps.hpp39 // purpose. It is provided "as is" without express or implied
48 template<typename It>
51 copy_from_range(It first_it, It last_it)
/macosx-10.9.5/libstdcxx-60/include/c++/4.2.1/ext/pb_ds/detail/list_update_map_/
H A Dconstructor_destructor_fn_imps.hpp39 // purpose. It is provided "as is" without express or implied
65 template<typename It>
68 copy_from_range(It first_it, It last_it)
80 template<typename It>
82 PB_DS_CLASS_NAME(It first_it, It last_it) : m_p_l(NULL)
/macosx-10.9.5/CPANInternal-140/Params-Validate/t/
H A D27-string-as-type.t18 like( $@, qr/\QThe 'foo' parameter ("1") has a type specification which is not a number. It is a string - SCALAR/ );
31 like( $@, qr/\QThe 'foo' parameter ("1") has a type specification which is not a number. It is undef/ );
/macosx-10.9.5/libstdcxx-60/include/c++/4.2.1/ext/pb_ds/detail/ov_tree_map_/
H A Dconstructors_destructor_fn_imps.hpp39 // purpose. It is provided "as is" without express or implied
106 template<typename It>
109 copy_from_range(It first_it, It last_it)
135 template<typename It>
138 copy_from_ordered_range(It first_it, It last_it)
146 It source_it = first_it;
147 It source_end_it = last_it;
177 template<typename It>
[all...]
H A Derase_fn_imps.hpp39 // purpose. It is provided "as is" without express or implied
130 template<typename It>
131 It
133 erase_imp(It it)
185 return It(ret_it);
/macosx-10.9.5/dcerpc-58/dcerpc/ncklib/
H A Dncklib.mk4 # It would seem that putting the defines in CFLAGS is a hack.
/macosx-10.9.5/llvmCore-3425.0.33/lib/Analysis/
H A DIntervalPartition.cpp48 for (Interval::node_iterator It = I->Nodes.begin(), End = I->Nodes.end();
49 It != End; ++It)
50 IntervalMap.insert(std::make_pair(*It, I));
/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/InstCombine/
H A DInstCombineWorklist.h67 DenseMap<Instruction*, unsigned>::iterator It = WorklistMap.find(I); local
68 if (It == WorklistMap.end()) return; // Not in worklist.
71 Worklist[It->second] = 0;
73 WorklistMap.erase(It);
/macosx-10.9.5/libstdcxx-60/include/c++/4.2.1/ext/pb_ds/detail/thin_heap_/
H A Dconstructors_destructor_fn_imps.hpp39 // purpose. It is provided "as is" without express or implied
48 template<typename It>
51 copy_from_range(It first_it, It last_it)
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Support/
H A DCFG.h33 USE_iterator It; member in class:llvm::PredIterator
37 while (!It.atEnd() && !isa<TerminatorInst>(*It))
38 ++It;
45 explicit inline PredIterator(Ptr *bb) : It(bb->use_begin()) {
48 inline PredIterator(Ptr *bb, bool) : It(bb->use_end()) {}
50 inline bool operator==(const Self& x) const { return It == x.It; }
54 assert(!It.atEnd() && "pred_iterator out of range!");
55 return cast<TerminatorInst>(*It)
[all...]
H A DGetElementPtrTypeIterator.h33 static generic_gep_type_iterator begin(Type *Ty, ItTy It) { argument
36 I.OpIt = It;
39 static generic_gep_type_iterator end(ItTy It) { argument
42 I.OpIt = It;
62 // This is a non-standard operator->. It allows you to call methods on the
/macosx-10.9.5/CPANInternal-140/IO-Socket-SSL/
H A DMakefile.PL65 It will work but croak if you try to verify an international name against
67 It's recommended to install either Net::IDN::Encode, Net::LibIDN or URI version>=1.50
80 It is recommended to upgrade to a current Net::SSLeay.
/macosx-10.9.5/CPANInternal-140/SOAP-Lite-0.69/examples/server/
H A Dsoap.daemon.forkafterprocessing7 It's in examples/SOAP/Transport/HTTP/ directory
10 Feel free to modify this behavior. It's just an example.
H A Dsoap.daemon.forkonaccept7 It's in examples/SOAP/Transport/HTTP/ directory
9 Feel free to modify it. It's just an example.
/macosx-10.9.5/CPANInternal-140/SOAP-Lite-0.715/examples/server/
H A Dsoap.daemon.forkafterprocessing7 It's in examples/SOAP/Transport/HTTP/ directory
10 Feel free to modify this behavior. It's just an example.
H A Dsoap.daemon.forkonaccept7 It's in examples/SOAP/Transport/HTTP/ directory
9 Feel free to modify it. It's just an example.
/macosx-10.9.5/CPANInternal-140/SOAP-Lite_new/examples/server/
H A Dsoap.daemon.forkafterprocessing7 It's in examples/SOAP/Transport/HTTP/ directory
10 Feel free to modify this behavior. It's just an example.
H A Dsoap.daemon.forkonaccept7 It's in examples/SOAP/Transport/HTTP/ directory
9 Feel free to modify it. It's just an example.

Completed in 277 milliseconds

1234567891011>>