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

<<11121314151617181920>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/
AppleScript_Suite.py 17 Required argument: an AE object reference
18 Keyword argument _attributes: AppleEvent attribute dictionary
38 Required argument: an AE object reference
39 Keyword argument _attributes: AppleEvent attribute dictionary
59 Required argument: an AE object reference
60 Keyword argument _attributes: AppleEvent attribute dictionary
80 Required argument: an AE object reference
81 Keyword argument _attributes: AppleEvent attribute dictionary
101 Required argument: an AE object reference
102 Keyword argument _attributes: AppleEvent attribute dictionar
    [all...]
  /external/clang/test/Sema/
warn-type-safety-mpi-hdf5.c 159 MPI_Send(long_buf1, 1, MPI_INT); // expected-warning {{argument type 'long *' doesn't match specified 'mpi' type tag that requires 'int *'}}
162 MPI_Send(pii, 1, MPI_FLOAT_INT); // expected-warning {{argument type 'struct pair_int_int *' doesn't match specified 'mpi' type tag}}
163 MPI_Send(pfi, 1, MPI_2INT); // expected-warning {{argument type 'struct pair_float_int *' doesn't match specified 'mpi' type tag}}
166 MPI_Send(long_buf1, 1, MPI_2INT); // expected-warning {{argument type 'long *' doesn't match specified 'mpi' type tag}}
169 MPI_Gather(long_buf1, 1, MPI_INT, // expected-warning {{argument type 'long *' doesn't match specified 'mpi' type tag that requires 'int *'}}
170 long_buf2, 1, MPI_INT); // expected-warning {{argument type 'long *' doesn't match specified 'mpi' type tag that requires 'int *'}}
177 MPI_Send((int *) char_buf, 255, MPI_CHAR); // expected-warning {{argument type 'int *' doesn't match specified 'mpi' type tag that requires 'char *'}}
214 MPI_Send(long_buf, 1, my_int_datatype); // expected-warning {{argument type 'long *' doesn't match specified 'mpi' type tag that requires 'int *'}}
217 MPI_Send(s1_buf, 1, my_s2_datatype); // expected-warning {{argument type 'struct S1 *' doesn't match specified 'mpi' type tag that requires 'struct S2 *'}}
219 MPI_Send(long_buf, 1, my_s1_datatype); // expected-warning {{argument type 'long *' doesn't match specified 'mpi' type tag that requires 'struct S1 *'}
    [all...]
  /libcore/luni/src/main/java/java/lang/
