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

1 2 3

  /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 85 Argument, ExtendArgument, TruncArgument, HalfVecArgument
104 assert(Kind == Argument || Kind == ExtendArgument ||
109 assert(Kind == Argument || Kind == ExtendArgument ||
  /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/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/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/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 756 assert(op && "successful assignment left argument invalid?");
    [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 /// hasNonNullAttr - Return true if this argument has the nonnull attribute o
    [all...]
  /external/clang/include/clang/Sema/
DelayedDiagnostic.h 147 unsigned argument) {
154 DD.ForbiddenTypeData.Argument = argument;
191 return ForbiddenTypeData.Argument;
224 unsigned Argument;
  /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...]
Comment.h 303 struct Argument {
307 Argument(SourceRange Range, StringRef Text) : Range(Range), Text(Text) { }
321 ArrayRef<Argument> Args;
328 ArrayRef<Argument> Args) :
598 /// arguments depends on command name) and a paragraph as an argument
602 struct Argument {
606 Argument() { }
607 Argument(SourceRange Range, StringRef Text) : Range(Range), Text(Text) { }
612 ArrayRef<Argument> Args;
614 /// Paragraph argument
    [all...]
  /external/clang/lib/AST/
CommentParser.cpp 268 // Check if argument looks like direction specification: [dir]
296 typedef BlockCommandComment::Argument Argument;
297 Argument *Args =
298 new (Allocator.Allocate<Argument>(NumArgs)) Argument[NumArgs];
302 Args[ParsedArgs] = Argument(SourceRange(Arg.getLocation(),
340 // command has an empty argument.
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/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...]
  /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/utils/TableGen/
ClangAttrEmitter.cpp 164 class Argument {
170 Argument(const Record &Arg, StringRef Attr)
178 virtual ~Argument() {}
187 // These functions print the argument contents formatted in different ways.
215 class SimpleArgument : public Argument {
220 : Argument(Arg, Attr), type(T)
308 class StringArgument : public Argument {
311 : Argument(Arg, Attr)
375 class AlignedArgument : public Argument {
378 : Argument(Arg, Attr
    [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 38 # *) Any argument that is a resourceID has been changed to GLid<Type>.
1248 # argument, otherwise 'shm'. One command is generated for each
1268 # valid_args: A dictionary of argument indices to args to use in unit tests
1272 # pepper_args: A string representing the argument list (what would appear in
1275 # the stable Pepper API differs from the GLES2 argument list.
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.ml 256 | Argument
    [all...]

Completed in 417 milliseconds

1 2 3