gtl-parsley-ruby 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG +3 -0
- data/README +32 -0
- data/Rakefile +57 -0
- data/VERSION +1 -0
- data/ext/cparsley.c +152 -0
- data/ext/extconf.rb +82 -0
- data/ext/parsley/.gitignore +32 -0
- data/ext/parsley/AUTHORS +1 -0
- data/ext/parsley/ChangeLog +0 -0
- data/ext/parsley/HACKING +4 -0
- data/ext/parsley/INSTALL +73 -0
- data/ext/parsley/INTRO +84 -0
- data/ext/parsley/Makefile.am +80 -0
- data/ext/parsley/Makefile.in +1009 -0
- data/ext/parsley/NEWS +0 -0
- data/ext/parsley/PAPER +36 -0
- data/ext/parsley/Portfile +18 -0
- data/ext/parsley/Portfile.in +17 -0
- data/ext/parsley/README.C-LANG +92 -0
- data/ext/parsley/README.markdown +1 -0
- data/ext/parsley/TODO +39 -0
- data/ext/parsley/VERSION +1 -0
- data/ext/parsley/aclocal.m4 +8918 -0
- data/ext/parsley/bootstrap.sh +6 -0
- data/ext/parsley/config.guess +1561 -0
- data/ext/parsley/config.sub +1686 -0
- data/ext/parsley/configure +13437 -0
- data/ext/parsley/configure.ac +46 -0
- data/ext/parsley/depcomp +630 -0
- data/ext/parsley/functions.c +368 -0
- data/ext/parsley/functions.h +19 -0
- data/ext/parsley/generate_bisect.sh +12 -0
- data/ext/parsley/hooks/prepare-commit-msg +16 -0
- data/ext/parsley/install-sh +520 -0
- data/ext/parsley/json-c-0.9/AUTHORS +2 -0
- data/ext/parsley/json-c-0.9/COPYING +19 -0
- data/ext/parsley/json-c-0.9/ChangeLog +103 -0
- data/ext/parsley/json-c-0.9/INSTALL +302 -0
- data/ext/parsley/json-c-0.9/Makefile.am +43 -0
- data/ext/parsley/json-c-0.9/Makefile.in +800 -0
- data/ext/parsley/json-c-0.9/NEWS +1 -0
- data/ext/parsley/json-c-0.9/README +20 -0
- data/ext/parsley/json-c-0.9/README-WIN32.html +57 -0
- data/ext/parsley/json-c-0.9/README.html +32 -0
- data/ext/parsley/json-c-0.9/aclocal.m4 +8909 -0
- data/ext/parsley/json-c-0.9/arraylist.c +94 -0
- data/ext/parsley/json-c-0.9/arraylist.h +53 -0
- data/ext/parsley/json-c-0.9/bits.h +27 -0
- data/ext/parsley/json-c-0.9/config.guess +1561 -0
- data/ext/parsley/json-c-0.9/config.h +125 -0
- data/ext/parsley/json-c-0.9/config.h.in +124 -0
- data/ext/parsley/json-c-0.9/config.h.win32 +94 -0
- data/ext/parsley/json-c-0.9/config.sub +1686 -0
- data/ext/parsley/json-c-0.9/configure +13084 -0
- data/ext/parsley/json-c-0.9/configure.in +33 -0
- data/ext/parsley/json-c-0.9/debug.c +98 -0
- data/ext/parsley/json-c-0.9/debug.h +50 -0
- data/ext/parsley/json-c-0.9/depcomp +630 -0
- data/ext/parsley/json-c-0.9/doc/html/annotated.html +40 -0
- data/ext/parsley/json-c-0.9/doc/html/arraylist_8h.html +240 -0
- data/ext/parsley/json-c-0.9/doc/html/bits_8h.html +150 -0
- data/ext/parsley/json-c-0.9/doc/html/classes.html +36 -0
- data/ext/parsley/json-c-0.9/doc/html/config_8h.html +612 -0
- data/ext/parsley/json-c-0.9/doc/html/debug_8h.html +392 -0
- data/ext/parsley/json-c-0.9/doc/html/doxygen.css +441 -0
- data/ext/parsley/json-c-0.9/doc/html/doxygen.png +0 -0
- data/ext/parsley/json-c-0.9/doc/html/files.html +42 -0
- data/ext/parsley/json-c-0.9/doc/html/functions.html +206 -0
- data/ext/parsley/json-c-0.9/doc/html/functions_vars.html +206 -0
- data/ext/parsley/json-c-0.9/doc/html/globals.html +459 -0
- data/ext/parsley/json-c-0.9/doc/html/globals_defs.html +202 -0
- data/ext/parsley/json-c-0.9/doc/html/globals_enum.html +50 -0
- data/ext/parsley/json-c-0.9/doc/html/globals_eval.html +135 -0
- data/ext/parsley/json-c-0.9/doc/html/globals_func.html +194 -0
- data/ext/parsley/json-c-0.9/doc/html/globals_type.html +70 -0
- data/ext/parsley/json-c-0.9/doc/html/globals_vars.html +50 -0
- data/ext/parsley/json-c-0.9/doc/html/index.html +25 -0
- data/ext/parsley/json-c-0.9/doc/html/json_8h.html +32 -0
- data/ext/parsley/json-c-0.9/doc/html/json__object_8h.html +1150 -0
- data/ext/parsley/json-c-0.9/doc/html/json__object__private_8h.html +75 -0
- data/ext/parsley/json-c-0.9/doc/html/json__tokener_8h.html +366 -0
- data/ext/parsley/json-c-0.9/doc/html/json__util_8h.html +106 -0
- data/ext/parsley/json-c-0.9/doc/html/linkhash_8h.html +740 -0
- data/ext/parsley/json-c-0.9/doc/html/printbuf_8h.html +214 -0
- data/ext/parsley/json-c-0.9/doc/html/structarray__list.html +104 -0
- data/ext/parsley/json-c-0.9/doc/html/structjson__object.html +141 -0
- data/ext/parsley/json-c-0.9/doc/html/structjson__object__iter.html +87 -0
- data/ext/parsley/json-c-0.9/doc/html/structjson__tokener.html +206 -0
- data/ext/parsley/json-c-0.9/doc/html/structjson__tokener__srec.html +104 -0
- data/ext/parsley/json-c-0.9/doc/html/structlh__entry.html +105 -0
- data/ext/parsley/json-c-0.9/doc/html/structlh__table.html +275 -0
- data/ext/parsley/json-c-0.9/doc/html/structprintbuf.html +87 -0
- data/ext/parsley/json-c-0.9/doc/html/tab_b.gif +0 -0
- data/ext/parsley/json-c-0.9/doc/html/tab_l.gif +0 -0
- data/ext/parsley/json-c-0.9/doc/html/tab_r.gif +0 -0
- data/ext/parsley/json-c-0.9/doc/html/tabs.css +105 -0
- data/ext/parsley/json-c-0.9/doc/html/unionjson__object_1_1data.html +140 -0
- data/ext/parsley/json-c-0.9/install-sh +520 -0
- data/ext/parsley/json-c-0.9/json.h +31 -0
- data/ext/parsley/json-c-0.9/json.pc +11 -0
- data/ext/parsley/json-c-0.9/json.pc.in +11 -0
- data/ext/parsley/json-c-0.9/json_object.c +512 -0
- data/ext/parsley/json-c-0.9/json_object.h +319 -0
- data/ext/parsley/json-c-0.9/json_object_private.h +52 -0
- data/ext/parsley/json-c-0.9/json_tokener.c +628 -0
- data/ext/parsley/json-c-0.9/json_tokener.h +98 -0
- data/ext/parsley/json-c-0.9/json_util.c +122 -0
- data/ext/parsley/json-c-0.9/json_util.h +31 -0
- data/ext/parsley/json-c-0.9/libjson.la +41 -0
- data/ext/parsley/json-c-0.9/libtool +8890 -0
- data/ext/parsley/json-c-0.9/linkhash.c +216 -0
- data/ext/parsley/json-c-0.9/linkhash.h +272 -0
- data/ext/parsley/json-c-0.9/ltmain.sh +8406 -0
- data/ext/parsley/json-c-0.9/missing +376 -0
- data/ext/parsley/json-c-0.9/printbuf.c +149 -0
- data/ext/parsley/json-c-0.9/printbuf.h +64 -0
- data/ext/parsley/json-c-0.9/stamp-h1 +1 -0
- data/ext/parsley/json-c-0.9/test1 +130 -0
- data/ext/parsley/json-c-0.9/test1.c +164 -0
- data/ext/parsley/json-c-0.9/test2 +130 -0
- data/ext/parsley/json-c-0.9/test2.c +20 -0
- data/ext/parsley/json-c-0.9/test3 +130 -0
- data/ext/parsley/json-c-0.9/test3.c +23 -0
- data/ext/parsley/libtool +8890 -0
- data/ext/parsley/ltmain.sh +8406 -0
- data/ext/parsley/missing +376 -0
- data/ext/parsley/parsed_xpath.c +168 -0
- data/ext/parsley/parsed_xpath.h +34 -0
- data/ext/parsley/parser.y +631 -0
- data/ext/parsley/parsley.c +793 -0
- data/ext/parsley/parsley.h +87 -0
- data/ext/parsley/parsley_main.c +185 -0
- data/ext/parsley/parsleyc_main.c +108 -0
- data/ext/parsley/regexp.c +359 -0
- data/ext/parsley/regexp.h +36 -0
- data/ext/parsley/scanner.l +221 -0
- data/ext/parsley/test/ambiguous.html +207 -0
- data/ext/parsley/test/ambiguous.json +1 -0
- data/ext/parsley/test/ambiguous.let +6 -0
- data/ext/parsley/test/array-regression.html +5 -0
- data/ext/parsley/test/array-regression.json +1 -0
- data/ext/parsley/test/array-regression.let +10 -0
- data/ext/parsley/test/backslash.html +5 -0
- data/ext/parsley/test/backslash.json +1 -0
- data/ext/parsley/test/backslash.let +3 -0
- data/ext/parsley/test/bang.html +17 -0
- data/ext/parsley/test/bang.json +1 -0
- data/ext/parsley/test/bang.let +6 -0
- data/ext/parsley/test/collate_regression.html +324 -0
- data/ext/parsley/test/collate_regression.json +1 -0
- data/ext/parsley/test/collate_regression.let +9 -0
- data/ext/parsley/test/contains.html +3 -0
- data/ext/parsley/test/contains.json +1 -0
- data/ext/parsley/test/contains.let +3 -0
- data/ext/parsley/test/content.html +13 -0
- data/ext/parsley/test/content.json +1 -0
- data/ext/parsley/test/content.let +7 -0
- data/ext/parsley/test/cool.html +575 -0
- data/ext/parsley/test/cool.json +1 -0
- data/ext/parsley/test/cool.let +9 -0
- data/ext/parsley/test/craigs-simple.html +207 -0
- data/ext/parsley/test/craigs-simple.json +1 -0
- data/ext/parsley/test/craigs-simple.let +6 -0
- data/ext/parsley/test/craigs.html +207 -0
- data/ext/parsley/test/craigs.json +1 -0
- data/ext/parsley/test/craigs.let +9 -0
- data/ext/parsley/test/crash.html +157 -0
- data/ext/parsley/test/crash.json +1 -0
- data/ext/parsley/test/crash.let +1 -0
- data/ext/parsley/test/css_attr.html +3 -0
- data/ext/parsley/test/css_attr.json +1 -0
- data/ext/parsley/test/css_attr.let +3 -0
- data/ext/parsley/test/default-namespace.json +1 -0
- data/ext/parsley/test/default-namespace.let +3 -0
- data/ext/parsley/test/default-namespace.xml +1493 -0
- data/ext/parsley/test/div.html +8 -0
- data/ext/parsley/test/div.json +1 -0
- data/ext/parsley/test/div.let +10 -0
- data/ext/parsley/test/empty.html +3 -0
- data/ext/parsley/test/empty.json +1 -0
- data/ext/parsley/test/empty.let +1 -0
- data/ext/parsley/test/emptyish.html +207 -0
- data/ext/parsley/test/emptyish.let +3 -0
- data/ext/parsley/test/fictional-opt.html +43 -0
- data/ext/parsley/test/fictional-opt.json +1 -0
- data/ext/parsley/test/fictional-opt.let +14 -0
- data/ext/parsley/test/fictional.html +43 -0
- data/ext/parsley/test/fictional.json +1 -0
- data/ext/parsley/test/fictional.let +14 -0
- data/ext/parsley/test/function-magic.html +9 -0
- data/ext/parsley/test/function-magic.json +1 -0
- data/ext/parsley/test/function-magic.let +8 -0
- data/ext/parsley/test/hn.html +32 -0
- data/ext/parsley/test/hn.json +1 -0
- data/ext/parsley/test/hn.let +8 -0
- data/ext/parsley/test/malformed-array.html +2329 -0
- data/ext/parsley/test/malformed-array.json +1 -0
- data/ext/parsley/test/malformed-array.let +22 -0
- data/ext/parsley/test/malformed-expr.html +2329 -0
- data/ext/parsley/test/malformed-expr.json +1 -0
- data/ext/parsley/test/malformed-expr.let +16 -0
- data/ext/parsley/test/malformed-function.html +845 -0
- data/ext/parsley/test/malformed-function.json +197 -0
- data/ext/parsley/test/malformed-function.let +8 -0
- data/ext/parsley/test/malformed-json.html +2329 -0
- data/ext/parsley/test/malformed-json.json +1 -0
- data/ext/parsley/test/malformed-json.let +6 -0
- data/ext/parsley/test/malformed-xpath.html +8 -0
- data/ext/parsley/test/malformed-xpath.json +1 -0
- data/ext/parsley/test/malformed-xpath.let +7 -0
- data/ext/parsley/test/match.json +1 -0
- data/ext/parsley/test/match.let +9 -0
- data/ext/parsley/test/match.xml +11 -0
- data/ext/parsley/test/math_ambiguity.html +9 -0
- data/ext/parsley/test/math_ambiguity.json +1 -0
- data/ext/parsley/test/math_ambiguity.let +5 -0
- data/ext/parsley/test/nth-regression.html +13 -0
- data/ext/parsley/test/nth-regression.json +1 -0
- data/ext/parsley/test/nth-regression.let +3 -0
- data/ext/parsley/test/optional.html +2328 -0
- data/ext/parsley/test/optional.json +1 -0
- data/ext/parsley/test/optional.let +8 -0
- data/ext/parsley/test/outer-xml.html +6 -0
- data/ext/parsley/test/outer-xml.json +1 -0
- data/ext/parsley/test/outer-xml.let +5 -0
- data/ext/parsley/test/position.html +8 -0
- data/ext/parsley/test/position.json +1 -0
- data/ext/parsley/test/position.let +6 -0
- data/ext/parsley/test/question_regressions.html +443 -0
- data/ext/parsley/test/question_regressions.json +1 -0
- data/ext/parsley/test/question_regressions.let +6 -0
- data/ext/parsley/test/quote.json +1 -0
- data/ext/parsley/test/quote.let +8 -0
- data/ext/parsley/test/quote.xml +11 -0
- data/ext/parsley/test/reddit.html +1 -0
- data/ext/parsley/test/reddit.json +1 -0
- data/ext/parsley/test/reddit.let +12 -0
- data/ext/parsley/test/remote-fail.json +1 -0
- data/ext/parsley/test/remote.html +3 -0
- data/ext/parsley/test/remote.json +1 -0
- data/ext/parsley/test/remote.let +4 -0
- data/ext/parsley/test/replace.json +1 -0
- data/ext/parsley/test/replace.let +9 -0
- data/ext/parsley/test/replace.xml +11 -0
- data/ext/parsley/test/scope.html +10 -0
- data/ext/parsley/test/scope.json +1 -0
- data/ext/parsley/test/scope.let +6 -0
- data/ext/parsley/test/segfault.html +5 -0
- data/ext/parsley/test/segfault.json +1 -0
- data/ext/parsley/test/segfault.let +9 -0
- data/ext/parsley/test/sg-wrap.html +5 -0
- data/ext/parsley/test/sg-wrap.json +1 -0
- data/ext/parsley/test/sg-wrap.let +3 -0
- data/ext/parsley/test/sg_off.html +5 -0
- data/ext/parsley/test/sg_off.json +1 -0
- data/ext/parsley/test/sg_off.let +3 -0
- data/ext/parsley/test/test.json +1 -0
- data/ext/parsley/test/test.let +6 -0
- data/ext/parsley/test/test.xml +11 -0
- data/ext/parsley/test/trivial.html +2329 -0
- data/ext/parsley/test/trivial.json +1 -0
- data/ext/parsley/test/trivial.let +4 -0
- data/ext/parsley/test/trivial2.html +2329 -0
- data/ext/parsley/test/trivial2.json +1 -0
- data/ext/parsley/test/trivial2.let +7 -0
- data/ext/parsley/test/unbang.html +17 -0
- data/ext/parsley/test/unbang.json +1 -0
- data/ext/parsley/test/unbang.let +6 -0
- data/ext/parsley/test/unicode.html +3 -0
- data/ext/parsley/test/unicode.json +1 -0
- data/ext/parsley/test/unicode.let +1 -0
- data/ext/parsley/test/whitespace.html +8 -0
- data/ext/parsley/test/whitespace.json +1 -0
- data/ext/parsley/test/whitespace.let +3 -0
- data/ext/parsley/test/whitespace_regression.html +4 -0
- data/ext/parsley/test/whitespace_regression.json +1 -0
- data/ext/parsley/test/whitespace_regression.let +3 -0
- data/ext/parsley/test/yelp-benchmark.rb +53 -0
- data/ext/parsley/test/yelp-home.html +1004 -0
- data/ext/parsley/test/yelp-home.json +1 -0
- data/ext/parsley/test/yelp-home.let +6 -0
- data/ext/parsley/test/yelp.html +2329 -0
- data/ext/parsley/test/yelp.json +1 -0
- data/ext/parsley/test/yelp.let +12 -0
- data/ext/parsley/test/youtube.html +1940 -0
- data/ext/parsley/test/youtube.let +11 -0
- data/ext/parsley/util.c +237 -0
- data/ext/parsley/util.h +34 -0
- data/ext/parsley/xml2json.c +47 -0
- data/ext/parsley/xml2json.h +14 -0
- data/ext/parsley/y.tab.h +222 -0
- data/ext/parsley/ylwrap +222 -0
- data/lib/parsley.rb +84 -0
- data/test/test_parsley.rb +120 -0
- data/test/yelp-benchmark.rb +53 -0
- data/test/yelp-home.html +1004 -0
- data/test/yelp-home.let +6 -0
- data/test/yelp.html +2329 -0
- metadata +366 -0
|
@@ -0,0 +1,392 @@
|
|
|
1
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
2
|
+
<html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
|
3
|
+
<title>json-c: debug.h File Reference</title>
|
|
4
|
+
<link href="tabs.css" rel="stylesheet" type="text/css">
|
|
5
|
+
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
|
6
|
+
</head><body>
|
|
7
|
+
<!-- Generated by Doxygen 1.5.8 -->
|
|
8
|
+
<div class="navigation" id="top">
|
|
9
|
+
<div class="tabs">
|
|
10
|
+
<ul>
|
|
11
|
+
<li><a href="index.html"><span>Main Page</span></a></li>
|
|
12
|
+
<li><a href="annotated.html"><span>Data Structures</span></a></li>
|
|
13
|
+
<li class="current"><a href="files.html"><span>Files</span></a></li>
|
|
14
|
+
</ul>
|
|
15
|
+
</div>
|
|
16
|
+
<div class="tabs">
|
|
17
|
+
<ul>
|
|
18
|
+
<li><a href="files.html"><span>File List</span></a></li>
|
|
19
|
+
<li><a href="globals.html"><span>Globals</span></a></li>
|
|
20
|
+
</ul>
|
|
21
|
+
</div>
|
|
22
|
+
</div>
|
|
23
|
+
<div class="contents">
|
|
24
|
+
<h1>debug.h File Reference</h1><table border="0" cellpadding="0" cellspacing="0">
|
|
25
|
+
<tr><td></td></tr>
|
|
26
|
+
<tr><td colspan="2"><br><h2>Defines</h2></td></tr>
|
|
27
|
+
<tr><td class="memItemLeft" nowrap align="right" valign="top">#define </td><td class="memItemRight" valign="bottom"><a class="el" href="debug_8h.html#50f21a239fa040a10ad4cfdb4278b02b">MC_SET_DEBUG</a>(x) if (0) mc_set_debug(x)</td></tr>
|
|
28
|
+
|
|
29
|
+
<tr><td class="memItemLeft" nowrap align="right" valign="top">#define </td><td class="memItemRight" valign="bottom"><a class="el" href="debug_8h.html#cb272a4b4444b69cd995236f167f90ba">MC_GET_DEBUG</a>() (0)</td></tr>
|
|
30
|
+
|
|
31
|
+
<tr><td class="memItemLeft" nowrap align="right" valign="top">#define </td><td class="memItemRight" valign="bottom"><a class="el" href="debug_8h.html#cf1e895cb5eb7f334cbe51901e6bb918">MC_SET_SYSLOG</a>(x) if (0) mc_set_syslog(x)</td></tr>
|
|
32
|
+
|
|
33
|
+
<tr><td class="memItemLeft" nowrap align="right" valign="top">#define </td><td class="memItemRight" valign="bottom"><a class="el" href="debug_8h.html#25591d3d4754c0c6d1f2b5463fb4977e">MC_ABORT</a>(x,...) if (0) mc_abort(x, ##__VA_ARGS__)</td></tr>
|
|
34
|
+
|
|
35
|
+
<tr><td class="memItemLeft" nowrap align="right" valign="top">#define </td><td class="memItemRight" valign="bottom"><a class="el" href="debug_8h.html#fda355b35d18bf2e6a2a22d5c8eef42c">MC_DEBUG</a>(x,...) if (0) mc_debug(x, ##__VA_ARGS__)</td></tr>
|
|
36
|
+
|
|
37
|
+
<tr><td class="memItemLeft" nowrap align="right" valign="top">#define </td><td class="memItemRight" valign="bottom"><a class="el" href="debug_8h.html#11ba39cecbe449af5b86fa2f78e9da9d">MC_ERROR</a>(x,...) if (0) mc_error(x, ##__VA_ARGS__)</td></tr>
|
|
38
|
+
|
|
39
|
+
<tr><td class="memItemLeft" nowrap align="right" valign="top">#define </td><td class="memItemRight" valign="bottom"><a class="el" href="debug_8h.html#5ef640ce1e9e61c5f6632aefbbfa0041">MC_INFO</a>(x,...) if (0) mc_info(x, ##__VA_ARGS__)</td></tr>
|
|
40
|
+
|
|
41
|
+
<tr><td colspan="2"><br><h2>Functions</h2></td></tr>
|
|
42
|
+
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="debug_8h.html#f65a73617b71476020a005b20bf02726">mc_set_debug</a> (int debug)</td></tr>
|
|
43
|
+
|
|
44
|
+
<tr><td class="memItemLeft" nowrap align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="debug_8h.html#3b3ab3ae8b438384fb109a2e38646b6e">mc_get_debug</a> (void)</td></tr>
|
|
45
|
+
|
|
46
|
+
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="debug_8h.html#adb888da410116384e75a00db30da705">mc_set_syslog</a> (int syslog)</td></tr>
|
|
47
|
+
|
|
48
|
+
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="debug_8h.html#44913dbc4f1abf6614d42b22b941c092">mc_abort</a> (const char *msg,...)</td></tr>
|
|
49
|
+
|
|
50
|
+
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="debug_8h.html#600cf4cbbe19c0c15ca3710210e35aba">mc_debug</a> (const char *msg,...)</td></tr>
|
|
51
|
+
|
|
52
|
+
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="debug_8h.html#bf22ea3a331c7ff21c23da91a07c7cb2">mc_error</a> (const char *msg,...)</td></tr>
|
|
53
|
+
|
|
54
|
+
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="debug_8h.html#cbb92996a994e316ff65ed3a026e12a4">mc_info</a> (const char *msg,...)</td></tr>
|
|
55
|
+
|
|
56
|
+
</table>
|
|
57
|
+
<hr><h2>Define Documentation</h2>
|
|
58
|
+
<a class="anchor" name="25591d3d4754c0c6d1f2b5463fb4977e"></a><!-- doxytag: member="debug.h::MC_ABORT" ref="25591d3d4754c0c6d1f2b5463fb4977e" args="(x,...)" -->
|
|
59
|
+
<div class="memitem">
|
|
60
|
+
<div class="memproto">
|
|
61
|
+
<table class="memname">
|
|
62
|
+
<tr>
|
|
63
|
+
<td class="memname">#define MC_ABORT </td>
|
|
64
|
+
<td>(</td>
|
|
65
|
+
<td class="paramtype">x, <tr>
|
|
66
|
+
<td class="paramkey"></td>
|
|
67
|
+
<td></td>
|
|
68
|
+
<td class="paramtype"> <em>...</em> </td>
|
|
69
|
+
<td class="paramname"> </td>
|
|
70
|
+
<td> ) </td>
|
|
71
|
+
<td> if (0) mc_abort(x, ##__VA_ARGS__)</td>
|
|
72
|
+
</tr>
|
|
73
|
+
</table>
|
|
74
|
+
</div>
|
|
75
|
+
<div class="memdoc">
|
|
76
|
+
|
|
77
|
+
<p>
|
|
78
|
+
|
|
79
|
+
</div>
|
|
80
|
+
</div><p>
|
|
81
|
+
<a class="anchor" name="fda355b35d18bf2e6a2a22d5c8eef42c"></a><!-- doxytag: member="debug.h::MC_DEBUG" ref="fda355b35d18bf2e6a2a22d5c8eef42c" args="(x,...)" -->
|
|
82
|
+
<div class="memitem">
|
|
83
|
+
<div class="memproto">
|
|
84
|
+
<table class="memname">
|
|
85
|
+
<tr>
|
|
86
|
+
<td class="memname">#define MC_DEBUG </td>
|
|
87
|
+
<td>(</td>
|
|
88
|
+
<td class="paramtype">x, <tr>
|
|
89
|
+
<td class="paramkey"></td>
|
|
90
|
+
<td></td>
|
|
91
|
+
<td class="paramtype"> <em>...</em> </td>
|
|
92
|
+
<td class="paramname"> </td>
|
|
93
|
+
<td> ) </td>
|
|
94
|
+
<td> if (0) mc_debug(x, ##__VA_ARGS__)</td>
|
|
95
|
+
</tr>
|
|
96
|
+
</table>
|
|
97
|
+
</div>
|
|
98
|
+
<div class="memdoc">
|
|
99
|
+
|
|
100
|
+
<p>
|
|
101
|
+
|
|
102
|
+
</div>
|
|
103
|
+
</div><p>
|
|
104
|
+
<a class="anchor" name="11ba39cecbe449af5b86fa2f78e9da9d"></a><!-- doxytag: member="debug.h::MC_ERROR" ref="11ba39cecbe449af5b86fa2f78e9da9d" args="(x,...)" -->
|
|
105
|
+
<div class="memitem">
|
|
106
|
+
<div class="memproto">
|
|
107
|
+
<table class="memname">
|
|
108
|
+
<tr>
|
|
109
|
+
<td class="memname">#define MC_ERROR </td>
|
|
110
|
+
<td>(</td>
|
|
111
|
+
<td class="paramtype">x, <tr>
|
|
112
|
+
<td class="paramkey"></td>
|
|
113
|
+
<td></td>
|
|
114
|
+
<td class="paramtype"> <em>...</em> </td>
|
|
115
|
+
<td class="paramname"> </td>
|
|
116
|
+
<td> ) </td>
|
|
117
|
+
<td> if (0) mc_error(x, ##__VA_ARGS__)</td>
|
|
118
|
+
</tr>
|
|
119
|
+
</table>
|
|
120
|
+
</div>
|
|
121
|
+
<div class="memdoc">
|
|
122
|
+
|
|
123
|
+
<p>
|
|
124
|
+
|
|
125
|
+
</div>
|
|
126
|
+
</div><p>
|
|
127
|
+
<a class="anchor" name="cb272a4b4444b69cd995236f167f90ba"></a><!-- doxytag: member="debug.h::MC_GET_DEBUG" ref="cb272a4b4444b69cd995236f167f90ba" args="()" -->
|
|
128
|
+
<div class="memitem">
|
|
129
|
+
<div class="memproto">
|
|
130
|
+
<table class="memname">
|
|
131
|
+
<tr>
|
|
132
|
+
<td class="memname">#define MC_GET_DEBUG </td>
|
|
133
|
+
<td>(</td>
|
|
134
|
+
</td>
|
|
135
|
+
<td class="paramname"> </td>
|
|
136
|
+
<td> ) </td>
|
|
137
|
+
<td> (0)</td>
|
|
138
|
+
</tr>
|
|
139
|
+
</table>
|
|
140
|
+
</div>
|
|
141
|
+
<div class="memdoc">
|
|
142
|
+
|
|
143
|
+
<p>
|
|
144
|
+
|
|
145
|
+
</div>
|
|
146
|
+
</div><p>
|
|
147
|
+
<a class="anchor" name="5ef640ce1e9e61c5f6632aefbbfa0041"></a><!-- doxytag: member="debug.h::MC_INFO" ref="5ef640ce1e9e61c5f6632aefbbfa0041" args="(x,...)" -->
|
|
148
|
+
<div class="memitem">
|
|
149
|
+
<div class="memproto">
|
|
150
|
+
<table class="memname">
|
|
151
|
+
<tr>
|
|
152
|
+
<td class="memname">#define MC_INFO </td>
|
|
153
|
+
<td>(</td>
|
|
154
|
+
<td class="paramtype">x, <tr>
|
|
155
|
+
<td class="paramkey"></td>
|
|
156
|
+
<td></td>
|
|
157
|
+
<td class="paramtype"> <em>...</em> </td>
|
|
158
|
+
<td class="paramname"> </td>
|
|
159
|
+
<td> ) </td>
|
|
160
|
+
<td> if (0) mc_info(x, ##__VA_ARGS__)</td>
|
|
161
|
+
</tr>
|
|
162
|
+
</table>
|
|
163
|
+
</div>
|
|
164
|
+
<div class="memdoc">
|
|
165
|
+
|
|
166
|
+
<p>
|
|
167
|
+
|
|
168
|
+
</div>
|
|
169
|
+
</div><p>
|
|
170
|
+
<a class="anchor" name="50f21a239fa040a10ad4cfdb4278b02b"></a><!-- doxytag: member="debug.h::MC_SET_DEBUG" ref="50f21a239fa040a10ad4cfdb4278b02b" args="(x)" -->
|
|
171
|
+
<div class="memitem">
|
|
172
|
+
<div class="memproto">
|
|
173
|
+
<table class="memname">
|
|
174
|
+
<tr>
|
|
175
|
+
<td class="memname">#define MC_SET_DEBUG </td>
|
|
176
|
+
<td>(</td>
|
|
177
|
+
<td class="paramtype">x </td>
|
|
178
|
+
<td class="paramname"> </td>
|
|
179
|
+
<td> ) </td>
|
|
180
|
+
<td> if (0) mc_set_debug(x)</td>
|
|
181
|
+
</tr>
|
|
182
|
+
</table>
|
|
183
|
+
</div>
|
|
184
|
+
<div class="memdoc">
|
|
185
|
+
|
|
186
|
+
<p>
|
|
187
|
+
|
|
188
|
+
</div>
|
|
189
|
+
</div><p>
|
|
190
|
+
<a class="anchor" name="cf1e895cb5eb7f334cbe51901e6bb918"></a><!-- doxytag: member="debug.h::MC_SET_SYSLOG" ref="cf1e895cb5eb7f334cbe51901e6bb918" args="(x)" -->
|
|
191
|
+
<div class="memitem">
|
|
192
|
+
<div class="memproto">
|
|
193
|
+
<table class="memname">
|
|
194
|
+
<tr>
|
|
195
|
+
<td class="memname">#define MC_SET_SYSLOG </td>
|
|
196
|
+
<td>(</td>
|
|
197
|
+
<td class="paramtype">x </td>
|
|
198
|
+
<td class="paramname"> </td>
|
|
199
|
+
<td> ) </td>
|
|
200
|
+
<td> if (0) mc_set_syslog(x)</td>
|
|
201
|
+
</tr>
|
|
202
|
+
</table>
|
|
203
|
+
</div>
|
|
204
|
+
<div class="memdoc">
|
|
205
|
+
|
|
206
|
+
<p>
|
|
207
|
+
|
|
208
|
+
</div>
|
|
209
|
+
</div><p>
|
|
210
|
+
<hr><h2>Function Documentation</h2>
|
|
211
|
+
<a class="anchor" name="44913dbc4f1abf6614d42b22b941c092"></a><!-- doxytag: member="debug.h::mc_abort" ref="44913dbc4f1abf6614d42b22b941c092" args="(const char *msg,...)" -->
|
|
212
|
+
<div class="memitem">
|
|
213
|
+
<div class="memproto">
|
|
214
|
+
<table class="memname">
|
|
215
|
+
<tr>
|
|
216
|
+
<td class="memname">void mc_abort </td>
|
|
217
|
+
<td>(</td>
|
|
218
|
+
<td class="paramtype">const char * </td>
|
|
219
|
+
<td class="paramname"> <em>msg</em>, </td>
|
|
220
|
+
</tr>
|
|
221
|
+
<tr>
|
|
222
|
+
<td class="paramkey"></td>
|
|
223
|
+
<td></td>
|
|
224
|
+
<td class="paramtype"> </td>
|
|
225
|
+
<td class="paramname"> <em>...</em></td><td> </td>
|
|
226
|
+
</tr>
|
|
227
|
+
<tr>
|
|
228
|
+
<td></td>
|
|
229
|
+
<td>)</td>
|
|
230
|
+
<td></td><td></td><td></td>
|
|
231
|
+
</tr>
|
|
232
|
+
</table>
|
|
233
|
+
</div>
|
|
234
|
+
<div class="memdoc">
|
|
235
|
+
|
|
236
|
+
<p>
|
|
237
|
+
|
|
238
|
+
</div>
|
|
239
|
+
</div><p>
|
|
240
|
+
<a class="anchor" name="600cf4cbbe19c0c15ca3710210e35aba"></a><!-- doxytag: member="debug.h::mc_debug" ref="600cf4cbbe19c0c15ca3710210e35aba" args="(const char *msg,...)" -->
|
|
241
|
+
<div class="memitem">
|
|
242
|
+
<div class="memproto">
|
|
243
|
+
<table class="memname">
|
|
244
|
+
<tr>
|
|
245
|
+
<td class="memname">void mc_debug </td>
|
|
246
|
+
<td>(</td>
|
|
247
|
+
<td class="paramtype">const char * </td>
|
|
248
|
+
<td class="paramname"> <em>msg</em>, </td>
|
|
249
|
+
</tr>
|
|
250
|
+
<tr>
|
|
251
|
+
<td class="paramkey"></td>
|
|
252
|
+
<td></td>
|
|
253
|
+
<td class="paramtype"> </td>
|
|
254
|
+
<td class="paramname"> <em>...</em></td><td> </td>
|
|
255
|
+
</tr>
|
|
256
|
+
<tr>
|
|
257
|
+
<td></td>
|
|
258
|
+
<td>)</td>
|
|
259
|
+
<td></td><td></td><td></td>
|
|
260
|
+
</tr>
|
|
261
|
+
</table>
|
|
262
|
+
</div>
|
|
263
|
+
<div class="memdoc">
|
|
264
|
+
|
|
265
|
+
<p>
|
|
266
|
+
|
|
267
|
+
</div>
|
|
268
|
+
</div><p>
|
|
269
|
+
<a class="anchor" name="bf22ea3a331c7ff21c23da91a07c7cb2"></a><!-- doxytag: member="debug.h::mc_error" ref="bf22ea3a331c7ff21c23da91a07c7cb2" args="(const char *msg,...)" -->
|
|
270
|
+
<div class="memitem">
|
|
271
|
+
<div class="memproto">
|
|
272
|
+
<table class="memname">
|
|
273
|
+
<tr>
|
|
274
|
+
<td class="memname">void mc_error </td>
|
|
275
|
+
<td>(</td>
|
|
276
|
+
<td class="paramtype">const char * </td>
|
|
277
|
+
<td class="paramname"> <em>msg</em>, </td>
|
|
278
|
+
</tr>
|
|
279
|
+
<tr>
|
|
280
|
+
<td class="paramkey"></td>
|
|
281
|
+
<td></td>
|
|
282
|
+
<td class="paramtype"> </td>
|
|
283
|
+
<td class="paramname"> <em>...</em></td><td> </td>
|
|
284
|
+
</tr>
|
|
285
|
+
<tr>
|
|
286
|
+
<td></td>
|
|
287
|
+
<td>)</td>
|
|
288
|
+
<td></td><td></td><td></td>
|
|
289
|
+
</tr>
|
|
290
|
+
</table>
|
|
291
|
+
</div>
|
|
292
|
+
<div class="memdoc">
|
|
293
|
+
|
|
294
|
+
<p>
|
|
295
|
+
|
|
296
|
+
</div>
|
|
297
|
+
</div><p>
|
|
298
|
+
<a class="anchor" name="3b3ab3ae8b438384fb109a2e38646b6e"></a><!-- doxytag: member="debug.h::mc_get_debug" ref="3b3ab3ae8b438384fb109a2e38646b6e" args="(void)" -->
|
|
299
|
+
<div class="memitem">
|
|
300
|
+
<div class="memproto">
|
|
301
|
+
<table class="memname">
|
|
302
|
+
<tr>
|
|
303
|
+
<td class="memname">int mc_get_debug </td>
|
|
304
|
+
<td>(</td>
|
|
305
|
+
<td class="paramtype">void </td>
|
|
306
|
+
<td class="paramname"> </td>
|
|
307
|
+
<td> ) </td>
|
|
308
|
+
<td></td>
|
|
309
|
+
</tr>
|
|
310
|
+
</table>
|
|
311
|
+
</div>
|
|
312
|
+
<div class="memdoc">
|
|
313
|
+
|
|
314
|
+
<p>
|
|
315
|
+
|
|
316
|
+
</div>
|
|
317
|
+
</div><p>
|
|
318
|
+
<a class="anchor" name="cbb92996a994e316ff65ed3a026e12a4"></a><!-- doxytag: member="debug.h::mc_info" ref="cbb92996a994e316ff65ed3a026e12a4" args="(const char *msg,...)" -->
|
|
319
|
+
<div class="memitem">
|
|
320
|
+
<div class="memproto">
|
|
321
|
+
<table class="memname">
|
|
322
|
+
<tr>
|
|
323
|
+
<td class="memname">void mc_info </td>
|
|
324
|
+
<td>(</td>
|
|
325
|
+
<td class="paramtype">const char * </td>
|
|
326
|
+
<td class="paramname"> <em>msg</em>, </td>
|
|
327
|
+
</tr>
|
|
328
|
+
<tr>
|
|
329
|
+
<td class="paramkey"></td>
|
|
330
|
+
<td></td>
|
|
331
|
+
<td class="paramtype"> </td>
|
|
332
|
+
<td class="paramname"> <em>...</em></td><td> </td>
|
|
333
|
+
</tr>
|
|
334
|
+
<tr>
|
|
335
|
+
<td></td>
|
|
336
|
+
<td>)</td>
|
|
337
|
+
<td></td><td></td><td></td>
|
|
338
|
+
</tr>
|
|
339
|
+
</table>
|
|
340
|
+
</div>
|
|
341
|
+
<div class="memdoc">
|
|
342
|
+
|
|
343
|
+
<p>
|
|
344
|
+
|
|
345
|
+
</div>
|
|
346
|
+
</div><p>
|
|
347
|
+
<a class="anchor" name="f65a73617b71476020a005b20bf02726"></a><!-- doxytag: member="debug.h::mc_set_debug" ref="f65a73617b71476020a005b20bf02726" args="(int debug)" -->
|
|
348
|
+
<div class="memitem">
|
|
349
|
+
<div class="memproto">
|
|
350
|
+
<table class="memname">
|
|
351
|
+
<tr>
|
|
352
|
+
<td class="memname">void mc_set_debug </td>
|
|
353
|
+
<td>(</td>
|
|
354
|
+
<td class="paramtype">int </td>
|
|
355
|
+
<td class="paramname"> <em>debug</em> </td>
|
|
356
|
+
<td> ) </td>
|
|
357
|
+
<td></td>
|
|
358
|
+
</tr>
|
|
359
|
+
</table>
|
|
360
|
+
</div>
|
|
361
|
+
<div class="memdoc">
|
|
362
|
+
|
|
363
|
+
<p>
|
|
364
|
+
|
|
365
|
+
</div>
|
|
366
|
+
</div><p>
|
|
367
|
+
<a class="anchor" name="adb888da410116384e75a00db30da705"></a><!-- doxytag: member="debug.h::mc_set_syslog" ref="adb888da410116384e75a00db30da705" args="(int syslog)" -->
|
|
368
|
+
<div class="memitem">
|
|
369
|
+
<div class="memproto">
|
|
370
|
+
<table class="memname">
|
|
371
|
+
<tr>
|
|
372
|
+
<td class="memname">void mc_set_syslog </td>
|
|
373
|
+
<td>(</td>
|
|
374
|
+
<td class="paramtype">int </td>
|
|
375
|
+
<td class="paramname"> <em>syslog</em> </td>
|
|
376
|
+
<td> ) </td>
|
|
377
|
+
<td></td>
|
|
378
|
+
</tr>
|
|
379
|
+
</table>
|
|
380
|
+
</div>
|
|
381
|
+
<div class="memdoc">
|
|
382
|
+
|
|
383
|
+
<p>
|
|
384
|
+
|
|
385
|
+
</div>
|
|
386
|
+
</div><p>
|
|
387
|
+
</div>
|
|
388
|
+
<hr size="1"><address style="text-align: right;"><small>Generated on Fri Jul 31 10:58:15 2009 for json-c by
|
|
389
|
+
<a href="http://www.doxygen.org/index.html">
|
|
390
|
+
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.8 </small></address>
|
|
391
|
+
</body>
|
|
392
|
+
</html>
|
|
@@ -0,0 +1,441 @@
|
|
|
1
|
+
body, table, div, p, dl {
|
|
2
|
+
font-family: Lucida Grande, Verdana, Geneva, Arial, sans-serif;
|
|
3
|
+
font-size: 12px;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
/* @group Heading Levels */
|
|
7
|
+
|
|
8
|
+
h1 {
|
|
9
|
+
text-align: center;
|
|
10
|
+
font-size: 150%;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
h2 {
|
|
14
|
+
font-size: 120%;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
h3 {
|
|
18
|
+
font-size: 100%;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
/* @end */
|
|
22
|
+
|
|
23
|
+
caption {
|
|
24
|
+
font-weight: bold;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
div.qindex, div.navtab{
|
|
28
|
+
background-color: #e8eef2;
|
|
29
|
+
border: 1px solid #84b0c7;
|
|
30
|
+
text-align: center;
|
|
31
|
+
margin: 2px;
|
|
32
|
+
padding: 2px;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
div.qindex, div.navpath {
|
|
36
|
+
width: 100%;
|
|
37
|
+
line-height: 140%;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
div.navtab {
|
|
41
|
+
margin-right: 15px;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
/* @group Link Styling */
|
|
45
|
+
|
|
46
|
+
a {
|
|
47
|
+
color: #153788;
|
|
48
|
+
font-weight: normal;
|
|
49
|
+
text-decoration: none;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.contents a:visited {
|
|
53
|
+
color: #1b77c5;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
a:hover {
|
|
57
|
+
text-decoration: underline;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
a.qindex {
|
|
61
|
+
font-weight: bold;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
a.qindexHL {
|
|
65
|
+
font-weight: bold;
|
|
66
|
+
background-color: #6666cc;
|
|
67
|
+
color: #ffffff;
|
|
68
|
+
border: 1px double #9295C2;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.contents a.qindexHL:visited {
|
|
72
|
+
color: #ffffff;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
a.el {
|
|
76
|
+
font-weight: bold;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
a.elRef {
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
a.code {
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
a.codeRef {
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
/* @end */
|
|
89
|
+
|
|
90
|
+
dl.el {
|
|
91
|
+
margin-left: -1cm;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.fragment {
|
|
95
|
+
font-family: monospace, fixed;
|
|
96
|
+
font-size: 105%;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
pre.fragment {
|
|
100
|
+
border: 1px solid #CCCCCC;
|
|
101
|
+
background-color: #f5f5f5;
|
|
102
|
+
padding: 4px 6px;
|
|
103
|
+
margin: 4px 8px 4px 2px;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
div.ah {
|
|
107
|
+
background-color: black;
|
|
108
|
+
font-weight: bold;
|
|
109
|
+
color: #ffffff;
|
|
110
|
+
margin-bottom: 3px;
|
|
111
|
+
margin-top: 3px
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
div.groupHeader {
|
|
115
|
+
margin-left: 16px;
|
|
116
|
+
margin-top: 12px;
|
|
117
|
+
margin-bottom: 6px;
|
|
118
|
+
font-weight: bold;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
div.groupText {
|
|
122
|
+
margin-left: 16px;
|
|
123
|
+
font-style: italic;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
body {
|
|
127
|
+
background: white;
|
|
128
|
+
color: black;
|
|
129
|
+
margin-right: 20px;
|
|
130
|
+
margin-left: 20px;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
td.indexkey {
|
|
134
|
+
background-color: #e8eef2;
|
|
135
|
+
font-weight: bold;
|
|
136
|
+
border: 1px solid #CCCCCC;
|
|
137
|
+
margin: 2px 0px 2px 0;
|
|
138
|
+
padding: 2px 10px;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
td.indexvalue {
|
|
142
|
+
background-color: #e8eef2;
|
|
143
|
+
border: 1px solid #CCCCCC;
|
|
144
|
+
padding: 2px 10px;
|
|
145
|
+
margin: 2px 0px;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
tr.memlist {
|
|
149
|
+
background-color: #f0f0f0;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
p.formulaDsp {
|
|
153
|
+
text-align: center;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
img.formulaDsp {
|
|
157
|
+
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
img.formulaInl {
|
|
161
|
+
vertical-align: middle;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
/* @group Code Colorization */
|
|
165
|
+
|
|
166
|
+
span.keyword {
|
|
167
|
+
color: #008000
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
span.keywordtype {
|
|
171
|
+
color: #604020
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
span.keywordflow {
|
|
175
|
+
color: #e08000
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
span.comment {
|
|
179
|
+
color: #800000
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
span.preprocessor {
|
|
183
|
+
color: #806020
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
span.stringliteral {
|
|
187
|
+
color: #002080
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
span.charliteral {
|
|
191
|
+
color: #008080
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
span.vhdldigit {
|
|
195
|
+
color: #ff00ff
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
span.vhdlchar {
|
|
199
|
+
color: #000000
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
span.vhdlkeyword {
|
|
203
|
+
color: #700070
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
span.vhdllogic {
|
|
207
|
+
color: #ff0000
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
/* @end */
|
|
211
|
+
|
|
212
|
+
.search {
|
|
213
|
+
color: #003399;
|
|
214
|
+
font-weight: bold;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
form.search {
|
|
218
|
+
margin-bottom: 0px;
|
|
219
|
+
margin-top: 0px;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
input.search {
|
|
223
|
+
font-size: 75%;
|
|
224
|
+
color: #000080;
|
|
225
|
+
font-weight: normal;
|
|
226
|
+
background-color: #e8eef2;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
td.tiny {
|
|
230
|
+
font-size: 75%;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
.dirtab {
|
|
234
|
+
padding: 4px;
|
|
235
|
+
border-collapse: collapse;
|
|
236
|
+
border: 1px solid #84b0c7;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
th.dirtab {
|
|
240
|
+
background: #e8eef2;
|
|
241
|
+
font-weight: bold;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
hr {
|
|
245
|
+
height: 0;
|
|
246
|
+
border: none;
|
|
247
|
+
border-top: 1px solid #666;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
/* @group Member Descriptions */
|
|
251
|
+
|
|
252
|
+
.mdescLeft, .mdescRight,
|
|
253
|
+
.memItemLeft, .memItemRight,
|
|
254
|
+
.memTemplItemLeft, .memTemplItemRight, .memTemplParams {
|
|
255
|
+
background-color: #FAFAFA;
|
|
256
|
+
border: none;
|
|
257
|
+
margin: 4px;
|
|
258
|
+
padding: 1px 0 0 8px;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.mdescLeft, .mdescRight {
|
|
262
|
+
padding: 0px 8px 4px 8px;
|
|
263
|
+
color: #555;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
.memItemLeft, .memItemRight, .memTemplParams {
|
|
267
|
+
border-top: 1px solid #ccc;
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
.memTemplParams {
|
|
271
|
+
color: #606060;
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
/* @end */
|
|
275
|
+
|
|
276
|
+
/* @group Member Details */
|
|
277
|
+
|
|
278
|
+
/* Styles for detailed member documentation */
|
|
279
|
+
|
|
280
|
+
.memtemplate {
|
|
281
|
+
font-size: 80%;
|
|
282
|
+
color: #606060;
|
|
283
|
+
font-weight: normal;
|
|
284
|
+
margin-left: 3px;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
.memnav {
|
|
288
|
+
background-color: #e8eef2;
|
|
289
|
+
border: 1px solid #84b0c7;
|
|
290
|
+
text-align: center;
|
|
291
|
+
margin: 2px;
|
|
292
|
+
margin-right: 15px;
|
|
293
|
+
padding: 2px;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
.memitem {
|
|
297
|
+
padding: 0;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
.memname {
|
|
301
|
+
white-space: nowrap;
|
|
302
|
+
font-weight: bold;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
.memproto, .memdoc {
|
|
306
|
+
border: 1px solid #84b0c7;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
.memproto {
|
|
310
|
+
padding: 0;
|
|
311
|
+
background-color: #d5e1e8;
|
|
312
|
+
font-weight: bold;
|
|
313
|
+
-webkit-border-top-left-radius: 8px;
|
|
314
|
+
-webkit-border-top-right-radius: 8px;
|
|
315
|
+
-moz-border-radius-topleft: 8px;
|
|
316
|
+
-moz-border-radius-topright: 8px;
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
.memdoc {
|
|
320
|
+
padding: 2px 5px;
|
|
321
|
+
background-color: #eef3f5;
|
|
322
|
+
border-top-width: 0;
|
|
323
|
+
-webkit-border-bottom-left-radius: 8px;
|
|
324
|
+
-webkit-border-bottom-right-radius: 8px;
|
|
325
|
+
-moz-border-radius-bottomleft: 8px;
|
|
326
|
+
-moz-border-radius-bottomright: 8px;
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
.paramkey {
|
|
330
|
+
text-align: right;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
.paramtype {
|
|
334
|
+
white-space: nowrap;
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
.paramname {
|
|
338
|
+
color: #602020;
|
|
339
|
+
white-space: nowrap;
|
|
340
|
+
}
|
|
341
|
+
.paramname em {
|
|
342
|
+
font-style: normal;
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
/* @end */
|
|
346
|
+
|
|
347
|
+
/* @group Directory (tree) */
|
|
348
|
+
|
|
349
|
+
/* for the tree view */
|
|
350
|
+
|
|
351
|
+
.ftvtree {
|
|
352
|
+
font-family: sans-serif;
|
|
353
|
+
margin: 0.5em;
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
/* these are for tree view when used as main index */
|
|
357
|
+
|
|
358
|
+
.directory {
|
|
359
|
+
font-size: 9pt;
|
|
360
|
+
font-weight: bold;
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
.directory h3 {
|
|
364
|
+
margin: 0px;
|
|
365
|
+
margin-top: 1em;
|
|
366
|
+
font-size: 11pt;
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
/*
|
|
370
|
+
The following two styles can be used to replace the root node title
|
|
371
|
+
with an image of your choice. Simply uncomment the next two styles,
|
|
372
|
+
specify the name of your image and be sure to set 'height' to the
|
|
373
|
+
proper pixel height of your image.
|
|
374
|
+
*/
|
|
375
|
+
|
|
376
|
+
/*
|
|
377
|
+
.directory h3.swap {
|
|
378
|
+
height: 61px;
|
|
379
|
+
background-repeat: no-repeat;
|
|
380
|
+
background-image: url("yourimage.gif");
|
|
381
|
+
}
|
|
382
|
+
.directory h3.swap span {
|
|
383
|
+
display: none;
|
|
384
|
+
}
|
|
385
|
+
*/
|
|
386
|
+
|
|
387
|
+
.directory > h3 {
|
|
388
|
+
margin-top: 0;
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
.directory p {
|
|
392
|
+
margin: 0px;
|
|
393
|
+
white-space: nowrap;
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
.directory div {
|
|
397
|
+
display: none;
|
|
398
|
+
margin: 0px;
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
.directory img {
|
|
402
|
+
vertical-align: -30%;
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
/* these are for tree view when not used as main index */
|
|
406
|
+
|
|
407
|
+
.directory-alt {
|
|
408
|
+
font-size: 100%;
|
|
409
|
+
font-weight: bold;
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
.directory-alt h3 {
|
|
413
|
+
margin: 0px;
|
|
414
|
+
margin-top: 1em;
|
|
415
|
+
font-size: 11pt;
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
.directory-alt > h3 {
|
|
419
|
+
margin-top: 0;
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
.directory-alt p {
|
|
423
|
+
margin: 0px;
|
|
424
|
+
white-space: nowrap;
|
|
425
|
+
}
|
|
426
|
+
|
|
427
|
+
.directory-alt div {
|
|
428
|
+
display: none;
|
|
429
|
+
margin: 0px;
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
.directory-alt img {
|
|
433
|
+
vertical-align: -30%;
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
/* @end */
|
|
437
|
+
|
|
438
|
+
address {
|
|
439
|
+
font-style: normal;
|
|
440
|
+
color: #333;
|
|
441
|
+
}
|