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

1 2 3 4 5 6 7 8 91011>>

  /external/apache-commons-math/src/main/java/org/apache/commons/math/
FunctionEvaluationException.java 27 * Maintains an <code>argument</code> property holding the input value that
37 /** Argument causing function evaluation failure */
38 private double[] argument; field in class:FunctionEvaluationException
41 * Construct an exception indicating the argument value
44 * @param argument the failing function argument
46 public FunctionEvaluationException(double argument) {
47 super(LocalizedFormats.EVALUATION_FAILED, argument);
48 this.argument = new double[] { argument };
    [all...]
ArgumentOutsideDomainException.java 23 * Error thrown when a method is called with an out of bounds argument.
36 * @param argument the failing function argument
40 public ArgumentOutsideDomainException(double argument, double lower, double upper) {
41 super(argument, LocalizedFormats.ARGUMENT_OUTSIDE_DOMAIN, argument, lower, upper);
  /external/lz4/tests/
datagencli.c 90 char* argument = argv[argNb]; local
92 if(!argument) continue; /* Protection if argument empty */
95 if (*argument=='-')
97 argument++;
98 while (*argument!=0)
100 switch(*argument)
105 argument++;
107 while ((*argument>='0') && (*argument<='9')
    [all...]
  /external/valgrind/none/tests/
map_unaligned.stderr.exp 2 unaligned mmap failed: Invalid argument
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/alpha/
elf-usepv-2.l 2 .*:1: Error: unknown argument for .usepv
  /external/mockito/src/main/java/org/mockito/
ArgumentMatcher.java 8 * Allows creating customized argument matchers.
17 * Perhaps it is possible to pass a different argument to the method so that mocking is easier?
20 * <li>don't match the argument strictly, just use one of the lenient argument matchers like
25 * Mockito naturally uses equals() for argument matching.
29 * Useful when you need to verify the arguments. Captor is not useful if you need argument matching for stubbing.
32 * <li>use customized argument matchers by implementing {@link ArgumentMatcher} interface
110 * @param <T> type of argument
116 * Informs if this matcher accepts the given argument.
118 * The method should <b>never</b> assert if the argument doesn't match. I
    [all...]
  /external/mockito/src/main/java/org/mockito/internal/matchers/
CapturesArguments.java 10 void captureFrom(Object argument);
  /external/lzma/CPP/7zip/UI/FileManager/
FormatUtils.h 11 UString MyFormatNew(const UString &format, const UString &argument);
12 UString MyFormatNew(UINT resourceID, const UString &argument);
FormatUtils.cpp 18 UString MyFormatNew(const UString &format, const UString &argument)
21 result.Replace(L"{0}", argument);
25 UString MyFormatNew(UINT resourceID, const UString &argument)
27 return MyFormatNew(LangString(resourceID), argument);
  /external/easymock/src/org/easymock/
IArgumentMatcher.java 19 * Decides whether an actual argument is accepted.
24 * Returns whether this matcher accepts the given argument.
26 * Like Object.equals(), it should be aware that the argument passed might
30 * The method should <b>never</b> assert if the argument doesn't match. It
34 * @param argument the argument
35 * @return whether this matcher accepts the given argument.
37 boolean matches(Object argument);
  /external/mesa3d/src/compiler/glsl/glcpp/tests/
022-define-func-arg-with-parens.c 2 foo(argument(including parens)for the win)
038-func-arg-with-commas.c 2 foo(argument (with,embedded , commas) -- tricky)
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/ia64/
proc.l 5 .*:12: Error: Empty argument of .proc
6 .*:13: Error: Empty argument of .endp
  /external/mesa3d/src/gallium/state_trackers/clover/core/
kernel.hpp 70 class argument { class in class:clover::kernel
72 static std::unique_ptr<argument>
73 create(const module::argument &marg);
75 argument(const argument &arg) = delete;
76 argument &
77 operator=(const argument &arg) = delete;
79 /// \a true if the argument has been set.
85 /// Set this argument to some object.
89 /// object to this argument, and update \a ctx accordingly
    [all...]
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_stoptheworld_test.cc 40 void *IncrementerThread(void *argument) {
41 CallbackArgument *callback_argument = (CallbackArgument *)argument;
56 void *argument) {
57 CallbackArgument *callback_argument = (CallbackArgument *)argument;
73 CallbackArgument argument; local
78 &argument);
80 StopTheWorld(&Callback, &argument);
82 EXPECT_TRUE(argument.callback_executed);
83 EXPECT_TRUE(argument.threads_stopped);
84 // argument is on stack, so we have to wait for the incrementer thread t
166 AdvancedCallbackArgument argument; local
    [all...]
  /external/mockito/src/main/java/org/mockito/internal/invocation/
TypeSafeMatching.java 23 public boolean apply(ArgumentMatcher matcher, Object argument) {
24 return isCompatible(matcher, argument) && matcher.matches(argument);
29 * Returns <code>true</code> if the given <b>argument</b> can be passed to
33 private static boolean isCompatible(ArgumentMatcher<?> argumentMatcher, Object argument) {
34 if (argument == null)
39 return expectedArgumentType.isInstance(argument);
ArgumentMatcherAction.java 11 * Implementations must apply the given matcher to the argument and return
18 * to process the argument, never <code>null</code>
19 * @param argument
24 * applied to the <b>argument</b> and the next pair of matcher and
25 * argument should be passed
31 boolean apply(ArgumentMatcher<?> matcher, Object argument);
  /external/mockito/src/test/java/org/mockitousage/bugs/
ArgumentCaptorDontCapturePreviouslyVerifiedTest.java 22 ArgumentCaptor<String> argument = ArgumentCaptor.forClass(String.class); local
23 verify(mock, times(1)).oneArg(argument.capture());
24 assertThat(argument.getAllValues()).hasSize(1);
28 argument = ArgumentCaptor.forClass(String.class);
29 verify(mock, times(2)).oneArg(argument.capture());
30 assertThat(argument.getAllValues()).hasSize(2);
  /prebuilts/go/darwin-x86/test/
funcdup.go 10 F1(i int) (i int) // ERROR "duplicate argument i|redefinition|previous"
11 F2(i, i int) // ERROR "duplicate argument i|redefinition|previous"
12 F3() (i, i int) // ERROR "duplicate argument i|redefinition|previous"
15 type T1 func(i, i int) // ERROR "duplicate argument i|redefinition|previous"
16 type T2 func(i int) (i int) // ERROR "duplicate argument i|redefinition|previous"
17 type T3 func() (i, i int) // ERROR "duplicate argument i|redefinition|previous"
21 func (i *R) F1(i int) {} // ERROR "duplicate argument i|redefinition|previous"
22 func (i *R) F2() (i int) {return 0} // ERROR "duplicate argument i|redefinition|previous"
23 func (i *R) F3(j int) (j int) {return 0} // ERROR "duplicate argument j|redefinition|previous"
25 func F1(i, i int) {} // ERROR "duplicate argument i|redefinition|previous
    [all...]
funcdup2.go 10 F1(i int) (i int) // ERROR "duplicate argument i|redefinition|previous"
11 F2(i, i int) // ERROR "duplicate argument i|redefinition|previous"
12 F3() (i, i int) // ERROR "duplicate argument i|redefinition|previous"
15 var T1 func(i, i int) // ERROR "duplicate argument i|redefinition|previous"
16 var T2 func(i int) (i int) // ERROR "duplicate argument i|redefinition|previous"
17 var T3 func() (i, i int) // ERROR "duplicate argument i|redefinition|previous"
  /prebuilts/go/linux-x86/test/
funcdup.go 10 F1(i int) (i int) // ERROR "duplicate argument i|redefinition|previous"
11 F2(i, i int) // ERROR "duplicate argument i|redefinition|previous"
12 F3() (i, i int) // ERROR "duplicate argument i|redefinition|previous"
15 type T1 func(i, i int) // ERROR "duplicate argument i|redefinition|previous"
16 type T2 func(i int) (i int) // ERROR "duplicate argument i|redefinition|previous"
17 type T3 func() (i, i int) // ERROR "duplicate argument i|redefinition|previous"
21 func (i *R) F1(i int) {} // ERROR "duplicate argument i|redefinition|previous"
22 func (i *R) F2() (i int) {return 0} // ERROR "duplicate argument i|redefinition|previous"
23 func (i *R) F3(j int) (j int) {return 0} // ERROR "duplicate argument j|redefinition|previous"
25 func F1(i, i int) {} // ERROR "duplicate argument i|redefinition|previous
    [all...]
funcdup2.go 10 F1(i int) (i int) // ERROR "duplicate argument i|redefinition|previous"
11 F2(i, i int) // ERROR "duplicate argument i|redefinition|previous"
12 F3() (i, i int) // ERROR "duplicate argument i|redefinition|previous"
15 var T1 func(i, i int) // ERROR "duplicate argument i|redefinition|previous"
16 var T2 func(i int) (i int) // ERROR "duplicate argument i|redefinition|previous"
17 var T3 func() (i, i int) // ERROR "duplicate argument i|redefinition|previous"
  /external/apache-commons-math/src/main/java/org/apache/commons/math/exception/
MathIllegalNumberException.java 25 * precondition is violated by a number argument.
36 private final Number argument; field in class:MathIllegalNumberException
51 argument = wrong;
65 argument = wrong;
72 return argument;
  /external/desugar/java/com/google/devtools/common/options/
OptionsParsingException.java 29 public OptionsParsingException(String message, String argument) {
31 this.invalidArgument = argument;
38 public OptionsParsingException(String message, String argument, Throwable throwable) {
40 this.invalidArgument = argument;
44 * Gets the name of the invalid argument or {@code null} if the exception
  /hardware/qcom/gps/loc_api/libloc_api-rpc-50001/libloc_api-rpc-stub/src/
loc_api_rpcgen_cb_svc.c 52 } argument; local
75 memset ((char *)&argument, 0, sizeof (argument));
76 if (!svc_getargs (transp, (xdrproc_t) _xdr_argument, (caddr_t) &argument)) {
80 retval = (bool_t) (*local)((char *)&argument, (void *)&result, rqstp);
84 if (!svc_freeargs (transp, (xdrproc_t) _xdr_argument, (caddr_t) &argument)) {
99 } argument; local
122 memset ((char *)&argument, 0, sizeof (argument));
123 if (!svc_getargs (transp, (xdrproc_t) _xdr_argument, (caddr_t) &argument)) {
146 } argument; local
193 } argument; local
240 } argument; local
287 } argument; local
    [all...]

Completed in 355 milliseconds

1 2 3 4 5 6 7 8 91011>>