Searched refs:Returns (Results 1 - 25 of 116) sorted by relevance

12345

/macosx-10.10/CPANInternal-159.1/Krb5-1.9/
H A DKrb5.pm112 Returns the error code from the most recent Authen::Krb5 call. If provided
118 Initializes a context for the application. Returns a Authen::Krb5::Context
128 Returns the default realm of your host.
132 Returns the realm of the specified host.
136 Returns a list of the Kerberos servers from the specified realm.
158 Returns a credentials cache identifier which corresponds to the given name.
164 Returns the name of the default credentials cache, which may be equivalent
169 Returns a Authen::Krb5::Ccache object representing the default credentials
174 Returns a Authen::Krb5::Keytab object representing the specified keytab name.
178 Returns
[all...]
/macosx-10.10/CPANInternal-159.1/Data-Dump-1.21/lib/Data/Dump/
H A DFiltered.pm101 If the object is blessed this return the class. Returns ""
106 Returns what kind of object this is. It's a string like "SCALAR",
111 Returns true if a reference was provided.
115 Returns true if the object is blessed. Actually, this is just an alias
120 Returns true if the object is an array
124 Returns true if the object is a hash
128 Returns true if the object is a scalar (a string or a number)
132 Returns true if the object is a function (aka subroutine)
136 Returns the class of the innermost container that contains this object.
137 Returns "" i
[all...]
/macosx-10.10/llvmCore-3425.0.34/bindings/ocaml/bitwriter/
H A Dllvm_bitwriter.mli16 [path]. Returns [true] if successful, [false] otherwise. *)
22 will be flushed. Returns [true] if successful, [false] otherwise. *)
29 will be flushed. Returns [true] if successful, [false] otherwise. *)
H A Dllvm_bitwriter.ml16 (* Writes the bitcode for module the given path. Returns true if successful. *)
/macosx-10.10/CPANInternal-159.1/Authen-Krb5/
H A DKrb5.pm112 Returns the error code from the most recent Authen::Krb5 call. If provided
118 Initializes a context for the application. Returns a Authen::Krb5::Context
128 Returns the default realm of your host.
132 Returns the realm of the specified host.
136 Returns a list of the Kerberos servers from the specified realm.
158 Returns a credentials cache identifier which corresponds to the given name.
164 Returns the name of the default credentials cache, which may be equivalent
169 Returns a Authen::Krb5::Ccache object representing the default credentials
174 Returns a Authen::Krb5::Keytab object representing the specified keytab name.
178 Returns
[all...]
/macosx-10.10/BerkeleyDB-21/db/mutex/
H A Duts4_cc.s10 / Returns 0 if update was successful.
11 / Returns 1 if update failed.
/macosx-10.10/CPANInternal-159.1/Template-Toolkit-2.25/lib/Template/
H A DConfig.pm74 # are be converted to '/' and '.pm' is appended. Returns 1 on success
91 # the package variable $PARSER (default: Template::Parser). Returns
112 # Returns an object reference or undef on error, as above.
131 # Returns an object reference or undef on error, as above.
150 # Returns an object reference or undef on error, as above.
169 # Returns an object reference or undef on error, as above.
186 # Template::Stash). Returns object or undef, as above.
204 # Returns object or undef, as above.
222 # Returns object or undef, as above.
241 # Returns objec
[all...]
H A DIterator.pm363 Returns a C<($value, $error)> pair for the first item in the iterator set.
365 was successfully returned. Returns an error of C<STATUS_DONE> if the list
370 Returns a C<($value, $error)> pair for the next item in the iterator set.
371 Returns an error of C<STATUS_DONE> if all items in the list have been
376 Returns a C<(\@values, $error)> pair for all remaining items in the iterator
377 set. Returns an error of C<STATUS_DONE> if all items in the list have been
382 Returns the size of the data set or undef if unknown.
386 Returns the maximum index number (i.e. the index of the last element)
391 Returns the current index number which is in the range C<0> to L<max()>.
395 Returns th
[all...]
/macosx-10.10/llvmCore-3425.0.34/bindings/ocaml/bitreader/
H A Dllvm_bitreader.mli18 memory buffer [mb] in the context [context]. Returns [m] if successful, or
25 memory buffer [mb] in the context [context]. Returns [m] if successful, or
/macosx-10.10/llvmCore-3425.0.34/include/llvm/Transforms/Utils/
H A DCloning.h131 SmallVectorImpl<ReturnInst*> &Returns,
150 SmallVectorImpl<ReturnInst*> &Returns,
/macosx-10.10/llvmCore-3425.0.34/lib/Transforms/Utils/
H A DInlineFunction.cpp163 /// Returns true to indicate that the next block should be skipped.
564 SmallVector<ReturnInst*, 8> Returns; local
604 /*ModuleLevelChanges=*/false, Returns, ".i",
672 for (unsigned ri = 0, re = Returns.size(); ri != re; ++ri) {
673 IRBuilder<> builder(Returns[ri]);
693 for (unsigned i = 0, e = Returns.size(); i != e; ++i) {
694 IRBuilder<>(Returns[i]).CreateCall(StackRestore, SavedPtr);
723 if (Returns.size() == 1 && std::distance(FirstNewBlock, Caller->end()) == 1) {
738 ReturnInst *R = Returns[0];
748 Returns[
[all...]
H A DCloneModule.cpp103 SmallVector<ReturnInst*, 8> Returns; // Ignore returns cloned. local
104 CloneFunctionInto(F, I, VMap, /*ModuleLevelChanges=*/true, Returns);
H A DCloneFunction.cpp79 SmallVectorImpl<ReturnInst*> &Returns,
137 Returns.push_back(RI);
188 SmallVector<ReturnInst*, 8> Returns; // Ignore returns cloned. local
189 CloneFunctionInto(NewF, F, VMap, ModuleLevelChanges, Returns, "", CodeInfo);
365 SmallVectorImpl<ReturnInst*> &Returns,
570 Returns.push_back(RI);
76 CloneFunctionInto(Function *NewFunc, const Function *OldFunc, ValueToValueMapTy &VMap, bool ModuleLevelChanges, SmallVectorImpl<ReturnInst*> &Returns, const char *NameSuffix, ClonedCodeInfo *CodeInfo, ValueMapTypeRemapper *TypeMapper) argument
362 CloneAndPruneFunctionInto(Function *NewFunc, const Function *OldFunc, ValueToValueMapTy &VMap, bool ModuleLevelChanges, SmallVectorImpl<ReturnInst*> &Returns, const char *NameSuffix, ClonedCodeInfo *CodeInfo, const TargetData *TD, Instruction *TheCall) argument
/macosx-10.10/CPANInternal-159.1/UNIVERSAL-moniker-0.08/
H A Dmoniker.pm27 Returns the moniker for $ob.
34 Returns the plural moniker for $ob.
/macosx-10.10/CPANInternal-159.1/Graph-0.96/lib/Graph/Traversal/
H A DBFS.pm51 Traverse the graph in breadth-first order. Returns all vertices
H A DDFS.pm51 Traverse the graph in depth-first order. Returns all vertices
/macosx-10.10/CPANInternal-159.1/Graph-0.94/lib/Graph/
H A DBitMatrix.pm181 back to the original graph. Returns nothing.
187 back to the original graph. Returns nothing.
192 Returns a list of I<n> truth values.
199 Returns nothing.
206 Returns nothing.
/macosx-10.10/CPANInternal-159.1/Graph-0.96/lib/Graph/
H A DBitMatrix.pm181 back to the original graph. Returns nothing.
187 back to the original graph. Returns nothing.
192 Returns a list of I<n> truth values.
199 Returns nothing.
206 Returns nothing.
/macosx-10.10/CPANInternal-159.1/Crypt-OpenSSL-Bignum-0.04/
H A DBignum.pm108 Returns a new Crypt::OpenSSL::Bignum object representing 0
112 Returns a new Crypt::OpenSSL::Bignum object representing 1
156 Returns true of this object represents 0.
160 Returns true of this object represents 1.
164 Returns true of this object represents an odd number.
168 Returns a copy of this object.
/macosx-10.10/CPANInternal-159.1/JSON-RPC-0.96/lib/JSON/RPC/
H A DClient.pm370 Returns status code;
376 Returns a JSON de/encoder in C<new>.
407 Returns the result part of a data structure returned by the called server.
411 Returns the whole data structure returned by the called server.
415 Returns the row JSON data.
419 Returns the version of this response data.
/macosx-10.10/CPANInternal-159.1/IPC-Signal-1.00/
H A DSignal.pm93 Returns the signal number of the signal whose name (sans C<SIG>) is
100 Returns the chopped signal name (like C<HUP>) of signal number
/macosx-10.10/CPANInternal-159.1/Log-Dispatch-2.34/lib/Log/Dispatch/
H A DOutput.pm248 Returns the object's name.
252 Returns the object's minimum log level.
256 Returns the object's maximum log level.
260 Returns a list of the object's accepted levels (by name) from minimum
/macosx-10.10/CPANInternal-159.1/Crypt-SSLeay-0.64/lib/Net/
H A DSSL.pm521 Attempts to read up to 32KiB of data from the socket. Returns
534 Does not honour C<$,> nor C<$/>. Returns the number of bytes written.
540 Returns the number of bytes written.
544 Returns the hostname of an https proxy server, as specified by the
563 Returns the timeout value of the socket as defined by the implementing
568 Returns a boolean indicating whether the underlying socket is in
578 Writes the parameters passed in (thus, a list) to the socket. Returns
/macosx-10.10/CPANInternal-159.1/Heap-0.80/lib/
H A DHeap.pm65 Returns a new heap object of the specified (sub-)class.
85 used, in which case it will be the largest). Returns I<undef>
95 Delete the top element from the heap and return it. Returns
/macosx-10.10/ruby-106/ruby/test/rdoc/
H A Dtest_rdoc_tom_doc.rb281 Returns a thing
288 @RM::Paragraph.new('Returns a thing'))
297 Returns a thing
305 @RM::Paragraph.new('Returns a thing', 'that is multiline'))
456 Returns a thing
463 [:TEXT, "Returns a thing", 0, 2],
474 Returns a thing
482 [:TEXT, "Returns a thing", 0, 2],

Completed in 663 milliseconds

12345