Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(53)

Side by Side Diff: third_party/sqlite/preprocessed/parse.c

Issue 3301019: Move sqlite preprocessed directory one level up, it's not from upstream.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: more bot-friendly Created 10 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « third_party/sqlite/preprocessed/parse.h ('k') | third_party/sqlite/preprocessed/sqlite3.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Driver template for the LEMON parser generator. 1 /* Driver template for the LEMON parser generator.
2 ** The author disclaims copyright to this source code. 2 ** The author disclaims copyright to this source code.
3 ** 3 **
4 ** This version of "lempar.c" is modified, slightly, for use by SQLite. 4 ** This version of "lempar.c" is modified, slightly, for use by SQLite.
5 ** The only modifications are the addition of a couple of NEVER() 5 ** The only modifications are the addition of a couple of NEVER()
6 ** macros to disable tests that are needed in the case of a general 6 ** macros to disable tests that are needed in the case of a general
7 ** LALR(1) grammar but which are always false in the 7 ** LALR(1) grammar but which are always false in the
8 ** specific grammar used by SQLite. 8 ** specific grammar used by SQLite.
9 */ 9 */
10 /* First off, code is included that follows the "include" declaration 10 /* First off, code is included that follows the "include" declaration
(...skipping 3772 matching lines...) Expand 10 before | Expand all | Expand 10 after
3783 yy_destructor(yypParser,(YYCODETYPE)yymajor,&yyminorunion); 3783 yy_destructor(yypParser,(YYCODETYPE)yymajor,&yyminorunion);
3784 if( yyendofinput ){ 3784 if( yyendofinput ){
3785 yy_parse_failed(yypParser); 3785 yy_parse_failed(yypParser);
3786 } 3786 }
3787 yymajor = YYNOCODE; 3787 yymajor = YYNOCODE;
3788 #endif 3788 #endif
3789 } 3789 }
3790 }while( yymajor!=YYNOCODE && yypParser->yyidx>=0 ); 3790 }while( yymajor!=YYNOCODE && yypParser->yyidx>=0 );
3791 return; 3791 return;
3792 } 3792 }
OLDNEW
« no previous file with comments | « third_party/sqlite/preprocessed/parse.h ('k') | third_party/sqlite/preprocessed/sqlite3.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698