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

1 2 3 4 5 6 7

  /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...]
Intrinsics.h 82 Argument, ExtendVecArgument, TruncVecArgument
101 assert(Kind == Argument || Kind == ExtendVecArgument ||
106 assert(Kind == Argument || Kind == ExtendVecArgument ||
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...]
ValueSymbolTable.h 36 friend class SymbolTableListTraits<Argument, Function>;
  /external/clang/include/clang/AST/
TemplateBase.h 37 /// \brief Represents a template argument within a class template
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 a value- or type-dependent expressio
    [all...]
ASTDiagnostic.h 27 /// \brief DiagnosticsEngine argument formatting function for diagnostics that
33 /// diagnostics. It is meant to be used as the argument to
41 const char *Argument,
Comment.h 292 struct Argument {
296 Argument(SourceRange Range, StringRef Text) : Range(Range), Text(Text) { }
310 ArrayRef<Argument> Args;
317 ArrayRef<Argument> Args) :
579 /// arguments depends on command name) and a paragraph as an argument
583 struct Argument {
587 Argument() { }
588 Argument(SourceRange Range, StringRef Text) : Range(Range), Text(Text) { }
593 ArrayRef<Argument> Args;
595 /// Paragraph 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/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/llvm/include/llvm/CodeGen/
FunctionLoweringInfo.h 80 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);
  /external/llvm/lib/Transforms/IPO/
IPConstantPropagation.cpp 13 // them. The existing dead argument elimination pass should be run after this
78 /// constant in for an argument, propagate that constant in as the argument.
83 // For each argument, keep track of its constant value and whether it is a
110 // If this argument is known non-constant, ignore it.
120 // Ignore recursive calls passing argument down.
122 // Argument became non-constant. If all arguments are non-constant now,
131 // If we got to this point, there is a constant argument!
136 // Do we have a constant argument?
198 // 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/clang/utils/TableGen/
ClangAttrEmitter.cpp 95 class Argument {
100 Argument(Record &Arg, StringRef Attr)
108 virtual ~Argument() {}
114 // These functions print the argument contents formatted in different ways.
133 class SimpleArgument : public Argument {
138 : Argument(Arg, Attr), type(T)
211 class StringArgument : public Argument {
214 : Argument(Arg, Attr)
275 class AlignedArgument : public Argument {
278 : Argument(Arg, Attr
    [all...]
  /external/chromium_org/build/android/gyp/
strip_library_for_device.py 30 help='Argument to be passed to strip')
  /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 //
60 Argument* Arg = AI;
  /external/llvm/unittests/Transforms/Utils/
Cloning.cpp 12 #include "llvm/IR/Argument.h"
57 V = new Argument(Type::getInt32Ty(context));
127 V = new Argument(Type::getInt32PtrTy(context));
140 V = new Argument(Type::getInt32Ty(context));
162 Argument *A = F1->arg_begin();
  /external/clang/lib/AST/
CommentSema.cpp 62 ArrayRef<BlockCommandComment::Argument> Args) {
276 // User didn't provide a direction argument.
279 typedef BlockCommandComment::Argument Argument;
280 Argument *A = new (Allocator) Argument(SourceRange(ArgLocBegin,
317 typedef BlockCommandComment::Argument Argument;
318 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);
  /external/mesa3d/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 325 milliseconds

1 2 3 4 5 6 7