OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isStr
(Results
1 - 25
of
34
) sorted by null
1
2
/external/clang/examples/analyzer-plugin/
MainCallChecker.cpp
32
if (II->
isStr
("main")) {
/external/clang/lib/StaticAnalyzer/Checkers/
NSAutoreleasePoolChecker.cpp
52
if (!OD->getIdentifier()->
isStr
("NSAutoreleasePool"))
NoReturnFunctionChecker.cpp
128
if (!Receiver->getIdentifier()->
isStr
("NSAssertionHandler"))
MallocOverflowSecurityChecker.cpp
252
if (FnInfo->
isStr
("malloc") || FnInfo->
isStr
("_MALLOC")) {
RetainCountChecker.cpp
945
if (Name->
isStr
("CGBitmapContextCreateWithData"))
[
all
...]
/external/clang/lib/Lex/
Pragma.cpp
789
if (II->
isStr
("ON"))
791
else if (II->
isStr
("OFF"))
793
else if (II->
isStr
("DEFAULT"))
867
if (II->
isStr
("assert")) {
869
} else if (II->
isStr
("crash")) {
871
} else if (II->
isStr
("parser_crash")) {
875
} else if (II->
isStr
("llvm_fatal_error")) {
877
} else if (II->
isStr
("llvm_unreachable")) {
879
} else if (II->
isStr
("overflow_stack")) {
881
} else if (II->
isStr
("handle_crash"))
[
all
...]
PPExpressions.cpp
186
if (II->
isStr
("defined"))
/external/clang/lib/Parse/
ParsePragma.cpp
171
if (state == 0 && ename->
isStr
("all")) {
175
#define OPENCLEXT(nm) else if (ename->
isStr
(#nm)) { f.nm = state; }
199
if (PushPop && PushPop->
isStr
("pop")) {
201
} else if (PushPop && PushPop->
isStr
("push")) {
277
if (II->
isStr
("show")) {
281
if (II->
isStr
("push")) {
283
} else if (II->
isStr
("pop")) {
375
if (II->
isStr
("on")) {
379
else if (II->
isStr
("off") || II->
isStr
("reset")
[
all
...]
ParseObjc.cpp
583
if (II->
isStr
("readonly"))
585
else if (II->
isStr
("assign"))
587
else if (II->
isStr
("unsafe_unretained"))
589
else if (II->
isStr
("readwrite"))
591
else if (II->
isStr
("retain"))
593
else if (II->
isStr
("strong"))
595
else if (II->
isStr
("copy"))
597
else if (II->
isStr
("nonatomic"))
599
else if (II->
isStr
("atomic"))
601
else if (II->
isStr
("weak")
[
all
...]
ParseDecl.cpp
202
if (AttrName->
isStr
("availability")) {
213
if (AttrName->
isStr
("type_tag_for_datatype")) {
252
if (AttrName->
isStr
("vec_type_hint")) {
273
if (!BuiltinType && !AttrName->
isStr
("vec_type_hint") &&
292
else if (Tok.is(tok::less) && AttrName->
isStr
("iboutletcollection")) {
308
} else if (AttrName->
isStr
("vec_type_hint")) {
[
all
...]
/external/clang/lib/Frontend/
ASTMerge.cpp
66
if (II->
isStr
("__va_list_tag") || II->
isStr
("__builtin_va_list"))
/external/clang/lib/Sema/
SemaAttr.cpp
373
if (VisType->
isStr
("default"))
375
else if (VisType->
isStr
("hidden"))
377
else if (VisType->
isStr
("internal"))
379
else if (VisType->
isStr
("protected"))
SemaType.cpp
85
if (attr.getParameterName()->
isStr
("strong")) {
87
} else if (attr.getParameterName()->
isStr
("weak")) {
[
all
...]
SemaTemplateInstantiateDecl.cpp
217
RD->getIdentifier() && RD->getIdentifier()->
isStr
("common_type") &&
218
D->getIdentifier() && D->getIdentifier()->
isStr
("type") &&
825
Pattern->getIdentifier()->
isStr
("_Map_base") &&
828
cast<NamespaceDecl>(DC)->getIdentifier()->
isStr
("__detail")) {
832
cast<NamespaceDecl>(DCParent)->getIdentifier()->
isStr
("tr1")) {
836
cast<NamespaceDecl>(DCParent2)->getIdentifier()->
isStr
("std") &&
[
all
...]
SemaDecl.cpp
[
all
...]
SemaExprMember.cpp
[
all
...]
/external/clang/include/clang/Sema/
TypoCorrection.h
176
return isKeyword() && getCorrectionAsIdentifierInfo()->
isStr
(Str);
/external/clang/lib/Rewrite/Frontend/
InclusionRewriter.cpp
440
if (RawToken.getIdentifierInfo()->
isStr
("__has_include")) {
444
} else if (RawToken.getIdentifierInfo()->
isStr
(
/external/clang/lib/StaticAnalyzer/Core/
CallEvent.cpp
337
if (II->
isStr
("pthread_setspecific"))
342
if (II->
isStr
("xpc_connection_set_context"))
346
if (II->
isStr
("funopen"))
[
all
...]
ExprEngineCallAndReturn.cpp
732
if (II->
isStr
("shared_ptr"))
[
all
...]
/external/clang/lib/AST/
Decl.cpp
[
all
...]
DeclPrinter.cpp
246
if (II->
isStr
("__builtin_va_list") ||
247
II->
isStr
("__int128_t") || II->
isStr
("__uint128_t"))
[
all
...]
ItaniumMangle.cpp
529
return II && II->
isStr
("std");
[
all
...]
/external/clang/include/clang/Basic/
IdentifierTable.h
90
/// This is intended to be used for string literals only: II->
isStr
("foo").
92
bool
isStr
(const char (&Str)[StrLen]) const {
/external/clang/lib/CodeGen/
CGVTables.cpp
848
RD->getIdentifier()->
isStr
("__fundamental_type_info") &&
851
cast<NamespaceDecl>(DC)->getIdentifier()->
isStr
("__cxxabiv1") &&
[
all
...]
Completed in 1281 milliseconds
1
2