HomeSort by: relevance | last modified time | path
    Searched defs:Parameters (Results 1 - 13 of 13) sorted by relevancy

  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
arraytypes.h 34 typedef Array<class Parameter *> Parameters;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
FormatVariadic.h 129 // of the parameters, we have to own the storage for the parameters here, and
131 Tuple Parameters;
135 // The parameters are stored in a std::tuple, which does not provide runtime
137 // structure to put the parameters into a std::array. Since the parameters
139 // parameters in a template class that derives from a non-template superclass.
153 Parameters(std::move(Params)) {
154 ParameterPointers = apply_tuple(create_adapters(), Parameters);
161 Parameters(std::move(rhs.Parameters))
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/BPF/
BTFDebug.h 144 std::vector<struct BTF::BTFParam> Parameters;
150 return BTFTypeBase::getSize() + Parameters.size() * BTF::BTFParamSize;
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/Syntax/
Nodes.h 102 Parameters,
418 /// template <template-parameters> <declaration>
544 /// `parameters-and-qualifiers`. See C++ [dcl.fct]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
RetainCountDiagnostics.cpp 296 const ParmVarDecl *PVD = (*CE)->parameters()[*Idx];
392 ArrayRef<const ParmVarDecl *> Parameters = Call->parameters();
393 for (unsigned I=0; I < Call->getNumArgs() && I < Parameters.size(); ++I) {
394 const ParmVarDecl *PVD = Parameters[I];
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
VectorUtils.h 24 /// Describes the type of Parameters
61 /// functions and their parameters.
85 SmallVector<VFParameter, 8> Parameters; // List of parameter information.
88 return std::tie(VF, IsScalable, Parameters) ==
89 std::tie(Other.VF, Other.IsScalable, Other.Parameters);
94 assert(P.ParamPos < Parameters.size() && "Invalid parameter position.");
95 Parameters[P.ParamPos] = P;
107 // parameters are mapped to VFParamKind::Vector with \p EC
111 SmallVector<VFParameter, 8> Parameters;
113 Parameters.push_back(VFParameter({I, VFParamKind::Vector}))
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCAsmMacro.h 145 MCAsmMacroParameters Parameters;
151 : Name(N), Body(B), Parameters(std::move(P)) {}
154 : Name(N), Body(B), Parameters(std::move(P)), Locals(std::move(L)),
  /src/sys/external/bsd/acpica/dist/include/
acstruct.h 200 * Structure used to pass object evaluation information and parameters.
209 ACPI_OPERAND_OBJECT **Parameters; /* Input: argument list */
  /src/external/apache2/llvm/dist/clang/lib/Lex/
PPDirectives.cpp 2404 /// definition has just been read. Lex the rest of the parameters and the
2408 SmallVector<IdentifierInfo*, 32> Parameters;
2415 if (Parameters.empty()) // #define FOO()
2438 Parameters.push_back(Ident__VA_ARGS__);
2440 MI->setParameterList(Parameters, BP);
2457 if (llvm::find(Parameters, II) != Parameters.end()) { // C99 6.10.3p6
2463 Parameters.push_back(II);
2473 MI->setParameterList(Parameters, BP);
2489 MI->setParameterList(Parameters, BP)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Syntax/
BuildTree.cpp 508 // We want to drop the template parameters for specializations.
763 // Build TemplateDeclaration nodes if we had template parameters.
1367 auto *Parameters = new (allocator()) syntax::ParameterDeclarationList;
1371 Parameters, nullptr);
1372 return Parameters;
1379 syntax::NodeRole::Parameters);
1392 // Finish building the node for parameters.
  /src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
AsmParser.cpp 291 ArrayRef<MCAsmMacroParameter> Parameters);
293 ArrayRef<MCAsmMacroParameter> Parameters,
2487 ArrayRef<MCAsmMacroParameter> Parameters,
2490 unsigned NParameters = Parameters.size();
2491 bool HasVararg = NParameters ? Parameters.back().Vararg : false;
2495 // A macro without parameters is handled differently on Darwin:
2503 // This macro has no parameters, look for $0, $1, etc.
2512 // This macro has parameters, look for \foo, \bar, etc.
2570 if (Parameters[Index].Name == Argument)
2698 // Spaces can delimit parameters, but could also be part an expression
    [all...]
MasmParser.cpp 549 ArrayRef<MCAsmMacroParameter> Parameters,
2731 ArrayRef<MCAsmMacroParameter> Parameters,
2734 unsigned NParameters = Parameters.size();
2809 if (Parameters[Index].Name == Argument)
2942 // Spaces can delimit parameters, but could also be part an expression.
2995 const unsigned NParameters = M ? M->Parameters.size() : 0;
3003 // - macros defined without any parameters accept an arbitrary number of them
3004 // - macros defined with parameters accept at most that many of them
3030 if (M->Parameters[FAI].Name == FA.Name)
3041 MP = &M->Parameters[PI]
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDeclAttr.cpp 94 /// parameters. It is an error to call this on a K&R function (use
121 return cast<ObjCMethodDecl>(D)->parameters()[Idx]->getType();
302 // Parameters are counted from one.
396 /// Otherwise, emit diagnostic @c DiagID, passing in all parameters
1091 // pass_object_size is only supported on constant pointer parameters; as a
3538 for (const ParmVarDecl *PVD : FD->parameters())
3665 // 'called_once' only applies to parameters representing functions.
5326 // Attributes on parameters are used for out-parameters,
5948 StringRef ContextName, BaseName, Parameters;
    [all...]

Completed in 151 milliseconds