| /src/sys/external/bsd/acpica/dist/tools/acpidump/ |
| acpidump.h | 75 char *Argument;
|
| /src/sys/external/bsd/acpica/dist/include/ |
| acpiosxf.h | 80 UINT32 Argument;
|
| acstruct.h | 175 ACPI_OBJECT_INTEGER *Argument; 209 ACPI_OPERAND_OBJECT **Parameters; /* Input: argument list */ 221 UINT16 ParamCount; /* Count of the input argument list */
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Remarks/ |
| BitstreamRemarkParser.h | 66 struct Argument { 73 Optional<ArrayRef<Argument>> Args; 75 SmallVector<Argument, 8> TmpArgs;
|
| Remark.h | 42 struct Argument { 51 DEFINE_SIMPLE_CONVERSION_FUNCTIONS(Argument, LLVMRemarkArgRef) 90 SmallVector<Argument, 5> Args; 143 inline bool operator==(const Argument &LHS, const Argument &RHS) { 147 inline bool operator!=(const Argument &LHS, const Argument &RHS) { 151 inline bool operator<(const Argument &LHS, const Argument &RHS) {
|
| /src/external/apache2/llvm/dist/llvm/lib/IR/ |
| DiagnosticInfo.cpp | 164 DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key, 176 if (isa<llvm::Argument>(V) || isa<GlobalValue>(V)) 185 DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key, const Type *T) 191 DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key, StringRef S) 194 DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key, int N) 197 DiagnosticInfoOptimizationBase::Argument::Argument(StringRef Key, float N [all...] |
| Function.cpp | 24 #include "llvm/IR/Argument.h" 80 // Argument Implementation 83 Argument::Argument(Type *Ty, const Twine &Name, Function *Par, unsigned ArgNo) 88 void Argument::setParent(Function *parent) { 92 bool Argument::hasNonNullAttr(bool AllowUndefOrPoison) const { 105 bool Argument::hasByValAttr() const { 110 bool Argument::hasByRefAttr() const { 116 bool Argument::hasSwiftSelfAttr() const { 120 bool Argument::hasSwiftErrorAttr() const [all...] |
| /src/sys/external/bsd/acpica/dist/compiler/ |
| preprocess.h | 132 char Argument[MAX_ARGUMENT_LENGTH];
|
| /src/external/apache2/llvm/dist/clang/lib/Tooling/ |
| JSONCompilationDatabase.cpp | 60 std::string Argument; 61 HasMoreInput = parseStringInto(Argument); 62 CommandLine.push_back(Argument); 267 // compiler as an argument, e.g. distcc gcc -O3 foo.c. 379 for (auto &Argument : *SequenceString) { 380 auto *Scalar = dyn_cast<llvm::yaml::ScalarNode>(&Argument);
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| Intrinsics.h | 83 /// and statepoint intrinsics. These call (or invoke) their "target" argument. 129 Argument, 163 assert(Kind == Argument || Kind == ExtendArgument || 172 assert(Kind == Argument || Kind == ExtendArgument || 180 // VecOfAnyPtrsToElt uses both an overloaded argument (for address space) 181 // and a reference argument (for matching vector width and element types)
|
| DiagnosticInfo.h | 419 /// Used in the streaming interface as the general argument type. It 421 struct Argument { 427 explicit Argument(StringRef Str = "") : Key("String"), Val(Str) {} 428 Argument(StringRef Key, const Value *V); 429 Argument(StringRef Key, const Type *T); 430 Argument(StringRef Key, StringRef S); 431 Argument(StringRef Key, const char *S) : Argument(Key, StringRef(S)) {}; 432 Argument(StringRef Key, int N); 433 Argument(StringRef Key, float N) [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/Sema/ |
| DelayedDiagnostic.h | 157 unsigned argument) { 164 DD.ForbiddenTypeData.Argument = argument; 213 return ForbiddenTypeData.Argument; 249 unsigned Argument;
|
| /src/external/apache2/llvm/dist/clang/include/clang/AST/ |
| TemplateBase.h | 61 /// Represents a template argument. 64 /// The kind of template argument we're storing. 66 /// Represents an empty template argument, e.g., one that has not 70 /// The template argument is a type. 73 /// The template argument is a declaration that was provided for a pointer, 77 /// The template argument is a null pointer or null pointer to member that 81 /// The template argument is an integral value stored in an llvm::APSInt 85 /// The template argument is a template name that was provided for a 89 /// The template argument is a pack expansion of a template name that was 93 /// The template argument is an expression, and we've not resolved it to on [all...] |
| Comment.h | 299 struct Argument { 303 Argument(SourceRange Range, StringRef Text) : Range(Range), Text(Text) { } 318 ArrayRef<Argument> Args; 325 ArrayRef<Argument> Args) : 594 /// arguments depends on command name) and a paragraph as an argument 598 struct Argument { 602 Argument() { } 603 Argument(SourceRange Range, StringRef Text) : Range(Range), Text(Text) { } 608 ArrayRef<Argument> Args; 610 /// Paragraph argument [all...] |
| /src/external/apache2/llvm/dist/clang/lib/AST/ |
| CommentParser.cpp | 267 // Check if argument looks like direction specification: [dir] 295 typedef BlockCommandComment::Argument Argument; 296 Argument *Args = 297 new (Allocator.Allocate<Argument>(NumArgs)) Argument[NumArgs]; 301 Args[ParsedArgs] = Argument(SourceRange(Arg.getLocation(), 339 // command has an empty argument.
|
| CommentSema.cpp | 63 ArrayRef<BlockCommandComment::Argument> Args) { 267 // User didn't provide a direction argument. 270 typedef BlockCommandComment::Argument Argument; 271 Argument *A = new (Allocator) Argument(SourceRange(ArgLocBegin, 308 typedef BlockCommandComment::Argument Argument; 309 Argument *A = new (Allocator) Argument(SourceRange(ArgLocBegin [all...] |
| TypePrinter.cpp | 1871 // A type parameter matches its argument. 1970 /// substituting Args into the default argument of Param. 1975 // An empty pack is equivalent to not providing a pack argument. 2022 // Print the argument into a string. 2025 const TemplateArgument &Argument = getArgument(Arg); 2026 if (Argument.getKind() == TemplateArgument::Pack) { 2027 if (Argument.pack_size() && !FirstArg) 2029 printTo(ArgOS, Argument.getPackAsArray(), Policy, true, TPL, 2034 // Tries to print the argument with location info if exists. 2041 // If this is the first argument and its string representatio [all...] |
| /src/external/apache2/llvm/dist/clang/lib/Basic/ |
| Diagnostic.cpp | 77 StringRef Modifier, StringRef Argument, 82 StringRef Str = "<can't format argument>"; 593 /// like this: %select{foo|bar|baz}2. This means that the integer argument 598 const char *Argument, unsigned ArgumentLen, 600 const char *ArgumentEnd = Argument+ArgumentLen; 604 const char *NextVal = ScanFormat(Argument, ArgumentEnd, '|'); 607 Argument = NextVal+1; // Skip this string. 612 const char *EndPtr = ScanFormat(Argument, ArgumentEnd, '|'); 615 DInfo.FormatDiagnostic(Argument, EndPtr, OutStr); 711 /// Conditions are simple boolean expressions, where n is the number argument [all...] |
| /src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| CGDeclCXX.cpp | 98 llvm::Constant *Argument; 128 Argument = llvm::ConstantExpr::getBitCast(Addr.getPointer(), DestTy); 132 Argument = llvm::ConstantPointerNull::get(DestTy); 134 Argument = llvm::ConstantExpr::getBitCast( 142 Argument = llvm::Constant::getNullValue(CGF.Int8PtrTy); 145 CGM.getCXXABI().registerGlobalDtor(CGF, D, Func, Argument); 182 // from the address space of the "this" argument of the constructor. In that 280 "Argument to atexit has a wrong type."); 307 "Argument to unatexit has a wrong type.");
|
| /src/external/apache2/llvm/dist/clang/lib/Sema/ |
| SemaTemplateVariadic.cpp | 205 /// Suppress traversal of template argument pack expansions. 213 /// Suppress traversal of template argument pack expansions. 588 llvm_unreachable("Unhandled template argument kind?"); 704 // Determine the size of this argument pack. 707 // Figure out whether we're instantiating to an argument pack or not. 723 // If we don't have a template argument at this depth/index, then we 732 // Determine the size of the argument pack. 737 // Template argument deduction can extend the sequence of template 756 // The is the first pack we've seen for which we have an argument. 846 // The pattern refers to an unknown template argument. We're not ready t [all...] |
| SemaPseudoObject.cpp | 785 assert(op && "successful assignment left argument invalid?"); 1194 ParmVarDecl *Argument = ParmVarDecl::Create(S.Context, AtIndexGetter, 1203 AtIndexGetter->setMethodParams(S.Context, Argument, None); 1585 // Do nothing if either argument is dependent.
|
| SemaObjCProperty.cpp | 2570 // nice name for the argument. 2571 ParmVarDecl *Argument = ParmVarDecl::Create(Context, SetterMethod, 2578 SetterMethod->setMethodParams(Context, Argument, None);
|
| /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/ |
| Darwin.cpp | 47 // This code must be kept in sync with Clang's Darwin specific argument 251 // it in clang installed libraries. ld64 will only look at this argument 623 // This is a linker input argument. 687 // No need to do anything for pthreads. Claim argument to avoid warning. 1378 /// The OS was specified using the -target argument. 1380 /// The OS was specified using the -m<os>-version-min argument. 1404 return Argument->getValue(); 1421 /// Adds the -m<os>-version-min argument to the compiler invocation. 1423 if (Argument) 1441 Argument = Args.MakeJoinedArg(nullptr, Opts.getOption(Opt), OSVersion) [all...] |
| /src/external/apache2/llvm/dist/clang/utils/TableGen/ |
| ClangAttrEmitter.cpp | 197 class Argument { 204 Argument(const Record &Arg, StringRef Attr) 212 // have an attribute argument called 'Interface', so only the lower case 217 virtual ~Argument() = default; 229 // These functions print the argument contents formatted in different ways. 259 class SimpleArgument : public Argument { 264 : Argument(Arg, Attr), type(std::move(T)) {} 396 class StringArgument : public Argument { 399 : Argument(Arg, Attr) 477 class AlignedArgument : public Argument { [all...] |
| /src/external/apache2/llvm/dist/llvm/bindings/ocaml/llvm/ |
| llvm.ml | 303 | Argument
|