HomeSort by relevance Sort by last modified time
    Searched refs:stmt (Results 176 - 200 of 465) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/skia/src/sksl/
SkSLGLSLCodeGenerator.h 165 virtual void writeIfStatement(const IfStatement& stmt);
SkSLGLSLCodeGenerator.cpp 634 for (const auto& stmt : decl.fVars) {
635 VarDeclaration& var = (VarDeclaration&) *stmt;
734 void GLSLCodeGenerator::writeIfStatement(const IfStatement& stmt) {
736 this->writeExpression(*stmt.fTest, kTopLevel_Precedence);
738 this->writeStatement(*stmt.fIfTrue);
739 if (stmt.fIfFalse) {
741 this->writeStatement(*stmt.fIfFalse);
792 for (const auto& stmt : c->fStatements) {
793 this->writeStatement(*stmt);
  /external/v8/tools/clang/base_bind_rewriters/
BaseBindRewriters.cpp 56 hasArgument(1, stmt().bind("target")));
  /external/valgrind/VEX/priv/
host_amd64_isel.c     [all...]
host_ppc_isel.c     [all...]
host_arm_isel.c     [all...]
  /external/syslinux/lzo/src/
lzo_conf.h 176 # define BOUNDS_CHECKING_OFF_DURING(stmt) stmt
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
symtable.c     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
symtable.c     [all...]
  /external/python/cpython2/Python/
symtable.c 1015 VISIT_SEQ_IN_BLOCK(st, stmt, s->v.FunctionDef.body, s);
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
range.go 384 stmt := n.Nbody.First() // only stmt in body
385 if stmt.Op != OAS || stmt.Left.Op != OINDEX {
388 if !samesafeexpr(stmt.Left.Left, a) || !samesafeexpr(stmt.Left.Right, v1) {
392 if elemsize <= 0 || !iszero(stmt.Right) {
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
range.go 384 stmt := n.Nbody.First() // only stmt in body
385 if stmt.Op != OAS || stmt.Left.Op != OINDEX {
388 if !samesafeexpr(stmt.Left.Left, a) || !samesafeexpr(stmt.Left.Right, v1) {
392 if elemsize <= 0 || !iszero(stmt.Right) {
  /build/kati/
eval.go 381 for _, stmt := range mk.stmts {
382 err = ev.eval(stmt)
476 for _, stmt := range mk.stmts {
477 err = ev.eval(stmt)
592 for _, stmt := range stmts {
593 err := ev.eval(stmt)
672 func (ev *Evaluator) eval(stmt ast) error {
673 return stmt.eval(ev)
692 for _, stmt := range mk.stmts {
693 err = ev.eval(stmt)
    [all...]
  /external/v8/src/crankshaft/
hydrogen.cc 484 void HBasicBlock::PostProcessLoopHeader(IterationStatement* stmt) {
487 SetJoinId(stmt->EntryId());
4223 Statement* stmt = statements->at(i); local
    [all...]
  /external/v8/src/full-codegen/arm/
full-codegen-arm.cc 380 void FullCodeGenerator::EmitBackEdgeBookkeeping(IterationStatement* stmt,
398 RecordBackEdge(stmt->OsrEntryId());
403 PrepareForBailoutForId(stmt->EntryId(), BailoutState::NO_REGISTERS);
407 PrepareForBailoutForId(stmt->OsrEntryId(), BailoutState::NO_REGISTERS);
865 void FullCodeGenerator::VisitSwitchStatement(SwitchStatement* stmt) {
867 Breakable nested_statement(this, stmt);
868 SetStatementPosition(stmt);
871 VisitForStackValue(stmt->tag());
872 PrepareForBailoutForId(stmt->EntryId(), BailoutState::NO_REGISTERS);
874 ZoneList<CaseClause*>* clauses = stmt->cases()
    [all...]
  /external/v8/src/full-codegen/arm64/
full-codegen-arm64.cc 360 void FullCodeGenerator::EmitBackEdgeBookkeeping(IterationStatement* stmt,
385 RecordBackEdge(stmt->OsrEntryId());
390 PrepareForBailoutForId(stmt->EntryId(), BailoutState::NO_REGISTERS);
394 PrepareForBailoutForId(stmt->OsrEntryId(), BailoutState::NO_REGISTERS);
864 void FullCodeGenerator::VisitSwitchStatement(SwitchStatement* stmt) {
867 Breakable nested_statement(this, stmt);
868 SetStatementPosition(stmt);
871 VisitForStackValue(stmt->tag());
872 PrepareForBailoutForId(stmt->EntryId(), BailoutState::NO_REGISTERS);
874 ZoneList<CaseClause*>* clauses = stmt->cases()
    [all...]
  /external/v8/src/full-codegen/ia32/
full-codegen-ia32.cc 347 void FullCodeGenerator::EmitBackEdgeBookkeeping(IterationStatement* stmt,
363 RecordBackEdge(stmt->OsrEntryId());
368 PrepareForBailoutForId(stmt->EntryId(), BailoutState::NO_REGISTERS);
372 PrepareForBailoutForId(stmt->OsrEntryId(), BailoutState::NO_REGISTERS);
811 void FullCodeGenerator::VisitSwitchStatement(SwitchStatement* stmt) {
813 Breakable nested_statement(this, stmt);
814 SetStatementPosition(stmt);
817 VisitForStackValue(stmt->tag());
818 PrepareForBailoutForId(stmt->EntryId(), BailoutState::NO_REGISTERS);
820 ZoneList<CaseClause*>* clauses = stmt->cases()
    [all...]
  /external/v8/src/full-codegen/mips/
full-codegen-mips.cc 373 void FullCodeGenerator::EmitBackEdgeBookkeeping(IterationStatement* stmt,
395 RecordBackEdge(stmt->OsrEntryId());
399 PrepareForBailoutForId(stmt->EntryId(), BailoutState::NO_REGISTERS);
403 PrepareForBailoutForId(stmt->OsrEntryId(), BailoutState::NO_REGISTERS);
864 void FullCodeGenerator::VisitSwitchStatement(SwitchStatement* stmt) {
866 Breakable nested_statement(this, stmt);
867 SetStatementPosition(stmt);
870 VisitForStackValue(stmt->tag());
871 PrepareForBailoutForId(stmt->EntryId(), BailoutState::NO_REGISTERS);
873 ZoneList<CaseClause*>* clauses = stmt->cases()
    [all...]
  /external/v8/src/full-codegen/mips64/
full-codegen-mips64.cc 373 void FullCodeGenerator::EmitBackEdgeBookkeeping(IterationStatement* stmt,
395 RecordBackEdge(stmt->OsrEntryId());
399 PrepareForBailoutForId(stmt->EntryId(), BailoutState::NO_REGISTERS);
403 PrepareForBailoutForId(stmt->OsrEntryId(), BailoutState::NO_REGISTERS);
864 void FullCodeGenerator::VisitSwitchStatement(SwitchStatement* stmt) {
866 Breakable nested_statement(this, stmt);
867 SetStatementPosition(stmt);
870 VisitForStackValue(stmt->tag());
871 PrepareForBailoutForId(stmt->EntryId(), BailoutState::NO_REGISTERS);
873 ZoneList<CaseClause*>* clauses = stmt->cases()
    [all...]
  /external/v8/src/full-codegen/ppc/
full-codegen-ppc.cc 367 void FullCodeGenerator::EmitBackEdgeBookkeeping(IterationStatement* stmt,
388 RecordBackEdge(stmt->OsrEntryId());
393 PrepareForBailoutForId(stmt->EntryId(), BailoutState::NO_REGISTERS);
397 PrepareForBailoutForId(stmt->OsrEntryId(), BailoutState::NO_REGISTERS);
828 void FullCodeGenerator::VisitSwitchStatement(SwitchStatement* stmt) {
830 Breakable nested_statement(this, stmt);
831 SetStatementPosition(stmt);
834 VisitForStackValue(stmt->tag());
835 PrepareForBailoutForId(stmt->EntryId(), BailoutState::NO_REGISTERS);
837 ZoneList<CaseClause*>* clauses = stmt->cases()
    [all...]
  /external/v8/src/full-codegen/s390/
full-codegen-s390.cc 369 void FullCodeGenerator::EmitBackEdgeBookkeeping(IterationStatement* stmt,
387 RecordBackEdge(stmt->OsrEntryId());
392 PrepareForBailoutForId(stmt->EntryId(), BailoutState::NO_REGISTERS);
396 PrepareForBailoutForId(stmt->OsrEntryId(), BailoutState::NO_REGISTERS);
797 void FullCodeGenerator::VisitSwitchStatement(SwitchStatement* stmt) {
799 Breakable nested_statement(this, stmt);
800 SetStatementPosition(stmt);
803 VisitForStackValue(stmt->tag());
804 PrepareForBailoutForId(stmt->EntryId(), BailoutState::NO_REGISTERS);
806 ZoneList<CaseClause*>* clauses = stmt->cases()
    [all...]
  /external/v8/src/full-codegen/x64/
full-codegen-x64.cc 349 void FullCodeGenerator::EmitBackEdgeBookkeeping(IterationStatement* stmt,
369 RecordBackEdge(stmt->OsrEntryId());
375 PrepareForBailoutForId(stmt->EntryId(), BailoutState::NO_REGISTERS);
379 PrepareForBailoutForId(stmt->OsrEntryId(), BailoutState::NO_REGISTERS);
828 void FullCodeGenerator::VisitSwitchStatement(SwitchStatement* stmt) {
830 Breakable nested_statement(this, stmt);
831 SetStatementPosition(stmt);
834 VisitForStackValue(stmt->tag());
835 PrepareForBailoutForId(stmt->EntryId(), BailoutState::NO_REGISTERS);
837 ZoneList<CaseClause*>* clauses = stmt->cases()
    [all...]
  /external/v8/src/full-codegen/x87/
full-codegen-x87.cc 342 void FullCodeGenerator::EmitBackEdgeBookkeeping(IterationStatement* stmt,
358 RecordBackEdge(stmt->OsrEntryId());
363 PrepareForBailoutForId(stmt->EntryId(), BailoutState::NO_REGISTERS);
367 PrepareForBailoutForId(stmt->OsrEntryId(), BailoutState::NO_REGISTERS);
801 void FullCodeGenerator::VisitSwitchStatement(SwitchStatement* stmt) {
803 Breakable nested_statement(this, stmt);
804 SetStatementPosition(stmt);
807 VisitForStackValue(stmt->tag());
808 PrepareForBailoutForId(stmt->EntryId(), BailoutState::NO_REGISTERS);
810 ZoneList<CaseClause*>* clauses = stmt->cases()
    [all...]
  /libcore/luni/src/test/java/libcore/java/sql/
OldStatementTest.java 1296 Statement stmt; field in class:OldStatementTest.CancelThread
1325 PreparedStatement stmt; field in class:OldStatementTest.InsertThread
    [all...]
  /external/clang/unittests/ASTMatchers/Dynamic/
ParserTest.cpp 30 // 'stmt()' to be all the same matcher.
32 ast_matchers::internal::Matcher<Stmt> M = stmt(stmt(), stmt());
74 typedef std::map<std::string, ast_matchers::internal::Matcher<Stmt> >
238 "1:1: Error parsing argument 1 for matcher stmt.\n"
240 ParseWithError("stmt(someValue)"));
267 ParseMatcherWithError("hasBody(stmt())"));
273 "(Expected = Matcher<Stmt>) != (Actual = String)\n
    [all...]

Completed in 525 milliseconds

1 2 3 4 5 6 78 91011>>