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

1 2

  /external/llvm/include/llvm/
Argument.h 1 //===-- llvm/Argument.h - Definition of the Argument class ------*- C++ -*-===//
10 // This file declares the Argument class.
27 /// A class to represent an incoming formal argument to a Function. An argument
29 /// in the body of a function, it represents the value of the actual argument
31 /// @brief LLVM Argument representation
32 class Argument : public Value, public ilist_node<Argument> {
36 friend class SymbolTableListTraits<Argument, Function>
    [all...]
Intrinsics.h 84 Argument, ExtendVecArgument, TruncVecArgument
103 assert(Kind == Argument || Kind == ExtendVecArgument ||
108 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/webkit/Source/WebCore/xml/
XPathGrammar.y 106 %type <expr> Argument
390 Argument
398 ArgumentList ',' Argument
405 Argument:
  /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.
130 class SimpleArgument : public Argument {
135 : Argument(Arg, Attr), type(T)
186 class StringArgument : public Argument {
189 : Argument(Arg, Attr)
246 class AlignedArgument : public Argument {
249 : Argument(Arg, Attr
    [all...]
  /external/clang/include/clang/Sema/
DelayedDiagnostic.h 142 unsigned argument) {
149 DD.ForbiddenTypeData.Argument = argument;
184 return ForbiddenTypeData.Argument;
208 unsigned Argument;
  /external/clang/lib/Tooling/
JSONCompilationDatabase.cpp 40 std::string Argument;
41 HasMoreInput = parseStringInto(Argument);
42 CommandLine.push_back(Argument);
  /external/llvm/lib/VMCore/
Function.cpp 34 template class llvm::SymbolTableListTraits<Argument, Function>;
38 // Argument Implementation
41 void Argument::anchor() { }
43 Argument::Argument(Type *Ty, const Twine &Name, Function *Par)
55 void Argument::setParent(Function *parent) {
63 /// getArgNo - Return the index of this formal argument in its containing
65 unsigned Argument::getArgNo() const {
67 assert(F && "Argument is not in a function");
77 /// hasByValAttr - Return true if this argument has the byval attribute on i
    [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. Its value is stored in the
49 /// The template argument is a declaration that was provided for a pointer
52 /// The template argument is an integral value stored in an llvm::APSInt
55 /// The template argument is a template name that was provided for a
58 /// The template argument is a pack expansion of a template name that was
61 /// The template argument is a value- or type-dependent expression
64 /// The template argument is actually a parameter pack. Arguments are store
    [all...]
Comment.h 272 struct Argument {
276 Argument(SourceRange Range, StringRef Text) : Range(Range), Text(Text) { }
290 llvm::ArrayRef<Argument> Args;
297 llvm::ArrayRef<Argument> Args) :
571 /// arguments depends on command name) and a paragraph as an argument
575 struct Argument {
579 Argument() { }
580 Argument(SourceRange Range, StringRef Text) : Range(Range), Text(Text) { }
585 llvm::ArrayRef<Argument> Args;
587 /// Paragraph argument
    [all...]
  /external/clang/lib/AST/
CommentParser.cpp 264 // Check if argument looks like direction specification: [dir]
292 typedef BlockCommandComment::Argument Argument;
293 Argument *Args =
294 new (Allocator.Allocate<Argument>(NumArgs)) Argument[NumArgs];
298 Args[ParsedArgs] = Argument(SourceRange(Arg.getLocation(),
336 // command has an empty argument.
CommentSema.cpp 52 ArrayRef<BlockCommandComment::Argument> Args) {
141 // User didn't provide a direction argument.
144 typedef BlockCommandComment::Argument Argument;
145 Argument *A = new (Allocator) Argument(SourceRange(ArgLocBegin,
178 typedef BlockCommandComment::Argument Argument;
179 Argument *A = new (Allocator) Argument(SourceRange(ArgLocBegin
    [all...]
  /external/clang/lib/Basic/
Diagnostic.cpp 26 const char *Argument, unsigned ArgLen,
32 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);
607 /// 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/clang/lib/Sema/
SemaObjCProperty.cpp     [all...]
SemaPseudoObject.cpp 654 assert(op && "successful assignment left argument invalid?");
    [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...]
  /external/llvm/lib/Target/Mips/
MipsISelLowering.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
jdi.jar 

Completed in 690 milliseconds

1 2