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

Side by Side Diff: third_party/sqlite/sqlite-src-3080704/tool/opcodeDoc.awk

Issue 949043002: Add //third_party/sqlite to dirs_to_snapshot, remove net_sql.patch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 9 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
OLDNEW
(Empty)
1 #
2 # Extract opcode documentation for sqliteVdbe.c and generate HTML
3 #
4 BEGIN {
5 print "<html><body bgcolor=white>"
6 print "<h1>SQLite Virtual Database Engine Opcodes</h1>"
7 print "<table>"
8 }
9 / Opcode: /,/\*\// {
10 if( $2=="Opcode:" ){
11 printf "<tr><td>%s&nbsp;%s&nbsp;%s&nbsp;%s</td>\n<td>\n", $3, $4, $5, $6
12 }else if( $1=="*/" ){
13 printf "</td></tr>\n"
14 }else if( NF>1 ){
15 sub(/^ *\*\* /,"")
16 gsub(/</,"&lt;")
17 gsub(/&/,"&amp;")
18 print
19 }
20 }
21 END {
22 print "</table></body></html>"
23 }
OLDNEW
« no previous file with comments | « third_party/sqlite/sqlite-src-3080704/tool/omittest.tcl ('k') | third_party/sqlite/sqlite-src-3080704/tool/pagesig.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698