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

<<11121314151617181920>>

  /external/chromium_org/base/debug/
debug_on_start_win.h 6 // line argument. When the command line argument is detected, it invokes the
38 // Looks at the command line for kDebugOnStart argument. If found, it invokes
42 // Returns true if the 'argument' is present in the 'command_line'. It does
44 static bool FindArgument(wchar_t* command_line, const char* argument);
  /external/chromium_org/media/base/
gmock_callback_support.h 23 // argument of the mock function.
34 // (0-based) argument of the mock function, with arguments p1, p2, ..., p_k.
39 // pass an argument by reference, wrap it inside ByRef(). For example,
45 // 2. If the callback takes an argument by reference but ByRef() is
48 // argument of the callback takes a const string&, the action
  /external/chromium_org/third_party/angle/src/compiler/timing/
RestrictFragmentShaderTiming.cpp 91 // Second argument (coord)
94 << " coordinate argument of a sampling operation.\n";
97 // Third argument (bias)
100 << " bias argument of a sampling operation.\n";
103 // First argument (sampler)
  /external/clang/test/Sema/
attr-format.c 9 void e(char *str, int c, ...) __attribute__((format(printf, 2,3))); // expected-error {{format argument not a string type}}
19 int (*f2_ptr)(double,...) __attribute__((format(printf, 1, 2))); // expected-error {{format argument not a string type}}
23 int (*printf2)(double format, ...) __attribute__((__format__(printf, 1, 2))); // expected-error {{format argument not a string type}}
43 void e2(char *str, int c, ...) __attribute__((format(printf0, 2,3))); // expected-error {{format argument not a string type}}
48 void null(int i, const char *a, ...) { // expected-note{{passing argument to parameter 'a' here}}
  /external/clang/test/SemaTemplate/
default-arguments.cpp 22 template struct p<bool>; // expected-note {{in instantiation of default argument for 'p<bool>' required here}}
73 X2<int>::Inner1<> x2bad; // expected-note{{instantiation of default argument}}
76 X2<int>::NonType1<> x2_nontype1_bad; // expected-note{{instantiation of default argument}}
114 template<T> class B = X5> // expected-error{{template template argument has different}} \
119 X6<long> x6b; // expected-note{{while checking a default template argument}}
  /external/llvm/include/llvm/IR/
Function.h 21 #include "llvm/IR/Argument.h"
53 template<> struct ilist_traits<Argument>
54 : public SymbolTableListTraits<Argument, Function> {
56 Argument *createSentinel() const {
57 return static_cast<Argument*>(&Sentinel);
59 static void destroySentinel(Argument*) {}
61 Argument *provideInitialHead() const { return createSentinel(); }
62 Argument *ensureHead(Argument*) const { return createSentinel(); }
63 static void noteHead(Argument*, Argument*) {
    [all...]
  /external/openssh/openbsd-compat/
getopt.c 47 char *BSDoptarg; /* argument associated with option */
55 * Parse argc/argv argument vector.
97 if (*++oli != ':') { /* don't need argument */
102 else { /* need an argument */
111 "%s: option requires an argument -- %c\n",
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.7/share/gdb/python/gdb/
prompt.py 43 "The selected frame; an argument names a frame parameter."
47 "The selected thread; an argument names a thread parameter."
71 "A parameter's value; the argument names the parameter."
106 An argument can also be passed to it, like "\\f{name}".
107 The meaning of the argument depends on the particular substitution."""
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.7/share/gdb/python/gdb/
prompt.py 43 "The selected frame; an argument names a frame parameter."
47 "The selected thread; an argument names a thread parameter."
71 "A parameter's value; the argument names the parameter."
106 An argument can also be passed to it, like "\\f{name}".
107 The meaning of the argument depends on the particular substitution."""
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_has_key.py 48 ( not(arglist | argument<any '=' any>) arg=any
49 | arglist<(not argument<any '=' any>) arg=any ','>
63 ( not(arglist | argument<any '=' any>) arg=any
64 | arglist<(not argument<any '=' any>) arg=any ','>
89 syms.or_test, syms.test, syms.lambdef, syms.argument):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_has_key.py 48 ( not(arglist | argument<any '=' any>) arg=any
49 | arglist<(not argument<any '=' any>) arg=any ','>
63 ( not(arglist | argument<any '=' any>) arg=any
64 | arglist<(not argument<any '=' any>) arg=any ','>
89 syms.or_test, syms.test, syms.lambdef, syms.argument):
  /external/chromium_org/sandbox/linux/seccomp-bpf/
errorcode.h 49 // When passed as an argument to SandboxBPF::Cond(), TP_32BIT requests that
51 // argument.
53 // a 64bit value as an argument to the system call. If it did, that will be
58 // argument.
63 // 31 was set in the system call argument. It deals with 32bit arguments
67 // When passed as an argument to SandboxBPF::Cond(), TP_64BIT requests that
68 // the conditional test should operate on the full 64bit argument. It is
79 // Test whether the system call argument is equal to the operand.
82 // Test whether the system call argument is greater (or equal) to the
91 // Tests a system call argument against a bit mask
    [all...]
  /external/clang/test/Analysis/
NSContainers.m 104 [marray addObject:0]; // expected-warning {{Argument to 'NSMutableArray' method 'addObject:' cannot be nil}}
109 [marray insertObject:0 atIndex:1]; // expected-warning {{Argument to 'NSMutableArray' method 'insertObject:atIndex:' cannot be nil}}
114 [marray replaceObjectAtIndex:1 withObject:0]; // expected-warning {{Argument to 'NSMutableArray' method 'replaceObjectAtIndex:withObject:' cannot be nil}}
119 [marray setObject:0 atIndexedSubscript:1]; // expected-warning {{Argument to 'NSMutableArray' method 'setObject:atIndexedSubscript:' cannot be nil}}
130 NSArray *copyArray = [array arrayByAddingObject:0]; // expected-warning {{Argument to 'NSArray' method 'arrayByAddingObject:' cannot be nil}}
135 [d setObject:0 forKey:key]; // expected-warning {{Value argument to 'setObject:forKey:' cannot be nil}}
139 [d setObject:obj forKey:0]; // expected-warning {{Key argument to 'setObject:forKey:' cannot be nil}}
143 [d removeObjectForKey:0]; // expected-warning {{Value argument to 'removeObjectForKey:' cannot be nil}}
157 return [NSDictionary dictionaryWithObject:0 forKey:key]; // expected-warning {{Value argument to 'dictionaryWithObject:forKey:' cannot be nil}}
160 return [NSDictionary dictionaryWithObject:obj forKey:0]; // expected-warning {{Key argument to 'dictionaryWithObject:forKey:' cannot be nil}
    [all...]
  /external/clang/test/SemaCXX/
warn-memset-bad-sizeof.cpp 1 // RUN: %clang_cc1 -fsyntax-only -verify -Wno-sizeof-array-argument %s
38 // expected-warning {{'memset' call operates on objects of type 'S' while the size is based on a different type 'S *'}} expected-note{{did you mean to remove the addressof in the argument to 'sizeof' (and multiply it by the number of elements)?}}
40 // expected-warning {{'memset' call operates on objects of type 'S' while the size is based on a different type 'S *'}} expected-note{{did you mean to dereference the argument to 'sizeof' (and multiply it by the number of elements)?}}
42 // expected-warning {{'memset' call operates on objects of type 'S' while the size is based on a different type 'PS' (aka 'S *')}} expected-note{{did you mean to dereference the argument to 'sizeof' (and multiply it by the number of elements)?}}
44 // expected-warning {{argument to 'sizeof' in 'memset' call is the same pointer type}}
46 // expected-warning {{argument to 'sizeof' in 'memset' call is the same pointer type}}
51 // expected-warning {{'memcpy' call operates on objects of type 'S' while the size is based on a different type 'S *'}} expected-note{{did you mean to remove the addressof in the argument to 'sizeof' (and multiply it by the number of elements)?}}
53 // expected-warning {{'memcpy' call operates on objects of type 'S' while the size is based on a different type 'S *'}} expected-note{{did you mean to remove the addressof in the argument to 'sizeof' (and multiply it by the number of elements)?}}
56 // expected-warning {{'memmove' call operates on objects of type 'S' while the size is based on a different type 'S *'}} expected-note{{did you mean to dereference the argument to 'sizeof' (and multiply it by the number of elements)?}}
58 // expected-warning {{'memcmp' call operates on objects of type 'S' while the size is based on a different type 'S *'}} expected-note{{did you mean to dereference the argument to 'sizeof' (and multiply it by the number of elements)?}
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/lib/
getopt.in.h 108 When `getopt' finds an option that takes an argument,
109 the argument value is returned here.
140 The LONG_OPTIONS argument to getopt_long or getopt_long_only is a vector
145 no_argument (or 0) if the option does not take an argument,
146 required_argument (or 1) if the option requires an argument,
147 optional_argument (or 2) if the option takes an optional argument.
189 takes an argument, to be placed in `optarg'.
191 If a letter in OPTS is followed by two colons, its argument is
194 The argument `--' causes premature termination of argument
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pdb.doc 62 Without argument, print the list of available commands. With
63 a command name as argument, print help about that command
80 With a filename:line number argument, set a break there. If
83 function. Without argument, list all breaks. Each breakpoint
87 The condition argument, if present, is a string which must
96 breakpoints. Without argument, clear all breaks (but first
151 With one argument, list 11 lines starting at that line.
153 if the second argument is less than the first, it is a count.
156 Print the argument list of the current function.
172 Prints the type of the argument
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pdb.doc 62 Without argument, print the list of available commands. With
63 a command name as argument, print help about that command
80 With a filename:line number argument, set a break there. If
83 function. Without argument, list all breaks. Each breakpoint
87 The condition argument, if present, is a string which must
96 breakpoints. Without argument, clear all breaks (but first
151 With one argument, list 11 lines starting at that line.
153 if the second argument is less than the first, it is a count.
156 Print the argument list of the current function.
172 Prints the type of the argument
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
BaseMachine.java 48 /** auxiliary {@code int} argument */
51 /** {@code null-ok;} auxiliary constant argument */
54 /** auxiliary branch target argument */
57 /** {@code null-ok;} auxiliary switch cases argument */
277 * @return {@code >= 0;} the argument width
290 * Gets the {@code n}th primary argument.
292 * @param n {@code >= 0, < argCount();} which argument
293 * @return {@code non-null;} the indicated argument
309 * Gets the type auxiliary argument.
318 * Gets the {@code int} auxiliary argument
    [all...]
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/
plstr.h 87 * buffer is large enough. It returns the "dest" argument.
113 * unlike the traditional libc implementation. It returns the "dest" argument.
133 * of the argument string. The size of the allocated extent is one greater
134 * than the length of the argument string, because of the terminator. A
135 * null argument, like a zero-length argument, will result in a pointer to
156 * of the argument string, up to the maximum specified. If the argument
170 * Appends a copy of the string pointed to by the second argument to the
173 * argument returns null; otherwise, the first argument is returned
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
test2.c 73 const char **argv /* Text of each argument */
110 const char **argv /* Text of each argument */
137 const char **argv /* Text of each argument */
164 const char **argv /* Text of each argument */
196 const char **argv /* Text of each argument */
223 const char **argv /* Text of each argument */
251 const char **argv /* Text of each argument */
278 const char **argv /* Text of each argument */
311 const char **argv /* Text of each argument */
337 const char **argv /* Text of each argument */
    [all...]
  /external/apache-http/src/org/apache/commons/codec/binary/
BinaryCodec.java 77 * @return 0 and 1 ascii character bytes one for each bit of the argument
89 * @return 0 and 1 ascii character chars one for each bit of the argument
91 * if the argument is not a byte[]
96 throw new EncoderException("argument not a byte array");
106 * @return the raw encoded binary where each bit corresponds to a byte in the byte array argument
108 * if argument is not a byte[], char[] or String
124 throw new DecoderException("argument not a byte array");
132 * @return the raw encoded binary where each bit corresponds to a byte in the byte array argument
144 * @return the raw encoded binary where each bit corresponds to a byte in the byte array argument
164 * @return the raw encoded binary where each bit corresponds to a char in the char array argument
    [all...]
  /external/easymock/src/org/easymock/
EasyMock.java 177 * argument, i.e.
208 * Expects any boolean argument. For details, see the EasyMock
219 * Expects any byte argument. For details, see the EasyMock documentation.
229 * Expects any char argument. For details, see the EasyMock documentation.
239 * Expects any int argument. For details, see the EasyMock documentation.
249 * Expects any long argument. For details, see the EasyMock documentation.
259 * Expects any float argument. For details, see the EasyMock documentation.
269 * Expects any double argument. For details, see the EasyMock documentation.
279 * Expects any short argument. For details, see the EasyMock documentation.
289 * Expects any Object argument. For details, see the EasyMock documentation.
    [all...]
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/src/
perf_config.c 32 static int assign_string_if_matches(char const *line, char const *argument,
35 static int assign_long_if_matches(char const *line, char const *argument,
38 static char const *get_value_if_matches(char const *line, char const *argument);
237 char const *argument)
242 /* return NULL if argument name does not match */
243 if (strncasecmp(line, argument, strlen(argument))) return (NULL);
244 line += strlen(argument);
246 /* there must be an = after argument name */
342 int assign_string_if_matches(char const *line, char const *argument,
    [all...]
  /frameworks/base/tools/aapt/
Main.cpp 287 fprintf(stderr, "ERROR: No argument supplied for '-c' option\n");
300 fprintf(stderr, "ERROR: No argument supplied for '-g' option\n");
332 fprintf(stderr, "ERROR: No argument supplied for '-j' option\n");
343 fprintf(stderr, "ERROR: No argument supplied for '-A' option\n");
354 fprintf(stderr, "ERROR: No argument supplied for '-G' option\n");
365 fprintf(stderr, "ERROR: No argument supplied for '-I' option\n");
376 fprintf(stderr, "ERROR: No argument supplied for '-F' option\n");
387 fprintf(stderr, "ERROR: No argument supplied for '-J' option\n");
398 fprintf(stderr, "ERROR: No argument supplied for '-M' option\n");
409 fprintf(stderr, "ERROR: No argument supplied for '-P' option\n")
    [all...]
  /external/chromium_org/third_party/mesa/src/src/getopt/
getopt_long.c 62 char *optarg; /* argument associated with option */
87 static int nonopt_start = -1; /* first non option argument (for permute) */
91 static const char recargchar[] = "option requires an argument -- %c";
92 static const char recargstring[] = "option requires an argument -- %s";
94 static const char noarg[] = "option doesn't take an argument -- %.*s";
155 * Parse long options in argc/argv argument vector.
172 /* argument found (--option=arg) */
229 * optional argument doesn't use next nargv
237 * Missing argument; leading ':' indicates no error
274 * Parse argc/argv argument vector. Called by user level routines
    [all...]

Completed in 3647 milliseconds

<<11121314151617181920>>