OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:NumArgs
(Results
1 - 25
of
71
) sorted by relevancy
1
2
3
/src/external/apache2/llvm/dist/clang/lib/FrontendTool/
ExecuteCompilerInvocation.cpp
230
unsigned
NumArgs
= Clang->getFrontendOpts().LLVMArgs.size();
231
auto Args = std::make_unique<const char*[]>(
NumArgs
+ 2);
233
for (unsigned i = 0; i !=
NumArgs
; ++i)
235
Args[
NumArgs
+ 1] = nullptr;
236
llvm::cl::ParseCommandLineOptions(
NumArgs
+ 1, Args.get());
/src/external/apache2/llvm/dist/clang/include/clang/AST/
IgnoreExpr.h
127
unsigned
NumArgs
= CCE->getNumArgs();
128
if ((
NumArgs
== 1 ||
129
(
NumArgs
> 1 && CCE->getArg(1)->isDefaultArgument())) &&
CommentCommandTraits.h
50
unsigned
NumArgs
: 4;
TemplateBase.h
130
unsigned
NumArgs
;
232
this->Args.
NumArgs
= Args.size();
361
return Args.Args + Args.
NumArgs
;
374
return Args.
NumArgs
;
380
return llvm::makeArrayRef(Args.Args, Args.
NumArgs
);
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/
CallingConvLower.cpp
92
unsigned
NumArgs
= Ins.size();
94
for (unsigned i = 0; i !=
NumArgs
; ++i) {
/src/sys/external/bsd/acpica/dist/compiler/
asloperands.c
149
UINT8
NumArgs
= 0;
165
NumArgs
= (UINT8) Next->Asl.Value.Integer;
198
((
NumArgs
& 0x7) |
211
Op->Asl.Extra =
NumArgs
;
/src/external/apache2/llvm/dist/clang/include/clang/Sema/
ParsedTemplate.h
185
///
NumArgs
- The number of template arguments.
186
unsigned
NumArgs
;
189
/// If so,
NumArgs
and the trailing arguments are best-effort.
197
/// Creates a new TemplateIdAnnotation with
NumArgs
arguments and
217
getTemplateArgs(), getTemplateArgs() +
NumArgs
,
250
NumArgs
(TemplateArgs.size()), ArgsInvalid(ArgsInvalid) {
TypoCorrection.h
381
FunctionCallFilterCCC(Sema &SemaRef, unsigned
NumArgs
,
391
unsigned
NumArgs
;
ParsedAttr.h
49
unsigned
NumArgs
: 4;
73
: AttrKind(AttrKind),
NumArgs
(0), OptArgs(0), HasCustomParsing(0),
203
/// 1: __attribute__(( const )). ParmName/Args/
NumArgs
will all be unused.
204
/// 2: __attribute__(( mode(byte) )). ParmName used, Args/
NumArgs
unused.
205
/// 3: __attribute__(( format(printf, 1, 2) )). ParmName/Args/
NumArgs
all used.
215
size_t numTrailingObjects(OverloadToken<ArgsUnion>) const { return
NumArgs
; }
237
unsigned
NumArgs
: 16;
296
ArgsUnion *args, unsigned
numArgs
, Syntax syntaxUsed,
300
EllipsisLoc(ellipsisLoc),
NumArgs
(
numArgs
), Invalid(false)
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/AST/
ComputeDependence.cpp
444
unsigned
NumArgs
= E->getNumTemplateArgs();
445
for (auto *Arg = FirstArg, *End = FirstArg +
NumArgs
; Arg < End; ++Arg)
/src/external/apache2/llvm/dist/clang/lib/Driver/
Job.cpp
164
size_t
NumArgs
,
180
if (
NumArgs
== 1) {
181
StringRef FlagRef(Args[Idx +
NumArgs
- 1]);
193
assert(
NumArgs
== 2 && "Not expecting more than two arguments");
194
StringRef Inc(Args[Idx +
NumArgs
- 1]);
219
int
NumArgs
= 0;
221
if (skipArgs(Arg, HaveCrashVFS,
NumArgs
, IsInclude)) {
222
i +=
NumArgs
- 1;
229
rewriteIncludes(Args, i,
NumArgs
, NewIncFlags);
235
i +=
NumArgs
- 1
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
NonNullParamChecker.cpp
114
unsigned
NumArgs
= Call.getNumArgs();
119
for (unsigned idx = 0; idx <
NumArgs
; ++idx) {
ObjCSelfInitChecker.cpp
245
unsigned
NumArgs
= CE.getNumArgs();
251
for (unsigned i = 0; i <
NumArgs
; ++i) {
278
unsigned
NumArgs
= CE.getNumArgs();
279
for (unsigned i = 0; i <
NumArgs
; ++i) {
/src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUInstrInfo.h
59
uint8_t
NumArgs
;
AMDGPULibFunc.cpp
71
unsigned
NumArgs
;
84
: Name(_Name),
NumArgs
(_NumArgs) {}
100
static unsigned getNumArgs(ID Id) { return Table[toIndex(Id)].
NumArgs
; }
/src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86FixupBWInsts.cpp
300
unsigned
NumArgs
= MI->getNumOperands();
301
for (unsigned i = 1; i <
NumArgs
; ++i)
363
unsigned
NumArgs
= MI->getNumOperands();
364
for (unsigned i = 1; i <
NumArgs
; ++i)
/src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
ASTMatchers.h
4315
unsigned
NumArgs
= Node.getNumArgs();
4317
return
NumArgs
== N;
4318
while (
NumArgs
) {
4319
if (!isa<CXXDefaultArgExpr>(Node.getArg(
NumArgs
- 1)))
4321
--
NumArgs
;
4323
return
NumArgs
== N;
4791
unsigned
NumArgs
= Node.getNumArgs();
4793
NumArgs
= std::min(
NumArgs
, FProto->getNumParams());
4795
for (; ArgIndex <
NumArgs
; ++ArgIndex, ++ParamIndex)
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/ASTMatchers/Dynamic/
Registry.cpp
664
unsigned
NumArgs
= Matcher.isVariadic() ? 1 : Matcher.getNumArgs();
666
std::vector<std::vector<ArgKind>> ArgsKinds(
NumArgs
);
684
for (unsigned Arg = 0; Arg !=
NumArgs
; ++Arg)
697
for (unsigned Arg = 0; Arg !=
NumArgs
; ++Arg)
/src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Interpreter/
ExternalFunctions.cpp
195
const unsigned
NumArgs
= F->arg_size();
199
if (ArgVals.size() >
NumArgs
&& F->isVarArg()) {
206
std::vector<ffi_type*> args(
NumArgs
);
218
SmallVector<void*, 16> values(
NumArgs
);
230
if (ffi_prep_cif(&cif, FFI_DEFAULT_ABI,
NumArgs
, rtype, args.data()) ==
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
CallPromotionUtils.cpp
403
unsigned
NumArgs
= CB.arg_size();
407
if (
NumArgs
!= NumParams && !Callee->isVarArg()) {
428
for (; I <
NumArgs
; I++) {
/src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/
ThreadSafetyCommon.h
351
unsigned
NumArgs
= 0;
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
CallLowering.cpp
542
unsigned
NumArgs
= Args.size();
543
for (unsigned i = 0; i !=
NumArgs
; ++i) {
618
const unsigned
NumArgs
= Args.size();
620
for (unsigned i = 0, j = 0; i !=
NumArgs
; ++i, ++j) {
/src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
DeadArgumentElimination.cpp
165
unsigned
NumArgs
= Params.size();
184
Args.assign(CB->arg_begin(), CB->arg_begin() +
NumArgs
);
190
for (unsigned ArgNo = 0; ArgNo <
NumArgs
; ++ArgNo)
/src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
ubsan_diag.h
186
unsigned
NumArgs
;
193
CHECK(
NumArgs
!= MaxArgs);
194
Args[
NumArgs
++] = A;
210
: Loc(Loc), Level(Level), ET(ET), Message(Message),
NumArgs
(0),
/src/external/apache2/llvm/dist/clang/tools/driver/
cc1as_main.cpp
608
unsigned
NumArgs
= Asm.LLVMArgs.size();
609
auto Args = std::make_unique<const char*[]>(
NumArgs
+ 2);
611
for (unsigned i = 0; i !=
NumArgs
; ++i)
613
Args[
NumArgs
+ 1] = nullptr;
614
llvm::cl::ParseCommandLineOptions(
NumArgs
+ 1, Args.get());
Completed in 65 milliseconds
1
2
3
Indexes created Tue Feb 24 08:35:24 UTC 2026