Searched refs:statement (Results 76 - 100 of 199) sorted by relevance

12345678

/macosx-10.9.5/WebCore-7537.78.1/Modules/webdatabase/
H A DSQLTransactionBackend.h84 virtual void executeSQL(PassOwnPtr<AbstractSQLStatement>, const String& statement,
H A DSQLTransaction.cpp186 // Spec 4.3.2.6.6 and 4.3.2.6.3: If the statement callback went wrong, jump to the transaction error callback
187 // Otherwise, continue to loop through the statement queue
199 m_transactionError = SQLError::create(SQLError::UNKNOWN_ERR, "the statement callback raised an exception or statement error callback did not return false");
264 OwnPtr<SQLStatement> statement = SQLStatement::create(m_database.get(), callback, callbackError); local
265 m_backend->executeSQL(statement.release(), sqlStatement, arguments, permissions);
H A DSQLTransactionBackend.cpp131 // - run a statement.
141 // - invoke script statement callback (assume available).
346 // There's no way of knowing exactly how much more space will be required when a statement hits the quota limit.
527 void SQLTransactionBackend::executeSQL(PassOwnPtr<AbstractSQLStatement> statement, argument
531 statementBackend = SQLStatementBackend::create(statement, sqlStatement, arguments, permissions);
645 // Reset the maximum size here, as it was increased to allow us to retry this statement.
646 // m_shouldRetryCurrentStatement is set to true only when a statement exceeds
651 // If the current statement has already been run, failed due to quota constraints, and we're not retrying it,
657 // Otherwise, advance to the next statement
697 // If we get here, then the statement does
[all...]
/macosx-10.9.5/WebCore-7537.78.1/xml/
H A DXPathParser.h68 Expression* parseStatement(const String& statement, PassRefPtr<XPathNSResolver>, ExceptionCode&);
/macosx-10.9.5/llvmCore-3425.0.33/utils/unittest/googletest/
H A Dgtest-death-test.cc177 // to executing the given statement. It is the responsibility of the
200 // RETURNED means that the test statement attempted to execute a return
201 // statement, which is not allowed; THREW means that the test statement
305 bool DeathTest::Create(const char* statement, const RE* regex, argument
308 statement, regex, file, line, test);
339 const char* statement() const { return statement_; } function in class:testing::internal::DeathTestImpl
499 buffer << "Death test: " << statement() << "\n";
510 buffer << " Result: illegal return in test statement.\n"
741 ForkingDeathTest(const char* statement, cons
1043 Create(const char* statement, const RE* regex, const char* file, int line, DeathTest** test) argument
[all...]
/macosx-10.9.5/bash-92/bash-3.2/lib/readline/
H A Dbind.c1116 handle_parser_directive (statement)
1117 char *statement;
1125 for (i = 0; whitespace (statement[i]); i++);
1127 directive = &statement[i];
1129 for (; statement[i] && !whitespace (statement[i]); i++);
1131 if (statement[i])
1132 statement[i++] = '\0';
1134 for (; statement[i] && whitespace (statement[
[all...]
/macosx-10.9.5/vim-53/runtime/colors/
H A Dron.vim18 hi statement guifg=lightblue gui=NONE
/macosx-10.9.5/vim-53/runtime/indent/
H A Dmatlab.vim42 " If the current line is a stop-block statement...
H A Dada.vim137 " Return indent of previous statement-start
140 " the end of a statement - we want the previous beginning).
235 " A statement continuation - move in one
241 " Statement end (but not 'end' ) - try to find current statement-start indent
281 " End of case statement
H A Dfortran.vim104 " Fix indent for case statement immediately after select
146 " Skip lines with statement numbers
H A Dpascal.vim115 " whole if-then statement was on one line.
131 " Indent code after a case statement begin
H A Dsqlanywhere.vim19 " The Oracle MERGE statement does not have an end tag associated with
142 " non comment lines to find the statement that initated the keyword.
348 " statements do not have a corresponding END statement.
/macosx-10.9.5/CPANInternal-140/DBIx-Class/lib/DBIx/Class/
H A DStorage.pm379 Sets a callback to be executed each time a statement is run; takes a sub
426 Handle a select statement.
434 Handle an insert statement.
442 Handle an update statement.
450 Handle a delete statement.
/macosx-10.9.5/tcl-102/tcl_ext/expect/expect/
H A Dexp_inter.c90 Tcl_Obj *statement; member in struct:action
844 action_eof.statement = tsdPtr->cmdObjReturn;
1037 action->statement = *objv;
1070 action->statement = *objv;
1117 action->statement = *objv;
1150 action->statement = *objv;
1152 action->statement = 0;
1209 km->action.statement = *objv;
1211 km->action.statement = 0;
1217 expDiagLogU(km->action.statement
[all...]
/macosx-10.9.5/vim-53/runtime/syntax/
H A Drexx.vim70 " Conditional keywords starting a new statement
92 " Guard statement
95 " Trace statement
98 " Raise statement
102 " Forward statement
125 " check for labels between comments, labels stated in a statement in the middle of a line
/macosx-10.9.5/CPANInternal-140/DBIx-Class/t/lib/DBIC/
H A DSqlMakerTest.pm115 Compares given and expected SQL statement, and calls L<Test::Builder/ok> on the
/macosx-10.9.5/CPANInternal-140/Log-Log4perl/lib/Log/Log4perl/
H A DResurrector.pm53 # We might have a 'use lib' statement that modified the
143 activated Log4perl statement will actually trigger log
/macosx-10.9.5/dtrace-118.1/libdtrace/
H A Ddt_grammar.y155 %type <l_node> statement
347 statement_list: statement { $$ = $1; }
348 | statement_list ';' statement { $$ = LINK($1, $3); }
351 statement: /* empty */ { $$ = NULL; } label
/macosx-10.9.5/tcl-102/tcl_ext/incrtcl/incrTcl/itcl/tests/old/
H A Dbasic.test89 test {Info: public variable config statement} {
95 test {Info: public variable config statement} {
/macosx-10.9.5/tcl-102/tcl_ext/tclvfs/tclvfs/library/template/
H A Dtemplatevfs.tcl66 1. copy the contents of this namespace eval statement to a
67 new namespace eval statement with a unique new namespace defined
/macosx-10.9.5/bind9-45.100/bind9/bin/tests/
H A Dnamed.conf85 // basis in the "zone" statement
591 * "category" statement has been given for a category.
623 #include "filename"; // can't do within a statement
/macosx-10.9.5/CPANInternal-140/Apache-DBI/lib/Apache/
H A DAuthDBI.pm336 # generate statement
345 my $statement = "$select $from $where $compare";
346 $statement .= " AND $Attr->{pwd_whereclause}"
349 debug(2, "$prefix statement: $statement");
351 # prepare statement
353 unless ($sth = $dbh->prepare($statement)) {
354 $r->log_reason("$prefix can not prepare statement: $DBI::errstr", $r->uri);
360 # execute statement
364 $r->log_reason("$prefix can not execute statement
[all...]
/macosx-10.9.5/CPANInternal-140/Apache-DBI-1.11/lib/Apache/
H A DAuthDBI.pm337 # generate statement
346 my $statement = "$select $from $where $compare";
347 $statement .= " AND $Attr->{pwd_whereclause}"
350 debug(2, "$prefix statement: $statement");
352 # prepare statement
354 unless ($sth = $dbh->prepare($statement)) {
355 $r->log_reason("$prefix can not prepare statement: $DBI::errstr", $r->uri);
361 # execute statement
365 $r->log_reason("$prefix can not execute statement
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/parser/
H A DASTBuilder.h465 StatementNode* createWhileStatement(const JSTokenLocation& location, ExpressionNode* expr, StatementNode* statement, int startLine, int endLine) argument
467 WhileNode* result = new (m_vm) WhileNode(location, expr, statement);
472 StatementNode* createDoWhileStatement(const JSTokenLocation& location, StatementNode* statement, ExpressionNode* expr, int startLine, int endLine) argument
474 DoWhileNode* result = new (m_vm) DoWhileNode(location, statement, expr);
479 StatementNode* createLabelStatement(const JSTokenLocation& location, const Identifier* ident, StatementNode* statement, unsigned start, unsigned end, unsigned divotLine, unsigned divotLineStart) argument
481 LabelNode* result = new (m_vm) LabelNode(location, *ident, statement);
486 StatementNode* createWithStatement(const JSTokenLocation& location, ExpressionNode* expr, StatementNode* statement, unsigned start, unsigned end, unsigned startLine, unsigned endLine, unsigned divotLine, unsigned divotLineStart) argument
489 WithNode* result = new (m_vm) WithNode(location, expr, statement, end, divotLine, divotLineStart, end - start);
524 void appendStatement(JSC::SourceElements* elements, JSC::StatementNode* statement) argument
526 elements->append(statement);
[all...]
/macosx-10.9.5/swig-10/Source/Preprocessor/
H A Dcpp.c1781 /* Searching for the end of a %define statement */
1787 char statement[7]; local
1792 statement[i++] = (char)c;
1793 if (strncmp(statement, ed, i) && strncmp(statement, df, i))
1799 if (strncmp(statement, df, i) == 0) {
1802 if (strncmp(statement, ed, i) == 0) {

Completed in 151 milliseconds

12345678