HomeSort by relevance Sort by last modified time
    Searched full:argument (Results 51 - 75 of 11830) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/mockito/src/org/mockito/internal/matchers/apachecommons/
package.html 7 Argument matchers that use Apache Commons Lang reflection-equality.
  /external/mockito/src/org/mockito/internal/matchers/
package.html 7 Argument matchers for verification and stubbing.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
warning_tests.py 1 # Helper module for testing the skipmodules argument of warnings.warn()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
warning_tests.py 1 # Helper module for testing the skipmodules argument of warnings.warn()
  /external/bison/darwin-lib/
arg-nonnull.h 3 n = 1 stands for the first argument, n = 2 for the second argument etc. */
  /external/bison/linux-lib/
arg-nonnull.h 3 n = 1 stands for the first argument, n = 2 for the second argument etc. */
  /external/chromium_org/base/test/
test_process_killer_win.h 13 // |argument| on their command line.
15 const string16& argument);
  /external/chromium_org/chrome/renderer/resources/extensions/
messaging_utils.js 16 // responseCallback (last argument) is optional.
23 // options (third argument) is optional. It can also be ambiguous which
24 // argument it should match. If there are more than two arguments remaining,
29 // Exactly two arguments remaining. If the first argument is a string,
30 // it should bind to targetId, and the second argument should bind to
32 // only bind options when the first argument cannot bind to targetId.
38 // request (second argument) is required.
41 // targetId (first argument, extensionId in the manifest) is optional.
  /external/clang/include/clang/Sema/
TemplateDeduction.h 1 //===- TemplateDeduction.h - C++ template argument deduction ----*- C++ -*-===/
9 // This file provides types used with Sema's template argument deduction
27 /// \brief Provides information about an attempted template argument
31 /// \brief The deduced template argument list.
35 /// \brief The source location at which template argument
43 /// SFINAE while performing template argument deduction.
53 /// \brief Returns the location at which template argument is
59 /// \brief Take ownership of the deduced template argument list.
75 /// \brief Provide a new template argument list that contains the
76 /// results of template argument deduction
    [all...]
ParsedTemplate.h 22 /// \brief Represents the parsed form of a C++ template argument.
25 /// \brief Describes the kind of template argument that was parsed.
31 /// \brief A template template argument, stored as a template name.
35 /// \brief Build an empty template argument.
37 /// This template argument is invalid.
40 /// \brief Create a template type argument or non-type template argument.
42 /// \param Arg the template type argument or non-type template argument.
47 /// \brief Create a template template argument
    [all...]
  /external/clang/test/Sema/
incomplete-call.c 11 b(*(struct foo*)p); // expected-error{{argument type 'struct foo' is incomplete}}
12 c(*(struct foo*)p); // expected-error{{argument type 'struct foo' is incomplete}}
warn-strlcpycat-size.c 22 strlcpy(s1, s2, sizeof(s2)); // expected-warning {{size argument in 'strlcpy' call appears to be size of the source; expected the size of the destination}} expected-note {{change size argument to be the size of the destination}}
23 strlcpy(s1, s3, strlen(s3)+1); // expected-warning {{size argument in 'strlcpy' call appears to be size of the source; expected the size of the destination}} expected-note {{change size argument to be the size of the destination}}
24 strlcat(s2, s3, sizeof(s3)); // expected-warning {{size argument in 'strlcat' call appears to be size of the source; expected the size of the destination}} expected-note {{change size argument to be the size of the destination}}
25 strlcpy(s4.f1, s2, sizeof(s2)); // expected-warning {{size argument in 'strlcpy' call appears to be size of the source; expected the size of the destination}} expected-note {{change size argument to be the size of the destination}}
26 strlcpy((*s5)->f2[x], s2, sizeof(s2)); // expected-warning {{size argument in 'strlcpy' call appears to be size of the source; expected the size of the destination}} expected-note {{change size argument to be the size of the destination}
    [all...]
  /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);
