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

1 2 3 4 5 6 7 8 91011>>

  /cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/
ActionListenerTest.java 32 public static final Argument SUCCESS = new Argument();
33 public static final Argument FAIL_NO_SERVICE =
34 new Argument(WifiP2pManager.NO_SERVICE_REQUESTS);
39 Argument arg = new Argument(reason);
46 Argument arg = new Argument();
51 * The container of the argument of {@link #onFailure} or
54 static class Argument extends ListenerArgument
    [all...]
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...]
DnsSdResponseListenerTest.java 71 receiveCallback(new Argument(instanceName, registrationType));
81 IPP_DNS_PTR.add(new Argument(ippInstanceName, ippRegistrationType));
82 AFP_DNS_PTR.add(new Argument(afpInstanceName, afpRegistrationType));
83 ALL_DNS_PTR.add(new Argument(ippInstanceName, ippRegistrationType));
84 ALL_DNS_PTR.add(new Argument(afpInstanceName, afpRegistrationType));
88 * The container of the argument of {@link #onDnsSdServiceAvailable}.
90 static class Argument extends ListenerArgument {
96 * Set the argument of {@link #onDnsSdServiceAvailable}.
101 Argument(String instanceName, String registrationType) {
108 if (obj == null || !(obj instanceof Argument)) {
    [all...]
DnsSdTxtRecordListenerTest.java 73 receiveCallback(new Argument(fullDomainName, txtRecordMap));
86 IPP_DNS_TXT.add(new Argument(ippDomainName, ippTxtRecord));
87 AFP_DNS_TXT.add(new Argument(afpDomainName, afpTxtRecord));
88 ALL_DNS_TXT.add(new Argument(ippDomainName, ippTxtRecord));
89 ALL_DNS_TXT.add(new Argument(afpDomainName, afpTxtRecord));
93 * The container of the argument of {@link #onDnsSdTxtRecordAvailable}.
95 static class Argument extends ListenerArgument {
101 * Set the argument of {@link #onDnsSdTxtRecordAvailable}.
105 Argument(String fullDomainName, Map<String, String> txtRecordMap) {
112 if (obj == null || !(obj instanceof Argument)) {
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/
Argument.h 1 //===-- llvm/Argument.h - Definition of the Argument class ------*- C++ -*-===//
10 // This file declares the Argument class.
27 /// A class to represent an incoming formal argument to a Function. An argument
29 /// in the body of a function, it represents the value of the actual argument
31 /// @brief LLVM Argument representation
32 class Argument : public Value, public ilist_node<Argument> {
35 friend class SymbolTableListTraits<Argument, Function>
    [all...]
Function.h 24 #include "llvm/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...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
acpiioct.h 67 ULONG Argument;
81 ACPI_METHOD_ARGUMENT Argument[ANYSIZE_ARRAY];
88 ACPI_METHOD_ARGUMENT Argument[ANYSIZE_ARRAY];
120 ACPI_METHOD_ARGUMENT Argument[ANYSIZE_ARRAY];
147 #define ACPI_METHOD_ARGUMENT_LENGTH_FROM_ARGUMENT( Argument ) \
148 (ACPI_METHOD_ARGUMENT_LENGTH(((PACPI_METHOD_ARGUMENT)Argument)->DataLength))
150 #define ACPI_METHOD_NEXT_ARGUMENT( Argument ) \
151 (PACPI_METHOD_ARGUMENT) ( (PUCHAR) Argument + \
152 ACPI_METHOD_ARGUMENT_LENGTH_FROM_ARGUMENT( Argument ) )
158 MethodArgument->Argument = IntData;
    [all...]
  /external/clang/include/clang/AST/
TemplateBase.h 39 /// \brief Represents a template argument.
42 /// \brief The kind of template argument we're storing.
44 /// \brief Represents an empty template argument, e.g., one that has not
47 /// The template argument is a type.
49 /// The template argument is a declaration that was provided for a pointer,
52 /// The template argument is a null pointer or null pointer to member that
55 /// The template argument is an integral value stored in an llvm::APSInt
58 /// The template argument is a template name that was provided for a
61 /// The template argument is a pack expansion of a template name that was
64 /// The template argument is an expression, and we've not resolved it to on
    [all...]
ASTDiagnostic.h 27 /// \brief DiagnosticsEngine argument formatting function for diagnostics that
33 /// diagnostics. It is meant to be used as the argument to
40 StringRef Argument,
  /external/llvm/include/llvm/IR/
Argument.h 1 //===-- llvm/Argument.h - Definition of the Argument class ------*- C++ -*-===//
10 // This file declares the Argument class.
26 /// \brief LLVM Argument representation
28 /// This class represents an incoming formal argument to a Function. A formal
29 /// argument, since it is ``formal'', does not contain an actual value but
30 /// instead represents the type, argument number, and attributes of an argument
32 /// argument of course represents the value of the actual argument that th
    [all...]
Intrinsics.h 59 /// and statepoint intrinsics. These call (or invoke) their "target" argument.
93 Argument, ExtendArgument, TruncArgument, HalfVecArgument,
114 assert(Kind == Argument || Kind == ExtendArgument ||
121 assert(Kind == Argument || Kind == ExtendArgument ||
138 /// Match the specified type (which comes from an intrinsic argument or return
SymbolTableListTraits.h 46 class Argument;
58 DEFINE_SYMBOL_TABLE_PARENT_TYPE(Argument, Function)
  /external/valgrind/memcheck/tests/
malloc3.stderr.exp 0 Argument 'size' of function malloc has a fishy (possibly negative) value: -1
5 Argument 'size' of function calloc has a fishy (possibly negative) value: -1
accounting.stderr.exp 2 Argument 'size' of function realloc has a fishy (possibly negative) value: -1
bug155125.stderr.exp 2 Argument 'size' of function malloc has a fishy (possibly negative) value: -10
  /external/llvm/lib/Target/NVPTX/
NVPTXLowerKernelArgs.cpp 105 void handleByValParam(Argument *Arg);
143 void NVPTXLowerKernelArgs::handleByValParam(Argument *Arg) {
171 if (Argument *Arg = dyn_cast<Argument>(Ptr)) {
172 // Insert at the functon entry if Ptr is an argument.
208 if (Argument *Arg = dyn_cast<Argument>(UO)) {
220 for (Argument &Arg : F.args()) {
NVPTXTargetTransformInfo.cpp 52 if (const Argument *Arg = dyn_cast<Argument>(V))
  /external/llvm/unittests/IR/
FunctionTest.cpp 33 // The argument list should be populated at first access.
60 SmallVector<Argument *, 4> Args;
61 for (Argument &A : F1->args())
73 for (Argument &A : F2->args()) {
82 for (Argument &A : F1->args()) {
97 for (Argument &A : F1->args()) {
  /external/swiftshader/third_party/LLVM/lib/VMCore/
Function.cpp 35 template class llvm::SymbolTableListTraits<Argument, Function>;
39 // Argument Implementation
42 Argument::Argument(Type *Ty, const Twine &Name, Function *Par)
54 void Argument::setParent(Function *parent) {
62 /// getArgNo - Return the index of this formal argument in its containing
64 unsigned Argument::getArgNo() const {
66 assert(F && "Argument is not in a function");
76 /// hasByValAttr - Return true if this argument has the byval attribute on it
78 bool Argument::hasByValAttr() const
    [all...]
  /build/make/core/
math.mk 31 $(if $(1),,$(error Argument missing)) \
32 $(if $(word 2,$(1)),$(error Multiple words in a single argument: $(1))) \
  /external/clang/lib/Basic/
Diagnostic.cpp 49 StringRef Modifier, StringRef Argument,
54 StringRef Str = "<can't format argument>";
445 /// like this: %select{foo|bar|baz}2. This means that the integer argument
450 const char *Argument, unsigned ArgumentLen,
452 const char *ArgumentEnd = Argument+ArgumentLen;
456 const char *NextVal = ScanFormat(Argument, ArgumentEnd, '|');
459 Argument = NextVal+1; // Skip this string.
464 const char *EndPtr = ScanFormat(Argument, ArgumentEnd, '|');
467 DInfo.FormatDiagnostic(Argument, EndPtr, OutStr);
564 /// Conditions are simple boolean expressions, where n is the number argument
    [all...]
  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkSouthCluster/Sdio/Dxe/SDMediaDeviceDxe/
MMCSDTransfer.c 124 @param Argument Command argument to set the argument field of command register.
142 IN UINT32 Argument,
162 Argument,
187 @param Argument Command argument to set the argument field of command register.
205 IN UINT32 Argument,
257 Argument,
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
FunctionLoweringInfo.h 85 DenseMap<const Argument*, int> ByValArgFrameIndexMap;
203 /// argument.
204 void setArgumentFrameIndex(const Argument *A, int FI);
206 /// getArgumentFrameIndex - Get frame index for the byval argument.
207 int getArgumentFrameIndex(const Argument *A);
  /frameworks/compile/slang/
slang_rs_reflection_cpp.h 39 struct Argument {
43 Argument(std::string Type, std::string Name, std::string DefaultValue = "")
46 typedef std::vector<Argument> ArgumentList;
126 // Produce an argument string of the form "T1 t, T2 u, T3 v".
  /frameworks/compile/slang/StripUnkAttr/
strip_unknown_attributes.cpp 27 llvm::Argument &A = *I;

Completed in 475 milliseconds

1 2 3 4 5 6 7 8 91011>>