HomeSort by relevance Sort by last modified time
    Searched refs:Returns (Results 1 - 25 of 134) sorted by null

1 2 3 4 5 6

  /external/mockito/src/org/mockito/internal/stubbing/answers/
Returns.java 12 public class Returns implements Answer<Object>, Serializable {
17 public Returns(Object value) {
39 return "Returns: " + value;
AnswersValidator.java 21 if (answer instanceof Returns) {
22 validateReturnValue((Returns) answer, methodInfo);
63 private void validateReturnValue(Returns answer, MethodInfo methodInfo) {
  /frameworks/rs/api/
rs_math.spec 160 Returns the absolute value of an integer.
174 Returns the inverse cosine, in radians.
188 Returns the inverse hyperbolic cosine, in radians.
202 Returns the inverse cosine in radians, divided by pi.
218 Returns the inverse sine, in radians.
232 Returns the inverse hyperbolic sine, in radians.
246 Returns the inverse sine in radians, divided by pi.
262 Returns the inverse tangent, in radians.
277 Returns the inverse tangent of <code>(numerator / denominator)</code>, in radians.
292 Returns the inverse tangent of <code>(numerator / denominator)</code>, in radians, divided by pi
    [all...]
rs_time.spec 58 Returns the time in seconds since this function was last called in this script.
71 This functions returns the same pointer that is passed as first argument. If the
72 local parameter is NULL, this function does nothing and returns NULL.
81 Returns the number of seconds since the Epoch (00:00:00 UTC, January 1, 1970).
92 Returns the current system clock (uptime) in milliseconds.
100 Returns the current system clock (uptime) in nanoseconds.
rs_for_each.spec 103 When rsForEach is called, the root script is launched immediately. rsForEach returns
168 Returns the index in the Array0 dimension of the cell being processed, as specified
185 This function returns 0 if the Array0 dimension is not present.
195 Returns the index in the Array1 dimension of the cell being processed, as specified
198 Returns 0 if the Array1 dimension is not present.
208 Returns the index in the Array2 dimension of the cell being processed,
212 Returns 0 if the Array2 dimension is not present.
222 Returns the index in the Array3 dimension of the cell being processed, as specified
225 Returns 0 if the Array3 dimension is not present.
235 Returns the size of the Array0 dimension for the specified context
    [all...]
rs_object_info.spec 69 ret: uint32_t, "Returns 1 if more than one face is present, 0 otherwise."
73 If the Allocation is a cubemap, this function returns 1 if there's more than one face
74 present. In all other cases, it returns 0.
81 ret: uint32_t, "Returns 1 if more than one LOD is present, 0 otherwise."
97 Returns the size of the X dimension of the Allocation.
108 Returns the size of the Y dimension of the Allocation. If the Allocation has less
109 than two dimensions, returns 0.
120 Returns the size of the Z dimension of the Allocation. If the Allocation has less
121 than three dimensions, returns 0.
156 Returns true if the handle contains a non-null reference
    [all...]
  /external/llvm/bindings/ocaml/bitwriter/
llvm_bitwriter.mli 16 [path]. Returns [true] if successful, [false] otherwise. *)
23 will be flushed. Returns [true] if successful, [false] otherwise. *)
28 (** [write_bitcode_to_memory_buffer m] returns a memory buffer containing
36 will be flushed. Returns [true] if successful, [false] otherwise. *)
  /build/core/
multilib.mk 2 # and check LOCAL_MULTILIB is a valid value. Returns module's multilib
  /external/llvm/bindings/ocaml/target/
llvm_target.mli 76 (** Returns the byte order of a target, either [Endian.Big] or
81 (** Returns the pointer size in bytes for a target.
85 (** Returns the integer type that is the same size as a pointer on a target.
89 (** Returns the pointer size in bytes for a target in a given address space.
93 (** Returns the integer type that is the same size as a pointer on a target
140 (** [default_triple ()] returns the default target triple for current
144 (** [first ()] returns the first target in the registered targets
148 (** [succ t] returns the next target after [t], or [None]
152 (** [all ()] returns a list of known targets. *)
155 (** [by_name name] returns [Some t] if a target [t] named [name] i
    [all...]
  /external/llvm/include/llvm/Transforms/Utils/
Cloning.h 129 SmallVectorImpl<ReturnInst*> &Returns,
166 SmallVectorImpl<ReturnInst*> &Returns,
185 SmallVectorImpl<ReturnInst*> &Returns,
220 /// block of the caller. This returns false if it is not possible to inline
  /external/mockito/src/org/mockito/internal/stubbing/
BaseStubbing.java 8 import org.mockito.internal.stubbing.answers.Returns;
16 return thenAnswer(new Returns(value));
73 return toAnswer(new Returns(value));
StubberImpl.java 38 answers.add(new Returns(toBeReturned));
  /external/llvm/bindings/ocaml/bitreader/
llvm_bitreader.mli 18 memory buffer [mb] in the context [context]. Returns [m] if successful, or
24 memory buffer [mb] in the context [context]. Returns [m] if successful, or
  /external/chromium-libpac/test/js-unittest/
dns_fail.js 4 // Returns "PROXY success:80" on success.
  /ndk/build/core/
definitions-utils.mk 24 # Returns : an empty macro
31 # Returns : a single space
40 # Returns : a single comma
47 # Returns : a single colon
55 # Returns : the list with duplicate items removed, order is preserved.
81 # Returns : None
91 # and it this returns a non-empty value, then <name>
93 # Returns : elements of $1 that satisfy the predicate function $2
115 # and it this returns an empty value, then <name>
117 # Returns : elements of $1 that do not satisfy the predicate function $
    [all...]
definitions.mk 28 # Returns : the name of the current Makefile in the inclusion stack
35 # Returns : the name of the last parsed Android.mk file
43 # Returns : None
58 # Returns : None
79 # Returns : Generate a rule, but not dependency, to create a directory with
103 # Returns : Generate a dependency and a rule to ensure that the parent
125 # Returns : write the content of a possibly very long string list to a file.
321 # Returns : linker flags to use the whole static libraries
325 # If the list is empty, it returns an empty string.
453 # Returns : Non
    [all...]
  /external/llvm/bindings/ocaml/irreader/
llvm_irreader.mli 18 memory buffer [mb] in the context [context]. Returns [m] if successful, or
  /external/nanopb-c/generator/google/protobuf/
text_format.py 331 Returns:
360 Returns:
383 Returns:
398 Returns:
414 Returns:
430 Returns:
446 Returns:
462 Returns:
478 Returns:
494 Returns
    [all...]
  /external/llvm/lib/Transforms/Utils/
InlineFunction.cpp     [all...]
CloneModule.cpp 102 SmallVector<ReturnInst*, 8> Returns; // Ignore returns cloned.
103 CloneFunctionInto(F, I, VMap, /*ModuleLevelChanges=*/true, Returns);
  /external/llvm/lib/ExecutionEngine/Orc/
CloneSubModule.cpp 26 SmallVector<ReturnInst *, 8> Returns; // Ignore returns cloned.
27 CloneFunctionInto(&New, &Orig, VMap, /*ModuleLevelChanges=*/true, Returns);
  /external/protobuf/python/google/protobuf/
text_format.py 89 Returns:
239 Returns:
259 Returns:
275 Returns:
292 Returns:
494 Returns:
526 Returns:
549 Returns:
564 Returns:
580 Returns
    [all...]
  /external/clang/lib/Index/
CommentToXML.cpp 90 SmallVector<const BlockCommandComment *, 4> Returns;
132 Returns.push_back(BCC);
341 Result << "<p class=\"para-returns\">"
342 "<span class=\"word-returns\">Returns</span> ";
477 if (Parts.Returns.size() != 0) {
479 for (unsigned i = 0, e = Parts.Returns.size(); i != e; ++i)
480 visit(Parts.Returns[i]);
991 if (Parts.Returns.size() != 0) {
993 for (unsigned i = 0, e = Parts.Returns.size(); i != e; ++i
    [all...]
  /external/v8/tools/
codemap.js 213 * Returns a dynamic code entry using its starting address.
225 * Returns an array of all dynamic code entries.
233 * Returns an array of pairs of all dynamic code entries and their addresses.
241 * Returns an array of all static code entries.
249 * Returns an array of all libraries entries.
  /external/llvm/unittests/Transforms/Utils/
Cloning.cpp 171 SmallVector<ReturnInst*, 4> Returns;
175 CloneFunctionInto(F2, F1, VMap, false, Returns);
194 SmallVector<ReturnInst*, 4> Returns;
198 CloneFunctionInto(F2, F1, VMap, false, Returns);

Completed in 1796 milliseconds

1 2 3 4 5 6