OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:checker
(Results
151 - 175
of
1436
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/prebuilts/go/darwin-x86/api/
README
1
Files in this directory are data for Go's API
checker
("go tool api", in src/cmd/api).
/prebuilts/go/darwin-x86/src/cmd/vet/testdata/
assign.go
5
// This file contains tests for the useless-assignment
checker
.
buildtag_bad.go
3
// It serves only to test the tag
checker
during make test.
method.go
5
// This file contains tests for the canonical method
checker
.
/prebuilts/go/linux-x86/api/
README
1
Files in this directory are data for Go's API
checker
("go tool api", in src/cmd/api).
/prebuilts/go/linux-x86/src/cmd/vet/testdata/
assign.go
5
// This file contains tests for the useless-assignment
checker
.
buildtag_bad.go
3
// It serves only to test the tag
checker
during make test.
method.go
5
// This file contains tests for the canonical method
checker
.
/frameworks/base/core/java/android/view/textservice/
SpellCheckerInfo.java
43
* This class is used to specify meta information of a spell
checker
.
52
* The spell
checker
setting activity's name, used by the system settings to
92
if (!"spell-
checker
".equals(nodeName)) {
94
"Meta-data does not start with spell-
checker
tag");
112
"Meta-data in spell-
checker
does not start with subtype tag");
154
* Return a unique ID for this spell
checker
. The ID is generated from
209
* Load the user-displayed label for this spell
checker
.
211
* @param pm Supply a PackageManager used to load the spell
checker
's resources.
219
* Load the user-displayed icon for this spell
checker
.
221
* @param pm Supply a PackageManager used to load the spell
checker
's resources
[
all
...]
/external/clang/examples/analyzer-plugin/
MainCallChecker.cpp
1
#include "clang/StaticAnalyzer/Core/
Checker
.h"
10
class MainCallChecker : public
Checker
< check::PreStmt<CallExpr> > {
/external/clang/lib/StaticAnalyzer/Checkers/
CStringSyntaxChecker.cpp
10
// An AST
checker
that looks for common pitfalls when using C string APIs.
23
#include "clang/StaticAnalyzer/Core/
Checker
.h"
34
const CheckerBase *
Checker
;
85
WalkAST(const CheckerBase *
checker
, BugReporter &br, AnalysisDeclContext *ac)
86
:
Checker
(
checker
), BR(br), AC(ac) {}
160
BR.EmitBasicReport(FD,
Checker
, "Anti-pattern in the argument",
177
class CStringSyntaxChecker: public
Checker
<check::ASTCodeBody> {
ClangCheckers.cpp
13
// FIXME: This is only necessary as long as there are
checker
registration
28
#define
CHECKER
(FULLNAME,CLASS,DESCFILE,HELPTEXT,GROUPINDEX,HIDDEN) \
ObjCContainersASTChecker.cpp
10
// An AST
checker
that looks for common pitfalls when using 'CFArray',
19
#include "clang/StaticAnalyzer/Core/
Checker
.h"
30
const CheckerBase *
Checker
;
75
WalkAST(BugReporter &br, const CheckerBase *
checker
, AnalysisDeclContext *ac)
76
: BR(br),
Checker
(
checker
), AC(ac), ASTC(AC->getASTContext()),
146
BR.EmitBasicReport(AC->getDecl(),
Checker
, OsName.str(),
162
class ObjCContainersASTChecker : public
Checker
<check::ASTCodeBody> {
/external/clang/test/Analysis/
Malloc+NewDelete_intersections.cpp
1
// RUN: %clang_cc1 -analyze -analyzer-
checker
=core,unix.Malloc,cplusplus.NewDelete -std=c++11 -verify %s
2
// RUN: %clang_cc1 -analyze -analyzer-
checker
=core,unix.Malloc,cplusplus.NewDelete,cplusplus.NewDeleteLeaks -std=c++11 -verify %s
bitwise-ops.c
1
// RUN: %clang_cc1 -analyze -analyzer-
checker
=core,debug.ExprInspection -triple x86_64-apple-darwin13 -Wno-shift-count-overflow -verify %s
17
// FIXME: We should have a
checker
that actually specifically checks bitwise
blocks-no-inline.c
1
// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -analyze -analyzer-
checker
=core,debug.ExprInspection -analyzer-config ipa=none -fblocks -verify %s
2
// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -analyze -analyzer-
checker
=core,debug.ExprInspection -analyzer-config ipa=none -fblocks -verify -x c++ %s
keychainAPI-diagnostic-visitor.m
1
// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -analyze -analyzer-
checker
=osx.SecKeychainAPI -analyzer-store=region -analyzer-output=text -verify %s
3
// This file is for testing enhanced diagnostics produced by the default SecKeychainAPI
checker
.
new-with-exceptions.cpp
1
// RUN: %clang_cc1 -analyze -analyzer-
checker
=core,debug.ExprInspection -analyzer-store region -std=c++11 -fexceptions -fcxx-exceptions -verify %s
2
// RUN: %clang_cc1 -analyze -analyzer-
checker
=core,debug.ExprInspection -analyzer-store region -std=c++11 -verify %s
plist-html-macros.c
2
// RUN: %clang_cc1 -analyze -analyzer-
checker
=core -verify %s
7
// RUN: %clang_cc1 -analyze -analyzer-
checker
=core -analyzer-output=plist-html -o %t.dir/index.plist %s
retain-release-cf-audited.m
1
// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -analyze -analyzer-
checker
=core,osx.cocoa.RetainCount -verify %s
2
// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -analyze -analyzer-
checker
=core,osx.cocoa.RetainCount -verify %s -x objective-c++
symbol-reaper.c
1
// RUN: %clang_cc1 -analyze -analyzer-
checker
=debug.ExprInspection -verify %s
18
// recover the index symbol in
checker
code, which is also demonstrated
templates.cpp
1
// RUN: %clang_cc1 -analyze -analyzer-
checker
=core,debug.ExprInspection -fblocks -verify %s
2
// RUN: %clang_cc1 -analyze -analyzer-
checker
=core,debug.ExprInspection -fblocks -analyzer-config c++-template-inlining=false -DNO_INLINE -verify %s
/external/jsr305/javadoc/
allclasses-frame.html
41
<A HREF="javax/annotation/MatchesPattern.
Checker
.html" title="class in javax.annotation" target="classFrame">MatchesPattern.
Checker
</A>
45
<A HREF="javax/annotation/Nonnegative.
Checker
.html" title="class in javax.annotation" target="classFrame">Nonnegative.
Checker
</A>
49
<A HREF="javax/annotation/Nonnull.
Checker
.html" title="class in javax.annotation" target="classFrame">Nonnull.
Checker
</A>
65
<A HREF="javax/annotation/RegEx.
Checker
.html" title="class in javax.annotation" target="classFrame">RegEx.
Checker
</A>
allclasses-noframe.html
41
<A HREF="javax/annotation/MatchesPattern.
Checker
.html" title="class in javax.annotation">MatchesPattern.
Checker
</A>
45
<A HREF="javax/annotation/Nonnegative.
Checker
.html" title="class in javax.annotation">Nonnegative.
Checker
</A>
49
<A HREF="javax/annotation/Nonnull.
Checker
.html" title="class in javax.annotation">Nonnull.
Checker
</A>
65
<A HREF="javax/annotation/RegEx.
Checker
.html" title="class in javax.annotation">RegEx.
Checker
</A>
/external/jsr305/javadoc/javax/annotation/
package-frame.html
26
<A HREF="MatchesPattern.
Checker
.html" title="class in javax.annotation" target="classFrame">MatchesPattern.
Checker
</A>
28
<A HREF="Nonnegative.
Checker
.html" title="class in javax.annotation" target="classFrame">Nonnegative.
Checker
</A>
30
<A HREF="Nonnull.
Checker
.html" title="class in javax.annotation" target="classFrame">Nonnull.
Checker
</A>
32
<A HREF="RegEx.
Checker
.html" title="class in javax.annotation" target="classFrame">RegEx.
Checker
</A></FONT></TD>
Completed in 1419 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>