Searched refs:SC (Results 1 - 25 of 59) sorted by relevance

123

/external/v8/src/
H A Dv8-counters.h58 #define STATS_COUNTER_LIST_1(SC) \
60 SC(global_handles, V8.GlobalHandles) \
62 SC(pcre_mallocs, V8.PcreMallocCount) \
64 SC(memory_allocated, V8.OsMemoryAllocated) \
65 SC(normalized_maps, V8.NormalizedMaps) \
66 SC(props_to_dictionary, V8.ObjectPropertiesToDictionary) \
67 SC(elements_to_dictionary, V8.ObjectElementsToDictionary) \
68 SC(alive_after_last_gc, V8.AliveAfterLastGC) \
69 SC(objs_since_last_young, V8.ObjsSinceLastYoung) \
70 SC(objs_since_last_ful
261 #define SC macro
265 #undef SC macro
291 #define SC macro
295 #undef SC macro
[all...]
H A Dv8-counters.cc42 #define SC(name, caption) \ macro
46 STATS_COUNTER_LIST_1(SC)
47 STATS_COUNTER_LIST_2(SC)
48 #undef SC macro
/external/clang/include/clang/Basic/
H A DSpecifiers.h163 inline bool isLegalForFunction(StorageClass SC) { argument
164 return SC <= SC_PrivateExtern;
168 inline bool isLegalForVariable(StorageClass SC) { argument
/external/llvm/include/llvm/Analysis/
H A DScalarEvolutionExpressions.h460 template<typename SC, typename RetVal=void>
465 return ((SC*)this)->visitConstant((const SCEVConstant*)S);
467 return ((SC*)this)->visitTruncateExpr((const SCEVTruncateExpr*)S);
469 return ((SC*)this)->visitZeroExtendExpr((const SCEVZeroExtendExpr*)S);
471 return ((SC*)this)->visitSignExtendExpr((const SCEVSignExtendExpr*)S);
473 return ((SC*)this)->visitAddExpr((const SCEVAddExpr*)S);
475 return ((SC*)this)->visitMulExpr((const SCEVMulExpr*)S);
477 return ((SC*)this)->visitUDivExpr((const SCEVUDivExpr*)S);
479 return ((SC*)this)->visitAddRecExpr((const SCEVAddRecExpr*)S);
481 return ((SC*)thi
[all...]
/external/libpcap/
H A Dtokdefs.h112 SC = 338, enumerator in enum:yytokentype
216 #define SC 338 macro
H A Dgrammar.c147 SC = 338, enumerator in enum:yytokentype
251 #define SC 338 macro
792 "SC", "ILMIC", "OAMF4EC", "OAMF4SC", "OAM", "OAMF4", "CONNECTMSG",
H A Dgrammar.y188 %token LANE LLC METAC BCC SC ILMIC OAMF4EC OAMF4SC
448 | SC { $$ = A_SC; }
/external/clang/include/clang/AST/
H A DStmt.h335 explicit Stmt(StmtClass SC, EmptyShell) { argument
336 StmtBits.sClass = SC;
337 if (StatisticsEnabled) Stmt::addStmtClass(SC);
341 Stmt(StmtClass SC) { argument
342 StmtBits.sClass = SC;
343 if (StatisticsEnabled) Stmt::addStmtClass(SC);
637 SwitchCase(StmtClass SC) : Stmt(SC), NextSwitchCase(0) {} argument
644 void setNextSwitchCase(SwitchCase *SC) { NextSwitchCase = SC; } argument
964 setSwitchCaseList(SwitchCase *SC) argument
973 addSwitchCase(SwitchCase *SC) argument
1386 AsmStmt(StmtClass SC, SourceLocation asmloc, bool issimple, bool isvolatile, unsigned numoutputs, unsigned numinputs, unsigned numclobbers) argument
1393 AsmStmt(StmtClass SC, EmptyShell Empty) argument
[all...]
H A DExpr.h60 Expr(StmtClass SC, QualType T, ExprValueKind VK, ExprObjectKind OK, argument
62 : Stmt(SC)
74 explicit Expr(StmtClass SC, EmptyShell) : Stmt(SC) { } argument
2041 CallExpr(ASTContext& C, StmtClass SC, Expr *fn, unsigned NumPreArgs,
2044 CallExpr(ASTContext &C, StmtClass SC, unsigned NumPreArgs, EmptyShell Empty);
2066 CallExpr(ASTContext &C, StmtClass SC, EmptyShell Empty);
2538 CastExpr(StmtClass SC, QualType ty, ExprValueKind VK, argument
2540 Expr(SC, ty, VK, OK_Ordinary,
2561 CastExpr(StmtClass SC, EmptyShel argument
2694 ExplicitCastExpr(StmtClass SC, QualType exprTy, ExprValueKind VK, CastKind kind, Expr *op, unsigned PathSize, TypeSourceInfo *writtenTy) argument
2700 ExplicitCastExpr(StmtClass SC, EmptyShell Shell, unsigned PathSize) argument
2918 BinaryOperator(StmtClass SC, EmptyShell Empty) argument
2969 AbstractConditionalOperator(StmtClass SC, QualType T, ExprValueKind VK, ExprObjectKind OK, bool TD, bool VD, bool ID, bool ContainsUnexpandedParameterPack, SourceLocation qloc, SourceLocation cloc) argument
2978 AbstractConditionalOperator(StmtClass SC, EmptyShell Empty) argument
[all...]
H A DDecl.h715 /// specify the storage class \arg SC.
717 /// It is illegal to call this function with SC == None.
718 static const char *getStorageClassSpecifierString(StorageClass SC);
817 QualType T, TypeSourceInfo *TInfo, StorageClass SC,
823 VarDeclBits.SClass = SC;
859 void setStorageClass(StorageClass SC);
860 void setStorageClassAsWritten(StorageClass SC) {
861 assert(isLegalForVariable(SC));
862 VarDeclBits.SClassAsWritten = SC;
1589 StorageClass SC
[all...]
H A DExprCXX.h171 CXXNamedCastExpr(StmtClass SC, QualType ty, ExprValueKind VK, argument
175 : ExplicitCastExpr(SC, ty, VK, kind, op, PathSize, writtenTy), Loc(l),
178 explicit CXXNamedCastExpr(StmtClass SC, EmptyShell Shell, unsigned PathSize) argument
179 : ExplicitCastExpr(SC, Shell, PathSize) { }
735 CXXDefaultArgExpr(StmtClass SC, SourceLocation Loc, ParmVarDecl *param) argument
736 : Expr(SC,
744 CXXDefaultArgExpr(StmtClass SC, SourceLocation Loc, ParmVarDecl *param, argument
746 : Expr(SC, SubExpr->getType(),
907 CXXConstructExpr(ASTContext &C, StmtClass SC, QualType T,
918 CXXConstructExpr(StmtClass SC, EmptyShel argument
[all...]
/external/webkit/Source/WebKit/android/content/
H A Daddress_detector.cpp717 SC = 47, // SC South Carolina enumerator in enum:USState
762 SC, SC, SC, SC, SC, SC, SC, SC, S
[all...]
/external/clang/lib/Sema/
H A DDeclSpec.cpp428 bool DeclSpec::SetStorageClassSpec(Sema &S, SCS SC, SourceLocation Loc, argument
440 switch (SC) {
446 PrevSpec = getSpecifierName(SC);
453 PrevSpec = getSpecifierName(SC);
464 if (SC == SCS_auto)
479 SC == SCS_typedef))
480 return BadSpecifier(SC, (SCS)StorageClassSpec, PrevSpec, DiagID);
482 StorageClassSpec = SC;
484 assert((unsigned)SC == StorageClassSpec && "SCS constants overflow bitfield");
936 DeclSpec::SCS SC local
[all...]
H A DJumpDiagnostics.cpp497 for (SwitchCase *SC = SS->getSwitchCaseList(); SC;
498 SC = SC->getNextSwitchCase()) {
499 assert(LabelAndGotoScopes.count(SC) && "Case not visited?");
500 CheckJump(SS, SC, SC->getLocStart(),
H A DSema.cpp135 if (SemaConsumer *SC = dyn_cast<SemaConsumer>(&Consumer))
136 SC->InitializeSema(*this);
199 if (SemaConsumer *SC = dyn_cast<SemaConsumer>(&Consumer))
200 SC->ForgetSema();
H A DSemaDecl.cpp3120 VarDecl::StorageClass SC = StorageClassSpecToVarDeclStorageClass(SCSpec); local
3126 SC = SC_None;
3136 TInfo, SC, SCAsWritten);
4160 VarDecl::StorageClass SC = StorageClassSpecToVarDeclStorageClass(SCSpec); local
4166 SC = SC_None;
4184 if (SC == SC_Auto || SC == SC_Register) {
4188 if (SC == SC_Register && D.getAsmLabel())
4200 SC = SC_OpenCLWorkGroupLocal;
4208 R, TInfo, SC, SCAsWritte
4971 CreateNewFunctionDecl(Sema &SemaRef, Declarator &D, DeclContext *DC, QualType &R, TypeSourceInfo *TInfo, FunctionDecl::StorageClass SC, bool &IsVirtualOkay) argument
5142 FunctionDecl::StorageClass SC = getFunctionStorageClass(*this, D); local
[all...]
/external/clang/lib/StaticAnalyzer/Checkers/
H A DUnixAPIChecker.cpp335 SubChecker SC =
346 if (SC)
347 (this->*SC)(C, CE);
/external/clang/test/Sema/
H A Dattr-mode.c22 typedef _Complex double c32 __attribute((mode(SC)));
/external/webkit/Tools/android/flex-2.5.4a/
H A Dscan.l71 %x SECT2 SECT2PROLOG SECT3 CODEBLOCK PICKUPDEF SC CARETISBOL NUM QUOTE
333 ^{OPTWS}"<" BEGIN(SC); return '<';
474 <SC>{
/external/clang/lib/Frontend/
H A DMultiplexConsumer.cpp268 if (SemaConsumer *SC = dyn_cast<SemaConsumer>(Consumers[i]))
269 SC->InitializeSema(S);
274 if (SemaConsumer *SC = dyn_cast<SemaConsumer>(Consumers[i]))
275 SC->ForgetSema();
/external/llvm/utils/TableGen/
H A DSetTheory.cpp296 const std::vector<Record*> &SC = Set->getSuperClasses(); local
297 for (unsigned i = 0, e = SC.size(); i != e; ++i)
298 if (Expander *Exp = Expanders.lookup(SC[i]->getName())) {
/external/clang/lib/AST/
H A DStmtProfile.cpp691 Stmt::StmtClass SC = DecodeOperatorCall(S, UnaryOp, BinaryOp); local
693 ID.AddInteger(SC);
696 if (SC == Stmt::UnaryOperatorClass)
698 else if (SC == Stmt::BinaryOperatorClass ||
699 SC == Stmt::CompoundAssignOperatorClass)
702 assert(SC == Stmt::ArraySubscriptExprClass);
H A DDecl.cpp1171 const char *VarDecl::getStorageClassSpecifierString(StorageClass SC) { argument
1172 switch (SC) {
1198 void VarDecl::setStorageClass(StorageClass SC) { argument
1199 assert(isLegalForVariable(SC));
1200 if (getStorageClass() != SC)
1203 VarDeclBits.SClass = SC;
1802 void FunctionDecl::setStorageClass(StorageClass SC) { argument
1803 assert(isLegalForFunction(SC));
1804 if (getStorageClass() != SC)
1807 SClass = SC;
2898 Create(ASTContext &C, DeclContext *DC, SourceLocation StartLoc, const DeclarationNameInfo &NameInfo, QualType T, TypeSourceInfo *TInfo, StorageClass SC, StorageClass SCAsWritten, bool isInlineSpecified, bool hasWrittenPrototype, bool isConstexprSpecified) argument
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DProgramState.cpp639 while (const SymbolCast *SC = dyn_cast<SymbolCast>(Sym))
640 Sym = SC->getOperand();
705 if (const SymbolCast *SC = dyn_cast<SymbolCast>(*SI))
706 Tainted = Tainted || isTainted(SC->getOperand(), Kind);
/external/llvm/lib/TableGen/
H A DTGParser.cpp150 Record *SC = SubClass.Rec; local
152 const std::vector<RecordVal> &Vals = SC->getValues();
157 const std::vector<Init *> &TArgs = SC->getTemplateArgs();
181 + ") of subclass '" + SC->getNameInitAsString() + "'!");
187 const std::vector<Record*> &SCs = SC->getSuperClasses();
195 if (CurRec->isSubClassOf(SC))
197 "Already subclass of '" + SC->getName() + "'!\n");
198 CurRec->addSuperClass(SC);

Completed in 519 milliseconds

123