Math.java 47 * Returns the absolute value of the argument.
62 * Returns the absolute value of the argument.
77 * Returns the absolute value of the argument.
79 * If the argument is {@code Integer.MIN_VALUE}, {@code Integer.MIN_VALUE}
87 * Returns the absolute value of the argument. If the argument is {@code
96 * argument within the range {@code [0..pi]}. The returned result is within
108 * @return the arc cosine of the argument.
113 * Returns the closest double approximation of the arc sine of the argument
126 * @return the arc sine of the argument
    [all...]
StrictMath.java 56 * Returns the absolute value of the argument.
71 * Returns the absolute value of the argument.
86 * Returns the absolute value of the argument.
88 * If the argument is {@code Integer.MIN_VALUE}, {@code Integer.MIN_VALUE}
96 * Returns the absolute value of the argument.
98 * If the argument is {@code Long.MIN_VALUE}, {@code Long.MIN_VALUE} is
107 * argument within the range {@code [0..pi]}.
118 * @return the arc cosine of the argument.
123 * Returns the closest double approximation of the arc sine of the argument
135 * @return the arc sine of the argument
    [all...]
  /external/clang/lib/Basic/
Diagnostic.cpp 28 const char *Argument, unsigned ArgLen,
34 const char *Str = "<can't format argument>";
472 /// like this: %select{foo|bar|baz}2. This means that the integer argument
477 const char *Argument, unsigned ArgumentLen,
479 const char *ArgumentEnd = Argument+ArgumentLen;
483 const char *NextVal = ScanFormat(Argument, ArgumentEnd, '|');
486 Argument = NextVal+1; // Skip this string.
491 const char *EndPtr = ScanFormat(Argument, ArgumentEnd, '|');
494 DInfo.FormatDiagnostic(Argument, EndPtr, OutStr);
591 /// Conditions are simple boolean expressions, where n is the number argument
    [all...]
  /external/llvm/include/llvm/Option/
OptTable.h 62 /// The union of all option prefixes. If an argument does not begin with
114 /// \brief Parse a single argument; returning the new argument and
117 /// \param [in,out] Index - The current parsing position in the argument
118 /// string list; on return this will be the index of the next argument
125 /// \return The parsed argument, or 0 if the argument is missing values
126 /// (in which case Index still points at the conceptual next argument string
138 /// The only error that can occur in this routine is if an argument is
141 /// \param ArgBegin - The beginning of the argument vector
    [all...]
  /external/llvm/lib/IR/
Function.cpp 36 template class llvm::SymbolTableListTraits<Argument, Function>;
40 // Argument Implementation
43 void Argument::anchor() { }
45 Argument::Argument(Type *Ty, const Twine &Name, Function *Par)
57 void Argument::setParent(Function *parent) {
65 /// getArgNo - Return the index of this formal argument in its containing
67 unsigned Argument::getArgNo() const {
69 assert(F && "Argument is not in a function");
79 /// hasByValAttr - Return true if this argument has the byval attribute on i
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
kernel.cpp 31 const std::vector<clover::module::argument> &args) :
34 if (arg.type == module::argument::scalar)
36 else if (arg.type == module::argument::global)
38 else if (arg.type == module::argument::local)
40 else if (arg.type == module::argument::constant)
42 else if (arg.type == module::argument::image2d_rd ||
43 arg.type == module::argument::image3d_rd)
45 else if (arg.type == module::argument::image2d_wr ||
46 arg.type == module::argument::image3d_wr)
48 else if (arg.type == module::argument::sampler
179 _cl_kernel::argument::argument(size_t size) : function in class:_cl_kernel::argument
    [all...]
  /external/mesa3d/src/gallium/state_trackers/clover/core/
kernel.cpp 31 const std::vector<clover::module::argument> &args) :
34 if (arg.type == module::argument::scalar)
36 else if (arg.type == module::argument::global)
38 else if (arg.type == module::argument::local)
40 else if (arg.type == module::argument::constant)
42 else if (arg.type == module::argument::image2d_rd ||
43 arg.type == module::argument::image3d_rd)
45 else if (arg.type == module::argument::image2d_wr ||
46 arg.type == module::argument::image3d_wr)
48 else if (arg.type == module::argument::sampler
179 _cl_kernel::argument::argument(size_t size) : function in class:_cl_kernel::argument
    [all...]
  /cts/tools/signature-tools/src/signature/compare/model/
IParameterizedTypeDelta.java 45 * Returns a set of argument type deltas or {@code null} if no deltas are
48 * @return a set of argument type deltas, maybe {@code null}
  /dalvik/dx/src/com/android/dx/io/instructions/
OneRegisterDecodedInstruction.java 22 * A decoded Dalvik instruction which has one register argument.
25 /** register argument "A" */
TwoRegisterDecodedInstruction.java 25 /** register argument "A" */
28 /** register argument "B" */
  /dalvik/tools/
get-hprof 17 # Grab an hprof file using adb. If an argument is specified, grab
18 # the so-named file. If no argument is specified, grab the last such file
  /development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/utils/
CloseUtils.java 32 * If the argument is non-null, close the Closeable ignoring any {@link IOException}.
44 /** If the argument is non-null, close the cursor. */
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/ANTLR/ANTLR.xcodeproj/xcuserdata/acondit.xcuserdatad/xcschemes/
ANTLRTests.xcscheme 36 argument = "-SenTest Self"
40 argument = "$(BUILT_PRODUCTS_DIR)/ANTLRTests.octest"
  /external/apache-http/src/org/apache/http/message/
LineFormatter.java 54 * a buffer can be passed as argument to all formatting methods.
58 * The argument buffer can always be re-used after the call. The buffer
59 * returned as the result, if it is different from the argument buffer,
80 * It does <i>not</i> clear the argument buffer, but appends instead.
90 * If the <code>buffer</code> argument is not <code>null</code>,
91 * the returned buffer is the argument buffer.
137 * See the class comment for details about the buffer argument.
145 * The returned buffer may be different from the argument buffer.
  /external/bison/build-aux/snippet/
arg-nonnull.h 19 n = 1 stands for the first argument, n = 2 for the second argument etc. */
  /external/bison/lib/
printf-args.c 1 /* Decomposed printf argument list.
39 argument *ap;
88 default argument promotions", this is not the case in mingw32,
98 /* A null pointer is an invalid argument for "%s", but in practice
107 /* A null pointer is an invalid argument for "%ls", but in practice
147 /* A null pointer is an invalid argument for "%U", but in practice
159 /* A null pointer is an invalid argument for "%lU", but in practice
171 /* A null pointer is an invalid argument for "%llU", but in practice
  /external/bison/m4/
mode_t.m4 10 # Define PROMOTED_MODE_T to the type that is the result of "default argument
25 [Define to the type that is the result of default argument promotions of type mode_t.])
  /external/chromium_org/base/i18n/
string_search.h 30 // with the same |find_this| argument. |find_this| is passed as the constructor
31 // argument, and precomputation for searching is done only at that timing.
  /external/chromium_org/build/toolchain/mac/
setup_toolchain.py 25 # Find the tool source, it's the first argument, and copy it.
27 print "Need one argument (mac_tool source path)."
  /external/chromium_org/chrome/browser/ui/views/
accelerator_table.h 34 // second argument.
42 // accelerator is returned via the second argument.
  /external/chromium_org/device/media_transfer_protocol/
media_transfer_protocol_daemon_client.h 41 // The argument is the enumerated storage names.
46 // The argument is the information about the specified storage.
51 // The argument is the returned handle.
58 // The argument is a vector of file entries.
63 // The argument is a string containing the file data.
67 // The argument is a file entry.
72 // The first argument is true for attach, false for detach.
73 // The second argument is the storage name.
  /external/chromium_org/tools/idl_parser/test_parser/
typedef_ppapi.idl 37 * Argument(x)
48 * Argument(x)
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/dcl.fct.def.default/
p1.cpp 13 DefArg &operator=(const DefArg&, int k = 4) = default; // expected-error {{parameter of overloaded 'operator=' cannot have a default argument}}
14 DefArg &operator=(DefArg&&, int k = 4) = default; // expected-error {{parameter of overloaded 'operator=' cannot have a default argument}}

Completed in 813 milliseconds

<<11121314151617181920>>