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

Side by Side Diff: swig/Lib/python/pydocs.swg

Issue 553095: Checkin swig binaries for win, linux and Mac... (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/
Patch Set: '' Created 10 years, 11 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 | « swig/Lib/python/pycontainer.swg ('k') | swig/Lib/python/pyerrors.swg » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1
2 // basic doc for primitive types....
3
4 #ifdef SWIG_DOC_DOXYGEN_STYLE
5 %typemap(doc) SWIGTYPE "@param $1_name $1_type value";
6 %typemap(doc) SWIGTYPE* "@param $1_name $1_type value";
7 %typemap(doc) const SWIGTYPE& "@param $1_name $1_type value";
8 %typemap(doc) enum SWIGTYPE "@param $1_name enum $1_type value";
9 #else
10 %typemap(doc) SWIGTYPE "$1_name: $1_type value";
11 %typemap(doc) SWIGTYPE* "$1_name: $1_type value";
12 %typemap(doc) const SWIGTYPE& "$1_name: $1_type value";
13 %typemap(doc) enum SWIGTYPE "$1_name: enum $1_type value";
14
15 %typemap(doc) SWIGTYPE *INOUT "$1_name: $1_type input/ouput value";
16 %typemap(doc) SWIGTYPE *INPUT "$1_name: $1_type input value";
17 %typemap(doc) SWIGTYPE *OUTPUT "$1_name: $1_type output value";
18 #endif
OLDNEW
« no previous file with comments | « swig/Lib/python/pycontainer.swg ('k') | swig/Lib/python/pyerrors.swg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698