OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:isarg
(Results
1 - 7
of
7
) sorted by null
/dalvik/dx/src/com/android/dx/command/dexer/
Main.java
[
all
...]
/ndk/sources/host-tools/nawk-20071023/
parse.c
242
if (
isarg
(v->nval) != -1) {
256
int
isarg
(const char *s) /* is s in argument list for current function? */
function
lex.c
311
if (c == '(' || c == '[' || (infunc &&
isarg
(buf) >= 0)) {
486
if (c != '(' && infunc && (n=
isarg
(w)) >= 0) {
proto.h
95
extern int
isarg
(const char *);
/external/llvm/lib/Transforms/IPO/
DeadArgumentElimination.cpp
57
RetOrArg(const Function *F, unsigned Idx, bool
IsArg
) : F(F), Idx(Idx),
58
IsArg
(
IsArg
) {}
61
bool
IsArg
;
70
return
IsArg
< O.
IsArg
;
75
return F == O.F && Idx == O.Idx &&
IsArg
== O.
IsArg
;
79
return std::string((
IsArg
? "Argument #" : "Return value #"))
[
all
...]
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugReporterVisitor.h
324
/// \param
IsArg
Whether the statement is an argument to an inlined function.
332
bool
IsArg
= false);
/external/clang/lib/StaticAnalyzer/Core/
BugReporterVisitors.cpp
363
if (bugreporter::trackNullOrUndefValue(N, ArgE, BR, /*
IsArg
=*/true))
780
BugReport &report, bool
IsArg
) {
811
if (
IsArg
) {
881
if (
IsArg
) {
[
all
...]
Completed in 249 milliseconds