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

1 2 3 4 5 6 7 8

  /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/llvm/include/llvm/IR/
Argument.h 1 //===-- llvm/Argument.h - Definition of the Argument class ------*- C++ -*-===//
10 // This file declares the Argument class.
27 /// \brief LLVM Argument representation
29 /// This class represents an incoming formal argument to a Function. A formal
30 /// argument, since it is ``formal'', does not contain an actual value but
31 /// instead represents the type, argument number, and attributes of an argument
33 /// argument of course represents the value of the actual argument that th
    [all...]
Function.h 22 #include "llvm/IR/Argument.h"
34 template<> struct ilist_traits<Argument>
35 : public SymbolTableListTraits<Argument, Function> {
37 Argument *createSentinel() const {
38 return static_cast<Argument*>(&Sentinel);
40 static void destroySentinel(Argument*) {}
42 Argument *provideInitialHead() const { return createSentinel(); }
43 Argument *ensureHead(Argument*) const { return createSentinel(); }
44 static void noteHead(Argument*, Argument*) {
    [all...]
Intrinsics.h 79 Argument, ExtendArgument, TruncArgument, HalfVecArgument,
100 assert(Kind == Argument || Kind == ExtendArgument ||
107 assert(Kind == Argument || Kind == ExtendArgument ||
ValueSymbolTable.h 36 friend class SymbolTableListTraits<Argument, Function>;
  /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 38 /// \brief Represents a template argument.
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 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/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/
NVPTXLowerStructArgs.cpp 43 void handleParam(Argument *);
59 void NVPTXLowerStructArgs::handleParam(Argument *Arg) {
115 for (Argument &Arg : F.args()) {
NVPTXTargetTransformInfo.cpp 52 if (const Argument *Arg = dyn_cast<Argument>(V))
  /external/clang/lib/Basic/
Diagnostic.cpp 28 StringRef Modifier, StringRef Argument,
33 StringRef Str = "<can't format argument>";
431 /// like this: %select{foo|bar|baz}2. This means that the integer argument
436 const char *Argument, unsigned ArgumentLen,
438 const char *ArgumentEnd = Argument+ArgumentLen;
442 const char *NextVal = ScanFormat(Argument, ArgumentEnd, '|');
445 Argument = NextVal+1; // Skip this string.
450 const char *EndPtr = ScanFormat(Argument, ArgumentEnd, '|');
453 DInfo.FormatDiagnostic(Argument, EndPtr, OutStr);
550 /// Conditions are simple boolean expressions, where n is the number argument
    [all...]
  /external/llvm/include/llvm/CodeGen/
FunctionLoweringInfo.h 82 DenseMap<const Argument*, int> ByValArgFrameIndexMap;
217 /// argument.
218 void setArgumentFrameIndex(const Argument *A, int FI);
220 /// getArgumentFrameIndex - Get frame index for the byval argument.
221 int getArgumentFrameIndex(const Argument *A);
  /external/llvm/lib/IR/
Function.cpp 35 template class llvm::SymbolTableListTraits<Argument, Function>;
39 // Argument Implementation
42 void Argument::anchor() { }
44 Argument::Argument(Type *Ty, const Twine &Name, Function *Par)
53 void Argument::setParent(Function *parent) {
57 /// getArgNo - Return the index of this formal argument in its containing
59 unsigned Argument::getArgNo() const {
61 assert(F && "Argument is not in a function");
71 /// hasNonNullAttr - Return true if this argument has the nonnull attribute o
    [all...]
  /external/llvm/lib/Transforms/IPO/
IPConstantPropagation.cpp 13 // them. The existing dead argument elimination pass should be run after this
79 /// constant in for an argument, propagate that constant in as the argument.
84 // For each argument, keep track of its constant value and whether it is a
111 // If this argument is known non-constant, ignore it.
121 // Ignore recursive calls passing argument down.
123 // Argument became non-constant. If all arguments are non-constant now,
132 // If we got to this point, there is a constant argument!
137 // Do we have a constant argument?
199 // Try to see if all the rets return the same constant or argument
    [all...]
  /external/llvm/include/llvm/Analysis/
SparsePropagation.h 26 class Argument;
88 /// ComputeArgument - Given a formal argument value, compute and return a
89 /// lattice value corresponding to the specified argument.
90 virtual LatticeVal ComputeArgument(Argument *I) {
  /external/llvm/unittests/IR/
UseTest.cpp 45 Argument &X = *F->arg_begin();
90 Argument &X = *F->arg_begin();
  /external/v8/test/mjsunit/harmony/regress/
regress-343928.js 9 // Argument must not be null or undefined.
  /external/libpng/contrib/pngminus/
makevms.com 64 $ Argument = P'arg
65 $ If Argument .Eqs. "" Then Goto Exit
68 $ File = F$Element(El," ",Argument)
  /external/llvm/examples/HowToUseJIT/
HowToUseJIT.cpp 63 // function will have a return type of "int" and take an argument of "int".
64 // The '0' terminates the list of argument types.
71 // because of the last argument.
81 // Get pointers to the integer argument of the add1 function...
83 Argument *ArgX = Add1F->arg_begin(); // Get the arg

Completed in 954 milliseconds

1 2 3 4 5 6 7 8