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

1 2

  /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 ||
  /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/chromium_org/third_party/WebKit/Source/core/xml/
XPathGrammar.y 104 %type <expr> Argument
388 Argument
396 ArgumentList ',' Argument
403 Argument:
  /external/chromium_org/tools/site_compare/
command_line.py 41 validator: callable for custom argument validation
55 class Argument(object):
56 """Encapsulates an argument to a command."""
62 """Command-line argument to a command.
65 names: argument name, or list of synonyms
66 helptext: brief description of the argument
67 type: type of the argument. Valid values include:
76 required: True if argument must be specified
78 positional: Argument specified by location, not name
81 ValueError: the argument name is invalid for some reaso
    [all...]
  /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/clang/lib/Tooling/
JSONCompilationDatabase.cpp 39 std::string Argument;
40 HasMoreInput = parseStringInto(Argument);
41 CommandLine.push_back(Argument);
  /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/clang/include/clang/Sema/
DelayedDiagnostic.h 143 unsigned argument) {
150 DD.ForbiddenTypeData.Argument = argument;
185 return ForbiddenTypeData.Argument;
213 unsigned Argument;
  /external/clang/lib/Sema/
SemaTemplateVariadic.cpp 150 /// \brief Suppress traversal of template argument pack expansions.
158 /// \brief Suppress traversal of template argument pack expansions.
441 llvm_unreachable("Unhandled template argument kind?");
562 // Determine the size of this argument pack.
565 // Figure out whether we're instantiating to an argument pack or not.
581 // If we don't have a template argument at this depth/index, then we
590 // Determine the size of the argument pack.
595 // Template argument deduction can extend the sequence of template
609 // The is the first pack we've seen for which we have an argument.
677 // The pattern refers to an unknown template argument. We're not ready t
    [all...]
SemaObjCProperty.cpp     [all...]
SemaPseudoObject.cpp 731 assert(op && "successful assignment left argument invalid?");
    [all...]
  /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...]
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/AST/
CommentParser.cpp 259 // Check if argument looks like direction specification: [dir]
287 typedef BlockCommandComment::Argument Argument;
288 Argument *Args =
289 new (Allocator.Allocate<Argument>(NumArgs)) Argument[NumArgs];
293 Args[ParsedArgs] = Argument(SourceRange(Arg.getLocation(),
331 // command has an empty argument.
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/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/apache-xml/src/main/java/org/apache/xpath/compiler/
XPathParser.java 288 * @return true if the next token matches the character argument.
323 * argument.
395 * argument.
576 * @throws RuntimeException if the b argument is false.
1188 error(XPATHErrorResources.ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL, null); //"boolean(...) argument is no longer optional with 19990709 XPath draft.");
    [all...]
  /external/chromium_org/gpu/command_buffer/
build_gles2_cmd_buffer.py 35 # *) Any argument that is a resourceID has been changed to GLid<Type>.
1191 # function. The default is if there is exactly 1 pointer argument
1210 # valid_args: A dictionary of argument indices to args to use in unit tests
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.ml 211 | Argument
    [all...]
llvm_ocaml.c 411 Argument,
462 DEFINE_CASE(Val, Argument);
    [all...]
  /external/dropbear/libtomcrypt/
crypt.tex 363 Certain PRNG algorithms do not require a \textit{prng\_state} argument (sprng for example). The \textit{prng\_state} argument
    [all...]

Completed in 4222 milliseconds

1 2