AbstractMatcher.java 29 * on <code>EasyMock</code>, there are per-argument matchers available. For more
38 * Checks whether an expected argument matches an actual argument; the method
44 * the expected argument.
46 * the actual argument.
54 * Converts an argument to a String, used by
57 * @param argument
58 * the argument to convert to a String.
59 * @return a <code>String</code> representation of the argument.
61 protected String argumentToString(Object argument) {
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/x86-64/
calling_convention.txt 7 rcx used to pass 4th integer argument to functions
9 rdx used to pass 3rd argument to functions 2nd return register
15 rsi used to pass 2nd argument to functions
17 rdi used to pass 1st argument to functions
19 r8 used to pass 5th argument to functions
21 r9 used to pass 6th argument to functions
  /external/clang/test/FixIt/
format-no-fixit.m 12 printf("%d", x); // expected-warning{{format specifies type 'int' but the argument has type 'id'}}
13 printf("%s", x); // expected-warning{{format specifies type 'char *' but the argument has type 'id'}}
14 printf("%lf", x); // expected-warning{{format specifies type 'double' but the argument has type 'id'}}
26 NSLog(@"%d", x); // expected-warning{{format specifies type 'int' but the argument has type 'CFStringRef'}}
27 NSLog(@"%s", x); // expected-warning{{format specifies type 'char *' but the argument has type 'CFStringRef'}}
28 NSLog(@"%lf", x); // expected-warning{{format specifies type 'double' but the argument has type 'CFStringRef'}}
  /external/marisa-trie/tools/
cmdopt.h 13 // `has_name' specifies whether an option takes an argument or not.
14 // 0 specifies that this option does not have any argument.
15 // 1 specifies that this option has an argument.
16 // 2 specifies that this option may have an argument.
37 int optind; // Index of the next argument.
39 char *optarg; // Argument of the last option.
  /external/marisa-trie/v0_1_5/tools/
cmdopt.h 13 // `has_name' specifies whether an option takes an argument or not.
14 // 0 specifies that this option does not have any argument.
15 // 1 specifies that this option has an argument.
16 // 2 specifies that this option may have an argument.
37 int optind; // Index of the next argument.
39 char *optarg; // Argument of the last option.
  /external/mesa3d/src/mesa/x86-64/
calling_convention.txt 7 rcx used to pass 4th integer argument to functions
9 rdx used to pass 3rd argument to functions 2nd return register
15 rsi used to pass 2nd argument to functions
17 rdi used to pass 1st argument to functions
19 r8 used to pass 5th argument to functions
21 r9 used to pass 6th argument to functions
  /external/clang/include/clang/AST/
TemplateBase.h 37 /// \brief Represents a template argument within a class template
41 /// \brief The kind of template argument we're storing.
43 /// \brief Represents an empty template argument, e.g., one that has not
46 /// The template argument is a type.
48 /// The template argument is a declaration that was provided for a pointer,
51 /// The template argument is a null pointer or null pointer to member that
54 /// The template argument is an integral value stored in an llvm::APSInt
57 /// The template argument is a template name that was provided for a
60 /// The template argument is a pack expansion of a template name that was
63 /// The template argument is a value- or type-dependent expressio
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/double_to_float/
Test_double_to_float.java 26 * @title Argument = 2.71
34 * @title Argument = 1
42 * @title Argument = -1
50 * @title Argument = Double.MAX_VALUE
58 * @title Argument = Double.MIN_VALUE
66 * @title Argument = -0
74 * @title Argument = NaN
82 * @title Argument = POSITIVE_INFINITY
90 * @title Argument = NEGATIVE_INFINITY
99 * @title Argument = -Double.MIN_VALU
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/int_to_short/
Test_int_to_short.java 26 * @title Argument = 1
34 * @title Argument = -1
42 * @title Argument = 32767
50 * @title Argument = -32768
58 * @title Argument = -32769
66 * @title Argument = 32768
74 * @title Argument = 0x10fedc;
82 * @title Argument = 0
90 * @title Argument = Integer.MAX_VALUE
98 * @title Argument = Integer.MIN_VALU
    [all...]
  /external/chromium_org/tools/idl_parser/test_parser/
callback_web.idl 55 * Argument(L1)
66 * Argument(L1)
78 * Argument(L1)
91 * Argument(L1)
95 * Argument(L2)
108 * Argument(L1)
112 * Argument(L2)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Finder/
Standard_Suite.py 18 Required argument: the object to close
19 Keyword argument _attributes: AppleEvent attribute dictionary
42 Required argument: the object whose elements are to be counted
43 Keyword argument each: the class of the elements to be counted
44 Keyword argument _attributes: AppleEvent attribute dictionary
68 Required argument: the object whose data size is to be returned
69 Keyword argument as: the data type for which the size is calculated
70 Keyword argument _attributes: AppleEvent attribute dictionary
90 Required argument: the item to delete
91 Keyword argument _attributes: AppleEvent attribute dictionar
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/
UPnPServiceResponseListenerTest.java 68 receiveCallback(new Argument(uniqueServiceName));
75 ALL_UPNP_SERVICES.add(new Argument(uuid));
76 ALL_UPNP_SERVICES.add(new Argument(uuid +
78 ALL_UPNP_SERVICES.add(new Argument(uuid +
80 ALL_UPNP_SERVICES.add(new Argument(uuid +
82 ALL_UPNP_SERVICES.add(new Argument(uuid +
85 UPNP_ROOT_DEVICE.add(new Argument(uuid +
90 * The container of the argument of {@link #onUpnpServiceAvailable}.
92 static class Argument extends ListenerArgument {
95 Argument(String uniqueServiceName)
    [all...]

Completed in 1338 milliseconds

1 23 4 5 6 7 8 91011>>