HomeSort by relevance Sort by last modified time
    Searched refs:Argument (Results 1 - 25 of 186) 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"
54 template<> struct ilist_traits<Argument>
55 : public SymbolTableListTraits<Argument, Function> {
57 Argument *createSentinel() const {
58 return static_cast<Argument*>(&Sentinel);
60 static void destroySentinel(Argument*) {}
62 Argument *provideInitialHead() const { return createSentinel(); }
63 Argument *ensureHead(Argument*) const { return createSentinel(); }
64 static void noteHead(Argument*, Argument*) {
    [all...]
Intrinsics.h 85 Argument, ExtendArgument, TruncArgument, HalfVecArgument
104 assert(Kind == Argument || Kind == ExtendArgument ||
109 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 37 /// \brief Represents a template argument.
40 /// \brief The kind of template argument we're storing.
42 /// \brief Represents an empty template argument, e.g., one that has not
45 /// The template argument is a type.
47 /// The template argument is a declaration that was provided for a pointer,
50 /// The template argument is a null pointer or null pointer to member that
53 /// The template argument is an integral value stored in an llvm::APSInt
56 /// The template argument is a template name that was provided for a
59 /// The template argument is a pack expansion of a template name that was
62 /// 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/chromium_org/chrome/browser/devtools/
devtools_embedder_message_dispatcher.cc 82 class Argument {
86 Argument(const base::ListValue& list, int pos) {
111 Argument<A1> arg1(list, 0);
123 Argument<A1> arg1(list, 0);
126 Argument<A2> arg2(list, 1);
138 Argument<A1> arg1(list, 0);
141 Argument<A2> arg2(list, 1);
144 Argument<A3> arg3(list, 2);
156 Argument<A1> arg1(list, 0);
159 Argument<A2> arg2(list, 1)
    [all...]
  /external/clang/lib/Basic/
Diagnostic.cpp 27 StringRef Modifier, StringRef Argument,
32 StringRef Str = "<can't format argument>";
429 /// like this: %select{foo|bar|baz}2. This means that the integer argument
434 const char *Argument, unsigned ArgumentLen,
436 const char *ArgumentEnd = Argument+ArgumentLen;
440 const char *NextVal = ScanFormat(Argument, ArgumentEnd, '|');
443 Argument = NextVal+1; // Skip this string.
448 const char *EndPtr = ScanFormat(Argument, ArgumentEnd, '|');
451 DInfo.FormatDiagnostic(Argument, EndPtr, OutStr);
548 /// Conditions are simple boolean expressions, where n is the number argument
    [all...]
  /external/llvm/include/llvm/CodeGen/
FunctionLoweringInfo.h 81 DenseMap<const Argument*, int> ByValArgFrameIndexMap;
204 /// argument.
205 void setArgumentFrameIndex(const Argument *A, int FI);
207 /// getArgumentFrameIndex - Get frame index for the byval argument.
208 int getArgumentFrameIndex(const Argument *A);
  /external/chromium_org/build/android/gyp/
strip_library_for_device.py 30 help='Argument to be passed to strip')
  /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 /// 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/chromium_org/v8/test/mjsunit/harmony/regress/
regress-343928.js 9 // Argument must not be null or undefined.
  /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/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 62 // function will have a return type of "int" and take an argument of "int".
63 // The '0' terminates the list of argument types.
70 // because of the last argument.
80 // Get pointers to the integer argument of the add1 function...
82 Argument *ArgX = Add1F->arg_begin(); // Get the arg
  /external/llvm/lib/Target/Hexagon/
HexagonRemoveSZExtArgs.cpp 1 //===- HexagonRemoveExtendArgs.cpp - Remove unnecessary argument sign extends //
61 Argument* Arg = AI;
  /frameworks/compile/slang/
strip_unknown_attributes.cpp 29 llvm::Argument &A = *I;
  /external/clang/lib/AST/
CommentSema.cpp 63 ArrayRef<BlockCommandComment::Argument> Args) {
265 // User didn't provide a direction argument.
268 typedef BlockCommandComment::Argument Argument;
269 Argument *A = new (Allocator) Argument(SourceRange(ArgLocBegin,
306 typedef BlockCommandComment::Argument Argument;
307 Argument *A = new (Allocator) Argument(SourceRange(ArgLocBegin
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
R600KernelParameters.cpp 69 void AddParam(Argument *Arg);
70 int CalculateArgumentSize(Argument *Arg);
183 void R600KernelParameters::AddParam(Argument *Arg) {
198 int R600KernelParameters::CalculateArgumentSize(Argument *Arg) {
329 Argument *Arg = dyn_cast<Argument>(P.Val);

Completed in 753 milliseconds

1 2 3 4 5 6 7 8