diff --git a/.gitignore b/.gitignore index 811b594..c5ff5c3 100644 --- a/.gitignore +++ b/.gitignore @@ -9,4 +9,8 @@ Current-Project.sublime-completions ._* .Spotlight-V100 .Trashes -*.swp \ No newline at end of file +*.swp + +*.bak + +completion/ diff --git a/SublimErl.sublime-settings b/SublimErl.sublime-settings index 64d8710..69bbf6f 100644 --- a/SublimErl.sublime-settings +++ b/SublimErl.sublime-settings @@ -1,20 +1,20 @@ { - /* - * SublimErl tries to detect automatically the paths for erl, escript, rebar and dialyzer. - * If it doesn't succeed or you prefer to manually configure these, you can do so by inputting the paths here. - * - * "erl_path": "/usr/local/bin/erl", - * "escript_path": "/usr/local/bin/escript", - * "rebar_path": "/usr/local/bin/rebar", - * "dialyzer_path": "/usr/local/bin/dialyzer" - */ + /* + * SublimErl tries to detect automatically the paths for erl, escript, rebar and dialyzer. + * If it doesn't succeed or you prefer to manually configure these, you can do so by inputting the paths here. + * + * "erl_path": "/usr/local/bin/erl", + * "escript_path": "/usr/local/bin/escript", + * "rebar_path": "/usr/local/bin/rebar", + * "dialyzer_path": "/usr/local/bin/dialyzer" + */ - // Skip Erlang libs that match the regex - "completion_skip_erlang_libs": [ - "^[cC]os[A-Z].+", - ".*orber.*", - "^oe_.+", - "^megaco_.+", - ".*wx.*" - ] + // Skip Erlang libs that match the regex + "completion_skip_erlang_libs": [ + "^[cC]os[A-Z].+", + ".*orber.*", + "^oe_.+", + "^megaco_.+", + ".*wx.*" + ] } diff --git a/bindings/Context.sublime-menu b/bindings/Context.sublime-menu index 4926546..9c5dc6f 100644 --- a/bindings/Context.sublime-menu +++ b/bindings/Context.sublime-menu @@ -1,13 +1,15 @@ [ - { "caption": "-" }, - { - "caption": "SublimErl", - "children": - [ - { "caption": "Run Contextual Test", "command": "sublim_erl_test" }, - { "caption": "Run Dialyzer", "command": "sublim_erl_dialyzer" }, - { "caption": "Run Last Run test", "command": "sublim_erl_redo" }, - { "caption": "View CT results", "command": "sublim_erl_ct_results" } - ] - } + { "caption": "-" }, + { + "caption": "SublimErl", + "children": + [ + { "caption": "Run Contextual Test", "command": "sublim_erl_test" }, + { "caption": "Run Dialyzer", "command": "sublim_erl_dialyzer" }, + { "caption": "Run Last Run test", "command": "sublim_erl_redo" }, + { "caption": "View CT results", "command": "sublim_erl_ct_results" }, + { "caption": "Format code", "command": "sublim_erl_auto_format"}, + { "caption": "Function search", "command": "sublim_erl_function_search"} + ] + } ] \ No newline at end of file diff --git a/bindings/Default (Linux).sublime-keymap b/bindings/Default (Linux).sublime-keymap index cf58db1..87cdc3a 100644 --- a/bindings/Default (Linux).sublime-keymap +++ b/bindings/Default (Linux).sublime-keymap @@ -1,9 +1,9 @@ [ - { "keys": ["ctrl+shift+f8"], "command": "sublim_erl_test", "context": [{ "key": "selector", "operator": "equal", "operand": "source.erlang" }] }, - { "keys": ["ctrl+shift+f9"], "command": "sublim_erl_dialyzer", "context": [{ "key": "selector", "operator": "equal", "operand": "source.erlang" }] }, - { "keys": ["ctrl+f8"], "command": "sublim_erl_redo" }, - { "keys": ["ctrl+alt+f8"], "command": "sublim_erl_ct_results" }, - { "keys": ["ctrl+alt+l"], "command": "sublim_erl_auto_format", "context": [{ "key": "selector", "operator": "equal", "operand": "source.erlang" }] }, - { "keys": ["ctrl+alt+p"], "command": "sublim_erl_function_search", "context": [{ "key": "selector", "operator": "equal", "operand": "source.erlang" }] }, - { "keys": ["ctrl+alt+i"], "command": "sublim_erl_man", "context": [{ "key": "selector", "operator": "equal", "operand": "source.erlang" }] } + { "keys": ["ctrl+shift+f8"], "command": "sublim_erl_test", "context": [{ "key": "selector", "operator": "equal", "operand": "source.erlang" }] }, + { "keys": ["ctrl+shift+f9"], "command": "sublim_erl_dialyzer", "context": [{ "key": "selector", "operator": "equal", "operand": "source.erlang" }] }, + { "keys": ["ctrl+f8"], "command": "sublim_erl_redo" }, + { "keys": ["ctrl+alt+f8"], "command": "sublim_erl_ct_results" }, + { "keys": ["ctrl+alt+l"], "command": "sublim_erl_auto_format", "context": [{ "key": "selector", "operator": "equal", "operand": "source.erlang" }] }, + { "keys": ["ctrl+alt+p"], "command": "sublim_erl_function_search", "context": [{ "key": "selector", "operator": "equal", "operand": "source.erlang" }] }, + { "keys": ["ctrl+alt+i"], "command": "sublim_erl_man", "context": [{ "key": "selector", "operator": "equal", "operand": "source.erlang" }] } ] diff --git a/bindings/Default (OSX).sublime-keymap b/bindings/Default (OSX).sublime-keymap index 36c8205..007a0bd 100644 --- a/bindings/Default (OSX).sublime-keymap +++ b/bindings/Default (OSX).sublime-keymap @@ -1,9 +1,9 @@ [ - { "keys": ["super+shift+f8"], "command": "sublim_erl_test", "context": [{ "key": "selector", "operator": "equal", "operand": "source.erlang" }] }, - { "keys": ["super+shift+f9"], "command": "sublim_erl_dialyzer", "context": [{ "key": "selector", "operator": "equal", "operand": "source.erlang" }] }, - { "keys": ["super+f8"], "command": "sublim_erl_redo" }, - { "keys": ["super+alt+f8"], "command": "sublim_erl_ct_results" }, - { "keys": ["super+alt+l"], "command": "sublim_erl_auto_format", "context": [{ "key": "selector", "operator": "equal", "operand": "source.erlang" }] }, - { "keys": ["super+alt+p"], "command": "sublim_erl_function_search", "context": [{ "key": "selector", "operator": "equal", "operand": "source.erlang" }] }, - { "keys": ["super+alt+i"], "command": "sublim_erl_man", "context": [{ "key": "selector", "operator": "equal", "operand": "source.erlang" }] } + { "keys": ["super+shift+f8"], "command": "sublim_erl_test", "context": [{ "key": "selector", "operator": "equal", "operand": "source.erlang" }] }, + { "keys": ["super+shift+f9"], "command": "sublim_erl_dialyzer", "context": [{ "key": "selector", "operator": "equal", "operand": "source.erlang" }] }, + { "keys": ["super+f8"], "command": "sublim_erl_redo" }, + { "keys": ["super+alt+f8"], "command": "sublim_erl_ct_results" }, + { "keys": ["super+alt+l"], "command": "sublim_erl_auto_format", "context": [{ "key": "selector", "operator": "equal", "operand": "source.erlang" }] }, + { "keys": ["super+alt+p"], "command": "sublim_erl_function_search", "context": [{ "key": "selector", "operator": "equal", "operand": "source.erlang" }] }, + { "keys": ["super+alt+i"], "command": "sublim_erl_man", "context": [{ "key": "selector", "operator": "equal", "operand": "source.erlang" }] } ] diff --git a/completion/Erlang-Libs.dirinfo b/completion/Erlang-Libs.dirinfo deleted file mode 100644 index c3a1c49..0000000 --- a/completion/Erlang-Libs.dirinfo +++ /dev/null @@ -1,114 +0,0 @@ -(lp0 -S'appmon-2.1.14.1' -p1 -aS'asn1-1.7' -p2 -aS'common_test-1.6.1' -p3 -aS'compiler-4.8.1' -p4 -aS'cosEvent-2.1.12' -p5 -aS'cosEventDomain-1.1.12' -p6 -aS'cosFileTransfer-1.1.13' -p7 -aS'cosNotification-1.1.18' -p8 -aS'cosProperty-1.1.15' -p9 -aS'cosTime-1.1.12' -p10 -aS'cosTransactions-1.2.12' -p11 -aS'crypto-2.1' -p12 -aS'debugger-3.2.8' -p13 -aS'dialyzer-2.5.1' -p14 -aS'diameter-1.1' -p15 -aS'edoc-0.7.9.1' -p16 -aS'eldap-1.0' -p17 -aS'erl_docgen-0.3.1' -p18 -aS'erl_interface-3.7.7' -p19 -aS'erts-5.9.1' -p20 -aS'et-1.4.4.1' -p21 -aS'eunit-2.2.2' -p22 -aS'gs-1.5.15.1' -p23 -aS'hipe-3.9.1' -p24 -aS'ic-4.2.30' -p25 -aS'inets-5.9' -p26 -aS'inviso-0.6.3' -p27 -aS'jinterface-1.5.6' -p28 -aS'kernel-2.15.1' -p29 -aS'megaco-3.16.0.1' -p30 -aS'mnesia-4.7' -p31 -aS'observer-1.1' -p32 -aS'odbc-2.10.12' -p33 -aS'orber-3.6.24' -p34 -aS'os_mon-2.2.9' -p35 -aS'otp_mibs-1.0.7' -p36 -aS'parsetools-2.0.7' -p37 -aS'percept-0.8.6.1' -p38 -aS'pman-2.7.1.2' -p39 -aS'public_key-0.15' -p40 -aS'reltool-0.6' -p41 -aS'runtime_tools-1.8.8' -p42 -aS'sasl-2.2.1' -p43 -aS'snmp-4.22' -p44 -aS'ssh-2.1' -p45 -aS'ssl-5.0.1' -p46 -aS'stdlib-1.18.1' -p47 -aS'syntax_tools-1.6.8' -p48 -aS'test_server-3.5.1' -p49 -aS'toolbar-1.4.2.2' -p50 -aS'tools-2.6.7' -p51 -aS'tv-2.1.4.9' -p52 -aS'typer-0.9.3' -p53 -aS'webtool-0.8.9.1' -p54 -aS'wx-0.99.2' -p55 -aS'xmerl-1.3.1' -p56 -a. \ No newline at end of file diff --git a/completion/Erlang-Libs.disasm b/completion/Erlang-Libs.disasm deleted file mode 100644 index 7094435..0000000 --- a/completion/Erlang-Libs.disasm +++ /dev/null @@ -1,256538 +0,0 @@ -(dp0 -S'wxKeyEvent' -p1 -(lp2 -(S'altDown/1' -p3 -S'altDown(${1:This}) $2' -p4 -tp5 -a(S'cmdDown/1' -p6 -S'cmdDown(${1:This}) $2' -p7 -tp8 -a(S'controlDown/1' -p9 -S'controlDown(${1:This}) $2' -p10 -tp11 -a(S'getId/1' -p12 -S'getId(${1:This}) $2' -p13 -tp14 -a(S'getKeyCode/1' -p15 -S'getKeyCode(${1:This}) $2' -p16 -tp17 -a(S'getModifiers/1' -p18 -S'getModifiers(${1:This}) $2' -p19 -tp20 -a(S'getPosition/1' -p21 -S'getPosition(${1:This}) $2' -p22 -tp23 -a(S'getRawKeyCode/1' -p24 -S'getRawKeyCode(${1:This}) $2' -p25 -tp26 -a(S'getRawKeyFlags/1' -p27 -S'getRawKeyFlags(${1:This}) $2' -p28 -tp29 -a(S'getSkipped/1' -p30 -S'getSkipped(${1:This}) $2' -p31 -tp32 -a(S'getTimestamp/1' -p33 -S'getTimestamp(${1:This}) $2' -p34 -tp35 -a(S'getUnicodeKey/1' -p36 -S'getUnicodeKey(${1:This}) $2' -p37 -tp38 -a(S'getX/1' -p39 -S'getX(${1:This}) $2' -p40 -tp41 -a(S'getY/1' -p42 -S'getY(${1:This}) $2' -p43 -tp44 -a(S'hasModifiers/1' -p45 -S'hasModifiers(${1:This}) $2' -p46 -tp47 -a(S'isCommandEvent/1' -p48 -S'isCommandEvent(${1:This}) $2' -p49 -tp50 -a(S'metaDown/1' -p51 -S'metaDown(${1:This}) $2' -p52 -tp53 -a(S'parent_class/1' -p54 -S'parent_class(${1:Param1}) $2' -p55 -tp56 -a(S'resumePropagation/2' -p57 -S'resumePropagation(${1:This}, ${2:PropagationLevel}) $3' -p58 -tp59 -a(S'shiftDown/1' -p60 -S'shiftDown(${1:This}) $2' -p61 -tp62 -a(S'shouldPropagate/1' -p63 -S'shouldPropagate(${1:This}) $2' -p64 -tp65 -a(S'skip/1' -p66 -S'skip(${1:This}) $2' -p67 -tp68 -a(S'skip/2' -p69 -S'skip(${1:This}, ${2:Options}) $3' -p70 -tp71 -a(S'stopPropagation/1' -p72 -S'stopPropagation(${1:This}) $2' -p73 -tp74 -asS'wxWindow' -p75 -(lp76 -(S"'Destroy'/1" -p77 -S"'Destroy'(${1:This}) $2" -p78 -tp79 -a(S'cacheBestSize/2' -p80 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p81 -tp82 -a(S'captureMouse/1' -p83 -S'captureMouse(${1:This}) $2' -p84 -tp85 -a(S'center/1' -p86 -S'center(${1:This}) $2' -p87 -tp88 -a(S'center/2' -p89 -S'center(${1:This}, ${2:Param2}) $3' -p90 -tp91 -a(S'centerOnParent/1' -p92 -S'centerOnParent(${1:This}) $2' -p93 -tp94 -a(S'centerOnParent/2' -p95 -S'centerOnParent(${1:This}, ${2:Param2}) $3' -p96 -tp97 -a(S'centre/1' -p98 -S'centre(${1:This}) $2' -p99 -tp100 -a(S'centre/2' -p101 -S'centre(${1:This}, ${2:Param2}) $3' -p102 -tp103 -a(S'centreOnParent/1' -p104 -S'centreOnParent(${1:This}) $2' -p105 -tp106 -a(S'centreOnParent/2' -p107 -S'centreOnParent(${1:This}, ${2:Param2}) $3' -p108 -tp109 -a(S'clearBackground/1' -p110 -S'clearBackground(${1:This}) $2' -p111 -tp112 -a(S'clientToScreen/2' -p113 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p114 -tp115 -a(S'clientToScreen/3' -p116 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p117 -tp118 -a(S'close/1' -p119 -S'close(${1:This}) $2' -p120 -tp121 -a(S'close/2' -p122 -S'close(${1:This}, ${2:Param2}) $3' -p123 -tp124 -a(S'connect/2' -p125 -S'connect(${1:This}, ${2:EventType}) $3' -p126 -tp127 -a(S'connect/3' -p128 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p129 -tp130 -a(S'convertDialogToPixels/2' -p131 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p132 -tp133 -a(S'convertPixelsToDialog/2' -p134 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p135 -tp136 -a(S'destroy/1' -p137 -S'destroy(${1:This}) $2' -p138 -tp139 -a(S'destroyChildren/1' -p140 -S'destroyChildren(${1:This}) $2' -p141 -tp142 -a(S'disable/1' -p143 -S'disable(${1:This}) $2' -p144 -tp145 -a(S'disconnect/1' -p146 -S'disconnect(${1:This}) $2' -p147 -tp148 -a(S'disconnect/2' -p149 -S'disconnect(${1:This}, ${2:EventType}) $3' -p150 -tp151 -a(S'disconnect/3' -p152 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p153 -tp154 -a(S'enable/1' -p155 -S'enable(${1:This}) $2' -p156 -tp157 -a(S'enable/2' -p158 -S'enable(${1:This}, ${2:Param2}) $3' -p159 -tp160 -a(S'findFocus/0' -p161 -S'findFocus() $1' -p162 -tp163 -a(S'findWindow/2' -p164 -S'findWindow(${1:This}, ${2:Winid}) $3' -p165 -tp166 -a(S'findWindowById/1' -p167 -S'findWindowById(${1:Winid}) $2' -p168 -tp169 -a(S'findWindowById/2' -p170 -S'findWindowById(${1:Winid}, ${2:Param2}) $3' -p171 -tp172 -a(S'findWindowByLabel/1' -p173 -S'findWindowByLabel(${1:Label}) $2' -p174 -tp175 -a(S'findWindowByLabel/2' -p176 -S'findWindowByLabel(${1:Label}, ${2:Param2}) $3' -p177 -tp178 -a(S'findWindowByName/1' -p179 -S'findWindowByName(${1:Name}) $2' -p180 -tp181 -a(S'findWindowByName/2' -p182 -S'findWindowByName(${1:Name}, ${2:Param2}) $3' -p183 -tp184 -a(S'fit/1' -p185 -S'fit(${1:This}) $2' -p186 -tp187 -a(S'fitInside/1' -p188 -S'fitInside(${1:This}) $2' -p189 -tp190 -a(S'freeze/1' -p191 -S'freeze(${1:This}) $2' -p192 -tp193 -a(S'getAcceleratorTable/1' -p194 -S'getAcceleratorTable(${1:This}) $2' -p195 -tp196 -a(S'getBackgroundColour/1' -p197 -S'getBackgroundColour(${1:This}) $2' -p198 -tp199 -a(S'getBackgroundStyle/1' -p200 -S'getBackgroundStyle(${1:This}) $2' -p201 -tp202 -a(S'getBestSize/1' -p203 -S'getBestSize(${1:This}) $2' -p204 -tp205 -a(S'getCapture/0' -p206 -S'getCapture() $1' -p207 -tp208 -a(S'getCaret/1' -p209 -S'getCaret(${1:This}) $2' -p210 -tp211 -a(S'getCharHeight/1' -p212 -S'getCharHeight(${1:This}) $2' -p213 -tp214 -a(S'getCharWidth/1' -p215 -S'getCharWidth(${1:This}) $2' -p216 -tp217 -a(S'getChildren/1' -p218 -S'getChildren(${1:This}) $2' -p219 -tp220 -a(S'getClientSize/1' -p221 -S'getClientSize(${1:This}) $2' -p222 -tp223 -a(S'getContainingSizer/1' -p224 -S'getContainingSizer(${1:This}) $2' -p225 -tp226 -a(S'getCursor/1' -p227 -S'getCursor(${1:This}) $2' -p228 -tp229 -a(S'getDropTarget/1' -p230 -S'getDropTarget(${1:This}) $2' -p231 -tp232 -a(S'getEventHandler/1' -p233 -S'getEventHandler(${1:This}) $2' -p234 -tp235 -a(S'getExtraStyle/1' -p236 -S'getExtraStyle(${1:This}) $2' -p237 -tp238 -a(S'getFont/1' -p239 -S'getFont(${1:This}) $2' -p240 -tp241 -a(S'getForegroundColour/1' -p242 -S'getForegroundColour(${1:This}) $2' -p243 -tp244 -a(S'getGrandParent/1' -p245 -S'getGrandParent(${1:This}) $2' -p246 -tp247 -a(S'getHandle/1' -p248 -S'getHandle(${1:This}) $2' -p249 -tp250 -a(S'getHelpText/1' -p251 -S'getHelpText(${1:This}) $2' -p252 -tp253 -a(S'getId/1' -p254 -S'getId(${1:This}) $2' -p255 -tp256 -a(S'getLabel/1' -p257 -S'getLabel(${1:This}) $2' -p258 -tp259 -a(S'getMaxSize/1' -p260 -S'getMaxSize(${1:This}) $2' -p261 -tp262 -a(S'getMinSize/1' -p263 -S'getMinSize(${1:This}) $2' -p264 -tp265 -a(S'getName/1' -p266 -S'getName(${1:This}) $2' -p267 -tp268 -a(S'getParent/1' -p269 -S'getParent(${1:This}) $2' -p270 -tp271 -a(S'getPosition/1' -p272 -S'getPosition(${1:This}) $2' -p273 -tp274 -a(S'getRect/1' -p275 -S'getRect(${1:This}) $2' -p276 -tp277 -a(S'getScreenPosition/1' -p278 -S'getScreenPosition(${1:This}) $2' -p279 -tp280 -a(S'getScreenRect/1' -p281 -S'getScreenRect(${1:This}) $2' -p282 -tp283 -a(S'getScrollPos/2' -p284 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p285 -tp286 -a(S'getScrollRange/2' -p287 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p288 -tp289 -a(S'getScrollThumb/2' -p290 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p291 -tp292 -a(S'getSize/1' -p293 -S'getSize(${1:This}) $2' -p294 -tp295 -a(S'getSizer/1' -p296 -S'getSizer(${1:This}) $2' -p297 -tp298 -a(S'getTextExtent/2' -p299 -S'getTextExtent(${1:This}, ${2:String}) $3' -p300 -tp301 -a(S'getTextExtent/3' -p302 -S'getTextExtent(${1:This}, ${2:String}, ${3:Param3}) $4' -p303 -tp304 -a(S'getToolTip/1' -p305 -S'getToolTip(${1:This}) $2' -p306 -tp307 -a(S'getUpdateRegion/1' -p308 -S'getUpdateRegion(${1:This}) $2' -p309 -tp310 -a(S'getVirtualSize/1' -p311 -S'getVirtualSize(${1:This}) $2' -p312 -tp313 -a(S'getWindowStyleFlag/1' -p314 -S'getWindowStyleFlag(${1:This}) $2' -p315 -tp316 -a(S'getWindowVariant/1' -p317 -S'getWindowVariant(${1:This}) $2' -p318 -tp319 -a(S'hasCapture/1' -p320 -S'hasCapture(${1:This}) $2' -p321 -tp322 -a(S'hasScrollbar/2' -p323 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p324 -tp325 -a(S'hasTransparentBackground/1' -p326 -S'hasTransparentBackground(${1:This}) $2' -p327 -tp328 -a(S'hide/1' -p329 -S'hide(${1:This}) $2' -p330 -tp331 -a(S'inheritAttributes/1' -p332 -S'inheritAttributes(${1:This}) $2' -p333 -tp334 -a(S'initDialog/1' -p335 -S'initDialog(${1:This}) $2' -p336 -tp337 -a(S'invalidateBestSize/1' -p338 -S'invalidateBestSize(${1:This}) $2' -p339 -tp340 -a(S'isEnabled/1' -p341 -S'isEnabled(${1:This}) $2' -p342 -tp343 -a(S'isExposed/2' -p344 -S'isExposed(${1:This}, ${2:Pt}) $3' -p345 -tp346 -a(S'isExposed/3' -p347 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p348 -tp349 -a(S'isExposed/5' -p350 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p351 -tp352 -a(S'isRetained/1' -p353 -S'isRetained(${1:This}) $2' -p354 -tp355 -a(S'isShown/1' -p356 -S'isShown(${1:This}) $2' -p357 -tp358 -a(S'isTopLevel/1' -p359 -S'isTopLevel(${1:This}) $2' -p360 -tp361 -a(S'layout/1' -p362 -S'layout(${1:This}) $2' -p363 -tp364 -a(S'lineDown/1' -p365 -S'lineDown(${1:This}) $2' -p366 -tp367 -a(S'lineUp/1' -p368 -S'lineUp(${1:This}) $2' -p369 -tp370 -a(S'lower/1' -p371 -S'lower(${1:This}) $2' -p372 -tp373 -a(S'makeModal/1' -p374 -S'makeModal(${1:This}) $2' -p375 -tp376 -a(S'makeModal/2' -p377 -S'makeModal(${1:This}, ${2:Param2}) $3' -p378 -tp379 -a(S'move/2' -p380 -S'move(${1:This}, ${2:Pt}) $3' -p381 -tp382 -a(S'move/3' -p383 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p384 -tp385 -a(S'move/4' -p386 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Param4}) $5' -p387 -tp388 -a(S'moveAfterInTabOrder/2' -p389 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p390 -tp391 -a(S'moveBeforeInTabOrder/2' -p392 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p393 -tp394 -a(S'navigate/1' -p395 -S'navigate(${1:This}) $2' -p396 -tp397 -a(S'navigate/2' -p398 -S'navigate(${1:This}, ${2:Param2}) $3' -p399 -tp400 -a(S'new/0' -p401 -S'new() $1' -p402 -tp403 -a(S'new/2' -p404 -S'new(${1:Parent}, ${2:Id}) $3' -p405 -tp406 -a(S'new/3' -p407 -S'new(${1:Parent}, ${2:Id}, ${3:Param3}) $4' -p408 -tp409 -a(S'pageDown/1' -p410 -S'pageDown(${1:This}) $2' -p411 -tp412 -a(S'pageUp/1' -p413 -S'pageUp(${1:This}) $2' -p414 -tp415 -a(S'parent_class/1' -p416 -S'parent_class(${1:Param1}) $2' -p417 -tp418 -a(S'popEventHandler/1' -p419 -S'popEventHandler(${1:This}) $2' -p420 -tp421 -a(S'popEventHandler/2' -p422 -S'popEventHandler(${1:This}, ${2:Param2}) $3' -p423 -tp424 -a(S'popupMenu/2' -p425 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p426 -tp427 -a(S'popupMenu/3' -p428 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Param3}) $4' -p429 -tp430 -a(S'popupMenu/4' -p431 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p432 -tp433 -a(S'raise/1' -p434 -S'raise(${1:This}) $2' -p435 -tp436 -a(S'refresh/1' -p437 -S'refresh(${1:This}) $2' -p438 -tp439 -a(S'refresh/2' -p440 -S'refresh(${1:This}, ${2:Param2}) $3' -p441 -tp442 -a(S'refreshRect/2' -p443 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p444 -tp445 -a(S'refreshRect/3' -p446 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Param3}) $4' -p447 -tp448 -a(S'releaseMouse/1' -p449 -S'releaseMouse(${1:This}) $2' -p450 -tp451 -a(S'removeChild/2' -p452 -S'removeChild(${1:This}, ${2:Child}) $3' -p453 -tp454 -a(S'reparent/2' -p455 -S'reparent(${1:This}, ${2:NewParent}) $3' -p456 -tp457 -a(S'screenToClient/1' -p458 -S'screenToClient(${1:This}) $2' -p459 -tp460 -a(S'screenToClient/2' -p461 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p462 -tp463 -a(S'scrollLines/2' -p464 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p465 -tp466 -a(S'scrollPages/2' -p467 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p468 -tp469 -a(S'scrollWindow/3' -p470 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p471 -tp472 -a(S'scrollWindow/4' -p473 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Param4}) $5' -p474 -tp475 -a(S'setAcceleratorTable/2' -p476 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p477 -tp478 -a(S'setAutoLayout/2' -p479 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p480 -tp481 -a(S'setBackgroundColour/2' -p482 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p483 -tp484 -a(S'setBackgroundStyle/2' -p485 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p486 -tp487 -a(S'setCaret/2' -p488 -S'setCaret(${1:This}, ${2:Caret}) $3' -p489 -tp490 -a(S'setClientSize/2' -p491 -S'setClientSize(${1:This}, ${2:Size}) $3' -p492 -tp493 -a(S'setClientSize/3' -p494 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p495 -tp496 -a(S'setContainingSizer/2' -p497 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p498 -tp499 -a(S'setCursor/2' -p500 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p501 -tp502 -a(S'setDropTarget/2' -p503 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p504 -tp505 -a(S'setExtraStyle/2' -p506 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p507 -tp508 -a(S'setFocus/1' -p509 -S'setFocus(${1:This}) $2' -p510 -tp511 -a(S'setFocusFromKbd/1' -p512 -S'setFocusFromKbd(${1:This}) $2' -p513 -tp514 -a(S'setFont/2' -p515 -S'setFont(${1:This}, ${2:Font}) $3' -p516 -tp517 -a(S'setForegroundColour/2' -p518 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p519 -tp520 -a(S'setHelpText/2' -p521 -S'setHelpText(${1:This}, ${2:Text}) $3' -p522 -tp523 -a(S'setId/2' -p524 -S'setId(${1:This}, ${2:Winid}) $3' -p525 -tp526 -a(S'setLabel/2' -p527 -S'setLabel(${1:This}, ${2:Label}) $3' -p528 -tp529 -a(S'setMaxSize/2' -p530 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p531 -tp532 -a(S'setMinSize/2' -p533 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p534 -tp535 -a(S'setName/2' -p536 -S'setName(${1:This}, ${2:Name}) $3' -p537 -tp538 -a(S'setOwnBackgroundColour/2' -p539 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p540 -tp541 -a(S'setOwnFont/2' -p542 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p543 -tp544 -a(S'setOwnForegroundColour/2' -p545 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p546 -tp547 -a(S'setPalette/2' -p548 -S'setPalette(${1:This}, ${2:Pal}) $3' -p549 -tp550 -a(S'setScrollPos/3' -p551 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p552 -tp553 -a(S'setScrollPos/4' -p554 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Param4}) $5' -p555 -tp556 -a(S'setScrollbar/5' -p557 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p558 -tp559 -a(S'setScrollbar/6' -p560 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Param6}) $7' -p561 -tp562 -a(S'setSize/2' -p563 -S'setSize(${1:This}, ${2:Rect}) $3' -p564 -tp565 -a(S'setSize/3' -p566 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p567 -tp568 -a(S'setSize/5' -p569 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p570 -tp571 -a(S'setSize/6' -p572 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Param6}) $7' -p573 -tp574 -a(S'setSizeHints/2' -p575 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p576 -tp577 -a(S'setSizeHints/3' -p578 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p579 -tp580 -a(S'setSizeHints/4' -p581 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Param4}) $5' -p582 -tp583 -a(S'setSizer/2' -p584 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p585 -tp586 -a(S'setSizer/3' -p587 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Param3}) $4' -p588 -tp589 -a(S'setSizerAndFit/2' -p590 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p591 -tp592 -a(S'setSizerAndFit/3' -p593 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Param3}) $4' -p594 -tp595 -a(S'setThemeEnabled/2' -p596 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p597 -tp598 -a(S'setToolTip/2' -p599 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p600 -tp601 -a(S'setVirtualSize/2' -p602 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p603 -tp604 -a(S'setVirtualSize/3' -p605 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p606 -tp607 -a(S'setVirtualSizeHints/2' -p608 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p609 -tp610 -a(S'setVirtualSizeHints/3' -p611 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p612 -tp613 -a(S'setVirtualSizeHints/4' -p614 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Param4}) $5' -p615 -tp616 -a(S'setWindowStyle/2' -p617 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p618 -tp619 -a(S'setWindowStyleFlag/2' -p620 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p621 -tp622 -a(S'setWindowVariant/2' -p623 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p624 -tp625 -a(S'shouldInheritColours/1' -p626 -S'shouldInheritColours(${1:This}) $2' -p627 -tp628 -a(S'show/1' -p629 -S'show(${1:This}) $2' -p630 -tp631 -a(S'show/2' -p632 -S'show(${1:This}, ${2:Param2}) $3' -p633 -tp634 -a(S'thaw/1' -p635 -S'thaw(${1:This}) $2' -p636 -tp637 -a(S'transferDataFromWindow/1' -p638 -S'transferDataFromWindow(${1:This}) $2' -p639 -tp640 -a(S'transferDataToWindow/1' -p641 -S'transferDataToWindow(${1:This}) $2' -p642 -tp643 -a(S'update/1' -p644 -S'update(${1:This}) $2' -p645 -tp646 -a(S'updateWindowUI/1' -p647 -S'updateWindowUI(${1:This}) $2' -p648 -tp649 -a(S'updateWindowUI/2' -p650 -S'updateWindowUI(${1:This}, ${2:Param2}) $3' -p651 -tp652 -a(S'validate/1' -p653 -S'validate(${1:This}) $2' -p654 -tp655 -a(S'warpPointer/3' -p656 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p657 -tp658 -asS'ct_run' -p659 -(lp660 -(S'do_run/4' -p661 -S'do_run(${1:Tests}, ${2:Skip}, ${3:Opts}, ${4:Args}) $5' -p662 -tp663 -a(S'install/1' -p664 -S'install(${1:Opts}) $2' -p665 -tp666 -a(S'install/2' -p667 -S'install(${1:Opts}, ${2:LogDir}) $3' -p668 -tp669 -a(S'refresh_logs/1' -p670 -S'refresh_logs(${1:LogDir}) $2' -p671 -tp672 -a(S'run/1' -p673 -S'run(${1:TestDirs}) $2' -p674 -tp675 -a(S'run/2' -p676 -S'run(${1:TestDir}, ${2:Suite}) $3' -p677 -tp678 -a(S'run/3' -p679 -S'run(${1:TestDir}, ${2:Suite}, ${3:Cases}) $4' -p680 -tp681 -a(S'run_make/3' -p682 -S'run_make(${1:TestDir}, ${2:Mod}, ${3:UserInclude}) $4' -p683 -tp684 -a(S'run_test/1' -p685 -S'run_test(${1:StartOpt}) $2' -p686 -tp687 -a(S'run_test2/1' -p688 -S'run_test2(${1:StartOpts}) $2' -p689 -tp690 -a(S'run_testspec/1' -p691 -S'run_testspec(${1:TestSpec}) $2' -p692 -tp693 -a(S'script_start/0' -p694 -S'script_start() $1' -p695 -tp696 -a(S'script_start1/2' -p697 -S'script_start1(${1:Parent}, ${2:Args}) $3' -p698 -tp699 -a(S'script_usage/0' -p700 -S'script_usage() $1' -p701 -tp702 -a(S'step/3' -p703 -S'step(${1:TestDir}, ${2:Suite}, ${3:Case}) $4' -p704 -tp705 -a(S'step/4' -p706 -S'step() $1' -p707 -tp708 -a(S'tests/1' -p709 -S'tests(${1:DirSuites}) $2' -p710 -tp711 -a(S'tests/2' -p712 -S'tests(${1:TestDir}, ${2:Cases}) $3' -p713 -tp714 -a(S'tests/3' -p715 -S'tests(${1:TestDir}, ${2:Suites}, ${3:Cases}) $4' -p716 -tp717 -a(S'variables_file_name/1' -p718 -S'variables_file_name(${1:Dir}) $2' -p719 -tp720 -asS'CosNotifyChannelAdmin_SupplierAdmin' -p721 -(lp722 -(S"'_get_MyChannel'/1" -p723 -S"'_get_MyChannel'(${1:OE_THIS}) $2" -p724 -tp725 -a(S"'_get_MyChannel'/2" -p726 -S"'_get_MyChannel'(${1:OE_THIS}, ${2:OE_Options}) $3" -p727 -tp728 -a(S"'_get_MyID'/1" -p729 -S"'_get_MyID'(${1:OE_THIS}) $2" -p730 -tp731 -a(S"'_get_MyID'/2" -p732 -S"'_get_MyID'(${1:OE_THIS}, ${2:OE_Options}) $3" -p733 -tp734 -a(S"'_get_MyOperator'/1" -p735 -S"'_get_MyOperator'(${1:OE_THIS}) $2" -p736 -tp737 -a(S"'_get_MyOperator'/2" -p738 -S"'_get_MyOperator'(${1:OE_THIS}, ${2:OE_Options}) $3" -p739 -tp740 -a(S"'_get_pull_consumers'/1" -p741 -S"'_get_pull_consumers'(${1:OE_THIS}) $2" -p742 -tp743 -a(S"'_get_pull_consumers'/2" -p744 -S"'_get_pull_consumers'(${1:OE_THIS}, ${2:OE_Options}) $3" -p745 -tp746 -a(S"'_get_push_consumers'/1" -p747 -S"'_get_push_consumers'(${1:OE_THIS}) $2" -p748 -tp749 -a(S"'_get_push_consumers'/2" -p750 -S"'_get_push_consumers'(${1:OE_THIS}, ${2:OE_Options}) $3" -p751 -tp752 -a(S'add_filter/2' -p753 -S'add_filter(${1:OE_THIS}, ${2:New_filter}) $3' -p754 -tp755 -a(S'add_filter/3' -p756 -S'add_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:New_filter}) $4' -p757 -tp758 -a(S'callAny/3' -p759 -S'callAny(${1:OE_THIS}, ${2:Event}, ${3:Stat}) $4' -p760 -tp761 -a(S'callAny/4' -p762 -S'callAny(${1:OE_THIS}, ${2:OE_Options}, ${3:Event}, ${4:Stat}) $5' -p763 -tp764 -a(S'callSeq/3' -p765 -S'callSeq(${1:OE_THIS}, ${2:Events}, ${3:Stat}) $4' -p766 -tp767 -a(S'callSeq/4' -p768 -S'callSeq(${1:OE_THIS}, ${2:OE_Options}, ${3:Events}, ${4:Stat}) $5' -p769 -tp770 -a(S'code_change/3' -p771 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p772 -tp773 -a(S'destroy/1' -p774 -S'destroy(${1:OE_THIS}) $2' -p775 -tp776 -a(S'destroy/2' -p777 -S'destroy(${1:OE_THIS}, ${2:OE_Options}) $3' -p778 -tp779 -a(S'get_all_filters/1' -p780 -S'get_all_filters(${1:OE_THIS}) $2' -p781 -tp782 -a(S'get_all_filters/2' -p783 -S'get_all_filters(${1:OE_THIS}, ${2:OE_Options}) $3' -p784 -tp785 -a(S'get_filter/2' -p786 -S'get_filter(${1:OE_THIS}, ${2:Filter}) $3' -p787 -tp788 -a(S'get_filter/3' -p789 -S'get_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:Filter}) $4' -p790 -tp791 -a(S'get_proxy_consumer/2' -p792 -S'get_proxy_consumer(${1:OE_THIS}, ${2:Proxy_id}) $3' -p793 -tp794 -a(S'get_proxy_consumer/3' -p795 -S'get_proxy_consumer(${1:OE_THIS}, ${2:OE_Options}, ${3:Proxy_id}) $4' -p796 -tp797 -a(S'get_qos/1' -p798 -S'get_qos(${1:OE_THIS}) $2' -p799 -tp800 -a(S'get_qos/2' -p801 -S'get_qos(${1:OE_THIS}, ${2:OE_Options}) $3' -p802 -tp803 -a(S'handle_call/3' -p804 -S'handle_call(${1:Param1}, ${2:OE_From}, ${3:OE_State}) $4' -p805 -tp806 -a(S'handle_cast/2' -p807 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p808 -tp809 -a(S'handle_info/2' -p810 -S'handle_info(${1:Info}, ${2:State}) $3' -p811 -tp812 -a(S'init/1' -p813 -S'init(${1:Env}) $2' -p814 -tp815 -a(S'obtain_notification_pull_consumer/2' -p816 -S'obtain_notification_pull_consumer(${1:OE_THIS}, ${2:Ctype}) $3' -p817 -tp818 -a(S'obtain_notification_pull_consumer/3' -p819 -S'obtain_notification_pull_consumer(${1:OE_THIS}, ${2:OE_Options}, ${3:Ctype}) $4' -p820 -tp821 -a(S'obtain_notification_push_consumer/2' -p822 -S'obtain_notification_push_consumer(${1:OE_THIS}, ${2:Ctype}) $3' -p823 -tp824 -a(S'obtain_notification_push_consumer/3' -p825 -S'obtain_notification_push_consumer(${1:OE_THIS}, ${2:OE_Options}, ${3:Ctype}) $4' -p826 -tp827 -a(S'obtain_pull_consumer/1' -p828 -S'obtain_pull_consumer(${1:OE_THIS}) $2' -p829 -tp830 -a(S'obtain_pull_consumer/2' -p831 -S'obtain_pull_consumer(${1:OE_THIS}, ${2:OE_Options}) $3' -p832 -tp833 -a(S'obtain_push_consumer/1' -p834 -S'obtain_push_consumer(${1:OE_THIS}) $2' -p835 -tp836 -a(S'obtain_push_consumer/2' -p837 -S'obtain_push_consumer(${1:OE_THIS}, ${2:OE_Options}) $3' -p838 -tp839 -a(S'oe_create/0' -p840 -S'oe_create() $1' -p841 -tp842 -a(S'oe_create/1' -p843 -S'oe_create(${1:Env}) $2' -p844 -tp845 -a(S'oe_create/2' -p846 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p847 -tp848 -a(S'oe_create_link/0' -p849 -S'oe_create_link() $1' -p850 -tp851 -a(S'oe_create_link/1' -p852 -S'oe_create_link(${1:Env}) $2' -p853 -tp854 -a(S'oe_create_link/2' -p855 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p856 -tp857 -a(S'oe_get_interface/0' -p858 -S'oe_get_interface() $1' -p859 -tp860 -a(S'oe_is_a/1' -p861 -S'oe_is_a(${1:Param1}) $2' -p862 -tp863 -a(S'oe_tc/1' -p864 -S'oe_tc(${1:Param1}) $2' -p865 -tp866 -a(S'offer_change/3' -p867 -S'offer_change(${1:OE_THIS}, ${2:Added}, ${3:Removed}) $4' -p868 -tp869 -a(S'offer_change/4' -p870 -S'offer_change(${1:OE_THIS}, ${2:OE_Options}, ${3:Added}, ${4:Removed}) $5' -p871 -tp872 -a(S'remove_all_filters/1' -p873 -S'remove_all_filters(${1:OE_THIS}) $2' -p874 -tp875 -a(S'remove_all_filters/2' -p876 -S'remove_all_filters(${1:OE_THIS}, ${2:OE_Options}) $3' -p877 -tp878 -a(S'remove_filter/2' -p879 -S'remove_filter(${1:OE_THIS}, ${2:Filter}) $3' -p880 -tp881 -a(S'remove_filter/3' -p882 -S'remove_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:Filter}) $4' -p883 -tp884 -a(S'set_qos/2' -p885 -S'set_qos(${1:OE_THIS}, ${2:Qos}) $3' -p886 -tp887 -a(S'set_qos/3' -p888 -S'set_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Qos}) $4' -p889 -tp890 -a(S'terminate/2' -p891 -S'terminate(${1:Reason}, ${2:State}) $3' -p892 -tp893 -a(S'typeID/0' -p894 -S'typeID() $1' -p895 -tp896 -a(S'validate_qos/2' -p897 -S'validate_qos(${1:OE_THIS}, ${2:Required_qos}) $3' -p898 -tp899 -a(S'validate_qos/3' -p900 -S'validate_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Required_qos}) $4' -p901 -tp902 -asS'wxSashWindow' -p903 -(lp904 -(S'cacheBestSize/2' -p905 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p906 -tp907 -a(S'captureMouse/1' -p908 -S'captureMouse(${1:This}) $2' -p909 -tp910 -a(S'center/1' -p911 -S'center(${1:This}) $2' -p912 -tp913 -a(S'center/2' -p914 -S'center(${1:This}, ${2:Options}) $3' -p915 -tp916 -a(S'centerOnParent/1' -p917 -S'centerOnParent(${1:This}) $2' -p918 -tp919 -a(S'centerOnParent/2' -p920 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p921 -tp922 -a(S'centre/1' -p923 -S'centre(${1:This}) $2' -p924 -tp925 -a(S'centre/2' -p926 -S'centre(${1:This}, ${2:Options}) $3' -p927 -tp928 -a(S'centreOnParent/1' -p929 -S'centreOnParent(${1:This}) $2' -p930 -tp931 -a(S'centreOnParent/2' -p932 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p933 -tp934 -a(S'clearBackground/1' -p935 -S'clearBackground(${1:This}) $2' -p936 -tp937 -a(S'clientToScreen/2' -p938 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p939 -tp940 -a(S'clientToScreen/3' -p941 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p942 -tp943 -a(S'close/1' -p944 -S'close(${1:This}) $2' -p945 -tp946 -a(S'close/2' -p947 -S'close(${1:This}, ${2:Options}) $3' -p948 -tp949 -a(S'connect/2' -p950 -S'connect(${1:This}, ${2:EventType}) $3' -p951 -tp952 -a(S'connect/3' -p953 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p954 -tp955 -a(S'convertDialogToPixels/2' -p956 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p957 -tp958 -a(S'convertPixelsToDialog/2' -p959 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p960 -tp961 -a(S'destroy/1' -p962 -S'destroy(${1:This}) $2' -p963 -tp964 -a(S'destroyChildren/1' -p965 -S'destroyChildren(${1:This}) $2' -p966 -tp967 -a(S'disable/1' -p968 -S'disable(${1:This}) $2' -p969 -tp970 -a(S'disconnect/1' -p971 -S'disconnect(${1:This}) $2' -p972 -tp973 -a(S'disconnect/2' -p974 -S'disconnect(${1:This}, ${2:EventType}) $3' -p975 -tp976 -a(S'disconnect/3' -p977 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p978 -tp979 -a(S'enable/1' -p980 -S'enable(${1:This}) $2' -p981 -tp982 -a(S'enable/2' -p983 -S'enable(${1:This}, ${2:Options}) $3' -p984 -tp985 -a(S'findWindow/2' -p986 -S'findWindow(${1:This}, ${2:Winid}) $3' -p987 -tp988 -a(S'fit/1' -p989 -S'fit(${1:This}) $2' -p990 -tp991 -a(S'fitInside/1' -p992 -S'fitInside(${1:This}) $2' -p993 -tp994 -a(S'freeze/1' -p995 -S'freeze(${1:This}) $2' -p996 -tp997 -a(S'getAcceleratorTable/1' -p998 -S'getAcceleratorTable(${1:This}) $2' -p999 -tp1000 -a(S'getBackgroundColour/1' -p1001 -S'getBackgroundColour(${1:This}) $2' -p1002 -tp1003 -a(S'getBackgroundStyle/1' -p1004 -S'getBackgroundStyle(${1:This}) $2' -p1005 -tp1006 -a(S'getBestSize/1' -p1007 -S'getBestSize(${1:This}) $2' -p1008 -tp1009 -a(S'getCaret/1' -p1010 -S'getCaret(${1:This}) $2' -p1011 -tp1012 -a(S'getCharHeight/1' -p1013 -S'getCharHeight(${1:This}) $2' -p1014 -tp1015 -a(S'getCharWidth/1' -p1016 -S'getCharWidth(${1:This}) $2' -p1017 -tp1018 -a(S'getChildren/1' -p1019 -S'getChildren(${1:This}) $2' -p1020 -tp1021 -a(S'getClientSize/1' -p1022 -S'getClientSize(${1:This}) $2' -p1023 -tp1024 -a(S'getContainingSizer/1' -p1025 -S'getContainingSizer(${1:This}) $2' -p1026 -tp1027 -a(S'getCursor/1' -p1028 -S'getCursor(${1:This}) $2' -p1029 -tp1030 -a(S'getDropTarget/1' -p1031 -S'getDropTarget(${1:This}) $2' -p1032 -tp1033 -a(S'getEventHandler/1' -p1034 -S'getEventHandler(${1:This}) $2' -p1035 -tp1036 -a(S'getExtraStyle/1' -p1037 -S'getExtraStyle(${1:This}) $2' -p1038 -tp1039 -a(S'getFont/1' -p1040 -S'getFont(${1:This}) $2' -p1041 -tp1042 -a(S'getForegroundColour/1' -p1043 -S'getForegroundColour(${1:This}) $2' -p1044 -tp1045 -a(S'getGrandParent/1' -p1046 -S'getGrandParent(${1:This}) $2' -p1047 -tp1048 -a(S'getHandle/1' -p1049 -S'getHandle(${1:This}) $2' -p1050 -tp1051 -a(S'getHelpText/1' -p1052 -S'getHelpText(${1:This}) $2' -p1053 -tp1054 -a(S'getId/1' -p1055 -S'getId(${1:This}) $2' -p1056 -tp1057 -a(S'getLabel/1' -p1058 -S'getLabel(${1:This}) $2' -p1059 -tp1060 -a(S'getMaxSize/1' -p1061 -S'getMaxSize(${1:This}) $2' -p1062 -tp1063 -a(S'getMaximumSizeX/1' -p1064 -S'getMaximumSizeX(${1:This}) $2' -p1065 -tp1066 -a(S'getMaximumSizeY/1' -p1067 -S'getMaximumSizeY(${1:This}) $2' -p1068 -tp1069 -a(S'getMinSize/1' -p1070 -S'getMinSize(${1:This}) $2' -p1071 -tp1072 -a(S'getMinimumSizeX/1' -p1073 -S'getMinimumSizeX(${1:This}) $2' -p1074 -tp1075 -a(S'getMinimumSizeY/1' -p1076 -S'getMinimumSizeY(${1:This}) $2' -p1077 -tp1078 -a(S'getName/1' -p1079 -S'getName(${1:This}) $2' -p1080 -tp1081 -a(S'getParent/1' -p1082 -S'getParent(${1:This}) $2' -p1083 -tp1084 -a(S'getPosition/1' -p1085 -S'getPosition(${1:This}) $2' -p1086 -tp1087 -a(S'getRect/1' -p1088 -S'getRect(${1:This}) $2' -p1089 -tp1090 -a(S'getSashVisible/2' -p1091 -S'getSashVisible(${1:This}, ${2:Edge}) $3' -p1092 -tp1093 -a(S'getScreenPosition/1' -p1094 -S'getScreenPosition(${1:This}) $2' -p1095 -tp1096 -a(S'getScreenRect/1' -p1097 -S'getScreenRect(${1:This}) $2' -p1098 -tp1099 -a(S'getScrollPos/2' -p1100 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p1101 -tp1102 -a(S'getScrollRange/2' -p1103 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p1104 -tp1105 -a(S'getScrollThumb/2' -p1106 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p1107 -tp1108 -a(S'getSize/1' -p1109 -S'getSize(${1:This}) $2' -p1110 -tp1111 -a(S'getSizer/1' -p1112 -S'getSizer(${1:This}) $2' -p1113 -tp1114 -a(S'getTextExtent/2' -p1115 -S'getTextExtent(${1:This}, ${2:String}) $3' -p1116 -tp1117 -a(S'getTextExtent/3' -p1118 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p1119 -tp1120 -a(S'getToolTip/1' -p1121 -S'getToolTip(${1:This}) $2' -p1122 -tp1123 -a(S'getUpdateRegion/1' -p1124 -S'getUpdateRegion(${1:This}) $2' -p1125 -tp1126 -a(S'getVirtualSize/1' -p1127 -S'getVirtualSize(${1:This}) $2' -p1128 -tp1129 -a(S'getWindowStyleFlag/1' -p1130 -S'getWindowStyleFlag(${1:This}) $2' -p1131 -tp1132 -a(S'getWindowVariant/1' -p1133 -S'getWindowVariant(${1:This}) $2' -p1134 -tp1135 -a(S'hasCapture/1' -p1136 -S'hasCapture(${1:This}) $2' -p1137 -tp1138 -a(S'hasScrollbar/2' -p1139 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p1140 -tp1141 -a(S'hasTransparentBackground/1' -p1142 -S'hasTransparentBackground(${1:This}) $2' -p1143 -tp1144 -a(S'hide/1' -p1145 -S'hide(${1:This}) $2' -p1146 -tp1147 -a(S'inheritAttributes/1' -p1148 -S'inheritAttributes(${1:This}) $2' -p1149 -tp1150 -a(S'initDialog/1' -p1151 -S'initDialog(${1:This}) $2' -p1152 -tp1153 -a(S'invalidateBestSize/1' -p1154 -S'invalidateBestSize(${1:This}) $2' -p1155 -tp1156 -a(S'isEnabled/1' -p1157 -S'isEnabled(${1:This}) $2' -p1158 -tp1159 -a(S'isExposed/2' -p1160 -S'isExposed(${1:This}, ${2:Pt}) $3' -p1161 -tp1162 -a(S'isExposed/3' -p1163 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p1164 -tp1165 -a(S'isExposed/5' -p1166 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p1167 -tp1168 -a(S'isRetained/1' -p1169 -S'isRetained(${1:This}) $2' -p1170 -tp1171 -a(S'isShown/1' -p1172 -S'isShown(${1:This}) $2' -p1173 -tp1174 -a(S'isTopLevel/1' -p1175 -S'isTopLevel(${1:This}) $2' -p1176 -tp1177 -a(S'layout/1' -p1178 -S'layout(${1:This}) $2' -p1179 -tp1180 -a(S'lineDown/1' -p1181 -S'lineDown(${1:This}) $2' -p1182 -tp1183 -a(S'lineUp/1' -p1184 -S'lineUp(${1:This}) $2' -p1185 -tp1186 -a(S'lower/1' -p1187 -S'lower(${1:This}) $2' -p1188 -tp1189 -a(S'makeModal/1' -p1190 -S'makeModal(${1:This}) $2' -p1191 -tp1192 -a(S'makeModal/2' -p1193 -S'makeModal(${1:This}, ${2:Options}) $3' -p1194 -tp1195 -a(S'move/2' -p1196 -S'move(${1:This}, ${2:Pt}) $3' -p1197 -tp1198 -a(S'move/3' -p1199 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p1200 -tp1201 -a(S'move/4' -p1202 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p1203 -tp1204 -a(S'moveAfterInTabOrder/2' -p1205 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p1206 -tp1207 -a(S'moveBeforeInTabOrder/2' -p1208 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p1209 -tp1210 -a(S'navigate/1' -p1211 -S'navigate(${1:This}) $2' -p1212 -tp1213 -a(S'navigate/2' -p1214 -S'navigate(${1:This}, ${2:Options}) $3' -p1215 -tp1216 -a(S'new/0' -p1217 -S'new() $1' -p1218 -tp1219 -a(S'new/1' -p1220 -S'new(${1:Parent}) $2' -p1221 -tp1222 -a(S'new/2' -p1223 -S'new(${1:Parent}, ${2:Param2}) $3' -p1224 -tp1225 -a(S'pageDown/1' -p1226 -S'pageDown(${1:This}) $2' -p1227 -tp1228 -a(S'pageUp/1' -p1229 -S'pageUp(${1:This}) $2' -p1230 -tp1231 -a(S'parent_class/1' -p1232 -S'parent_class(${1:Param1}) $2' -p1233 -tp1234 -a(S'popEventHandler/1' -p1235 -S'popEventHandler(${1:This}) $2' -p1236 -tp1237 -a(S'popEventHandler/2' -p1238 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p1239 -tp1240 -a(S'popupMenu/2' -p1241 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p1242 -tp1243 -a(S'popupMenu/3' -p1244 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p1245 -tp1246 -a(S'popupMenu/4' -p1247 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p1248 -tp1249 -a(S'raise/1' -p1250 -S'raise(${1:This}) $2' -p1251 -tp1252 -a(S'refresh/1' -p1253 -S'refresh(${1:This}) $2' -p1254 -tp1255 -a(S'refresh/2' -p1256 -S'refresh(${1:This}, ${2:Options}) $3' -p1257 -tp1258 -a(S'refreshRect/2' -p1259 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p1260 -tp1261 -a(S'refreshRect/3' -p1262 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p1263 -tp1264 -a(S'releaseMouse/1' -p1265 -S'releaseMouse(${1:This}) $2' -p1266 -tp1267 -a(S'removeChild/2' -p1268 -S'removeChild(${1:This}, ${2:Child}) $3' -p1269 -tp1270 -a(S'reparent/2' -p1271 -S'reparent(${1:This}, ${2:NewParent}) $3' -p1272 -tp1273 -a(S'screenToClient/1' -p1274 -S'screenToClient(${1:This}) $2' -p1275 -tp1276 -a(S'screenToClient/2' -p1277 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p1278 -tp1279 -a(S'scrollLines/2' -p1280 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p1281 -tp1282 -a(S'scrollPages/2' -p1283 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p1284 -tp1285 -a(S'scrollWindow/3' -p1286 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p1287 -tp1288 -a(S'scrollWindow/4' -p1289 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p1290 -tp1291 -a(S'setAcceleratorTable/2' -p1292 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p1293 -tp1294 -a(S'setAutoLayout/2' -p1295 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p1296 -tp1297 -a(S'setBackgroundColour/2' -p1298 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p1299 -tp1300 -a(S'setBackgroundStyle/2' -p1301 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p1302 -tp1303 -a(S'setCaret/2' -p1304 -S'setCaret(${1:This}, ${2:Caret}) $3' -p1305 -tp1306 -a(S'setClientSize/2' -p1307 -S'setClientSize(${1:This}, ${2:Size}) $3' -p1308 -tp1309 -a(S'setClientSize/3' -p1310 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p1311 -tp1312 -a(S'setContainingSizer/2' -p1313 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p1314 -tp1315 -a(S'setCursor/2' -p1316 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p1317 -tp1318 -a(S'setDropTarget/2' -p1319 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p1320 -tp1321 -a(S'setExtraStyle/2' -p1322 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p1323 -tp1324 -a(S'setFocus/1' -p1325 -S'setFocus(${1:This}) $2' -p1326 -tp1327 -a(S'setFocusFromKbd/1' -p1328 -S'setFocusFromKbd(${1:This}) $2' -p1329 -tp1330 -a(S'setFont/2' -p1331 -S'setFont(${1:This}, ${2:Font}) $3' -p1332 -tp1333 -a(S'setForegroundColour/2' -p1334 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p1335 -tp1336 -a(S'setHelpText/2' -p1337 -S'setHelpText(${1:This}, ${2:Text}) $3' -p1338 -tp1339 -a(S'setId/2' -p1340 -S'setId(${1:This}, ${2:Winid}) $3' -p1341 -tp1342 -a(S'setLabel/2' -p1343 -S'setLabel(${1:This}, ${2:Label}) $3' -p1344 -tp1345 -a(S'setMaxSize/2' -p1346 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p1347 -tp1348 -a(S'setMaximumSizeX/2' -p1349 -S'setMaximumSizeX(${1:This}, ${2:Max}) $3' -p1350 -tp1351 -a(S'setMaximumSizeY/2' -p1352 -S'setMaximumSizeY(${1:This}, ${2:Max}) $3' -p1353 -tp1354 -a(S'setMinSize/2' -p1355 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p1356 -tp1357 -a(S'setMinimumSizeX/2' -p1358 -S'setMinimumSizeX(${1:This}, ${2:Min}) $3' -p1359 -tp1360 -a(S'setMinimumSizeY/2' -p1361 -S'setMinimumSizeY(${1:This}, ${2:Min}) $3' -p1362 -tp1363 -a(S'setName/2' -p1364 -S'setName(${1:This}, ${2:Name}) $3' -p1365 -tp1366 -a(S'setOwnBackgroundColour/2' -p1367 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p1368 -tp1369 -a(S'setOwnFont/2' -p1370 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p1371 -tp1372 -a(S'setOwnForegroundColour/2' -p1373 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p1374 -tp1375 -a(S'setPalette/2' -p1376 -S'setPalette(${1:This}, ${2:Pal}) $3' -p1377 -tp1378 -a(S'setSashVisible/3' -p1379 -S'setSashVisible(${1:This}, ${2:Edge}, ${3:Sash}) $4' -p1380 -tp1381 -a(S'setScrollPos/3' -p1382 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p1383 -tp1384 -a(S'setScrollPos/4' -p1385 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p1386 -tp1387 -a(S'setScrollbar/5' -p1388 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p1389 -tp1390 -a(S'setScrollbar/6' -p1391 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p1392 -tp1393 -a(S'setSize/2' -p1394 -S'setSize(${1:This}, ${2:Rect}) $3' -p1395 -tp1396 -a(S'setSize/3' -p1397 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p1398 -tp1399 -a(S'setSize/5' -p1400 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p1401 -tp1402 -a(S'setSize/6' -p1403 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p1404 -tp1405 -a(S'setSizeHints/2' -p1406 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p1407 -tp1408 -a(S'setSizeHints/3' -p1409 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p1410 -tp1411 -a(S'setSizeHints/4' -p1412 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p1413 -tp1414 -a(S'setSizer/2' -p1415 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p1416 -tp1417 -a(S'setSizer/3' -p1418 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p1419 -tp1420 -a(S'setSizerAndFit/2' -p1421 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p1422 -tp1423 -a(S'setSizerAndFit/3' -p1424 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p1425 -tp1426 -a(S'setThemeEnabled/2' -p1427 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p1428 -tp1429 -a(S'setToolTip/2' -p1430 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p1431 -tp1432 -a(S'setVirtualSize/2' -p1433 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p1434 -tp1435 -a(S'setVirtualSize/3' -p1436 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p1437 -tp1438 -a(S'setVirtualSizeHints/2' -p1439 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p1440 -tp1441 -a(S'setVirtualSizeHints/3' -p1442 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p1443 -tp1444 -a(S'setVirtualSizeHints/4' -p1445 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p1446 -tp1447 -a(S'setWindowStyle/2' -p1448 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p1449 -tp1450 -a(S'setWindowStyleFlag/2' -p1451 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p1452 -tp1453 -a(S'setWindowVariant/2' -p1454 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p1455 -tp1456 -a(S'shouldInheritColours/1' -p1457 -S'shouldInheritColours(${1:This}) $2' -p1458 -tp1459 -a(S'show/1' -p1460 -S'show(${1:This}) $2' -p1461 -tp1462 -a(S'show/2' -p1463 -S'show(${1:This}, ${2:Options}) $3' -p1464 -tp1465 -a(S'thaw/1' -p1466 -S'thaw(${1:This}) $2' -p1467 -tp1468 -a(S'transferDataFromWindow/1' -p1469 -S'transferDataFromWindow(${1:This}) $2' -p1470 -tp1471 -a(S'transferDataToWindow/1' -p1472 -S'transferDataToWindow(${1:This}) $2' -p1473 -tp1474 -a(S'update/1' -p1475 -S'update(${1:This}) $2' -p1476 -tp1477 -a(S'updateWindowUI/1' -p1478 -S'updateWindowUI(${1:This}) $2' -p1479 -tp1480 -a(S'updateWindowUI/2' -p1481 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p1482 -tp1483 -a(S'validate/1' -p1484 -S'validate(${1:This}) $2' -p1485 -tp1486 -a(S'warpPointer/3' -p1487 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p1488 -tp1489 -asS'snmpa_misc_sup' -p1490 -(lp1491 -(S'init/1' -p1492 -S'init(${1:Param1}) $2' -p1493 -tp1494 -a(S'start_link/0' -p1495 -S'start_link() $1' -p1496 -tp1497 -a(S'start_mib_server/4' -p1498 -S'start_mib_server(${1:Prio}, ${2:Ref}, ${3:Mibs}, ${4:Opts}) $5' -p1499 -tp1500 -a(S'start_net_if/6' -p1501 -S'start_net_if(${1:Prio}, ${2:NoteStore}, ${3:Ref}, ${4:Master}, ${5:Mod}, ${6:Opts}) $7' -p1502 -tp1503 -a(S'start_note_store/3' -p1504 -S'start_note_store(${1:Prio}, ${2:Ref}, ${3:Opts}) $4' -p1505 -tp1506 -a(S'stop_mib_server/1' -p1507 -S'stop_mib_server(${1:Ref}) $2' -p1508 -tp1509 -a(S'stop_net_if/1' -p1510 -S'stop_net_if(${1:Ref}) $2' -p1511 -tp1512 -a(S'stop_note_store/1' -p1513 -S'stop_note_store(${1:Ref}) $2' -p1514 -tp1515 -asS'wxSystemSettings' -p1516 -(lp1517 -(S'getColour/1' -p1518 -S'getColour(${1:Index}) $2' -p1519 -tp1520 -a(S'getFont/1' -p1521 -S'getFont(${1:Index}) $2' -p1522 -tp1523 -a(S'getMetric/1' -p1524 -S'getMetric(${1:Index}) $2' -p1525 -tp1526 -a(S'getMetric/2' -p1527 -S'getMetric(${1:Index}, ${2:Param2}) $3' -p1528 -tp1529 -a(S'getScreenType/0' -p1530 -S'getScreenType() $1' -p1531 -tp1532 -a(S'parent_class/1' -p1533 -S'parent_class(${1:Param1}) $2' -p1534 -tp1535 -asS'orber_ifr_arraydef' -p1536 -(lp1537 -(S"'_get_def_kind'/1" -p1538 -S"'_get_def_kind'() $1" -p1539 -tp1540 -a(S"'_get_element_type'/1" -p1541 -S"'_get_element_type'() $1" -p1542 -tp1543 -a(S"'_get_element_type_def'/1" -p1544 -S"'_get_element_type_def'() $1" -p1545 -tp1546 -a(S"'_get_length'/1" -p1547 -S"'_get_length'() $1" -p1548 -tp1549 -a(S"'_get_type'/1" -p1550 -S"'_get_type'() $1" -p1551 -tp1552 -a(S"'_set_element_type_def'/2" -p1553 -S"'_set_element_type_def'() $1" -p1554 -tp1555 -a(S"'_set_length'/2" -p1556 -S"'_set_length'() $1" -p1557 -tp1558 -a(S'cleanup_for_destroy/1' -p1559 -S'cleanup_for_destroy() $1' -p1560 -tp1561 -a(S'destroy/1' -p1562 -S'destroy() $1' -p1563 -tp1564 -asS'ct_ftp' -p1565 -(lp1566 -(S'cd/2' -p1567 -S'cd(${1:Connection}, ${2:Dir}) $3' -p1568 -tp1569 -a(S'close/1' -p1570 -S'close(${1:Connection}) $2' -p1571 -tp1572 -a(S'delete/2' -p1573 -S'delete(${1:Connection}, ${2:File}) $3' -p1574 -tp1575 -a(S'get/3' -p1576 -S'get(${1:KeyOrName}, ${2:RemoteFile}, ${3:LocalFile}) $4' -p1577 -tp1578 -a(S'handle_msg/2' -p1579 -S'handle_msg(${1:Param1}, ${2:State}) $3' -p1580 -tp1581 -a(S'init/3' -p1582 -S'init() $1' -p1583 -tp1584 -a(S'ls/2' -p1585 -S'ls(${1:Connection}, ${2:Dir}) $3' -p1586 -tp1587 -a(S'open/1' -p1588 -S'open(${1:KeyOrName}) $2' -p1589 -tp1590 -a(S'put/3' -p1591 -S'put(${1:KeyOrName}, ${2:LocalFile}, ${3:RemoteFile}) $4' -p1592 -tp1593 -a(S'reconnect/2' -p1594 -S'reconnect(${1:Param1}, ${2:Param2}) $3' -p1595 -tp1596 -a(S'recv/2' -p1597 -S'recv(${1:Connection}, ${2:RemoteFile}) $3' -p1598 -tp1599 -a(S'recv/3' -p1600 -S'recv(${1:Connection}, ${2:RemoteFile}, ${3:LocalFile}) $4' -p1601 -tp1602 -a(S'send/2' -p1603 -S'send(${1:Connection}, ${2:LocalFile}) $3' -p1604 -tp1605 -a(S'send/3' -p1606 -S'send(${1:Connection}, ${2:LocalFile}, ${3:RemoteFile}) $4' -p1607 -tp1608 -a(S'terminate/2' -p1609 -S'terminate(${1:FtpPid}, ${2:State}) $3' -p1610 -tp1611 -a(S'type/2' -p1612 -S'type(${1:Connection}, ${2:Type}) $3' -p1613 -tp1614 -asS'CosEventChannelAdmin_ProxyPushSupplier' -p1615 -(lp1616 -(S'code_change/3' -p1617 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p1618 -tp1619 -a(S'connect_push_consumer/2' -p1620 -S'connect_push_consumer(${1:OE_THIS}, ${2:Push_consumer}) $3' -p1621 -tp1622 -a(S'connect_push_consumer/3' -p1623 -S'connect_push_consumer(${1:OE_THIS}, ${2:OE_Options}, ${3:Push_consumer}) $4' -p1624 -tp1625 -a(S'disconnect_push_supplier/1' -p1626 -S'disconnect_push_supplier(${1:OE_THIS}) $2' -p1627 -tp1628 -a(S'disconnect_push_supplier/2' -p1629 -S'disconnect_push_supplier(${1:OE_THIS}, ${2:OE_Options}) $3' -p1630 -tp1631 -a(S'handle_call/3' -p1632 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p1633 -tp1634 -a(S'handle_cast/2' -p1635 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p1636 -tp1637 -a(S'handle_info/2' -p1638 -S'handle_info(${1:Param1}, ${2:State}) $3' -p1639 -tp1640 -a(S'init/1' -p1641 -S'init(${1:Env}) $2' -p1642 -tp1643 -a(S'oe_create/0' -p1644 -S'oe_create() $1' -p1645 -tp1646 -a(S'oe_create/1' -p1647 -S'oe_create(${1:Env}) $2' -p1648 -tp1649 -a(S'oe_create/2' -p1650 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p1651 -tp1652 -a(S'oe_create_link/0' -p1653 -S'oe_create_link() $1' -p1654 -tp1655 -a(S'oe_create_link/1' -p1656 -S'oe_create_link(${1:Env}) $2' -p1657 -tp1658 -a(S'oe_create_link/2' -p1659 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p1660 -tp1661 -a(S'oe_get_interface/0' -p1662 -S'oe_get_interface() $1' -p1663 -tp1664 -a(S'oe_is_a/1' -p1665 -S'oe_is_a(${1:Param1}) $2' -p1666 -tp1667 -a(S'oe_tc/1' -p1668 -S'oe_tc(${1:Param1}) $2' -p1669 -tp1670 -a(S'terminate/2' -p1671 -S'terminate(${1:Reason}, ${2:State}) $3' -p1672 -tp1673 -a(S'typeID/0' -p1674 -S'typeID() $1' -p1675 -tp1676 -asS'wxScrollWinEvent' -p1677 -(lp1678 -(S'getId/1' -p1679 -S'getId(${1:This}) $2' -p1680 -tp1681 -a(S'getOrientation/1' -p1682 -S'getOrientation(${1:This}) $2' -p1683 -tp1684 -a(S'getPosition/1' -p1685 -S'getPosition(${1:This}) $2' -p1686 -tp1687 -a(S'getSkipped/1' -p1688 -S'getSkipped(${1:This}) $2' -p1689 -tp1690 -a(S'getTimestamp/1' -p1691 -S'getTimestamp(${1:This}) $2' -p1692 -tp1693 -a(S'isCommandEvent/1' -p1694 -S'isCommandEvent(${1:This}) $2' -p1695 -tp1696 -a(S'parent_class/1' -p1697 -S'parent_class(${1:Param1}) $2' -p1698 -tp1699 -a(S'resumePropagation/2' -p1700 -S'resumePropagation(${1:This}, ${2:PropagationLevel}) $3' -p1701 -tp1702 -a(S'shouldPropagate/1' -p1703 -S'shouldPropagate(${1:This}) $2' -p1704 -tp1705 -a(S'skip/1' -p1706 -S'skip(${1:This}) $2' -p1707 -tp1708 -a(S'skip/2' -p1709 -S'skip(${1:This}, ${2:Options}) $3' -p1710 -tp1711 -a(S'stopPropagation/1' -p1712 -S'stopPropagation(${1:This}) $2' -p1713 -tp1714 -asS'megaco_compact_text_encoder_prev3a' -p1715 -(lp1716 -(S'encode_action_reply/2' -p1717 -S'encode_action_reply() $1' -p1718 -tp1719 -a(S'encode_action_request/2' -p1720 -S'encode_action_request() $1' -p1721 -tp1722 -a(S'encode_action_requests/2' -p1723 -S'encode_action_requests(${1:Param1}, ${2:ActReqs}) $3' -p1724 -tp1725 -a(S'encode_command_request/2' -p1726 -S'encode_command_request() $1' -p1727 -tp1728 -a(S'encode_message/2' -p1729 -S'encode_message(${1:Param1}, ${2:Param2}) $3' -p1730 -tp1731 -a(S'encode_transaction/2' -p1732 -S'encode_transaction(${1:Param1}, ${2:Trans}) $3' -p1733 -tp1734 -asS'megaco_compact_text_encoder_prev3b' -p1735 -(lp1736 -(S'encode_action_reply/2' -p1737 -S'encode_action_reply() $1' -p1738 -tp1739 -a(S'encode_action_request/2' -p1740 -S'encode_action_request() $1' -p1741 -tp1742 -a(S'encode_action_requests/2' -p1743 -S'encode_action_requests(${1:Param1}, ${2:ActReqs}) $3' -p1744 -tp1745 -a(S'encode_command_request/2' -p1746 -S'encode_command_request() $1' -p1747 -tp1748 -a(S'encode_message/2' -p1749 -S'encode_message(${1:Param1}, ${2:Param2}) $3' -p1750 -tp1751 -a(S'encode_transaction/2' -p1752 -S'encode_transaction(${1:Param1}, ${2:Trans}) $3' -p1753 -tp1754 -a(S'token_tag2string/1' -p1755 -S'token_tag2string(${1:Param1}) $2' -p1756 -tp1757 -asS'megaco_compact_text_encoder_prev3c' -p1758 -(lp1759 -(S'encode_action_reply/2' -p1760 -S'encode_action_reply() $1' -p1761 -tp1762 -a(S'encode_action_request/2' -p1763 -S'encode_action_request() $1' -p1764 -tp1765 -a(S'encode_action_requests/2' -p1766 -S'encode_action_requests(${1:Param1}, ${2:ActReqs}) $3' -p1767 -tp1768 -a(S'encode_command_request/2' -p1769 -S'encode_command_request() $1' -p1770 -tp1771 -a(S'encode_message/2' -p1772 -S'encode_message(${1:Param1}, ${2:Param2}) $3' -p1773 -tp1774 -a(S'encode_transaction/2' -p1775 -S'encode_transaction(${1:Param1}, ${2:Trans}) $3' -p1776 -tp1777 -a(S'token_tag2string/1' -p1778 -S'token_tag2string(${1:Param1}) $2' -p1779 -tp1780 -asS'ttb_et' -p1781 -(lp1782 -(S'handler/4' -p1783 -S'handler(${1:Out}, ${2:Trace}, ${3:Traci}, ${4:Col}) $5' -p1784 -tp1785 -asS'inviso_c' -p1786 -(lp1787 -(S'code_change/3' -p1788 -S'code_change(${1:Param1}, ${2:LoopData}, ${3:Param3}) $4' -p1789 -tp1790 -a(S'handle_call/3' -p1791 -S'handle_call(${1:Request}, ${2:From}, ${3:LD}) $4' -p1792 -tp1793 -a(S'handle_cast/2' -p1794 -S'handle_cast(${1:Param1}, ${2:LD}) $3' -p1795 -tp1796 -a(S'handle_info/2' -p1797 -S'handle_info(${1:Param1}, ${2:LD}) $3' -p1798 -tp1799 -a(S'init/1' -p1800 -S'init(${1:Param1}) $2' -p1801 -tp1802 -a(S'log_rec_init/4' -p1803 -S'log_rec_init(${1:Parent}, ${2:Dest}, ${3:Prefix}, ${4:Param4}) $5' -p1804 -tp1805 -a(S'terminate/2' -p1806 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p1807 -tp1808 -asS'asn1ct_parser2' -p1809 -(lp1810 -(S'parse/1' -p1811 -S'parse(${1:Tokens}) $2' -p1812 -tp1813 -asS'CosEventComm_PullConsumer' -p1814 -(lp1815 -(S'code_change/3' -p1816 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p1817 -tp1818 -a(S'disconnect_pull_consumer/1' -p1819 -S'disconnect_pull_consumer(${1:OE_THIS}) $2' -p1820 -tp1821 -a(S'disconnect_pull_consumer/2' -p1822 -S'disconnect_pull_consumer(${1:OE_THIS}, ${2:OE_Options}) $3' -p1823 -tp1824 -a(S'handle_call/3' -p1825 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p1826 -tp1827 -a(S'handle_cast/2' -p1828 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p1829 -tp1830 -a(S'handle_info/2' -p1831 -S'handle_info(${1:Param1}, ${2:State}) $3' -p1832 -tp1833 -a(S'init/1' -p1834 -S'init(${1:Env}) $2' -p1835 -tp1836 -a(S'oe_create/0' -p1837 -S'oe_create() $1' -p1838 -tp1839 -a(S'oe_create/1' -p1840 -S'oe_create(${1:Env}) $2' -p1841 -tp1842 -a(S'oe_create/2' -p1843 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p1844 -tp1845 -a(S'oe_create_link/0' -p1846 -S'oe_create_link() $1' -p1847 -tp1848 -a(S'oe_create_link/1' -p1849 -S'oe_create_link(${1:Env}) $2' -p1850 -tp1851 -a(S'oe_create_link/2' -p1852 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p1853 -tp1854 -a(S'oe_get_interface/0' -p1855 -S'oe_get_interface() $1' -p1856 -tp1857 -a(S'oe_is_a/1' -p1858 -S'oe_is_a(${1:Param1}) $2' -p1859 -tp1860 -a(S'oe_tc/1' -p1861 -S'oe_tc(${1:Param1}) $2' -p1862 -tp1863 -a(S'terminate/2' -p1864 -S'terminate(${1:Reason}, ${2:State}) $3' -p1865 -tp1866 -a(S'typeID/0' -p1867 -S'typeID() $1' -p1868 -tp1869 -asS'megaco_tcp_connection_sup' -p1870 -(lp1871 -(S'init/1' -p1872 -S'init(${1:Param1}) $2' -p1873 -tp1874 -a(S'start_child/2' -p1875 -S'start_child(${1:Pid}, ${2:TcpRec}) $3' -p1876 -tp1877 -a(S'start_connection/1' -p1878 -S'start_connection(${1:Args}) $2' -p1879 -tp1880 -a(S'start_link/0' -p1881 -S'start_link() $1' -p1882 -tp1883 -a(S'terminate/2' -p1884 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p1885 -tp1886 -asS'dialyzer_dataflow' -p1887 -(lp1888 -(S'format_args/3' -p1889 -S'format_args(${1:ArgList}, ${2:TypeList}, ${3:State}) $4' -p1890 -tp1891 -a(S'get_fun_types/4' -p1892 -S'get_fun_types(${1:Tree}, ${2:Plt}, ${3:Callgraph}, ${4:Records}) $5' -p1893 -tp1894 -a(S'get_top_level_signatures/2' -p1895 -S'get_top_level_signatures(${1:Code}, ${2:Records}) $3' -p1896 -tp1897 -a(S'get_warnings/5' -p1898 -S'get_warnings(${1:Tree}, ${2:Plt}, ${3:Callgraph}, ${4:Records}, ${5:NoWarnUnused}) $6' -p1899 -tp1900 -a(S'pp/1' -p1901 -S'pp(${1:File}) $2' -p1902 -tp1903 -a(S'state__add_warning/2' -p1904 -S'state__add_warning(${1:Warn}, ${2:State}) $3' -p1905 -tp1906 -a(S'state__cleanup/1' -p1907 -S'state__cleanup(${1:Param1}) $2' -p1908 -tp1909 -a(S'state__get_callgraph/1' -p1910 -S'state__get_callgraph(${1:Param1}) $2' -p1911 -tp1912 -a(S'state__get_races/1' -p1913 -S'state__get_races(${1:Param1}) $2' -p1914 -tp1915 -a(S'state__get_records/1' -p1916 -S'state__get_records(${1:Param1}) $2' -p1917 -tp1918 -a(S'state__put_callgraph/2' -p1919 -S'state__put_callgraph(${1:Callgraph}, ${2:State}) $3' -p1920 -tp1921 -a(S'state__put_races/2' -p1922 -S'state__put_races(${1:Races}, ${2:State}) $3' -p1923 -tp1924 -a(S'state__records_only/1' -p1925 -S'state__records_only(${1:Param1}) $2' -p1926 -tp1927 -asS'xmerl_xpath' -p1928 -(lp1929 -(S'axis/3' -p1930 -S'axis(${1:Axis}, ${2:NodeTest}, ${3:Context}) $4' -p1931 -tp1932 -a(S'axis/4' -p1933 -S'axis(${1:Axis}, ${2:NodeTest}, ${3:Param3}, ${4:Acc}) $5' -p1934 -tp1935 -a(S'eval_path/3' -p1936 -S'eval_path(${1:Param1}, ${2:PathExpr}, ${3:Param3}) $4' -p1937 -tp1938 -a(S'string/2' -p1939 -S'string(${1:Str}, ${2:Doc}) $3' -p1940 -tp1941 -a(S'string/3' -p1942 -S'string(${1:Str}, ${2:Doc}, ${3:Options}) $4' -p1943 -tp1944 -a(S'string/5' -p1945 -S'string(${1:Str}, ${2:Node}, ${3:Parents}, ${4:Doc}, ${5:Options}) $6' -p1946 -tp1947 -a(S'write_node/1' -p1948 -S'write_node(${1:Param1}) $2' -p1949 -tp1950 -asS'eprof' -p1951 -(lp1952 -(S'analyze/0' -p1953 -S'analyze() $1' -p1954 -tp1955 -a(S'analyze/1' -p1956 -S'analyze(${1:Type}) $2' -p1957 -tp1958 -a(S'analyze/2' -p1959 -S'analyze(${1:Type}, ${2:Opts}) $3' -p1960 -tp1961 -a(S'code_change/3' -p1962 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p1963 -tp1964 -a(S'dump/0' -p1965 -S'dump() $1' -p1966 -tp1967 -a(S'handle_call/3' -p1968 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:S}) $4' -p1969 -tp1970 -a(S'handle_cast/2' -p1971 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p1972 -tp1973 -a(S'handle_info/2' -p1974 -S'handle_info(${1:Param1}, ${2:S}) $3' -p1975 -tp1976 -a(S'init/1' -p1977 -S'init(${1:Param1}) $2' -p1978 -tp1979 -a(S'log/1' -p1980 -S'log(${1:File}) $2' -p1981 -tp1982 -a(S'profile/1' -p1983 -S'profile(${1:Fun}) $2' -p1984 -tp1985 -a(S'profile/2' -p1986 -S'profile(${1:Pids}, ${2:Fun}) $3' -p1987 -tp1988 -a(S'profile/3' -p1989 -S'profile(${1:Pids}, ${2:Fun}, ${3:Pattern}) $4' -p1990 -tp1991 -a(S'profile/4' -p1992 -S'profile(${1:Pids}, ${2:M}, ${3:F}, ${4:A}) $5' -p1993 -tp1994 -a(S'profile/5' -p1995 -S'profile(${1:Pids}, ${2:M}, ${3:F}, ${4:A}, ${5:Pattern}) $6' -p1996 -tp1997 -a(S'start/0' -p1998 -S'start() $1' -p1999 -tp2000 -a(S'start_profiling/1' -p2001 -S'start_profiling(${1:Rootset}) $2' -p2002 -tp2003 -a(S'start_profiling/2' -p2004 -S'start_profiling(${1:Rootset}, ${2:Pattern}) $3' -p2005 -tp2006 -a(S'stop/0' -p2007 -S'stop() $1' -p2008 -tp2009 -a(S'stop_profiling/0' -p2010 -S'stop_profiling() $1' -p2011 -tp2012 -a(S'terminate/2' -p2013 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p2014 -tp2015 -asS'wxImageList' -p2016 -(lp2017 -(S'add/2' -p2018 -S'add(${1:This}, ${2:Bitmap}) $3' -p2019 -tp2020 -a(S'add/3' -p2021 -S'add(${1:This}, ${2:Bitmap}, ${3:Mask}) $4' -p2022 -tp2023 -a(S'create/3' -p2024 -S'create(${1:This}, ${2:Width}, ${3:Height}) $4' -p2025 -tp2026 -a(S'create/4' -p2027 -S'create(${1:This}, ${2:Width}, ${3:Height}, ${4:Param4}) $5' -p2028 -tp2029 -a(S'destroy/1' -p2030 -S'destroy(${1:This}) $2' -p2031 -tp2032 -a(S'draw/5' -p2033 -S'draw(${1:This}, ${2:Index}, ${3:Dc}, ${4:X}, ${5:Y}) $6' -p2034 -tp2035 -a(S'draw/6' -p2036 -S'draw(${1:This}, ${2:Index}, ${3:Dc}, ${4:X}, ${5:Y}, ${6:Param6}) $7' -p2037 -tp2038 -a(S'getBitmap/2' -p2039 -S'getBitmap(${1:This}, ${2:Index}) $3' -p2040 -tp2041 -a(S'getIcon/2' -p2042 -S'getIcon(${1:This}, ${2:Index}) $3' -p2043 -tp2044 -a(S'getImageCount/1' -p2045 -S'getImageCount(${1:This}) $2' -p2046 -tp2047 -a(S'getSize/2' -p2048 -S'getSize(${1:This}, ${2:Index}) $3' -p2049 -tp2050 -a(S'new/0' -p2051 -S'new() $1' -p2052 -tp2053 -a(S'new/2' -p2054 -S'new(${1:Width}, ${2:Height}) $3' -p2055 -tp2056 -a(S'new/3' -p2057 -S'new(${1:Width}, ${2:Height}, ${3:Param3}) $4' -p2058 -tp2059 -a(S'parent_class/1' -p2060 -S'parent_class(${1:Param1}) $2' -p2061 -tp2062 -a(S'remove/2' -p2063 -S'remove(${1:This}, ${2:Index}) $3' -p2064 -tp2065 -a(S'removeAll/1' -p2066 -S'removeAll(${1:This}) $2' -p2067 -tp2068 -a(S'replace/3' -p2069 -S'replace(${1:This}, ${2:Index}, ${3:Bitmap}) $4' -p2070 -tp2071 -a(S'replace/4' -p2072 -S'replace(${1:This}, ${2:Index}, ${3:Bitmap}, ${4:Mask}) $5' -p2073 -tp2074 -asS'xmerl_sax_old_dom' -p2075 -(lp2076 -(S'event/3' -p2077 -S'event(${1:Event}, ${2:Param2}, ${3:State}) $4' -p2078 -tp2079 -a(S'get_dom/1' -p2080 -S'get_dom(${1:Param1}) $2' -p2081 -tp2082 -a(S'initial_state/0' -p2083 -S'initial_state() $1' -p2084 -tp2085 -asS'oe_CosEventComm_PusherS_impl' -p2086 -(lp2087 -(S'code_change/3' -p2088 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p2089 -tp2090 -a(S'connect_push_consumer/4' -p2091 -S'connect_push_consumer(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p2092 -tp2093 -a(S'disconnect_push_supplier/3' -p2094 -S'disconnect_push_supplier(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p2095 -tp2096 -a(S'handle_info/2' -p2097 -S'handle_info(${1:Param1}, ${2:State}) $3' -p2098 -tp2099 -a(S'init/1' -p2100 -S'init(${1:Param1}) $2' -p2101 -tp2102 -a(S'send/3' -p2103 -S'send(${1:Param1}, ${2:State}, ${3:Any}) $4' -p2104 -tp2105 -a(S'send_sync/4' -p2106 -S'send_sync(${1:Param1}, ${2:OE_From}, ${3:State}, ${4:Any}) $5' -p2107 -tp2108 -a(S'terminate/2' -p2109 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p2110 -tp2111 -asS'escript' -p2112 -(lp2113 -(S'create/2' -p2114 -S'create(${1:File}, ${2:Options}) $3' -p2115 -tp2116 -a(S'extract/2' -p2117 -S'extract(${1:File}, ${2:Options}) $3' -p2118 -tp2119 -a(S'script_name/0' -p2120 -S'script_name() $1' -p2121 -tp2122 -a(S'start/0' -p2123 -S'start() $1' -p2124 -tp2125 -a(S'start/1' -p2126 -S'start(${1:EscriptOptions}) $2' -p2127 -tp2128 -asS'ic_codegen' -p2129 -(lp2130 -(S'comment/2' -p2131 -S'comment(${1:Fd}, ${2:C}) $3' -p2132 -tp2133 -a(S'comment/3' -p2134 -S'comment(${1:Fd}, ${2:C}, ${3:A}) $4' -p2135 -tp2136 -a(S'comment/4' -p2137 -S'comment(${1:Fd}, ${2:C}, ${3:A}, ${4:CommentSequence}) $5' -p2138 -tp2139 -a(S'comment_inlined/5' -p2140 -S'comment_inlined(${1:Fd}, ${2:C}, ${3:A}, ${4:Start}, ${5:End}) $6' -p2141 -tp2142 -a(S'comment_prefixed/4' -p2143 -S'comment_prefixed(${1:Fd}, ${2:C}, ${3:A}, ${4:Prefix}) $5' -p2144 -tp2145 -a(S'emit/2' -p2146 -S'emit(${1:Fd}, ${2:Str}) $3' -p2147 -tp2148 -a(S'emit/3' -p2149 -S'emit(${1:Fd}, ${2:Fmt}, ${3:Args}) $4' -p2150 -tp2151 -a(S'emit_c_dec_rpt/4' -p2152 -S'emit_c_dec_rpt(${1:Fd}, ${2:Prefix}, ${3:Fmt}, ${4:Args}) $5' -p2153 -tp2154 -a(S'emit_c_enc_rpt/4' -p2155 -S'emit_c_enc_rpt(${1:Fd}, ${2:Prefix}, ${3:Fmt}, ${4:Args}) $5' -p2156 -tp2157 -a(S'emit_hrl_foot/2' -p2158 -S'emit_hrl_foot(${1:G}, ${2:Param2}) $3' -p2159 -tp2160 -a(S'emit_hrl_head/4' -p2161 -S'emit_hrl_head(${1:G}, ${2:Fd}, ${3:Name}, ${4:Param4}) $5' -p2162 -tp2163 -a(S'emit_stub_head/4' -p2164 -S'emit_stub_head(${1:G}, ${2:F1}, ${3:Name}, ${4:Param4}) $5' -p2165 -tp2166 -a(S'export/2' -p2167 -S'export(${1:F}, ${2:Exports}) $3' -p2168 -tp2169 -a(S'mcomment/2' -p2170 -S'mcomment(${1:Fd}, ${2:List}) $3' -p2171 -tp2172 -a(S'mcomment/3' -p2173 -S'mcomment(${1:Fd}, ${2:List}, ${3:Param3}) $4' -p2174 -tp2175 -a(S'mcomment_inlined/5' -p2176 -S'mcomment_inlined(${1:Fd}, ${2:List}, ${3:Start}, ${4:End}, ${5:Intermediate}) $6' -p2177 -tp2178 -a(S'mcomment_light/2' -p2179 -S'mcomment_light(${1:Fd}, ${2:List}) $3' -p2180 -tp2181 -a(S'mcomment_light/3' -p2182 -S'mcomment_light(${1:Fd}, ${2:List}, ${3:Prefix}) $4' -p2183 -tp2184 -a(S'mcomment_light_inlined/5' -p2185 -S'mcomment_light_inlined(${1:Fd}, ${2:List}, ${3:Start}, ${4:End}, ${5:Intermediate}) $6' -p2186 -tp2187 -a(S'mcomment_light_prefixed/3' -p2188 -S'mcomment_light_prefixed(${1:Fd}, ${2:List}, ${3:Prefix}) $4' -p2189 -tp2190 -a(S'mcomment_prefixed/3' -p2191 -S'mcomment_prefixed(${1:Fd}, ${2:List}, ${3:Prefix}) $4' -p2192 -tp2193 -a(S'nl/1' -p2194 -S'nl(${1:Fd}) $2' -p2195 -tp2196 -a(S'record/5' -p2197 -S'record(${1:G}, ${2:X}, ${3:Name}, ${4:IFRID}, ${5:Recs}) $6' -p2198 -tp2199 -asS'CosNotifyFilter_MappingConstraintPairSeq' -p2200 -(lp2201 -(S'id/0' -p2202 -S'id() $1' -p2203 -tp2204 -a(S'name/0' -p2205 -S'name() $1' -p2206 -tp2207 -a(S'tc/0' -p2208 -S'tc() $1' -p2209 -tp2210 -asS'ct_ssh' -p2211 -(lp2212 -(S'apread/4' -p2213 -S'apread(${1:SSH}, ${2:Handle}, ${3:Position}, ${4:Length}) $5' -p2214 -tp2215 -a(S'apread/5' -p2216 -S'apread(${1:SSH}, ${2:Server}, ${3:Handle}, ${4:Position}, ${5:Length}) $6' -p2217 -tp2218 -a(S'apwrite/4' -p2219 -S'apwrite(${1:SSH}, ${2:Handle}, ${3:Position}, ${4:Data}) $5' -p2220 -tp2221 -a(S'apwrite/5' -p2222 -S'apwrite(${1:SSH}, ${2:Server}, ${3:Handle}, ${4:Position}, ${5:Data}) $6' -p2223 -tp2224 -a(S'aread/3' -p2225 -S'aread(${1:SSH}, ${2:Handle}, ${3:Len}) $4' -p2226 -tp2227 -a(S'aread/4' -p2228 -S'aread(${1:SSH}, ${2:Server}, ${3:Handle}, ${4:Len}) $5' -p2229 -tp2230 -a(S'awrite/3' -p2231 -S'awrite(${1:SSH}, ${2:Handle}, ${3:Data}) $4' -p2232 -tp2233 -a(S'awrite/4' -p2234 -S'awrite(${1:SSH}, ${2:Server}, ${3:Handle}, ${4:Data}) $5' -p2235 -tp2236 -a(S'close/1' -p2237 -S'close(${1:SSHRef}) $2' -p2238 -tp2239 -a(S'close/2' -p2240 -S'close(${1:SSH}, ${2:ChannelId}) $3' -p2241 -tp2242 -a(S'close/3' -p2243 -S'close(${1:SSH}, ${2:Server}, ${3:Handle}) $4' -p2244 -tp2245 -a(S'connect/1' -p2246 -S'connect(${1:KeyOrName}) $2' -p2247 -tp2248 -a(S'connect/2' -p2249 -S'connect(${1:KeyOrName}, ${2:ConnType}) $3' -p2250 -tp2251 -a(S'connect/3' -p2252 -S'connect(${1:KeyOrName}, ${2:ConnType}, ${3:ExtraOpts}) $4' -p2253 -tp2254 -a(S'del_dir/2' -p2255 -S'del_dir(${1:SSH}, ${2:Name}) $3' -p2256 -tp2257 -a(S'del_dir/3' -p2258 -S'del_dir(${1:SSH}, ${2:Server}, ${3:Name}) $4' -p2259 -tp2260 -a(S'delete/2' -p2261 -S'delete(${1:SSH}, ${2:Name}) $3' -p2262 -tp2263 -a(S'delete/3' -p2264 -S'delete(${1:SSH}, ${2:Server}, ${3:Name}) $4' -p2265 -tp2266 -a(S'disconnect/1' -p2267 -S'disconnect(${1:SSH}) $2' -p2268 -tp2269 -a(S'exec/2' -p2270 -S'exec(${1:SSH}, ${2:Command}) $3' -p2271 -tp2272 -a(S'exec/3' -p2273 -S'exec(${1:SSH}, ${2:Command}, ${3:Timeout}) $4' -p2274 -tp2275 -a(S'exec/4' -p2276 -S'exec(${1:SSH}, ${2:ChannelId}, ${3:Command}, ${4:Timeout}) $5' -p2277 -tp2278 -a(S'get_file_info/2' -p2279 -S'get_file_info(${1:SSH}, ${2:Handle}) $3' -p2280 -tp2281 -a(S'get_file_info/3' -p2282 -S'get_file_info(${1:SSH}, ${2:Server}, ${3:Handle}) $4' -p2283 -tp2284 -a(S'handle_msg/2' -p2285 -S'handle_msg(${1:Param1}, ${2:State}) $3' -p2286 -tp2287 -a(S'init/3' -p2288 -S'init(${1:KeyOrName}, ${2:Param2}, ${3:AllOpts}) $4' -p2289 -tp2290 -a(S'list_dir/2' -p2291 -S'list_dir(${1:SSH}, ${2:Path}) $3' -p2292 -tp2293 -a(S'list_dir/3' -p2294 -S'list_dir(${1:SSH}, ${2:Server}, ${3:Path}) $4' -p2295 -tp2296 -a(S'make_dir/2' -p2297 -S'make_dir(${1:SSH}, ${2:Name}) $3' -p2298 -tp2299 -a(S'make_dir/3' -p2300 -S'make_dir(${1:SSH}, ${2:Server}, ${3:Name}) $4' -p2301 -tp2302 -a(S'make_symlink/3' -p2303 -S'make_symlink(${1:SSH}, ${2:Name}, ${3:Target}) $4' -p2304 -tp2305 -a(S'make_symlink/4' -p2306 -S'make_symlink(${1:SSH}, ${2:Server}, ${3:Name}, ${4:Target}) $5' -p2307 -tp2308 -a(S'open/3' -p2309 -S'open(${1:SSH}, ${2:File}, ${3:Mode}) $4' -p2310 -tp2311 -a(S'open/4' -p2312 -S'open(${1:SSH}, ${2:Server}, ${3:File}, ${4:Mode}) $5' -p2313 -tp2314 -a(S'opendir/2' -p2315 -S'opendir(${1:SSH}, ${2:Path}) $3' -p2316 -tp2317 -a(S'opendir/3' -p2318 -S'opendir(${1:SSH}, ${2:Server}, ${3:Path}) $4' -p2319 -tp2320 -a(S'position/3' -p2321 -S'position(${1:SSH}, ${2:Handle}, ${3:Location}) $4' -p2322 -tp2323 -a(S'position/4' -p2324 -S'position(${1:SSH}, ${2:Server}, ${3:Handle}, ${4:Location}) $5' -p2325 -tp2326 -a(S'pread/4' -p2327 -S'pread(${1:SSH}, ${2:Handle}, ${3:Position}, ${4:Length}) $5' -p2328 -tp2329 -a(S'pread/5' -p2330 -S'pread(${1:SSH}, ${2:Server}, ${3:Handle}, ${4:Position}, ${5:Length}) $6' -p2331 -tp2332 -a(S'pwrite/4' -p2333 -S'pwrite(${1:SSH}, ${2:Handle}, ${3:Position}, ${4:Data}) $5' -p2334 -tp2335 -a(S'pwrite/5' -p2336 -S'pwrite(${1:SSH}, ${2:Server}, ${3:Handle}, ${4:Position}, ${5:Data}) $6' -p2337 -tp2338 -a(S'read/3' -p2339 -S'read(${1:SSH}, ${2:Handle}, ${3:Len}) $4' -p2340 -tp2341 -a(S'read/4' -p2342 -S'read(${1:SSH}, ${2:Server}, ${3:Handle}, ${4:Len}) $5' -p2343 -tp2344 -a(S'read_file/2' -p2345 -S'read_file(${1:SSH}, ${2:File}) $3' -p2346 -tp2347 -a(S'read_file/3' -p2348 -S'read_file(${1:SSH}, ${2:Server}, ${3:File}) $4' -p2349 -tp2350 -a(S'read_file_info/2' -p2351 -S'read_file_info(${1:SSH}, ${2:Name}) $3' -p2352 -tp2353 -a(S'read_file_info/3' -p2354 -S'read_file_info(${1:SSH}, ${2:Server}, ${3:Name}) $4' -p2355 -tp2356 -a(S'read_link/2' -p2357 -S'read_link(${1:SSH}, ${2:Name}) $3' -p2358 -tp2359 -a(S'read_link/3' -p2360 -S'read_link(${1:SSH}, ${2:Server}, ${3:Name}) $4' -p2361 -tp2362 -a(S'read_link_info/2' -p2363 -S'read_link_info(${1:SSH}, ${2:Name}) $3' -p2364 -tp2365 -a(S'read_link_info/3' -p2366 -S'read_link_info(${1:SSH}, ${2:Server}, ${3:Name}) $4' -p2367 -tp2368 -a(S'receive_response/2' -p2369 -S'receive_response(${1:SSH}, ${2:ChannelId}) $3' -p2370 -tp2371 -a(S'receive_response/3' -p2372 -S'receive_response(${1:SSH}, ${2:ChannelId}, ${3:End}) $4' -p2373 -tp2374 -a(S'receive_response/4' -p2375 -S'receive_response(${1:SSH}, ${2:ChannelId}, ${3:End}, ${4:Timeout}) $5' -p2376 -tp2377 -a(S'reconnect/2' -p2378 -S'reconnect(${1:Param1}, ${2:Param2}) $3' -p2379 -tp2380 -a(S'rename/3' -p2381 -S'rename(${1:SSH}, ${2:OldName}, ${3:NewName}) $4' -p2382 -tp2383 -a(S'rename/4' -p2384 -S'rename(${1:SSH}, ${2:Server}, ${3:OldName}, ${4:NewName}) $5' -p2385 -tp2386 -a(S'send/3' -p2387 -S'send(${1:SSH}, ${2:ChannelId}, ${3:Data}) $4' -p2388 -tp2389 -a(S'send/4' -p2390 -S'send(${1:SSH}, ${2:ChannelId}, ${3:Data}, ${4:Timeout}) $5' -p2391 -tp2392 -a(S'send/5' -p2393 -S'send(${1:SSH}, ${2:ChannelId}, ${3:Type}, ${4:Data}, ${5:Timeout}) $6' -p2394 -tp2395 -a(S'send_and_receive/3' -p2396 -S'send_and_receive(${1:SSH}, ${2:ChannelId}, ${3:Data}) $4' -p2397 -tp2398 -a(S'send_and_receive/4' -p2399 -S'send_and_receive(${1:SSH}, ${2:ChannelId}, ${3:Data}, ${4:End}) $5' -p2400 -tp2401 -a(S'send_and_receive/5' -p2402 -S'send_and_receive(${1:SSH}, ${2:ChannelId}, ${3:Data}, ${4:End}, ${5:Timeout}) $6' -p2403 -tp2404 -a(S'send_and_receive/6' -p2405 -S'send_and_receive(${1:SSH}, ${2:ChannelId}, ${3:Type}, ${4:Data}, ${5:End}, ${6:Timeout}) $7' -p2406 -tp2407 -a(S'session_close/2' -p2408 -S'session_close(${1:SSH}, ${2:ChannelId}) $3' -p2409 -tp2410 -a(S'session_open/1' -p2411 -S'session_open(${1:SSH}) $2' -p2412 -tp2413 -a(S'session_open/2' -p2414 -S'session_open(${1:SSH}, ${2:Timeout}) $3' -p2415 -tp2416 -a(S'sftp_connect/1' -p2417 -S'sftp_connect(${1:SSH}) $2' -p2418 -tp2419 -a(S'subsystem/3' -p2420 -S'subsystem(${1:SSH}, ${2:ChannelId}, ${3:Subsystem}) $4' -p2421 -tp2422 -a(S'subsystem/4' -p2423 -S'subsystem(${1:SSH}, ${2:ChannelId}, ${3:Subsystem}, ${4:Timeout}) $5' -p2424 -tp2425 -a(S'terminate/2' -p2426 -S'terminate(${1:SSHRef}, ${2:State}) $3' -p2427 -tp2428 -a(S'write/3' -p2429 -S'write(${1:SSH}, ${2:Handle}, ${3:Data}) $4' -p2430 -tp2431 -a(S'write/4' -p2432 -S'write(${1:SSH}, ${2:Server}, ${3:Handle}, ${4:Data}) $5' -p2433 -tp2434 -a(S'write_file/3' -p2435 -S'write_file(${1:SSH}, ${2:File}, ${3:Iolist}) $4' -p2436 -tp2437 -a(S'write_file/4' -p2438 -S'write_file(${1:SSH}, ${2:Server}, ${3:File}, ${4:Iolist}) $5' -p2439 -tp2440 -a(S'write_file_info/3' -p2441 -S'write_file_info(${1:SSH}, ${2:Name}, ${3:Info}) $4' -p2442 -tp2443 -a(S'write_file_info/4' -p2444 -S'write_file_info(${1:SSH}, ${2:Server}, ${3:Name}, ${4:Info}) $5' -p2445 -tp2446 -asS'hipe_unified_loader' -p2447 -(lp2448 -(S'chunk_name/1' -p2449 -S'chunk_name(${1:Architecture}) $2' -p2450 -tp2451 -a(S'load/2' -p2452 -S'load(${1:Mod}, ${2:Bin}) $3' -p2453 -tp2454 -a(S'load_module/3' -p2455 -S'load_module(${1:Mod}, ${2:Bin}, ${3:Beam}) $4' -p2456 -tp2457 -a(S'load_native_code/2' -p2458 -S'load_native_code(${1:Mod}, ${2:Bin}) $3' -p2459 -tp2460 -a(S'post_beam_load/1' -p2461 -S'post_beam_load(${1:Mod}) $2' -p2462 -tp2463 -asS'observer_trace_wx' -p2464 -(lp2465 -(S'add_processes/2' -p2466 -S'add_processes(${1:Tracer}, ${2:Pids}) $3' -p2467 -tp2468 -a(S'code_change/3' -p2469 -S'code_change(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p2470 -tp2471 -a(S'handle_call/3' -p2472 -S'handle_call(${1:Msg}, ${2:From}, ${3:Param3}) $4' -p2473 -tp2474 -a(S'handle_cast/2' -p2475 -S'handle_cast(${1:Msg}, ${2:Param2}) $3' -p2476 -tp2477 -a(S'handle_event/2' -p2478 -S'handle_event(${1:Param1}, ${2:State}) $3' -p2479 -tp2480 -a(S'handle_info/2' -p2481 -S'handle_info(${1:Any}, ${2:State}) $3' -p2482 -tp2483 -a(S'init/1' -p2484 -S'init(${1:Param1}) $2' -p2485 -tp2486 -a(S'start_link/2' -p2487 -S'start_link(${1:Notebook}, ${2:ParentPid}) $3' -p2488 -tp2489 -a(S'terminate/2' -p2490 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p2491 -tp2492 -asS'CosTransactions_Inactive' -p2493 -(lp2494 -(S'id/0' -p2495 -S'id() $1' -p2496 -tp2497 -a(S'name/0' -p2498 -S'name() $1' -p2499 -tp2500 -a(S'tc/0' -p2501 -S'tc() $1' -p2502 -tp2503 -asS'wxPageSetupDialog' -p2504 -(lp2505 -(S'destroy/1' -p2506 -S'destroy(${1:This}) $2' -p2507 -tp2508 -a(S'getPageSetupData/1' -p2509 -S'getPageSetupData(${1:This}) $2' -p2510 -tp2511 -a(S'new/1' -p2512 -S'new(${1:Parent}) $2' -p2513 -tp2514 -a(S'new/2' -p2515 -S'new(${1:Parent}, ${2:Param2}) $3' -p2516 -tp2517 -a(S'parent_class/1' -p2518 -S'parent_class(${1:Param1}) $2' -p2519 -tp2520 -a(S'showModal/1' -p2521 -S'showModal(${1:This}) $2' -p2522 -tp2523 -asS'dialyzer_contracts' -p2524 -(lp2525 -(S'check_contract/2' -p2526 -S'check_contract(${1:Param1}, ${2:SuccType}) $3' -p2527 -tp2528 -a(S'check_contracts/3' -p2529 -S'check_contracts(${1:Contracts}, ${2:Callgraph}, ${3:FunTypes}) $4' -p2530 -tp2531 -a(S'contract_to_string/1' -p2532 -S'contract_to_string(${1:Param1}) $2' -p2533 -tp2534 -a(S'contracts_without_fun/3' -p2535 -S'contracts_without_fun(${1:Contracts}, ${2:AllFuns0}, ${3:Callgraph}) $4' -p2536 -tp2537 -a(S'get_contract_args/1' -p2538 -S'get_contract_args(${1:Param1}) $2' -p2539 -tp2540 -a(S'get_contract_return/1' -p2541 -S'get_contract_return(${1:Param1}) $2' -p2542 -tp2543 -a(S'get_contract_return/2' -p2544 -S'get_contract_return(${1:Param1}, ${2:Args}) $3' -p2545 -tp2546 -a(S'get_invalid_contract_warnings/3' -p2547 -S'get_invalid_contract_warnings(${1:Modules}, ${2:CodeServer}, ${3:Plt}) $4' -p2548 -tp2549 -a(S'is_overloaded/1' -p2550 -S'is_overloaded(${1:Param1}) $2' -p2551 -tp2552 -a(S'process_contract_remote_types/1' -p2553 -S'process_contract_remote_types(${1:CodeServer}) $2' -p2554 -tp2555 -a(S'store_tmp_contract/5' -p2556 -S'store_tmp_contract(${1:MFA}, ${2:FileLine}, ${3:TypeSpec}, ${4:SpecDict}, ${5:RecordsDict}) $6' -p2557 -tp2558 -asS'wxPaintDC' -p2559 -(lp2560 -(S'blit/5' -p2561 -S'blit(${1:This}, ${2:DestPt}, ${3:Sz}, ${4:Source}, ${5:SrcPt}) $6' -p2562 -tp2563 -a(S'blit/6' -p2564 -S'blit(${1:This}, ${2:DestPt}, ${3:Sz}, ${4:Source}, ${5:SrcPt}, ${6:Options}) $7' -p2565 -tp2566 -a(S'calcBoundingBox/3' -p2567 -S'calcBoundingBox(${1:This}, ${2:X}, ${3:Y}) $4' -p2568 -tp2569 -a(S'clear/1' -p2570 -S'clear(${1:This}) $2' -p2571 -tp2572 -a(S'computeScaleAndOrigin/1' -p2573 -S'computeScaleAndOrigin(${1:This}) $2' -p2574 -tp2575 -a(S'crossHair/2' -p2576 -S'crossHair(${1:This}, ${2:Pt}) $3' -p2577 -tp2578 -a(S'destroy/1' -p2579 -S'destroy(${1:This}) $2' -p2580 -tp2581 -a(S'destroyClippingRegion/1' -p2582 -S'destroyClippingRegion(${1:This}) $2' -p2583 -tp2584 -a(S'deviceToLogicalX/2' -p2585 -S'deviceToLogicalX(${1:This}, ${2:X}) $3' -p2586 -tp2587 -a(S'deviceToLogicalXRel/2' -p2588 -S'deviceToLogicalXRel(${1:This}, ${2:X}) $3' -p2589 -tp2590 -a(S'deviceToLogicalY/2' -p2591 -S'deviceToLogicalY(${1:This}, ${2:Y}) $3' -p2592 -tp2593 -a(S'deviceToLogicalYRel/2' -p2594 -S'deviceToLogicalYRel(${1:This}, ${2:Y}) $3' -p2595 -tp2596 -a(S'drawArc/4' -p2597 -S'drawArc(${1:This}, ${2:Pt1}, ${3:Pt2}, ${4:Centre}) $5' -p2598 -tp2599 -a(S'drawBitmap/3' -p2600 -S'drawBitmap(${1:This}, ${2:Bmp}, ${3:Pt}) $4' -p2601 -tp2602 -a(S'drawBitmap/4' -p2603 -S'drawBitmap(${1:This}, ${2:Bmp}, ${3:Pt}, ${4:Options}) $5' -p2604 -tp2605 -a(S'drawCheckMark/2' -p2606 -S'drawCheckMark(${1:This}, ${2:Rect}) $3' -p2607 -tp2608 -a(S'drawCircle/3' -p2609 -S'drawCircle(${1:This}, ${2:Pt}, ${3:Radius}) $4' -p2610 -tp2611 -a(S'drawEllipse/2' -p2612 -S'drawEllipse(${1:This}, ${2:Rect}) $3' -p2613 -tp2614 -a(S'drawEllipse/3' -p2615 -S'drawEllipse(${1:This}, ${2:Pt}, ${3:Sz}) $4' -p2616 -tp2617 -a(S'drawEllipticArc/5' -p2618 -S'drawEllipticArc(${1:This}, ${2:Pt}, ${3:Sz}, ${4:Sa}, ${5:Ea}) $6' -p2619 -tp2620 -a(S'drawIcon/3' -p2621 -S'drawIcon(${1:This}, ${2:Icon}, ${3:Pt}) $4' -p2622 -tp2623 -a(S'drawLabel/3' -p2624 -S'drawLabel(${1:This}, ${2:Text}, ${3:Rect}) $4' -p2625 -tp2626 -a(S'drawLabel/4' -p2627 -S'drawLabel(${1:This}, ${2:Text}, ${3:Rect}, ${4:Options}) $5' -p2628 -tp2629 -a(S'drawLine/3' -p2630 -S'drawLine(${1:This}, ${2:Pt1}, ${3:Pt2}) $4' -p2631 -tp2632 -a(S'drawLines/2' -p2633 -S'drawLines(${1:This}, ${2:Points}) $3' -p2634 -tp2635 -a(S'drawLines/3' -p2636 -S'drawLines(${1:This}, ${2:Points}, ${3:Options}) $4' -p2637 -tp2638 -a(S'drawPoint/2' -p2639 -S'drawPoint(${1:This}, ${2:Pt}) $3' -p2640 -tp2641 -a(S'drawPolygon/2' -p2642 -S'drawPolygon(${1:This}, ${2:Points}) $3' -p2643 -tp2644 -a(S'drawPolygon/3' -p2645 -S'drawPolygon(${1:This}, ${2:Points}, ${3:Options}) $4' -p2646 -tp2647 -a(S'drawRectangle/2' -p2648 -S'drawRectangle(${1:This}, ${2:Rect}) $3' -p2649 -tp2650 -a(S'drawRectangle/3' -p2651 -S'drawRectangle(${1:This}, ${2:Pt}, ${3:Sz}) $4' -p2652 -tp2653 -a(S'drawRotatedText/4' -p2654 -S'drawRotatedText(${1:This}, ${2:Text}, ${3:Pt}, ${4:Angle}) $5' -p2655 -tp2656 -a(S'drawRoundedRectangle/3' -p2657 -S'drawRoundedRectangle(${1:This}, ${2:R}, ${3:Radius}) $4' -p2658 -tp2659 -a(S'drawRoundedRectangle/4' -p2660 -S'drawRoundedRectangle(${1:This}, ${2:Pt}, ${3:Sz}, ${4:Radius}) $5' -p2661 -tp2662 -a(S'drawText/3' -p2663 -S'drawText(${1:This}, ${2:Text}, ${3:Pt}) $4' -p2664 -tp2665 -a(S'endDoc/1' -p2666 -S'endDoc(${1:This}) $2' -p2667 -tp2668 -a(S'endPage/1' -p2669 -S'endPage(${1:This}) $2' -p2670 -tp2671 -a(S'floodFill/3' -p2672 -S'floodFill(${1:This}, ${2:Pt}, ${3:Col}) $4' -p2673 -tp2674 -a(S'floodFill/4' -p2675 -S'floodFill(${1:This}, ${2:Pt}, ${3:Col}, ${4:Options}) $5' -p2676 -tp2677 -a(S'getBackground/1' -p2678 -S'getBackground(${1:This}) $2' -p2679 -tp2680 -a(S'getBackgroundMode/1' -p2681 -S'getBackgroundMode(${1:This}) $2' -p2682 -tp2683 -a(S'getBrush/1' -p2684 -S'getBrush(${1:This}) $2' -p2685 -tp2686 -a(S'getCharHeight/1' -p2687 -S'getCharHeight(${1:This}) $2' -p2688 -tp2689 -a(S'getCharWidth/1' -p2690 -S'getCharWidth(${1:This}) $2' -p2691 -tp2692 -a(S'getClippingBox/1' -p2693 -S'getClippingBox(${1:This}) $2' -p2694 -tp2695 -a(S'getFont/1' -p2696 -S'getFont(${1:This}) $2' -p2697 -tp2698 -a(S'getLayoutDirection/1' -p2699 -S'getLayoutDirection(${1:This}) $2' -p2700 -tp2701 -a(S'getLogicalFunction/1' -p2702 -S'getLogicalFunction(${1:This}) $2' -p2703 -tp2704 -a(S'getMapMode/1' -p2705 -S'getMapMode(${1:This}) $2' -p2706 -tp2707 -a(S'getMultiLineTextExtent/2' -p2708 -S'getMultiLineTextExtent(${1:This}, ${2:String}) $3' -p2709 -tp2710 -a(S'getMultiLineTextExtent/3' -p2711 -S'getMultiLineTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p2712 -tp2713 -a(S'getPPI/1' -p2714 -S'getPPI(${1:This}) $2' -p2715 -tp2716 -a(S'getPartialTextExtents/2' -p2717 -S'getPartialTextExtents(${1:This}, ${2:Text}) $3' -p2718 -tp2719 -a(S'getPen/1' -p2720 -S'getPen(${1:This}) $2' -p2721 -tp2722 -a(S'getPixel/2' -p2723 -S'getPixel(${1:This}, ${2:Pt}) $3' -p2724 -tp2725 -a(S'getSize/1' -p2726 -S'getSize(${1:This}) $2' -p2727 -tp2728 -a(S'getSizeMM/1' -p2729 -S'getSizeMM(${1:This}) $2' -p2730 -tp2731 -a(S'getTextBackground/1' -p2732 -S'getTextBackground(${1:This}) $2' -p2733 -tp2734 -a(S'getTextExtent/2' -p2735 -S'getTextExtent(${1:This}, ${2:String}) $3' -p2736 -tp2737 -a(S'getTextExtent/3' -p2738 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p2739 -tp2740 -a(S'getTextForeground/1' -p2741 -S'getTextForeground(${1:This}) $2' -p2742 -tp2743 -a(S'getUserScale/1' -p2744 -S'getUserScale(${1:This}) $2' -p2745 -tp2746 -a(S'gradientFillConcentric/4' -p2747 -S'gradientFillConcentric(${1:This}, ${2:Rect}, ${3:InitialColour}, ${4:DestColour}) $5' -p2748 -tp2749 -a(S'gradientFillConcentric/5' -p2750 -S'gradientFillConcentric(${1:This}, ${2:Rect}, ${3:InitialColour}, ${4:DestColour}, ${5:CircleCenter}) $6' -p2751 -tp2752 -a(S'gradientFillLinear/4' -p2753 -S'gradientFillLinear(${1:This}, ${2:Rect}, ${3:InitialColour}, ${4:DestColour}) $5' -p2754 -tp2755 -a(S'gradientFillLinear/5' -p2756 -S'gradientFillLinear(${1:This}, ${2:Rect}, ${3:InitialColour}, ${4:DestColour}, ${5:Options}) $6' -p2757 -tp2758 -a(S'isOk/1' -p2759 -S'isOk(${1:This}) $2' -p2760 -tp2761 -a(S'logicalToDeviceX/2' -p2762 -S'logicalToDeviceX(${1:This}, ${2:X}) $3' -p2763 -tp2764 -a(S'logicalToDeviceXRel/2' -p2765 -S'logicalToDeviceXRel(${1:This}, ${2:X}) $3' -p2766 -tp2767 -a(S'logicalToDeviceY/2' -p2768 -S'logicalToDeviceY(${1:This}, ${2:Y}) $3' -p2769 -tp2770 -a(S'logicalToDeviceYRel/2' -p2771 -S'logicalToDeviceYRel(${1:This}, ${2:Y}) $3' -p2772 -tp2773 -a(S'maxX/1' -p2774 -S'maxX(${1:This}) $2' -p2775 -tp2776 -a(S'maxY/1' -p2777 -S'maxY(${1:This}) $2' -p2778 -tp2779 -a(S'minX/1' -p2780 -S'minX(${1:This}) $2' -p2781 -tp2782 -a(S'minY/1' -p2783 -S'minY(${1:This}) $2' -p2784 -tp2785 -a(S'new/0' -p2786 -S'new() $1' -p2787 -tp2788 -a(S'new/1' -p2789 -S'new(${1:Win}) $2' -p2790 -tp2791 -a(S'parent_class/1' -p2792 -S'parent_class(${1:Param1}) $2' -p2793 -tp2794 -a(S'resetBoundingBox/1' -p2795 -S'resetBoundingBox(${1:This}) $2' -p2796 -tp2797 -a(S'setAxisOrientation/3' -p2798 -S'setAxisOrientation(${1:This}, ${2:XLeftRight}, ${3:YBottomUp}) $4' -p2799 -tp2800 -a(S'setBackground/2' -p2801 -S'setBackground(${1:This}, ${2:Brush}) $3' -p2802 -tp2803 -a(S'setBackgroundMode/2' -p2804 -S'setBackgroundMode(${1:This}, ${2:Mode}) $3' -p2805 -tp2806 -a(S'setBrush/2' -p2807 -S'setBrush(${1:This}, ${2:Brush}) $3' -p2808 -tp2809 -a(S'setClippingRegion/2' -p2810 -S'setClippingRegion(${1:This}, ${2:Region}) $3' -p2811 -tp2812 -a(S'setClippingRegion/3' -p2813 -S'setClippingRegion(${1:This}, ${2:Pt}, ${3:Sz}) $4' -p2814 -tp2815 -a(S'setDeviceOrigin/3' -p2816 -S'setDeviceOrigin(${1:This}, ${2:X}, ${3:Y}) $4' -p2817 -tp2818 -a(S'setFont/2' -p2819 -S'setFont(${1:This}, ${2:Font}) $3' -p2820 -tp2821 -a(S'setLayoutDirection/2' -p2822 -S'setLayoutDirection(${1:This}, ${2:Dir}) $3' -p2823 -tp2824 -a(S'setLogicalFunction/2' -p2825 -S'setLogicalFunction(${1:This}, ${2:Function}) $3' -p2826 -tp2827 -a(S'setMapMode/2' -p2828 -S'setMapMode(${1:This}, ${2:Mode}) $3' -p2829 -tp2830 -a(S'setPalette/2' -p2831 -S'setPalette(${1:This}, ${2:Palette}) $3' -p2832 -tp2833 -a(S'setPen/2' -p2834 -S'setPen(${1:This}, ${2:Pen}) $3' -p2835 -tp2836 -a(S'setTextBackground/2' -p2837 -S'setTextBackground(${1:This}, ${2:Colour}) $3' -p2838 -tp2839 -a(S'setTextForeground/2' -p2840 -S'setTextForeground(${1:This}, ${2:Colour}) $3' -p2841 -tp2842 -a(S'setUserScale/3' -p2843 -S'setUserScale(${1:This}, ${2:X}, ${3:Y}) $4' -p2844 -tp2845 -a(S'startDoc/2' -p2846 -S'startDoc(${1:This}, ${2:Message}) $3' -p2847 -tp2848 -a(S'startPage/1' -p2849 -S'startPage(${1:This}) $2' -p2850 -tp2851 -asS'edoc_layout' -p2852 -(lp2853 -(S'module/2' -p2854 -S'module(${1:Element}, ${2:Options}) $3' -p2855 -tp2856 -a(S'overview/2' -p2857 -S'overview(${1:Param1}, ${2:Options}) $3' -p2858 -tp2859 -a(S'package/2' -p2860 -S'package(${1:Param1}, ${2:Options}) $3' -p2861 -tp2862 -a(S'type/1' -p2863 -S'type(${1:Es}) $2' -p2864 -tp2865 -asS'tv_pb_funcs' -p2866 -(lp2867 -(S'init_btns/10' -p2868 -S'init_btns() $1' -p2869 -tp2870 -a(S'set_new_sort_col/2' -p2871 -S'set_new_sort_col(${1:SortCol}, ${2:ProcVars}) $3' -p2872 -tp2873 -a(S'update_hbtns/3' -p2874 -S'update_hbtns(${1:FirstColShown}, ${2:ColsShown}, ${3:ProcVars}) $4' -p2875 -tp2876 -a(S'update_keys/2' -p2877 -S'update_keys(${1:KeyList}, ${2:ProcVars}) $3' -p2878 -tp2879 -a(S'update_vbtns/5' -p2880 -S'update_vbtns(${1:NofRowsShown}, ${2:FirstRowShown}, ${3:Colors}, ${4:BlinkEnabled}, ${5:ProcVars}) $6' -p2881 -tp2882 -asS'CosTransactions_TransactionFactory_impl' -p2883 -(lp2884 -(S'code_change/3' -p2885 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p2886 -tp2887 -a(S'create/3' -p2888 -S'create(${1:Param1}, ${2:State}, ${3:TimeOut}) $4' -p2889 -tp2890 -a(S'handle_call/3' -p2891 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p2892 -tp2893 -a(S'handle_cast/2' -p2894 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p2895 -tp2896 -a(S'handle_info/2' -p2897 -S'handle_info(${1:Param1}, ${2:State}) $3' -p2898 -tp2899 -a(S'init/1' -p2900 -S'init(${1:Options}) $2' -p2901 -tp2902 -a(S'recreate/3' -p2903 -S'recreate(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p2904 -tp2905 -a(S'terminate/2' -p2906 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p2907 -tp2908 -asS'cover_web' -p2909 -(lp2910 -(S'add_node/2' -p2911 -S'add_node(${1:Env}, ${2:Input}) $3' -p2912 -tp2913 -a(S'calls/2' -p2914 -S'calls(${1:Env}, ${2:Input}) $3' -p2915 -tp2916 -a(S'code_change/3' -p2917 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p2918 -tp2919 -a(S'compile/2' -p2920 -S'compile(${1:Env}, ${2:Input}) $3' -p2921 -tp2922 -a(S'compile_frame/2' -p2923 -S'compile_frame(${1:Env}, ${2:Input}) $3' -p2924 -tp2925 -a(S'configData/0' -p2926 -S'configData() $1' -p2927 -tp2928 -a(S'coverage/2' -p2929 -S'coverage(${1:Env}, ${2:Input}) $3' -p2930 -tp2931 -a(S'handle_call/3' -p2932 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p2933 -tp2934 -a(S'handle_cast/2' -p2935 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p2936 -tp2937 -a(S'handle_info/2' -p2938 -S'handle_info(${1:Param1}, ${2:State}) $3' -p2939 -tp2940 -a(S'import/2' -p2941 -S'import(${1:Env}, ${2:Input}) $3' -p2942 -tp2943 -a(S'import_frame/2' -p2944 -S'import_frame(${1:Env}, ${2:Input}) $3' -p2945 -tp2946 -a(S'init/1' -p2947 -S'init(${1:Param1}) $2' -p2948 -tp2949 -a(S'list_dir/2' -p2950 -S'list_dir(${1:Env}, ${2:Input}) $3' -p2951 -tp2952 -a(S'menu_frame/2' -p2953 -S'menu_frame(${1:Env}, ${2:Input}) $3' -p2954 -tp2955 -a(S'nodes_frame/2' -p2956 -S'nodes_frame(${1:Env}, ${2:Input}) $3' -p2957 -tp2958 -a(S'remove_node/2' -p2959 -S'remove_node(${1:Env}, ${2:Input}) $3' -p2960 -tp2961 -a(S'result/2' -p2962 -S'result(${1:Env}, ${2:Input}) $3' -p2963 -tp2964 -a(S'result_frame/2' -p2965 -S'result_frame(${1:Env}, ${2:Input}) $3' -p2966 -tp2967 -a(S'start/0' -p2968 -S'start() $1' -p2969 -tp2970 -a(S'start_link/0' -p2971 -S'start_link() $1' -p2972 -tp2973 -a(S'stop/0' -p2974 -S'stop() $1' -p2975 -tp2976 -a(S'terminate/2' -p2977 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p2978 -tp2979 -asS'wxPaintEvent' -p2980 -(lp2981 -(S'getId/1' -p2982 -S'getId(${1:This}) $2' -p2983 -tp2984 -a(S'getSkipped/1' -p2985 -S'getSkipped(${1:This}) $2' -p2986 -tp2987 -a(S'getTimestamp/1' -p2988 -S'getTimestamp(${1:This}) $2' -p2989 -tp2990 -a(S'isCommandEvent/1' -p2991 -S'isCommandEvent(${1:This}) $2' -p2992 -tp2993 -a(S'parent_class/1' -p2994 -S'parent_class(${1:Param1}) $2' -p2995 -tp2996 -a(S'resumePropagation/2' -p2997 -S'resumePropagation(${1:This}, ${2:PropagationLevel}) $3' -p2998 -tp2999 -a(S'shouldPropagate/1' -p3000 -S'shouldPropagate(${1:This}) $2' -p3001 -tp3002 -a(S'skip/1' -p3003 -S'skip(${1:This}) $2' -p3004 -tp3005 -a(S'skip/2' -p3006 -S'skip(${1:This}, ${2:Options}) $3' -p3007 -tp3008 -a(S'stopPropagation/1' -p3009 -S'stopPropagation(${1:This}) $2' -p3010 -tp3011 -asS'v3_kernel' -p3012 -(lp3013 -(S'format_error/1' -p3014 -S'format_error(${1:Param1}) $2' -p3015 -tp3016 -a(S'module/2' -p3017 -S'module(${1:Param1}, ${2:Param2}) $3' -p3018 -tp3019 -asS'CosTransactions_InvalidControl' -p3020 -(lp3021 -(S'id/0' -p3022 -S'id() $1' -p3023 -tp3024 -a(S'name/0' -p3025 -S'name() $1' -p3026 -tp3027 -a(S'tc/0' -p3028 -S'tc() $1' -p3029 -tp3030 -asS'ct_master' -p3031 -(lp3032 -(S'abort/0' -p3033 -S'abort() $1' -p3034 -tp3035 -a(S'abort/1' -p3036 -S'abort(${1:Nodes}) $2' -p3037 -tp3038 -a(S'basic_html/1' -p3039 -S'basic_html(${1:Bool}) $2' -p3040 -tp3041 -a(S'init_master/7' -p3042 -S'init_master(${1:Parent}, ${2:NodeOptsList}, ${3:EvHandlers}, ${4:MasterLogDir}, ${5:LogDirs}, ${6:InitOptions}, ${7:Specs}) $8' -p3043 -tp3044 -a(S'init_node_ctrl/3' -p3045 -S'init_node_ctrl(${1:MasterPid}, ${2:Cookie}, ${3:Opts}) $4' -p3046 -tp3047 -a(S'progress/0' -p3048 -S'progress() $1' -p3049 -tp3050 -a(S'run/1' -p3051 -S'run(${1:TS}) $2' -p3052 -tp3053 -a(S'run/3' -p3054 -S'run(${1:TestSpecs}, ${2:InclNodes}, ${3:ExclNodes}) $4' -p3055 -tp3056 -a(S'run/4' -p3057 -S'run(${1:TS}, ${2:AllowUserTerms}, ${3:InclNodes}, ${4:ExclNodes}) $5' -p3058 -tp3059 -a(S'run_on_node/2' -p3060 -S'run_on_node(${1:TestSpecs}, ${2:Node}) $3' -p3061 -tp3062 -a(S'run_on_node/3' -p3063 -S'run_on_node(${1:TS}, ${2:AllowUserTerms}, ${3:Node}) $4' -p3064 -tp3065 -a(S'run_test/1' -p3066 -S'run_test(${1:NodeOptsList}) $2' -p3067 -tp3068 -a(S'run_test/2' -p3069 -S'run_test(${1:Node}, ${2:Opts}) $3' -p3070 -tp3071 -a(S'status/2' -p3072 -S'status(${1:MasterPid}, ${2:Event}) $3' -p3073 -tp3074 -asS'ssh_sftp' -p3075 -(lp3076 -(S'apread/4' -p3077 -S'apread(${1:Pid}, ${2:Handle}, ${3:Offset}, ${4:Len}) $5' -p3078 -tp3079 -a(S'apwrite/4' -p3080 -S'apwrite(${1:Pid}, ${2:Handle}, ${3:Offset}, ${4:Data}) $5' -p3081 -tp3082 -a(S'aread/3' -p3083 -S'aread(${1:Pid}, ${2:Handle}, ${3:Len}) $4' -p3084 -tp3085 -a(S'attr_to_info/1' -p3086 -S'attr_to_info(${1:A}) $2' -p3087 -tp3088 -a(S'awrite/3' -p3089 -S'awrite(${1:Pid}, ${2:Handle}, ${3:Data}) $4' -p3090 -tp3091 -a(S'close/2' -p3092 -S'close(${1:Pid}, ${2:Handle}) $3' -p3093 -tp3094 -a(S'close/3' -p3095 -S'close(${1:Pid}, ${2:Handle}, ${3:FileOpTimeout}) $4' -p3096 -tp3097 -a(S'del_dir/2' -p3098 -S'del_dir(${1:Pid}, ${2:Name}) $3' -p3099 -tp3100 -a(S'del_dir/3' -p3101 -S'del_dir(${1:Pid}, ${2:Name}, ${3:FileOpTimeout}) $4' -p3102 -tp3103 -a(S'delete/2' -p3104 -S'delete(${1:Pid}, ${2:Name}) $3' -p3105 -tp3106 -a(S'delete/3' -p3107 -S'delete(${1:Pid}, ${2:Name}, ${3:FileOpTimeout}) $4' -p3108 -tp3109 -a(S'get_file_info/2' -p3110 -S'get_file_info(${1:Pid}, ${2:Handle}) $3' -p3111 -tp3112 -a(S'get_file_info/3' -p3113 -S'get_file_info(${1:Pid}, ${2:Handle}, ${3:FileOpTimeout}) $4' -p3114 -tp3115 -a(S'handle_call/3' -p3116 -S'handle_call(${1:Call}, ${2:From}, ${3:State}) $4' -p3117 -tp3118 -a(S'handle_msg/2' -p3119 -S'handle_msg(${1:Param1}, ${2:State}) $3' -p3120 -tp3121 -a(S'handle_ssh_msg/2' -p3122 -S'handle_ssh_msg(${1:Param1}, ${2:State}) $3' -p3123 -tp3124 -a(S'info_to_attr/1' -p3125 -S'info_to_attr(${1:I}) $2' -p3126 -tp3127 -a(S'init/1' -p3128 -S'init(${1:Param1}) $2' -p3129 -tp3130 -a(S'list_dir/2' -p3131 -S'list_dir(${1:Pid}, ${2:Name}) $3' -p3132 -tp3133 -a(S'list_dir/3' -p3134 -S'list_dir(${1:Pid}, ${2:Name}, ${3:FileOpTimeout}) $4' -p3135 -tp3136 -a(S'make_dir/2' -p3137 -S'make_dir(${1:Pid}, ${2:Name}) $3' -p3138 -tp3139 -a(S'make_dir/3' -p3140 -S'make_dir(${1:Pid}, ${2:Name}, ${3:FileOpTimeout}) $4' -p3141 -tp3142 -a(S'make_symlink/3' -p3143 -S'make_symlink(${1:Pid}, ${2:Name}, ${3:Target}) $4' -p3144 -tp3145 -a(S'make_symlink/4' -p3146 -S'make_symlink(${1:Pid}, ${2:Name}, ${3:Target}, ${4:FileOpTimeout}) $5' -p3147 -tp3148 -a(S'open/3' -p3149 -S'open(${1:Pid}, ${2:File}, ${3:Mode}) $4' -p3150 -tp3151 -a(S'open/4' -p3152 -S'open(${1:Pid}, ${2:File}, ${3:Mode}, ${4:FileOpTimeout}) $5' -p3153 -tp3154 -a(S'opendir/2' -p3155 -S'opendir(${1:Pid}, ${2:Path}) $3' -p3156 -tp3157 -a(S'opendir/3' -p3158 -S'opendir(${1:Pid}, ${2:Path}, ${3:FileOpTimeout}) $4' -p3159 -tp3160 -a(S'position/3' -p3161 -S'position(${1:Pid}, ${2:Handle}, ${3:Pos}) $4' -p3162 -tp3163 -a(S'position/4' -p3164 -S'position(${1:Pid}, ${2:Handle}, ${3:Pos}, ${4:FileOpTimeout}) $5' -p3165 -tp3166 -a(S'pread/4' -p3167 -S'pread(${1:Pid}, ${2:Handle}, ${3:Offset}, ${4:Len}) $5' -p3168 -tp3169 -a(S'pread/5' -p3170 -S'pread(${1:Pid}, ${2:Handle}, ${3:Offset}, ${4:Len}, ${5:FileOpTimeout}) $6' -p3171 -tp3172 -a(S'pwrite/4' -p3173 -S'pwrite(${1:Pid}, ${2:Handle}, ${3:Offset}, ${4:Data}) $5' -p3174 -tp3175 -a(S'pwrite/5' -p3176 -S'pwrite(${1:Pid}, ${2:Handle}, ${3:Offset}, ${4:Data}, ${5:FileOpTimeout}) $6' -p3177 -tp3178 -a(S'read/3' -p3179 -S'read(${1:Pid}, ${2:Handle}, ${3:Len}) $4' -p3180 -tp3181 -a(S'read/4' -p3182 -S'read(${1:Pid}, ${2:Handle}, ${3:Offset}, ${4:Len}) $5' -p3183 -tp3184 -a(S'read_file/2' -p3185 -S'read_file(${1:Pid}, ${2:Name}) $3' -p3186 -tp3187 -a(S'read_file/3' -p3188 -S'read_file(${1:Pid}, ${2:Name}, ${3:FileOpTimeout}) $4' -p3189 -tp3190 -a(S'read_file_info/2' -p3191 -S'read_file_info(${1:Pid}, ${2:Name}) $3' -p3192 -tp3193 -a(S'read_file_info/3' -p3194 -S'read_file_info(${1:Pid}, ${2:Name}, ${3:FileOpTimeout}) $4' -p3195 -tp3196 -a(S'read_link/2' -p3197 -S'read_link(${1:Pid}, ${2:LinkName}) $3' -p3198 -tp3199 -a(S'read_link/3' -p3200 -S'read_link(${1:Pid}, ${2:LinkName}, ${3:FileOpTimeout}) $4' -p3201 -tp3202 -a(S'read_link_info/2' -p3203 -S'read_link_info(${1:Pid}, ${2:Name}) $3' -p3204 -tp3205 -a(S'read_link_info/3' -p3206 -S'read_link_info(${1:Pid}, ${2:Name}, ${3:FileOpTimeout}) $4' -p3207 -tp3208 -a(S'readdir/2' -p3209 -S'readdir(${1:Pid}, ${2:Handle}) $3' -p3210 -tp3211 -a(S'readdir/3' -p3212 -S'readdir(${1:Pid}, ${2:Handle}, ${3:FileOpTimeout}) $4' -p3213 -tp3214 -a(S'real_path/2' -p3215 -S'real_path(${1:Pid}, ${2:Path}) $3' -p3216 -tp3217 -a(S'real_path/3' -p3218 -S'real_path(${1:Pid}, ${2:Path}, ${3:FileOpTimeout}) $4' -p3219 -tp3220 -a(S'recv_window/1' -p3221 -S'recv_window(${1:Pid}) $2' -p3222 -tp3223 -a(S'recv_window/2' -p3224 -S'recv_window(${1:Pid}, ${2:FileOpTimeout}) $3' -p3225 -tp3226 -a(S'rename/3' -p3227 -S'rename(${1:Pid}, ${2:FromFile}, ${3:ToFile}) $4' -p3228 -tp3229 -a(S'rename/4' -p3230 -S'rename(${1:Pid}, ${2:FromFile}, ${3:ToFile}, ${4:FileOpTimeout}) $5' -p3231 -tp3232 -a(S'send_window/1' -p3233 -S'send_window(${1:Pid}) $2' -p3234 -tp3235 -a(S'send_window/2' -p3236 -S'send_window(${1:Pid}, ${2:FileOpTimeout}) $3' -p3237 -tp3238 -a(S'start_channel/1' -p3239 -S'start_channel(${1:Cm}) $2' -p3240 -tp3241 -a(S'start_channel/2' -p3242 -S'start_channel(${1:Cm}, ${2:Opts}) $3' -p3243 -tp3244 -a(S'start_channel/3' -p3245 -S'start_channel(${1:Host}, ${2:Port}, ${3:Opts}) $4' -p3246 -tp3247 -a(S'stop_channel/1' -p3248 -S'stop_channel(${1:Pid}) $2' -p3249 -tp3250 -a(S'terminate/2' -p3251 -S'terminate(${1:Param1}, ${2:State}) $3' -p3252 -tp3253 -a(S'write/3' -p3254 -S'write(${1:Pid}, ${2:Handle}, ${3:Data}) $4' -p3255 -tp3256 -a(S'write/4' -p3257 -S'write(${1:Pid}, ${2:Handle}, ${3:Offset}, ${4:Data}) $5' -p3258 -tp3259 -a(S'write_file/3' -p3260 -S'write_file(${1:Pid}, ${2:Name}, ${3:List}) $4' -p3261 -tp3262 -a(S'write_file/4' -p3263 -S'write_file(${1:Pid}, ${2:Name}, ${3:List}, ${4:FileOpTimeout}) $5' -p3264 -tp3265 -a(S'write_file_info/3' -p3266 -S'write_file_info(${1:Pid}, ${2:Name}, ${3:Info}) $4' -p3267 -tp3268 -a(S'write_file_info/4' -p3269 -S'write_file_info(${1:Pid}, ${2:Name}, ${3:Info}, ${4:FileOpTimeout}) $5' -p3270 -tp3271 -asS'wxHtmlWindow' -p3272 -(lp3273 -(S'appendToPage/2' -p3274 -S'appendToPage(${1:This}, ${2:Source}) $3' -p3275 -tp3276 -a(S'cacheBestSize/2' -p3277 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p3278 -tp3279 -a(S'calcScrolledPosition/2' -p3280 -S'calcScrolledPosition(${1:This}, ${2:Pt}) $3' -p3281 -tp3282 -a(S'calcScrolledPosition/3' -p3283 -S'calcScrolledPosition(${1:This}, ${2:X}, ${3:Y}) $4' -p3284 -tp3285 -a(S'calcUnscrolledPosition/2' -p3286 -S'calcUnscrolledPosition(${1:This}, ${2:Pt}) $3' -p3287 -tp3288 -a(S'calcUnscrolledPosition/3' -p3289 -S'calcUnscrolledPosition(${1:This}, ${2:X}, ${3:Y}) $4' -p3290 -tp3291 -a(S'captureMouse/1' -p3292 -S'captureMouse(${1:This}) $2' -p3293 -tp3294 -a(S'center/1' -p3295 -S'center(${1:This}) $2' -p3296 -tp3297 -a(S'center/2' -p3298 -S'center(${1:This}, ${2:Options}) $3' -p3299 -tp3300 -a(S'centerOnParent/1' -p3301 -S'centerOnParent(${1:This}) $2' -p3302 -tp3303 -a(S'centerOnParent/2' -p3304 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p3305 -tp3306 -a(S'centre/1' -p3307 -S'centre(${1:This}) $2' -p3308 -tp3309 -a(S'centre/2' -p3310 -S'centre(${1:This}, ${2:Options}) $3' -p3311 -tp3312 -a(S'centreOnParent/1' -p3313 -S'centreOnParent(${1:This}) $2' -p3314 -tp3315 -a(S'centreOnParent/2' -p3316 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p3317 -tp3318 -a(S'clearBackground/1' -p3319 -S'clearBackground(${1:This}) $2' -p3320 -tp3321 -a(S'clientToScreen/2' -p3322 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p3323 -tp3324 -a(S'clientToScreen/3' -p3325 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p3326 -tp3327 -a(S'close/1' -p3328 -S'close(${1:This}) $2' -p3329 -tp3330 -a(S'close/2' -p3331 -S'close(${1:This}, ${2:Options}) $3' -p3332 -tp3333 -a(S'connect/2' -p3334 -S'connect(${1:This}, ${2:EventType}) $3' -p3335 -tp3336 -a(S'connect/3' -p3337 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p3338 -tp3339 -a(S'convertDialogToPixels/2' -p3340 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p3341 -tp3342 -a(S'convertPixelsToDialog/2' -p3343 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p3344 -tp3345 -a(S'destroy/1' -p3346 -S'destroy(${1:This}) $2' -p3347 -tp3348 -a(S'destroyChildren/1' -p3349 -S'destroyChildren(${1:This}) $2' -p3350 -tp3351 -a(S'disable/1' -p3352 -S'disable(${1:This}) $2' -p3353 -tp3354 -a(S'disconnect/1' -p3355 -S'disconnect(${1:This}) $2' -p3356 -tp3357 -a(S'disconnect/2' -p3358 -S'disconnect(${1:This}, ${2:EventType}) $3' -p3359 -tp3360 -a(S'disconnect/3' -p3361 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p3362 -tp3363 -a(S'doPrepareDC/2' -p3364 -S'doPrepareDC(${1:This}, ${2:Dc}) $3' -p3365 -tp3366 -a(S'enable/1' -p3367 -S'enable(${1:This}) $2' -p3368 -tp3369 -a(S'enable/2' -p3370 -S'enable(${1:This}, ${2:Options}) $3' -p3371 -tp3372 -a(S'enableScrolling/3' -p3373 -S'enableScrolling(${1:This}, ${2:X_scrolling}, ${3:Y_scrolling}) $4' -p3374 -tp3375 -a(S'findWindow/2' -p3376 -S'findWindow(${1:This}, ${2:Winid}) $3' -p3377 -tp3378 -a(S'fit/1' -p3379 -S'fit(${1:This}) $2' -p3380 -tp3381 -a(S'fitInside/1' -p3382 -S'fitInside(${1:This}) $2' -p3383 -tp3384 -a(S'freeze/1' -p3385 -S'freeze(${1:This}) $2' -p3386 -tp3387 -a(S'getAcceleratorTable/1' -p3388 -S'getAcceleratorTable(${1:This}) $2' -p3389 -tp3390 -a(S'getBackgroundColour/1' -p3391 -S'getBackgroundColour(${1:This}) $2' -p3392 -tp3393 -a(S'getBackgroundStyle/1' -p3394 -S'getBackgroundStyle(${1:This}) $2' -p3395 -tp3396 -a(S'getBestSize/1' -p3397 -S'getBestSize(${1:This}) $2' -p3398 -tp3399 -a(S'getCaret/1' -p3400 -S'getCaret(${1:This}) $2' -p3401 -tp3402 -a(S'getCharHeight/1' -p3403 -S'getCharHeight(${1:This}) $2' -p3404 -tp3405 -a(S'getCharWidth/1' -p3406 -S'getCharWidth(${1:This}) $2' -p3407 -tp3408 -a(S'getChildren/1' -p3409 -S'getChildren(${1:This}) $2' -p3410 -tp3411 -a(S'getClientSize/1' -p3412 -S'getClientSize(${1:This}) $2' -p3413 -tp3414 -a(S'getContainingSizer/1' -p3415 -S'getContainingSizer(${1:This}) $2' -p3416 -tp3417 -a(S'getCursor/1' -p3418 -S'getCursor(${1:This}) $2' -p3419 -tp3420 -a(S'getDropTarget/1' -p3421 -S'getDropTarget(${1:This}) $2' -p3422 -tp3423 -a(S'getEventHandler/1' -p3424 -S'getEventHandler(${1:This}) $2' -p3425 -tp3426 -a(S'getExtraStyle/1' -p3427 -S'getExtraStyle(${1:This}) $2' -p3428 -tp3429 -a(S'getFont/1' -p3430 -S'getFont(${1:This}) $2' -p3431 -tp3432 -a(S'getForegroundColour/1' -p3433 -S'getForegroundColour(${1:This}) $2' -p3434 -tp3435 -a(S'getGrandParent/1' -p3436 -S'getGrandParent(${1:This}) $2' -p3437 -tp3438 -a(S'getHandle/1' -p3439 -S'getHandle(${1:This}) $2' -p3440 -tp3441 -a(S'getHelpText/1' -p3442 -S'getHelpText(${1:This}) $2' -p3443 -tp3444 -a(S'getId/1' -p3445 -S'getId(${1:This}) $2' -p3446 -tp3447 -a(S'getLabel/1' -p3448 -S'getLabel(${1:This}) $2' -p3449 -tp3450 -a(S'getMaxSize/1' -p3451 -S'getMaxSize(${1:This}) $2' -p3452 -tp3453 -a(S'getMinSize/1' -p3454 -S'getMinSize(${1:This}) $2' -p3455 -tp3456 -a(S'getName/1' -p3457 -S'getName(${1:This}) $2' -p3458 -tp3459 -a(S'getOpenedAnchor/1' -p3460 -S'getOpenedAnchor(${1:This}) $2' -p3461 -tp3462 -a(S'getOpenedPage/1' -p3463 -S'getOpenedPage(${1:This}) $2' -p3464 -tp3465 -a(S'getOpenedPageTitle/1' -p3466 -S'getOpenedPageTitle(${1:This}) $2' -p3467 -tp3468 -a(S'getParent/1' -p3469 -S'getParent(${1:This}) $2' -p3470 -tp3471 -a(S'getPosition/1' -p3472 -S'getPosition(${1:This}) $2' -p3473 -tp3474 -a(S'getRect/1' -p3475 -S'getRect(${1:This}) $2' -p3476 -tp3477 -a(S'getRelatedFrame/1' -p3478 -S'getRelatedFrame(${1:This}) $2' -p3479 -tp3480 -a(S'getScreenPosition/1' -p3481 -S'getScreenPosition(${1:This}) $2' -p3482 -tp3483 -a(S'getScreenRect/1' -p3484 -S'getScreenRect(${1:This}) $2' -p3485 -tp3486 -a(S'getScrollPixelsPerUnit/1' -p3487 -S'getScrollPixelsPerUnit(${1:This}) $2' -p3488 -tp3489 -a(S'getScrollPos/2' -p3490 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p3491 -tp3492 -a(S'getScrollRange/2' -p3493 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p3494 -tp3495 -a(S'getScrollThumb/2' -p3496 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p3497 -tp3498 -a(S'getSize/1' -p3499 -S'getSize(${1:This}) $2' -p3500 -tp3501 -a(S'getSizer/1' -p3502 -S'getSizer(${1:This}) $2' -p3503 -tp3504 -a(S'getTextExtent/2' -p3505 -S'getTextExtent(${1:This}, ${2:String}) $3' -p3506 -tp3507 -a(S'getTextExtent/3' -p3508 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p3509 -tp3510 -a(S'getToolTip/1' -p3511 -S'getToolTip(${1:This}) $2' -p3512 -tp3513 -a(S'getUpdateRegion/1' -p3514 -S'getUpdateRegion(${1:This}) $2' -p3515 -tp3516 -a(S'getViewStart/1' -p3517 -S'getViewStart(${1:This}) $2' -p3518 -tp3519 -a(S'getVirtualSize/1' -p3520 -S'getVirtualSize(${1:This}) $2' -p3521 -tp3522 -a(S'getWindowStyleFlag/1' -p3523 -S'getWindowStyleFlag(${1:This}) $2' -p3524 -tp3525 -a(S'getWindowVariant/1' -p3526 -S'getWindowVariant(${1:This}) $2' -p3527 -tp3528 -a(S'hasCapture/1' -p3529 -S'hasCapture(${1:This}) $2' -p3530 -tp3531 -a(S'hasScrollbar/2' -p3532 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p3533 -tp3534 -a(S'hasTransparentBackground/1' -p3535 -S'hasTransparentBackground(${1:This}) $2' -p3536 -tp3537 -a(S'hide/1' -p3538 -S'hide(${1:This}) $2' -p3539 -tp3540 -a(S'historyBack/1' -p3541 -S'historyBack(${1:This}) $2' -p3542 -tp3543 -a(S'historyCanBack/1' -p3544 -S'historyCanBack(${1:This}) $2' -p3545 -tp3546 -a(S'historyCanForward/1' -p3547 -S'historyCanForward(${1:This}) $2' -p3548 -tp3549 -a(S'historyClear/1' -p3550 -S'historyClear(${1:This}) $2' -p3551 -tp3552 -a(S'historyForward/1' -p3553 -S'historyForward(${1:This}) $2' -p3554 -tp3555 -a(S'inheritAttributes/1' -p3556 -S'inheritAttributes(${1:This}) $2' -p3557 -tp3558 -a(S'initDialog/1' -p3559 -S'initDialog(${1:This}) $2' -p3560 -tp3561 -a(S'invalidateBestSize/1' -p3562 -S'invalidateBestSize(${1:This}) $2' -p3563 -tp3564 -a(S'isEnabled/1' -p3565 -S'isEnabled(${1:This}) $2' -p3566 -tp3567 -a(S'isExposed/2' -p3568 -S'isExposed(${1:This}, ${2:Pt}) $3' -p3569 -tp3570 -a(S'isExposed/3' -p3571 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p3572 -tp3573 -a(S'isExposed/5' -p3574 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p3575 -tp3576 -a(S'isRetained/1' -p3577 -S'isRetained(${1:This}) $2' -p3578 -tp3579 -a(S'isShown/1' -p3580 -S'isShown(${1:This}) $2' -p3581 -tp3582 -a(S'isTopLevel/1' -p3583 -S'isTopLevel(${1:This}) $2' -p3584 -tp3585 -a(S'layout/1' -p3586 -S'layout(${1:This}) $2' -p3587 -tp3588 -a(S'lineDown/1' -p3589 -S'lineDown(${1:This}) $2' -p3590 -tp3591 -a(S'lineUp/1' -p3592 -S'lineUp(${1:This}) $2' -p3593 -tp3594 -a(S'loadFile/2' -p3595 -S'loadFile(${1:This}, ${2:Filename}) $3' -p3596 -tp3597 -a(S'loadPage/2' -p3598 -S'loadPage(${1:This}, ${2:Location}) $3' -p3599 -tp3600 -a(S'lower/1' -p3601 -S'lower(${1:This}) $2' -p3602 -tp3603 -a(S'makeModal/1' -p3604 -S'makeModal(${1:This}) $2' -p3605 -tp3606 -a(S'makeModal/2' -p3607 -S'makeModal(${1:This}, ${2:Options}) $3' -p3608 -tp3609 -a(S'move/2' -p3610 -S'move(${1:This}, ${2:Pt}) $3' -p3611 -tp3612 -a(S'move/3' -p3613 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p3614 -tp3615 -a(S'move/4' -p3616 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p3617 -tp3618 -a(S'moveAfterInTabOrder/2' -p3619 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p3620 -tp3621 -a(S'moveBeforeInTabOrder/2' -p3622 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p3623 -tp3624 -a(S'navigate/1' -p3625 -S'navigate(${1:This}) $2' -p3626 -tp3627 -a(S'navigate/2' -p3628 -S'navigate(${1:This}, ${2:Options}) $3' -p3629 -tp3630 -a(S'new/0' -p3631 -S'new() $1' -p3632 -tp3633 -a(S'new/1' -p3634 -S'new(${1:Parent}) $2' -p3635 -tp3636 -a(S'new/2' -p3637 -S'new(${1:Parent}, ${2:Param2}) $3' -p3638 -tp3639 -a(S'pageDown/1' -p3640 -S'pageDown(${1:This}) $2' -p3641 -tp3642 -a(S'pageUp/1' -p3643 -S'pageUp(${1:This}) $2' -p3644 -tp3645 -a(S'parent_class/1' -p3646 -S'parent_class(${1:Param1}) $2' -p3647 -tp3648 -a(S'popEventHandler/1' -p3649 -S'popEventHandler(${1:This}) $2' -p3650 -tp3651 -a(S'popEventHandler/2' -p3652 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p3653 -tp3654 -a(S'popupMenu/2' -p3655 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p3656 -tp3657 -a(S'popupMenu/3' -p3658 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p3659 -tp3660 -a(S'popupMenu/4' -p3661 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p3662 -tp3663 -a(S'prepareDC/2' -p3664 -S'prepareDC(${1:This}, ${2:Dc}) $3' -p3665 -tp3666 -a(S'raise/1' -p3667 -S'raise(${1:This}) $2' -p3668 -tp3669 -a(S'refresh/1' -p3670 -S'refresh(${1:This}) $2' -p3671 -tp3672 -a(S'refresh/2' -p3673 -S'refresh(${1:This}, ${2:Options}) $3' -p3674 -tp3675 -a(S'refreshRect/2' -p3676 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p3677 -tp3678 -a(S'refreshRect/3' -p3679 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p3680 -tp3681 -a(S'releaseMouse/1' -p3682 -S'releaseMouse(${1:This}) $2' -p3683 -tp3684 -a(S'removeChild/2' -p3685 -S'removeChild(${1:This}, ${2:Child}) $3' -p3686 -tp3687 -a(S'reparent/2' -p3688 -S'reparent(${1:This}, ${2:NewParent}) $3' -p3689 -tp3690 -a(S'screenToClient/1' -p3691 -S'screenToClient(${1:This}) $2' -p3692 -tp3693 -a(S'screenToClient/2' -p3694 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p3695 -tp3696 -a(S'scroll/3' -p3697 -S'scroll(${1:This}, ${2:X}, ${3:Y}) $4' -p3698 -tp3699 -a(S'scrollLines/2' -p3700 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p3701 -tp3702 -a(S'scrollPages/2' -p3703 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p3704 -tp3705 -a(S'scrollWindow/3' -p3706 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p3707 -tp3708 -a(S'scrollWindow/4' -p3709 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p3710 -tp3711 -a(S'selectAll/1' -p3712 -S'selectAll(${1:This}) $2' -p3713 -tp3714 -a(S'selectLine/2' -p3715 -S'selectLine(${1:This}, ${2:Pos}) $3' -p3716 -tp3717 -a(S'selectWord/2' -p3718 -S'selectWord(${1:This}, ${2:Pos}) $3' -p3719 -tp3720 -a(S'selectionToText/1' -p3721 -S'selectionToText(${1:This}) $2' -p3722 -tp3723 -a(S'setAcceleratorTable/2' -p3724 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p3725 -tp3726 -a(S'setAutoLayout/2' -p3727 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p3728 -tp3729 -a(S'setBackgroundColour/2' -p3730 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p3731 -tp3732 -a(S'setBackgroundStyle/2' -p3733 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p3734 -tp3735 -a(S'setBorders/2' -p3736 -S'setBorders(${1:This}, ${2:B}) $3' -p3737 -tp3738 -a(S'setCaret/2' -p3739 -S'setCaret(${1:This}, ${2:Caret}) $3' -p3740 -tp3741 -a(S'setClientSize/2' -p3742 -S'setClientSize(${1:This}, ${2:Size}) $3' -p3743 -tp3744 -a(S'setClientSize/3' -p3745 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p3746 -tp3747 -a(S'setContainingSizer/2' -p3748 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p3749 -tp3750 -a(S'setCursor/2' -p3751 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p3752 -tp3753 -a(S'setDropTarget/2' -p3754 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p3755 -tp3756 -a(S'setExtraStyle/2' -p3757 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p3758 -tp3759 -a(S'setFocus/1' -p3760 -S'setFocus(${1:This}) $2' -p3761 -tp3762 -a(S'setFocusFromKbd/1' -p3763 -S'setFocusFromKbd(${1:This}) $2' -p3764 -tp3765 -a(S'setFont/2' -p3766 -S'setFont(${1:This}, ${2:Font}) $3' -p3767 -tp3768 -a(S'setFonts/3' -p3769 -S'setFonts(${1:This}, ${2:Normal_face}, ${3:Fixed_face}) $4' -p3770 -tp3771 -a(S'setFonts/4' -p3772 -S'setFonts(${1:This}, ${2:Normal_face}, ${3:Fixed_face}, ${4:Param4}) $5' -p3773 -tp3774 -a(S'setForegroundColour/2' -p3775 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p3776 -tp3777 -a(S'setHelpText/2' -p3778 -S'setHelpText(${1:This}, ${2:Text}) $3' -p3779 -tp3780 -a(S'setId/2' -p3781 -S'setId(${1:This}, ${2:Winid}) $3' -p3782 -tp3783 -a(S'setLabel/2' -p3784 -S'setLabel(${1:This}, ${2:Label}) $3' -p3785 -tp3786 -a(S'setMaxSize/2' -p3787 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p3788 -tp3789 -a(S'setMinSize/2' -p3790 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p3791 -tp3792 -a(S'setName/2' -p3793 -S'setName(${1:This}, ${2:Name}) $3' -p3794 -tp3795 -a(S'setOwnBackgroundColour/2' -p3796 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p3797 -tp3798 -a(S'setOwnFont/2' -p3799 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p3800 -tp3801 -a(S'setOwnForegroundColour/2' -p3802 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p3803 -tp3804 -a(S'setPage/2' -p3805 -S'setPage(${1:This}, ${2:Source}) $3' -p3806 -tp3807 -a(S'setPalette/2' -p3808 -S'setPalette(${1:This}, ${2:Pal}) $3' -p3809 -tp3810 -a(S'setRelatedFrame/3' -p3811 -S'setRelatedFrame(${1:This}, ${2:Frame}, ${3:Format}) $4' -p3812 -tp3813 -a(S'setRelatedStatusBar/2' -p3814 -S'setRelatedStatusBar(${1:This}, ${2:Bar}) $3' -p3815 -tp3816 -a(S'setScrollPos/3' -p3817 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p3818 -tp3819 -a(S'setScrollPos/4' -p3820 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p3821 -tp3822 -a(S'setScrollRate/3' -p3823 -S'setScrollRate(${1:This}, ${2:Xstep}, ${3:Ystep}) $4' -p3824 -tp3825 -a(S'setScrollbar/5' -p3826 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p3827 -tp3828 -a(S'setScrollbar/6' -p3829 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p3830 -tp3831 -a(S'setScrollbars/5' -p3832 -S'setScrollbars(${1:This}, ${2:PixelsPerUnitX}, ${3:PixelsPerUnitY}, ${4:NoUnitsX}, ${5:NoUnitsY}) $6' -p3833 -tp3834 -a(S'setScrollbars/6' -p3835 -S'setScrollbars(${1:This}, ${2:PixelsPerUnitX}, ${3:PixelsPerUnitY}, ${4:NoUnitsX}, ${5:NoUnitsY}, ${6:Options}) $7' -p3836 -tp3837 -a(S'setSize/2' -p3838 -S'setSize(${1:This}, ${2:Rect}) $3' -p3839 -tp3840 -a(S'setSize/3' -p3841 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p3842 -tp3843 -a(S'setSize/5' -p3844 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p3845 -tp3846 -a(S'setSize/6' -p3847 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p3848 -tp3849 -a(S'setSizeHints/2' -p3850 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p3851 -tp3852 -a(S'setSizeHints/3' -p3853 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p3854 -tp3855 -a(S'setSizeHints/4' -p3856 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p3857 -tp3858 -a(S'setSizer/2' -p3859 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p3860 -tp3861 -a(S'setSizer/3' -p3862 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p3863 -tp3864 -a(S'setSizerAndFit/2' -p3865 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p3866 -tp3867 -a(S'setSizerAndFit/3' -p3868 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p3869 -tp3870 -a(S'setTargetWindow/2' -p3871 -S'setTargetWindow(${1:This}, ${2:Target}) $3' -p3872 -tp3873 -a(S'setThemeEnabled/2' -p3874 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p3875 -tp3876 -a(S'setToolTip/2' -p3877 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p3878 -tp3879 -a(S'setVirtualSize/2' -p3880 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p3881 -tp3882 -a(S'setVirtualSize/3' -p3883 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p3884 -tp3885 -a(S'setVirtualSizeHints/2' -p3886 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p3887 -tp3888 -a(S'setVirtualSizeHints/3' -p3889 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p3890 -tp3891 -a(S'setVirtualSizeHints/4' -p3892 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p3893 -tp3894 -a(S'setWindowStyle/2' -p3895 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p3896 -tp3897 -a(S'setWindowStyleFlag/2' -p3898 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p3899 -tp3900 -a(S'setWindowVariant/2' -p3901 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p3902 -tp3903 -a(S'shouldInheritColours/1' -p3904 -S'shouldInheritColours(${1:This}) $2' -p3905 -tp3906 -a(S'show/1' -p3907 -S'show(${1:This}) $2' -p3908 -tp3909 -a(S'show/2' -p3910 -S'show(${1:This}, ${2:Options}) $3' -p3911 -tp3912 -a(S'thaw/1' -p3913 -S'thaw(${1:This}) $2' -p3914 -tp3915 -a(S'toText/1' -p3916 -S'toText(${1:This}) $2' -p3917 -tp3918 -a(S'transferDataFromWindow/1' -p3919 -S'transferDataFromWindow(${1:This}) $2' -p3920 -tp3921 -a(S'transferDataToWindow/1' -p3922 -S'transferDataToWindow(${1:This}) $2' -p3923 -tp3924 -a(S'update/1' -p3925 -S'update(${1:This}) $2' -p3926 -tp3927 -a(S'updateWindowUI/1' -p3928 -S'updateWindowUI(${1:This}) $2' -p3929 -tp3930 -a(S'updateWindowUI/2' -p3931 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p3932 -tp3933 -a(S'validate/1' -p3934 -S'validate(${1:This}) $2' -p3935 -tp3936 -a(S'warpPointer/3' -p3937 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p3938 -tp3939 -asS'wxMaximizeEvent' -p3940 -(lp3941 -(S'getId/1' -p3942 -S'getId(${1:This}) $2' -p3943 -tp3944 -a(S'getSkipped/1' -p3945 -S'getSkipped(${1:This}) $2' -p3946 -tp3947 -a(S'getTimestamp/1' -p3948 -S'getTimestamp(${1:This}) $2' -p3949 -tp3950 -a(S'isCommandEvent/1' -p3951 -S'isCommandEvent(${1:This}) $2' -p3952 -tp3953 -a(S'parent_class/1' -p3954 -S'parent_class(${1:Param1}) $2' -p3955 -tp3956 -a(S'resumePropagation/2' -p3957 -S'resumePropagation(${1:This}, ${2:PropagationLevel}) $3' -p3958 -tp3959 -a(S'shouldPropagate/1' -p3960 -S'shouldPropagate(${1:This}) $2' -p3961 -tp3962 -a(S'skip/1' -p3963 -S'skip(${1:This}) $2' -p3964 -tp3965 -a(S'skip/2' -p3966 -S'skip(${1:This}, ${2:Options}) $3' -p3967 -tp3968 -a(S'stopPropagation/1' -p3969 -S'stopPropagation(${1:This}) $2' -p3970 -tp3971 -asS'orber' -p3972 -(lp3973 -(S'activate_audit_trail/0' -p3974 -S'activate_audit_trail() $1' -p3975 -tp3976 -a(S'activate_audit_trail/1' -p3977 -S'activate_audit_trail(${1:Param1}) $2' -p3978 -tp3979 -a(S'add_listen_interface/2' -p3980 -S'add_listen_interface(${1:IP}, ${2:Param2}) $3' -p3981 -tp3982 -a(S'add_listen_interface/3' -p3983 -S'add_listen_interface(${1:IP}, ${2:Type}, ${3:Options}) $4' -p3984 -tp3985 -a(S'add_node/2' -p3986 -S'add_node(${1:Node}, ${2:StorageType}) $3' -p3987 -tp3988 -a(S'bidir_context/0' -p3989 -S'bidir_context() $1' -p3990 -tp3991 -a(S'close_connection/1' -p3992 -S'close_connection(${1:ObjRef}) $2' -p3993 -tp3994 -a(S'close_connection/2' -p3995 -S'close_connection(${1:ObjRef}, ${2:Interface}) $3' -p3996 -tp3997 -a(S'configure/2' -p3998 -S'configure(${1:Key}, ${2:Value}) $3' -p3999 -tp4000 -a(S'configure_override/2' -p4001 -S'configure_override(${1:Key}, ${2:Value}) $3' -p4002 -tp4003 -a(S'dbg/3' -p4004 -S'dbg(${1:Format}, ${2:Data}, ${3:RequestedLevel}) $4' -p4005 -tp4006 -a(S'deactivate_audit_trail/0' -p4007 -S'deactivate_audit_trail() $1' -p4008 -tp4009 -a(S'debug_level_print/3' -p4010 -S'debug_level_print(${1:Format}, ${2:Data}, ${3:RequestedLevel}) $4' -p4011 -tp4012 -a(S'domain/0' -p4013 -S'domain() $1' -p4014 -tp4015 -a(S'error/3' -p4016 -S'error(${1:Format}, ${2:Data}, ${3:RequestedLevel}) $4' -p4017 -tp4018 -a(S'exception_info/1' -p4019 -S'exception_info(${1:Exc}) $2' -p4020 -tp4021 -a(S'exclude_codeset_component/0' -p4022 -S'exclude_codeset_component() $1' -p4023 -tp4024 -a(S'exclude_codeset_ctx/0' -p4025 -S'exclude_codeset_ctx() $1' -p4026 -tp4027 -a(S'find_peername_by_sockname/2' -p4028 -S'find_peername_by_sockname(${1:Host}, ${2:Port}) $3' -p4029 -tp4030 -a(S'find_sockname_by_peername/2' -p4031 -S'find_sockname_by_peername(${1:Host}, ${2:Port}) $3' -p4032 -tp4033 -a(S'get_ORBDefaultInitRef/0' -p4034 -S'get_ORBDefaultInitRef() $1' -p4035 -tp4036 -a(S'get_ORBInitRef/0' -p4037 -S'get_ORBInitRef() $1' -p4038 -tp4039 -a(S'get_cached_interceptors/0' -p4040 -S'get_cached_interceptors() $1' -p4041 -tp4042 -a(S'get_debug_level/0' -p4043 -S'get_debug_level() $1' -p4044 -tp4045 -a(S'get_flags/0' -p4046 -S'get_flags() $1' -p4047 -tp4048 -a(S'get_interceptors/0' -p4049 -S'get_interceptors() $1' -p4050 -tp4051 -a(S'get_lightweight_nodes/0' -p4052 -S'get_lightweight_nodes() $1' -p4053 -tp4054 -a(S'get_local_interceptors/0' -p4055 -S'get_local_interceptors() $1' -p4056 -tp4057 -a(S'get_tables/0' -p4058 -S'get_tables() $1' -p4059 -tp4060 -a(S'giop_version/0' -p4061 -S'giop_version() $1' -p4062 -tp4063 -a(S'host/0' -p4064 -S'host() $1' -p4065 -tp4066 -a(S'iiop_acl/0' -p4067 -S'iiop_acl() $1' -p4068 -tp4069 -a(S'iiop_backlog/0' -p4070 -S'iiop_backlog() $1' -p4071 -tp4072 -a(S'iiop_connection_timeout/0' -p4073 -S'iiop_connection_timeout() $1' -p4074 -tp4075 -a(S'iiop_connections/0' -p4076 -S'iiop_connections() $1' -p4077 -tp4078 -a(S'iiop_connections/1' -p4079 -S'iiop_connections(${1:Param1}) $2' -p4080 -tp4081 -a(S'iiop_connections_pending/0' -p4082 -S'iiop_connections_pending() $1' -p4083 -tp4084 -a(S'iiop_in_connection_timeout/0' -p4085 -S'iiop_in_connection_timeout() $1' -p4086 -tp4087 -a(S'iiop_max_fragments/0' -p4088 -S'iiop_max_fragments() $1' -p4089 -tp4090 -a(S'iiop_max_in_connections/0' -p4091 -S'iiop_max_in_connections() $1' -p4092 -tp4093 -a(S'iiop_max_in_requests/0' -p4094 -S'iiop_max_in_requests() $1' -p4095 -tp4096 -a(S'iiop_out_ports/0' -p4097 -S'iiop_out_ports() $1' -p4098 -tp4099 -a(S'iiop_out_ports_attempts/0' -p4100 -S'iiop_out_ports_attempts() $1' -p4101 -tp4102 -a(S'iiop_out_ports_random/0' -p4103 -S'iiop_out_ports_random() $1' -p4104 -tp4105 -a(S'iiop_port/0' -p4106 -S'iiop_port() $1' -p4107 -tp4108 -a(S'iiop_setup_connection_timeout/0' -p4109 -S'iiop_setup_connection_timeout() $1' -p4110 -tp4111 -a(S'iiop_ssl_backlog/0' -p4112 -S'iiop_ssl_backlog() $1' -p4113 -tp4114 -a(S'iiop_ssl_ip_address_local/0' -p4115 -S'iiop_ssl_ip_address_local() $1' -p4116 -tp4117 -a(S'iiop_ssl_port/0' -p4118 -S'iiop_ssl_port() $1' -p4119 -tp4120 -a(S'iiop_timeout/0' -p4121 -S'iiop_timeout() $1' -p4122 -tp4123 -a(S'info/0' -p4124 -S'info() $1' -p4125 -tp4126 -a(S'info/1' -p4127 -S'info(${1:IoDevice}) $2' -p4128 -tp4129 -a(S'init/1' -p4130 -S'init(${1:Param1}) $2' -p4131 -tp4132 -a(S'install/1' -p4133 -S'install(${1:Nodes}) $2' -p4134 -tp4135 -a(S'install/2' -p4136 -S'install(${1:Nodes}, ${2:Options}) $3' -p4137 -tp4138 -a(S'ip_address_local/0' -p4139 -S'ip_address_local() $1' -p4140 -tp4141 -a(S'ip_address_variable_defined/0' -p4142 -S'ip_address_variable_defined() $1' -p4143 -tp4144 -a(S'ip_version/0' -p4145 -S'ip_version() $1' -p4146 -tp4147 -a(S'is_lightweight/0' -p4148 -S'is_lightweight() $1' -p4149 -tp4150 -a(S'is_running/0' -p4151 -S'is_running() $1' -p4152 -tp4153 -a(S'is_system_exception/1' -p4154 -S'is_system_exception(${1:Exc}) $2' -p4155 -tp4156 -a(S'js/0' -p4157 -S'js() $1' -p4158 -tp4159 -a(S'js/1' -p4160 -S'js(${1:Port}) $2' -p4161 -tp4162 -a(S'jump_start/0' -p4163 -S'jump_start() $1' -p4164 -tp4165 -a(S'jump_start/1' -p4166 -S'jump_start(${1:Port}) $2' -p4167 -tp4168 -a(S'jump_stop/0' -p4169 -S'jump_stop() $1' -p4170 -tp4171 -a(S'light_ifr/0' -p4172 -S'light_ifr() $1' -p4173 -tp4174 -a(S'mjs/1' -p4175 -S'mjs(${1:Nodes}) $2' -p4176 -tp4177 -a(S'mjs/2' -p4178 -S'mjs(${1:Nodes}, ${2:Port}) $3' -p4179 -tp4180 -a(S'multi_configure/1' -p4181 -S'multi_configure(${1:KeyValueList}) $2' -p4182 -tp4183 -a(S'multi_jump_start/1' -p4184 -S'multi_jump_start(${1:Nodes}) $2' -p4185 -tp4186 -a(S'multi_jump_start/2' -p4187 -S'multi_jump_start(${1:Nodes}, ${2:Port}) $3' -p4188 -tp4189 -a(S'multi_jump_start/3' -p4190 -S'multi_jump_start(${1:Nodes}, ${2:Port}, ${3:Options}) $4' -p4191 -tp4192 -a(S'nat_host/0' -p4193 -S'nat_host() $1' -p4194 -tp4195 -a(S'nat_iiop_port/0' -p4196 -S'nat_iiop_port() $1' -p4197 -tp4198 -a(S'nat_iiop_ssl_port/0' -p4199 -S'nat_iiop_ssl_port() $1' -p4200 -tp4201 -a(S'objectkeys_gc_time/0' -p4202 -S'objectkeys_gc_time() $1' -p4203 -tp4204 -a(S'orber_nodes/0' -p4205 -S'orber_nodes() $1' -p4206 -tp4207 -a(S'partial_security/0' -p4208 -S'partial_security() $1' -p4209 -tp4210 -a(S'reconfigure_in_connection/2' -p4211 -S'reconfigure_in_connection(${1:Options}, ${2:Ref}) $3' -p4212 -tp4213 -a(S'reconfigure_in_connections/1' -p4214 -S'reconfigure_in_connections(${1:Options}) $2' -p4215 -tp4216 -a(S'reconfigure_out_connection/3' -p4217 -S'reconfigure_out_connection(${1:Options}, ${2:Host}, ${3:Port}) $4' -p4218 -tp4219 -a(S'reconfigure_out_connection/4' -p4220 -S'reconfigure_out_connection(${1:Options}, ${2:Host}, ${3:Port}, ${4:Interface}) $5' -p4221 -tp4222 -a(S'reconfigure_out_connections/1' -p4223 -S'reconfigure_out_connections(${1:Options}) $2' -p4224 -tp4225 -a(S'remove_listen_interface/1' -p4226 -S'remove_listen_interface(${1:Ref}) $2' -p4227 -tp4228 -a(S'remove_node/1' -p4229 -S'remove_node(${1:Node}) $2' -p4230 -tp4231 -a(S'secure/0' -p4232 -S'secure() $1' -p4233 -tp4234 -a(S'set_interceptors/1' -p4235 -S'set_interceptors(${1:Val}) $2' -p4236 -tp4237 -a(S'set_ssl_client_cacertfile/1' -p4238 -S'set_ssl_client_cacertfile(${1:Value}) $2' -p4239 -tp4240 -a(S'set_ssl_client_certfile/1' -p4241 -S'set_ssl_client_certfile(${1:Value}) $2' -p4242 -tp4243 -a(S'set_ssl_client_depth/1' -p4244 -S'set_ssl_client_depth(${1:Value}) $2' -p4245 -tp4246 -a(S'set_ssl_client_options/1' -p4247 -S'set_ssl_client_options(${1:Value}) $2' -p4248 -tp4249 -a(S'set_ssl_client_verify/1' -p4250 -S'set_ssl_client_verify(${1:Value}) $2' -p4251 -tp4252 -a(S'ssl_client_cacertfile/0' -p4253 -S'ssl_client_cacertfile() $1' -p4254 -tp4255 -a(S'ssl_client_cachetimeout/0' -p4256 -S'ssl_client_cachetimeout() $1' -p4257 -tp4258 -a(S'ssl_client_certfile/0' -p4259 -S'ssl_client_certfile() $1' -p4260 -tp4261 -a(S'ssl_client_ciphers/0' -p4262 -S'ssl_client_ciphers() $1' -p4263 -tp4264 -a(S'ssl_client_depth/0' -p4265 -S'ssl_client_depth() $1' -p4266 -tp4267 -a(S'ssl_client_keyfile/0' -p4268 -S'ssl_client_keyfile() $1' -p4269 -tp4270 -a(S'ssl_client_options/0' -p4271 -S'ssl_client_options() $1' -p4272 -tp4273 -a(S'ssl_client_password/0' -p4274 -S'ssl_client_password() $1' -p4275 -tp4276 -a(S'ssl_client_verify/0' -p4277 -S'ssl_client_verify() $1' -p4278 -tp4279 -a(S'ssl_server_cacertfile/0' -p4280 -S'ssl_server_cacertfile() $1' -p4281 -tp4282 -a(S'ssl_server_cachetimeout/0' -p4283 -S'ssl_server_cachetimeout() $1' -p4284 -tp4285 -a(S'ssl_server_certfile/0' -p4286 -S'ssl_server_certfile() $1' -p4287 -tp4288 -a(S'ssl_server_ciphers/0' -p4289 -S'ssl_server_ciphers() $1' -p4290 -tp4291 -a(S'ssl_server_depth/0' -p4292 -S'ssl_server_depth() $1' -p4293 -tp4294 -a(S'ssl_server_keyfile/0' -p4295 -S'ssl_server_keyfile() $1' -p4296 -tp4297 -a(S'ssl_server_options/0' -p4298 -S'ssl_server_options() $1' -p4299 -tp4300 -a(S'ssl_server_password/0' -p4301 -S'ssl_server_password() $1' -p4302 -tp4303 -a(S'ssl_server_verify/0' -p4304 -S'ssl_server_verify() $1' -p4305 -tp4306 -a(S'start/0' -p4307 -S'start() $1' -p4308 -tp4309 -a(S'start/1' -p4310 -S'start(${1:Port}) $2' -p4311 -tp4312 -a(S'start/2' -p4313 -S'start(${1:Nodes}, ${2:Port}) $3' -p4314 -tp4315 -a(S'start_lightweight/0' -p4316 -S'start_lightweight() $1' -p4317 -tp4318 -a(S'start_lightweight/1' -p4319 -S'start_lightweight(${1:Nodes}) $2' -p4320 -tp4321 -a(S'stop/0' -p4322 -S'stop() $1' -p4323 -tp4324 -a(S'typechecking/0' -p4325 -S'typechecking() $1' -p4326 -tp4327 -a(S'uninstall/0' -p4328 -S'uninstall() $1' -p4329 -tp4330 -a(S'use_CSIv2/0' -p4331 -S'use_CSIv2() $1' -p4332 -tp4333 -a(S'use_FT/0' -p4334 -S'use_FT() $1' -p4335 -tp4336 -asS'ssl_certificate' -p4337 -(lp4338 -(S'certificate_chain/3' -p4339 -S'certificate_chain(${1:OwnCert}, ${2:CertDbHandle}, ${3:CertsDbRef}) $4' -p4340 -tp4341 -a(S'extensions_list/1' -p4342 -S'extensions_list(${1:Extensions}) $2' -p4343 -tp4344 -a(S'file_to_certificats/2' -p4345 -S'file_to_certificats(${1:File}, ${2:DbHandle}) $3' -p4346 -tp4347 -a(S'is_valid_extkey_usage/2' -p4348 -S'is_valid_extkey_usage(${1:KeyUse}, ${2:Param2}) $3' -p4349 -tp4350 -a(S'is_valid_key_usage/2' -p4351 -S'is_valid_key_usage(${1:KeyUse}, ${2:Use}) $3' -p4352 -tp4353 -a(S'select_extension/2' -p4354 -S'select_extension(${1:Id}, ${2:Param2}) $3' -p4355 -tp4356 -a(S'signature_type/1' -p4357 -S'signature_type(${1:Param1}) $2' -p4358 -tp4359 -a(S'trusted_cert_and_path/3' -p4360 -S'trusted_cert_and_path(${1:CertChain}, ${2:CertDbHandle}, ${3:CertDbRef}) $4' -p4361 -tp4362 -a(S'validate_extension/3' -p4363 -S'validate_extension(${1:Param1}, ${2:Reason}, ${3:Role}) $4' -p4364 -tp4365 -asS'line_demo' -p4366 -(lp4367 -(S'init/0' -p4368 -S'init() $1' -p4369 -tp4370 -a(S'line/3' -p4371 -S'line() $1' -p4372 -tp4373 -a(S'start/0' -p4374 -S'start() $1' -p4375 -tp4376 -asS'eunit_tty' -p4377 -(lp4378 -(S'handle_begin/3' -p4379 -S'handle_begin(${1:Param1}, ${2:Data}, ${3:St}) $4' -p4380 -tp4381 -a(S'handle_cancel/3' -p4382 -S'handle_cancel(${1:Param1}, ${2:Data}, ${3:St}) $4' -p4383 -tp4384 -a(S'handle_end/3' -p4385 -S'handle_end(${1:Param1}, ${2:Data}, ${3:St}) $4' -p4386 -tp4387 -a(S'init/1' -p4388 -S'init(${1:Options}) $2' -p4389 -tp4390 -a(S'start/0' -p4391 -S'start() $1' -p4392 -tp4393 -a(S'start/1' -p4394 -S'start(${1:Options}) $2' -p4395 -tp4396 -a(S'terminate/2' -p4397 -S'terminate(${1:Param1}, ${2:St}) $3' -p4398 -tp4399 -asS'wxPreviewControlBar' -p4400 -(lp4401 -(S'cacheBestSize/2' -p4402 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p4403 -tp4404 -a(S'captureMouse/1' -p4405 -S'captureMouse(${1:This}) $2' -p4406 -tp4407 -a(S'center/1' -p4408 -S'center(${1:This}) $2' -p4409 -tp4410 -a(S'center/2' -p4411 -S'center(${1:This}, ${2:Options}) $3' -p4412 -tp4413 -a(S'centerOnParent/1' -p4414 -S'centerOnParent(${1:This}) $2' -p4415 -tp4416 -a(S'centerOnParent/2' -p4417 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p4418 -tp4419 -a(S'centre/1' -p4420 -S'centre(${1:This}) $2' -p4421 -tp4422 -a(S'centre/2' -p4423 -S'centre(${1:This}, ${2:Options}) $3' -p4424 -tp4425 -a(S'centreOnParent/1' -p4426 -S'centreOnParent(${1:This}) $2' -p4427 -tp4428 -a(S'centreOnParent/2' -p4429 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p4430 -tp4431 -a(S'clearBackground/1' -p4432 -S'clearBackground(${1:This}) $2' -p4433 -tp4434 -a(S'clientToScreen/2' -p4435 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p4436 -tp4437 -a(S'clientToScreen/3' -p4438 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p4439 -tp4440 -a(S'close/1' -p4441 -S'close(${1:This}) $2' -p4442 -tp4443 -a(S'close/2' -p4444 -S'close(${1:This}, ${2:Options}) $3' -p4445 -tp4446 -a(S'connect/2' -p4447 -S'connect(${1:This}, ${2:EventType}) $3' -p4448 -tp4449 -a(S'connect/3' -p4450 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p4451 -tp4452 -a(S'convertDialogToPixels/2' -p4453 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p4454 -tp4455 -a(S'convertPixelsToDialog/2' -p4456 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p4457 -tp4458 -a(S'createButtons/1' -p4459 -S'createButtons(${1:This}) $2' -p4460 -tp4461 -a(S'destroy/1' -p4462 -S'destroy(${1:This}) $2' -p4463 -tp4464 -a(S'destroyChildren/1' -p4465 -S'destroyChildren(${1:This}) $2' -p4466 -tp4467 -a(S'disable/1' -p4468 -S'disable(${1:This}) $2' -p4469 -tp4470 -a(S'disconnect/1' -p4471 -S'disconnect(${1:This}) $2' -p4472 -tp4473 -a(S'disconnect/2' -p4474 -S'disconnect(${1:This}, ${2:EventType}) $3' -p4475 -tp4476 -a(S'disconnect/3' -p4477 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p4478 -tp4479 -a(S'enable/1' -p4480 -S'enable(${1:This}) $2' -p4481 -tp4482 -a(S'enable/2' -p4483 -S'enable(${1:This}, ${2:Options}) $3' -p4484 -tp4485 -a(S'findWindow/2' -p4486 -S'findWindow(${1:This}, ${2:Winid}) $3' -p4487 -tp4488 -a(S'fit/1' -p4489 -S'fit(${1:This}) $2' -p4490 -tp4491 -a(S'fitInside/1' -p4492 -S'fitInside(${1:This}) $2' -p4493 -tp4494 -a(S'freeze/1' -p4495 -S'freeze(${1:This}) $2' -p4496 -tp4497 -a(S'getAcceleratorTable/1' -p4498 -S'getAcceleratorTable(${1:This}) $2' -p4499 -tp4500 -a(S'getBackgroundColour/1' -p4501 -S'getBackgroundColour(${1:This}) $2' -p4502 -tp4503 -a(S'getBackgroundStyle/1' -p4504 -S'getBackgroundStyle(${1:This}) $2' -p4505 -tp4506 -a(S'getBestSize/1' -p4507 -S'getBestSize(${1:This}) $2' -p4508 -tp4509 -a(S'getCaret/1' -p4510 -S'getCaret(${1:This}) $2' -p4511 -tp4512 -a(S'getCharHeight/1' -p4513 -S'getCharHeight(${1:This}) $2' -p4514 -tp4515 -a(S'getCharWidth/1' -p4516 -S'getCharWidth(${1:This}) $2' -p4517 -tp4518 -a(S'getChildren/1' -p4519 -S'getChildren(${1:This}) $2' -p4520 -tp4521 -a(S'getClientSize/1' -p4522 -S'getClientSize(${1:This}) $2' -p4523 -tp4524 -a(S'getContainingSizer/1' -p4525 -S'getContainingSizer(${1:This}) $2' -p4526 -tp4527 -a(S'getCursor/1' -p4528 -S'getCursor(${1:This}) $2' -p4529 -tp4530 -a(S'getDropTarget/1' -p4531 -S'getDropTarget(${1:This}) $2' -p4532 -tp4533 -a(S'getEventHandler/1' -p4534 -S'getEventHandler(${1:This}) $2' -p4535 -tp4536 -a(S'getExtraStyle/1' -p4537 -S'getExtraStyle(${1:This}) $2' -p4538 -tp4539 -a(S'getFont/1' -p4540 -S'getFont(${1:This}) $2' -p4541 -tp4542 -a(S'getForegroundColour/1' -p4543 -S'getForegroundColour(${1:This}) $2' -p4544 -tp4545 -a(S'getGrandParent/1' -p4546 -S'getGrandParent(${1:This}) $2' -p4547 -tp4548 -a(S'getHandle/1' -p4549 -S'getHandle(${1:This}) $2' -p4550 -tp4551 -a(S'getHelpText/1' -p4552 -S'getHelpText(${1:This}) $2' -p4553 -tp4554 -a(S'getId/1' -p4555 -S'getId(${1:This}) $2' -p4556 -tp4557 -a(S'getLabel/1' -p4558 -S'getLabel(${1:This}) $2' -p4559 -tp4560 -a(S'getMaxSize/1' -p4561 -S'getMaxSize(${1:This}) $2' -p4562 -tp4563 -a(S'getMinSize/1' -p4564 -S'getMinSize(${1:This}) $2' -p4565 -tp4566 -a(S'getName/1' -p4567 -S'getName(${1:This}) $2' -p4568 -tp4569 -a(S'getParent/1' -p4570 -S'getParent(${1:This}) $2' -p4571 -tp4572 -a(S'getPosition/1' -p4573 -S'getPosition(${1:This}) $2' -p4574 -tp4575 -a(S'getPrintPreview/1' -p4576 -S'getPrintPreview(${1:This}) $2' -p4577 -tp4578 -a(S'getRect/1' -p4579 -S'getRect(${1:This}) $2' -p4580 -tp4581 -a(S'getScreenPosition/1' -p4582 -S'getScreenPosition(${1:This}) $2' -p4583 -tp4584 -a(S'getScreenRect/1' -p4585 -S'getScreenRect(${1:This}) $2' -p4586 -tp4587 -a(S'getScrollPos/2' -p4588 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p4589 -tp4590 -a(S'getScrollRange/2' -p4591 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p4592 -tp4593 -a(S'getScrollThumb/2' -p4594 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p4595 -tp4596 -a(S'getSize/1' -p4597 -S'getSize(${1:This}) $2' -p4598 -tp4599 -a(S'getSizer/1' -p4600 -S'getSizer(${1:This}) $2' -p4601 -tp4602 -a(S'getTextExtent/2' -p4603 -S'getTextExtent(${1:This}, ${2:String}) $3' -p4604 -tp4605 -a(S'getTextExtent/3' -p4606 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p4607 -tp4608 -a(S'getToolTip/1' -p4609 -S'getToolTip(${1:This}) $2' -p4610 -tp4611 -a(S'getUpdateRegion/1' -p4612 -S'getUpdateRegion(${1:This}) $2' -p4613 -tp4614 -a(S'getVirtualSize/1' -p4615 -S'getVirtualSize(${1:This}) $2' -p4616 -tp4617 -a(S'getWindowStyleFlag/1' -p4618 -S'getWindowStyleFlag(${1:This}) $2' -p4619 -tp4620 -a(S'getWindowVariant/1' -p4621 -S'getWindowVariant(${1:This}) $2' -p4622 -tp4623 -a(S'getZoomControl/1' -p4624 -S'getZoomControl(${1:This}) $2' -p4625 -tp4626 -a(S'hasCapture/1' -p4627 -S'hasCapture(${1:This}) $2' -p4628 -tp4629 -a(S'hasScrollbar/2' -p4630 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p4631 -tp4632 -a(S'hasTransparentBackground/1' -p4633 -S'hasTransparentBackground(${1:This}) $2' -p4634 -tp4635 -a(S'hide/1' -p4636 -S'hide(${1:This}) $2' -p4637 -tp4638 -a(S'inheritAttributes/1' -p4639 -S'inheritAttributes(${1:This}) $2' -p4640 -tp4641 -a(S'initDialog/1' -p4642 -S'initDialog(${1:This}) $2' -p4643 -tp4644 -a(S'invalidateBestSize/1' -p4645 -S'invalidateBestSize(${1:This}) $2' -p4646 -tp4647 -a(S'isEnabled/1' -p4648 -S'isEnabled(${1:This}) $2' -p4649 -tp4650 -a(S'isExposed/2' -p4651 -S'isExposed(${1:This}, ${2:Pt}) $3' -p4652 -tp4653 -a(S'isExposed/3' -p4654 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p4655 -tp4656 -a(S'isExposed/5' -p4657 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p4658 -tp4659 -a(S'isRetained/1' -p4660 -S'isRetained(${1:This}) $2' -p4661 -tp4662 -a(S'isShown/1' -p4663 -S'isShown(${1:This}) $2' -p4664 -tp4665 -a(S'isTopLevel/1' -p4666 -S'isTopLevel(${1:This}) $2' -p4667 -tp4668 -a(S'layout/1' -p4669 -S'layout(${1:This}) $2' -p4670 -tp4671 -a(S'lineDown/1' -p4672 -S'lineDown(${1:This}) $2' -p4673 -tp4674 -a(S'lineUp/1' -p4675 -S'lineUp(${1:This}) $2' -p4676 -tp4677 -a(S'lower/1' -p4678 -S'lower(${1:This}) $2' -p4679 -tp4680 -a(S'makeModal/1' -p4681 -S'makeModal(${1:This}) $2' -p4682 -tp4683 -a(S'makeModal/2' -p4684 -S'makeModal(${1:This}, ${2:Options}) $3' -p4685 -tp4686 -a(S'move/2' -p4687 -S'move(${1:This}, ${2:Pt}) $3' -p4688 -tp4689 -a(S'move/3' -p4690 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p4691 -tp4692 -a(S'move/4' -p4693 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p4694 -tp4695 -a(S'moveAfterInTabOrder/2' -p4696 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p4697 -tp4698 -a(S'moveBeforeInTabOrder/2' -p4699 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p4700 -tp4701 -a(S'navigate/1' -p4702 -S'navigate(${1:This}) $2' -p4703 -tp4704 -a(S'navigate/2' -p4705 -S'navigate(${1:This}, ${2:Options}) $3' -p4706 -tp4707 -a(S'new/3' -p4708 -S'new(${1:Preview}, ${2:Buttons}, ${3:Parent}) $4' -p4709 -tp4710 -a(S'new/4' -p4711 -S'new(${1:Preview}, ${2:Buttons}, ${3:Parent}, ${4:Param4}) $5' -p4712 -tp4713 -a(S'pageDown/1' -p4714 -S'pageDown(${1:This}) $2' -p4715 -tp4716 -a(S'pageUp/1' -p4717 -S'pageUp(${1:This}) $2' -p4718 -tp4719 -a(S'parent_class/1' -p4720 -S'parent_class(${1:Param1}) $2' -p4721 -tp4722 -a(S'popEventHandler/1' -p4723 -S'popEventHandler(${1:This}) $2' -p4724 -tp4725 -a(S'popEventHandler/2' -p4726 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p4727 -tp4728 -a(S'popupMenu/2' -p4729 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p4730 -tp4731 -a(S'popupMenu/3' -p4732 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p4733 -tp4734 -a(S'popupMenu/4' -p4735 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p4736 -tp4737 -a(S'raise/1' -p4738 -S'raise(${1:This}) $2' -p4739 -tp4740 -a(S'refresh/1' -p4741 -S'refresh(${1:This}) $2' -p4742 -tp4743 -a(S'refresh/2' -p4744 -S'refresh(${1:This}, ${2:Options}) $3' -p4745 -tp4746 -a(S'refreshRect/2' -p4747 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p4748 -tp4749 -a(S'refreshRect/3' -p4750 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p4751 -tp4752 -a(S'releaseMouse/1' -p4753 -S'releaseMouse(${1:This}) $2' -p4754 -tp4755 -a(S'removeChild/2' -p4756 -S'removeChild(${1:This}, ${2:Child}) $3' -p4757 -tp4758 -a(S'reparent/2' -p4759 -S'reparent(${1:This}, ${2:NewParent}) $3' -p4760 -tp4761 -a(S'screenToClient/1' -p4762 -S'screenToClient(${1:This}) $2' -p4763 -tp4764 -a(S'screenToClient/2' -p4765 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p4766 -tp4767 -a(S'scrollLines/2' -p4768 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p4769 -tp4770 -a(S'scrollPages/2' -p4771 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p4772 -tp4773 -a(S'scrollWindow/3' -p4774 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p4775 -tp4776 -a(S'scrollWindow/4' -p4777 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p4778 -tp4779 -a(S'setAcceleratorTable/2' -p4780 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p4781 -tp4782 -a(S'setAutoLayout/2' -p4783 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p4784 -tp4785 -a(S'setBackgroundColour/2' -p4786 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p4787 -tp4788 -a(S'setBackgroundStyle/2' -p4789 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p4790 -tp4791 -a(S'setCaret/2' -p4792 -S'setCaret(${1:This}, ${2:Caret}) $3' -p4793 -tp4794 -a(S'setClientSize/2' -p4795 -S'setClientSize(${1:This}, ${2:Size}) $3' -p4796 -tp4797 -a(S'setClientSize/3' -p4798 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p4799 -tp4800 -a(S'setContainingSizer/2' -p4801 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p4802 -tp4803 -a(S'setCursor/2' -p4804 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p4805 -tp4806 -a(S'setDropTarget/2' -p4807 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p4808 -tp4809 -a(S'setExtraStyle/2' -p4810 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p4811 -tp4812 -a(S'setFocus/1' -p4813 -S'setFocus(${1:This}) $2' -p4814 -tp4815 -a(S'setFocusFromKbd/1' -p4816 -S'setFocusFromKbd(${1:This}) $2' -p4817 -tp4818 -a(S'setFont/2' -p4819 -S'setFont(${1:This}, ${2:Font}) $3' -p4820 -tp4821 -a(S'setForegroundColour/2' -p4822 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p4823 -tp4824 -a(S'setHelpText/2' -p4825 -S'setHelpText(${1:This}, ${2:Text}) $3' -p4826 -tp4827 -a(S'setId/2' -p4828 -S'setId(${1:This}, ${2:Winid}) $3' -p4829 -tp4830 -a(S'setLabel/2' -p4831 -S'setLabel(${1:This}, ${2:Label}) $3' -p4832 -tp4833 -a(S'setMaxSize/2' -p4834 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p4835 -tp4836 -a(S'setMinSize/2' -p4837 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p4838 -tp4839 -a(S'setName/2' -p4840 -S'setName(${1:This}, ${2:Name}) $3' -p4841 -tp4842 -a(S'setOwnBackgroundColour/2' -p4843 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p4844 -tp4845 -a(S'setOwnFont/2' -p4846 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p4847 -tp4848 -a(S'setOwnForegroundColour/2' -p4849 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p4850 -tp4851 -a(S'setPalette/2' -p4852 -S'setPalette(${1:This}, ${2:Pal}) $3' -p4853 -tp4854 -a(S'setScrollPos/3' -p4855 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p4856 -tp4857 -a(S'setScrollPos/4' -p4858 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p4859 -tp4860 -a(S'setScrollbar/5' -p4861 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p4862 -tp4863 -a(S'setScrollbar/6' -p4864 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p4865 -tp4866 -a(S'setSize/2' -p4867 -S'setSize(${1:This}, ${2:Rect}) $3' -p4868 -tp4869 -a(S'setSize/3' -p4870 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p4871 -tp4872 -a(S'setSize/5' -p4873 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p4874 -tp4875 -a(S'setSize/6' -p4876 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p4877 -tp4878 -a(S'setSizeHints/2' -p4879 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p4880 -tp4881 -a(S'setSizeHints/3' -p4882 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p4883 -tp4884 -a(S'setSizeHints/4' -p4885 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p4886 -tp4887 -a(S'setSizer/2' -p4888 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p4889 -tp4890 -a(S'setSizer/3' -p4891 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p4892 -tp4893 -a(S'setSizerAndFit/2' -p4894 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p4895 -tp4896 -a(S'setSizerAndFit/3' -p4897 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p4898 -tp4899 -a(S'setThemeEnabled/2' -p4900 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p4901 -tp4902 -a(S'setToolTip/2' -p4903 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p4904 -tp4905 -a(S'setVirtualSize/2' -p4906 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p4907 -tp4908 -a(S'setVirtualSize/3' -p4909 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p4910 -tp4911 -a(S'setVirtualSizeHints/2' -p4912 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p4913 -tp4914 -a(S'setVirtualSizeHints/3' -p4915 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p4916 -tp4917 -a(S'setVirtualSizeHints/4' -p4918 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p4919 -tp4920 -a(S'setWindowStyle/2' -p4921 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p4922 -tp4923 -a(S'setWindowStyleFlag/2' -p4924 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p4925 -tp4926 -a(S'setWindowVariant/2' -p4927 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p4928 -tp4929 -a(S'setZoomControl/2' -p4930 -S'setZoomControl(${1:This}, ${2:Zoom}) $3' -p4931 -tp4932 -a(S'shouldInheritColours/1' -p4933 -S'shouldInheritColours(${1:This}) $2' -p4934 -tp4935 -a(S'show/1' -p4936 -S'show(${1:This}) $2' -p4937 -tp4938 -a(S'show/2' -p4939 -S'show(${1:This}, ${2:Options}) $3' -p4940 -tp4941 -a(S'thaw/1' -p4942 -S'thaw(${1:This}) $2' -p4943 -tp4944 -a(S'transferDataFromWindow/1' -p4945 -S'transferDataFromWindow(${1:This}) $2' -p4946 -tp4947 -a(S'transferDataToWindow/1' -p4948 -S'transferDataToWindow(${1:This}) $2' -p4949 -tp4950 -a(S'update/1' -p4951 -S'update(${1:This}) $2' -p4952 -tp4953 -a(S'updateWindowUI/1' -p4954 -S'updateWindowUI(${1:This}) $2' -p4955 -tp4956 -a(S'updateWindowUI/2' -p4957 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p4958 -tp4959 -a(S'validate/1' -p4960 -S'validate(${1:This}) $2' -p4961 -tp4962 -a(S'warpPointer/3' -p4963 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p4964 -tp4965 -asS'megaco_user_default' -p4966 -(lp4967 -(S'handle_connect/2' -p4968 -S'handle_connect(${1:Param1}, ${2:Param2}) $3' -p4969 -tp4970 -a(S'handle_connect/3' -p4971 -S'handle_connect(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p4972 -tp4973 -a(S'handle_disconnect/3' -p4974 -S'handle_disconnect(${1:ConnHandle}, ${2:Param2}, ${3:Reason}) $4' -p4975 -tp4976 -a(S'handle_message_error/3' -p4977 -S'handle_message_error(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p4978 -tp4979 -a(S'handle_message_error/4' -p4980 -S'handle_message_error(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p4981 -tp4982 -a(S'handle_segment_reply/5' -p4983 -S'handle_segment_reply(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}, ${5:Param5}) $6' -p4984 -tp4985 -a(S'handle_segment_reply/6' -p4986 -S'handle_segment_reply(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}, ${5:Param5}, ${6:Param6}) $7' -p4987 -tp4988 -a(S'handle_syntax_error/3' -p4989 -S'handle_syntax_error(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p4990 -tp4991 -a(S'handle_syntax_error/4' -p4992 -S'handle_syntax_error(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p4993 -tp4994 -a(S'handle_trans_ack/4' -p4995 -S'handle_trans_ack(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p4996 -tp4997 -a(S'handle_trans_ack/5' -p4998 -S'handle_trans_ack(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}, ${5:Param5}) $6' -p4999 -tp5000 -a(S'handle_trans_long_request/3' -p5001 -S'handle_trans_long_request(${1:ConnHandle}, ${2:ProtocolVersion}, ${3:ReqData}) $4' -p5002 -tp5003 -a(S'handle_trans_long_request/4' -p5004 -S'handle_trans_long_request(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p5005 -tp5006 -a(S'handle_trans_reply/4' -p5007 -S'handle_trans_reply(${1:ConnHandle}, ${2:ProtocolVersion}, ${3:ActualReply}, ${4:ReplyData}) $5' -p5008 -tp5009 -a(S'handle_trans_reply/5' -p5010 -S'handle_trans_reply(${1:ConnHandle}, ${2:Param2}, ${3:Param3}, ${4:Param4}, ${5:Param5}) $6' -p5011 -tp5012 -a(S'handle_trans_request/3' -p5013 -S'handle_trans_request(${1:ConnHandle}, ${2:ProtocolVersion}, ${3:ActionRequests}) $4' -p5014 -tp5015 -a(S'handle_trans_request/4' -p5016 -S'handle_trans_request(${1:Param1}, ${2:ProtocolVersion}, ${3:Param3}, ${4:Param4}) $5' -p5017 -tp5018 -a(S'handle_trans_request_abort/4' -p5019 -S'handle_trans_request_abort(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p5020 -tp5021 -a(S'handle_trans_request_abort/5' -p5022 -S'handle_trans_request_abort(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}, ${5:Param5}) $6' -p5023 -tp5024 -a(S'handle_unexpected_trans/3' -p5025 -S'handle_unexpected_trans(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p5026 -tp5027 -a(S'handle_unexpected_trans/4' -p5028 -S'handle_unexpected_trans(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p5029 -tp5030 -asS'glu' -p5031 -(lp5032 -(S'build1DMipmapLevels/9' -p5033 -S'build1DMipmapLevels(${1:Target}, ${2:InternalFormat}, ${3:Width}, ${4:Format}, ${5:Type}, ${6:Level}, ${7:Base}, ${8:Max}, ${9:Data}) $10' -p5034 -tp5035 -a(S'build1DMipmaps/6' -p5036 -S'build1DMipmaps(${1:Target}, ${2:InternalFormat}, ${3:Width}, ${4:Format}, ${5:Type}, ${6:Data}) $7' -p5037 -tp5038 -a(S'build2DMipmapLevels/10' -p5039 -S'build2DMipmapLevels(${1:Target}, ${2:InternalFormat}, ${3:Width}, ${4:Height}, ${5:Format}, ${6:Type}, ${7:Level}, ${8:Base}, ${9:Max}, ${10:Data}) $11' -p5040 -tp5041 -a(S'build2DMipmaps/7' -p5042 -S'build2DMipmaps(${1:Target}, ${2:InternalFormat}, ${3:Width}, ${4:Height}, ${5:Format}, ${6:Type}, ${7:Data}) $8' -p5043 -tp5044 -a(S'build3DMipmapLevels/11' -p5045 -S'build3DMipmapLevels(${1:Target}, ${2:InternalFormat}, ${3:Width}, ${4:Height}, ${5:Depth}, ${6:Format}, ${7:Type}, ${8:Level}, ${9:Base}, ${10:Max}, ${11:Data}) $12' -p5046 -tp5047 -a(S'build3DMipmaps/8' -p5048 -S'build3DMipmaps(${1:Target}, ${2:InternalFormat}, ${3:Width}, ${4:Height}, ${5:Depth}, ${6:Format}, ${7:Type}, ${8:Data}) $9' -p5049 -tp5050 -a(S'checkExtension/2' -p5051 -S'checkExtension(${1:ExtName}, ${2:ExtString}) $3' -p5052 -tp5053 -a(S'cylinder/6' -p5054 -S'cylinder(${1:Quad}, ${2:Base}, ${3:Top}, ${4:Height}, ${5:Slices}, ${6:Stacks}) $7' -p5055 -tp5056 -a(S'deleteQuadric/1' -p5057 -S'deleteQuadric(${1:Quad}) $2' -p5058 -tp5059 -a(S'disk/5' -p5060 -S'disk(${1:Quad}, ${2:Inner}, ${3:Outer}, ${4:Slices}, ${5:Loops}) $6' -p5061 -tp5062 -a(S'errorString/1' -p5063 -S'errorString(${1:Error}) $2' -p5064 -tp5065 -a(S'getString/1' -p5066 -S'getString(${1:Name}) $2' -p5067 -tp5068 -a(S'lookAt/9' -p5069 -S'lookAt(${1:EyeX}, ${2:EyeY}, ${3:EyeZ}, ${4:CenterX}, ${5:CenterY}, ${6:CenterZ}, ${7:UpX}, ${8:UpY}, ${9:UpZ}) $10' -p5070 -tp5071 -a(S'newQuadric/0' -p5072 -S'newQuadric() $1' -p5073 -tp5074 -a(S'ortho2D/4' -p5075 -S'ortho2D(${1:Left}, ${2:Right}, ${3:Bottom}, ${4:Top}) $5' -p5076 -tp5077 -a(S'partialDisk/7' -p5078 -S'partialDisk(${1:Quad}, ${2:Inner}, ${3:Outer}, ${4:Slices}, ${5:Loops}, ${6:Start}, ${7:Sweep}) $8' -p5079 -tp5080 -a(S'perspective/4' -p5081 -S'perspective(${1:Fovy}, ${2:Aspect}, ${3:ZNear}, ${4:ZFar}) $5' -p5082 -tp5083 -a(S'pickMatrix/5' -p5084 -S'pickMatrix(${1:X}, ${2:Y}, ${3:DelX}, ${4:DelY}, ${5:Viewport}) $6' -p5085 -tp5086 -a(S'project/6' -p5087 -S'project(${1:ObjX}, ${2:ObjY}, ${3:ObjZ}, ${4:Model}, ${5:Proj}, ${6:View}) $7' -p5088 -tp5089 -a(S'quadricDrawStyle/2' -p5090 -S'quadricDrawStyle(${1:Quad}, ${2:Draw}) $3' -p5091 -tp5092 -a(S'quadricNormals/2' -p5093 -S'quadricNormals(${1:Quad}, ${2:Normal}) $3' -p5094 -tp5095 -a(S'quadricOrientation/2' -p5096 -S'quadricOrientation(${1:Quad}, ${2:Orientation}) $3' -p5097 -tp5098 -a(S'quadricTexture/2' -p5099 -S'quadricTexture(${1:Quad}, ${2:Texture}) $3' -p5100 -tp5101 -a(S'scaleImage/9' -p5102 -S'scaleImage(${1:Format}, ${2:WIn}, ${3:HIn}, ${4:TypeIn}, ${5:DataIn}, ${6:WOut}, ${7:HOut}, ${8:TypeOut}, ${9:DataOut}) $10' -p5103 -tp5104 -a(S'sphere/4' -p5105 -S'sphere(${1:Quad}, ${2:Radius}, ${3:Slices}, ${4:Stacks}) $5' -p5106 -tp5107 -a(S'tesselate/2' -p5108 -S'tesselate(${1:Normal}, ${2:Vs}) $3' -p5109 -tp5110 -a(S'unProject/6' -p5111 -S'unProject(${1:WinX}, ${2:WinY}, ${3:WinZ}, ${4:Model}, ${5:Proj}, ${6:View}) $7' -p5112 -tp5113 -a(S'unProject4/9' -p5114 -S'unProject4(${1:WinX}, ${2:WinY}, ${3:WinZ}, ${4:ClipW}, ${5:Model}, ${6:Proj}, ${7:View}, ${8:NearVal}, ${9:FarVal}) $10' -p5115 -tp5116 -asS'CosPropertyService_PropertyNames' -p5117 -(lp5118 -(S'id/0' -p5119 -S'id() $1' -p5120 -tp5121 -a(S'name/0' -p5122 -S'name() $1' -p5123 -tp5124 -a(S'tc/0' -p5125 -S'tc() $1' -p5126 -tp5127 -asS'diameter' -p5128 -(lp5129 -(S'add_transport/2' -p5130 -S'add_transport(${1:Param1}, ${2:Param2}) $3' -p5131 -tp5132 -a(S'call/3' -p5133 -S'call(${1:SvcName}, ${2:App}, ${3:Message}) $4' -p5134 -tp5135 -a(S'call/4' -p5136 -S'call(${1:SvcName}, ${2:App}, ${3:Message}, ${4:Options}) $5' -p5137 -tp5138 -a(S'origin_state_id/0' -p5139 -S'origin_state_id() $1' -p5140 -tp5141 -a(S'remove_transport/2' -p5142 -S'remove_transport(${1:SvcName}, ${2:Pred}) $3' -p5143 -tp5144 -a(S'service_info/2' -p5145 -S'service_info(${1:SvcName}, ${2:Option}) $3' -p5146 -tp5147 -a(S'services/0' -p5148 -S'services() $1' -p5149 -tp5150 -a(S'session_id/1' -p5151 -S'session_id(${1:Ident}) $2' -p5152 -tp5153 -a(S'start/0' -p5154 -S'start() $1' -p5155 -tp5156 -a(S'start_service/2' -p5157 -S'start_service(${1:Param1}, ${2:Param2}) $3' -p5158 -tp5159 -a(S'stop/0' -p5160 -S'stop() $1' -p5161 -tp5162 -a(S'stop_service/1' -p5163 -S'stop_service(${1:SvcName}) $2' -p5164 -tp5165 -a(S'subscribe/1' -p5166 -S'subscribe(${1:SvcName}) $2' -p5167 -tp5168 -a(S'unsubscribe/1' -p5169 -S'unsubscribe(${1:SvcName}) $2' -p5170 -tp5171 -asS'ssh_math' -p5172 -(lp5173 -(S'ilog2/1' -p5174 -S'ilog2(${1:N}) $2' -p5175 -tp5176 -a(S'invert/2' -p5177 -S'invert() $1' -p5178 -tp5179 -a(S'ipow/3' -p5180 -S'ipow() $1' -p5181 -tp5182 -a(S'ipow2/3' -p5183 -S'ipow2() $1' -p5184 -tp5185 -asS'ct_master_status' -p5186 -(lp5187 -(S'code_change/3' -p5188 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p5189 -tp5190 -a(S'handle_call/2' -p5191 -S'handle_call(${1:Param1}, ${2:State}) $3' -p5192 -tp5193 -a(S'handle_event/2' -p5194 -S'handle_event(${1:Param1}, ${2:State}) $3' -p5195 -tp5196 -a(S'handle_info/2' -p5197 -S'handle_info(${1:Param1}, ${2:State}) $3' -p5198 -tp5199 -a(S'init/1' -p5200 -S'init(${1:Param1}) $2' -p5201 -tp5202 -a(S'terminate/2' -p5203 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p5204 -tp5205 -asS'gstk_scale' -p5206 -(lp5207 -(S'config/3' -p5208 -S'config(${1:DB}, ${2:Gstkid}, ${3:Opts}) $4' -p5209 -tp5210 -a(S'create/3' -p5211 -S'create(${1:DB}, ${2:GstkId}, ${3:Opts}) $4' -p5212 -tp5213 -a(S'delete/2' -p5214 -S'delete(${1:DB}, ${2:Gstkid}) $3' -p5215 -tp5216 -a(S'event/5' -p5217 -S'event(${1:DB}, ${2:Gstkid}, ${3:Etype}, ${4:Edata}, ${5:Args}) $6' -p5218 -tp5219 -a(S'option/5' -p5220 -S'option(${1:Option}, ${2:Gstkid}, ${3:TkW}, ${4:DB}, ${5:Param5}) $6' -p5221 -tp5222 -a(S'read/3' -p5223 -S'read(${1:DB}, ${2:Gstkid}, ${3:Opt}) $4' -p5224 -tp5225 -a(S'read_option/5' -p5226 -S'read_option(${1:Option}, ${2:Gstkid}, ${3:TkW}, ${4:DB}, ${5:Param5}) $6' -p5227 -tp5228 -asS'tv_info' -p5229 -(lp5230 -(S'info/6' -p5231 -S'info(${1:Master}, ${2:Node}, ${3:LocalNode}, ${4:TabId}, ${5:TabType}, ${6:ErrMsgMode}) $7' -p5232 -tp5233 -asS'ssh_acceptor_sup' -p5234 -(lp5235 -(S'init/1' -p5236 -S'init(${1:Param1}) $2' -p5237 -tp5238 -a(S'start_child/2' -p5239 -S'start_child(${1:AccSup}, ${2:ServerOpts}) $3' -p5240 -tp5241 -a(S'start_link/1' -p5242 -S'start_link(${1:Servers}) $2' -p5243 -tp5244 -a(S'stop_child/2' -p5245 -S'stop_child(${1:Address}, ${2:Port}) $3' -p5246 -tp5247 -asS'xmerl_xpath_pred' -p5248 -(lp5249 -(S"'local-name'/2" -p5250 -S"'local-name'(${1:C}, ${2:Param2}) $3" -p5251 -tp5252 -a(S"'namespace-uri'/2" -p5253 -S"'namespace-uri'(${1:C}, ${2:Param2}) $3" -p5254 -tp5255 -a(S"'normalize-space'/2" -p5256 -S"'normalize-space'(${1:C}, ${2:Param2}) $3" -p5257 -tp5258 -a(S"'starts-with'/2" -p5259 -S"'starts-with'(${1:C}, ${2:Param2}) $3" -p5260 -tp5261 -a(S"'string-length'/2" -p5262 -S"'string-length'(${1:C}, ${2:Param2}) $3" -p5263 -tp5264 -a(S"'substring-after'/2" -p5265 -S"'substring-after'(${1:C}, ${2:Param2}) $3" -p5266 -tp5267 -a(S"'substring-before'/2" -p5268 -S"'substring-before'(${1:C}, ${2:Param2}) $3" -p5269 -tp5270 -a(S'boolean/1' -p5271 -S'boolean(${1:X}) $2' -p5272 -tp5273 -a(S'boolean/2' -p5274 -S'boolean(${1:C}, ${2:Expr}) $3' -p5275 -tp5276 -a(S'ceiling/2' -p5277 -S'ceiling(${1:C}, ${2:Param2}) $3' -p5278 -tp5279 -a(S'concat/2' -p5280 -S'concat(${1:C}, ${2:Param2}) $3' -p5281 -tp5282 -a(S'contains/2' -p5283 -S'contains(${1:C}, ${2:Param2}) $3' -p5284 -tp5285 -a(S'core_function/1' -p5286 -S'core_function(${1:Param1}) $2' -p5287 -tp5288 -a(S'count/2' -p5289 -S'count(${1:C}, ${2:Param2}) $3' -p5290 -tp5291 -a(S'eval/2' -p5292 -S'eval(${1:Expr}, ${2:Param2}) $3' -p5293 -tp5294 -a(S'floor/2' -p5295 -S'floor(${1:C}, ${2:Param2}) $3' -p5296 -tp5297 -a(S'fn_false/2' -p5298 -S'fn_false(${1:Param1}, ${2:Param2}) $3' -p5299 -tp5300 -a(S'fn_not/2' -p5301 -S'fn_not(${1:C}, ${2:Param2}) $3' -p5302 -tp5303 -a(S'fn_true/2' -p5304 -S'fn_true(${1:Param1}, ${2:Param2}) $3' -p5305 -tp5306 -a(S'id/2' -p5307 -S'id(${1:C}, ${2:Param2}) $3' -p5308 -tp5309 -a(S'lang/2' -p5310 -S'lang(${1:Param1}, ${2:Param2}) $3' -p5311 -tp5312 -a(S'last/2' -p5313 -S'last(${1:Param1}, ${2:Param2}) $3' -p5314 -tp5315 -a(S'name/2' -p5316 -S'name(${1:C}, ${2:Param2}) $3' -p5317 -tp5318 -a(S'nodeset/1' -p5319 -S'nodeset(${1:X}) $2' -p5320 -tp5321 -a(S'number/1' -p5322 -S'number(${1:X}) $2' -p5323 -tp5324 -a(S'number/2' -p5325 -S'number(${1:C}, ${2:Expr}) $3' -p5326 -tp5327 -a(S'position/2' -p5328 -S'position(${1:Param1}, ${2:Param2}) $3' -p5329 -tp5330 -a(S'round/2' -p5331 -S'round(${1:C}, ${2:Param2}) $3' -p5332 -tp5333 -a(S'string/1' -p5334 -S'string(${1:X}) $2' -p5335 -tp5336 -a(S'string/2' -p5337 -S'string(${1:C}, ${2:Expr}) $3' -p5338 -tp5339 -a(S'substring/2' -p5340 -S'substring(${1:C}, ${2:Param2}) $3' -p5341 -tp5342 -a(S'sum/2' -p5343 -S'sum(${1:C}, ${2:Param2}) $3' -p5344 -tp5345 -a(S'translate/2' -p5346 -S'translate(${1:C}, ${2:Param2}) $3' -p5347 -tp5348 -asS'tv_db_sort' -p5349 -(lp5350 -(S'get_compare_value/2' -p5351 -S'get_compare_value(${1:KeyNo}, ${2:E}) $3' -p5352 -tp5353 -a(S'merge/4' -p5354 -S'merge(${1:Param1}, ${2:L1}, ${3:L2}, ${4:Param4}) $5' -p5355 -tp5356 -a(S'mergesort/3' -p5357 -S'mergesort(${1:KeyNo}, ${2:X}, ${3:ReverseOrder}) $4' -p5358 -tp5359 -asS'dbg_wx_mon' -p5360 -(lp5361 -(S'start/2' -p5362 -S'start(${1:Mode}, ${2:SFile}) $3' -p5363 -tp5364 -a(S'stop/0' -p5365 -S'stop() $1' -p5366 -tp5367 -asS'calc' -p5368 -(lp5369 -(S'calc/0' -p5370 -S'calc() $1' -p5371 -tp5372 -a(S'start/0' -p5373 -S'start() $1' -p5374 -tp5375 -asS'orber_ifr_aliasdef' -p5376 -(lp5377 -(S"'_get_absolute_name'/1" -p5378 -S"'_get_absolute_name'() $1" -p5379 -tp5380 -a(S"'_get_containing_repository'/1" -p5381 -S"'_get_containing_repository'() $1" -p5382 -tp5383 -a(S"'_get_def_kind'/1" -p5384 -S"'_get_def_kind'() $1" -p5385 -tp5386 -a(S"'_get_defined_in'/1" -p5387 -S"'_get_defined_in'() $1" -p5388 -tp5389 -a(S"'_get_id'/1" -p5390 -S"'_get_id'() $1" -p5391 -tp5392 -a(S"'_get_name'/1" -p5393 -S"'_get_name'() $1" -p5394 -tp5395 -a(S"'_get_original_type_def'/1" -p5396 -S"'_get_original_type_def'() $1" -p5397 -tp5398 -a(S"'_get_type'/1" -p5399 -S"'_get_type'() $1" -p5400 -tp5401 -a(S"'_get_version'/1" -p5402 -S"'_get_version'() $1" -p5403 -tp5404 -a(S"'_set_id'/2" -p5405 -S"'_set_id'() $1" -p5406 -tp5407 -a(S"'_set_name'/2" -p5408 -S"'_set_name'() $1" -p5409 -tp5410 -a(S"'_set_original_type_def'/2" -p5411 -S"'_set_original_type_def'() $1" -p5412 -tp5413 -a(S"'_set_version'/2" -p5414 -S"'_set_version'() $1" -p5415 -tp5416 -a(S'cleanup_for_destroy/1' -p5417 -S'cleanup_for_destroy() $1' -p5418 -tp5419 -a(S'describe/1' -p5420 -S'describe() $1' -p5421 -tp5422 -a(S'destroy/1' -p5423 -S'destroy() $1' -p5424 -tp5425 -a(S'move/4' -p5426 -S'move() $1' -p5427 -tp5428 -asS'CosTransactions_NotPrepared' -p5429 -(lp5430 -(S'id/0' -p5431 -S'id() $1' -p5432 -tp5433 -a(S'name/0' -p5434 -S'name() $1' -p5435 -tp5436 -a(S'tc/0' -p5437 -S'tc() $1' -p5438 -tp5439 -asS'mod_include' -p5440 -(lp5441 -(S'config/6' -p5442 -S'config(${1:Param1}, ${2:Context}, ${3:ErrorLog}, ${4:TagList}, ${5:ValueList}, ${6:R}) $7' -p5443 -tp5444 -a(S'do/1' -p5445 -S'do(${1:Info}) $2' -p5446 -tp5447 -a(S'echo/6' -p5448 -S'echo(${1:Param1}, ${2:Context}, ${3:ErrorLog}, ${4:Param4}, ${5:Param5}, ${6:R}) $7' -p5449 -tp5450 -a(S'exec/6' -p5451 -S'exec(${1:Param1}, ${2:Context}, ${3:ErrorLog}, ${4:Param4}, ${5:Param5}, ${6:R}) $7' -p5452 -tp5453 -a(S'flastmod/6' -p5454 -S'flastmod(${1:Param1}, ${2:Context}, ${3:ErrorLog}, ${4:Param4}, ${5:Param5}, ${6:R}) $7' -p5455 -tp5456 -a(S'fsize/6' -p5457 -S'fsize(${1:Param1}, ${2:Context}, ${3:ErrorLog}, ${4:Param4}, ${5:Param5}, ${6:R}) $7' -p5458 -tp5459 -a(S'include/6' -p5460 -S'include(${1:Param1}, ${2:Context}, ${3:ErrorLog}, ${4:Param4}, ${5:Param5}, ${6:R}) $7' -p5461 -tp5462 -a(S'parse/2' -p5463 -S'parse(${1:Info}, ${2:Body}) $3' -p5464 -tp5465 -asS'CosNotifyComm_NotifyPublish' -p5466 -(lp5467 -(S'code_change/3' -p5468 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p5469 -tp5470 -a(S'handle_call/3' -p5471 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p5472 -tp5473 -a(S'handle_cast/2' -p5474 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p5475 -tp5476 -a(S'handle_info/2' -p5477 -S'handle_info(${1:Param1}, ${2:State}) $3' -p5478 -tp5479 -a(S'init/1' -p5480 -S'init(${1:Env}) $2' -p5481 -tp5482 -a(S'oe_create/0' -p5483 -S'oe_create() $1' -p5484 -tp5485 -a(S'oe_create/1' -p5486 -S'oe_create(${1:Env}) $2' -p5487 -tp5488 -a(S'oe_create/2' -p5489 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p5490 -tp5491 -a(S'oe_create_link/0' -p5492 -S'oe_create_link() $1' -p5493 -tp5494 -a(S'oe_create_link/1' -p5495 -S'oe_create_link(${1:Env}) $2' -p5496 -tp5497 -a(S'oe_create_link/2' -p5498 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p5499 -tp5500 -a(S'oe_get_interface/0' -p5501 -S'oe_get_interface() $1' -p5502 -tp5503 -a(S'oe_is_a/1' -p5504 -S'oe_is_a(${1:Param1}) $2' -p5505 -tp5506 -a(S'oe_tc/1' -p5507 -S'oe_tc(${1:Param1}) $2' -p5508 -tp5509 -a(S'offer_change/3' -p5510 -S'offer_change(${1:OE_THIS}, ${2:Added}, ${3:Removed}) $4' -p5511 -tp5512 -a(S'offer_change/4' -p5513 -S'offer_change(${1:OE_THIS}, ${2:OE_Options}, ${3:Added}, ${4:Removed}) $5' -p5514 -tp5515 -a(S'terminate/2' -p5516 -S'terminate(${1:Reason}, ${2:State}) $3' -p5517 -tp5518 -a(S'typeID/0' -p5519 -S'typeID() $1' -p5520 -tp5521 -asS'CosTimerEvent_TimerEventHandler' -p5522 -(lp5523 -(S"'_get_status'/1" -p5524 -S"'_get_status'(${1:OE_THIS}) $2" -p5525 -tp5526 -a(S"'_get_status'/2" -p5527 -S"'_get_status'(${1:OE_THIS}, ${2:OE_Options}) $3" -p5528 -tp5529 -a(S'cancel_timer/1' -p5530 -S'cancel_timer(${1:OE_THIS}) $2' -p5531 -tp5532 -a(S'cancel_timer/2' -p5533 -S'cancel_timer(${1:OE_THIS}, ${2:OE_Options}) $3' -p5534 -tp5535 -a(S'code_change/3' -p5536 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p5537 -tp5538 -a(S'handle_call/3' -p5539 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p5540 -tp5541 -a(S'handle_cast/2' -p5542 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p5543 -tp5544 -a(S'handle_info/2' -p5545 -S'handle_info(${1:Info}, ${2:State}) $3' -p5546 -tp5547 -a(S'init/1' -p5548 -S'init(${1:Env}) $2' -p5549 -tp5550 -a(S'oe_create/0' -p5551 -S'oe_create() $1' -p5552 -tp5553 -a(S'oe_create/1' -p5554 -S'oe_create(${1:Env}) $2' -p5555 -tp5556 -a(S'oe_create/2' -p5557 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p5558 -tp5559 -a(S'oe_create_link/0' -p5560 -S'oe_create_link() $1' -p5561 -tp5562 -a(S'oe_create_link/1' -p5563 -S'oe_create_link(${1:Env}) $2' -p5564 -tp5565 -a(S'oe_create_link/2' -p5566 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p5567 -tp5568 -a(S'oe_get_interface/0' -p5569 -S'oe_get_interface() $1' -p5570 -tp5571 -a(S'oe_is_a/1' -p5572 -S'oe_is_a(${1:Param1}) $2' -p5573 -tp5574 -a(S'oe_tc/1' -p5575 -S'oe_tc(${1:Param1}) $2' -p5576 -tp5577 -a(S'set_data/2' -p5578 -S'set_data(${1:OE_THIS}, ${2:Event_data}) $3' -p5579 -tp5580 -a(S'set_data/3' -p5581 -S'set_data(${1:OE_THIS}, ${2:OE_Options}, ${3:Event_data}) $4' -p5582 -tp5583 -a(S'set_timer/3' -p5584 -S'set_timer(${1:OE_THIS}, ${2:Time_type}, ${3:Trigger_time}) $4' -p5585 -tp5586 -a(S'set_timer/4' -p5587 -S'set_timer(${1:OE_THIS}, ${2:OE_Options}, ${3:Time_type}, ${4:Trigger_time}) $5' -p5588 -tp5589 -a(S'terminate/2' -p5590 -S'terminate(${1:Reason}, ${2:State}) $3' -p5591 -tp5592 -a(S'time_set/1' -p5593 -S'time_set(${1:OE_THIS}) $2' -p5594 -tp5595 -a(S'time_set/2' -p5596 -S'time_set(${1:OE_THIS}, ${2:OE_Options}) $3' -p5597 -tp5598 -a(S'typeID/0' -p5599 -S'typeID() $1' -p5600 -tp5601 -asS'mod_log' -p5602 -(lp5603 -(S'do/1' -p5604 -S'do(${1:Info}) $2' -p5605 -tp5606 -a(S'error_log/2' -p5607 -S'error_log(${1:Info}, ${2:Reason}) $3' -p5608 -tp5609 -a(S'load/2' -p5610 -S'load(${1:Param1}, ${2:Param2}) $3' -p5611 -tp5612 -a(S'remove/1' -p5613 -S'remove(${1:ConfigDB}) $2' -p5614 -tp5615 -a(S'report_error/2' -p5616 -S'report_error(${1:ConfigDB}, ${2:Error}) $3' -p5617 -tp5618 -a(S'security_log/2' -p5619 -S'security_log(${1:Info}, ${2:ReasonStr}) $3' -p5620 -tp5621 -a(S'store/2' -p5622 -S'store(${1:Param1}, ${2:ConfigList}) $3' -p5623 -tp5624 -asS'gs_widgets' -p5625 -(lp5626 -(S'container/1' -p5627 -S'container(${1:Param1}) $2' -p5628 -tp5629 -a(S'default_options/1' -p5630 -S'default_options(${1:Param1}) $2' -p5631 -tp5632 -asS'dbg_ui_trace' -p5633 -(lp5634 -(S'start/1' -p5635 -S'start(${1:Pid}) $2' -p5636 -tp5637 -a(S'start/3' -p5638 -S'start(${1:Pid}, ${2:TraceWin}, ${3:BackTrace}) $4' -p5639 -tp5640 -a(S'title/1' -p5641 -S'title(${1:Pid}) $2' -p5642 -tp5643 -asS'wxGraphicsRenderer' -p5644 -(lp5645 -(S'createBrush/2' -p5646 -S'createBrush(${1:This}, ${2:Brush}) $3' -p5647 -tp5648 -a(S'createContext/2' -p5649 -S'createContext(${1:This}, ${2:Dc}) $3' -p5650 -tp5651 -a(S'createFont/2' -p5652 -S'createFont(${1:This}, ${2:Font}) $3' -p5653 -tp5654 -a(S'createFont/3' -p5655 -S'createFont(${1:This}, ${2:Font}, ${3:Param3}) $4' -p5656 -tp5657 -a(S'createLinearGradientBrush/7' -p5658 -S'createLinearGradientBrush(${1:This}, ${2:X1}, ${3:Y1}, ${4:X2}, ${5:Y2}, ${6:C1}, ${7:C2}) $8' -p5659 -tp5660 -a(S'createMatrix/1' -p5661 -S'createMatrix(${1:This}) $2' -p5662 -tp5663 -a(S'createMatrix/2' -p5664 -S'createMatrix(${1:This}, ${2:Param2}) $3' -p5665 -tp5666 -a(S'createPath/1' -p5667 -S'createPath(${1:This}) $2' -p5668 -tp5669 -a(S'createPen/2' -p5670 -S'createPen(${1:This}, ${2:Pen}) $3' -p5671 -tp5672 -a(S'createRadialGradientBrush/8' -p5673 -S'createRadialGradientBrush(${1:This}, ${2:Xo}, ${3:Yo}, ${4:Xc}, ${5:Yc}, ${6:Radius}, ${7:OColor}, ${8:CColor}) $9' -p5674 -tp5675 -a(S'getDefaultRenderer/0' -p5676 -S'getDefaultRenderer() $1' -p5677 -tp5678 -a(S'parent_class/1' -p5679 -S'parent_class(${1:Param1}) $2' -p5680 -tp5681 -asS'wxGBSizerItem' -p5682 -(lp5683 -(S'calcMin/1' -p5684 -S'calcMin(${1:This}) $2' -p5685 -tp5686 -a(S'deleteWindows/1' -p5687 -S'deleteWindows(${1:This}) $2' -p5688 -tp5689 -a(S'detachSizer/1' -p5690 -S'detachSizer(${1:This}) $2' -p5691 -tp5692 -a(S'getBorder/1' -p5693 -S'getBorder(${1:This}) $2' -p5694 -tp5695 -a(S'getFlag/1' -p5696 -S'getFlag(${1:This}) $2' -p5697 -tp5698 -a(S'getMinSize/1' -p5699 -S'getMinSize(${1:This}) $2' -p5700 -tp5701 -a(S'getPosition/1' -p5702 -S'getPosition(${1:This}) $2' -p5703 -tp5704 -a(S'getProportion/1' -p5705 -S'getProportion(${1:This}) $2' -p5706 -tp5707 -a(S'getRatio/1' -p5708 -S'getRatio(${1:This}) $2' -p5709 -tp5710 -a(S'getRect/1' -p5711 -S'getRect(${1:This}) $2' -p5712 -tp5713 -a(S'getSize/1' -p5714 -S'getSize(${1:This}) $2' -p5715 -tp5716 -a(S'getSizer/1' -p5717 -S'getSizer(${1:This}) $2' -p5718 -tp5719 -a(S'getSpacer/1' -p5720 -S'getSpacer(${1:This}) $2' -p5721 -tp5722 -a(S'getUserData/1' -p5723 -S'getUserData(${1:This}) $2' -p5724 -tp5725 -a(S'getWindow/1' -p5726 -S'getWindow(${1:This}) $2' -p5727 -tp5728 -a(S'isShown/1' -p5729 -S'isShown(${1:This}) $2' -p5730 -tp5731 -a(S'isSizer/1' -p5732 -S'isSizer(${1:This}) $2' -p5733 -tp5734 -a(S'isSpacer/1' -p5735 -S'isSpacer(${1:This}) $2' -p5736 -tp5737 -a(S'isWindow/1' -p5738 -S'isWindow(${1:This}) $2' -p5739 -tp5740 -a(S'parent_class/1' -p5741 -S'parent_class(${1:Param1}) $2' -p5742 -tp5743 -a(S'setBorder/2' -p5744 -S'setBorder(${1:This}, ${2:Border}) $3' -p5745 -tp5746 -a(S'setDimension/3' -p5747 -S'setDimension(${1:This}, ${2:Pos}, ${3:Size}) $4' -p5748 -tp5749 -a(S'setFlag/2' -p5750 -S'setFlag(${1:This}, ${2:Flag}) $3' -p5751 -tp5752 -a(S'setInitSize/3' -p5753 -S'setInitSize(${1:This}, ${2:X}, ${3:Y}) $4' -p5754 -tp5755 -a(S'setMinSize/2' -p5756 -S'setMinSize(${1:This}, ${2:Size}) $3' -p5757 -tp5758 -a(S'setMinSize/3' -p5759 -S'setMinSize(${1:This}, ${2:X}, ${3:Y}) $4' -p5760 -tp5761 -a(S'setProportion/2' -p5762 -S'setProportion(${1:This}, ${2:Proportion}) $3' -p5763 -tp5764 -a(S'setRatio/2' -p5765 -S'setRatio(${1:This}, ${2:Ratio}) $3' -p5766 -tp5767 -a(S'setRatio/3' -p5768 -S'setRatio(${1:This}, ${2:Width}, ${3:Height}) $4' -p5769 -tp5770 -a(S'setSizer/2' -p5771 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p5772 -tp5773 -a(S'setSpacer/2' -p5774 -S'setSpacer(${1:This}, ${2:Size}) $3' -p5775 -tp5776 -a(S'setSpacer/3' -p5777 -S'setSpacer(${1:This}, ${2:Width}, ${3:Height}) $4' -p5778 -tp5779 -a(S'setWindow/2' -p5780 -S'setWindow(${1:This}, ${2:Window}) $3' -p5781 -tp5782 -a(S'show/2' -p5783 -S'show(${1:This}, ${2:Show}) $3' -p5784 -tp5785 -asS'snmpc_mib_to_hrl' -p5786 -(lp5787 -(S'compile/3' -p5788 -S'compile(${1:Input}, ${2:Output}, ${3:Opts}) $4' -p5789 -tp5790 -a(S'convert/1' -p5791 -S'convert(${1:MibName}) $2' -p5792 -tp5793 -a(S'convert/3' -p5794 -S'convert(${1:MibFile}, ${2:HrlFile}, ${3:MibName}) $4' -p5795 -tp5796 -asS'wxPasswordEntryDialog' -p5797 -(lp5798 -(S'cacheBestSize/2' -p5799 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p5800 -tp5801 -a(S'captureMouse/1' -p5802 -S'captureMouse(${1:This}) $2' -p5803 -tp5804 -a(S'center/1' -p5805 -S'center(${1:This}) $2' -p5806 -tp5807 -a(S'center/2' -p5808 -S'center(${1:This}, ${2:Options}) $3' -p5809 -tp5810 -a(S'centerOnParent/1' -p5811 -S'centerOnParent(${1:This}) $2' -p5812 -tp5813 -a(S'centerOnParent/2' -p5814 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p5815 -tp5816 -a(S'centerOnScreen/1' -p5817 -S'centerOnScreen(${1:This}) $2' -p5818 -tp5819 -a(S'centerOnScreen/2' -p5820 -S'centerOnScreen(${1:This}, ${2:Options}) $3' -p5821 -tp5822 -a(S'centre/1' -p5823 -S'centre(${1:This}) $2' -p5824 -tp5825 -a(S'centre/2' -p5826 -S'centre(${1:This}, ${2:Options}) $3' -p5827 -tp5828 -a(S'centreOnParent/1' -p5829 -S'centreOnParent(${1:This}) $2' -p5830 -tp5831 -a(S'centreOnParent/2' -p5832 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p5833 -tp5834 -a(S'centreOnScreen/1' -p5835 -S'centreOnScreen(${1:This}) $2' -p5836 -tp5837 -a(S'centreOnScreen/2' -p5838 -S'centreOnScreen(${1:This}, ${2:Options}) $3' -p5839 -tp5840 -a(S'clearBackground/1' -p5841 -S'clearBackground(${1:This}) $2' -p5842 -tp5843 -a(S'clientToScreen/2' -p5844 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p5845 -tp5846 -a(S'clientToScreen/3' -p5847 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p5848 -tp5849 -a(S'close/1' -p5850 -S'close(${1:This}) $2' -p5851 -tp5852 -a(S'close/2' -p5853 -S'close(${1:This}, ${2:Options}) $3' -p5854 -tp5855 -a(S'connect/2' -p5856 -S'connect(${1:This}, ${2:EventType}) $3' -p5857 -tp5858 -a(S'connect/3' -p5859 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p5860 -tp5861 -a(S'convertDialogToPixels/2' -p5862 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p5863 -tp5864 -a(S'convertPixelsToDialog/2' -p5865 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p5866 -tp5867 -a(S'createButtonSizer/2' -p5868 -S'createButtonSizer(${1:This}, ${2:Flags}) $3' -p5869 -tp5870 -a(S'createStdDialogButtonSizer/2' -p5871 -S'createStdDialogButtonSizer(${1:This}, ${2:Flags}) $3' -p5872 -tp5873 -a(S'destroy/1' -p5874 -S'destroy(${1:This}) $2' -p5875 -tp5876 -a(S'destroyChildren/1' -p5877 -S'destroyChildren(${1:This}) $2' -p5878 -tp5879 -a(S'disable/1' -p5880 -S'disable(${1:This}) $2' -p5881 -tp5882 -a(S'disconnect/1' -p5883 -S'disconnect(${1:This}) $2' -p5884 -tp5885 -a(S'disconnect/2' -p5886 -S'disconnect(${1:This}, ${2:EventType}) $3' -p5887 -tp5888 -a(S'disconnect/3' -p5889 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p5890 -tp5891 -a(S'enable/1' -p5892 -S'enable(${1:This}) $2' -p5893 -tp5894 -a(S'enable/2' -p5895 -S'enable(${1:This}, ${2:Options}) $3' -p5896 -tp5897 -a(S'endModal/2' -p5898 -S'endModal(${1:This}, ${2:RetCode}) $3' -p5899 -tp5900 -a(S'findWindow/2' -p5901 -S'findWindow(${1:This}, ${2:Winid}) $3' -p5902 -tp5903 -a(S'fit/1' -p5904 -S'fit(${1:This}) $2' -p5905 -tp5906 -a(S'fitInside/1' -p5907 -S'fitInside(${1:This}) $2' -p5908 -tp5909 -a(S'freeze/1' -p5910 -S'freeze(${1:This}) $2' -p5911 -tp5912 -a(S'getAcceleratorTable/1' -p5913 -S'getAcceleratorTable(${1:This}) $2' -p5914 -tp5915 -a(S'getAffirmativeId/1' -p5916 -S'getAffirmativeId(${1:This}) $2' -p5917 -tp5918 -a(S'getBackgroundColour/1' -p5919 -S'getBackgroundColour(${1:This}) $2' -p5920 -tp5921 -a(S'getBackgroundStyle/1' -p5922 -S'getBackgroundStyle(${1:This}) $2' -p5923 -tp5924 -a(S'getBestSize/1' -p5925 -S'getBestSize(${1:This}) $2' -p5926 -tp5927 -a(S'getCaret/1' -p5928 -S'getCaret(${1:This}) $2' -p5929 -tp5930 -a(S'getCharHeight/1' -p5931 -S'getCharHeight(${1:This}) $2' -p5932 -tp5933 -a(S'getCharWidth/1' -p5934 -S'getCharWidth(${1:This}) $2' -p5935 -tp5936 -a(S'getChildren/1' -p5937 -S'getChildren(${1:This}) $2' -p5938 -tp5939 -a(S'getClientSize/1' -p5940 -S'getClientSize(${1:This}) $2' -p5941 -tp5942 -a(S'getContainingSizer/1' -p5943 -S'getContainingSizer(${1:This}) $2' -p5944 -tp5945 -a(S'getCursor/1' -p5946 -S'getCursor(${1:This}) $2' -p5947 -tp5948 -a(S'getDropTarget/1' -p5949 -S'getDropTarget(${1:This}) $2' -p5950 -tp5951 -a(S'getEventHandler/1' -p5952 -S'getEventHandler(${1:This}) $2' -p5953 -tp5954 -a(S'getExtraStyle/1' -p5955 -S'getExtraStyle(${1:This}) $2' -p5956 -tp5957 -a(S'getFont/1' -p5958 -S'getFont(${1:This}) $2' -p5959 -tp5960 -a(S'getForegroundColour/1' -p5961 -S'getForegroundColour(${1:This}) $2' -p5962 -tp5963 -a(S'getGrandParent/1' -p5964 -S'getGrandParent(${1:This}) $2' -p5965 -tp5966 -a(S'getHandle/1' -p5967 -S'getHandle(${1:This}) $2' -p5968 -tp5969 -a(S'getHelpText/1' -p5970 -S'getHelpText(${1:This}) $2' -p5971 -tp5972 -a(S'getIcon/1' -p5973 -S'getIcon(${1:This}) $2' -p5974 -tp5975 -a(S'getIcons/1' -p5976 -S'getIcons(${1:This}) $2' -p5977 -tp5978 -a(S'getId/1' -p5979 -S'getId(${1:This}) $2' -p5980 -tp5981 -a(S'getLabel/1' -p5982 -S'getLabel(${1:This}) $2' -p5983 -tp5984 -a(S'getMaxSize/1' -p5985 -S'getMaxSize(${1:This}) $2' -p5986 -tp5987 -a(S'getMinSize/1' -p5988 -S'getMinSize(${1:This}) $2' -p5989 -tp5990 -a(S'getName/1' -p5991 -S'getName(${1:This}) $2' -p5992 -tp5993 -a(S'getParent/1' -p5994 -S'getParent(${1:This}) $2' -p5995 -tp5996 -a(S'getPosition/1' -p5997 -S'getPosition(${1:This}) $2' -p5998 -tp5999 -a(S'getRect/1' -p6000 -S'getRect(${1:This}) $2' -p6001 -tp6002 -a(S'getReturnCode/1' -p6003 -S'getReturnCode(${1:This}) $2' -p6004 -tp6005 -a(S'getScreenPosition/1' -p6006 -S'getScreenPosition(${1:This}) $2' -p6007 -tp6008 -a(S'getScreenRect/1' -p6009 -S'getScreenRect(${1:This}) $2' -p6010 -tp6011 -a(S'getScrollPos/2' -p6012 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p6013 -tp6014 -a(S'getScrollRange/2' -p6015 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p6016 -tp6017 -a(S'getScrollThumb/2' -p6018 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p6019 -tp6020 -a(S'getSize/1' -p6021 -S'getSize(${1:This}) $2' -p6022 -tp6023 -a(S'getSizer/1' -p6024 -S'getSizer(${1:This}) $2' -p6025 -tp6026 -a(S'getTextExtent/2' -p6027 -S'getTextExtent(${1:This}, ${2:String}) $3' -p6028 -tp6029 -a(S'getTextExtent/3' -p6030 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p6031 -tp6032 -a(S'getTitle/1' -p6033 -S'getTitle(${1:This}) $2' -p6034 -tp6035 -a(S'getToolTip/1' -p6036 -S'getToolTip(${1:This}) $2' -p6037 -tp6038 -a(S'getUpdateRegion/1' -p6039 -S'getUpdateRegion(${1:This}) $2' -p6040 -tp6041 -a(S'getValue/1' -p6042 -S'getValue(${1:This}) $2' -p6043 -tp6044 -a(S'getVirtualSize/1' -p6045 -S'getVirtualSize(${1:This}) $2' -p6046 -tp6047 -a(S'getWindowStyleFlag/1' -p6048 -S'getWindowStyleFlag(${1:This}) $2' -p6049 -tp6050 -a(S'getWindowVariant/1' -p6051 -S'getWindowVariant(${1:This}) $2' -p6052 -tp6053 -a(S'hasCapture/1' -p6054 -S'hasCapture(${1:This}) $2' -p6055 -tp6056 -a(S'hasScrollbar/2' -p6057 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p6058 -tp6059 -a(S'hasTransparentBackground/1' -p6060 -S'hasTransparentBackground(${1:This}) $2' -p6061 -tp6062 -a(S'hide/1' -p6063 -S'hide(${1:This}) $2' -p6064 -tp6065 -a(S'iconize/1' -p6066 -S'iconize(${1:This}) $2' -p6067 -tp6068 -a(S'iconize/2' -p6069 -S'iconize(${1:This}, ${2:Options}) $3' -p6070 -tp6071 -a(S'inheritAttributes/1' -p6072 -S'inheritAttributes(${1:This}) $2' -p6073 -tp6074 -a(S'initDialog/1' -p6075 -S'initDialog(${1:This}) $2' -p6076 -tp6077 -a(S'invalidateBestSize/1' -p6078 -S'invalidateBestSize(${1:This}) $2' -p6079 -tp6080 -a(S'isActive/1' -p6081 -S'isActive(${1:This}) $2' -p6082 -tp6083 -a(S'isEnabled/1' -p6084 -S'isEnabled(${1:This}) $2' -p6085 -tp6086 -a(S'isExposed/2' -p6087 -S'isExposed(${1:This}, ${2:Pt}) $3' -p6088 -tp6089 -a(S'isExposed/3' -p6090 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p6091 -tp6092 -a(S'isExposed/5' -p6093 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p6094 -tp6095 -a(S'isFullScreen/1' -p6096 -S'isFullScreen(${1:This}) $2' -p6097 -tp6098 -a(S'isIconized/1' -p6099 -S'isIconized(${1:This}) $2' -p6100 -tp6101 -a(S'isMaximized/1' -p6102 -S'isMaximized(${1:This}) $2' -p6103 -tp6104 -a(S'isModal/1' -p6105 -S'isModal(${1:This}) $2' -p6106 -tp6107 -a(S'isRetained/1' -p6108 -S'isRetained(${1:This}) $2' -p6109 -tp6110 -a(S'isShown/1' -p6111 -S'isShown(${1:This}) $2' -p6112 -tp6113 -a(S'isTopLevel/1' -p6114 -S'isTopLevel(${1:This}) $2' -p6115 -tp6116 -a(S'layout/1' -p6117 -S'layout(${1:This}) $2' -p6118 -tp6119 -a(S'lineDown/1' -p6120 -S'lineDown(${1:This}) $2' -p6121 -tp6122 -a(S'lineUp/1' -p6123 -S'lineUp(${1:This}) $2' -p6124 -tp6125 -a(S'lower/1' -p6126 -S'lower(${1:This}) $2' -p6127 -tp6128 -a(S'makeModal/1' -p6129 -S'makeModal(${1:This}) $2' -p6130 -tp6131 -a(S'makeModal/2' -p6132 -S'makeModal(${1:This}, ${2:Options}) $3' -p6133 -tp6134 -a(S'maximize/1' -p6135 -S'maximize(${1:This}) $2' -p6136 -tp6137 -a(S'maximize/2' -p6138 -S'maximize(${1:This}, ${2:Options}) $3' -p6139 -tp6140 -a(S'move/2' -p6141 -S'move(${1:This}, ${2:Pt}) $3' -p6142 -tp6143 -a(S'move/3' -p6144 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p6145 -tp6146 -a(S'move/4' -p6147 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p6148 -tp6149 -a(S'moveAfterInTabOrder/2' -p6150 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p6151 -tp6152 -a(S'moveBeforeInTabOrder/2' -p6153 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p6154 -tp6155 -a(S'navigate/1' -p6156 -S'navigate(${1:This}) $2' -p6157 -tp6158 -a(S'navigate/2' -p6159 -S'navigate(${1:This}, ${2:Options}) $3' -p6160 -tp6161 -a(S'new/2' -p6162 -S'new(${1:Parent}, ${2:Message}) $3' -p6163 -tp6164 -a(S'new/3' -p6165 -S'new(${1:Parent}, ${2:Message}, ${3:Param3}) $4' -p6166 -tp6167 -a(S'pageDown/1' -p6168 -S'pageDown(${1:This}) $2' -p6169 -tp6170 -a(S'pageUp/1' -p6171 -S'pageUp(${1:This}) $2' -p6172 -tp6173 -a(S'parent_class/1' -p6174 -S'parent_class(${1:Param1}) $2' -p6175 -tp6176 -a(S'popEventHandler/1' -p6177 -S'popEventHandler(${1:This}) $2' -p6178 -tp6179 -a(S'popEventHandler/2' -p6180 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p6181 -tp6182 -a(S'popupMenu/2' -p6183 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p6184 -tp6185 -a(S'popupMenu/3' -p6186 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p6187 -tp6188 -a(S'popupMenu/4' -p6189 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p6190 -tp6191 -a(S'raise/1' -p6192 -S'raise(${1:This}) $2' -p6193 -tp6194 -a(S'refresh/1' -p6195 -S'refresh(${1:This}) $2' -p6196 -tp6197 -a(S'refresh/2' -p6198 -S'refresh(${1:This}, ${2:Options}) $3' -p6199 -tp6200 -a(S'refreshRect/2' -p6201 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p6202 -tp6203 -a(S'refreshRect/3' -p6204 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p6205 -tp6206 -a(S'releaseMouse/1' -p6207 -S'releaseMouse(${1:This}) $2' -p6208 -tp6209 -a(S'removeChild/2' -p6210 -S'removeChild(${1:This}, ${2:Child}) $3' -p6211 -tp6212 -a(S'reparent/2' -p6213 -S'reparent(${1:This}, ${2:NewParent}) $3' -p6214 -tp6215 -a(S'requestUserAttention/1' -p6216 -S'requestUserAttention(${1:This}) $2' -p6217 -tp6218 -a(S'requestUserAttention/2' -p6219 -S'requestUserAttention(${1:This}, ${2:Options}) $3' -p6220 -tp6221 -a(S'screenToClient/1' -p6222 -S'screenToClient(${1:This}) $2' -p6223 -tp6224 -a(S'screenToClient/2' -p6225 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p6226 -tp6227 -a(S'scrollLines/2' -p6228 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p6229 -tp6230 -a(S'scrollPages/2' -p6231 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p6232 -tp6233 -a(S'scrollWindow/3' -p6234 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p6235 -tp6236 -a(S'scrollWindow/4' -p6237 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p6238 -tp6239 -a(S'setAcceleratorTable/2' -p6240 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p6241 -tp6242 -a(S'setAffirmativeId/2' -p6243 -S'setAffirmativeId(${1:This}, ${2:AffirmativeId}) $3' -p6244 -tp6245 -a(S'setAutoLayout/2' -p6246 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p6247 -tp6248 -a(S'setBackgroundColour/2' -p6249 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p6250 -tp6251 -a(S'setBackgroundStyle/2' -p6252 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p6253 -tp6254 -a(S'setCaret/2' -p6255 -S'setCaret(${1:This}, ${2:Caret}) $3' -p6256 -tp6257 -a(S'setClientSize/2' -p6258 -S'setClientSize(${1:This}, ${2:Size}) $3' -p6259 -tp6260 -a(S'setClientSize/3' -p6261 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p6262 -tp6263 -a(S'setContainingSizer/2' -p6264 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p6265 -tp6266 -a(S'setCursor/2' -p6267 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p6268 -tp6269 -a(S'setDropTarget/2' -p6270 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p6271 -tp6272 -a(S'setExtraStyle/2' -p6273 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p6274 -tp6275 -a(S'setFocus/1' -p6276 -S'setFocus(${1:This}) $2' -p6277 -tp6278 -a(S'setFocusFromKbd/1' -p6279 -S'setFocusFromKbd(${1:This}) $2' -p6280 -tp6281 -a(S'setFont/2' -p6282 -S'setFont(${1:This}, ${2:Font}) $3' -p6283 -tp6284 -a(S'setForegroundColour/2' -p6285 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p6286 -tp6287 -a(S'setHelpText/2' -p6288 -S'setHelpText(${1:This}, ${2:Text}) $3' -p6289 -tp6290 -a(S'setIcon/2' -p6291 -S'setIcon(${1:This}, ${2:Icon}) $3' -p6292 -tp6293 -a(S'setIcons/2' -p6294 -S'setIcons(${1:This}, ${2:Icons}) $3' -p6295 -tp6296 -a(S'setId/2' -p6297 -S'setId(${1:This}, ${2:Winid}) $3' -p6298 -tp6299 -a(S'setLabel/2' -p6300 -S'setLabel(${1:This}, ${2:Label}) $3' -p6301 -tp6302 -a(S'setMaxSize/2' -p6303 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p6304 -tp6305 -a(S'setMinSize/2' -p6306 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p6307 -tp6308 -a(S'setName/2' -p6309 -S'setName(${1:This}, ${2:Name}) $3' -p6310 -tp6311 -a(S'setOwnBackgroundColour/2' -p6312 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p6313 -tp6314 -a(S'setOwnFont/2' -p6315 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p6316 -tp6317 -a(S'setOwnForegroundColour/2' -p6318 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p6319 -tp6320 -a(S'setPalette/2' -p6321 -S'setPalette(${1:This}, ${2:Pal}) $3' -p6322 -tp6323 -a(S'setReturnCode/2' -p6324 -S'setReturnCode(${1:This}, ${2:ReturnCode}) $3' -p6325 -tp6326 -a(S'setScrollPos/3' -p6327 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p6328 -tp6329 -a(S'setScrollPos/4' -p6330 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p6331 -tp6332 -a(S'setScrollbar/5' -p6333 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p6334 -tp6335 -a(S'setScrollbar/6' -p6336 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p6337 -tp6338 -a(S'setShape/2' -p6339 -S'setShape(${1:This}, ${2:Region}) $3' -p6340 -tp6341 -a(S'setSize/2' -p6342 -S'setSize(${1:This}, ${2:Rect}) $3' -p6343 -tp6344 -a(S'setSize/3' -p6345 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p6346 -tp6347 -a(S'setSize/5' -p6348 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p6349 -tp6350 -a(S'setSize/6' -p6351 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p6352 -tp6353 -a(S'setSizeHints/2' -p6354 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p6355 -tp6356 -a(S'setSizeHints/3' -p6357 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p6358 -tp6359 -a(S'setSizeHints/4' -p6360 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p6361 -tp6362 -a(S'setSizer/2' -p6363 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p6364 -tp6365 -a(S'setSizer/3' -p6366 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p6367 -tp6368 -a(S'setSizerAndFit/2' -p6369 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p6370 -tp6371 -a(S'setSizerAndFit/3' -p6372 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p6373 -tp6374 -a(S'setThemeEnabled/2' -p6375 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p6376 -tp6377 -a(S'setTitle/2' -p6378 -S'setTitle(${1:This}, ${2:Title}) $3' -p6379 -tp6380 -a(S'setToolTip/2' -p6381 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p6382 -tp6383 -a(S'setValue/2' -p6384 -S'setValue(${1:This}, ${2:Val}) $3' -p6385 -tp6386 -a(S'setVirtualSize/2' -p6387 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p6388 -tp6389 -a(S'setVirtualSize/3' -p6390 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p6391 -tp6392 -a(S'setVirtualSizeHints/2' -p6393 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p6394 -tp6395 -a(S'setVirtualSizeHints/3' -p6396 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p6397 -tp6398 -a(S'setVirtualSizeHints/4' -p6399 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p6400 -tp6401 -a(S'setWindowStyle/2' -p6402 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p6403 -tp6404 -a(S'setWindowStyleFlag/2' -p6405 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p6406 -tp6407 -a(S'setWindowVariant/2' -p6408 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p6409 -tp6410 -a(S'shouldInheritColours/1' -p6411 -S'shouldInheritColours(${1:This}) $2' -p6412 -tp6413 -a(S'show/1' -p6414 -S'show(${1:This}) $2' -p6415 -tp6416 -a(S'show/2' -p6417 -S'show(${1:This}, ${2:Options}) $3' -p6418 -tp6419 -a(S'showFullScreen/2' -p6420 -S'showFullScreen(${1:This}, ${2:Show}) $3' -p6421 -tp6422 -a(S'showFullScreen/3' -p6423 -S'showFullScreen(${1:This}, ${2:Show}, ${3:Options}) $4' -p6424 -tp6425 -a(S'showModal/1' -p6426 -S'showModal(${1:This}) $2' -p6427 -tp6428 -a(S'thaw/1' -p6429 -S'thaw(${1:This}) $2' -p6430 -tp6431 -a(S'transferDataFromWindow/1' -p6432 -S'transferDataFromWindow(${1:This}) $2' -p6433 -tp6434 -a(S'transferDataToWindow/1' -p6435 -S'transferDataToWindow(${1:This}) $2' -p6436 -tp6437 -a(S'update/1' -p6438 -S'update(${1:This}) $2' -p6439 -tp6440 -a(S'updateWindowUI/1' -p6441 -S'updateWindowUI(${1:This}) $2' -p6442 -tp6443 -a(S'updateWindowUI/2' -p6444 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p6445 -tp6446 -a(S'validate/1' -p6447 -S'validate(${1:This}) $2' -p6448 -tp6449 -a(S'warpPointer/3' -p6450 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p6451 -tp6452 -asS'ct_hooks' -p6453 -(lp6454 -(S'end_tc/5' -p6455 -S'end_tc(${1:Mod}, ${2:TC}, ${3:Config}, ${4:Result}, ${5:Return}) $6' -p6456 -tp6457 -a(S'init/1' -p6458 -S'init(${1:Opts}) $2' -p6459 -tp6460 -a(S'init_tc/3' -p6461 -S'init_tc(${1:Mod}, ${2:TC}, ${3:Config}) $4' -p6462 -tp6463 -a(S'on_tc_fail/2' -p6464 -S'on_tc_fail(${1:Param1}, ${2:Param2}) $3' -p6465 -tp6466 -a(S'on_tc_skip/2' -p6467 -S'on_tc_skip(${1:How}, ${2:Param2}) $3' -p6468 -tp6469 -a(S'terminate/1' -p6470 -S'terminate(${1:Hooks}) $2' -p6471 -tp6472 -asS'wxClientDC' -p6473 -(lp6474 -(S'blit/5' -p6475 -S'blit(${1:This}, ${2:DestPt}, ${3:Sz}, ${4:Source}, ${5:SrcPt}) $6' -p6476 -tp6477 -a(S'blit/6' -p6478 -S'blit(${1:This}, ${2:DestPt}, ${3:Sz}, ${4:Source}, ${5:SrcPt}, ${6:Options}) $7' -p6479 -tp6480 -a(S'calcBoundingBox/3' -p6481 -S'calcBoundingBox(${1:This}, ${2:X}, ${3:Y}) $4' -p6482 -tp6483 -a(S'clear/1' -p6484 -S'clear(${1:This}) $2' -p6485 -tp6486 -a(S'computeScaleAndOrigin/1' -p6487 -S'computeScaleAndOrigin(${1:This}) $2' -p6488 -tp6489 -a(S'crossHair/2' -p6490 -S'crossHair(${1:This}, ${2:Pt}) $3' -p6491 -tp6492 -a(S'destroy/1' -p6493 -S'destroy(${1:This}) $2' -p6494 -tp6495 -a(S'destroyClippingRegion/1' -p6496 -S'destroyClippingRegion(${1:This}) $2' -p6497 -tp6498 -a(S'deviceToLogicalX/2' -p6499 -S'deviceToLogicalX(${1:This}, ${2:X}) $3' -p6500 -tp6501 -a(S'deviceToLogicalXRel/2' -p6502 -S'deviceToLogicalXRel(${1:This}, ${2:X}) $3' -p6503 -tp6504 -a(S'deviceToLogicalY/2' -p6505 -S'deviceToLogicalY(${1:This}, ${2:Y}) $3' -p6506 -tp6507 -a(S'deviceToLogicalYRel/2' -p6508 -S'deviceToLogicalYRel(${1:This}, ${2:Y}) $3' -p6509 -tp6510 -a(S'drawArc/4' -p6511 -S'drawArc(${1:This}, ${2:Pt1}, ${3:Pt2}, ${4:Centre}) $5' -p6512 -tp6513 -a(S'drawBitmap/3' -p6514 -S'drawBitmap(${1:This}, ${2:Bmp}, ${3:Pt}) $4' -p6515 -tp6516 -a(S'drawBitmap/4' -p6517 -S'drawBitmap(${1:This}, ${2:Bmp}, ${3:Pt}, ${4:Options}) $5' -p6518 -tp6519 -a(S'drawCheckMark/2' -p6520 -S'drawCheckMark(${1:This}, ${2:Rect}) $3' -p6521 -tp6522 -a(S'drawCircle/3' -p6523 -S'drawCircle(${1:This}, ${2:Pt}, ${3:Radius}) $4' -p6524 -tp6525 -a(S'drawEllipse/2' -p6526 -S'drawEllipse(${1:This}, ${2:Rect}) $3' -p6527 -tp6528 -a(S'drawEllipse/3' -p6529 -S'drawEllipse(${1:This}, ${2:Pt}, ${3:Sz}) $4' -p6530 -tp6531 -a(S'drawEllipticArc/5' -p6532 -S'drawEllipticArc(${1:This}, ${2:Pt}, ${3:Sz}, ${4:Sa}, ${5:Ea}) $6' -p6533 -tp6534 -a(S'drawIcon/3' -p6535 -S'drawIcon(${1:This}, ${2:Icon}, ${3:Pt}) $4' -p6536 -tp6537 -a(S'drawLabel/3' -p6538 -S'drawLabel(${1:This}, ${2:Text}, ${3:Rect}) $4' -p6539 -tp6540 -a(S'drawLabel/4' -p6541 -S'drawLabel(${1:This}, ${2:Text}, ${3:Rect}, ${4:Options}) $5' -p6542 -tp6543 -a(S'drawLine/3' -p6544 -S'drawLine(${1:This}, ${2:Pt1}, ${3:Pt2}) $4' -p6545 -tp6546 -a(S'drawLines/2' -p6547 -S'drawLines(${1:This}, ${2:Points}) $3' -p6548 -tp6549 -a(S'drawLines/3' -p6550 -S'drawLines(${1:This}, ${2:Points}, ${3:Options}) $4' -p6551 -tp6552 -a(S'drawPoint/2' -p6553 -S'drawPoint(${1:This}, ${2:Pt}) $3' -p6554 -tp6555 -a(S'drawPolygon/2' -p6556 -S'drawPolygon(${1:This}, ${2:Points}) $3' -p6557 -tp6558 -a(S'drawPolygon/3' -p6559 -S'drawPolygon(${1:This}, ${2:Points}, ${3:Options}) $4' -p6560 -tp6561 -a(S'drawRectangle/2' -p6562 -S'drawRectangle(${1:This}, ${2:Rect}) $3' -p6563 -tp6564 -a(S'drawRectangle/3' -p6565 -S'drawRectangle(${1:This}, ${2:Pt}, ${3:Sz}) $4' -p6566 -tp6567 -a(S'drawRotatedText/4' -p6568 -S'drawRotatedText(${1:This}, ${2:Text}, ${3:Pt}, ${4:Angle}) $5' -p6569 -tp6570 -a(S'drawRoundedRectangle/3' -p6571 -S'drawRoundedRectangle(${1:This}, ${2:R}, ${3:Radius}) $4' -p6572 -tp6573 -a(S'drawRoundedRectangle/4' -p6574 -S'drawRoundedRectangle(${1:This}, ${2:Pt}, ${3:Sz}, ${4:Radius}) $5' -p6575 -tp6576 -a(S'drawText/3' -p6577 -S'drawText(${1:This}, ${2:Text}, ${3:Pt}) $4' -p6578 -tp6579 -a(S'endDoc/1' -p6580 -S'endDoc(${1:This}) $2' -p6581 -tp6582 -a(S'endPage/1' -p6583 -S'endPage(${1:This}) $2' -p6584 -tp6585 -a(S'floodFill/3' -p6586 -S'floodFill(${1:This}, ${2:Pt}, ${3:Col}) $4' -p6587 -tp6588 -a(S'floodFill/4' -p6589 -S'floodFill(${1:This}, ${2:Pt}, ${3:Col}, ${4:Options}) $5' -p6590 -tp6591 -a(S'getBackground/1' -p6592 -S'getBackground(${1:This}) $2' -p6593 -tp6594 -a(S'getBackgroundMode/1' -p6595 -S'getBackgroundMode(${1:This}) $2' -p6596 -tp6597 -a(S'getBrush/1' -p6598 -S'getBrush(${1:This}) $2' -p6599 -tp6600 -a(S'getCharHeight/1' -p6601 -S'getCharHeight(${1:This}) $2' -p6602 -tp6603 -a(S'getCharWidth/1' -p6604 -S'getCharWidth(${1:This}) $2' -p6605 -tp6606 -a(S'getClippingBox/1' -p6607 -S'getClippingBox(${1:This}) $2' -p6608 -tp6609 -a(S'getFont/1' -p6610 -S'getFont(${1:This}) $2' -p6611 -tp6612 -a(S'getLayoutDirection/1' -p6613 -S'getLayoutDirection(${1:This}) $2' -p6614 -tp6615 -a(S'getLogicalFunction/1' -p6616 -S'getLogicalFunction(${1:This}) $2' -p6617 -tp6618 -a(S'getMapMode/1' -p6619 -S'getMapMode(${1:This}) $2' -p6620 -tp6621 -a(S'getMultiLineTextExtent/2' -p6622 -S'getMultiLineTextExtent(${1:This}, ${2:String}) $3' -p6623 -tp6624 -a(S'getMultiLineTextExtent/3' -p6625 -S'getMultiLineTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p6626 -tp6627 -a(S'getPPI/1' -p6628 -S'getPPI(${1:This}) $2' -p6629 -tp6630 -a(S'getPartialTextExtents/2' -p6631 -S'getPartialTextExtents(${1:This}, ${2:Text}) $3' -p6632 -tp6633 -a(S'getPen/1' -p6634 -S'getPen(${1:This}) $2' -p6635 -tp6636 -a(S'getPixel/2' -p6637 -S'getPixel(${1:This}, ${2:Pt}) $3' -p6638 -tp6639 -a(S'getSize/1' -p6640 -S'getSize(${1:This}) $2' -p6641 -tp6642 -a(S'getSizeMM/1' -p6643 -S'getSizeMM(${1:This}) $2' -p6644 -tp6645 -a(S'getTextBackground/1' -p6646 -S'getTextBackground(${1:This}) $2' -p6647 -tp6648 -a(S'getTextExtent/2' -p6649 -S'getTextExtent(${1:This}, ${2:String}) $3' -p6650 -tp6651 -a(S'getTextExtent/3' -p6652 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p6653 -tp6654 -a(S'getTextForeground/1' -p6655 -S'getTextForeground(${1:This}) $2' -p6656 -tp6657 -a(S'getUserScale/1' -p6658 -S'getUserScale(${1:This}) $2' -p6659 -tp6660 -a(S'gradientFillConcentric/4' -p6661 -S'gradientFillConcentric(${1:This}, ${2:Rect}, ${3:InitialColour}, ${4:DestColour}) $5' -p6662 -tp6663 -a(S'gradientFillConcentric/5' -p6664 -S'gradientFillConcentric(${1:This}, ${2:Rect}, ${3:InitialColour}, ${4:DestColour}, ${5:CircleCenter}) $6' -p6665 -tp6666 -a(S'gradientFillLinear/4' -p6667 -S'gradientFillLinear(${1:This}, ${2:Rect}, ${3:InitialColour}, ${4:DestColour}) $5' -p6668 -tp6669 -a(S'gradientFillLinear/5' -p6670 -S'gradientFillLinear(${1:This}, ${2:Rect}, ${3:InitialColour}, ${4:DestColour}, ${5:Options}) $6' -p6671 -tp6672 -a(S'isOk/1' -p6673 -S'isOk(${1:This}) $2' -p6674 -tp6675 -a(S'logicalToDeviceX/2' -p6676 -S'logicalToDeviceX(${1:This}, ${2:X}) $3' -p6677 -tp6678 -a(S'logicalToDeviceXRel/2' -p6679 -S'logicalToDeviceXRel(${1:This}, ${2:X}) $3' -p6680 -tp6681 -a(S'logicalToDeviceY/2' -p6682 -S'logicalToDeviceY(${1:This}, ${2:Y}) $3' -p6683 -tp6684 -a(S'logicalToDeviceYRel/2' -p6685 -S'logicalToDeviceYRel(${1:This}, ${2:Y}) $3' -p6686 -tp6687 -a(S'maxX/1' -p6688 -S'maxX(${1:This}) $2' -p6689 -tp6690 -a(S'maxY/1' -p6691 -S'maxY(${1:This}) $2' -p6692 -tp6693 -a(S'minX/1' -p6694 -S'minX(${1:This}) $2' -p6695 -tp6696 -a(S'minY/1' -p6697 -S'minY(${1:This}) $2' -p6698 -tp6699 -a(S'new/0' -p6700 -S'new() $1' -p6701 -tp6702 -a(S'new/1' -p6703 -S'new(${1:Win}) $2' -p6704 -tp6705 -a(S'parent_class/1' -p6706 -S'parent_class(${1:Param1}) $2' -p6707 -tp6708 -a(S'resetBoundingBox/1' -p6709 -S'resetBoundingBox(${1:This}) $2' -p6710 -tp6711 -a(S'setAxisOrientation/3' -p6712 -S'setAxisOrientation(${1:This}, ${2:XLeftRight}, ${3:YBottomUp}) $4' -p6713 -tp6714 -a(S'setBackground/2' -p6715 -S'setBackground(${1:This}, ${2:Brush}) $3' -p6716 -tp6717 -a(S'setBackgroundMode/2' -p6718 -S'setBackgroundMode(${1:This}, ${2:Mode}) $3' -p6719 -tp6720 -a(S'setBrush/2' -p6721 -S'setBrush(${1:This}, ${2:Brush}) $3' -p6722 -tp6723 -a(S'setClippingRegion/2' -p6724 -S'setClippingRegion(${1:This}, ${2:Region}) $3' -p6725 -tp6726 -a(S'setClippingRegion/3' -p6727 -S'setClippingRegion(${1:This}, ${2:Pt}, ${3:Sz}) $4' -p6728 -tp6729 -a(S'setDeviceOrigin/3' -p6730 -S'setDeviceOrigin(${1:This}, ${2:X}, ${3:Y}) $4' -p6731 -tp6732 -a(S'setFont/2' -p6733 -S'setFont(${1:This}, ${2:Font}) $3' -p6734 -tp6735 -a(S'setLayoutDirection/2' -p6736 -S'setLayoutDirection(${1:This}, ${2:Dir}) $3' -p6737 -tp6738 -a(S'setLogicalFunction/2' -p6739 -S'setLogicalFunction(${1:This}, ${2:Function}) $3' -p6740 -tp6741 -a(S'setMapMode/2' -p6742 -S'setMapMode(${1:This}, ${2:Mode}) $3' -p6743 -tp6744 -a(S'setPalette/2' -p6745 -S'setPalette(${1:This}, ${2:Palette}) $3' -p6746 -tp6747 -a(S'setPen/2' -p6748 -S'setPen(${1:This}, ${2:Pen}) $3' -p6749 -tp6750 -a(S'setTextBackground/2' -p6751 -S'setTextBackground(${1:This}, ${2:Colour}) $3' -p6752 -tp6753 -a(S'setTextForeground/2' -p6754 -S'setTextForeground(${1:This}, ${2:Colour}) $3' -p6755 -tp6756 -a(S'setUserScale/3' -p6757 -S'setUserScale(${1:This}, ${2:X}, ${3:Y}) $4' -p6758 -tp6759 -a(S'startDoc/2' -p6760 -S'startDoc(${1:This}, ${2:Message}) $3' -p6761 -tp6762 -a(S'startPage/1' -p6763 -S'startPage(${1:This}) $2' -p6764 -tp6765 -asS'CosEventChannelAdmin_ConsumerAdmin' -p6766 -(lp6767 -(S'code_change/3' -p6768 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p6769 -tp6770 -a(S'handle_call/3' -p6771 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p6772 -tp6773 -a(S'handle_cast/2' -p6774 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p6775 -tp6776 -a(S'handle_info/2' -p6777 -S'handle_info(${1:Param1}, ${2:State}) $3' -p6778 -tp6779 -a(S'init/1' -p6780 -S'init(${1:Env}) $2' -p6781 -tp6782 -a(S'obtain_pull_supplier/1' -p6783 -S'obtain_pull_supplier(${1:OE_THIS}) $2' -p6784 -tp6785 -a(S'obtain_pull_supplier/2' -p6786 -S'obtain_pull_supplier(${1:OE_THIS}, ${2:OE_Options}) $3' -p6787 -tp6788 -a(S'obtain_push_supplier/1' -p6789 -S'obtain_push_supplier(${1:OE_THIS}) $2' -p6790 -tp6791 -a(S'obtain_push_supplier/2' -p6792 -S'obtain_push_supplier(${1:OE_THIS}, ${2:OE_Options}) $3' -p6793 -tp6794 -a(S'oe_create/0' -p6795 -S'oe_create() $1' -p6796 -tp6797 -a(S'oe_create/1' -p6798 -S'oe_create(${1:Env}) $2' -p6799 -tp6800 -a(S'oe_create/2' -p6801 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p6802 -tp6803 -a(S'oe_create_link/0' -p6804 -S'oe_create_link() $1' -p6805 -tp6806 -a(S'oe_create_link/1' -p6807 -S'oe_create_link(${1:Env}) $2' -p6808 -tp6809 -a(S'oe_create_link/2' -p6810 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p6811 -tp6812 -a(S'oe_get_interface/0' -p6813 -S'oe_get_interface() $1' -p6814 -tp6815 -a(S'oe_is_a/1' -p6816 -S'oe_is_a(${1:Param1}) $2' -p6817 -tp6818 -a(S'oe_tc/1' -p6819 -S'oe_tc(${1:Param1}) $2' -p6820 -tp6821 -a(S'terminate/2' -p6822 -S'terminate(${1:Reason}, ${2:State}) $3' -p6823 -tp6824 -a(S'typeID/0' -p6825 -S'typeID() $1' -p6826 -tp6827 -asS'dialyzer_plt' -p6828 -(lp6829 -(S'all_modules/1' -p6830 -S'all_modules(${1:Plt}) $2' -p6831 -tp6832 -a(S'check_plt/3' -p6833 -S'check_plt(${1:FileName}, ${2:RemoveFiles}, ${3:AddFiles}) $4' -p6834 -tp6835 -a(S'compute_md5_from_files/1' -p6836 -S'compute_md5_from_files(${1:Files}) $2' -p6837 -tp6838 -a(S'contains_mfa/2' -p6839 -S'contains_mfa(${1:Param1}, ${2:MFA}) $3' -p6840 -tp6841 -a(S'delete_list/2' -p6842 -S'delete_list(${1:Plt}, ${2:Param2}) $3' -p6843 -tp6844 -a(S'delete_module/2' -p6845 -S'delete_module(${1:Plt}, ${2:Mod}) $3' -p6846 -tp6847 -a(S'from_file/1' -p6848 -S'from_file(${1:FileName}) $2' -p6849 -tp6850 -a(S'get_default_plt/0' -p6851 -S'get_default_plt() $1' -p6852 -tp6853 -a(S'get_exported_types/1' -p6854 -S'get_exported_types(${1:Param1}) $2' -p6855 -tp6856 -a(S'get_specs/1' -p6857 -S'get_specs(${1:Param1}) $2' -p6858 -tp6859 -a(S'get_specs/4' -p6860 -S'get_specs(${1:Param1}, ${2:M}, ${3:F}, ${4:A}) $5' -p6861 -tp6862 -a(S'get_types/1' -p6863 -S'get_types(${1:Param1}) $2' -p6864 -tp6865 -a(S'included_files/1' -p6866 -S'included_files(${1:FileName}) $2' -p6867 -tp6868 -a(S'insert_callbacks/2' -p6869 -S'insert_callbacks(${1:Plt}, ${2:Codeserver}) $3' -p6870 -tp6871 -a(S'insert_contract_list/2' -p6872 -S'insert_contract_list(${1:PLT}, ${2:List}) $3' -p6873 -tp6874 -a(S'insert_exported_types/2' -p6875 -S'insert_exported_types(${1:PLT}, ${2:Set}) $3' -p6876 -tp6877 -a(S'insert_list/2' -p6878 -S'insert_list(${1:PLT}, ${2:List}) $3' -p6879 -tp6880 -a(S'insert_types/2' -p6881 -S'insert_types(${1:PLT}, ${2:Rec}) $3' -p6882 -tp6883 -a(S'lookup/2' -p6884 -S'lookup(${1:Plt}, ${2:Label}) $3' -p6885 -tp6886 -a(S'lookup_callbacks/2' -p6887 -S'lookup_callbacks(${1:Param1}, ${2:Mod}) $3' -p6888 -tp6889 -a(S'lookup_contract/2' -p6890 -S'lookup_contract(${1:Param1}, ${2:Param2}) $3' -p6891 -tp6892 -a(S'lookup_module/2' -p6893 -S'lookup_module(${1:Plt}, ${2:M}) $3' -p6894 -tp6895 -a(S'merge_plts/1' -p6896 -S'merge_plts(${1:List}) $2' -p6897 -tp6898 -a(S'merge_plts_or_report_conflicts/2' -p6899 -S'merge_plts_or_report_conflicts(${1:PltFiles}, ${2:Plts}) $3' -p6900 -tp6901 -a(S'new/0' -p6902 -S'new() $1' -p6903 -tp6904 -a(S'plt_and_info_from_file/1' -p6905 -S'plt_and_info_from_file(${1:FileName}) $2' -p6906 -tp6907 -a(S'pp_mod/1' -p6908 -S'pp_mod(${1:Mod}) $2' -p6909 -tp6910 -a(S'pp_non_returning/0' -p6911 -S'pp_non_returning() $1' -p6912 -tp6913 -a(S'to_file/4' -p6914 -S'to_file(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p6915 -tp6916 -asS'CosNotifyComm_InvalidEventType' -p6917 -(lp6918 -(S'id/0' -p6919 -S'id() $1' -p6920 -tp6921 -a(S'name/0' -p6922 -S'name() $1' -p6923 -tp6924 -a(S'tc/0' -p6925 -S'tc() $1' -p6926 -tp6927 -asS'oe_CosEventComm_Event' -p6928 -(lp6929 -(S'code_change/3' -p6930 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p6931 -tp6932 -a(S'handle_call/3' -p6933 -S'handle_call(${1:Param1}, ${2:OE_From}, ${3:OE_State}) $4' -p6934 -tp6935 -a(S'handle_cast/2' -p6936 -S'handle_cast(${1:Param1}, ${2:OE_State}) $3' -p6937 -tp6938 -a(S'handle_info/2' -p6939 -S'handle_info(${1:Info}, ${2:State}) $3' -p6940 -tp6941 -a(S'init/1' -p6942 -S'init(${1:Env}) $2' -p6943 -tp6944 -a(S'oe_create/0' -p6945 -S'oe_create() $1' -p6946 -tp6947 -a(S'oe_create/1' -p6948 -S'oe_create(${1:Env}) $2' -p6949 -tp6950 -a(S'oe_create/2' -p6951 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p6952 -tp6953 -a(S'oe_create_link/0' -p6954 -S'oe_create_link() $1' -p6955 -tp6956 -a(S'oe_create_link/1' -p6957 -S'oe_create_link(${1:Env}) $2' -p6958 -tp6959 -a(S'oe_create_link/2' -p6960 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p6961 -tp6962 -a(S'oe_get_interface/0' -p6963 -S'oe_get_interface() $1' -p6964 -tp6965 -a(S'oe_is_a/1' -p6966 -S'oe_is_a(${1:Param1}) $2' -p6967 -tp6968 -a(S'oe_tc/1' -p6969 -S'oe_tc(${1:Param1}) $2' -p6970 -tp6971 -a(S'send/2' -p6972 -S'send(${1:OE_THIS}, ${2:Event}) $3' -p6973 -tp6974 -a(S'send/3' -p6975 -S'send(${1:OE_THIS}, ${2:OE_Options}, ${3:Event}) $4' -p6976 -tp6977 -a(S'send_sync/2' -p6978 -S'send_sync(${1:OE_THIS}, ${2:Event}) $3' -p6979 -tp6980 -a(S'send_sync/3' -p6981 -S'send_sync(${1:OE_THIS}, ${2:OE_Options}, ${3:Event}) $4' -p6982 -tp6983 -a(S'terminate/2' -p6984 -S'terminate(${1:Reason}, ${2:State}) $3' -p6985 -tp6986 -a(S'typeID/0' -p6987 -S'typeID() $1' -p6988 -tp6989 -asS'disk_log_server' -p6990 -(lp6991 -(S'accessible_logs/0' -p6992 -S'accessible_logs() $1' -p6993 -tp6994 -a(S'close/1' -p6995 -S'close(${1:Pid}) $2' -p6996 -tp6997 -a(S'code_change/3' -p6998 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p6999 -tp7000 -a(S'dist_open/1' -p7001 -S'dist_open(${1:A}) $2' -p7002 -tp7003 -a(S'get_local_pid/1' -p7004 -S'get_local_pid(${1:LogName}) $2' -p7005 -tp7006 -a(S'get_log_pids/1' -p7007 -S'get_log_pids(${1:LogName}) $2' -p7008 -tp7009 -a(S'handle_call/3' -p7010 -S'handle_call(${1:Param1}, ${2:From}, ${3:State}) $4' -p7011 -tp7012 -a(S'handle_cast/2' -p7013 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p7014 -tp7015 -a(S'handle_info/2' -p7016 -S'handle_info(${1:Param1}, ${2:State}) $3' -p7017 -tp7018 -a(S'init/1' -p7019 -S'init(${1:Param1}) $2' -p7020 -tp7021 -a(S'open/1' -p7022 -S'open(${1:Other}) $2' -p7023 -tp7024 -a(S'start/0' -p7025 -S'start() $1' -p7026 -tp7027 -a(S'start_link/0' -p7028 -S'start_link() $1' -p7029 -tp7030 -a(S'terminate/2' -p7031 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p7032 -tp7033 -asS'CosTime_TimeUnavailable' -p7034 -(lp7035 -(S'id/0' -p7036 -S'id() $1' -p7037 -tp7038 -a(S'name/0' -p7039 -S'name() $1' -p7040 -tp7041 -a(S'tc/0' -p7042 -S'tc() $1' -p7043 -tp7044 -asS'core_lib' -p7045 -(lp7046 -(S'get_anno/1' -p7047 -S'get_anno(${1:C}) $2' -p7048 -tp7049 -a(S'is_literal/1' -p7050 -S'is_literal(${1:Param1}) $2' -p7051 -tp7052 -a(S'is_literal_list/1' -p7053 -S'is_literal_list(${1:Es}) $2' -p7054 -tp7055 -a(S'is_var_used/2' -p7056 -S'is_var_used(${1:V}, ${2:B}) $3' -p7057 -tp7058 -a(S'literal_value/1' -p7059 -S'literal_value(${1:Param1}) $2' -p7060 -tp7061 -a(S'make_values/1' -p7062 -S'make_values(${1:Es}) $2' -p7063 -tp7064 -a(S'set_anno/2' -p7065 -S'set_anno(${1:C}, ${2:A}) $3' -p7066 -tp7067 -asS'ictype' -p7068 -(lp7069 -(S'fetchTk/3' -p7070 -S'fetchTk(${1:G}, ${2:N}, ${3:X}) $4' -p7071 -tp7072 -a(S'fetchType/1' -p7073 -S'fetchType(${1:Param1}) $2' -p7074 -tp7075 -a(S'isArray/3' -p7076 -S'isArray(${1:Param1}, ${2:Param2}, ${3:T}) $4' -p7077 -tp7078 -a(S'isBasicType/1' -p7079 -S'isBasicType(${1:Type}) $2' -p7080 -tp7081 -a(S'isBasicType/2' -p7082 -S'isBasicType(${1:G}, ${2:Name}) $3' -p7083 -tp7084 -a(S'isBasicType/3' -p7085 -S'isBasicType(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p7086 -tp7087 -a(S'isBasicTypeOrEterm/3' -p7088 -S'isBasicTypeOrEterm(${1:G}, ${2:N}, ${3:S}) $4' -p7089 -tp7090 -a(S'isBoolean/3' -p7091 -S'isBoolean(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p7092 -tp7093 -a(S'isEnum/3' -p7094 -S'isEnum(${1:Param1}, ${2:Param2}, ${3:T}) $4' -p7095 -tp7096 -a(S'isEterm/3' -p7097 -S'isEterm(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p7098 -tp7099 -a(S'isSequence/3' -p7100 -S'isSequence(${1:Param1}, ${2:Param2}, ${3:T}) $4' -p7101 -tp7102 -a(S'isString/3' -p7103 -S'isString(${1:Param1}, ${2:Param2}, ${3:T}) $4' -p7104 -tp7105 -a(S'isStruct/3' -p7106 -S'isStruct(${1:Param1}, ${2:Param2}, ${3:T}) $4' -p7107 -tp7108 -a(S'isUnion/3' -p7109 -S'isUnion(${1:Param1}, ${2:Param2}, ${3:T}) $4' -p7110 -tp7111 -a(S'isWString/3' -p7112 -S'isWString(${1:Param1}, ${2:Param2}, ${3:T}) $4' -p7113 -tp7114 -a(S'maybe_array/5' -p7115 -S'maybe_array(${1:G}, ${2:S}, ${3:N}, ${4:X}, ${5:TK}) $6' -p7116 -tp7117 -a(S'member2type/3' -p7118 -S'member2type(${1:G}, ${2:X}, ${3:I}) $4' -p7119 -tp7120 -a(S'name2type/2' -p7121 -S'name2type(${1:G}, ${2:Name}) $3' -p7122 -tp7123 -a(S'scoped_lookup/4' -p7124 -S'scoped_lookup(${1:G}, ${2:S}, ${3:N}, ${4:X}) $5' -p7125 -tp7126 -a(S'tk/4' -p7127 -S'tk(${1:G}, ${2:S}, ${3:N}, ${4:X}) $5' -p7128 -tp7129 -a(S'to_uppercase/1' -p7130 -S'to_uppercase(${1:Z}) $2' -p7131 -tp7132 -a(S'type_check/2' -p7133 -S'type_check(${1:G}, ${2:Forms}) $3' -p7134 -tp7135 -asS'gen_fsm' -p7136 -(lp7137 -(S'cancel_timer/1' -p7138 -S'cancel_timer(${1:Ref}) $2' -p7139 -tp7140 -a(S'enter_loop/4' -p7141 -S'enter_loop(${1:Mod}, ${2:Options}, ${3:StateName}, ${4:StateData}) $5' -p7142 -tp7143 -a(S'enter_loop/5' -p7144 -S'enter_loop(${1:Mod}, ${2:Options}, ${3:StateName}, ${4:StateData}, ${5:ServerName}) $6' -p7145 -tp7146 -a(S'enter_loop/6' -p7147 -S'enter_loop(${1:Mod}, ${2:Options}, ${3:StateName}, ${4:StateData}, ${5:ServerName}, ${6:Timeout}) $7' -p7148 -tp7149 -a(S'format_status/2' -p7150 -S'format_status(${1:Opt}, ${2:StatusData}) $3' -p7151 -tp7152 -a(S'init_it/6' -p7153 -S'init_it(${1:Starter}, ${2:Parent}, ${3:Name}, ${4:Mod}, ${5:Args}, ${6:Options}) $7' -p7154 -tp7155 -a(S'reply/2' -p7156 -S'reply(${1:Param1}, ${2:Reply}) $3' -p7157 -tp7158 -a(S'send_all_state_event/2' -p7159 -S'send_all_state_event(${1:Name}, ${2:Event}) $3' -p7160 -tp7161 -a(S'send_event/2' -p7162 -S'send_event(${1:Name}, ${2:Event}) $3' -p7163 -tp7164 -a(S'send_event_after/2' -p7165 -S'send_event_after(${1:Time}, ${2:Event}) $3' -p7166 -tp7167 -a(S'start/3' -p7168 -S'start(${1:Mod}, ${2:Args}, ${3:Options}) $4' -p7169 -tp7170 -a(S'start/4' -p7171 -S'start(${1:Name}, ${2:Mod}, ${3:Args}, ${4:Options}) $5' -p7172 -tp7173 -a(S'start_link/3' -p7174 -S'start_link(${1:Mod}, ${2:Args}, ${3:Options}) $4' -p7175 -tp7176 -a(S'start_link/4' -p7177 -S'start_link(${1:Name}, ${2:Mod}, ${3:Args}, ${4:Options}) $5' -p7178 -tp7179 -a(S'start_timer/2' -p7180 -S'start_timer(${1:Time}, ${2:Msg}) $3' -p7181 -tp7182 -a(S'sync_send_all_state_event/2' -p7183 -S'sync_send_all_state_event(${1:Name}, ${2:Event}) $3' -p7184 -tp7185 -a(S'sync_send_all_state_event/3' -p7186 -S'sync_send_all_state_event(${1:Name}, ${2:Event}, ${3:Timeout}) $4' -p7187 -tp7188 -a(S'sync_send_event/2' -p7189 -S'sync_send_event(${1:Name}, ${2:Event}) $3' -p7190 -tp7191 -a(S'sync_send_event/3' -p7192 -S'sync_send_event(${1:Name}, ${2:Event}, ${3:Timeout}) $4' -p7193 -tp7194 -a(S'system_code_change/4' -p7195 -S'system_code_change() $1' -p7196 -tp7197 -a(S'system_continue/3' -p7198 -S'system_continue(${1:Parent}, ${2:Debug}, ${3:Param3}) $4' -p7199 -tp7200 -a(S'system_terminate/4' -p7201 -S'system_terminate(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p7202 -tp7203 -a(S'wake_hib/6' -p7204 -S'wake_hib(${1:Parent}, ${2:Name}, ${3:StateName}, ${4:StateData}, ${5:Mod}, ${6:Debug}) $7' -p7205 -tp7206 -asS'wxDirPickerCtrl' -p7207 -(lp7208 -(S'cacheBestSize/2' -p7209 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p7210 -tp7211 -a(S'captureMouse/1' -p7212 -S'captureMouse(${1:This}) $2' -p7213 -tp7214 -a(S'center/1' -p7215 -S'center(${1:This}) $2' -p7216 -tp7217 -a(S'center/2' -p7218 -S'center(${1:This}, ${2:Options}) $3' -p7219 -tp7220 -a(S'centerOnParent/1' -p7221 -S'centerOnParent(${1:This}) $2' -p7222 -tp7223 -a(S'centerOnParent/2' -p7224 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p7225 -tp7226 -a(S'centre/1' -p7227 -S'centre(${1:This}) $2' -p7228 -tp7229 -a(S'centre/2' -p7230 -S'centre(${1:This}, ${2:Options}) $3' -p7231 -tp7232 -a(S'centreOnParent/1' -p7233 -S'centreOnParent(${1:This}) $2' -p7234 -tp7235 -a(S'centreOnParent/2' -p7236 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p7237 -tp7238 -a(S'clearBackground/1' -p7239 -S'clearBackground(${1:This}) $2' -p7240 -tp7241 -a(S'clientToScreen/2' -p7242 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p7243 -tp7244 -a(S'clientToScreen/3' -p7245 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p7246 -tp7247 -a(S'close/1' -p7248 -S'close(${1:This}) $2' -p7249 -tp7250 -a(S'close/2' -p7251 -S'close(${1:This}, ${2:Options}) $3' -p7252 -tp7253 -a(S'connect/2' -p7254 -S'connect(${1:This}, ${2:EventType}) $3' -p7255 -tp7256 -a(S'connect/3' -p7257 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p7258 -tp7259 -a(S'convertDialogToPixels/2' -p7260 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p7261 -tp7262 -a(S'convertPixelsToDialog/2' -p7263 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p7264 -tp7265 -a(S'create/3' -p7266 -S'create(${1:This}, ${2:Parent}, ${3:Id}) $4' -p7267 -tp7268 -a(S'create/4' -p7269 -S'create(${1:This}, ${2:Parent}, ${3:Id}, ${4:Param4}) $5' -p7270 -tp7271 -a(S'destroy/1' -p7272 -S'destroy(${1:This}) $2' -p7273 -tp7274 -a(S'destroyChildren/1' -p7275 -S'destroyChildren(${1:This}) $2' -p7276 -tp7277 -a(S'disable/1' -p7278 -S'disable(${1:This}) $2' -p7279 -tp7280 -a(S'disconnect/1' -p7281 -S'disconnect(${1:This}) $2' -p7282 -tp7283 -a(S'disconnect/2' -p7284 -S'disconnect(${1:This}, ${2:EventType}) $3' -p7285 -tp7286 -a(S'disconnect/3' -p7287 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p7288 -tp7289 -a(S'enable/1' -p7290 -S'enable(${1:This}) $2' -p7291 -tp7292 -a(S'enable/2' -p7293 -S'enable(${1:This}, ${2:Options}) $3' -p7294 -tp7295 -a(S'findWindow/2' -p7296 -S'findWindow(${1:This}, ${2:Winid}) $3' -p7297 -tp7298 -a(S'fit/1' -p7299 -S'fit(${1:This}) $2' -p7300 -tp7301 -a(S'fitInside/1' -p7302 -S'fitInside(${1:This}) $2' -p7303 -tp7304 -a(S'freeze/1' -p7305 -S'freeze(${1:This}) $2' -p7306 -tp7307 -a(S'getAcceleratorTable/1' -p7308 -S'getAcceleratorTable(${1:This}) $2' -p7309 -tp7310 -a(S'getBackgroundColour/1' -p7311 -S'getBackgroundColour(${1:This}) $2' -p7312 -tp7313 -a(S'getBackgroundStyle/1' -p7314 -S'getBackgroundStyle(${1:This}) $2' -p7315 -tp7316 -a(S'getBestSize/1' -p7317 -S'getBestSize(${1:This}) $2' -p7318 -tp7319 -a(S'getCaret/1' -p7320 -S'getCaret(${1:This}) $2' -p7321 -tp7322 -a(S'getCharHeight/1' -p7323 -S'getCharHeight(${1:This}) $2' -p7324 -tp7325 -a(S'getCharWidth/1' -p7326 -S'getCharWidth(${1:This}) $2' -p7327 -tp7328 -a(S'getChildren/1' -p7329 -S'getChildren(${1:This}) $2' -p7330 -tp7331 -a(S'getClientSize/1' -p7332 -S'getClientSize(${1:This}) $2' -p7333 -tp7334 -a(S'getContainingSizer/1' -p7335 -S'getContainingSizer(${1:This}) $2' -p7336 -tp7337 -a(S'getCursor/1' -p7338 -S'getCursor(${1:This}) $2' -p7339 -tp7340 -a(S'getDropTarget/1' -p7341 -S'getDropTarget(${1:This}) $2' -p7342 -tp7343 -a(S'getEventHandler/1' -p7344 -S'getEventHandler(${1:This}) $2' -p7345 -tp7346 -a(S'getExtraStyle/1' -p7347 -S'getExtraStyle(${1:This}) $2' -p7348 -tp7349 -a(S'getFont/1' -p7350 -S'getFont(${1:This}) $2' -p7351 -tp7352 -a(S'getForegroundColour/1' -p7353 -S'getForegroundColour(${1:This}) $2' -p7354 -tp7355 -a(S'getGrandParent/1' -p7356 -S'getGrandParent(${1:This}) $2' -p7357 -tp7358 -a(S'getHandle/1' -p7359 -S'getHandle(${1:This}) $2' -p7360 -tp7361 -a(S'getHelpText/1' -p7362 -S'getHelpText(${1:This}) $2' -p7363 -tp7364 -a(S'getId/1' -p7365 -S'getId(${1:This}) $2' -p7366 -tp7367 -a(S'getInternalMargin/1' -p7368 -S'getInternalMargin(${1:This}) $2' -p7369 -tp7370 -a(S'getLabel/1' -p7371 -S'getLabel(${1:This}) $2' -p7372 -tp7373 -a(S'getMaxSize/1' -p7374 -S'getMaxSize(${1:This}) $2' -p7375 -tp7376 -a(S'getMinSize/1' -p7377 -S'getMinSize(${1:This}) $2' -p7378 -tp7379 -a(S'getName/1' -p7380 -S'getName(${1:This}) $2' -p7381 -tp7382 -a(S'getParent/1' -p7383 -S'getParent(${1:This}) $2' -p7384 -tp7385 -a(S'getPath/1' -p7386 -S'getPath(${1:This}) $2' -p7387 -tp7388 -a(S'getPickerCtrlProportion/1' -p7389 -S'getPickerCtrlProportion(${1:This}) $2' -p7390 -tp7391 -a(S'getPosition/1' -p7392 -S'getPosition(${1:This}) $2' -p7393 -tp7394 -a(S'getRect/1' -p7395 -S'getRect(${1:This}) $2' -p7396 -tp7397 -a(S'getScreenPosition/1' -p7398 -S'getScreenPosition(${1:This}) $2' -p7399 -tp7400 -a(S'getScreenRect/1' -p7401 -S'getScreenRect(${1:This}) $2' -p7402 -tp7403 -a(S'getScrollPos/2' -p7404 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p7405 -tp7406 -a(S'getScrollRange/2' -p7407 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p7408 -tp7409 -a(S'getScrollThumb/2' -p7410 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p7411 -tp7412 -a(S'getSize/1' -p7413 -S'getSize(${1:This}) $2' -p7414 -tp7415 -a(S'getSizer/1' -p7416 -S'getSizer(${1:This}) $2' -p7417 -tp7418 -a(S'getTextCtrl/1' -p7419 -S'getTextCtrl(${1:This}) $2' -p7420 -tp7421 -a(S'getTextCtrlProportion/1' -p7422 -S'getTextCtrlProportion(${1:This}) $2' -p7423 -tp7424 -a(S'getTextExtent/2' -p7425 -S'getTextExtent(${1:This}, ${2:String}) $3' -p7426 -tp7427 -a(S'getTextExtent/3' -p7428 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p7429 -tp7430 -a(S'getToolTip/1' -p7431 -S'getToolTip(${1:This}) $2' -p7432 -tp7433 -a(S'getUpdateRegion/1' -p7434 -S'getUpdateRegion(${1:This}) $2' -p7435 -tp7436 -a(S'getVirtualSize/1' -p7437 -S'getVirtualSize(${1:This}) $2' -p7438 -tp7439 -a(S'getWindowStyleFlag/1' -p7440 -S'getWindowStyleFlag(${1:This}) $2' -p7441 -tp7442 -a(S'getWindowVariant/1' -p7443 -S'getWindowVariant(${1:This}) $2' -p7444 -tp7445 -a(S'hasCapture/1' -p7446 -S'hasCapture(${1:This}) $2' -p7447 -tp7448 -a(S'hasScrollbar/2' -p7449 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p7450 -tp7451 -a(S'hasTextCtrl/1' -p7452 -S'hasTextCtrl(${1:This}) $2' -p7453 -tp7454 -a(S'hasTransparentBackground/1' -p7455 -S'hasTransparentBackground(${1:This}) $2' -p7456 -tp7457 -a(S'hide/1' -p7458 -S'hide(${1:This}) $2' -p7459 -tp7460 -a(S'inheritAttributes/1' -p7461 -S'inheritAttributes(${1:This}) $2' -p7462 -tp7463 -a(S'initDialog/1' -p7464 -S'initDialog(${1:This}) $2' -p7465 -tp7466 -a(S'invalidateBestSize/1' -p7467 -S'invalidateBestSize(${1:This}) $2' -p7468 -tp7469 -a(S'isEnabled/1' -p7470 -S'isEnabled(${1:This}) $2' -p7471 -tp7472 -a(S'isExposed/2' -p7473 -S'isExposed(${1:This}, ${2:Pt}) $3' -p7474 -tp7475 -a(S'isExposed/3' -p7476 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p7477 -tp7478 -a(S'isExposed/5' -p7479 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p7480 -tp7481 -a(S'isPickerCtrlGrowable/1' -p7482 -S'isPickerCtrlGrowable(${1:This}) $2' -p7483 -tp7484 -a(S'isRetained/1' -p7485 -S'isRetained(${1:This}) $2' -p7486 -tp7487 -a(S'isShown/1' -p7488 -S'isShown(${1:This}) $2' -p7489 -tp7490 -a(S'isTextCtrlGrowable/1' -p7491 -S'isTextCtrlGrowable(${1:This}) $2' -p7492 -tp7493 -a(S'isTopLevel/1' -p7494 -S'isTopLevel(${1:This}) $2' -p7495 -tp7496 -a(S'layout/1' -p7497 -S'layout(${1:This}) $2' -p7498 -tp7499 -a(S'lineDown/1' -p7500 -S'lineDown(${1:This}) $2' -p7501 -tp7502 -a(S'lineUp/1' -p7503 -S'lineUp(${1:This}) $2' -p7504 -tp7505 -a(S'lower/1' -p7506 -S'lower(${1:This}) $2' -p7507 -tp7508 -a(S'makeModal/1' -p7509 -S'makeModal(${1:This}) $2' -p7510 -tp7511 -a(S'makeModal/2' -p7512 -S'makeModal(${1:This}, ${2:Options}) $3' -p7513 -tp7514 -a(S'move/2' -p7515 -S'move(${1:This}, ${2:Pt}) $3' -p7516 -tp7517 -a(S'move/3' -p7518 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p7519 -tp7520 -a(S'move/4' -p7521 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p7522 -tp7523 -a(S'moveAfterInTabOrder/2' -p7524 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p7525 -tp7526 -a(S'moveBeforeInTabOrder/2' -p7527 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p7528 -tp7529 -a(S'navigate/1' -p7530 -S'navigate(${1:This}) $2' -p7531 -tp7532 -a(S'navigate/2' -p7533 -S'navigate(${1:This}, ${2:Options}) $3' -p7534 -tp7535 -a(S'new/0' -p7536 -S'new() $1' -p7537 -tp7538 -a(S'new/2' -p7539 -S'new(${1:Parent}, ${2:Id}) $3' -p7540 -tp7541 -a(S'new/3' -p7542 -S'new(${1:Parent}, ${2:Id}, ${3:Param3}) $4' -p7543 -tp7544 -a(S'pageDown/1' -p7545 -S'pageDown(${1:This}) $2' -p7546 -tp7547 -a(S'pageUp/1' -p7548 -S'pageUp(${1:This}) $2' -p7549 -tp7550 -a(S'parent_class/1' -p7551 -S'parent_class(${1:Param1}) $2' -p7552 -tp7553 -a(S'popEventHandler/1' -p7554 -S'popEventHandler(${1:This}) $2' -p7555 -tp7556 -a(S'popEventHandler/2' -p7557 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p7558 -tp7559 -a(S'popupMenu/2' -p7560 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p7561 -tp7562 -a(S'popupMenu/3' -p7563 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p7564 -tp7565 -a(S'popupMenu/4' -p7566 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p7567 -tp7568 -a(S'raise/1' -p7569 -S'raise(${1:This}) $2' -p7570 -tp7571 -a(S'refresh/1' -p7572 -S'refresh(${1:This}) $2' -p7573 -tp7574 -a(S'refresh/2' -p7575 -S'refresh(${1:This}, ${2:Options}) $3' -p7576 -tp7577 -a(S'refreshRect/2' -p7578 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p7579 -tp7580 -a(S'refreshRect/3' -p7581 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p7582 -tp7583 -a(S'releaseMouse/1' -p7584 -S'releaseMouse(${1:This}) $2' -p7585 -tp7586 -a(S'removeChild/2' -p7587 -S'removeChild(${1:This}, ${2:Child}) $3' -p7588 -tp7589 -a(S'reparent/2' -p7590 -S'reparent(${1:This}, ${2:NewParent}) $3' -p7591 -tp7592 -a(S'screenToClient/1' -p7593 -S'screenToClient(${1:This}) $2' -p7594 -tp7595 -a(S'screenToClient/2' -p7596 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p7597 -tp7598 -a(S'scrollLines/2' -p7599 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p7600 -tp7601 -a(S'scrollPages/2' -p7602 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p7603 -tp7604 -a(S'scrollWindow/3' -p7605 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p7606 -tp7607 -a(S'scrollWindow/4' -p7608 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p7609 -tp7610 -a(S'setAcceleratorTable/2' -p7611 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p7612 -tp7613 -a(S'setAutoLayout/2' -p7614 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p7615 -tp7616 -a(S'setBackgroundColour/2' -p7617 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p7618 -tp7619 -a(S'setBackgroundStyle/2' -p7620 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p7621 -tp7622 -a(S'setCaret/2' -p7623 -S'setCaret(${1:This}, ${2:Caret}) $3' -p7624 -tp7625 -a(S'setClientSize/2' -p7626 -S'setClientSize(${1:This}, ${2:Size}) $3' -p7627 -tp7628 -a(S'setClientSize/3' -p7629 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p7630 -tp7631 -a(S'setContainingSizer/2' -p7632 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p7633 -tp7634 -a(S'setCursor/2' -p7635 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p7636 -tp7637 -a(S'setDropTarget/2' -p7638 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p7639 -tp7640 -a(S'setExtraStyle/2' -p7641 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p7642 -tp7643 -a(S'setFocus/1' -p7644 -S'setFocus(${1:This}) $2' -p7645 -tp7646 -a(S'setFocusFromKbd/1' -p7647 -S'setFocusFromKbd(${1:This}) $2' -p7648 -tp7649 -a(S'setFont/2' -p7650 -S'setFont(${1:This}, ${2:Font}) $3' -p7651 -tp7652 -a(S'setForegroundColour/2' -p7653 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p7654 -tp7655 -a(S'setHelpText/2' -p7656 -S'setHelpText(${1:This}, ${2:Text}) $3' -p7657 -tp7658 -a(S'setId/2' -p7659 -S'setId(${1:This}, ${2:Winid}) $3' -p7660 -tp7661 -a(S'setInternalMargin/2' -p7662 -S'setInternalMargin(${1:This}, ${2:Newmargin}) $3' -p7663 -tp7664 -a(S'setLabel/2' -p7665 -S'setLabel(${1:This}, ${2:Label}) $3' -p7666 -tp7667 -a(S'setMaxSize/2' -p7668 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p7669 -tp7670 -a(S'setMinSize/2' -p7671 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p7672 -tp7673 -a(S'setName/2' -p7674 -S'setName(${1:This}, ${2:Name}) $3' -p7675 -tp7676 -a(S'setOwnBackgroundColour/2' -p7677 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p7678 -tp7679 -a(S'setOwnFont/2' -p7680 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p7681 -tp7682 -a(S'setOwnForegroundColour/2' -p7683 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p7684 -tp7685 -a(S'setPalette/2' -p7686 -S'setPalette(${1:This}, ${2:Pal}) $3' -p7687 -tp7688 -a(S'setPath/2' -p7689 -S'setPath(${1:This}, ${2:Str}) $3' -p7690 -tp7691 -a(S'setPickerCtrlGrowable/1' -p7692 -S'setPickerCtrlGrowable(${1:This}) $2' -p7693 -tp7694 -a(S'setPickerCtrlGrowable/2' -p7695 -S'setPickerCtrlGrowable(${1:This}, ${2:Options}) $3' -p7696 -tp7697 -a(S'setPickerCtrlProportion/2' -p7698 -S'setPickerCtrlProportion(${1:This}, ${2:Prop}) $3' -p7699 -tp7700 -a(S'setScrollPos/3' -p7701 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p7702 -tp7703 -a(S'setScrollPos/4' -p7704 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p7705 -tp7706 -a(S'setScrollbar/5' -p7707 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p7708 -tp7709 -a(S'setScrollbar/6' -p7710 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p7711 -tp7712 -a(S'setSize/2' -p7713 -S'setSize(${1:This}, ${2:Rect}) $3' -p7714 -tp7715 -a(S'setSize/3' -p7716 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p7717 -tp7718 -a(S'setSize/5' -p7719 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p7720 -tp7721 -a(S'setSize/6' -p7722 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p7723 -tp7724 -a(S'setSizeHints/2' -p7725 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p7726 -tp7727 -a(S'setSizeHints/3' -p7728 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p7729 -tp7730 -a(S'setSizeHints/4' -p7731 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p7732 -tp7733 -a(S'setSizer/2' -p7734 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p7735 -tp7736 -a(S'setSizer/3' -p7737 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p7738 -tp7739 -a(S'setSizerAndFit/2' -p7740 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p7741 -tp7742 -a(S'setSizerAndFit/3' -p7743 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p7744 -tp7745 -a(S'setTextCtrlGrowable/1' -p7746 -S'setTextCtrlGrowable(${1:This}) $2' -p7747 -tp7748 -a(S'setTextCtrlGrowable/2' -p7749 -S'setTextCtrlGrowable(${1:This}, ${2:Options}) $3' -p7750 -tp7751 -a(S'setTextCtrlProportion/2' -p7752 -S'setTextCtrlProportion(${1:This}, ${2:Prop}) $3' -p7753 -tp7754 -a(S'setThemeEnabled/2' -p7755 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p7756 -tp7757 -a(S'setToolTip/2' -p7758 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p7759 -tp7760 -a(S'setVirtualSize/2' -p7761 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p7762 -tp7763 -a(S'setVirtualSize/3' -p7764 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p7765 -tp7766 -a(S'setVirtualSizeHints/2' -p7767 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p7768 -tp7769 -a(S'setVirtualSizeHints/3' -p7770 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p7771 -tp7772 -a(S'setVirtualSizeHints/4' -p7773 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p7774 -tp7775 -a(S'setWindowStyle/2' -p7776 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p7777 -tp7778 -a(S'setWindowStyleFlag/2' -p7779 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p7780 -tp7781 -a(S'setWindowVariant/2' -p7782 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p7783 -tp7784 -a(S'shouldInheritColours/1' -p7785 -S'shouldInheritColours(${1:This}) $2' -p7786 -tp7787 -a(S'show/1' -p7788 -S'show(${1:This}) $2' -p7789 -tp7790 -a(S'show/2' -p7791 -S'show(${1:This}, ${2:Options}) $3' -p7792 -tp7793 -a(S'thaw/1' -p7794 -S'thaw(${1:This}) $2' -p7795 -tp7796 -a(S'transferDataFromWindow/1' -p7797 -S'transferDataFromWindow(${1:This}) $2' -p7798 -tp7799 -a(S'transferDataToWindow/1' -p7800 -S'transferDataToWindow(${1:This}) $2' -p7801 -tp7802 -a(S'update/1' -p7803 -S'update(${1:This}) $2' -p7804 -tp7805 -a(S'updateWindowUI/1' -p7806 -S'updateWindowUI(${1:This}) $2' -p7807 -tp7808 -a(S'updateWindowUI/2' -p7809 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p7810 -tp7811 -a(S'validate/1' -p7812 -S'validate(${1:This}) $2' -p7813 -tp7814 -a(S'warpPointer/3' -p7815 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p7816 -tp7817 -asS'CosFileTransfer_File' -p7818 -(lp7819 -(S"'_get_associated_session'/1" -p7820 -S"'_get_associated_session'(${1:OE_THIS}) $2" -p7821 -tp7822 -a(S"'_get_associated_session'/2" -p7823 -S"'_get_associated_session'(${1:OE_THIS}, ${2:OE_Options}) $3" -p7824 -tp7825 -a(S"'_get_complete_file_name'/1" -p7826 -S"'_get_complete_file_name'(${1:OE_THIS}) $2" -p7827 -tp7828 -a(S"'_get_complete_file_name'/2" -p7829 -S"'_get_complete_file_name'(${1:OE_THIS}, ${2:OE_Options}) $3" -p7830 -tp7831 -a(S"'_get_name'/1" -p7832 -S"'_get_name'(${1:OE_THIS}) $2" -p7833 -tp7834 -a(S"'_get_name'/2" -p7835 -S"'_get_name'(${1:OE_THIS}, ${2:OE_Options}) $3" -p7836 -tp7837 -a(S"'_get_parent'/1" -p7838 -S"'_get_parent'(${1:OE_THIS}) $2" -p7839 -tp7840 -a(S"'_get_parent'/2" -p7841 -S"'_get_parent'(${1:OE_THIS}, ${2:OE_Options}) $3" -p7842 -tp7843 -a(S'code_change/3' -p7844 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p7845 -tp7846 -a(S'define_properties/2' -p7847 -S'define_properties(${1:OE_THIS}, ${2:Nproperties}) $3' -p7848 -tp7849 -a(S'define_properties/3' -p7850 -S'define_properties(${1:OE_THIS}, ${2:OE_Options}, ${3:Nproperties}) $4' -p7851 -tp7852 -a(S'define_properties_with_modes/2' -p7853 -S'define_properties_with_modes(${1:OE_THIS}, ${2:Property_defs}) $3' -p7854 -tp7855 -a(S'define_properties_with_modes/3' -p7856 -S'define_properties_with_modes(${1:OE_THIS}, ${2:OE_Options}, ${3:Property_defs}) $4' -p7857 -tp7858 -a(S'define_property/3' -p7859 -S'define_property(${1:OE_THIS}, ${2:Property_name}, ${3:Property_value}) $4' -p7860 -tp7861 -a(S'define_property/4' -p7862 -S'define_property(${1:OE_THIS}, ${2:OE_Options}, ${3:Property_name}, ${4:Property_value}) $5' -p7863 -tp7864 -a(S'define_property_with_mode/4' -p7865 -S'define_property_with_mode(${1:OE_THIS}, ${2:Property_name}, ${3:Property_value}, ${4:Property_mode}) $5' -p7866 -tp7867 -a(S'define_property_with_mode/5' -p7868 -S'define_property_with_mode(${1:OE_THIS}, ${2:OE_Options}, ${3:Property_name}, ${4:Property_value}, ${5:Property_mode}) $6' -p7869 -tp7870 -a(S'delete_all_properties/1' -p7871 -S'delete_all_properties(${1:OE_THIS}) $2' -p7872 -tp7873 -a(S'delete_all_properties/2' -p7874 -S'delete_all_properties(${1:OE_THIS}, ${2:OE_Options}) $3' -p7875 -tp7876 -a(S'delete_properties/2' -p7877 -S'delete_properties(${1:OE_THIS}, ${2:Property_names}) $3' -p7878 -tp7879 -a(S'delete_properties/3' -p7880 -S'delete_properties(${1:OE_THIS}, ${2:OE_Options}, ${3:Property_names}) $4' -p7881 -tp7882 -a(S'delete_property/2' -p7883 -S'delete_property(${1:OE_THIS}, ${2:Property_name}) $3' -p7884 -tp7885 -a(S'delete_property/3' -p7886 -S'delete_property(${1:OE_THIS}, ${2:OE_Options}, ${3:Property_name}) $4' -p7887 -tp7888 -a(S'get_all_properties/2' -p7889 -S'get_all_properties(${1:OE_THIS}, ${2:How_many}) $3' -p7890 -tp7891 -a(S'get_all_properties/3' -p7892 -S'get_all_properties(${1:OE_THIS}, ${2:OE_Options}, ${3:How_many}) $4' -p7893 -tp7894 -a(S'get_all_property_names/2' -p7895 -S'get_all_property_names(${1:OE_THIS}, ${2:How_many}) $3' -p7896 -tp7897 -a(S'get_all_property_names/3' -p7898 -S'get_all_property_names(${1:OE_THIS}, ${2:OE_Options}, ${3:How_many}) $4' -p7899 -tp7900 -a(S'get_allowed_properties/1' -p7901 -S'get_allowed_properties(${1:OE_THIS}) $2' -p7902 -tp7903 -a(S'get_allowed_properties/2' -p7904 -S'get_allowed_properties(${1:OE_THIS}, ${2:OE_Options}) $3' -p7905 -tp7906 -a(S'get_allowed_property_types/1' -p7907 -S'get_allowed_property_types(${1:OE_THIS}) $2' -p7908 -tp7909 -a(S'get_allowed_property_types/2' -p7910 -S'get_allowed_property_types(${1:OE_THIS}, ${2:OE_Options}) $3' -p7911 -tp7912 -a(S'get_number_of_properties/1' -p7913 -S'get_number_of_properties(${1:OE_THIS}) $2' -p7914 -tp7915 -a(S'get_number_of_properties/2' -p7916 -S'get_number_of_properties(${1:OE_THIS}, ${2:OE_Options}) $3' -p7917 -tp7918 -a(S'get_properties/2' -p7919 -S'get_properties(${1:OE_THIS}, ${2:Property_names}) $3' -p7920 -tp7921 -a(S'get_properties/3' -p7922 -S'get_properties(${1:OE_THIS}, ${2:OE_Options}, ${3:Property_names}) $4' -p7923 -tp7924 -a(S'get_property_mode/2' -p7925 -S'get_property_mode(${1:OE_THIS}, ${2:Property_name}) $3' -p7926 -tp7927 -a(S'get_property_mode/3' -p7928 -S'get_property_mode(${1:OE_THIS}, ${2:OE_Options}, ${3:Property_name}) $4' -p7929 -tp7930 -a(S'get_property_modes/2' -p7931 -S'get_property_modes(${1:OE_THIS}, ${2:Property_names}) $3' -p7932 -tp7933 -a(S'get_property_modes/3' -p7934 -S'get_property_modes(${1:OE_THIS}, ${2:OE_Options}, ${3:Property_names}) $4' -p7935 -tp7936 -a(S'get_property_value/2' -p7937 -S'get_property_value(${1:OE_THIS}, ${2:Property_name}) $3' -p7938 -tp7939 -a(S'get_property_value/3' -p7940 -S'get_property_value(${1:OE_THIS}, ${2:OE_Options}, ${3:Property_name}) $4' -p7941 -tp7942 -a(S'handle_call/3' -p7943 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p7944 -tp7945 -a(S'handle_cast/2' -p7946 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p7947 -tp7948 -a(S'handle_info/2' -p7949 -S'handle_info(${1:Info}, ${2:State}) $3' -p7950 -tp7951 -a(S'init/1' -p7952 -S'init(${1:Env}) $2' -p7953 -tp7954 -a(S'is_property_defined/2' -p7955 -S'is_property_defined(${1:OE_THIS}, ${2:Property_name}) $3' -p7956 -tp7957 -a(S'is_property_defined/3' -p7958 -S'is_property_defined(${1:OE_THIS}, ${2:OE_Options}, ${3:Property_name}) $4' -p7959 -tp7960 -a(S'oe_create/0' -p7961 -S'oe_create() $1' -p7962 -tp7963 -a(S'oe_create/1' -p7964 -S'oe_create(${1:Env}) $2' -p7965 -tp7966 -a(S'oe_create/2' -p7967 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p7968 -tp7969 -a(S'oe_create_link/0' -p7970 -S'oe_create_link() $1' -p7971 -tp7972 -a(S'oe_create_link/1' -p7973 -S'oe_create_link(${1:Env}) $2' -p7974 -tp7975 -a(S'oe_create_link/2' -p7976 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p7977 -tp7978 -a(S'oe_get_interface/0' -p7979 -S'oe_get_interface() $1' -p7980 -tp7981 -a(S'oe_is_a/1' -p7982 -S'oe_is_a(${1:Param1}) $2' -p7983 -tp7984 -a(S'oe_tc/1' -p7985 -S'oe_tc(${1:Param1}) $2' -p7986 -tp7987 -a(S'set_property_mode/3' -p7988 -S'set_property_mode(${1:OE_THIS}, ${2:Property_name}, ${3:Property_mode}) $4' -p7989 -tp7990 -a(S'set_property_mode/4' -p7991 -S'set_property_mode(${1:OE_THIS}, ${2:OE_Options}, ${3:Property_name}, ${4:Property_mode}) $5' -p7992 -tp7993 -a(S'set_property_modes/2' -p7994 -S'set_property_modes(${1:OE_THIS}, ${2:Property_modes}) $3' -p7995 -tp7996 -a(S'set_property_modes/3' -p7997 -S'set_property_modes(${1:OE_THIS}, ${2:OE_Options}, ${3:Property_modes}) $4' -p7998 -tp7999 -a(S'terminate/2' -p8000 -S'terminate(${1:Reason}, ${2:State}) $3' -p8001 -tp8002 -a(S'typeID/0' -p8003 -S'typeID() $1' -p8004 -tp8005 -asS'systools_make' -p8006 -(lp8007 -(S'format_error/1' -p8008 -S'format_error(${1:ListOfErrors}) $2' -p8009 -tp8010 -a(S'format_warning/1' -p8011 -S'format_warning(${1:Warnings}) $2' -p8012 -tp8013 -a(S'get_release/2' -p8014 -S'get_release(${1:File}, ${2:Path}) $3' -p8015 -tp8016 -a(S'get_release/3' -p8017 -S'get_release(${1:File}, ${2:Path}, ${3:ModTestP}) $4' -p8018 -tp8019 -a(S'get_release/4' -p8020 -S'get_release(${1:File}, ${2:Path}, ${3:ModTestP}, ${4:Machine}) $5' -p8021 -tp8022 -a(S'make_hybrid_boot/5' -p8023 -S'make_hybrid_boot(${1:TmpVsn}, ${2:Boot1}, ${3:Boot2}, ${4:Paths}, ${5:Args}) $6' -p8024 -tp8025 -a(S'make_script/1' -p8026 -S'make_script(${1:RelName}) $2' -p8027 -tp8028 -a(S'make_script/2' -p8029 -S'make_script(${1:RelName}, ${2:Flags}) $3' -p8030 -tp8031 -a(S'make_script/3' -p8032 -S'make_script(${1:RelName}, ${2:Param2}, ${3:Flags}) $4' -p8033 -tp8034 -a(S'make_tar/1' -p8035 -S'make_tar(${1:RelName}) $2' -p8036 -tp8037 -a(S'make_tar/2' -p8038 -S'make_tar(${1:RelName}, ${2:Flags}) $3' -p8039 -tp8040 -a(S'pack_app/1' -p8041 -S'pack_app() $1' -p8042 -tp8043 -a(S'read_application/4' -p8044 -S'read_application(${1:Name}, ${2:Vsn}, ${3:Path}, ${4:Incls}) $5' -p8045 -tp8046 -a(S'read_release/2' -p8047 -S'read_release(${1:File}, ${2:Path}) $3' -p8048 -tp8049 -asS'typer' -p8050 -(lp8051 -(S'start/0' -p8052 -S'start() $1' -p8053 -tp8054 -asS'CosNotifyChannelAdmin_SequenceProxyPullSupplier' -p8055 -(lp8056 -(S"'_get_MyAdmin'/1" -p8057 -S"'_get_MyAdmin'(${1:OE_THIS}) $2" -p8058 -tp8059 -a(S"'_get_MyAdmin'/2" -p8060 -S"'_get_MyAdmin'(${1:OE_THIS}, ${2:OE_Options}) $3" -p8061 -tp8062 -a(S"'_get_MyType'/1" -p8063 -S"'_get_MyType'(${1:OE_THIS}) $2" -p8064 -tp8065 -a(S"'_get_MyType'/2" -p8066 -S"'_get_MyType'(${1:OE_THIS}, ${2:OE_Options}) $3" -p8067 -tp8068 -a(S"'_get_lifetime_filter'/1" -p8069 -S"'_get_lifetime_filter'(${1:OE_THIS}) $2" -p8070 -tp8071 -a(S"'_get_lifetime_filter'/2" -p8072 -S"'_get_lifetime_filter'(${1:OE_THIS}, ${2:OE_Options}) $3" -p8073 -tp8074 -a(S"'_get_priority_filter'/1" -p8075 -S"'_get_priority_filter'(${1:OE_THIS}) $2" -p8076 -tp8077 -a(S"'_get_priority_filter'/2" -p8078 -S"'_get_priority_filter'(${1:OE_THIS}, ${2:OE_Options}) $3" -p8079 -tp8080 -a(S"'_set_lifetime_filter'/2" -p8081 -S"'_set_lifetime_filter'(${1:OE_THIS}, ${2:OE_Value}) $3" -p8082 -tp8083 -a(S"'_set_lifetime_filter'/3" -p8084 -S"'_set_lifetime_filter'(${1:OE_THIS}, ${2:OE_Options}, ${3:OE_Value}) $4" -p8085 -tp8086 -a(S"'_set_priority_filter'/2" -p8087 -S"'_set_priority_filter'(${1:OE_THIS}, ${2:OE_Value}) $3" -p8088 -tp8089 -a(S"'_set_priority_filter'/3" -p8090 -S"'_set_priority_filter'(${1:OE_THIS}, ${2:OE_Options}, ${3:OE_Value}) $4" -p8091 -tp8092 -a(S'add_filter/2' -p8093 -S'add_filter(${1:OE_THIS}, ${2:New_filter}) $3' -p8094 -tp8095 -a(S'add_filter/3' -p8096 -S'add_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:New_filter}) $4' -p8097 -tp8098 -a(S'callAny/3' -p8099 -S'callAny(${1:OE_THIS}, ${2:Event}, ${3:Stat}) $4' -p8100 -tp8101 -a(S'callAny/4' -p8102 -S'callAny(${1:OE_THIS}, ${2:OE_Options}, ${3:Event}, ${4:Stat}) $5' -p8103 -tp8104 -a(S'callSeq/3' -p8105 -S'callSeq(${1:OE_THIS}, ${2:Events}, ${3:Stat}) $4' -p8106 -tp8107 -a(S'callSeq/4' -p8108 -S'callSeq(${1:OE_THIS}, ${2:OE_Options}, ${3:Events}, ${4:Stat}) $5' -p8109 -tp8110 -a(S'code_change/3' -p8111 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p8112 -tp8113 -a(S'connect_sequence_pull_consumer/2' -p8114 -S'connect_sequence_pull_consumer(${1:OE_THIS}, ${2:Pull_consumer}) $3' -p8115 -tp8116 -a(S'connect_sequence_pull_consumer/3' -p8117 -S'connect_sequence_pull_consumer(${1:OE_THIS}, ${2:OE_Options}, ${3:Pull_consumer}) $4' -p8118 -tp8119 -a(S'disconnect_sequence_pull_supplier/1' -p8120 -S'disconnect_sequence_pull_supplier(${1:OE_THIS}) $2' -p8121 -tp8122 -a(S'disconnect_sequence_pull_supplier/2' -p8123 -S'disconnect_sequence_pull_supplier(${1:OE_THIS}, ${2:OE_Options}) $3' -p8124 -tp8125 -a(S'get_all_filters/1' -p8126 -S'get_all_filters(${1:OE_THIS}) $2' -p8127 -tp8128 -a(S'get_all_filters/2' -p8129 -S'get_all_filters(${1:OE_THIS}, ${2:OE_Options}) $3' -p8130 -tp8131 -a(S'get_filter/2' -p8132 -S'get_filter(${1:OE_THIS}, ${2:Filter}) $3' -p8133 -tp8134 -a(S'get_filter/3' -p8135 -S'get_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:Filter}) $4' -p8136 -tp8137 -a(S'get_qos/1' -p8138 -S'get_qos(${1:OE_THIS}) $2' -p8139 -tp8140 -a(S'get_qos/2' -p8141 -S'get_qos(${1:OE_THIS}, ${2:OE_Options}) $3' -p8142 -tp8143 -a(S'handle_call/3' -p8144 -S'handle_call(${1:Param1}, ${2:OE_From}, ${3:OE_State}) $4' -p8145 -tp8146 -a(S'handle_cast/2' -p8147 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p8148 -tp8149 -a(S'handle_info/2' -p8150 -S'handle_info(${1:Info}, ${2:State}) $3' -p8151 -tp8152 -a(S'init/1' -p8153 -S'init(${1:Env}) $2' -p8154 -tp8155 -a(S'obtain_offered_types/2' -p8156 -S'obtain_offered_types(${1:OE_THIS}, ${2:Mode}) $3' -p8157 -tp8158 -a(S'obtain_offered_types/3' -p8159 -S'obtain_offered_types(${1:OE_THIS}, ${2:OE_Options}, ${3:Mode}) $4' -p8160 -tp8161 -a(S'oe_create/0' -p8162 -S'oe_create() $1' -p8163 -tp8164 -a(S'oe_create/1' -p8165 -S'oe_create(${1:Env}) $2' -p8166 -tp8167 -a(S'oe_create/2' -p8168 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p8169 -tp8170 -a(S'oe_create_link/0' -p8171 -S'oe_create_link() $1' -p8172 -tp8173 -a(S'oe_create_link/1' -p8174 -S'oe_create_link(${1:Env}) $2' -p8175 -tp8176 -a(S'oe_create_link/2' -p8177 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p8178 -tp8179 -a(S'oe_get_interface/0' -p8180 -S'oe_get_interface() $1' -p8181 -tp8182 -a(S'oe_is_a/1' -p8183 -S'oe_is_a(${1:Param1}) $2' -p8184 -tp8185 -a(S'oe_tc/1' -p8186 -S'oe_tc(${1:Param1}) $2' -p8187 -tp8188 -a(S'pull_structured_events/2' -p8189 -S'pull_structured_events(${1:OE_THIS}, ${2:Max_number}) $3' -p8190 -tp8191 -a(S'pull_structured_events/3' -p8192 -S'pull_structured_events(${1:OE_THIS}, ${2:OE_Options}, ${3:Max_number}) $4' -p8193 -tp8194 -a(S'remove_all_filters/1' -p8195 -S'remove_all_filters(${1:OE_THIS}) $2' -p8196 -tp8197 -a(S'remove_all_filters/2' -p8198 -S'remove_all_filters(${1:OE_THIS}, ${2:OE_Options}) $3' -p8199 -tp8200 -a(S'remove_filter/2' -p8201 -S'remove_filter(${1:OE_THIS}, ${2:Filter}) $3' -p8202 -tp8203 -a(S'remove_filter/3' -p8204 -S'remove_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:Filter}) $4' -p8205 -tp8206 -a(S'set_qos/2' -p8207 -S'set_qos(${1:OE_THIS}, ${2:Qos}) $3' -p8208 -tp8209 -a(S'set_qos/3' -p8210 -S'set_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Qos}) $4' -p8211 -tp8212 -a(S'subscription_change/3' -p8213 -S'subscription_change(${1:OE_THIS}, ${2:Added}, ${3:Removed}) $4' -p8214 -tp8215 -a(S'subscription_change/4' -p8216 -S'subscription_change(${1:OE_THIS}, ${2:OE_Options}, ${3:Added}, ${4:Removed}) $5' -p8217 -tp8218 -a(S'terminate/2' -p8219 -S'terminate(${1:Reason}, ${2:State}) $3' -p8220 -tp8221 -a(S'try_pull_structured_events/2' -p8222 -S'try_pull_structured_events(${1:OE_THIS}, ${2:Max_number}) $3' -p8223 -tp8224 -a(S'try_pull_structured_events/3' -p8225 -S'try_pull_structured_events(${1:OE_THIS}, ${2:OE_Options}, ${3:Max_number}) $4' -p8226 -tp8227 -a(S'typeID/0' -p8228 -S'typeID() $1' -p8229 -tp8230 -a(S'validate_event_qos/2' -p8231 -S'validate_event_qos(${1:OE_THIS}, ${2:Required_qos}) $3' -p8232 -tp8233 -a(S'validate_event_qos/3' -p8234 -S'validate_event_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Required_qos}) $4' -p8235 -tp8236 -a(S'validate_qos/2' -p8237 -S'validate_qos(${1:OE_THIS}, ${2:Required_qos}) $3' -p8238 -tp8239 -a(S'validate_qos/3' -p8240 -S'validate_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Required_qos}) $4' -p8241 -tp8242 -asS'CosTransactions_TransactionFactory' -p8243 -(lp8244 -(S'code_change/3' -p8245 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p8246 -tp8247 -a(S'create/2' -p8248 -S'create(${1:OE_THIS}, ${2:Time_out}) $3' -p8249 -tp8250 -a(S'create/3' -p8251 -S'create(${1:OE_THIS}, ${2:OE_Options}, ${3:Time_out}) $4' -p8252 -tp8253 -a(S'handle_call/3' -p8254 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p8255 -tp8256 -a(S'handle_cast/2' -p8257 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p8258 -tp8259 -a(S'handle_info/2' -p8260 -S'handle_info(${1:Info}, ${2:State}) $3' -p8261 -tp8262 -a(S'init/1' -p8263 -S'init(${1:Env}) $2' -p8264 -tp8265 -a(S'oe_create/0' -p8266 -S'oe_create() $1' -p8267 -tp8268 -a(S'oe_create/1' -p8269 -S'oe_create(${1:Env}) $2' -p8270 -tp8271 -a(S'oe_create/2' -p8272 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p8273 -tp8274 -a(S'oe_create_link/0' -p8275 -S'oe_create_link() $1' -p8276 -tp8277 -a(S'oe_create_link/1' -p8278 -S'oe_create_link(${1:Env}) $2' -p8279 -tp8280 -a(S'oe_create_link/2' -p8281 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p8282 -tp8283 -a(S'oe_get_interface/0' -p8284 -S'oe_get_interface() $1' -p8285 -tp8286 -a(S'oe_is_a/1' -p8287 -S'oe_is_a(${1:Param1}) $2' -p8288 -tp8289 -a(S'oe_tc/1' -p8290 -S'oe_tc(${1:Param1}) $2' -p8291 -tp8292 -a(S'recreate/2' -p8293 -S'recreate(${1:OE_THIS}, ${2:Ctx}) $3' -p8294 -tp8295 -a(S'recreate/3' -p8296 -S'recreate(${1:OE_THIS}, ${2:OE_Options}, ${3:Ctx}) $4' -p8297 -tp8298 -a(S'terminate/2' -p8299 -S'terminate(${1:Reason}, ${2:State}) $3' -p8300 -tp8301 -a(S'typeID/0' -p8302 -S'typeID() $1' -p8303 -tp8304 -asS'CosFileTransfer_VirtualFileSystem_impl' -p8305 -(lp8306 -(S"'_get_file_system_type'/2" -p8307 -S"'_get_file_system_type'(${1:Param1}, ${2:State}) $3" -p8308 -tp8309 -a(S"'_get_supported_content_types'/2" -p8310 -S"'_get_supported_content_types'(${1:Param1}, ${2:State}) $3" -p8311 -tp8312 -a(S'code_change/3' -p8313 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p8314 -tp8315 -a(S'handle_info/2' -p8316 -S'handle_info(${1:Param1}, ${2:State}) $3' -p8317 -tp8318 -a(S'init/1' -p8319 -S'init(${1:Param1}) $2' -p8320 -tp8321 -a(S'login/5' -p8322 -S'login(${1:Param1}, ${2:State}, ${3:User}, ${4:Password}, ${5:Account}) $6' -p8323 -tp8324 -a(S'terminate/2' -p8325 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p8326 -tp8327 -asS'CosPropertyService_PropertySetFactory' -p8328 -(lp8329 -(S'code_change/3' -p8330 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p8331 -tp8332 -a(S'create_constrained_propertyset/3' -p8333 -S'create_constrained_propertyset(${1:OE_THIS}, ${2:Allowed_property_types}, ${3:Allowed_properties}) $4' -p8334 -tp8335 -a(S'create_constrained_propertyset/4' -p8336 -S'create_constrained_propertyset(${1:OE_THIS}, ${2:OE_Options}, ${3:Allowed_property_types}, ${4:Allowed_properties}) $5' -p8337 -tp8338 -a(S'create_initial_propertyset/2' -p8339 -S'create_initial_propertyset(${1:OE_THIS}, ${2:Initial_properties}) $3' -p8340 -tp8341 -a(S'create_initial_propertyset/3' -p8342 -S'create_initial_propertyset(${1:OE_THIS}, ${2:OE_Options}, ${3:Initial_properties}) $4' -p8343 -tp8344 -a(S'create_propertyset/1' -p8345 -S'create_propertyset(${1:OE_THIS}) $2' -p8346 -tp8347 -a(S'create_propertyset/2' -p8348 -S'create_propertyset(${1:OE_THIS}, ${2:OE_Options}) $3' -p8349 -tp8350 -a(S'handle_call/3' -p8351 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p8352 -tp8353 -a(S'handle_cast/2' -p8354 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p8355 -tp8356 -a(S'handle_info/2' -p8357 -S'handle_info(${1:Param1}, ${2:State}) $3' -p8358 -tp8359 -a(S'init/1' -p8360 -S'init(${1:Env}) $2' -p8361 -tp8362 -a(S'oe_create/0' -p8363 -S'oe_create() $1' -p8364 -tp8365 -a(S'oe_create/1' -p8366 -S'oe_create(${1:Env}) $2' -p8367 -tp8368 -a(S'oe_create/2' -p8369 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p8370 -tp8371 -a(S'oe_create_link/0' -p8372 -S'oe_create_link() $1' -p8373 -tp8374 -a(S'oe_create_link/1' -p8375 -S'oe_create_link(${1:Env}) $2' -p8376 -tp8377 -a(S'oe_create_link/2' -p8378 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p8379 -tp8380 -a(S'oe_get_interface/0' -p8381 -S'oe_get_interface() $1' -p8382 -tp8383 -a(S'oe_is_a/1' -p8384 -S'oe_is_a(${1:Param1}) $2' -p8385 -tp8386 -a(S'oe_tc/1' -p8387 -S'oe_tc(${1:Param1}) $2' -p8388 -tp8389 -a(S'terminate/2' -p8390 -S'terminate(${1:Reason}, ${2:State}) $3' -p8391 -tp8392 -a(S'typeID/0' -p8393 -S'typeID() $1' -p8394 -tp8395 -asS'orber_tb' -p8396 -(lp8397 -(S'check_illegal_tcp_options/1' -p8398 -S'check_illegal_tcp_options(${1:Options}) $2' -p8399 -tp8400 -a(S'error/2' -p8401 -S'error(${1:Format}, ${2:Args}) $3' -p8402 -tp8403 -a(S'info/2' -p8404 -S'info(${1:Format}, ${2:Args}) $3' -p8405 -tp8406 -a(S'is_loaded/0' -p8407 -S'is_loaded() $1' -p8408 -tp8409 -a(S'is_loaded/1' -p8410 -S'is_loaded(${1:Appl}) $2' -p8411 -tp8412 -a(S'is_running/0' -p8413 -S'is_running() $1' -p8414 -tp8415 -a(S'is_running/1' -p8416 -S'is_running(${1:Appl}) $2' -p8417 -tp8418 -a(S'keysearch/2' -p8419 -S'keysearch(${1:Key}, ${2:KeyValue}) $3' -p8420 -tp8421 -a(S'keysearch/3' -p8422 -S'keysearch(${1:Key}, ${2:KeyValue}, ${3:Default}) $4' -p8423 -tp8424 -a(S'unique/1' -p8425 -S'unique(${1:List}) $2' -p8426 -tp8427 -a(S'wait_for_tables/1' -p8428 -S'wait_for_tables(${1:Tables}) $2' -p8429 -tp8430 -a(S'wait_for_tables/2' -p8431 -S'wait_for_tables(${1:Tables}, ${2:Timeout}) $3' -p8432 -tp8433 -a(S'wait_for_tables/3' -p8434 -S'wait_for_tables(${1:Tables}, ${2:Timeout}, ${3:Attempts}) $4' -p8435 -tp8436 -asS'reltool' -p8437 -(lp8438 -(S'create_target/2' -p8439 -S'create_target(${1:Param1}, ${2:Param2}) $3' -p8440 -tp8441 -a(S'debug/0' -p8442 -S'debug() $1' -p8443 -tp8444 -a(S'eval_target_spec/3' -p8445 -S'eval_target_spec(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p8446 -tp8447 -a(S'get_config/1' -p8448 -S'get_config(${1:PidOrOption}) $2' -p8449 -tp8450 -a(S'get_config/3' -p8451 -S'get_config(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p8452 -tp8453 -a(S'get_rel/2' -p8454 -S'get_rel(${1:Param1}, ${2:Param2}) $3' -p8455 -tp8456 -a(S'get_script/2' -p8457 -S'get_script(${1:Param1}, ${2:Param2}) $3' -p8458 -tp8459 -a(S'get_server/1' -p8460 -S'get_server(${1:WinPid}) $2' -p8461 -tp8462 -a(S'get_status/1' -p8463 -S'get_status(${1:Param1}) $2' -p8464 -tp8465 -a(S'get_target_spec/1' -p8466 -S'get_target_spec(${1:Param1}) $2' -p8467 -tp8468 -a(S'install/2' -p8469 -S'install(${1:RelName}, ${2:TargetDir}) $3' -p8470 -tp8471 -a(S'start/0' -p8472 -S'start() $1' -p8473 -tp8474 -a(S'start/1' -p8475 -S'start(${1:Options}) $2' -p8476 -tp8477 -a(S'start_link/1' -p8478 -S'start_link(${1:Options}) $2' -p8479 -tp8480 -a(S'start_server/1' -p8481 -S'start_server(${1:Options}) $2' -p8482 -tp8483 -a(S'stop/1' -p8484 -S'stop(${1:Pid}) $2' -p8485 -tp8486 -asS'ssl_manager' -p8487 -(lp8488 -(S'cache_pem_file/2' -p8489 -S'cache_pem_file(${1:File}, ${2:DbHandle}) $3' -p8490 -tp8491 -a(S'client_session_id/4' -p8492 -S'client_session_id(${1:Host}, ${2:Port}, ${3:SslOpts}, ${4:OwnCert}) $5' -p8493 -tp8494 -a(S'code_change/3' -p8495 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p8496 -tp8497 -a(S'connection_init/2' -p8498 -S'connection_init(${1:Trustedcerts}, ${2:Role}) $3' -p8499 -tp8500 -a(S'handle_call/3' -p8501 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p8502 -tp8503 -a(S'handle_cast/2' -p8504 -S'handle_cast(${1:Param1}, ${2:Param2}) $3' -p8505 -tp8506 -a(S'handle_info/2' -p8507 -S'handle_info(${1:Param1}, ${2:State}) $3' -p8508 -tp8509 -a(S'init/1' -p8510 -S'init(${1:Param1}) $2' -p8511 -tp8512 -a(S'init_session_validator/1' -p8513 -S'init_session_validator(${1:Param1}) $2' -p8514 -tp8515 -a(S'invalidate_session/2' -p8516 -S'invalidate_session(${1:Port}, ${2:Session}) $3' -p8517 -tp8518 -a(S'invalidate_session/3' -p8519 -S'invalidate_session(${1:Host}, ${2:Port}, ${3:Session}) $4' -p8520 -tp8521 -a(S'lookup_trusted_cert/4' -p8522 -S'lookup_trusted_cert(${1:DbHandle}, ${2:Ref}, ${3:SerialNumber}, ${4:Issuer}) $5' -p8523 -tp8524 -a(S'register_session/2' -p8525 -S'register_session(${1:Port}, ${2:Session}) $3' -p8526 -tp8527 -a(S'register_session/3' -p8528 -S'register_session(${1:Host}, ${2:Port}, ${3:Session}) $4' -p8529 -tp8530 -a(S'server_session_id/4' -p8531 -S'server_session_id(${1:Port}, ${2:SuggestedSessionId}, ${3:SslOpts}, ${4:OwnCert}) $5' -p8532 -tp8533 -a(S'start_link/1' -p8534 -S'start_link(${1:Opts}) $2' -p8535 -tp8536 -a(S'start_link_dist/1' -p8537 -S'start_link_dist(${1:Opts}) $2' -p8538 -tp8539 -a(S'terminate/2' -p8540 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p8541 -tp8542 -asS'dbg_wx_break' -p8543 -(lp8544 -(S'init/6' -p8545 -S'init(${1:Wx}, ${2:Env}, ${3:Pos}, ${4:Type}, ${5:Mod}, ${6:Line}) $7' -p8546 -tp8547 -a(S'start/3' -p8548 -S'start(${1:Wx}, ${2:Pos}, ${3:Type}) $4' -p8549 -tp8550 -a(S'start/4' -p8551 -S'start(${1:Wx}, ${2:Pos}, ${3:Type}, ${4:Mod}) $5' -p8552 -tp8553 -a(S'start/5' -p8554 -S'start(${1:Wx}, ${2:Pos}, ${3:Type}, ${4:Mod}, ${5:Line}) $6' -p8555 -tp8556 -asS'CosTime_UTO' -p8557 -(lp8558 -(S"'_get_inaccuracy'/1" -p8559 -S"'_get_inaccuracy'(${1:OE_THIS}) $2" -p8560 -tp8561 -a(S"'_get_inaccuracy'/2" -p8562 -S"'_get_inaccuracy'(${1:OE_THIS}, ${2:OE_Options}) $3" -p8563 -tp8564 -a(S"'_get_tdf'/1" -p8565 -S"'_get_tdf'(${1:OE_THIS}) $2" -p8566 -tp8567 -a(S"'_get_tdf'/2" -p8568 -S"'_get_tdf'(${1:OE_THIS}, ${2:OE_Options}) $3" -p8569 -tp8570 -a(S"'_get_time'/1" -p8571 -S"'_get_time'(${1:OE_THIS}) $2" -p8572 -tp8573 -a(S"'_get_time'/2" -p8574 -S"'_get_time'(${1:OE_THIS}, ${2:OE_Options}) $3" -p8575 -tp8576 -a(S"'_get_utc_time'/1" -p8577 -S"'_get_utc_time'(${1:OE_THIS}) $2" -p8578 -tp8579 -a(S"'_get_utc_time'/2" -p8580 -S"'_get_utc_time'(${1:OE_THIS}, ${2:OE_Options}) $3" -p8581 -tp8582 -a(S'absolute_time/1' -p8583 -S'absolute_time(${1:OE_THIS}) $2' -p8584 -tp8585 -a(S'absolute_time/2' -p8586 -S'absolute_time(${1:OE_THIS}, ${2:OE_Options}) $3' -p8587 -tp8588 -a(S'code_change/3' -p8589 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p8590 -tp8591 -a(S'compare_time/3' -p8592 -S'compare_time(${1:OE_THIS}, ${2:Comparison_type}, ${3:Uto}) $4' -p8593 -tp8594 -a(S'compare_time/4' -p8595 -S'compare_time(${1:OE_THIS}, ${2:OE_Options}, ${3:Comparison_type}, ${4:Uto}) $5' -p8596 -tp8597 -a(S'handle_call/3' -p8598 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p8599 -tp8600 -a(S'handle_cast/2' -p8601 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p8602 -tp8603 -a(S'handle_info/2' -p8604 -S'handle_info(${1:Info}, ${2:State}) $3' -p8605 -tp8606 -a(S'init/1' -p8607 -S'init(${1:Env}) $2' -p8608 -tp8609 -a(S'interval/1' -p8610 -S'interval(${1:OE_THIS}) $2' -p8611 -tp8612 -a(S'interval/2' -p8613 -S'interval(${1:OE_THIS}, ${2:Uto}) $3' -p8614 -tp8615 -a(S'oe_create/0' -p8616 -S'oe_create() $1' -p8617 -tp8618 -a(S'oe_create/1' -p8619 -S'oe_create(${1:Env}) $2' -p8620 -tp8621 -a(S'oe_create/2' -p8622 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p8623 -tp8624 -a(S'oe_create_link/0' -p8625 -S'oe_create_link() $1' -p8626 -tp8627 -a(S'oe_create_link/1' -p8628 -S'oe_create_link(${1:Env}) $2' -p8629 -tp8630 -a(S'oe_create_link/2' -p8631 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p8632 -tp8633 -a(S'oe_get_interface/0' -p8634 -S'oe_get_interface() $1' -p8635 -tp8636 -a(S'oe_is_a/1' -p8637 -S'oe_is_a(${1:Param1}) $2' -p8638 -tp8639 -a(S'oe_tc/1' -p8640 -S'oe_tc(${1:Param1}) $2' -p8641 -tp8642 -a(S'terminate/2' -p8643 -S'terminate(${1:Reason}, ${2:State}) $3' -p8644 -tp8645 -a(S'time_to_interval/2' -p8646 -S'time_to_interval(${1:OE_THIS}, ${2:Uto}) $3' -p8647 -tp8648 -a(S'time_to_interval/3' -p8649 -S'time_to_interval(${1:OE_THIS}, ${2:OE_Options}, ${3:Uto}) $4' -p8650 -tp8651 -a(S'typeID/0' -p8652 -S'typeID() $1' -p8653 -tp8654 -asS'CosNotification_EventType' -p8655 -(lp8656 -(S'id/0' -p8657 -S'id() $1' -p8658 -tp8659 -a(S'name/0' -p8660 -S'name() $1' -p8661 -tp8662 -a(S'tc/0' -p8663 -S'tc() $1' -p8664 -tp8665 -asS'oe_CosEventComm' -p8666 -(lp8667 -(S'oe_dependency/0' -p8668 -S'oe_dependency() $1' -p8669 -tp8670 -a(S'oe_get_module/5' -p8671 -S'oe_get_module(${1:OE_IFR}, ${2:OE_Parent}, ${3:ID}, ${4:Name}, ${5:Version}) $6' -p8672 -tp8673 -a(S'oe_register/0' -p8674 -S'oe_register() $1' -p8675 -tp8676 -a(S'oe_unregister/0' -p8677 -S'oe_unregister() $1' -p8678 -tp8679 -asS'CosNotifyChannelAdmin_ProxySupplier' -p8680 -(lp8681 -(S"'_get_MyAdmin'/1" -p8682 -S"'_get_MyAdmin'(${1:OE_THIS}) $2" -p8683 -tp8684 -a(S"'_get_MyAdmin'/2" -p8685 -S"'_get_MyAdmin'(${1:OE_THIS}, ${2:OE_Options}) $3" -p8686 -tp8687 -a(S"'_get_MyType'/1" -p8688 -S"'_get_MyType'(${1:OE_THIS}) $2" -p8689 -tp8690 -a(S"'_get_MyType'/2" -p8691 -S"'_get_MyType'(${1:OE_THIS}, ${2:OE_Options}) $3" -p8692 -tp8693 -a(S"'_get_lifetime_filter'/1" -p8694 -S"'_get_lifetime_filter'(${1:OE_THIS}) $2" -p8695 -tp8696 -a(S"'_get_lifetime_filter'/2" -p8697 -S"'_get_lifetime_filter'(${1:OE_THIS}, ${2:OE_Options}) $3" -p8698 -tp8699 -a(S"'_get_priority_filter'/1" -p8700 -S"'_get_priority_filter'(${1:OE_THIS}) $2" -p8701 -tp8702 -a(S"'_get_priority_filter'/2" -p8703 -S"'_get_priority_filter'(${1:OE_THIS}, ${2:OE_Options}) $3" -p8704 -tp8705 -a(S"'_set_lifetime_filter'/2" -p8706 -S"'_set_lifetime_filter'(${1:OE_THIS}, ${2:OE_Value}) $3" -p8707 -tp8708 -a(S"'_set_lifetime_filter'/3" -p8709 -S"'_set_lifetime_filter'(${1:OE_THIS}, ${2:OE_Options}, ${3:OE_Value}) $4" -p8710 -tp8711 -a(S"'_set_priority_filter'/2" -p8712 -S"'_set_priority_filter'(${1:OE_THIS}, ${2:OE_Value}) $3" -p8713 -tp8714 -a(S"'_set_priority_filter'/3" -p8715 -S"'_set_priority_filter'(${1:OE_THIS}, ${2:OE_Options}, ${3:OE_Value}) $4" -p8716 -tp8717 -a(S'add_filter/2' -p8718 -S'add_filter(${1:OE_THIS}, ${2:New_filter}) $3' -p8719 -tp8720 -a(S'add_filter/3' -p8721 -S'add_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:New_filter}) $4' -p8722 -tp8723 -a(S'code_change/3' -p8724 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p8725 -tp8726 -a(S'get_all_filters/1' -p8727 -S'get_all_filters(${1:OE_THIS}) $2' -p8728 -tp8729 -a(S'get_all_filters/2' -p8730 -S'get_all_filters(${1:OE_THIS}, ${2:OE_Options}) $3' -p8731 -tp8732 -a(S'get_filter/2' -p8733 -S'get_filter(${1:OE_THIS}, ${2:Filter}) $3' -p8734 -tp8735 -a(S'get_filter/3' -p8736 -S'get_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:Filter}) $4' -p8737 -tp8738 -a(S'get_qos/1' -p8739 -S'get_qos(${1:OE_THIS}) $2' -p8740 -tp8741 -a(S'get_qos/2' -p8742 -S'get_qos(${1:OE_THIS}, ${2:OE_Options}) $3' -p8743 -tp8744 -a(S'handle_call/3' -p8745 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p8746 -tp8747 -a(S'handle_cast/2' -p8748 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p8749 -tp8750 -a(S'handle_info/2' -p8751 -S'handle_info(${1:Param1}, ${2:State}) $3' -p8752 -tp8753 -a(S'init/1' -p8754 -S'init(${1:Env}) $2' -p8755 -tp8756 -a(S'obtain_offered_types/2' -p8757 -S'obtain_offered_types(${1:OE_THIS}, ${2:Mode}) $3' -p8758 -tp8759 -a(S'obtain_offered_types/3' -p8760 -S'obtain_offered_types(${1:OE_THIS}, ${2:OE_Options}, ${3:Mode}) $4' -p8761 -tp8762 -a(S'oe_create/0' -p8763 -S'oe_create() $1' -p8764 -tp8765 -a(S'oe_create/1' -p8766 -S'oe_create(${1:Env}) $2' -p8767 -tp8768 -a(S'oe_create/2' -p8769 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p8770 -tp8771 -a(S'oe_create_link/0' -p8772 -S'oe_create_link() $1' -p8773 -tp8774 -a(S'oe_create_link/1' -p8775 -S'oe_create_link(${1:Env}) $2' -p8776 -tp8777 -a(S'oe_create_link/2' -p8778 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p8779 -tp8780 -a(S'oe_get_interface/0' -p8781 -S'oe_get_interface() $1' -p8782 -tp8783 -a(S'oe_is_a/1' -p8784 -S'oe_is_a(${1:Param1}) $2' -p8785 -tp8786 -a(S'oe_tc/1' -p8787 -S'oe_tc(${1:Param1}) $2' -p8788 -tp8789 -a(S'remove_all_filters/1' -p8790 -S'remove_all_filters(${1:OE_THIS}) $2' -p8791 -tp8792 -a(S'remove_all_filters/2' -p8793 -S'remove_all_filters(${1:OE_THIS}, ${2:OE_Options}) $3' -p8794 -tp8795 -a(S'remove_filter/2' -p8796 -S'remove_filter(${1:OE_THIS}, ${2:Filter}) $3' -p8797 -tp8798 -a(S'remove_filter/3' -p8799 -S'remove_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:Filter}) $4' -p8800 -tp8801 -a(S'set_qos/2' -p8802 -S'set_qos(${1:OE_THIS}, ${2:Qos}) $3' -p8803 -tp8804 -a(S'set_qos/3' -p8805 -S'set_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Qos}) $4' -p8806 -tp8807 -a(S'terminate/2' -p8808 -S'terminate(${1:Reason}, ${2:State}) $3' -p8809 -tp8810 -a(S'typeID/0' -p8811 -S'typeID() $1' -p8812 -tp8813 -a(S'validate_event_qos/2' -p8814 -S'validate_event_qos(${1:OE_THIS}, ${2:Required_qos}) $3' -p8815 -tp8816 -a(S'validate_event_qos/3' -p8817 -S'validate_event_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Required_qos}) $4' -p8818 -tp8819 -a(S'validate_qos/2' -p8820 -S'validate_qos(${1:OE_THIS}, ${2:Required_qos}) $3' -p8821 -tp8822 -a(S'validate_qos/3' -p8823 -S'validate_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Required_qos}) $4' -p8824 -tp8825 -asS'gs_make' -p8826 -(lp8827 -(S'start/0' -p8828 -S'start() $1' -p8829 -tp8830 -asS'asn1rt' -p8831 -(lp8832 -(S'decode/3' -p8833 -S'decode(${1:Module}, ${2:Type}, ${3:Bytes}) $4' -p8834 -tp8835 -a(S'encode/2' -p8836 -S'encode(${1:Module}, ${2:Acc}) $3' -p8837 -tp8838 -a(S'encode/3' -p8839 -S'encode(${1:Module}, ${2:Type}, ${3:Term}) $4' -p8840 -tp8841 -a(S'info/1' -p8842 -S'info(${1:Module}) $2' -p8843 -tp8844 -a(S'load_driver/0' -p8845 -S'load_driver() $1' -p8846 -tp8847 -a(S'unload_driver/0' -p8848 -S'unload_driver() $1' -p8849 -tp8850 -a(S'utf8_binary_to_list/1' -p8851 -S'utf8_binary_to_list(${1:Bin}) $2' -p8852 -tp8853 -a(S'utf8_list_to_binary/1' -p8854 -S'utf8_list_to_binary(${1:List}) $2' -p8855 -tp8856 -asS'tv_poll_dialog' -p8857 -(lp8858 -(S'init/2' -p8859 -S'init(${1:Pid}, ${2:Pos}) $3' -p8860 -tp8861 -a(S'start/1' -p8862 -S'start(${1:Pos}) $2' -p8863 -tp8864 -asS'inet_config' -p8865 -(lp8866 -(S'do_load_resolv/2' -p8867 -S'do_load_resolv(${1:Param1}, ${2:Param2}) $3' -p8868 -tp8869 -a(S'init/0' -p8870 -S'init() $1' -p8871 -tp8872 -asS'dets_server' -p8873 -(lp8874 -(S'all/0' -p8875 -S'all() $1' -p8876 -tp8877 -a(S'close/1' -p8878 -S'close(${1:Tab}) $2' -p8879 -tp8880 -a(S'code_change/3' -p8881 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p8882 -tp8883 -a(S'get_pid/1' -p8884 -S'get_pid(${1:Tab}) $2' -p8885 -tp8886 -a(S'handle_call/3' -p8887 -S'handle_call(${1:Param1}, ${2:From}, ${3:State}) $4' -p8888 -tp8889 -a(S'handle_cast/2' -p8890 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p8891 -tp8892 -a(S'handle_info/2' -p8893 -S'handle_info(${1:Param1}, ${2:State}) $3' -p8894 -tp8895 -a(S'init/1' -p8896 -S'init(${1:Parent}) $2' -p8897 -tp8898 -a(S'open_file/1' -p8899 -S'open_file(${1:File}) $2' -p8900 -tp8901 -a(S'open_file/2' -p8902 -S'open_file(${1:Tab}, ${2:OpenArgs}) $3' -p8903 -tp8904 -a(S'pid2name/1' -p8905 -S'pid2name(${1:Pid}) $2' -p8906 -tp8907 -a(S'start/0' -p8908 -S'start() $1' -p8909 -tp8910 -a(S'start_link/0' -p8911 -S'start_link() $1' -p8912 -tp8913 -a(S'stop/0' -p8914 -S'stop() $1' -p8915 -tp8916 -a(S'terminate/2' -p8917 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p8918 -tp8919 -a(S'users/1' -p8920 -S'users(${1:Tab}) $2' -p8921 -tp8922 -a(S'verbose/1' -p8923 -S'verbose(${1:What}) $2' -p8924 -tp8925 -asS'erlang' -p8926 -(lp8927 -(S'abs/1' -p8928 -S'abs(${1:Number}) $2' -p8929 -tp8930 -a(S'alloc_info/1' -p8931 -S'alloc_info(${1:Allocs}) $2' -p8932 -tp8933 -a(S'alloc_sizes/1' -p8934 -S'alloc_sizes(${1:Allocs}) $2' -p8935 -tp8936 -a(S'apply/2' -p8937 -S'apply(${1:Fun}, ${2:Args}) $3' -p8938 -tp8939 -a(S'apply/3' -p8940 -S'apply(${1:Module}, ${2:Function}, ${3:Args}) $4' -p8941 -tp8942 -a(S'atom_to_binary/2' -p8943 -S'atom_to_binary(${1:Atom}, ${2:Encoding}) $3' -p8944 -tp8945 -a(S'atom_to_list/1' -p8946 -S'atom_to_list(${1:Atom}) $2' -p8947 -tp8948 -a(S'await_proc_exit/3' -p8949 -S'await_proc_exit(${1:Proc}, ${2:Op}, ${3:Data}) $4' -p8950 -tp8951 -a(S'await_sched_wall_time_modifications/2' -p8952 -S'await_sched_wall_time_modifications(${1:Ref}, ${2:Result}) $3' -p8953 -tp8954 -a(S'binary_part/2' -p8955 -S'binary_part(${1:Subject}, ${2:PosLen}) $3' -p8956 -tp8957 -a(S'binary_part/3' -p8958 -S'binary_part(${1:Subject}, ${2:Start}, ${3:Length}) $4' -p8959 -tp8960 -a(S'binary_to_atom/2' -p8961 -S'binary_to_atom(${1:Binary}, ${2:Encoding}) $3' -p8962 -tp8963 -a(S'binary_to_existing_atom/2' -p8964 -S'binary_to_existing_atom(${1:Binary}, ${2:Encoding}) $3' -p8965 -tp8966 -a(S'binary_to_list/1' -p8967 -S'binary_to_list(${1:Binary}) $2' -p8968 -tp8969 -a(S'binary_to_list/3' -p8970 -S'binary_to_list(${1:Binary}, ${2:Start}, ${3:Stop}) $4' -p8971 -tp8972 -a(S'binary_to_term/2' -p8973 -S'binary_to_term(${1:Binary}, ${2:Opts}) $3' -p8974 -tp8975 -a(S'bit_size/1' -p8976 -S'bit_size(${1:Bitstring}) $2' -p8977 -tp8978 -a(S'bitstring_to_list/1' -p8979 -S'bitstring_to_list(${1:Bitstring}) $2' -p8980 -tp8981 -a(S'byte_size/1' -p8982 -S'byte_size(${1:Bitstring}) $2' -p8983 -tp8984 -a(S'check_old_code/1' -p8985 -S'check_old_code(${1:Module}) $2' -p8986 -tp8987 -a(S'check_process_code/2' -p8988 -S'check_process_code(${1:Pid}, ${2:Module}) $3' -p8989 -tp8990 -a(S'crasher/6' -p8991 -S'crasher(${1:Node}, ${2:Mod}, ${3:Fun}, ${4:Args}, ${5:Opts}, ${6:Reason}) $7' -p8992 -tp8993 -a(S'date/0' -p8994 -S'date() $1' -p8995 -tp8996 -a(S'delay_trap/2' -p8997 -S'delay_trap(${1:Result}, ${2:Timeout}) $3' -p8998 -tp8999 -a(S'delete_module/1' -p9000 -S'delete_module(${1:Module}) $2' -p9001 -tp9002 -a(S'demonitor/1' -p9003 -S'demonitor(${1:MonitorRef}) $2' -p9004 -tp9005 -a(S'demonitor/2' -p9006 -S'demonitor(${1:MonitorRef}, ${2:OptionList}) $3' -p9007 -tp9008 -a(S'dexit/2' -p9009 -S'dexit(${1:Pid}, ${2:Reason}) $3' -p9010 -tp9011 -a(S'dgroup_leader/2' -p9012 -S'dgroup_leader(${1:Leader}, ${2:Pid}) $3' -p9013 -tp9014 -a(S'disconnect_node/1' -p9015 -S'disconnect_node(${1:Node}) $2' -p9016 -tp9017 -a(S'dlink/1' -p9018 -S'dlink(${1:Pid}) $2' -p9019 -tp9020 -a(S'dmonitor_node/3' -p9021 -S'dmonitor_node(${1:Node}, ${2:Flag}, ${3:Opts}) $4' -p9022 -tp9023 -a(S'dmonitor_p/2' -p9024 -S'dmonitor_p(${1:Param1}, ${2:ProcSpec}) $3' -p9025 -tp9026 -a(S'dsend/2' -p9027 -S'dsend(${1:Pid}, ${2:Msg}) $3' -p9028 -tp9029 -a(S'dsend/3' -p9030 -S'dsend(${1:Pid}, ${2:Msg}, ${3:Opts}) $4' -p9031 -tp9032 -a(S'dunlink/1' -p9033 -S'dunlink(${1:Pid}) $2' -p9034 -tp9035 -a(S'element/2' -p9036 -S'element(${1:N}, ${2:Tuple}) $3' -p9037 -tp9038 -a(S'erase/0' -p9039 -S'erase() $1' -p9040 -tp9041 -a(S'erase/1' -p9042 -S'erase(${1:Key}) $2' -p9043 -tp9044 -a(S'error/1' -p9045 -S'error(${1:Reason}) $2' -p9046 -tp9047 -a(S'error/2' -p9048 -S'error(${1:Reason}, ${2:Args}) $3' -p9049 -tp9050 -a(S'exit/1' -p9051 -S'exit(${1:Reason}) $2' -p9052 -tp9053 -a(S'exit/2' -p9054 -S'exit(${1:Reason}, ${2:Args}) $3' -p9055 -tp9056 -a(S'float/1' -p9057 -S'float(${1:Number}) $2' -p9058 -tp9059 -a(S'float_to_list/1' -p9060 -S'float_to_list(${1:Float}) $2' -p9061 -tp9062 -a(S'flush_monitor_message/2' -p9063 -S'flush_monitor_message(${1:Ref}, ${2:Res}) $3' -p9064 -tp9065 -a(S'format_cpu_topology/1' -p9066 -S'format_cpu_topology(${1:InternalCpuTopology}) $2' -p9067 -tp9068 -a(S'fun_info/1' -p9069 -S'fun_info(${1:Fun}) $2' -p9070 -tp9071 -a(S'garbage_collect/0' -p9072 -S'garbage_collect() $1' -p9073 -tp9074 -a(S'garbage_collect/1' -p9075 -S'garbage_collect(${1:Pid}) $2' -p9076 -tp9077 -a(S'gather_sched_wall_time_result/1' -p9078 -S'gather_sched_wall_time_result(${1:Ref}) $2' -p9079 -tp9080 -a(S'get/0' -p9081 -S'get() $1' -p9082 -tp9083 -a(S'get/1' -p9084 -S'get(${1:Key}) $2' -p9085 -tp9086 -a(S'get_cookie/0' -p9087 -S'get_cookie() $1' -p9088 -tp9089 -a(S'get_keys/1' -p9090 -S'get_keys(${1:Val}) $2' -p9091 -tp9092 -a(S'group_leader/0' -p9093 -S'group_leader() $1' -p9094 -tp9095 -a(S'group_leader/2' -p9096 -S'group_leader(${1:GroupLeader}, ${2:Pid}) $3' -p9097 -tp9098 -a(S'halt/0' -p9099 -S'halt() $1' -p9100 -tp9101 -a(S'halt/1' -p9102 -S'halt(${1:Status}) $2' -p9103 -tp9104 -a(S'halt/2' -p9105 -S'halt(${1:Status}, ${2:Options}) $3' -p9106 -tp9107 -a(S'hd/1' -p9108 -S'hd(${1:List}) $2' -p9109 -tp9110 -a(S'integer_to_list/1' -p9111 -S'integer_to_list(${1:Integer}) $2' -p9112 -tp9113 -a(S'integer_to_list/2' -p9114 -S'integer_to_list(${1:Integer}, ${2:Base}) $3' -p9115 -tp9116 -a(S'iolist_size/1' -p9117 -S'iolist_size(${1:Item}) $2' -p9118 -tp9119 -a(S'iolist_to_binary/1' -p9120 -S'iolist_to_binary(${1:IoListOrBinary}) $2' -p9121 -tp9122 -a(S'is_alive/0' -p9123 -S'is_alive() $1' -p9124 -tp9125 -a(S'is_atom/1' -p9126 -S'is_atom(${1:Term}) $2' -p9127 -tp9128 -a(S'is_binary/1' -p9129 -S'is_binary(${1:Term}) $2' -p9130 -tp9131 -a(S'is_bitstring/1' -p9132 -S'is_bitstring(${1:Term}) $2' -p9133 -tp9134 -a(S'is_boolean/1' -p9135 -S'is_boolean(${1:Term}) $2' -p9136 -tp9137 -a(S'is_float/1' -p9138 -S'is_float(${1:Term}) $2' -p9139 -tp9140 -a(S'is_function/1' -p9141 -S'is_function(${1:Term}) $2' -p9142 -tp9143 -a(S'is_function/2' -p9144 -S'is_function(${1:Term}, ${2:Arity}) $3' -p9145 -tp9146 -a(S'is_integer/1' -p9147 -S'is_integer(${1:Term}) $2' -p9148 -tp9149 -a(S'is_list/1' -p9150 -S'is_list(${1:Term}) $2' -p9151 -tp9152 -a(S'is_number/1' -p9153 -S'is_number(${1:Term}) $2' -p9154 -tp9155 -a(S'is_pid/1' -p9156 -S'is_pid(${1:Term}) $2' -p9157 -tp9158 -a(S'is_port/1' -p9159 -S'is_port(${1:Term}) $2' -p9160 -tp9161 -a(S'is_process_alive/1' -p9162 -S'is_process_alive(${1:Pid}) $2' -p9163 -tp9164 -a(S'is_record/2' -p9165 -S'is_record(${1:Term}, ${2:RecordTag}) $3' -p9166 -tp9167 -a(S'is_record/3' -p9168 -S'is_record(${1:Term}, ${2:RecordTag}, ${3:Size}) $4' -p9169 -tp9170 -a(S'is_reference/1' -p9171 -S'is_reference(${1:Term}) $2' -p9172 -tp9173 -a(S'is_tuple/1' -p9174 -S'is_tuple(${1:Term}) $2' -p9175 -tp9176 -a(S'length/1' -p9177 -S'length(${1:List}) $2' -p9178 -tp9179 -a(S'link/1' -p9180 -S'link(${1:Pid}) $2' -p9181 -tp9182 -a(S'list_to_atom/1' -p9183 -S'list_to_atom(${1:String}) $2' -p9184 -tp9185 -a(S'list_to_binary/1' -p9186 -S'list_to_binary(${1:IoList}) $2' -p9187 -tp9188 -a(S'list_to_bitstring/1' -p9189 -S'list_to_bitstring(${1:BitstringList}) $2' -p9190 -tp9191 -a(S'list_to_existing_atom/1' -p9192 -S'list_to_existing_atom(${1:String}) $2' -p9193 -tp9194 -a(S'list_to_float/1' -p9195 -S'list_to_float(${1:String}) $2' -p9196 -tp9197 -a(S'list_to_integer/1' -p9198 -S'list_to_integer(${1:String}) $2' -p9199 -tp9200 -a(S'list_to_integer/2' -p9201 -S'list_to_integer(${1:String}, ${2:Base}) $3' -p9202 -tp9203 -a(S'list_to_pid/1' -p9204 -S'list_to_pid(${1:String}) $2' -p9205 -tp9206 -a(S'list_to_tuple/1' -p9207 -S'list_to_tuple(${1:List}) $2' -p9208 -tp9209 -a(S'load_module/2' -p9210 -S'load_module(${1:Module}, ${2:Binary}) $3' -p9211 -tp9212 -a(S'localtime_to_universaltime/1' -p9213 -S'localtime_to_universaltime(${1:Localtime}) $2' -p9214 -tp9215 -a(S'make_ref/0' -p9216 -S'make_ref() $1' -p9217 -tp9218 -a(S'max/2' -p9219 -S'max(${1:Term1}, ${2:Term2}) $3' -p9220 -tp9221 -a(S'memory/0' -p9222 -S'memory() $1' -p9223 -tp9224 -a(S'memory/1' -p9225 -S'memory(${1:Type}) $2' -p9226 -tp9227 -a(S'min/2' -p9228 -S'min(${1:Term1}, ${2:Term2}) $3' -p9229 -tp9230 -a(S'module_loaded/1' -p9231 -S'module_loaded(${1:Module}) $2' -p9232 -tp9233 -a(S'monitor/2' -p9234 -S'monitor(${1:Type}, ${2:Item}) $3' -p9235 -tp9236 -a(S'monitor_node/2' -p9237 -S'monitor_node(${1:Node}, ${2:Flag}) $3' -p9238 -tp9239 -a(S'node/0' -p9240 -S'node() $1' -p9241 -tp9242 -a(S'node/1' -p9243 -S'node(${1:Arg}) $2' -p9244 -tp9245 -a(S'nodes/0' -p9246 -S'nodes() $1' -p9247 -tp9248 -a(S'nodes/1' -p9249 -S'nodes(${1:Arg}) $2' -p9250 -tp9251 -a(S'now/0' -p9252 -S'now() $1' -p9253 -tp9254 -a(S'open_port/2' -p9255 -S'open_port(${1:PortName}, ${2:PortSettings}) $3' -p9256 -tp9257 -a(S'pid_to_list/1' -p9258 -S'pid_to_list(${1:Pid}) $2' -p9259 -tp9260 -a(S'port_close/1' -p9261 -S'port_close(${1:Port}) $2' -p9262 -tp9263 -a(S'port_command/2' -p9264 -S'port_command(${1:Port}, ${2:Data}) $3' -p9265 -tp9266 -a(S'port_command/3' -p9267 -S'port_command(${1:Port}, ${2:Data}, ${3:OptionList}) $4' -p9268 -tp9269 -a(S'port_connect/2' -p9270 -S'port_connect(${1:Port}, ${2:Pid}) $3' -p9271 -tp9272 -a(S'port_control/3' -p9273 -S'port_control(${1:Port}, ${2:Operation}, ${3:Data}) $4' -p9274 -tp9275 -a(S'pre_loaded/0' -p9276 -S'pre_loaded() $1' -p9277 -tp9278 -a(S'process_flag/2' -p9279 -S'process_flag(${1:Flag}, ${2:Value}) $3' -p9280 -tp9281 -a(S'process_flag/3' -p9282 -S'process_flag(${1:Pid}, ${2:Flag}, ${3:Value}) $4' -p9283 -tp9284 -a(S'process_info/1' -p9285 -S'process_info(${1:Pid}) $2' -p9286 -tp9287 -a(S'process_info/2' -p9288 -S'process_info(${1:Pid}, ${2:ItemSpec}) $3' -p9289 -tp9290 -a(S'processes/0' -p9291 -S'processes() $1' -p9292 -tp9293 -a(S'purge_module/1' -p9294 -S'purge_module(${1:Module}) $2' -p9295 -tp9296 -a(S'put/2' -p9297 -S'put(${1:Key}, ${2:Val}) $3' -p9298 -tp9299 -a(S'register/2' -p9300 -S'put(${1:RegName}, ${2:PidOrPort}) $3' -p9301 -tp9302 -a(S'registered/0' -p9303 -S'registered() $1' -p9304 -tp9305 -a(S'round/1' -p9306 -S'round(${1:Number}) $2' -p9307 -tp9308 -a(S'self/0' -p9309 -S'self() $1' -p9310 -tp9311 -a(S'send_nosuspend/2' -p9312 -S'send_nosuspend(${1:Dest}, ${2:Msg}) $3' -p9313 -tp9314 -a(S'send_nosuspend/3' -p9315 -S'send_nosuspend(${1:Dest}, ${2:Msg}, ${3:Options}) $4' -p9316 -tp9317 -a(S'set_cookie/2' -p9318 -S'set_cookie(${1:Node}, ${2:Cookie}) $3' -p9319 -tp9320 -a(S'set_cpu_topology/1' -p9321 -S'set_cpu_topology(${1:CpuTopology}) $2' -p9322 -tp9323 -a(S'setelement/3' -p9324 -S'setelement(${1:Index}, ${2:Tuple1}, ${3:Value}) $4' -p9325 -tp9326 -a(S'size/1' -p9327 -S'size(${1:Item}) $2' -p9328 -tp9329 -a(S'spawn/1' -p9330 -S'spawn(${1:Fun}) $2' -p9331 -tp9332 -a(S'spawn/2' -p9333 -S'spawn(${1:Node}, ${2:Fun}) $3' -p9334 -tp9335 -a(S'spawn/3' -p9336 -S'spawn(${1:Module}, ${2:Function}) $3, ${3:Args}) $4' -p9337 -tp9338 -a(S'spawn/4' -p9339 -S'spawn(${1:Node}, ${2:Module}, ${3:Function}, ${4:Args}) $5' -p9340 -tp9341 -a(S'spawn_link/1' -p9342 -S'spawn_link(${1:Fun}) $2' -p9343 -tp9344 -a(S'spawn_link/2' -p9345 -S'spawn_link(${1:Node}, ${2:Fun}) $3' -p9346 -tp9347 -a(S'spawn_link/3' -p9348 -S'spawn_link(${1:Module}, ${2:Function}, ${3:Args}) $4' -p9349 -tp9350 -a(S'spawn_link/4' -p9351 -S'spawn_link(${1:Node}, ${2:Module}, ${3:Function}, ${4:Args}) $5' -p9352 -tp9353 -a(S'spawn_monitor/1' -p9354 -S'spawn_monitor(${1:Fun}) $2' -p9355 -tp9356 -a(S'spawn_monitor/3' -p9357 -S'spawn_monitor(${1:Module}, ${2:Function}, ${3:Args}) $4' -p9358 -tp9359 -a(S'spawn_opt/2' -p9360 -S'spawn_opt(${1:Fun}, ${2:Options}) $3' -p9361 -tp9362 -a(S'spawn_opt/3' -p9363 -S'spawn_opt(${1:Node}, ${2:Fun}, ${3:Options}) $4' -p9364 -tp9365 -a(S'spawn_opt/4' -p9366 -S'spawn_opt(${1:Module}, ${2:Function}, ${3:Args}, ${4:Options}) $5' -p9367 -tp9368 -a(S'spawn_opt/5' -p9369 -S'spawn_opt(${1:Node}, ${2:Module}, ${3:Function}, ${4:Args}, ${5:Options}) $6' -p9370 -tp9371 -a(S'split_binary/2' -p9372 -S'split_binary(${1:Bin}, ${2:Pos}) $3' -p9373 -tp9374 -a(S'statistics/1' -p9375 -S'statistics(${1:Type}) $2' -p9376 -tp9377 -a(S'suspend_process/1' -p9378 -S'suspend_process(${1:Suspendee}) $2' -p9379 -tp9380 -a(S'term_to_binary/1' -p9381 -S'term_to_binary(${1:Term}) $2' -p9382 -tp9383 -a(S'term_to_binary/2' -p9384 -S'term_to_binary(${1:Term}, ${2:Options}) $3' -p9385 -tp9386 -a(S'throw/1' -p9387 -S'throw(${1:Any}) $2' -p9388 -tp9389 -a(S'time/0' -p9390 -S'time() $1' -p9391 -tp9392 -a(S'tl/1' -p9393 -S'tl(${1:List1}) $2' -p9394 -tp9395 -a(S'trunc/1' -p9396 -S'trunc(${1:Number}) $2' -p9397 -tp9398 -a(S'tuple_size/1' -p9399 -S'tuple_size(${1:Tuple}) $2' -p9400 -tp9401 -a(S'tuple_to_list/1' -p9402 -S'tuple_to_list(${1:Tuple}) $2' -p9403 -tp9404 -a(S'unlink/1' -p9405 -S'unlink(${1:Id}) $2' -p9406 -tp9407 -a(S'unregister/1' -p9408 -S'unregister(${1:RegName}) $2' -p9409 -tp9410 -a(S'whereis/1' -p9411 -S'whereis(${1:RegName}) $2' -p9412 -tp9413 -a(S'yield/0' -p9414 -S'yield() $1' -p9415 -tp9416 -asS'edoc_wiki' -p9417 -(lp9418 -(S'expand_text/2' -p9419 -S'expand_text(${1:Cs}, ${2:L}) $3' -p9420 -tp9421 -a(S'parse_xml/2' -p9422 -S'parse_xml(${1:Data}, ${2:Line}) $3' -p9423 -tp9424 -asS'inets_trace' -p9425 -(lp9426 -(S'disable/0' -p9427 -S'disable() $1' -p9428 -tp9429 -a(S'enable/2' -p9430 -S'enable(${1:Level}, ${2:Dest}) $3' -p9431 -tp9432 -a(S'enable/3' -p9433 -S'enable(${1:Level}, ${2:Dest}, ${3:Service}) $4' -p9434 -tp9435 -a(S'report_event/4' -p9436 -S'report_event() $1' -p9437 -tp9438 -a(S'set_level/1' -p9439 -S'set_level(${1:Level}) $2' -p9440 -tp9441 -a(S'set_level/2' -p9442 -S'set_level(${1:Level}, ${2:Service}) $3' -p9443 -tp9444 -asS'CosNotifyChannelAdmin_SequenceProxyPushSupplier' -p9445 -(lp9446 -(S"'_get_MyAdmin'/1" -p9447 -S"'_get_MyAdmin'(${1:OE_THIS}) $2" -p9448 -tp9449 -a(S"'_get_MyAdmin'/2" -p9450 -S"'_get_MyAdmin'(${1:OE_THIS}, ${2:OE_Options}) $3" -p9451 -tp9452 -a(S"'_get_MyType'/1" -p9453 -S"'_get_MyType'(${1:OE_THIS}) $2" -p9454 -tp9455 -a(S"'_get_MyType'/2" -p9456 -S"'_get_MyType'(${1:OE_THIS}, ${2:OE_Options}) $3" -p9457 -tp9458 -a(S"'_get_lifetime_filter'/1" -p9459 -S"'_get_lifetime_filter'(${1:OE_THIS}) $2" -p9460 -tp9461 -a(S"'_get_lifetime_filter'/2" -p9462 -S"'_get_lifetime_filter'(${1:OE_THIS}, ${2:OE_Options}) $3" -p9463 -tp9464 -a(S"'_get_priority_filter'/1" -p9465 -S"'_get_priority_filter'(${1:OE_THIS}) $2" -p9466 -tp9467 -a(S"'_get_priority_filter'/2" -p9468 -S"'_get_priority_filter'(${1:OE_THIS}, ${2:OE_Options}) $3" -p9469 -tp9470 -a(S"'_set_lifetime_filter'/2" -p9471 -S"'_set_lifetime_filter'(${1:OE_THIS}, ${2:OE_Value}) $3" -p9472 -tp9473 -a(S"'_set_lifetime_filter'/3" -p9474 -S"'_set_lifetime_filter'(${1:OE_THIS}, ${2:OE_Options}, ${3:OE_Value}) $4" -p9475 -tp9476 -a(S"'_set_priority_filter'/2" -p9477 -S"'_set_priority_filter'(${1:OE_THIS}, ${2:OE_Value}) $3" -p9478 -tp9479 -a(S"'_set_priority_filter'/3" -p9480 -S"'_set_priority_filter'(${1:OE_THIS}, ${2:OE_Options}, ${3:OE_Value}) $4" -p9481 -tp9482 -a(S'add_filter/2' -p9483 -S'add_filter(${1:OE_THIS}, ${2:New_filter}) $3' -p9484 -tp9485 -a(S'add_filter/3' -p9486 -S'add_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:New_filter}) $4' -p9487 -tp9488 -a(S'callAny/3' -p9489 -S'callAny(${1:OE_THIS}, ${2:Event}, ${3:Stat}) $4' -p9490 -tp9491 -a(S'callAny/4' -p9492 -S'callAny(${1:OE_THIS}, ${2:OE_Options}, ${3:Event}, ${4:Stat}) $5' -p9493 -tp9494 -a(S'callSeq/3' -p9495 -S'callSeq(${1:OE_THIS}, ${2:Events}, ${3:Stat}) $4' -p9496 -tp9497 -a(S'callSeq/4' -p9498 -S'callSeq(${1:OE_THIS}, ${2:OE_Options}, ${3:Events}, ${4:Stat}) $5' -p9499 -tp9500 -a(S'code_change/3' -p9501 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p9502 -tp9503 -a(S'connect_sequence_push_consumer/2' -p9504 -S'connect_sequence_push_consumer(${1:OE_THIS}, ${2:Push_consumer}) $3' -p9505 -tp9506 -a(S'connect_sequence_push_consumer/3' -p9507 -S'connect_sequence_push_consumer(${1:OE_THIS}, ${2:OE_Options}, ${3:Push_consumer}) $4' -p9508 -tp9509 -a(S'disconnect_sequence_push_supplier/1' -p9510 -S'disconnect_sequence_push_supplier(${1:OE_THIS}) $2' -p9511 -tp9512 -a(S'disconnect_sequence_push_supplier/2' -p9513 -S'disconnect_sequence_push_supplier(${1:OE_THIS}, ${2:OE_Options}) $3' -p9514 -tp9515 -a(S'get_all_filters/1' -p9516 -S'get_all_filters(${1:OE_THIS}) $2' -p9517 -tp9518 -a(S'get_all_filters/2' -p9519 -S'get_all_filters(${1:OE_THIS}, ${2:OE_Options}) $3' -p9520 -tp9521 -a(S'get_filter/2' -p9522 -S'get_filter(${1:OE_THIS}, ${2:Filter}) $3' -p9523 -tp9524 -a(S'get_filter/3' -p9525 -S'get_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:Filter}) $4' -p9526 -tp9527 -a(S'get_qos/1' -p9528 -S'get_qos(${1:OE_THIS}) $2' -p9529 -tp9530 -a(S'get_qos/2' -p9531 -S'get_qos(${1:OE_THIS}, ${2:OE_Options}) $3' -p9532 -tp9533 -a(S'handle_call/3' -p9534 -S'handle_call(${1:Param1}, ${2:OE_From}, ${3:OE_State}) $4' -p9535 -tp9536 -a(S'handle_cast/2' -p9537 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p9538 -tp9539 -a(S'handle_info/2' -p9540 -S'handle_info(${1:Info}, ${2:State}) $3' -p9541 -tp9542 -a(S'init/1' -p9543 -S'init(${1:Env}) $2' -p9544 -tp9545 -a(S'obtain_offered_types/2' -p9546 -S'obtain_offered_types(${1:OE_THIS}, ${2:Mode}) $3' -p9547 -tp9548 -a(S'obtain_offered_types/3' -p9549 -S'obtain_offered_types(${1:OE_THIS}, ${2:OE_Options}, ${3:Mode}) $4' -p9550 -tp9551 -a(S'oe_create/0' -p9552 -S'oe_create() $1' -p9553 -tp9554 -a(S'oe_create/1' -p9555 -S'oe_create(${1:Env}) $2' -p9556 -tp9557 -a(S'oe_create/2' -p9558 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p9559 -tp9560 -a(S'oe_create_link/0' -p9561 -S'oe_create_link() $1' -p9562 -tp9563 -a(S'oe_create_link/1' -p9564 -S'oe_create_link(${1:Env}) $2' -p9565 -tp9566 -a(S'oe_create_link/2' -p9567 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p9568 -tp9569 -a(S'oe_get_interface/0' -p9570 -S'oe_get_interface() $1' -p9571 -tp9572 -a(S'oe_is_a/1' -p9573 -S'oe_is_a(${1:Param1}) $2' -p9574 -tp9575 -a(S'oe_tc/1' -p9576 -S'oe_tc(${1:Param1}) $2' -p9577 -tp9578 -a(S'remove_all_filters/1' -p9579 -S'remove_all_filters(${1:OE_THIS}) $2' -p9580 -tp9581 -a(S'remove_all_filters/2' -p9582 -S'remove_all_filters(${1:OE_THIS}, ${2:OE_Options}) $3' -p9583 -tp9584 -a(S'remove_filter/2' -p9585 -S'remove_filter(${1:OE_THIS}, ${2:Filter}) $3' -p9586 -tp9587 -a(S'remove_filter/3' -p9588 -S'remove_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:Filter}) $4' -p9589 -tp9590 -a(S'resume_connection/1' -p9591 -S'resume_connection(${1:OE_THIS}) $2' -p9592 -tp9593 -a(S'resume_connection/2' -p9594 -S'resume_connection(${1:OE_THIS}, ${2:OE_Options}) $3' -p9595 -tp9596 -a(S'set_qos/2' -p9597 -S'set_qos(${1:OE_THIS}, ${2:Qos}) $3' -p9598 -tp9599 -a(S'set_qos/3' -p9600 -S'set_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Qos}) $4' -p9601 -tp9602 -a(S'subscription_change/3' -p9603 -S'subscription_change(${1:OE_THIS}, ${2:Added}, ${3:Removed}) $4' -p9604 -tp9605 -a(S'subscription_change/4' -p9606 -S'subscription_change(${1:OE_THIS}, ${2:OE_Options}, ${3:Added}, ${4:Removed}) $5' -p9607 -tp9608 -a(S'suspend_connection/1' -p9609 -S'suspend_connection(${1:OE_THIS}) $2' -p9610 -tp9611 -a(S'suspend_connection/2' -p9612 -S'suspend_connection(${1:OE_THIS}, ${2:OE_Options}) $3' -p9613 -tp9614 -a(S'terminate/2' -p9615 -S'terminate(${1:Reason}, ${2:State}) $3' -p9616 -tp9617 -a(S'typeID/0' -p9618 -S'typeID() $1' -p9619 -tp9620 -a(S'validate_event_qos/2' -p9621 -S'validate_event_qos(${1:OE_THIS}, ${2:Required_qos}) $3' -p9622 -tp9623 -a(S'validate_event_qos/3' -p9624 -S'validate_event_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Required_qos}) $4' -p9625 -tp9626 -a(S'validate_qos/2' -p9627 -S'validate_qos(${1:OE_THIS}, ${2:Required_qos}) $3' -p9628 -tp9629 -a(S'validate_qos/3' -p9630 -S'validate_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Required_qos}) $4' -p9631 -tp9632 -asS'ct_slave' -p9633 -(lp9634 -(S'monitor_master/1' -p9635 -S'monitor_master(${1:MasterNode}) $2' -p9636 -tp9637 -a(S'slave_ready/2' -p9638 -S'slave_ready(${1:ENode}, ${2:MasterPid}) $3' -p9639 -tp9640 -a(S'slave_started/2' -p9641 -S'slave_started(${1:ENode}, ${2:MasterPid}) $3' -p9642 -tp9643 -a(S'start/1' -p9644 -S'start(${1:Node}) $2' -p9645 -tp9646 -a(S'start/2' -p9647 -S'start(${1:Host}, ${2:Node}) $3' -p9648 -tp9649 -a(S'start/3' -p9650 -S'start(${1:Host}, ${2:Node}, ${3:Options}) $4' -p9651 -tp9652 -a(S'stop/1' -p9653 -S'stop(${1:Node}) $2' -p9654 -tp9655 -a(S'stop/2' -p9656 -S'stop(${1:Host}, ${2:Node}) $3' -p9657 -tp9658 -asS'inviso_autostart' -p9659 -(lp9660 -(S'autostart/1' -p9661 -S'autostart(${1:Param1}) $2' -p9662 -tp9663 -a(S'which_config_file/0' -p9664 -S'which_config_file() $1' -p9665 -tp9666 -asS'CosNotifyComm_PushSupplier' -p9667 -(lp9668 -(S'code_change/3' -p9669 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p9670 -tp9671 -a(S'disconnect_push_supplier/1' -p9672 -S'disconnect_push_supplier(${1:OE_THIS}) $2' -p9673 -tp9674 -a(S'disconnect_push_supplier/2' -p9675 -S'disconnect_push_supplier(${1:OE_THIS}, ${2:OE_Options}) $3' -p9676 -tp9677 -a(S'handle_call/3' -p9678 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p9679 -tp9680 -a(S'handle_cast/2' -p9681 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p9682 -tp9683 -a(S'handle_info/2' -p9684 -S'handle_info(${1:Param1}, ${2:State}) $3' -p9685 -tp9686 -a(S'init/1' -p9687 -S'init(${1:Env}) $2' -p9688 -tp9689 -a(S'oe_create/0' -p9690 -S'oe_create() $1' -p9691 -tp9692 -a(S'oe_create/1' -p9693 -S'oe_create(${1:Env}) $2' -p9694 -tp9695 -a(S'oe_create/2' -p9696 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p9697 -tp9698 -a(S'oe_create_link/0' -p9699 -S'oe_create_link() $1' -p9700 -tp9701 -a(S'oe_create_link/1' -p9702 -S'oe_create_link(${1:Env}) $2' -p9703 -tp9704 -a(S'oe_create_link/2' -p9705 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p9706 -tp9707 -a(S'oe_get_interface/0' -p9708 -S'oe_get_interface() $1' -p9709 -tp9710 -a(S'oe_is_a/1' -p9711 -S'oe_is_a(${1:Param1}) $2' -p9712 -tp9713 -a(S'oe_tc/1' -p9714 -S'oe_tc(${1:Param1}) $2' -p9715 -tp9716 -a(S'subscription_change/3' -p9717 -S'subscription_change(${1:OE_THIS}, ${2:Added}, ${3:Removed}) $4' -p9718 -tp9719 -a(S'subscription_change/4' -p9720 -S'subscription_change(${1:OE_THIS}, ${2:OE_Options}, ${3:Added}, ${4:Removed}) $5' -p9721 -tp9722 -a(S'terminate/2' -p9723 -S'terminate(${1:Reason}, ${2:State}) $3' -p9724 -tp9725 -a(S'typeID/0' -p9726 -S'typeID() $1' -p9727 -tp9728 -asS'odbc' -p9729 -(lp9730 -(S'code_change/3' -p9731 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p9732 -tp9733 -a(S'commit/2' -p9734 -S'commit(${1:ConnectionReference}, ${2:CommitMode}) $3' -p9735 -tp9736 -a(S'commit/3' -p9737 -S'commit() $1' -p9738 -tp9739 -a(S'connect/2' -p9740 -S'connect(${1:ConnectionStr}, ${2:Options}) $3' -p9741 -tp9742 -a(S'describe_table/2' -p9743 -S'describe_table(${1:ConnectionReference}, ${2:Table}) $3' -p9744 -tp9745 -a(S'describe_table/3' -p9746 -S'describe_table() $1' -p9747 -tp9748 -a(S'disconnect/1' -p9749 -S'disconnect(${1:ConnectionReference}) $2' -p9750 -tp9751 -a(S'first/1' -p9752 -S'first(${1:ConnectionReference}) $2' -p9753 -tp9754 -a(S'first/2' -p9755 -S'first(${1:ConnectionReference}, ${2:Param2}) $3' -p9756 -tp9757 -a(S'handle_call/3' -p9758 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p9759 -tp9760 -a(S'handle_cast/2' -p9761 -S'handle_cast(${1:Msg}, ${2:State}) $3' -p9762 -tp9763 -a(S'handle_info/2' -p9764 -S'handle_info(${1:Info}, ${2:State}) $3' -p9765 -tp9766 -a(S'init/1' -p9767 -S'init(${1:Args}) $2' -p9768 -tp9769 -a(S'last/1' -p9770 -S'last(${1:ConnectionReference}) $2' -p9771 -tp9772 -a(S'last/2' -p9773 -S'last(${1:ConnectionReference}, ${2:Param2}) $3' -p9774 -tp9775 -a(S'next/1' -p9776 -S'next(${1:ConnectionReference}) $2' -p9777 -tp9778 -a(S'next/2' -p9779 -S'next(${1:ConnectionReference}, ${2:Param2}) $3' -p9780 -tp9781 -a(S'param_query/3' -p9782 -S'param_query(${1:ConnectionReference}, ${2:SQLQuery}, ${3:Params}) $4' -p9783 -tp9784 -a(S'param_query/4' -p9785 -S'param_query() $1' -p9786 -tp9787 -a(S'prev/1' -p9788 -S'prev(${1:ConnectionReference}) $2' -p9789 -tp9790 -a(S'prev/2' -p9791 -S'prev(${1:ConnectionReference}, ${2:Param2}) $3' -p9792 -tp9793 -a(S'select/3' -p9794 -S'select(${1:ConnectionReference}, ${2:Position}, ${3:N}) $4' -p9795 -tp9796 -a(S'select/4' -p9797 -S'select() $1' -p9798 -tp9799 -a(S'select_count/2' -p9800 -S'select_count(${1:ConnectionReference}, ${2:SQLQuery}) $3' -p9801 -tp9802 -a(S'select_count/3' -p9803 -S'select_count() $1' -p9804 -tp9805 -a(S'sql_query/2' -p9806 -S'sql_query(${1:ConnectionReference}, ${2:SQLQuery}) $3' -p9807 -tp9808 -a(S'sql_query/3' -p9809 -S'sql_query() $1' -p9810 -tp9811 -a(S'start/0' -p9812 -S'start() $1' -p9813 -tp9814 -a(S'start/1' -p9815 -S'start(${1:Type}) $2' -p9816 -tp9817 -a(S'start_link_sup/1' -p9818 -S'start_link_sup(${1:Args}) $2' -p9819 -tp9820 -a(S'stop/0' -p9821 -S'stop() $1' -p9822 -tp9823 -a(S'terminate/2' -p9824 -S'terminate(${1:Reason}, ${2:Param2}) $3' -p9825 -tp9826 -asS'mnesia_event' -p9827 -(lp9828 -(S'code_change/3' -p9829 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p9830 -tp9831 -a(S'handle_call/2' -p9832 -S'handle_call(${1:Msg}, ${2:State}) $3' -p9833 -tp9834 -a(S'handle_event/2' -p9835 -S'handle_event(${1:Event}, ${2:State}) $3' -p9836 -tp9837 -a(S'handle_info/2' -p9838 -S'handle_info(${1:Msg}, ${2:State}) $3' -p9839 -tp9840 -a(S'init/1' -p9841 -S'init(${1:Args}) $2' -p9842 -tp9843 -a(S'terminate/2' -p9844 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p9845 -tp9846 -asS'megaco_binary_encoder' -p9847 -(lp9848 -(S'decode_message/2' -p9849 -S'decode_message(${1:EC}, ${2:Binary}) $3' -p9850 -tp9851 -a(S'decode_message/3' -p9852 -S'decode_message(${1:EC}, ${2:Param2}, ${3:Binary}) $4' -p9853 -tp9854 -a(S'decode_mini_message/3' -p9855 -S'decode_mini_message(${1:EC}, ${2:Param2}, ${3:Bin}) $4' -p9856 -tp9857 -a(S'encode_action_reply/3' -p9858 -S'encode_action_reply(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p9859 -tp9860 -a(S'encode_action_request/3' -p9861 -S'encode_action_request(${1:EC}, ${2:Param2}, ${3:ActReq}) $4' -p9862 -tp9863 -a(S'encode_action_requests/3' -p9864 -S'encode_action_requests(${1:EC}, ${2:Param2}, ${3:ActReqs}) $4' -p9865 -tp9866 -a(S'encode_message/2' -p9867 -S'encode_message() $1' -p9868 -tp9869 -a(S'encode_message/3' -p9870 -S'encode_message(${1:EC}, ${2:Param2}, ${3:MegaMsg}) $4' -p9871 -tp9872 -a(S'encode_transaction/3' -p9873 -S'encode_transaction(${1:EC}, ${2:Param2}, ${3:Trans}) $4' -p9874 -tp9875 -a(S'version_of/2' -p9876 -S'version_of(${1:EC}, ${2:Binary}) $3' -p9877 -tp9878 -asS'httpd_log' -p9879 -(lp9880 -(S'access_entry/8' -p9881 -S'access_entry() $1' -p9882 -tp9883 -a(S'error_entry/5' -p9884 -S'error_entry(${1:ConfigDB}, ${2:RemoteHost}, ${3:URI}, ${4:Date}, ${5:Reason}) $6' -p9885 -tp9886 -a(S'error_report_entry/5' -p9887 -S'error_report_entry(${1:Log}, ${2:NoLog}, ${3:ConfigDb}, ${4:Date}, ${5:ErrorStr}) $6' -p9888 -tp9889 -a(S'security_entry/5' -p9890 -S'security_entry(${1:Log}, ${2:NoLog}, ${3:Param3}, ${4:Date}, ${5:Reason}) $6' -p9891 -tp9892 -asS'CosNotifyChannelAdmin_ProxyNotFound' -p9893 -(lp9894 -(S'id/0' -p9895 -S'id() $1' -p9896 -tp9897 -a(S'name/0' -p9898 -S'name() $1' -p9899 -tp9900 -a(S'tc/0' -p9901 -S'tc() $1' -p9902 -tp9903 -asS'orber_ifr_fixeddef' -p9904 -(lp9905 -(S"'_get_def_kind'/1" -p9906 -S"'_get_def_kind'() $1" -p9907 -tp9908 -a(S"'_get_digits'/1" -p9909 -S"'_get_digits'() $1" -p9910 -tp9911 -a(S"'_get_scale'/1" -p9912 -S"'_get_scale'() $1" -p9913 -tp9914 -a(S"'_get_type'/1" -p9915 -S"'_get_type'() $1" -p9916 -tp9917 -a(S"'_set_digits'/2" -p9918 -S"'_set_digits'() $1" -p9919 -tp9920 -a(S"'_set_scale'/2" -p9921 -S"'_set_scale'() $1" -p9922 -tp9923 -a(S'cleanup_for_destroy/1' -p9924 -S'cleanup_for_destroy() $1' -p9925 -tp9926 -a(S'destroy/1' -p9927 -S'destroy() $1' -p9928 -tp9929 -asS'wxGLCanvas' -p9930 -(lp9931 -(S'cacheBestSize/2' -p9932 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p9933 -tp9934 -a(S'captureMouse/1' -p9935 -S'captureMouse(${1:This}) $2' -p9936 -tp9937 -a(S'center/1' -p9938 -S'center(${1:This}) $2' -p9939 -tp9940 -a(S'center/2' -p9941 -S'center(${1:This}, ${2:Options}) $3' -p9942 -tp9943 -a(S'centerOnParent/1' -p9944 -S'centerOnParent(${1:This}) $2' -p9945 -tp9946 -a(S'centerOnParent/2' -p9947 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p9948 -tp9949 -a(S'centre/1' -p9950 -S'centre(${1:This}) $2' -p9951 -tp9952 -a(S'centre/2' -p9953 -S'centre(${1:This}, ${2:Options}) $3' -p9954 -tp9955 -a(S'centreOnParent/1' -p9956 -S'centreOnParent(${1:This}) $2' -p9957 -tp9958 -a(S'centreOnParent/2' -p9959 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p9960 -tp9961 -a(S'clearBackground/1' -p9962 -S'clearBackground(${1:This}) $2' -p9963 -tp9964 -a(S'clientToScreen/2' -p9965 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p9966 -tp9967 -a(S'clientToScreen/3' -p9968 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p9969 -tp9970 -a(S'close/1' -p9971 -S'close(${1:This}) $2' -p9972 -tp9973 -a(S'close/2' -p9974 -S'close(${1:This}, ${2:Options}) $3' -p9975 -tp9976 -a(S'connect/2' -p9977 -S'connect(${1:This}, ${2:EventType}) $3' -p9978 -tp9979 -a(S'connect/3' -p9980 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p9981 -tp9982 -a(S'convertDialogToPixels/2' -p9983 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p9984 -tp9985 -a(S'convertPixelsToDialog/2' -p9986 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p9987 -tp9988 -a(S'destroy/1' -p9989 -S'destroy(${1:This}) $2' -p9990 -tp9991 -a(S'destroyChildren/1' -p9992 -S'destroyChildren(${1:This}) $2' -p9993 -tp9994 -a(S'disable/1' -p9995 -S'disable(${1:This}) $2' -p9996 -tp9997 -a(S'disconnect/1' -p9998 -S'disconnect(${1:This}) $2' -p9999 -tp10000 -a(S'disconnect/2' -p10001 -S'disconnect(${1:This}, ${2:EventType}) $3' -p10002 -tp10003 -a(S'disconnect/3' -p10004 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p10005 -tp10006 -a(S'enable/1' -p10007 -S'enable(${1:This}) $2' -p10008 -tp10009 -a(S'enable/2' -p10010 -S'enable(${1:This}, ${2:Options}) $3' -p10011 -tp10012 -a(S'findWindow/2' -p10013 -S'findWindow(${1:This}, ${2:Winid}) $3' -p10014 -tp10015 -a(S'fit/1' -p10016 -S'fit(${1:This}) $2' -p10017 -tp10018 -a(S'fitInside/1' -p10019 -S'fitInside(${1:This}) $2' -p10020 -tp10021 -a(S'freeze/1' -p10022 -S'freeze(${1:This}) $2' -p10023 -tp10024 -a(S'getAcceleratorTable/1' -p10025 -S'getAcceleratorTable(${1:This}) $2' -p10026 -tp10027 -a(S'getBackgroundColour/1' -p10028 -S'getBackgroundColour(${1:This}) $2' -p10029 -tp10030 -a(S'getBackgroundStyle/1' -p10031 -S'getBackgroundStyle(${1:This}) $2' -p10032 -tp10033 -a(S'getBestSize/1' -p10034 -S'getBestSize(${1:This}) $2' -p10035 -tp10036 -a(S'getCaret/1' -p10037 -S'getCaret(${1:This}) $2' -p10038 -tp10039 -a(S'getCharHeight/1' -p10040 -S'getCharHeight(${1:This}) $2' -p10041 -tp10042 -a(S'getCharWidth/1' -p10043 -S'getCharWidth(${1:This}) $2' -p10044 -tp10045 -a(S'getChildren/1' -p10046 -S'getChildren(${1:This}) $2' -p10047 -tp10048 -a(S'getClientSize/1' -p10049 -S'getClientSize(${1:This}) $2' -p10050 -tp10051 -a(S'getContainingSizer/1' -p10052 -S'getContainingSizer(${1:This}) $2' -p10053 -tp10054 -a(S'getContext/1' -p10055 -S'getContext(${1:This}) $2' -p10056 -tp10057 -a(S'getCursor/1' -p10058 -S'getCursor(${1:This}) $2' -p10059 -tp10060 -a(S'getDropTarget/1' -p10061 -S'getDropTarget(${1:This}) $2' -p10062 -tp10063 -a(S'getEventHandler/1' -p10064 -S'getEventHandler(${1:This}) $2' -p10065 -tp10066 -a(S'getExtraStyle/1' -p10067 -S'getExtraStyle(${1:This}) $2' -p10068 -tp10069 -a(S'getFont/1' -p10070 -S'getFont(${1:This}) $2' -p10071 -tp10072 -a(S'getForegroundColour/1' -p10073 -S'getForegroundColour(${1:This}) $2' -p10074 -tp10075 -a(S'getGrandParent/1' -p10076 -S'getGrandParent(${1:This}) $2' -p10077 -tp10078 -a(S'getHandle/1' -p10079 -S'getHandle(${1:This}) $2' -p10080 -tp10081 -a(S'getHelpText/1' -p10082 -S'getHelpText(${1:This}) $2' -p10083 -tp10084 -a(S'getId/1' -p10085 -S'getId(${1:This}) $2' -p10086 -tp10087 -a(S'getLabel/1' -p10088 -S'getLabel(${1:This}) $2' -p10089 -tp10090 -a(S'getMaxSize/1' -p10091 -S'getMaxSize(${1:This}) $2' -p10092 -tp10093 -a(S'getMinSize/1' -p10094 -S'getMinSize(${1:This}) $2' -p10095 -tp10096 -a(S'getName/1' -p10097 -S'getName(${1:This}) $2' -p10098 -tp10099 -a(S'getParent/1' -p10100 -S'getParent(${1:This}) $2' -p10101 -tp10102 -a(S'getPosition/1' -p10103 -S'getPosition(${1:This}) $2' -p10104 -tp10105 -a(S'getRect/1' -p10106 -S'getRect(${1:This}) $2' -p10107 -tp10108 -a(S'getScreenPosition/1' -p10109 -S'getScreenPosition(${1:This}) $2' -p10110 -tp10111 -a(S'getScreenRect/1' -p10112 -S'getScreenRect(${1:This}) $2' -p10113 -tp10114 -a(S'getScrollPos/2' -p10115 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p10116 -tp10117 -a(S'getScrollRange/2' -p10118 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p10119 -tp10120 -a(S'getScrollThumb/2' -p10121 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p10122 -tp10123 -a(S'getSize/1' -p10124 -S'getSize(${1:This}) $2' -p10125 -tp10126 -a(S'getSizer/1' -p10127 -S'getSizer(${1:This}) $2' -p10128 -tp10129 -a(S'getTextExtent/2' -p10130 -S'getTextExtent(${1:This}, ${2:String}) $3' -p10131 -tp10132 -a(S'getTextExtent/3' -p10133 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p10134 -tp10135 -a(S'getToolTip/1' -p10136 -S'getToolTip(${1:This}) $2' -p10137 -tp10138 -a(S'getUpdateRegion/1' -p10139 -S'getUpdateRegion(${1:This}) $2' -p10140 -tp10141 -a(S'getVirtualSize/1' -p10142 -S'getVirtualSize(${1:This}) $2' -p10143 -tp10144 -a(S'getWindowStyleFlag/1' -p10145 -S'getWindowStyleFlag(${1:This}) $2' -p10146 -tp10147 -a(S'getWindowVariant/1' -p10148 -S'getWindowVariant(${1:This}) $2' -p10149 -tp10150 -a(S'hasCapture/1' -p10151 -S'hasCapture(${1:This}) $2' -p10152 -tp10153 -a(S'hasScrollbar/2' -p10154 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p10155 -tp10156 -a(S'hasTransparentBackground/1' -p10157 -S'hasTransparentBackground(${1:This}) $2' -p10158 -tp10159 -a(S'hide/1' -p10160 -S'hide(${1:This}) $2' -p10161 -tp10162 -a(S'inheritAttributes/1' -p10163 -S'inheritAttributes(${1:This}) $2' -p10164 -tp10165 -a(S'initDialog/1' -p10166 -S'initDialog(${1:This}) $2' -p10167 -tp10168 -a(S'invalidateBestSize/1' -p10169 -S'invalidateBestSize(${1:This}) $2' -p10170 -tp10171 -a(S'isEnabled/1' -p10172 -S'isEnabled(${1:This}) $2' -p10173 -tp10174 -a(S'isExposed/2' -p10175 -S'isExposed(${1:This}, ${2:Pt}) $3' -p10176 -tp10177 -a(S'isExposed/3' -p10178 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p10179 -tp10180 -a(S'isExposed/5' -p10181 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p10182 -tp10183 -a(S'isRetained/1' -p10184 -S'isRetained(${1:This}) $2' -p10185 -tp10186 -a(S'isShown/1' -p10187 -S'isShown(${1:This}) $2' -p10188 -tp10189 -a(S'isTopLevel/1' -p10190 -S'isTopLevel(${1:This}) $2' -p10191 -tp10192 -a(S'layout/1' -p10193 -S'layout(${1:This}) $2' -p10194 -tp10195 -a(S'lineDown/1' -p10196 -S'lineDown(${1:This}) $2' -p10197 -tp10198 -a(S'lineUp/1' -p10199 -S'lineUp(${1:This}) $2' -p10200 -tp10201 -a(S'lower/1' -p10202 -S'lower(${1:This}) $2' -p10203 -tp10204 -a(S'makeModal/1' -p10205 -S'makeModal(${1:This}) $2' -p10206 -tp10207 -a(S'makeModal/2' -p10208 -S'makeModal(${1:This}, ${2:Options}) $3' -p10209 -tp10210 -a(S'move/2' -p10211 -S'move(${1:This}, ${2:Pt}) $3' -p10212 -tp10213 -a(S'move/3' -p10214 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p10215 -tp10216 -a(S'move/4' -p10217 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p10218 -tp10219 -a(S'moveAfterInTabOrder/2' -p10220 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p10221 -tp10222 -a(S'moveBeforeInTabOrder/2' -p10223 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p10224 -tp10225 -a(S'navigate/1' -p10226 -S'navigate(${1:This}) $2' -p10227 -tp10228 -a(S'navigate/2' -p10229 -S'navigate(${1:This}, ${2:Options}) $3' -p10230 -tp10231 -a(S'new/1' -p10232 -S'new(${1:Parent}) $2' -p10233 -tp10234 -a(S'new/2' -p10235 -S'new(${1:Parent}, ${2:Shared}) $3' -p10236 -tp10237 -a(S'new/3' -p10238 -S'new(${1:Parent}, ${2:Shared}, ${3:Param3}) $4' -p10239 -tp10240 -a(S'pageDown/1' -p10241 -S'pageDown(${1:This}) $2' -p10242 -tp10243 -a(S'pageUp/1' -p10244 -S'pageUp(${1:This}) $2' -p10245 -tp10246 -a(S'parent_class/1' -p10247 -S'parent_class(${1:Param1}) $2' -p10248 -tp10249 -a(S'popEventHandler/1' -p10250 -S'popEventHandler(${1:This}) $2' -p10251 -tp10252 -a(S'popEventHandler/2' -p10253 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p10254 -tp10255 -a(S'popupMenu/2' -p10256 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p10257 -tp10258 -a(S'popupMenu/3' -p10259 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p10260 -tp10261 -a(S'popupMenu/4' -p10262 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p10263 -tp10264 -a(S'raise/1' -p10265 -S'raise(${1:This}) $2' -p10266 -tp10267 -a(S'refresh/1' -p10268 -S'refresh(${1:This}) $2' -p10269 -tp10270 -a(S'refresh/2' -p10271 -S'refresh(${1:This}, ${2:Options}) $3' -p10272 -tp10273 -a(S'refreshRect/2' -p10274 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p10275 -tp10276 -a(S'refreshRect/3' -p10277 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p10278 -tp10279 -a(S'releaseMouse/1' -p10280 -S'releaseMouse(${1:This}) $2' -p10281 -tp10282 -a(S'removeChild/2' -p10283 -S'removeChild(${1:This}, ${2:Child}) $3' -p10284 -tp10285 -a(S'reparent/2' -p10286 -S'reparent(${1:This}, ${2:NewParent}) $3' -p10287 -tp10288 -a(S'screenToClient/1' -p10289 -S'screenToClient(${1:This}) $2' -p10290 -tp10291 -a(S'screenToClient/2' -p10292 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p10293 -tp10294 -a(S'scrollLines/2' -p10295 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p10296 -tp10297 -a(S'scrollPages/2' -p10298 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p10299 -tp10300 -a(S'scrollWindow/3' -p10301 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p10302 -tp10303 -a(S'scrollWindow/4' -p10304 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p10305 -tp10306 -a(S'setAcceleratorTable/2' -p10307 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p10308 -tp10309 -a(S'setAutoLayout/2' -p10310 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p10311 -tp10312 -a(S'setBackgroundColour/2' -p10313 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p10314 -tp10315 -a(S'setBackgroundStyle/2' -p10316 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p10317 -tp10318 -a(S'setCaret/2' -p10319 -S'setCaret(${1:This}, ${2:Caret}) $3' -p10320 -tp10321 -a(S'setClientSize/2' -p10322 -S'setClientSize(${1:This}, ${2:Size}) $3' -p10323 -tp10324 -a(S'setClientSize/3' -p10325 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p10326 -tp10327 -a(S'setContainingSizer/2' -p10328 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p10329 -tp10330 -a(S'setCurrent/1' -p10331 -S'setCurrent(${1:This}) $2' -p10332 -tp10333 -a(S'setCursor/2' -p10334 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p10335 -tp10336 -a(S'setDropTarget/2' -p10337 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p10338 -tp10339 -a(S'setExtraStyle/2' -p10340 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p10341 -tp10342 -a(S'setFocus/1' -p10343 -S'setFocus(${1:This}) $2' -p10344 -tp10345 -a(S'setFocusFromKbd/1' -p10346 -S'setFocusFromKbd(${1:This}) $2' -p10347 -tp10348 -a(S'setFont/2' -p10349 -S'setFont(${1:This}, ${2:Font}) $3' -p10350 -tp10351 -a(S'setForegroundColour/2' -p10352 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p10353 -tp10354 -a(S'setHelpText/2' -p10355 -S'setHelpText(${1:This}, ${2:Text}) $3' -p10356 -tp10357 -a(S'setId/2' -p10358 -S'setId(${1:This}, ${2:Winid}) $3' -p10359 -tp10360 -a(S'setLabel/2' -p10361 -S'setLabel(${1:This}, ${2:Label}) $3' -p10362 -tp10363 -a(S'setMaxSize/2' -p10364 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p10365 -tp10366 -a(S'setMinSize/2' -p10367 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p10368 -tp10369 -a(S'setName/2' -p10370 -S'setName(${1:This}, ${2:Name}) $3' -p10371 -tp10372 -a(S'setOwnBackgroundColour/2' -p10373 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p10374 -tp10375 -a(S'setOwnFont/2' -p10376 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p10377 -tp10378 -a(S'setOwnForegroundColour/2' -p10379 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p10380 -tp10381 -a(S'setPalette/2' -p10382 -S'setPalette(${1:This}, ${2:Pal}) $3' -p10383 -tp10384 -a(S'setScrollPos/3' -p10385 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p10386 -tp10387 -a(S'setScrollPos/4' -p10388 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p10389 -tp10390 -a(S'setScrollbar/5' -p10391 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p10392 -tp10393 -a(S'setScrollbar/6' -p10394 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p10395 -tp10396 -a(S'setSize/2' -p10397 -S'setSize(${1:This}, ${2:Rect}) $3' -p10398 -tp10399 -a(S'setSize/3' -p10400 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p10401 -tp10402 -a(S'setSize/5' -p10403 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p10404 -tp10405 -a(S'setSize/6' -p10406 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p10407 -tp10408 -a(S'setSizeHints/2' -p10409 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p10410 -tp10411 -a(S'setSizeHints/3' -p10412 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p10413 -tp10414 -a(S'setSizeHints/4' -p10415 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p10416 -tp10417 -a(S'setSizer/2' -p10418 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p10419 -tp10420 -a(S'setSizer/3' -p10421 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p10422 -tp10423 -a(S'setSizerAndFit/2' -p10424 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p10425 -tp10426 -a(S'setSizerAndFit/3' -p10427 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p10428 -tp10429 -a(S'setThemeEnabled/2' -p10430 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p10431 -tp10432 -a(S'setToolTip/2' -p10433 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p10434 -tp10435 -a(S'setVirtualSize/2' -p10436 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p10437 -tp10438 -a(S'setVirtualSize/3' -p10439 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p10440 -tp10441 -a(S'setVirtualSizeHints/2' -p10442 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p10443 -tp10444 -a(S'setVirtualSizeHints/3' -p10445 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p10446 -tp10447 -a(S'setVirtualSizeHints/4' -p10448 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p10449 -tp10450 -a(S'setWindowStyle/2' -p10451 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p10452 -tp10453 -a(S'setWindowStyleFlag/2' -p10454 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p10455 -tp10456 -a(S'setWindowVariant/2' -p10457 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p10458 -tp10459 -a(S'shouldInheritColours/1' -p10460 -S'shouldInheritColours(${1:This}) $2' -p10461 -tp10462 -a(S'show/1' -p10463 -S'show(${1:This}) $2' -p10464 -tp10465 -a(S'show/2' -p10466 -S'show(${1:This}, ${2:Options}) $3' -p10467 -tp10468 -a(S'swapBuffers/1' -p10469 -S'swapBuffers(${1:This}) $2' -p10470 -tp10471 -a(S'thaw/1' -p10472 -S'thaw(${1:This}) $2' -p10473 -tp10474 -a(S'transferDataFromWindow/1' -p10475 -S'transferDataFromWindow(${1:This}) $2' -p10476 -tp10477 -a(S'transferDataToWindow/1' -p10478 -S'transferDataToWindow(${1:This}) $2' -p10479 -tp10480 -a(S'update/1' -p10481 -S'update(${1:This}) $2' -p10482 -tp10483 -a(S'updateWindowUI/1' -p10484 -S'updateWindowUI(${1:This}) $2' -p10485 -tp10486 -a(S'updateWindowUI/2' -p10487 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p10488 -tp10489 -a(S'validate/1' -p10490 -S'validate(${1:This}) $2' -p10491 -tp10492 -a(S'warpPointer/3' -p10493 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p10494 -tp10495 -asS'appmon_lb' -p10496 -(lp10497 -(S'add_apps/3' -p10498 -S'add_apps() $1' -p10499 -tp10500 -a(S'add_node/2' -p10501 -S'add_node() $1' -p10502 -tp10503 -a(S'init/1' -p10504 -S'init() $1' -p10505 -tp10506 -a(S'open_win/2' -p10507 -S'open_win() $1' -p10508 -tp10509 -a(S'remove_app/3' -p10510 -S'remove_app() $1' -p10511 -tp10512 -a(S'remove_node/2' -p10513 -S'remove_node() $1' -p10514 -tp10515 -a(S'start/1' -p10516 -S'start() $1' -p10517 -tp10518 -a(S'stop/1' -p10519 -S'stop() $1' -p10520 -tp10521 -a(S'update_status/3' -p10522 -S'update_status() $1' -p10523 -tp10524 -asS'CosNotification_NamedPropertyRangeSeq' -p10525 -(lp10526 -(S'id/0' -p10527 -S'id() $1' -p10528 -tp10529 -a(S'name/0' -p10530 -S'name() $1' -p10531 -tp10532 -a(S'tc/0' -p10533 -S'tc() $1' -p10534 -tp10535 -asS'event_test' -p10536 -(lp10537 -(S'init/0' -p10538 -S'init() $1' -p10539 -tp10540 -a(S'start/0' -p10541 -S'start() $1' -p10542 -tp10543 -asS'oe_CosTimerEvent' -p10544 -(lp10545 -(S'oe_dependency/0' -p10546 -S'oe_dependency() $1' -p10547 -tp10548 -a(S'oe_get_module/5' -p10549 -S'oe_get_module(${1:OE_IFR}, ${2:OE_Parent}, ${3:ID}, ${4:Name}, ${5:Version}) $6' -p10550 -tp10551 -a(S'oe_register/0' -p10552 -S'oe_register() $1' -p10553 -tp10554 -a(S'oe_unregister/0' -p10555 -S'oe_unregister() $1' -p10556 -tp10557 -asS'ssh_xfer' -p10558 -(lp10559 -(S'attach/2' -p10560 -S'attach(${1:CM}, ${2:Opts}) $3' -p10561 -tp10562 -a(S'close/3' -p10563 -S'close(${1:XF}, ${2:ReqID}, ${3:Handle}) $4' -p10564 -tp10565 -a(S'connect/3' -p10566 -S'connect(${1:Host}, ${2:Port}, ${3:Opts}) $4' -p10567 -tp10568 -a(S'decode_ATTR/2' -p10569 -S'decode_ATTR(${1:Vsn}, ${2:Param2}) $3' -p10570 -tp10571 -a(S'decode_ace_mask/1' -p10572 -S'decode_ace_mask(${1:F}) $2' -p10573 -tp10574 -a(S'decode_ext/1' -p10575 -S'decode_ext(${1:Param1}) $2' -p10576 -tp10577 -a(S'decode_open_flags/2' -p10578 -S'decode_open_flags() $1' -p10579 -tp10580 -a(S'encode_ATTR/2' -p10581 -S'encode_ATTR(${1:Vsn}, ${2:A}) $3' -p10582 -tp10583 -a(S'encode_erlang_status/1' -p10584 -S'encode_erlang_status(${1:Status}) $2' -p10585 -tp10586 -a(S'encode_open_flags/1' -p10587 -S'encode_open_flags(${1:Flags}) $2' -p10588 -tp10589 -a(S'extended/4' -p10590 -S'extended(${1:XF}, ${2:ReqID}, ${3:Request}, ${4:Data}) $5' -p10591 -tp10592 -a(S'fsetstat/4' -p10593 -S'fsetstat(${1:XF}, ${2:ReqID}, ${3:Handle}, ${4:Attrs}) $5' -p10594 -tp10595 -a(S'fstat/4' -p10596 -S'fstat(${1:XF}, ${2:ReqID}, ${3:Handle}, ${4:Flags}) $5' -p10597 -tp10598 -a(S'lstat/4' -p10599 -S'lstat(${1:XF}, ${2:ReqID}, ${3:Path}, ${4:Flags}) $5' -p10600 -tp10601 -a(S'mkdir/4' -p10602 -S'mkdir(${1:XF}, ${2:ReqID}, ${3:Path}, ${4:Attrs}) $5' -p10603 -tp10604 -a(S'open/6' -p10605 -S'open(${1:XF}, ${2:ReqID}, ${3:FileName}, ${4:Access}, ${5:Flags}, ${6:Attrs}) $7' -p10606 -tp10607 -a(S'opendir/3' -p10608 -S'opendir(${1:XF}, ${2:ReqID}, ${3:DirName}) $4' -p10609 -tp10610 -a(S'protocol_version_request/1' -p10611 -S'protocol_version_request(${1:XF}) $2' -p10612 -tp10613 -a(S'read/5' -p10614 -S'read(${1:XF}, ${2:ReqID}, ${3:Handle}, ${4:Offset}, ${5:Length}) $6' -p10615 -tp10616 -a(S'readdir/3' -p10617 -S'readdir(${1:XF}, ${2:ReqID}, ${3:Handle}) $4' -p10618 -tp10619 -a(S'readlink/3' -p10620 -S'readlink(${1:XF}, ${2:ReqID}, ${3:Path}) $4' -p10621 -tp10622 -a(S'realpath/3' -p10623 -S'realpath(${1:XF}, ${2:ReqID}, ${3:Path}) $4' -p10624 -tp10625 -a(S'remove/3' -p10626 -S'remove(${1:XF}, ${2:ReqID}, ${3:File}) $4' -p10627 -tp10628 -a(S'rename/5' -p10629 -S'rename(${1:XF}, ${2:ReqID}, ${3:Old}, ${4:New}, ${5:Flags}) $6' -p10630 -tp10631 -a(S'rmdir/3' -p10632 -S'rmdir(${1:XF}, ${2:ReqID}, ${3:Dir}) $4' -p10633 -tp10634 -a(S'setstat/4' -p10635 -S'setstat(${1:XF}, ${2:ReqID}, ${3:Path}, ${4:Attrs}) $5' -p10636 -tp10637 -a(S'stat/4' -p10638 -S'stat(${1:XF}, ${2:ReqID}, ${3:Path}, ${4:Flags}) $5' -p10639 -tp10640 -a(S'symlink/4' -p10641 -S'symlink(${1:XF}, ${2:ReqID}, ${3:LinkPath}, ${4:TargetPath}) $5' -p10642 -tp10643 -a(S'write/5' -p10644 -S'write(${1:XF}, ${2:ReqID}, ${3:Handle}, ${4:Offset}, ${5:Data}) $6' -p10645 -tp10646 -a(S'xf_reply/2' -p10647 -S'xf_reply(${1:Param1}, ${2:Param2}) $3' -p10648 -tp10649 -a(S'xf_send_attr/3' -p10650 -S'xf_send_attr(${1:Param1}, ${2:ReqId}, ${3:Attr}) $4' -p10651 -tp10652 -a(S'xf_send_data/3' -p10653 -S'xf_send_data(${1:Param1}, ${2:ReqId}, ${3:Data}) $4' -p10654 -tp10655 -a(S'xf_send_handle/3' -p10656 -S'xf_send_handle() $1' -p10657 -tp10658 -a(S'xf_send_name/4' -p10659 -S'xf_send_name(${1:XF}, ${2:ReqId}, ${3:Name}, ${4:Attr}) $5' -p10660 -tp10661 -a(S'xf_send_names/3' -p10662 -S'xf_send_names() $1' -p10663 -tp10664 -a(S'xf_send_reply/3' -p10665 -S'xf_send_reply(${1:Param1}, ${2:Op}, ${3:Arg}) $4' -p10666 -tp10667 -a(S'xf_send_status/3' -p10668 -S'xf_send_status(${1:XF}, ${2:ReqId}, ${3:ErrorCode}) $4' -p10669 -tp10670 -a(S'xf_send_status/4' -p10671 -S'xf_send_status(${1:XF}, ${2:ReqId}, ${3:ErrorCode}, ${4:ErrorMsg}) $5' -p10672 -tp10673 -a(S'xf_send_status/5' -p10674 -S'xf_send_status() $1' -p10675 -tp10676 -asS'io_lib_fread' -p10677 -(lp10678 -(S'fread/2' -p10679 -S'fread(${1:Format}, ${2:String}) $3' -p10680 -tp10681 -a(S'fread/3' -p10682 -S'fread(${1:Continuation}, ${2:String}, ${3:Format}) $4' -p10683 -tp10684 -asS'beam_dict' -p10685 -(lp10686 -(S'atom/2' -p10687 -S'atom(${1:Atom}, ${2:Dict}) $3' -p10688 -tp10689 -a(S'atom_table/1' -p10690 -S'atom_table(${1:Param1}) $2' -p10691 -tp10692 -a(S'export/4' -p10693 -S'export(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p10694 -tp10695 -a(S'export_table/1' -p10696 -S'export_table(${1:Param1}) $2' -p10697 -tp10698 -a(S'fname/2' -p10699 -S'fname(${1:Name}, ${2:Dict}) $3' -p10700 -tp10701 -a(S'highest_opcode/1' -p10702 -S'highest_opcode(${1:Param1}) $2' -p10703 -tp10704 -a(S'import/4' -p10705 -S'import(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p10706 -tp10707 -a(S'import_table/1' -p10708 -S'import_table(${1:Param1}) $2' -p10709 -tp10710 -a(S'lambda/3' -p10711 -S'lambda(${1:Lbl}, ${2:NumFree}, ${3:Dict}) $4' -p10712 -tp10713 -a(S'lambda_table/1' -p10714 -S'lambda_table(${1:Param1}) $2' -p10715 -tp10716 -a(S'line/2' -p10717 -S'line(${1:Param1}, ${2:Dict}) $3' -p10718 -tp10719 -a(S'line_table/1' -p10720 -S'line_table(${1:Param1}) $2' -p10721 -tp10722 -a(S'literal/2' -p10723 -S'literal(${1:Lit}, ${2:Dict}) $3' -p10724 -tp10725 -a(S'literal_table/1' -p10726 -S'literal_table(${1:Param1}) $2' -p10727 -tp10728 -a(S'local/4' -p10729 -S'local(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p10730 -tp10731 -a(S'local_table/1' -p10732 -S'local_table(${1:Param1}) $2' -p10733 -tp10734 -a(S'new/0' -p10735 -S'new() $1' -p10736 -tp10737 -a(S'opcode/2' -p10738 -S'opcode(${1:Op}, ${2:Dict}) $3' -p10739 -tp10740 -a(S'string/2' -p10741 -S'string(${1:Str}, ${2:Dict}) $3' -p10742 -tp10743 -a(S'string_table/1' -p10744 -S'string_table(${1:Param1}) $2' -p10745 -tp10746 -asS'beam_split' -p10747 -(lp10748 -(S'module/2' -p10749 -S'module(${1:Param1}, ${2:Param2}) $3' -p10750 -tp10751 -asS'gstk_gs' -p10752 -(lp10753 -(S'config/3' -p10754 -S'config(${1:DB}, ${2:Gstkid}, ${3:Opts}) $4' -p10755 -tp10756 -a(S'mk_create_opts_for_child/4' -p10757 -S'mk_create_opts_for_child(${1:DB}, ${2:Cgstkid}, ${3:Pgstkid}, ${4:Opts}) $5' -p10758 -tp10759 -a(S'option/5' -p10760 -S'option(${1:Option}, ${2:Gstkid}, ${3:Param3}, ${4:Param4}, ${5:Param5}) $6' -p10761 -tp10762 -a(S'read/3' -p10763 -S'read(${1:DB}, ${2:Gstkid}, ${3:Opt}) $4' -p10764 -tp10765 -a(S'read_option/5' -p10766 -S'read_option(${1:Option}, ${2:Gstkid}, ${3:Param3}, ${4:Param4}, ${5:Param5}) $6' -p10767 -tp10768 -asS'CosNotifyFilter_MappingConstraintInfoSeq' -p10769 -(lp10770 -(S'id/0' -p10771 -S'id() $1' -p10772 -tp10773 -a(S'name/0' -p10774 -S'name() $1' -p10775 -tp10776 -a(S'tc/0' -p10777 -S'tc() $1' -p10778 -tp10779 -asS'CosTransactions_Terminator_impl' -p10780 -(lp10781 -(S'code_change/3' -p10782 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p10783 -tp10784 -a(S'commit/3' -p10785 -S'commit(${1:Self}, ${2:State}, ${3:Heuristics}) $4' -p10786 -tp10787 -a(S'handle_call/3' -p10788 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p10789 -tp10790 -a(S'handle_cast/2' -p10791 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p10792 -tp10793 -a(S'handle_info/2' -p10794 -S'handle_info(${1:Info}, ${2:State}) $3' -p10795 -tp10796 -a(S'init/1' -p10797 -S'init(${1:State}) $2' -p10798 -tp10799 -a(S'rollback/2' -p10800 -S'rollback(${1:Param1}, ${2:State}) $3' -p10801 -tp10802 -a(S'terminate/2' -p10803 -S'terminate(${1:Reason}, ${2:State}) $3' -p10804 -tp10805 -asS'dyntrace' -p10806 -(lp10807 -(S'available/0' -p10808 -S'available() $1' -p10809 -tp10810 -a(S'get_tag/0' -p10811 -S'get_tag() $1' -p10812 -tp10813 -a(S'get_tag_data/0' -p10814 -S'get_tag_data() $1' -p10815 -tp10816 -a(S'p/0' -p10817 -S'p() $1' -p10818 -tp10819 -a(S'p/1' -p10820 -S'p(${1:I1}) $2' -p10821 -tp10822 -a(S'p/2' -p10823 -S'p(${1:I1}, ${2:I2}) $3' -p10824 -tp10825 -a(S'p/3' -p10826 -S'p(${1:I1}, ${2:I2}, ${3:I3}) $4' -p10827 -tp10828 -a(S'p/4' -p10829 -S'p(${1:I1}, ${2:I2}, ${3:I3}, ${4:I4}) $5' -p10830 -tp10831 -a(S'p/5' -p10832 -S'p(${1:I1}, ${2:I2}, ${3:I3}, ${4:I4}, ${5:S1}) $6' -p10833 -tp10834 -a(S'p/6' -p10835 -S'p(${1:I1}, ${2:I2}, ${3:I3}, ${4:I4}, ${5:S1}, ${6:S2}) $7' -p10836 -tp10837 -a(S'p/7' -p10838 -S'p(${1:I1}, ${2:I2}, ${3:I3}, ${4:I4}, ${5:S1}, ${6:S2}, ${7:S3}) $8' -p10839 -tp10840 -a(S'p/8' -p10841 -S'p(${1:I1}, ${2:I2}, ${3:I3}, ${4:I4}, ${5:S1}, ${6:S2}, ${7:S3}, ${8:S4}) $9' -p10842 -tp10843 -a(S'put_tag/1' -p10844 -S'put_tag(${1:Data}) $2' -p10845 -tp10846 -a(S'restore_tag/1' -p10847 -S'restore_tag(${1:T}) $2' -p10848 -tp10849 -a(S'scaff/0' -p10850 -S'scaff() $1' -p10851 -tp10852 -a(S'spread_tag/1' -p10853 -S'spread_tag(${1:B}) $2' -p10854 -tp10855 -a(S'user_trace_i4s4/9' -p10856 -S'user_trace_i4s4(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}, ${5:Param5}, ${6:Param6}, ${7:Param7}, ${8:Param8}, ${9:Param9}) $10' -p10857 -tp10858 -a(S'user_trace_s1/1' -p10859 -S'user_trace_s1(${1:Param1}) $2' -p10860 -tp10861 -asS're' -p10862 -(lp10863 -(S'grun/3' -p10864 -S'grun(${1:Subject}, ${2:RE}, ${3:Param3}) $4' -p10865 -tp10866 -a(S'replace/3' -p10867 -S'replace(${1:Subject}, ${2:RE}, ${3:Replacement}) $4' -p10868 -tp10869 -a(S'replace/4' -p10870 -S'replace(${1:Subject}, ${2:RE}, ${3:Replacement}, ${4:Options}) $5' -p10871 -tp10872 -a(S'split/2' -p10873 -S'split(${1:Subject}, ${2:RE}) $3' -p10874 -tp10875 -a(S'split/3' -p10876 -S'split(${1:Subject}, ${2:RE}, ${3:Options}) $4' -p10877 -tp10878 -a(S'ucompile/2' -p10879 -S'ucompile(${1:RE}, ${2:Options}) $3' -p10880 -tp10881 -a(S'urun/3' -p10882 -S'urun(${1:Subject}, ${2:RE}, ${3:Options}) $4' -p10883 -tp10884 -asS'wxListEvent' -p10885 -(lp10886 -(S'allow/1' -p10887 -S'allow(${1:This}) $2' -p10888 -tp10889 -a(S'getCacheFrom/1' -p10890 -S'getCacheFrom(${1:This}) $2' -p10891 -tp10892 -a(S'getCacheTo/1' -p10893 -S'getCacheTo(${1:This}) $2' -p10894 -tp10895 -a(S'getClientData/1' -p10896 -S'getClientData(${1:This}) $2' -p10897 -tp10898 -a(S'getColumn/1' -p10899 -S'getColumn(${1:This}) $2' -p10900 -tp10901 -a(S'getData/1' -p10902 -S'getData(${1:This}) $2' -p10903 -tp10904 -a(S'getExtraLong/1' -p10905 -S'getExtraLong(${1:This}) $2' -p10906 -tp10907 -a(S'getId/1' -p10908 -S'getId(${1:This}) $2' -p10909 -tp10910 -a(S'getImage/1' -p10911 -S'getImage(${1:This}) $2' -p10912 -tp10913 -a(S'getIndex/1' -p10914 -S'getIndex(${1:This}) $2' -p10915 -tp10916 -a(S'getInt/1' -p10917 -S'getInt(${1:This}) $2' -p10918 -tp10919 -a(S'getItem/1' -p10920 -S'getItem(${1:This}) $2' -p10921 -tp10922 -a(S'getKeyCode/1' -p10923 -S'getKeyCode(${1:This}) $2' -p10924 -tp10925 -a(S'getLabel/1' -p10926 -S'getLabel(${1:This}) $2' -p10927 -tp10928 -a(S'getMask/1' -p10929 -S'getMask(${1:This}) $2' -p10930 -tp10931 -a(S'getPoint/1' -p10932 -S'getPoint(${1:This}) $2' -p10933 -tp10934 -a(S'getSelection/1' -p10935 -S'getSelection(${1:This}) $2' -p10936 -tp10937 -a(S'getSkipped/1' -p10938 -S'getSkipped(${1:This}) $2' -p10939 -tp10940 -a(S'getString/1' -p10941 -S'getString(${1:This}) $2' -p10942 -tp10943 -a(S'getText/1' -p10944 -S'getText(${1:This}) $2' -p10945 -tp10946 -a(S'getTimestamp/1' -p10947 -S'getTimestamp(${1:This}) $2' -p10948 -tp10949 -a(S'isAllowed/1' -p10950 -S'isAllowed(${1:This}) $2' -p10951 -tp10952 -a(S'isChecked/1' -p10953 -S'isChecked(${1:This}) $2' -p10954 -tp10955 -a(S'isCommandEvent/1' -p10956 -S'isCommandEvent(${1:This}) $2' -p10957 -tp10958 -a(S'isEditCancelled/1' -p10959 -S'isEditCancelled(${1:This}) $2' -p10960 -tp10961 -a(S'isSelection/1' -p10962 -S'isSelection(${1:This}) $2' -p10963 -tp10964 -a(S'parent_class/1' -p10965 -S'parent_class(${1:Param1}) $2' -p10966 -tp10967 -a(S'resumePropagation/2' -p10968 -S'resumePropagation(${1:This}, ${2:PropagationLevel}) $3' -p10969 -tp10970 -a(S'setInt/2' -p10971 -S'setInt(${1:This}, ${2:I}) $3' -p10972 -tp10973 -a(S'setString/2' -p10974 -S'setString(${1:This}, ${2:S}) $3' -p10975 -tp10976 -a(S'shouldPropagate/1' -p10977 -S'shouldPropagate(${1:This}) $2' -p10978 -tp10979 -a(S'skip/1' -p10980 -S'skip(${1:This}) $2' -p10981 -tp10982 -a(S'skip/2' -p10983 -S'skip(${1:This}, ${2:Options}) $3' -p10984 -tp10985 -a(S'stopPropagation/1' -p10986 -S'stopPropagation(${1:This}) $2' -p10987 -tp10988 -a(S'veto/1' -p10989 -S'veto(${1:This}) $2' -p10990 -tp10991 -asS'rb' -p10992 -(lp10993 -(S'code_change/3' -p10994 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p10995 -tp10996 -a(S'filter/1' -p10997 -S'filter(${1:Filters}) $2' -p10998 -tp10999 -a(S'filter/2' -p11000 -S'filter(${1:Filters}, ${2:FDates}) $3' -p11001 -tp11002 -a(S'grep/1' -p11003 -S'grep(${1:RegExp}) $2' -p11004 -tp11005 -a(S'h/0' -p11006 -S'h() $1' -p11007 -tp11008 -a(S'handle_call/3' -p11009 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p11010 -tp11011 -a(S'handle_cast/2' -p11012 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p11013 -tp11014 -a(S'handle_info/2' -p11015 -S'handle_info(${1:Param1}, ${2:State}) $3' -p11016 -tp11017 -a(S'help/0' -p11018 -S'help() $1' -p11019 -tp11020 -a(S'init/1' -p11021 -S'init(${1:Options}) $2' -p11022 -tp11023 -a(S'list/0' -p11024 -S'list() $1' -p11025 -tp11026 -a(S'list/1' -p11027 -S'list(${1:Type}) $2' -p11028 -tp11029 -a(S'rescan/0' -p11030 -S'rescan() $1' -p11031 -tp11032 -a(S'rescan/1' -p11033 -S'rescan(${1:Options}) $2' -p11034 -tp11035 -a(S'show/0' -p11036 -S'show() $1' -p11037 -tp11038 -a(S'show/1' -p11039 -S'show(${1:Number}) $2' -p11040 -tp11041 -a(S'start/0' -p11042 -S'start() $1' -p11043 -tp11044 -a(S'start/1' -p11045 -S'start(${1:Options}) $2' -p11046 -tp11047 -a(S'start_link/1' -p11048 -S'start_link(${1:Options}) $2' -p11049 -tp11050 -a(S'start_log/1' -p11051 -S'start_log(${1:FileName}) $2' -p11052 -tp11053 -a(S'stop/0' -p11054 -S'stop() $1' -p11055 -tp11056 -a(S'stop_log/0' -p11057 -S'stop_log() $1' -p11058 -tp11059 -a(S'terminate/2' -p11060 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p11061 -tp11062 -asS'xmerl_sax_parser_utf8' -p11063 -(lp11064 -(S'cf/3' -p11065 -S'cf(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p11066 -tp11067 -a(S'cf/4' -p11068 -S'cf(${1:Param1}, ${2:State}, ${3:Param3}, ${4:Param4}) $5' -p11069 -tp11070 -a(S'cf/5' -p11071 -S'cf(${1:Param1}, ${2:State}, ${3:Param3}, ${4:Param4}, ${5:Param5}) $6' -p11072 -tp11073 -a(S'is_name_char/1' -p11074 -S'is_name_char(${1:C}) $2' -p11075 -tp11076 -a(S'is_name_start/1' -p11077 -S'is_name_start(${1:C}) $2' -p11078 -tp11079 -a(S'parse/2' -p11080 -S'parse(${1:Xml}, ${2:State}) $3' -p11081 -tp11082 -a(S'parse_dtd/2' -p11083 -S'parse_dtd(${1:Xml}, ${2:State}) $3' -p11084 -tp11085 -asS'dbg_wx_code' -p11086 -(lp11087 -(S'add_break_to_code/3' -p11088 -S'add_break_to_code(${1:Ed}, ${2:Line}, ${3:Param3}) $4' -p11089 -tp11090 -a(S'code_area/1' -p11091 -S'code_area(${1:Parent}) $2' -p11092 -tp11093 -a(S'current_pos/1' -p11094 -S'current_pos(${1:Ed}) $2' -p11095 -tp11096 -a(S'del_break_from_code/2' -p11097 -S'del_break_from_code(${1:Ed}, ${2:Line}) $3' -p11098 -tp11099 -a(S'find/4' -p11100 -S'find(${1:Ed}, ${2:Str}, ${3:Case}, ${4:Next}) $5' -p11101 -tp11102 -a(S'get_no_lines/1' -p11103 -S'get_no_lines(${1:Ed}) $2' -p11104 -tp11105 -a(S'goto_line/2' -p11106 -S'goto_line(${1:Ed}, ${2:Line}) $3' -p11107 -tp11108 -a(S'goto_pos/2' -p11109 -S'goto_pos(${1:Ed}, ${2:Pos}) $3' -p11110 -tp11111 -a(S'load_code/2' -p11112 -S'load_code(${1:Ed}, ${2:Code}) $3' -p11113 -tp11114 -a(S'mark_line/3' -p11115 -S'mark_line(${1:Ed}, ${2:Prev}, ${3:Line}) $4' -p11116 -tp11117 -a(S'unload_code/1' -p11118 -S'unload_code(${1:Ed}) $2' -p11119 -tp11120 -asS'http_request' -p11121 -(lp11122 -(S'headers/2' -p11123 -S'headers(${1:Param1}, ${2:Headers}) $3' -p11124 -tp11125 -a(S'http_headers/1' -p11126 -S'http_headers(${1:Param1}) $2' -p11127 -tp11128 -a(S'is_absolut_uri/1' -p11129 -S'is_absolut_uri(${1:Param1}) $2' -p11130 -tp11131 -asS'megaco_ber_media_gateway_control_v1' -p11132 -(lp11133 -(S"'dec_ActionReply'/2" -p11134 -S"'dec_ActionReply'(${1:Bytes}, ${2:OptOrMand}) $3" -p11135 -tp11136 -a(S"'dec_ActionReply'/3" -p11137 -S"'dec_ActionReply'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11138 -tp11139 -a(S"'dec_ActionRequest'/2" -p11140 -S"'dec_ActionRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p11141 -tp11142 -a(S"'dec_ActionRequest'/3" -p11143 -S"'dec_ActionRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11144 -tp11145 -a(S"'dec_AmmDescriptor'/2" -p11146 -S"'dec_AmmDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p11147 -tp11148 -a(S"'dec_AmmDescriptor'/3" -p11149 -S"'dec_AmmDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11150 -tp11151 -a(S"'dec_AmmRequest'/2" -p11152 -S"'dec_AmmRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p11153 -tp11154 -a(S"'dec_AmmRequest'/3" -p11155 -S"'dec_AmmRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11156 -tp11157 -a(S"'dec_AmmsReply'/2" -p11158 -S"'dec_AmmsReply'(${1:Bytes}, ${2:OptOrMand}) $3" -p11159 -tp11160 -a(S"'dec_AmmsReply'/3" -p11161 -S"'dec_AmmsReply'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11162 -tp11163 -a(S"'dec_AuditDescriptor'/2" -p11164 -S"'dec_AuditDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p11165 -tp11166 -a(S"'dec_AuditDescriptor'/3" -p11167 -S"'dec_AuditDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11168 -tp11169 -a(S"'dec_AuditReply'/2" -p11170 -S"'dec_AuditReply'(${1:Bytes}, ${2:OptOrMand}) $3" -p11171 -tp11172 -a(S"'dec_AuditReply'/3" -p11173 -S"'dec_AuditReply'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11174 -tp11175 -a(S"'dec_AuditRequest'/2" -p11176 -S"'dec_AuditRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p11177 -tp11178 -a(S"'dec_AuditRequest'/3" -p11179 -S"'dec_AuditRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11180 -tp11181 -a(S"'dec_AuditResult'/2" -p11182 -S"'dec_AuditResult'(${1:Bytes}, ${2:OptOrMand}) $3" -p11183 -tp11184 -a(S"'dec_AuditResult'/3" -p11185 -S"'dec_AuditResult'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11186 -tp11187 -a(S"'dec_AuditReturnParameter'/2" -p11188 -S"'dec_AuditReturnParameter'(${1:Bytes}, ${2:OptOrMand}) $3" -p11189 -tp11190 -a(S"'dec_AuditReturnParameter'/3" -p11191 -S"'dec_AuditReturnParameter'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11192 -tp11193 -a(S"'dec_AuthData'/2" -p11194 -S"'dec_AuthData'(${1:Bytes}, ${2:OptOrMand}) $3" -p11195 -tp11196 -a(S"'dec_AuthData'/3" -p11197 -S"'dec_AuthData'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11198 -tp11199 -a(S"'dec_AuthenticationHeader'/2" -p11200 -S"'dec_AuthenticationHeader'(${1:Bytes}, ${2:OptOrMand}) $3" -p11201 -tp11202 -a(S"'dec_AuthenticationHeader'/3" -p11203 -S"'dec_AuthenticationHeader'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11204 -tp11205 -a(S"'dec_Command'/2" -p11206 -S"'dec_Command'(${1:Bytes}, ${2:OptOrMand}) $3" -p11207 -tp11208 -a(S"'dec_Command'/3" -p11209 -S"'dec_Command'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11210 -tp11211 -a(S"'dec_CommandReply'/2" -p11212 -S"'dec_CommandReply'(${1:Bytes}, ${2:OptOrMand}) $3" -p11213 -tp11214 -a(S"'dec_CommandReply'/3" -p11215 -S"'dec_CommandReply'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11216 -tp11217 -a(S"'dec_CommandRequest'/2" -p11218 -S"'dec_CommandRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p11219 -tp11220 -a(S"'dec_CommandRequest'/3" -p11221 -S"'dec_CommandRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11222 -tp11223 -a(S"'dec_ContextAttrAuditRequest'/2" -p11224 -S"'dec_ContextAttrAuditRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p11225 -tp11226 -a(S"'dec_ContextAttrAuditRequest'/3" -p11227 -S"'dec_ContextAttrAuditRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11228 -tp11229 -a(S"'dec_ContextID'/2" -p11230 -S"'dec_ContextID'(${1:Bytes}, ${2:OptOrMand}) $3" -p11231 -tp11232 -a(S"'dec_ContextID'/3" -p11233 -S"'dec_ContextID'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11234 -tp11235 -a(S"'dec_ContextRequest'/2" -p11236 -S"'dec_ContextRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p11237 -tp11238 -a(S"'dec_ContextRequest'/3" -p11239 -S"'dec_ContextRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11240 -tp11241 -a(S"'dec_DigitMapDescriptor'/2" -p11242 -S"'dec_DigitMapDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p11243 -tp11244 -a(S"'dec_DigitMapDescriptor'/3" -p11245 -S"'dec_DigitMapDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11246 -tp11247 -a(S"'dec_DigitMapName'/2" -p11248 -S"'dec_DigitMapName'(${1:Bytes}, ${2:OptOrMand}) $3" -p11249 -tp11250 -a(S"'dec_DigitMapName'/3" -p11251 -S"'dec_DigitMapName'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11252 -tp11253 -a(S"'dec_DigitMapValue'/2" -p11254 -S"'dec_DigitMapValue'(${1:Bytes}, ${2:OptOrMand}) $3" -p11255 -tp11256 -a(S"'dec_DigitMapValue'/3" -p11257 -S"'dec_DigitMapValue'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11258 -tp11259 -a(S"'dec_DomainName'/2" -p11260 -S"'dec_DomainName'(${1:Bytes}, ${2:OptOrMand}) $3" -p11261 -tp11262 -a(S"'dec_DomainName'/3" -p11263 -S"'dec_DomainName'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11264 -tp11265 -a(S"'dec_ErrorCode'/2" -p11266 -S"'dec_ErrorCode'(${1:Bytes}, ${2:OptOrMand}) $3" -p11267 -tp11268 -a(S"'dec_ErrorCode'/3" -p11269 -S"'dec_ErrorCode'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11270 -tp11271 -a(S"'dec_ErrorDescriptor'/2" -p11272 -S"'dec_ErrorDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p11273 -tp11274 -a(S"'dec_ErrorDescriptor'/3" -p11275 -S"'dec_ErrorDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11276 -tp11277 -a(S"'dec_ErrorText'/2" -p11278 -S"'dec_ErrorText'(${1:Bytes}, ${2:OptOrMand}) $3" -p11279 -tp11280 -a(S"'dec_ErrorText'/3" -p11281 -S"'dec_ErrorText'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11282 -tp11283 -a(S"'dec_EventBufferControl'/2" -p11284 -S"'dec_EventBufferControl'(${1:Bytes}, ${2:OptOrMand}) $3" -p11285 -tp11286 -a(S"'dec_EventBufferControl'/3" -p11287 -S"'dec_EventBufferControl'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11288 -tp11289 -a(S"'dec_EventBufferDescriptor'/2" -p11290 -S"'dec_EventBufferDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p11291 -tp11292 -a(S"'dec_EventBufferDescriptor'/3" -p11293 -S"'dec_EventBufferDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11294 -tp11295 -a(S"'dec_EventDM'/2" -p11296 -S"'dec_EventDM'(${1:Bytes}, ${2:OptOrMand}) $3" -p11297 -tp11298 -a(S"'dec_EventDM'/3" -p11299 -S"'dec_EventDM'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11300 -tp11301 -a(S"'dec_EventName'/2" -p11302 -S"'dec_EventName'(${1:Bytes}, ${2:OptOrMand}) $3" -p11303 -tp11304 -a(S"'dec_EventName'/3" -p11305 -S"'dec_EventName'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11306 -tp11307 -a(S"'dec_EventParameter'/2" -p11308 -S"'dec_EventParameter'(${1:Bytes}, ${2:OptOrMand}) $3" -p11309 -tp11310 -a(S"'dec_EventParameter'/3" -p11311 -S"'dec_EventParameter'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11312 -tp11313 -a(S"'dec_EventSpec'/2" -p11314 -S"'dec_EventSpec'(${1:Bytes}, ${2:OptOrMand}) $3" -p11315 -tp11316 -a(S"'dec_EventSpec'/3" -p11317 -S"'dec_EventSpec'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11318 -tp11319 -a(S"'dec_EventsDescriptor'/2" -p11320 -S"'dec_EventsDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p11321 -tp11322 -a(S"'dec_EventsDescriptor'/3" -p11323 -S"'dec_EventsDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11324 -tp11325 -a(S"'dec_H221NonStandard'/2" -p11326 -S"'dec_H221NonStandard'(${1:Bytes}, ${2:OptOrMand}) $3" -p11327 -tp11328 -a(S"'dec_H221NonStandard'/3" -p11329 -S"'dec_H221NonStandard'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11330 -tp11331 -a(S"'dec_IP4Address'/2" -p11332 -S"'dec_IP4Address'(${1:Bytes}, ${2:OptOrMand}) $3" -p11333 -tp11334 -a(S"'dec_IP4Address'/3" -p11335 -S"'dec_IP4Address'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11336 -tp11337 -a(S"'dec_IP6Address'/2" -p11338 -S"'dec_IP6Address'(${1:Bytes}, ${2:OptOrMand}) $3" -p11339 -tp11340 -a(S"'dec_IP6Address'/3" -p11341 -S"'dec_IP6Address'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11342 -tp11343 -a(S"'dec_LocalControlDescriptor'/2" -p11344 -S"'dec_LocalControlDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p11345 -tp11346 -a(S"'dec_LocalControlDescriptor'/3" -p11347 -S"'dec_LocalControlDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11348 -tp11349 -a(S"'dec_LocalRemoteDescriptor'/2" -p11350 -S"'dec_LocalRemoteDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p11351 -tp11352 -a(S"'dec_LocalRemoteDescriptor'/3" -p11353 -S"'dec_LocalRemoteDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11354 -tp11355 -a(S"'dec_MId'/2" -p11356 -S"'dec_MId'(${1:Bytes}, ${2:OptOrMand}) $3" -p11357 -tp11358 -a(S"'dec_MId'/3" -p11359 -S"'dec_MId'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11360 -tp11361 -a(S"'dec_MediaDescriptor'/2" -p11362 -S"'dec_MediaDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p11363 -tp11364 -a(S"'dec_MediaDescriptor'/3" -p11365 -S"'dec_MediaDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11366 -tp11367 -a(S"'dec_MegacoMessage'/2" -p11368 -S"'dec_MegacoMessage'(${1:Bytes}, ${2:OptOrMand}) $3" -p11369 -tp11370 -a(S"'dec_MegacoMessage'/3" -p11371 -S"'dec_MegacoMessage'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11372 -tp11373 -a(S"'dec_Message'/2" -p11374 -S"'dec_Message'(${1:Bytes}, ${2:OptOrMand}) $3" -p11375 -tp11376 -a(S"'dec_Message'/3" -p11377 -S"'dec_Message'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11378 -tp11379 -a(S"'dec_ModemDescriptor'/2" -p11380 -S"'dec_ModemDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p11381 -tp11382 -a(S"'dec_ModemDescriptor'/3" -p11383 -S"'dec_ModemDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11384 -tp11385 -a(S"'dec_ModemType'/2" -p11386 -S"'dec_ModemType'(${1:Bytes}, ${2:OptOrMand}) $3" -p11387 -tp11388 -a(S"'dec_ModemType'/3" -p11389 -S"'dec_ModemType'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11390 -tp11391 -a(S"'dec_MuxDescriptor'/2" -p11392 -S"'dec_MuxDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p11393 -tp11394 -a(S"'dec_MuxDescriptor'/3" -p11395 -S"'dec_MuxDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11396 -tp11397 -a(S"'dec_MuxType'/2" -p11398 -S"'dec_MuxType'(${1:Bytes}, ${2:OptOrMand}) $3" -p11399 -tp11400 -a(S"'dec_MuxType'/3" -p11401 -S"'dec_MuxType'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11402 -tp11403 -a(S"'dec_Name'/2" -p11404 -S"'dec_Name'(${1:Bytes}, ${2:OptOrMand}) $3" -p11405 -tp11406 -a(S"'dec_Name'/3" -p11407 -S"'dec_Name'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11408 -tp11409 -a(S"'dec_NonStandardData'/2" -p11410 -S"'dec_NonStandardData'(${1:Bytes}, ${2:OptOrMand}) $3" -p11411 -tp11412 -a(S"'dec_NonStandardData'/3" -p11413 -S"'dec_NonStandardData'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11414 -tp11415 -a(S"'dec_NonStandardIdentifier'/2" -p11416 -S"'dec_NonStandardIdentifier'(${1:Bytes}, ${2:OptOrMand}) $3" -p11417 -tp11418 -a(S"'dec_NonStandardIdentifier'/3" -p11419 -S"'dec_NonStandardIdentifier'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11420 -tp11421 -a(S"'dec_NotifyCompletion'/2" -p11422 -S"'dec_NotifyCompletion'(${1:Bytes}, ${2:OptOrMand}) $3" -p11423 -tp11424 -a(S"'dec_NotifyCompletion'/3" -p11425 -S"'dec_NotifyCompletion'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11426 -tp11427 -a(S"'dec_NotifyReply'/2" -p11428 -S"'dec_NotifyReply'(${1:Bytes}, ${2:OptOrMand}) $3" -p11429 -tp11430 -a(S"'dec_NotifyReply'/3" -p11431 -S"'dec_NotifyReply'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11432 -tp11433 -a(S"'dec_NotifyRequest'/2" -p11434 -S"'dec_NotifyRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p11435 -tp11436 -a(S"'dec_NotifyRequest'/3" -p11437 -S"'dec_NotifyRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11438 -tp11439 -a(S"'dec_ObservedEvent'/2" -p11440 -S"'dec_ObservedEvent'(${1:Bytes}, ${2:OptOrMand}) $3" -p11441 -tp11442 -a(S"'dec_ObservedEvent'/3" -p11443 -S"'dec_ObservedEvent'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11444 -tp11445 -a(S"'dec_ObservedEventsDescriptor'/2" -p11446 -S"'dec_ObservedEventsDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p11447 -tp11448 -a(S"'dec_ObservedEventsDescriptor'/3" -p11449 -S"'dec_ObservedEventsDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11450 -tp11451 -a(S"'dec_PackagesDescriptor'/2" -p11452 -S"'dec_PackagesDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p11453 -tp11454 -a(S"'dec_PackagesDescriptor'/3" -p11455 -S"'dec_PackagesDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11456 -tp11457 -a(S"'dec_PackagesItem'/2" -p11458 -S"'dec_PackagesItem'(${1:Bytes}, ${2:OptOrMand}) $3" -p11459 -tp11460 -a(S"'dec_PackagesItem'/3" -p11461 -S"'dec_PackagesItem'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11462 -tp11463 -a(S"'dec_PathName'/2" -p11464 -S"'dec_PathName'(${1:Bytes}, ${2:OptOrMand}) $3" -p11465 -tp11466 -a(S"'dec_PathName'/3" -p11467 -S"'dec_PathName'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11468 -tp11469 -a(S"'dec_PkgdName'/2" -p11470 -S"'dec_PkgdName'(${1:Bytes}, ${2:OptOrMand}) $3" -p11471 -tp11472 -a(S"'dec_PkgdName'/3" -p11473 -S"'dec_PkgdName'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11474 -tp11475 -a(S"'dec_PropertyGroup'/2" -p11476 -S"'dec_PropertyGroup'(${1:Bytes}, ${2:OptOrMand}) $3" -p11477 -tp11478 -a(S"'dec_PropertyGroup'/3" -p11479 -S"'dec_PropertyGroup'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11480 -tp11481 -a(S"'dec_PropertyParm'/2" -p11482 -S"'dec_PropertyParm'(${1:Bytes}, ${2:OptOrMand}) $3" -p11483 -tp11484 -a(S"'dec_PropertyParm'/3" -p11485 -S"'dec_PropertyParm'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11486 -tp11487 -a(S"'dec_Relation'/2" -p11488 -S"'dec_Relation'(${1:Bytes}, ${2:OptOrMand}) $3" -p11489 -tp11490 -a(S"'dec_Relation'/3" -p11491 -S"'dec_Relation'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11492 -tp11493 -a(S"'dec_RequestID'/2" -p11494 -S"'dec_RequestID'(${1:Bytes}, ${2:OptOrMand}) $3" -p11495 -tp11496 -a(S"'dec_RequestID'/3" -p11497 -S"'dec_RequestID'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11498 -tp11499 -a(S"'dec_RequestedActions'/2" -p11500 -S"'dec_RequestedActions'(${1:Bytes}, ${2:OptOrMand}) $3" -p11501 -tp11502 -a(S"'dec_RequestedActions'/3" -p11503 -S"'dec_RequestedActions'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11504 -tp11505 -a(S"'dec_RequestedEvent'/2" -p11506 -S"'dec_RequestedEvent'(${1:Bytes}, ${2:OptOrMand}) $3" -p11507 -tp11508 -a(S"'dec_RequestedEvent'/3" -p11509 -S"'dec_RequestedEvent'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11510 -tp11511 -a(S"'dec_SecondEventsDescriptor'/2" -p11512 -S"'dec_SecondEventsDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p11513 -tp11514 -a(S"'dec_SecondEventsDescriptor'/3" -p11515 -S"'dec_SecondEventsDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11516 -tp11517 -a(S"'dec_SecondRequestedActions'/2" -p11518 -S"'dec_SecondRequestedActions'(${1:Bytes}, ${2:OptOrMand}) $3" -p11519 -tp11520 -a(S"'dec_SecondRequestedActions'/3" -p11521 -S"'dec_SecondRequestedActions'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11522 -tp11523 -a(S"'dec_SecondRequestedEvent'/2" -p11524 -S"'dec_SecondRequestedEvent'(${1:Bytes}, ${2:OptOrMand}) $3" -p11525 -tp11526 -a(S"'dec_SecondRequestedEvent'/3" -p11527 -S"'dec_SecondRequestedEvent'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11528 -tp11529 -a(S"'dec_SecurityParmIndex'/2" -p11530 -S"'dec_SecurityParmIndex'(${1:Bytes}, ${2:OptOrMand}) $3" -p11531 -tp11532 -a(S"'dec_SecurityParmIndex'/3" -p11533 -S"'dec_SecurityParmIndex'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11534 -tp11535 -a(S"'dec_SeqSigList'/2" -p11536 -S"'dec_SeqSigList'(${1:Bytes}, ${2:OptOrMand}) $3" -p11537 -tp11538 -a(S"'dec_SeqSigList'/3" -p11539 -S"'dec_SeqSigList'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11540 -tp11541 -a(S"'dec_SequenceNum'/2" -p11542 -S"'dec_SequenceNum'(${1:Bytes}, ${2:OptOrMand}) $3" -p11543 -tp11544 -a(S"'dec_SequenceNum'/3" -p11545 -S"'dec_SequenceNum'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11546 -tp11547 -a(S"'dec_ServiceChangeAddress'/2" -p11548 -S"'dec_ServiceChangeAddress'(${1:Bytes}, ${2:OptOrMand}) $3" -p11549 -tp11550 -a(S"'dec_ServiceChangeAddress'/3" -p11551 -S"'dec_ServiceChangeAddress'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11552 -tp11553 -a(S"'dec_ServiceChangeMethod'/2" -p11554 -S"'dec_ServiceChangeMethod'(${1:Bytes}, ${2:OptOrMand}) $3" -p11555 -tp11556 -a(S"'dec_ServiceChangeMethod'/3" -p11557 -S"'dec_ServiceChangeMethod'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11558 -tp11559 -a(S"'dec_ServiceChangeParm'/2" -p11560 -S"'dec_ServiceChangeParm'(${1:Bytes}, ${2:OptOrMand}) $3" -p11561 -tp11562 -a(S"'dec_ServiceChangeParm'/3" -p11563 -S"'dec_ServiceChangeParm'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11564 -tp11565 -a(S"'dec_ServiceChangeProfile'/2" -p11566 -S"'dec_ServiceChangeProfile'(${1:Bytes}, ${2:OptOrMand}) $3" -p11567 -tp11568 -a(S"'dec_ServiceChangeProfile'/3" -p11569 -S"'dec_ServiceChangeProfile'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11570 -tp11571 -a(S"'dec_ServiceChangeReply'/2" -p11572 -S"'dec_ServiceChangeReply'(${1:Bytes}, ${2:OptOrMand}) $3" -p11573 -tp11574 -a(S"'dec_ServiceChangeReply'/3" -p11575 -S"'dec_ServiceChangeReply'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11576 -tp11577 -a(S"'dec_ServiceChangeRequest'/2" -p11578 -S"'dec_ServiceChangeRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p11579 -tp11580 -a(S"'dec_ServiceChangeRequest'/3" -p11581 -S"'dec_ServiceChangeRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11582 -tp11583 -a(S"'dec_ServiceChangeResParm'/2" -p11584 -S"'dec_ServiceChangeResParm'(${1:Bytes}, ${2:OptOrMand}) $3" -p11585 -tp11586 -a(S"'dec_ServiceChangeResParm'/3" -p11587 -S"'dec_ServiceChangeResParm'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11588 -tp11589 -a(S"'dec_ServiceChangeResult'/2" -p11590 -S"'dec_ServiceChangeResult'(${1:Bytes}, ${2:OptOrMand}) $3" -p11591 -tp11592 -a(S"'dec_ServiceChangeResult'/3" -p11593 -S"'dec_ServiceChangeResult'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11594 -tp11595 -a(S"'dec_ServiceState'/2" -p11596 -S"'dec_ServiceState'(${1:Bytes}, ${2:OptOrMand}) $3" -p11597 -tp11598 -a(S"'dec_ServiceState'/3" -p11599 -S"'dec_ServiceState'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11600 -tp11601 -a(S"'dec_SigParameter'/2" -p11602 -S"'dec_SigParameter'(${1:Bytes}, ${2:OptOrMand}) $3" -p11603 -tp11604 -a(S"'dec_SigParameter'/3" -p11605 -S"'dec_SigParameter'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11606 -tp11607 -a(S"'dec_Signal'/2" -p11608 -S"'dec_Signal'(${1:Bytes}, ${2:OptOrMand}) $3" -p11609 -tp11610 -a(S"'dec_Signal'/3" -p11611 -S"'dec_Signal'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11612 -tp11613 -a(S"'dec_SignalName'/2" -p11614 -S"'dec_SignalName'(${1:Bytes}, ${2:OptOrMand}) $3" -p11615 -tp11616 -a(S"'dec_SignalName'/3" -p11617 -S"'dec_SignalName'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11618 -tp11619 -a(S"'dec_SignalRequest'/2" -p11620 -S"'dec_SignalRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p11621 -tp11622 -a(S"'dec_SignalRequest'/3" -p11623 -S"'dec_SignalRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11624 -tp11625 -a(S"'dec_SignalType'/2" -p11626 -S"'dec_SignalType'(${1:Bytes}, ${2:OptOrMand}) $3" -p11627 -tp11628 -a(S"'dec_SignalType'/3" -p11629 -S"'dec_SignalType'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11630 -tp11631 -a(S"'dec_SignalsDescriptor'/2" -p11632 -S"'dec_SignalsDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p11633 -tp11634 -a(S"'dec_SignalsDescriptor'/3" -p11635 -S"'dec_SignalsDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11636 -tp11637 -a(S"'dec_StatisticsDescriptor'/2" -p11638 -S"'dec_StatisticsDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p11639 -tp11640 -a(S"'dec_StatisticsDescriptor'/3" -p11641 -S"'dec_StatisticsDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11642 -tp11643 -a(S"'dec_StatisticsParameter'/2" -p11644 -S"'dec_StatisticsParameter'(${1:Bytes}, ${2:OptOrMand}) $3" -p11645 -tp11646 -a(S"'dec_StatisticsParameter'/3" -p11647 -S"'dec_StatisticsParameter'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11648 -tp11649 -a(S"'dec_StreamDescriptor'/2" -p11650 -S"'dec_StreamDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p11651 -tp11652 -a(S"'dec_StreamDescriptor'/3" -p11653 -S"'dec_StreamDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11654 -tp11655 -a(S"'dec_StreamID'/2" -p11656 -S"'dec_StreamID'(${1:Bytes}, ${2:OptOrMand}) $3" -p11657 -tp11658 -a(S"'dec_StreamID'/3" -p11659 -S"'dec_StreamID'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11660 -tp11661 -a(S"'dec_StreamMode'/2" -p11662 -S"'dec_StreamMode'(${1:Bytes}, ${2:OptOrMand}) $3" -p11663 -tp11664 -a(S"'dec_StreamMode'/3" -p11665 -S"'dec_StreamMode'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11666 -tp11667 -a(S"'dec_StreamParms'/2" -p11668 -S"'dec_StreamParms'(${1:Bytes}, ${2:OptOrMand}) $3" -p11669 -tp11670 -a(S"'dec_StreamParms'/3" -p11671 -S"'dec_StreamParms'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11672 -tp11673 -a(S"'dec_SubtractRequest'/2" -p11674 -S"'dec_SubtractRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p11675 -tp11676 -a(S"'dec_SubtractRequest'/3" -p11677 -S"'dec_SubtractRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11678 -tp11679 -a(S"'dec_TerminationAudit'/2" -p11680 -S"'dec_TerminationAudit'(${1:Bytes}, ${2:OptOrMand}) $3" -p11681 -tp11682 -a(S"'dec_TerminationAudit'/3" -p11683 -S"'dec_TerminationAudit'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11684 -tp11685 -a(S"'dec_TerminationID'/2" -p11686 -S"'dec_TerminationID'(${1:Bytes}, ${2:OptOrMand}) $3" -p11687 -tp11688 -a(S"'dec_TerminationID'/3" -p11689 -S"'dec_TerminationID'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11690 -tp11691 -a(S"'dec_TerminationIDList'/2" -p11692 -S"'dec_TerminationIDList'(${1:Bytes}, ${2:OptOrMand}) $3" -p11693 -tp11694 -a(S"'dec_TerminationIDList'/3" -p11695 -S"'dec_TerminationIDList'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11696 -tp11697 -a(S"'dec_TerminationStateDescriptor'/2" -p11698 -S"'dec_TerminationStateDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p11699 -tp11700 -a(S"'dec_TerminationStateDescriptor'/3" -p11701 -S"'dec_TerminationStateDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11702 -tp11703 -a(S"'dec_TimeNotation'/2" -p11704 -S"'dec_TimeNotation'(${1:Bytes}, ${2:OptOrMand}) $3" -p11705 -tp11706 -a(S"'dec_TimeNotation'/3" -p11707 -S"'dec_TimeNotation'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11708 -tp11709 -a(S"'dec_TopologyRequest'/2" -p11710 -S"'dec_TopologyRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p11711 -tp11712 -a(S"'dec_TopologyRequest'/3" -p11713 -S"'dec_TopologyRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11714 -tp11715 -a(S"'dec_Transaction'/2" -p11716 -S"'dec_Transaction'(${1:Bytes}, ${2:OptOrMand}) $3" -p11717 -tp11718 -a(S"'dec_Transaction'/3" -p11719 -S"'dec_Transaction'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11720 -tp11721 -a(S"'dec_TransactionAck'/2" -p11722 -S"'dec_TransactionAck'(${1:Bytes}, ${2:OptOrMand}) $3" -p11723 -tp11724 -a(S"'dec_TransactionAck'/3" -p11725 -S"'dec_TransactionAck'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11726 -tp11727 -a(S"'dec_TransactionId'/2" -p11728 -S"'dec_TransactionId'(${1:Bytes}, ${2:OptOrMand}) $3" -p11729 -tp11730 -a(S"'dec_TransactionId'/3" -p11731 -S"'dec_TransactionId'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11732 -tp11733 -a(S"'dec_TransactionPending'/2" -p11734 -S"'dec_TransactionPending'(${1:Bytes}, ${2:OptOrMand}) $3" -p11735 -tp11736 -a(S"'dec_TransactionPending'/3" -p11737 -S"'dec_TransactionPending'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11738 -tp11739 -a(S"'dec_TransactionReply'/2" -p11740 -S"'dec_TransactionReply'(${1:Bytes}, ${2:OptOrMand}) $3" -p11741 -tp11742 -a(S"'dec_TransactionReply'/3" -p11743 -S"'dec_TransactionReply'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11744 -tp11745 -a(S"'dec_TransactionRequest'/2" -p11746 -S"'dec_TransactionRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p11747 -tp11748 -a(S"'dec_TransactionRequest'/3" -p11749 -S"'dec_TransactionRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11750 -tp11751 -a(S"'dec_TransactionResponseAck'/2" -p11752 -S"'dec_TransactionResponseAck'(${1:Bytes}, ${2:OptOrMand}) $3" -p11753 -tp11754 -a(S"'dec_TransactionResponseAck'/3" -p11755 -S"'dec_TransactionResponseAck'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11756 -tp11757 -a(S"'dec_Value'/2" -p11758 -S"'dec_Value'(${1:Bytes}, ${2:OptOrMand}) $3" -p11759 -tp11760 -a(S"'dec_Value'/3" -p11761 -S"'dec_Value'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11762 -tp11763 -a(S"'dec_WildcardField'/2" -p11764 -S"'dec_WildcardField'(${1:Bytes}, ${2:OptOrMand}) $3" -p11765 -tp11766 -a(S"'dec_WildcardField'/3" -p11767 -S"'dec_WildcardField'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p11768 -tp11769 -a(S"'enc_ActionReply'/2" -p11770 -S"'enc_ActionReply'(${1:Val}, ${2:TagIn}) $3" -p11771 -tp11772 -a(S"'enc_ActionRequest'/2" -p11773 -S"'enc_ActionRequest'(${1:Val}, ${2:TagIn}) $3" -p11774 -tp11775 -a(S"'enc_AmmDescriptor'/2" -p11776 -S"'enc_AmmDescriptor'(${1:Val}, ${2:TagIn}) $3" -p11777 -tp11778 -a(S"'enc_AmmRequest'/2" -p11779 -S"'enc_AmmRequest'(${1:Val}, ${2:TagIn}) $3" -p11780 -tp11781 -a(S"'enc_AmmsReply'/2" -p11782 -S"'enc_AmmsReply'(${1:Val}, ${2:TagIn}) $3" -p11783 -tp11784 -a(S"'enc_AuditDescriptor'/2" -p11785 -S"'enc_AuditDescriptor'(${1:Val}, ${2:TagIn}) $3" -p11786 -tp11787 -a(S"'enc_AuditReply'/2" -p11788 -S"'enc_AuditReply'(${1:Val}, ${2:TagIn}) $3" -p11789 -tp11790 -a(S"'enc_AuditRequest'/2" -p11791 -S"'enc_AuditRequest'(${1:Val}, ${2:TagIn}) $3" -p11792 -tp11793 -a(S"'enc_AuditResult'/2" -p11794 -S"'enc_AuditResult'(${1:Val}, ${2:TagIn}) $3" -p11795 -tp11796 -a(S"'enc_AuditReturnParameter'/2" -p11797 -S"'enc_AuditReturnParameter'(${1:Val}, ${2:TagIn}) $3" -p11798 -tp11799 -a(S"'enc_AuthData'/2" -p11800 -S"'enc_AuthData'(${1:Val}, ${2:TagIn}) $3" -p11801 -tp11802 -a(S"'enc_AuthenticationHeader'/2" -p11803 -S"'enc_AuthenticationHeader'(${1:Val}, ${2:TagIn}) $3" -p11804 -tp11805 -a(S"'enc_Command'/2" -p11806 -S"'enc_Command'(${1:Val}, ${2:TagIn}) $3" -p11807 -tp11808 -a(S"'enc_CommandReply'/2" -p11809 -S"'enc_CommandReply'(${1:Val}, ${2:TagIn}) $3" -p11810 -tp11811 -a(S"'enc_CommandRequest'/2" -p11812 -S"'enc_CommandRequest'(${1:Val}, ${2:TagIn}) $3" -p11813 -tp11814 -a(S"'enc_ContextAttrAuditRequest'/2" -p11815 -S"'enc_ContextAttrAuditRequest'(${1:Val}, ${2:TagIn}) $3" -p11816 -tp11817 -a(S"'enc_ContextID'/2" -p11818 -S"'enc_ContextID'(${1:Val}, ${2:TagIn}) $3" -p11819 -tp11820 -a(S"'enc_ContextRequest'/2" -p11821 -S"'enc_ContextRequest'(${1:Val}, ${2:TagIn}) $3" -p11822 -tp11823 -a(S"'enc_DigitMapDescriptor'/2" -p11824 -S"'enc_DigitMapDescriptor'(${1:Val}, ${2:TagIn}) $3" -p11825 -tp11826 -a(S"'enc_DigitMapName'/2" -p11827 -S"'enc_DigitMapName'(${1:Val}, ${2:TagIn}) $3" -p11828 -tp11829 -a(S"'enc_DigitMapValue'/2" -p11830 -S"'enc_DigitMapValue'(${1:Val}, ${2:TagIn}) $3" -p11831 -tp11832 -a(S"'enc_DomainName'/2" -p11833 -S"'enc_DomainName'(${1:Val}, ${2:TagIn}) $3" -p11834 -tp11835 -a(S"'enc_ErrorCode'/2" -p11836 -S"'enc_ErrorCode'(${1:Val}, ${2:TagIn}) $3" -p11837 -tp11838 -a(S"'enc_ErrorDescriptor'/2" -p11839 -S"'enc_ErrorDescriptor'(${1:Val}, ${2:TagIn}) $3" -p11840 -tp11841 -a(S"'enc_ErrorText'/2" -p11842 -S"'enc_ErrorText'(${1:Val}, ${2:TagIn}) $3" -p11843 -tp11844 -a(S"'enc_EventBufferControl'/2" -p11845 -S"'enc_EventBufferControl'(${1:Val}, ${2:TagIn}) $3" -p11846 -tp11847 -a(S"'enc_EventBufferDescriptor'/2" -p11848 -S"'enc_EventBufferDescriptor'(${1:Val}, ${2:TagIn}) $3" -p11849 -tp11850 -a(S"'enc_EventDM'/2" -p11851 -S"'enc_EventDM'(${1:Val}, ${2:TagIn}) $3" -p11852 -tp11853 -a(S"'enc_EventName'/2" -p11854 -S"'enc_EventName'(${1:Val}, ${2:TagIn}) $3" -p11855 -tp11856 -a(S"'enc_EventParameter'/2" -p11857 -S"'enc_EventParameter'(${1:Val}, ${2:TagIn}) $3" -p11858 -tp11859 -a(S"'enc_EventSpec'/2" -p11860 -S"'enc_EventSpec'(${1:Val}, ${2:TagIn}) $3" -p11861 -tp11862 -a(S"'enc_EventsDescriptor'/2" -p11863 -S"'enc_EventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p11864 -tp11865 -a(S"'enc_H221NonStandard'/2" -p11866 -S"'enc_H221NonStandard'(${1:Val}, ${2:TagIn}) $3" -p11867 -tp11868 -a(S"'enc_IP4Address'/2" -p11869 -S"'enc_IP4Address'(${1:Val}, ${2:TagIn}) $3" -p11870 -tp11871 -a(S"'enc_IP6Address'/2" -p11872 -S"'enc_IP6Address'(${1:Val}, ${2:TagIn}) $3" -p11873 -tp11874 -a(S"'enc_LocalControlDescriptor'/2" -p11875 -S"'enc_LocalControlDescriptor'(${1:Val}, ${2:TagIn}) $3" -p11876 -tp11877 -a(S"'enc_LocalRemoteDescriptor'/2" -p11878 -S"'enc_LocalRemoteDescriptor'(${1:Val}, ${2:TagIn}) $3" -p11879 -tp11880 -a(S"'enc_MId'/2" -p11881 -S"'enc_MId'(${1:Val}, ${2:TagIn}) $3" -p11882 -tp11883 -a(S"'enc_MediaDescriptor'/2" -p11884 -S"'enc_MediaDescriptor'(${1:Val}, ${2:TagIn}) $3" -p11885 -tp11886 -a(S"'enc_MegacoMessage'/2" -p11887 -S"'enc_MegacoMessage'(${1:Val}, ${2:TagIn}) $3" -p11888 -tp11889 -a(S"'enc_Message'/2" -p11890 -S"'enc_Message'(${1:Val}, ${2:TagIn}) $3" -p11891 -tp11892 -a(S"'enc_ModemDescriptor'/2" -p11893 -S"'enc_ModemDescriptor'(${1:Val}, ${2:TagIn}) $3" -p11894 -tp11895 -a(S"'enc_ModemType'/2" -p11896 -S"'enc_ModemType'(${1:Val}, ${2:TagIn}) $3" -p11897 -tp11898 -a(S"'enc_MuxDescriptor'/2" -p11899 -S"'enc_MuxDescriptor'(${1:Val}, ${2:TagIn}) $3" -p11900 -tp11901 -a(S"'enc_MuxType'/2" -p11902 -S"'enc_MuxType'(${1:Val}, ${2:TagIn}) $3" -p11903 -tp11904 -a(S"'enc_Name'/2" -p11905 -S"'enc_Name'(${1:Val}, ${2:TagIn}) $3" -p11906 -tp11907 -a(S"'enc_NonStandardData'/2" -p11908 -S"'enc_NonStandardData'(${1:Val}, ${2:TagIn}) $3" -p11909 -tp11910 -a(S"'enc_NonStandardIdentifier'/2" -p11911 -S"'enc_NonStandardIdentifier'(${1:Val}, ${2:TagIn}) $3" -p11912 -tp11913 -a(S"'enc_NotifyCompletion'/2" -p11914 -S"'enc_NotifyCompletion'(${1:Val}, ${2:TagIn}) $3" -p11915 -tp11916 -a(S"'enc_NotifyReply'/2" -p11917 -S"'enc_NotifyReply'(${1:Val}, ${2:TagIn}) $3" -p11918 -tp11919 -a(S"'enc_NotifyRequest'/2" -p11920 -S"'enc_NotifyRequest'(${1:Val}, ${2:TagIn}) $3" -p11921 -tp11922 -a(S"'enc_ObservedEvent'/2" -p11923 -S"'enc_ObservedEvent'(${1:Val}, ${2:TagIn}) $3" -p11924 -tp11925 -a(S"'enc_ObservedEventsDescriptor'/2" -p11926 -S"'enc_ObservedEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p11927 -tp11928 -a(S"'enc_PackagesDescriptor'/2" -p11929 -S"'enc_PackagesDescriptor'(${1:Val}, ${2:TagIn}) $3" -p11930 -tp11931 -a(S"'enc_PackagesItem'/2" -p11932 -S"'enc_PackagesItem'(${1:Val}, ${2:TagIn}) $3" -p11933 -tp11934 -a(S"'enc_PathName'/2" -p11935 -S"'enc_PathName'(${1:Val}, ${2:TagIn}) $3" -p11936 -tp11937 -a(S"'enc_PkgdName'/2" -p11938 -S"'enc_PkgdName'(${1:Val}, ${2:TagIn}) $3" -p11939 -tp11940 -a(S"'enc_PropertyGroup'/2" -p11941 -S"'enc_PropertyGroup'(${1:Val}, ${2:TagIn}) $3" -p11942 -tp11943 -a(S"'enc_PropertyParm'/2" -p11944 -S"'enc_PropertyParm'(${1:Val}, ${2:TagIn}) $3" -p11945 -tp11946 -a(S"'enc_Relation'/2" -p11947 -S"'enc_Relation'(${1:Val}, ${2:TagIn}) $3" -p11948 -tp11949 -a(S"'enc_RequestID'/2" -p11950 -S"'enc_RequestID'(${1:Val}, ${2:TagIn}) $3" -p11951 -tp11952 -a(S"'enc_RequestedActions'/2" -p11953 -S"'enc_RequestedActions'(${1:Val}, ${2:TagIn}) $3" -p11954 -tp11955 -a(S"'enc_RequestedEvent'/2" -p11956 -S"'enc_RequestedEvent'(${1:Val}, ${2:TagIn}) $3" -p11957 -tp11958 -a(S"'enc_SecondEventsDescriptor'/2" -p11959 -S"'enc_SecondEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p11960 -tp11961 -a(S"'enc_SecondRequestedActions'/2" -p11962 -S"'enc_SecondRequestedActions'(${1:Val}, ${2:TagIn}) $3" -p11963 -tp11964 -a(S"'enc_SecondRequestedEvent'/2" -p11965 -S"'enc_SecondRequestedEvent'(${1:Val}, ${2:TagIn}) $3" -p11966 -tp11967 -a(S"'enc_SecurityParmIndex'/2" -p11968 -S"'enc_SecurityParmIndex'(${1:Val}, ${2:TagIn}) $3" -p11969 -tp11970 -a(S"'enc_SeqSigList'/2" -p11971 -S"'enc_SeqSigList'(${1:Val}, ${2:TagIn}) $3" -p11972 -tp11973 -a(S"'enc_SequenceNum'/2" -p11974 -S"'enc_SequenceNum'(${1:Val}, ${2:TagIn}) $3" -p11975 -tp11976 -a(S"'enc_ServiceChangeAddress'/2" -p11977 -S"'enc_ServiceChangeAddress'(${1:Val}, ${2:TagIn}) $3" -p11978 -tp11979 -a(S"'enc_ServiceChangeMethod'/2" -p11980 -S"'enc_ServiceChangeMethod'(${1:Val}, ${2:TagIn}) $3" -p11981 -tp11982 -a(S"'enc_ServiceChangeParm'/2" -p11983 -S"'enc_ServiceChangeParm'(${1:Val}, ${2:TagIn}) $3" -p11984 -tp11985 -a(S"'enc_ServiceChangeProfile'/2" -p11986 -S"'enc_ServiceChangeProfile'(${1:Val}, ${2:TagIn}) $3" -p11987 -tp11988 -a(S"'enc_ServiceChangeReply'/2" -p11989 -S"'enc_ServiceChangeReply'(${1:Val}, ${2:TagIn}) $3" -p11990 -tp11991 -a(S"'enc_ServiceChangeRequest'/2" -p11992 -S"'enc_ServiceChangeRequest'(${1:Val}, ${2:TagIn}) $3" -p11993 -tp11994 -a(S"'enc_ServiceChangeResParm'/2" -p11995 -S"'enc_ServiceChangeResParm'(${1:Val}, ${2:TagIn}) $3" -p11996 -tp11997 -a(S"'enc_ServiceChangeResult'/2" -p11998 -S"'enc_ServiceChangeResult'(${1:Val}, ${2:TagIn}) $3" -p11999 -tp12000 -a(S"'enc_ServiceState'/2" -p12001 -S"'enc_ServiceState'(${1:Val}, ${2:TagIn}) $3" -p12002 -tp12003 -a(S"'enc_SigParameter'/2" -p12004 -S"'enc_SigParameter'(${1:Val}, ${2:TagIn}) $3" -p12005 -tp12006 -a(S"'enc_Signal'/2" -p12007 -S"'enc_Signal'(${1:Val}, ${2:TagIn}) $3" -p12008 -tp12009 -a(S"'enc_SignalName'/2" -p12010 -S"'enc_SignalName'(${1:Val}, ${2:TagIn}) $3" -p12011 -tp12012 -a(S"'enc_SignalRequest'/2" -p12013 -S"'enc_SignalRequest'(${1:Val}, ${2:TagIn}) $3" -p12014 -tp12015 -a(S"'enc_SignalType'/2" -p12016 -S"'enc_SignalType'(${1:Val}, ${2:TagIn}) $3" -p12017 -tp12018 -a(S"'enc_SignalsDescriptor'/2" -p12019 -S"'enc_SignalsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p12020 -tp12021 -a(S"'enc_StatisticsDescriptor'/2" -p12022 -S"'enc_StatisticsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p12023 -tp12024 -a(S"'enc_StatisticsParameter'/2" -p12025 -S"'enc_StatisticsParameter'(${1:Val}, ${2:TagIn}) $3" -p12026 -tp12027 -a(S"'enc_StreamDescriptor'/2" -p12028 -S"'enc_StreamDescriptor'(${1:Val}, ${2:TagIn}) $3" -p12029 -tp12030 -a(S"'enc_StreamID'/2" -p12031 -S"'enc_StreamID'(${1:Val}, ${2:TagIn}) $3" -p12032 -tp12033 -a(S"'enc_StreamMode'/2" -p12034 -S"'enc_StreamMode'(${1:Val}, ${2:TagIn}) $3" -p12035 -tp12036 -a(S"'enc_StreamParms'/2" -p12037 -S"'enc_StreamParms'(${1:Val}, ${2:TagIn}) $3" -p12038 -tp12039 -a(S"'enc_SubtractRequest'/2" -p12040 -S"'enc_SubtractRequest'(${1:Val}, ${2:TagIn}) $3" -p12041 -tp12042 -a(S"'enc_TerminationAudit'/2" -p12043 -S"'enc_TerminationAudit'(${1:Val}, ${2:TagIn}) $3" -p12044 -tp12045 -a(S"'enc_TerminationID'/2" -p12046 -S"'enc_TerminationID'(${1:Val}, ${2:TagIn}) $3" -p12047 -tp12048 -a(S"'enc_TerminationIDList'/2" -p12049 -S"'enc_TerminationIDList'(${1:Val}, ${2:TagIn}) $3" -p12050 -tp12051 -a(S"'enc_TerminationStateDescriptor'/2" -p12052 -S"'enc_TerminationStateDescriptor'(${1:Val}, ${2:TagIn}) $3" -p12053 -tp12054 -a(S"'enc_TimeNotation'/2" -p12055 -S"'enc_TimeNotation'(${1:Val}, ${2:TagIn}) $3" -p12056 -tp12057 -a(S"'enc_TopologyRequest'/2" -p12058 -S"'enc_TopologyRequest'(${1:Val}, ${2:TagIn}) $3" -p12059 -tp12060 -a(S"'enc_Transaction'/2" -p12061 -S"'enc_Transaction'(${1:Val}, ${2:TagIn}) $3" -p12062 -tp12063 -a(S"'enc_TransactionAck'/2" -p12064 -S"'enc_TransactionAck'(${1:Val}, ${2:TagIn}) $3" -p12065 -tp12066 -a(S"'enc_TransactionId'/2" -p12067 -S"'enc_TransactionId'(${1:Val}, ${2:TagIn}) $3" -p12068 -tp12069 -a(S"'enc_TransactionPending'/2" -p12070 -S"'enc_TransactionPending'(${1:Val}, ${2:TagIn}) $3" -p12071 -tp12072 -a(S"'enc_TransactionReply'/2" -p12073 -S"'enc_TransactionReply'(${1:Val}, ${2:TagIn}) $3" -p12074 -tp12075 -a(S"'enc_TransactionRequest'/2" -p12076 -S"'enc_TransactionRequest'(${1:Val}, ${2:TagIn}) $3" -p12077 -tp12078 -a(S"'enc_TransactionResponseAck'/2" -p12079 -S"'enc_TransactionResponseAck'(${1:Val}, ${2:TagIn}) $3" -p12080 -tp12081 -a(S"'enc_Value'/2" -p12082 -S"'enc_Value'(${1:Val}, ${2:TagIn}) $3" -p12083 -tp12084 -a(S"'enc_WildcardField'/2" -p12085 -S"'enc_WildcardField'(${1:Val}, ${2:TagIn}) $3" -p12086 -tp12087 -a(S'decode/2' -p12088 -S'decode(${1:Type}, ${2:Data}) $3' -p12089 -tp12090 -a(S'decode_disp/2' -p12091 -S'decode_disp(${1:Type}, ${2:Data}) $3' -p12092 -tp12093 -a(S'encode/2' -p12094 -S'encode(${1:Type}, ${2:Data}) $3' -p12095 -tp12096 -a(S'encode_disp/2' -p12097 -S'encode_disp(${1:Type}, ${2:Data}) $3' -p12098 -tp12099 -a(S'encoding_rule/0' -p12100 -S'encoding_rule() $1' -p12101 -tp12102 -a(S'info/0' -p12103 -S'info() $1' -p12104 -tp12105 -asS'megaco_ber_media_gateway_control_v2' -p12106 -(lp12107 -(S"'dec_ActionReply'/2" -p12108 -S"'dec_ActionReply'(${1:Bytes}, ${2:OptOrMand}) $3" -p12109 -tp12110 -a(S"'dec_ActionReply'/3" -p12111 -S"'dec_ActionReply'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12112 -tp12113 -a(S"'dec_ActionRequest'/2" -p12114 -S"'dec_ActionRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p12115 -tp12116 -a(S"'dec_ActionRequest'/3" -p12117 -S"'dec_ActionRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12118 -tp12119 -a(S"'dec_AmmDescriptor'/2" -p12120 -S"'dec_AmmDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p12121 -tp12122 -a(S"'dec_AmmDescriptor'/3" -p12123 -S"'dec_AmmDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12124 -tp12125 -a(S"'dec_AmmRequest'/2" -p12126 -S"'dec_AmmRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p12127 -tp12128 -a(S"'dec_AmmRequest'/3" -p12129 -S"'dec_AmmRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12130 -tp12131 -a(S"'dec_AmmsReply'/2" -p12132 -S"'dec_AmmsReply'(${1:Bytes}, ${2:OptOrMand}) $3" -p12133 -tp12134 -a(S"'dec_AmmsReply'/3" -p12135 -S"'dec_AmmsReply'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12136 -tp12137 -a(S"'dec_AuditDescriptor'/2" -p12138 -S"'dec_AuditDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p12139 -tp12140 -a(S"'dec_AuditDescriptor'/3" -p12141 -S"'dec_AuditDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12142 -tp12143 -a(S"'dec_AuditReply'/2" -p12144 -S"'dec_AuditReply'(${1:Bytes}, ${2:OptOrMand}) $3" -p12145 -tp12146 -a(S"'dec_AuditReply'/3" -p12147 -S"'dec_AuditReply'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12148 -tp12149 -a(S"'dec_AuditRequest'/2" -p12150 -S"'dec_AuditRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p12151 -tp12152 -a(S"'dec_AuditRequest'/3" -p12153 -S"'dec_AuditRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12154 -tp12155 -a(S"'dec_AuditResult'/2" -p12156 -S"'dec_AuditResult'(${1:Bytes}, ${2:OptOrMand}) $3" -p12157 -tp12158 -a(S"'dec_AuditResult'/3" -p12159 -S"'dec_AuditResult'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12160 -tp12161 -a(S"'dec_AuditReturnParameter'/2" -p12162 -S"'dec_AuditReturnParameter'(${1:Bytes}, ${2:OptOrMand}) $3" -p12163 -tp12164 -a(S"'dec_AuditReturnParameter'/3" -p12165 -S"'dec_AuditReturnParameter'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12166 -tp12167 -a(S"'dec_AuthData'/2" -p12168 -S"'dec_AuthData'(${1:Bytes}, ${2:OptOrMand}) $3" -p12169 -tp12170 -a(S"'dec_AuthData'/3" -p12171 -S"'dec_AuthData'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12172 -tp12173 -a(S"'dec_AuthenticationHeader'/2" -p12174 -S"'dec_AuthenticationHeader'(${1:Bytes}, ${2:OptOrMand}) $3" -p12175 -tp12176 -a(S"'dec_AuthenticationHeader'/3" -p12177 -S"'dec_AuthenticationHeader'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12178 -tp12179 -a(S"'dec_Command'/2" -p12180 -S"'dec_Command'(${1:Bytes}, ${2:OptOrMand}) $3" -p12181 -tp12182 -a(S"'dec_Command'/3" -p12183 -S"'dec_Command'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12184 -tp12185 -a(S"'dec_CommandReply'/2" -p12186 -S"'dec_CommandReply'(${1:Bytes}, ${2:OptOrMand}) $3" -p12187 -tp12188 -a(S"'dec_CommandReply'/3" -p12189 -S"'dec_CommandReply'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12190 -tp12191 -a(S"'dec_CommandRequest'/2" -p12192 -S"'dec_CommandRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p12193 -tp12194 -a(S"'dec_CommandRequest'/3" -p12195 -S"'dec_CommandRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12196 -tp12197 -a(S"'dec_ContextAttrAuditRequest'/2" -p12198 -S"'dec_ContextAttrAuditRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p12199 -tp12200 -a(S"'dec_ContextAttrAuditRequest'/3" -p12201 -S"'dec_ContextAttrAuditRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12202 -tp12203 -a(S"'dec_ContextID'/2" -p12204 -S"'dec_ContextID'(${1:Bytes}, ${2:OptOrMand}) $3" -p12205 -tp12206 -a(S"'dec_ContextID'/3" -p12207 -S"'dec_ContextID'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12208 -tp12209 -a(S"'dec_ContextRequest'/2" -p12210 -S"'dec_ContextRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p12211 -tp12212 -a(S"'dec_ContextRequest'/3" -p12213 -S"'dec_ContextRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12214 -tp12215 -a(S"'dec_DigitMapDescriptor'/2" -p12216 -S"'dec_DigitMapDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p12217 -tp12218 -a(S"'dec_DigitMapDescriptor'/3" -p12219 -S"'dec_DigitMapDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12220 -tp12221 -a(S"'dec_DigitMapName'/2" -p12222 -S"'dec_DigitMapName'(${1:Bytes}, ${2:OptOrMand}) $3" -p12223 -tp12224 -a(S"'dec_DigitMapName'/3" -p12225 -S"'dec_DigitMapName'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12226 -tp12227 -a(S"'dec_DigitMapValue'/2" -p12228 -S"'dec_DigitMapValue'(${1:Bytes}, ${2:OptOrMand}) $3" -p12229 -tp12230 -a(S"'dec_DigitMapValue'/3" -p12231 -S"'dec_DigitMapValue'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12232 -tp12233 -a(S"'dec_DomainName'/2" -p12234 -S"'dec_DomainName'(${1:Bytes}, ${2:OptOrMand}) $3" -p12235 -tp12236 -a(S"'dec_DomainName'/3" -p12237 -S"'dec_DomainName'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12238 -tp12239 -a(S"'dec_ErrorCode'/2" -p12240 -S"'dec_ErrorCode'(${1:Bytes}, ${2:OptOrMand}) $3" -p12241 -tp12242 -a(S"'dec_ErrorCode'/3" -p12243 -S"'dec_ErrorCode'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12244 -tp12245 -a(S"'dec_ErrorDescriptor'/2" -p12246 -S"'dec_ErrorDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p12247 -tp12248 -a(S"'dec_ErrorDescriptor'/3" -p12249 -S"'dec_ErrorDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12250 -tp12251 -a(S"'dec_ErrorText'/2" -p12252 -S"'dec_ErrorText'(${1:Bytes}, ${2:OptOrMand}) $3" -p12253 -tp12254 -a(S"'dec_ErrorText'/3" -p12255 -S"'dec_ErrorText'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12256 -tp12257 -a(S"'dec_EventBufferControl'/2" -p12258 -S"'dec_EventBufferControl'(${1:Bytes}, ${2:OptOrMand}) $3" -p12259 -tp12260 -a(S"'dec_EventBufferControl'/3" -p12261 -S"'dec_EventBufferControl'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12262 -tp12263 -a(S"'dec_EventBufferDescriptor'/2" -p12264 -S"'dec_EventBufferDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p12265 -tp12266 -a(S"'dec_EventBufferDescriptor'/3" -p12267 -S"'dec_EventBufferDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12268 -tp12269 -a(S"'dec_EventDM'/2" -p12270 -S"'dec_EventDM'(${1:Bytes}, ${2:OptOrMand}) $3" -p12271 -tp12272 -a(S"'dec_EventDM'/3" -p12273 -S"'dec_EventDM'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12274 -tp12275 -a(S"'dec_EventName'/2" -p12276 -S"'dec_EventName'(${1:Bytes}, ${2:OptOrMand}) $3" -p12277 -tp12278 -a(S"'dec_EventName'/3" -p12279 -S"'dec_EventName'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12280 -tp12281 -a(S"'dec_EventParameter'/2" -p12282 -S"'dec_EventParameter'(${1:Bytes}, ${2:OptOrMand}) $3" -p12283 -tp12284 -a(S"'dec_EventParameter'/3" -p12285 -S"'dec_EventParameter'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12286 -tp12287 -a(S"'dec_EventSpec'/2" -p12288 -S"'dec_EventSpec'(${1:Bytes}, ${2:OptOrMand}) $3" -p12289 -tp12290 -a(S"'dec_EventSpec'/3" -p12291 -S"'dec_EventSpec'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12292 -tp12293 -a(S"'dec_EventsDescriptor'/2" -p12294 -S"'dec_EventsDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p12295 -tp12296 -a(S"'dec_EventsDescriptor'/3" -p12297 -S"'dec_EventsDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12298 -tp12299 -a(S"'dec_H221NonStandard'/2" -p12300 -S"'dec_H221NonStandard'(${1:Bytes}, ${2:OptOrMand}) $3" -p12301 -tp12302 -a(S"'dec_H221NonStandard'/3" -p12303 -S"'dec_H221NonStandard'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12304 -tp12305 -a(S"'dec_IP4Address'/2" -p12306 -S"'dec_IP4Address'(${1:Bytes}, ${2:OptOrMand}) $3" -p12307 -tp12308 -a(S"'dec_IP4Address'/3" -p12309 -S"'dec_IP4Address'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12310 -tp12311 -a(S"'dec_IP6Address'/2" -p12312 -S"'dec_IP6Address'(${1:Bytes}, ${2:OptOrMand}) $3" -p12313 -tp12314 -a(S"'dec_IP6Address'/3" -p12315 -S"'dec_IP6Address'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12316 -tp12317 -a(S"'dec_IndAudDigitMapDescriptor'/2" -p12318 -S"'dec_IndAudDigitMapDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p12319 -tp12320 -a(S"'dec_IndAudDigitMapDescriptor'/3" -p12321 -S"'dec_IndAudDigitMapDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12322 -tp12323 -a(S"'dec_IndAudEventBufferDescriptor'/2" -p12324 -S"'dec_IndAudEventBufferDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p12325 -tp12326 -a(S"'dec_IndAudEventBufferDescriptor'/3" -p12327 -S"'dec_IndAudEventBufferDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12328 -tp12329 -a(S"'dec_IndAudEventsDescriptor'/2" -p12330 -S"'dec_IndAudEventsDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p12331 -tp12332 -a(S"'dec_IndAudEventsDescriptor'/3" -p12333 -S"'dec_IndAudEventsDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12334 -tp12335 -a(S"'dec_IndAudLocalControlDescriptor'/2" -p12336 -S"'dec_IndAudLocalControlDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p12337 -tp12338 -a(S"'dec_IndAudLocalControlDescriptor'/3" -p12339 -S"'dec_IndAudLocalControlDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12340 -tp12341 -a(S"'dec_IndAudLocalRemoteDescriptor'/2" -p12342 -S"'dec_IndAudLocalRemoteDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p12343 -tp12344 -a(S"'dec_IndAudLocalRemoteDescriptor'/3" -p12345 -S"'dec_IndAudLocalRemoteDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12346 -tp12347 -a(S"'dec_IndAudMediaDescriptor'/2" -p12348 -S"'dec_IndAudMediaDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p12349 -tp12350 -a(S"'dec_IndAudMediaDescriptor'/3" -p12351 -S"'dec_IndAudMediaDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12352 -tp12353 -a(S"'dec_IndAudPackagesDescriptor'/2" -p12354 -S"'dec_IndAudPackagesDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p12355 -tp12356 -a(S"'dec_IndAudPackagesDescriptor'/3" -p12357 -S"'dec_IndAudPackagesDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12358 -tp12359 -a(S"'dec_IndAudPropertyGroup'/2" -p12360 -S"'dec_IndAudPropertyGroup'(${1:Bytes}, ${2:OptOrMand}) $3" -p12361 -tp12362 -a(S"'dec_IndAudPropertyGroup'/3" -p12363 -S"'dec_IndAudPropertyGroup'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12364 -tp12365 -a(S"'dec_IndAudPropertyParm'/2" -p12366 -S"'dec_IndAudPropertyParm'(${1:Bytes}, ${2:OptOrMand}) $3" -p12367 -tp12368 -a(S"'dec_IndAudPropertyParm'/3" -p12369 -S"'dec_IndAudPropertyParm'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12370 -tp12371 -a(S"'dec_IndAudSeqSigList'/2" -p12372 -S"'dec_IndAudSeqSigList'(${1:Bytes}, ${2:OptOrMand}) $3" -p12373 -tp12374 -a(S"'dec_IndAudSeqSigList'/3" -p12375 -S"'dec_IndAudSeqSigList'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12376 -tp12377 -a(S"'dec_IndAudSignal'/2" -p12378 -S"'dec_IndAudSignal'(${1:Bytes}, ${2:OptOrMand}) $3" -p12379 -tp12380 -a(S"'dec_IndAudSignal'/3" -p12381 -S"'dec_IndAudSignal'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12382 -tp12383 -a(S"'dec_IndAudSignalsDescriptor'/2" -p12384 -S"'dec_IndAudSignalsDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p12385 -tp12386 -a(S"'dec_IndAudSignalsDescriptor'/3" -p12387 -S"'dec_IndAudSignalsDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12388 -tp12389 -a(S"'dec_IndAudStatisticsDescriptor'/2" -p12390 -S"'dec_IndAudStatisticsDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p12391 -tp12392 -a(S"'dec_IndAudStatisticsDescriptor'/3" -p12393 -S"'dec_IndAudStatisticsDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12394 -tp12395 -a(S"'dec_IndAudStreamDescriptor'/2" -p12396 -S"'dec_IndAudStreamDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p12397 -tp12398 -a(S"'dec_IndAudStreamDescriptor'/3" -p12399 -S"'dec_IndAudStreamDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12400 -tp12401 -a(S"'dec_IndAudStreamParms'/2" -p12402 -S"'dec_IndAudStreamParms'(${1:Bytes}, ${2:OptOrMand}) $3" -p12403 -tp12404 -a(S"'dec_IndAudStreamParms'/3" -p12405 -S"'dec_IndAudStreamParms'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12406 -tp12407 -a(S"'dec_IndAudTerminationStateDescriptor'/2" -p12408 -S"'dec_IndAudTerminationStateDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p12409 -tp12410 -a(S"'dec_IndAudTerminationStateDescriptor'/3" -p12411 -S"'dec_IndAudTerminationStateDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12412 -tp12413 -a(S"'dec_IndAuditParameter'/2" -p12414 -S"'dec_IndAuditParameter'(${1:Bytes}, ${2:OptOrMand}) $3" -p12415 -tp12416 -a(S"'dec_IndAuditParameter'/3" -p12417 -S"'dec_IndAuditParameter'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12418 -tp12419 -a(S"'dec_LocalControlDescriptor'/2" -p12420 -S"'dec_LocalControlDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p12421 -tp12422 -a(S"'dec_LocalControlDescriptor'/3" -p12423 -S"'dec_LocalControlDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12424 -tp12425 -a(S"'dec_LocalRemoteDescriptor'/2" -p12426 -S"'dec_LocalRemoteDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p12427 -tp12428 -a(S"'dec_LocalRemoteDescriptor'/3" -p12429 -S"'dec_LocalRemoteDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12430 -tp12431 -a(S"'dec_MId'/2" -p12432 -S"'dec_MId'(${1:Bytes}, ${2:OptOrMand}) $3" -p12433 -tp12434 -a(S"'dec_MId'/3" -p12435 -S"'dec_MId'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12436 -tp12437 -a(S"'dec_MediaDescriptor'/2" -p12438 -S"'dec_MediaDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p12439 -tp12440 -a(S"'dec_MediaDescriptor'/3" -p12441 -S"'dec_MediaDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12442 -tp12443 -a(S"'dec_MegacoMessage'/2" -p12444 -S"'dec_MegacoMessage'(${1:Bytes}, ${2:OptOrMand}) $3" -p12445 -tp12446 -a(S"'dec_MegacoMessage'/3" -p12447 -S"'dec_MegacoMessage'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12448 -tp12449 -a(S"'dec_Message'/2" -p12450 -S"'dec_Message'(${1:Bytes}, ${2:OptOrMand}) $3" -p12451 -tp12452 -a(S"'dec_Message'/3" -p12453 -S"'dec_Message'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12454 -tp12455 -a(S"'dec_ModemDescriptor'/2" -p12456 -S"'dec_ModemDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p12457 -tp12458 -a(S"'dec_ModemDescriptor'/3" -p12459 -S"'dec_ModemDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12460 -tp12461 -a(S"'dec_ModemType'/2" -p12462 -S"'dec_ModemType'(${1:Bytes}, ${2:OptOrMand}) $3" -p12463 -tp12464 -a(S"'dec_ModemType'/3" -p12465 -S"'dec_ModemType'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12466 -tp12467 -a(S"'dec_MuxDescriptor'/2" -p12468 -S"'dec_MuxDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p12469 -tp12470 -a(S"'dec_MuxDescriptor'/3" -p12471 -S"'dec_MuxDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12472 -tp12473 -a(S"'dec_MuxType'/2" -p12474 -S"'dec_MuxType'(${1:Bytes}, ${2:OptOrMand}) $3" -p12475 -tp12476 -a(S"'dec_MuxType'/3" -p12477 -S"'dec_MuxType'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12478 -tp12479 -a(S"'dec_Name'/2" -p12480 -S"'dec_Name'(${1:Bytes}, ${2:OptOrMand}) $3" -p12481 -tp12482 -a(S"'dec_Name'/3" -p12483 -S"'dec_Name'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12484 -tp12485 -a(S"'dec_NonStandardData'/2" -p12486 -S"'dec_NonStandardData'(${1:Bytes}, ${2:OptOrMand}) $3" -p12487 -tp12488 -a(S"'dec_NonStandardData'/3" -p12489 -S"'dec_NonStandardData'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12490 -tp12491 -a(S"'dec_NonStandardIdentifier'/2" -p12492 -S"'dec_NonStandardIdentifier'(${1:Bytes}, ${2:OptOrMand}) $3" -p12493 -tp12494 -a(S"'dec_NonStandardIdentifier'/3" -p12495 -S"'dec_NonStandardIdentifier'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12496 -tp12497 -a(S"'dec_NotifyCompletion'/2" -p12498 -S"'dec_NotifyCompletion'(${1:Bytes}, ${2:OptOrMand}) $3" -p12499 -tp12500 -a(S"'dec_NotifyCompletion'/3" -p12501 -S"'dec_NotifyCompletion'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12502 -tp12503 -a(S"'dec_NotifyReply'/2" -p12504 -S"'dec_NotifyReply'(${1:Bytes}, ${2:OptOrMand}) $3" -p12505 -tp12506 -a(S"'dec_NotifyReply'/3" -p12507 -S"'dec_NotifyReply'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12508 -tp12509 -a(S"'dec_NotifyRequest'/2" -p12510 -S"'dec_NotifyRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p12511 -tp12512 -a(S"'dec_NotifyRequest'/3" -p12513 -S"'dec_NotifyRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12514 -tp12515 -a(S"'dec_ObservedEvent'/2" -p12516 -S"'dec_ObservedEvent'(${1:Bytes}, ${2:OptOrMand}) $3" -p12517 -tp12518 -a(S"'dec_ObservedEvent'/3" -p12519 -S"'dec_ObservedEvent'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12520 -tp12521 -a(S"'dec_ObservedEventsDescriptor'/2" -p12522 -S"'dec_ObservedEventsDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p12523 -tp12524 -a(S"'dec_ObservedEventsDescriptor'/3" -p12525 -S"'dec_ObservedEventsDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12526 -tp12527 -a(S"'dec_PackagesDescriptor'/2" -p12528 -S"'dec_PackagesDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p12529 -tp12530 -a(S"'dec_PackagesDescriptor'/3" -p12531 -S"'dec_PackagesDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12532 -tp12533 -a(S"'dec_PackagesItem'/2" -p12534 -S"'dec_PackagesItem'(${1:Bytes}, ${2:OptOrMand}) $3" -p12535 -tp12536 -a(S"'dec_PackagesItem'/3" -p12537 -S"'dec_PackagesItem'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12538 -tp12539 -a(S"'dec_PathName'/2" -p12540 -S"'dec_PathName'(${1:Bytes}, ${2:OptOrMand}) $3" -p12541 -tp12542 -a(S"'dec_PathName'/3" -p12543 -S"'dec_PathName'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12544 -tp12545 -a(S"'dec_PkgdName'/2" -p12546 -S"'dec_PkgdName'(${1:Bytes}, ${2:OptOrMand}) $3" -p12547 -tp12548 -a(S"'dec_PkgdName'/3" -p12549 -S"'dec_PkgdName'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12550 -tp12551 -a(S"'dec_PropertyGroup'/2" -p12552 -S"'dec_PropertyGroup'(${1:Bytes}, ${2:OptOrMand}) $3" -p12553 -tp12554 -a(S"'dec_PropertyGroup'/3" -p12555 -S"'dec_PropertyGroup'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12556 -tp12557 -a(S"'dec_PropertyParm'/2" -p12558 -S"'dec_PropertyParm'(${1:Bytes}, ${2:OptOrMand}) $3" -p12559 -tp12560 -a(S"'dec_PropertyParm'/3" -p12561 -S"'dec_PropertyParm'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12562 -tp12563 -a(S"'dec_Relation'/2" -p12564 -S"'dec_Relation'(${1:Bytes}, ${2:OptOrMand}) $3" -p12565 -tp12566 -a(S"'dec_Relation'/3" -p12567 -S"'dec_Relation'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12568 -tp12569 -a(S"'dec_RequestID'/2" -p12570 -S"'dec_RequestID'(${1:Bytes}, ${2:OptOrMand}) $3" -p12571 -tp12572 -a(S"'dec_RequestID'/3" -p12573 -S"'dec_RequestID'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12574 -tp12575 -a(S"'dec_RequestedActions'/2" -p12576 -S"'dec_RequestedActions'(${1:Bytes}, ${2:OptOrMand}) $3" -p12577 -tp12578 -a(S"'dec_RequestedActions'/3" -p12579 -S"'dec_RequestedActions'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12580 -tp12581 -a(S"'dec_RequestedEvent'/2" -p12582 -S"'dec_RequestedEvent'(${1:Bytes}, ${2:OptOrMand}) $3" -p12583 -tp12584 -a(S"'dec_RequestedEvent'/3" -p12585 -S"'dec_RequestedEvent'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12586 -tp12587 -a(S"'dec_SecondEventsDescriptor'/2" -p12588 -S"'dec_SecondEventsDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p12589 -tp12590 -a(S"'dec_SecondEventsDescriptor'/3" -p12591 -S"'dec_SecondEventsDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12592 -tp12593 -a(S"'dec_SecondRequestedActions'/2" -p12594 -S"'dec_SecondRequestedActions'(${1:Bytes}, ${2:OptOrMand}) $3" -p12595 -tp12596 -a(S"'dec_SecondRequestedActions'/3" -p12597 -S"'dec_SecondRequestedActions'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12598 -tp12599 -a(S"'dec_SecondRequestedEvent'/2" -p12600 -S"'dec_SecondRequestedEvent'(${1:Bytes}, ${2:OptOrMand}) $3" -p12601 -tp12602 -a(S"'dec_SecondRequestedEvent'/3" -p12603 -S"'dec_SecondRequestedEvent'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12604 -tp12605 -a(S"'dec_SecurityParmIndex'/2" -p12606 -S"'dec_SecurityParmIndex'(${1:Bytes}, ${2:OptOrMand}) $3" -p12607 -tp12608 -a(S"'dec_SecurityParmIndex'/3" -p12609 -S"'dec_SecurityParmIndex'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12610 -tp12611 -a(S"'dec_SeqSigList'/2" -p12612 -S"'dec_SeqSigList'(${1:Bytes}, ${2:OptOrMand}) $3" -p12613 -tp12614 -a(S"'dec_SeqSigList'/3" -p12615 -S"'dec_SeqSigList'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12616 -tp12617 -a(S"'dec_SequenceNum'/2" -p12618 -S"'dec_SequenceNum'(${1:Bytes}, ${2:OptOrMand}) $3" -p12619 -tp12620 -a(S"'dec_SequenceNum'/3" -p12621 -S"'dec_SequenceNum'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12622 -tp12623 -a(S"'dec_ServiceChangeAddress'/2" -p12624 -S"'dec_ServiceChangeAddress'(${1:Bytes}, ${2:OptOrMand}) $3" -p12625 -tp12626 -a(S"'dec_ServiceChangeAddress'/3" -p12627 -S"'dec_ServiceChangeAddress'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12628 -tp12629 -a(S"'dec_ServiceChangeMethod'/2" -p12630 -S"'dec_ServiceChangeMethod'(${1:Bytes}, ${2:OptOrMand}) $3" -p12631 -tp12632 -a(S"'dec_ServiceChangeMethod'/3" -p12633 -S"'dec_ServiceChangeMethod'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12634 -tp12635 -a(S"'dec_ServiceChangeParm'/2" -p12636 -S"'dec_ServiceChangeParm'(${1:Bytes}, ${2:OptOrMand}) $3" -p12637 -tp12638 -a(S"'dec_ServiceChangeParm'/3" -p12639 -S"'dec_ServiceChangeParm'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12640 -tp12641 -a(S"'dec_ServiceChangeProfile'/2" -p12642 -S"'dec_ServiceChangeProfile'(${1:Bytes}, ${2:OptOrMand}) $3" -p12643 -tp12644 -a(S"'dec_ServiceChangeProfile'/3" -p12645 -S"'dec_ServiceChangeProfile'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12646 -tp12647 -a(S"'dec_ServiceChangeReply'/2" -p12648 -S"'dec_ServiceChangeReply'(${1:Bytes}, ${2:OptOrMand}) $3" -p12649 -tp12650 -a(S"'dec_ServiceChangeReply'/3" -p12651 -S"'dec_ServiceChangeReply'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12652 -tp12653 -a(S"'dec_ServiceChangeRequest'/2" -p12654 -S"'dec_ServiceChangeRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p12655 -tp12656 -a(S"'dec_ServiceChangeRequest'/3" -p12657 -S"'dec_ServiceChangeRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12658 -tp12659 -a(S"'dec_ServiceChangeResParm'/2" -p12660 -S"'dec_ServiceChangeResParm'(${1:Bytes}, ${2:OptOrMand}) $3" -p12661 -tp12662 -a(S"'dec_ServiceChangeResParm'/3" -p12663 -S"'dec_ServiceChangeResParm'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12664 -tp12665 -a(S"'dec_ServiceChangeResult'/2" -p12666 -S"'dec_ServiceChangeResult'(${1:Bytes}, ${2:OptOrMand}) $3" -p12667 -tp12668 -a(S"'dec_ServiceChangeResult'/3" -p12669 -S"'dec_ServiceChangeResult'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12670 -tp12671 -a(S"'dec_ServiceState'/2" -p12672 -S"'dec_ServiceState'(${1:Bytes}, ${2:OptOrMand}) $3" -p12673 -tp12674 -a(S"'dec_ServiceState'/3" -p12675 -S"'dec_ServiceState'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12676 -tp12677 -a(S"'dec_SigParameter'/2" -p12678 -S"'dec_SigParameter'(${1:Bytes}, ${2:OptOrMand}) $3" -p12679 -tp12680 -a(S"'dec_SigParameter'/3" -p12681 -S"'dec_SigParameter'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12682 -tp12683 -a(S"'dec_Signal'/2" -p12684 -S"'dec_Signal'(${1:Bytes}, ${2:OptOrMand}) $3" -p12685 -tp12686 -a(S"'dec_Signal'/3" -p12687 -S"'dec_Signal'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12688 -tp12689 -a(S"'dec_SignalName'/2" -p12690 -S"'dec_SignalName'(${1:Bytes}, ${2:OptOrMand}) $3" -p12691 -tp12692 -a(S"'dec_SignalName'/3" -p12693 -S"'dec_SignalName'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12694 -tp12695 -a(S"'dec_SignalRequest'/2" -p12696 -S"'dec_SignalRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p12697 -tp12698 -a(S"'dec_SignalRequest'/3" -p12699 -S"'dec_SignalRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12700 -tp12701 -a(S"'dec_SignalType'/2" -p12702 -S"'dec_SignalType'(${1:Bytes}, ${2:OptOrMand}) $3" -p12703 -tp12704 -a(S"'dec_SignalType'/3" -p12705 -S"'dec_SignalType'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12706 -tp12707 -a(S"'dec_SignalsDescriptor'/2" -p12708 -S"'dec_SignalsDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p12709 -tp12710 -a(S"'dec_SignalsDescriptor'/3" -p12711 -S"'dec_SignalsDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12712 -tp12713 -a(S"'dec_StatisticsDescriptor'/2" -p12714 -S"'dec_StatisticsDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p12715 -tp12716 -a(S"'dec_StatisticsDescriptor'/3" -p12717 -S"'dec_StatisticsDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12718 -tp12719 -a(S"'dec_StatisticsParameter'/2" -p12720 -S"'dec_StatisticsParameter'(${1:Bytes}, ${2:OptOrMand}) $3" -p12721 -tp12722 -a(S"'dec_StatisticsParameter'/3" -p12723 -S"'dec_StatisticsParameter'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12724 -tp12725 -a(S"'dec_StreamDescriptor'/2" -p12726 -S"'dec_StreamDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p12727 -tp12728 -a(S"'dec_StreamDescriptor'/3" -p12729 -S"'dec_StreamDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12730 -tp12731 -a(S"'dec_StreamID'/2" -p12732 -S"'dec_StreamID'(${1:Bytes}, ${2:OptOrMand}) $3" -p12733 -tp12734 -a(S"'dec_StreamID'/3" -p12735 -S"'dec_StreamID'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12736 -tp12737 -a(S"'dec_StreamMode'/2" -p12738 -S"'dec_StreamMode'(${1:Bytes}, ${2:OptOrMand}) $3" -p12739 -tp12740 -a(S"'dec_StreamMode'/3" -p12741 -S"'dec_StreamMode'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12742 -tp12743 -a(S"'dec_StreamParms'/2" -p12744 -S"'dec_StreamParms'(${1:Bytes}, ${2:OptOrMand}) $3" -p12745 -tp12746 -a(S"'dec_StreamParms'/3" -p12747 -S"'dec_StreamParms'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12748 -tp12749 -a(S"'dec_SubtractRequest'/2" -p12750 -S"'dec_SubtractRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p12751 -tp12752 -a(S"'dec_SubtractRequest'/3" -p12753 -S"'dec_SubtractRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12754 -tp12755 -a(S"'dec_TerminationAudit'/2" -p12756 -S"'dec_TerminationAudit'(${1:Bytes}, ${2:OptOrMand}) $3" -p12757 -tp12758 -a(S"'dec_TerminationAudit'/3" -p12759 -S"'dec_TerminationAudit'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12760 -tp12761 -a(S"'dec_TerminationID'/2" -p12762 -S"'dec_TerminationID'(${1:Bytes}, ${2:OptOrMand}) $3" -p12763 -tp12764 -a(S"'dec_TerminationID'/3" -p12765 -S"'dec_TerminationID'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12766 -tp12767 -a(S"'dec_TerminationIDList'/2" -p12768 -S"'dec_TerminationIDList'(${1:Bytes}, ${2:OptOrMand}) $3" -p12769 -tp12770 -a(S"'dec_TerminationIDList'/3" -p12771 -S"'dec_TerminationIDList'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12772 -tp12773 -a(S"'dec_TerminationStateDescriptor'/2" -p12774 -S"'dec_TerminationStateDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p12775 -tp12776 -a(S"'dec_TerminationStateDescriptor'/3" -p12777 -S"'dec_TerminationStateDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12778 -tp12779 -a(S"'dec_TimeNotation'/2" -p12780 -S"'dec_TimeNotation'(${1:Bytes}, ${2:OptOrMand}) $3" -p12781 -tp12782 -a(S"'dec_TimeNotation'/3" -p12783 -S"'dec_TimeNotation'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12784 -tp12785 -a(S"'dec_TopologyRequest'/2" -p12786 -S"'dec_TopologyRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p12787 -tp12788 -a(S"'dec_TopologyRequest'/3" -p12789 -S"'dec_TopologyRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12790 -tp12791 -a(S"'dec_Transaction'/2" -p12792 -S"'dec_Transaction'(${1:Bytes}, ${2:OptOrMand}) $3" -p12793 -tp12794 -a(S"'dec_Transaction'/3" -p12795 -S"'dec_Transaction'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12796 -tp12797 -a(S"'dec_TransactionAck'/2" -p12798 -S"'dec_TransactionAck'(${1:Bytes}, ${2:OptOrMand}) $3" -p12799 -tp12800 -a(S"'dec_TransactionAck'/3" -p12801 -S"'dec_TransactionAck'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12802 -tp12803 -a(S"'dec_TransactionId'/2" -p12804 -S"'dec_TransactionId'(${1:Bytes}, ${2:OptOrMand}) $3" -p12805 -tp12806 -a(S"'dec_TransactionId'/3" -p12807 -S"'dec_TransactionId'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12808 -tp12809 -a(S"'dec_TransactionPending'/2" -p12810 -S"'dec_TransactionPending'(${1:Bytes}, ${2:OptOrMand}) $3" -p12811 -tp12812 -a(S"'dec_TransactionPending'/3" -p12813 -S"'dec_TransactionPending'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12814 -tp12815 -a(S"'dec_TransactionReply'/2" -p12816 -S"'dec_TransactionReply'(${1:Bytes}, ${2:OptOrMand}) $3" -p12817 -tp12818 -a(S"'dec_TransactionReply'/3" -p12819 -S"'dec_TransactionReply'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12820 -tp12821 -a(S"'dec_TransactionRequest'/2" -p12822 -S"'dec_TransactionRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p12823 -tp12824 -a(S"'dec_TransactionRequest'/3" -p12825 -S"'dec_TransactionRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12826 -tp12827 -a(S"'dec_TransactionResponseAck'/2" -p12828 -S"'dec_TransactionResponseAck'(${1:Bytes}, ${2:OptOrMand}) $3" -p12829 -tp12830 -a(S"'dec_TransactionResponseAck'/3" -p12831 -S"'dec_TransactionResponseAck'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12832 -tp12833 -a(S"'dec_Value'/2" -p12834 -S"'dec_Value'(${1:Bytes}, ${2:OptOrMand}) $3" -p12835 -tp12836 -a(S"'dec_Value'/3" -p12837 -S"'dec_Value'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12838 -tp12839 -a(S"'dec_WildcardField'/2" -p12840 -S"'dec_WildcardField'(${1:Bytes}, ${2:OptOrMand}) $3" -p12841 -tp12842 -a(S"'dec_WildcardField'/3" -p12843 -S"'dec_WildcardField'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p12844 -tp12845 -a(S"'enc_ActionReply'/2" -p12846 -S"'enc_ActionReply'(${1:Val}, ${2:TagIn}) $3" -p12847 -tp12848 -a(S"'enc_ActionRequest'/2" -p12849 -S"'enc_ActionRequest'(${1:Val}, ${2:TagIn}) $3" -p12850 -tp12851 -a(S"'enc_AmmDescriptor'/2" -p12852 -S"'enc_AmmDescriptor'(${1:Val}, ${2:TagIn}) $3" -p12853 -tp12854 -a(S"'enc_AmmRequest'/2" -p12855 -S"'enc_AmmRequest'(${1:Val}, ${2:TagIn}) $3" -p12856 -tp12857 -a(S"'enc_AmmsReply'/2" -p12858 -S"'enc_AmmsReply'(${1:Val}, ${2:TagIn}) $3" -p12859 -tp12860 -a(S"'enc_AuditDescriptor'/2" -p12861 -S"'enc_AuditDescriptor'(${1:Val}, ${2:TagIn}) $3" -p12862 -tp12863 -a(S"'enc_AuditReply'/2" -p12864 -S"'enc_AuditReply'(${1:Val}, ${2:TagIn}) $3" -p12865 -tp12866 -a(S"'enc_AuditRequest'/2" -p12867 -S"'enc_AuditRequest'(${1:Val}, ${2:TagIn}) $3" -p12868 -tp12869 -a(S"'enc_AuditResult'/2" -p12870 -S"'enc_AuditResult'(${1:Val}, ${2:TagIn}) $3" -p12871 -tp12872 -a(S"'enc_AuditReturnParameter'/2" -p12873 -S"'enc_AuditReturnParameter'(${1:Val}, ${2:TagIn}) $3" -p12874 -tp12875 -a(S"'enc_AuthData'/2" -p12876 -S"'enc_AuthData'(${1:Val}, ${2:TagIn}) $3" -p12877 -tp12878 -a(S"'enc_AuthenticationHeader'/2" -p12879 -S"'enc_AuthenticationHeader'(${1:Val}, ${2:TagIn}) $3" -p12880 -tp12881 -a(S"'enc_Command'/2" -p12882 -S"'enc_Command'(${1:Val}, ${2:TagIn}) $3" -p12883 -tp12884 -a(S"'enc_CommandReply'/2" -p12885 -S"'enc_CommandReply'(${1:Val}, ${2:TagIn}) $3" -p12886 -tp12887 -a(S"'enc_CommandRequest'/2" -p12888 -S"'enc_CommandRequest'(${1:Val}, ${2:TagIn}) $3" -p12889 -tp12890 -a(S"'enc_ContextAttrAuditRequest'/2" -p12891 -S"'enc_ContextAttrAuditRequest'(${1:Val}, ${2:TagIn}) $3" -p12892 -tp12893 -a(S"'enc_ContextID'/2" -p12894 -S"'enc_ContextID'(${1:Val}, ${2:TagIn}) $3" -p12895 -tp12896 -a(S"'enc_ContextRequest'/2" -p12897 -S"'enc_ContextRequest'(${1:Val}, ${2:TagIn}) $3" -p12898 -tp12899 -a(S"'enc_DigitMapDescriptor'/2" -p12900 -S"'enc_DigitMapDescriptor'(${1:Val}, ${2:TagIn}) $3" -p12901 -tp12902 -a(S"'enc_DigitMapName'/2" -p12903 -S"'enc_DigitMapName'(${1:Val}, ${2:TagIn}) $3" -p12904 -tp12905 -a(S"'enc_DigitMapValue'/2" -p12906 -S"'enc_DigitMapValue'(${1:Val}, ${2:TagIn}) $3" -p12907 -tp12908 -a(S"'enc_DomainName'/2" -p12909 -S"'enc_DomainName'(${1:Val}, ${2:TagIn}) $3" -p12910 -tp12911 -a(S"'enc_ErrorCode'/2" -p12912 -S"'enc_ErrorCode'(${1:Val}, ${2:TagIn}) $3" -p12913 -tp12914 -a(S"'enc_ErrorDescriptor'/2" -p12915 -S"'enc_ErrorDescriptor'(${1:Val}, ${2:TagIn}) $3" -p12916 -tp12917 -a(S"'enc_ErrorText'/2" -p12918 -S"'enc_ErrorText'(${1:Val}, ${2:TagIn}) $3" -p12919 -tp12920 -a(S"'enc_EventBufferControl'/2" -p12921 -S"'enc_EventBufferControl'(${1:Val}, ${2:TagIn}) $3" -p12922 -tp12923 -a(S"'enc_EventBufferDescriptor'/2" -p12924 -S"'enc_EventBufferDescriptor'(${1:Val}, ${2:TagIn}) $3" -p12925 -tp12926 -a(S"'enc_EventDM'/2" -p12927 -S"'enc_EventDM'(${1:Val}, ${2:TagIn}) $3" -p12928 -tp12929 -a(S"'enc_EventName'/2" -p12930 -S"'enc_EventName'(${1:Val}, ${2:TagIn}) $3" -p12931 -tp12932 -a(S"'enc_EventParameter'/2" -p12933 -S"'enc_EventParameter'(${1:Val}, ${2:TagIn}) $3" -p12934 -tp12935 -a(S"'enc_EventSpec'/2" -p12936 -S"'enc_EventSpec'(${1:Val}, ${2:TagIn}) $3" -p12937 -tp12938 -a(S"'enc_EventsDescriptor'/2" -p12939 -S"'enc_EventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p12940 -tp12941 -a(S"'enc_H221NonStandard'/2" -p12942 -S"'enc_H221NonStandard'(${1:Val}, ${2:TagIn}) $3" -p12943 -tp12944 -a(S"'enc_IP4Address'/2" -p12945 -S"'enc_IP4Address'(${1:Val}, ${2:TagIn}) $3" -p12946 -tp12947 -a(S"'enc_IP6Address'/2" -p12948 -S"'enc_IP6Address'(${1:Val}, ${2:TagIn}) $3" -p12949 -tp12950 -a(S"'enc_IndAudDigitMapDescriptor'/2" -p12951 -S"'enc_IndAudDigitMapDescriptor'(${1:Val}, ${2:TagIn}) $3" -p12952 -tp12953 -a(S"'enc_IndAudEventBufferDescriptor'/2" -p12954 -S"'enc_IndAudEventBufferDescriptor'(${1:Val}, ${2:TagIn}) $3" -p12955 -tp12956 -a(S"'enc_IndAudEventsDescriptor'/2" -p12957 -S"'enc_IndAudEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p12958 -tp12959 -a(S"'enc_IndAudLocalControlDescriptor'/2" -p12960 -S"'enc_IndAudLocalControlDescriptor'(${1:Val}, ${2:TagIn}) $3" -p12961 -tp12962 -a(S"'enc_IndAudLocalRemoteDescriptor'/2" -p12963 -S"'enc_IndAudLocalRemoteDescriptor'(${1:Val}, ${2:TagIn}) $3" -p12964 -tp12965 -a(S"'enc_IndAudMediaDescriptor'/2" -p12966 -S"'enc_IndAudMediaDescriptor'(${1:Val}, ${2:TagIn}) $3" -p12967 -tp12968 -a(S"'enc_IndAudPackagesDescriptor'/2" -p12969 -S"'enc_IndAudPackagesDescriptor'(${1:Val}, ${2:TagIn}) $3" -p12970 -tp12971 -a(S"'enc_IndAudPropertyGroup'/2" -p12972 -S"'enc_IndAudPropertyGroup'(${1:Val}, ${2:TagIn}) $3" -p12973 -tp12974 -a(S"'enc_IndAudPropertyParm'/2" -p12975 -S"'enc_IndAudPropertyParm'(${1:Val}, ${2:TagIn}) $3" -p12976 -tp12977 -a(S"'enc_IndAudSeqSigList'/2" -p12978 -S"'enc_IndAudSeqSigList'(${1:Val}, ${2:TagIn}) $3" -p12979 -tp12980 -a(S"'enc_IndAudSignal'/2" -p12981 -S"'enc_IndAudSignal'(${1:Val}, ${2:TagIn}) $3" -p12982 -tp12983 -a(S"'enc_IndAudSignalsDescriptor'/2" -p12984 -S"'enc_IndAudSignalsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p12985 -tp12986 -a(S"'enc_IndAudStatisticsDescriptor'/2" -p12987 -S"'enc_IndAudStatisticsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p12988 -tp12989 -a(S"'enc_IndAudStreamDescriptor'/2" -p12990 -S"'enc_IndAudStreamDescriptor'(${1:Val}, ${2:TagIn}) $3" -p12991 -tp12992 -a(S"'enc_IndAudStreamParms'/2" -p12993 -S"'enc_IndAudStreamParms'(${1:Val}, ${2:TagIn}) $3" -p12994 -tp12995 -a(S"'enc_IndAudTerminationStateDescriptor'/2" -p12996 -S"'enc_IndAudTerminationStateDescriptor'(${1:Val}, ${2:TagIn}) $3" -p12997 -tp12998 -a(S"'enc_IndAuditParameter'/2" -p12999 -S"'enc_IndAuditParameter'(${1:Val}, ${2:TagIn}) $3" -p13000 -tp13001 -a(S"'enc_LocalControlDescriptor'/2" -p13002 -S"'enc_LocalControlDescriptor'(${1:Val}, ${2:TagIn}) $3" -p13003 -tp13004 -a(S"'enc_LocalRemoteDescriptor'/2" -p13005 -S"'enc_LocalRemoteDescriptor'(${1:Val}, ${2:TagIn}) $3" -p13006 -tp13007 -a(S"'enc_MId'/2" -p13008 -S"'enc_MId'(${1:Val}, ${2:TagIn}) $3" -p13009 -tp13010 -a(S"'enc_MediaDescriptor'/2" -p13011 -S"'enc_MediaDescriptor'(${1:Val}, ${2:TagIn}) $3" -p13012 -tp13013 -a(S"'enc_MegacoMessage'/2" -p13014 -S"'enc_MegacoMessage'(${1:Val}, ${2:TagIn}) $3" -p13015 -tp13016 -a(S"'enc_Message'/2" -p13017 -S"'enc_Message'(${1:Val}, ${2:TagIn}) $3" -p13018 -tp13019 -a(S"'enc_ModemDescriptor'/2" -p13020 -S"'enc_ModemDescriptor'(${1:Val}, ${2:TagIn}) $3" -p13021 -tp13022 -a(S"'enc_ModemType'/2" -p13023 -S"'enc_ModemType'(${1:Val}, ${2:TagIn}) $3" -p13024 -tp13025 -a(S"'enc_MuxDescriptor'/2" -p13026 -S"'enc_MuxDescriptor'(${1:Val}, ${2:TagIn}) $3" -p13027 -tp13028 -a(S"'enc_MuxType'/2" -p13029 -S"'enc_MuxType'(${1:Val}, ${2:TagIn}) $3" -p13030 -tp13031 -a(S"'enc_Name'/2" -p13032 -S"'enc_Name'(${1:Val}, ${2:TagIn}) $3" -p13033 -tp13034 -a(S"'enc_NonStandardData'/2" -p13035 -S"'enc_NonStandardData'(${1:Val}, ${2:TagIn}) $3" -p13036 -tp13037 -a(S"'enc_NonStandardIdentifier'/2" -p13038 -S"'enc_NonStandardIdentifier'(${1:Val}, ${2:TagIn}) $3" -p13039 -tp13040 -a(S"'enc_NotifyCompletion'/2" -p13041 -S"'enc_NotifyCompletion'(${1:Val}, ${2:TagIn}) $3" -p13042 -tp13043 -a(S"'enc_NotifyReply'/2" -p13044 -S"'enc_NotifyReply'(${1:Val}, ${2:TagIn}) $3" -p13045 -tp13046 -a(S"'enc_NotifyRequest'/2" -p13047 -S"'enc_NotifyRequest'(${1:Val}, ${2:TagIn}) $3" -p13048 -tp13049 -a(S"'enc_ObservedEvent'/2" -p13050 -S"'enc_ObservedEvent'(${1:Val}, ${2:TagIn}) $3" -p13051 -tp13052 -a(S"'enc_ObservedEventsDescriptor'/2" -p13053 -S"'enc_ObservedEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p13054 -tp13055 -a(S"'enc_PackagesDescriptor'/2" -p13056 -S"'enc_PackagesDescriptor'(${1:Val}, ${2:TagIn}) $3" -p13057 -tp13058 -a(S"'enc_PackagesItem'/2" -p13059 -S"'enc_PackagesItem'(${1:Val}, ${2:TagIn}) $3" -p13060 -tp13061 -a(S"'enc_PathName'/2" -p13062 -S"'enc_PathName'(${1:Val}, ${2:TagIn}) $3" -p13063 -tp13064 -a(S"'enc_PkgdName'/2" -p13065 -S"'enc_PkgdName'(${1:Val}, ${2:TagIn}) $3" -p13066 -tp13067 -a(S"'enc_PropertyGroup'/2" -p13068 -S"'enc_PropertyGroup'(${1:Val}, ${2:TagIn}) $3" -p13069 -tp13070 -a(S"'enc_PropertyParm'/2" -p13071 -S"'enc_PropertyParm'(${1:Val}, ${2:TagIn}) $3" -p13072 -tp13073 -a(S"'enc_Relation'/2" -p13074 -S"'enc_Relation'(${1:Val}, ${2:TagIn}) $3" -p13075 -tp13076 -a(S"'enc_RequestID'/2" -p13077 -S"'enc_RequestID'(${1:Val}, ${2:TagIn}) $3" -p13078 -tp13079 -a(S"'enc_RequestedActions'/2" -p13080 -S"'enc_RequestedActions'(${1:Val}, ${2:TagIn}) $3" -p13081 -tp13082 -a(S"'enc_RequestedEvent'/2" -p13083 -S"'enc_RequestedEvent'(${1:Val}, ${2:TagIn}) $3" -p13084 -tp13085 -a(S"'enc_SecondEventsDescriptor'/2" -p13086 -S"'enc_SecondEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p13087 -tp13088 -a(S"'enc_SecondRequestedActions'/2" -p13089 -S"'enc_SecondRequestedActions'(${1:Val}, ${2:TagIn}) $3" -p13090 -tp13091 -a(S"'enc_SecondRequestedEvent'/2" -p13092 -S"'enc_SecondRequestedEvent'(${1:Val}, ${2:TagIn}) $3" -p13093 -tp13094 -a(S"'enc_SecurityParmIndex'/2" -p13095 -S"'enc_SecurityParmIndex'(${1:Val}, ${2:TagIn}) $3" -p13096 -tp13097 -a(S"'enc_SeqSigList'/2" -p13098 -S"'enc_SeqSigList'(${1:Val}, ${2:TagIn}) $3" -p13099 -tp13100 -a(S"'enc_SequenceNum'/2" -p13101 -S"'enc_SequenceNum'(${1:Val}, ${2:TagIn}) $3" -p13102 -tp13103 -a(S"'enc_ServiceChangeAddress'/2" -p13104 -S"'enc_ServiceChangeAddress'(${1:Val}, ${2:TagIn}) $3" -p13105 -tp13106 -a(S"'enc_ServiceChangeMethod'/2" -p13107 -S"'enc_ServiceChangeMethod'(${1:Val}, ${2:TagIn}) $3" -p13108 -tp13109 -a(S"'enc_ServiceChangeParm'/2" -p13110 -S"'enc_ServiceChangeParm'(${1:Val}, ${2:TagIn}) $3" -p13111 -tp13112 -a(S"'enc_ServiceChangeProfile'/2" -p13113 -S"'enc_ServiceChangeProfile'(${1:Val}, ${2:TagIn}) $3" -p13114 -tp13115 -a(S"'enc_ServiceChangeReply'/2" -p13116 -S"'enc_ServiceChangeReply'(${1:Val}, ${2:TagIn}) $3" -p13117 -tp13118 -a(S"'enc_ServiceChangeRequest'/2" -p13119 -S"'enc_ServiceChangeRequest'(${1:Val}, ${2:TagIn}) $3" -p13120 -tp13121 -a(S"'enc_ServiceChangeResParm'/2" -p13122 -S"'enc_ServiceChangeResParm'(${1:Val}, ${2:TagIn}) $3" -p13123 -tp13124 -a(S"'enc_ServiceChangeResult'/2" -p13125 -S"'enc_ServiceChangeResult'(${1:Val}, ${2:TagIn}) $3" -p13126 -tp13127 -a(S"'enc_ServiceState'/2" -p13128 -S"'enc_ServiceState'(${1:Val}, ${2:TagIn}) $3" -p13129 -tp13130 -a(S"'enc_SigParameter'/2" -p13131 -S"'enc_SigParameter'(${1:Val}, ${2:TagIn}) $3" -p13132 -tp13133 -a(S"'enc_Signal'/2" -p13134 -S"'enc_Signal'(${1:Val}, ${2:TagIn}) $3" -p13135 -tp13136 -a(S"'enc_SignalName'/2" -p13137 -S"'enc_SignalName'(${1:Val}, ${2:TagIn}) $3" -p13138 -tp13139 -a(S"'enc_SignalRequest'/2" -p13140 -S"'enc_SignalRequest'(${1:Val}, ${2:TagIn}) $3" -p13141 -tp13142 -a(S"'enc_SignalType'/2" -p13143 -S"'enc_SignalType'(${1:Val}, ${2:TagIn}) $3" -p13144 -tp13145 -a(S"'enc_SignalsDescriptor'/2" -p13146 -S"'enc_SignalsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p13147 -tp13148 -a(S"'enc_StatisticsDescriptor'/2" -p13149 -S"'enc_StatisticsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p13150 -tp13151 -a(S"'enc_StatisticsParameter'/2" -p13152 -S"'enc_StatisticsParameter'(${1:Val}, ${2:TagIn}) $3" -p13153 -tp13154 -a(S"'enc_StreamDescriptor'/2" -p13155 -S"'enc_StreamDescriptor'(${1:Val}, ${2:TagIn}) $3" -p13156 -tp13157 -a(S"'enc_StreamID'/2" -p13158 -S"'enc_StreamID'(${1:Val}, ${2:TagIn}) $3" -p13159 -tp13160 -a(S"'enc_StreamMode'/2" -p13161 -S"'enc_StreamMode'(${1:Val}, ${2:TagIn}) $3" -p13162 -tp13163 -a(S"'enc_StreamParms'/2" -p13164 -S"'enc_StreamParms'(${1:Val}, ${2:TagIn}) $3" -p13165 -tp13166 -a(S"'enc_SubtractRequest'/2" -p13167 -S"'enc_SubtractRequest'(${1:Val}, ${2:TagIn}) $3" -p13168 -tp13169 -a(S"'enc_TerminationAudit'/2" -p13170 -S"'enc_TerminationAudit'(${1:Val}, ${2:TagIn}) $3" -p13171 -tp13172 -a(S"'enc_TerminationID'/2" -p13173 -S"'enc_TerminationID'(${1:Val}, ${2:TagIn}) $3" -p13174 -tp13175 -a(S"'enc_TerminationIDList'/2" -p13176 -S"'enc_TerminationIDList'(${1:Val}, ${2:TagIn}) $3" -p13177 -tp13178 -a(S"'enc_TerminationStateDescriptor'/2" -p13179 -S"'enc_TerminationStateDescriptor'(${1:Val}, ${2:TagIn}) $3" -p13180 -tp13181 -a(S"'enc_TimeNotation'/2" -p13182 -S"'enc_TimeNotation'(${1:Val}, ${2:TagIn}) $3" -p13183 -tp13184 -a(S"'enc_TopologyRequest'/2" -p13185 -S"'enc_TopologyRequest'(${1:Val}, ${2:TagIn}) $3" -p13186 -tp13187 -a(S"'enc_Transaction'/2" -p13188 -S"'enc_Transaction'(${1:Val}, ${2:TagIn}) $3" -p13189 -tp13190 -a(S"'enc_TransactionAck'/2" -p13191 -S"'enc_TransactionAck'(${1:Val}, ${2:TagIn}) $3" -p13192 -tp13193 -a(S"'enc_TransactionId'/2" -p13194 -S"'enc_TransactionId'(${1:Val}, ${2:TagIn}) $3" -p13195 -tp13196 -a(S"'enc_TransactionPending'/2" -p13197 -S"'enc_TransactionPending'(${1:Val}, ${2:TagIn}) $3" -p13198 -tp13199 -a(S"'enc_TransactionReply'/2" -p13200 -S"'enc_TransactionReply'(${1:Val}, ${2:TagIn}) $3" -p13201 -tp13202 -a(S"'enc_TransactionRequest'/2" -p13203 -S"'enc_TransactionRequest'(${1:Val}, ${2:TagIn}) $3" -p13204 -tp13205 -a(S"'enc_TransactionResponseAck'/2" -p13206 -S"'enc_TransactionResponseAck'(${1:Val}, ${2:TagIn}) $3" -p13207 -tp13208 -a(S"'enc_Value'/2" -p13209 -S"'enc_Value'(${1:Val}, ${2:TagIn}) $3" -p13210 -tp13211 -a(S"'enc_WildcardField'/2" -p13212 -S"'enc_WildcardField'(${1:Val}, ${2:TagIn}) $3" -p13213 -tp13214 -a(S'decode/2' -p13215 -S'decode(${1:Type}, ${2:Data}) $3' -p13216 -tp13217 -a(S'decode_disp/2' -p13218 -S'decode_disp(${1:Type}, ${2:Data}) $3' -p13219 -tp13220 -a(S'encode/2' -p13221 -S'encode(${1:Type}, ${2:Data}) $3' -p13222 -tp13223 -a(S'encode_disp/2' -p13224 -S'encode_disp(${1:Type}, ${2:Data}) $3' -p13225 -tp13226 -a(S'encoding_rule/0' -p13227 -S'encoding_rule() $1' -p13228 -tp13229 -a(S'info/0' -p13230 -S'info() $1' -p13231 -tp13232 -asS'megaco_ber_media_gateway_control_v3' -p13233 -(lp13234 -(S"'dec_ActionReply'/2" -p13235 -S"'dec_ActionReply'(${1:Bytes}, ${2:OptOrMand}) $3" -p13236 -tp13237 -a(S"'dec_ActionReply'/3" -p13238 -S"'dec_ActionReply'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13239 -tp13240 -a(S"'dec_ActionRequest'/2" -p13241 -S"'dec_ActionRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p13242 -tp13243 -a(S"'dec_ActionRequest'/3" -p13244 -S"'dec_ActionRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13245 -tp13246 -a(S"'dec_AmmDescriptor'/2" -p13247 -S"'dec_AmmDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p13248 -tp13249 -a(S"'dec_AmmDescriptor'/3" -p13250 -S"'dec_AmmDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13251 -tp13252 -a(S"'dec_AmmRequest'/2" -p13253 -S"'dec_AmmRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p13254 -tp13255 -a(S"'dec_AmmRequest'/3" -p13256 -S"'dec_AmmRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13257 -tp13258 -a(S"'dec_AmmsReply'/2" -p13259 -S"'dec_AmmsReply'(${1:Bytes}, ${2:OptOrMand}) $3" -p13260 -tp13261 -a(S"'dec_AmmsReply'/3" -p13262 -S"'dec_AmmsReply'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13263 -tp13264 -a(S"'dec_AuditDescriptor'/2" -p13265 -S"'dec_AuditDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p13266 -tp13267 -a(S"'dec_AuditDescriptor'/3" -p13268 -S"'dec_AuditDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13269 -tp13270 -a(S"'dec_AuditReply'/2" -p13271 -S"'dec_AuditReply'(${1:Bytes}, ${2:OptOrMand}) $3" -p13272 -tp13273 -a(S"'dec_AuditReply'/3" -p13274 -S"'dec_AuditReply'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13275 -tp13276 -a(S"'dec_AuditRequest'/2" -p13277 -S"'dec_AuditRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p13278 -tp13279 -a(S"'dec_AuditRequest'/3" -p13280 -S"'dec_AuditRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13281 -tp13282 -a(S"'dec_AuditResult'/2" -p13283 -S"'dec_AuditResult'(${1:Bytes}, ${2:OptOrMand}) $3" -p13284 -tp13285 -a(S"'dec_AuditResult'/3" -p13286 -S"'dec_AuditResult'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13287 -tp13288 -a(S"'dec_AuditReturnParameter'/2" -p13289 -S"'dec_AuditReturnParameter'(${1:Bytes}, ${2:OptOrMand}) $3" -p13290 -tp13291 -a(S"'dec_AuditReturnParameter'/3" -p13292 -S"'dec_AuditReturnParameter'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13293 -tp13294 -a(S"'dec_AuthData'/2" -p13295 -S"'dec_AuthData'(${1:Bytes}, ${2:OptOrMand}) $3" -p13296 -tp13297 -a(S"'dec_AuthData'/3" -p13298 -S"'dec_AuthData'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13299 -tp13300 -a(S"'dec_AuthenticationHeader'/2" -p13301 -S"'dec_AuthenticationHeader'(${1:Bytes}, ${2:OptOrMand}) $3" -p13302 -tp13303 -a(S"'dec_AuthenticationHeader'/3" -p13304 -S"'dec_AuthenticationHeader'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13305 -tp13306 -a(S"'dec_Command'/2" -p13307 -S"'dec_Command'(${1:Bytes}, ${2:OptOrMand}) $3" -p13308 -tp13309 -a(S"'dec_Command'/3" -p13310 -S"'dec_Command'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13311 -tp13312 -a(S"'dec_CommandReply'/2" -p13313 -S"'dec_CommandReply'(${1:Bytes}, ${2:OptOrMand}) $3" -p13314 -tp13315 -a(S"'dec_CommandReply'/3" -p13316 -S"'dec_CommandReply'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13317 -tp13318 -a(S"'dec_CommandRequest'/2" -p13319 -S"'dec_CommandRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p13320 -tp13321 -a(S"'dec_CommandRequest'/3" -p13322 -S"'dec_CommandRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13323 -tp13324 -a(S"'dec_ContextAttrAuditRequest'/2" -p13325 -S"'dec_ContextAttrAuditRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p13326 -tp13327 -a(S"'dec_ContextAttrAuditRequest'/3" -p13328 -S"'dec_ContextAttrAuditRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13329 -tp13330 -a(S"'dec_ContextID'/2" -p13331 -S"'dec_ContextID'(${1:Bytes}, ${2:OptOrMand}) $3" -p13332 -tp13333 -a(S"'dec_ContextID'/3" -p13334 -S"'dec_ContextID'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13335 -tp13336 -a(S"'dec_ContextRequest'/2" -p13337 -S"'dec_ContextRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p13338 -tp13339 -a(S"'dec_ContextRequest'/3" -p13340 -S"'dec_ContextRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13341 -tp13342 -a(S"'dec_DigitMapDescriptor'/2" -p13343 -S"'dec_DigitMapDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p13344 -tp13345 -a(S"'dec_DigitMapDescriptor'/3" -p13346 -S"'dec_DigitMapDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13347 -tp13348 -a(S"'dec_DigitMapName'/2" -p13349 -S"'dec_DigitMapName'(${1:Bytes}, ${2:OptOrMand}) $3" -p13350 -tp13351 -a(S"'dec_DigitMapName'/3" -p13352 -S"'dec_DigitMapName'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13353 -tp13354 -a(S"'dec_DigitMapValue'/2" -p13355 -S"'dec_DigitMapValue'(${1:Bytes}, ${2:OptOrMand}) $3" -p13356 -tp13357 -a(S"'dec_DigitMapValue'/3" -p13358 -S"'dec_DigitMapValue'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13359 -tp13360 -a(S"'dec_DomainName'/2" -p13361 -S"'dec_DomainName'(${1:Bytes}, ${2:OptOrMand}) $3" -p13362 -tp13363 -a(S"'dec_DomainName'/3" -p13364 -S"'dec_DomainName'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13365 -tp13366 -a(S"'dec_ErrorCode'/2" -p13367 -S"'dec_ErrorCode'(${1:Bytes}, ${2:OptOrMand}) $3" -p13368 -tp13369 -a(S"'dec_ErrorCode'/3" -p13370 -S"'dec_ErrorCode'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13371 -tp13372 -a(S"'dec_ErrorDescriptor'/2" -p13373 -S"'dec_ErrorDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p13374 -tp13375 -a(S"'dec_ErrorDescriptor'/3" -p13376 -S"'dec_ErrorDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13377 -tp13378 -a(S"'dec_ErrorText'/2" -p13379 -S"'dec_ErrorText'(${1:Bytes}, ${2:OptOrMand}) $3" -p13380 -tp13381 -a(S"'dec_ErrorText'/3" -p13382 -S"'dec_ErrorText'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13383 -tp13384 -a(S"'dec_EventBufferControl'/2" -p13385 -S"'dec_EventBufferControl'(${1:Bytes}, ${2:OptOrMand}) $3" -p13386 -tp13387 -a(S"'dec_EventBufferControl'/3" -p13388 -S"'dec_EventBufferControl'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13389 -tp13390 -a(S"'dec_EventBufferDescriptor'/2" -p13391 -S"'dec_EventBufferDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p13392 -tp13393 -a(S"'dec_EventBufferDescriptor'/3" -p13394 -S"'dec_EventBufferDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13395 -tp13396 -a(S"'dec_EventDM'/2" -p13397 -S"'dec_EventDM'(${1:Bytes}, ${2:OptOrMand}) $3" -p13398 -tp13399 -a(S"'dec_EventDM'/3" -p13400 -S"'dec_EventDM'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13401 -tp13402 -a(S"'dec_EventName'/2" -p13403 -S"'dec_EventName'(${1:Bytes}, ${2:OptOrMand}) $3" -p13404 -tp13405 -a(S"'dec_EventName'/3" -p13406 -S"'dec_EventName'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13407 -tp13408 -a(S"'dec_EventParameter'/2" -p13409 -S"'dec_EventParameter'(${1:Bytes}, ${2:OptOrMand}) $3" -p13410 -tp13411 -a(S"'dec_EventParameter'/3" -p13412 -S"'dec_EventParameter'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13413 -tp13414 -a(S"'dec_EventSpec'/2" -p13415 -S"'dec_EventSpec'(${1:Bytes}, ${2:OptOrMand}) $3" -p13416 -tp13417 -a(S"'dec_EventSpec'/3" -p13418 -S"'dec_EventSpec'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13419 -tp13420 -a(S"'dec_EventsDescriptor'/2" -p13421 -S"'dec_EventsDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p13422 -tp13423 -a(S"'dec_EventsDescriptor'/3" -p13424 -S"'dec_EventsDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13425 -tp13426 -a(S"'dec_H221NonStandard'/2" -p13427 -S"'dec_H221NonStandard'(${1:Bytes}, ${2:OptOrMand}) $3" -p13428 -tp13429 -a(S"'dec_H221NonStandard'/3" -p13430 -S"'dec_H221NonStandard'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13431 -tp13432 -a(S"'dec_IP4Address'/2" -p13433 -S"'dec_IP4Address'(${1:Bytes}, ${2:OptOrMand}) $3" -p13434 -tp13435 -a(S"'dec_IP4Address'/3" -p13436 -S"'dec_IP4Address'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13437 -tp13438 -a(S"'dec_IP6Address'/2" -p13439 -S"'dec_IP6Address'(${1:Bytes}, ${2:OptOrMand}) $3" -p13440 -tp13441 -a(S"'dec_IP6Address'/3" -p13442 -S"'dec_IP6Address'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13443 -tp13444 -a(S"'dec_IndAudDigitMapDescriptor'/2" -p13445 -S"'dec_IndAudDigitMapDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p13446 -tp13447 -a(S"'dec_IndAudDigitMapDescriptor'/3" -p13448 -S"'dec_IndAudDigitMapDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13449 -tp13450 -a(S"'dec_IndAudEventBufferDescriptor'/2" -p13451 -S"'dec_IndAudEventBufferDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p13452 -tp13453 -a(S"'dec_IndAudEventBufferDescriptor'/3" -p13454 -S"'dec_IndAudEventBufferDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13455 -tp13456 -a(S"'dec_IndAudEventsDescriptor'/2" -p13457 -S"'dec_IndAudEventsDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p13458 -tp13459 -a(S"'dec_IndAudEventsDescriptor'/3" -p13460 -S"'dec_IndAudEventsDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13461 -tp13462 -a(S"'dec_IndAudLocalControlDescriptor'/2" -p13463 -S"'dec_IndAudLocalControlDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p13464 -tp13465 -a(S"'dec_IndAudLocalControlDescriptor'/3" -p13466 -S"'dec_IndAudLocalControlDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13467 -tp13468 -a(S"'dec_IndAudLocalRemoteDescriptor'/2" -p13469 -S"'dec_IndAudLocalRemoteDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p13470 -tp13471 -a(S"'dec_IndAudLocalRemoteDescriptor'/3" -p13472 -S"'dec_IndAudLocalRemoteDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13473 -tp13474 -a(S"'dec_IndAudMediaDescriptor'/2" -p13475 -S"'dec_IndAudMediaDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p13476 -tp13477 -a(S"'dec_IndAudMediaDescriptor'/3" -p13478 -S"'dec_IndAudMediaDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13479 -tp13480 -a(S"'dec_IndAudPackagesDescriptor'/2" -p13481 -S"'dec_IndAudPackagesDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p13482 -tp13483 -a(S"'dec_IndAudPackagesDescriptor'/3" -p13484 -S"'dec_IndAudPackagesDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13485 -tp13486 -a(S"'dec_IndAudPropertyGroup'/2" -p13487 -S"'dec_IndAudPropertyGroup'(${1:Bytes}, ${2:OptOrMand}) $3" -p13488 -tp13489 -a(S"'dec_IndAudPropertyGroup'/3" -p13490 -S"'dec_IndAudPropertyGroup'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13491 -tp13492 -a(S"'dec_IndAudPropertyParm'/2" -p13493 -S"'dec_IndAudPropertyParm'(${1:Bytes}, ${2:OptOrMand}) $3" -p13494 -tp13495 -a(S"'dec_IndAudPropertyParm'/3" -p13496 -S"'dec_IndAudPropertyParm'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13497 -tp13498 -a(S"'dec_IndAudSeqSigList'/2" -p13499 -S"'dec_IndAudSeqSigList'(${1:Bytes}, ${2:OptOrMand}) $3" -p13500 -tp13501 -a(S"'dec_IndAudSeqSigList'/3" -p13502 -S"'dec_IndAudSeqSigList'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13503 -tp13504 -a(S"'dec_IndAudSignal'/2" -p13505 -S"'dec_IndAudSignal'(${1:Bytes}, ${2:OptOrMand}) $3" -p13506 -tp13507 -a(S"'dec_IndAudSignal'/3" -p13508 -S"'dec_IndAudSignal'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13509 -tp13510 -a(S"'dec_IndAudSignalsDescriptor'/2" -p13511 -S"'dec_IndAudSignalsDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p13512 -tp13513 -a(S"'dec_IndAudSignalsDescriptor'/3" -p13514 -S"'dec_IndAudSignalsDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13515 -tp13516 -a(S"'dec_IndAudStatisticsDescriptor'/2" -p13517 -S"'dec_IndAudStatisticsDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p13518 -tp13519 -a(S"'dec_IndAudStatisticsDescriptor'/3" -p13520 -S"'dec_IndAudStatisticsDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13521 -tp13522 -a(S"'dec_IndAudStreamDescriptor'/2" -p13523 -S"'dec_IndAudStreamDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p13524 -tp13525 -a(S"'dec_IndAudStreamDescriptor'/3" -p13526 -S"'dec_IndAudStreamDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13527 -tp13528 -a(S"'dec_IndAudStreamParms'/2" -p13529 -S"'dec_IndAudStreamParms'(${1:Bytes}, ${2:OptOrMand}) $3" -p13530 -tp13531 -a(S"'dec_IndAudStreamParms'/3" -p13532 -S"'dec_IndAudStreamParms'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13533 -tp13534 -a(S"'dec_IndAudTerminationStateDescriptor'/2" -p13535 -S"'dec_IndAudTerminationStateDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p13536 -tp13537 -a(S"'dec_IndAudTerminationStateDescriptor'/3" -p13538 -S"'dec_IndAudTerminationStateDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13539 -tp13540 -a(S"'dec_IndAuditParameter'/2" -p13541 -S"'dec_IndAuditParameter'(${1:Bytes}, ${2:OptOrMand}) $3" -p13542 -tp13543 -a(S"'dec_IndAuditParameter'/3" -p13544 -S"'dec_IndAuditParameter'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13545 -tp13546 -a(S"'dec_LocalControlDescriptor'/2" -p13547 -S"'dec_LocalControlDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p13548 -tp13549 -a(S"'dec_LocalControlDescriptor'/3" -p13550 -S"'dec_LocalControlDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13551 -tp13552 -a(S"'dec_LocalRemoteDescriptor'/2" -p13553 -S"'dec_LocalRemoteDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p13554 -tp13555 -a(S"'dec_LocalRemoteDescriptor'/3" -p13556 -S"'dec_LocalRemoteDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13557 -tp13558 -a(S"'dec_MId'/2" -p13559 -S"'dec_MId'(${1:Bytes}, ${2:OptOrMand}) $3" -p13560 -tp13561 -a(S"'dec_MId'/3" -p13562 -S"'dec_MId'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13563 -tp13564 -a(S"'dec_MediaDescriptor'/2" -p13565 -S"'dec_MediaDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p13566 -tp13567 -a(S"'dec_MediaDescriptor'/3" -p13568 -S"'dec_MediaDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13569 -tp13570 -a(S"'dec_MegacoMessage'/2" -p13571 -S"'dec_MegacoMessage'(${1:Bytes}, ${2:OptOrMand}) $3" -p13572 -tp13573 -a(S"'dec_MegacoMessage'/3" -p13574 -S"'dec_MegacoMessage'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13575 -tp13576 -a(S"'dec_Message'/2" -p13577 -S"'dec_Message'(${1:Bytes}, ${2:OptOrMand}) $3" -p13578 -tp13579 -a(S"'dec_Message'/3" -p13580 -S"'dec_Message'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13581 -tp13582 -a(S"'dec_ModemDescriptor'/2" -p13583 -S"'dec_ModemDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p13584 -tp13585 -a(S"'dec_ModemDescriptor'/3" -p13586 -S"'dec_ModemDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13587 -tp13588 -a(S"'dec_ModemType'/2" -p13589 -S"'dec_ModemType'(${1:Bytes}, ${2:OptOrMand}) $3" -p13590 -tp13591 -a(S"'dec_ModemType'/3" -p13592 -S"'dec_ModemType'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13593 -tp13594 -a(S"'dec_MuxDescriptor'/2" -p13595 -S"'dec_MuxDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p13596 -tp13597 -a(S"'dec_MuxDescriptor'/3" -p13598 -S"'dec_MuxDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13599 -tp13600 -a(S"'dec_MuxType'/2" -p13601 -S"'dec_MuxType'(${1:Bytes}, ${2:OptOrMand}) $3" -p13602 -tp13603 -a(S"'dec_MuxType'/3" -p13604 -S"'dec_MuxType'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13605 -tp13606 -a(S"'dec_Name'/2" -p13607 -S"'dec_Name'(${1:Bytes}, ${2:OptOrMand}) $3" -p13608 -tp13609 -a(S"'dec_Name'/3" -p13610 -S"'dec_Name'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13611 -tp13612 -a(S"'dec_NonStandardData'/2" -p13613 -S"'dec_NonStandardData'(${1:Bytes}, ${2:OptOrMand}) $3" -p13614 -tp13615 -a(S"'dec_NonStandardData'/3" -p13616 -S"'dec_NonStandardData'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13617 -tp13618 -a(S"'dec_NonStandardIdentifier'/2" -p13619 -S"'dec_NonStandardIdentifier'(${1:Bytes}, ${2:OptOrMand}) $3" -p13620 -tp13621 -a(S"'dec_NonStandardIdentifier'/3" -p13622 -S"'dec_NonStandardIdentifier'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13623 -tp13624 -a(S"'dec_NotifyBehaviour'/2" -p13625 -S"'dec_NotifyBehaviour'(${1:Bytes}, ${2:OptOrMand}) $3" -p13626 -tp13627 -a(S"'dec_NotifyBehaviour'/3" -p13628 -S"'dec_NotifyBehaviour'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13629 -tp13630 -a(S"'dec_NotifyCompletion'/2" -p13631 -S"'dec_NotifyCompletion'(${1:Bytes}, ${2:OptOrMand}) $3" -p13632 -tp13633 -a(S"'dec_NotifyCompletion'/3" -p13634 -S"'dec_NotifyCompletion'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13635 -tp13636 -a(S"'dec_NotifyReply'/2" -p13637 -S"'dec_NotifyReply'(${1:Bytes}, ${2:OptOrMand}) $3" -p13638 -tp13639 -a(S"'dec_NotifyReply'/3" -p13640 -S"'dec_NotifyReply'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13641 -tp13642 -a(S"'dec_NotifyRequest'/2" -p13643 -S"'dec_NotifyRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p13644 -tp13645 -a(S"'dec_NotifyRequest'/3" -p13646 -S"'dec_NotifyRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13647 -tp13648 -a(S"'dec_ObservedEvent'/2" -p13649 -S"'dec_ObservedEvent'(${1:Bytes}, ${2:OptOrMand}) $3" -p13650 -tp13651 -a(S"'dec_ObservedEvent'/3" -p13652 -S"'dec_ObservedEvent'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13653 -tp13654 -a(S"'dec_ObservedEventsDescriptor'/2" -p13655 -S"'dec_ObservedEventsDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p13656 -tp13657 -a(S"'dec_ObservedEventsDescriptor'/3" -p13658 -S"'dec_ObservedEventsDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13659 -tp13660 -a(S"'dec_PackagesDescriptor'/2" -p13661 -S"'dec_PackagesDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p13662 -tp13663 -a(S"'dec_PackagesDescriptor'/3" -p13664 -S"'dec_PackagesDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13665 -tp13666 -a(S"'dec_PackagesItem'/2" -p13667 -S"'dec_PackagesItem'(${1:Bytes}, ${2:OptOrMand}) $3" -p13668 -tp13669 -a(S"'dec_PackagesItem'/3" -p13670 -S"'dec_PackagesItem'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13671 -tp13672 -a(S"'dec_PathName'/2" -p13673 -S"'dec_PathName'(${1:Bytes}, ${2:OptOrMand}) $3" -p13674 -tp13675 -a(S"'dec_PathName'/3" -p13676 -S"'dec_PathName'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13677 -tp13678 -a(S"'dec_PkgdName'/2" -p13679 -S"'dec_PkgdName'(${1:Bytes}, ${2:OptOrMand}) $3" -p13680 -tp13681 -a(S"'dec_PkgdName'/3" -p13682 -S"'dec_PkgdName'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13683 -tp13684 -a(S"'dec_PropertyGroup'/2" -p13685 -S"'dec_PropertyGroup'(${1:Bytes}, ${2:OptOrMand}) $3" -p13686 -tp13687 -a(S"'dec_PropertyGroup'/3" -p13688 -S"'dec_PropertyGroup'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13689 -tp13690 -a(S"'dec_PropertyParm'/2" -p13691 -S"'dec_PropertyParm'(${1:Bytes}, ${2:OptOrMand}) $3" -p13692 -tp13693 -a(S"'dec_PropertyParm'/3" -p13694 -S"'dec_PropertyParm'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13695 -tp13696 -a(S"'dec_RegulatedEmbeddedDescriptor'/2" -p13697 -S"'dec_RegulatedEmbeddedDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p13698 -tp13699 -a(S"'dec_RegulatedEmbeddedDescriptor'/3" -p13700 -S"'dec_RegulatedEmbeddedDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13701 -tp13702 -a(S"'dec_Relation'/2" -p13703 -S"'dec_Relation'(${1:Bytes}, ${2:OptOrMand}) $3" -p13704 -tp13705 -a(S"'dec_Relation'/3" -p13706 -S"'dec_Relation'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13707 -tp13708 -a(S"'dec_RequestID'/2" -p13709 -S"'dec_RequestID'(${1:Bytes}, ${2:OptOrMand}) $3" -p13710 -tp13711 -a(S"'dec_RequestID'/3" -p13712 -S"'dec_RequestID'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13713 -tp13714 -a(S"'dec_RequestedActions'/2" -p13715 -S"'dec_RequestedActions'(${1:Bytes}, ${2:OptOrMand}) $3" -p13716 -tp13717 -a(S"'dec_RequestedActions'/3" -p13718 -S"'dec_RequestedActions'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13719 -tp13720 -a(S"'dec_RequestedEvent'/2" -p13721 -S"'dec_RequestedEvent'(${1:Bytes}, ${2:OptOrMand}) $3" -p13722 -tp13723 -a(S"'dec_RequestedEvent'/3" -p13724 -S"'dec_RequestedEvent'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13725 -tp13726 -a(S"'dec_SecondEventsDescriptor'/2" -p13727 -S"'dec_SecondEventsDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p13728 -tp13729 -a(S"'dec_SecondEventsDescriptor'/3" -p13730 -S"'dec_SecondEventsDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13731 -tp13732 -a(S"'dec_SecondRequestedActions'/2" -p13733 -S"'dec_SecondRequestedActions'(${1:Bytes}, ${2:OptOrMand}) $3" -p13734 -tp13735 -a(S"'dec_SecondRequestedActions'/3" -p13736 -S"'dec_SecondRequestedActions'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13737 -tp13738 -a(S"'dec_SecondRequestedEvent'/2" -p13739 -S"'dec_SecondRequestedEvent'(${1:Bytes}, ${2:OptOrMand}) $3" -p13740 -tp13741 -a(S"'dec_SecondRequestedEvent'/3" -p13742 -S"'dec_SecondRequestedEvent'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13743 -tp13744 -a(S"'dec_SecurityParmIndex'/2" -p13745 -S"'dec_SecurityParmIndex'(${1:Bytes}, ${2:OptOrMand}) $3" -p13746 -tp13747 -a(S"'dec_SecurityParmIndex'/3" -p13748 -S"'dec_SecurityParmIndex'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13749 -tp13750 -a(S"'dec_SegmentNumber'/2" -p13751 -S"'dec_SegmentNumber'(${1:Bytes}, ${2:OptOrMand}) $3" -p13752 -tp13753 -a(S"'dec_SegmentNumber'/3" -p13754 -S"'dec_SegmentNumber'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13755 -tp13756 -a(S"'dec_SegmentReply'/2" -p13757 -S"'dec_SegmentReply'(${1:Bytes}, ${2:OptOrMand}) $3" -p13758 -tp13759 -a(S"'dec_SegmentReply'/3" -p13760 -S"'dec_SegmentReply'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13761 -tp13762 -a(S"'dec_SelectLogic'/2" -p13763 -S"'dec_SelectLogic'(${1:Bytes}, ${2:OptOrMand}) $3" -p13764 -tp13765 -a(S"'dec_SelectLogic'/3" -p13766 -S"'dec_SelectLogic'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13767 -tp13768 -a(S"'dec_SeqSigList'/2" -p13769 -S"'dec_SeqSigList'(${1:Bytes}, ${2:OptOrMand}) $3" -p13770 -tp13771 -a(S"'dec_SeqSigList'/3" -p13772 -S"'dec_SeqSigList'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13773 -tp13774 -a(S"'dec_SequenceNum'/2" -p13775 -S"'dec_SequenceNum'(${1:Bytes}, ${2:OptOrMand}) $3" -p13776 -tp13777 -a(S"'dec_SequenceNum'/3" -p13778 -S"'dec_SequenceNum'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13779 -tp13780 -a(S"'dec_ServiceChangeAddress'/2" -p13781 -S"'dec_ServiceChangeAddress'(${1:Bytes}, ${2:OptOrMand}) $3" -p13782 -tp13783 -a(S"'dec_ServiceChangeAddress'/3" -p13784 -S"'dec_ServiceChangeAddress'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13785 -tp13786 -a(S"'dec_ServiceChangeMethod'/2" -p13787 -S"'dec_ServiceChangeMethod'(${1:Bytes}, ${2:OptOrMand}) $3" -p13788 -tp13789 -a(S"'dec_ServiceChangeMethod'/3" -p13790 -S"'dec_ServiceChangeMethod'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13791 -tp13792 -a(S"'dec_ServiceChangeParm'/2" -p13793 -S"'dec_ServiceChangeParm'(${1:Bytes}, ${2:OptOrMand}) $3" -p13794 -tp13795 -a(S"'dec_ServiceChangeParm'/3" -p13796 -S"'dec_ServiceChangeParm'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13797 -tp13798 -a(S"'dec_ServiceChangeProfile'/2" -p13799 -S"'dec_ServiceChangeProfile'(${1:Bytes}, ${2:OptOrMand}) $3" -p13800 -tp13801 -a(S"'dec_ServiceChangeProfile'/3" -p13802 -S"'dec_ServiceChangeProfile'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13803 -tp13804 -a(S"'dec_ServiceChangeReply'/2" -p13805 -S"'dec_ServiceChangeReply'(${1:Bytes}, ${2:OptOrMand}) $3" -p13806 -tp13807 -a(S"'dec_ServiceChangeReply'/3" -p13808 -S"'dec_ServiceChangeReply'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13809 -tp13810 -a(S"'dec_ServiceChangeRequest'/2" -p13811 -S"'dec_ServiceChangeRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p13812 -tp13813 -a(S"'dec_ServiceChangeRequest'/3" -p13814 -S"'dec_ServiceChangeRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13815 -tp13816 -a(S"'dec_ServiceChangeResParm'/2" -p13817 -S"'dec_ServiceChangeResParm'(${1:Bytes}, ${2:OptOrMand}) $3" -p13818 -tp13819 -a(S"'dec_ServiceChangeResParm'/3" -p13820 -S"'dec_ServiceChangeResParm'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13821 -tp13822 -a(S"'dec_ServiceChangeResult'/2" -p13823 -S"'dec_ServiceChangeResult'(${1:Bytes}, ${2:OptOrMand}) $3" -p13824 -tp13825 -a(S"'dec_ServiceChangeResult'/3" -p13826 -S"'dec_ServiceChangeResult'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13827 -tp13828 -a(S"'dec_ServiceState'/2" -p13829 -S"'dec_ServiceState'(${1:Bytes}, ${2:OptOrMand}) $3" -p13830 -tp13831 -a(S"'dec_ServiceState'/3" -p13832 -S"'dec_ServiceState'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13833 -tp13834 -a(S"'dec_SigParameter'/2" -p13835 -S"'dec_SigParameter'(${1:Bytes}, ${2:OptOrMand}) $3" -p13836 -tp13837 -a(S"'dec_SigParameter'/3" -p13838 -S"'dec_SigParameter'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13839 -tp13840 -a(S"'dec_Signal'/2" -p13841 -S"'dec_Signal'(${1:Bytes}, ${2:OptOrMand}) $3" -p13842 -tp13843 -a(S"'dec_Signal'/3" -p13844 -S"'dec_Signal'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13845 -tp13846 -a(S"'dec_SignalDirection'/2" -p13847 -S"'dec_SignalDirection'(${1:Bytes}, ${2:OptOrMand}) $3" -p13848 -tp13849 -a(S"'dec_SignalDirection'/3" -p13850 -S"'dec_SignalDirection'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13851 -tp13852 -a(S"'dec_SignalName'/2" -p13853 -S"'dec_SignalName'(${1:Bytes}, ${2:OptOrMand}) $3" -p13854 -tp13855 -a(S"'dec_SignalName'/3" -p13856 -S"'dec_SignalName'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13857 -tp13858 -a(S"'dec_SignalRequest'/2" -p13859 -S"'dec_SignalRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p13860 -tp13861 -a(S"'dec_SignalRequest'/3" -p13862 -S"'dec_SignalRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13863 -tp13864 -a(S"'dec_SignalType'/2" -p13865 -S"'dec_SignalType'(${1:Bytes}, ${2:OptOrMand}) $3" -p13866 -tp13867 -a(S"'dec_SignalType'/3" -p13868 -S"'dec_SignalType'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13869 -tp13870 -a(S"'dec_SignalsDescriptor'/2" -p13871 -S"'dec_SignalsDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p13872 -tp13873 -a(S"'dec_SignalsDescriptor'/3" -p13874 -S"'dec_SignalsDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13875 -tp13876 -a(S"'dec_StatisticsDescriptor'/2" -p13877 -S"'dec_StatisticsDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p13878 -tp13879 -a(S"'dec_StatisticsDescriptor'/3" -p13880 -S"'dec_StatisticsDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13881 -tp13882 -a(S"'dec_StatisticsParameter'/2" -p13883 -S"'dec_StatisticsParameter'(${1:Bytes}, ${2:OptOrMand}) $3" -p13884 -tp13885 -a(S"'dec_StatisticsParameter'/3" -p13886 -S"'dec_StatisticsParameter'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13887 -tp13888 -a(S"'dec_StreamDescriptor'/2" -p13889 -S"'dec_StreamDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p13890 -tp13891 -a(S"'dec_StreamDescriptor'/3" -p13892 -S"'dec_StreamDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13893 -tp13894 -a(S"'dec_StreamID'/2" -p13895 -S"'dec_StreamID'(${1:Bytes}, ${2:OptOrMand}) $3" -p13896 -tp13897 -a(S"'dec_StreamID'/3" -p13898 -S"'dec_StreamID'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13899 -tp13900 -a(S"'dec_StreamMode'/2" -p13901 -S"'dec_StreamMode'(${1:Bytes}, ${2:OptOrMand}) $3" -p13902 -tp13903 -a(S"'dec_StreamMode'/3" -p13904 -S"'dec_StreamMode'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13905 -tp13906 -a(S"'dec_StreamParms'/2" -p13907 -S"'dec_StreamParms'(${1:Bytes}, ${2:OptOrMand}) $3" -p13908 -tp13909 -a(S"'dec_StreamParms'/3" -p13910 -S"'dec_StreamParms'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13911 -tp13912 -a(S"'dec_SubtractRequest'/2" -p13913 -S"'dec_SubtractRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p13914 -tp13915 -a(S"'dec_SubtractRequest'/3" -p13916 -S"'dec_SubtractRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13917 -tp13918 -a(S"'dec_TermListAuditResult'/2" -p13919 -S"'dec_TermListAuditResult'(${1:Bytes}, ${2:OptOrMand}) $3" -p13920 -tp13921 -a(S"'dec_TermListAuditResult'/3" -p13922 -S"'dec_TermListAuditResult'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13923 -tp13924 -a(S"'dec_TerminationAudit'/2" -p13925 -S"'dec_TerminationAudit'(${1:Bytes}, ${2:OptOrMand}) $3" -p13926 -tp13927 -a(S"'dec_TerminationAudit'/3" -p13928 -S"'dec_TerminationAudit'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13929 -tp13930 -a(S"'dec_TerminationID'/2" -p13931 -S"'dec_TerminationID'(${1:Bytes}, ${2:OptOrMand}) $3" -p13932 -tp13933 -a(S"'dec_TerminationID'/3" -p13934 -S"'dec_TerminationID'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13935 -tp13936 -a(S"'dec_TerminationIDList'/2" -p13937 -S"'dec_TerminationIDList'(${1:Bytes}, ${2:OptOrMand}) $3" -p13938 -tp13939 -a(S"'dec_TerminationIDList'/3" -p13940 -S"'dec_TerminationIDList'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13941 -tp13942 -a(S"'dec_TerminationStateDescriptor'/2" -p13943 -S"'dec_TerminationStateDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p13944 -tp13945 -a(S"'dec_TerminationStateDescriptor'/3" -p13946 -S"'dec_TerminationStateDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13947 -tp13948 -a(S"'dec_TimeNotation'/2" -p13949 -S"'dec_TimeNotation'(${1:Bytes}, ${2:OptOrMand}) $3" -p13950 -tp13951 -a(S"'dec_TimeNotation'/3" -p13952 -S"'dec_TimeNotation'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13953 -tp13954 -a(S"'dec_TopologyRequest'/2" -p13955 -S"'dec_TopologyRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p13956 -tp13957 -a(S"'dec_TopologyRequest'/3" -p13958 -S"'dec_TopologyRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13959 -tp13960 -a(S"'dec_Transaction'/2" -p13961 -S"'dec_Transaction'(${1:Bytes}, ${2:OptOrMand}) $3" -p13962 -tp13963 -a(S"'dec_Transaction'/3" -p13964 -S"'dec_Transaction'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13965 -tp13966 -a(S"'dec_TransactionAck'/2" -p13967 -S"'dec_TransactionAck'(${1:Bytes}, ${2:OptOrMand}) $3" -p13968 -tp13969 -a(S"'dec_TransactionAck'/3" -p13970 -S"'dec_TransactionAck'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13971 -tp13972 -a(S"'dec_TransactionId'/2" -p13973 -S"'dec_TransactionId'(${1:Bytes}, ${2:OptOrMand}) $3" -p13974 -tp13975 -a(S"'dec_TransactionId'/3" -p13976 -S"'dec_TransactionId'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13977 -tp13978 -a(S"'dec_TransactionPending'/2" -p13979 -S"'dec_TransactionPending'(${1:Bytes}, ${2:OptOrMand}) $3" -p13980 -tp13981 -a(S"'dec_TransactionPending'/3" -p13982 -S"'dec_TransactionPending'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13983 -tp13984 -a(S"'dec_TransactionReply'/2" -p13985 -S"'dec_TransactionReply'(${1:Bytes}, ${2:OptOrMand}) $3" -p13986 -tp13987 -a(S"'dec_TransactionReply'/3" -p13988 -S"'dec_TransactionReply'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13989 -tp13990 -a(S"'dec_TransactionRequest'/2" -p13991 -S"'dec_TransactionRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p13992 -tp13993 -a(S"'dec_TransactionRequest'/3" -p13994 -S"'dec_TransactionRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p13995 -tp13996 -a(S"'dec_TransactionResponseAck'/2" -p13997 -S"'dec_TransactionResponseAck'(${1:Bytes}, ${2:OptOrMand}) $3" -p13998 -tp13999 -a(S"'dec_TransactionResponseAck'/3" -p14000 -S"'dec_TransactionResponseAck'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p14001 -tp14002 -a(S"'dec_Value'/2" -p14003 -S"'dec_Value'(${1:Bytes}, ${2:OptOrMand}) $3" -p14004 -tp14005 -a(S"'dec_Value'/3" -p14006 -S"'dec_Value'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p14007 -tp14008 -a(S"'dec_WildcardField'/2" -p14009 -S"'dec_WildcardField'(${1:Bytes}, ${2:OptOrMand}) $3" -p14010 -tp14011 -a(S"'dec_WildcardField'/3" -p14012 -S"'dec_WildcardField'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p14013 -tp14014 -a(S"'enc_ActionReply'/2" -p14015 -S"'enc_ActionReply'(${1:Val}, ${2:TagIn}) $3" -p14016 -tp14017 -a(S"'enc_ActionRequest'/2" -p14018 -S"'enc_ActionRequest'(${1:Val}, ${2:TagIn}) $3" -p14019 -tp14020 -a(S"'enc_AmmDescriptor'/2" -p14021 -S"'enc_AmmDescriptor'(${1:Val}, ${2:TagIn}) $3" -p14022 -tp14023 -a(S"'enc_AmmRequest'/2" -p14024 -S"'enc_AmmRequest'(${1:Val}, ${2:TagIn}) $3" -p14025 -tp14026 -a(S"'enc_AmmsReply'/2" -p14027 -S"'enc_AmmsReply'(${1:Val}, ${2:TagIn}) $3" -p14028 -tp14029 -a(S"'enc_AuditDescriptor'/2" -p14030 -S"'enc_AuditDescriptor'(${1:Val}, ${2:TagIn}) $3" -p14031 -tp14032 -a(S"'enc_AuditReply'/2" -p14033 -S"'enc_AuditReply'(${1:Val}, ${2:TagIn}) $3" -p14034 -tp14035 -a(S"'enc_AuditRequest'/2" -p14036 -S"'enc_AuditRequest'(${1:Val}, ${2:TagIn}) $3" -p14037 -tp14038 -a(S"'enc_AuditResult'/2" -p14039 -S"'enc_AuditResult'(${1:Val}, ${2:TagIn}) $3" -p14040 -tp14041 -a(S"'enc_AuditReturnParameter'/2" -p14042 -S"'enc_AuditReturnParameter'(${1:Val}, ${2:TagIn}) $3" -p14043 -tp14044 -a(S"'enc_AuthData'/2" -p14045 -S"'enc_AuthData'(${1:Val}, ${2:TagIn}) $3" -p14046 -tp14047 -a(S"'enc_AuthenticationHeader'/2" -p14048 -S"'enc_AuthenticationHeader'(${1:Val}, ${2:TagIn}) $3" -p14049 -tp14050 -a(S"'enc_Command'/2" -p14051 -S"'enc_Command'(${1:Val}, ${2:TagIn}) $3" -p14052 -tp14053 -a(S"'enc_CommandReply'/2" -p14054 -S"'enc_CommandReply'(${1:Val}, ${2:TagIn}) $3" -p14055 -tp14056 -a(S"'enc_CommandRequest'/2" -p14057 -S"'enc_CommandRequest'(${1:Val}, ${2:TagIn}) $3" -p14058 -tp14059 -a(S"'enc_ContextAttrAuditRequest'/2" -p14060 -S"'enc_ContextAttrAuditRequest'(${1:Val}, ${2:TagIn}) $3" -p14061 -tp14062 -a(S"'enc_ContextID'/2" -p14063 -S"'enc_ContextID'(${1:Val}, ${2:TagIn}) $3" -p14064 -tp14065 -a(S"'enc_ContextRequest'/2" -p14066 -S"'enc_ContextRequest'(${1:Val}, ${2:TagIn}) $3" -p14067 -tp14068 -a(S"'enc_DigitMapDescriptor'/2" -p14069 -S"'enc_DigitMapDescriptor'(${1:Val}, ${2:TagIn}) $3" -p14070 -tp14071 -a(S"'enc_DigitMapName'/2" -p14072 -S"'enc_DigitMapName'(${1:Val}, ${2:TagIn}) $3" -p14073 -tp14074 -a(S"'enc_DigitMapValue'/2" -p14075 -S"'enc_DigitMapValue'(${1:Val}, ${2:TagIn}) $3" -p14076 -tp14077 -a(S"'enc_DomainName'/2" -p14078 -S"'enc_DomainName'(${1:Val}, ${2:TagIn}) $3" -p14079 -tp14080 -a(S"'enc_ErrorCode'/2" -p14081 -S"'enc_ErrorCode'(${1:Val}, ${2:TagIn}) $3" -p14082 -tp14083 -a(S"'enc_ErrorDescriptor'/2" -p14084 -S"'enc_ErrorDescriptor'(${1:Val}, ${2:TagIn}) $3" -p14085 -tp14086 -a(S"'enc_ErrorText'/2" -p14087 -S"'enc_ErrorText'(${1:Val}, ${2:TagIn}) $3" -p14088 -tp14089 -a(S"'enc_EventBufferControl'/2" -p14090 -S"'enc_EventBufferControl'(${1:Val}, ${2:TagIn}) $3" -p14091 -tp14092 -a(S"'enc_EventBufferDescriptor'/2" -p14093 -S"'enc_EventBufferDescriptor'(${1:Val}, ${2:TagIn}) $3" -p14094 -tp14095 -a(S"'enc_EventDM'/2" -p14096 -S"'enc_EventDM'(${1:Val}, ${2:TagIn}) $3" -p14097 -tp14098 -a(S"'enc_EventName'/2" -p14099 -S"'enc_EventName'(${1:Val}, ${2:TagIn}) $3" -p14100 -tp14101 -a(S"'enc_EventParameter'/2" -p14102 -S"'enc_EventParameter'(${1:Val}, ${2:TagIn}) $3" -p14103 -tp14104 -a(S"'enc_EventSpec'/2" -p14105 -S"'enc_EventSpec'(${1:Val}, ${2:TagIn}) $3" -p14106 -tp14107 -a(S"'enc_EventsDescriptor'/2" -p14108 -S"'enc_EventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p14109 -tp14110 -a(S"'enc_H221NonStandard'/2" -p14111 -S"'enc_H221NonStandard'(${1:Val}, ${2:TagIn}) $3" -p14112 -tp14113 -a(S"'enc_IP4Address'/2" -p14114 -S"'enc_IP4Address'(${1:Val}, ${2:TagIn}) $3" -p14115 -tp14116 -a(S"'enc_IP6Address'/2" -p14117 -S"'enc_IP6Address'(${1:Val}, ${2:TagIn}) $3" -p14118 -tp14119 -a(S"'enc_IndAudDigitMapDescriptor'/2" -p14120 -S"'enc_IndAudDigitMapDescriptor'(${1:Val}, ${2:TagIn}) $3" -p14121 -tp14122 -a(S"'enc_IndAudEventBufferDescriptor'/2" -p14123 -S"'enc_IndAudEventBufferDescriptor'(${1:Val}, ${2:TagIn}) $3" -p14124 -tp14125 -a(S"'enc_IndAudEventsDescriptor'/2" -p14126 -S"'enc_IndAudEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p14127 -tp14128 -a(S"'enc_IndAudLocalControlDescriptor'/2" -p14129 -S"'enc_IndAudLocalControlDescriptor'(${1:Val}, ${2:TagIn}) $3" -p14130 -tp14131 -a(S"'enc_IndAudLocalRemoteDescriptor'/2" -p14132 -S"'enc_IndAudLocalRemoteDescriptor'(${1:Val}, ${2:TagIn}) $3" -p14133 -tp14134 -a(S"'enc_IndAudMediaDescriptor'/2" -p14135 -S"'enc_IndAudMediaDescriptor'(${1:Val}, ${2:TagIn}) $3" -p14136 -tp14137 -a(S"'enc_IndAudPackagesDescriptor'/2" -p14138 -S"'enc_IndAudPackagesDescriptor'(${1:Val}, ${2:TagIn}) $3" -p14139 -tp14140 -a(S"'enc_IndAudPropertyGroup'/2" -p14141 -S"'enc_IndAudPropertyGroup'(${1:Val}, ${2:TagIn}) $3" -p14142 -tp14143 -a(S"'enc_IndAudPropertyParm'/2" -p14144 -S"'enc_IndAudPropertyParm'(${1:Val}, ${2:TagIn}) $3" -p14145 -tp14146 -a(S"'enc_IndAudSeqSigList'/2" -p14147 -S"'enc_IndAudSeqSigList'(${1:Val}, ${2:TagIn}) $3" -p14148 -tp14149 -a(S"'enc_IndAudSignal'/2" -p14150 -S"'enc_IndAudSignal'(${1:Val}, ${2:TagIn}) $3" -p14151 -tp14152 -a(S"'enc_IndAudSignalsDescriptor'/2" -p14153 -S"'enc_IndAudSignalsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p14154 -tp14155 -a(S"'enc_IndAudStatisticsDescriptor'/2" -p14156 -S"'enc_IndAudStatisticsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p14157 -tp14158 -a(S"'enc_IndAudStreamDescriptor'/2" -p14159 -S"'enc_IndAudStreamDescriptor'(${1:Val}, ${2:TagIn}) $3" -p14160 -tp14161 -a(S"'enc_IndAudStreamParms'/2" -p14162 -S"'enc_IndAudStreamParms'(${1:Val}, ${2:TagIn}) $3" -p14163 -tp14164 -a(S"'enc_IndAudTerminationStateDescriptor'/2" -p14165 -S"'enc_IndAudTerminationStateDescriptor'(${1:Val}, ${2:TagIn}) $3" -p14166 -tp14167 -a(S"'enc_IndAuditParameter'/2" -p14168 -S"'enc_IndAuditParameter'(${1:Val}, ${2:TagIn}) $3" -p14169 -tp14170 -a(S"'enc_LocalControlDescriptor'/2" -p14171 -S"'enc_LocalControlDescriptor'(${1:Val}, ${2:TagIn}) $3" -p14172 -tp14173 -a(S"'enc_LocalRemoteDescriptor'/2" -p14174 -S"'enc_LocalRemoteDescriptor'(${1:Val}, ${2:TagIn}) $3" -p14175 -tp14176 -a(S"'enc_MId'/2" -p14177 -S"'enc_MId'(${1:Val}, ${2:TagIn}) $3" -p14178 -tp14179 -a(S"'enc_MediaDescriptor'/2" -p14180 -S"'enc_MediaDescriptor'(${1:Val}, ${2:TagIn}) $3" -p14181 -tp14182 -a(S"'enc_MegacoMessage'/2" -p14183 -S"'enc_MegacoMessage'(${1:Val}, ${2:TagIn}) $3" -p14184 -tp14185 -a(S"'enc_Message'/2" -p14186 -S"'enc_Message'(${1:Val}, ${2:TagIn}) $3" -p14187 -tp14188 -a(S"'enc_ModemDescriptor'/2" -p14189 -S"'enc_ModemDescriptor'(${1:Val}, ${2:TagIn}) $3" -p14190 -tp14191 -a(S"'enc_ModemType'/2" -p14192 -S"'enc_ModemType'(${1:Val}, ${2:TagIn}) $3" -p14193 -tp14194 -a(S"'enc_MuxDescriptor'/2" -p14195 -S"'enc_MuxDescriptor'(${1:Val}, ${2:TagIn}) $3" -p14196 -tp14197 -a(S"'enc_MuxType'/2" -p14198 -S"'enc_MuxType'(${1:Val}, ${2:TagIn}) $3" -p14199 -tp14200 -a(S"'enc_Name'/2" -p14201 -S"'enc_Name'(${1:Val}, ${2:TagIn}) $3" -p14202 -tp14203 -a(S"'enc_NonStandardData'/2" -p14204 -S"'enc_NonStandardData'(${1:Val}, ${2:TagIn}) $3" -p14205 -tp14206 -a(S"'enc_NonStandardIdentifier'/2" -p14207 -S"'enc_NonStandardIdentifier'(${1:Val}, ${2:TagIn}) $3" -p14208 -tp14209 -a(S"'enc_NotifyBehaviour'/2" -p14210 -S"'enc_NotifyBehaviour'(${1:Val}, ${2:TagIn}) $3" -p14211 -tp14212 -a(S"'enc_NotifyCompletion'/2" -p14213 -S"'enc_NotifyCompletion'(${1:Val}, ${2:TagIn}) $3" -p14214 -tp14215 -a(S"'enc_NotifyReply'/2" -p14216 -S"'enc_NotifyReply'(${1:Val}, ${2:TagIn}) $3" -p14217 -tp14218 -a(S"'enc_NotifyRequest'/2" -p14219 -S"'enc_NotifyRequest'(${1:Val}, ${2:TagIn}) $3" -p14220 -tp14221 -a(S"'enc_ObservedEvent'/2" -p14222 -S"'enc_ObservedEvent'(${1:Val}, ${2:TagIn}) $3" -p14223 -tp14224 -a(S"'enc_ObservedEventsDescriptor'/2" -p14225 -S"'enc_ObservedEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p14226 -tp14227 -a(S"'enc_PackagesDescriptor'/2" -p14228 -S"'enc_PackagesDescriptor'(${1:Val}, ${2:TagIn}) $3" -p14229 -tp14230 -a(S"'enc_PackagesItem'/2" -p14231 -S"'enc_PackagesItem'(${1:Val}, ${2:TagIn}) $3" -p14232 -tp14233 -a(S"'enc_PathName'/2" -p14234 -S"'enc_PathName'(${1:Val}, ${2:TagIn}) $3" -p14235 -tp14236 -a(S"'enc_PkgdName'/2" -p14237 -S"'enc_PkgdName'(${1:Val}, ${2:TagIn}) $3" -p14238 -tp14239 -a(S"'enc_PropertyGroup'/2" -p14240 -S"'enc_PropertyGroup'(${1:Val}, ${2:TagIn}) $3" -p14241 -tp14242 -a(S"'enc_PropertyParm'/2" -p14243 -S"'enc_PropertyParm'(${1:Val}, ${2:TagIn}) $3" -p14244 -tp14245 -a(S"'enc_RegulatedEmbeddedDescriptor'/2" -p14246 -S"'enc_RegulatedEmbeddedDescriptor'(${1:Val}, ${2:TagIn}) $3" -p14247 -tp14248 -a(S"'enc_Relation'/2" -p14249 -S"'enc_Relation'(${1:Val}, ${2:TagIn}) $3" -p14250 -tp14251 -a(S"'enc_RequestID'/2" -p14252 -S"'enc_RequestID'(${1:Val}, ${2:TagIn}) $3" -p14253 -tp14254 -a(S"'enc_RequestedActions'/2" -p14255 -S"'enc_RequestedActions'(${1:Val}, ${2:TagIn}) $3" -p14256 -tp14257 -a(S"'enc_RequestedEvent'/2" -p14258 -S"'enc_RequestedEvent'(${1:Val}, ${2:TagIn}) $3" -p14259 -tp14260 -a(S"'enc_SecondEventsDescriptor'/2" -p14261 -S"'enc_SecondEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p14262 -tp14263 -a(S"'enc_SecondRequestedActions'/2" -p14264 -S"'enc_SecondRequestedActions'(${1:Val}, ${2:TagIn}) $3" -p14265 -tp14266 -a(S"'enc_SecondRequestedEvent'/2" -p14267 -S"'enc_SecondRequestedEvent'(${1:Val}, ${2:TagIn}) $3" -p14268 -tp14269 -a(S"'enc_SecurityParmIndex'/2" -p14270 -S"'enc_SecurityParmIndex'(${1:Val}, ${2:TagIn}) $3" -p14271 -tp14272 -a(S"'enc_SegmentNumber'/2" -p14273 -S"'enc_SegmentNumber'(${1:Val}, ${2:TagIn}) $3" -p14274 -tp14275 -a(S"'enc_SegmentReply'/2" -p14276 -S"'enc_SegmentReply'(${1:Val}, ${2:TagIn}) $3" -p14277 -tp14278 -a(S"'enc_SelectLogic'/2" -p14279 -S"'enc_SelectLogic'(${1:Val}, ${2:TagIn}) $3" -p14280 -tp14281 -a(S"'enc_SeqSigList'/2" -p14282 -S"'enc_SeqSigList'(${1:Val}, ${2:TagIn}) $3" -p14283 -tp14284 -a(S"'enc_SequenceNum'/2" -p14285 -S"'enc_SequenceNum'(${1:Val}, ${2:TagIn}) $3" -p14286 -tp14287 -a(S"'enc_ServiceChangeAddress'/2" -p14288 -S"'enc_ServiceChangeAddress'(${1:Val}, ${2:TagIn}) $3" -p14289 -tp14290 -a(S"'enc_ServiceChangeMethod'/2" -p14291 -S"'enc_ServiceChangeMethod'(${1:Val}, ${2:TagIn}) $3" -p14292 -tp14293 -a(S"'enc_ServiceChangeParm'/2" -p14294 -S"'enc_ServiceChangeParm'(${1:Val}, ${2:TagIn}) $3" -p14295 -tp14296 -a(S"'enc_ServiceChangeProfile'/2" -p14297 -S"'enc_ServiceChangeProfile'(${1:Val}, ${2:TagIn}) $3" -p14298 -tp14299 -a(S"'enc_ServiceChangeReply'/2" -p14300 -S"'enc_ServiceChangeReply'(${1:Val}, ${2:TagIn}) $3" -p14301 -tp14302 -a(S"'enc_ServiceChangeRequest'/2" -p14303 -S"'enc_ServiceChangeRequest'(${1:Val}, ${2:TagIn}) $3" -p14304 -tp14305 -a(S"'enc_ServiceChangeResParm'/2" -p14306 -S"'enc_ServiceChangeResParm'(${1:Val}, ${2:TagIn}) $3" -p14307 -tp14308 -a(S"'enc_ServiceChangeResult'/2" -p14309 -S"'enc_ServiceChangeResult'(${1:Val}, ${2:TagIn}) $3" -p14310 -tp14311 -a(S"'enc_ServiceState'/2" -p14312 -S"'enc_ServiceState'(${1:Val}, ${2:TagIn}) $3" -p14313 -tp14314 -a(S"'enc_SigParameter'/2" -p14315 -S"'enc_SigParameter'(${1:Val}, ${2:TagIn}) $3" -p14316 -tp14317 -a(S"'enc_Signal'/2" -p14318 -S"'enc_Signal'(${1:Val}, ${2:TagIn}) $3" -p14319 -tp14320 -a(S"'enc_SignalDirection'/2" -p14321 -S"'enc_SignalDirection'(${1:Val}, ${2:TagIn}) $3" -p14322 -tp14323 -a(S"'enc_SignalName'/2" -p14324 -S"'enc_SignalName'(${1:Val}, ${2:TagIn}) $3" -p14325 -tp14326 -a(S"'enc_SignalRequest'/2" -p14327 -S"'enc_SignalRequest'(${1:Val}, ${2:TagIn}) $3" -p14328 -tp14329 -a(S"'enc_SignalType'/2" -p14330 -S"'enc_SignalType'(${1:Val}, ${2:TagIn}) $3" -p14331 -tp14332 -a(S"'enc_SignalsDescriptor'/2" -p14333 -S"'enc_SignalsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p14334 -tp14335 -a(S"'enc_StatisticsDescriptor'/2" -p14336 -S"'enc_StatisticsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p14337 -tp14338 -a(S"'enc_StatisticsParameter'/2" -p14339 -S"'enc_StatisticsParameter'(${1:Val}, ${2:TagIn}) $3" -p14340 -tp14341 -a(S"'enc_StreamDescriptor'/2" -p14342 -S"'enc_StreamDescriptor'(${1:Val}, ${2:TagIn}) $3" -p14343 -tp14344 -a(S"'enc_StreamID'/2" -p14345 -S"'enc_StreamID'(${1:Val}, ${2:TagIn}) $3" -p14346 -tp14347 -a(S"'enc_StreamMode'/2" -p14348 -S"'enc_StreamMode'(${1:Val}, ${2:TagIn}) $3" -p14349 -tp14350 -a(S"'enc_StreamParms'/2" -p14351 -S"'enc_StreamParms'(${1:Val}, ${2:TagIn}) $3" -p14352 -tp14353 -a(S"'enc_SubtractRequest'/2" -p14354 -S"'enc_SubtractRequest'(${1:Val}, ${2:TagIn}) $3" -p14355 -tp14356 -a(S"'enc_TermListAuditResult'/2" -p14357 -S"'enc_TermListAuditResult'(${1:Val}, ${2:TagIn}) $3" -p14358 -tp14359 -a(S"'enc_TerminationAudit'/2" -p14360 -S"'enc_TerminationAudit'(${1:Val}, ${2:TagIn}) $3" -p14361 -tp14362 -a(S"'enc_TerminationID'/2" -p14363 -S"'enc_TerminationID'(${1:Val}, ${2:TagIn}) $3" -p14364 -tp14365 -a(S"'enc_TerminationIDList'/2" -p14366 -S"'enc_TerminationIDList'(${1:Val}, ${2:TagIn}) $3" -p14367 -tp14368 -a(S"'enc_TerminationStateDescriptor'/2" -p14369 -S"'enc_TerminationStateDescriptor'(${1:Val}, ${2:TagIn}) $3" -p14370 -tp14371 -a(S"'enc_TimeNotation'/2" -p14372 -S"'enc_TimeNotation'(${1:Val}, ${2:TagIn}) $3" -p14373 -tp14374 -a(S"'enc_TopologyRequest'/2" -p14375 -S"'enc_TopologyRequest'(${1:Val}, ${2:TagIn}) $3" -p14376 -tp14377 -a(S"'enc_Transaction'/2" -p14378 -S"'enc_Transaction'(${1:Val}, ${2:TagIn}) $3" -p14379 -tp14380 -a(S"'enc_TransactionAck'/2" -p14381 -S"'enc_TransactionAck'(${1:Val}, ${2:TagIn}) $3" -p14382 -tp14383 -a(S"'enc_TransactionId'/2" -p14384 -S"'enc_TransactionId'(${1:Val}, ${2:TagIn}) $3" -p14385 -tp14386 -a(S"'enc_TransactionPending'/2" -p14387 -S"'enc_TransactionPending'(${1:Val}, ${2:TagIn}) $3" -p14388 -tp14389 -a(S"'enc_TransactionReply'/2" -p14390 -S"'enc_TransactionReply'(${1:Val}, ${2:TagIn}) $3" -p14391 -tp14392 -a(S"'enc_TransactionRequest'/2" -p14393 -S"'enc_TransactionRequest'(${1:Val}, ${2:TagIn}) $3" -p14394 -tp14395 -a(S"'enc_TransactionResponseAck'/2" -p14396 -S"'enc_TransactionResponseAck'(${1:Val}, ${2:TagIn}) $3" -p14397 -tp14398 -a(S"'enc_Value'/2" -p14399 -S"'enc_Value'(${1:Val}, ${2:TagIn}) $3" -p14400 -tp14401 -a(S"'enc_WildcardField'/2" -p14402 -S"'enc_WildcardField'(${1:Val}, ${2:TagIn}) $3" -p14403 -tp14404 -a(S'decode/2' -p14405 -S'decode(${1:Type}, ${2:Data}) $3' -p14406 -tp14407 -a(S'decode_disp/2' -p14408 -S'decode_disp(${1:Type}, ${2:Data}) $3' -p14409 -tp14410 -a(S'encode/2' -p14411 -S'encode(${1:Type}, ${2:Data}) $3' -p14412 -tp14413 -a(S'encode_disp/2' -p14414 -S'encode_disp(${1:Type}, ${2:Data}) $3' -p14415 -tp14416 -a(S'encoding_rule/0' -p14417 -S'encoding_rule() $1' -p14418 -tp14419 -a(S'info/0' -p14420 -S'info() $1' -p14421 -tp14422 -asS'xref_parser' -p14423 -(lp14424 -(S'format_error/1' -p14425 -S'format_error(${1:Message}) $2' -p14426 -tp14427 -a(S'parse/1' -p14428 -S'parse(${1:Tokens}) $2' -p14429 -tp14430 -a(S'parse_and_scan/1' -p14431 -S'parse_and_scan(${1:Param1}) $2' -p14432 -tp14433 -a(S't2s/1' -p14434 -S't2s(${1:T}) $2' -p14435 -tp14436 -asS'edoc_run' -p14437 -(lp14438 -(S'application/1' -p14439 -S'application(${1:Args}) $2' -p14440 -tp14441 -a(S'file/1' -p14442 -S'file(${1:Args}) $2' -p14443 -tp14444 -a(S'files/1' -p14445 -S'files(${1:Args}) $2' -p14446 -tp14447 -a(S'packages/1' -p14448 -S'packages(${1:Args}) $2' -p14449 -tp14450 -a(S'toc/1' -p14451 -S'toc(${1:Args}) $2' -p14452 -tp14453 -asS'xmerl' -p14454 -(lp14455 -(S'callbacks/1' -p14456 -S'callbacks(${1:Module}) $2' -p14457 -tp14458 -a(S'export/2' -p14459 -S'export(${1:Content}, ${2:Callback}) $3' -p14460 -tp14461 -a(S'export/3' -p14462 -S'export(${1:Content}, ${2:Callback}, ${3:RootAttributes}) $4' -p14463 -tp14464 -a(S'export_content/2' -p14465 -S'export_content(${1:Param1}, ${2:Callbacks}) $3' -p14466 -tp14467 -a(S'export_element/2' -p14468 -S'export_element(${1:E}, ${2:CB}) $3' -p14469 -tp14470 -a(S'export_element/3' -p14471 -S'export_element(${1:E}, ${2:CallbackModule}, ${3:CallbackState}) $4' -p14472 -tp14473 -a(S'export_simple/2' -p14474 -S'export_simple(${1:Content}, ${2:Callback}) $3' -p14475 -tp14476 -a(S'export_simple/3' -p14477 -S'export_simple(${1:Content}, ${2:Callback}, ${3:RootAttrs}) $4' -p14478 -tp14479 -a(S'export_simple_content/2' -p14480 -S'export_simple_content(${1:Content}, ${2:Callback}) $3' -p14481 -tp14482 -a(S'export_simple_element/2' -p14483 -S'export_simple_element(${1:Content}, ${2:Callback}) $3' -p14484 -tp14485 -asS'inet_sctp' -p14486 -(lp14487 -(S'close/1' -p14488 -S'close(${1:S}) $2' -p14489 -tp14490 -a(S'connect/5' -p14491 -S'connect(${1:S}, ${2:Addr}, ${3:Port}, ${4:Opts}, ${5:Timer}) $6' -p14492 -tp14493 -a(S'getaddr/1' -p14494 -S'getaddr(${1:Address}) $2' -p14495 -tp14496 -a(S'getaddr/2' -p14497 -S'getaddr(${1:Address}, ${2:Timer}) $3' -p14498 -tp14499 -a(S'getserv/1' -p14500 -S'getserv(${1:Port}) $2' -p14501 -tp14502 -a(S'listen/2' -p14503 -S'listen(${1:S}, ${2:Flag}) $3' -p14504 -tp14505 -a(S'open/1' -p14506 -S'open(${1:Opts}) $2' -p14507 -tp14508 -a(S'peeloff/2' -p14509 -S'peeloff(${1:S}, ${2:AssocId}) $3' -p14510 -tp14511 -a(S'recv/2' -p14512 -S'recv(${1:S}, ${2:Timeout}) $3' -p14513 -tp14514 -a(S'send/4' -p14515 -S'send(${1:S}, ${2:AssocId}, ${3:Stream}, ${4:Data}) $5' -p14516 -tp14517 -a(S'sendmsg/3' -p14518 -S'sendmsg(${1:S}, ${2:SRI}, ${3:Data}) $4' -p14519 -tp14520 -a(S'translate_ip/1' -p14521 -S'translate_ip(${1:IP}) $2' -p14522 -tp14523 -asS'net_adm' -p14524 -(lp14525 -(S'dns_hostname/1' -p14526 -S'dns_hostname(${1:Host}) $2' -p14527 -tp14528 -a(S'host_file/0' -p14529 -S'host_file() $1' -p14530 -tp14531 -a(S'localhost/0' -p14532 -S'localhost() $1' -p14533 -tp14534 -a(S'names/0' -p14535 -S'names() $1' -p14536 -tp14537 -a(S'names/1' -p14538 -S'names(${1:Host}) $2' -p14539 -tp14540 -a(S'ping/1' -p14541 -S'ping(${1:Node}) $2' -p14542 -tp14543 -a(S'ping_list/1' -p14544 -S'ping_list(${1:Nodelist}) $2' -p14545 -tp14546 -a(S'world/0' -p14547 -S'world() $1' -p14548 -tp14549 -a(S'world/1' -p14550 -S'world(${1:Arg}) $2' -p14551 -tp14552 -a(S'world_list/1' -p14553 -S'world_list(${1:Hosts}) $2' -p14554 -tp14555 -a(S'world_list/2' -p14556 -S'world_list(${1:Hosts}, ${2:Arg}) $3' -p14557 -tp14558 -asS'gb_trees' -p14559 -(lp14560 -(S'balance/1' -p14561 -S'balance(${1:Tree1}) $2' -p14562 -tp14563 -a(S'delete/2' -p14564 -S'delete(${1:Key}, ${2:Tree1}) $3' -p14565 -tp14566 -a(S'delete_any/2' -p14567 -S'delete_any(${1:Key}, ${2:Tree1}) $3' -p14568 -tp14569 -a(S'empty/0' -p14570 -S'empty() $1' -p14571 -tp14572 -a(S'enter/3' -p14573 -S'enter(${1:Key}, ${2:Val}, ${3:Tree1}) $4' -p14574 -tp14575 -a(S'from_orddict/1' -p14576 -S'from_orddict(${1:List}) $2' -p14577 -tp14578 -a(S'get/2' -p14579 -S'get(${1:Key}, ${2:Tree}) $3' -p14580 -tp14581 -a(S'insert/3' -p14582 -S'insert(${1:Key}, ${2:Val}, ${3:Tree1}) $4' -p14583 -tp14584 -a(S'is_defined/2' -p14585 -S'is_defined(${1:Key}, ${2:Tree}) $3' -p14586 -tp14587 -a(S'is_empty/1' -p14588 -S'is_empty(${1:Tree}) $2' -p14589 -tp14590 -a(S'iterator/1' -p14591 -S'iterator(${1:Tree}) $2' -p14592 -tp14593 -a(S'keys/1' -p14594 -S'keys(${1:Tree}) $2' -p14595 -tp14596 -a(S'largest/1' -p14597 -S'largest(${1:Tree1}) $2' -p14598 -tp14599 -a(S'lookup/2' -p14600 -S'lookup(${1:Key}, ${2:Tree}) $3' -p14601 -tp14602 -a(S'map/2' -p14603 -S'map(${1:Function}, ${2:Tree1}) $3' -p14604 -tp14605 -a(S'next/1' -p14606 -S'next(${1:Iter1}) $2' -p14607 -tp14608 -a(S'size/1' -p14609 -S'size(${1:Tree}) $2' -p14610 -tp14611 -a(S'smallest/1' -p14612 -S'smallest(${1:Tree1}) $2' -p14613 -tp14614 -a(S'take_largest/1' -p14615 -S'take_largest(${1:Tree1}) $2' -p14616 -tp14617 -a(S'take_smallest/1' -p14618 -S'take_smallest(${1:Tree1}) $2' -p14619 -tp14620 -a(S'to_list/1' -p14621 -S'to_list(${1:Tree}) $2' -p14622 -tp14623 -a(S'update/3' -p14624 -S'update(${1:Key}, ${2:Val}, ${3:Tree1}) $4' -p14625 -tp14626 -a(S'values/1' -p14627 -S'values(${1:Tree}) $2' -p14628 -tp14629 -asS'wxCursor' -p14630 -(lp14631 -(S'convertToImage/1' -p14632 -S'convertToImage(${1:This}) $2' -p14633 -tp14634 -a(S'copyFromIcon/2' -p14635 -S'copyFromIcon(${1:This}, ${2:Icon}) $3' -p14636 -tp14637 -a(S'destroy/1' -p14638 -S'destroy(${1:This}) $2' -p14639 -tp14640 -a(S'getDepth/1' -p14641 -S'getDepth(${1:This}) $2' -p14642 -tp14643 -a(S'getHeight/1' -p14644 -S'getHeight(${1:This}) $2' -p14645 -tp14646 -a(S'getMask/1' -p14647 -S'getMask(${1:This}) $2' -p14648 -tp14649 -a(S'getPalette/1' -p14650 -S'getPalette(${1:This}) $2' -p14651 -tp14652 -a(S'getSubBitmap/2' -p14653 -S'getSubBitmap(${1:This}, ${2:Rect}) $3' -p14654 -tp14655 -a(S'getWidth/1' -p14656 -S'getWidth(${1:This}) $2' -p14657 -tp14658 -a(S'loadFile/2' -p14659 -S'loadFile(${1:This}, ${2:Name}) $3' -p14660 -tp14661 -a(S'loadFile/3' -p14662 -S'loadFile(${1:This}, ${2:Name}, ${3:Options}) $4' -p14663 -tp14664 -a(S'new/0' -p14665 -S'new() $1' -p14666 -tp14667 -a(S'new/1' -p14668 -S'new(${1:CursorId}) $2' -p14669 -tp14670 -a(S'new/3' -p14671 -S'new(${1:Bits}, ${2:Width}, ${3:Height}) $4' -p14672 -tp14673 -a(S'new/4' -p14674 -S'new(${1:Bits}, ${2:Width}, ${3:Height}, ${4:Param4}) $5' -p14675 -tp14676 -a(S'ok/1' -p14677 -S'ok(${1:This}) $2' -p14678 -tp14679 -a(S'parent_class/1' -p14680 -S'parent_class(${1:Param1}) $2' -p14681 -tp14682 -a(S'saveFile/3' -p14683 -S'saveFile(${1:This}, ${2:Name}, ${3:Type}) $4' -p14684 -tp14685 -a(S'saveFile/4' -p14686 -S'saveFile(${1:This}, ${2:Name}, ${3:Type}, ${4:Options}) $5' -p14687 -tp14688 -a(S'setDepth/2' -p14689 -S'setDepth(${1:This}, ${2:Depth}) $3' -p14690 -tp14691 -a(S'setHeight/2' -p14692 -S'setHeight(${1:This}, ${2:Height}) $3' -p14693 -tp14694 -a(S'setMask/2' -p14695 -S'setMask(${1:This}, ${2:Mask}) $3' -p14696 -tp14697 -a(S'setPalette/2' -p14698 -S'setPalette(${1:This}, ${2:Palette}) $3' -p14699 -tp14700 -a(S'setWidth/2' -p14701 -S'setWidth(${1:This}, ${2:Width}) $3' -p14702 -tp14703 -asS'ssl_tls_dist_proxy' -p14704 -(lp14705 -(S'accept/1' -p14706 -S'accept(${1:Listen}) $2' -p14707 -tp14708 -a(S'code_change/3' -p14709 -S'code_change(${1:Param1}, ${2:St}, ${3:Param3}) $4' -p14710 -tp14711 -a(S'connect/2' -p14712 -S'connect(${1:Ip}, ${2:Port}) $3' -p14713 -tp14714 -a(S'get_tcp_address/1' -p14715 -S'get_tcp_address(${1:Socket}) $2' -p14716 -tp14717 -a(S'handle_call/3' -p14718 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p14719 -tp14720 -a(S'handle_cast/2' -p14721 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p14722 -tp14723 -a(S'handle_info/2' -p14724 -S'handle_info(${1:Param1}, ${2:State}) $3' -p14725 -tp14726 -a(S'init/1' -p14727 -S'init(${1:Param1}) $2' -p14728 -tp14729 -a(S'listen/1' -p14730 -S'listen(${1:Name}) $2' -p14731 -tp14732 -a(S'ssl_options/2' -p14733 -S'ssl_options(${1:Param1}, ${2:Param2}) $3' -p14734 -tp14735 -a(S'start_link/0' -p14736 -S'start_link() $1' -p14737 -tp14738 -a(S'terminate/2' -p14739 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p14740 -tp14741 -asS'CosNotifyComm_PullConsumer' -p14742 -(lp14743 -(S'code_change/3' -p14744 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p14745 -tp14746 -a(S'disconnect_pull_consumer/1' -p14747 -S'disconnect_pull_consumer(${1:OE_THIS}) $2' -p14748 -tp14749 -a(S'disconnect_pull_consumer/2' -p14750 -S'disconnect_pull_consumer(${1:OE_THIS}, ${2:OE_Options}) $3' -p14751 -tp14752 -a(S'handle_call/3' -p14753 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p14754 -tp14755 -a(S'handle_cast/2' -p14756 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p14757 -tp14758 -a(S'handle_info/2' -p14759 -S'handle_info(${1:Param1}, ${2:State}) $3' -p14760 -tp14761 -a(S'init/1' -p14762 -S'init(${1:Env}) $2' -p14763 -tp14764 -a(S'oe_create/0' -p14765 -S'oe_create() $1' -p14766 -tp14767 -a(S'oe_create/1' -p14768 -S'oe_create(${1:Env}) $2' -p14769 -tp14770 -a(S'oe_create/2' -p14771 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p14772 -tp14773 -a(S'oe_create_link/0' -p14774 -S'oe_create_link() $1' -p14775 -tp14776 -a(S'oe_create_link/1' -p14777 -S'oe_create_link(${1:Env}) $2' -p14778 -tp14779 -a(S'oe_create_link/2' -p14780 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p14781 -tp14782 -a(S'oe_get_interface/0' -p14783 -S'oe_get_interface() $1' -p14784 -tp14785 -a(S'oe_is_a/1' -p14786 -S'oe_is_a(${1:Param1}) $2' -p14787 -tp14788 -a(S'oe_tc/1' -p14789 -S'oe_tc(${1:Param1}) $2' -p14790 -tp14791 -a(S'offer_change/3' -p14792 -S'offer_change(${1:OE_THIS}, ${2:Added}, ${3:Removed}) $4' -p14793 -tp14794 -a(S'offer_change/4' -p14795 -S'offer_change(${1:OE_THIS}, ${2:OE_Options}, ${3:Added}, ${4:Removed}) $5' -p14796 -tp14797 -a(S'terminate/2' -p14798 -S'terminate(${1:Reason}, ${2:State}) $3' -p14799 -tp14800 -a(S'typeID/0' -p14801 -S'typeID() $1' -p14802 -tp14803 -asS'pman_shell' -p14804 -(lp14805 -(S'find_shell/0' -p14806 -S'find_shell() $1' -p14807 -tp14808 -a(S'start/1' -p14809 -S'start(${1:Pid}) $2' -p14810 -tp14811 -a(S'start/2' -p14812 -S'start(${1:Pid}, ${2:DefaultOptions}) $3' -p14813 -tp14814 -a(S'start_list/3' -p14815 -S'start_list(${1:LIPid}, ${2:Father}, ${3:Options}) $4' -p14816 -tp14817 -asS'gen_udp' -p14818 -(lp14819 -(S'close/1' -p14820 -S'close(${1:Socket}) $2' -p14821 -tp14822 -a(S'connect/3' -p14823 -S'connect(${1:S}, ${2:Address}, ${3:Port}) $4' -p14824 -tp14825 -a(S'controlling_process/2' -p14826 -S'controlling_process(${1:Socket}, ${2:Pid}) $3' -p14827 -tp14828 -a(S'fdopen/2' -p14829 -S'fdopen(${1:Fd}, ${2:Opts}) $3' -p14830 -tp14831 -a(S'open/1' -p14832 -S'open(${1:Port}) $2' -p14833 -tp14834 -a(S'open/2' -p14835 -S'open(${1:Port}, ${2:Opts}) $3' -p14836 -tp14837 -a(S'recv/2' -p14838 -S'recv(${1:Socket}, ${2:Length}) $3' -p14839 -tp14840 -a(S'recv/3' -p14841 -S'recv(${1:Socket}, ${2:Length}, ${3:Timeout}) $4' -p14842 -tp14843 -a(S'send/2' -p14844 -S'send(${1:S}, ${2:Packet}) $3' -p14845 -tp14846 -a(S'send/4' -p14847 -S'send(${1:Socket}, ${2:Address}, ${3:Port}, ${4:Packet}) $5' -p14848 -tp14849 -asS'unix_telnet' -p14850 -(lp14851 -(S'connect/5' -p14852 -S'connect(${1:Ip}, ${2:Port}, ${3:Timeout}, ${4:KeepAlive}, ${5:Extra}) $6' -p14853 -tp14854 -a(S'get_prompt_regexp/0' -p14855 -S'get_prompt_regexp() $1' -p14856 -tp14857 -asS'tv_db' -p14858 -(lp14859 -(S'dbs/2' -p14860 -S'dbs(${1:Master}, ${2:ErrMsgMode}) $3' -p14861 -tp14862 -asS'pman_buf_buffer' -p14863 -(lp14864 -(S'init/1' -p14865 -S'init(${1:Editor}) $2' -p14866 -tp14867 -asS'wxGridCellChoiceEditor' -p14868 -(lp14869 -(S'beginEdit/4' -p14870 -S'beginEdit(${1:This}, ${2:Row}, ${3:Col}, ${4:Grid}) $5' -p14871 -tp14872 -a(S'destroy/1' -p14873 -S'destroy(${1:This}) $2' -p14874 -tp14875 -a(S'endEdit/4' -p14876 -S'endEdit(${1:This}, ${2:Row}, ${3:Col}, ${4:Grid}) $5' -p14877 -tp14878 -a(S'handleReturn/2' -p14879 -S'handleReturn(${1:This}, ${2:Event}) $3' -p14880 -tp14881 -a(S'isCreated/1' -p14882 -S'isCreated(${1:This}) $2' -p14883 -tp14884 -a(S'new/1' -p14885 -S'new(${1:Choices}) $2' -p14886 -tp14887 -a(S'new/2' -p14888 -S'new(${1:Choices}, ${2:Param2}) $3' -p14889 -tp14890 -a(S'paintBackground/3' -p14891 -S'paintBackground(${1:This}, ${2:RectCell}, ${3:Attr}) $4' -p14892 -tp14893 -a(S'parent_class/1' -p14894 -S'parent_class(${1:Param1}) $2' -p14895 -tp14896 -a(S'reset/1' -p14897 -S'reset(${1:This}) $2' -p14898 -tp14899 -a(S'setParameters/2' -p14900 -S'setParameters(${1:This}, ${2:Params}) $3' -p14901 -tp14902 -a(S'setSize/2' -p14903 -S'setSize(${1:This}, ${2:Rect}) $3' -p14904 -tp14905 -a(S'show/2' -p14906 -S'show(${1:This}, ${2:Show}) $3' -p14907 -tp14908 -a(S'show/3' -p14909 -S'show(${1:This}, ${2:Show}, ${3:Options}) $4' -p14910 -tp14911 -a(S'startingClick/1' -p14912 -S'startingClick(${1:This}) $2' -p14913 -tp14914 -a(S'startingKey/2' -p14915 -S'startingKey(${1:This}, ${2:Event}) $3' -p14916 -tp14917 -asS'systools_relup' -p14918 -(lp14919 -(S'appup_search_for_version/2' -p14920 -S'appup_search_for_version(${1:BaseVsn}, ${2:VsnRUs}) $3' -p14921 -tp14922 -a(S'format_error/1' -p14923 -S'format_error(${1:Error}) $2' -p14924 -tp14925 -a(S'format_warning/1' -p14926 -S'format_warning(${1:W}) $2' -p14927 -tp14928 -a(S'mk_relup/3' -p14929 -S'mk_relup(${1:TopRelFile}, ${2:BaseUpRelDcs}, ${3:BaseDnRelDcs}) $4' -p14930 -tp14931 -a(S'mk_relup/4' -p14932 -S'mk_relup(${1:TopRelFile}, ${2:BaseUpRelDcs}, ${3:BaseDnRelDcs}, ${4:Opts}) $5' -p14933 -tp14934 -asS'orber_iiop_outproxy' -p14935 -(lp14936 -(S'cancel/2' -p14937 -S'cancel(${1:Pid}, ${2:RequestId}) $3' -p14938 -tp14939 -a(S'cancel/3' -p14940 -S'cancel(${1:Pid}, ${2:RequestId}, ${3:MRef}) $4' -p14941 -tp14942 -a(S'checkheaders/1' -p14943 -S'checkheaders(${1:What}) $2' -p14944 -tp14945 -a(S'code_change/3' -p14946 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p14947 -tp14948 -a(S'handle_call/3' -p14949 -S'handle_call(${1:X}, ${2:From}, ${3:State}) $4' -p14950 -tp14951 -a(S'handle_cast/2' -p14952 -S'handle_cast(${1:X}, ${2:State}) $3' -p14953 -tp14954 -a(S'handle_info/2' -p14955 -S'handle_info(${1:X}, ${2:State}) $3' -p14956 -tp14957 -a(S'init/1' -p14958 -S'init(${1:Param1}) $2' -p14959 -tp14960 -a(S'request/5' -p14961 -S'request(${1:Pid}, ${2:Param2}, ${3:Timeout}, ${4:Msg}, ${5:RequestId}) $6' -p14962 -tp14963 -a(S'start/0' -p14964 -S'start() $1' -p14965 -tp14966 -a(S'start/1' -p14967 -S'start(${1:Opts}) $2' -p14968 -tp14969 -a(S'stop/1' -p14970 -S'stop(${1:Pid}) $2' -p14971 -tp14972 -a(S'stop/2' -p14973 -S'stop(${1:Pid}, ${2:Timeout}) $3' -p14974 -tp14975 -a(S'terminate/2' -p14976 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p14977 -tp14978 -asS'CosTransactions_WrongTransaction' -p14979 -(lp14980 -(S'id/0' -p14981 -S'id() $1' -p14982 -tp14983 -a(S'name/0' -p14984 -S'name() $1' -p14985 -tp14986 -a(S'tc/0' -p14987 -S'tc() $1' -p14988 -tp14989 -asS'gstk_line' -p14990 -(lp14991 -(S'config/3' -p14992 -S'config(${1:DB}, ${2:Gstkid}, ${3:Opts}) $4' -p14993 -tp14994 -a(S'create/3' -p14995 -S'create(${1:DB}, ${2:Gstkid}, ${3:Opts}) $4' -p14996 -tp14997 -a(S'delete/2' -p14998 -S'delete(${1:DB}, ${2:Gstkid}) $3' -p14999 -tp15000 -a(S'destroy/3' -p15001 -S'destroy(${1:Param1}, ${2:Canvas}, ${3:Item}) $4' -p15002 -tp15003 -a(S'event/5' -p15004 -S'event(${1:DB}, ${2:Gstkid}, ${3:Etype}, ${4:Edata}, ${5:Args}) $6' -p15005 -tp15006 -a(S'option/5' -p15007 -S'option(${1:Option}, ${2:Gstkid}, ${3:Canvas}, ${4:Param4}, ${5:AItem}) $6' -p15008 -tp15009 -a(S'read/3' -p15010 -S'read(${1:DB}, ${2:Gstkid}, ${3:Opt}) $4' -p15011 -tp15012 -a(S'read_option/5' -p15013 -S'read_option(${1:Option}, ${2:Gstkid}, ${3:Canvas}, ${4:Param4}, ${5:AItem}) $6' -p15014 -tp15015 -asS'dialyzer_utils' -p15016 -(lp15017 -(S'format_sig/1' -p15018 -S'format_sig(${1:Type}) $2' -p15019 -tp15020 -a(S'format_sig/2' -p15021 -S'format_sig(${1:Type}, ${2:RecDict}) $3' -p15022 -tp15023 -a(S'get_abstract_code_from_beam/1' -p15024 -S'get_abstract_code_from_beam(${1:File}) $2' -p15025 -tp15026 -a(S'get_abstract_code_from_src/1' -p15027 -S'get_abstract_code_from_src(${1:File}) $2' -p15028 -tp15029 -a(S'get_abstract_code_from_src/2' -p15030 -S'get_abstract_code_from_src(${1:File}, ${2:Opts}) $3' -p15031 -tp15032 -a(S'get_core_from_abstract_code/1' -p15033 -S'get_core_from_abstract_code(${1:AbstrCode}) $2' -p15034 -tp15035 -a(S'get_core_from_abstract_code/2' -p15036 -S'get_core_from_abstract_code(${1:AbstrCode}, ${2:Opts}) $3' -p15037 -tp15038 -a(S'get_core_from_src/1' -p15039 -S'get_core_from_src(${1:File}) $2' -p15040 -tp15041 -a(S'get_core_from_src/2' -p15042 -S'get_core_from_src(${1:File}, ${2:Opts}) $3' -p15043 -tp15044 -a(S'get_record_and_type_info/1' -p15045 -S'get_record_and_type_info(${1:AbstractCode}) $2' -p15046 -tp15047 -a(S'get_spec_info/3' -p15048 -S'get_spec_info(${1:ModName}, ${2:AbstractCode}, ${3:RecordsDict}) $4' -p15049 -tp15050 -a(S'merge_records/2' -p15051 -S'merge_records(${1:NewRecords}, ${2:OldRecords}) $3' -p15052 -tp15053 -a(S'pp_hook/0' -p15054 -S'pp_hook() $1' -p15055 -tp15056 -a(S'process_record_remote_types/1' -p15057 -S'process_record_remote_types(${1:CServer}) $2' -p15058 -tp15059 -a(S'sets_filter/2' -p15060 -S'sets_filter(${1:Param1}, ${2:ExpTypes}) $3' -p15061 -tp15062 -a(S'src_compiler_opts/0' -p15063 -S'src_compiler_opts() $1' -p15064 -tp15065 -asS'snmp_target_mib' -p15066 -(lp15067 -(S'add_addr/10' -p15068 -S'add_addr() $1' -p15069 -tp15070 -a(S'add_addr/11' -p15071 -S'add_addr() $1' -p15072 -tp15073 -a(S'add_params/5' -p15074 -S'add_params(${1:Name}, ${2:MPModel}, ${3:SecModel}, ${4:SecName}, ${5:SecLevel}) $6' -p15075 -tp15076 -a(S'check_target_addr/1' -p15077 -S'check_target_addr(${1:X}) $2' -p15078 -tp15079 -a(S'check_target_params/1' -p15080 -S'check_target_params(${1:X}) $2' -p15081 -tp15082 -a(S'configure/1' -p15083 -S'configure(${1:Dir}) $2' -p15084 -tp15085 -a(S'default_domain/0' -p15086 -S'default_domain() $1' -p15087 -tp15088 -a(S'delete_addr/1' -p15089 -S'delete_addr(${1:Key}) $2' -p15090 -tp15091 -a(S'delete_params/1' -p15092 -S'delete_params(${1:Key}) $2' -p15093 -tp15094 -a(S'get/3' -p15095 -S'get(${1:Name}, ${2:RowIndex}, ${3:Cols}) $4' -p15096 -tp15097 -a(S'get_target_addrs/0' -p15098 -S'get_target_addrs() $1' -p15099 -tp15100 -a(S'get_target_engine_id/1' -p15101 -S'get_target_engine_id(${1:TargetAddrName}) $2' -p15102 -tp15103 -a(S'is_valid_tag/3' -p15104 -S'is_valid_tag(${1:Tag}, ${2:TDomain}, ${3:TAddress}) $4' -p15105 -tp15106 -a(S'reconfigure/1' -p15107 -S'reconfigure(${1:Dir}) $2' -p15108 -tp15109 -a(S'set_target_engine_id/2' -p15110 -S'set_target_engine_id(${1:TargetAddrName}, ${2:EngineId}) $3' -p15111 -tp15112 -a(S'snmpTargetAddrTable/1' -p15113 -S'snmpTargetAddrTable(${1:Op}) $2' -p15114 -tp15115 -a(S'snmpTargetAddrTable/3' -p15116 -S'snmpTargetAddrTable(${1:Op}, ${2:RowIndex}, ${3:Cols}) $4' -p15117 -tp15118 -a(S'snmpTargetParamsTable/1' -p15119 -S'snmpTargetParamsTable(${1:Op}) $2' -p15120 -tp15121 -a(S'snmpTargetParamsTable/3' -p15122 -S'snmpTargetParamsTable(${1:Op}, ${2:RowIndex}, ${3:Cols}) $4' -p15123 -tp15124 -a(S'snmpTargetSpinLock/1' -p15125 -S'snmpTargetSpinLock(${1:Param1}) $2' -p15126 -tp15127 -a(S'snmpTargetSpinLock/2' -p15128 -S'snmpTargetSpinLock(${1:Param1}, ${2:NewVal}) $3' -p15129 -tp15130 -a(S'table_next/2' -p15131 -S'table_next(${1:Name}, ${2:RestOid}) $3' -p15132 -tp15133 -asS'ssh_no_io' -p15134 -(lp15135 -(S'format/2' -p15136 -S'format(${1:Param1}, ${2:Param2}) $3' -p15137 -tp15138 -a(S'read_line/1' -p15139 -S'read_line(${1:Param1}) $2' -p15140 -tp15141 -a(S'read_password/1' -p15142 -S'read_password(${1:Param1}) $2' -p15143 -tp15144 -a(S'yes_no/1' -p15145 -S'yes_no(${1:Param1}) $2' -p15146 -tp15147 -asS'inviso_autostart_server' -p15148 -(lp15149 -(S'cmd_file_interpreter_init/4' -p15150 -S'cmd_file_interpreter_init(${1:FileNames}, ${2:GlobalBindings}, ${3:Translations}, ${4:Dbg}) $5' -p15151 -tp15152 -a(S'init/1' -p15153 -S'init(${1:ArgsFromConfig}) $2' -p15154 -tp15155 -asS'httpd_sup' -p15156 -(lp15157 -(S'init/1' -p15158 -S'init(${1:Param1}) $2' -p15159 -tp15160 -a(S'listen_init/4' -p15161 -S'listen_init(${1:From}, ${2:Address}, ${3:Port}, ${4:Config}) $5' -p15162 -tp15163 -a(S'restart_child/2' -p15164 -S'restart_child(${1:Address}, ${2:Port}) $3' -p15165 -tp15166 -a(S'start_child/1' -p15167 -S'start_child(${1:Config}) $2' -p15168 -tp15169 -a(S'start_link/1' -p15170 -S'start_link(${1:HttpdServices}) $2' -p15171 -tp15172 -a(S'start_link/2' -p15173 -S'start_link(${1:HttpdServices}, ${2:Param2}) $3' -p15174 -tp15175 -a(S'stop_child/2' -p15176 -S'stop_child(${1:Address}, ${2:Port}) $3' -p15177 -tp15178 -asS'tv_pw_window' -p15179 -(lp15180 -(S'create_menu/2' -p15181 -S'create_menu(${1:Msg}, ${2:ProcVars}) $3' -p15182 -tp15183 -a(S'create_menubar/2' -p15184 -S'create_menubar(${1:WinP}, ${2:MenuP}) $3' -p15185 -tp15186 -a(S'create_window/2' -p15187 -S'create_window(${1:Msg}, ${2:WinP}) $3' -p15188 -tp15189 -a(S'resize_window/3' -p15190 -S'resize_window(${1:WindowId}, ${2:NewWidth}, ${3:NewHeight}) $4' -p15191 -tp15192 -asS'oe_CosEventDomainAdmin' -p15193 -(lp15194 -(S'oe_dependency/0' -p15195 -S'oe_dependency() $1' -p15196 -tp15197 -a(S'oe_get_module/5' -p15198 -S'oe_get_module(${1:OE_IFR}, ${2:OE_Parent}, ${3:ID}, ${4:Name}, ${5:Version}) $6' -p15199 -tp15200 -a(S'oe_register/0' -p15201 -S'oe_register() $1' -p15202 -tp15203 -a(S'oe_unregister/0' -p15204 -S'oe_unregister() $1' -p15205 -tp15206 -asS'CosNotification_StructuredEvent' -p15207 -(lp15208 -(S'id/0' -p15209 -S'id() $1' -p15210 -tp15211 -a(S'name/0' -p15212 -S'name() $1' -p15213 -tp15214 -a(S'tc/0' -p15215 -S'tc() $1' -p15216 -tp15217 -asS'oe_CosNotifyChannelAdmin' -p15218 -(lp15219 -(S'oe_dependency/0' -p15220 -S'oe_dependency() $1' -p15221 -tp15222 -a(S'oe_get_module/5' -p15223 -S'oe_get_module(${1:OE_IFR}, ${2:OE_Parent}, ${3:ID}, ${4:Name}, ${5:Version}) $6' -p15224 -tp15225 -a(S'oe_register/0' -p15226 -S'oe_register() $1' -p15227 -tp15228 -a(S'oe_unregister/0' -p15229 -S'oe_unregister() $1' -p15230 -tp15231 -asS'standard_error' -p15232 -(lp15233 -(S'init/1' -p15234 -S'init(${1:Param1}) $2' -p15235 -tp15236 -a(S'start_link/0' -p15237 -S'start_link() $1' -p15238 -tp15239 -a(S'terminate/2' -p15240 -S'terminate(${1:Param1}, ${2:Pid}) $3' -p15241 -tp15242 -asS'xmerl_otpsgml' -p15243 -(lp15244 -(S"'#element#'/5" -p15245 -S"'#element#'(${1:Tag}, ${2:Data}, ${3:Attrs}, ${4:Param4}, ${5:Param5}) $6" -p15246 -tp15247 -a(S"'#root#'/4" -p15248 -S"'#root#'(${1:Data}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5" -p15249 -tp15250 -a(S"'#text#'/1" -p15251 -S"'#text#'(${1:Text}) $2" -p15252 -tp15253 -a(S"'#xml-inheritance#'/0" -p15254 -S"'#xml-inheritance#'() $1" -p15255 -tp15256 -a(S'p/4' -p15257 -S'p(${1:Data}, ${2:Attrs}, ${3:Param3}, ${4:Param4}) $5' -p15258 -tp15259 -asS'TimeBase_UtcT' -p15260 -(lp15261 -(S'id/0' -p15262 -S'id() $1' -p15263 -tp15264 -a(S'name/0' -p15265 -S'name() $1' -p15266 -tp15267 -a(S'tc/0' -p15268 -S'tc() $1' -p15269 -tp15270 -asS'CosPropertyService_UnsupportedTypeCode' -p15271 -(lp15272 -(S'id/0' -p15273 -S'id() $1' -p15274 -tp15275 -a(S'name/0' -p15276 -S'name() $1' -p15277 -tp15278 -a(S'tc/0' -p15279 -S'tc() $1' -p15280 -tp15281 -asS'ct_config' -p15282 -(lp15283 -(S'add_config/2' -p15284 -S'add_config(${1:Callback}, ${2:Config}) $3' -p15285 -tp15286 -a(S'add_default_callback/1' -p15287 -S'add_default_callback(${1:Opts}) $2' -p15288 -tp15289 -a(S'check_config_files/1' -p15290 -S'check_config_files(${1:Configs}) $2' -p15291 -tp15292 -a(S'decrypt_config_file/2' -p15293 -S'decrypt_config_file(${1:EncryptFileName}, ${2:TargetFileName}) $3' -p15294 -tp15295 -a(S'decrypt_config_file/3' -p15296 -S'decrypt_config_file(${1:EncryptFileName}, ${2:TargetFileName}, ${3:Param3}) $4' -p15297 -tp15298 -a(S'delete_default_config/1' -p15299 -S'delete_default_config(${1:Scope}) $2' -p15300 -tp15301 -a(S'encrypt_config_file/2' -p15302 -S'encrypt_config_file(${1:SrcFileName}, ${2:EncryptFileName}) $3' -p15303 -tp15304 -a(S'encrypt_config_file/3' -p15305 -S'encrypt_config_file(${1:SrcFileName}, ${2:EncryptFileName}, ${3:Param3}) $4' -p15306 -tp15307 -a(S'get_all_config/0' -p15308 -S'get_all_config() $1' -p15309 -tp15310 -a(S'get_config/1' -p15311 -S'get_config(${1:KeyOrName}) $2' -p15312 -tp15313 -a(S'get_config/2' -p15314 -S'get_config(${1:KeyOrName}, ${2:Default}) $3' -p15315 -tp15316 -a(S'get_config/3' -p15317 -S'get_config(${1:KeyOrName}, ${2:Default}, ${3:Opts}) $4' -p15318 -tp15319 -a(S'get_config_file_list/1' -p15320 -S'get_config_file_list(${1:Opts}) $2' -p15321 -tp15322 -a(S'get_crypt_key_from_file/0' -p15323 -S'get_crypt_key_from_file() $1' -p15324 -tp15325 -a(S'get_crypt_key_from_file/1' -p15326 -S'get_crypt_key_from_file(${1:File}) $2' -p15327 -tp15328 -a(S'get_key_from_name/1' -p15329 -S'get_key_from_name(${1:Name}) $2' -p15330 -tp15331 -a(S'get_name_from_ref/1' -p15332 -S'get_name_from_ref(${1:Ref}) $2' -p15333 -tp15334 -a(S'get_ref_from_name/1' -p15335 -S'get_ref_from_name(${1:Name}) $2' -p15336 -tp15337 -a(S'prepare_config_list/1' -p15338 -S'prepare_config_list(${1:Args}) $2' -p15339 -tp15340 -a(S'read_config_files/1' -p15341 -S'read_config_files(${1:Opts}) $2' -p15342 -tp15343 -a(S'release_allocated/0' -p15344 -S'release_allocated() $1' -p15345 -tp15346 -a(S'reload_config/1' -p15347 -S'reload_config(${1:KeyOrName}) $2' -p15348 -tp15349 -a(S'remove_config/2' -p15350 -S'remove_config(${1:Callback}, ${2:Config}) $3' -p15351 -tp15352 -a(S'require/1' -p15353 -S'require(${1:Key}) $2' -p15354 -tp15355 -a(S'require/2' -p15356 -S'require(${1:Name}, ${2:Key}) $3' -p15357 -tp15358 -a(S'set_default_config/2' -p15359 -S'set_default_config(${1:NewConfig}, ${2:Scope}) $3' -p15360 -tp15361 -a(S'set_default_config/3' -p15362 -S'set_default_config(${1:Name}, ${2:NewConfig}, ${3:Scope}) $4' -p15363 -tp15364 -a(S'start/1' -p15365 -S'start(${1:Mode}) $2' -p15366 -tp15367 -a(S'stop/0' -p15368 -S'stop() $1' -p15369 -tp15370 -a(S'update_config/2' -p15371 -S'update_config(${1:Name}, ${2:Config}) $3' -p15372 -tp15373 -asS'snmpm_supervisor' -p15374 -(lp15375 -(S'init/1' -p15376 -S'init(${1:Param1}) $2' -p15377 -tp15378 -a(S'start_link/2' -p15379 -S'start_link(${1:Type}, ${2:Opts}) $3' -p15380 -tp15381 -a(S'stop/0' -p15382 -S'stop() $1' -p15383 -tp15384 -asS'erl_distribution' -p15385 -(lp15386 -(S'init/1' -p15387 -S'init(${1:NetArgs}) $2' -p15388 -tp15389 -a(S'start/1' -p15390 -S'start(${1:Args}) $2' -p15391 -tp15392 -a(S'start_link/0' -p15393 -S'start_link() $1' -p15394 -tp15395 -a(S'start_link/1' -p15396 -S'start_link(${1:Args}) $2' -p15397 -tp15398 -a(S'stop/0' -p15399 -S'stop() $1' -p15400 -tp15401 -asS'CosFileTransfer_TransferException' -p15402 -(lp15403 -(S'id/0' -p15404 -S'id() $1' -p15405 -tp15406 -a(S'name/0' -p15407 -S'name() $1' -p15408 -tp15409 -a(S'tc/0' -p15410 -S'tc() $1' -p15411 -tp15412 -asS'CosNotifyFilter_CallbackNotFound' -p15413 -(lp15414 -(S'id/0' -p15415 -S'id() $1' -p15416 -tp15417 -a(S'name/0' -p15418 -S'name() $1' -p15419 -tp15420 -a(S'tc/0' -p15421 -S'tc() $1' -p15422 -tp15423 -asS'httpc_response' -p15424 -(lp15425 -(S'error/2' -p15426 -S'error(${1:Param1}, ${2:Reason}) $3' -p15427 -tp15428 -a(S'is_server_closing/1' -p15429 -S'is_server_closing(${1:Headers}) $2' -p15430 -tp15431 -a(S'parse/1' -p15432 -S'parse(${1:Param1}) $2' -p15433 -tp15434 -a(S'parse_headers/1' -p15435 -S'parse_headers(${1:Param1}) $2' -p15436 -tp15437 -a(S'parse_reason_phrase/1' -p15438 -S'parse_reason_phrase(${1:Param1}) $2' -p15439 -tp15440 -a(S'parse_status_code/1' -p15441 -S'parse_status_code(${1:Param1}) $2' -p15442 -tp15443 -a(S'parse_version/1' -p15444 -S'parse_version(${1:Param1}) $2' -p15445 -tp15446 -a(S'result/2' -p15447 -S'result(${1:Response}, ${2:Request}) $3' -p15448 -tp15449 -a(S'send/2' -p15450 -S'send(${1:Receiver}, ${2:Msg}) $3' -p15451 -tp15452 -a(S'stream_start/3' -p15453 -S'stream_start(${1:Headers}, ${2:Request}, ${3:Pid}) $4' -p15454 -tp15455 -a(S'whole_body/1' -p15456 -S'whole_body(${1:Param1}) $2' -p15457 -tp15458 -a(S'whole_body/2' -p15459 -S'whole_body(${1:Body}, ${2:Length}) $3' -p15460 -tp15461 -asS'CosNotifyComm_PullSupplier' -p15462 -(lp15463 -(S'code_change/3' -p15464 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p15465 -tp15466 -a(S'disconnect_pull_supplier/1' -p15467 -S'disconnect_pull_supplier(${1:OE_THIS}) $2' -p15468 -tp15469 -a(S'disconnect_pull_supplier/2' -p15470 -S'disconnect_pull_supplier(${1:OE_THIS}, ${2:OE_Options}) $3' -p15471 -tp15472 -a(S'handle_call/3' -p15473 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p15474 -tp15475 -a(S'handle_cast/2' -p15476 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p15477 -tp15478 -a(S'handle_info/2' -p15479 -S'handle_info(${1:Param1}, ${2:State}) $3' -p15480 -tp15481 -a(S'init/1' -p15482 -S'init(${1:Env}) $2' -p15483 -tp15484 -a(S'oe_create/0' -p15485 -S'oe_create() $1' -p15486 -tp15487 -a(S'oe_create/1' -p15488 -S'oe_create(${1:Env}) $2' -p15489 -tp15490 -a(S'oe_create/2' -p15491 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p15492 -tp15493 -a(S'oe_create_link/0' -p15494 -S'oe_create_link() $1' -p15495 -tp15496 -a(S'oe_create_link/1' -p15497 -S'oe_create_link(${1:Env}) $2' -p15498 -tp15499 -a(S'oe_create_link/2' -p15500 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p15501 -tp15502 -a(S'oe_get_interface/0' -p15503 -S'oe_get_interface() $1' -p15504 -tp15505 -a(S'oe_is_a/1' -p15506 -S'oe_is_a(${1:Param1}) $2' -p15507 -tp15508 -a(S'oe_tc/1' -p15509 -S'oe_tc(${1:Param1}) $2' -p15510 -tp15511 -a(S'pull/1' -p15512 -S'pull(${1:OE_THIS}) $2' -p15513 -tp15514 -a(S'pull/2' -p15515 -S'pull(${1:OE_THIS}, ${2:OE_Options}) $3' -p15516 -tp15517 -a(S'subscription_change/3' -p15518 -S'subscription_change(${1:OE_THIS}, ${2:Added}, ${3:Removed}) $4' -p15519 -tp15520 -a(S'subscription_change/4' -p15521 -S'subscription_change(${1:OE_THIS}, ${2:OE_Options}, ${3:Added}, ${4:Removed}) $5' -p15522 -tp15523 -a(S'terminate/2' -p15524 -S'terminate(${1:Reason}, ${2:State}) $3' -p15525 -tp15526 -a(S'try_pull/1' -p15527 -S'try_pull(${1:OE_THIS}) $2' -p15528 -tp15529 -a(S'try_pull/2' -p15530 -S'try_pull(${1:OE_THIS}, ${2:OE_Options}) $3' -p15531 -tp15532 -a(S'typeID/0' -p15533 -S'typeID() $1' -p15534 -tp15535 -asS'tv_mnesia_rpc' -p15536 -(lp15537 -(S'system_info/3' -p15538 -S'system_info(${1:Node}, ${2:Param2}, ${3:Key}) $4' -p15539 -tp15540 -a(S'table_info/4' -p15541 -S'table_info(${1:Node}, ${2:Param2}, ${3:Tab}, ${4:Item}) $5' -p15542 -tp15543 -a(S'transaction/3' -p15544 -S'transaction(${1:Node}, ${2:Param2}, ${3:Fun}) $4' -p15545 -tp15546 -asS'os_mon' -p15547 -(lp15548 -(S'call/2' -p15549 -S'call(${1:Service}, ${2:Request}) $3' -p15550 -tp15551 -a(S'call/3' -p15552 -S'call(${1:Service}, ${2:Request}, ${3:Timeout}) $4' -p15553 -tp15554 -a(S'get_env/2' -p15555 -S'get_env(${1:Service}, ${2:Param}) $3' -p15556 -tp15557 -a(S'init/1' -p15558 -S'init(${1:Param1}) $2' -p15559 -tp15560 -a(S'open_port/2' -p15561 -S'open_port(${1:Name}, ${2:Opts}) $3' -p15562 -tp15563 -a(S'start/2' -p15564 -S'start(${1:Param1}, ${2:Param2}) $3' -p15565 -tp15566 -a(S'stop/1' -p15567 -S'stop(${1:Param1}) $2' -p15568 -tp15569 -asS'CosNotifyChannelAdmin_EventChannelFactory' -p15570 -(lp15571 -(S'code_change/3' -p15572 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p15573 -tp15574 -a(S'create_channel/3' -p15575 -S'create_channel(${1:OE_THIS}, ${2:Initial_qos}, ${3:Initial_admin}) $4' -p15576 -tp15577 -a(S'create_channel/4' -p15578 -S'create_channel(${1:OE_THIS}, ${2:OE_Options}, ${3:Initial_qos}, ${4:Initial_admin}) $5' -p15579 -tp15580 -a(S'get_all_channels/1' -p15581 -S'get_all_channels(${1:OE_THIS}) $2' -p15582 -tp15583 -a(S'get_all_channels/2' -p15584 -S'get_all_channels(${1:OE_THIS}, ${2:OE_Options}) $3' -p15585 -tp15586 -a(S'get_event_channel/2' -p15587 -S'get_event_channel(${1:OE_THIS}, ${2:Id}) $3' -p15588 -tp15589 -a(S'get_event_channel/3' -p15590 -S'get_event_channel(${1:OE_THIS}, ${2:OE_Options}, ${3:Id}) $4' -p15591 -tp15592 -a(S'handle_call/3' -p15593 -S'handle_call(${1:Param1}, ${2:OE_From}, ${3:OE_State}) $4' -p15594 -tp15595 -a(S'handle_cast/2' -p15596 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p15597 -tp15598 -a(S'handle_info/2' -p15599 -S'handle_info(${1:Info}, ${2:State}) $3' -p15600 -tp15601 -a(S'init/1' -p15602 -S'init(${1:Env}) $2' -p15603 -tp15604 -a(S'oe_create/0' -p15605 -S'oe_create() $1' -p15606 -tp15607 -a(S'oe_create/1' -p15608 -S'oe_create(${1:Env}) $2' -p15609 -tp15610 -a(S'oe_create/2' -p15611 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p15612 -tp15613 -a(S'oe_create_link/0' -p15614 -S'oe_create_link() $1' -p15615 -tp15616 -a(S'oe_create_link/1' -p15617 -S'oe_create_link(${1:Env}) $2' -p15618 -tp15619 -a(S'oe_create_link/2' -p15620 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p15621 -tp15622 -a(S'oe_get_interface/0' -p15623 -S'oe_get_interface() $1' -p15624 -tp15625 -a(S'oe_is_a/1' -p15626 -S'oe_is_a(${1:Param1}) $2' -p15627 -tp15628 -a(S'oe_tc/1' -p15629 -S'oe_tc(${1:Param1}) $2' -p15630 -tp15631 -a(S'terminate/2' -p15632 -S'terminate(${1:Reason}, ${2:State}) $3' -p15633 -tp15634 -a(S'typeID/0' -p15635 -S'typeID() $1' -p15636 -tp15637 -asS'snmp_misc' -p15638 -(lp15639 -(S'assq/2' -p15640 -S'assq(${1:Key}, ${2:List}) $3' -p15641 -tp15642 -a(S'bits_to_int/2' -p15643 -S'bits_to_int(${1:Val}, ${2:Kibbles}) $3' -p15644 -tp15645 -a(S'diff/2' -p15646 -S'diff(${1:L1}, ${2:Param2}) $3' -p15647 -tp15648 -a(S'ensure_trailing_dir_delimiter/1' -p15649 -S'ensure_trailing_dir_delimiter(${1:DirSuggestion}) $2' -p15650 -tp15651 -a(S'foreach/3' -p15652 -S'foreach(${1:Function}, ${2:ExtraArgs}, ${3:Param3}) $4' -p15653 -tp15654 -a(S'format/3' -p15655 -S'format(${1:Max}, ${2:F}, ${3:A}) $4' -p15656 -tp15657 -a(S'format_pdu/2' -p15658 -S'format_pdu(${1:PDU}, ${2:MiniMib}) $3' -p15659 -tp15660 -a(S'format_val/4' -p15661 -S'format_val(${1:Param1}, ${2:Param2}, ${3:Val}, ${4:MiniMib}) $5' -p15662 -tp15663 -a(S'format_vb/2' -p15664 -S'format_vb() $1' -p15665 -tp15666 -a(S'format_vbs/2' -p15667 -S'format_vbs(${1:Vbs}, ${2:MiniMib}) $3' -p15668 -tp15669 -a(S'get_option/2' -p15670 -S'get_option(${1:Key}, ${2:Options}) $3' -p15671 -tp15672 -a(S'get_option/3' -p15673 -S'get_option(${1:Key}, ${2:Options}, ${3:Default}) $4' -p15674 -tp15675 -a(S'get_sec_level/1' -p15676 -S'get_sec_level(${1:Param1}) $2' -p15677 -tp15678 -a(S'ip/1' -p15679 -S'ip(${1:Host}) $2' -p15680 -tp15681 -a(S'ip/2' -p15682 -S'ip(${1:Host}, ${2:Family}) $3' -p15683 -tp15684 -a(S'is_BitString/1' -p15685 -S'is_BitString(${1:Param1}) $2' -p15686 -tp15687 -a(S'is_auth/1' -p15688 -S'is_auth(${1:SecLevel}) $2' -p15689 -tp15690 -a(S'is_oid/1' -p15691 -S'is_oid(${1:Param1}) $2' -p15692 -tp15693 -a(S'is_priv/1' -p15694 -S'is_priv(${1:SecLevel}) $2' -p15695 -tp15696 -a(S'is_reportable/1' -p15697 -S'is_reportable(${1:Param1}) $2' -p15698 -tp15699 -a(S'is_reportable_pdu/1' -p15700 -S'is_reportable_pdu(${1:Param1}) $2' -p15701 -tp15702 -a(S'is_string/1' -p15703 -S'is_string(${1:Param1}) $2' -p15704 -tp15705 -a(S'is_tag_member/2' -p15706 -S'is_tag_member(${1:Tag}, ${2:TagList}) $3' -p15707 -tp15708 -a(S'is_tmask_match/3' -p15709 -S'is_tmask_match(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p15710 -tp15711 -a(S'keyreplaceadd/4' -p15712 -S'keyreplaceadd(${1:Key}, ${2:Pos}, ${3:List}, ${4:New}) $5' -p15713 -tp15714 -a(S'mem_size/1' -p15715 -S'mem_size(${1:X}) $2' -p15716 -tp15717 -a(S'mk_msg_flags/2' -p15718 -S'mk_msg_flags(${1:PduType}, ${2:SecLevel}) $3' -p15719 -tp15720 -a(S'multi_map/2' -p15721 -S'multi_map(${1:Func}, ${2:ListOfLists}) $3' -p15722 -tp15723 -a(S'now/1' -p15724 -S'now(${1:Param1}) $2' -p15725 -tp15726 -a(S'read_mib/1' -p15727 -S'read_mib(${1:FileName}) $2' -p15728 -tp15729 -a(S'set_option/3' -p15730 -S'set_option(${1:Key}, ${2:Val}, ${3:Opts}) $4' -p15731 -tp15732 -a(S'sleep/1' -p15733 -S'sleep(${1:Time}) $2' -p15734 -tp15735 -a(S'str_xor/2' -p15736 -S'str_xor() $1' -p15737 -tp15738 -a(S'strip_extension_from_filename/2' -p15739 -S'strip_extension_from_filename(${1:FileName}, ${2:Ext}) $3' -p15740 -tp15741 -a(S'time/3' -p15742 -S'time(${1:M}, ${2:F}, ${3:A}) $4' -p15743 -tp15744 -a(S'verify_behaviour/2' -p15745 -S'verify_behaviour(${1:Param1}, ${2:BadModule}) $3' -p15746 -tp15747 -asS'egd_font' -p15748 -(lp15749 -(S'glyph/2' -p15750 -S'glyph(${1:Font}, ${2:Code}) $3' -p15751 -tp15752 -a(S'load/1' -p15753 -S'load(${1:Filename}) $2' -p15754 -tp15755 -a(S'size/1' -p15756 -S'size(${1:Font}) $2' -p15757 -tp15758 -asS'wxMDIChildFrame' -p15759 -(lp15760 -(S'activate/1' -p15761 -S'activate(${1:This}) $2' -p15762 -tp15763 -a(S'cacheBestSize/2' -p15764 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p15765 -tp15766 -a(S'captureMouse/1' -p15767 -S'captureMouse(${1:This}) $2' -p15768 -tp15769 -a(S'center/1' -p15770 -S'center(${1:This}) $2' -p15771 -tp15772 -a(S'center/2' -p15773 -S'center(${1:This}, ${2:Options}) $3' -p15774 -tp15775 -a(S'centerOnParent/1' -p15776 -S'centerOnParent(${1:This}) $2' -p15777 -tp15778 -a(S'centerOnParent/2' -p15779 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p15780 -tp15781 -a(S'centerOnScreen/1' -p15782 -S'centerOnScreen(${1:This}) $2' -p15783 -tp15784 -a(S'centerOnScreen/2' -p15785 -S'centerOnScreen(${1:This}, ${2:Options}) $3' -p15786 -tp15787 -a(S'centre/1' -p15788 -S'centre(${1:This}) $2' -p15789 -tp15790 -a(S'centre/2' -p15791 -S'centre(${1:This}, ${2:Options}) $3' -p15792 -tp15793 -a(S'centreOnParent/1' -p15794 -S'centreOnParent(${1:This}) $2' -p15795 -tp15796 -a(S'centreOnParent/2' -p15797 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p15798 -tp15799 -a(S'centreOnScreen/1' -p15800 -S'centreOnScreen(${1:This}) $2' -p15801 -tp15802 -a(S'centreOnScreen/2' -p15803 -S'centreOnScreen(${1:This}, ${2:Options}) $3' -p15804 -tp15805 -a(S'clearBackground/1' -p15806 -S'clearBackground(${1:This}) $2' -p15807 -tp15808 -a(S'clientToScreen/2' -p15809 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p15810 -tp15811 -a(S'clientToScreen/3' -p15812 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p15813 -tp15814 -a(S'close/1' -p15815 -S'close(${1:This}) $2' -p15816 -tp15817 -a(S'close/2' -p15818 -S'close(${1:This}, ${2:Options}) $3' -p15819 -tp15820 -a(S'connect/2' -p15821 -S'connect(${1:This}, ${2:EventType}) $3' -p15822 -tp15823 -a(S'connect/3' -p15824 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p15825 -tp15826 -a(S'convertDialogToPixels/2' -p15827 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p15828 -tp15829 -a(S'convertPixelsToDialog/2' -p15830 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p15831 -tp15832 -a(S'create/4' -p15833 -S'create(${1:This}, ${2:Parent}, ${3:Id}, ${4:Title}) $5' -p15834 -tp15835 -a(S'create/5' -p15836 -S'create(${1:This}, ${2:Parent}, ${3:Id}, ${4:Title}, ${5:Param5}) $6' -p15837 -tp15838 -a(S'createStatusBar/1' -p15839 -S'createStatusBar(${1:This}) $2' -p15840 -tp15841 -a(S'createStatusBar/2' -p15842 -S'createStatusBar(${1:This}, ${2:Options}) $3' -p15843 -tp15844 -a(S'createToolBar/1' -p15845 -S'createToolBar(${1:This}) $2' -p15846 -tp15847 -a(S'createToolBar/2' -p15848 -S'createToolBar(${1:This}, ${2:Options}) $3' -p15849 -tp15850 -a(S'destroy/1' -p15851 -S'destroy(${1:This}) $2' -p15852 -tp15853 -a(S'destroyChildren/1' -p15854 -S'destroyChildren(${1:This}) $2' -p15855 -tp15856 -a(S'disable/1' -p15857 -S'disable(${1:This}) $2' -p15858 -tp15859 -a(S'disconnect/1' -p15860 -S'disconnect(${1:This}) $2' -p15861 -tp15862 -a(S'disconnect/2' -p15863 -S'disconnect(${1:This}, ${2:EventType}) $3' -p15864 -tp15865 -a(S'disconnect/3' -p15866 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p15867 -tp15868 -a(S'enable/1' -p15869 -S'enable(${1:This}) $2' -p15870 -tp15871 -a(S'enable/2' -p15872 -S'enable(${1:This}, ${2:Options}) $3' -p15873 -tp15874 -a(S'findWindow/2' -p15875 -S'findWindow(${1:This}, ${2:Winid}) $3' -p15876 -tp15877 -a(S'fit/1' -p15878 -S'fit(${1:This}) $2' -p15879 -tp15880 -a(S'fitInside/1' -p15881 -S'fitInside(${1:This}) $2' -p15882 -tp15883 -a(S'freeze/1' -p15884 -S'freeze(${1:This}) $2' -p15885 -tp15886 -a(S'getAcceleratorTable/1' -p15887 -S'getAcceleratorTable(${1:This}) $2' -p15888 -tp15889 -a(S'getBackgroundColour/1' -p15890 -S'getBackgroundColour(${1:This}) $2' -p15891 -tp15892 -a(S'getBackgroundStyle/1' -p15893 -S'getBackgroundStyle(${1:This}) $2' -p15894 -tp15895 -a(S'getBestSize/1' -p15896 -S'getBestSize(${1:This}) $2' -p15897 -tp15898 -a(S'getCaret/1' -p15899 -S'getCaret(${1:This}) $2' -p15900 -tp15901 -a(S'getCharHeight/1' -p15902 -S'getCharHeight(${1:This}) $2' -p15903 -tp15904 -a(S'getCharWidth/1' -p15905 -S'getCharWidth(${1:This}) $2' -p15906 -tp15907 -a(S'getChildren/1' -p15908 -S'getChildren(${1:This}) $2' -p15909 -tp15910 -a(S'getClientAreaOrigin/1' -p15911 -S'getClientAreaOrigin(${1:This}) $2' -p15912 -tp15913 -a(S'getClientSize/1' -p15914 -S'getClientSize(${1:This}) $2' -p15915 -tp15916 -a(S'getContainingSizer/1' -p15917 -S'getContainingSizer(${1:This}) $2' -p15918 -tp15919 -a(S'getCursor/1' -p15920 -S'getCursor(${1:This}) $2' -p15921 -tp15922 -a(S'getDropTarget/1' -p15923 -S'getDropTarget(${1:This}) $2' -p15924 -tp15925 -a(S'getEventHandler/1' -p15926 -S'getEventHandler(${1:This}) $2' -p15927 -tp15928 -a(S'getExtraStyle/1' -p15929 -S'getExtraStyle(${1:This}) $2' -p15930 -tp15931 -a(S'getFont/1' -p15932 -S'getFont(${1:This}) $2' -p15933 -tp15934 -a(S'getForegroundColour/1' -p15935 -S'getForegroundColour(${1:This}) $2' -p15936 -tp15937 -a(S'getGrandParent/1' -p15938 -S'getGrandParent(${1:This}) $2' -p15939 -tp15940 -a(S'getHandle/1' -p15941 -S'getHandle(${1:This}) $2' -p15942 -tp15943 -a(S'getHelpText/1' -p15944 -S'getHelpText(${1:This}) $2' -p15945 -tp15946 -a(S'getIcon/1' -p15947 -S'getIcon(${1:This}) $2' -p15948 -tp15949 -a(S'getIcons/1' -p15950 -S'getIcons(${1:This}) $2' -p15951 -tp15952 -a(S'getId/1' -p15953 -S'getId(${1:This}) $2' -p15954 -tp15955 -a(S'getLabel/1' -p15956 -S'getLabel(${1:This}) $2' -p15957 -tp15958 -a(S'getMaxSize/1' -p15959 -S'getMaxSize(${1:This}) $2' -p15960 -tp15961 -a(S'getMenuBar/1' -p15962 -S'getMenuBar(${1:This}) $2' -p15963 -tp15964 -a(S'getMinSize/1' -p15965 -S'getMinSize(${1:This}) $2' -p15966 -tp15967 -a(S'getName/1' -p15968 -S'getName(${1:This}) $2' -p15969 -tp15970 -a(S'getParent/1' -p15971 -S'getParent(${1:This}) $2' -p15972 -tp15973 -a(S'getPosition/1' -p15974 -S'getPosition(${1:This}) $2' -p15975 -tp15976 -a(S'getRect/1' -p15977 -S'getRect(${1:This}) $2' -p15978 -tp15979 -a(S'getScreenPosition/1' -p15980 -S'getScreenPosition(${1:This}) $2' -p15981 -tp15982 -a(S'getScreenRect/1' -p15983 -S'getScreenRect(${1:This}) $2' -p15984 -tp15985 -a(S'getScrollPos/2' -p15986 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p15987 -tp15988 -a(S'getScrollRange/2' -p15989 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p15990 -tp15991 -a(S'getScrollThumb/2' -p15992 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p15993 -tp15994 -a(S'getSize/1' -p15995 -S'getSize(${1:This}) $2' -p15996 -tp15997 -a(S'getSizer/1' -p15998 -S'getSizer(${1:This}) $2' -p15999 -tp16000 -a(S'getStatusBar/1' -p16001 -S'getStatusBar(${1:This}) $2' -p16002 -tp16003 -a(S'getStatusBarPane/1' -p16004 -S'getStatusBarPane(${1:This}) $2' -p16005 -tp16006 -a(S'getTextExtent/2' -p16007 -S'getTextExtent(${1:This}, ${2:String}) $3' -p16008 -tp16009 -a(S'getTextExtent/3' -p16010 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p16011 -tp16012 -a(S'getTitle/1' -p16013 -S'getTitle(${1:This}) $2' -p16014 -tp16015 -a(S'getToolBar/1' -p16016 -S'getToolBar(${1:This}) $2' -p16017 -tp16018 -a(S'getToolTip/1' -p16019 -S'getToolTip(${1:This}) $2' -p16020 -tp16021 -a(S'getUpdateRegion/1' -p16022 -S'getUpdateRegion(${1:This}) $2' -p16023 -tp16024 -a(S'getVirtualSize/1' -p16025 -S'getVirtualSize(${1:This}) $2' -p16026 -tp16027 -a(S'getWindowStyleFlag/1' -p16028 -S'getWindowStyleFlag(${1:This}) $2' -p16029 -tp16030 -a(S'getWindowVariant/1' -p16031 -S'getWindowVariant(${1:This}) $2' -p16032 -tp16033 -a(S'hasCapture/1' -p16034 -S'hasCapture(${1:This}) $2' -p16035 -tp16036 -a(S'hasScrollbar/2' -p16037 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p16038 -tp16039 -a(S'hasTransparentBackground/1' -p16040 -S'hasTransparentBackground(${1:This}) $2' -p16041 -tp16042 -a(S'hide/1' -p16043 -S'hide(${1:This}) $2' -p16044 -tp16045 -a(S'iconize/1' -p16046 -S'iconize(${1:This}) $2' -p16047 -tp16048 -a(S'iconize/2' -p16049 -S'iconize(${1:This}, ${2:Options}) $3' -p16050 -tp16051 -a(S'inheritAttributes/1' -p16052 -S'inheritAttributes(${1:This}) $2' -p16053 -tp16054 -a(S'initDialog/1' -p16055 -S'initDialog(${1:This}) $2' -p16056 -tp16057 -a(S'invalidateBestSize/1' -p16058 -S'invalidateBestSize(${1:This}) $2' -p16059 -tp16060 -a(S'isActive/1' -p16061 -S'isActive(${1:This}) $2' -p16062 -tp16063 -a(S'isEnabled/1' -p16064 -S'isEnabled(${1:This}) $2' -p16065 -tp16066 -a(S'isExposed/2' -p16067 -S'isExposed(${1:This}, ${2:Pt}) $3' -p16068 -tp16069 -a(S'isExposed/3' -p16070 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p16071 -tp16072 -a(S'isExposed/5' -p16073 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p16074 -tp16075 -a(S'isFullScreen/1' -p16076 -S'isFullScreen(${1:This}) $2' -p16077 -tp16078 -a(S'isIconized/1' -p16079 -S'isIconized(${1:This}) $2' -p16080 -tp16081 -a(S'isMaximized/1' -p16082 -S'isMaximized(${1:This}) $2' -p16083 -tp16084 -a(S'isRetained/1' -p16085 -S'isRetained(${1:This}) $2' -p16086 -tp16087 -a(S'isShown/1' -p16088 -S'isShown(${1:This}) $2' -p16089 -tp16090 -a(S'isTopLevel/1' -p16091 -S'isTopLevel(${1:This}) $2' -p16092 -tp16093 -a(S'layout/1' -p16094 -S'layout(${1:This}) $2' -p16095 -tp16096 -a(S'lineDown/1' -p16097 -S'lineDown(${1:This}) $2' -p16098 -tp16099 -a(S'lineUp/1' -p16100 -S'lineUp(${1:This}) $2' -p16101 -tp16102 -a(S'lower/1' -p16103 -S'lower(${1:This}) $2' -p16104 -tp16105 -a(S'makeModal/1' -p16106 -S'makeModal(${1:This}) $2' -p16107 -tp16108 -a(S'makeModal/2' -p16109 -S'makeModal(${1:This}, ${2:Options}) $3' -p16110 -tp16111 -a(S'maximize/1' -p16112 -S'maximize(${1:This}) $2' -p16113 -tp16114 -a(S'maximize/2' -p16115 -S'maximize(${1:This}, ${2:Param2}) $3' -p16116 -tp16117 -a(S'move/2' -p16118 -S'move(${1:This}, ${2:Pt}) $3' -p16119 -tp16120 -a(S'move/3' -p16121 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p16122 -tp16123 -a(S'move/4' -p16124 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p16125 -tp16126 -a(S'moveAfterInTabOrder/2' -p16127 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p16128 -tp16129 -a(S'moveBeforeInTabOrder/2' -p16130 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p16131 -tp16132 -a(S'navigate/1' -p16133 -S'navigate(${1:This}) $2' -p16134 -tp16135 -a(S'navigate/2' -p16136 -S'navigate(${1:This}, ${2:Options}) $3' -p16137 -tp16138 -a(S'new/0' -p16139 -S'new() $1' -p16140 -tp16141 -a(S'new/3' -p16142 -S'new(${1:Parent}, ${2:Id}, ${3:Title}) $4' -p16143 -tp16144 -a(S'new/4' -p16145 -S'new(${1:Parent}, ${2:Id}, ${3:Title}, ${4:Param4}) $5' -p16146 -tp16147 -a(S'pageDown/1' -p16148 -S'pageDown(${1:This}) $2' -p16149 -tp16150 -a(S'pageUp/1' -p16151 -S'pageUp(${1:This}) $2' -p16152 -tp16153 -a(S'parent_class/1' -p16154 -S'parent_class(${1:Param1}) $2' -p16155 -tp16156 -a(S'popEventHandler/1' -p16157 -S'popEventHandler(${1:This}) $2' -p16158 -tp16159 -a(S'popEventHandler/2' -p16160 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p16161 -tp16162 -a(S'popupMenu/2' -p16163 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p16164 -tp16165 -a(S'popupMenu/3' -p16166 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p16167 -tp16168 -a(S'popupMenu/4' -p16169 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p16170 -tp16171 -a(S'processCommand/2' -p16172 -S'processCommand(${1:This}, ${2:Winid}) $3' -p16173 -tp16174 -a(S'raise/1' -p16175 -S'raise(${1:This}) $2' -p16176 -tp16177 -a(S'refresh/1' -p16178 -S'refresh(${1:This}) $2' -p16179 -tp16180 -a(S'refresh/2' -p16181 -S'refresh(${1:This}, ${2:Options}) $3' -p16182 -tp16183 -a(S'refreshRect/2' -p16184 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p16185 -tp16186 -a(S'refreshRect/3' -p16187 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p16188 -tp16189 -a(S'releaseMouse/1' -p16190 -S'releaseMouse(${1:This}) $2' -p16191 -tp16192 -a(S'removeChild/2' -p16193 -S'removeChild(${1:This}, ${2:Child}) $3' -p16194 -tp16195 -a(S'reparent/2' -p16196 -S'reparent(${1:This}, ${2:NewParent}) $3' -p16197 -tp16198 -a(S'requestUserAttention/1' -p16199 -S'requestUserAttention(${1:This}) $2' -p16200 -tp16201 -a(S'requestUserAttention/2' -p16202 -S'requestUserAttention(${1:This}, ${2:Options}) $3' -p16203 -tp16204 -a(S'restore/1' -p16205 -S'restore(${1:This}) $2' -p16206 -tp16207 -a(S'screenToClient/1' -p16208 -S'screenToClient(${1:This}) $2' -p16209 -tp16210 -a(S'screenToClient/2' -p16211 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p16212 -tp16213 -a(S'scrollLines/2' -p16214 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p16215 -tp16216 -a(S'scrollPages/2' -p16217 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p16218 -tp16219 -a(S'scrollWindow/3' -p16220 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p16221 -tp16222 -a(S'scrollWindow/4' -p16223 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p16224 -tp16225 -a(S'sendSizeEvent/1' -p16226 -S'sendSizeEvent(${1:This}) $2' -p16227 -tp16228 -a(S'setAcceleratorTable/2' -p16229 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p16230 -tp16231 -a(S'setAutoLayout/2' -p16232 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p16233 -tp16234 -a(S'setBackgroundColour/2' -p16235 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p16236 -tp16237 -a(S'setBackgroundStyle/2' -p16238 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p16239 -tp16240 -a(S'setCaret/2' -p16241 -S'setCaret(${1:This}, ${2:Caret}) $3' -p16242 -tp16243 -a(S'setClientSize/2' -p16244 -S'setClientSize(${1:This}, ${2:Size}) $3' -p16245 -tp16246 -a(S'setClientSize/3' -p16247 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p16248 -tp16249 -a(S'setContainingSizer/2' -p16250 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p16251 -tp16252 -a(S'setCursor/2' -p16253 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p16254 -tp16255 -a(S'setDropTarget/2' -p16256 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p16257 -tp16258 -a(S'setExtraStyle/2' -p16259 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p16260 -tp16261 -a(S'setFocus/1' -p16262 -S'setFocus(${1:This}) $2' -p16263 -tp16264 -a(S'setFocusFromKbd/1' -p16265 -S'setFocusFromKbd(${1:This}) $2' -p16266 -tp16267 -a(S'setFont/2' -p16268 -S'setFont(${1:This}, ${2:Font}) $3' -p16269 -tp16270 -a(S'setForegroundColour/2' -p16271 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p16272 -tp16273 -a(S'setHelpText/2' -p16274 -S'setHelpText(${1:This}, ${2:Text}) $3' -p16275 -tp16276 -a(S'setIcon/2' -p16277 -S'setIcon(${1:This}, ${2:Icon}) $3' -p16278 -tp16279 -a(S'setIcons/2' -p16280 -S'setIcons(${1:This}, ${2:Icons}) $3' -p16281 -tp16282 -a(S'setId/2' -p16283 -S'setId(${1:This}, ${2:Winid}) $3' -p16284 -tp16285 -a(S'setLabel/2' -p16286 -S'setLabel(${1:This}, ${2:Label}) $3' -p16287 -tp16288 -a(S'setMaxSize/2' -p16289 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p16290 -tp16291 -a(S'setMenuBar/2' -p16292 -S'setMenuBar(${1:This}, ${2:Menubar}) $3' -p16293 -tp16294 -a(S'setMinSize/2' -p16295 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p16296 -tp16297 -a(S'setName/2' -p16298 -S'setName(${1:This}, ${2:Name}) $3' -p16299 -tp16300 -a(S'setOwnBackgroundColour/2' -p16301 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p16302 -tp16303 -a(S'setOwnFont/2' -p16304 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p16305 -tp16306 -a(S'setOwnForegroundColour/2' -p16307 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p16308 -tp16309 -a(S'setPalette/2' -p16310 -S'setPalette(${1:This}, ${2:Pal}) $3' -p16311 -tp16312 -a(S'setScrollPos/3' -p16313 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p16314 -tp16315 -a(S'setScrollPos/4' -p16316 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p16317 -tp16318 -a(S'setScrollbar/5' -p16319 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p16320 -tp16321 -a(S'setScrollbar/6' -p16322 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p16323 -tp16324 -a(S'setShape/2' -p16325 -S'setShape(${1:This}, ${2:Region}) $3' -p16326 -tp16327 -a(S'setSize/2' -p16328 -S'setSize(${1:This}, ${2:Rect}) $3' -p16329 -tp16330 -a(S'setSize/3' -p16331 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p16332 -tp16333 -a(S'setSize/5' -p16334 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p16335 -tp16336 -a(S'setSize/6' -p16337 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p16338 -tp16339 -a(S'setSizeHints/2' -p16340 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p16341 -tp16342 -a(S'setSizeHints/3' -p16343 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p16344 -tp16345 -a(S'setSizeHints/4' -p16346 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p16347 -tp16348 -a(S'setSizer/2' -p16349 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p16350 -tp16351 -a(S'setSizer/3' -p16352 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p16353 -tp16354 -a(S'setSizerAndFit/2' -p16355 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p16356 -tp16357 -a(S'setSizerAndFit/3' -p16358 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p16359 -tp16360 -a(S'setStatusBar/2' -p16361 -S'setStatusBar(${1:This}, ${2:Statbar}) $3' -p16362 -tp16363 -a(S'setStatusBarPane/2' -p16364 -S'setStatusBarPane(${1:This}, ${2:N}) $3' -p16365 -tp16366 -a(S'setStatusText/2' -p16367 -S'setStatusText(${1:This}, ${2:Text}) $3' -p16368 -tp16369 -a(S'setStatusText/3' -p16370 -S'setStatusText(${1:This}, ${2:Text}, ${3:Options}) $4' -p16371 -tp16372 -a(S'setStatusWidths/2' -p16373 -S'setStatusWidths(${1:This}, ${2:Widths_field}) $3' -p16374 -tp16375 -a(S'setThemeEnabled/2' -p16376 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p16377 -tp16378 -a(S'setTitle/2' -p16379 -S'setTitle(${1:This}, ${2:Title}) $3' -p16380 -tp16381 -a(S'setToolBar/2' -p16382 -S'setToolBar(${1:This}, ${2:Toolbar}) $3' -p16383 -tp16384 -a(S'setToolTip/2' -p16385 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p16386 -tp16387 -a(S'setVirtualSize/2' -p16388 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p16389 -tp16390 -a(S'setVirtualSize/3' -p16391 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p16392 -tp16393 -a(S'setVirtualSizeHints/2' -p16394 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p16395 -tp16396 -a(S'setVirtualSizeHints/3' -p16397 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p16398 -tp16399 -a(S'setVirtualSizeHints/4' -p16400 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p16401 -tp16402 -a(S'setWindowStyle/2' -p16403 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p16404 -tp16405 -a(S'setWindowStyleFlag/2' -p16406 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p16407 -tp16408 -a(S'setWindowVariant/2' -p16409 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p16410 -tp16411 -a(S'shouldInheritColours/1' -p16412 -S'shouldInheritColours(${1:This}) $2' -p16413 -tp16414 -a(S'show/1' -p16415 -S'show(${1:This}) $2' -p16416 -tp16417 -a(S'show/2' -p16418 -S'show(${1:This}, ${2:Options}) $3' -p16419 -tp16420 -a(S'showFullScreen/2' -p16421 -S'showFullScreen(${1:This}, ${2:Show}) $3' -p16422 -tp16423 -a(S'showFullScreen/3' -p16424 -S'showFullScreen(${1:This}, ${2:Show}, ${3:Options}) $4' -p16425 -tp16426 -a(S'thaw/1' -p16427 -S'thaw(${1:This}) $2' -p16428 -tp16429 -a(S'transferDataFromWindow/1' -p16430 -S'transferDataFromWindow(${1:This}) $2' -p16431 -tp16432 -a(S'transferDataToWindow/1' -p16433 -S'transferDataToWindow(${1:This}) $2' -p16434 -tp16435 -a(S'update/1' -p16436 -S'update(${1:This}) $2' -p16437 -tp16438 -a(S'updateWindowUI/1' -p16439 -S'updateWindowUI(${1:This}) $2' -p16440 -tp16441 -a(S'updateWindowUI/2' -p16442 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p16443 -tp16444 -a(S'validate/1' -p16445 -S'validate(${1:This}) $2' -p16446 -tp16447 -a(S'warpPointer/3' -p16448 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p16449 -tp16450 -asS'yeccparser' -p16451 -(lp16452 -(S'format_error/1' -p16453 -S'format_error(${1:Message}) $2' -p16454 -tp16455 -a(S'parse/1' -p16456 -S'parse(${1:Tokens}) $2' -p16457 -tp16458 -a(S'parse_and_scan/1' -p16459 -S'parse_and_scan(${1:Param1}) $2' -p16460 -tp16461 -asS'tv_new_table' -p16462 -(lp16463 -(S'init/3' -p16464 -S'init(${1:Node}, ${2:ErrMsgMode}, ${3:MPid}) $4' -p16465 -tp16466 -a(S'start/2' -p16467 -S'start(${1:Node}, ${2:ErrMsgMode}) $3' -p16468 -tp16469 -asS'mnesia_locker' -p16470 -(lp16471 -(S'async_release_tid/2' -p16472 -S'async_release_tid(${1:Nodes}, ${2:Tid}) $3' -p16473 -tp16474 -a(S'get_held_locks/0' -p16475 -S'get_held_locks() $1' -p16476 -tp16477 -a(S'get_lock_queue/0' -p16478 -S'get_lock_queue() $1' -p16479 -tp16480 -a(S'global_lock/5' -p16481 -S'global_lock(${1:Tid}, ${2:Store}, ${3:Item}, ${4:Param4}, ${5:Ns}) $6' -p16482 -tp16483 -a(S'init/1' -p16484 -S'init(${1:Parent}) $2' -p16485 -tp16486 -a(S'ixrlock/5' -p16487 -S'ixrlock(${1:Tid}, ${2:Store}, ${3:Tab}, ${4:IxKey}, ${5:Pos}) $6' -p16488 -tp16489 -a(S'load_lock_table/3' -p16490 -S'load_lock_table(${1:Tid}, ${2:Store}, ${3:Tab}) $4' -p16491 -tp16492 -a(S'mnesia_down/2' -p16493 -S'mnesia_down(${1:N}, ${2:Pending}) $3' -p16494 -tp16495 -a(S'receive_release_tid_acc/2' -p16496 -S'receive_release_tid_acc(${1:Param1}, ${2:Tid}) $3' -p16497 -tp16498 -a(S'release_tid/1' -p16499 -S'release_tid(${1:Tid}) $2' -p16500 -tp16501 -a(S'rlock/3' -p16502 -S'rlock(${1:Tid}, ${2:Store}, ${3:Oid}) $4' -p16503 -tp16504 -a(S'rlock_table/3' -p16505 -S'rlock_table(${1:Tid}, ${2:Store}, ${3:Tab}) $4' -p16506 -tp16507 -a(S'rwlock/3' -p16508 -S'rwlock(${1:Tid}, ${2:Store}, ${3:Oid}) $4' -p16509 -tp16510 -a(S'send_release_tid/2' -p16511 -S'send_release_tid(${1:Nodes}, ${2:Tid}) $3' -p16512 -tp16513 -a(S'start/0' -p16514 -S'start() $1' -p16515 -tp16516 -a(S'sticky_rwlock/3' -p16517 -S'sticky_rwlock(${1:Tid}, ${2:Store}, ${3:Oid}) $4' -p16518 -tp16519 -a(S'sticky_wlock/3' -p16520 -S'sticky_wlock(${1:Tid}, ${2:Store}, ${3:Oid}) $4' -p16521 -tp16522 -a(S'sticky_wlock_table/3' -p16523 -S'sticky_wlock_table(${1:Tid}, ${2:Store}, ${3:Tab}) $4' -p16524 -tp16525 -a(S'system_code_change/4' -p16526 -S'system_code_change(${1:State}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p16527 -tp16528 -a(S'system_continue/3' -p16529 -S'system_continue(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p16530 -tp16531 -a(S'system_terminate/4' -p16532 -S'system_terminate(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p16533 -tp16534 -a(S'wlock/3' -p16535 -S'wlock(${1:Tid}, ${2:Store}, ${3:Oid}) $4' -p16536 -tp16537 -a(S'wlock_no_exist/4' -p16538 -S'wlock_no_exist(${1:Tid}, ${2:Store}, ${3:Tab}, ${4:Ns}) $5' -p16539 -tp16540 -a(S'wlock_table/3' -p16541 -S'wlock_table(${1:Tid}, ${2:Store}, ${3:Tab}) $4' -p16542 -tp16543 -asS'wrap_log_reader' -p16544 -(lp16545 -(S'chunk/1' -p16546 -S'chunk(${1:Continuation}) $2' -p16547 -tp16548 -a(S'chunk/2' -p16549 -S'chunk(${1:Continuation}, ${2:N}) $3' -p16550 -tp16551 -a(S'close/1' -p16552 -S'close(${1:Continuation}) $2' -p16553 -tp16554 -a(S'open/1' -p16555 -S'open(${1:Filename}) $2' -p16556 -tp16557 -a(S'open/2' -p16558 -S'open(${1:Filename}, ${2:N}) $3' -p16559 -tp16560 -asS'wxXmlResource' -p16561 -(lp16562 -(S'attachUnknownControl/3' -p16563 -S'attachUnknownControl(${1:This}, ${2:Name}, ${3:Control}) $4' -p16564 -tp16565 -a(S'attachUnknownControl/4' -p16566 -S'attachUnknownControl(${1:This}, ${2:Name}, ${3:Control}, ${4:Param4}) $5' -p16567 -tp16568 -a(S'clearHandlers/1' -p16569 -S'clearHandlers(${1:This}) $2' -p16570 -tp16571 -a(S'compareVersion/5' -p16572 -S'compareVersion(${1:This}, ${2:Major}, ${3:Minor}, ${4:Release}, ${5:Revision}) $6' -p16573 -tp16574 -a(S'destroy/1' -p16575 -S'destroy(${1:This}) $2' -p16576 -tp16577 -a(S'get/0' -p16578 -S'get() $1' -p16579 -tp16580 -a(S'getFlags/1' -p16581 -S'getFlags(${1:This}) $2' -p16582 -tp16583 -a(S'getVersion/1' -p16584 -S'getVersion(${1:This}) $2' -p16585 -tp16586 -a(S'getXRCID/1' -p16587 -S'getXRCID(${1:Str_id}) $2' -p16588 -tp16589 -a(S'getXRCID/2' -p16590 -S'getXRCID(${1:Str_id}, ${2:Param2}) $3' -p16591 -tp16592 -a(S'initAllHandlers/1' -p16593 -S'initAllHandlers(${1:This}) $2' -p16594 -tp16595 -a(S'load/2' -p16596 -S'load(${1:This}, ${2:Filemask}) $3' -p16597 -tp16598 -a(S'loadBitmap/2' -p16599 -S'loadBitmap(${1:This}, ${2:Name}) $3' -p16600 -tp16601 -a(S'loadDialog/3' -p16602 -S'loadDialog(${1:This}, ${2:Parent}, ${3:Name}) $4' -p16603 -tp16604 -a(S'loadDialog/4' -p16605 -S'loadDialog(${1:This}, ${2:Dlg}, ${3:Parent}, ${4:Name}) $5' -p16606 -tp16607 -a(S'loadFrame/3' -p16608 -S'loadFrame(${1:This}, ${2:Parent}, ${3:Name}) $4' -p16609 -tp16610 -a(S'loadFrame/4' -p16611 -S'loadFrame(${1:This}, ${2:Frame}, ${3:Parent}, ${4:Name}) $5' -p16612 -tp16613 -a(S'loadIcon/2' -p16614 -S'loadIcon(${1:This}, ${2:Name}) $3' -p16615 -tp16616 -a(S'loadMenu/2' -p16617 -S'loadMenu(${1:This}, ${2:Name}) $3' -p16618 -tp16619 -a(S'loadMenuBar/2' -p16620 -S'loadMenuBar(${1:This}, ${2:Name}) $3' -p16621 -tp16622 -a(S'loadMenuBar/3' -p16623 -S'loadMenuBar(${1:This}, ${2:Parent}, ${3:Name}) $4' -p16624 -tp16625 -a(S'loadPanel/3' -p16626 -S'loadPanel(${1:This}, ${2:Parent}, ${3:Name}) $4' -p16627 -tp16628 -a(S'loadPanel/4' -p16629 -S'loadPanel(${1:This}, ${2:Panel}, ${3:Parent}, ${4:Name}) $5' -p16630 -tp16631 -a(S'loadToolBar/3' -p16632 -S'loadToolBar(${1:This}, ${2:Parent}, ${3:Name}) $4' -p16633 -tp16634 -a(S'new/0' -p16635 -S'new() $1' -p16636 -tp16637 -a(S'new/1' -p16638 -S'new(${1:Param1}) $2' -p16639 -tp16640 -a(S'new/2' -p16641 -S'new(${1:Filemask}, ${2:Param2}) $3' -p16642 -tp16643 -a(S'parent_class/1' -p16644 -S'parent_class(${1:Param1}) $2' -p16645 -tp16646 -a(S'set/1' -p16647 -S'set(${1:Res}) $2' -p16648 -tp16649 -a(S'setFlags/2' -p16650 -S'setFlags(${1:This}, ${2:Flags}) $3' -p16651 -tp16652 -a(S'unload/2' -p16653 -S'unload(${1:This}, ${2:Filename}) $3' -p16654 -tp16655 -a(S'xrcctrl/3' -p16656 -S'xrcctrl(${1:Param1}, ${2:Name}, ${3:Type}) $4' -p16657 -tp16658 -asS'xmerl_text' -p16659 -(lp16660 -(S"'#element#'/5" -p16661 -S"'#element#'(${1:Param1}, ${2:Data}, ${3:Param3}, ${4:Param4}, ${5:Param5}) $6" -p16662 -tp16663 -a(S"'#root#'/4" -p16664 -S"'#root#'(${1:Data}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5" -p16665 -tp16666 -a(S"'#text#'/1" -p16667 -S"'#text#'(${1:Text}) $2" -p16668 -tp16669 -a(S"'#xml-inheritance#'/0" -p16670 -S"'#xml-inheritance#'() $1" -p16671 -tp16672 -asS'pman_buf_converter' -p16673 -(lp16674 -(S'init/2' -p16675 -S'init(${1:Buffer_Pid}, ${2:FileName}) $3' -p16676 -tp16677 -asS'diameter_gen_base_accounting' -p16678 -(lp16679 -(S'avp/3' -p16680 -S'avp(${1:T}, ${2:Data}, ${3:Param3}) $4' -p16681 -tp16682 -a(S'avp_arity/2' -p16683 -S'avp_arity(${1:Param1}, ${2:Param2}) $3' -p16684 -tp16685 -a(S'avp_header/1' -p16686 -S'avp_header(${1:Param1}) $2' -p16687 -tp16688 -a(S'avp_name/2' -p16689 -S'avp_name(${1:Param1}, ${2:Param2}) $3' -p16690 -tp16691 -a(S'decode_avps/2' -p16692 -S'decode_avps() $1' -p16693 -tp16694 -a(S'dict/0' -p16695 -S'dict() $1' -p16696 -tp16697 -a(S'empty_value/1' -p16698 -S'empty_value(${1:Name}) $2' -p16699 -tp16700 -a(S'encode_avps/2' -p16701 -S'encode_avps() $1' -p16702 -tp16703 -a(S'enumerated_avp/3' -p16704 -S'enumerated_avp(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p16705 -tp16706 -a(S'grouped_avp/3' -p16707 -S'grouped_avp() $1' -p16708 -tp16709 -a(S'id/0' -p16710 -S'id() $1' -p16711 -tp16712 -a(S'msg2rec/1' -p16713 -S'msg2rec(${1:Param1}) $2' -p16714 -tp16715 -a(S'msg_header/1' -p16716 -S'msg_header(${1:Param1}) $2' -p16717 -tp16718 -a(S'msg_name/2' -p16719 -S'msg_name(${1:Param1}, ${2:Param2}) $3' -p16720 -tp16721 -a(S'name/0' -p16722 -S'name() $1' -p16723 -tp16724 -a(S'name2rec/1' -p16725 -S'name2rec(${1:T}) $2' -p16726 -tp16727 -a(S'rec2msg/1' -p16728 -S'rec2msg(${1:Param1}) $2' -p16729 -tp16730 -a(S'vendor_id/0' -p16731 -S'vendor_id() $1' -p16732 -tp16733 -a(S'vendor_name/0' -p16734 -S'vendor_name() $1' -p16735 -tp16736 -asS'wxMiniFrame' -p16737 -(lp16738 -(S'cacheBestSize/2' -p16739 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p16740 -tp16741 -a(S'captureMouse/1' -p16742 -S'captureMouse(${1:This}) $2' -p16743 -tp16744 -a(S'center/1' -p16745 -S'center(${1:This}) $2' -p16746 -tp16747 -a(S'center/2' -p16748 -S'center(${1:This}, ${2:Options}) $3' -p16749 -tp16750 -a(S'centerOnParent/1' -p16751 -S'centerOnParent(${1:This}) $2' -p16752 -tp16753 -a(S'centerOnParent/2' -p16754 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p16755 -tp16756 -a(S'centerOnScreen/1' -p16757 -S'centerOnScreen(${1:This}) $2' -p16758 -tp16759 -a(S'centerOnScreen/2' -p16760 -S'centerOnScreen(${1:This}, ${2:Options}) $3' -p16761 -tp16762 -a(S'centre/1' -p16763 -S'centre(${1:This}) $2' -p16764 -tp16765 -a(S'centre/2' -p16766 -S'centre(${1:This}, ${2:Options}) $3' -p16767 -tp16768 -a(S'centreOnParent/1' -p16769 -S'centreOnParent(${1:This}) $2' -p16770 -tp16771 -a(S'centreOnParent/2' -p16772 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p16773 -tp16774 -a(S'centreOnScreen/1' -p16775 -S'centreOnScreen(${1:This}) $2' -p16776 -tp16777 -a(S'centreOnScreen/2' -p16778 -S'centreOnScreen(${1:This}, ${2:Options}) $3' -p16779 -tp16780 -a(S'clearBackground/1' -p16781 -S'clearBackground(${1:This}) $2' -p16782 -tp16783 -a(S'clientToScreen/2' -p16784 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p16785 -tp16786 -a(S'clientToScreen/3' -p16787 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p16788 -tp16789 -a(S'close/1' -p16790 -S'close(${1:This}) $2' -p16791 -tp16792 -a(S'close/2' -p16793 -S'close(${1:This}, ${2:Options}) $3' -p16794 -tp16795 -a(S'connect/2' -p16796 -S'connect(${1:This}, ${2:EventType}) $3' -p16797 -tp16798 -a(S'connect/3' -p16799 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p16800 -tp16801 -a(S'convertDialogToPixels/2' -p16802 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p16803 -tp16804 -a(S'convertPixelsToDialog/2' -p16805 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p16806 -tp16807 -a(S'create/4' -p16808 -S'create(${1:This}, ${2:Parent}, ${3:Id}, ${4:Title}) $5' -p16809 -tp16810 -a(S'create/5' -p16811 -S'create(${1:This}, ${2:Parent}, ${3:Id}, ${4:Title}, ${5:Param5}) $6' -p16812 -tp16813 -a(S'createStatusBar/1' -p16814 -S'createStatusBar(${1:This}) $2' -p16815 -tp16816 -a(S'createStatusBar/2' -p16817 -S'createStatusBar(${1:This}, ${2:Options}) $3' -p16818 -tp16819 -a(S'createToolBar/1' -p16820 -S'createToolBar(${1:This}) $2' -p16821 -tp16822 -a(S'createToolBar/2' -p16823 -S'createToolBar(${1:This}, ${2:Options}) $3' -p16824 -tp16825 -a(S'destroy/1' -p16826 -S'destroy(${1:This}) $2' -p16827 -tp16828 -a(S'destroyChildren/1' -p16829 -S'destroyChildren(${1:This}) $2' -p16830 -tp16831 -a(S'disable/1' -p16832 -S'disable(${1:This}) $2' -p16833 -tp16834 -a(S'disconnect/1' -p16835 -S'disconnect(${1:This}) $2' -p16836 -tp16837 -a(S'disconnect/2' -p16838 -S'disconnect(${1:This}, ${2:EventType}) $3' -p16839 -tp16840 -a(S'disconnect/3' -p16841 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p16842 -tp16843 -a(S'enable/1' -p16844 -S'enable(${1:This}) $2' -p16845 -tp16846 -a(S'enable/2' -p16847 -S'enable(${1:This}, ${2:Options}) $3' -p16848 -tp16849 -a(S'findWindow/2' -p16850 -S'findWindow(${1:This}, ${2:Winid}) $3' -p16851 -tp16852 -a(S'fit/1' -p16853 -S'fit(${1:This}) $2' -p16854 -tp16855 -a(S'fitInside/1' -p16856 -S'fitInside(${1:This}) $2' -p16857 -tp16858 -a(S'freeze/1' -p16859 -S'freeze(${1:This}) $2' -p16860 -tp16861 -a(S'getAcceleratorTable/1' -p16862 -S'getAcceleratorTable(${1:This}) $2' -p16863 -tp16864 -a(S'getBackgroundColour/1' -p16865 -S'getBackgroundColour(${1:This}) $2' -p16866 -tp16867 -a(S'getBackgroundStyle/1' -p16868 -S'getBackgroundStyle(${1:This}) $2' -p16869 -tp16870 -a(S'getBestSize/1' -p16871 -S'getBestSize(${1:This}) $2' -p16872 -tp16873 -a(S'getCaret/1' -p16874 -S'getCaret(${1:This}) $2' -p16875 -tp16876 -a(S'getCharHeight/1' -p16877 -S'getCharHeight(${1:This}) $2' -p16878 -tp16879 -a(S'getCharWidth/1' -p16880 -S'getCharWidth(${1:This}) $2' -p16881 -tp16882 -a(S'getChildren/1' -p16883 -S'getChildren(${1:This}) $2' -p16884 -tp16885 -a(S'getClientAreaOrigin/1' -p16886 -S'getClientAreaOrigin(${1:This}) $2' -p16887 -tp16888 -a(S'getClientSize/1' -p16889 -S'getClientSize(${1:This}) $2' -p16890 -tp16891 -a(S'getContainingSizer/1' -p16892 -S'getContainingSizer(${1:This}) $2' -p16893 -tp16894 -a(S'getCursor/1' -p16895 -S'getCursor(${1:This}) $2' -p16896 -tp16897 -a(S'getDropTarget/1' -p16898 -S'getDropTarget(${1:This}) $2' -p16899 -tp16900 -a(S'getEventHandler/1' -p16901 -S'getEventHandler(${1:This}) $2' -p16902 -tp16903 -a(S'getExtraStyle/1' -p16904 -S'getExtraStyle(${1:This}) $2' -p16905 -tp16906 -a(S'getFont/1' -p16907 -S'getFont(${1:This}) $2' -p16908 -tp16909 -a(S'getForegroundColour/1' -p16910 -S'getForegroundColour(${1:This}) $2' -p16911 -tp16912 -a(S'getGrandParent/1' -p16913 -S'getGrandParent(${1:This}) $2' -p16914 -tp16915 -a(S'getHandle/1' -p16916 -S'getHandle(${1:This}) $2' -p16917 -tp16918 -a(S'getHelpText/1' -p16919 -S'getHelpText(${1:This}) $2' -p16920 -tp16921 -a(S'getIcon/1' -p16922 -S'getIcon(${1:This}) $2' -p16923 -tp16924 -a(S'getIcons/1' -p16925 -S'getIcons(${1:This}) $2' -p16926 -tp16927 -a(S'getId/1' -p16928 -S'getId(${1:This}) $2' -p16929 -tp16930 -a(S'getLabel/1' -p16931 -S'getLabel(${1:This}) $2' -p16932 -tp16933 -a(S'getMaxSize/1' -p16934 -S'getMaxSize(${1:This}) $2' -p16935 -tp16936 -a(S'getMenuBar/1' -p16937 -S'getMenuBar(${1:This}) $2' -p16938 -tp16939 -a(S'getMinSize/1' -p16940 -S'getMinSize(${1:This}) $2' -p16941 -tp16942 -a(S'getName/1' -p16943 -S'getName(${1:This}) $2' -p16944 -tp16945 -a(S'getParent/1' -p16946 -S'getParent(${1:This}) $2' -p16947 -tp16948 -a(S'getPosition/1' -p16949 -S'getPosition(${1:This}) $2' -p16950 -tp16951 -a(S'getRect/1' -p16952 -S'getRect(${1:This}) $2' -p16953 -tp16954 -a(S'getScreenPosition/1' -p16955 -S'getScreenPosition(${1:This}) $2' -p16956 -tp16957 -a(S'getScreenRect/1' -p16958 -S'getScreenRect(${1:This}) $2' -p16959 -tp16960 -a(S'getScrollPos/2' -p16961 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p16962 -tp16963 -a(S'getScrollRange/2' -p16964 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p16965 -tp16966 -a(S'getScrollThumb/2' -p16967 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p16968 -tp16969 -a(S'getSize/1' -p16970 -S'getSize(${1:This}) $2' -p16971 -tp16972 -a(S'getSizer/1' -p16973 -S'getSizer(${1:This}) $2' -p16974 -tp16975 -a(S'getStatusBar/1' -p16976 -S'getStatusBar(${1:This}) $2' -p16977 -tp16978 -a(S'getStatusBarPane/1' -p16979 -S'getStatusBarPane(${1:This}) $2' -p16980 -tp16981 -a(S'getTextExtent/2' -p16982 -S'getTextExtent(${1:This}, ${2:String}) $3' -p16983 -tp16984 -a(S'getTextExtent/3' -p16985 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p16986 -tp16987 -a(S'getTitle/1' -p16988 -S'getTitle(${1:This}) $2' -p16989 -tp16990 -a(S'getToolBar/1' -p16991 -S'getToolBar(${1:This}) $2' -p16992 -tp16993 -a(S'getToolTip/1' -p16994 -S'getToolTip(${1:This}) $2' -p16995 -tp16996 -a(S'getUpdateRegion/1' -p16997 -S'getUpdateRegion(${1:This}) $2' -p16998 -tp16999 -a(S'getVirtualSize/1' -p17000 -S'getVirtualSize(${1:This}) $2' -p17001 -tp17002 -a(S'getWindowStyleFlag/1' -p17003 -S'getWindowStyleFlag(${1:This}) $2' -p17004 -tp17005 -a(S'getWindowVariant/1' -p17006 -S'getWindowVariant(${1:This}) $2' -p17007 -tp17008 -a(S'hasCapture/1' -p17009 -S'hasCapture(${1:This}) $2' -p17010 -tp17011 -a(S'hasScrollbar/2' -p17012 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p17013 -tp17014 -a(S'hasTransparentBackground/1' -p17015 -S'hasTransparentBackground(${1:This}) $2' -p17016 -tp17017 -a(S'hide/1' -p17018 -S'hide(${1:This}) $2' -p17019 -tp17020 -a(S'iconize/1' -p17021 -S'iconize(${1:This}) $2' -p17022 -tp17023 -a(S'iconize/2' -p17024 -S'iconize(${1:This}, ${2:Options}) $3' -p17025 -tp17026 -a(S'inheritAttributes/1' -p17027 -S'inheritAttributes(${1:This}) $2' -p17028 -tp17029 -a(S'initDialog/1' -p17030 -S'initDialog(${1:This}) $2' -p17031 -tp17032 -a(S'invalidateBestSize/1' -p17033 -S'invalidateBestSize(${1:This}) $2' -p17034 -tp17035 -a(S'isActive/1' -p17036 -S'isActive(${1:This}) $2' -p17037 -tp17038 -a(S'isEnabled/1' -p17039 -S'isEnabled(${1:This}) $2' -p17040 -tp17041 -a(S'isExposed/2' -p17042 -S'isExposed(${1:This}, ${2:Pt}) $3' -p17043 -tp17044 -a(S'isExposed/3' -p17045 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p17046 -tp17047 -a(S'isExposed/5' -p17048 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p17049 -tp17050 -a(S'isFullScreen/1' -p17051 -S'isFullScreen(${1:This}) $2' -p17052 -tp17053 -a(S'isIconized/1' -p17054 -S'isIconized(${1:This}) $2' -p17055 -tp17056 -a(S'isMaximized/1' -p17057 -S'isMaximized(${1:This}) $2' -p17058 -tp17059 -a(S'isRetained/1' -p17060 -S'isRetained(${1:This}) $2' -p17061 -tp17062 -a(S'isShown/1' -p17063 -S'isShown(${1:This}) $2' -p17064 -tp17065 -a(S'isTopLevel/1' -p17066 -S'isTopLevel(${1:This}) $2' -p17067 -tp17068 -a(S'layout/1' -p17069 -S'layout(${1:This}) $2' -p17070 -tp17071 -a(S'lineDown/1' -p17072 -S'lineDown(${1:This}) $2' -p17073 -tp17074 -a(S'lineUp/1' -p17075 -S'lineUp(${1:This}) $2' -p17076 -tp17077 -a(S'lower/1' -p17078 -S'lower(${1:This}) $2' -p17079 -tp17080 -a(S'makeModal/1' -p17081 -S'makeModal(${1:This}) $2' -p17082 -tp17083 -a(S'makeModal/2' -p17084 -S'makeModal(${1:This}, ${2:Options}) $3' -p17085 -tp17086 -a(S'maximize/1' -p17087 -S'maximize(${1:This}) $2' -p17088 -tp17089 -a(S'maximize/2' -p17090 -S'maximize(${1:This}, ${2:Options}) $3' -p17091 -tp17092 -a(S'move/2' -p17093 -S'move(${1:This}, ${2:Pt}) $3' -p17094 -tp17095 -a(S'move/3' -p17096 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p17097 -tp17098 -a(S'move/4' -p17099 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p17100 -tp17101 -a(S'moveAfterInTabOrder/2' -p17102 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p17103 -tp17104 -a(S'moveBeforeInTabOrder/2' -p17105 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p17106 -tp17107 -a(S'navigate/1' -p17108 -S'navigate(${1:This}) $2' -p17109 -tp17110 -a(S'navigate/2' -p17111 -S'navigate(${1:This}, ${2:Options}) $3' -p17112 -tp17113 -a(S'new/0' -p17114 -S'new() $1' -p17115 -tp17116 -a(S'new/3' -p17117 -S'new(${1:Parent}, ${2:Id}, ${3:Title}) $4' -p17118 -tp17119 -a(S'new/4' -p17120 -S'new(${1:Parent}, ${2:Id}, ${3:Title}, ${4:Param4}) $5' -p17121 -tp17122 -a(S'pageDown/1' -p17123 -S'pageDown(${1:This}) $2' -p17124 -tp17125 -a(S'pageUp/1' -p17126 -S'pageUp(${1:This}) $2' -p17127 -tp17128 -a(S'parent_class/1' -p17129 -S'parent_class(${1:Param1}) $2' -p17130 -tp17131 -a(S'popEventHandler/1' -p17132 -S'popEventHandler(${1:This}) $2' -p17133 -tp17134 -a(S'popEventHandler/2' -p17135 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p17136 -tp17137 -a(S'popupMenu/2' -p17138 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p17139 -tp17140 -a(S'popupMenu/3' -p17141 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p17142 -tp17143 -a(S'popupMenu/4' -p17144 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p17145 -tp17146 -a(S'processCommand/2' -p17147 -S'processCommand(${1:This}, ${2:Winid}) $3' -p17148 -tp17149 -a(S'raise/1' -p17150 -S'raise(${1:This}) $2' -p17151 -tp17152 -a(S'refresh/1' -p17153 -S'refresh(${1:This}) $2' -p17154 -tp17155 -a(S'refresh/2' -p17156 -S'refresh(${1:This}, ${2:Options}) $3' -p17157 -tp17158 -a(S'refreshRect/2' -p17159 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p17160 -tp17161 -a(S'refreshRect/3' -p17162 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p17163 -tp17164 -a(S'releaseMouse/1' -p17165 -S'releaseMouse(${1:This}) $2' -p17166 -tp17167 -a(S'removeChild/2' -p17168 -S'removeChild(${1:This}, ${2:Child}) $3' -p17169 -tp17170 -a(S'reparent/2' -p17171 -S'reparent(${1:This}, ${2:NewParent}) $3' -p17172 -tp17173 -a(S'requestUserAttention/1' -p17174 -S'requestUserAttention(${1:This}) $2' -p17175 -tp17176 -a(S'requestUserAttention/2' -p17177 -S'requestUserAttention(${1:This}, ${2:Options}) $3' -p17178 -tp17179 -a(S'screenToClient/1' -p17180 -S'screenToClient(${1:This}) $2' -p17181 -tp17182 -a(S'screenToClient/2' -p17183 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p17184 -tp17185 -a(S'scrollLines/2' -p17186 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p17187 -tp17188 -a(S'scrollPages/2' -p17189 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p17190 -tp17191 -a(S'scrollWindow/3' -p17192 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p17193 -tp17194 -a(S'scrollWindow/4' -p17195 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p17196 -tp17197 -a(S'sendSizeEvent/1' -p17198 -S'sendSizeEvent(${1:This}) $2' -p17199 -tp17200 -a(S'setAcceleratorTable/2' -p17201 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p17202 -tp17203 -a(S'setAutoLayout/2' -p17204 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p17205 -tp17206 -a(S'setBackgroundColour/2' -p17207 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p17208 -tp17209 -a(S'setBackgroundStyle/2' -p17210 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p17211 -tp17212 -a(S'setCaret/2' -p17213 -S'setCaret(${1:This}, ${2:Caret}) $3' -p17214 -tp17215 -a(S'setClientSize/2' -p17216 -S'setClientSize(${1:This}, ${2:Size}) $3' -p17217 -tp17218 -a(S'setClientSize/3' -p17219 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p17220 -tp17221 -a(S'setContainingSizer/2' -p17222 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p17223 -tp17224 -a(S'setCursor/2' -p17225 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p17226 -tp17227 -a(S'setDropTarget/2' -p17228 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p17229 -tp17230 -a(S'setExtraStyle/2' -p17231 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p17232 -tp17233 -a(S'setFocus/1' -p17234 -S'setFocus(${1:This}) $2' -p17235 -tp17236 -a(S'setFocusFromKbd/1' -p17237 -S'setFocusFromKbd(${1:This}) $2' -p17238 -tp17239 -a(S'setFont/2' -p17240 -S'setFont(${1:This}, ${2:Font}) $3' -p17241 -tp17242 -a(S'setForegroundColour/2' -p17243 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p17244 -tp17245 -a(S'setHelpText/2' -p17246 -S'setHelpText(${1:This}, ${2:Text}) $3' -p17247 -tp17248 -a(S'setIcon/2' -p17249 -S'setIcon(${1:This}, ${2:Icon}) $3' -p17250 -tp17251 -a(S'setIcons/2' -p17252 -S'setIcons(${1:This}, ${2:Icons}) $3' -p17253 -tp17254 -a(S'setId/2' -p17255 -S'setId(${1:This}, ${2:Winid}) $3' -p17256 -tp17257 -a(S'setLabel/2' -p17258 -S'setLabel(${1:This}, ${2:Label}) $3' -p17259 -tp17260 -a(S'setMaxSize/2' -p17261 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p17262 -tp17263 -a(S'setMenuBar/2' -p17264 -S'setMenuBar(${1:This}, ${2:Menubar}) $3' -p17265 -tp17266 -a(S'setMinSize/2' -p17267 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p17268 -tp17269 -a(S'setName/2' -p17270 -S'setName(${1:This}, ${2:Name}) $3' -p17271 -tp17272 -a(S'setOwnBackgroundColour/2' -p17273 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p17274 -tp17275 -a(S'setOwnFont/2' -p17276 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p17277 -tp17278 -a(S'setOwnForegroundColour/2' -p17279 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p17280 -tp17281 -a(S'setPalette/2' -p17282 -S'setPalette(${1:This}, ${2:Pal}) $3' -p17283 -tp17284 -a(S'setScrollPos/3' -p17285 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p17286 -tp17287 -a(S'setScrollPos/4' -p17288 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p17289 -tp17290 -a(S'setScrollbar/5' -p17291 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p17292 -tp17293 -a(S'setScrollbar/6' -p17294 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p17295 -tp17296 -a(S'setShape/2' -p17297 -S'setShape(${1:This}, ${2:Region}) $3' -p17298 -tp17299 -a(S'setSize/2' -p17300 -S'setSize(${1:This}, ${2:Rect}) $3' -p17301 -tp17302 -a(S'setSize/3' -p17303 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p17304 -tp17305 -a(S'setSize/5' -p17306 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p17307 -tp17308 -a(S'setSize/6' -p17309 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p17310 -tp17311 -a(S'setSizeHints/2' -p17312 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p17313 -tp17314 -a(S'setSizeHints/3' -p17315 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p17316 -tp17317 -a(S'setSizeHints/4' -p17318 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p17319 -tp17320 -a(S'setSizer/2' -p17321 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p17322 -tp17323 -a(S'setSizer/3' -p17324 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p17325 -tp17326 -a(S'setSizerAndFit/2' -p17327 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p17328 -tp17329 -a(S'setSizerAndFit/3' -p17330 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p17331 -tp17332 -a(S'setStatusBar/2' -p17333 -S'setStatusBar(${1:This}, ${2:Statbar}) $3' -p17334 -tp17335 -a(S'setStatusBarPane/2' -p17336 -S'setStatusBarPane(${1:This}, ${2:N}) $3' -p17337 -tp17338 -a(S'setStatusText/2' -p17339 -S'setStatusText(${1:This}, ${2:Text}) $3' -p17340 -tp17341 -a(S'setStatusText/3' -p17342 -S'setStatusText(${1:This}, ${2:Text}, ${3:Options}) $4' -p17343 -tp17344 -a(S'setStatusWidths/2' -p17345 -S'setStatusWidths(${1:This}, ${2:Widths_field}) $3' -p17346 -tp17347 -a(S'setThemeEnabled/2' -p17348 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p17349 -tp17350 -a(S'setTitle/2' -p17351 -S'setTitle(${1:This}, ${2:Title}) $3' -p17352 -tp17353 -a(S'setToolBar/2' -p17354 -S'setToolBar(${1:This}, ${2:Toolbar}) $3' -p17355 -tp17356 -a(S'setToolTip/2' -p17357 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p17358 -tp17359 -a(S'setVirtualSize/2' -p17360 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p17361 -tp17362 -a(S'setVirtualSize/3' -p17363 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p17364 -tp17365 -a(S'setVirtualSizeHints/2' -p17366 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p17367 -tp17368 -a(S'setVirtualSizeHints/3' -p17369 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p17370 -tp17371 -a(S'setVirtualSizeHints/4' -p17372 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p17373 -tp17374 -a(S'setWindowStyle/2' -p17375 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p17376 -tp17377 -a(S'setWindowStyleFlag/2' -p17378 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p17379 -tp17380 -a(S'setWindowVariant/2' -p17381 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p17382 -tp17383 -a(S'shouldInheritColours/1' -p17384 -S'shouldInheritColours(${1:This}) $2' -p17385 -tp17386 -a(S'show/1' -p17387 -S'show(${1:This}) $2' -p17388 -tp17389 -a(S'show/2' -p17390 -S'show(${1:This}, ${2:Options}) $3' -p17391 -tp17392 -a(S'showFullScreen/2' -p17393 -S'showFullScreen(${1:This}, ${2:Show}) $3' -p17394 -tp17395 -a(S'showFullScreen/3' -p17396 -S'showFullScreen(${1:This}, ${2:Show}, ${3:Options}) $4' -p17397 -tp17398 -a(S'thaw/1' -p17399 -S'thaw(${1:This}) $2' -p17400 -tp17401 -a(S'transferDataFromWindow/1' -p17402 -S'transferDataFromWindow(${1:This}) $2' -p17403 -tp17404 -a(S'transferDataToWindow/1' -p17405 -S'transferDataToWindow(${1:This}) $2' -p17406 -tp17407 -a(S'update/1' -p17408 -S'update(${1:This}) $2' -p17409 -tp17410 -a(S'updateWindowUI/1' -p17411 -S'updateWindowUI(${1:This}) $2' -p17412 -tp17413 -a(S'updateWindowUI/2' -p17414 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p17415 -tp17416 -a(S'validate/1' -p17417 -S'validate(${1:This}) $2' -p17418 -tp17419 -a(S'warpPointer/3' -p17420 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p17421 -tp17422 -asS'epp_dodger' -p17423 -(lp17424 -(S'format_error/1' -p17425 -S'format_error(${1:Param1}) $2' -p17426 -tp17427 -a(S'parse/1' -p17428 -S'parse(${1:Dev}) $2' -p17429 -tp17430 -a(S'parse/2' -p17431 -S'parse(${1:Dev}, ${2:L}) $3' -p17432 -tp17433 -a(S'parse/3' -p17434 -S'parse(${1:Dev}, ${2:L0}, ${3:Options}) $4' -p17435 -tp17436 -a(S'parse_file/1' -p17437 -S'parse_file(${1:File}) $2' -p17438 -tp17439 -a(S'parse_file/2' -p17440 -S'parse_file(${1:File}, ${2:Options}) $3' -p17441 -tp17442 -a(S'parse_form/2' -p17443 -S'parse_form(${1:Dev}, ${2:L0}) $3' -p17444 -tp17445 -a(S'parse_form/3' -p17446 -S'parse_form(${1:Dev}, ${2:L0}, ${3:Options}) $4' -p17447 -tp17448 -a(S'quick_parse/1' -p17449 -S'quick_parse(${1:Dev}) $2' -p17450 -tp17451 -a(S'quick_parse/2' -p17452 -S'quick_parse(${1:Dev}, ${2:L}) $3' -p17453 -tp17454 -a(S'quick_parse/3' -p17455 -S'quick_parse(${1:Dev}, ${2:L0}, ${3:Options}) $4' -p17456 -tp17457 -a(S'quick_parse_file/1' -p17458 -S'quick_parse_file(${1:File}) $2' -p17459 -tp17460 -a(S'quick_parse_file/2' -p17461 -S'quick_parse_file(${1:File}, ${2:Options}) $3' -p17462 -tp17463 -a(S'quick_parse_form/2' -p17464 -S'quick_parse_form(${1:Dev}, ${2:L0}) $3' -p17465 -tp17466 -a(S'quick_parse_form/3' -p17467 -S'quick_parse_form(${1:Dev}, ${2:L0}, ${3:Options}) $4' -p17468 -tp17469 -a(S'tokens_to_string/1' -p17470 -S'tokens_to_string(${1:Param1}) $2' -p17471 -tp17472 -asS'cpu_sup' -p17473 -(lp17474 -(S'avg1/0' -p17475 -S'avg1() $1' -p17476 -tp17477 -a(S'avg15/0' -p17478 -S'avg15() $1' -p17479 -tp17480 -a(S'avg5/0' -p17481 -S'avg5() $1' -p17482 -tp17483 -a(S'code_change/3' -p17484 -S'code_change(${1:Vsn}, ${2:PrevState}, ${3:Param3}) $4' -p17485 -tp17486 -a(S'dummy_reply/1' -p17487 -S'dummy_reply(${1:Param1}) $2' -p17488 -tp17489 -a(S'handle_call/3' -p17490 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p17491 -tp17492 -a(S'handle_cast/2' -p17493 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p17494 -tp17495 -a(S'handle_info/2' -p17496 -S'handle_info(${1:Param1}, ${2:State}) $3' -p17497 -tp17498 -a(S'init/1' -p17499 -S'init(${1:Timeout}) $2' -p17500 -tp17501 -a(S'nprocs/0' -p17502 -S'nprocs() $1' -p17503 -tp17504 -a(S'ping/0' -p17505 -S'ping() $1' -p17506 -tp17507 -a(S'start/0' -p17508 -S'start() $1' -p17509 -tp17510 -a(S'start_link/0' -p17511 -S'start_link() $1' -p17512 -tp17513 -a(S'stop/0' -p17514 -S'stop() $1' -p17515 -tp17516 -a(S'terminate/2' -p17517 -S'terminate(${1:Param1}, ${2:State}) $3' -p17518 -tp17519 -a(S'util/0' -p17520 -S'util() $1' -p17521 -tp17522 -a(S'util/1' -p17523 -S'util(${1:Args}) $2' -p17524 -tp17525 -asS'diameter_tcp' -p17526 -(lp17527 -(S'code_change/3' -p17528 -S'code_change(${1:Param1}, ${2:S}, ${3:Param3}) $4' -p17529 -tp17530 -a(S'handle_call/3' -p17531 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p17532 -tp17533 -a(S'handle_cast/2' -p17534 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p17535 -tp17536 -a(S'handle_info/2' -p17537 -S'handle_info(${1:T}, ${2:S}) $3' -p17538 -tp17539 -a(S'init/1' -p17540 -S'init(${1:T}) $2' -p17541 -tp17542 -a(S'ports/0' -p17543 -S'ports() $1' -p17544 -tp17545 -a(S'ports/1' -p17546 -S'ports(${1:Ref}) $2' -p17547 -tp17548 -a(S'start/3' -p17549 -S'start() $1' -p17550 -tp17551 -a(S'start_link/1' -p17552 -S'start_link(${1:T}) $2' -p17553 -tp17554 -a(S'terminate/2' -p17555 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p17556 -tp17557 -asS'inviso_tool' -p17558 -(lp17559 -(S'atc/3' -p17560 -S'atc(${1:TC}, ${2:Id}, ${3:Vars}) $4' -p17561 -tp17562 -a(S'dtc/2' -p17563 -S'dtc(${1:TC}, ${2:Id}) $3' -p17564 -tp17565 -a(S'flush/0' -p17566 -S'flush() $1' -p17567 -tp17568 -a(S'flush/1' -p17569 -S'flush(${1:Nodes}) $2' -p17570 -tp17571 -a(S'get_activities/0' -p17572 -S'get_activities() $1' -p17573 -tp17574 -a(S'get_autostart_data/1' -p17575 -S'get_autostart_data(${1:Dependency}) $2' -p17576 -tp17577 -a(S'get_autostart_data/2' -p17578 -S'get_autostart_data(${1:Nodes}, ${2:Dependency}) $3' -p17579 -tp17580 -a(S'get_loopdata/0' -p17581 -S'get_loopdata() $1' -p17582 -tp17583 -a(S'get_node_status/0' -p17584 -S'get_node_status() $1' -p17585 -tp17586 -a(S'get_node_status/1' -p17587 -S'get_node_status(${1:Node}) $2' -p17588 -tp17589 -a(S'get_session_data/0' -p17590 -S'get_session_data() $1' -p17591 -tp17592 -a(S'handle_call/3' -p17593 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:LD}) $4' -p17594 -tp17595 -a(S'handle_cast/2' -p17596 -S'handle_cast(${1:Param1}, ${2:LD}) $3' -p17597 -tp17598 -a(S'handle_info/2' -p17599 -S'handle_info(${1:Param1}, ${2:LD}) $3' -p17600 -tp17601 -a(S'init/1' -p17602 -S'init(${1:Config}) $2' -p17603 -tp17604 -a(S'inviso/2' -p17605 -S'inviso(${1:Cmd}, ${2:Args}) $3' -p17606 -tp17607 -a(S'reactivate/0' -p17608 -S'reactivate() $1' -p17609 -tp17610 -a(S'reactivate/1' -p17611 -S'reactivate(${1:Node}) $2' -p17612 -tp17613 -a(S'reactivator_executer/6' -p17614 -S'reactivator_executer(${1:Node}, ${2:TCdict}, ${3:UnsortedLog}, ${4:TPid}, ${5:StartCounter}, ${6:DoneCases}) $7' -p17615 -tp17616 -a(S'reconnect_nodes/0' -p17617 -S'reconnect_nodes() $1' -p17618 -tp17619 -a(S'reconnect_nodes/1' -p17620 -S'reconnect_nodes(${1:Node}) $2' -p17621 -tp17622 -a(S'reinitiate_session/0' -p17623 -S'reinitiate_session() $1' -p17624 -tp17625 -a(S'reinitiate_session/1' -p17626 -S'reinitiate_session(${1:Nodes}) $2' -p17627 -tp17628 -a(S'reset_nodes/0' -p17629 -S'reset_nodes() $1' -p17630 -tp17631 -a(S'reset_nodes/1' -p17632 -S'reset_nodes(${1:Nodes}) $2' -p17633 -tp17634 -a(S'restore_session/0' -p17635 -S'restore_session() $1' -p17636 -tp17637 -a(S'restore_session/1' -p17638 -S'restore_session(${1:FileNameOrMoreTDGargs}) $2' -p17639 -tp17640 -a(S'restore_session/2' -p17641 -S'restore_session(${1:FileName}, ${2:MoreTDGargs}) $3' -p17642 -tp17643 -a(S'save_history/1' -p17644 -S'save_history(${1:FileName}) $2' -p17645 -tp17646 -a(S'start/0' -p17647 -S'start() $1' -p17648 -tp17649 -a(S'start/1' -p17650 -S'start(${1:Config}) $2' -p17651 -tp17652 -a(S'start_session/0' -p17653 -S'start_session() $1' -p17654 -tp17655 -a(S'start_session/1' -p17656 -S'start_session(${1:MoreTDGargs}) $2' -p17657 -tp17658 -a(S'std_options_generator/1' -p17659 -S'std_options_generator(${1:Param1}) $2' -p17660 -tp17661 -a(S'stop/0' -p17662 -S'stop() $1' -p17663 -tp17664 -a(S'stop/1' -p17665 -S'stop(${1:UntouchedNodes}) $2' -p17666 -tp17667 -a(S'stop_session/0' -p17668 -S'stop_session() $1' -p17669 -tp17670 -a(S'sync_atc/3' -p17671 -S'sync_atc(${1:TC}, ${2:Id}, ${3:Vars}) $4' -p17672 -tp17673 -a(S'sync_atc/4' -p17674 -S'sync_atc(${1:TC}, ${2:Id}, ${3:Vars}, ${4:TimeOut}) $5' -p17675 -tp17676 -a(S'sync_dtc/2' -p17677 -S'sync_dtc(${1:TC}, ${2:Id}) $3' -p17678 -tp17679 -a(S'sync_dtc/3' -p17680 -S'sync_dtc(${1:TC}, ${2:Id}, ${3:TimeOut}) $4' -p17681 -tp17682 -a(S'sync_rtc/2' -p17683 -S'sync_rtc(${1:TC}, ${2:Vars}) $3' -p17684 -tp17685 -a(S'sync_rtc/3' -p17686 -S'sync_rtc(${1:TC}, ${2:Vars}, ${3:TimeOut}) $4' -p17687 -tp17688 -a(S'tc_executer/4' -p17689 -S'tc_executer(${1:TcFName}, ${2:Bindings}, ${3:Phase}, ${4:Parent}) $5' -p17690 -tp17691 -a(S'terminate/2' -p17692 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p17693 -tp17694 -asS'wxSizerFlags' -p17695 -(lp17696 -(S'align/2' -p17697 -S'align(${1:This}, ${2:Alignment}) $3' -p17698 -tp17699 -a(S'border/1' -p17700 -S'border(${1:This}) $2' -p17701 -tp17702 -a(S'border/2' -p17703 -S'border(${1:This}, ${2:Param2}) $3' -p17704 -tp17705 -a(S'border/3' -p17706 -S'border(${1:This}, ${2:Direction}, ${3:BorderInPixels}) $4' -p17707 -tp17708 -a(S'center/1' -p17709 -S'center(${1:This}) $2' -p17710 -tp17711 -a(S'centre/1' -p17712 -S'centre(${1:This}) $2' -p17713 -tp17714 -a(S'destroy/1' -p17715 -S'destroy(${1:This}) $2' -p17716 -tp17717 -a(S'expand/1' -p17718 -S'expand(${1:This}) $2' -p17719 -tp17720 -a(S'left/1' -p17721 -S'left(${1:This}) $2' -p17722 -tp17723 -a(S'new/0' -p17724 -S'new() $1' -p17725 -tp17726 -a(S'new/1' -p17727 -S'new(${1:Param1}) $2' -p17728 -tp17729 -a(S'parent_class/1' -p17730 -S'parent_class(${1:Param1}) $2' -p17731 -tp17732 -a(S'proportion/2' -p17733 -S'proportion(${1:This}, ${2:Proportion}) $3' -p17734 -tp17735 -a(S'right/1' -p17736 -S'right(${1:This}) $2' -p17737 -tp17738 -asS'CosPropertyService_PropertyNamesIterator' -p17739 -(lp17740 -(S'code_change/3' -p17741 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p17742 -tp17743 -a(S'destroy/1' -p17744 -S'destroy(${1:OE_THIS}) $2' -p17745 -tp17746 -a(S'destroy/2' -p17747 -S'destroy(${1:OE_THIS}, ${2:OE_Options}) $3' -p17748 -tp17749 -a(S'handle_call/3' -p17750 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p17751 -tp17752 -a(S'handle_cast/2' -p17753 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p17754 -tp17755 -a(S'handle_info/2' -p17756 -S'handle_info(${1:Param1}, ${2:State}) $3' -p17757 -tp17758 -a(S'init/1' -p17759 -S'init(${1:Env}) $2' -p17760 -tp17761 -a(S'next_n/2' -p17762 -S'next_n(${1:OE_THIS}, ${2:How_many}) $3' -p17763 -tp17764 -a(S'next_n/3' -p17765 -S'next_n(${1:OE_THIS}, ${2:OE_Options}, ${3:How_many}) $4' -p17766 -tp17767 -a(S'next_one/1' -p17768 -S'next_one(${1:OE_THIS}) $2' -p17769 -tp17770 -a(S'next_one/2' -p17771 -S'next_one(${1:OE_THIS}, ${2:OE_Options}) $3' -p17772 -tp17773 -a(S'oe_create/0' -p17774 -S'oe_create() $1' -p17775 -tp17776 -a(S'oe_create/1' -p17777 -S'oe_create(${1:Env}) $2' -p17778 -tp17779 -a(S'oe_create/2' -p17780 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p17781 -tp17782 -a(S'oe_create_link/0' -p17783 -S'oe_create_link() $1' -p17784 -tp17785 -a(S'oe_create_link/1' -p17786 -S'oe_create_link(${1:Env}) $2' -p17787 -tp17788 -a(S'oe_create_link/2' -p17789 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p17790 -tp17791 -a(S'oe_get_interface/0' -p17792 -S'oe_get_interface() $1' -p17793 -tp17794 -a(S'oe_is_a/1' -p17795 -S'oe_is_a(${1:Param1}) $2' -p17796 -tp17797 -a(S'oe_tc/1' -p17798 -S'oe_tc(${1:Param1}) $2' -p17799 -tp17800 -a(S'reset/1' -p17801 -S'reset(${1:OE_THIS}) $2' -p17802 -tp17803 -a(S'reset/2' -p17804 -S'reset(${1:OE_THIS}, ${2:OE_Options}) $3' -p17805 -tp17806 -a(S'terminate/2' -p17807 -S'terminate(${1:Reason}, ${2:State}) $3' -p17808 -tp17809 -a(S'typeID/0' -p17810 -S'typeID() $1' -p17811 -tp17812 -asS'wxNcPaintEvent' -p17813 -(lp17814 -(S'getId/1' -p17815 -S'getId(${1:This}) $2' -p17816 -tp17817 -a(S'getSkipped/1' -p17818 -S'getSkipped(${1:This}) $2' -p17819 -tp17820 -a(S'getTimestamp/1' -p17821 -S'getTimestamp(${1:This}) $2' -p17822 -tp17823 -a(S'isCommandEvent/1' -p17824 -S'isCommandEvent(${1:This}) $2' -p17825 -tp17826 -a(S'parent_class/1' -p17827 -S'parent_class(${1:Param1}) $2' -p17828 -tp17829 -a(S'resumePropagation/2' -p17830 -S'resumePropagation(${1:This}, ${2:PropagationLevel}) $3' -p17831 -tp17832 -a(S'shouldPropagate/1' -p17833 -S'shouldPropagate(${1:This}) $2' -p17834 -tp17835 -a(S'skip/1' -p17836 -S'skip(${1:This}) $2' -p17837 -tp17838 -a(S'skip/2' -p17839 -S'skip(${1:This}, ${2:Options}) $3' -p17840 -tp17841 -a(S'stopPropagation/1' -p17842 -S'stopPropagation(${1:This}) $2' -p17843 -tp17844 -asS'megaco_binary_transformer_v1' -p17845 -(lp17846 -(S'tr_message/3' -p17847 -S'tr_message(${1:MegaMsg}, ${2:Mode}, ${3:Config}) $4' -p17848 -tp17849 -a(S'tr_transaction/3' -p17850 -S'tr_transaction(${1:Trans}, ${2:Mode}, ${3:Config}) $4' -p17851 -tp17852 -asS'megaco_binary_transformer_v3' -p17853 -(lp17854 -(S'tr_message/3' -p17855 -S'tr_message(${1:MegaMsg}, ${2:Mode}, ${3:Config}) $4' -p17856 -tp17857 -a(S'tr_transaction/3' -p17858 -S'tr_transaction(${1:Trans}, ${2:Mode}, ${3:Config}) $4' -p17859 -tp17860 -asS'httpc_handler' -p17861 -(lp17862 -(S'cancel/3' -p17863 -S'cancel(${1:RequestId}, ${2:Pid}, ${3:From}) $4' -p17864 -tp17865 -a(S'code_change/3' -p17866 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p17867 -tp17868 -a(S'handle_call/3' -p17869 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p17870 -tp17871 -a(S'handle_cast/2' -p17872 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p17873 -tp17874 -a(S'handle_info/2' -p17875 -S'handle_info(${1:Reason}, ${2:State}) $3' -p17876 -tp17877 -a(S'info/1' -p17878 -S'info(${1:Pid}) $2' -p17879 -tp17880 -a(S'init/1' -p17881 -S'init(${1:Param1}) $2' -p17882 -tp17883 -a(S'send/2' -p17884 -S'send(${1:Request}, ${2:Pid}) $3' -p17885 -tp17886 -a(S'start_link/4' -p17887 -S'start_link(${1:Parent}, ${2:Request}, ${3:Options}, ${4:ProfileName}) $5' -p17888 -tp17889 -a(S'stream/3' -p17890 -S'stream(${1:BodyPart}, ${2:Request}, ${3:Request}) $4' -p17891 -tp17892 -a(S'stream_next/1' -p17893 -S'stream_next(${1:Pid}) $2' -p17894 -tp17895 -a(S'terminate/2' -p17896 -S'terminate(${1:Reason}, ${2:State}) $3' -p17897 -tp17898 -asS'CosEventDomainAdmin_EventDomainFactory' -p17899 -(lp17900 -(S'code_change/3' -p17901 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p17902 -tp17903 -a(S'create_event_domain/3' -p17904 -S'create_event_domain(${1:OE_THIS}, ${2:InitialQoS}, ${3:InitialAdmin}) $4' -p17905 -tp17906 -a(S'create_event_domain/4' -p17907 -S'create_event_domain(${1:OE_THIS}, ${2:OE_Options}, ${3:InitialQoS}, ${4:InitialAdmin}) $5' -p17908 -tp17909 -a(S'get_all_domains/1' -p17910 -S'get_all_domains(${1:OE_THIS}) $2' -p17911 -tp17912 -a(S'get_all_domains/2' -p17913 -S'get_all_domains(${1:OE_THIS}, ${2:OE_Options}) $3' -p17914 -tp17915 -a(S'get_event_domain/2' -p17916 -S'get_event_domain(${1:OE_THIS}, ${2:Id}) $3' -p17917 -tp17918 -a(S'get_event_domain/3' -p17919 -S'get_event_domain(${1:OE_THIS}, ${2:OE_Options}, ${3:Id}) $4' -p17920 -tp17921 -a(S'handle_call/3' -p17922 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p17923 -tp17924 -a(S'handle_cast/2' -p17925 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p17926 -tp17927 -a(S'handle_info/2' -p17928 -S'handle_info(${1:Info}, ${2:State}) $3' -p17929 -tp17930 -a(S'init/1' -p17931 -S'init(${1:Env}) $2' -p17932 -tp17933 -a(S'oe_create/0' -p17934 -S'oe_create() $1' -p17935 -tp17936 -a(S'oe_create/1' -p17937 -S'oe_create(${1:Env}) $2' -p17938 -tp17939 -a(S'oe_create/2' -p17940 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p17941 -tp17942 -a(S'oe_create_link/0' -p17943 -S'oe_create_link() $1' -p17944 -tp17945 -a(S'oe_create_link/1' -p17946 -S'oe_create_link(${1:Env}) $2' -p17947 -tp17948 -a(S'oe_create_link/2' -p17949 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p17950 -tp17951 -a(S'oe_get_interface/0' -p17952 -S'oe_get_interface() $1' -p17953 -tp17954 -a(S'oe_is_a/1' -p17955 -S'oe_is_a(${1:Param1}) $2' -p17956 -tp17957 -a(S'oe_tc/1' -p17958 -S'oe_tc(${1:Param1}) $2' -p17959 -tp17960 -a(S'terminate/2' -p17961 -S'terminate(${1:Reason}, ${2:State}) $3' -p17962 -tp17963 -a(S'typeID/0' -p17964 -S'typeID() $1' -p17965 -tp17966 -asS'xmerl_sgml' -p17967 -(lp17968 -(S"'#element#'/5" -p17969 -S"'#element#'(${1:Tag}, ${2:Data}, ${3:Attrs}, ${4:Param4}, ${5:Param5}) $6" -p17970 -tp17971 -a(S"'#root#'/4" -p17972 -S"'#root#'(${1:Data}, ${2:Attrs}, ${3:Param3}, ${4:Param4}) $5" -p17973 -tp17974 -a(S"'#text#'/1" -p17975 -S"'#text#'(${1:Text}) $2" -p17976 -tp17977 -a(S"'#xml-inheritance#'/0" -p17978 -S"'#xml-inheritance#'() $1" -p17979 -tp17980 -asS'asn1ct_tok' -p17981 -(lp17982 -(S'file/1' -p17983 -S'file(${1:File}) $2' -p17984 -tp17985 -a(S'get_name/2' -p17986 -S'get_name(${1:Param1}, ${2:L}) $3' -p17987 -tp17988 -a(S'tokenise/4' -p17989 -S'tokenise(${1:Stream}, ${2:Param2}, ${3:Lno}, ${4:R}) $5' -p17990 -tp17991 -asS'mnesia_sp' -p17992 -(lp17993 -(S'init_proc/4' -p17994 -S'init_proc(${1:Who}, ${2:Mod}, ${3:Fun}, ${4:Args}) $5' -p17995 -tp17996 -asS'tv_db_search' -p17997 -(lp17998 -(S'create_window/1' -p17999 -S'create_window(${1:Param1}) $2' -p18000 -tp18001 -a(S'destroy_window/1' -p18002 -S'destroy_window(${1:Param1}) $2' -p18003 -tp18004 -a(S'get_input_and_search/3' -p18005 -S'get_input_and_search(${1:DbList}, ${2:IsRegExp}, ${3:ListAsStr}) $4' -p18006 -tp18007 -a(S'mark_busy/1' -p18008 -S'mark_busy(${1:Param1}) $2' -p18009 -tp18010 -a(S'mark_nonbusy/1' -p18011 -S'mark_nonbusy(${1:Param1}) $2' -p18012 -tp18013 -a(S'reset_window/1' -p18014 -S'reset_window(${1:Param1}) $2' -p18015 -tp18016 -a(S'resize_window/1' -p18017 -S'resize_window(${1:Param1}) $2' -p18018 -tp18019 -a(S'string_to_term/1' -p18020 -S'string_to_term(${1:Str}) $2' -p18021 -tp18022 -a(S'update_search/4' -p18023 -S'update_search(${1:Param1}, ${2:DbList}, ${3:Param3}, ${4:ListAsStr}) $5' -p18024 -tp18025 -asS'wxAuiPaneInfo' -p18026 -(lp18027 -(S'bestSize/2' -p18028 -S'bestSize(${1:This}, ${2:Size}) $3' -p18029 -tp18030 -a(S'bestSize/3' -p18031 -S'bestSize(${1:This}, ${2:X}, ${3:Y}) $4' -p18032 -tp18033 -a(S'bottom/1' -p18034 -S'bottom(${1:This}) $2' -p18035 -tp18036 -a(S'bottomDockable/1' -p18037 -S'bottomDockable(${1:This}) $2' -p18038 -tp18039 -a(S'bottomDockable/2' -p18040 -S'bottomDockable(${1:This}, ${2:Param2}) $3' -p18041 -tp18042 -a(S'caption/2' -p18043 -S'caption(${1:This}, ${2:C}) $3' -p18044 -tp18045 -a(S'captionVisible/1' -p18046 -S'captionVisible(${1:This}) $2' -p18047 -tp18048 -a(S'captionVisible/2' -p18049 -S'captionVisible(${1:This}, ${2:Param2}) $3' -p18050 -tp18051 -a(S'centre/1' -p18052 -S'centre(${1:This}) $2' -p18053 -tp18054 -a(S'centrePane/1' -p18055 -S'centrePane(${1:This}) $2' -p18056 -tp18057 -a(S'closeButton/1' -p18058 -S'closeButton(${1:This}) $2' -p18059 -tp18060 -a(S'closeButton/2' -p18061 -S'closeButton(${1:This}, ${2:Param2}) $3' -p18062 -tp18063 -a(S'defaultPane/1' -p18064 -S'defaultPane(${1:This}) $2' -p18065 -tp18066 -a(S'destroy/1' -p18067 -S'destroy(${1:This}) $2' -p18068 -tp18069 -a(S'destroyOnClose/1' -p18070 -S'destroyOnClose(${1:This}) $2' -p18071 -tp18072 -a(S'destroyOnClose/2' -p18073 -S'destroyOnClose(${1:This}, ${2:Param2}) $3' -p18074 -tp18075 -a(S'direction/2' -p18076 -S'direction(${1:This}, ${2:Direction}) $3' -p18077 -tp18078 -a(S'dock/1' -p18079 -S'dock(${1:This}) $2' -p18080 -tp18081 -a(S'dockable/1' -p18082 -S'dockable(${1:This}) $2' -p18083 -tp18084 -a(S'dockable/2' -p18085 -S'dockable(${1:This}, ${2:Param2}) $3' -p18086 -tp18087 -a(S'fixed/1' -p18088 -S'fixed(${1:This}) $2' -p18089 -tp18090 -a(S'float/1' -p18091 -S'float(${1:This}) $2' -p18092 -tp18093 -a(S'floatable/1' -p18094 -S'floatable(${1:This}) $2' -p18095 -tp18096 -a(S'floatable/2' -p18097 -S'floatable(${1:This}, ${2:Param2}) $3' -p18098 -tp18099 -a(S'floatingPosition/2' -p18100 -S'floatingPosition(${1:This}, ${2:Pos}) $3' -p18101 -tp18102 -a(S'floatingPosition/3' -p18103 -S'floatingPosition(${1:This}, ${2:X}, ${3:Y}) $4' -p18104 -tp18105 -a(S'floatingSize/2' -p18106 -S'floatingSize(${1:This}, ${2:Size}) $3' -p18107 -tp18108 -a(S'floatingSize/3' -p18109 -S'floatingSize(${1:This}, ${2:X}, ${3:Y}) $4' -p18110 -tp18111 -a(S'gripper/1' -p18112 -S'gripper(${1:This}) $2' -p18113 -tp18114 -a(S'gripper/2' -p18115 -S'gripper(${1:This}, ${2:Param2}) $3' -p18116 -tp18117 -a(S'gripperTop/1' -p18118 -S'gripperTop(${1:This}) $2' -p18119 -tp18120 -a(S'gripperTop/2' -p18121 -S'gripperTop(${1:This}, ${2:Param2}) $3' -p18122 -tp18123 -a(S'hasBorder/1' -p18124 -S'hasBorder(${1:This}) $2' -p18125 -tp18126 -a(S'hasCaption/1' -p18127 -S'hasCaption(${1:This}) $2' -p18128 -tp18129 -a(S'hasCloseButton/1' -p18130 -S'hasCloseButton(${1:This}) $2' -p18131 -tp18132 -a(S'hasFlag/2' -p18133 -S'hasFlag(${1:This}, ${2:Flag}) $3' -p18134 -tp18135 -a(S'hasGripper/1' -p18136 -S'hasGripper(${1:This}) $2' -p18137 -tp18138 -a(S'hasGripperTop/1' -p18139 -S'hasGripperTop(${1:This}) $2' -p18140 -tp18141 -a(S'hasMaximizeButton/1' -p18142 -S'hasMaximizeButton(${1:This}) $2' -p18143 -tp18144 -a(S'hasMinimizeButton/1' -p18145 -S'hasMinimizeButton(${1:This}) $2' -p18146 -tp18147 -a(S'hasPinButton/1' -p18148 -S'hasPinButton(${1:This}) $2' -p18149 -tp18150 -a(S'hide/1' -p18151 -S'hide(${1:This}) $2' -p18152 -tp18153 -a(S'isBottomDockable/1' -p18154 -S'isBottomDockable(${1:This}) $2' -p18155 -tp18156 -a(S'isDocked/1' -p18157 -S'isDocked(${1:This}) $2' -p18158 -tp18159 -a(S'isFixed/1' -p18160 -S'isFixed(${1:This}) $2' -p18161 -tp18162 -a(S'isFloatable/1' -p18163 -S'isFloatable(${1:This}) $2' -p18164 -tp18165 -a(S'isFloating/1' -p18166 -S'isFloating(${1:This}) $2' -p18167 -tp18168 -a(S'isLeftDockable/1' -p18169 -S'isLeftDockable(${1:This}) $2' -p18170 -tp18171 -a(S'isMovable/1' -p18172 -S'isMovable(${1:This}) $2' -p18173 -tp18174 -a(S'isOk/1' -p18175 -S'isOk(${1:This}) $2' -p18176 -tp18177 -a(S'isResizable/1' -p18178 -S'isResizable(${1:This}) $2' -p18179 -tp18180 -a(S'isRightDockable/1' -p18181 -S'isRightDockable(${1:This}) $2' -p18182 -tp18183 -a(S'isShown/1' -p18184 -S'isShown(${1:This}) $2' -p18185 -tp18186 -a(S'isToolbar/1' -p18187 -S'isToolbar(${1:This}) $2' -p18188 -tp18189 -a(S'isTopDockable/1' -p18190 -S'isTopDockable(${1:This}) $2' -p18191 -tp18192 -a(S'layer/2' -p18193 -S'layer(${1:This}, ${2:Layer}) $3' -p18194 -tp18195 -a(S'left/1' -p18196 -S'left(${1:This}) $2' -p18197 -tp18198 -a(S'leftDockable/1' -p18199 -S'leftDockable(${1:This}) $2' -p18200 -tp18201 -a(S'leftDockable/2' -p18202 -S'leftDockable(${1:This}, ${2:Param2}) $3' -p18203 -tp18204 -a(S'maxSize/2' -p18205 -S'maxSize(${1:This}, ${2:Size}) $3' -p18206 -tp18207 -a(S'maxSize/3' -p18208 -S'maxSize(${1:This}, ${2:X}, ${3:Y}) $4' -p18209 -tp18210 -a(S'maximizeButton/1' -p18211 -S'maximizeButton(${1:This}) $2' -p18212 -tp18213 -a(S'maximizeButton/2' -p18214 -S'maximizeButton(${1:This}, ${2:Param2}) $3' -p18215 -tp18216 -a(S'minSize/2' -p18217 -S'minSize(${1:This}, ${2:Size}) $3' -p18218 -tp18219 -a(S'minSize/3' -p18220 -S'minSize(${1:This}, ${2:X}, ${3:Y}) $4' -p18221 -tp18222 -a(S'minimizeButton/1' -p18223 -S'minimizeButton(${1:This}) $2' -p18224 -tp18225 -a(S'minimizeButton/2' -p18226 -S'minimizeButton(${1:This}, ${2:Param2}) $3' -p18227 -tp18228 -a(S'movable/1' -p18229 -S'movable(${1:This}) $2' -p18230 -tp18231 -a(S'movable/2' -p18232 -S'movable(${1:This}, ${2:Param2}) $3' -p18233 -tp18234 -a(S'name/2' -p18235 -S'name(${1:This}, ${2:N}) $3' -p18236 -tp18237 -a(S'new/0' -p18238 -S'new() $1' -p18239 -tp18240 -a(S'new/1' -p18241 -S'new(${1:C}) $2' -p18242 -tp18243 -a(S'paneBorder/1' -p18244 -S'paneBorder(${1:This}) $2' -p18245 -tp18246 -a(S'paneBorder/2' -p18247 -S'paneBorder(${1:This}, ${2:Param2}) $3' -p18248 -tp18249 -a(S'parent_class/1' -p18250 -S'parent_class(${1:Param1}) $2' -p18251 -tp18252 -a(S'pinButton/1' -p18253 -S'pinButton(${1:This}) $2' -p18254 -tp18255 -a(S'pinButton/2' -p18256 -S'pinButton(${1:This}, ${2:Param2}) $3' -p18257 -tp18258 -a(S'position/2' -p18259 -S'position(${1:This}, ${2:Pos}) $3' -p18260 -tp18261 -a(S'resizable/1' -p18262 -S'resizable(${1:This}) $2' -p18263 -tp18264 -a(S'resizable/2' -p18265 -S'resizable(${1:This}, ${2:Param2}) $3' -p18266 -tp18267 -a(S'right/1' -p18268 -S'right(${1:This}) $2' -p18269 -tp18270 -a(S'rightDockable/1' -p18271 -S'rightDockable(${1:This}) $2' -p18272 -tp18273 -a(S'rightDockable/2' -p18274 -S'rightDockable(${1:This}, ${2:Param2}) $3' -p18275 -tp18276 -a(S'row/2' -p18277 -S'row(${1:This}, ${2:Row}) $3' -p18278 -tp18279 -a(S'safeSet/2' -p18280 -S'safeSet(${1:This}, ${2:Source}) $3' -p18281 -tp18282 -a(S'setFlag/3' -p18283 -S'setFlag(${1:This}, ${2:Flag}, ${3:Option_state}) $4' -p18284 -tp18285 -a(S'show/1' -p18286 -S'show(${1:This}) $2' -p18287 -tp18288 -a(S'show/2' -p18289 -S'show(${1:This}, ${2:Param2}) $3' -p18290 -tp18291 -a(S'toolbarPane/1' -p18292 -S'toolbarPane(${1:This}) $2' -p18293 -tp18294 -a(S'top/1' -p18295 -S'top(${1:This}) $2' -p18296 -tp18297 -a(S'topDockable/1' -p18298 -S'topDockable(${1:This}) $2' -p18299 -tp18300 -a(S'topDockable/2' -p18301 -S'topDockable(${1:This}, ${2:Param2}) $3' -p18302 -tp18303 -a(S'window/2' -p18304 -S'window(${1:This}, ${2:W}) $3' -p18305 -tp18306 -asS'asn1_db' -p18307 -(lp18308 -(S'dbclear/0' -p18309 -S'dbclear() $1' -p18310 -tp18311 -a(S'dberase_module/1' -p18312 -S'dberase_module(${1:Param1}) $2' -p18313 -tp18314 -a(S'dbget/2' -p18315 -S'dbget(${1:Module}, ${2:K}) $3' -p18316 -tp18317 -a(S'dbget_all/1' -p18318 -S'dbget_all(${1:K}) $2' -p18319 -tp18320 -a(S'dbget_all_mod/1' -p18321 -S'dbget_all_mod(${1:Mod}) $2' -p18322 -tp18323 -a(S'dbload/1' -p18324 -S'dbload(${1:Module}) $2' -p18325 -tp18326 -a(S'dbnew/1' -p18327 -S'dbnew(${1:Module}) $2' -p18328 -tp18329 -a(S'dbput/3' -p18330 -S'dbput(${1:Module}, ${2:K}, ${3:V}) $4' -p18331 -tp18332 -a(S'dbsave/2' -p18333 -S'dbsave(${1:OutFile}, ${2:Module}) $3' -p18334 -tp18335 -a(S'dbstart/1' -p18336 -S'dbstart(${1:Includes}) $2' -p18337 -tp18338 -a(S'dbstop/0' -p18339 -S'dbstop() $1' -p18340 -tp18341 -asS'wxSpinEvent' -p18342 -(lp18343 -(S'allow/1' -p18344 -S'allow(${1:This}) $2' -p18345 -tp18346 -a(S'getClientData/1' -p18347 -S'getClientData(${1:This}) $2' -p18348 -tp18349 -a(S'getExtraLong/1' -p18350 -S'getExtraLong(${1:This}) $2' -p18351 -tp18352 -a(S'getId/1' -p18353 -S'getId(${1:This}) $2' -p18354 -tp18355 -a(S'getInt/1' -p18356 -S'getInt(${1:This}) $2' -p18357 -tp18358 -a(S'getPosition/1' -p18359 -S'getPosition(${1:This}) $2' -p18360 -tp18361 -a(S'getSelection/1' -p18362 -S'getSelection(${1:This}) $2' -p18363 -tp18364 -a(S'getSkipped/1' -p18365 -S'getSkipped(${1:This}) $2' -p18366 -tp18367 -a(S'getString/1' -p18368 -S'getString(${1:This}) $2' -p18369 -tp18370 -a(S'getTimestamp/1' -p18371 -S'getTimestamp(${1:This}) $2' -p18372 -tp18373 -a(S'isAllowed/1' -p18374 -S'isAllowed(${1:This}) $2' -p18375 -tp18376 -a(S'isChecked/1' -p18377 -S'isChecked(${1:This}) $2' -p18378 -tp18379 -a(S'isCommandEvent/1' -p18380 -S'isCommandEvent(${1:This}) $2' -p18381 -tp18382 -a(S'isSelection/1' -p18383 -S'isSelection(${1:This}) $2' -p18384 -tp18385 -a(S'parent_class/1' -p18386 -S'parent_class(${1:Param1}) $2' -p18387 -tp18388 -a(S'resumePropagation/2' -p18389 -S'resumePropagation(${1:This}, ${2:PropagationLevel}) $3' -p18390 -tp18391 -a(S'setInt/2' -p18392 -S'setInt(${1:This}, ${2:I}) $3' -p18393 -tp18394 -a(S'setPosition/2' -p18395 -S'setPosition(${1:This}, ${2:Pos}) $3' -p18396 -tp18397 -a(S'setString/2' -p18398 -S'setString(${1:This}, ${2:S}) $3' -p18399 -tp18400 -a(S'shouldPropagate/1' -p18401 -S'shouldPropagate(${1:This}) $2' -p18402 -tp18403 -a(S'skip/1' -p18404 -S'skip(${1:This}) $2' -p18405 -tp18406 -a(S'skip/2' -p18407 -S'skip(${1:This}, ${2:Options}) $3' -p18408 -tp18409 -a(S'stopPropagation/1' -p18410 -S'stopPropagation(${1:This}) $2' -p18411 -tp18412 -a(S'veto/1' -p18413 -S'veto(${1:This}) $2' -p18414 -tp18415 -asS'wxAcceleratorTable' -p18416 -(lp18417 -(S'destroy/1' -p18418 -S'destroy(${1:This}) $2' -p18419 -tp18420 -a(S'new/0' -p18421 -S'new() $1' -p18422 -tp18423 -a(S'new/2' -p18424 -S'new(${1:N}, ${2:Entries}) $3' -p18425 -tp18426 -a(S'ok/1' -p18427 -S'ok(${1:This}) $2' -p18428 -tp18429 -a(S'parent_class/1' -p18430 -S'parent_class(${1:Param1}) $2' -p18431 -tp18432 -asS'CosPropertyService_MultipleExceptions' -p18433 -(lp18434 -(S'id/0' -p18435 -S'id() $1' -p18436 -tp18437 -a(S'name/0' -p18438 -S'name() $1' -p18439 -tp18440 -a(S'tc/0' -p18441 -S'tc() $1' -p18442 -tp18443 -asS'reltool_sys_win' -p18444 -(lp18445 -(S'get_server/1' -p18446 -S'get_server(${1:Pid}) $2' -p18447 -tp18448 -a(S'init/1' -p18449 -S'init(${1:Options}) $2' -p18450 -tp18451 -a(S'loop/1' -p18452 -S'loop(${1:S}) $2' -p18453 -tp18454 -a(S'open_app/2' -p18455 -S'open_app(${1:Pid}, ${2:AppName}) $3' -p18456 -tp18457 -a(S'set_app/2' -p18458 -S'set_app(${1:Pid}, ${2:App}) $3' -p18459 -tp18460 -a(S'start_link/1' -p18461 -S'start_link(${1:Opts}) $2' -p18462 -tp18463 -a(S'system_code_change/4' -p18464 -S'system_code_change(${1:S}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p18465 -tp18466 -a(S'system_continue/3' -p18467 -S'system_continue(${1:Param1}, ${2:Param2}, ${3:S}) $4' -p18468 -tp18469 -a(S'system_terminate/4' -p18470 -S'system_terminate(${1:Reason}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p18471 -tp18472 -asS'random' -p18473 -(lp18474 -(S'seed/0' -p18475 -S'seed() $1' -p18476 -tp18477 -a(S'seed/1' -p18478 -S'seed(${1:Param1}) $2' -p18479 -tp18480 -a(S'seed/3' -p18481 -S'seed(${1:A1}, ${2:A2}, ${3:A3}) $4' -p18482 -tp18483 -a(S'seed0/0' -p18484 -S'seed0() $1' -p18485 -tp18486 -a(S'uniform/0' -p18487 -S'uniform() $1' -p18488 -tp18489 -a(S'uniform/1' -p18490 -S'uniform(${1:N}) $2' -p18491 -tp18492 -a(S'uniform_s/1' -p18493 -S'uniform_s(${1:State0}) $2' -p18494 -tp18495 -a(S'uniform_s/2' -p18496 -S'uniform_s(${1:N}, ${2:State0}) $3' -p18497 -tp18498 -asS'httpd_util' -p18499 -(lp18500 -(S'convert_netscapecookie_date/1' -p18501 -S'convert_netscapecookie_date(${1:Date}) $2' -p18502 -tp18503 -a(S'convert_request_date/1' -p18504 -S'convert_request_date(${1:Param1}) $2' -p18505 -tp18506 -a(S'create_etag/1' -p18507 -S'create_etag(${1:FileInfo}) $2' -p18508 -tp18509 -a(S'create_etag/2' -p18510 -S'create_etag(${1:FileInfo}, ${2:Size}) $3' -p18511 -tp18512 -a(S'custom_date/0' -p18513 -S'custom_date() $1' -p18514 -tp18515 -a(S'day/1' -p18516 -S'day(${1:Param1}) $2' -p18517 -tp18518 -a(S'decode_hex/1' -p18519 -S'decode_hex(${1:URI}) $2' -p18520 -tp18521 -a(S'dir_validate/2' -p18522 -S'dir_validate(${1:ConfDir}, ${2:Dir}) $3' -p18523 -tp18524 -a(S'enable_debug/1' -p18525 -S'enable_debug(${1:Debug}) $2' -p18526 -tp18527 -a(S'encode_hex/1' -p18528 -S'encode_hex(${1:URI}) $2' -p18529 -tp18530 -a(S'file_validate/2' -p18531 -S'file_validate(${1:ConfFile}, ${2:File}) $3' -p18532 -tp18533 -a(S'flatlength/1' -p18534 -S'flatlength(${1:List}) $2' -p18535 -tp18536 -a(S'hexlist_to_integer/1' -p18537 -S'hexlist_to_integer(${1:List}) $2' -p18538 -tp18539 -a(S'integer_to_hexlist/1' -p18540 -S'integer_to_hexlist(${1:Num}) $2' -p18541 -tp18542 -a(S'ip_address/2' -p18543 -S'ip_address(${1:Address}, ${2:Param2}) $3' -p18544 -tp18545 -a(S'lookup/2' -p18546 -S'lookup(${1:Table}, ${2:Key}) $3' -p18547 -tp18548 -a(S'lookup/3' -p18549 -S'lookup(${1:Table}, ${2:Key}, ${3:Undefined}) $4' -p18550 -tp18551 -a(S'lookup_mime/2' -p18552 -S'lookup_mime(${1:ConfigDB}, ${2:Suffix}) $3' -p18553 -tp18554 -a(S'lookup_mime/3' -p18555 -S'lookup_mime(${1:ConfigDB}, ${2:Suffix}, ${3:Undefined}) $4' -p18556 -tp18557 -a(S'lookup_mime_default/2' -p18558 -S'lookup_mime_default(${1:ConfigDB}, ${2:Suffix}) $3' -p18559 -tp18560 -a(S'lookup_mime_default/3' -p18561 -S'lookup_mime_default(${1:ConfigDB}, ${2:Suffix}, ${3:Undefined}) $4' -p18562 -tp18563 -a(S'make_name/2' -p18564 -S'make_name(${1:Prefix}, ${2:Port}) $3' -p18565 -tp18566 -a(S'make_name/3' -p18567 -S'make_name(${1:Prefix}, ${2:Addr}, ${3:Port}) $4' -p18568 -tp18569 -a(S'make_name/4' -p18570 -S'make_name(${1:Prefix}, ${2:Addr}, ${3:Port}, ${4:Postfix}) $5' -p18571 -tp18572 -a(S'message/3' -p18573 -S'message(${1:Param1}, ${2:URL}, ${3:ConfigDB}) $4' -p18574 -tp18575 -a(S'mime_type_validate/1' -p18576 -S'mime_type_validate(${1:Value}) $2' -p18577 -tp18578 -a(S'mime_types_validate/1' -p18579 -S'mime_types_validate(${1:MimeFile}) $2' -p18580 -tp18581 -a(S'module_validate/1' -p18582 -S'module_validate(${1:Module}) $2' -p18583 -tp18584 -a(S'modules_validate/1' -p18585 -S'modules_validate(${1:Param1}) $2' -p18586 -tp18587 -a(S'month/1' -p18588 -S'month(${1:Param1}) $2' -p18589 -tp18590 -a(S'multi_lookup/2' -p18591 -S'multi_lookup(${1:Table}, ${2:Key}) $3' -p18592 -tp18593 -a(S'reason_phrase/1' -p18594 -S'reason_phrase(${1:Param1}) $2' -p18595 -tp18596 -a(S'rfc1123_date/0' -p18597 -S'rfc1123_date() $1' -p18598 -tp18599 -a(S'rfc1123_date/1' -p18600 -S'rfc1123_date(${1:LocalTime}) $2' -p18601 -tp18602 -a(S'split/3' -p18603 -S'split(${1:String}, ${2:RegExp}, ${3:Limit}) $4' -p18604 -tp18605 -a(S'split_path/1' -p18606 -S'split_path(${1:Path}) $2' -p18607 -tp18608 -a(S'split_script_path/1' -p18609 -S'split_script_path(${1:Path}) $2' -p18610 -tp18611 -a(S'strip/1' -p18612 -S'strip(${1:Value}) $2' -p18613 -tp18614 -a(S'suffix/1' -p18615 -S'suffix(${1:Path}) $2' -p18616 -tp18617 -a(S'uniq/1' -p18618 -S'uniq(${1:Param1}) $2' -p18619 -tp18620 -a(S'valid_options/3' -p18621 -S'valid_options(${1:Debug}, ${2:AcceptTimeout}, ${3:Config}) $4' -p18622 -tp18623 -asS'CosFileTransfer_RequestFailureException' -p18624 -(lp18625 -(S'id/0' -p18626 -S'id() $1' -p18627 -tp18628 -a(S'name/0' -p18629 -S'name() $1' -p18630 -tp18631 -a(S'tc/0' -p18632 -S'tc() $1' -p18633 -tp18634 -asS'diameter_codegen' -p18635 -(lp18636 -(S'file/1' -p18637 -S'file(${1:F}) $2' -p18638 -tp18639 -a(S'file/2' -p18640 -S'file(${1:F}, ${2:Mode}) $3' -p18641 -tp18642 -a(S'file/3' -p18643 -S'file(${1:F}, ${2:Outdir}, ${3:Mode}) $4' -p18644 -tp18645 -a(S'from_dict/4' -p18646 -S'from_dict(${1:File}, ${2:Spec}, ${3:Opts}, ${4:Mode}) $5' -p18647 -tp18648 -asS'CosFileTransfer_VirtualFileSystem_ContentList' -p18649 -(lp18650 -(S'id/0' -p18651 -S'id() $1' -p18652 -tp18653 -a(S'name/0' -p18654 -S'name() $1' -p18655 -tp18656 -a(S'tc/0' -p18657 -S'tc() $1' -p18658 -tp18659 -asS'supervisor_bridge' -p18660 -(lp18661 -(S'code_change/3' -p18662 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p18663 -tp18664 -a(S'handle_call/3' -p18665 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p18666 -tp18667 -a(S'handle_cast/2' -p18668 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p18669 -tp18670 -a(S'handle_info/2' -p18671 -S'handle_info(${1:Param1}, ${2:State}) $3' -p18672 -tp18673 -a(S'init/1' -p18674 -S'init(${1:Param1}) $2' -p18675 -tp18676 -a(S'start_link/2' -p18677 -S'start_link(${1:Module}, ${2:Args}) $3' -p18678 -tp18679 -a(S'start_link/3' -p18680 -S'start_link(${1:SupBridgeName}, ${2:Module}, ${3:Args}) $4' -p18681 -tp18682 -a(S'terminate/2' -p18683 -S'terminate(${1:Reason}, ${2:State}) $3' -p18684 -tp18685 -asS'pman_tool' -p18686 -(lp18687 -(S'select/3' -p18688 -S'select(${1:Win}, ${2:Title}, ${3:Choices}) $4' -p18689 -tp18690 -asS'wxFontData' -p18691 -(lp18692 -(S'destroy/1' -p18693 -S'destroy(${1:This}) $2' -p18694 -tp18695 -a(S'enableEffects/2' -p18696 -S'enableEffects(${1:This}, ${2:Flag}) $3' -p18697 -tp18698 -a(S'getAllowSymbols/1' -p18699 -S'getAllowSymbols(${1:This}) $2' -p18700 -tp18701 -a(S'getChosenFont/1' -p18702 -S'getChosenFont(${1:This}) $2' -p18703 -tp18704 -a(S'getColour/1' -p18705 -S'getColour(${1:This}) $2' -p18706 -tp18707 -a(S'getEnableEffects/1' -p18708 -S'getEnableEffects(${1:This}) $2' -p18709 -tp18710 -a(S'getInitialFont/1' -p18711 -S'getInitialFont(${1:This}) $2' -p18712 -tp18713 -a(S'getShowHelp/1' -p18714 -S'getShowHelp(${1:This}) $2' -p18715 -tp18716 -a(S'new/0' -p18717 -S'new() $1' -p18718 -tp18719 -a(S'new/1' -p18720 -S'new(${1:Data}) $2' -p18721 -tp18722 -a(S'parent_class/1' -p18723 -S'parent_class(${1:Param1}) $2' -p18724 -tp18725 -a(S'setAllowSymbols/2' -p18726 -S'setAllowSymbols(${1:This}, ${2:Flag}) $3' -p18727 -tp18728 -a(S'setChosenFont/2' -p18729 -S'setChosenFont(${1:This}, ${2:Font}) $3' -p18730 -tp18731 -a(S'setColour/2' -p18732 -S'setColour(${1:This}, ${2:Colour}) $3' -p18733 -tp18734 -a(S'setInitialFont/2' -p18735 -S'setInitialFont(${1:This}, ${2:Font}) $3' -p18736 -tp18737 -a(S'setRange/3' -p18738 -S'setRange(${1:This}, ${2:MinRange}, ${3:MaxRange}) $4' -p18739 -tp18740 -a(S'setShowHelp/2' -p18741 -S'setShowHelp(${1:This}, ${2:Flag}) $3' -p18742 -tp18743 -asS'oe_CosTime' -p18744 -(lp18745 -(S'oe_dependency/0' -p18746 -S'oe_dependency() $1' -p18747 -tp18748 -a(S'oe_get_module/5' -p18749 -S'oe_get_module(${1:OE_IFR}, ${2:OE_Parent}, ${3:ID}, ${4:Name}, ${5:Version}) $6' -p18750 -tp18751 -a(S'oe_register/0' -p18752 -S'oe_register() $1' -p18753 -tp18754 -a(S'oe_unregister/0' -p18755 -S'oe_unregister() $1' -p18756 -tp18757 -asS'otp_ring0' -p18758 -(lp18759 -(S'start/2' -p18760 -S'start(${1:Param1}, ${2:Argv}) $3' -p18761 -tp18762 -asS'wxGauge' -p18763 -(lp18764 -(S'cacheBestSize/2' -p18765 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p18766 -tp18767 -a(S'captureMouse/1' -p18768 -S'captureMouse(${1:This}) $2' -p18769 -tp18770 -a(S'center/1' -p18771 -S'center(${1:This}) $2' -p18772 -tp18773 -a(S'center/2' -p18774 -S'center(${1:This}, ${2:Options}) $3' -p18775 -tp18776 -a(S'centerOnParent/1' -p18777 -S'centerOnParent(${1:This}) $2' -p18778 -tp18779 -a(S'centerOnParent/2' -p18780 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p18781 -tp18782 -a(S'centre/1' -p18783 -S'centre(${1:This}) $2' -p18784 -tp18785 -a(S'centre/2' -p18786 -S'centre(${1:This}, ${2:Options}) $3' -p18787 -tp18788 -a(S'centreOnParent/1' -p18789 -S'centreOnParent(${1:This}) $2' -p18790 -tp18791 -a(S'centreOnParent/2' -p18792 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p18793 -tp18794 -a(S'clearBackground/1' -p18795 -S'clearBackground(${1:This}) $2' -p18796 -tp18797 -a(S'clientToScreen/2' -p18798 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p18799 -tp18800 -a(S'clientToScreen/3' -p18801 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p18802 -tp18803 -a(S'close/1' -p18804 -S'close(${1:This}) $2' -p18805 -tp18806 -a(S'close/2' -p18807 -S'close(${1:This}, ${2:Options}) $3' -p18808 -tp18809 -a(S'connect/2' -p18810 -S'connect(${1:This}, ${2:EventType}) $3' -p18811 -tp18812 -a(S'connect/3' -p18813 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p18814 -tp18815 -a(S'convertDialogToPixels/2' -p18816 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p18817 -tp18818 -a(S'convertPixelsToDialog/2' -p18819 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p18820 -tp18821 -a(S'create/4' -p18822 -S'create(${1:This}, ${2:Parent}, ${3:Id}, ${4:Range}) $5' -p18823 -tp18824 -a(S'create/5' -p18825 -S'create(${1:This}, ${2:Parent}, ${3:Id}, ${4:Range}, ${5:Param5}) $6' -p18826 -tp18827 -a(S'destroy/1' -p18828 -S'destroy(${1:This}) $2' -p18829 -tp18830 -a(S'destroyChildren/1' -p18831 -S'destroyChildren(${1:This}) $2' -p18832 -tp18833 -a(S'disable/1' -p18834 -S'disable(${1:This}) $2' -p18835 -tp18836 -a(S'disconnect/1' -p18837 -S'disconnect(${1:This}) $2' -p18838 -tp18839 -a(S'disconnect/2' -p18840 -S'disconnect(${1:This}, ${2:EventType}) $3' -p18841 -tp18842 -a(S'disconnect/3' -p18843 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p18844 -tp18845 -a(S'enable/1' -p18846 -S'enable(${1:This}) $2' -p18847 -tp18848 -a(S'enable/2' -p18849 -S'enable(${1:This}, ${2:Options}) $3' -p18850 -tp18851 -a(S'findWindow/2' -p18852 -S'findWindow(${1:This}, ${2:Winid}) $3' -p18853 -tp18854 -a(S'fit/1' -p18855 -S'fit(${1:This}) $2' -p18856 -tp18857 -a(S'fitInside/1' -p18858 -S'fitInside(${1:This}) $2' -p18859 -tp18860 -a(S'freeze/1' -p18861 -S'freeze(${1:This}) $2' -p18862 -tp18863 -a(S'getAcceleratorTable/1' -p18864 -S'getAcceleratorTable(${1:This}) $2' -p18865 -tp18866 -a(S'getBackgroundColour/1' -p18867 -S'getBackgroundColour(${1:This}) $2' -p18868 -tp18869 -a(S'getBackgroundStyle/1' -p18870 -S'getBackgroundStyle(${1:This}) $2' -p18871 -tp18872 -a(S'getBestSize/1' -p18873 -S'getBestSize(${1:This}) $2' -p18874 -tp18875 -a(S'getBezelFace/1' -p18876 -S'getBezelFace(${1:This}) $2' -p18877 -tp18878 -a(S'getCaret/1' -p18879 -S'getCaret(${1:This}) $2' -p18880 -tp18881 -a(S'getCharHeight/1' -p18882 -S'getCharHeight(${1:This}) $2' -p18883 -tp18884 -a(S'getCharWidth/1' -p18885 -S'getCharWidth(${1:This}) $2' -p18886 -tp18887 -a(S'getChildren/1' -p18888 -S'getChildren(${1:This}) $2' -p18889 -tp18890 -a(S'getClientSize/1' -p18891 -S'getClientSize(${1:This}) $2' -p18892 -tp18893 -a(S'getContainingSizer/1' -p18894 -S'getContainingSizer(${1:This}) $2' -p18895 -tp18896 -a(S'getCursor/1' -p18897 -S'getCursor(${1:This}) $2' -p18898 -tp18899 -a(S'getDropTarget/1' -p18900 -S'getDropTarget(${1:This}) $2' -p18901 -tp18902 -a(S'getEventHandler/1' -p18903 -S'getEventHandler(${1:This}) $2' -p18904 -tp18905 -a(S'getExtraStyle/1' -p18906 -S'getExtraStyle(${1:This}) $2' -p18907 -tp18908 -a(S'getFont/1' -p18909 -S'getFont(${1:This}) $2' -p18910 -tp18911 -a(S'getForegroundColour/1' -p18912 -S'getForegroundColour(${1:This}) $2' -p18913 -tp18914 -a(S'getGrandParent/1' -p18915 -S'getGrandParent(${1:This}) $2' -p18916 -tp18917 -a(S'getHandle/1' -p18918 -S'getHandle(${1:This}) $2' -p18919 -tp18920 -a(S'getHelpText/1' -p18921 -S'getHelpText(${1:This}) $2' -p18922 -tp18923 -a(S'getId/1' -p18924 -S'getId(${1:This}) $2' -p18925 -tp18926 -a(S'getLabel/1' -p18927 -S'getLabel(${1:This}) $2' -p18928 -tp18929 -a(S'getMaxSize/1' -p18930 -S'getMaxSize(${1:This}) $2' -p18931 -tp18932 -a(S'getMinSize/1' -p18933 -S'getMinSize(${1:This}) $2' -p18934 -tp18935 -a(S'getName/1' -p18936 -S'getName(${1:This}) $2' -p18937 -tp18938 -a(S'getParent/1' -p18939 -S'getParent(${1:This}) $2' -p18940 -tp18941 -a(S'getPosition/1' -p18942 -S'getPosition(${1:This}) $2' -p18943 -tp18944 -a(S'getRange/1' -p18945 -S'getRange(${1:This}) $2' -p18946 -tp18947 -a(S'getRect/1' -p18948 -S'getRect(${1:This}) $2' -p18949 -tp18950 -a(S'getScreenPosition/1' -p18951 -S'getScreenPosition(${1:This}) $2' -p18952 -tp18953 -a(S'getScreenRect/1' -p18954 -S'getScreenRect(${1:This}) $2' -p18955 -tp18956 -a(S'getScrollPos/2' -p18957 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p18958 -tp18959 -a(S'getScrollRange/2' -p18960 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p18961 -tp18962 -a(S'getScrollThumb/2' -p18963 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p18964 -tp18965 -a(S'getShadowWidth/1' -p18966 -S'getShadowWidth(${1:This}) $2' -p18967 -tp18968 -a(S'getSize/1' -p18969 -S'getSize(${1:This}) $2' -p18970 -tp18971 -a(S'getSizer/1' -p18972 -S'getSizer(${1:This}) $2' -p18973 -tp18974 -a(S'getTextExtent/2' -p18975 -S'getTextExtent(${1:This}, ${2:String}) $3' -p18976 -tp18977 -a(S'getTextExtent/3' -p18978 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p18979 -tp18980 -a(S'getToolTip/1' -p18981 -S'getToolTip(${1:This}) $2' -p18982 -tp18983 -a(S'getUpdateRegion/1' -p18984 -S'getUpdateRegion(${1:This}) $2' -p18985 -tp18986 -a(S'getValue/1' -p18987 -S'getValue(${1:This}) $2' -p18988 -tp18989 -a(S'getVirtualSize/1' -p18990 -S'getVirtualSize(${1:This}) $2' -p18991 -tp18992 -a(S'getWindowStyleFlag/1' -p18993 -S'getWindowStyleFlag(${1:This}) $2' -p18994 -tp18995 -a(S'getWindowVariant/1' -p18996 -S'getWindowVariant(${1:This}) $2' -p18997 -tp18998 -a(S'hasCapture/1' -p18999 -S'hasCapture(${1:This}) $2' -p19000 -tp19001 -a(S'hasScrollbar/2' -p19002 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p19003 -tp19004 -a(S'hasTransparentBackground/1' -p19005 -S'hasTransparentBackground(${1:This}) $2' -p19006 -tp19007 -a(S'hide/1' -p19008 -S'hide(${1:This}) $2' -p19009 -tp19010 -a(S'inheritAttributes/1' -p19011 -S'inheritAttributes(${1:This}) $2' -p19012 -tp19013 -a(S'initDialog/1' -p19014 -S'initDialog(${1:This}) $2' -p19015 -tp19016 -a(S'invalidateBestSize/1' -p19017 -S'invalidateBestSize(${1:This}) $2' -p19018 -tp19019 -a(S'isEnabled/1' -p19020 -S'isEnabled(${1:This}) $2' -p19021 -tp19022 -a(S'isExposed/2' -p19023 -S'isExposed(${1:This}, ${2:Pt}) $3' -p19024 -tp19025 -a(S'isExposed/3' -p19026 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p19027 -tp19028 -a(S'isExposed/5' -p19029 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p19030 -tp19031 -a(S'isRetained/1' -p19032 -S'isRetained(${1:This}) $2' -p19033 -tp19034 -a(S'isShown/1' -p19035 -S'isShown(${1:This}) $2' -p19036 -tp19037 -a(S'isTopLevel/1' -p19038 -S'isTopLevel(${1:This}) $2' -p19039 -tp19040 -a(S'isVertical/1' -p19041 -S'isVertical(${1:This}) $2' -p19042 -tp19043 -a(S'layout/1' -p19044 -S'layout(${1:This}) $2' -p19045 -tp19046 -a(S'lineDown/1' -p19047 -S'lineDown(${1:This}) $2' -p19048 -tp19049 -a(S'lineUp/1' -p19050 -S'lineUp(${1:This}) $2' -p19051 -tp19052 -a(S'lower/1' -p19053 -S'lower(${1:This}) $2' -p19054 -tp19055 -a(S'makeModal/1' -p19056 -S'makeModal(${1:This}) $2' -p19057 -tp19058 -a(S'makeModal/2' -p19059 -S'makeModal(${1:This}, ${2:Options}) $3' -p19060 -tp19061 -a(S'move/2' -p19062 -S'move(${1:This}, ${2:Pt}) $3' -p19063 -tp19064 -a(S'move/3' -p19065 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p19066 -tp19067 -a(S'move/4' -p19068 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p19069 -tp19070 -a(S'moveAfterInTabOrder/2' -p19071 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p19072 -tp19073 -a(S'moveBeforeInTabOrder/2' -p19074 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p19075 -tp19076 -a(S'navigate/1' -p19077 -S'navigate(${1:This}) $2' -p19078 -tp19079 -a(S'navigate/2' -p19080 -S'navigate(${1:This}, ${2:Options}) $3' -p19081 -tp19082 -a(S'new/0' -p19083 -S'new() $1' -p19084 -tp19085 -a(S'new/3' -p19086 -S'new(${1:Parent}, ${2:Id}, ${3:Range}) $4' -p19087 -tp19088 -a(S'new/4' -p19089 -S'new(${1:Parent}, ${2:Id}, ${3:Range}, ${4:Param4}) $5' -p19090 -tp19091 -a(S'pageDown/1' -p19092 -S'pageDown(${1:This}) $2' -p19093 -tp19094 -a(S'pageUp/1' -p19095 -S'pageUp(${1:This}) $2' -p19096 -tp19097 -a(S'parent_class/1' -p19098 -S'parent_class(${1:Param1}) $2' -p19099 -tp19100 -a(S'popEventHandler/1' -p19101 -S'popEventHandler(${1:This}) $2' -p19102 -tp19103 -a(S'popEventHandler/2' -p19104 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p19105 -tp19106 -a(S'popupMenu/2' -p19107 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p19108 -tp19109 -a(S'popupMenu/3' -p19110 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p19111 -tp19112 -a(S'popupMenu/4' -p19113 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p19114 -tp19115 -a(S'pulse/1' -p19116 -S'pulse(${1:This}) $2' -p19117 -tp19118 -a(S'raise/1' -p19119 -S'raise(${1:This}) $2' -p19120 -tp19121 -a(S'refresh/1' -p19122 -S'refresh(${1:This}) $2' -p19123 -tp19124 -a(S'refresh/2' -p19125 -S'refresh(${1:This}, ${2:Options}) $3' -p19126 -tp19127 -a(S'refreshRect/2' -p19128 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p19129 -tp19130 -a(S'refreshRect/3' -p19131 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p19132 -tp19133 -a(S'releaseMouse/1' -p19134 -S'releaseMouse(${1:This}) $2' -p19135 -tp19136 -a(S'removeChild/2' -p19137 -S'removeChild(${1:This}, ${2:Child}) $3' -p19138 -tp19139 -a(S'reparent/2' -p19140 -S'reparent(${1:This}, ${2:NewParent}) $3' -p19141 -tp19142 -a(S'screenToClient/1' -p19143 -S'screenToClient(${1:This}) $2' -p19144 -tp19145 -a(S'screenToClient/2' -p19146 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p19147 -tp19148 -a(S'scrollLines/2' -p19149 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p19150 -tp19151 -a(S'scrollPages/2' -p19152 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p19153 -tp19154 -a(S'scrollWindow/3' -p19155 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p19156 -tp19157 -a(S'scrollWindow/4' -p19158 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p19159 -tp19160 -a(S'setAcceleratorTable/2' -p19161 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p19162 -tp19163 -a(S'setAutoLayout/2' -p19164 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p19165 -tp19166 -a(S'setBackgroundColour/2' -p19167 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p19168 -tp19169 -a(S'setBackgroundStyle/2' -p19170 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p19171 -tp19172 -a(S'setBezelFace/2' -p19173 -S'setBezelFace(${1:This}, ${2:W}) $3' -p19174 -tp19175 -a(S'setCaret/2' -p19176 -S'setCaret(${1:This}, ${2:Caret}) $3' -p19177 -tp19178 -a(S'setClientSize/2' -p19179 -S'setClientSize(${1:This}, ${2:Size}) $3' -p19180 -tp19181 -a(S'setClientSize/3' -p19182 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p19183 -tp19184 -a(S'setContainingSizer/2' -p19185 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p19186 -tp19187 -a(S'setCursor/2' -p19188 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p19189 -tp19190 -a(S'setDropTarget/2' -p19191 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p19192 -tp19193 -a(S'setExtraStyle/2' -p19194 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p19195 -tp19196 -a(S'setFocus/1' -p19197 -S'setFocus(${1:This}) $2' -p19198 -tp19199 -a(S'setFocusFromKbd/1' -p19200 -S'setFocusFromKbd(${1:This}) $2' -p19201 -tp19202 -a(S'setFont/2' -p19203 -S'setFont(${1:This}, ${2:Font}) $3' -p19204 -tp19205 -a(S'setForegroundColour/2' -p19206 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p19207 -tp19208 -a(S'setHelpText/2' -p19209 -S'setHelpText(${1:This}, ${2:Text}) $3' -p19210 -tp19211 -a(S'setId/2' -p19212 -S'setId(${1:This}, ${2:Winid}) $3' -p19213 -tp19214 -a(S'setLabel/2' -p19215 -S'setLabel(${1:This}, ${2:Label}) $3' -p19216 -tp19217 -a(S'setMaxSize/2' -p19218 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p19219 -tp19220 -a(S'setMinSize/2' -p19221 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p19222 -tp19223 -a(S'setName/2' -p19224 -S'setName(${1:This}, ${2:Name}) $3' -p19225 -tp19226 -a(S'setOwnBackgroundColour/2' -p19227 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p19228 -tp19229 -a(S'setOwnFont/2' -p19230 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p19231 -tp19232 -a(S'setOwnForegroundColour/2' -p19233 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p19234 -tp19235 -a(S'setPalette/2' -p19236 -S'setPalette(${1:This}, ${2:Pal}) $3' -p19237 -tp19238 -a(S'setRange/2' -p19239 -S'setRange(${1:This}, ${2:R}) $3' -p19240 -tp19241 -a(S'setScrollPos/3' -p19242 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p19243 -tp19244 -a(S'setScrollPos/4' -p19245 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p19246 -tp19247 -a(S'setScrollbar/5' -p19248 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p19249 -tp19250 -a(S'setScrollbar/6' -p19251 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p19252 -tp19253 -a(S'setShadowWidth/2' -p19254 -S'setShadowWidth(${1:This}, ${2:W}) $3' -p19255 -tp19256 -a(S'setSize/2' -p19257 -S'setSize(${1:This}, ${2:Rect}) $3' -p19258 -tp19259 -a(S'setSize/3' -p19260 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p19261 -tp19262 -a(S'setSize/5' -p19263 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p19264 -tp19265 -a(S'setSize/6' -p19266 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p19267 -tp19268 -a(S'setSizeHints/2' -p19269 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p19270 -tp19271 -a(S'setSizeHints/3' -p19272 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p19273 -tp19274 -a(S'setSizeHints/4' -p19275 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p19276 -tp19277 -a(S'setSizer/2' -p19278 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p19279 -tp19280 -a(S'setSizer/3' -p19281 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p19282 -tp19283 -a(S'setSizerAndFit/2' -p19284 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p19285 -tp19286 -a(S'setSizerAndFit/3' -p19287 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p19288 -tp19289 -a(S'setThemeEnabled/2' -p19290 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p19291 -tp19292 -a(S'setToolTip/2' -p19293 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p19294 -tp19295 -a(S'setValue/2' -p19296 -S'setValue(${1:This}, ${2:Pos}) $3' -p19297 -tp19298 -a(S'setVirtualSize/2' -p19299 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p19300 -tp19301 -a(S'setVirtualSize/3' -p19302 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p19303 -tp19304 -a(S'setVirtualSizeHints/2' -p19305 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p19306 -tp19307 -a(S'setVirtualSizeHints/3' -p19308 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p19309 -tp19310 -a(S'setVirtualSizeHints/4' -p19311 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p19312 -tp19313 -a(S'setWindowStyle/2' -p19314 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p19315 -tp19316 -a(S'setWindowStyleFlag/2' -p19317 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p19318 -tp19319 -a(S'setWindowVariant/2' -p19320 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p19321 -tp19322 -a(S'shouldInheritColours/1' -p19323 -S'shouldInheritColours(${1:This}) $2' -p19324 -tp19325 -a(S'show/1' -p19326 -S'show(${1:This}) $2' -p19327 -tp19328 -a(S'show/2' -p19329 -S'show(${1:This}, ${2:Options}) $3' -p19330 -tp19331 -a(S'thaw/1' -p19332 -S'thaw(${1:This}) $2' -p19333 -tp19334 -a(S'transferDataFromWindow/1' -p19335 -S'transferDataFromWindow(${1:This}) $2' -p19336 -tp19337 -a(S'transferDataToWindow/1' -p19338 -S'transferDataToWindow(${1:This}) $2' -p19339 -tp19340 -a(S'update/1' -p19341 -S'update(${1:This}) $2' -p19342 -tp19343 -a(S'updateWindowUI/1' -p19344 -S'updateWindowUI(${1:This}) $2' -p19345 -tp19346 -a(S'updateWindowUI/2' -p19347 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p19348 -tp19349 -a(S'validate/1' -p19350 -S'validate(${1:This}) $2' -p19351 -tp19352 -a(S'warpPointer/3' -p19353 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p19354 -tp19355 -asS'wxTreeCtrl' -p19356 -(lp19357 -(S'addRoot/2' -p19358 -S'addRoot(${1:This}, ${2:Text}) $3' -p19359 -tp19360 -a(S'addRoot/3' -p19361 -S'addRoot(${1:This}, ${2:Text}, ${3:Param3}) $4' -p19362 -tp19363 -a(S'appendItem/3' -p19364 -S'appendItem(${1:This}, ${2:Parent}, ${3:Text}) $4' -p19365 -tp19366 -a(S'appendItem/4' -p19367 -S'appendItem(${1:This}, ${2:Parent}, ${3:Text}, ${4:Param4}) $5' -p19368 -tp19369 -a(S'assignImageList/2' -p19370 -S'assignImageList(${1:This}, ${2:ImageList}) $3' -p19371 -tp19372 -a(S'assignStateImageList/2' -p19373 -S'assignStateImageList(${1:This}, ${2:ImageList}) $3' -p19374 -tp19375 -a(S'cacheBestSize/2' -p19376 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p19377 -tp19378 -a(S'captureMouse/1' -p19379 -S'captureMouse(${1:This}) $2' -p19380 -tp19381 -a(S'center/1' -p19382 -S'center(${1:This}) $2' -p19383 -tp19384 -a(S'center/2' -p19385 -S'center(${1:This}, ${2:Options}) $3' -p19386 -tp19387 -a(S'centerOnParent/1' -p19388 -S'centerOnParent(${1:This}) $2' -p19389 -tp19390 -a(S'centerOnParent/2' -p19391 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p19392 -tp19393 -a(S'centre/1' -p19394 -S'centre(${1:This}) $2' -p19395 -tp19396 -a(S'centre/2' -p19397 -S'centre(${1:This}, ${2:Options}) $3' -p19398 -tp19399 -a(S'centreOnParent/1' -p19400 -S'centreOnParent(${1:This}) $2' -p19401 -tp19402 -a(S'centreOnParent/2' -p19403 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p19404 -tp19405 -a(S'clearBackground/1' -p19406 -S'clearBackground(${1:This}) $2' -p19407 -tp19408 -a(S'clientToScreen/2' -p19409 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p19410 -tp19411 -a(S'clientToScreen/3' -p19412 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p19413 -tp19414 -a(S'close/1' -p19415 -S'close(${1:This}) $2' -p19416 -tp19417 -a(S'close/2' -p19418 -S'close(${1:This}, ${2:Options}) $3' -p19419 -tp19420 -a(S'collapse/2' -p19421 -S'collapse(${1:This}, ${2:Item}) $3' -p19422 -tp19423 -a(S'collapseAndReset/2' -p19424 -S'collapseAndReset(${1:This}, ${2:Item}) $3' -p19425 -tp19426 -a(S'connect/2' -p19427 -S'connect(${1:This}, ${2:EventType}) $3' -p19428 -tp19429 -a(S'connect/3' -p19430 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p19431 -tp19432 -a(S'convertDialogToPixels/2' -p19433 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p19434 -tp19435 -a(S'convertPixelsToDialog/2' -p19436 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p19437 -tp19438 -a(S'create/2' -p19439 -S'create(${1:This}, ${2:Parent}) $3' -p19440 -tp19441 -a(S'create/3' -p19442 -S'create(${1:This}, ${2:Parent}, ${3:Param3}) $4' -p19443 -tp19444 -a(S'delete/2' -p19445 -S'delete(${1:This}, ${2:Item}) $3' -p19446 -tp19447 -a(S'deleteAllItems/1' -p19448 -S'deleteAllItems(${1:This}) $2' -p19449 -tp19450 -a(S'deleteChildren/2' -p19451 -S'deleteChildren(${1:This}, ${2:Item}) $3' -p19452 -tp19453 -a(S'destroy/1' -p19454 -S'destroy(${1:This}) $2' -p19455 -tp19456 -a(S'destroyChildren/1' -p19457 -S'destroyChildren(${1:This}) $2' -p19458 -tp19459 -a(S'disable/1' -p19460 -S'disable(${1:This}) $2' -p19461 -tp19462 -a(S'disconnect/1' -p19463 -S'disconnect(${1:This}) $2' -p19464 -tp19465 -a(S'disconnect/2' -p19466 -S'disconnect(${1:This}, ${2:EventType}) $3' -p19467 -tp19468 -a(S'disconnect/3' -p19469 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p19470 -tp19471 -a(S'editLabel/2' -p19472 -S'editLabel(${1:This}, ${2:Item}) $3' -p19473 -tp19474 -a(S'enable/1' -p19475 -S'enable(${1:This}) $2' -p19476 -tp19477 -a(S'enable/2' -p19478 -S'enable(${1:This}, ${2:Options}) $3' -p19479 -tp19480 -a(S'ensureVisible/2' -p19481 -S'ensureVisible(${1:This}, ${2:Item}) $3' -p19482 -tp19483 -a(S'expand/2' -p19484 -S'expand(${1:This}, ${2:Item}) $3' -p19485 -tp19486 -a(S'findWindow/2' -p19487 -S'findWindow(${1:This}, ${2:Winid}) $3' -p19488 -tp19489 -a(S'fit/1' -p19490 -S'fit(${1:This}) $2' -p19491 -tp19492 -a(S'fitInside/1' -p19493 -S'fitInside(${1:This}) $2' -p19494 -tp19495 -a(S'freeze/1' -p19496 -S'freeze(${1:This}) $2' -p19497 -tp19498 -a(S'getAcceleratorTable/1' -p19499 -S'getAcceleratorTable(${1:This}) $2' -p19500 -tp19501 -a(S'getBackgroundColour/1' -p19502 -S'getBackgroundColour(${1:This}) $2' -p19503 -tp19504 -a(S'getBackgroundStyle/1' -p19505 -S'getBackgroundStyle(${1:This}) $2' -p19506 -tp19507 -a(S'getBestSize/1' -p19508 -S'getBestSize(${1:This}) $2' -p19509 -tp19510 -a(S'getBoundingRect/3' -p19511 -S'getBoundingRect(${1:This}, ${2:Item}, ${3:Rect}) $4' -p19512 -tp19513 -a(S'getBoundingRect/4' -p19514 -S'getBoundingRect(${1:This}, ${2:Item}, ${3:Rect}, ${4:Param4}) $5' -p19515 -tp19516 -a(S'getCaret/1' -p19517 -S'getCaret(${1:This}) $2' -p19518 -tp19519 -a(S'getCharHeight/1' -p19520 -S'getCharHeight(${1:This}) $2' -p19521 -tp19522 -a(S'getCharWidth/1' -p19523 -S'getCharWidth(${1:This}) $2' -p19524 -tp19525 -a(S'getChildren/1' -p19526 -S'getChildren(${1:This}) $2' -p19527 -tp19528 -a(S'getChildrenCount/2' -p19529 -S'getChildrenCount(${1:This}, ${2:Item}) $3' -p19530 -tp19531 -a(S'getChildrenCount/3' -p19532 -S'getChildrenCount(${1:This}, ${2:Item}, ${3:Param3}) $4' -p19533 -tp19534 -a(S'getClientSize/1' -p19535 -S'getClientSize(${1:This}) $2' -p19536 -tp19537 -a(S'getContainingSizer/1' -p19538 -S'getContainingSizer(${1:This}) $2' -p19539 -tp19540 -a(S'getCount/1' -p19541 -S'getCount(${1:This}) $2' -p19542 -tp19543 -a(S'getCursor/1' -p19544 -S'getCursor(${1:This}) $2' -p19545 -tp19546 -a(S'getDropTarget/1' -p19547 -S'getDropTarget(${1:This}) $2' -p19548 -tp19549 -a(S'getEditControl/1' -p19550 -S'getEditControl(${1:This}) $2' -p19551 -tp19552 -a(S'getEventHandler/1' -p19553 -S'getEventHandler(${1:This}) $2' -p19554 -tp19555 -a(S'getExtraStyle/1' -p19556 -S'getExtraStyle(${1:This}) $2' -p19557 -tp19558 -a(S'getFirstChild/2' -p19559 -S'getFirstChild(${1:This}, ${2:Item}) $3' -p19560 -tp19561 -a(S'getFirstVisibleItem/1' -p19562 -S'getFirstVisibleItem(${1:This}) $2' -p19563 -tp19564 -a(S'getFont/1' -p19565 -S'getFont(${1:This}) $2' -p19566 -tp19567 -a(S'getForegroundColour/1' -p19568 -S'getForegroundColour(${1:This}) $2' -p19569 -tp19570 -a(S'getGrandParent/1' -p19571 -S'getGrandParent(${1:This}) $2' -p19572 -tp19573 -a(S'getHandle/1' -p19574 -S'getHandle(${1:This}) $2' -p19575 -tp19576 -a(S'getHelpText/1' -p19577 -S'getHelpText(${1:This}) $2' -p19578 -tp19579 -a(S'getId/1' -p19580 -S'getId(${1:This}) $2' -p19581 -tp19582 -a(S'getImageList/1' -p19583 -S'getImageList(${1:This}) $2' -p19584 -tp19585 -a(S'getIndent/1' -p19586 -S'getIndent(${1:This}) $2' -p19587 -tp19588 -a(S'getItemBackgroundColour/2' -p19589 -S'getItemBackgroundColour(${1:This}, ${2:Item}) $3' -p19590 -tp19591 -a(S'getItemData/2' -p19592 -S'getItemData(${1:This}, ${2:Item}) $3' -p19593 -tp19594 -a(S'getItemFont/2' -p19595 -S'getItemFont(${1:This}, ${2:Item}) $3' -p19596 -tp19597 -a(S'getItemImage/2' -p19598 -S'getItemImage(${1:This}, ${2:Item}) $3' -p19599 -tp19600 -a(S'getItemImage/3' -p19601 -S'getItemImage(${1:This}, ${2:Item}, ${3:Param3}) $4' -p19602 -tp19603 -a(S'getItemParent/2' -p19604 -S'getItemParent(${1:This}, ${2:Item}) $3' -p19605 -tp19606 -a(S'getItemText/2' -p19607 -S'getItemText(${1:This}, ${2:Item}) $3' -p19608 -tp19609 -a(S'getItemTextColour/2' -p19610 -S'getItemTextColour(${1:This}, ${2:Item}) $3' -p19611 -tp19612 -a(S'getLabel/1' -p19613 -S'getLabel(${1:This}) $2' -p19614 -tp19615 -a(S'getLastChild/2' -p19616 -S'getLastChild(${1:This}, ${2:Item}) $3' -p19617 -tp19618 -a(S'getMaxSize/1' -p19619 -S'getMaxSize(${1:This}) $2' -p19620 -tp19621 -a(S'getMinSize/1' -p19622 -S'getMinSize(${1:This}) $2' -p19623 -tp19624 -a(S'getName/1' -p19625 -S'getName(${1:This}) $2' -p19626 -tp19627 -a(S'getNextChild/3' -p19628 -S'getNextChild(${1:This}, ${2:Item}, ${3:Cookie}) $4' -p19629 -tp19630 -a(S'getNextSibling/2' -p19631 -S'getNextSibling(${1:This}, ${2:Item}) $3' -p19632 -tp19633 -a(S'getNextVisible/2' -p19634 -S'getNextVisible(${1:This}, ${2:Item}) $3' -p19635 -tp19636 -a(S'getParent/1' -p19637 -S'getParent(${1:This}) $2' -p19638 -tp19639 -a(S'getPosition/1' -p19640 -S'getPosition(${1:This}) $2' -p19641 -tp19642 -a(S'getPrevSibling/2' -p19643 -S'getPrevSibling(${1:This}, ${2:Item}) $3' -p19644 -tp19645 -a(S'getPrevVisible/2' -p19646 -S'getPrevVisible(${1:This}, ${2:Item}) $3' -p19647 -tp19648 -a(S'getRect/1' -p19649 -S'getRect(${1:This}) $2' -p19650 -tp19651 -a(S'getRootItem/1' -p19652 -S'getRootItem(${1:This}) $2' -p19653 -tp19654 -a(S'getScreenPosition/1' -p19655 -S'getScreenPosition(${1:This}) $2' -p19656 -tp19657 -a(S'getScreenRect/1' -p19658 -S'getScreenRect(${1:This}) $2' -p19659 -tp19660 -a(S'getScrollPos/2' -p19661 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p19662 -tp19663 -a(S'getScrollRange/2' -p19664 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p19665 -tp19666 -a(S'getScrollThumb/2' -p19667 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p19668 -tp19669 -a(S'getSelection/1' -p19670 -S'getSelection(${1:This}) $2' -p19671 -tp19672 -a(S'getSelections/1' -p19673 -S'getSelections(${1:This}) $2' -p19674 -tp19675 -a(S'getSize/1' -p19676 -S'getSize(${1:This}) $2' -p19677 -tp19678 -a(S'getSizer/1' -p19679 -S'getSizer(${1:This}) $2' -p19680 -tp19681 -a(S'getStateImageList/1' -p19682 -S'getStateImageList(${1:This}) $2' -p19683 -tp19684 -a(S'getTextExtent/2' -p19685 -S'getTextExtent(${1:This}, ${2:String}) $3' -p19686 -tp19687 -a(S'getTextExtent/3' -p19688 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p19689 -tp19690 -a(S'getToolTip/1' -p19691 -S'getToolTip(${1:This}) $2' -p19692 -tp19693 -a(S'getUpdateRegion/1' -p19694 -S'getUpdateRegion(${1:This}) $2' -p19695 -tp19696 -a(S'getVirtualSize/1' -p19697 -S'getVirtualSize(${1:This}) $2' -p19698 -tp19699 -a(S'getWindowStyleFlag/1' -p19700 -S'getWindowStyleFlag(${1:This}) $2' -p19701 -tp19702 -a(S'getWindowVariant/1' -p19703 -S'getWindowVariant(${1:This}) $2' -p19704 -tp19705 -a(S'hasCapture/1' -p19706 -S'hasCapture(${1:This}) $2' -p19707 -tp19708 -a(S'hasScrollbar/2' -p19709 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p19710 -tp19711 -a(S'hasTransparentBackground/1' -p19712 -S'hasTransparentBackground(${1:This}) $2' -p19713 -tp19714 -a(S'hide/1' -p19715 -S'hide(${1:This}) $2' -p19716 -tp19717 -a(S'hitTest/2' -p19718 -S'hitTest(${1:This}, ${2:Point}) $3' -p19719 -tp19720 -a(S'inheritAttributes/1' -p19721 -S'inheritAttributes(${1:This}) $2' -p19722 -tp19723 -a(S'initDialog/1' -p19724 -S'initDialog(${1:This}) $2' -p19725 -tp19726 -a(S'insertItem/4' -p19727 -S'insertItem(${1:This}, ${2:Parent}, ${3:Pos}, ${4:Text}) $5' -p19728 -tp19729 -a(S'insertItem/5' -p19730 -S'insertItem(${1:This}, ${2:Parent}, ${3:Pos}, ${4:Text}, ${5:Param5}) $6' -p19731 -tp19732 -a(S'invalidateBestSize/1' -p19733 -S'invalidateBestSize(${1:This}) $2' -p19734 -tp19735 -a(S'isBold/2' -p19736 -S'isBold(${1:This}, ${2:Item}) $3' -p19737 -tp19738 -a(S'isEnabled/1' -p19739 -S'isEnabled(${1:This}) $2' -p19740 -tp19741 -a(S'isExpanded/2' -p19742 -S'isExpanded(${1:This}, ${2:Item}) $3' -p19743 -tp19744 -a(S'isExposed/2' -p19745 -S'isExposed(${1:This}, ${2:Pt}) $3' -p19746 -tp19747 -a(S'isExposed/3' -p19748 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p19749 -tp19750 -a(S'isExposed/5' -p19751 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p19752 -tp19753 -a(S'isRetained/1' -p19754 -S'isRetained(${1:This}) $2' -p19755 -tp19756 -a(S'isSelected/2' -p19757 -S'isSelected(${1:This}, ${2:Item}) $3' -p19758 -tp19759 -a(S'isShown/1' -p19760 -S'isShown(${1:This}) $2' -p19761 -tp19762 -a(S'isTopLevel/1' -p19763 -S'isTopLevel(${1:This}) $2' -p19764 -tp19765 -a(S'isVisible/2' -p19766 -S'isVisible(${1:This}, ${2:Item}) $3' -p19767 -tp19768 -a(S'itemHasChildren/2' -p19769 -S'itemHasChildren(${1:This}, ${2:Item}) $3' -p19770 -tp19771 -a(S'layout/1' -p19772 -S'layout(${1:This}) $2' -p19773 -tp19774 -a(S'lineDown/1' -p19775 -S'lineDown(${1:This}) $2' -p19776 -tp19777 -a(S'lineUp/1' -p19778 -S'lineUp(${1:This}) $2' -p19779 -tp19780 -a(S'lower/1' -p19781 -S'lower(${1:This}) $2' -p19782 -tp19783 -a(S'makeModal/1' -p19784 -S'makeModal(${1:This}) $2' -p19785 -tp19786 -a(S'makeModal/2' -p19787 -S'makeModal(${1:This}, ${2:Options}) $3' -p19788 -tp19789 -a(S'move/2' -p19790 -S'move(${1:This}, ${2:Pt}) $3' -p19791 -tp19792 -a(S'move/3' -p19793 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p19794 -tp19795 -a(S'move/4' -p19796 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p19797 -tp19798 -a(S'moveAfterInTabOrder/2' -p19799 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p19800 -tp19801 -a(S'moveBeforeInTabOrder/2' -p19802 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p19803 -tp19804 -a(S'navigate/1' -p19805 -S'navigate(${1:This}) $2' -p19806 -tp19807 -a(S'navigate/2' -p19808 -S'navigate(${1:This}, ${2:Options}) $3' -p19809 -tp19810 -a(S'new/0' -p19811 -S'new() $1' -p19812 -tp19813 -a(S'new/1' -p19814 -S'new(${1:Parent}) $2' -p19815 -tp19816 -a(S'new/2' -p19817 -S'new(${1:Parent}, ${2:Param2}) $3' -p19818 -tp19819 -a(S'pageDown/1' -p19820 -S'pageDown(${1:This}) $2' -p19821 -tp19822 -a(S'pageUp/1' -p19823 -S'pageUp(${1:This}) $2' -p19824 -tp19825 -a(S'parent_class/1' -p19826 -S'parent_class(${1:Param1}) $2' -p19827 -tp19828 -a(S'popEventHandler/1' -p19829 -S'popEventHandler(${1:This}) $2' -p19830 -tp19831 -a(S'popEventHandler/2' -p19832 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p19833 -tp19834 -a(S'popupMenu/2' -p19835 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p19836 -tp19837 -a(S'popupMenu/3' -p19838 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p19839 -tp19840 -a(S'popupMenu/4' -p19841 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p19842 -tp19843 -a(S'prependItem/3' -p19844 -S'prependItem(${1:This}, ${2:Parent}, ${3:Text}) $4' -p19845 -tp19846 -a(S'prependItem/4' -p19847 -S'prependItem(${1:This}, ${2:Parent}, ${3:Text}, ${4:Param4}) $5' -p19848 -tp19849 -a(S'raise/1' -p19850 -S'raise(${1:This}) $2' -p19851 -tp19852 -a(S'refresh/1' -p19853 -S'refresh(${1:This}) $2' -p19854 -tp19855 -a(S'refresh/2' -p19856 -S'refresh(${1:This}, ${2:Options}) $3' -p19857 -tp19858 -a(S'refreshRect/2' -p19859 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p19860 -tp19861 -a(S'refreshRect/3' -p19862 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p19863 -tp19864 -a(S'releaseMouse/1' -p19865 -S'releaseMouse(${1:This}) $2' -p19866 -tp19867 -a(S'removeChild/2' -p19868 -S'removeChild(${1:This}, ${2:Child}) $3' -p19869 -tp19870 -a(S'reparent/2' -p19871 -S'reparent(${1:This}, ${2:NewParent}) $3' -p19872 -tp19873 -a(S'screenToClient/1' -p19874 -S'screenToClient(${1:This}) $2' -p19875 -tp19876 -a(S'screenToClient/2' -p19877 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p19878 -tp19879 -a(S'scrollLines/2' -p19880 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p19881 -tp19882 -a(S'scrollPages/2' -p19883 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p19884 -tp19885 -a(S'scrollTo/2' -p19886 -S'scrollTo(${1:This}, ${2:Item}) $3' -p19887 -tp19888 -a(S'scrollWindow/3' -p19889 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p19890 -tp19891 -a(S'scrollWindow/4' -p19892 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p19893 -tp19894 -a(S'selectItem/2' -p19895 -S'selectItem(${1:This}, ${2:Item}) $3' -p19896 -tp19897 -a(S'selectItem/3' -p19898 -S'selectItem(${1:This}, ${2:Item}, ${3:Param3}) $4' -p19899 -tp19900 -a(S'setAcceleratorTable/2' -p19901 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p19902 -tp19903 -a(S'setAutoLayout/2' -p19904 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p19905 -tp19906 -a(S'setBackgroundColour/2' -p19907 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p19908 -tp19909 -a(S'setBackgroundStyle/2' -p19910 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p19911 -tp19912 -a(S'setCaret/2' -p19913 -S'setCaret(${1:This}, ${2:Caret}) $3' -p19914 -tp19915 -a(S'setClientSize/2' -p19916 -S'setClientSize(${1:This}, ${2:Size}) $3' -p19917 -tp19918 -a(S'setClientSize/3' -p19919 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p19920 -tp19921 -a(S'setContainingSizer/2' -p19922 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p19923 -tp19924 -a(S'setCursor/2' -p19925 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p19926 -tp19927 -a(S'setDropTarget/2' -p19928 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p19929 -tp19930 -a(S'setExtraStyle/2' -p19931 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p19932 -tp19933 -a(S'setFocus/1' -p19934 -S'setFocus(${1:This}) $2' -p19935 -tp19936 -a(S'setFocusFromKbd/1' -p19937 -S'setFocusFromKbd(${1:This}) $2' -p19938 -tp19939 -a(S'setFont/2' -p19940 -S'setFont(${1:This}, ${2:Font}) $3' -p19941 -tp19942 -a(S'setForegroundColour/2' -p19943 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p19944 -tp19945 -a(S'setHelpText/2' -p19946 -S'setHelpText(${1:This}, ${2:Text}) $3' -p19947 -tp19948 -a(S'setId/2' -p19949 -S'setId(${1:This}, ${2:Winid}) $3' -p19950 -tp19951 -a(S'setImageList/2' -p19952 -S'setImageList(${1:This}, ${2:ImageList}) $3' -p19953 -tp19954 -a(S'setIndent/2' -p19955 -S'setIndent(${1:This}, ${2:Indent}) $3' -p19956 -tp19957 -a(S'setItemBackgroundColour/3' -p19958 -S'setItemBackgroundColour(${1:This}, ${2:Item}, ${3:Col}) $4' -p19959 -tp19960 -a(S'setItemBold/2' -p19961 -S'setItemBold(${1:This}, ${2:Item}) $3' -p19962 -tp19963 -a(S'setItemBold/3' -p19964 -S'setItemBold(${1:This}, ${2:Item}, ${3:Param3}) $4' -p19965 -tp19966 -a(S'setItemData/3' -p19967 -S'setItemData(${1:This}, ${2:Item}, ${3:Data}) $4' -p19968 -tp19969 -a(S'setItemDropHighlight/2' -p19970 -S'setItemDropHighlight(${1:This}, ${2:Item}) $3' -p19971 -tp19972 -a(S'setItemDropHighlight/3' -p19973 -S'setItemDropHighlight(${1:This}, ${2:Item}, ${3:Param3}) $4' -p19974 -tp19975 -a(S'setItemFont/3' -p19976 -S'setItemFont(${1:This}, ${2:Item}, ${3:Font}) $4' -p19977 -tp19978 -a(S'setItemHasChildren/2' -p19979 -S'setItemHasChildren(${1:This}, ${2:Item}) $3' -p19980 -tp19981 -a(S'setItemHasChildren/3' -p19982 -S'setItemHasChildren(${1:This}, ${2:Item}, ${3:Param3}) $4' -p19983 -tp19984 -a(S'setItemImage/3' -p19985 -S'setItemImage(${1:This}, ${2:Item}, ${3:Image}) $4' -p19986 -tp19987 -a(S'setItemImage/4' -p19988 -S'setItemImage(${1:This}, ${2:Item}, ${3:Image}, ${4:Param4}) $5' -p19989 -tp19990 -a(S'setItemText/3' -p19991 -S'setItemText(${1:This}, ${2:Item}, ${3:Text}) $4' -p19992 -tp19993 -a(S'setItemTextColour/3' -p19994 -S'setItemTextColour(${1:This}, ${2:Item}, ${3:Col}) $4' -p19995 -tp19996 -a(S'setLabel/2' -p19997 -S'setLabel(${1:This}, ${2:Label}) $3' -p19998 -tp19999 -a(S'setMaxSize/2' -p20000 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p20001 -tp20002 -a(S'setMinSize/2' -p20003 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p20004 -tp20005 -a(S'setName/2' -p20006 -S'setName(${1:This}, ${2:Name}) $3' -p20007 -tp20008 -a(S'setOwnBackgroundColour/2' -p20009 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p20010 -tp20011 -a(S'setOwnFont/2' -p20012 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p20013 -tp20014 -a(S'setOwnForegroundColour/2' -p20015 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p20016 -tp20017 -a(S'setPalette/2' -p20018 -S'setPalette(${1:This}, ${2:Pal}) $3' -p20019 -tp20020 -a(S'setScrollPos/3' -p20021 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p20022 -tp20023 -a(S'setScrollPos/4' -p20024 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p20025 -tp20026 -a(S'setScrollbar/5' -p20027 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p20028 -tp20029 -a(S'setScrollbar/6' -p20030 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p20031 -tp20032 -a(S'setSize/2' -p20033 -S'setSize(${1:This}, ${2:Rect}) $3' -p20034 -tp20035 -a(S'setSize/3' -p20036 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p20037 -tp20038 -a(S'setSize/5' -p20039 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p20040 -tp20041 -a(S'setSize/6' -p20042 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p20043 -tp20044 -a(S'setSizeHints/2' -p20045 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p20046 -tp20047 -a(S'setSizeHints/3' -p20048 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p20049 -tp20050 -a(S'setSizeHints/4' -p20051 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p20052 -tp20053 -a(S'setSizer/2' -p20054 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p20055 -tp20056 -a(S'setSizer/3' -p20057 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p20058 -tp20059 -a(S'setSizerAndFit/2' -p20060 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p20061 -tp20062 -a(S'setSizerAndFit/3' -p20063 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p20064 -tp20065 -a(S'setStateImageList/2' -p20066 -S'setStateImageList(${1:This}, ${2:ImageList}) $3' -p20067 -tp20068 -a(S'setThemeEnabled/2' -p20069 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p20070 -tp20071 -a(S'setToolTip/2' -p20072 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p20073 -tp20074 -a(S'setVirtualSize/2' -p20075 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p20076 -tp20077 -a(S'setVirtualSize/3' -p20078 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p20079 -tp20080 -a(S'setVirtualSizeHints/2' -p20081 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p20082 -tp20083 -a(S'setVirtualSizeHints/3' -p20084 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p20085 -tp20086 -a(S'setVirtualSizeHints/4' -p20087 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p20088 -tp20089 -a(S'setWindowStyle/2' -p20090 -S'setWindowStyle(${1:This}, ${2:Styles}) $3' -p20091 -tp20092 -a(S'setWindowStyleFlag/2' -p20093 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p20094 -tp20095 -a(S'setWindowVariant/2' -p20096 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p20097 -tp20098 -a(S'shouldInheritColours/1' -p20099 -S'shouldInheritColours(${1:This}) $2' -p20100 -tp20101 -a(S'show/1' -p20102 -S'show(${1:This}) $2' -p20103 -tp20104 -a(S'show/2' -p20105 -S'show(${1:This}, ${2:Options}) $3' -p20106 -tp20107 -a(S'sortChildren/2' -p20108 -S'sortChildren(${1:This}, ${2:Item}) $3' -p20109 -tp20110 -a(S'thaw/1' -p20111 -S'thaw(${1:This}) $2' -p20112 -tp20113 -a(S'toggle/2' -p20114 -S'toggle(${1:This}, ${2:Item}) $3' -p20115 -tp20116 -a(S'toggleItemSelection/2' -p20117 -S'toggleItemSelection(${1:This}, ${2:Item}) $3' -p20118 -tp20119 -a(S'transferDataFromWindow/1' -p20120 -S'transferDataFromWindow(${1:This}) $2' -p20121 -tp20122 -a(S'transferDataToWindow/1' -p20123 -S'transferDataToWindow(${1:This}) $2' -p20124 -tp20125 -a(S'unselect/1' -p20126 -S'unselect(${1:This}) $2' -p20127 -tp20128 -a(S'unselectAll/1' -p20129 -S'unselectAll(${1:This}) $2' -p20130 -tp20131 -a(S'unselectItem/2' -p20132 -S'unselectItem(${1:This}, ${2:Item}) $3' -p20133 -tp20134 -a(S'update/1' -p20135 -S'update(${1:This}) $2' -p20136 -tp20137 -a(S'updateWindowUI/1' -p20138 -S'updateWindowUI(${1:This}) $2' -p20139 -tp20140 -a(S'updateWindowUI/2' -p20141 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p20142 -tp20143 -a(S'validate/1' -p20144 -S'validate(${1:This}) $2' -p20145 -tp20146 -a(S'warpPointer/3' -p20147 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p20148 -tp20149 -asS'snmpm_net_if_mt' -p20150 -(lp20151 -(S'code_change/3' -p20152 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p20153 -tp20154 -a(S'filter_reset/1' -p20155 -S'filter_reset(${1:Pid}) $2' -p20156 -tp20157 -a(S'get_log_type/1' -p20158 -S'get_log_type(${1:Pid}) $2' -p20159 -tp20160 -a(S'handle_call/3' -p20161 -S'handle_call(${1:Req}, ${2:From}, ${3:State}) $4' -p20162 -tp20163 -a(S'handle_cast/2' -p20164 -S'handle_cast(${1:Msg}, ${2:State}) $3' -p20165 -tp20166 -a(S'handle_info/2' -p20167 -S'handle_info(${1:Info}, ${2:State}) $3' -p20168 -tp20169 -a(S'info/1' -p20170 -S'info(${1:Pid}) $2' -p20171 -tp20172 -a(S'inform_response/4' -p20173 -S'inform_response(${1:Pid}, ${2:Ref}, ${3:Addr}, ${4:Port}) $5' -p20174 -tp20175 -a(S'init/1' -p20176 -S'init(${1:Param1}) $2' -p20177 -tp20178 -a(S'note_store/2' -p20179 -S'note_store(${1:Pid}, ${2:NoteStore}) $3' -p20180 -tp20181 -a(S'send_pdu/6' -p20182 -S'send_pdu(${1:Pid}, ${2:Pdu}, ${3:Vsn}, ${4:MsgData}, ${5:Addr}, ${6:Port}) $7' -p20183 -tp20184 -a(S'send_pdu/7' -p20185 -S'send_pdu(${1:Pid}, ${2:Pdu}, ${3:Vsn}, ${4:MsgData}, ${5:Addr}, ${6:Port}, ${7:ExtraInfo}) $8' -p20186 -tp20187 -a(S'send_pdu/8' -p20188 -S'send_pdu() $1' -p20189 -tp20190 -a(S'set_log_type/2' -p20191 -S'set_log_type(${1:Pid}, ${2:NewType}) $3' -p20192 -tp20193 -a(S'start_link/2' -p20194 -S'start_link(${1:Server}, ${2:NoteStore}) $3' -p20195 -tp20196 -a(S'stop/1' -p20197 -S'stop(${1:Pid}) $2' -p20198 -tp20199 -a(S'terminate/2' -p20200 -S'terminate(${1:Reason}, ${2:Param2}) $3' -p20201 -tp20202 -a(S'verbosity/2' -p20203 -S'verbosity(${1:Pid}, ${2:V}) $3' -p20204 -tp20205 -asS'format_lib_supp' -p20206 -(lp20207 -(S'maxcol/2' -p20208 -S'maxcol(${1:Term}, ${2:OldMax}) $3' -p20209 -tp20210 -a(S'print_info/2' -p20211 -S'print_info(${1:Device}, ${2:Format}) $3' -p20212 -tp20213 -a(S'print_info/3' -p20214 -S'print_info(${1:Device}, ${2:Line}, ${3:Format}) $4' -p20215 -tp20216 -asS'dbg_wx_settings' -p20217 -(lp20218 -(S'load/3' -p20219 -S'load(${1:Win}, ${2:Pos}, ${3:SFile}) $4' -p20220 -tp20221 -a(S'save/3' -p20222 -S'save(${1:Win}, ${2:Pos}, ${3:SFile}) $4' -p20223 -tp20224 -asS'inet_tcp' -p20225 -(lp20226 -(S'accept/1' -p20227 -S'accept(${1:L}) $2' -p20228 -tp20229 -a(S'accept/2' -p20230 -S'accept(${1:L}, ${2:Timeout}) $3' -p20231 -tp20232 -a(S'close/1' -p20233 -S'close(${1:Socket}) $2' -p20234 -tp20235 -a(S'connect/3' -p20236 -S'connect(${1:Address}, ${2:Port}, ${3:Opts}) $4' -p20237 -tp20238 -a(S'connect/4' -p20239 -S'connect(${1:Address}, ${2:Port}, ${3:Opts}, ${4:Time}) $5' -p20240 -tp20241 -a(S'controlling_process/2' -p20242 -S'controlling_process(${1:Socket}, ${2:NewOwner}) $3' -p20243 -tp20244 -a(S'fdopen/2' -p20245 -S'fdopen(${1:Fd}, ${2:Opts}) $3' -p20246 -tp20247 -a(S'getaddr/1' -p20248 -S'getaddr(${1:Address}) $2' -p20249 -tp20250 -a(S'getaddr/2' -p20251 -S'getaddr(${1:Address}, ${2:Timer}) $3' -p20252 -tp20253 -a(S'getaddrs/1' -p20254 -S'getaddrs(${1:Address}) $2' -p20255 -tp20256 -a(S'getaddrs/2' -p20257 -S'getaddrs(${1:Address}, ${2:Timer}) $3' -p20258 -tp20259 -a(S'getserv/1' -p20260 -S'getserv(${1:Port}) $2' -p20261 -tp20262 -a(S'listen/2' -p20263 -S'listen(${1:Port}, ${2:Opts}) $3' -p20264 -tp20265 -a(S'recv/2' -p20266 -S'recv(${1:Socket}, ${2:Length}) $3' -p20267 -tp20268 -a(S'recv/3' -p20269 -S'recv(${1:Socket}, ${2:Length}, ${3:Timeout}) $4' -p20270 -tp20271 -a(S'send/2' -p20272 -S'send(${1:Socket}, ${2:Packet}) $3' -p20273 -tp20274 -a(S'send/3' -p20275 -S'send(${1:Socket}, ${2:Packet}, ${3:Opts}) $4' -p20276 -tp20277 -a(S'shutdown/2' -p20278 -S'shutdown(${1:Socket}, ${2:How}) $3' -p20279 -tp20280 -a(S'unrecv/2' -p20281 -S'unrecv(${1:Socket}, ${2:Data}) $3' -p20282 -tp20283 -asS'CosNotifyFilter_MappingFilter' -p20284 -(lp20285 -(S"'_get_constraint_grammar'/1" -p20286 -S"'_get_constraint_grammar'(${1:OE_THIS}) $2" -p20287 -tp20288 -a(S"'_get_constraint_grammar'/2" -p20289 -S"'_get_constraint_grammar'(${1:OE_THIS}, ${2:OE_Options}) $3" -p20290 -tp20291 -a(S"'_get_default_value'/1" -p20292 -S"'_get_default_value'(${1:OE_THIS}) $2" -p20293 -tp20294 -a(S"'_get_default_value'/2" -p20295 -S"'_get_default_value'(${1:OE_THIS}, ${2:OE_Options}) $3" -p20296 -tp20297 -a(S"'_get_value_type'/1" -p20298 -S"'_get_value_type'(${1:OE_THIS}) $2" -p20299 -tp20300 -a(S"'_get_value_type'/2" -p20301 -S"'_get_value_type'(${1:OE_THIS}, ${2:OE_Options}) $3" -p20302 -tp20303 -a(S'add_mapping_constraints/2' -p20304 -S'add_mapping_constraints(${1:OE_THIS}, ${2:Pair_list}) $3' -p20305 -tp20306 -a(S'add_mapping_constraints/3' -p20307 -S'add_mapping_constraints(${1:OE_THIS}, ${2:OE_Options}, ${3:Pair_list}) $4' -p20308 -tp20309 -a(S'code_change/3' -p20310 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p20311 -tp20312 -a(S'destroy/1' -p20313 -S'destroy(${1:OE_THIS}) $2' -p20314 -tp20315 -a(S'destroy/2' -p20316 -S'destroy(${1:OE_THIS}, ${2:OE_Options}) $3' -p20317 -tp20318 -a(S'get_all_mapping_constraints/1' -p20319 -S'get_all_mapping_constraints(${1:OE_THIS}) $2' -p20320 -tp20321 -a(S'get_all_mapping_constraints/2' -p20322 -S'get_all_mapping_constraints(${1:OE_THIS}, ${2:OE_Options}) $3' -p20323 -tp20324 -a(S'get_mapping_constraints/2' -p20325 -S'get_mapping_constraints(${1:OE_THIS}, ${2:Id_list}) $3' -p20326 -tp20327 -a(S'get_mapping_constraints/3' -p20328 -S'get_mapping_constraints(${1:OE_THIS}, ${2:OE_Options}, ${3:Id_list}) $4' -p20329 -tp20330 -a(S'handle_call/3' -p20331 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p20332 -tp20333 -a(S'handle_cast/2' -p20334 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p20335 -tp20336 -a(S'handle_info/2' -p20337 -S'handle_info(${1:Info}, ${2:State}) $3' -p20338 -tp20339 -a(S'init/1' -p20340 -S'init(${1:Env}) $2' -p20341 -tp20342 -a(S'match/2' -p20343 -S'match(${1:OE_THIS}, ${2:Filterable_data}) $3' -p20344 -tp20345 -a(S'match/3' -p20346 -S'match(${1:OE_THIS}, ${2:OE_Options}, ${3:Filterable_data}) $4' -p20347 -tp20348 -a(S'match_structured/2' -p20349 -S'match_structured(${1:OE_THIS}, ${2:Filterable_data}) $3' -p20350 -tp20351 -a(S'match_structured/3' -p20352 -S'match_structured(${1:OE_THIS}, ${2:OE_Options}, ${3:Filterable_data}) $4' -p20353 -tp20354 -a(S'match_typed/2' -p20355 -S'match_typed(${1:OE_THIS}, ${2:Filterable_data}) $3' -p20356 -tp20357 -a(S'match_typed/3' -p20358 -S'match_typed(${1:OE_THIS}, ${2:OE_Options}, ${3:Filterable_data}) $4' -p20359 -tp20360 -a(S'modify_mapping_constraints/3' -p20361 -S'modify_mapping_constraints(${1:OE_THIS}, ${2:Del_list}, ${3:Modify_list}) $4' -p20362 -tp20363 -a(S'modify_mapping_constraints/4' -p20364 -S'modify_mapping_constraints(${1:OE_THIS}, ${2:OE_Options}, ${3:Del_list}, ${4:Modify_list}) $5' -p20365 -tp20366 -a(S'oe_create/0' -p20367 -S'oe_create() $1' -p20368 -tp20369 -a(S'oe_create/1' -p20370 -S'oe_create(${1:Env}) $2' -p20371 -tp20372 -a(S'oe_create/2' -p20373 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p20374 -tp20375 -a(S'oe_create_link/0' -p20376 -S'oe_create_link() $1' -p20377 -tp20378 -a(S'oe_create_link/1' -p20379 -S'oe_create_link(${1:Env}) $2' -p20380 -tp20381 -a(S'oe_create_link/2' -p20382 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p20383 -tp20384 -a(S'oe_get_interface/0' -p20385 -S'oe_get_interface() $1' -p20386 -tp20387 -a(S'oe_is_a/1' -p20388 -S'oe_is_a(${1:Param1}) $2' -p20389 -tp20390 -a(S'oe_tc/1' -p20391 -S'oe_tc(${1:Param1}) $2' -p20392 -tp20393 -a(S'remove_all_mapping_constraints/1' -p20394 -S'remove_all_mapping_constraints(${1:OE_THIS}) $2' -p20395 -tp20396 -a(S'remove_all_mapping_constraints/2' -p20397 -S'remove_all_mapping_constraints(${1:OE_THIS}, ${2:OE_Options}) $3' -p20398 -tp20399 -a(S'terminate/2' -p20400 -S'terminate(${1:Reason}, ${2:State}) $3' -p20401 -tp20402 -a(S'typeID/0' -p20403 -S'typeID() $1' -p20404 -tp20405 -asS'megaco_per_encoder' -p20406 -(lp20407 -(S'decode_message/2' -p20408 -S'decode_message(${1:EC}, ${2:Binary}) $3' -p20409 -tp20410 -a(S'decode_message/3' -p20411 -S'decode_message(${1:EC}, ${2:Param2}, ${3:Binary}) $4' -p20412 -tp20413 -a(S'decode_mini_message/3' -p20414 -S'decode_mini_message(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p20415 -tp20416 -a(S'encode_action_reply/3' -p20417 -S'encode_action_reply(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p20418 -tp20419 -a(S'encode_action_request/3' -p20420 -S'encode_action_request(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p20421 -tp20422 -a(S'encode_action_requests/3' -p20423 -S'encode_action_requests(${1:Param1}, ${2:Param2}, ${3:ActReqs}) $4' -p20424 -tp20425 -a(S'encode_message/2' -p20426 -S'encode_message() $1' -p20427 -tp20428 -a(S'encode_message/3' -p20429 -S'encode_message(${1:EC}, ${2:Param2}, ${3:MegaMsg}) $4' -p20430 -tp20431 -a(S'encode_transaction/3' -p20432 -S'encode_transaction(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p20433 -tp20434 -a(S'version_of/2' -p20435 -S'version_of(${1:EC}, ${2:Binary}) $3' -p20436 -tp20437 -asS'CosNotifyFilter_FilterFactory_impl' -p20438 -(lp20439 -(S'code_change/3' -p20440 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p20441 -tp20442 -a(S'create_filter/3' -p20443 -S'create_filter(${1:OE_THIS}, ${2:State}, ${3:InitGrammar}) $4' -p20444 -tp20445 -a(S'create_mapping_filter/4' -p20446 -S'create_mapping_filter(${1:OE_THIS}, ${2:State}, ${3:InitGrammar}, ${4:DefVal}) $5' -p20447 -tp20448 -a(S'handle_info/2' -p20449 -S'handle_info(${1:Param1}, ${2:State}) $3' -p20450 -tp20451 -a(S'init/1' -p20452 -S'init(${1:Options}) $2' -p20453 -tp20454 -a(S'terminate/2' -p20455 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p20456 -tp20457 -asS'CosNotifyComm_SequencePushSupplier' -p20458 -(lp20459 -(S'code_change/3' -p20460 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p20461 -tp20462 -a(S'disconnect_sequence_push_supplier/1' -p20463 -S'disconnect_sequence_push_supplier(${1:OE_THIS}) $2' -p20464 -tp20465 -a(S'disconnect_sequence_push_supplier/2' -p20466 -S'disconnect_sequence_push_supplier(${1:OE_THIS}, ${2:OE_Options}) $3' -p20467 -tp20468 -a(S'handle_call/3' -p20469 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p20470 -tp20471 -a(S'handle_cast/2' -p20472 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p20473 -tp20474 -a(S'handle_info/2' -p20475 -S'handle_info(${1:Param1}, ${2:State}) $3' -p20476 -tp20477 -a(S'init/1' -p20478 -S'init(${1:Env}) $2' -p20479 -tp20480 -a(S'oe_create/0' -p20481 -S'oe_create() $1' -p20482 -tp20483 -a(S'oe_create/1' -p20484 -S'oe_create(${1:Env}) $2' -p20485 -tp20486 -a(S'oe_create/2' -p20487 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p20488 -tp20489 -a(S'oe_create_link/0' -p20490 -S'oe_create_link() $1' -p20491 -tp20492 -a(S'oe_create_link/1' -p20493 -S'oe_create_link(${1:Env}) $2' -p20494 -tp20495 -a(S'oe_create_link/2' -p20496 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p20497 -tp20498 -a(S'oe_get_interface/0' -p20499 -S'oe_get_interface() $1' -p20500 -tp20501 -a(S'oe_is_a/1' -p20502 -S'oe_is_a(${1:Param1}) $2' -p20503 -tp20504 -a(S'oe_tc/1' -p20505 -S'oe_tc(${1:Param1}) $2' -p20506 -tp20507 -a(S'subscription_change/3' -p20508 -S'subscription_change(${1:OE_THIS}, ${2:Added}, ${3:Removed}) $4' -p20509 -tp20510 -a(S'subscription_change/4' -p20511 -S'subscription_change(${1:OE_THIS}, ${2:OE_Options}, ${3:Added}, ${4:Removed}) $5' -p20512 -tp20513 -a(S'terminate/2' -p20514 -S'terminate(${1:Reason}, ${2:State}) $3' -p20515 -tp20516 -a(S'typeID/0' -p20517 -S'typeID() $1' -p20518 -tp20519 -asS'wxHelpEvent' -p20520 -(lp20521 -(S'getId/1' -p20522 -S'getId(${1:This}) $2' -p20523 -tp20524 -a(S'getOrigin/1' -p20525 -S'getOrigin(${1:This}) $2' -p20526 -tp20527 -a(S'getPosition/1' -p20528 -S'getPosition(${1:This}) $2' -p20529 -tp20530 -a(S'getSkipped/1' -p20531 -S'getSkipped(${1:This}) $2' -p20532 -tp20533 -a(S'getTimestamp/1' -p20534 -S'getTimestamp(${1:This}) $2' -p20535 -tp20536 -a(S'isCommandEvent/1' -p20537 -S'isCommandEvent(${1:This}) $2' -p20538 -tp20539 -a(S'parent_class/1' -p20540 -S'parent_class(${1:Param1}) $2' -p20541 -tp20542 -a(S'resumePropagation/2' -p20543 -S'resumePropagation(${1:This}, ${2:PropagationLevel}) $3' -p20544 -tp20545 -a(S'setOrigin/2' -p20546 -S'setOrigin(${1:This}, ${2:Origin}) $3' -p20547 -tp20548 -a(S'setPosition/2' -p20549 -S'setPosition(${1:This}, ${2:Pos}) $3' -p20550 -tp20551 -a(S'shouldPropagate/1' -p20552 -S'shouldPropagate(${1:This}) $2' -p20553 -tp20554 -a(S'skip/1' -p20555 -S'skip(${1:This}) $2' -p20556 -tp20557 -a(S'skip/2' -p20558 -S'skip(${1:This}, ${2:Options}) $3' -p20559 -tp20560 -a(S'stopPropagation/1' -p20561 -S'stopPropagation(${1:This}) $2' -p20562 -tp20563 -asS'orber_ifr_irobject' -p20564 -(lp20565 -(S"'_get_def_kind'/1" -p20566 -S"'_get_def_kind'(${1:Param1}) $2" -p20567 -tp20568 -a(S'destroy/1' -p20569 -S'destroy(${1:L}) $2' -p20570 -tp20571 -asS'observer' -p20572 -(lp20573 -(S'start/0' -p20574 -S'start() $1' -p20575 -tp20576 -asS'asn1ct_constructed_ber_bin_v2' -p20577 -(lp20578 -(S'gen_decode_choice/3' -p20579 -S'gen_decode_choice(${1:Erules}, ${2:Typename}, ${3:D}) $4' -p20580 -tp20581 -a(S'gen_decode_sequence/3' -p20582 -S'gen_decode_sequence(${1:Erules}, ${2:Typename}, ${3:D}) $4' -p20583 -tp20584 -a(S'gen_decode_set/3' -p20585 -S'gen_decode_set(${1:Erules}, ${2:Typename}, ${3:D}) $4' -p20586 -tp20587 -a(S'gen_decode_sof/4' -p20588 -S'gen_decode_sof(${1:Erules}, ${2:TypeName}, ${3:Param3}, ${4:D}) $5' -p20589 -tp20590 -a(S'gen_encode_choice/3' -p20591 -S'gen_encode_choice(${1:Erules}, ${2:Typename}, ${3:D}) $4' -p20592 -tp20593 -a(S'gen_encode_sequence/3' -p20594 -S'gen_encode_sequence(${1:Erules}, ${2:Typename}, ${3:D}) $4' -p20595 -tp20596 -a(S'gen_encode_set/3' -p20597 -S'gen_encode_set(${1:Erules}, ${2:Typename}, ${3:D}) $4' -p20598 -tp20599 -a(S'gen_encode_sof/4' -p20600 -S'gen_encode_sof(${1:Erules}, ${2:Typename}, ${3:Param3}, ${4:D}) $5' -p20601 -tp20602 -asS'prim_inet' -p20603 -(lp20604 -(S'accept/1' -p20605 -S'accept(${1:L}) $2' -p20606 -tp20607 -a(S'accept/2' -p20608 -S'accept(${1:L}, ${2:Time}) $3' -p20609 -tp20610 -a(S'async_accept/2' -p20611 -S'async_accept(${1:L}, ${2:Time}) $3' -p20612 -tp20613 -a(S'async_connect/4' -p20614 -S'async_connect(${1:S}, ${2:IP}, ${3:Port}, ${4:Time}) $5' -p20615 -tp20616 -a(S'async_recv/3' -p20617 -S'async_recv(${1:S}, ${2:Length}, ${3:Time}) $4' -p20618 -tp20619 -a(S'attach/1' -p20620 -S'attach(${1:S}) $2' -p20621 -tp20622 -a(S'bind/3' -p20623 -S'bind(${1:S}, ${2:Op}, ${3:Addrs}) $4' -p20624 -tp20625 -a(S'chgopt/3' -p20626 -S'chgopt(${1:S}, ${2:Opt}, ${3:Value}) $4' -p20627 -tp20628 -a(S'chgopts/2' -p20629 -S'chgopts(${1:S}, ${2:Opts}) $3' -p20630 -tp20631 -a(S'close/1' -p20632 -S'close(${1:S}) $2' -p20633 -tp20634 -a(S'connect/3' -p20635 -S'connect(${1:S}, ${2:IP}, ${3:Port}) $4' -p20636 -tp20637 -a(S'connect/4' -p20638 -S'connect(${1:S}, ${2:IP}, ${3:Port}, ${4:Time}) $5' -p20639 -tp20640 -a(S'detach/1' -p20641 -S'detach(${1:S}) $2' -p20642 -tp20643 -a(S'fdopen/4' -p20644 -S'fdopen(${1:Protocol}, ${2:Family}, ${3:Type}, ${4:Fd}) $5' -p20645 -tp20646 -a(S'getfd/1' -p20647 -S'getfd(${1:S}) $2' -p20648 -tp20649 -a(S'gethostname/1' -p20650 -S'gethostname(${1:S}) $2' -p20651 -tp20652 -a(S'getifaddrs/1' -p20653 -S'getifaddrs(${1:S}) $2' -p20654 -tp20655 -a(S'getiflist/1' -p20656 -S'getiflist(${1:S}) $2' -p20657 -tp20658 -a(S'getindex/1' -p20659 -S'getindex(${1:S}) $2' -p20660 -tp20661 -a(S'getopt/2' -p20662 -S'getopt(${1:S}, ${2:Opt}) $3' -p20663 -tp20664 -a(S'getopts/2' -p20665 -S'getopts(${1:S}, ${2:Opts}) $3' -p20666 -tp20667 -a(S'getservbyname/3' -p20668 -S'getservbyname(${1:S}, ${2:Name}, ${3:Proto}) $4' -p20669 -tp20670 -a(S'getservbyport/3' -p20671 -S'getservbyport(${1:S}, ${2:Port}, ${3:Proto}) $4' -p20672 -tp20673 -a(S'getstat/2' -p20674 -S'getstat(${1:S}, ${2:Stats}) $3' -p20675 -tp20676 -a(S'getstatus/1' -p20677 -S'getstatus(${1:S}) $2' -p20678 -tp20679 -a(S'gettype/1' -p20680 -S'gettype(${1:S}) $2' -p20681 -tp20682 -a(S'ifget/3' -p20683 -S'ifget(${1:S}, ${2:Name}, ${3:Opts}) $4' -p20684 -tp20685 -a(S'ifset/3' -p20686 -S'ifset(${1:S}, ${2:Name}, ${3:Opts}) $4' -p20687 -tp20688 -a(S'ignorefd/2' -p20689 -S'ignorefd(${1:S}, ${2:Bool}) $3' -p20690 -tp20691 -a(S'is_sockopt_val/2' -p20692 -S'is_sockopt_val(${1:Opt}, ${2:Val}) $3' -p20693 -tp20694 -a(S'listen/1' -p20695 -S'listen(${1:S}) $2' -p20696 -tp20697 -a(S'listen/2' -p20698 -S'listen(${1:S}, ${2:BackLog}) $3' -p20699 -tp20700 -a(S'open/3' -p20701 -S'open(${1:Protocol}, ${2:Family}, ${3:Type}) $4' -p20702 -tp20703 -a(S'peeloff/2' -p20704 -S'peeloff(${1:S}, ${2:AssocId}) $3' -p20705 -tp20706 -a(S'peername/1' -p20707 -S'peername(${1:S}) $2' -p20708 -tp20709 -a(S'recv/2' -p20710 -S'recv(${1:S}, ${2:Length}) $3' -p20711 -tp20712 -a(S'recv/3' -p20713 -S'recv(${1:S}, ${2:Length}, ${3:Time}) $4' -p20714 -tp20715 -a(S'recvfrom/2' -p20716 -S'recvfrom(${1:S}, ${2:Length}) $3' -p20717 -tp20718 -a(S'recvfrom/3' -p20719 -S'recvfrom(${1:S}, ${2:Length}, ${3:Param3}) $4' -p20720 -tp20721 -a(S'send/2' -p20722 -S'send(${1:S}, ${2:Data}) $3' -p20723 -tp20724 -a(S'send/3' -p20725 -S'send(${1:S}, ${2:Data}, ${3:OptList}) $4' -p20726 -tp20727 -a(S'sendmsg/3' -p20728 -S'sendmsg(${1:S}, ${2:SRI}, ${3:Data}) $4' -p20729 -tp20730 -a(S'sendto/4' -p20731 -S'sendto() $1' -p20732 -tp20733 -a(S'setopt/3' -p20734 -S'setopt(${1:S}, ${2:Opt}, ${3:Value}) $4' -p20735 -tp20736 -a(S'setopts/2' -p20737 -S'setopts(${1:S}, ${2:Opts}) $3' -p20738 -tp20739 -a(S'setpeername/2' -p20740 -S'setpeername(${1:S}, ${2:Param2}) $3' -p20741 -tp20742 -a(S'setsockname/2' -p20743 -S'setsockname(${1:S}, ${2:Param2}) $3' -p20744 -tp20745 -a(S'shutdown/2' -p20746 -S'shutdown(${1:S}, ${2:Param2}) $3' -p20747 -tp20748 -a(S'sockname/1' -p20749 -S'sockname(${1:S}) $2' -p20750 -tp20751 -a(S'unrecv/2' -p20752 -S'unrecv(${1:S}, ${2:Data}) $3' -p20753 -tp20754 -asS'cerl_trees' -p20755 -(lp20756 -(S'depth/1' -p20757 -S'depth(${1:T}) $2' -p20758 -tp20759 -a(S'fold/3' -p20760 -S'fold(${1:F}, ${2:S}, ${3:T}) $4' -p20761 -tp20762 -a(S'free_variables/1' -p20763 -S'free_variables(${1:T}) $2' -p20764 -tp20765 -a(S'get_label/1' -p20766 -S'get_label(${1:T}) $2' -p20767 -tp20768 -a(S'label/1' -p20769 -S'label(${1:T}) $2' -p20770 -tp20771 -a(S'label/2' -p20772 -S'label(${1:T}, ${2:N}) $3' -p20773 -tp20774 -a(S'map/2' -p20775 -S'map(${1:F}, ${2:T}) $3' -p20776 -tp20777 -a(S'mapfold/3' -p20778 -S'mapfold(${1:F}, ${2:S0}, ${3:T}) $4' -p20779 -tp20780 -a(S'size/1' -p20781 -S'size(${1:T}) $2' -p20782 -tp20783 -a(S'variables/1' -p20784 -S'variables(${1:T}) $2' -p20785 -tp20786 -asS'filename' -p20787 -(lp20788 -(S'absname/1' -p20789 -S'absname(${1:Filename}) $2' -p20790 -tp20791 -a(S'absname/2' -p20792 -S'absname(${1:Filename}, ${2:Dir}) $3' -p20793 -tp20794 -a(S'absname_join/2' -p20795 -S'absname_join(${1:Dir}, ${2:Filename}) $3' -p20796 -tp20797 -a(S'append/2' -p20798 -S'append(${1:Dir}, ${2:Name}) $3' -p20799 -tp20800 -a(S'basename/1' -p20801 -S'basename(${1:Filename}) $2' -p20802 -tp20803 -a(S'basename/2' -p20804 -S'basename(${1:Filename}, ${2:Ext}) $3' -p20805 -tp20806 -a(S'dirname/1' -p20807 -S'dirname(${1:Filename}) $2' -p20808 -tp20809 -a(S'extension/1' -p20810 -S'extension(${1:Filename}) $2' -p20811 -tp20812 -a(S'find_src/1' -p20813 -S'find_src(${1:Beam}) $2' -p20814 -tp20815 -a(S'find_src/2' -p20816 -S'find_src(${1:Beam}, ${2:Rules}) $3' -p20817 -tp20818 -a(S'flatten/1' -p20819 -S'flatten(${1:Filename}) $2' -p20820 -tp20821 -a(S'join/1' -p20822 -S'join(${1:Components}) $2' -p20823 -tp20824 -a(S'join/2' -p20825 -S'join(${1:Dir}, ${2:Filename}) $3' -p20826 -tp20827 -a(S'nativename/1' -p20828 -S'nativename(${1:Path}) $2' -p20829 -tp20830 -a(S'pathtype/1' -p20831 -S'pathtype(${1:Path}) $2' -p20832 -tp20833 -a(S'rootname/1' -p20834 -S'rootname(${1:Filename}) $2' -p20835 -tp20836 -a(S'rootname/2' -p20837 -S'rootname(${1:Filename}, ${2:OsType}) $3' -p20838 -tp20839 -a(S'split/1' -p20840 -S'split(${1:Filename}) $2' -p20841 -tp20842 -asS'CosTransactions_SubtransactionAwareResource' -p20843 -(lp20844 -(S'code_change/3' -p20845 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p20846 -tp20847 -a(S'commit/1' -p20848 -S'commit(${1:OE_THIS}) $2' -p20849 -tp20850 -a(S'commit/2' -p20851 -S'commit(${1:OE_THIS}, ${2:OE_Options}) $3' -p20852 -tp20853 -a(S'commit_one_phase/1' -p20854 -S'commit_one_phase(${1:OE_THIS}) $2' -p20855 -tp20856 -a(S'commit_one_phase/2' -p20857 -S'commit_one_phase(${1:OE_THIS}, ${2:OE_Options}) $3' -p20858 -tp20859 -a(S'commit_subtransaction/2' -p20860 -S'commit_subtransaction(${1:OE_THIS}, ${2:Parent}) $3' -p20861 -tp20862 -a(S'commit_subtransaction/3' -p20863 -S'commit_subtransaction(${1:OE_THIS}, ${2:OE_Options}, ${3:Parent}) $4' -p20864 -tp20865 -a(S'forget/1' -p20866 -S'forget(${1:OE_THIS}) $2' -p20867 -tp20868 -a(S'forget/2' -p20869 -S'forget(${1:OE_THIS}, ${2:OE_Options}) $3' -p20870 -tp20871 -a(S'handle_call/3' -p20872 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p20873 -tp20874 -a(S'handle_cast/2' -p20875 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p20876 -tp20877 -a(S'handle_info/2' -p20878 -S'handle_info(${1:Param1}, ${2:State}) $3' -p20879 -tp20880 -a(S'init/1' -p20881 -S'init(${1:Env}) $2' -p20882 -tp20883 -a(S'oe_create/0' -p20884 -S'oe_create() $1' -p20885 -tp20886 -a(S'oe_create/1' -p20887 -S'oe_create(${1:Env}) $2' -p20888 -tp20889 -a(S'oe_create/2' -p20890 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p20891 -tp20892 -a(S'oe_create_link/0' -p20893 -S'oe_create_link() $1' -p20894 -tp20895 -a(S'oe_create_link/1' -p20896 -S'oe_create_link(${1:Env}) $2' -p20897 -tp20898 -a(S'oe_create_link/2' -p20899 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p20900 -tp20901 -a(S'oe_get_interface/0' -p20902 -S'oe_get_interface() $1' -p20903 -tp20904 -a(S'oe_is_a/1' -p20905 -S'oe_is_a(${1:Param1}) $2' -p20906 -tp20907 -a(S'oe_tc/1' -p20908 -S'oe_tc(${1:Param1}) $2' -p20909 -tp20910 -a(S'prepare/1' -p20911 -S'prepare(${1:OE_THIS}) $2' -p20912 -tp20913 -a(S'prepare/2' -p20914 -S'prepare(${1:OE_THIS}, ${2:OE_Options}) $3' -p20915 -tp20916 -a(S'rollback/1' -p20917 -S'rollback(${1:OE_THIS}) $2' -p20918 -tp20919 -a(S'rollback/2' -p20920 -S'rollback(${1:OE_THIS}, ${2:OE_Options}) $3' -p20921 -tp20922 -a(S'rollback_subtransaction/1' -p20923 -S'rollback_subtransaction(${1:OE_THIS}) $2' -p20924 -tp20925 -a(S'rollback_subtransaction/2' -p20926 -S'rollback_subtransaction(${1:OE_THIS}, ${2:OE_Options}) $3' -p20927 -tp20928 -a(S'terminate/2' -p20929 -S'terminate(${1:Reason}, ${2:State}) $3' -p20930 -tp20931 -a(S'typeID/0' -p20932 -S'typeID() $1' -p20933 -tp20934 -asS'CosTransactions_Coordinator' -p20935 -(lp20936 -(S'code_change/3' -p20937 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p20938 -tp20939 -a(S'create_subtransaction/1' -p20940 -S'create_subtransaction(${1:OE_THIS}) $2' -p20941 -tp20942 -a(S'create_subtransaction/2' -p20943 -S'create_subtransaction(${1:OE_THIS}, ${2:OE_Options}) $3' -p20944 -tp20945 -a(S'get_parent_status/1' -p20946 -S'get_parent_status(${1:OE_THIS}) $2' -p20947 -tp20948 -a(S'get_parent_status/2' -p20949 -S'get_parent_status(${1:OE_THIS}, ${2:OE_Options}) $3' -p20950 -tp20951 -a(S'get_status/1' -p20952 -S'get_status(${1:OE_THIS}) $2' -p20953 -tp20954 -a(S'get_status/2' -p20955 -S'get_status(${1:OE_THIS}, ${2:OE_Options}) $3' -p20956 -tp20957 -a(S'get_top_level_status/1' -p20958 -S'get_top_level_status(${1:OE_THIS}) $2' -p20959 -tp20960 -a(S'get_top_level_status/2' -p20961 -S'get_top_level_status(${1:OE_THIS}, ${2:OE_Options}) $3' -p20962 -tp20963 -a(S'get_transaction_name/1' -p20964 -S'get_transaction_name(${1:OE_THIS}) $2' -p20965 -tp20966 -a(S'get_transaction_name/2' -p20967 -S'get_transaction_name(${1:OE_THIS}, ${2:OE_Options}) $3' -p20968 -tp20969 -a(S'get_txcontext/1' -p20970 -S'get_txcontext(${1:OE_THIS}) $2' -p20971 -tp20972 -a(S'get_txcontext/2' -p20973 -S'get_txcontext(${1:OE_THIS}, ${2:OE_Options}) $3' -p20974 -tp20975 -a(S'handle_call/3' -p20976 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p20977 -tp20978 -a(S'handle_cast/2' -p20979 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p20980 -tp20981 -a(S'handle_info/2' -p20982 -S'handle_info(${1:Param1}, ${2:State}) $3' -p20983 -tp20984 -a(S'hash_top_level_tran/1' -p20985 -S'hash_top_level_tran(${1:OE_THIS}) $2' -p20986 -tp20987 -a(S'hash_top_level_tran/2' -p20988 -S'hash_top_level_tran(${1:OE_THIS}, ${2:OE_Options}) $3' -p20989 -tp20990 -a(S'hash_transaction/1' -p20991 -S'hash_transaction(${1:OE_THIS}) $2' -p20992 -tp20993 -a(S'hash_transaction/2' -p20994 -S'hash_transaction(${1:OE_THIS}, ${2:OE_Options}) $3' -p20995 -tp20996 -a(S'init/1' -p20997 -S'init(${1:Env}) $2' -p20998 -tp20999 -a(S'is_ancestor_transaction/2' -p21000 -S'is_ancestor_transaction(${1:OE_THIS}, ${2:Tc}) $3' -p21001 -tp21002 -a(S'is_ancestor_transaction/3' -p21003 -S'is_ancestor_transaction(${1:OE_THIS}, ${2:OE_Options}, ${3:Tc}) $4' -p21004 -tp21005 -a(S'is_descendant_transaction/2' -p21006 -S'is_descendant_transaction(${1:OE_THIS}, ${2:Tc}) $3' -p21007 -tp21008 -a(S'is_descendant_transaction/3' -p21009 -S'is_descendant_transaction(${1:OE_THIS}, ${2:OE_Options}, ${3:Tc}) $4' -p21010 -tp21011 -a(S'is_related_transaction/2' -p21012 -S'is_related_transaction(${1:OE_THIS}, ${2:Tc}) $3' -p21013 -tp21014 -a(S'is_related_transaction/3' -p21015 -S'is_related_transaction(${1:OE_THIS}, ${2:OE_Options}, ${3:Tc}) $4' -p21016 -tp21017 -a(S'is_same_transaction/2' -p21018 -S'is_same_transaction(${1:OE_THIS}, ${2:Tc}) $3' -p21019 -tp21020 -a(S'is_same_transaction/3' -p21021 -S'is_same_transaction(${1:OE_THIS}, ${2:OE_Options}, ${3:Tc}) $4' -p21022 -tp21023 -a(S'is_top_level_transaction/1' -p21024 -S'is_top_level_transaction(${1:OE_THIS}) $2' -p21025 -tp21026 -a(S'is_top_level_transaction/2' -p21027 -S'is_top_level_transaction(${1:OE_THIS}, ${2:OE_Options}) $3' -p21028 -tp21029 -a(S'oe_create/0' -p21030 -S'oe_create() $1' -p21031 -tp21032 -a(S'oe_create/1' -p21033 -S'oe_create(${1:Env}) $2' -p21034 -tp21035 -a(S'oe_create/2' -p21036 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p21037 -tp21038 -a(S'oe_create_link/0' -p21039 -S'oe_create_link() $1' -p21040 -tp21041 -a(S'oe_create_link/1' -p21042 -S'oe_create_link(${1:Env}) $2' -p21043 -tp21044 -a(S'oe_create_link/2' -p21045 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p21046 -tp21047 -a(S'oe_get_interface/0' -p21048 -S'oe_get_interface() $1' -p21049 -tp21050 -a(S'oe_is_a/1' -p21051 -S'oe_is_a(${1:Param1}) $2' -p21052 -tp21053 -a(S'oe_tc/1' -p21054 -S'oe_tc(${1:Param1}) $2' -p21055 -tp21056 -a(S'register_resource/2' -p21057 -S'register_resource(${1:OE_THIS}, ${2:R}) $3' -p21058 -tp21059 -a(S'register_resource/3' -p21060 -S'register_resource(${1:OE_THIS}, ${2:OE_Options}, ${3:R}) $4' -p21061 -tp21062 -a(S'register_subtran_aware/2' -p21063 -S'register_subtran_aware(${1:OE_THIS}, ${2:R}) $3' -p21064 -tp21065 -a(S'register_subtran_aware/3' -p21066 -S'register_subtran_aware(${1:OE_THIS}, ${2:OE_Options}, ${3:R}) $4' -p21067 -tp21068 -a(S'rollback_only/1' -p21069 -S'rollback_only(${1:OE_THIS}) $2' -p21070 -tp21071 -a(S'rollback_only/2' -p21072 -S'rollback_only(${1:OE_THIS}, ${2:OE_Options}) $3' -p21073 -tp21074 -a(S'terminate/2' -p21075 -S'terminate(${1:Reason}, ${2:State}) $3' -p21076 -tp21077 -a(S'typeID/0' -p21078 -S'typeID() $1' -p21079 -tp21080 -asS'reltool_mod_win' -p21081 -(lp21082 -(S'init/6' -p21083 -S'init(${1:Parent}, ${2:WxEnv}, ${3:Xref}, ${4:RelPid}, ${5:C}, ${6:ModName}) $7' -p21084 -tp21085 -a(S'loop/1' -p21086 -S'loop(${1:S}) $2' -p21087 -tp21088 -a(S'raise/1' -p21089 -S'raise(${1:Pid}) $2' -p21090 -tp21091 -a(S'refresh/1' -p21092 -S'refresh(${1:Pid}) $2' -p21093 -tp21094 -a(S'start_link/5' -p21095 -S'start_link(${1:WxEnv}, ${2:Xref}, ${3:RelPid}, ${4:Common}, ${5:ModName}) $6' -p21096 -tp21097 -a(S'system_code_change/4' -p21098 -S'system_code_change(${1:S}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p21099 -tp21100 -a(S'system_continue/3' -p21101 -S'system_continue(${1:Param1}, ${2:Param2}, ${3:S}) $4' -p21102 -tp21103 -a(S'system_terminate/4' -p21104 -S'system_terminate(${1:Reason}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p21105 -tp21106 -asS'CosNotification_UnsupportedAdmin' -p21107 -(lp21108 -(S'id/0' -p21109 -S'id() $1' -p21110 -tp21111 -a(S'name/0' -p21112 -S'name() $1' -p21113 -tp21114 -a(S'tc/0' -p21115 -S'tc() $1' -p21116 -tp21117 -asS'CosTime_TIO_impl' -p21118 -(lp21119 -(S"'_get_time_interval'/2" -p21120 -S"'_get_time_interval'(${1:Param1}, ${2:State}) $3" -p21121 -tp21122 -a(S'code_change/3' -p21123 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p21124 -tp21125 -a(S'handle_info/2' -p21126 -S'handle_info(${1:Param1}, ${2:State}) $3' -p21127 -tp21128 -a(S'init/1' -p21129 -S'init(${1:Param1}) $2' -p21130 -tp21131 -a(S'overlaps/3' -p21132 -S'overlaps(${1:Param1}, ${2:State}, ${3:Interval}) $4' -p21133 -tp21134 -a(S'spans/3' -p21135 -S'spans(${1:Param1}, ${2:State}, ${3:Time}) $4' -p21136 -tp21137 -a(S'terminate/2' -p21138 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p21139 -tp21140 -a(S'time/2' -p21141 -S'time(${1:Param1}, ${2:State}) $3' -p21142 -tp21143 -asS'CosPropertyService_PropertyMode' -p21144 -(lp21145 -(S'id/0' -p21146 -S'id() $1' -p21147 -tp21148 -a(S'name/0' -p21149 -S'name() $1' -p21150 -tp21151 -a(S'tc/0' -p21152 -S'tc() $1' -p21153 -tp21154 -asS'wxPrintPreview' -p21155 -(lp21156 -(S'destroy/1' -p21157 -S'destroy(${1:This}) $2' -p21158 -tp21159 -a(S'getCanvas/1' -p21160 -S'getCanvas(${1:This}) $2' -p21161 -tp21162 -a(S'getCurrentPage/1' -p21163 -S'getCurrentPage(${1:This}) $2' -p21164 -tp21165 -a(S'getFrame/1' -p21166 -S'getFrame(${1:This}) $2' -p21167 -tp21168 -a(S'getMaxPage/1' -p21169 -S'getMaxPage(${1:This}) $2' -p21170 -tp21171 -a(S'getMinPage/1' -p21172 -S'getMinPage(${1:This}) $2' -p21173 -tp21174 -a(S'getPrintout/1' -p21175 -S'getPrintout(${1:This}) $2' -p21176 -tp21177 -a(S'getPrintoutForPrinting/1' -p21178 -S'getPrintoutForPrinting(${1:This}) $2' -p21179 -tp21180 -a(S'isOk/1' -p21181 -S'isOk(${1:This}) $2' -p21182 -tp21183 -a(S'new/1' -p21184 -S'new(${1:Printout}) $2' -p21185 -tp21186 -a(S'new/2' -p21187 -S'new(${1:Printout}, ${2:Param2}) $3' -p21188 -tp21189 -a(S'new/3' -p21190 -S'new(${1:Printout}, ${2:PrintoutForPrinting}, ${3:Data}) $4' -p21191 -tp21192 -a(S'paintPage/3' -p21193 -S'paintPage(${1:This}, ${2:Canvas}, ${3:Dc}) $4' -p21194 -tp21195 -a(S'parent_class/1' -p21196 -S'parent_class(${1:Param1}) $2' -p21197 -tp21198 -a(S'print/2' -p21199 -S'print(${1:This}, ${2:Interactive}) $3' -p21200 -tp21201 -a(S'renderPage/2' -p21202 -S'renderPage(${1:This}, ${2:PageNum}) $3' -p21203 -tp21204 -a(S'setCanvas/2' -p21205 -S'setCanvas(${1:This}, ${2:Canvas}) $3' -p21206 -tp21207 -a(S'setCurrentPage/2' -p21208 -S'setCurrentPage(${1:This}, ${2:PageNum}) $3' -p21209 -tp21210 -a(S'setFrame/2' -p21211 -S'setFrame(${1:This}, ${2:Frame}) $3' -p21212 -tp21213 -a(S'setPrintout/2' -p21214 -S'setPrintout(${1:This}, ${2:Printout}) $3' -p21215 -tp21216 -a(S'setZoom/2' -p21217 -S'setZoom(${1:This}, ${2:Percent}) $3' -p21218 -tp21219 -asS'mod_dir' -p21220 -(lp21221 -(S'do/1' -p21222 -S'do(${1:Info}) $2' -p21223 -tp21224 -asS'beam_block' -p21225 -(lp21226 -(S'module/2' -p21227 -S'module(${1:Param1}, ${2:Param2}) $3' -p21228 -tp21229 -asS'wxSashLayoutWindow' -p21230 -(lp21231 -(S'cacheBestSize/2' -p21232 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p21233 -tp21234 -a(S'captureMouse/1' -p21235 -S'captureMouse(${1:This}) $2' -p21236 -tp21237 -a(S'center/1' -p21238 -S'center(${1:This}) $2' -p21239 -tp21240 -a(S'center/2' -p21241 -S'center(${1:This}, ${2:Options}) $3' -p21242 -tp21243 -a(S'centerOnParent/1' -p21244 -S'centerOnParent(${1:This}) $2' -p21245 -tp21246 -a(S'centerOnParent/2' -p21247 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p21248 -tp21249 -a(S'centre/1' -p21250 -S'centre(${1:This}) $2' -p21251 -tp21252 -a(S'centre/2' -p21253 -S'centre(${1:This}, ${2:Options}) $3' -p21254 -tp21255 -a(S'centreOnParent/1' -p21256 -S'centreOnParent(${1:This}) $2' -p21257 -tp21258 -a(S'centreOnParent/2' -p21259 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p21260 -tp21261 -a(S'clearBackground/1' -p21262 -S'clearBackground(${1:This}) $2' -p21263 -tp21264 -a(S'clientToScreen/2' -p21265 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p21266 -tp21267 -a(S'clientToScreen/3' -p21268 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p21269 -tp21270 -a(S'close/1' -p21271 -S'close(${1:This}) $2' -p21272 -tp21273 -a(S'close/2' -p21274 -S'close(${1:This}, ${2:Options}) $3' -p21275 -tp21276 -a(S'connect/2' -p21277 -S'connect(${1:This}, ${2:EventType}) $3' -p21278 -tp21279 -a(S'connect/3' -p21280 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p21281 -tp21282 -a(S'convertDialogToPixels/2' -p21283 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p21284 -tp21285 -a(S'convertPixelsToDialog/2' -p21286 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p21287 -tp21288 -a(S'create/2' -p21289 -S'create(${1:This}, ${2:Parent}) $3' -p21290 -tp21291 -a(S'create/3' -p21292 -S'create(${1:This}, ${2:Parent}, ${3:Param3}) $4' -p21293 -tp21294 -a(S'destroy/1' -p21295 -S'destroy(${1:This}) $2' -p21296 -tp21297 -a(S'destroyChildren/1' -p21298 -S'destroyChildren(${1:This}) $2' -p21299 -tp21300 -a(S'disable/1' -p21301 -S'disable(${1:This}) $2' -p21302 -tp21303 -a(S'disconnect/1' -p21304 -S'disconnect(${1:This}) $2' -p21305 -tp21306 -a(S'disconnect/2' -p21307 -S'disconnect(${1:This}, ${2:EventType}) $3' -p21308 -tp21309 -a(S'disconnect/3' -p21310 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p21311 -tp21312 -a(S'enable/1' -p21313 -S'enable(${1:This}) $2' -p21314 -tp21315 -a(S'enable/2' -p21316 -S'enable(${1:This}, ${2:Options}) $3' -p21317 -tp21318 -a(S'findWindow/2' -p21319 -S'findWindow(${1:This}, ${2:Winid}) $3' -p21320 -tp21321 -a(S'fit/1' -p21322 -S'fit(${1:This}) $2' -p21323 -tp21324 -a(S'fitInside/1' -p21325 -S'fitInside(${1:This}) $2' -p21326 -tp21327 -a(S'freeze/1' -p21328 -S'freeze(${1:This}) $2' -p21329 -tp21330 -a(S'getAcceleratorTable/1' -p21331 -S'getAcceleratorTable(${1:This}) $2' -p21332 -tp21333 -a(S'getAlignment/1' -p21334 -S'getAlignment(${1:This}) $2' -p21335 -tp21336 -a(S'getBackgroundColour/1' -p21337 -S'getBackgroundColour(${1:This}) $2' -p21338 -tp21339 -a(S'getBackgroundStyle/1' -p21340 -S'getBackgroundStyle(${1:This}) $2' -p21341 -tp21342 -a(S'getBestSize/1' -p21343 -S'getBestSize(${1:This}) $2' -p21344 -tp21345 -a(S'getCaret/1' -p21346 -S'getCaret(${1:This}) $2' -p21347 -tp21348 -a(S'getCharHeight/1' -p21349 -S'getCharHeight(${1:This}) $2' -p21350 -tp21351 -a(S'getCharWidth/1' -p21352 -S'getCharWidth(${1:This}) $2' -p21353 -tp21354 -a(S'getChildren/1' -p21355 -S'getChildren(${1:This}) $2' -p21356 -tp21357 -a(S'getClientSize/1' -p21358 -S'getClientSize(${1:This}) $2' -p21359 -tp21360 -a(S'getContainingSizer/1' -p21361 -S'getContainingSizer(${1:This}) $2' -p21362 -tp21363 -a(S'getCursor/1' -p21364 -S'getCursor(${1:This}) $2' -p21365 -tp21366 -a(S'getDropTarget/1' -p21367 -S'getDropTarget(${1:This}) $2' -p21368 -tp21369 -a(S'getEventHandler/1' -p21370 -S'getEventHandler(${1:This}) $2' -p21371 -tp21372 -a(S'getExtraStyle/1' -p21373 -S'getExtraStyle(${1:This}) $2' -p21374 -tp21375 -a(S'getFont/1' -p21376 -S'getFont(${1:This}) $2' -p21377 -tp21378 -a(S'getForegroundColour/1' -p21379 -S'getForegroundColour(${1:This}) $2' -p21380 -tp21381 -a(S'getGrandParent/1' -p21382 -S'getGrandParent(${1:This}) $2' -p21383 -tp21384 -a(S'getHandle/1' -p21385 -S'getHandle(${1:This}) $2' -p21386 -tp21387 -a(S'getHelpText/1' -p21388 -S'getHelpText(${1:This}) $2' -p21389 -tp21390 -a(S'getId/1' -p21391 -S'getId(${1:This}) $2' -p21392 -tp21393 -a(S'getLabel/1' -p21394 -S'getLabel(${1:This}) $2' -p21395 -tp21396 -a(S'getMaxSize/1' -p21397 -S'getMaxSize(${1:This}) $2' -p21398 -tp21399 -a(S'getMaximumSizeX/1' -p21400 -S'getMaximumSizeX(${1:This}) $2' -p21401 -tp21402 -a(S'getMaximumSizeY/1' -p21403 -S'getMaximumSizeY(${1:This}) $2' -p21404 -tp21405 -a(S'getMinSize/1' -p21406 -S'getMinSize(${1:This}) $2' -p21407 -tp21408 -a(S'getMinimumSizeX/1' -p21409 -S'getMinimumSizeX(${1:This}) $2' -p21410 -tp21411 -a(S'getMinimumSizeY/1' -p21412 -S'getMinimumSizeY(${1:This}) $2' -p21413 -tp21414 -a(S'getName/1' -p21415 -S'getName(${1:This}) $2' -p21416 -tp21417 -a(S'getOrientation/1' -p21418 -S'getOrientation(${1:This}) $2' -p21419 -tp21420 -a(S'getParent/1' -p21421 -S'getParent(${1:This}) $2' -p21422 -tp21423 -a(S'getPosition/1' -p21424 -S'getPosition(${1:This}) $2' -p21425 -tp21426 -a(S'getRect/1' -p21427 -S'getRect(${1:This}) $2' -p21428 -tp21429 -a(S'getSashVisible/2' -p21430 -S'getSashVisible(${1:This}, ${2:Edge}) $3' -p21431 -tp21432 -a(S'getScreenPosition/1' -p21433 -S'getScreenPosition(${1:This}) $2' -p21434 -tp21435 -a(S'getScreenRect/1' -p21436 -S'getScreenRect(${1:This}) $2' -p21437 -tp21438 -a(S'getScrollPos/2' -p21439 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p21440 -tp21441 -a(S'getScrollRange/2' -p21442 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p21443 -tp21444 -a(S'getScrollThumb/2' -p21445 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p21446 -tp21447 -a(S'getSize/1' -p21448 -S'getSize(${1:This}) $2' -p21449 -tp21450 -a(S'getSizer/1' -p21451 -S'getSizer(${1:This}) $2' -p21452 -tp21453 -a(S'getTextExtent/2' -p21454 -S'getTextExtent(${1:This}, ${2:String}) $3' -p21455 -tp21456 -a(S'getTextExtent/3' -p21457 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p21458 -tp21459 -a(S'getToolTip/1' -p21460 -S'getToolTip(${1:This}) $2' -p21461 -tp21462 -a(S'getUpdateRegion/1' -p21463 -S'getUpdateRegion(${1:This}) $2' -p21464 -tp21465 -a(S'getVirtualSize/1' -p21466 -S'getVirtualSize(${1:This}) $2' -p21467 -tp21468 -a(S'getWindowStyleFlag/1' -p21469 -S'getWindowStyleFlag(${1:This}) $2' -p21470 -tp21471 -a(S'getWindowVariant/1' -p21472 -S'getWindowVariant(${1:This}) $2' -p21473 -tp21474 -a(S'hasCapture/1' -p21475 -S'hasCapture(${1:This}) $2' -p21476 -tp21477 -a(S'hasScrollbar/2' -p21478 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p21479 -tp21480 -a(S'hasTransparentBackground/1' -p21481 -S'hasTransparentBackground(${1:This}) $2' -p21482 -tp21483 -a(S'hide/1' -p21484 -S'hide(${1:This}) $2' -p21485 -tp21486 -a(S'inheritAttributes/1' -p21487 -S'inheritAttributes(${1:This}) $2' -p21488 -tp21489 -a(S'initDialog/1' -p21490 -S'initDialog(${1:This}) $2' -p21491 -tp21492 -a(S'invalidateBestSize/1' -p21493 -S'invalidateBestSize(${1:This}) $2' -p21494 -tp21495 -a(S'isEnabled/1' -p21496 -S'isEnabled(${1:This}) $2' -p21497 -tp21498 -a(S'isExposed/2' -p21499 -S'isExposed(${1:This}, ${2:Pt}) $3' -p21500 -tp21501 -a(S'isExposed/3' -p21502 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p21503 -tp21504 -a(S'isExposed/5' -p21505 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p21506 -tp21507 -a(S'isRetained/1' -p21508 -S'isRetained(${1:This}) $2' -p21509 -tp21510 -a(S'isShown/1' -p21511 -S'isShown(${1:This}) $2' -p21512 -tp21513 -a(S'isTopLevel/1' -p21514 -S'isTopLevel(${1:This}) $2' -p21515 -tp21516 -a(S'layout/1' -p21517 -S'layout(${1:This}) $2' -p21518 -tp21519 -a(S'lineDown/1' -p21520 -S'lineDown(${1:This}) $2' -p21521 -tp21522 -a(S'lineUp/1' -p21523 -S'lineUp(${1:This}) $2' -p21524 -tp21525 -a(S'lower/1' -p21526 -S'lower(${1:This}) $2' -p21527 -tp21528 -a(S'makeModal/1' -p21529 -S'makeModal(${1:This}) $2' -p21530 -tp21531 -a(S'makeModal/2' -p21532 -S'makeModal(${1:This}, ${2:Options}) $3' -p21533 -tp21534 -a(S'move/2' -p21535 -S'move(${1:This}, ${2:Pt}) $3' -p21536 -tp21537 -a(S'move/3' -p21538 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p21539 -tp21540 -a(S'move/4' -p21541 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p21542 -tp21543 -a(S'moveAfterInTabOrder/2' -p21544 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p21545 -tp21546 -a(S'moveBeforeInTabOrder/2' -p21547 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p21548 -tp21549 -a(S'navigate/1' -p21550 -S'navigate(${1:This}) $2' -p21551 -tp21552 -a(S'navigate/2' -p21553 -S'navigate(${1:This}, ${2:Options}) $3' -p21554 -tp21555 -a(S'new/0' -p21556 -S'new() $1' -p21557 -tp21558 -a(S'new/1' -p21559 -S'new(${1:Parent}) $2' -p21560 -tp21561 -a(S'new/2' -p21562 -S'new(${1:Parent}, ${2:Param2}) $3' -p21563 -tp21564 -a(S'pageDown/1' -p21565 -S'pageDown(${1:This}) $2' -p21566 -tp21567 -a(S'pageUp/1' -p21568 -S'pageUp(${1:This}) $2' -p21569 -tp21570 -a(S'parent_class/1' -p21571 -S'parent_class(${1:Param1}) $2' -p21572 -tp21573 -a(S'popEventHandler/1' -p21574 -S'popEventHandler(${1:This}) $2' -p21575 -tp21576 -a(S'popEventHandler/2' -p21577 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p21578 -tp21579 -a(S'popupMenu/2' -p21580 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p21581 -tp21582 -a(S'popupMenu/3' -p21583 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p21584 -tp21585 -a(S'popupMenu/4' -p21586 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p21587 -tp21588 -a(S'raise/1' -p21589 -S'raise(${1:This}) $2' -p21590 -tp21591 -a(S'refresh/1' -p21592 -S'refresh(${1:This}) $2' -p21593 -tp21594 -a(S'refresh/2' -p21595 -S'refresh(${1:This}, ${2:Options}) $3' -p21596 -tp21597 -a(S'refreshRect/2' -p21598 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p21599 -tp21600 -a(S'refreshRect/3' -p21601 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p21602 -tp21603 -a(S'releaseMouse/1' -p21604 -S'releaseMouse(${1:This}) $2' -p21605 -tp21606 -a(S'removeChild/2' -p21607 -S'removeChild(${1:This}, ${2:Child}) $3' -p21608 -tp21609 -a(S'reparent/2' -p21610 -S'reparent(${1:This}, ${2:NewParent}) $3' -p21611 -tp21612 -a(S'screenToClient/1' -p21613 -S'screenToClient(${1:This}) $2' -p21614 -tp21615 -a(S'screenToClient/2' -p21616 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p21617 -tp21618 -a(S'scrollLines/2' -p21619 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p21620 -tp21621 -a(S'scrollPages/2' -p21622 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p21623 -tp21624 -a(S'scrollWindow/3' -p21625 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p21626 -tp21627 -a(S'scrollWindow/4' -p21628 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p21629 -tp21630 -a(S'setAcceleratorTable/2' -p21631 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p21632 -tp21633 -a(S'setAlignment/2' -p21634 -S'setAlignment(${1:This}, ${2:Align}) $3' -p21635 -tp21636 -a(S'setAutoLayout/2' -p21637 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p21638 -tp21639 -a(S'setBackgroundColour/2' -p21640 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p21641 -tp21642 -a(S'setBackgroundStyle/2' -p21643 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p21644 -tp21645 -a(S'setCaret/2' -p21646 -S'setCaret(${1:This}, ${2:Caret}) $3' -p21647 -tp21648 -a(S'setClientSize/2' -p21649 -S'setClientSize(${1:This}, ${2:Size}) $3' -p21650 -tp21651 -a(S'setClientSize/3' -p21652 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p21653 -tp21654 -a(S'setContainingSizer/2' -p21655 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p21656 -tp21657 -a(S'setCursor/2' -p21658 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p21659 -tp21660 -a(S'setDefaultSize/2' -p21661 -S'setDefaultSize(${1:This}, ${2:Size}) $3' -p21662 -tp21663 -a(S'setDropTarget/2' -p21664 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p21665 -tp21666 -a(S'setExtraStyle/2' -p21667 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p21668 -tp21669 -a(S'setFocus/1' -p21670 -S'setFocus(${1:This}) $2' -p21671 -tp21672 -a(S'setFocusFromKbd/1' -p21673 -S'setFocusFromKbd(${1:This}) $2' -p21674 -tp21675 -a(S'setFont/2' -p21676 -S'setFont(${1:This}, ${2:Font}) $3' -p21677 -tp21678 -a(S'setForegroundColour/2' -p21679 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p21680 -tp21681 -a(S'setHelpText/2' -p21682 -S'setHelpText(${1:This}, ${2:Text}) $3' -p21683 -tp21684 -a(S'setId/2' -p21685 -S'setId(${1:This}, ${2:Winid}) $3' -p21686 -tp21687 -a(S'setLabel/2' -p21688 -S'setLabel(${1:This}, ${2:Label}) $3' -p21689 -tp21690 -a(S'setMaxSize/2' -p21691 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p21692 -tp21693 -a(S'setMaximumSizeX/2' -p21694 -S'setMaximumSizeX(${1:This}, ${2:Max}) $3' -p21695 -tp21696 -a(S'setMaximumSizeY/2' -p21697 -S'setMaximumSizeY(${1:This}, ${2:Max}) $3' -p21698 -tp21699 -a(S'setMinSize/2' -p21700 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p21701 -tp21702 -a(S'setMinimumSizeX/2' -p21703 -S'setMinimumSizeX(${1:This}, ${2:Min}) $3' -p21704 -tp21705 -a(S'setMinimumSizeY/2' -p21706 -S'setMinimumSizeY(${1:This}, ${2:Min}) $3' -p21707 -tp21708 -a(S'setName/2' -p21709 -S'setName(${1:This}, ${2:Name}) $3' -p21710 -tp21711 -a(S'setOrientation/2' -p21712 -S'setOrientation(${1:This}, ${2:Orient}) $3' -p21713 -tp21714 -a(S'setOwnBackgroundColour/2' -p21715 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p21716 -tp21717 -a(S'setOwnFont/2' -p21718 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p21719 -tp21720 -a(S'setOwnForegroundColour/2' -p21721 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p21722 -tp21723 -a(S'setPalette/2' -p21724 -S'setPalette(${1:This}, ${2:Pal}) $3' -p21725 -tp21726 -a(S'setSashVisible/3' -p21727 -S'setSashVisible(${1:This}, ${2:Edge}, ${3:Sash}) $4' -p21728 -tp21729 -a(S'setScrollPos/3' -p21730 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p21731 -tp21732 -a(S'setScrollPos/4' -p21733 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p21734 -tp21735 -a(S'setScrollbar/5' -p21736 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p21737 -tp21738 -a(S'setScrollbar/6' -p21739 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p21740 -tp21741 -a(S'setSize/2' -p21742 -S'setSize(${1:This}, ${2:Rect}) $3' -p21743 -tp21744 -a(S'setSize/3' -p21745 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p21746 -tp21747 -a(S'setSize/5' -p21748 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p21749 -tp21750 -a(S'setSize/6' -p21751 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p21752 -tp21753 -a(S'setSizeHints/2' -p21754 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p21755 -tp21756 -a(S'setSizeHints/3' -p21757 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p21758 -tp21759 -a(S'setSizeHints/4' -p21760 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p21761 -tp21762 -a(S'setSizer/2' -p21763 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p21764 -tp21765 -a(S'setSizer/3' -p21766 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p21767 -tp21768 -a(S'setSizerAndFit/2' -p21769 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p21770 -tp21771 -a(S'setSizerAndFit/3' -p21772 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p21773 -tp21774 -a(S'setThemeEnabled/2' -p21775 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p21776 -tp21777 -a(S'setToolTip/2' -p21778 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p21779 -tp21780 -a(S'setVirtualSize/2' -p21781 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p21782 -tp21783 -a(S'setVirtualSize/3' -p21784 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p21785 -tp21786 -a(S'setVirtualSizeHints/2' -p21787 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p21788 -tp21789 -a(S'setVirtualSizeHints/3' -p21790 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p21791 -tp21792 -a(S'setVirtualSizeHints/4' -p21793 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p21794 -tp21795 -a(S'setWindowStyle/2' -p21796 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p21797 -tp21798 -a(S'setWindowStyleFlag/2' -p21799 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p21800 -tp21801 -a(S'setWindowVariant/2' -p21802 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p21803 -tp21804 -a(S'shouldInheritColours/1' -p21805 -S'shouldInheritColours(${1:This}) $2' -p21806 -tp21807 -a(S'show/1' -p21808 -S'show(${1:This}) $2' -p21809 -tp21810 -a(S'show/2' -p21811 -S'show(${1:This}, ${2:Options}) $3' -p21812 -tp21813 -a(S'thaw/1' -p21814 -S'thaw(${1:This}) $2' -p21815 -tp21816 -a(S'transferDataFromWindow/1' -p21817 -S'transferDataFromWindow(${1:This}) $2' -p21818 -tp21819 -a(S'transferDataToWindow/1' -p21820 -S'transferDataToWindow(${1:This}) $2' -p21821 -tp21822 -a(S'update/1' -p21823 -S'update(${1:This}) $2' -p21824 -tp21825 -a(S'updateWindowUI/1' -p21826 -S'updateWindowUI(${1:This}) $2' -p21827 -tp21828 -a(S'updateWindowUI/2' -p21829 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p21830 -tp21831 -a(S'validate/1' -p21832 -S'validate(${1:This}) $2' -p21833 -tp21834 -a(S'warpPointer/3' -p21835 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p21836 -tp21837 -asS'snmpc_lib' -p21838 -(lp21839 -(S'add_cdata/2' -p21840 -S'add_cdata(${1:OffsetInRecord}, ${2:ListOfData}) $3' -p21841 -tp21842 -a(S'check_notification/3' -p21843 -S'check_notification(${1:Notif}, ${2:Line}, ${3:Notifs}) $4' -p21844 -tp21845 -a(S'check_notification_group/4' -p21846 -S'check_notification_group(${1:Name}, ${2:GroupObjects}, ${3:Line}, ${4:Status}) $5' -p21847 -tp21848 -a(S'check_object_group/4' -p21849 -S'check_object_group(${1:Name}, ${2:GroupObjects}, ${3:Line}, ${4:Status}) $5' -p21850 -tp21851 -a(S'check_of/1' -p21852 -S'check_of(${1:X}) $2' -p21853 -tp21854 -a(S'check_trap/2' -p21855 -S'check_trap(${1:Trap}, ${2:Traps}) $3' -p21856 -tp21857 -a(S'check_trap/3' -p21858 -S'check_trap(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p21859 -tp21860 -a(S'check_trap_name/3' -p21861 -S'check_trap_name(${1:EnterpriseName}, ${2:Line}, ${3:MEs}) $4' -p21862 -tp21863 -a(S'error/2' -p21864 -S'error(${1:FormatStr}, ${2:Data}) $3' -p21865 -tp21866 -a(S'error/3' -p21867 -S'error(${1:FormatStr}, ${2:Name}, ${3:Line}) $4' -p21868 -tp21869 -a(S'get_elem/2' -p21870 -S'get_elem(${1:MIB}, ${2:Idx}) $3' -p21871 -tp21872 -a(S'get_final_mib/2' -p21873 -S'get_final_mib(${1:Name}, ${2:Options}) $3' -p21874 -tp21875 -a(S'import/1' -p21876 -S'import(${1:ImportList}) $2' -p21877 -tp21878 -a(S'is_consistent/1' -p21879 -S'is_consistent(${1:Filenames}) $2' -p21880 -tp21881 -a(S'key1search/2' -p21882 -S'key1search(${1:Key}, ${2:List}) $3' -p21883 -tp21884 -a(S'key1search/3' -p21885 -S'key1search(${1:Key}, ${2:List}, ${3:Default}) $4' -p21886 -tp21887 -a(S'look_at/1' -p21888 -S'look_at(${1:FileName}) $2' -p21889 -tp21890 -a(S'makeInternalNode2/2' -p21891 -S'makeInternalNode2(${1:Imported}, ${2:Name}) $3' -p21892 -tp21893 -a(S'make_ASN1type/1' -p21894 -S'make_ASN1type(${1:Param1}) $2' -p21895 -tp21896 -a(S'make_cdata/1' -p21897 -S'make_cdata(${1:CDataArg}) $2' -p21898 -tp21899 -a(S'make_table_info/4' -p21900 -S'make_table_info(${1:Line}, ${2:TableName}, ${3:Param3}, ${4:ColumnMEs}) $5' -p21901 -tp21902 -a(S'make_variable_info/1' -p21903 -S'make_variable_info(${1:Param1}) $2' -p21904 -tp21905 -a(S'print_error/2' -p21906 -S'print_error(${1:FormatStr}, ${2:Data}) $3' -p21907 -tp21908 -a(S'print_error/3' -p21909 -S'print_error(${1:FormatStr}, ${2:Data}, ${3:Line}) $4' -p21910 -tp21911 -a(S'register_oid/4' -p21912 -S'register_oid(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p21913 -tp21914 -a(S'resolve_defval/1' -p21915 -S'resolve_defval(${1:ME}) $2' -p21916 -tp21917 -a(S'set_dir/2' -p21918 -S'set_dir(${1:File}, ${2:NewDir}) $3' -p21919 -tp21920 -a(S'test_father/4' -p21921 -S'test_father(${1:FatherName}, ${2:NewVarName}, ${3:SubIndex}, ${4:Line}) $5' -p21922 -tp21923 -a(S'vprint/6' -p21924 -S'vprint(${1:Severity}, ${2:Mod}, ${3:Line}, ${4:MibLine}, ${5:F}, ${6:A}) $7' -p21925 -tp21926 -a(S'vvalidate/1' -p21927 -S'vvalidate(${1:V}) $2' -p21928 -tp21929 -asS'packages' -p21930 -(lp21931 -(S'concat/1' -p21932 -S'concat(${1:L}) $2' -p21933 -tp21934 -a(S'concat/2' -p21935 -S'concat(${1:A}, ${2:B}) $3' -p21936 -tp21937 -a(S'find_modules/1' -p21938 -S'find_modules(${1:P}) $2' -p21939 -tp21940 -a(S'find_modules/2' -p21941 -S'find_modules(${1:P}, ${2:Paths}) $3' -p21942 -tp21943 -a(S'first/1' -p21944 -S'first(${1:Name}) $2' -p21945 -tp21946 -a(S'is_segmented/1' -p21947 -S'is_segmented(${1:Name}) $2' -p21948 -tp21949 -a(S'is_valid/1' -p21950 -S'is_valid(${1:Name}) $2' -p21951 -tp21952 -a(S'last/1' -p21953 -S'last(${1:Name}) $2' -p21954 -tp21955 -a(S'split/1' -p21956 -S'split(${1:Name}) $2' -p21957 -tp21958 -a(S'strip_last/1' -p21959 -S'strip_last(${1:Name}) $2' -p21960 -tp21961 -a(S'to_string/1' -p21962 -S'to_string(${1:Name}) $2' -p21963 -tp21964 -asS'ic_forms' -p21965 -(lp21966 -(S'clean_up_scope/1' -p21967 -S'clean_up_scope(${1:N}) $2' -p21968 -tp21969 -a(S'get_body/1' -p21970 -S'get_body(${1:X}) $2' -p21971 -tp21972 -a(S'get_dimension/1' -p21973 -S'get_dimension(${1:X}) $2' -p21974 -tp21975 -a(S'get_id/1' -p21976 -S'get_id(${1:Id}) $2' -p21977 -tp21978 -a(S'get_id2/1' -p21979 -S'get_id2(${1:X}) $2' -p21980 -tp21981 -a(S'get_idlist/1' -p21982 -S'get_idlist(${1:X}) $2' -p21983 -tp21984 -a(S'get_java_id/1' -p21985 -S'get_java_id(${1:Id}) $2' -p21986 -tp21987 -a(S'get_line/1' -p21988 -S'get_line(${1:X}) $2' -p21989 -tp21990 -a(S'get_tk/1' -p21991 -S'get_tk(${1:X}) $2' -p21992 -tp21993 -a(S'get_type/1' -p21994 -S'get_type(${1:X}) $2' -p21995 -tp21996 -a(S'get_type_code/3' -p21997 -S'get_type_code(${1:G}, ${2:N}, ${3:X}) $4' -p21998 -tp21999 -a(S'is_oneway/1' -p22000 -S'is_oneway(${1:X}) $2' -p22001 -tp22002 -a(S'search_tk/2' -p22003 -S'search_tk(${1:G}, ${2:IR_ID}) $3' -p22004 -tp22005 -asS'dbg_wx_trace' -p22006 -(lp22007 -(S'start/1' -p22008 -S'start(${1:Pid}) $2' -p22009 -tp22010 -a(S'start/3' -p22011 -S'start(${1:Pid}, ${2:TraceWin}, ${3:BackTrace}) $4' -p22012 -tp22013 -a(S'title/1' -p22014 -S'title(${1:Pid}) $2' -p22015 -tp22016 -asS'ic_struct_java' -p22017 -(lp22018 -(S'gen/3' -p22019 -S'gen(${1:G}, ${2:N}, ${3:X}) $4' -p22020 -tp22021 -asS'CosEventChannelAdmin_AlreadyConnected' -p22022 -(lp22023 -(S'id/0' -p22024 -S'id() $1' -p22025 -tp22026 -a(S'name/0' -p22027 -S'name() $1' -p22028 -tp22029 -a(S'tc/0' -p22030 -S'tc() $1' -p22031 -tp22032 -asS'tftp' -p22033 -(lp22034 -(S'behaviour_info/1' -p22035 -S'behaviour_info(${1:Param1}) $2' -p22036 -tp22037 -a(S'change_config/2' -p22038 -S'change_config(${1:Pid}, ${2:Options}) $3' -p22039 -tp22040 -a(S'info/1' -p22041 -S'info(${1:Pid}) $2' -p22042 -tp22043 -a(S'read_file/3' -p22044 -S'read_file(${1:RemoteFilename}, ${2:LocalFilename}, ${3:Options}) $4' -p22045 -tp22046 -a(S'service_info/1' -p22047 -S'service_info(${1:Pid}) $2' -p22048 -tp22049 -a(S'services/0' -p22050 -S'services() $1' -p22051 -tp22052 -a(S'start/0' -p22053 -S'start() $1' -p22054 -tp22055 -a(S'start/1' -p22056 -S'start(${1:Options}) $2' -p22057 -tp22058 -a(S'start_service/1' -p22059 -S'start_service(${1:Options}) $2' -p22060 -tp22061 -a(S'start_standalone/1' -p22062 -S'start_standalone(${1:Options}) $2' -p22063 -tp22064 -a(S'stop_service/1' -p22065 -S'stop_service(${1:Pid}) $2' -p22066 -tp22067 -a(S'write_file/3' -p22068 -S'write_file(${1:RemoteFilename}, ${2:LocalFilename}, ${3:Options}) $4' -p22069 -tp22070 -asS'megaco_text_mini_decoder' -p22071 -(lp22072 -(S'decode_message/2' -p22073 -S'decode_message(${1:Param1}, ${2:Bin}) $3' -p22074 -tp22075 -asS'CosNotifyFilter_ConstraintExp' -p22076 -(lp22077 -(S'id/0' -p22078 -S'id() $1' -p22079 -tp22080 -a(S'name/0' -p22081 -S'name() $1' -p22082 -tp22083 -a(S'tc/0' -p22084 -S'tc() $1' -p22085 -tp22086 -asS'CosNotification_NamedPropertyRange' -p22087 -(lp22088 -(S'id/0' -p22089 -S'id() $1' -p22090 -tp22091 -a(S'name/0' -p22092 -S'name() $1' -p22093 -tp22094 -a(S'tc/0' -p22095 -S'tc() $1' -p22096 -tp22097 -asS'mnesia_index' -p22098 -(lp22099 -(S'add_index/5' -p22100 -S'add_index(${1:Index}, ${2:Tab}, ${3:Key}, ${4:Obj}, ${5:Old}) $6' -p22101 -tp22102 -a(S'clear_index/4' -p22103 -S'clear_index(${1:Index}, ${2:Tab}, ${3:K}, ${4:Obj}) $5' -p22104 -tp22105 -a(S'db_get/2' -p22106 -S'db_get(${1:Param1}, ${2:K}) $3' -p22107 -tp22108 -a(S'db_match_erase/2' -p22109 -S'db_match_erase(${1:Param1}, ${2:Pat}) $3' -p22110 -tp22111 -a(S'db_put/2' -p22112 -S'db_put(${1:Param1}, ${2:V}) $3' -p22113 -tp22114 -a(S'del_index_table/3' -p22115 -S'del_index_table(${1:Tab}, ${2:Storage}, ${3:Pos}) $4' -p22116 -tp22117 -a(S'del_object_index/5' -p22118 -S'del_object_index(${1:Index}, ${2:Tab}, ${3:K}, ${4:Obj}, ${5:Old}) $6' -p22119 -tp22120 -a(S'del_transient/2' -p22121 -S'del_transient(${1:Tab}, ${2:Storage}) $3' -p22122 -tp22123 -a(S'del_transient/3' -p22124 -S'del_transient(${1:Tab}, ${2:Param2}, ${3:Storage}) $4' -p22125 -tp22126 -a(S'delete_index/3' -p22127 -S'delete_index(${1:Index}, ${2:Tab}, ${3:K}) $4' -p22128 -tp22129 -a(S'dirty_match_object/3' -p22130 -S'dirty_match_object(${1:Tab}, ${2:Pat}, ${3:Pos}) $4' -p22131 -tp22132 -a(S'dirty_read/3' -p22133 -S'dirty_read(${1:Tab}, ${2:IxKey}, ${3:Pos}) $4' -p22134 -tp22135 -a(S'dirty_read2/3' -p22136 -S'dirty_read2(${1:Tab}, ${2:IxKey}, ${3:Pos}) $4' -p22137 -tp22138 -a(S'dirty_select/3' -p22139 -S'dirty_select(${1:Tab}, ${2:Spec}, ${3:Pos}) $4' -p22140 -tp22141 -a(S'get_index_table/2' -p22142 -S'get_index_table(${1:Tab}, ${2:Pos}) $3' -p22143 -tp22144 -a(S'get_index_table/3' -p22145 -S'get_index_table(${1:Tab}, ${2:Param2}, ${3:Pos}) $4' -p22146 -tp22147 -a(S'init_indecies/3' -p22148 -S'init_indecies(${1:Tab}, ${2:Storage}, ${3:PosList}) $4' -p22149 -tp22150 -a(S'init_index/2' -p22151 -S'init_index(${1:Tab}, ${2:Storage}) $3' -p22152 -tp22153 -a(S'read/5' -p22154 -S'read(${1:Tid}, ${2:Store}, ${3:Tab}, ${4:IxKey}, ${5:Pos}) $6' -p22155 -tp22156 -a(S'tab2filename/2' -p22157 -S'tab2filename(${1:Tab}, ${2:Pos}) $3' -p22158 -tp22159 -a(S'tab2tmp_filename/2' -p22160 -S'tab2tmp_filename(${1:Tab}, ${2:Pos}) $3' -p22161 -tp22162 -asS'sys_pre_attributes' -p22163 -(lp22164 -(S'parse_transform/2' -p22165 -S'parse_transform(${1:Forms}, ${2:Options}) $3' -p22166 -tp22167 -asS'CosEventDomainAdmin_RouteSeq' -p22168 -(lp22169 -(S'id/0' -p22170 -S'id() $1' -p22171 -tp22172 -a(S'name/0' -p22173 -S'name() $1' -p22174 -tp22175 -a(S'tc/0' -p22176 -S'tc() $1' -p22177 -tp22178 -asS'cosTransactions' -p22179 -(lp22180 -(S'init/1' -p22181 -S'init(${1:Param1}) $2' -p22182 -tp22183 -a(S'start/0' -p22184 -S'start() $1' -p22185 -tp22186 -a(S'start/2' -p22187 -S'start(${1:Param1}, ${2:Param2}) $3' -p22188 -tp22189 -a(S'start_factory/0' -p22190 -S'start_factory() $1' -p22191 -tp22192 -a(S'start_factory/1' -p22193 -S'start_factory(${1:Args}) $2' -p22194 -tp22195 -a(S'stop/0' -p22196 -S'stop() $1' -p22197 -tp22198 -a(S'stop/1' -p22199 -S'stop(${1:Param1}) $2' -p22200 -tp22201 -a(S'stop_factory/1' -p22202 -S'stop_factory(${1:Fac}) $2' -p22203 -tp22204 -asS'wxNavigationKeyEvent' -p22205 -(lp22206 -(S'getCurrentFocus/1' -p22207 -S'getCurrentFocus(${1:This}) $2' -p22208 -tp22209 -a(S'getDirection/1' -p22210 -S'getDirection(${1:This}) $2' -p22211 -tp22212 -a(S'getId/1' -p22213 -S'getId(${1:This}) $2' -p22214 -tp22215 -a(S'getSkipped/1' -p22216 -S'getSkipped(${1:This}) $2' -p22217 -tp22218 -a(S'getTimestamp/1' -p22219 -S'getTimestamp(${1:This}) $2' -p22220 -tp22221 -a(S'isCommandEvent/1' -p22222 -S'isCommandEvent(${1:This}) $2' -p22223 -tp22224 -a(S'isFromTab/1' -p22225 -S'isFromTab(${1:This}) $2' -p22226 -tp22227 -a(S'isWindowChange/1' -p22228 -S'isWindowChange(${1:This}) $2' -p22229 -tp22230 -a(S'parent_class/1' -p22231 -S'parent_class(${1:Param1}) $2' -p22232 -tp22233 -a(S'resumePropagation/2' -p22234 -S'resumePropagation(${1:This}, ${2:PropagationLevel}) $3' -p22235 -tp22236 -a(S'setCurrentFocus/2' -p22237 -S'setCurrentFocus(${1:This}, ${2:Win}) $3' -p22238 -tp22239 -a(S'setDirection/2' -p22240 -S'setDirection(${1:This}, ${2:BForward}) $3' -p22241 -tp22242 -a(S'setFromTab/2' -p22243 -S'setFromTab(${1:This}, ${2:BIs}) $3' -p22244 -tp22245 -a(S'setWindowChange/2' -p22246 -S'setWindowChange(${1:This}, ${2:BIs}) $3' -p22247 -tp22248 -a(S'shouldPropagate/1' -p22249 -S'shouldPropagate(${1:This}) $2' -p22250 -tp22251 -a(S'skip/1' -p22252 -S'skip(${1:This}) $2' -p22253 -tp22254 -a(S'skip/2' -p22255 -S'skip(${1:This}, ${2:Options}) $3' -p22256 -tp22257 -a(S'stopPropagation/1' -p22258 -S'stopPropagation(${1:This}) $2' -p22259 -tp22260 -asS'code_server' -p22261 -(lp22262 -(S'call/2' -p22263 -S'call(${1:Name}, ${2:Req}) $3' -p22264 -tp22265 -a(S'error_msg/2' -p22266 -S'error_msg(${1:Format}, ${2:Args}) $3' -p22267 -tp22268 -a(S'info_msg/2' -p22269 -S'info_msg(${1:Format}, ${2:Args}) $3' -p22270 -tp22271 -a(S'start_link/1' -p22272 -S'start_link(${1:Args}) $2' -p22273 -tp22274 -a(S'system_code_change/4' -p22275 -S'system_code_change(${1:State}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p22276 -tp22277 -a(S'system_continue/3' -p22278 -S'system_continue(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p22279 -tp22280 -a(S'system_terminate/4' -p22281 -S'system_terminate(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p22282 -tp22283 -asS'erl_recomment' -p22284 -(lp22285 -(S'quick_recomment_forms/2' -p22286 -S'quick_recomment_forms(${1:Tree}, ${2:Cs}) $3' -p22287 -tp22288 -a(S'recomment_forms/2' -p22289 -S'recomment_forms(${1:Tree}, ${2:Cs}) $3' -p22290 -tp22291 -a(S'recomment_tree/2' -p22292 -S'recomment_tree(${1:Tree}, ${2:Cs}) $3' -p22293 -tp22294 -asS'cerl_clauses' -p22295 -(lp22296 -(S'any_catchall/1' -p22297 -S'any_catchall(${1:Param1}) $2' -p22298 -tp22299 -a(S'eval_guard/1' -p22300 -S'eval_guard(${1:E}) $2' -p22301 -tp22302 -a(S'is_catchall/1' -p22303 -S'is_catchall(${1:C}) $2' -p22304 -tp22305 -a(S'match/2' -p22306 -S'match(${1:P}, ${2:E}) $3' -p22307 -tp22308 -a(S'match_list/2' -p22309 -S'match_list(${1:Ps}, ${2:Es}) $3' -p22310 -tp22311 -a(S'reduce/1' -p22312 -S'reduce(${1:Cs}) $2' -p22313 -tp22314 -a(S'reduce/2' -p22315 -S'reduce(${1:Cs}, ${2:Es}) $3' -p22316 -tp22317 -asS'inet6_udp' -p22318 -(lp22319 -(S'close/1' -p22320 -S'close(${1:S}) $2' -p22321 -tp22322 -a(S'connect/3' -p22323 -S'connect() $1' -p22324 -tp22325 -a(S'controlling_process/2' -p22326 -S'controlling_process(${1:Socket}, ${2:NewOwner}) $3' -p22327 -tp22328 -a(S'fdopen/2' -p22329 -S'fdopen(${1:Fd}, ${2:Opts}) $3' -p22330 -tp22331 -a(S'getaddr/1' -p22332 -S'getaddr(${1:Address}) $2' -p22333 -tp22334 -a(S'getaddr/2' -p22335 -S'getaddr(${1:Address}, ${2:Timer}) $3' -p22336 -tp22337 -a(S'getserv/1' -p22338 -S'getserv(${1:Port}) $2' -p22339 -tp22340 -a(S'open/1' -p22341 -S'open(${1:Port}) $2' -p22342 -tp22343 -a(S'open/2' -p22344 -S'open(${1:Port}, ${2:Opts}) $3' -p22345 -tp22346 -a(S'recv/2' -p22347 -S'recv(${1:S}, ${2:Len}) $3' -p22348 -tp22349 -a(S'recv/3' -p22350 -S'recv(${1:S}, ${2:Len}, ${3:Time}) $4' -p22351 -tp22352 -a(S'send/2' -p22353 -S'send(${1:S}, ${2:Data}) $3' -p22354 -tp22355 -a(S'send/4' -p22356 -S'send() $1' -p22357 -tp22358 -asS'wxAuiManagerEvent' -p22359 -(lp22360 -(S'canVeto/1' -p22361 -S'canVeto(${1:This}) $2' -p22362 -tp22363 -a(S'getButton/1' -p22364 -S'getButton(${1:This}) $2' -p22365 -tp22366 -a(S'getDC/1' -p22367 -S'getDC(${1:This}) $2' -p22368 -tp22369 -a(S'getId/1' -p22370 -S'getId(${1:This}) $2' -p22371 -tp22372 -a(S'getManager/1' -p22373 -S'getManager(${1:This}) $2' -p22374 -tp22375 -a(S'getPane/1' -p22376 -S'getPane(${1:This}) $2' -p22377 -tp22378 -a(S'getSkipped/1' -p22379 -S'getSkipped(${1:This}) $2' -p22380 -tp22381 -a(S'getTimestamp/1' -p22382 -S'getTimestamp(${1:This}) $2' -p22383 -tp22384 -a(S'getVeto/1' -p22385 -S'getVeto(${1:This}) $2' -p22386 -tp22387 -a(S'isCommandEvent/1' -p22388 -S'isCommandEvent(${1:This}) $2' -p22389 -tp22390 -a(S'parent_class/1' -p22391 -S'parent_class(${1:Param1}) $2' -p22392 -tp22393 -a(S'resumePropagation/2' -p22394 -S'resumePropagation(${1:This}, ${2:PropagationLevel}) $3' -p22395 -tp22396 -a(S'setButton/2' -p22397 -S'setButton(${1:This}, ${2:B}) $3' -p22398 -tp22399 -a(S'setCanVeto/2' -p22400 -S'setCanVeto(${1:This}, ${2:Can_veto}) $3' -p22401 -tp22402 -a(S'setDC/2' -p22403 -S'setDC(${1:This}, ${2:Pdc}) $3' -p22404 -tp22405 -a(S'setManager/2' -p22406 -S'setManager(${1:This}, ${2:Mgr}) $3' -p22407 -tp22408 -a(S'setPane/2' -p22409 -S'setPane(${1:This}, ${2:P}) $3' -p22410 -tp22411 -a(S'shouldPropagate/1' -p22412 -S'shouldPropagate(${1:This}) $2' -p22413 -tp22414 -a(S'skip/1' -p22415 -S'skip(${1:This}) $2' -p22416 -tp22417 -a(S'skip/2' -p22418 -S'skip(${1:This}, ${2:Options}) $3' -p22419 -tp22420 -a(S'stopPropagation/1' -p22421 -S'stopPropagation(${1:This}) $2' -p22422 -tp22423 -a(S'veto/1' -p22424 -S'veto(${1:This}) $2' -p22425 -tp22426 -a(S'veto/2' -p22427 -S'veto(${1:This}, ${2:Param2}) $3' -p22428 -tp22429 -asS'mnesia_sup' -p22430 -(lp22431 -(S'init/1' -p22432 -S'init(${1:BadArg}) $2' -p22433 -tp22434 -a(S'kill/0' -p22435 -S'kill() $1' -p22436 -tp22437 -a(S'start/0' -p22438 -S'start() $1' -p22439 -tp22440 -a(S'start/2' -p22441 -S'start(${1:Param1}, ${2:Args}) $3' -p22442 -tp22443 -a(S'start_event/0' -p22444 -S'start_event() $1' -p22445 -tp22446 -a(S'stop/1' -p22447 -S'stop(${1:Param1}) $2' -p22448 -tp22449 -asS'zlib' -p22450 -(lp22451 -(S'adler32/2' -p22452 -S'adler32(${1:Z}, ${2:Data}) $3' -p22453 -tp22454 -a(S'adler32/3' -p22455 -S'adler32(${1:Z}, ${2:PrevAdler}, ${3:Data}) $4' -p22456 -tp22457 -a(S'adler32_combine/4' -p22458 -S'adler32_combine(${1:Z}, ${2:Adler1}, ${3:Adler2}, ${4:Size2}) $5' -p22459 -tp22460 -a(S'close/1' -p22461 -S'close(${1:Z}) $2' -p22462 -tp22463 -a(S'compress/1' -p22464 -S'compress(${1:Data}) $2' -p22465 -tp22466 -a(S'crc32/1' -p22467 -S'crc32(${1:Z}) $2' -p22468 -tp22469 -a(S'crc32/2' -p22470 -S'crc32(${1:Z}, ${2:Data}) $3' -p22471 -tp22472 -a(S'crc32/3' -p22473 -S'crc32(${1:Z}, ${2:PrevCRC}, ${3:Data}) $4' -p22474 -tp22475 -a(S'crc32_combine/4' -p22476 -S'crc32_combine(${1:Z}, ${2:CRC1}, ${3:CRC2}, ${4:Size2}) $5' -p22477 -tp22478 -a(S'deflate/2' -p22479 -S'deflate(${1:Z}, ${2:Data}) $3' -p22480 -tp22481 -a(S'deflate/3' -p22482 -S'deflate(${1:Z}, ${2:Data}, ${3:Flush}) $4' -p22483 -tp22484 -a(S'deflateEnd/1' -p22485 -S'deflateEnd(${1:Z}) $2' -p22486 -tp22487 -a(S'deflateInit/1' -p22488 -S'deflateInit(${1:Z}) $2' -p22489 -tp22490 -a(S'deflateInit/2' -p22491 -S'deflateInit(${1:Z}, ${2:Level}) $3' -p22492 -tp22493 -a(S'deflateInit/6' -p22494 -S'deflateInit(${1:Z}, ${2:Level}, ${3:Method}, ${4:WindowBits}, ${5:MemLevel}, ${6:Strategy}) $7' -p22495 -tp22496 -a(S'deflateParams/3' -p22497 -S'deflateParams(${1:Z}, ${2:Level}, ${3:Strategy}) $4' -p22498 -tp22499 -a(S'deflateReset/1' -p22500 -S'deflateReset(${1:Z}) $2' -p22501 -tp22502 -a(S'deflateSetDictionary/2' -p22503 -S'deflateSetDictionary(${1:Z}, ${2:Dictionary}) $3' -p22504 -tp22505 -a(S'getBufSize/1' -p22506 -S'getBufSize(${1:Z}) $2' -p22507 -tp22508 -a(S'getQSize/1' -p22509 -S'getQSize(${1:Z}) $2' -p22510 -tp22511 -a(S'gunzip/1' -p22512 -S'gunzip(${1:Data}) $2' -p22513 -tp22514 -a(S'gzip/1' -p22515 -S'gzip(${1:Data}) $2' -p22516 -tp22517 -a(S'inflate/2' -p22518 -S'inflate(${1:Z}, ${2:Data}) $3' -p22519 -tp22520 -a(S'inflateEnd/1' -p22521 -S'inflateEnd(${1:Z}) $2' -p22522 -tp22523 -a(S'inflateInit/1' -p22524 -S'inflateInit(${1:Z}) $2' -p22525 -tp22526 -a(S'inflateInit/2' -p22527 -S'inflateInit(${1:Z}, ${2:WindowBits}) $3' -p22528 -tp22529 -a(S'inflateReset/1' -p22530 -S'inflateReset(${1:Z}) $2' -p22531 -tp22532 -a(S'inflateSetDictionary/2' -p22533 -S'inflateSetDictionary(${1:Z}, ${2:Dictionary}) $3' -p22534 -tp22535 -a(S'inflateSync/1' -p22536 -S'inflateSync(${1:Z}) $2' -p22537 -tp22538 -a(S'open/0' -p22539 -S'open() $1' -p22540 -tp22541 -a(S'setBufSize/2' -p22542 -S'setBufSize(${1:Z}, ${2:Size}) $3' -p22543 -tp22544 -a(S'uncompress/1' -p22545 -S'uncompress(${1:Data}) $2' -p22546 -tp22547 -a(S'unzip/1' -p22548 -S'unzip(${1:Data}) $2' -p22549 -tp22550 -a(S'zip/1' -p22551 -S'zip(${1:Data}) $2' -p22552 -tp22553 -asS'nteventlog' -p22554 -(lp22555 -(S'code_change/3' -p22556 -S'code_change(${1:Vsn}, ${2:PrevState}, ${3:Param3}) $4' -p22557 -tp22558 -a(S'handle_call/3' -p22559 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p22560 -tp22561 -a(S'handle_cast/2' -p22562 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p22563 -tp22564 -a(S'handle_info/2' -p22565 -S'handle_info(${1:Param1}, ${2:State}) $3' -p22566 -tp22567 -a(S'init/1' -p22568 -S'init(${1:Param1}) $2' -p22569 -tp22570 -a(S'start/2' -p22571 -S'start(${1:Ident}, ${2:MFA}) $3' -p22572 -tp22573 -a(S'start_link/2' -p22574 -S'start_link(${1:Ident}, ${2:MFA}) $3' -p22575 -tp22576 -a(S'stop/0' -p22577 -S'stop() $1' -p22578 -tp22579 -a(S'terminate/2' -p22580 -S'terminate(${1:Param1}, ${2:State}) $3' -p22581 -tp22582 -asS'ic_cbe' -p22583 -(lp22584 -(S'emit_dealloc_stmts/3' -p22585 -S'emit_dealloc_stmts(${1:Fd}, ${2:Prefix}, ${3:AllocedPars}) $4' -p22586 -tp22587 -a(S'emit_decoding_stmt/10' -p22588 -S'emit_decoding_stmt() $1' -p22589 -tp22590 -a(S'emit_decoding_stmt/11' -p22591 -S'emit_decoding_stmt() $1' -p22592 -tp22593 -a(S'emit_encoding_stmt/6' -p22594 -S'emit_encoding_stmt(${1:G}, ${2:N}, ${3:Fd}, ${4:T}, ${5:LName}, ${6:Param6}) $7' -p22595 -tp22596 -a(S'emit_encoding_stmt/7' -p22597 -S'emit_encoding_stmt(${1:G}, ${2:N}, ${3:X}, ${4:Fd}, ${5:T}, ${6:LName}, ${7:Param7}) $8' -p22598 -tp22599 -a(S'emit_malloc_size_stmt/7' -p22600 -S'emit_malloc_size_stmt(${1:G}, ${2:N}, ${3:Fd}, ${4:T}, ${5:InBuffer}, ${6:Align}, ${7:CalcType}) $8' -p22601 -tp22602 -a(S'emit_tmp_variables/1' -p22603 -S'emit_tmp_variables(${1:Fd}) $2' -p22604 -tp22605 -a(S'extract_info/3' -p22606 -S'extract_info(${1:Param1}, ${2:N}, ${3:X}) $4' -p22607 -tp22608 -a(S'is_variable_size/1' -p22609 -S'is_variable_size(${1:Param1}) $2' -p22610 -tp22611 -a(S'is_variable_size/3' -p22612 -S'is_variable_size(${1:G}, ${2:N}, ${3:T}) $4' -p22613 -tp22614 -a(S'mk_c_type/3' -p22615 -S'mk_c_type(${1:G}, ${2:N}, ${3:S}) $4' -p22616 -tp22617 -a(S'mk_c_type/4' -p22618 -S'mk_c_type(${1:Param1}, ${2:N}, ${3:S}, ${4:Param4}) $5' -p22619 -tp22620 -a(S'mk_c_type2/3' -p22621 -S'mk_c_type2(${1:Param1}, ${2:N}, ${3:S}) $4' -p22622 -tp22623 -a(S'mk_dim/1' -p22624 -S'mk_dim(${1:Param1}) $2' -p22625 -tp22626 -a(S'mk_slice_dim/1' -p22627 -S'mk_slice_dim(${1:Args}) $2' -p22628 -tp22629 -a(S'mk_variable_name/1' -p22630 -S'mk_variable_name(${1:Var}) $2' -p22631 -tp22632 -a(S'normalize_type/1' -p22633 -S'normalize_type(${1:Type}) $2' -p22634 -tp22635 -a(S'store_tmp_decl/2' -p22636 -S'store_tmp_decl(${1:Format}, ${2:Args}) $3' -p22637 -tp22638 -asS'orber_ifr_typecode' -p22639 -(lp22640 -(S"'_length'/1" -p22641 -S"'_length'(${1:Param1}) $2" -p22642 -tp22643 -a(S'content_type/1' -p22644 -S'content_type(${1:Param1}) $2' -p22645 -tp22646 -a(S'default_index/1' -p22647 -S'default_index(${1:Param1}) $2' -p22648 -tp22649 -a(S'discriminator_type/1' -p22650 -S'discriminator_type(${1:Param1}) $2' -p22651 -tp22652 -a(S'equal/2' -p22653 -S'equal() $1' -p22654 -tp22655 -a(S'id/1' -p22656 -S'id(${1:Param1}) $2' -p22657 -tp22658 -a(S'kind/1' -p22659 -S'kind(${1:Param1}) $2' -p22660 -tp22661 -a(S'member_count/1' -p22662 -S'member_count(${1:Param1}) $2' -p22663 -tp22664 -a(S'member_label/2' -p22665 -S'member_label(${1:Param1}, ${2:Param2}) $3' -p22666 -tp22667 -a(S'member_name/2' -p22668 -S'member_name(${1:Param1}, ${2:Param2}) $3' -p22669 -tp22670 -a(S'member_type/2' -p22671 -S'member_type(${1:Param1}, ${2:Param2}) $3' -p22672 -tp22673 -a(S'name/1' -p22674 -S'name(${1:Param1}) $2' -p22675 -tp22676 -a(S'param_count/1' -p22677 -S'param_count(${1:Param1}) $2' -p22678 -tp22679 -a(S'parameter/2' -p22680 -S'parameter(${1:Param1}, ${2:Param2}) $3' -p22681 -tp22682 -asS'diameter_callback' -p22683 -(lp22684 -(S'handle_answer/4' -p22685 -S'handle_answer(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p22686 -tp22687 -a(S'handle_answer/5' -p22688 -S'handle_answer(${1:Pkt}, ${2:Req}, ${3:Svc}, ${4:Peer}, ${5:D}) $6' -p22689 -tp22690 -a(S'handle_error/4' -p22691 -S'handle_error(${1:Reason}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p22692 -tp22693 -a(S'handle_error/5' -p22694 -S'handle_error(${1:Reason}, ${2:Req}, ${3:Svc}, ${4:Peer}, ${5:D}) $6' -p22695 -tp22696 -a(S'handle_request/3' -p22697 -S'handle_request(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p22698 -tp22699 -a(S'handle_request/4' -p22700 -S'handle_request(${1:Pkt}, ${2:Svc}, ${3:Peer}, ${4:D}) $5' -p22701 -tp22702 -a(S'peer_down/3' -p22703 -S'peer_down(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p22704 -tp22705 -a(S'peer_down/4' -p22706 -S'peer_down(${1:Svc}, ${2:Peer}, ${3:State}, ${4:D}) $5' -p22707 -tp22708 -a(S'peer_up/3' -p22709 -S'peer_up(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p22710 -tp22711 -a(S'peer_up/4' -p22712 -S'peer_up(${1:Svc}, ${2:Peer}, ${3:State}, ${4:D}) $5' -p22713 -tp22714 -a(S'pick_peer/4' -p22715 -S'pick_peer(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p22716 -tp22717 -a(S'pick_peer/5' -p22718 -S'pick_peer(${1:PeersL}, ${2:PeersR}, ${3:Svc}, ${4:State}, ${5:D}) $6' -p22719 -tp22720 -a(S'prepare_request/3' -p22721 -S'prepare_request(${1:Pkt}, ${2:Param2}, ${3:Param3}) $4' -p22722 -tp22723 -a(S'prepare_request/4' -p22724 -S'prepare_request(${1:Pkt}, ${2:Svc}, ${3:Peer}, ${4:D}) $5' -p22725 -tp22726 -a(S'prepare_retransmit/3' -p22727 -S'prepare_retransmit(${1:Pkt}, ${2:Param2}, ${3:Param3}) $4' -p22728 -tp22729 -a(S'prepare_retransmit/4' -p22730 -S'prepare_retransmit(${1:Pkt}, ${2:Svc}, ${3:Peer}, ${4:D}) $5' -p22731 -tp22732 -asS'io' -p22733 -(lp22734 -(S'columns/0' -p22735 -S'columns() $1' -p22736 -tp22737 -a(S'columns/1' -p22738 -S'columns(${1:IoDevice}) $2' -p22739 -tp22740 -a(S'format/1' -p22741 -S'format(${1:Format}) $2' -p22742 -tp22743 -a(S'format/2' -p22744 -S'format(${1:Format}, ${2:Data}) $3' -p22745 -tp22746 -a(S'format/3' -p22747 -S'format(${1:IoDevice}, ${2:Format}, ${3:Data}) $4' -p22748 -tp22749 -a(S'fread/2' -p22750 -S'fread(${1:Prompt}, ${2:Format}) $3' -p22751 -tp22752 -a(S'fread/3' -p22753 -S'fread(${1:IoDevice}, ${2:Prompt}, ${3:Format}) $4' -p22754 -tp22755 -a(S'fwrite/1' -p22756 -S'fwrite(${1:Format}) $2' -p22757 -tp22758 -a(S'fwrite/2' -p22759 -S'fwrite(${1:Format}, ${2:Data}) $3' -p22760 -tp22761 -a(S'fwrite/3' -p22762 -S'fwrite(${1:IoDevice}, ${2:Format}, ${3:Data}) $4' -p22763 -tp22764 -a(S'get_chars/2' -p22765 -S'get_chars(${1:Prompt}, ${2:Count}) $3' -p22766 -tp22767 -a(S'get_chars/3' -p22768 -S'get_chars(${1:IoDevice}, ${2:Prompt}, ${3:Count}) $4' -p22769 -tp22770 -a(S'get_line/1' -p22771 -S'get_line(${1:Prompt}) $2' -p22772 -tp22773 -a(S'get_line/2' -p22774 -S'get_line(${1:IoDevice}, ${2:Prompt}) $3' -p22775 -tp22776 -a(S'get_password/0' -p22777 -S'get_password() $1' -p22778 -tp22779 -a(S'get_password/1' -p22780 -S'get_password(${1:Io}) $2' -p22781 -tp22782 -a(S'getopts/0' -p22783 -S'getopts() $1' -p22784 -tp22785 -a(S'getopts/1' -p22786 -S'getopts(${1:IoDevice}) $2' -p22787 -tp22788 -a(S'nl/0' -p22789 -S'nl() $1' -p22790 -tp22791 -a(S'nl/1' -p22792 -S'nl(${1:IoDevice}) $2' -p22793 -tp22794 -a(S'parse_erl_exprs/1' -p22795 -S'parse_erl_exprs(${1:Prompt}) $2' -p22796 -tp22797 -a(S'parse_erl_exprs/2' -p22798 -S'parse_erl_exprs(${1:IoDevice}, ${2:Prompt}) $3' -p22799 -tp22800 -a(S'parse_erl_exprs/3' -p22801 -S'parse_erl_exprs(${1:IoDevice}, ${2:Prompt}, ${3:StartLine}) $4' -p22802 -tp22803 -a(S'parse_erl_form/1' -p22804 -S'parse_erl_form(${1:Prompt}) $2' -p22805 -tp22806 -a(S'parse_erl_form/2' -p22807 -S'parse_erl_form(${1:IoDevice}, ${2:Prompt}) $3' -p22808 -tp22809 -a(S'parse_erl_form/3' -p22810 -S'parse_erl_form(${1:IoDevice}, ${2:Prompt}, ${3:StartLine}) $4' -p22811 -tp22812 -a(S'put_chars/1' -p22813 -S'put_chars(${1:CharData}) $2' -p22814 -tp22815 -a(S'put_chars/2' -p22816 -S'put_chars(${1:IoDevice}, ${2:IoData}) $3' -p22817 -tp22818 -a(S'read/1' -p22819 -S'read(${1:Prompt}) $2' -p22820 -tp22821 -a(S'read/2' -p22822 -S'read(${1:IoDevice}, ${2:Prompt}) $3' -p22823 -tp22824 -a(S'read/3' -p22825 -S'read(${1:IoDevice}, ${2:Prompt}, ${3:StartLine}) $4' -p22826 -tp22827 -a(S'request/1' -p22828 -S'request(${1:Request}) $2' -p22829 -tp22830 -a(S'request/2' -p22831 -S'request(${1:Pid}, ${2:Request}) $3' -p22832 -tp22833 -a(S'requests/1' -p22834 -S'requests(${1:Requests}) $2' -p22835 -tp22836 -a(S'requests/2' -p22837 -S'requests(${1:Pid}, ${2:Requests}) $3' -p22838 -tp22839 -a(S'rows/0' -p22840 -S'rows() $1' -p22841 -tp22842 -a(S'rows/1' -p22843 -S'rows(${1:IoDevice}) $2' -p22844 -tp22845 -a(S'scan_erl_exprs/1' -p22846 -S'scan_erl_exprs(${1:Prompt}) $2' -p22847 -tp22848 -a(S'scan_erl_exprs/2' -p22849 -S'scan_erl_exprs(${1:Device}, ${2:Prompt}) $3' -p22850 -tp22851 -a(S'scan_erl_exprs/3' -p22852 -S'scan_erl_exprs(${1:Device}, ${2:Prompt}, ${3:StartLine}) $4' -p22853 -tp22854 -a(S'scan_erl_form/1' -p22855 -S'scan_erl_form(${1:Prompt}) $2' -p22856 -tp22857 -a(S'scan_erl_form/2' -p22858 -S'scan_erl_form(${1:IoDevice}, ${2:Prompt}) $3' -p22859 -tp22860 -a(S'scan_erl_form/3' -p22861 -S'scan_erl_form(${1:IoDevice}, ${2:Prompt}, ${3:StartLine}) $4' -p22862 -tp22863 -a(S'setopts/1' -p22864 -S'setopts(${1:Opts}) $2' -p22865 -tp22866 -a(S'setopts/2' -p22867 -S'setopts(${1:IoDevice}, ${2:Opts}) $3' -p22868 -tp22869 -a(S'write/1' -p22870 -S'write(${1:Term}) $2' -p22871 -tp22872 -a(S'write/2' -p22873 -S'write(${1:IoDevice}, ${2:Term}) $3' -p22874 -tp22875 -asS'ic' -p22876 -(lp22877 -(S'compile/3' -p22878 -S'compile(${1:File}, ${2:Param2}, ${3:Options}) $4' -p22879 -tp22880 -a(S'do_gen/4' -p22881 -S'do_gen(${1:Param1}, ${2:G}, ${3:File}, ${4:T}) $5' -p22882 -tp22883 -a(S'do_parse/2' -p22884 -S'do_parse(${1:G}, ${2:Tokens}) $3' -p22885 -tp22886 -a(S'do_scan/1' -p22887 -S'do_scan(${1:G}) $2' -p22888 -tp22889 -a(S'do_type/2' -p22890 -S'do_type(${1:G}, ${2:Form}) $3' -p22891 -tp22892 -a(S'filter_params/2' -p22893 -S'filter_params(${1:Filter}, ${2:Params}) $3' -p22894 -tp22895 -a(S'gen/1' -p22896 -S'gen(${1:ArgList}) $2' -p22897 -tp22898 -a(S'gen/2' -p22899 -S'gen(${1:File}, ${2:Opts}) $3' -p22900 -tp22901 -a(S'handle_preproc/4' -p22902 -S'handle_preproc(${1:G}, ${2:Param2}, ${3:Param3}, ${4:X}) $5' -p22903 -tp22904 -a(S'help/0' -p22905 -S'help() $1' -p22906 -tp22907 -a(S'main/3' -p22908 -S'main(${1:G}, ${2:File}, ${3:Param3}) $4' -p22909 -tp22910 -a(S'make_erl_options/1' -p22911 -S'make_erl_options(${1:Opts}) $2' -p22912 -tp22913 -a(S'sgen/1' -p22914 -S'sgen(${1:ArgList}) $2' -p22915 -tp22916 -asS'CosNotifyChannelAdmin_SequenceProxyPushConsumer' -p22917 -(lp22918 -(S"'_get_MyAdmin'/1" -p22919 -S"'_get_MyAdmin'(${1:OE_THIS}) $2" -p22920 -tp22921 -a(S"'_get_MyAdmin'/2" -p22922 -S"'_get_MyAdmin'(${1:OE_THIS}, ${2:OE_Options}) $3" -p22923 -tp22924 -a(S"'_get_MyType'/1" -p22925 -S"'_get_MyType'(${1:OE_THIS}) $2" -p22926 -tp22927 -a(S"'_get_MyType'/2" -p22928 -S"'_get_MyType'(${1:OE_THIS}, ${2:OE_Options}) $3" -p22929 -tp22930 -a(S'add_filter/2' -p22931 -S'add_filter(${1:OE_THIS}, ${2:New_filter}) $3' -p22932 -tp22933 -a(S'add_filter/3' -p22934 -S'add_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:New_filter}) $4' -p22935 -tp22936 -a(S'code_change/3' -p22937 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p22938 -tp22939 -a(S'connect_sequence_push_supplier/2' -p22940 -S'connect_sequence_push_supplier(${1:OE_THIS}, ${2:Push_supplier}) $3' -p22941 -tp22942 -a(S'connect_sequence_push_supplier/3' -p22943 -S'connect_sequence_push_supplier(${1:OE_THIS}, ${2:OE_Options}, ${3:Push_supplier}) $4' -p22944 -tp22945 -a(S'disconnect_sequence_push_consumer/1' -p22946 -S'disconnect_sequence_push_consumer(${1:OE_THIS}) $2' -p22947 -tp22948 -a(S'disconnect_sequence_push_consumer/2' -p22949 -S'disconnect_sequence_push_consumer(${1:OE_THIS}, ${2:OE_Options}) $3' -p22950 -tp22951 -a(S'get_all_filters/1' -p22952 -S'get_all_filters(${1:OE_THIS}) $2' -p22953 -tp22954 -a(S'get_all_filters/2' -p22955 -S'get_all_filters(${1:OE_THIS}, ${2:OE_Options}) $3' -p22956 -tp22957 -a(S'get_filter/2' -p22958 -S'get_filter(${1:OE_THIS}, ${2:Filter}) $3' -p22959 -tp22960 -a(S'get_filter/3' -p22961 -S'get_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:Filter}) $4' -p22962 -tp22963 -a(S'get_qos/1' -p22964 -S'get_qos(${1:OE_THIS}) $2' -p22965 -tp22966 -a(S'get_qos/2' -p22967 -S'get_qos(${1:OE_THIS}, ${2:OE_Options}) $3' -p22968 -tp22969 -a(S'handle_call/3' -p22970 -S'handle_call(${1:Param1}, ${2:OE_From}, ${3:OE_State}) $4' -p22971 -tp22972 -a(S'handle_cast/2' -p22973 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p22974 -tp22975 -a(S'handle_info/2' -p22976 -S'handle_info(${1:Info}, ${2:State}) $3' -p22977 -tp22978 -a(S'init/1' -p22979 -S'init(${1:Env}) $2' -p22980 -tp22981 -a(S'obtain_subscription_types/2' -p22982 -S'obtain_subscription_types(${1:OE_THIS}, ${2:Mode}) $3' -p22983 -tp22984 -a(S'obtain_subscription_types/3' -p22985 -S'obtain_subscription_types(${1:OE_THIS}, ${2:OE_Options}, ${3:Mode}) $4' -p22986 -tp22987 -a(S'oe_create/0' -p22988 -S'oe_create() $1' -p22989 -tp22990 -a(S'oe_create/1' -p22991 -S'oe_create(${1:Env}) $2' -p22992 -tp22993 -a(S'oe_create/2' -p22994 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p22995 -tp22996 -a(S'oe_create_link/0' -p22997 -S'oe_create_link() $1' -p22998 -tp22999 -a(S'oe_create_link/1' -p23000 -S'oe_create_link(${1:Env}) $2' -p23001 -tp23002 -a(S'oe_create_link/2' -p23003 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p23004 -tp23005 -a(S'oe_get_interface/0' -p23006 -S'oe_get_interface() $1' -p23007 -tp23008 -a(S'oe_is_a/1' -p23009 -S'oe_is_a(${1:Param1}) $2' -p23010 -tp23011 -a(S'oe_tc/1' -p23012 -S'oe_tc(${1:Param1}) $2' -p23013 -tp23014 -a(S'offer_change/3' -p23015 -S'offer_change(${1:OE_THIS}, ${2:Added}, ${3:Removed}) $4' -p23016 -tp23017 -a(S'offer_change/4' -p23018 -S'offer_change(${1:OE_THIS}, ${2:OE_Options}, ${3:Added}, ${4:Removed}) $5' -p23019 -tp23020 -a(S'push_structured_events/2' -p23021 -S'push_structured_events(${1:OE_THIS}, ${2:Notifications}) $3' -p23022 -tp23023 -a(S'push_structured_events/3' -p23024 -S'push_structured_events(${1:OE_THIS}, ${2:OE_Options}, ${3:Notifications}) $4' -p23025 -tp23026 -a(S'remove_all_filters/1' -p23027 -S'remove_all_filters(${1:OE_THIS}) $2' -p23028 -tp23029 -a(S'remove_all_filters/2' -p23030 -S'remove_all_filters(${1:OE_THIS}, ${2:OE_Options}) $3' -p23031 -tp23032 -a(S'remove_filter/2' -p23033 -S'remove_filter(${1:OE_THIS}, ${2:Filter}) $3' -p23034 -tp23035 -a(S'remove_filter/3' -p23036 -S'remove_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:Filter}) $4' -p23037 -tp23038 -a(S'set_qos/2' -p23039 -S'set_qos(${1:OE_THIS}, ${2:Qos}) $3' -p23040 -tp23041 -a(S'set_qos/3' -p23042 -S'set_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Qos}) $4' -p23043 -tp23044 -a(S'terminate/2' -p23045 -S'terminate(${1:Reason}, ${2:State}) $3' -p23046 -tp23047 -a(S'typeID/0' -p23048 -S'typeID() $1' -p23049 -tp23050 -a(S'validate_event_qos/2' -p23051 -S'validate_event_qos(${1:OE_THIS}, ${2:Required_qos}) $3' -p23052 -tp23053 -a(S'validate_event_qos/3' -p23054 -S'validate_event_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Required_qos}) $4' -p23055 -tp23056 -a(S'validate_qos/2' -p23057 -S'validate_qos(${1:OE_THIS}, ${2:Required_qos}) $3' -p23058 -tp23059 -a(S'validate_qos/3' -p23060 -S'validate_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Required_qos}) $4' -p23061 -tp23062 -asS'megaco_pretty_text_encoder_prev3b' -p23063 -(lp23064 -(S'encode_action_reply/2' -p23065 -S'encode_action_reply() $1' -p23066 -tp23067 -a(S'encode_action_request/2' -p23068 -S'encode_action_request() $1' -p23069 -tp23070 -a(S'encode_action_requests/2' -p23071 -S'encode_action_requests(${1:Param1}, ${2:ActReqs}) $3' -p23072 -tp23073 -a(S'encode_command_request/2' -p23074 -S'encode_command_request() $1' -p23075 -tp23076 -a(S'encode_message/2' -p23077 -S'encode_message(${1:Param1}, ${2:Param2}) $3' -p23078 -tp23079 -a(S'encode_transaction/2' -p23080 -S'encode_transaction(${1:Param1}, ${2:Trans}) $3' -p23081 -tp23082 -a(S'token_tag2string/1' -p23083 -S'token_tag2string(${1:Param1}) $2' -p23084 -tp23085 -asS'megaco_pretty_text_encoder_prev3c' -p23086 -(lp23087 -(S'encode_action_reply/2' -p23088 -S'encode_action_reply() $1' -p23089 -tp23090 -a(S'encode_action_request/2' -p23091 -S'encode_action_request() $1' -p23092 -tp23093 -a(S'encode_action_requests/2' -p23094 -S'encode_action_requests(${1:Param1}, ${2:ActReqs}) $3' -p23095 -tp23096 -a(S'encode_command_request/2' -p23097 -S'encode_command_request() $1' -p23098 -tp23099 -a(S'encode_message/2' -p23100 -S'encode_message(${1:Param1}, ${2:Param2}) $3' -p23101 -tp23102 -a(S'encode_transaction/2' -p23103 -S'encode_transaction(${1:Param1}, ${2:Trans}) $3' -p23104 -tp23105 -a(S'test/1' -p23106 -S'test(${1:Fun}) $2' -p23107 -tp23108 -a(S'token_tag2string/1' -p23109 -S'token_tag2string(${1:Param1}) $2' -p23110 -tp23111 -asS'megaco_pretty_text_encoder_prev3a' -p23112 -(lp23113 -(S'encode_action_reply/2' -p23114 -S'encode_action_reply() $1' -p23115 -tp23116 -a(S'encode_action_request/2' -p23117 -S'encode_action_request() $1' -p23118 -tp23119 -a(S'encode_action_requests/2' -p23120 -S'encode_action_requests(${1:Param1}, ${2:ActReqs}) $3' -p23121 -tp23122 -a(S'encode_command_request/2' -p23123 -S'encode_command_request() $1' -p23124 -tp23125 -a(S'encode_message/2' -p23126 -S'encode_message(${1:Param1}, ${2:Param2}) $3' -p23127 -tp23128 -a(S'encode_transaction/2' -p23129 -S'encode_transaction(${1:Param1}, ${2:Trans}) $3' -p23130 -tp23131 -asS'ssl_session_cache' -p23132 -(lp23133 -(S'delete/2' -p23134 -S'delete(${1:Cache}, ${2:Key}) $3' -p23135 -tp23136 -a(S'foldl/3' -p23137 -S'foldl(${1:Fun}, ${2:Acc0}, ${3:Cache}) $4' -p23138 -tp23139 -a(S'init/1' -p23140 -S'init(${1:Param1}) $2' -p23141 -tp23142 -a(S'lookup/2' -p23143 -S'lookup(${1:Cache}, ${2:Key}) $3' -p23144 -tp23145 -a(S'select_session/2' -p23146 -S'select_session(${1:Cache}, ${2:PartialKey}) $3' -p23147 -tp23148 -a(S'terminate/1' -p23149 -S'terminate(${1:Cache}) $2' -p23150 -tp23151 -a(S'update/3' -p23152 -S'update(${1:Cache}, ${2:Key}, ${3:Session}) $4' -p23153 -tp23154 -asS'mod_responsecontrol' -p23155 -(lp23156 -(S'do/1' -p23157 -S'do(${1:Info}) $2' -p23158 -tp23159 -asS'make' -p23160 -(lp23161 -(S'all/0' -p23162 -S'all() $1' -p23163 -tp23164 -a(S'all/1' -p23165 -S'all(${1:Options}) $2' -p23166 -tp23167 -a(S'files/1' -p23168 -S'files(${1:Fs}) $2' -p23169 -tp23170 -a(S'files/2' -p23171 -S'files(${1:Fs0}, ${2:Options}) $3' -p23172 -tp23173 -asS'snmp_generic' -p23174 -(lp23175 -(S'find_col/2' -p23176 -S'find_col(${1:Col}, ${2:Param2}) $3' -p23177 -tp23178 -a(S'get_index_types/1' -p23179 -S'get_index_types(${1:Name}) $2' -p23180 -tp23181 -a(S'get_own_indexes/2' -p23182 -S'get_own_indexes(${1:Index}, ${2:Keys}) $3' -p23183 -tp23184 -a(S'get_status_col/2' -p23185 -S'get_status_col(${1:Name}, ${2:Cols}) $3' -p23186 -tp23187 -a(S'get_table_info/2' -p23188 -S'get_table_info(${1:Name}, ${2:Param2}) $3' -p23189 -tp23190 -a(S'handle_table_get/4' -p23191 -S'handle_table_get(${1:NameDb}, ${2:RowIndex}, ${3:Cols}, ${4:FirstOwnIndex}) $5' -p23192 -tp23193 -a(S'handle_table_next/6' -p23194 -S'handle_table_next(${1:NameDb}, ${2:RowIndex}, ${3:OrgCols}, ${4:FirstCol}, ${5:FOI}, ${6:LastCol}) $7' -p23195 -tp23196 -a(S'init_defaults/2' -p23197 -S'init_defaults(${1:Defs}, ${2:InitRow}) $3' -p23198 -tp23199 -a(S'init_defaults/3' -p23200 -S'init_defaults(${1:Defs}, ${2:InitRow}, ${3:StartCol}) $4' -p23201 -tp23202 -a(S'split_index_to_keys/2' -p23203 -S'split_index_to_keys(${1:Indexes}, ${2:RowIndex}) $3' -p23204 -tp23205 -a(S'table_check_status/5' -p23206 -S'table_check_status(${1:NameDb}, ${2:Col}, ${3:Param3}, ${4:RowIndex}, ${5:Cols}) $6' -p23207 -tp23208 -a(S'table_create_rest/6' -p23209 -S'table_create_rest(${1:Col}, ${2:Max}, ${3:StatusCol}, ${4:Status}, ${5:Defs}, ${6:NoAccs}) $7' -p23210 -tp23211 -a(S'table_find/3' -p23212 -S'table_find(${1:NameDb}, ${2:Col}, ${3:Value}) $4' -p23213 -tp23214 -a(S'table_foreach/2' -p23215 -S'table_foreach(${1:Tab}, ${2:Fun}) $3' -p23216 -tp23217 -a(S'table_foreach/3' -p23218 -S'table_foreach(${1:Tab}, ${2:Fun}, ${3:FOI}) $4' -p23219 -tp23220 -a(S'table_func/2' -p23221 -S'table_func(${1:Op}, ${2:NameDb}) $3' -p23222 -tp23223 -a(S'table_func/4' -p23224 -S'table_func(${1:Op}, ${2:RowIndex}, ${3:Cols}, ${4:NameDb}) $5' -p23225 -tp23226 -a(S'table_get_element/3' -p23227 -S'table_get_element(${1:NameDb}, ${2:RowIndex}, ${3:Col}) $4' -p23228 -tp23229 -a(S'table_get_elements/3' -p23230 -S'table_get_elements(${1:NameDb}, ${2:RowIndex}, ${3:Cols}) $4' -p23231 -tp23232 -a(S'table_get_elements/4' -p23233 -S'table_get_elements(${1:NameDb}, ${2:RowIndex}, ${3:Cols}, ${4:FirstOwnIndex}) $5' -p23234 -tp23235 -a(S'table_get_row/2' -p23236 -S'table_get_row(${1:NameDb}, ${2:RowIndex}) $3' -p23237 -tp23238 -a(S'table_get_row/3' -p23239 -S'table_get_row(${1:NameDb}, ${2:RowIndex}, ${3:FOI}) $4' -p23240 -tp23241 -a(S'table_info/1' -p23242 -S'table_info(${1:Name}) $2' -p23243 -tp23244 -a(S'table_max_col/2' -p23245 -S'table_max_col(${1:NameDb}, ${2:Col}) $3' -p23246 -tp23247 -a(S'table_next/2' -p23248 -S'table_next(${1:NameDb}, ${2:RestOid}) $3' -p23249 -tp23250 -a(S'table_row_exists/2' -p23251 -S'table_row_exists(${1:NameDb}, ${2:RowIndex}) $3' -p23252 -tp23253 -a(S'table_set_cols/3' -p23254 -S'table_set_cols(${1:NameDb}, ${2:RowIndex}, ${3:Param3}) $4' -p23255 -tp23256 -a(S'table_set_cols/4' -p23257 -S'table_set_cols(${1:NameDb}, ${2:RowIndex}, ${3:Cols}, ${4:ConsFunc}) $5' -p23258 -tp23259 -a(S'table_set_element/4' -p23260 -S'table_set_element(${1:NameDb}, ${2:RowIndex}, ${3:Col}, ${4:NewVal}) $5' -p23261 -tp23262 -a(S'table_set_elements/3' -p23263 -S'table_set_elements(${1:NameDb}, ${2:RowIndex}, ${3:Cols}) $4' -p23264 -tp23265 -a(S'table_set_row/5' -p23266 -S'table_set_row(${1:NameDb}, ${2:ChangedStatusFunc}, ${3:ConsFunc}, ${4:RowIndex}, ${5:Cols}) $6' -p23267 -tp23268 -a(S'table_try_make_consistent/3' -p23269 -S'table_try_make_consistent(${1:Name}, ${2:RowIndex}, ${3:Param3}) $4' -p23270 -tp23271 -a(S'table_try_row/4' -p23272 -S'table_try_row(${1:NameDb}, ${2:TryChangeStatusFunc}, ${3:RowIndex}, ${4:Cols}) $5' -p23273 -tp23274 -a(S'try_apply/2' -p23275 -S'try_apply(${1:F}, ${2:Args}) $3' -p23276 -tp23277 -a(S'variable_func/2' -p23278 -S'variable_func(${1:Param1}, ${2:NameDb}) $3' -p23279 -tp23280 -a(S'variable_func/3' -p23281 -S'variable_func(${1:Param1}, ${2:Val}, ${3:NameDb}) $4' -p23282 -tp23283 -a(S'variable_get/1' -p23284 -S'variable_get(${1:NameDb}) $2' -p23285 -tp23286 -a(S'variable_inc/2' -p23287 -S'variable_inc(${1:NameDb}, ${2:N}) $3' -p23288 -tp23289 -a(S'variable_set/2' -p23290 -S'variable_set(${1:NameDb}, ${2:Val}) $3' -p23291 -tp23292 -asS'CosNotifyChannelAdmin_EventChannel_impl' -p23293 -(lp23294 -(S"'_get_MyFactory'/3" -p23295 -S"'_get_MyFactory'(${1:Param1}, ${2:Param2}, ${3:State}) $4" -p23296 -tp23297 -a(S"'_get_default_consumer_admin'/3" -p23298 -S"'_get_default_consumer_admin'(${1:Param1}, ${2:Param2}, ${3:State}) $4" -p23299 -tp23300 -a(S"'_get_default_filter_factory'/3" -p23301 -S"'_get_default_filter_factory'(${1:Param1}, ${2:Param2}, ${3:State}) $4" -p23302 -tp23303 -a(S"'_get_default_supplier_admin'/3" -p23304 -S"'_get_default_supplier_admin'(${1:Param1}, ${2:Param2}, ${3:State}) $4" -p23305 -tp23306 -a(S'callAny/5' -p23307 -S'callAny(${1:Param1}, ${2:OE_FROM}, ${3:State}, ${4:Event}, ${5:Status}) $6' -p23308 -tp23309 -a(S'callSeq/5' -p23310 -S'callSeq(${1:Param1}, ${2:OE_FROM}, ${3:State}, ${4:Event}, ${5:Status}) $6' -p23311 -tp23312 -a(S'code_change/3' -p23313 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p23314 -tp23315 -a(S'destroy/3' -p23316 -S'destroy(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p23317 -tp23318 -a(S'for_consumers/3' -p23319 -S'for_consumers(${1:OE_THIS}, ${2:Param2}, ${3:State}) $4' -p23320 -tp23321 -a(S'for_suppliers/3' -p23322 -S'for_suppliers(${1:OE_THIS}, ${2:Param2}, ${3:State}) $4' -p23323 -tp23324 -a(S'get_admin/3' -p23325 -S'get_admin(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p23326 -tp23327 -a(S'get_all_consumeradmins/3' -p23328 -S'get_all_consumeradmins(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p23329 -tp23330 -a(S'get_all_supplieradmins/3' -p23331 -S'get_all_supplieradmins(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p23332 -tp23333 -a(S'get_consumeradmin/4' -p23334 -S'get_consumeradmin(${1:OE_THIS}, ${2:Param2}, ${3:State}, ${4:AdminId}) $5' -p23335 -tp23336 -a(S'get_qos/3' -p23337 -S'get_qos(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p23338 -tp23339 -a(S'get_supplieradmin/4' -p23340 -S'get_supplieradmin(${1:OE_THIS}, ${2:Param2}, ${3:State}, ${4:AdminId}) $5' -p23341 -tp23342 -a(S'handle_info/2' -p23343 -S'handle_info(${1:Info}, ${2:State}) $3' -p23344 -tp23345 -a(S'init/1' -p23346 -S'init(${1:Param1}) $2' -p23347 -tp23348 -a(S'new_for_consumers/4' -p23349 -S'new_for_consumers(${1:OE_THIS}, ${2:Param2}, ${3:State}, ${4:Op}) $5' -p23350 -tp23351 -a(S'new_for_suppliers/4' -p23352 -S'new_for_suppliers(${1:OE_THIS}, ${2:Param2}, ${3:State}, ${4:Op}) $5' -p23353 -tp23354 -a(S'set_admin/4' -p23355 -S'set_admin(${1:Param1}, ${2:Param2}, ${3:State}, ${4:Admin}) $5' -p23356 -tp23357 -a(S'set_qos/4' -p23358 -S'set_qos(${1:Param1}, ${2:Param2}, ${3:State}, ${4:QoS}) $5' -p23359 -tp23360 -a(S'terminate/2' -p23361 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p23362 -tp23363 -a(S'validate_qos/4' -p23364 -S'validate_qos(${1:Param1}, ${2:Param2}, ${3:State}, ${4:Required_qos}) $5' -p23365 -tp23366 -asS'orber_iiop' -p23367 -(lp23368 -(S'handle_call/3' -p23369 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p23370 -tp23371 -a(S'init/1' -p23372 -S'init(${1:Param1}) $2' -p23373 -tp23374 -a(S'locate/4' -p23375 -S'locate() $1' -p23376 -tp23377 -a(S'request/8' -p23378 -S'request() $1' -p23379 -tp23380 -a(S'start_sup/1' -p23381 -S'start_sup(${1:Opts}) $2' -p23382 -tp23383 -a(S'terminate/2' -p23384 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p23385 -tp23386 -asS'snmp_framework_mib' -p23387 -(lp23388 -(S'add_context/1' -p23389 -S'add_context(${1:Ctx}) $2' -p23390 -tp23391 -a(S'check_agent/1' -p23392 -S'check_agent(${1:X}) $2' -p23393 -tp23394 -a(S'check_context/1' -p23395 -S'check_context(${1:Context}) $2' -p23396 -tp23397 -a(S'check_status/3' -p23398 -S'check_status(${1:Name}, ${2:Indexes}, ${3:StatusNo}) $4' -p23399 -tp23400 -a(S'configure/1' -p23401 -S'configure(${1:Dir}) $2' -p23402 -tp23403 -a(S'delete_context/1' -p23404 -S'delete_context(${1:Key}) $2' -p23405 -tp23406 -a(S'get_engine_boots/0' -p23407 -S'get_engine_boots() $1' -p23408 -tp23409 -a(S'get_engine_id/0' -p23410 -S'get_engine_id() $1' -p23411 -tp23412 -a(S'get_engine_max_message_size/0' -p23413 -S'get_engine_max_message_size() $1' -p23414 -tp23415 -a(S'get_engine_time/0' -p23416 -S'get_engine_time() $1' -p23417 -tp23418 -a(S'init/0' -p23419 -S'init() $1' -p23420 -tp23421 -a(S'intAgentIpAddress/1' -p23422 -S'intAgentIpAddress(${1:Op}) $2' -p23423 -tp23424 -a(S'intAgentUDPPort/1' -p23425 -S'intAgentUDPPort(${1:Op}) $2' -p23426 -tp23427 -a(S'intContextTable/1' -p23428 -S'intContextTable(${1:Op}) $2' -p23429 -tp23430 -a(S'intContextTable/3' -p23431 -S'intContextTable(${1:Op}, ${2:RowIndex}, ${3:Cols}) $4' -p23432 -tp23433 -a(S'set_engine_boots/1' -p23434 -S'set_engine_boots(${1:Boots}) $2' -p23435 -tp23436 -a(S'set_engine_time/1' -p23437 -S'set_engine_time(${1:Time}) $2' -p23438 -tp23439 -a(S'snmpEngineBoots/1' -p23440 -S'snmpEngineBoots(${1:Op}) $2' -p23441 -tp23442 -a(S'snmpEngineID/1' -p23443 -S'snmpEngineID(${1:Op}) $2' -p23444 -tp23445 -a(S'snmpEngineMaxMessageSize/1' -p23446 -S'snmpEngineMaxMessageSize(${1:Op}) $2' -p23447 -tp23448 -a(S'snmpEngineTime/1' -p23449 -S'snmpEngineTime(${1:Param1}) $2' -p23450 -tp23451 -a(S'table_next/2' -p23452 -S'table_next(${1:Name}, ${2:RestOid}) $3' -p23453 -tp23454 -asS'CosNotifyFilter_InvalidConstraint' -p23455 -(lp23456 -(S'id/0' -p23457 -S'id() $1' -p23458 -tp23459 -a(S'name/0' -p23460 -S'name() $1' -p23461 -tp23462 -a(S'tc/0' -p23463 -S'tc() $1' -p23464 -tp23465 -asS'sshc_sup' -p23466 -(lp23467 -(S'init/1' -p23468 -S'init(${1:Args}) $2' -p23469 -tp23470 -a(S'start_child/1' -p23471 -S'start_child(${1:Args}) $2' -p23472 -tp23473 -a(S'start_link/1' -p23474 -S'start_link(${1:Args}) $2' -p23475 -tp23476 -a(S'stop_child/1' -p23477 -S'stop_child(${1:Client}) $2' -p23478 -tp23479 -asS'edoc_report' -p23480 -(lp23481 -(S'error/1' -p23482 -S'error(${1:What}) $2' -p23483 -tp23484 -a(S'error/2' -p23485 -S'error(${1:Where}, ${2:What}) $3' -p23486 -tp23487 -a(S'error/3' -p23488 -S'error(${1:Line}, ${2:Where}, ${3:S}) $4' -p23489 -tp23490 -a(S'report/2' -p23491 -S'report(${1:S}, ${2:Vs}) $3' -p23492 -tp23493 -a(S'report/3' -p23494 -S'report(${1:Where}, ${2:S}, ${3:Vs}) $4' -p23495 -tp23496 -a(S'report/4' -p23497 -S'report(${1:L}, ${2:Where}, ${3:S}, ${4:Vs}) $5' -p23498 -tp23499 -a(S'warning/1' -p23500 -S'warning(${1:S}) $2' -p23501 -tp23502 -a(S'warning/2' -p23503 -S'warning(${1:S}, ${2:Vs}) $3' -p23504 -tp23505 -a(S'warning/3' -p23506 -S'warning(${1:Where}, ${2:S}, ${3:Vs}) $4' -p23507 -tp23508 -a(S'warning/4' -p23509 -S'warning(${1:L}, ${2:Where}, ${3:S}, ${4:Vs}) $5' -p23510 -tp23511 -asS'megaco_per_media_gateway_control_v2' -p23512 -(lp23513 -(S"'dec_ActionReply'/2" -p23514 -S"'dec_ActionReply'(${1:Bytes}, ${2:Param2}) $3" -p23515 -tp23516 -a(S"'dec_ActionRequest'/2" -p23517 -S"'dec_ActionRequest'(${1:Bytes}, ${2:Param2}) $3" -p23518 -tp23519 -a(S"'dec_AmmDescriptor'/2" -p23520 -S"'dec_AmmDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p23521 -tp23522 -a(S"'dec_AmmRequest'/2" -p23523 -S"'dec_AmmRequest'(${1:Bytes}, ${2:Param2}) $3" -p23524 -tp23525 -a(S"'dec_AmmsReply'/2" -p23526 -S"'dec_AmmsReply'(${1:Bytes}, ${2:Param2}) $3" -p23527 -tp23528 -a(S"'dec_AuditDescriptor'/2" -p23529 -S"'dec_AuditDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p23530 -tp23531 -a(S"'dec_AuditReply'/2" -p23532 -S"'dec_AuditReply'(${1:Bytes}, ${2:Param2}) $3" -p23533 -tp23534 -a(S"'dec_AuditRequest'/2" -p23535 -S"'dec_AuditRequest'(${1:Bytes}, ${2:Param2}) $3" -p23536 -tp23537 -a(S"'dec_AuditResult'/2" -p23538 -S"'dec_AuditResult'(${1:Bytes}, ${2:Param2}) $3" -p23539 -tp23540 -a(S"'dec_AuditReturnParameter'/2" -p23541 -S"'dec_AuditReturnParameter'(${1:Bytes}, ${2:Param2}) $3" -p23542 -tp23543 -a(S"'dec_AuthData'/2" -p23544 -S"'dec_AuthData'(${1:Bytes}, ${2:Param2}) $3" -p23545 -tp23546 -a(S"'dec_AuthenticationHeader'/2" -p23547 -S"'dec_AuthenticationHeader'(${1:Bytes}, ${2:Param2}) $3" -p23548 -tp23549 -a(S"'dec_Command'/2" -p23550 -S"'dec_Command'(${1:Bytes}, ${2:Param2}) $3" -p23551 -tp23552 -a(S"'dec_CommandReply'/2" -p23553 -S"'dec_CommandReply'(${1:Bytes}, ${2:Param2}) $3" -p23554 -tp23555 -a(S"'dec_CommandRequest'/2" -p23556 -S"'dec_CommandRequest'(${1:Bytes}, ${2:Param2}) $3" -p23557 -tp23558 -a(S"'dec_ContextAttrAuditRequest'/2" -p23559 -S"'dec_ContextAttrAuditRequest'(${1:Bytes}, ${2:Param2}) $3" -p23560 -tp23561 -a(S"'dec_ContextID'/2" -p23562 -S"'dec_ContextID'(${1:Bytes}, ${2:Param2}) $3" -p23563 -tp23564 -a(S"'dec_ContextRequest'/2" -p23565 -S"'dec_ContextRequest'(${1:Bytes}, ${2:Param2}) $3" -p23566 -tp23567 -a(S"'dec_DigitMapDescriptor'/2" -p23568 -S"'dec_DigitMapDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p23569 -tp23570 -a(S"'dec_DigitMapName'/2" -p23571 -S"'dec_DigitMapName'(${1:Bytes}, ${2:Param2}) $3" -p23572 -tp23573 -a(S"'dec_DigitMapValue'/2" -p23574 -S"'dec_DigitMapValue'(${1:Bytes}, ${2:Param2}) $3" -p23575 -tp23576 -a(S"'dec_DomainName'/2" -p23577 -S"'dec_DomainName'(${1:Bytes}, ${2:Param2}) $3" -p23578 -tp23579 -a(S"'dec_ErrorCode'/2" -p23580 -S"'dec_ErrorCode'(${1:Bytes}, ${2:Param2}) $3" -p23581 -tp23582 -a(S"'dec_ErrorDescriptor'/2" -p23583 -S"'dec_ErrorDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p23584 -tp23585 -a(S"'dec_ErrorText'/2" -p23586 -S"'dec_ErrorText'(${1:Bytes}, ${2:Param2}) $3" -p23587 -tp23588 -a(S"'dec_EventBufferControl'/2" -p23589 -S"'dec_EventBufferControl'(${1:Bytes}, ${2:Param2}) $3" -p23590 -tp23591 -a(S"'dec_EventBufferDescriptor'/2" -p23592 -S"'dec_EventBufferDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p23593 -tp23594 -a(S"'dec_EventDM'/2" -p23595 -S"'dec_EventDM'(${1:Bytes}, ${2:Param2}) $3" -p23596 -tp23597 -a(S"'dec_EventName'/2" -p23598 -S"'dec_EventName'(${1:Bytes}, ${2:Param2}) $3" -p23599 -tp23600 -a(S"'dec_EventParameter'/2" -p23601 -S"'dec_EventParameter'(${1:Bytes}, ${2:Param2}) $3" -p23602 -tp23603 -a(S"'dec_EventSpec'/2" -p23604 -S"'dec_EventSpec'(${1:Bytes}, ${2:Param2}) $3" -p23605 -tp23606 -a(S"'dec_EventsDescriptor'/2" -p23607 -S"'dec_EventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p23608 -tp23609 -a(S"'dec_H221NonStandard'/2" -p23610 -S"'dec_H221NonStandard'(${1:Bytes}, ${2:Param2}) $3" -p23611 -tp23612 -a(S"'dec_IP4Address'/2" -p23613 -S"'dec_IP4Address'(${1:Bytes}, ${2:Param2}) $3" -p23614 -tp23615 -a(S"'dec_IP6Address'/2" -p23616 -S"'dec_IP6Address'(${1:Bytes}, ${2:Param2}) $3" -p23617 -tp23618 -a(S"'dec_IndAudDigitMapDescriptor'/2" -p23619 -S"'dec_IndAudDigitMapDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p23620 -tp23621 -a(S"'dec_IndAudEventBufferDescriptor'/2" -p23622 -S"'dec_IndAudEventBufferDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p23623 -tp23624 -a(S"'dec_IndAudEventsDescriptor'/2" -p23625 -S"'dec_IndAudEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p23626 -tp23627 -a(S"'dec_IndAudLocalControlDescriptor'/2" -p23628 -S"'dec_IndAudLocalControlDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p23629 -tp23630 -a(S"'dec_IndAudLocalRemoteDescriptor'/2" -p23631 -S"'dec_IndAudLocalRemoteDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p23632 -tp23633 -a(S"'dec_IndAudMediaDescriptor'/2" -p23634 -S"'dec_IndAudMediaDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p23635 -tp23636 -a(S"'dec_IndAudPackagesDescriptor'/2" -p23637 -S"'dec_IndAudPackagesDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p23638 -tp23639 -a(S"'dec_IndAudPropertyGroup'/2" -p23640 -S"'dec_IndAudPropertyGroup'(${1:Bytes}, ${2:Param2}) $3" -p23641 -tp23642 -a(S"'dec_IndAudPropertyParm'/2" -p23643 -S"'dec_IndAudPropertyParm'(${1:Bytes}, ${2:Param2}) $3" -p23644 -tp23645 -a(S"'dec_IndAudSeqSigList'/2" -p23646 -S"'dec_IndAudSeqSigList'(${1:Bytes}, ${2:Param2}) $3" -p23647 -tp23648 -a(S"'dec_IndAudSignal'/2" -p23649 -S"'dec_IndAudSignal'(${1:Bytes}, ${2:Param2}) $3" -p23650 -tp23651 -a(S"'dec_IndAudSignalsDescriptor'/2" -p23652 -S"'dec_IndAudSignalsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p23653 -tp23654 -a(S"'dec_IndAudStatisticsDescriptor'/2" -p23655 -S"'dec_IndAudStatisticsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p23656 -tp23657 -a(S"'dec_IndAudStreamDescriptor'/2" -p23658 -S"'dec_IndAudStreamDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p23659 -tp23660 -a(S"'dec_IndAudStreamParms'/2" -p23661 -S"'dec_IndAudStreamParms'(${1:Bytes}, ${2:Param2}) $3" -p23662 -tp23663 -a(S"'dec_IndAudTerminationStateDescriptor'/2" -p23664 -S"'dec_IndAudTerminationStateDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p23665 -tp23666 -a(S"'dec_IndAuditParameter'/2" -p23667 -S"'dec_IndAuditParameter'(${1:Bytes}, ${2:Param2}) $3" -p23668 -tp23669 -a(S"'dec_LocalControlDescriptor'/2" -p23670 -S"'dec_LocalControlDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p23671 -tp23672 -a(S"'dec_LocalRemoteDescriptor'/2" -p23673 -S"'dec_LocalRemoteDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p23674 -tp23675 -a(S"'dec_MId'/2" -p23676 -S"'dec_MId'(${1:Bytes}, ${2:Param2}) $3" -p23677 -tp23678 -a(S"'dec_MediaDescriptor'/2" -p23679 -S"'dec_MediaDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p23680 -tp23681 -a(S"'dec_MegacoMessage'/2" -p23682 -S"'dec_MegacoMessage'(${1:Bytes}, ${2:Param2}) $3" -p23683 -tp23684 -a(S"'dec_Message'/2" -p23685 -S"'dec_Message'(${1:Bytes}, ${2:Param2}) $3" -p23686 -tp23687 -a(S"'dec_ModemDescriptor'/2" -p23688 -S"'dec_ModemDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p23689 -tp23690 -a(S"'dec_ModemType'/2" -p23691 -S"'dec_ModemType'(${1:Bytes}, ${2:Param2}) $3" -p23692 -tp23693 -a(S"'dec_MuxDescriptor'/2" -p23694 -S"'dec_MuxDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p23695 -tp23696 -a(S"'dec_MuxType'/2" -p23697 -S"'dec_MuxType'(${1:Bytes}, ${2:Param2}) $3" -p23698 -tp23699 -a(S"'dec_Name'/2" -p23700 -S"'dec_Name'(${1:Bytes}, ${2:Param2}) $3" -p23701 -tp23702 -a(S"'dec_NonStandardData'/2" -p23703 -S"'dec_NonStandardData'(${1:Bytes}, ${2:Param2}) $3" -p23704 -tp23705 -a(S"'dec_NonStandardIdentifier'/2" -p23706 -S"'dec_NonStandardIdentifier'(${1:Bytes}, ${2:Param2}) $3" -p23707 -tp23708 -a(S"'dec_NotifyCompletion'/2" -p23709 -S"'dec_NotifyCompletion'(${1:Bytes}, ${2:Param2}) $3" -p23710 -tp23711 -a(S"'dec_NotifyReply'/2" -p23712 -S"'dec_NotifyReply'(${1:Bytes}, ${2:Param2}) $3" -p23713 -tp23714 -a(S"'dec_NotifyRequest'/2" -p23715 -S"'dec_NotifyRequest'(${1:Bytes}, ${2:Param2}) $3" -p23716 -tp23717 -a(S"'dec_ObservedEvent'/2" -p23718 -S"'dec_ObservedEvent'(${1:Bytes}, ${2:Param2}) $3" -p23719 -tp23720 -a(S"'dec_ObservedEventsDescriptor'/2" -p23721 -S"'dec_ObservedEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p23722 -tp23723 -a(S"'dec_PackagesDescriptor'/2" -p23724 -S"'dec_PackagesDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p23725 -tp23726 -a(S"'dec_PackagesItem'/2" -p23727 -S"'dec_PackagesItem'(${1:Bytes}, ${2:Param2}) $3" -p23728 -tp23729 -a(S"'dec_PathName'/2" -p23730 -S"'dec_PathName'(${1:Bytes}, ${2:Param2}) $3" -p23731 -tp23732 -a(S"'dec_PkgdName'/2" -p23733 -S"'dec_PkgdName'(${1:Bytes}, ${2:Param2}) $3" -p23734 -tp23735 -a(S"'dec_PropertyGroup'/2" -p23736 -S"'dec_PropertyGroup'(${1:Bytes}, ${2:Param2}) $3" -p23737 -tp23738 -a(S"'dec_PropertyParm'/2" -p23739 -S"'dec_PropertyParm'(${1:Bytes}, ${2:Param2}) $3" -p23740 -tp23741 -a(S"'dec_Relation'/2" -p23742 -S"'dec_Relation'(${1:Bytes}, ${2:Param2}) $3" -p23743 -tp23744 -a(S"'dec_RequestID'/2" -p23745 -S"'dec_RequestID'(${1:Bytes}, ${2:Param2}) $3" -p23746 -tp23747 -a(S"'dec_RequestedActions'/2" -p23748 -S"'dec_RequestedActions'(${1:Bytes}, ${2:Param2}) $3" -p23749 -tp23750 -a(S"'dec_RequestedEvent'/2" -p23751 -S"'dec_RequestedEvent'(${1:Bytes}, ${2:Param2}) $3" -p23752 -tp23753 -a(S"'dec_SecondEventsDescriptor'/2" -p23754 -S"'dec_SecondEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p23755 -tp23756 -a(S"'dec_SecondRequestedActions'/2" -p23757 -S"'dec_SecondRequestedActions'(${1:Bytes}, ${2:Param2}) $3" -p23758 -tp23759 -a(S"'dec_SecondRequestedEvent'/2" -p23760 -S"'dec_SecondRequestedEvent'(${1:Bytes}, ${2:Param2}) $3" -p23761 -tp23762 -a(S"'dec_SecurityParmIndex'/2" -p23763 -S"'dec_SecurityParmIndex'(${1:Bytes}, ${2:Param2}) $3" -p23764 -tp23765 -a(S"'dec_SeqSigList'/2" -p23766 -S"'dec_SeqSigList'(${1:Bytes}, ${2:Param2}) $3" -p23767 -tp23768 -a(S"'dec_SequenceNum'/2" -p23769 -S"'dec_SequenceNum'(${1:Bytes}, ${2:Param2}) $3" -p23770 -tp23771 -a(S"'dec_ServiceChangeAddress'/2" -p23772 -S"'dec_ServiceChangeAddress'(${1:Bytes}, ${2:Param2}) $3" -p23773 -tp23774 -a(S"'dec_ServiceChangeMethod'/2" -p23775 -S"'dec_ServiceChangeMethod'(${1:Bytes}, ${2:Param2}) $3" -p23776 -tp23777 -a(S"'dec_ServiceChangeParm'/2" -p23778 -S"'dec_ServiceChangeParm'(${1:Bytes}, ${2:Param2}) $3" -p23779 -tp23780 -a(S"'dec_ServiceChangeProfile'/2" -p23781 -S"'dec_ServiceChangeProfile'(${1:Bytes}, ${2:Param2}) $3" -p23782 -tp23783 -a(S"'dec_ServiceChangeReply'/2" -p23784 -S"'dec_ServiceChangeReply'(${1:Bytes}, ${2:Param2}) $3" -p23785 -tp23786 -a(S"'dec_ServiceChangeRequest'/2" -p23787 -S"'dec_ServiceChangeRequest'(${1:Bytes}, ${2:Param2}) $3" -p23788 -tp23789 -a(S"'dec_ServiceChangeResParm'/2" -p23790 -S"'dec_ServiceChangeResParm'(${1:Bytes}, ${2:Param2}) $3" -p23791 -tp23792 -a(S"'dec_ServiceChangeResult'/2" -p23793 -S"'dec_ServiceChangeResult'(${1:Bytes}, ${2:Param2}) $3" -p23794 -tp23795 -a(S"'dec_ServiceState'/2" -p23796 -S"'dec_ServiceState'(${1:Bytes}, ${2:Param2}) $3" -p23797 -tp23798 -a(S"'dec_SigParameter'/2" -p23799 -S"'dec_SigParameter'(${1:Bytes}, ${2:Param2}) $3" -p23800 -tp23801 -a(S"'dec_Signal'/2" -p23802 -S"'dec_Signal'(${1:Bytes}, ${2:Param2}) $3" -p23803 -tp23804 -a(S"'dec_SignalName'/2" -p23805 -S"'dec_SignalName'(${1:Bytes}, ${2:Param2}) $3" -p23806 -tp23807 -a(S"'dec_SignalRequest'/2" -p23808 -S"'dec_SignalRequest'(${1:Bytes}, ${2:Param2}) $3" -p23809 -tp23810 -a(S"'dec_SignalType'/2" -p23811 -S"'dec_SignalType'(${1:Bytes}, ${2:Param2}) $3" -p23812 -tp23813 -a(S"'dec_SignalsDescriptor'/2" -p23814 -S"'dec_SignalsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p23815 -tp23816 -a(S"'dec_StatisticsDescriptor'/2" -p23817 -S"'dec_StatisticsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p23818 -tp23819 -a(S"'dec_StatisticsParameter'/2" -p23820 -S"'dec_StatisticsParameter'(${1:Bytes}, ${2:Param2}) $3" -p23821 -tp23822 -a(S"'dec_StreamDescriptor'/2" -p23823 -S"'dec_StreamDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p23824 -tp23825 -a(S"'dec_StreamID'/2" -p23826 -S"'dec_StreamID'(${1:Bytes}, ${2:Param2}) $3" -p23827 -tp23828 -a(S"'dec_StreamMode'/2" -p23829 -S"'dec_StreamMode'(${1:Bytes}, ${2:Param2}) $3" -p23830 -tp23831 -a(S"'dec_StreamParms'/2" -p23832 -S"'dec_StreamParms'(${1:Bytes}, ${2:Param2}) $3" -p23833 -tp23834 -a(S"'dec_SubtractRequest'/2" -p23835 -S"'dec_SubtractRequest'(${1:Bytes}, ${2:Param2}) $3" -p23836 -tp23837 -a(S"'dec_TerminationAudit'/2" -p23838 -S"'dec_TerminationAudit'(${1:Bytes}, ${2:Param2}) $3" -p23839 -tp23840 -a(S"'dec_TerminationID'/2" -p23841 -S"'dec_TerminationID'(${1:Bytes}, ${2:Param2}) $3" -p23842 -tp23843 -a(S"'dec_TerminationIDList'/2" -p23844 -S"'dec_TerminationIDList'(${1:Bytes}, ${2:Param2}) $3" -p23845 -tp23846 -a(S"'dec_TerminationStateDescriptor'/2" -p23847 -S"'dec_TerminationStateDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p23848 -tp23849 -a(S"'dec_TimeNotation'/2" -p23850 -S"'dec_TimeNotation'(${1:Bytes}, ${2:Param2}) $3" -p23851 -tp23852 -a(S"'dec_TopologyRequest'/2" -p23853 -S"'dec_TopologyRequest'(${1:Bytes}, ${2:Param2}) $3" -p23854 -tp23855 -a(S"'dec_Transaction'/2" -p23856 -S"'dec_Transaction'(${1:Bytes}, ${2:Param2}) $3" -p23857 -tp23858 -a(S"'dec_TransactionAck'/2" -p23859 -S"'dec_TransactionAck'(${1:Bytes}, ${2:Param2}) $3" -p23860 -tp23861 -a(S"'dec_TransactionId'/2" -p23862 -S"'dec_TransactionId'(${1:Bytes}, ${2:Param2}) $3" -p23863 -tp23864 -a(S"'dec_TransactionPending'/2" -p23865 -S"'dec_TransactionPending'(${1:Bytes}, ${2:Param2}) $3" -p23866 -tp23867 -a(S"'dec_TransactionReply'/2" -p23868 -S"'dec_TransactionReply'(${1:Bytes}, ${2:Param2}) $3" -p23869 -tp23870 -a(S"'dec_TransactionRequest'/2" -p23871 -S"'dec_TransactionRequest'(${1:Bytes}, ${2:Param2}) $3" -p23872 -tp23873 -a(S"'dec_TransactionResponseAck'/2" -p23874 -S"'dec_TransactionResponseAck'(${1:Bytes}, ${2:Param2}) $3" -p23875 -tp23876 -a(S"'dec_Value'/2" -p23877 -S"'dec_Value'(${1:Bytes}, ${2:Param2}) $3" -p23878 -tp23879 -a(S"'dec_WildcardField'/2" -p23880 -S"'dec_WildcardField'(${1:Bytes}, ${2:Param2}) $3" -p23881 -tp23882 -a(S"'enc_ActionReply'/1" -p23883 -S"'enc_ActionReply'(${1:Val}) $2" -p23884 -tp23885 -a(S"'enc_ActionRequest'/1" -p23886 -S"'enc_ActionRequest'(${1:Val}) $2" -p23887 -tp23888 -a(S"'enc_AmmDescriptor'/1" -p23889 -S"'enc_AmmDescriptor'(${1:Val}) $2" -p23890 -tp23891 -a(S"'enc_AmmRequest'/1" -p23892 -S"'enc_AmmRequest'(${1:Val}) $2" -p23893 -tp23894 -a(S"'enc_AmmsReply'/1" -p23895 -S"'enc_AmmsReply'(${1:Val}) $2" -p23896 -tp23897 -a(S"'enc_AuditDescriptor'/1" -p23898 -S"'enc_AuditDescriptor'(${1:Val}) $2" -p23899 -tp23900 -a(S"'enc_AuditReply'/1" -p23901 -S"'enc_AuditReply'(${1:Val}) $2" -p23902 -tp23903 -a(S"'enc_AuditRequest'/1" -p23904 -S"'enc_AuditRequest'(${1:Val}) $2" -p23905 -tp23906 -a(S"'enc_AuditResult'/1" -p23907 -S"'enc_AuditResult'(${1:Val}) $2" -p23908 -tp23909 -a(S"'enc_AuditReturnParameter'/1" -p23910 -S"'enc_AuditReturnParameter'(${1:Val}) $2" -p23911 -tp23912 -a(S"'enc_AuthData'/1" -p23913 -S"'enc_AuthData'(${1:Val}) $2" -p23914 -tp23915 -a(S"'enc_AuthenticationHeader'/1" -p23916 -S"'enc_AuthenticationHeader'(${1:Val}) $2" -p23917 -tp23918 -a(S"'enc_Command'/1" -p23919 -S"'enc_Command'(${1:Val}) $2" -p23920 -tp23921 -a(S"'enc_CommandReply'/1" -p23922 -S"'enc_CommandReply'(${1:Val}) $2" -p23923 -tp23924 -a(S"'enc_CommandRequest'/1" -p23925 -S"'enc_CommandRequest'(${1:Val}) $2" -p23926 -tp23927 -a(S"'enc_ContextAttrAuditRequest'/1" -p23928 -S"'enc_ContextAttrAuditRequest'(${1:Val}) $2" -p23929 -tp23930 -a(S"'enc_ContextID'/1" -p23931 -S"'enc_ContextID'(${1:Val}) $2" -p23932 -tp23933 -a(S"'enc_ContextRequest'/1" -p23934 -S"'enc_ContextRequest'(${1:Val}) $2" -p23935 -tp23936 -a(S"'enc_DigitMapDescriptor'/1" -p23937 -S"'enc_DigitMapDescriptor'(${1:Val}) $2" -p23938 -tp23939 -a(S"'enc_DigitMapName'/1" -p23940 -S"'enc_DigitMapName'(${1:Val}) $2" -p23941 -tp23942 -a(S"'enc_DigitMapValue'/1" -p23943 -S"'enc_DigitMapValue'(${1:Val}) $2" -p23944 -tp23945 -a(S"'enc_DomainName'/1" -p23946 -S"'enc_DomainName'(${1:Val}) $2" -p23947 -tp23948 -a(S"'enc_ErrorCode'/1" -p23949 -S"'enc_ErrorCode'(${1:Val}) $2" -p23950 -tp23951 -a(S"'enc_ErrorDescriptor'/1" -p23952 -S"'enc_ErrorDescriptor'(${1:Val}) $2" -p23953 -tp23954 -a(S"'enc_ErrorText'/1" -p23955 -S"'enc_ErrorText'(${1:Val}) $2" -p23956 -tp23957 -a(S"'enc_EventBufferControl'/1" -p23958 -S"'enc_EventBufferControl'(${1:Val}) $2" -p23959 -tp23960 -a(S"'enc_EventBufferDescriptor'/1" -p23961 -S"'enc_EventBufferDescriptor'(${1:Val}) $2" -p23962 -tp23963 -a(S"'enc_EventDM'/1" -p23964 -S"'enc_EventDM'(${1:Val}) $2" -p23965 -tp23966 -a(S"'enc_EventName'/1" -p23967 -S"'enc_EventName'(${1:Val}) $2" -p23968 -tp23969 -a(S"'enc_EventParameter'/1" -p23970 -S"'enc_EventParameter'(${1:Val}) $2" -p23971 -tp23972 -a(S"'enc_EventSpec'/1" -p23973 -S"'enc_EventSpec'(${1:Val}) $2" -p23974 -tp23975 -a(S"'enc_EventsDescriptor'/1" -p23976 -S"'enc_EventsDescriptor'(${1:Val}) $2" -p23977 -tp23978 -a(S"'enc_H221NonStandard'/1" -p23979 -S"'enc_H221NonStandard'(${1:Val}) $2" -p23980 -tp23981 -a(S"'enc_IP4Address'/1" -p23982 -S"'enc_IP4Address'(${1:Val}) $2" -p23983 -tp23984 -a(S"'enc_IP6Address'/1" -p23985 -S"'enc_IP6Address'(${1:Val}) $2" -p23986 -tp23987 -a(S"'enc_IndAudDigitMapDescriptor'/1" -p23988 -S"'enc_IndAudDigitMapDescriptor'(${1:Val}) $2" -p23989 -tp23990 -a(S"'enc_IndAudEventBufferDescriptor'/1" -p23991 -S"'enc_IndAudEventBufferDescriptor'(${1:Val}) $2" -p23992 -tp23993 -a(S"'enc_IndAudEventsDescriptor'/1" -p23994 -S"'enc_IndAudEventsDescriptor'(${1:Val}) $2" -p23995 -tp23996 -a(S"'enc_IndAudLocalControlDescriptor'/1" -p23997 -S"'enc_IndAudLocalControlDescriptor'(${1:Val}) $2" -p23998 -tp23999 -a(S"'enc_IndAudLocalRemoteDescriptor'/1" -p24000 -S"'enc_IndAudLocalRemoteDescriptor'(${1:Val}) $2" -p24001 -tp24002 -a(S"'enc_IndAudMediaDescriptor'/1" -p24003 -S"'enc_IndAudMediaDescriptor'(${1:Val}) $2" -p24004 -tp24005 -a(S"'enc_IndAudPackagesDescriptor'/1" -p24006 -S"'enc_IndAudPackagesDescriptor'(${1:Val}) $2" -p24007 -tp24008 -a(S"'enc_IndAudPropertyGroup'/1" -p24009 -S"'enc_IndAudPropertyGroup'(${1:Val}) $2" -p24010 -tp24011 -a(S"'enc_IndAudPropertyParm'/1" -p24012 -S"'enc_IndAudPropertyParm'(${1:Val}) $2" -p24013 -tp24014 -a(S"'enc_IndAudSeqSigList'/1" -p24015 -S"'enc_IndAudSeqSigList'(${1:Val}) $2" -p24016 -tp24017 -a(S"'enc_IndAudSignal'/1" -p24018 -S"'enc_IndAudSignal'(${1:Val}) $2" -p24019 -tp24020 -a(S"'enc_IndAudSignalsDescriptor'/1" -p24021 -S"'enc_IndAudSignalsDescriptor'(${1:Val}) $2" -p24022 -tp24023 -a(S"'enc_IndAudStatisticsDescriptor'/1" -p24024 -S"'enc_IndAudStatisticsDescriptor'(${1:Val}) $2" -p24025 -tp24026 -a(S"'enc_IndAudStreamDescriptor'/1" -p24027 -S"'enc_IndAudStreamDescriptor'(${1:Val}) $2" -p24028 -tp24029 -a(S"'enc_IndAudStreamParms'/1" -p24030 -S"'enc_IndAudStreamParms'(${1:Val}) $2" -p24031 -tp24032 -a(S"'enc_IndAudTerminationStateDescriptor'/1" -p24033 -S"'enc_IndAudTerminationStateDescriptor'(${1:Val}) $2" -p24034 -tp24035 -a(S"'enc_IndAuditParameter'/1" -p24036 -S"'enc_IndAuditParameter'(${1:Val}) $2" -p24037 -tp24038 -a(S"'enc_LocalControlDescriptor'/1" -p24039 -S"'enc_LocalControlDescriptor'(${1:Val}) $2" -p24040 -tp24041 -a(S"'enc_LocalRemoteDescriptor'/1" -p24042 -S"'enc_LocalRemoteDescriptor'(${1:Val}) $2" -p24043 -tp24044 -a(S"'enc_MId'/1" -p24045 -S"'enc_MId'(${1:Val}) $2" -p24046 -tp24047 -a(S"'enc_MediaDescriptor'/1" -p24048 -S"'enc_MediaDescriptor'(${1:Val}) $2" -p24049 -tp24050 -a(S"'enc_MegacoMessage'/1" -p24051 -S"'enc_MegacoMessage'(${1:Val}) $2" -p24052 -tp24053 -a(S"'enc_Message'/1" -p24054 -S"'enc_Message'(${1:Val}) $2" -p24055 -tp24056 -a(S"'enc_ModemDescriptor'/1" -p24057 -S"'enc_ModemDescriptor'(${1:Val}) $2" -p24058 -tp24059 -a(S"'enc_ModemType'/1" -p24060 -S"'enc_ModemType'(${1:Val}) $2" -p24061 -tp24062 -a(S"'enc_MuxDescriptor'/1" -p24063 -S"'enc_MuxDescriptor'(${1:Val}) $2" -p24064 -tp24065 -a(S"'enc_MuxType'/1" -p24066 -S"'enc_MuxType'(${1:Val}) $2" -p24067 -tp24068 -a(S"'enc_Name'/1" -p24069 -S"'enc_Name'(${1:Val}) $2" -p24070 -tp24071 -a(S"'enc_NonStandardData'/1" -p24072 -S"'enc_NonStandardData'(${1:Val}) $2" -p24073 -tp24074 -a(S"'enc_NonStandardIdentifier'/1" -p24075 -S"'enc_NonStandardIdentifier'(${1:Val}) $2" -p24076 -tp24077 -a(S"'enc_NotifyCompletion'/1" -p24078 -S"'enc_NotifyCompletion'(${1:Val}) $2" -p24079 -tp24080 -a(S"'enc_NotifyReply'/1" -p24081 -S"'enc_NotifyReply'(${1:Val}) $2" -p24082 -tp24083 -a(S"'enc_NotifyRequest'/1" -p24084 -S"'enc_NotifyRequest'(${1:Val}) $2" -p24085 -tp24086 -a(S"'enc_ObservedEvent'/1" -p24087 -S"'enc_ObservedEvent'(${1:Val}) $2" -p24088 -tp24089 -a(S"'enc_ObservedEventsDescriptor'/1" -p24090 -S"'enc_ObservedEventsDescriptor'(${1:Val}) $2" -p24091 -tp24092 -a(S"'enc_PackagesDescriptor'/1" -p24093 -S"'enc_PackagesDescriptor'(${1:Val}) $2" -p24094 -tp24095 -a(S"'enc_PackagesItem'/1" -p24096 -S"'enc_PackagesItem'(${1:Val}) $2" -p24097 -tp24098 -a(S"'enc_PathName'/1" -p24099 -S"'enc_PathName'(${1:Val}) $2" -p24100 -tp24101 -a(S"'enc_PkgdName'/1" -p24102 -S"'enc_PkgdName'(${1:Val}) $2" -p24103 -tp24104 -a(S"'enc_PropertyGroup'/1" -p24105 -S"'enc_PropertyGroup'(${1:Val}) $2" -p24106 -tp24107 -a(S"'enc_PropertyParm'/1" -p24108 -S"'enc_PropertyParm'(${1:Val}) $2" -p24109 -tp24110 -a(S"'enc_Relation'/1" -p24111 -S"'enc_Relation'(${1:Val}) $2" -p24112 -tp24113 -a(S"'enc_RequestID'/1" -p24114 -S"'enc_RequestID'(${1:Val}) $2" -p24115 -tp24116 -a(S"'enc_RequestedActions'/1" -p24117 -S"'enc_RequestedActions'(${1:Val}) $2" -p24118 -tp24119 -a(S"'enc_RequestedEvent'/1" -p24120 -S"'enc_RequestedEvent'(${1:Val}) $2" -p24121 -tp24122 -a(S"'enc_SecondEventsDescriptor'/1" -p24123 -S"'enc_SecondEventsDescriptor'(${1:Val}) $2" -p24124 -tp24125 -a(S"'enc_SecondRequestedActions'/1" -p24126 -S"'enc_SecondRequestedActions'(${1:Val}) $2" -p24127 -tp24128 -a(S"'enc_SecondRequestedEvent'/1" -p24129 -S"'enc_SecondRequestedEvent'(${1:Val}) $2" -p24130 -tp24131 -a(S"'enc_SecurityParmIndex'/1" -p24132 -S"'enc_SecurityParmIndex'(${1:Val}) $2" -p24133 -tp24134 -a(S"'enc_SeqSigList'/1" -p24135 -S"'enc_SeqSigList'(${1:Val}) $2" -p24136 -tp24137 -a(S"'enc_SequenceNum'/1" -p24138 -S"'enc_SequenceNum'(${1:Val}) $2" -p24139 -tp24140 -a(S"'enc_ServiceChangeAddress'/1" -p24141 -S"'enc_ServiceChangeAddress'(${1:Val}) $2" -p24142 -tp24143 -a(S"'enc_ServiceChangeMethod'/1" -p24144 -S"'enc_ServiceChangeMethod'(${1:Val}) $2" -p24145 -tp24146 -a(S"'enc_ServiceChangeParm'/1" -p24147 -S"'enc_ServiceChangeParm'(${1:Val}) $2" -p24148 -tp24149 -a(S"'enc_ServiceChangeProfile'/1" -p24150 -S"'enc_ServiceChangeProfile'(${1:Val}) $2" -p24151 -tp24152 -a(S"'enc_ServiceChangeReply'/1" -p24153 -S"'enc_ServiceChangeReply'(${1:Val}) $2" -p24154 -tp24155 -a(S"'enc_ServiceChangeRequest'/1" -p24156 -S"'enc_ServiceChangeRequest'(${1:Val}) $2" -p24157 -tp24158 -a(S"'enc_ServiceChangeResParm'/1" -p24159 -S"'enc_ServiceChangeResParm'(${1:Val}) $2" -p24160 -tp24161 -a(S"'enc_ServiceChangeResult'/1" -p24162 -S"'enc_ServiceChangeResult'(${1:Val}) $2" -p24163 -tp24164 -a(S"'enc_ServiceState'/1" -p24165 -S"'enc_ServiceState'(${1:Val}) $2" -p24166 -tp24167 -a(S"'enc_SigParameter'/1" -p24168 -S"'enc_SigParameter'(${1:Val}) $2" -p24169 -tp24170 -a(S"'enc_Signal'/1" -p24171 -S"'enc_Signal'(${1:Val}) $2" -p24172 -tp24173 -a(S"'enc_SignalName'/1" -p24174 -S"'enc_SignalName'(${1:Val}) $2" -p24175 -tp24176 -a(S"'enc_SignalRequest'/1" -p24177 -S"'enc_SignalRequest'(${1:Val}) $2" -p24178 -tp24179 -a(S"'enc_SignalType'/1" -p24180 -S"'enc_SignalType'(${1:Val}) $2" -p24181 -tp24182 -a(S"'enc_SignalsDescriptor'/1" -p24183 -S"'enc_SignalsDescriptor'(${1:Val}) $2" -p24184 -tp24185 -a(S"'enc_StatisticsDescriptor'/1" -p24186 -S"'enc_StatisticsDescriptor'(${1:Val}) $2" -p24187 -tp24188 -a(S"'enc_StatisticsParameter'/1" -p24189 -S"'enc_StatisticsParameter'(${1:Val}) $2" -p24190 -tp24191 -a(S"'enc_StreamDescriptor'/1" -p24192 -S"'enc_StreamDescriptor'(${1:Val}) $2" -p24193 -tp24194 -a(S"'enc_StreamID'/1" -p24195 -S"'enc_StreamID'(${1:Val}) $2" -p24196 -tp24197 -a(S"'enc_StreamMode'/1" -p24198 -S"'enc_StreamMode'(${1:Val}) $2" -p24199 -tp24200 -a(S"'enc_StreamParms'/1" -p24201 -S"'enc_StreamParms'(${1:Val}) $2" -p24202 -tp24203 -a(S"'enc_SubtractRequest'/1" -p24204 -S"'enc_SubtractRequest'(${1:Val}) $2" -p24205 -tp24206 -a(S"'enc_TerminationAudit'/1" -p24207 -S"'enc_TerminationAudit'(${1:Val}) $2" -p24208 -tp24209 -a(S"'enc_TerminationID'/1" -p24210 -S"'enc_TerminationID'(${1:Val}) $2" -p24211 -tp24212 -a(S"'enc_TerminationIDList'/1" -p24213 -S"'enc_TerminationIDList'(${1:Val}) $2" -p24214 -tp24215 -a(S"'enc_TerminationStateDescriptor'/1" -p24216 -S"'enc_TerminationStateDescriptor'(${1:Val}) $2" -p24217 -tp24218 -a(S"'enc_TimeNotation'/1" -p24219 -S"'enc_TimeNotation'(${1:Val}) $2" -p24220 -tp24221 -a(S"'enc_TopologyRequest'/1" -p24222 -S"'enc_TopologyRequest'(${1:Val}) $2" -p24223 -tp24224 -a(S"'enc_Transaction'/1" -p24225 -S"'enc_Transaction'(${1:Val}) $2" -p24226 -tp24227 -a(S"'enc_TransactionAck'/1" -p24228 -S"'enc_TransactionAck'(${1:Val}) $2" -p24229 -tp24230 -a(S"'enc_TransactionId'/1" -p24231 -S"'enc_TransactionId'(${1:Val}) $2" -p24232 -tp24233 -a(S"'enc_TransactionPending'/1" -p24234 -S"'enc_TransactionPending'(${1:Val}) $2" -p24235 -tp24236 -a(S"'enc_TransactionReply'/1" -p24237 -S"'enc_TransactionReply'(${1:Val}) $2" -p24238 -tp24239 -a(S"'enc_TransactionRequest'/1" -p24240 -S"'enc_TransactionRequest'(${1:Val}) $2" -p24241 -tp24242 -a(S"'enc_TransactionResponseAck'/1" -p24243 -S"'enc_TransactionResponseAck'(${1:Val}) $2" -p24244 -tp24245 -a(S"'enc_Value'/1" -p24246 -S"'enc_Value'(${1:Val}) $2" -p24247 -tp24248 -a(S"'enc_WildcardField'/1" -p24249 -S"'enc_WildcardField'(${1:Val}) $2" -p24250 -tp24251 -a(S'decode/2' -p24252 -S'decode(${1:Type}, ${2:Data}) $3' -p24253 -tp24254 -a(S'decode_disp/2' -p24255 -S'decode_disp(${1:Type}, ${2:Data}) $3' -p24256 -tp24257 -a(S'encode/2' -p24258 -S'encode(${1:Type}, ${2:Data}) $3' -p24259 -tp24260 -a(S'encode_disp/2' -p24261 -S'encode_disp(${1:Type}, ${2:Data}) $3' -p24262 -tp24263 -a(S'encoding_rule/0' -p24264 -S'encoding_rule() $1' -p24265 -tp24266 -a(S'info/0' -p24267 -S'info() $1' -p24268 -tp24269 -asS'megaco_per_media_gateway_control_v3' -p24270 -(lp24271 -(S"'dec_ActionReply'/2" -p24272 -S"'dec_ActionReply'(${1:Bytes}, ${2:Param2}) $3" -p24273 -tp24274 -a(S"'dec_ActionRequest'/2" -p24275 -S"'dec_ActionRequest'(${1:Bytes}, ${2:Param2}) $3" -p24276 -tp24277 -a(S"'dec_AmmDescriptor'/2" -p24278 -S"'dec_AmmDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p24279 -tp24280 -a(S"'dec_AmmRequest'/2" -p24281 -S"'dec_AmmRequest'(${1:Bytes}, ${2:Param2}) $3" -p24282 -tp24283 -a(S"'dec_AmmsReply'/2" -p24284 -S"'dec_AmmsReply'(${1:Bytes}, ${2:Param2}) $3" -p24285 -tp24286 -a(S"'dec_AuditDescriptor'/2" -p24287 -S"'dec_AuditDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p24288 -tp24289 -a(S"'dec_AuditReply'/2" -p24290 -S"'dec_AuditReply'(${1:Bytes}, ${2:Param2}) $3" -p24291 -tp24292 -a(S"'dec_AuditRequest'/2" -p24293 -S"'dec_AuditRequest'(${1:Bytes}, ${2:Param2}) $3" -p24294 -tp24295 -a(S"'dec_AuditResult'/2" -p24296 -S"'dec_AuditResult'(${1:Bytes}, ${2:Param2}) $3" -p24297 -tp24298 -a(S"'dec_AuditReturnParameter'/2" -p24299 -S"'dec_AuditReturnParameter'(${1:Bytes}, ${2:Param2}) $3" -p24300 -tp24301 -a(S"'dec_AuthData'/2" -p24302 -S"'dec_AuthData'(${1:Bytes}, ${2:Param2}) $3" -p24303 -tp24304 -a(S"'dec_AuthenticationHeader'/2" -p24305 -S"'dec_AuthenticationHeader'(${1:Bytes}, ${2:Param2}) $3" -p24306 -tp24307 -a(S"'dec_Command'/2" -p24308 -S"'dec_Command'(${1:Bytes}, ${2:Param2}) $3" -p24309 -tp24310 -a(S"'dec_CommandReply'/2" -p24311 -S"'dec_CommandReply'(${1:Bytes}, ${2:Param2}) $3" -p24312 -tp24313 -a(S"'dec_CommandRequest'/2" -p24314 -S"'dec_CommandRequest'(${1:Bytes}, ${2:Param2}) $3" -p24315 -tp24316 -a(S"'dec_ContextAttrAuditRequest'/2" -p24317 -S"'dec_ContextAttrAuditRequest'(${1:Bytes}, ${2:Param2}) $3" -p24318 -tp24319 -a(S"'dec_ContextID'/2" -p24320 -S"'dec_ContextID'(${1:Bytes}, ${2:Param2}) $3" -p24321 -tp24322 -a(S"'dec_ContextRequest'/2" -p24323 -S"'dec_ContextRequest'(${1:Bytes}, ${2:Param2}) $3" -p24324 -tp24325 -a(S"'dec_DigitMapDescriptor'/2" -p24326 -S"'dec_DigitMapDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p24327 -tp24328 -a(S"'dec_DigitMapName'/2" -p24329 -S"'dec_DigitMapName'(${1:Bytes}, ${2:Param2}) $3" -p24330 -tp24331 -a(S"'dec_DigitMapValue'/2" -p24332 -S"'dec_DigitMapValue'(${1:Bytes}, ${2:Param2}) $3" -p24333 -tp24334 -a(S"'dec_DomainName'/2" -p24335 -S"'dec_DomainName'(${1:Bytes}, ${2:Param2}) $3" -p24336 -tp24337 -a(S"'dec_ErrorCode'/2" -p24338 -S"'dec_ErrorCode'(${1:Bytes}, ${2:Param2}) $3" -p24339 -tp24340 -a(S"'dec_ErrorDescriptor'/2" -p24341 -S"'dec_ErrorDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p24342 -tp24343 -a(S"'dec_ErrorText'/2" -p24344 -S"'dec_ErrorText'(${1:Bytes}, ${2:Param2}) $3" -p24345 -tp24346 -a(S"'dec_EventBufferControl'/2" -p24347 -S"'dec_EventBufferControl'(${1:Bytes}, ${2:Param2}) $3" -p24348 -tp24349 -a(S"'dec_EventBufferDescriptor'/2" -p24350 -S"'dec_EventBufferDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p24351 -tp24352 -a(S"'dec_EventDM'/2" -p24353 -S"'dec_EventDM'(${1:Bytes}, ${2:Param2}) $3" -p24354 -tp24355 -a(S"'dec_EventName'/2" -p24356 -S"'dec_EventName'(${1:Bytes}, ${2:Param2}) $3" -p24357 -tp24358 -a(S"'dec_EventParameter'/2" -p24359 -S"'dec_EventParameter'(${1:Bytes}, ${2:Param2}) $3" -p24360 -tp24361 -a(S"'dec_EventSpec'/2" -p24362 -S"'dec_EventSpec'(${1:Bytes}, ${2:Param2}) $3" -p24363 -tp24364 -a(S"'dec_EventsDescriptor'/2" -p24365 -S"'dec_EventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p24366 -tp24367 -a(S"'dec_H221NonStandard'/2" -p24368 -S"'dec_H221NonStandard'(${1:Bytes}, ${2:Param2}) $3" -p24369 -tp24370 -a(S"'dec_IP4Address'/2" -p24371 -S"'dec_IP4Address'(${1:Bytes}, ${2:Param2}) $3" -p24372 -tp24373 -a(S"'dec_IP6Address'/2" -p24374 -S"'dec_IP6Address'(${1:Bytes}, ${2:Param2}) $3" -p24375 -tp24376 -a(S"'dec_IndAudDigitMapDescriptor'/2" -p24377 -S"'dec_IndAudDigitMapDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p24378 -tp24379 -a(S"'dec_IndAudEventBufferDescriptor'/2" -p24380 -S"'dec_IndAudEventBufferDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p24381 -tp24382 -a(S"'dec_IndAudEventsDescriptor'/2" -p24383 -S"'dec_IndAudEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p24384 -tp24385 -a(S"'dec_IndAudLocalControlDescriptor'/2" -p24386 -S"'dec_IndAudLocalControlDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p24387 -tp24388 -a(S"'dec_IndAudLocalRemoteDescriptor'/2" -p24389 -S"'dec_IndAudLocalRemoteDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p24390 -tp24391 -a(S"'dec_IndAudMediaDescriptor'/2" -p24392 -S"'dec_IndAudMediaDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p24393 -tp24394 -a(S"'dec_IndAudPackagesDescriptor'/2" -p24395 -S"'dec_IndAudPackagesDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p24396 -tp24397 -a(S"'dec_IndAudPropertyGroup'/2" -p24398 -S"'dec_IndAudPropertyGroup'(${1:Bytes}, ${2:Param2}) $3" -p24399 -tp24400 -a(S"'dec_IndAudPropertyParm'/2" -p24401 -S"'dec_IndAudPropertyParm'(${1:Bytes}, ${2:Param2}) $3" -p24402 -tp24403 -a(S"'dec_IndAudSeqSigList'/2" -p24404 -S"'dec_IndAudSeqSigList'(${1:Bytes}, ${2:Param2}) $3" -p24405 -tp24406 -a(S"'dec_IndAudSignal'/2" -p24407 -S"'dec_IndAudSignal'(${1:Bytes}, ${2:Param2}) $3" -p24408 -tp24409 -a(S"'dec_IndAudSignalsDescriptor'/2" -p24410 -S"'dec_IndAudSignalsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p24411 -tp24412 -a(S"'dec_IndAudStatisticsDescriptor'/2" -p24413 -S"'dec_IndAudStatisticsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p24414 -tp24415 -a(S"'dec_IndAudStreamDescriptor'/2" -p24416 -S"'dec_IndAudStreamDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p24417 -tp24418 -a(S"'dec_IndAudStreamParms'/2" -p24419 -S"'dec_IndAudStreamParms'(${1:Bytes}, ${2:Param2}) $3" -p24420 -tp24421 -a(S"'dec_IndAudTerminationStateDescriptor'/2" -p24422 -S"'dec_IndAudTerminationStateDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p24423 -tp24424 -a(S"'dec_IndAuditParameter'/2" -p24425 -S"'dec_IndAuditParameter'(${1:Bytes}, ${2:Param2}) $3" -p24426 -tp24427 -a(S"'dec_LocalControlDescriptor'/2" -p24428 -S"'dec_LocalControlDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p24429 -tp24430 -a(S"'dec_LocalRemoteDescriptor'/2" -p24431 -S"'dec_LocalRemoteDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p24432 -tp24433 -a(S"'dec_MId'/2" -p24434 -S"'dec_MId'(${1:Bytes}, ${2:Param2}) $3" -p24435 -tp24436 -a(S"'dec_MediaDescriptor'/2" -p24437 -S"'dec_MediaDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p24438 -tp24439 -a(S"'dec_MegacoMessage'/2" -p24440 -S"'dec_MegacoMessage'(${1:Bytes}, ${2:Param2}) $3" -p24441 -tp24442 -a(S"'dec_Message'/2" -p24443 -S"'dec_Message'(${1:Bytes}, ${2:Param2}) $3" -p24444 -tp24445 -a(S"'dec_ModemDescriptor'/2" -p24446 -S"'dec_ModemDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p24447 -tp24448 -a(S"'dec_ModemType'/2" -p24449 -S"'dec_ModemType'(${1:Bytes}, ${2:Param2}) $3" -p24450 -tp24451 -a(S"'dec_MuxDescriptor'/2" -p24452 -S"'dec_MuxDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p24453 -tp24454 -a(S"'dec_MuxType'/2" -p24455 -S"'dec_MuxType'(${1:Bytes}, ${2:Param2}) $3" -p24456 -tp24457 -a(S"'dec_Name'/2" -p24458 -S"'dec_Name'(${1:Bytes}, ${2:Param2}) $3" -p24459 -tp24460 -a(S"'dec_NonStandardData'/2" -p24461 -S"'dec_NonStandardData'(${1:Bytes}, ${2:Param2}) $3" -p24462 -tp24463 -a(S"'dec_NonStandardIdentifier'/2" -p24464 -S"'dec_NonStandardIdentifier'(${1:Bytes}, ${2:Param2}) $3" -p24465 -tp24466 -a(S"'dec_NotifyBehaviour'/2" -p24467 -S"'dec_NotifyBehaviour'(${1:Bytes}, ${2:Param2}) $3" -p24468 -tp24469 -a(S"'dec_NotifyCompletion'/2" -p24470 -S"'dec_NotifyCompletion'(${1:Bytes}, ${2:Param2}) $3" -p24471 -tp24472 -a(S"'dec_NotifyReply'/2" -p24473 -S"'dec_NotifyReply'(${1:Bytes}, ${2:Param2}) $3" -p24474 -tp24475 -a(S"'dec_NotifyRequest'/2" -p24476 -S"'dec_NotifyRequest'(${1:Bytes}, ${2:Param2}) $3" -p24477 -tp24478 -a(S"'dec_ObservedEvent'/2" -p24479 -S"'dec_ObservedEvent'(${1:Bytes}, ${2:Param2}) $3" -p24480 -tp24481 -a(S"'dec_ObservedEventsDescriptor'/2" -p24482 -S"'dec_ObservedEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p24483 -tp24484 -a(S"'dec_PackagesDescriptor'/2" -p24485 -S"'dec_PackagesDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p24486 -tp24487 -a(S"'dec_PackagesItem'/2" -p24488 -S"'dec_PackagesItem'(${1:Bytes}, ${2:Param2}) $3" -p24489 -tp24490 -a(S"'dec_PathName'/2" -p24491 -S"'dec_PathName'(${1:Bytes}, ${2:Param2}) $3" -p24492 -tp24493 -a(S"'dec_PkgdName'/2" -p24494 -S"'dec_PkgdName'(${1:Bytes}, ${2:Param2}) $3" -p24495 -tp24496 -a(S"'dec_PropertyGroup'/2" -p24497 -S"'dec_PropertyGroup'(${1:Bytes}, ${2:Param2}) $3" -p24498 -tp24499 -a(S"'dec_PropertyParm'/2" -p24500 -S"'dec_PropertyParm'(${1:Bytes}, ${2:Param2}) $3" -p24501 -tp24502 -a(S"'dec_RegulatedEmbeddedDescriptor'/2" -p24503 -S"'dec_RegulatedEmbeddedDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p24504 -tp24505 -a(S"'dec_Relation'/2" -p24506 -S"'dec_Relation'(${1:Bytes}, ${2:Param2}) $3" -p24507 -tp24508 -a(S"'dec_RequestID'/2" -p24509 -S"'dec_RequestID'(${1:Bytes}, ${2:Param2}) $3" -p24510 -tp24511 -a(S"'dec_RequestedActions'/2" -p24512 -S"'dec_RequestedActions'(${1:Bytes}, ${2:Param2}) $3" -p24513 -tp24514 -a(S"'dec_RequestedEvent'/2" -p24515 -S"'dec_RequestedEvent'(${1:Bytes}, ${2:Param2}) $3" -p24516 -tp24517 -a(S"'dec_SecondEventsDescriptor'/2" -p24518 -S"'dec_SecondEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p24519 -tp24520 -a(S"'dec_SecondRequestedActions'/2" -p24521 -S"'dec_SecondRequestedActions'(${1:Bytes}, ${2:Param2}) $3" -p24522 -tp24523 -a(S"'dec_SecondRequestedEvent'/2" -p24524 -S"'dec_SecondRequestedEvent'(${1:Bytes}, ${2:Param2}) $3" -p24525 -tp24526 -a(S"'dec_SecurityParmIndex'/2" -p24527 -S"'dec_SecurityParmIndex'(${1:Bytes}, ${2:Param2}) $3" -p24528 -tp24529 -a(S"'dec_SegmentNumber'/2" -p24530 -S"'dec_SegmentNumber'(${1:Bytes}, ${2:Param2}) $3" -p24531 -tp24532 -a(S"'dec_SegmentReply'/2" -p24533 -S"'dec_SegmentReply'(${1:Bytes}, ${2:Param2}) $3" -p24534 -tp24535 -a(S"'dec_SelectLogic'/2" -p24536 -S"'dec_SelectLogic'(${1:Bytes}, ${2:Param2}) $3" -p24537 -tp24538 -a(S"'dec_SeqSigList'/2" -p24539 -S"'dec_SeqSigList'(${1:Bytes}, ${2:Param2}) $3" -p24540 -tp24541 -a(S"'dec_SequenceNum'/2" -p24542 -S"'dec_SequenceNum'(${1:Bytes}, ${2:Param2}) $3" -p24543 -tp24544 -a(S"'dec_ServiceChangeAddress'/2" -p24545 -S"'dec_ServiceChangeAddress'(${1:Bytes}, ${2:Param2}) $3" -p24546 -tp24547 -a(S"'dec_ServiceChangeMethod'/2" -p24548 -S"'dec_ServiceChangeMethod'(${1:Bytes}, ${2:Param2}) $3" -p24549 -tp24550 -a(S"'dec_ServiceChangeParm'/2" -p24551 -S"'dec_ServiceChangeParm'(${1:Bytes}, ${2:Param2}) $3" -p24552 -tp24553 -a(S"'dec_ServiceChangeProfile'/2" -p24554 -S"'dec_ServiceChangeProfile'(${1:Bytes}, ${2:Param2}) $3" -p24555 -tp24556 -a(S"'dec_ServiceChangeReply'/2" -p24557 -S"'dec_ServiceChangeReply'(${1:Bytes}, ${2:Param2}) $3" -p24558 -tp24559 -a(S"'dec_ServiceChangeRequest'/2" -p24560 -S"'dec_ServiceChangeRequest'(${1:Bytes}, ${2:Param2}) $3" -p24561 -tp24562 -a(S"'dec_ServiceChangeResParm'/2" -p24563 -S"'dec_ServiceChangeResParm'(${1:Bytes}, ${2:Param2}) $3" -p24564 -tp24565 -a(S"'dec_ServiceChangeResult'/2" -p24566 -S"'dec_ServiceChangeResult'(${1:Bytes}, ${2:Param2}) $3" -p24567 -tp24568 -a(S"'dec_ServiceState'/2" -p24569 -S"'dec_ServiceState'(${1:Bytes}, ${2:Param2}) $3" -p24570 -tp24571 -a(S"'dec_SigParameter'/2" -p24572 -S"'dec_SigParameter'(${1:Bytes}, ${2:Param2}) $3" -p24573 -tp24574 -a(S"'dec_Signal'/2" -p24575 -S"'dec_Signal'(${1:Bytes}, ${2:Param2}) $3" -p24576 -tp24577 -a(S"'dec_SignalDirection'/2" -p24578 -S"'dec_SignalDirection'(${1:Bytes}, ${2:Param2}) $3" -p24579 -tp24580 -a(S"'dec_SignalName'/2" -p24581 -S"'dec_SignalName'(${1:Bytes}, ${2:Param2}) $3" -p24582 -tp24583 -a(S"'dec_SignalRequest'/2" -p24584 -S"'dec_SignalRequest'(${1:Bytes}, ${2:Param2}) $3" -p24585 -tp24586 -a(S"'dec_SignalType'/2" -p24587 -S"'dec_SignalType'(${1:Bytes}, ${2:Param2}) $3" -p24588 -tp24589 -a(S"'dec_SignalsDescriptor'/2" -p24590 -S"'dec_SignalsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p24591 -tp24592 -a(S"'dec_StatisticsDescriptor'/2" -p24593 -S"'dec_StatisticsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p24594 -tp24595 -a(S"'dec_StatisticsParameter'/2" -p24596 -S"'dec_StatisticsParameter'(${1:Bytes}, ${2:Param2}) $3" -p24597 -tp24598 -a(S"'dec_StreamDescriptor'/2" -p24599 -S"'dec_StreamDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p24600 -tp24601 -a(S"'dec_StreamID'/2" -p24602 -S"'dec_StreamID'(${1:Bytes}, ${2:Param2}) $3" -p24603 -tp24604 -a(S"'dec_StreamMode'/2" -p24605 -S"'dec_StreamMode'(${1:Bytes}, ${2:Param2}) $3" -p24606 -tp24607 -a(S"'dec_StreamParms'/2" -p24608 -S"'dec_StreamParms'(${1:Bytes}, ${2:Param2}) $3" -p24609 -tp24610 -a(S"'dec_SubtractRequest'/2" -p24611 -S"'dec_SubtractRequest'(${1:Bytes}, ${2:Param2}) $3" -p24612 -tp24613 -a(S"'dec_TermListAuditResult'/2" -p24614 -S"'dec_TermListAuditResult'(${1:Bytes}, ${2:Param2}) $3" -p24615 -tp24616 -a(S"'dec_TerminationAudit'/2" -p24617 -S"'dec_TerminationAudit'(${1:Bytes}, ${2:Param2}) $3" -p24618 -tp24619 -a(S"'dec_TerminationID'/2" -p24620 -S"'dec_TerminationID'(${1:Bytes}, ${2:Param2}) $3" -p24621 -tp24622 -a(S"'dec_TerminationIDList'/2" -p24623 -S"'dec_TerminationIDList'(${1:Bytes}, ${2:Param2}) $3" -p24624 -tp24625 -a(S"'dec_TerminationStateDescriptor'/2" -p24626 -S"'dec_TerminationStateDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p24627 -tp24628 -a(S"'dec_TimeNotation'/2" -p24629 -S"'dec_TimeNotation'(${1:Bytes}, ${2:Param2}) $3" -p24630 -tp24631 -a(S"'dec_TopologyRequest'/2" -p24632 -S"'dec_TopologyRequest'(${1:Bytes}, ${2:Param2}) $3" -p24633 -tp24634 -a(S"'dec_Transaction'/2" -p24635 -S"'dec_Transaction'(${1:Bytes}, ${2:Param2}) $3" -p24636 -tp24637 -a(S"'dec_TransactionAck'/2" -p24638 -S"'dec_TransactionAck'(${1:Bytes}, ${2:Param2}) $3" -p24639 -tp24640 -a(S"'dec_TransactionId'/2" -p24641 -S"'dec_TransactionId'(${1:Bytes}, ${2:Param2}) $3" -p24642 -tp24643 -a(S"'dec_TransactionPending'/2" -p24644 -S"'dec_TransactionPending'(${1:Bytes}, ${2:Param2}) $3" -p24645 -tp24646 -a(S"'dec_TransactionReply'/2" -p24647 -S"'dec_TransactionReply'(${1:Bytes}, ${2:Param2}) $3" -p24648 -tp24649 -a(S"'dec_TransactionRequest'/2" -p24650 -S"'dec_TransactionRequest'(${1:Bytes}, ${2:Param2}) $3" -p24651 -tp24652 -a(S"'dec_TransactionResponseAck'/2" -p24653 -S"'dec_TransactionResponseAck'(${1:Bytes}, ${2:Param2}) $3" -p24654 -tp24655 -a(S"'dec_Value'/2" -p24656 -S"'dec_Value'(${1:Bytes}, ${2:Param2}) $3" -p24657 -tp24658 -a(S"'dec_WildcardField'/2" -p24659 -S"'dec_WildcardField'(${1:Bytes}, ${2:Param2}) $3" -p24660 -tp24661 -a(S"'enc_ActionReply'/1" -p24662 -S"'enc_ActionReply'(${1:Val}) $2" -p24663 -tp24664 -a(S"'enc_ActionRequest'/1" -p24665 -S"'enc_ActionRequest'(${1:Val}) $2" -p24666 -tp24667 -a(S"'enc_AmmDescriptor'/1" -p24668 -S"'enc_AmmDescriptor'(${1:Val}) $2" -p24669 -tp24670 -a(S"'enc_AmmRequest'/1" -p24671 -S"'enc_AmmRequest'(${1:Val}) $2" -p24672 -tp24673 -a(S"'enc_AmmsReply'/1" -p24674 -S"'enc_AmmsReply'(${1:Val}) $2" -p24675 -tp24676 -a(S"'enc_AuditDescriptor'/1" -p24677 -S"'enc_AuditDescriptor'(${1:Val}) $2" -p24678 -tp24679 -a(S"'enc_AuditReply'/1" -p24680 -S"'enc_AuditReply'(${1:Val}) $2" -p24681 -tp24682 -a(S"'enc_AuditRequest'/1" -p24683 -S"'enc_AuditRequest'(${1:Val}) $2" -p24684 -tp24685 -a(S"'enc_AuditResult'/1" -p24686 -S"'enc_AuditResult'(${1:Val}) $2" -p24687 -tp24688 -a(S"'enc_AuditReturnParameter'/1" -p24689 -S"'enc_AuditReturnParameter'(${1:Val}) $2" -p24690 -tp24691 -a(S"'enc_AuthData'/1" -p24692 -S"'enc_AuthData'(${1:Val}) $2" -p24693 -tp24694 -a(S"'enc_AuthenticationHeader'/1" -p24695 -S"'enc_AuthenticationHeader'(${1:Val}) $2" -p24696 -tp24697 -a(S"'enc_Command'/1" -p24698 -S"'enc_Command'(${1:Val}) $2" -p24699 -tp24700 -a(S"'enc_CommandReply'/1" -p24701 -S"'enc_CommandReply'(${1:Val}) $2" -p24702 -tp24703 -a(S"'enc_CommandRequest'/1" -p24704 -S"'enc_CommandRequest'(${1:Val}) $2" -p24705 -tp24706 -a(S"'enc_ContextAttrAuditRequest'/1" -p24707 -S"'enc_ContextAttrAuditRequest'(${1:Val}) $2" -p24708 -tp24709 -a(S"'enc_ContextID'/1" -p24710 -S"'enc_ContextID'(${1:Val}) $2" -p24711 -tp24712 -a(S"'enc_ContextRequest'/1" -p24713 -S"'enc_ContextRequest'(${1:Val}) $2" -p24714 -tp24715 -a(S"'enc_DigitMapDescriptor'/1" -p24716 -S"'enc_DigitMapDescriptor'(${1:Val}) $2" -p24717 -tp24718 -a(S"'enc_DigitMapName'/1" -p24719 -S"'enc_DigitMapName'(${1:Val}) $2" -p24720 -tp24721 -a(S"'enc_DigitMapValue'/1" -p24722 -S"'enc_DigitMapValue'(${1:Val}) $2" -p24723 -tp24724 -a(S"'enc_DomainName'/1" -p24725 -S"'enc_DomainName'(${1:Val}) $2" -p24726 -tp24727 -a(S"'enc_ErrorCode'/1" -p24728 -S"'enc_ErrorCode'(${1:Val}) $2" -p24729 -tp24730 -a(S"'enc_ErrorDescriptor'/1" -p24731 -S"'enc_ErrorDescriptor'(${1:Val}) $2" -p24732 -tp24733 -a(S"'enc_ErrorText'/1" -p24734 -S"'enc_ErrorText'(${1:Val}) $2" -p24735 -tp24736 -a(S"'enc_EventBufferControl'/1" -p24737 -S"'enc_EventBufferControl'(${1:Val}) $2" -p24738 -tp24739 -a(S"'enc_EventBufferDescriptor'/1" -p24740 -S"'enc_EventBufferDescriptor'(${1:Val}) $2" -p24741 -tp24742 -a(S"'enc_EventDM'/1" -p24743 -S"'enc_EventDM'(${1:Val}) $2" -p24744 -tp24745 -a(S"'enc_EventName'/1" -p24746 -S"'enc_EventName'(${1:Val}) $2" -p24747 -tp24748 -a(S"'enc_EventParameter'/1" -p24749 -S"'enc_EventParameter'(${1:Val}) $2" -p24750 -tp24751 -a(S"'enc_EventSpec'/1" -p24752 -S"'enc_EventSpec'(${1:Val}) $2" -p24753 -tp24754 -a(S"'enc_EventsDescriptor'/1" -p24755 -S"'enc_EventsDescriptor'(${1:Val}) $2" -p24756 -tp24757 -a(S"'enc_H221NonStandard'/1" -p24758 -S"'enc_H221NonStandard'(${1:Val}) $2" -p24759 -tp24760 -a(S"'enc_IP4Address'/1" -p24761 -S"'enc_IP4Address'(${1:Val}) $2" -p24762 -tp24763 -a(S"'enc_IP6Address'/1" -p24764 -S"'enc_IP6Address'(${1:Val}) $2" -p24765 -tp24766 -a(S"'enc_IndAudDigitMapDescriptor'/1" -p24767 -S"'enc_IndAudDigitMapDescriptor'(${1:Val}) $2" -p24768 -tp24769 -a(S"'enc_IndAudEventBufferDescriptor'/1" -p24770 -S"'enc_IndAudEventBufferDescriptor'(${1:Val}) $2" -p24771 -tp24772 -a(S"'enc_IndAudEventsDescriptor'/1" -p24773 -S"'enc_IndAudEventsDescriptor'(${1:Val}) $2" -p24774 -tp24775 -a(S"'enc_IndAudLocalControlDescriptor'/1" -p24776 -S"'enc_IndAudLocalControlDescriptor'(${1:Val}) $2" -p24777 -tp24778 -a(S"'enc_IndAudLocalRemoteDescriptor'/1" -p24779 -S"'enc_IndAudLocalRemoteDescriptor'(${1:Val}) $2" -p24780 -tp24781 -a(S"'enc_IndAudMediaDescriptor'/1" -p24782 -S"'enc_IndAudMediaDescriptor'(${1:Val}) $2" -p24783 -tp24784 -a(S"'enc_IndAudPackagesDescriptor'/1" -p24785 -S"'enc_IndAudPackagesDescriptor'(${1:Val}) $2" -p24786 -tp24787 -a(S"'enc_IndAudPropertyGroup'/1" -p24788 -S"'enc_IndAudPropertyGroup'(${1:Val}) $2" -p24789 -tp24790 -a(S"'enc_IndAudPropertyParm'/1" -p24791 -S"'enc_IndAudPropertyParm'(${1:Val}) $2" -p24792 -tp24793 -a(S"'enc_IndAudSeqSigList'/1" -p24794 -S"'enc_IndAudSeqSigList'(${1:Val}) $2" -p24795 -tp24796 -a(S"'enc_IndAudSignal'/1" -p24797 -S"'enc_IndAudSignal'(${1:Val}) $2" -p24798 -tp24799 -a(S"'enc_IndAudSignalsDescriptor'/1" -p24800 -S"'enc_IndAudSignalsDescriptor'(${1:Val}) $2" -p24801 -tp24802 -a(S"'enc_IndAudStatisticsDescriptor'/1" -p24803 -S"'enc_IndAudStatisticsDescriptor'(${1:Val}) $2" -p24804 -tp24805 -a(S"'enc_IndAudStreamDescriptor'/1" -p24806 -S"'enc_IndAudStreamDescriptor'(${1:Val}) $2" -p24807 -tp24808 -a(S"'enc_IndAudStreamParms'/1" -p24809 -S"'enc_IndAudStreamParms'(${1:Val}) $2" -p24810 -tp24811 -a(S"'enc_IndAudTerminationStateDescriptor'/1" -p24812 -S"'enc_IndAudTerminationStateDescriptor'(${1:Val}) $2" -p24813 -tp24814 -a(S"'enc_IndAuditParameter'/1" -p24815 -S"'enc_IndAuditParameter'(${1:Val}) $2" -p24816 -tp24817 -a(S"'enc_LocalControlDescriptor'/1" -p24818 -S"'enc_LocalControlDescriptor'(${1:Val}) $2" -p24819 -tp24820 -a(S"'enc_LocalRemoteDescriptor'/1" -p24821 -S"'enc_LocalRemoteDescriptor'(${1:Val}) $2" -p24822 -tp24823 -a(S"'enc_MId'/1" -p24824 -S"'enc_MId'(${1:Val}) $2" -p24825 -tp24826 -a(S"'enc_MediaDescriptor'/1" -p24827 -S"'enc_MediaDescriptor'(${1:Val}) $2" -p24828 -tp24829 -a(S"'enc_MegacoMessage'/1" -p24830 -S"'enc_MegacoMessage'(${1:Val}) $2" -p24831 -tp24832 -a(S"'enc_Message'/1" -p24833 -S"'enc_Message'(${1:Val}) $2" -p24834 -tp24835 -a(S"'enc_ModemDescriptor'/1" -p24836 -S"'enc_ModemDescriptor'(${1:Val}) $2" -p24837 -tp24838 -a(S"'enc_ModemType'/1" -p24839 -S"'enc_ModemType'(${1:Val}) $2" -p24840 -tp24841 -a(S"'enc_MuxDescriptor'/1" -p24842 -S"'enc_MuxDescriptor'(${1:Val}) $2" -p24843 -tp24844 -a(S"'enc_MuxType'/1" -p24845 -S"'enc_MuxType'(${1:Val}) $2" -p24846 -tp24847 -a(S"'enc_Name'/1" -p24848 -S"'enc_Name'(${1:Val}) $2" -p24849 -tp24850 -a(S"'enc_NonStandardData'/1" -p24851 -S"'enc_NonStandardData'(${1:Val}) $2" -p24852 -tp24853 -a(S"'enc_NonStandardIdentifier'/1" -p24854 -S"'enc_NonStandardIdentifier'(${1:Val}) $2" -p24855 -tp24856 -a(S"'enc_NotifyBehaviour'/1" -p24857 -S"'enc_NotifyBehaviour'(${1:Val}) $2" -p24858 -tp24859 -a(S"'enc_NotifyCompletion'/1" -p24860 -S"'enc_NotifyCompletion'(${1:Val}) $2" -p24861 -tp24862 -a(S"'enc_NotifyReply'/1" -p24863 -S"'enc_NotifyReply'(${1:Val}) $2" -p24864 -tp24865 -a(S"'enc_NotifyRequest'/1" -p24866 -S"'enc_NotifyRequest'(${1:Val}) $2" -p24867 -tp24868 -a(S"'enc_ObservedEvent'/1" -p24869 -S"'enc_ObservedEvent'(${1:Val}) $2" -p24870 -tp24871 -a(S"'enc_ObservedEventsDescriptor'/1" -p24872 -S"'enc_ObservedEventsDescriptor'(${1:Val}) $2" -p24873 -tp24874 -a(S"'enc_PackagesDescriptor'/1" -p24875 -S"'enc_PackagesDescriptor'(${1:Val}) $2" -p24876 -tp24877 -a(S"'enc_PackagesItem'/1" -p24878 -S"'enc_PackagesItem'(${1:Val}) $2" -p24879 -tp24880 -a(S"'enc_PathName'/1" -p24881 -S"'enc_PathName'(${1:Val}) $2" -p24882 -tp24883 -a(S"'enc_PkgdName'/1" -p24884 -S"'enc_PkgdName'(${1:Val}) $2" -p24885 -tp24886 -a(S"'enc_PropertyGroup'/1" -p24887 -S"'enc_PropertyGroup'(${1:Val}) $2" -p24888 -tp24889 -a(S"'enc_PropertyParm'/1" -p24890 -S"'enc_PropertyParm'(${1:Val}) $2" -p24891 -tp24892 -a(S"'enc_RegulatedEmbeddedDescriptor'/1" -p24893 -S"'enc_RegulatedEmbeddedDescriptor'(${1:Val}) $2" -p24894 -tp24895 -a(S"'enc_Relation'/1" -p24896 -S"'enc_Relation'(${1:Val}) $2" -p24897 -tp24898 -a(S"'enc_RequestID'/1" -p24899 -S"'enc_RequestID'(${1:Val}) $2" -p24900 -tp24901 -a(S"'enc_RequestedActions'/1" -p24902 -S"'enc_RequestedActions'(${1:Val}) $2" -p24903 -tp24904 -a(S"'enc_RequestedEvent'/1" -p24905 -S"'enc_RequestedEvent'(${1:Val}) $2" -p24906 -tp24907 -a(S"'enc_SecondEventsDescriptor'/1" -p24908 -S"'enc_SecondEventsDescriptor'(${1:Val}) $2" -p24909 -tp24910 -a(S"'enc_SecondRequestedActions'/1" -p24911 -S"'enc_SecondRequestedActions'(${1:Val}) $2" -p24912 -tp24913 -a(S"'enc_SecondRequestedEvent'/1" -p24914 -S"'enc_SecondRequestedEvent'(${1:Val}) $2" -p24915 -tp24916 -a(S"'enc_SecurityParmIndex'/1" -p24917 -S"'enc_SecurityParmIndex'(${1:Val}) $2" -p24918 -tp24919 -a(S"'enc_SegmentNumber'/1" -p24920 -S"'enc_SegmentNumber'(${1:Val}) $2" -p24921 -tp24922 -a(S"'enc_SegmentReply'/1" -p24923 -S"'enc_SegmentReply'(${1:Val}) $2" -p24924 -tp24925 -a(S"'enc_SelectLogic'/1" -p24926 -S"'enc_SelectLogic'(${1:Val}) $2" -p24927 -tp24928 -a(S"'enc_SeqSigList'/1" -p24929 -S"'enc_SeqSigList'(${1:Val}) $2" -p24930 -tp24931 -a(S"'enc_SequenceNum'/1" -p24932 -S"'enc_SequenceNum'(${1:Val}) $2" -p24933 -tp24934 -a(S"'enc_ServiceChangeAddress'/1" -p24935 -S"'enc_ServiceChangeAddress'(${1:Val}) $2" -p24936 -tp24937 -a(S"'enc_ServiceChangeMethod'/1" -p24938 -S"'enc_ServiceChangeMethod'(${1:Val}) $2" -p24939 -tp24940 -a(S"'enc_ServiceChangeParm'/1" -p24941 -S"'enc_ServiceChangeParm'(${1:Val}) $2" -p24942 -tp24943 -a(S"'enc_ServiceChangeProfile'/1" -p24944 -S"'enc_ServiceChangeProfile'(${1:Val}) $2" -p24945 -tp24946 -a(S"'enc_ServiceChangeReply'/1" -p24947 -S"'enc_ServiceChangeReply'(${1:Val}) $2" -p24948 -tp24949 -a(S"'enc_ServiceChangeRequest'/1" -p24950 -S"'enc_ServiceChangeRequest'(${1:Val}) $2" -p24951 -tp24952 -a(S"'enc_ServiceChangeResParm'/1" -p24953 -S"'enc_ServiceChangeResParm'(${1:Val}) $2" -p24954 -tp24955 -a(S"'enc_ServiceChangeResult'/1" -p24956 -S"'enc_ServiceChangeResult'(${1:Val}) $2" -p24957 -tp24958 -a(S"'enc_ServiceState'/1" -p24959 -S"'enc_ServiceState'(${1:Val}) $2" -p24960 -tp24961 -a(S"'enc_SigParameter'/1" -p24962 -S"'enc_SigParameter'(${1:Val}) $2" -p24963 -tp24964 -a(S"'enc_Signal'/1" -p24965 -S"'enc_Signal'(${1:Val}) $2" -p24966 -tp24967 -a(S"'enc_SignalDirection'/1" -p24968 -S"'enc_SignalDirection'(${1:Val}) $2" -p24969 -tp24970 -a(S"'enc_SignalName'/1" -p24971 -S"'enc_SignalName'(${1:Val}) $2" -p24972 -tp24973 -a(S"'enc_SignalRequest'/1" -p24974 -S"'enc_SignalRequest'(${1:Val}) $2" -p24975 -tp24976 -a(S"'enc_SignalType'/1" -p24977 -S"'enc_SignalType'(${1:Val}) $2" -p24978 -tp24979 -a(S"'enc_SignalsDescriptor'/1" -p24980 -S"'enc_SignalsDescriptor'(${1:Val}) $2" -p24981 -tp24982 -a(S"'enc_StatisticsDescriptor'/1" -p24983 -S"'enc_StatisticsDescriptor'(${1:Val}) $2" -p24984 -tp24985 -a(S"'enc_StatisticsParameter'/1" -p24986 -S"'enc_StatisticsParameter'(${1:Val}) $2" -p24987 -tp24988 -a(S"'enc_StreamDescriptor'/1" -p24989 -S"'enc_StreamDescriptor'(${1:Val}) $2" -p24990 -tp24991 -a(S"'enc_StreamID'/1" -p24992 -S"'enc_StreamID'(${1:Val}) $2" -p24993 -tp24994 -a(S"'enc_StreamMode'/1" -p24995 -S"'enc_StreamMode'(${1:Val}) $2" -p24996 -tp24997 -a(S"'enc_StreamParms'/1" -p24998 -S"'enc_StreamParms'(${1:Val}) $2" -p24999 -tp25000 -a(S"'enc_SubtractRequest'/1" -p25001 -S"'enc_SubtractRequest'(${1:Val}) $2" -p25002 -tp25003 -a(S"'enc_TermListAuditResult'/1" -p25004 -S"'enc_TermListAuditResult'(${1:Val}) $2" -p25005 -tp25006 -a(S"'enc_TerminationAudit'/1" -p25007 -S"'enc_TerminationAudit'(${1:Val}) $2" -p25008 -tp25009 -a(S"'enc_TerminationID'/1" -p25010 -S"'enc_TerminationID'(${1:Val}) $2" -p25011 -tp25012 -a(S"'enc_TerminationIDList'/1" -p25013 -S"'enc_TerminationIDList'(${1:Val}) $2" -p25014 -tp25015 -a(S"'enc_TerminationStateDescriptor'/1" -p25016 -S"'enc_TerminationStateDescriptor'(${1:Val}) $2" -p25017 -tp25018 -a(S"'enc_TimeNotation'/1" -p25019 -S"'enc_TimeNotation'(${1:Val}) $2" -p25020 -tp25021 -a(S"'enc_TopologyRequest'/1" -p25022 -S"'enc_TopologyRequest'(${1:Val}) $2" -p25023 -tp25024 -a(S"'enc_Transaction'/1" -p25025 -S"'enc_Transaction'(${1:Val}) $2" -p25026 -tp25027 -a(S"'enc_TransactionAck'/1" -p25028 -S"'enc_TransactionAck'(${1:Val}) $2" -p25029 -tp25030 -a(S"'enc_TransactionId'/1" -p25031 -S"'enc_TransactionId'(${1:Val}) $2" -p25032 -tp25033 -a(S"'enc_TransactionPending'/1" -p25034 -S"'enc_TransactionPending'(${1:Val}) $2" -p25035 -tp25036 -a(S"'enc_TransactionReply'/1" -p25037 -S"'enc_TransactionReply'(${1:Val}) $2" -p25038 -tp25039 -a(S"'enc_TransactionRequest'/1" -p25040 -S"'enc_TransactionRequest'(${1:Val}) $2" -p25041 -tp25042 -a(S"'enc_TransactionResponseAck'/1" -p25043 -S"'enc_TransactionResponseAck'(${1:Val}) $2" -p25044 -tp25045 -a(S"'enc_Value'/1" -p25046 -S"'enc_Value'(${1:Val}) $2" -p25047 -tp25048 -a(S"'enc_WildcardField'/1" -p25049 -S"'enc_WildcardField'(${1:Val}) $2" -p25050 -tp25051 -a(S'decode/2' -p25052 -S'decode(${1:Type}, ${2:Data}) $3' -p25053 -tp25054 -a(S'decode_disp/2' -p25055 -S'decode_disp(${1:Type}, ${2:Data}) $3' -p25056 -tp25057 -a(S'encode/2' -p25058 -S'encode(${1:Type}, ${2:Data}) $3' -p25059 -tp25060 -a(S'encode_disp/2' -p25061 -S'encode_disp(${1:Type}, ${2:Data}) $3' -p25062 -tp25063 -a(S'encoding_rule/0' -p25064 -S'encoding_rule() $1' -p25065 -tp25066 -a(S'info/0' -p25067 -S'info() $1' -p25068 -tp25069 -asS'epp' -p25070 -(lp25071 -(S'close/1' -p25072 -S'close(${1:Epp}) $2' -p25073 -tp25074 -a(S'format_error/1' -p25075 -S'format_error(${1:ErrorDescriptor}) $2' -p25076 -tp25077 -a(S'interpret_file_attribute/1' -p25078 -S'interpret_file_attribute(${1:Forms}) $2' -p25079 -tp25080 -a(S'macro_defs/1' -p25081 -S'macro_defs(${1:Epp}) $2' -p25082 -tp25083 -a(S'normalize_typed_record_fields/1' -p25084 -S'normalize_typed_record_fields(${1:Fields}) $2' -p25085 -tp25086 -a(S'open/2' -p25087 -S'open(${1:FileName}, ${2:IncludePath}) $3' -p25088 -tp25089 -a(S'open/3' -p25090 -S'open(${1:FileName}, ${2:IncludePath}, ${3:PredefMacros}) $4' -p25091 -tp25092 -a(S'open/5' -p25093 -S'open(${1:Name}, ${2:File}, ${3:StartLocation}, ${4:Path}, ${5:Pdm}) $6' -p25094 -tp25095 -a(S'parse_erl_form/1' -p25096 -S'parse_erl_form(${1:Epp}) $2' -p25097 -tp25098 -a(S'parse_file/1' -p25099 -S'parse_file(${1:Epp}) $2' -p25100 -tp25101 -a(S'parse_file/3' -p25102 -S'parse_file(${1:FileName}, ${2:IncludePath}, ${3:PredefMacros}) $4' -p25103 -tp25104 -a(S'restore_typed_record_fields/1' -p25105 -S'restore_typed_record_fields(${1:Param1}) $2' -p25106 -tp25107 -a(S'scan_erl_form/1' -p25108 -S'scan_erl_form(${1:Epp}) $2' -p25109 -tp25110 -asS'megaco_per_media_gateway_control_v1' -p25111 -(lp25112 -(S"'dec_ActionReply'/2" -p25113 -S"'dec_ActionReply'(${1:Bytes}, ${2:Param2}) $3" -p25114 -tp25115 -a(S"'dec_ActionRequest'/2" -p25116 -S"'dec_ActionRequest'(${1:Bytes}, ${2:Param2}) $3" -p25117 -tp25118 -a(S"'dec_AmmDescriptor'/2" -p25119 -S"'dec_AmmDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p25120 -tp25121 -a(S"'dec_AmmRequest'/2" -p25122 -S"'dec_AmmRequest'(${1:Bytes}, ${2:Param2}) $3" -p25123 -tp25124 -a(S"'dec_AmmsReply'/2" -p25125 -S"'dec_AmmsReply'(${1:Bytes}, ${2:Param2}) $3" -p25126 -tp25127 -a(S"'dec_AuditDescriptor'/2" -p25128 -S"'dec_AuditDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p25129 -tp25130 -a(S"'dec_AuditReply'/2" -p25131 -S"'dec_AuditReply'(${1:Bytes}, ${2:Param2}) $3" -p25132 -tp25133 -a(S"'dec_AuditRequest'/2" -p25134 -S"'dec_AuditRequest'(${1:Bytes}, ${2:Param2}) $3" -p25135 -tp25136 -a(S"'dec_AuditResult'/2" -p25137 -S"'dec_AuditResult'(${1:Bytes}, ${2:Param2}) $3" -p25138 -tp25139 -a(S"'dec_AuditReturnParameter'/2" -p25140 -S"'dec_AuditReturnParameter'(${1:Bytes}, ${2:Param2}) $3" -p25141 -tp25142 -a(S"'dec_AuthData'/2" -p25143 -S"'dec_AuthData'(${1:Bytes}, ${2:Param2}) $3" -p25144 -tp25145 -a(S"'dec_AuthenticationHeader'/2" -p25146 -S"'dec_AuthenticationHeader'(${1:Bytes}, ${2:Param2}) $3" -p25147 -tp25148 -a(S"'dec_Command'/2" -p25149 -S"'dec_Command'(${1:Bytes}, ${2:Param2}) $3" -p25150 -tp25151 -a(S"'dec_CommandReply'/2" -p25152 -S"'dec_CommandReply'(${1:Bytes}, ${2:Param2}) $3" -p25153 -tp25154 -a(S"'dec_CommandRequest'/2" -p25155 -S"'dec_CommandRequest'(${1:Bytes}, ${2:Param2}) $3" -p25156 -tp25157 -a(S"'dec_ContextAttrAuditRequest'/2" -p25158 -S"'dec_ContextAttrAuditRequest'(${1:Bytes}, ${2:Param2}) $3" -p25159 -tp25160 -a(S"'dec_ContextID'/2" -p25161 -S"'dec_ContextID'(${1:Bytes}, ${2:Param2}) $3" -p25162 -tp25163 -a(S"'dec_ContextRequest'/2" -p25164 -S"'dec_ContextRequest'(${1:Bytes}, ${2:Param2}) $3" -p25165 -tp25166 -a(S"'dec_DigitMapDescriptor'/2" -p25167 -S"'dec_DigitMapDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p25168 -tp25169 -a(S"'dec_DigitMapName'/2" -p25170 -S"'dec_DigitMapName'(${1:Bytes}, ${2:Param2}) $3" -p25171 -tp25172 -a(S"'dec_DigitMapValue'/2" -p25173 -S"'dec_DigitMapValue'(${1:Bytes}, ${2:Param2}) $3" -p25174 -tp25175 -a(S"'dec_DomainName'/2" -p25176 -S"'dec_DomainName'(${1:Bytes}, ${2:Param2}) $3" -p25177 -tp25178 -a(S"'dec_ErrorCode'/2" -p25179 -S"'dec_ErrorCode'(${1:Bytes}, ${2:Param2}) $3" -p25180 -tp25181 -a(S"'dec_ErrorDescriptor'/2" -p25182 -S"'dec_ErrorDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p25183 -tp25184 -a(S"'dec_ErrorText'/2" -p25185 -S"'dec_ErrorText'(${1:Bytes}, ${2:Param2}) $3" -p25186 -tp25187 -a(S"'dec_EventBufferControl'/2" -p25188 -S"'dec_EventBufferControl'(${1:Bytes}, ${2:Param2}) $3" -p25189 -tp25190 -a(S"'dec_EventBufferDescriptor'/2" -p25191 -S"'dec_EventBufferDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p25192 -tp25193 -a(S"'dec_EventDM'/2" -p25194 -S"'dec_EventDM'(${1:Bytes}, ${2:Param2}) $3" -p25195 -tp25196 -a(S"'dec_EventName'/2" -p25197 -S"'dec_EventName'(${1:Bytes}, ${2:Param2}) $3" -p25198 -tp25199 -a(S"'dec_EventParameter'/2" -p25200 -S"'dec_EventParameter'(${1:Bytes}, ${2:Param2}) $3" -p25201 -tp25202 -a(S"'dec_EventSpec'/2" -p25203 -S"'dec_EventSpec'(${1:Bytes}, ${2:Param2}) $3" -p25204 -tp25205 -a(S"'dec_EventsDescriptor'/2" -p25206 -S"'dec_EventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p25207 -tp25208 -a(S"'dec_H221NonStandard'/2" -p25209 -S"'dec_H221NonStandard'(${1:Bytes}, ${2:Param2}) $3" -p25210 -tp25211 -a(S"'dec_IP4Address'/2" -p25212 -S"'dec_IP4Address'(${1:Bytes}, ${2:Param2}) $3" -p25213 -tp25214 -a(S"'dec_IP6Address'/2" -p25215 -S"'dec_IP6Address'(${1:Bytes}, ${2:Param2}) $3" -p25216 -tp25217 -a(S"'dec_LocalControlDescriptor'/2" -p25218 -S"'dec_LocalControlDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p25219 -tp25220 -a(S"'dec_LocalRemoteDescriptor'/2" -p25221 -S"'dec_LocalRemoteDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p25222 -tp25223 -a(S"'dec_MId'/2" -p25224 -S"'dec_MId'(${1:Bytes}, ${2:Param2}) $3" -p25225 -tp25226 -a(S"'dec_MediaDescriptor'/2" -p25227 -S"'dec_MediaDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p25228 -tp25229 -a(S"'dec_MegacoMessage'/2" -p25230 -S"'dec_MegacoMessage'(${1:Bytes}, ${2:Param2}) $3" -p25231 -tp25232 -a(S"'dec_Message'/2" -p25233 -S"'dec_Message'(${1:Bytes}, ${2:Param2}) $3" -p25234 -tp25235 -a(S"'dec_ModemDescriptor'/2" -p25236 -S"'dec_ModemDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p25237 -tp25238 -a(S"'dec_ModemType'/2" -p25239 -S"'dec_ModemType'(${1:Bytes}, ${2:Param2}) $3" -p25240 -tp25241 -a(S"'dec_MuxDescriptor'/2" -p25242 -S"'dec_MuxDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p25243 -tp25244 -a(S"'dec_MuxType'/2" -p25245 -S"'dec_MuxType'(${1:Bytes}, ${2:Param2}) $3" -p25246 -tp25247 -a(S"'dec_Name'/2" -p25248 -S"'dec_Name'(${1:Bytes}, ${2:Param2}) $3" -p25249 -tp25250 -a(S"'dec_NonStandardData'/2" -p25251 -S"'dec_NonStandardData'(${1:Bytes}, ${2:Param2}) $3" -p25252 -tp25253 -a(S"'dec_NonStandardIdentifier'/2" -p25254 -S"'dec_NonStandardIdentifier'(${1:Bytes}, ${2:Param2}) $3" -p25255 -tp25256 -a(S"'dec_NotifyCompletion'/2" -p25257 -S"'dec_NotifyCompletion'(${1:Bytes}, ${2:Param2}) $3" -p25258 -tp25259 -a(S"'dec_NotifyReply'/2" -p25260 -S"'dec_NotifyReply'(${1:Bytes}, ${2:Param2}) $3" -p25261 -tp25262 -a(S"'dec_NotifyRequest'/2" -p25263 -S"'dec_NotifyRequest'(${1:Bytes}, ${2:Param2}) $3" -p25264 -tp25265 -a(S"'dec_ObservedEvent'/2" -p25266 -S"'dec_ObservedEvent'(${1:Bytes}, ${2:Param2}) $3" -p25267 -tp25268 -a(S"'dec_ObservedEventsDescriptor'/2" -p25269 -S"'dec_ObservedEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p25270 -tp25271 -a(S"'dec_PackagesDescriptor'/2" -p25272 -S"'dec_PackagesDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p25273 -tp25274 -a(S"'dec_PackagesItem'/2" -p25275 -S"'dec_PackagesItem'(${1:Bytes}, ${2:Param2}) $3" -p25276 -tp25277 -a(S"'dec_PathName'/2" -p25278 -S"'dec_PathName'(${1:Bytes}, ${2:Param2}) $3" -p25279 -tp25280 -a(S"'dec_PkgdName'/2" -p25281 -S"'dec_PkgdName'(${1:Bytes}, ${2:Param2}) $3" -p25282 -tp25283 -a(S"'dec_PropertyGroup'/2" -p25284 -S"'dec_PropertyGroup'(${1:Bytes}, ${2:Param2}) $3" -p25285 -tp25286 -a(S"'dec_PropertyParm'/2" -p25287 -S"'dec_PropertyParm'(${1:Bytes}, ${2:Param2}) $3" -p25288 -tp25289 -a(S"'dec_Relation'/2" -p25290 -S"'dec_Relation'(${1:Bytes}, ${2:Param2}) $3" -p25291 -tp25292 -a(S"'dec_RequestID'/2" -p25293 -S"'dec_RequestID'(${1:Bytes}, ${2:Param2}) $3" -p25294 -tp25295 -a(S"'dec_RequestedActions'/2" -p25296 -S"'dec_RequestedActions'(${1:Bytes}, ${2:Param2}) $3" -p25297 -tp25298 -a(S"'dec_RequestedEvent'/2" -p25299 -S"'dec_RequestedEvent'(${1:Bytes}, ${2:Param2}) $3" -p25300 -tp25301 -a(S"'dec_SecondEventsDescriptor'/2" -p25302 -S"'dec_SecondEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p25303 -tp25304 -a(S"'dec_SecondRequestedActions'/2" -p25305 -S"'dec_SecondRequestedActions'(${1:Bytes}, ${2:Param2}) $3" -p25306 -tp25307 -a(S"'dec_SecondRequestedEvent'/2" -p25308 -S"'dec_SecondRequestedEvent'(${1:Bytes}, ${2:Param2}) $3" -p25309 -tp25310 -a(S"'dec_SecurityParmIndex'/2" -p25311 -S"'dec_SecurityParmIndex'(${1:Bytes}, ${2:Param2}) $3" -p25312 -tp25313 -a(S"'dec_SeqSigList'/2" -p25314 -S"'dec_SeqSigList'(${1:Bytes}, ${2:Param2}) $3" -p25315 -tp25316 -a(S"'dec_SequenceNum'/2" -p25317 -S"'dec_SequenceNum'(${1:Bytes}, ${2:Param2}) $3" -p25318 -tp25319 -a(S"'dec_ServiceChangeAddress'/2" -p25320 -S"'dec_ServiceChangeAddress'(${1:Bytes}, ${2:Param2}) $3" -p25321 -tp25322 -a(S"'dec_ServiceChangeMethod'/2" -p25323 -S"'dec_ServiceChangeMethod'(${1:Bytes}, ${2:Param2}) $3" -p25324 -tp25325 -a(S"'dec_ServiceChangeParm'/2" -p25326 -S"'dec_ServiceChangeParm'(${1:Bytes}, ${2:Param2}) $3" -p25327 -tp25328 -a(S"'dec_ServiceChangeProfile'/2" -p25329 -S"'dec_ServiceChangeProfile'(${1:Bytes}, ${2:Param2}) $3" -p25330 -tp25331 -a(S"'dec_ServiceChangeReply'/2" -p25332 -S"'dec_ServiceChangeReply'(${1:Bytes}, ${2:Param2}) $3" -p25333 -tp25334 -a(S"'dec_ServiceChangeRequest'/2" -p25335 -S"'dec_ServiceChangeRequest'(${1:Bytes}, ${2:Param2}) $3" -p25336 -tp25337 -a(S"'dec_ServiceChangeResParm'/2" -p25338 -S"'dec_ServiceChangeResParm'(${1:Bytes}, ${2:Param2}) $3" -p25339 -tp25340 -a(S"'dec_ServiceChangeResult'/2" -p25341 -S"'dec_ServiceChangeResult'(${1:Bytes}, ${2:Param2}) $3" -p25342 -tp25343 -a(S"'dec_ServiceState'/2" -p25344 -S"'dec_ServiceState'(${1:Bytes}, ${2:Param2}) $3" -p25345 -tp25346 -a(S"'dec_SigParameter'/2" -p25347 -S"'dec_SigParameter'(${1:Bytes}, ${2:Param2}) $3" -p25348 -tp25349 -a(S"'dec_Signal'/2" -p25350 -S"'dec_Signal'(${1:Bytes}, ${2:Param2}) $3" -p25351 -tp25352 -a(S"'dec_SignalName'/2" -p25353 -S"'dec_SignalName'(${1:Bytes}, ${2:Param2}) $3" -p25354 -tp25355 -a(S"'dec_SignalRequest'/2" -p25356 -S"'dec_SignalRequest'(${1:Bytes}, ${2:Param2}) $3" -p25357 -tp25358 -a(S"'dec_SignalType'/2" -p25359 -S"'dec_SignalType'(${1:Bytes}, ${2:Param2}) $3" -p25360 -tp25361 -a(S"'dec_SignalsDescriptor'/2" -p25362 -S"'dec_SignalsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p25363 -tp25364 -a(S"'dec_StatisticsDescriptor'/2" -p25365 -S"'dec_StatisticsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p25366 -tp25367 -a(S"'dec_StatisticsParameter'/2" -p25368 -S"'dec_StatisticsParameter'(${1:Bytes}, ${2:Param2}) $3" -p25369 -tp25370 -a(S"'dec_StreamDescriptor'/2" -p25371 -S"'dec_StreamDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p25372 -tp25373 -a(S"'dec_StreamID'/2" -p25374 -S"'dec_StreamID'(${1:Bytes}, ${2:Param2}) $3" -p25375 -tp25376 -a(S"'dec_StreamMode'/2" -p25377 -S"'dec_StreamMode'(${1:Bytes}, ${2:Param2}) $3" -p25378 -tp25379 -a(S"'dec_StreamParms'/2" -p25380 -S"'dec_StreamParms'(${1:Bytes}, ${2:Param2}) $3" -p25381 -tp25382 -a(S"'dec_SubtractRequest'/2" -p25383 -S"'dec_SubtractRequest'(${1:Bytes}, ${2:Param2}) $3" -p25384 -tp25385 -a(S"'dec_TerminationAudit'/2" -p25386 -S"'dec_TerminationAudit'(${1:Bytes}, ${2:Param2}) $3" -p25387 -tp25388 -a(S"'dec_TerminationID'/2" -p25389 -S"'dec_TerminationID'(${1:Bytes}, ${2:Param2}) $3" -p25390 -tp25391 -a(S"'dec_TerminationIDList'/2" -p25392 -S"'dec_TerminationIDList'(${1:Bytes}, ${2:Param2}) $3" -p25393 -tp25394 -a(S"'dec_TerminationStateDescriptor'/2" -p25395 -S"'dec_TerminationStateDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p25396 -tp25397 -a(S"'dec_TimeNotation'/2" -p25398 -S"'dec_TimeNotation'(${1:Bytes}, ${2:Param2}) $3" -p25399 -tp25400 -a(S"'dec_TopologyRequest'/2" -p25401 -S"'dec_TopologyRequest'(${1:Bytes}, ${2:Param2}) $3" -p25402 -tp25403 -a(S"'dec_Transaction'/2" -p25404 -S"'dec_Transaction'(${1:Bytes}, ${2:Param2}) $3" -p25405 -tp25406 -a(S"'dec_TransactionAck'/2" -p25407 -S"'dec_TransactionAck'(${1:Bytes}, ${2:Param2}) $3" -p25408 -tp25409 -a(S"'dec_TransactionId'/2" -p25410 -S"'dec_TransactionId'(${1:Bytes}, ${2:Param2}) $3" -p25411 -tp25412 -a(S"'dec_TransactionPending'/2" -p25413 -S"'dec_TransactionPending'(${1:Bytes}, ${2:Param2}) $3" -p25414 -tp25415 -a(S"'dec_TransactionReply'/2" -p25416 -S"'dec_TransactionReply'(${1:Bytes}, ${2:Param2}) $3" -p25417 -tp25418 -a(S"'dec_TransactionRequest'/2" -p25419 -S"'dec_TransactionRequest'(${1:Bytes}, ${2:Param2}) $3" -p25420 -tp25421 -a(S"'dec_TransactionResponseAck'/2" -p25422 -S"'dec_TransactionResponseAck'(${1:Bytes}, ${2:Param2}) $3" -p25423 -tp25424 -a(S"'dec_Value'/2" -p25425 -S"'dec_Value'(${1:Bytes}, ${2:Param2}) $3" -p25426 -tp25427 -a(S"'dec_WildcardField'/2" -p25428 -S"'dec_WildcardField'(${1:Bytes}, ${2:Param2}) $3" -p25429 -tp25430 -a(S"'enc_ActionReply'/1" -p25431 -S"'enc_ActionReply'(${1:Val}) $2" -p25432 -tp25433 -a(S"'enc_ActionRequest'/1" -p25434 -S"'enc_ActionRequest'(${1:Val}) $2" -p25435 -tp25436 -a(S"'enc_AmmDescriptor'/1" -p25437 -S"'enc_AmmDescriptor'(${1:Val}) $2" -p25438 -tp25439 -a(S"'enc_AmmRequest'/1" -p25440 -S"'enc_AmmRequest'(${1:Val}) $2" -p25441 -tp25442 -a(S"'enc_AmmsReply'/1" -p25443 -S"'enc_AmmsReply'(${1:Val}) $2" -p25444 -tp25445 -a(S"'enc_AuditDescriptor'/1" -p25446 -S"'enc_AuditDescriptor'(${1:Val}) $2" -p25447 -tp25448 -a(S"'enc_AuditReply'/1" -p25449 -S"'enc_AuditReply'(${1:Val}) $2" -p25450 -tp25451 -a(S"'enc_AuditRequest'/1" -p25452 -S"'enc_AuditRequest'(${1:Val}) $2" -p25453 -tp25454 -a(S"'enc_AuditResult'/1" -p25455 -S"'enc_AuditResult'(${1:Val}) $2" -p25456 -tp25457 -a(S"'enc_AuditReturnParameter'/1" -p25458 -S"'enc_AuditReturnParameter'(${1:Val}) $2" -p25459 -tp25460 -a(S"'enc_AuthData'/1" -p25461 -S"'enc_AuthData'(${1:Val}) $2" -p25462 -tp25463 -a(S"'enc_AuthenticationHeader'/1" -p25464 -S"'enc_AuthenticationHeader'(${1:Val}) $2" -p25465 -tp25466 -a(S"'enc_Command'/1" -p25467 -S"'enc_Command'(${1:Val}) $2" -p25468 -tp25469 -a(S"'enc_CommandReply'/1" -p25470 -S"'enc_CommandReply'(${1:Val}) $2" -p25471 -tp25472 -a(S"'enc_CommandRequest'/1" -p25473 -S"'enc_CommandRequest'(${1:Val}) $2" -p25474 -tp25475 -a(S"'enc_ContextAttrAuditRequest'/1" -p25476 -S"'enc_ContextAttrAuditRequest'(${1:Val}) $2" -p25477 -tp25478 -a(S"'enc_ContextID'/1" -p25479 -S"'enc_ContextID'(${1:Val}) $2" -p25480 -tp25481 -a(S"'enc_ContextRequest'/1" -p25482 -S"'enc_ContextRequest'(${1:Val}) $2" -p25483 -tp25484 -a(S"'enc_DigitMapDescriptor'/1" -p25485 -S"'enc_DigitMapDescriptor'(${1:Val}) $2" -p25486 -tp25487 -a(S"'enc_DigitMapName'/1" -p25488 -S"'enc_DigitMapName'(${1:Val}) $2" -p25489 -tp25490 -a(S"'enc_DigitMapValue'/1" -p25491 -S"'enc_DigitMapValue'(${1:Val}) $2" -p25492 -tp25493 -a(S"'enc_DomainName'/1" -p25494 -S"'enc_DomainName'(${1:Val}) $2" -p25495 -tp25496 -a(S"'enc_ErrorCode'/1" -p25497 -S"'enc_ErrorCode'(${1:Val}) $2" -p25498 -tp25499 -a(S"'enc_ErrorDescriptor'/1" -p25500 -S"'enc_ErrorDescriptor'(${1:Val}) $2" -p25501 -tp25502 -a(S"'enc_ErrorText'/1" -p25503 -S"'enc_ErrorText'(${1:Val}) $2" -p25504 -tp25505 -a(S"'enc_EventBufferControl'/1" -p25506 -S"'enc_EventBufferControl'(${1:Val}) $2" -p25507 -tp25508 -a(S"'enc_EventBufferDescriptor'/1" -p25509 -S"'enc_EventBufferDescriptor'(${1:Val}) $2" -p25510 -tp25511 -a(S"'enc_EventDM'/1" -p25512 -S"'enc_EventDM'(${1:Val}) $2" -p25513 -tp25514 -a(S"'enc_EventName'/1" -p25515 -S"'enc_EventName'(${1:Val}) $2" -p25516 -tp25517 -a(S"'enc_EventParameter'/1" -p25518 -S"'enc_EventParameter'(${1:Val}) $2" -p25519 -tp25520 -a(S"'enc_EventSpec'/1" -p25521 -S"'enc_EventSpec'(${1:Val}) $2" -p25522 -tp25523 -a(S"'enc_EventsDescriptor'/1" -p25524 -S"'enc_EventsDescriptor'(${1:Val}) $2" -p25525 -tp25526 -a(S"'enc_H221NonStandard'/1" -p25527 -S"'enc_H221NonStandard'(${1:Val}) $2" -p25528 -tp25529 -a(S"'enc_IP4Address'/1" -p25530 -S"'enc_IP4Address'(${1:Val}) $2" -p25531 -tp25532 -a(S"'enc_IP6Address'/1" -p25533 -S"'enc_IP6Address'(${1:Val}) $2" -p25534 -tp25535 -a(S"'enc_LocalControlDescriptor'/1" -p25536 -S"'enc_LocalControlDescriptor'(${1:Val}) $2" -p25537 -tp25538 -a(S"'enc_LocalRemoteDescriptor'/1" -p25539 -S"'enc_LocalRemoteDescriptor'(${1:Val}) $2" -p25540 -tp25541 -a(S"'enc_MId'/1" -p25542 -S"'enc_MId'(${1:Val}) $2" -p25543 -tp25544 -a(S"'enc_MediaDescriptor'/1" -p25545 -S"'enc_MediaDescriptor'(${1:Val}) $2" -p25546 -tp25547 -a(S"'enc_MegacoMessage'/1" -p25548 -S"'enc_MegacoMessage'(${1:Val}) $2" -p25549 -tp25550 -a(S"'enc_Message'/1" -p25551 -S"'enc_Message'(${1:Val}) $2" -p25552 -tp25553 -a(S"'enc_ModemDescriptor'/1" -p25554 -S"'enc_ModemDescriptor'(${1:Val}) $2" -p25555 -tp25556 -a(S"'enc_ModemType'/1" -p25557 -S"'enc_ModemType'(${1:Val}) $2" -p25558 -tp25559 -a(S"'enc_MuxDescriptor'/1" -p25560 -S"'enc_MuxDescriptor'(${1:Val}) $2" -p25561 -tp25562 -a(S"'enc_MuxType'/1" -p25563 -S"'enc_MuxType'(${1:Val}) $2" -p25564 -tp25565 -a(S"'enc_Name'/1" -p25566 -S"'enc_Name'(${1:Val}) $2" -p25567 -tp25568 -a(S"'enc_NonStandardData'/1" -p25569 -S"'enc_NonStandardData'(${1:Val}) $2" -p25570 -tp25571 -a(S"'enc_NonStandardIdentifier'/1" -p25572 -S"'enc_NonStandardIdentifier'(${1:Val}) $2" -p25573 -tp25574 -a(S"'enc_NotifyCompletion'/1" -p25575 -S"'enc_NotifyCompletion'(${1:Val}) $2" -p25576 -tp25577 -a(S"'enc_NotifyReply'/1" -p25578 -S"'enc_NotifyReply'(${1:Val}) $2" -p25579 -tp25580 -a(S"'enc_NotifyRequest'/1" -p25581 -S"'enc_NotifyRequest'(${1:Val}) $2" -p25582 -tp25583 -a(S"'enc_ObservedEvent'/1" -p25584 -S"'enc_ObservedEvent'(${1:Val}) $2" -p25585 -tp25586 -a(S"'enc_ObservedEventsDescriptor'/1" -p25587 -S"'enc_ObservedEventsDescriptor'(${1:Val}) $2" -p25588 -tp25589 -a(S"'enc_PackagesDescriptor'/1" -p25590 -S"'enc_PackagesDescriptor'(${1:Val}) $2" -p25591 -tp25592 -a(S"'enc_PackagesItem'/1" -p25593 -S"'enc_PackagesItem'(${1:Val}) $2" -p25594 -tp25595 -a(S"'enc_PathName'/1" -p25596 -S"'enc_PathName'(${1:Val}) $2" -p25597 -tp25598 -a(S"'enc_PkgdName'/1" -p25599 -S"'enc_PkgdName'(${1:Val}) $2" -p25600 -tp25601 -a(S"'enc_PropertyGroup'/1" -p25602 -S"'enc_PropertyGroup'(${1:Val}) $2" -p25603 -tp25604 -a(S"'enc_PropertyParm'/1" -p25605 -S"'enc_PropertyParm'(${1:Val}) $2" -p25606 -tp25607 -a(S"'enc_Relation'/1" -p25608 -S"'enc_Relation'(${1:Val}) $2" -p25609 -tp25610 -a(S"'enc_RequestID'/1" -p25611 -S"'enc_RequestID'(${1:Val}) $2" -p25612 -tp25613 -a(S"'enc_RequestedActions'/1" -p25614 -S"'enc_RequestedActions'(${1:Val}) $2" -p25615 -tp25616 -a(S"'enc_RequestedEvent'/1" -p25617 -S"'enc_RequestedEvent'(${1:Val}) $2" -p25618 -tp25619 -a(S"'enc_SecondEventsDescriptor'/1" -p25620 -S"'enc_SecondEventsDescriptor'(${1:Val}) $2" -p25621 -tp25622 -a(S"'enc_SecondRequestedActions'/1" -p25623 -S"'enc_SecondRequestedActions'(${1:Val}) $2" -p25624 -tp25625 -a(S"'enc_SecondRequestedEvent'/1" -p25626 -S"'enc_SecondRequestedEvent'(${1:Val}) $2" -p25627 -tp25628 -a(S"'enc_SecurityParmIndex'/1" -p25629 -S"'enc_SecurityParmIndex'(${1:Val}) $2" -p25630 -tp25631 -a(S"'enc_SeqSigList'/1" -p25632 -S"'enc_SeqSigList'(${1:Val}) $2" -p25633 -tp25634 -a(S"'enc_SequenceNum'/1" -p25635 -S"'enc_SequenceNum'(${1:Val}) $2" -p25636 -tp25637 -a(S"'enc_ServiceChangeAddress'/1" -p25638 -S"'enc_ServiceChangeAddress'(${1:Val}) $2" -p25639 -tp25640 -a(S"'enc_ServiceChangeMethod'/1" -p25641 -S"'enc_ServiceChangeMethod'(${1:Val}) $2" -p25642 -tp25643 -a(S"'enc_ServiceChangeParm'/1" -p25644 -S"'enc_ServiceChangeParm'(${1:Val}) $2" -p25645 -tp25646 -a(S"'enc_ServiceChangeProfile'/1" -p25647 -S"'enc_ServiceChangeProfile'(${1:Val}) $2" -p25648 -tp25649 -a(S"'enc_ServiceChangeReply'/1" -p25650 -S"'enc_ServiceChangeReply'(${1:Val}) $2" -p25651 -tp25652 -a(S"'enc_ServiceChangeRequest'/1" -p25653 -S"'enc_ServiceChangeRequest'(${1:Val}) $2" -p25654 -tp25655 -a(S"'enc_ServiceChangeResParm'/1" -p25656 -S"'enc_ServiceChangeResParm'(${1:Val}) $2" -p25657 -tp25658 -a(S"'enc_ServiceChangeResult'/1" -p25659 -S"'enc_ServiceChangeResult'(${1:Val}) $2" -p25660 -tp25661 -a(S"'enc_ServiceState'/1" -p25662 -S"'enc_ServiceState'(${1:Val}) $2" -p25663 -tp25664 -a(S"'enc_SigParameter'/1" -p25665 -S"'enc_SigParameter'(${1:Val}) $2" -p25666 -tp25667 -a(S"'enc_Signal'/1" -p25668 -S"'enc_Signal'(${1:Val}) $2" -p25669 -tp25670 -a(S"'enc_SignalName'/1" -p25671 -S"'enc_SignalName'(${1:Val}) $2" -p25672 -tp25673 -a(S"'enc_SignalRequest'/1" -p25674 -S"'enc_SignalRequest'(${1:Val}) $2" -p25675 -tp25676 -a(S"'enc_SignalType'/1" -p25677 -S"'enc_SignalType'(${1:Val}) $2" -p25678 -tp25679 -a(S"'enc_SignalsDescriptor'/1" -p25680 -S"'enc_SignalsDescriptor'(${1:Val}) $2" -p25681 -tp25682 -a(S"'enc_StatisticsDescriptor'/1" -p25683 -S"'enc_StatisticsDescriptor'(${1:Val}) $2" -p25684 -tp25685 -a(S"'enc_StatisticsParameter'/1" -p25686 -S"'enc_StatisticsParameter'(${1:Val}) $2" -p25687 -tp25688 -a(S"'enc_StreamDescriptor'/1" -p25689 -S"'enc_StreamDescriptor'(${1:Val}) $2" -p25690 -tp25691 -a(S"'enc_StreamID'/1" -p25692 -S"'enc_StreamID'(${1:Val}) $2" -p25693 -tp25694 -a(S"'enc_StreamMode'/1" -p25695 -S"'enc_StreamMode'(${1:Val}) $2" -p25696 -tp25697 -a(S"'enc_StreamParms'/1" -p25698 -S"'enc_StreamParms'(${1:Val}) $2" -p25699 -tp25700 -a(S"'enc_SubtractRequest'/1" -p25701 -S"'enc_SubtractRequest'(${1:Val}) $2" -p25702 -tp25703 -a(S"'enc_TerminationAudit'/1" -p25704 -S"'enc_TerminationAudit'(${1:Val}) $2" -p25705 -tp25706 -a(S"'enc_TerminationID'/1" -p25707 -S"'enc_TerminationID'(${1:Val}) $2" -p25708 -tp25709 -a(S"'enc_TerminationIDList'/1" -p25710 -S"'enc_TerminationIDList'(${1:Val}) $2" -p25711 -tp25712 -a(S"'enc_TerminationStateDescriptor'/1" -p25713 -S"'enc_TerminationStateDescriptor'(${1:Val}) $2" -p25714 -tp25715 -a(S"'enc_TimeNotation'/1" -p25716 -S"'enc_TimeNotation'(${1:Val}) $2" -p25717 -tp25718 -a(S"'enc_TopologyRequest'/1" -p25719 -S"'enc_TopologyRequest'(${1:Val}) $2" -p25720 -tp25721 -a(S"'enc_Transaction'/1" -p25722 -S"'enc_Transaction'(${1:Val}) $2" -p25723 -tp25724 -a(S"'enc_TransactionAck'/1" -p25725 -S"'enc_TransactionAck'(${1:Val}) $2" -p25726 -tp25727 -a(S"'enc_TransactionId'/1" -p25728 -S"'enc_TransactionId'(${1:Val}) $2" -p25729 -tp25730 -a(S"'enc_TransactionPending'/1" -p25731 -S"'enc_TransactionPending'(${1:Val}) $2" -p25732 -tp25733 -a(S"'enc_TransactionReply'/1" -p25734 -S"'enc_TransactionReply'(${1:Val}) $2" -p25735 -tp25736 -a(S"'enc_TransactionRequest'/1" -p25737 -S"'enc_TransactionRequest'(${1:Val}) $2" -p25738 -tp25739 -a(S"'enc_TransactionResponseAck'/1" -p25740 -S"'enc_TransactionResponseAck'(${1:Val}) $2" -p25741 -tp25742 -a(S"'enc_Value'/1" -p25743 -S"'enc_Value'(${1:Val}) $2" -p25744 -tp25745 -a(S"'enc_WildcardField'/1" -p25746 -S"'enc_WildcardField'(${1:Val}) $2" -p25747 -tp25748 -a(S'decode/2' -p25749 -S'decode(${1:Type}, ${2:Data}) $3' -p25750 -tp25751 -a(S'decode_disp/2' -p25752 -S'decode_disp(${1:Type}, ${2:Data}) $3' -p25753 -tp25754 -a(S'encode/2' -p25755 -S'encode(${1:Type}, ${2:Data}) $3' -p25756 -tp25757 -a(S'encode_disp/2' -p25758 -S'encode_disp(${1:Type}, ${2:Data}) $3' -p25759 -tp25760 -a(S'encoding_rule/0' -p25761 -S'encoding_rule() $1' -p25762 -tp25763 -a(S'info/0' -p25764 -S'info() $1' -p25765 -tp25766 -asS'wxPrintData' -p25767 -(lp25768 -(S'destroy/1' -p25769 -S'destroy(${1:This}) $2' -p25770 -tp25771 -a(S'getBin/1' -p25772 -S'getBin(${1:This}) $2' -p25773 -tp25774 -a(S'getCollate/1' -p25775 -S'getCollate(${1:This}) $2' -p25776 -tp25777 -a(S'getColour/1' -p25778 -S'getColour(${1:This}) $2' -p25779 -tp25780 -a(S'getDuplex/1' -p25781 -S'getDuplex(${1:This}) $2' -p25782 -tp25783 -a(S'getNoCopies/1' -p25784 -S'getNoCopies(${1:This}) $2' -p25785 -tp25786 -a(S'getOrientation/1' -p25787 -S'getOrientation(${1:This}) $2' -p25788 -tp25789 -a(S'getPaperId/1' -p25790 -S'getPaperId(${1:This}) $2' -p25791 -tp25792 -a(S'getPrinterName/1' -p25793 -S'getPrinterName(${1:This}) $2' -p25794 -tp25795 -a(S'getQuality/1' -p25796 -S'getQuality(${1:This}) $2' -p25797 -tp25798 -a(S'isOk/1' -p25799 -S'isOk(${1:This}) $2' -p25800 -tp25801 -a(S'new/0' -p25802 -S'new() $1' -p25803 -tp25804 -a(S'new/1' -p25805 -S'new(${1:PrintData}) $2' -p25806 -tp25807 -a(S'parent_class/1' -p25808 -S'parent_class(${1:Param1}) $2' -p25809 -tp25810 -a(S'setBin/2' -p25811 -S'setBin(${1:This}, ${2:Bin}) $3' -p25812 -tp25813 -a(S'setCollate/2' -p25814 -S'setCollate(${1:This}, ${2:Flag}) $3' -p25815 -tp25816 -a(S'setColour/2' -p25817 -S'setColour(${1:This}, ${2:Colour}) $3' -p25818 -tp25819 -a(S'setDuplex/2' -p25820 -S'setDuplex(${1:This}, ${2:Duplex}) $3' -p25821 -tp25822 -a(S'setNoCopies/2' -p25823 -S'setNoCopies(${1:This}, ${2:V}) $3' -p25824 -tp25825 -a(S'setOrientation/2' -p25826 -S'setOrientation(${1:This}, ${2:Orient}) $3' -p25827 -tp25828 -a(S'setPaperId/2' -p25829 -S'setPaperId(${1:This}, ${2:SizeId}) $3' -p25830 -tp25831 -a(S'setPrinterName/2' -p25832 -S'setPrinterName(${1:This}, ${2:Name}) $3' -p25833 -tp25834 -a(S'setQuality/2' -p25835 -S'setQuality(${1:This}, ${2:Quality}) $3' -p25836 -tp25837 -asS'CosNotifyComm_StructuredPullConsumer' -p25838 -(lp25839 -(S'code_change/3' -p25840 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p25841 -tp25842 -a(S'disconnect_structured_pull_consumer/1' -p25843 -S'disconnect_structured_pull_consumer(${1:OE_THIS}) $2' -p25844 -tp25845 -a(S'disconnect_structured_pull_consumer/2' -p25846 -S'disconnect_structured_pull_consumer(${1:OE_THIS}, ${2:OE_Options}) $3' -p25847 -tp25848 -a(S'handle_call/3' -p25849 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p25850 -tp25851 -a(S'handle_cast/2' -p25852 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p25853 -tp25854 -a(S'handle_info/2' -p25855 -S'handle_info(${1:Param1}, ${2:State}) $3' -p25856 -tp25857 -a(S'init/1' -p25858 -S'init(${1:Env}) $2' -p25859 -tp25860 -a(S'oe_create/0' -p25861 -S'oe_create() $1' -p25862 -tp25863 -a(S'oe_create/1' -p25864 -S'oe_create(${1:Env}) $2' -p25865 -tp25866 -a(S'oe_create/2' -p25867 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p25868 -tp25869 -a(S'oe_create_link/0' -p25870 -S'oe_create_link() $1' -p25871 -tp25872 -a(S'oe_create_link/1' -p25873 -S'oe_create_link(${1:Env}) $2' -p25874 -tp25875 -a(S'oe_create_link/2' -p25876 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p25877 -tp25878 -a(S'oe_get_interface/0' -p25879 -S'oe_get_interface() $1' -p25880 -tp25881 -a(S'oe_is_a/1' -p25882 -S'oe_is_a(${1:Param1}) $2' -p25883 -tp25884 -a(S'oe_tc/1' -p25885 -S'oe_tc(${1:Param1}) $2' -p25886 -tp25887 -a(S'offer_change/3' -p25888 -S'offer_change(${1:OE_THIS}, ${2:Added}, ${3:Removed}) $4' -p25889 -tp25890 -a(S'offer_change/4' -p25891 -S'offer_change(${1:OE_THIS}, ${2:OE_Options}, ${3:Added}, ${4:Removed}) $5' -p25892 -tp25893 -a(S'terminate/2' -p25894 -S'terminate(${1:Reason}, ${2:State}) $3' -p25895 -tp25896 -a(S'typeID/0' -p25897 -S'typeID() $1' -p25898 -tp25899 -asS'global_group' -p25900 -(lp25901 -(S'code_change/3' -p25902 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p25903 -tp25904 -a(S'config_scan/1' -p25905 -S'config_scan(${1:NodeGrps}) $2' -p25906 -tp25907 -a(S'config_scan/2' -p25908 -S'config_scan(${1:NodeGrps}, ${2:Param2}) $3' -p25909 -tp25910 -a(S'get_own_nodes/0' -p25911 -S'get_own_nodes() $1' -p25912 -tp25913 -a(S'get_own_nodes_with_errors/0' -p25914 -S'get_own_nodes_with_errors() $1' -p25915 -tp25916 -a(S'global_groups/0' -p25917 -S'global_groups() $1' -p25918 -tp25919 -a(S'global_groups_added/1' -p25920 -S'global_groups_added(${1:NewPara}) $2' -p25921 -tp25922 -a(S'global_groups_changed/1' -p25923 -S'global_groups_changed(${1:NewPara}) $2' -p25924 -tp25925 -a(S'global_groups_removed/1' -p25926 -S'global_groups_removed(${1:NewPara}) $2' -p25927 -tp25928 -a(S'handle_call/3' -p25929 -S'handle_call(${1:Call}, ${2:From}, ${3:S}) $4' -p25930 -tp25931 -a(S'handle_cast/2' -p25932 -S'handle_cast(${1:Param1}, ${2:S}) $3' -p25933 -tp25934 -a(S'handle_info/2' -p25935 -S'handle_info(${1:Param1}, ${2:S}) $3' -p25936 -tp25937 -a(S'info/0' -p25938 -S'info() $1' -p25939 -tp25940 -a(S'init/1' -p25941 -S'init(${1:Param1}) $2' -p25942 -tp25943 -a(S'monitor_nodes/1' -p25944 -S'monitor_nodes(${1:Flag}) $2' -p25945 -tp25946 -a(S'ng_add_check/2' -p25947 -S'ng_add_check(${1:Node}, ${2:OthersNG}) $3' -p25948 -tp25949 -a(S'ng_add_check/3' -p25950 -S'ng_add_check(${1:Node}, ${2:PubType}, ${3:OthersNG}) $4' -p25951 -tp25952 -a(S'own_nodes/0' -p25953 -S'own_nodes() $1' -p25954 -tp25955 -a(S'publish_on_nodes/0' -p25956 -S'publish_on_nodes() $1' -p25957 -tp25958 -a(S'registered_names/1' -p25959 -S'registered_names(${1:Where}) $2' -p25960 -tp25961 -a(S'registered_names_test/1' -p25962 -S'registered_names_test(${1:Arg}) $2' -p25963 -tp25964 -a(S'send/2' -p25965 -S'send(${1:Name}, ${2:Msg}) $3' -p25966 -tp25967 -a(S'send/3' -p25968 -S'send(${1:Where}, ${2:Name}, ${3:Msg}) $4' -p25969 -tp25970 -a(S'send_test/2' -p25971 -S'send_test(${1:Name}, ${2:Msg}) $3' -p25972 -tp25973 -a(S'start/0' -p25974 -S'start() $1' -p25975 -tp25976 -a(S'start_link/0' -p25977 -S'start_link() $1' -p25978 -tp25979 -a(S'stop/0' -p25980 -S'stop() $1' -p25981 -tp25982 -a(S'sync/0' -p25983 -S'sync() $1' -p25984 -tp25985 -a(S'sync_init/4' -p25986 -S'sync_init(${1:Type}, ${2:Cname}, ${3:PubType}, ${4:Nodes}) $5' -p25987 -tp25988 -a(S'terminate/2' -p25989 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p25990 -tp25991 -a(S'whereis_name/1' -p25992 -S'whereis_name(${1:Name}) $2' -p25993 -tp25994 -a(S'whereis_name/2' -p25995 -S'whereis_name(${1:Where}, ${2:Name}) $3' -p25996 -tp25997 -a(S'whereis_name_test/1' -p25998 -S'whereis_name_test(${1:Name}) $2' -p25999 -tp26000 -asS'CosPropertyService_PropertySetDefFactory_impl' -p26001 -(lp26002 -(S'code_change/3' -p26003 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p26004 -tp26005 -a(S'create_constrained_propertysetdef/4' -p26006 -S'create_constrained_propertysetdef(${1:Param1}, ${2:State}, ${3:PropTypes}, ${4:PropDefs}) $5' -p26007 -tp26008 -a(S'create_initial_propertysetdef/3' -p26009 -S'create_initial_propertysetdef(${1:Param1}, ${2:State}, ${3:PropDefs}) $4' -p26010 -tp26011 -a(S'create_propertysetdef/2' -p26012 -S'create_propertysetdef(${1:Param1}, ${2:State}) $3' -p26013 -tp26014 -a(S'init/1' -p26015 -S'init(${1:Param1}) $2' -p26016 -tp26017 -a(S'terminate/2' -p26018 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p26019 -tp26020 -asS'megaco_erl_dist_encoder_mc' -p26021 -(lp26022 -(S'decode/1' -p26023 -S'decode(${1:M}) $2' -p26024 -tp26025 -a(S'decode/2' -p26026 -S'decode(${1:M}, ${2:Vsn}) $3' -p26027 -tp26028 -a(S'encode/1' -p26029 -S'encode(${1:M}) $2' -p26030 -tp26031 -a(S'encode/2' -p26032 -S'encode(${1:M}, ${2:Vsn}) $3' -p26033 -tp26034 -asS'megaco_encoder' -p26035 -(lp26036 -(S'behaviour_info/1' -p26037 -S'behaviour_info(${1:Param1}) $2' -p26038 -tp26039 -asS'snmpa_net_if' -p26040 -(lp26041 -(S'filter_reset/1' -p26042 -S'filter_reset(${1:Pid}) $2' -p26043 -tp26044 -a(S'get_log_type/1' -p26045 -S'get_log_type(${1:Pid}) $2' -p26046 -tp26047 -a(S'get_request_limit/1' -p26048 -S'get_request_limit(${1:Pid}) $2' -p26049 -tp26050 -a(S'info/1' -p26051 -S'info(${1:Pid}) $2' -p26052 -tp26053 -a(S'init/5' -p26054 -S'init(${1:Prio}, ${2:NoteStore}, ${3:MasterAgent}, ${4:Parent}, ${5:Opts}) $6' -p26055 -tp26056 -a(S'set_log_type/2' -p26057 -S'set_log_type(${1:Pid}, ${2:NewType}) $3' -p26058 -tp26059 -a(S'set_request_limit/2' -p26060 -S'set_request_limit(${1:Pid}, ${2:NewLimit}) $3' -p26061 -tp26062 -a(S'start_link/4' -p26063 -S'start_link(${1:Prio}, ${2:NoteStore}, ${3:MasterAgent}, ${4:Opts}) $5' -p26064 -tp26065 -a(S'system_code_change/4' -p26066 -S'system_code_change(${1:OldState}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p26067 -tp26068 -a(S'system_continue/3' -p26069 -S'system_continue(${1:Param1}, ${2:Param2}, ${3:S}) $4' -p26070 -tp26071 -a(S'system_terminate/4' -p26072 -S'system_terminate(${1:Reason}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p26073 -tp26074 -a(S'verbosity/2' -p26075 -S'verbosity(${1:Pid}, ${2:Verbosity}) $3' -p26076 -tp26077 -asS'CosFileTransfer_VirtualFileSystem' -p26078 -(lp26079 -(S"'_get_file_system_type'/1" -p26080 -S"'_get_file_system_type'(${1:OE_THIS}) $2" -p26081 -tp26082 -a(S"'_get_file_system_type'/2" -p26083 -S"'_get_file_system_type'(${1:OE_THIS}, ${2:OE_Options}) $3" -p26084 -tp26085 -a(S"'_get_supported_content_types'/1" -p26086 -S"'_get_supported_content_types'(${1:OE_THIS}) $2" -p26087 -tp26088 -a(S"'_get_supported_content_types'/2" -p26089 -S"'_get_supported_content_types'(${1:OE_THIS}, ${2:OE_Options}) $3" -p26090 -tp26091 -a(S'code_change/3' -p26092 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p26093 -tp26094 -a(S'handle_call/3' -p26095 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p26096 -tp26097 -a(S'handle_cast/2' -p26098 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p26099 -tp26100 -a(S'handle_info/2' -p26101 -S'handle_info(${1:Info}, ${2:State}) $3' -p26102 -tp26103 -a(S'init/1' -p26104 -S'init(${1:Env}) $2' -p26105 -tp26106 -a(S'login/4' -p26107 -S'login(${1:OE_THIS}, ${2:Username}, ${3:Password}, ${4:Account}) $5' -p26108 -tp26109 -a(S'login/5' -p26110 -S'login(${1:OE_THIS}, ${2:OE_Options}, ${3:Username}, ${4:Password}, ${5:Account}) $6' -p26111 -tp26112 -a(S'oe_create/0' -p26113 -S'oe_create() $1' -p26114 -tp26115 -a(S'oe_create/1' -p26116 -S'oe_create(${1:Env}) $2' -p26117 -tp26118 -a(S'oe_create/2' -p26119 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p26120 -tp26121 -a(S'oe_create_link/0' -p26122 -S'oe_create_link() $1' -p26123 -tp26124 -a(S'oe_create_link/1' -p26125 -S'oe_create_link(${1:Env}) $2' -p26126 -tp26127 -a(S'oe_create_link/2' -p26128 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p26129 -tp26130 -a(S'oe_get_interface/0' -p26131 -S'oe_get_interface() $1' -p26132 -tp26133 -a(S'oe_is_a/1' -p26134 -S'oe_is_a(${1:Param1}) $2' -p26135 -tp26136 -a(S'oe_tc/1' -p26137 -S'oe_tc(${1:Param1}) $2' -p26138 -tp26139 -a(S'terminate/2' -p26140 -S'terminate(${1:Reason}, ${2:State}) $3' -p26141 -tp26142 -a(S'typeID/0' -p26143 -S'typeID() $1' -p26144 -tp26145 -asS'distrib_draw' -p26146 -(lp26147 -(S'init/0' -p26148 -S'init() $1' -p26149 -tp26150 -a(S'start/2' -p26151 -S'start(${1:Node1}, ${2:Node2}) $3' -p26152 -tp26153 -asS'orber_iiop_net' -p26154 -(lp26155 -(S'add/3' -p26156 -S'add(${1:IP}, ${2:Param2}, ${3:Options}) $4' -p26157 -tp26158 -a(S'add_connection/5' -p26159 -S'add_connection(${1:Socket}, ${2:Type}, ${3:PeerData}, ${4:LocalData}, ${5:Ref}) $6' -p26160 -tp26161 -a(S'code_change/3' -p26162 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p26163 -tp26164 -a(S'connect/5' -p26165 -S'connect(${1:Type}, ${2:S}, ${3:AcceptPid}, ${4:Ref}, ${5:ProxyOptions}) $6' -p26166 -tp26167 -a(S'connections/0' -p26168 -S'connections() $1' -p26169 -tp26170 -a(S'handle_call/3' -p26171 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p26172 -tp26173 -a(S'handle_cast/2' -p26174 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p26175 -tp26176 -a(S'handle_info/2' -p26177 -S'handle_info(${1:Param1}, ${2:State}) $3' -p26178 -tp26179 -a(S'init/1' -p26180 -S'init(${1:Options}) $2' -p26181 -tp26182 -a(S'peername2sockname/2' -p26183 -S'peername2sockname(${1:PeerHost}, ${2:PeerPort}) $3' -p26184 -tp26185 -a(S'reconfigure/1' -p26186 -S'reconfigure(${1:Options}) $2' -p26187 -tp26188 -a(S'reconfigure/2' -p26189 -S'reconfigure(${1:Options}, ${2:Ref}) $3' -p26190 -tp26191 -a(S'remove/1' -p26192 -S'remove(${1:Ref}) $2' -p26193 -tp26194 -a(S'sockname2peername/2' -p26195 -S'sockname2peername(${1:SockHost}, ${2:SockPort}) $3' -p26196 -tp26197 -a(S'start/1' -p26198 -S'start(${1:Opts}) $2' -p26199 -tp26200 -a(S'terminate/2' -p26201 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p26202 -tp26203 -asS'CosTransactions_RecoveryCoordinator' -p26204 -(lp26205 -(S'code_change/3' -p26206 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p26207 -tp26208 -a(S'handle_call/3' -p26209 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p26210 -tp26211 -a(S'handle_cast/2' -p26212 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p26213 -tp26214 -a(S'handle_info/2' -p26215 -S'handle_info(${1:Param1}, ${2:State}) $3' -p26216 -tp26217 -a(S'init/1' -p26218 -S'init(${1:Env}) $2' -p26219 -tp26220 -a(S'oe_create/0' -p26221 -S'oe_create() $1' -p26222 -tp26223 -a(S'oe_create/1' -p26224 -S'oe_create(${1:Env}) $2' -p26225 -tp26226 -a(S'oe_create/2' -p26227 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p26228 -tp26229 -a(S'oe_create_link/0' -p26230 -S'oe_create_link() $1' -p26231 -tp26232 -a(S'oe_create_link/1' -p26233 -S'oe_create_link(${1:Env}) $2' -p26234 -tp26235 -a(S'oe_create_link/2' -p26236 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p26237 -tp26238 -a(S'oe_get_interface/0' -p26239 -S'oe_get_interface() $1' -p26240 -tp26241 -a(S'oe_is_a/1' -p26242 -S'oe_is_a(${1:Param1}) $2' -p26243 -tp26244 -a(S'oe_tc/1' -p26245 -S'oe_tc(${1:Param1}) $2' -p26246 -tp26247 -a(S'replay_completion/2' -p26248 -S'replay_completion(${1:OE_THIS}, ${2:R}) $3' -p26249 -tp26250 -a(S'replay_completion/3' -p26251 -S'replay_completion(${1:OE_THIS}, ${2:OE_Options}, ${3:R}) $4' -p26252 -tp26253 -a(S'terminate/2' -p26254 -S'terminate(${1:Reason}, ${2:State}) $3' -p26255 -tp26256 -a(S'typeID/0' -p26257 -S'typeID() $1' -p26258 -tp26259 -asS'snmpm_conf' -p26260 -(lp26261 -(S'agents_entry/12' -p26262 -S'agents_entry() $1' -p26263 -tp26264 -a(S'append_agents_config/2' -p26265 -S'append_agents_config() $1' -p26266 -tp26267 -a(S'append_manager_config/2' -p26268 -S'append_manager_config() $1' -p26269 -tp26270 -a(S'append_users_config/2' -p26271 -S'append_users_config() $1' -p26272 -tp26273 -a(S'append_usm_config/2' -p26274 -S'append_usm_config() $1' -p26275 -tp26276 -a(S'manager_entry/2' -p26277 -S'manager_entry(${1:Tag}, ${2:Val}) $3' -p26278 -tp26279 -a(S'read_agents_config/1' -p26280 -S'read_agents_config(${1:Dir}) $2' -p26281 -tp26282 -a(S'read_manager_config/1' -p26283 -S'read_manager_config(${1:Dir}) $2' -p26284 -tp26285 -a(S'read_users_config/1' -p26286 -S'read_users_config(${1:Dir}) $2' -p26287 -tp26288 -a(S'read_usm_config/1' -p26289 -S'read_usm_config() $1' -p26290 -tp26291 -a(S'users_entry/1' -p26292 -S'users_entry(${1:UserId}) $2' -p26293 -tp26294 -a(S'users_entry/2' -p26295 -S'users_entry(${1:UserId}, ${2:UserMod}) $3' -p26296 -tp26297 -a(S'users_entry/3' -p26298 -S'users_entry(${1:UserId}, ${2:UserMod}, ${3:UserData}) $4' -p26299 -tp26300 -a(S'usm_entry/6' -p26301 -S'usm_entry(${1:EngineID}, ${2:UserName}, ${3:AuthP}, ${4:AuthKey}, ${5:PrivP}, ${6:PrivKey}) $7' -p26302 -tp26303 -a(S'usm_entry/7' -p26304 -S'usm_entry(${1:EngineID}, ${2:UserName}, ${3:SecName}, ${4:AuthP}, ${5:AuthKey}, ${6:PrivP}, ${7:PrivKey}) $8' -p26305 -tp26306 -a(S'write_agents_config/2' -p26307 -S'write_agents_config(${1:Dir}, ${2:Conf}) $3' -p26308 -tp26309 -a(S'write_agents_config/3' -p26310 -S'write_agents_config() $1' -p26311 -tp26312 -a(S'write_manager_config/2' -p26313 -S'write_manager_config(${1:Dir}, ${2:Conf}) $3' -p26314 -tp26315 -a(S'write_manager_config/3' -p26316 -S'write_manager_config() $1' -p26317 -tp26318 -a(S'write_users_config/2' -p26319 -S'write_users_config(${1:Dir}, ${2:Conf}) $3' -p26320 -tp26321 -a(S'write_users_config/3' -p26322 -S'write_users_config() $1' -p26323 -tp26324 -a(S'write_usm_config/2' -p26325 -S'write_usm_config(${1:Dir}, ${2:Conf}) $3' -p26326 -tp26327 -a(S'write_usm_config/3' -p26328 -S'write_usm_config() $1' -p26329 -tp26330 -asS'yecc' -p26331 -(lp26332 -(S'compile/3' -p26333 -S'compile() $1' -p26334 -tp26335 -a(S'file/1' -p26336 -S'file(${1:File}) $2' -p26337 -tp26338 -a(S'file/2' -p26339 -S'file(${1:File}, ${2:Options}) $3' -p26340 -tp26341 -a(S'format_error/1' -p26342 -S'format_error(${1:Param1}) $2' -p26343 -tp26344 -a(S'yecc/2' -p26345 -S'yecc(${1:Infile}, ${2:Outfile}) $3' -p26346 -tp26347 -a(S'yecc/3' -p26348 -S'yecc(${1:Infile}, ${2:Outfile}, ${3:Verbose}) $4' -p26349 -tp26350 -a(S'yecc/4' -p26351 -S'yecc(${1:Infilex}, ${2:Outfilex}, ${3:Verbose}, ${4:Includefilex}) $5' -p26352 -tp26353 -asS'error_logger' -p26354 -(lp26355 -(S'add_report_handler/1' -p26356 -S'add_report_handler(${1:Handler}) $2' -p26357 -tp26358 -a(S'add_report_handler/2' -p26359 -S'add_report_handler(${1:Handler}, ${2:Args}) $3' -p26360 -tp26361 -a(S'delete_report_handler/1' -p26362 -S'delete_report_handler(${1:Handler}) $2' -p26363 -tp26364 -a(S'error_info/1' -p26365 -S'error_info(${1:Error}) $2' -p26366 -tp26367 -a(S'error_msg/1' -p26368 -S'error_msg(${1:Format}) $2' -p26369 -tp26370 -a(S'error_msg/2' -p26371 -S'error_msg(${1:Format}, ${2:Data}) $3' -p26372 -tp26373 -a(S'error_report/1' -p26374 -S'error_report(${1:Report}) $2' -p26375 -tp26376 -a(S'error_report/2' -p26377 -S'error_report(${1:Type}, ${2:Report}) $3' -p26378 -tp26379 -a(S'format/2' -p26380 -S'format(${1:Format}, ${2:Data}) $3' -p26381 -tp26382 -a(S'handle_call/2' -p26383 -S'handle_call(${1:Param1}, ${2:State}) $3' -p26384 -tp26385 -a(S'handle_event/2' -p26386 -S'handle_event(${1:Event}, ${2:State}) $3' -p26387 -tp26388 -a(S'handle_info/2' -p26389 -S'handle_info(${1:Param1}, ${2:State}) $3' -p26390 -tp26391 -a(S'info_msg/1' -p26392 -S'info_msg(${1:Format}) $2' -p26393 -tp26394 -a(S'info_msg/2' -p26395 -S'info_msg(${1:Format}, ${2:Data}) $3' -p26396 -tp26397 -a(S'info_report/1' -p26398 -S'info_report(${1:Report}) $2' -p26399 -tp26400 -a(S'info_report/2' -p26401 -S'info_report(${1:Type}, ${2:Report}) $3' -p26402 -tp26403 -a(S'init/1' -p26404 -S'init(${1:Max}) $2' -p26405 -tp26406 -a(S'logfile/1' -p26407 -S'logfile(${1:Param1}) $2' -p26408 -tp26409 -a(S'start/0' -p26410 -S'start() $1' -p26411 -tp26412 -a(S'start_link/0' -p26413 -S'start_link() $1' -p26414 -tp26415 -a(S'swap_handler/1' -p26416 -S'swap_handler(${1:Param1}) $2' -p26417 -tp26418 -a(S'terminate/2' -p26419 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p26420 -tp26421 -a(S'tty/1' -p26422 -S'tty(${1:Flag}) $2' -p26423 -tp26424 -a(S'warning_msg/1' -p26425 -S'warning_msg(${1:Format}) $2' -p26426 -tp26427 -a(S'warning_msg/2' -p26428 -S'warning_msg(${1:Format}, ${2:Data}) $3' -p26429 -tp26430 -a(S'warning_report/1' -p26431 -S'warning_report(${1:Report}) $2' -p26432 -tp26433 -a(S'warning_report/2' -p26434 -S'warning_report(${1:Type}, ${2:Report}) $3' -p26435 -tp26436 -asS'wxCalendarDateAttr' -p26437 -(lp26438 -(S'destroy/1' -p26439 -S'destroy(${1:This}) $2' -p26440 -tp26441 -a(S'getBackgroundColour/1' -p26442 -S'getBackgroundColour(${1:This}) $2' -p26443 -tp26444 -a(S'getBorder/1' -p26445 -S'getBorder(${1:This}) $2' -p26446 -tp26447 -a(S'getBorderColour/1' -p26448 -S'getBorderColour(${1:This}) $2' -p26449 -tp26450 -a(S'getFont/1' -p26451 -S'getFont(${1:This}) $2' -p26452 -tp26453 -a(S'getTextColour/1' -p26454 -S'getTextColour(${1:This}) $2' -p26455 -tp26456 -a(S'hasBackgroundColour/1' -p26457 -S'hasBackgroundColour(${1:This}) $2' -p26458 -tp26459 -a(S'hasBorder/1' -p26460 -S'hasBorder(${1:This}) $2' -p26461 -tp26462 -a(S'hasBorderColour/1' -p26463 -S'hasBorderColour(${1:This}) $2' -p26464 -tp26465 -a(S'hasFont/1' -p26466 -S'hasFont(${1:This}) $2' -p26467 -tp26468 -a(S'hasTextColour/1' -p26469 -S'hasTextColour(${1:This}) $2' -p26470 -tp26471 -a(S'isHoliday/1' -p26472 -S'isHoliday(${1:This}) $2' -p26473 -tp26474 -a(S'new/0' -p26475 -S'new() $1' -p26476 -tp26477 -a(S'new/1' -p26478 -S'new(${1:Border}) $2' -p26479 -tp26480 -a(S'new/2' -p26481 -S'new(${1:Border}, ${2:Param2}) $3' -p26482 -tp26483 -a(S'parent_class/1' -p26484 -S'parent_class(${1:Param1}) $2' -p26485 -tp26486 -a(S'setBackgroundColour/2' -p26487 -S'setBackgroundColour(${1:This}, ${2:ColBack}) $3' -p26488 -tp26489 -a(S'setBorder/2' -p26490 -S'setBorder(${1:This}, ${2:Border}) $3' -p26491 -tp26492 -a(S'setBorderColour/2' -p26493 -S'setBorderColour(${1:This}, ${2:Col}) $3' -p26494 -tp26495 -a(S'setFont/2' -p26496 -S'setFont(${1:This}, ${2:Font}) $3' -p26497 -tp26498 -a(S'setHoliday/2' -p26499 -S'setHoliday(${1:This}, ${2:Holiday}) $3' -p26500 -tp26501 -a(S'setTextColour/2' -p26502 -S'setTextColour(${1:This}, ${2:ColText}) $3' -p26503 -tp26504 -asS'snmp_index' -p26505 -(lp26506 -(S'delete/1' -p26507 -S'delete(${1:Param1}) $2' -p26508 -tp26509 -a(S'delete/2' -p26510 -S'delete(${1:Tab}, ${2:Key}) $3' -p26511 -tp26512 -a(S'get/2' -p26513 -S'get(${1:Param1}, ${2:KeyOid}) $3' -p26514 -tp26515 -a(S'get_last/1' -p26516 -S'get_last(${1:Tab}) $2' -p26517 -tp26518 -a(S'get_next/2' -p26519 -S'get_next(${1:Tab}, ${2:KeyOid}) $3' -p26520 -tp26521 -a(S'insert/3' -p26522 -S'insert(${1:Tab}, ${2:Key}, ${3:Val}) $4' -p26523 -tp26524 -a(S'key_to_oid/2' -p26525 -S'key_to_oid(${1:Param1}, ${2:Key}) $3' -p26526 -tp26527 -a(S'new/1' -p26528 -S'new(${1:KeyTypes}) $2' -p26529 -tp26530 -a(S'new/2' -p26531 -S'new(${1:KeyTypes}, ${2:Name}) $3' -p26532 -tp26533 -asS'megaco_udp' -p26534 -(lp26535 -(S'block/1' -p26536 -S'block(${1:SH}) $2' -p26537 -tp26538 -a(S'close/1' -p26539 -S'close(${1:Socket}) $2' -p26540 -tp26541 -a(S'create_send_handle/3' -p26542 -S'create_send_handle(${1:Socket}, ${2:Addr}, ${3:Port}) $4' -p26543 -tp26544 -a(S'get_stats/0' -p26545 -S'get_stats() $1' -p26546 -tp26547 -a(S'get_stats/1' -p26548 -S'get_stats(${1:SH}) $2' -p26549 -tp26550 -a(S'get_stats/2' -p26551 -S'get_stats() $1' -p26552 -tp26553 -a(S'open/2' -p26554 -S'open(${1:SupPid}, ${2:Options}) $3' -p26555 -tp26556 -a(S'reset_stats/0' -p26557 -S'reset_stats() $1' -p26558 -tp26559 -a(S'reset_stats/1' -p26560 -S'reset_stats(${1:SH}) $2' -p26561 -tp26562 -a(S'send_message/2' -p26563 -S'send_message(${1:SH}, ${2:Data}) $3' -p26564 -tp26565 -a(S'socket/1' -p26566 -S'socket(${1:SH}) $2' -p26567 -tp26568 -a(S'start_transport/0' -p26569 -S'start_transport() $1' -p26570 -tp26571 -a(S'stop_transport/1' -p26572 -S'stop_transport(${1:Pid}) $2' -p26573 -tp26574 -a(S'unblock/1' -p26575 -S'unblock(${1:SH}) $2' -p26576 -tp26577 -a(S'upgrade_receive_handle/2' -p26578 -S'upgrade_receive_handle() $1' -p26579 -tp26580 -asS'dialyzer_gui' -p26581 -(lp26582 -(S'start/1' -p26583 -S'start(${1:State}) $2' -p26584 -tp26585 -asS'httpd_acceptor_sup' -p26586 -(lp26587 -(S'init/1' -p26588 -S'init(${1:Param1}) $2' -p26589 -tp26590 -a(S'start_acceptor/5' -p26591 -S'start_acceptor(${1:SocketType}, ${2:Addr}, ${3:Port}, ${4:ConfigDb}, ${5:AcceptTimeout}) $6' -p26592 -tp26593 -a(S'start_acceptor/6' -p26594 -S'start_acceptor(${1:SocketType}, ${2:Addr}, ${3:Port}, ${4:ConfigDb}, ${5:AcceptTimeout}, ${6:ListenSocket}) $7' -p26595 -tp26596 -a(S'start_link/2' -p26597 -S'start_link(${1:Addr}, ${2:Port}) $3' -p26598 -tp26599 -a(S'stop_acceptor/2' -p26600 -S'stop_acceptor(${1:Addr}, ${2:Port}) $3' -p26601 -tp26602 -asS'wxChoice' -p26603 -(lp26604 -(S'append/2' -p26605 -S'append(${1:This}, ${2:Item}) $3' -p26606 -tp26607 -a(S'append/3' -p26608 -S'append(${1:This}, ${2:Item}, ${3:ClientData}) $4' -p26609 -tp26610 -a(S'appendStrings/2' -p26611 -S'appendStrings(${1:This}, ${2:Strings}) $3' -p26612 -tp26613 -a(S'cacheBestSize/2' -p26614 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p26615 -tp26616 -a(S'captureMouse/1' -p26617 -S'captureMouse(${1:This}) $2' -p26618 -tp26619 -a(S'center/1' -p26620 -S'center(${1:This}) $2' -p26621 -tp26622 -a(S'center/2' -p26623 -S'center(${1:This}, ${2:Options}) $3' -p26624 -tp26625 -a(S'centerOnParent/1' -p26626 -S'centerOnParent(${1:This}) $2' -p26627 -tp26628 -a(S'centerOnParent/2' -p26629 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p26630 -tp26631 -a(S'centre/1' -p26632 -S'centre(${1:This}) $2' -p26633 -tp26634 -a(S'centre/2' -p26635 -S'centre(${1:This}, ${2:Options}) $3' -p26636 -tp26637 -a(S'centreOnParent/1' -p26638 -S'centreOnParent(${1:This}) $2' -p26639 -tp26640 -a(S'centreOnParent/2' -p26641 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p26642 -tp26643 -a(S'clear/1' -p26644 -S'clear(${1:This}) $2' -p26645 -tp26646 -a(S'clearBackground/1' -p26647 -S'clearBackground(${1:This}) $2' -p26648 -tp26649 -a(S'clientToScreen/2' -p26650 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p26651 -tp26652 -a(S'clientToScreen/3' -p26653 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p26654 -tp26655 -a(S'close/1' -p26656 -S'close(${1:This}) $2' -p26657 -tp26658 -a(S'close/2' -p26659 -S'close(${1:This}, ${2:Options}) $3' -p26660 -tp26661 -a(S'connect/2' -p26662 -S'connect(${1:This}, ${2:EventType}) $3' -p26663 -tp26664 -a(S'connect/3' -p26665 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p26666 -tp26667 -a(S'convertDialogToPixels/2' -p26668 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p26669 -tp26670 -a(S'convertPixelsToDialog/2' -p26671 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p26672 -tp26673 -a(S'create/6' -p26674 -S'create(${1:This}, ${2:Parent}, ${3:Id}, ${4:Pos}, ${5:Size}, ${6:Choices}) $7' -p26675 -tp26676 -a(S'create/7' -p26677 -S'create(${1:This}, ${2:Parent}, ${3:Id}, ${4:Pos}, ${5:Size}, ${6:Choices}, ${7:Param7}) $8' -p26678 -tp26679 -a(S'delete/2' -p26680 -S'delete(${1:This}, ${2:N}) $3' -p26681 -tp26682 -a(S'destroy/1' -p26683 -S'destroy(${1:This}) $2' -p26684 -tp26685 -a(S'destroyChildren/1' -p26686 -S'destroyChildren(${1:This}) $2' -p26687 -tp26688 -a(S'disable/1' -p26689 -S'disable(${1:This}) $2' -p26690 -tp26691 -a(S'disconnect/1' -p26692 -S'disconnect(${1:This}) $2' -p26693 -tp26694 -a(S'disconnect/2' -p26695 -S'disconnect(${1:This}, ${2:EventType}) $3' -p26696 -tp26697 -a(S'disconnect/3' -p26698 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p26699 -tp26700 -a(S'enable/1' -p26701 -S'enable(${1:This}) $2' -p26702 -tp26703 -a(S'enable/2' -p26704 -S'enable(${1:This}, ${2:Options}) $3' -p26705 -tp26706 -a(S'findString/2' -p26707 -S'findString(${1:This}, ${2:S}) $3' -p26708 -tp26709 -a(S'findString/3' -p26710 -S'findString(${1:This}, ${2:S}, ${3:Options}) $4' -p26711 -tp26712 -a(S'findWindow/2' -p26713 -S'findWindow(${1:This}, ${2:Winid}) $3' -p26714 -tp26715 -a(S'fit/1' -p26716 -S'fit(${1:This}) $2' -p26717 -tp26718 -a(S'fitInside/1' -p26719 -S'fitInside(${1:This}) $2' -p26720 -tp26721 -a(S'freeze/1' -p26722 -S'freeze(${1:This}) $2' -p26723 -tp26724 -a(S'getAcceleratorTable/1' -p26725 -S'getAcceleratorTable(${1:This}) $2' -p26726 -tp26727 -a(S'getBackgroundColour/1' -p26728 -S'getBackgroundColour(${1:This}) $2' -p26729 -tp26730 -a(S'getBackgroundStyle/1' -p26731 -S'getBackgroundStyle(${1:This}) $2' -p26732 -tp26733 -a(S'getBestSize/1' -p26734 -S'getBestSize(${1:This}) $2' -p26735 -tp26736 -a(S'getCaret/1' -p26737 -S'getCaret(${1:This}) $2' -p26738 -tp26739 -a(S'getCharHeight/1' -p26740 -S'getCharHeight(${1:This}) $2' -p26741 -tp26742 -a(S'getCharWidth/1' -p26743 -S'getCharWidth(${1:This}) $2' -p26744 -tp26745 -a(S'getChildren/1' -p26746 -S'getChildren(${1:This}) $2' -p26747 -tp26748 -a(S'getClientData/2' -p26749 -S'getClientData(${1:This}, ${2:N}) $3' -p26750 -tp26751 -a(S'getClientSize/1' -p26752 -S'getClientSize(${1:This}) $2' -p26753 -tp26754 -a(S'getColumns/1' -p26755 -S'getColumns(${1:This}) $2' -p26756 -tp26757 -a(S'getContainingSizer/1' -p26758 -S'getContainingSizer(${1:This}) $2' -p26759 -tp26760 -a(S'getCount/1' -p26761 -S'getCount(${1:This}) $2' -p26762 -tp26763 -a(S'getCursor/1' -p26764 -S'getCursor(${1:This}) $2' -p26765 -tp26766 -a(S'getDropTarget/1' -p26767 -S'getDropTarget(${1:This}) $2' -p26768 -tp26769 -a(S'getEventHandler/1' -p26770 -S'getEventHandler(${1:This}) $2' -p26771 -tp26772 -a(S'getExtraStyle/1' -p26773 -S'getExtraStyle(${1:This}) $2' -p26774 -tp26775 -a(S'getFont/1' -p26776 -S'getFont(${1:This}) $2' -p26777 -tp26778 -a(S'getForegroundColour/1' -p26779 -S'getForegroundColour(${1:This}) $2' -p26780 -tp26781 -a(S'getGrandParent/1' -p26782 -S'getGrandParent(${1:This}) $2' -p26783 -tp26784 -a(S'getHandle/1' -p26785 -S'getHandle(${1:This}) $2' -p26786 -tp26787 -a(S'getHelpText/1' -p26788 -S'getHelpText(${1:This}) $2' -p26789 -tp26790 -a(S'getId/1' -p26791 -S'getId(${1:This}) $2' -p26792 -tp26793 -a(S'getLabel/1' -p26794 -S'getLabel(${1:This}) $2' -p26795 -tp26796 -a(S'getMaxSize/1' -p26797 -S'getMaxSize(${1:This}) $2' -p26798 -tp26799 -a(S'getMinSize/1' -p26800 -S'getMinSize(${1:This}) $2' -p26801 -tp26802 -a(S'getName/1' -p26803 -S'getName(${1:This}) $2' -p26804 -tp26805 -a(S'getParent/1' -p26806 -S'getParent(${1:This}) $2' -p26807 -tp26808 -a(S'getPosition/1' -p26809 -S'getPosition(${1:This}) $2' -p26810 -tp26811 -a(S'getRect/1' -p26812 -S'getRect(${1:This}) $2' -p26813 -tp26814 -a(S'getScreenPosition/1' -p26815 -S'getScreenPosition(${1:This}) $2' -p26816 -tp26817 -a(S'getScreenRect/1' -p26818 -S'getScreenRect(${1:This}) $2' -p26819 -tp26820 -a(S'getScrollPos/2' -p26821 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p26822 -tp26823 -a(S'getScrollRange/2' -p26824 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p26825 -tp26826 -a(S'getScrollThumb/2' -p26827 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p26828 -tp26829 -a(S'getSelection/1' -p26830 -S'getSelection(${1:This}) $2' -p26831 -tp26832 -a(S'getSize/1' -p26833 -S'getSize(${1:This}) $2' -p26834 -tp26835 -a(S'getSizer/1' -p26836 -S'getSizer(${1:This}) $2' -p26837 -tp26838 -a(S'getString/2' -p26839 -S'getString(${1:This}, ${2:N}) $3' -p26840 -tp26841 -a(S'getStringSelection/1' -p26842 -S'getStringSelection(${1:This}) $2' -p26843 -tp26844 -a(S'getTextExtent/2' -p26845 -S'getTextExtent(${1:This}, ${2:String}) $3' -p26846 -tp26847 -a(S'getTextExtent/3' -p26848 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p26849 -tp26850 -a(S'getToolTip/1' -p26851 -S'getToolTip(${1:This}) $2' -p26852 -tp26853 -a(S'getUpdateRegion/1' -p26854 -S'getUpdateRegion(${1:This}) $2' -p26855 -tp26856 -a(S'getVirtualSize/1' -p26857 -S'getVirtualSize(${1:This}) $2' -p26858 -tp26859 -a(S'getWindowStyleFlag/1' -p26860 -S'getWindowStyleFlag(${1:This}) $2' -p26861 -tp26862 -a(S'getWindowVariant/1' -p26863 -S'getWindowVariant(${1:This}) $2' -p26864 -tp26865 -a(S'hasCapture/1' -p26866 -S'hasCapture(${1:This}) $2' -p26867 -tp26868 -a(S'hasScrollbar/2' -p26869 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p26870 -tp26871 -a(S'hasTransparentBackground/1' -p26872 -S'hasTransparentBackground(${1:This}) $2' -p26873 -tp26874 -a(S'hide/1' -p26875 -S'hide(${1:This}) $2' -p26876 -tp26877 -a(S'inheritAttributes/1' -p26878 -S'inheritAttributes(${1:This}) $2' -p26879 -tp26880 -a(S'initDialog/1' -p26881 -S'initDialog(${1:This}) $2' -p26882 -tp26883 -a(S'insert/3' -p26884 -S'insert(${1:This}, ${2:Item}, ${3:Pos}) $4' -p26885 -tp26886 -a(S'insert/4' -p26887 -S'insert(${1:This}, ${2:Item}, ${3:Pos}, ${4:ClientData}) $5' -p26888 -tp26889 -a(S'invalidateBestSize/1' -p26890 -S'invalidateBestSize(${1:This}) $2' -p26891 -tp26892 -a(S'isEmpty/1' -p26893 -S'isEmpty(${1:This}) $2' -p26894 -tp26895 -a(S'isEnabled/1' -p26896 -S'isEnabled(${1:This}) $2' -p26897 -tp26898 -a(S'isExposed/2' -p26899 -S'isExposed(${1:This}, ${2:Pt}) $3' -p26900 -tp26901 -a(S'isExposed/3' -p26902 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p26903 -tp26904 -a(S'isExposed/5' -p26905 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p26906 -tp26907 -a(S'isRetained/1' -p26908 -S'isRetained(${1:This}) $2' -p26909 -tp26910 -a(S'isShown/1' -p26911 -S'isShown(${1:This}) $2' -p26912 -tp26913 -a(S'isTopLevel/1' -p26914 -S'isTopLevel(${1:This}) $2' -p26915 -tp26916 -a(S'layout/1' -p26917 -S'layout(${1:This}) $2' -p26918 -tp26919 -a(S'lineDown/1' -p26920 -S'lineDown(${1:This}) $2' -p26921 -tp26922 -a(S'lineUp/1' -p26923 -S'lineUp(${1:This}) $2' -p26924 -tp26925 -a(S'lower/1' -p26926 -S'lower(${1:This}) $2' -p26927 -tp26928 -a(S'makeModal/1' -p26929 -S'makeModal(${1:This}) $2' -p26930 -tp26931 -a(S'makeModal/2' -p26932 -S'makeModal(${1:This}, ${2:Options}) $3' -p26933 -tp26934 -a(S'move/2' -p26935 -S'move(${1:This}, ${2:Pt}) $3' -p26936 -tp26937 -a(S'move/3' -p26938 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p26939 -tp26940 -a(S'move/4' -p26941 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p26942 -tp26943 -a(S'moveAfterInTabOrder/2' -p26944 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p26945 -tp26946 -a(S'moveBeforeInTabOrder/2' -p26947 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p26948 -tp26949 -a(S'navigate/1' -p26950 -S'navigate(${1:This}) $2' -p26951 -tp26952 -a(S'navigate/2' -p26953 -S'navigate(${1:This}, ${2:Options}) $3' -p26954 -tp26955 -a(S'new/0' -p26956 -S'new() $1' -p26957 -tp26958 -a(S'new/2' -p26959 -S'new(${1:Parent}, ${2:Id}) $3' -p26960 -tp26961 -a(S'new/3' -p26962 -S'new(${1:Parent}, ${2:Id}, ${3:Param3}) $4' -p26963 -tp26964 -a(S'pageDown/1' -p26965 -S'pageDown(${1:This}) $2' -p26966 -tp26967 -a(S'pageUp/1' -p26968 -S'pageUp(${1:This}) $2' -p26969 -tp26970 -a(S'parent_class/1' -p26971 -S'parent_class(${1:Param1}) $2' -p26972 -tp26973 -a(S'popEventHandler/1' -p26974 -S'popEventHandler(${1:This}) $2' -p26975 -tp26976 -a(S'popEventHandler/2' -p26977 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p26978 -tp26979 -a(S'popupMenu/2' -p26980 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p26981 -tp26982 -a(S'popupMenu/3' -p26983 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p26984 -tp26985 -a(S'popupMenu/4' -p26986 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p26987 -tp26988 -a(S'raise/1' -p26989 -S'raise(${1:This}) $2' -p26990 -tp26991 -a(S'refresh/1' -p26992 -S'refresh(${1:This}) $2' -p26993 -tp26994 -a(S'refresh/2' -p26995 -S'refresh(${1:This}, ${2:Options}) $3' -p26996 -tp26997 -a(S'refreshRect/2' -p26998 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p26999 -tp27000 -a(S'refreshRect/3' -p27001 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p27002 -tp27003 -a(S'releaseMouse/1' -p27004 -S'releaseMouse(${1:This}) $2' -p27005 -tp27006 -a(S'removeChild/2' -p27007 -S'removeChild(${1:This}, ${2:Child}) $3' -p27008 -tp27009 -a(S'reparent/2' -p27010 -S'reparent(${1:This}, ${2:NewParent}) $3' -p27011 -tp27012 -a(S'screenToClient/1' -p27013 -S'screenToClient(${1:This}) $2' -p27014 -tp27015 -a(S'screenToClient/2' -p27016 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p27017 -tp27018 -a(S'scrollLines/2' -p27019 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p27020 -tp27021 -a(S'scrollPages/2' -p27022 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p27023 -tp27024 -a(S'scrollWindow/3' -p27025 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p27026 -tp27027 -a(S'scrollWindow/4' -p27028 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p27029 -tp27030 -a(S'select/2' -p27031 -S'select(${1:This}, ${2:N}) $3' -p27032 -tp27033 -a(S'setAcceleratorTable/2' -p27034 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p27035 -tp27036 -a(S'setAutoLayout/2' -p27037 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p27038 -tp27039 -a(S'setBackgroundColour/2' -p27040 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p27041 -tp27042 -a(S'setBackgroundStyle/2' -p27043 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p27044 -tp27045 -a(S'setCaret/2' -p27046 -S'setCaret(${1:This}, ${2:Caret}) $3' -p27047 -tp27048 -a(S'setClientData/3' -p27049 -S'setClientData(${1:This}, ${2:N}, ${3:ClientData}) $4' -p27050 -tp27051 -a(S'setClientSize/2' -p27052 -S'setClientSize(${1:This}, ${2:Size}) $3' -p27053 -tp27054 -a(S'setClientSize/3' -p27055 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p27056 -tp27057 -a(S'setColumns/1' -p27058 -S'setColumns(${1:This}) $2' -p27059 -tp27060 -a(S'setColumns/2' -p27061 -S'setColumns(${1:This}, ${2:Param2}) $3' -p27062 -tp27063 -a(S'setContainingSizer/2' -p27064 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p27065 -tp27066 -a(S'setCursor/2' -p27067 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p27068 -tp27069 -a(S'setDropTarget/2' -p27070 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p27071 -tp27072 -a(S'setExtraStyle/2' -p27073 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p27074 -tp27075 -a(S'setFocus/1' -p27076 -S'setFocus(${1:This}) $2' -p27077 -tp27078 -a(S'setFocusFromKbd/1' -p27079 -S'setFocusFromKbd(${1:This}) $2' -p27080 -tp27081 -a(S'setFont/2' -p27082 -S'setFont(${1:This}, ${2:Font}) $3' -p27083 -tp27084 -a(S'setForegroundColour/2' -p27085 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p27086 -tp27087 -a(S'setHelpText/2' -p27088 -S'setHelpText(${1:This}, ${2:Text}) $3' -p27089 -tp27090 -a(S'setId/2' -p27091 -S'setId(${1:This}, ${2:Winid}) $3' -p27092 -tp27093 -a(S'setLabel/2' -p27094 -S'setLabel(${1:This}, ${2:Label}) $3' -p27095 -tp27096 -a(S'setMaxSize/2' -p27097 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p27098 -tp27099 -a(S'setMinSize/2' -p27100 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p27101 -tp27102 -a(S'setName/2' -p27103 -S'setName(${1:This}, ${2:Name}) $3' -p27104 -tp27105 -a(S'setOwnBackgroundColour/2' -p27106 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p27107 -tp27108 -a(S'setOwnFont/2' -p27109 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p27110 -tp27111 -a(S'setOwnForegroundColour/2' -p27112 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p27113 -tp27114 -a(S'setPalette/2' -p27115 -S'setPalette(${1:This}, ${2:Pal}) $3' -p27116 -tp27117 -a(S'setScrollPos/3' -p27118 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p27119 -tp27120 -a(S'setScrollPos/4' -p27121 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p27122 -tp27123 -a(S'setScrollbar/5' -p27124 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p27125 -tp27126 -a(S'setScrollbar/6' -p27127 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p27128 -tp27129 -a(S'setSelection/2' -p27130 -S'setSelection(${1:This}, ${2:N}) $3' -p27131 -tp27132 -a(S'setSize/2' -p27133 -S'setSize(${1:This}, ${2:Rect}) $3' -p27134 -tp27135 -a(S'setSize/3' -p27136 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p27137 -tp27138 -a(S'setSize/5' -p27139 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p27140 -tp27141 -a(S'setSize/6' -p27142 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p27143 -tp27144 -a(S'setSizeHints/2' -p27145 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p27146 -tp27147 -a(S'setSizeHints/3' -p27148 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p27149 -tp27150 -a(S'setSizeHints/4' -p27151 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p27152 -tp27153 -a(S'setSizer/2' -p27154 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p27155 -tp27156 -a(S'setSizer/3' -p27157 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p27158 -tp27159 -a(S'setSizerAndFit/2' -p27160 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p27161 -tp27162 -a(S'setSizerAndFit/3' -p27163 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p27164 -tp27165 -a(S'setString/3' -p27166 -S'setString(${1:This}, ${2:N}, ${3:S}) $4' -p27167 -tp27168 -a(S'setStringSelection/2' -p27169 -S'setStringSelection(${1:This}, ${2:S}) $3' -p27170 -tp27171 -a(S'setThemeEnabled/2' -p27172 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p27173 -tp27174 -a(S'setToolTip/2' -p27175 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p27176 -tp27177 -a(S'setVirtualSize/2' -p27178 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p27179 -tp27180 -a(S'setVirtualSize/3' -p27181 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p27182 -tp27183 -a(S'setVirtualSizeHints/2' -p27184 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p27185 -tp27186 -a(S'setVirtualSizeHints/3' -p27187 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p27188 -tp27189 -a(S'setVirtualSizeHints/4' -p27190 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p27191 -tp27192 -a(S'setWindowStyle/2' -p27193 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p27194 -tp27195 -a(S'setWindowStyleFlag/2' -p27196 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p27197 -tp27198 -a(S'setWindowVariant/2' -p27199 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p27200 -tp27201 -a(S'shouldInheritColours/1' -p27202 -S'shouldInheritColours(${1:This}) $2' -p27203 -tp27204 -a(S'show/1' -p27205 -S'show(${1:This}) $2' -p27206 -tp27207 -a(S'show/2' -p27208 -S'show(${1:This}, ${2:Options}) $3' -p27209 -tp27210 -a(S'thaw/1' -p27211 -S'thaw(${1:This}) $2' -p27212 -tp27213 -a(S'transferDataFromWindow/1' -p27214 -S'transferDataFromWindow(${1:This}) $2' -p27215 -tp27216 -a(S'transferDataToWindow/1' -p27217 -S'transferDataToWindow(${1:This}) $2' -p27218 -tp27219 -a(S'update/1' -p27220 -S'update(${1:This}) $2' -p27221 -tp27222 -a(S'updateWindowUI/1' -p27223 -S'updateWindowUI(${1:This}) $2' -p27224 -tp27225 -a(S'updateWindowUI/2' -p27226 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p27227 -tp27228 -a(S'validate/1' -p27229 -S'validate(${1:This}) $2' -p27230 -tp27231 -a(S'warpPointer/3' -p27232 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p27233 -tp27234 -asS'beam_clean' -p27235 -(lp27236 -(S'bs_clean_saves/1' -p27237 -S'bs_clean_saves(${1:Is}) $2' -p27238 -tp27239 -a(S'clean_labels/1' -p27240 -S'clean_labels(${1:Fs0}) $2' -p27241 -tp27242 -a(S'module/2' -p27243 -S'module(${1:Param1}, ${2:Opts}) $3' -p27244 -tp27245 -asS'inet_dns' -p27246 -(lp27247 -(S'decode/1' -p27248 -S'decode(${1:Buffer}) $2' -p27249 -tp27250 -a(S'dns_query/1' -p27251 -S'dns_query() $1' -p27252 -tp27253 -a(S'dns_query/2' -p27254 -S'dns_query() $1' -p27255 -tp27256 -a(S'encode/1' -p27257 -S'encode(${1:Q}) $2' -p27258 -tp27259 -a(S'header/1' -p27260 -S'header() $1' -p27261 -tp27262 -a(S'header/2' -p27263 -S'header() $1' -p27264 -tp27265 -a(S'make_dns_query/0' -p27266 -S'make_dns_query() $1' -p27267 -tp27268 -a(S'make_dns_query/1' -p27269 -S'make_dns_query() $1' -p27270 -tp27271 -a(S'make_dns_query/2' -p27272 -S'make_dns_query() $1' -p27273 -tp27274 -a(S'make_dns_query/3' -p27275 -S'make_dns_query() $1' -p27276 -tp27277 -a(S'make_header/0' -p27278 -S'make_header() $1' -p27279 -tp27280 -a(S'make_header/1' -p27281 -S'make_header() $1' -p27282 -tp27283 -a(S'make_header/2' -p27284 -S'make_header() $1' -p27285 -tp27286 -a(S'make_header/3' -p27287 -S'make_header() $1' -p27288 -tp27289 -a(S'make_msg/0' -p27290 -S'make_msg() $1' -p27291 -tp27292 -a(S'make_msg/1' -p27293 -S'make_msg() $1' -p27294 -tp27295 -a(S'make_msg/2' -p27296 -S'make_msg() $1' -p27297 -tp27298 -a(S'make_msg/3' -p27299 -S'make_msg() $1' -p27300 -tp27301 -a(S'make_rr/0' -p27302 -S'make_rr() $1' -p27303 -tp27304 -a(S'make_rr/1' -p27305 -S'make_rr(${1:L}) $2' -p27306 -tp27307 -a(S'make_rr/2' -p27308 -S'make_rr(${1:F}, ${2:V}) $3' -p27309 -tp27310 -a(S'make_rr/3' -p27311 -S'make_rr(${1:RR}, ${2:F}, ${3:V}) $4' -p27312 -tp27313 -a(S'msg/1' -p27314 -S'msg() $1' -p27315 -tp27316 -a(S'msg/2' -p27317 -S'msg() $1' -p27318 -tp27319 -a(S'record_type/1' -p27320 -S'record_type(${1:Rec}) $2' -p27321 -tp27322 -a(S'rr/1' -p27323 -S'rr(${1:RR}) $2' -p27324 -tp27325 -a(S'rr/2' -p27326 -S'rr(${1:RR}, ${2:L}) $3' -p27327 -tp27328 -asS'wxMenuEvent' -p27329 -(lp27330 -(S'getId/1' -p27331 -S'getId(${1:This}) $2' -p27332 -tp27333 -a(S'getMenu/1' -p27334 -S'getMenu(${1:This}) $2' -p27335 -tp27336 -a(S'getMenuId/1' -p27337 -S'getMenuId(${1:This}) $2' -p27338 -tp27339 -a(S'getSkipped/1' -p27340 -S'getSkipped(${1:This}) $2' -p27341 -tp27342 -a(S'getTimestamp/1' -p27343 -S'getTimestamp(${1:This}) $2' -p27344 -tp27345 -a(S'isCommandEvent/1' -p27346 -S'isCommandEvent(${1:This}) $2' -p27347 -tp27348 -a(S'isPopup/1' -p27349 -S'isPopup(${1:This}) $2' -p27350 -tp27351 -a(S'parent_class/1' -p27352 -S'parent_class(${1:Param1}) $2' -p27353 -tp27354 -a(S'resumePropagation/2' -p27355 -S'resumePropagation(${1:This}, ${2:PropagationLevel}) $3' -p27356 -tp27357 -a(S'shouldPropagate/1' -p27358 -S'shouldPropagate(${1:This}) $2' -p27359 -tp27360 -a(S'skip/1' -p27361 -S'skip(${1:This}) $2' -p27362 -tp27363 -a(S'skip/2' -p27364 -S'skip(${1:This}, ${2:Options}) $3' -p27365 -tp27366 -a(S'stopPropagation/1' -p27367 -S'stopPropagation(${1:This}) $2' -p27368 -tp27369 -asS'wxWindowDC' -p27370 -(lp27371 -(S'blit/5' -p27372 -S'blit(${1:This}, ${2:DestPt}, ${3:Sz}, ${4:Source}, ${5:SrcPt}) $6' -p27373 -tp27374 -a(S'blit/6' -p27375 -S'blit(${1:This}, ${2:DestPt}, ${3:Sz}, ${4:Source}, ${5:SrcPt}, ${6:Options}) $7' -p27376 -tp27377 -a(S'calcBoundingBox/3' -p27378 -S'calcBoundingBox(${1:This}, ${2:X}, ${3:Y}) $4' -p27379 -tp27380 -a(S'clear/1' -p27381 -S'clear(${1:This}) $2' -p27382 -tp27383 -a(S'computeScaleAndOrigin/1' -p27384 -S'computeScaleAndOrigin(${1:This}) $2' -p27385 -tp27386 -a(S'crossHair/2' -p27387 -S'crossHair(${1:This}, ${2:Pt}) $3' -p27388 -tp27389 -a(S'destroy/1' -p27390 -S'destroy(${1:This}) $2' -p27391 -tp27392 -a(S'destroyClippingRegion/1' -p27393 -S'destroyClippingRegion(${1:This}) $2' -p27394 -tp27395 -a(S'deviceToLogicalX/2' -p27396 -S'deviceToLogicalX(${1:This}, ${2:X}) $3' -p27397 -tp27398 -a(S'deviceToLogicalXRel/2' -p27399 -S'deviceToLogicalXRel(${1:This}, ${2:X}) $3' -p27400 -tp27401 -a(S'deviceToLogicalY/2' -p27402 -S'deviceToLogicalY(${1:This}, ${2:Y}) $3' -p27403 -tp27404 -a(S'deviceToLogicalYRel/2' -p27405 -S'deviceToLogicalYRel(${1:This}, ${2:Y}) $3' -p27406 -tp27407 -a(S'drawArc/4' -p27408 -S'drawArc(${1:This}, ${2:Pt1}, ${3:Pt2}, ${4:Centre}) $5' -p27409 -tp27410 -a(S'drawBitmap/3' -p27411 -S'drawBitmap(${1:This}, ${2:Bmp}, ${3:Pt}) $4' -p27412 -tp27413 -a(S'drawBitmap/4' -p27414 -S'drawBitmap(${1:This}, ${2:Bmp}, ${3:Pt}, ${4:Options}) $5' -p27415 -tp27416 -a(S'drawCheckMark/2' -p27417 -S'drawCheckMark(${1:This}, ${2:Rect}) $3' -p27418 -tp27419 -a(S'drawCircle/3' -p27420 -S'drawCircle(${1:This}, ${2:Pt}, ${3:Radius}) $4' -p27421 -tp27422 -a(S'drawEllipse/2' -p27423 -S'drawEllipse(${1:This}, ${2:Rect}) $3' -p27424 -tp27425 -a(S'drawEllipse/3' -p27426 -S'drawEllipse(${1:This}, ${2:Pt}, ${3:Sz}) $4' -p27427 -tp27428 -a(S'drawEllipticArc/5' -p27429 -S'drawEllipticArc(${1:This}, ${2:Pt}, ${3:Sz}, ${4:Sa}, ${5:Ea}) $6' -p27430 -tp27431 -a(S'drawIcon/3' -p27432 -S'drawIcon(${1:This}, ${2:Icon}, ${3:Pt}) $4' -p27433 -tp27434 -a(S'drawLabel/3' -p27435 -S'drawLabel(${1:This}, ${2:Text}, ${3:Rect}) $4' -p27436 -tp27437 -a(S'drawLabel/4' -p27438 -S'drawLabel(${1:This}, ${2:Text}, ${3:Rect}, ${4:Options}) $5' -p27439 -tp27440 -a(S'drawLine/3' -p27441 -S'drawLine(${1:This}, ${2:Pt1}, ${3:Pt2}) $4' -p27442 -tp27443 -a(S'drawLines/2' -p27444 -S'drawLines(${1:This}, ${2:Points}) $3' -p27445 -tp27446 -a(S'drawLines/3' -p27447 -S'drawLines(${1:This}, ${2:Points}, ${3:Options}) $4' -p27448 -tp27449 -a(S'drawPoint/2' -p27450 -S'drawPoint(${1:This}, ${2:Pt}) $3' -p27451 -tp27452 -a(S'drawPolygon/2' -p27453 -S'drawPolygon(${1:This}, ${2:Points}) $3' -p27454 -tp27455 -a(S'drawPolygon/3' -p27456 -S'drawPolygon(${1:This}, ${2:Points}, ${3:Options}) $4' -p27457 -tp27458 -a(S'drawRectangle/2' -p27459 -S'drawRectangle(${1:This}, ${2:Rect}) $3' -p27460 -tp27461 -a(S'drawRectangle/3' -p27462 -S'drawRectangle(${1:This}, ${2:Pt}, ${3:Sz}) $4' -p27463 -tp27464 -a(S'drawRotatedText/4' -p27465 -S'drawRotatedText(${1:This}, ${2:Text}, ${3:Pt}, ${4:Angle}) $5' -p27466 -tp27467 -a(S'drawRoundedRectangle/3' -p27468 -S'drawRoundedRectangle(${1:This}, ${2:R}, ${3:Radius}) $4' -p27469 -tp27470 -a(S'drawRoundedRectangle/4' -p27471 -S'drawRoundedRectangle(${1:This}, ${2:Pt}, ${3:Sz}, ${4:Radius}) $5' -p27472 -tp27473 -a(S'drawText/3' -p27474 -S'drawText(${1:This}, ${2:Text}, ${3:Pt}) $4' -p27475 -tp27476 -a(S'endDoc/1' -p27477 -S'endDoc(${1:This}) $2' -p27478 -tp27479 -a(S'endPage/1' -p27480 -S'endPage(${1:This}) $2' -p27481 -tp27482 -a(S'floodFill/3' -p27483 -S'floodFill(${1:This}, ${2:Pt}, ${3:Col}) $4' -p27484 -tp27485 -a(S'floodFill/4' -p27486 -S'floodFill(${1:This}, ${2:Pt}, ${3:Col}, ${4:Options}) $5' -p27487 -tp27488 -a(S'getBackground/1' -p27489 -S'getBackground(${1:This}) $2' -p27490 -tp27491 -a(S'getBackgroundMode/1' -p27492 -S'getBackgroundMode(${1:This}) $2' -p27493 -tp27494 -a(S'getBrush/1' -p27495 -S'getBrush(${1:This}) $2' -p27496 -tp27497 -a(S'getCharHeight/1' -p27498 -S'getCharHeight(${1:This}) $2' -p27499 -tp27500 -a(S'getCharWidth/1' -p27501 -S'getCharWidth(${1:This}) $2' -p27502 -tp27503 -a(S'getClippingBox/1' -p27504 -S'getClippingBox(${1:This}) $2' -p27505 -tp27506 -a(S'getFont/1' -p27507 -S'getFont(${1:This}) $2' -p27508 -tp27509 -a(S'getLayoutDirection/1' -p27510 -S'getLayoutDirection(${1:This}) $2' -p27511 -tp27512 -a(S'getLogicalFunction/1' -p27513 -S'getLogicalFunction(${1:This}) $2' -p27514 -tp27515 -a(S'getMapMode/1' -p27516 -S'getMapMode(${1:This}) $2' -p27517 -tp27518 -a(S'getMultiLineTextExtent/2' -p27519 -S'getMultiLineTextExtent(${1:This}, ${2:String}) $3' -p27520 -tp27521 -a(S'getMultiLineTextExtent/3' -p27522 -S'getMultiLineTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p27523 -tp27524 -a(S'getPPI/1' -p27525 -S'getPPI(${1:This}) $2' -p27526 -tp27527 -a(S'getPartialTextExtents/2' -p27528 -S'getPartialTextExtents(${1:This}, ${2:Text}) $3' -p27529 -tp27530 -a(S'getPen/1' -p27531 -S'getPen(${1:This}) $2' -p27532 -tp27533 -a(S'getPixel/2' -p27534 -S'getPixel(${1:This}, ${2:Pt}) $3' -p27535 -tp27536 -a(S'getSize/1' -p27537 -S'getSize(${1:This}) $2' -p27538 -tp27539 -a(S'getSizeMM/1' -p27540 -S'getSizeMM(${1:This}) $2' -p27541 -tp27542 -a(S'getTextBackground/1' -p27543 -S'getTextBackground(${1:This}) $2' -p27544 -tp27545 -a(S'getTextExtent/2' -p27546 -S'getTextExtent(${1:This}, ${2:String}) $3' -p27547 -tp27548 -a(S'getTextExtent/3' -p27549 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p27550 -tp27551 -a(S'getTextForeground/1' -p27552 -S'getTextForeground(${1:This}) $2' -p27553 -tp27554 -a(S'getUserScale/1' -p27555 -S'getUserScale(${1:This}) $2' -p27556 -tp27557 -a(S'gradientFillConcentric/4' -p27558 -S'gradientFillConcentric(${1:This}, ${2:Rect}, ${3:InitialColour}, ${4:DestColour}) $5' -p27559 -tp27560 -a(S'gradientFillConcentric/5' -p27561 -S'gradientFillConcentric(${1:This}, ${2:Rect}, ${3:InitialColour}, ${4:DestColour}, ${5:CircleCenter}) $6' -p27562 -tp27563 -a(S'gradientFillLinear/4' -p27564 -S'gradientFillLinear(${1:This}, ${2:Rect}, ${3:InitialColour}, ${4:DestColour}) $5' -p27565 -tp27566 -a(S'gradientFillLinear/5' -p27567 -S'gradientFillLinear(${1:This}, ${2:Rect}, ${3:InitialColour}, ${4:DestColour}, ${5:Options}) $6' -p27568 -tp27569 -a(S'isOk/1' -p27570 -S'isOk(${1:This}) $2' -p27571 -tp27572 -a(S'logicalToDeviceX/2' -p27573 -S'logicalToDeviceX(${1:This}, ${2:X}) $3' -p27574 -tp27575 -a(S'logicalToDeviceXRel/2' -p27576 -S'logicalToDeviceXRel(${1:This}, ${2:X}) $3' -p27577 -tp27578 -a(S'logicalToDeviceY/2' -p27579 -S'logicalToDeviceY(${1:This}, ${2:Y}) $3' -p27580 -tp27581 -a(S'logicalToDeviceYRel/2' -p27582 -S'logicalToDeviceYRel(${1:This}, ${2:Y}) $3' -p27583 -tp27584 -a(S'maxX/1' -p27585 -S'maxX(${1:This}) $2' -p27586 -tp27587 -a(S'maxY/1' -p27588 -S'maxY(${1:This}) $2' -p27589 -tp27590 -a(S'minX/1' -p27591 -S'minX(${1:This}) $2' -p27592 -tp27593 -a(S'minY/1' -p27594 -S'minY(${1:This}) $2' -p27595 -tp27596 -a(S'new/0' -p27597 -S'new() $1' -p27598 -tp27599 -a(S'new/1' -p27600 -S'new(${1:Win}) $2' -p27601 -tp27602 -a(S'parent_class/1' -p27603 -S'parent_class(${1:Param1}) $2' -p27604 -tp27605 -a(S'resetBoundingBox/1' -p27606 -S'resetBoundingBox(${1:This}) $2' -p27607 -tp27608 -a(S'setAxisOrientation/3' -p27609 -S'setAxisOrientation(${1:This}, ${2:XLeftRight}, ${3:YBottomUp}) $4' -p27610 -tp27611 -a(S'setBackground/2' -p27612 -S'setBackground(${1:This}, ${2:Brush}) $3' -p27613 -tp27614 -a(S'setBackgroundMode/2' -p27615 -S'setBackgroundMode(${1:This}, ${2:Mode}) $3' -p27616 -tp27617 -a(S'setBrush/2' -p27618 -S'setBrush(${1:This}, ${2:Brush}) $3' -p27619 -tp27620 -a(S'setClippingRegion/2' -p27621 -S'setClippingRegion(${1:This}, ${2:Region}) $3' -p27622 -tp27623 -a(S'setClippingRegion/3' -p27624 -S'setClippingRegion(${1:This}, ${2:Pt}, ${3:Sz}) $4' -p27625 -tp27626 -a(S'setDeviceOrigin/3' -p27627 -S'setDeviceOrigin(${1:This}, ${2:X}, ${3:Y}) $4' -p27628 -tp27629 -a(S'setFont/2' -p27630 -S'setFont(${1:This}, ${2:Font}) $3' -p27631 -tp27632 -a(S'setLayoutDirection/2' -p27633 -S'setLayoutDirection(${1:This}, ${2:Dir}) $3' -p27634 -tp27635 -a(S'setLogicalFunction/2' -p27636 -S'setLogicalFunction(${1:This}, ${2:Function}) $3' -p27637 -tp27638 -a(S'setMapMode/2' -p27639 -S'setMapMode(${1:This}, ${2:Mode}) $3' -p27640 -tp27641 -a(S'setPalette/2' -p27642 -S'setPalette(${1:This}, ${2:Palette}) $3' -p27643 -tp27644 -a(S'setPen/2' -p27645 -S'setPen(${1:This}, ${2:Pen}) $3' -p27646 -tp27647 -a(S'setTextBackground/2' -p27648 -S'setTextBackground(${1:This}, ${2:Colour}) $3' -p27649 -tp27650 -a(S'setTextForeground/2' -p27651 -S'setTextForeground(${1:This}, ${2:Colour}) $3' -p27652 -tp27653 -a(S'setUserScale/3' -p27654 -S'setUserScale(${1:This}, ${2:X}, ${3:Y}) $4' -p27655 -tp27656 -a(S'startDoc/2' -p27657 -S'startDoc(${1:This}, ${2:Message}) $3' -p27658 -tp27659 -a(S'startPage/1' -p27660 -S'startPage(${1:This}) $2' -p27661 -tp27662 -asS'public_key' -p27663 -(lp27664 -(S'decrypt_private/2' -p27665 -S'decrypt_private(${1:CipherText}, ${2:Key}) $3' -p27666 -tp27667 -a(S'decrypt_private/3' -p27668 -S'decrypt_private() $1' -p27669 -tp27670 -a(S'decrypt_public/2' -p27671 -S'decrypt_public(${1:CipherText}, ${2:Key}) $3' -p27672 -tp27673 -a(S'decrypt_public/3' -p27674 -S'decrypt_public() $1' -p27675 -tp27676 -a(S'der_decode/2' -p27677 -S'der_decode(${1:Asn1Type}, ${2:Der}) $3' -p27678 -tp27679 -a(S'der_encode/2' -p27680 -S'der_encode(${1:Asn1Type}, ${2:Entity}) $3' -p27681 -tp27682 -a(S'encrypt_private/2' -p27683 -S'encrypt_private(${1:PlainText}, ${2:Key}) $3' -p27684 -tp27685 -a(S'encrypt_private/3' -p27686 -S'encrypt_private() $1' -p27687 -tp27688 -a(S'encrypt_public/2' -p27689 -S'encrypt_public(${1:PlainText}, ${2:Key}) $3' -p27690 -tp27691 -a(S'encrypt_public/3' -p27692 -S'encrypt_public() $1' -p27693 -tp27694 -a(S'pem_decode/1' -p27695 -S'pem_decode(${1:PemBin}) $2' -p27696 -tp27697 -a(S'pem_encode/1' -p27698 -S'pem_encode(${1:PemEntries}) $2' -p27699 -tp27700 -a(S'pem_entry_decode/1' -p27701 -S'pem_entry_decode(${1:Param1}) $2' -p27702 -tp27703 -a(S'pem_entry_decode/2' -p27704 -S'pem_entry_decode(${1:PemEntry}, ${2:Password}) $3' -p27705 -tp27706 -a(S'pem_entry_encode/2' -p27707 -S'pem_entry_encode(${1:Asn1Type}, ${2:Entity}) $3' -p27708 -tp27709 -a(S'pem_entry_encode/3' -p27710 -S'pem_entry_encode(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p27711 -tp27712 -a(S'pkix_decode_cert/2' -p27713 -S'pkix_decode_cert(${1:Cert}, ${2:Param2}) $3' -p27714 -tp27715 -a(S'pkix_encode/3' -p27716 -S'pkix_encode(${1:Asn1Type}, ${2:Term}, ${3:Param3}) $4' -p27717 -tp27718 -a(S'pkix_is_fixed_dh_cert/1' -p27719 -S'pkix_is_fixed_dh_cert(${1:Cert}) $2' -p27720 -tp27721 -a(S'pkix_is_issuer/2' -p27722 -S'pkix_is_issuer(${1:Cert}, ${2:IssuerCert}) $3' -p27723 -tp27724 -a(S'pkix_is_self_signed/1' -p27725 -S'pkix_is_self_signed(${1:Cert}) $2' -p27726 -tp27727 -a(S'pkix_issuer_id/2' -p27728 -S'pkix_issuer_id(${1:OtpCert}, ${2:Signed}) $3' -p27729 -tp27730 -a(S'pkix_normalize_name/1' -p27731 -S'pkix_normalize_name(${1:Issuer}) $2' -p27732 -tp27733 -a(S'pkix_path_validation/3' -p27734 -S'pkix_path_validation(${1:PathErr}, ${2:Param2}, ${3:Options0}) $4' -p27735 -tp27736 -a(S'pkix_sign/2' -p27737 -S'pkix_sign() $1' -p27738 -tp27739 -a(S'pkix_verify/2' -p27740 -S'pkix_verify() $1' -p27741 -tp27742 -a(S'sign/3' -p27743 -S'sign() $1' -p27744 -tp27745 -a(S'ssh_decode/2' -p27746 -S'ssh_decode(${1:Param1}, ${2:Param2}) $3' -p27747 -tp27748 -a(S'ssh_encode/2' -p27749 -S'ssh_encode(${1:Param1}, ${2:Param2}) $3' -p27750 -tp27751 -a(S'verify/4' -p27752 -S'verify() $1' -p27753 -tp27754 -asS'proc_lib' -p27755 -(lp27756 -(S'format/1' -p27757 -S'format(${1:CrashReport}) $2' -p27758 -tp27759 -a(S'hibernate/3' -p27760 -S'hibernate(${1:Module}, ${2:Function}, ${3:Args}) $4' -p27761 -tp27762 -a(S'init_ack/1' -p27763 -S'init_ack(${1:Ret}) $2' -p27764 -tp27765 -a(S'init_ack/2' -p27766 -S'init_ack(${1:Parent}, ${2:Ret}) $3' -p27767 -tp27768 -a(S'init_p/3' -p27769 -S'init_p(${1:Parent}, ${2:Ancestors}, ${3:Fun}) $4' -p27770 -tp27771 -a(S'init_p/5' -p27772 -S'init_p(${1:Parent}, ${2:Ancestors}, ${3:M}, ${4:F}, ${5:A}) $6' -p27773 -tp27774 -a(S'initial_call/1' -p27775 -S'initial_call(${1:Process}) $2' -p27776 -tp27777 -a(S'spawn/1' -p27778 -S'spawn(${1:Fun}) $2' -p27779 -tp27780 -a(S'spawn/2' -p27781 -S'spawn(${1:Node}, ${2:Fun}) $3' -p27782 -tp27783 -a(S'spawn/3' -p27784 -S'spawn(${1:Module}, ${2:Function}, ${3:Args}) $4' -p27785 -tp27786 -a(S'spawn/4' -p27787 -S'spawn(${1:Node}, ${2:Module}, ${3:Function}, ${4:Args}) $5' -p27788 -tp27789 -a(S'spawn_link/1' -p27790 -S'spawn_link(${1:Fun}) $2' -p27791 -tp27792 -a(S'spawn_link/2' -p27793 -S'spawn_link(${1:Node}, ${2:Fun}) $3' -p27794 -tp27795 -a(S'spawn_link/3' -p27796 -S'spawn_link(${1:Module}, ${2:Function}, ${3:Args}) $4' -p27797 -tp27798 -a(S'spawn_link/4' -p27799 -S'spawn_link(${1:Node}, ${2:Module}, ${3:Function}, ${4:Args}) $5' -p27800 -tp27801 -a(S'spawn_opt/2' -p27802 -S'spawn_opt(${1:Fun}, ${2:SpawnOpts}) $3' -p27803 -tp27804 -a(S'spawn_opt/3' -p27805 -S'spawn_opt(${1:Node}, ${2:Function}, ${3:SpawnOpts}) $4' -p27806 -tp27807 -a(S'spawn_opt/4' -p27808 -S'spawn_opt(${1:Module}, ${2:Function}, ${3:Args}, ${4:SpawnOpts}) $5' -p27809 -tp27810 -a(S'spawn_opt/5' -p27811 -S'spawn_opt(${1:Node}, ${2:Module}, ${3:Function}, ${4:Args}, ${5:SpawnOpts}) $6' -p27812 -tp27813 -a(S'start/3' -p27814 -S'start(${1:Module}, ${2:Function}, ${3:Args}) $4' -p27815 -tp27816 -a(S'start/4' -p27817 -S'start(${1:Module}, ${2:Function}, ${3:Args}, ${4:Time}) $5' -p27818 -tp27819 -a(S'start/5' -p27820 -S'start(${1:Module}, ${2:Function}, ${3:Args}, ${4:Time}, ${5:SpawnOpts}) $6' -p27821 -tp27822 -a(S'start_link/3' -p27823 -S'start_link(${1:Module}, ${2:Function}, ${3:Args}) $4' -p27824 -tp27825 -a(S'start_link/4' -p27826 -S'start_link(${1:Module}, ${2:Function}, ${3:Args}, ${4:Time}) $5' -p27827 -tp27828 -a(S'start_link/5' -p27829 -S'start_link(${1:Module}, ${2:Function}, ${3:Args}, ${4:Time}, ${5:SpawnOpts}) $6' -p27830 -tp27831 -a(S'translate_initial_call/1' -p27832 -S'translate_initial_call(${1:Process}) $2' -p27833 -tp27834 -a(S'wake_up/3' -p27835 -S'wake_up(${1:M}, ${2:F}, ${3:A}) $4' -p27836 -tp27837 -asS'megaco_ber_bin_drv_media_gateway_control_v1' -p27838 -(lp27839 -(S"'dec_ActionReply'/2" -p27840 -S"'dec_ActionReply'(${1:Tlv}, ${2:TagIn}) $3" -p27841 -tp27842 -a(S"'dec_ActionRequest'/2" -p27843 -S"'dec_ActionRequest'(${1:Tlv}, ${2:TagIn}) $3" -p27844 -tp27845 -a(S"'dec_AmmDescriptor'/2" -p27846 -S"'dec_AmmDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p27847 -tp27848 -a(S"'dec_AmmRequest'/2" -p27849 -S"'dec_AmmRequest'(${1:Tlv}, ${2:TagIn}) $3" -p27850 -tp27851 -a(S"'dec_AmmsReply'/2" -p27852 -S"'dec_AmmsReply'(${1:Tlv}, ${2:TagIn}) $3" -p27853 -tp27854 -a(S"'dec_AuditDescriptor'/2" -p27855 -S"'dec_AuditDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p27856 -tp27857 -a(S"'dec_AuditReply'/2" -p27858 -S"'dec_AuditReply'(${1:Tlv}, ${2:TagIn}) $3" -p27859 -tp27860 -a(S"'dec_AuditRequest'/2" -p27861 -S"'dec_AuditRequest'(${1:Tlv}, ${2:TagIn}) $3" -p27862 -tp27863 -a(S"'dec_AuditResult'/2" -p27864 -S"'dec_AuditResult'(${1:Tlv}, ${2:TagIn}) $3" -p27865 -tp27866 -a(S"'dec_AuditReturnParameter'/2" -p27867 -S"'dec_AuditReturnParameter'(${1:Tlv}, ${2:TagIn}) $3" -p27868 -tp27869 -a(S"'dec_AuthData'/2" -p27870 -S"'dec_AuthData'(${1:Tlv}, ${2:TagIn}) $3" -p27871 -tp27872 -a(S"'dec_AuthenticationHeader'/2" -p27873 -S"'dec_AuthenticationHeader'(${1:Tlv}, ${2:TagIn}) $3" -p27874 -tp27875 -a(S"'dec_Command'/2" -p27876 -S"'dec_Command'(${1:Tlv}, ${2:TagIn}) $3" -p27877 -tp27878 -a(S"'dec_CommandReply'/2" -p27879 -S"'dec_CommandReply'(${1:Tlv}, ${2:TagIn}) $3" -p27880 -tp27881 -a(S"'dec_CommandRequest'/2" -p27882 -S"'dec_CommandRequest'(${1:Tlv}, ${2:TagIn}) $3" -p27883 -tp27884 -a(S"'dec_ContextAttrAuditRequest'/2" -p27885 -S"'dec_ContextAttrAuditRequest'(${1:Tlv}, ${2:TagIn}) $3" -p27886 -tp27887 -a(S"'dec_ContextID'/2" -p27888 -S"'dec_ContextID'(${1:Tlv}, ${2:TagIn}) $3" -p27889 -tp27890 -a(S"'dec_ContextRequest'/2" -p27891 -S"'dec_ContextRequest'(${1:Tlv}, ${2:TagIn}) $3" -p27892 -tp27893 -a(S"'dec_DigitMapDescriptor'/2" -p27894 -S"'dec_DigitMapDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p27895 -tp27896 -a(S"'dec_DigitMapName'/2" -p27897 -S"'dec_DigitMapName'(${1:Tlv}, ${2:TagIn}) $3" -p27898 -tp27899 -a(S"'dec_DigitMapValue'/2" -p27900 -S"'dec_DigitMapValue'(${1:Tlv}, ${2:TagIn}) $3" -p27901 -tp27902 -a(S"'dec_DomainName'/2" -p27903 -S"'dec_DomainName'(${1:Tlv}, ${2:TagIn}) $3" -p27904 -tp27905 -a(S"'dec_ErrorCode'/2" -p27906 -S"'dec_ErrorCode'(${1:Tlv}, ${2:TagIn}) $3" -p27907 -tp27908 -a(S"'dec_ErrorDescriptor'/2" -p27909 -S"'dec_ErrorDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p27910 -tp27911 -a(S"'dec_ErrorText'/2" -p27912 -S"'dec_ErrorText'(${1:Tlv}, ${2:TagIn}) $3" -p27913 -tp27914 -a(S"'dec_EventBufferControl'/2" -p27915 -S"'dec_EventBufferControl'(${1:Tlv}, ${2:TagIn}) $3" -p27916 -tp27917 -a(S"'dec_EventBufferDescriptor'/2" -p27918 -S"'dec_EventBufferDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p27919 -tp27920 -a(S"'dec_EventDM'/2" -p27921 -S"'dec_EventDM'(${1:Tlv}, ${2:TagIn}) $3" -p27922 -tp27923 -a(S"'dec_EventName'/2" -p27924 -S"'dec_EventName'(${1:Tlv}, ${2:TagIn}) $3" -p27925 -tp27926 -a(S"'dec_EventParameter'/2" -p27927 -S"'dec_EventParameter'(${1:Tlv}, ${2:TagIn}) $3" -p27928 -tp27929 -a(S"'dec_EventSpec'/2" -p27930 -S"'dec_EventSpec'(${1:Tlv}, ${2:TagIn}) $3" -p27931 -tp27932 -a(S"'dec_EventsDescriptor'/2" -p27933 -S"'dec_EventsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p27934 -tp27935 -a(S"'dec_H221NonStandard'/2" -p27936 -S"'dec_H221NonStandard'(${1:Tlv}, ${2:TagIn}) $3" -p27937 -tp27938 -a(S"'dec_IP4Address'/2" -p27939 -S"'dec_IP4Address'(${1:Tlv}, ${2:TagIn}) $3" -p27940 -tp27941 -a(S"'dec_IP6Address'/2" -p27942 -S"'dec_IP6Address'(${1:Tlv}, ${2:TagIn}) $3" -p27943 -tp27944 -a(S"'dec_LocalControlDescriptor'/2" -p27945 -S"'dec_LocalControlDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p27946 -tp27947 -a(S"'dec_LocalRemoteDescriptor'/2" -p27948 -S"'dec_LocalRemoteDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p27949 -tp27950 -a(S"'dec_MId'/2" -p27951 -S"'dec_MId'(${1:Tlv}, ${2:TagIn}) $3" -p27952 -tp27953 -a(S"'dec_MediaDescriptor'/2" -p27954 -S"'dec_MediaDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p27955 -tp27956 -a(S"'dec_MegacoMessage'/2" -p27957 -S"'dec_MegacoMessage'(${1:Tlv}, ${2:TagIn}) $3" -p27958 -tp27959 -a(S"'dec_Message'/2" -p27960 -S"'dec_Message'(${1:Tlv}, ${2:TagIn}) $3" -p27961 -tp27962 -a(S"'dec_ModemDescriptor'/2" -p27963 -S"'dec_ModemDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p27964 -tp27965 -a(S"'dec_ModemType'/2" -p27966 -S"'dec_ModemType'(${1:Tlv}, ${2:TagIn}) $3" -p27967 -tp27968 -a(S"'dec_MuxDescriptor'/2" -p27969 -S"'dec_MuxDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p27970 -tp27971 -a(S"'dec_MuxType'/2" -p27972 -S"'dec_MuxType'(${1:Tlv}, ${2:TagIn}) $3" -p27973 -tp27974 -a(S"'dec_Name'/2" -p27975 -S"'dec_Name'(${1:Tlv}, ${2:TagIn}) $3" -p27976 -tp27977 -a(S"'dec_NonStandardData'/2" -p27978 -S"'dec_NonStandardData'(${1:Tlv}, ${2:TagIn}) $3" -p27979 -tp27980 -a(S"'dec_NonStandardIdentifier'/2" -p27981 -S"'dec_NonStandardIdentifier'(${1:Tlv}, ${2:TagIn}) $3" -p27982 -tp27983 -a(S"'dec_NotifyCompletion'/2" -p27984 -S"'dec_NotifyCompletion'(${1:Tlv}, ${2:TagIn}) $3" -p27985 -tp27986 -a(S"'dec_NotifyReply'/2" -p27987 -S"'dec_NotifyReply'(${1:Tlv}, ${2:TagIn}) $3" -p27988 -tp27989 -a(S"'dec_NotifyRequest'/2" -p27990 -S"'dec_NotifyRequest'(${1:Tlv}, ${2:TagIn}) $3" -p27991 -tp27992 -a(S"'dec_ObservedEvent'/2" -p27993 -S"'dec_ObservedEvent'(${1:Tlv}, ${2:TagIn}) $3" -p27994 -tp27995 -a(S"'dec_ObservedEventsDescriptor'/2" -p27996 -S"'dec_ObservedEventsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p27997 -tp27998 -a(S"'dec_PackagesDescriptor'/2" -p27999 -S"'dec_PackagesDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p28000 -tp28001 -a(S"'dec_PackagesItem'/2" -p28002 -S"'dec_PackagesItem'(${1:Tlv}, ${2:TagIn}) $3" -p28003 -tp28004 -a(S"'dec_PathName'/2" -p28005 -S"'dec_PathName'(${1:Tlv}, ${2:TagIn}) $3" -p28006 -tp28007 -a(S"'dec_PkgdName'/2" -p28008 -S"'dec_PkgdName'(${1:Tlv}, ${2:TagIn}) $3" -p28009 -tp28010 -a(S"'dec_PropertyGroup'/2" -p28011 -S"'dec_PropertyGroup'(${1:Tlv}, ${2:TagIn}) $3" -p28012 -tp28013 -a(S"'dec_PropertyParm'/2" -p28014 -S"'dec_PropertyParm'(${1:Tlv}, ${2:TagIn}) $3" -p28015 -tp28016 -a(S"'dec_Relation'/2" -p28017 -S"'dec_Relation'(${1:Tlv}, ${2:TagIn}) $3" -p28018 -tp28019 -a(S"'dec_RequestID'/2" -p28020 -S"'dec_RequestID'(${1:Tlv}, ${2:TagIn}) $3" -p28021 -tp28022 -a(S"'dec_RequestedActions'/2" -p28023 -S"'dec_RequestedActions'(${1:Tlv}, ${2:TagIn}) $3" -p28024 -tp28025 -a(S"'dec_RequestedEvent'/2" -p28026 -S"'dec_RequestedEvent'(${1:Tlv}, ${2:TagIn}) $3" -p28027 -tp28028 -a(S"'dec_SecondEventsDescriptor'/2" -p28029 -S"'dec_SecondEventsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p28030 -tp28031 -a(S"'dec_SecondRequestedActions'/2" -p28032 -S"'dec_SecondRequestedActions'(${1:Tlv}, ${2:TagIn}) $3" -p28033 -tp28034 -a(S"'dec_SecondRequestedEvent'/2" -p28035 -S"'dec_SecondRequestedEvent'(${1:Tlv}, ${2:TagIn}) $3" -p28036 -tp28037 -a(S"'dec_SecurityParmIndex'/2" -p28038 -S"'dec_SecurityParmIndex'(${1:Tlv}, ${2:TagIn}) $3" -p28039 -tp28040 -a(S"'dec_SeqSigList'/2" -p28041 -S"'dec_SeqSigList'(${1:Tlv}, ${2:TagIn}) $3" -p28042 -tp28043 -a(S"'dec_SequenceNum'/2" -p28044 -S"'dec_SequenceNum'(${1:Tlv}, ${2:TagIn}) $3" -p28045 -tp28046 -a(S"'dec_ServiceChangeAddress'/2" -p28047 -S"'dec_ServiceChangeAddress'(${1:Tlv}, ${2:TagIn}) $3" -p28048 -tp28049 -a(S"'dec_ServiceChangeMethod'/2" -p28050 -S"'dec_ServiceChangeMethod'(${1:Tlv}, ${2:TagIn}) $3" -p28051 -tp28052 -a(S"'dec_ServiceChangeParm'/2" -p28053 -S"'dec_ServiceChangeParm'(${1:Tlv}, ${2:TagIn}) $3" -p28054 -tp28055 -a(S"'dec_ServiceChangeProfile'/2" -p28056 -S"'dec_ServiceChangeProfile'(${1:Tlv}, ${2:TagIn}) $3" -p28057 -tp28058 -a(S"'dec_ServiceChangeReply'/2" -p28059 -S"'dec_ServiceChangeReply'(${1:Tlv}, ${2:TagIn}) $3" -p28060 -tp28061 -a(S"'dec_ServiceChangeRequest'/2" -p28062 -S"'dec_ServiceChangeRequest'(${1:Tlv}, ${2:TagIn}) $3" -p28063 -tp28064 -a(S"'dec_ServiceChangeResParm'/2" -p28065 -S"'dec_ServiceChangeResParm'(${1:Tlv}, ${2:TagIn}) $3" -p28066 -tp28067 -a(S"'dec_ServiceChangeResult'/2" -p28068 -S"'dec_ServiceChangeResult'(${1:Tlv}, ${2:TagIn}) $3" -p28069 -tp28070 -a(S"'dec_ServiceState'/2" -p28071 -S"'dec_ServiceState'(${1:Tlv}, ${2:TagIn}) $3" -p28072 -tp28073 -a(S"'dec_SigParameter'/2" -p28074 -S"'dec_SigParameter'(${1:Tlv}, ${2:TagIn}) $3" -p28075 -tp28076 -a(S"'dec_Signal'/2" -p28077 -S"'dec_Signal'(${1:Tlv}, ${2:TagIn}) $3" -p28078 -tp28079 -a(S"'dec_SignalName'/2" -p28080 -S"'dec_SignalName'(${1:Tlv}, ${2:TagIn}) $3" -p28081 -tp28082 -a(S"'dec_SignalRequest'/2" -p28083 -S"'dec_SignalRequest'(${1:Tlv}, ${2:TagIn}) $3" -p28084 -tp28085 -a(S"'dec_SignalType'/2" -p28086 -S"'dec_SignalType'(${1:Tlv}, ${2:TagIn}) $3" -p28087 -tp28088 -a(S"'dec_SignalsDescriptor'/2" -p28089 -S"'dec_SignalsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p28090 -tp28091 -a(S"'dec_StatisticsDescriptor'/2" -p28092 -S"'dec_StatisticsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p28093 -tp28094 -a(S"'dec_StatisticsParameter'/2" -p28095 -S"'dec_StatisticsParameter'(${1:Tlv}, ${2:TagIn}) $3" -p28096 -tp28097 -a(S"'dec_StreamDescriptor'/2" -p28098 -S"'dec_StreamDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p28099 -tp28100 -a(S"'dec_StreamID'/2" -p28101 -S"'dec_StreamID'(${1:Tlv}, ${2:TagIn}) $3" -p28102 -tp28103 -a(S"'dec_StreamMode'/2" -p28104 -S"'dec_StreamMode'(${1:Tlv}, ${2:TagIn}) $3" -p28105 -tp28106 -a(S"'dec_StreamParms'/2" -p28107 -S"'dec_StreamParms'(${1:Tlv}, ${2:TagIn}) $3" -p28108 -tp28109 -a(S"'dec_SubtractRequest'/2" -p28110 -S"'dec_SubtractRequest'(${1:Tlv}, ${2:TagIn}) $3" -p28111 -tp28112 -a(S"'dec_TerminationAudit'/2" -p28113 -S"'dec_TerminationAudit'(${1:Tlv}, ${2:TagIn}) $3" -p28114 -tp28115 -a(S"'dec_TerminationID'/2" -p28116 -S"'dec_TerminationID'(${1:Tlv}, ${2:TagIn}) $3" -p28117 -tp28118 -a(S"'dec_TerminationIDList'/2" -p28119 -S"'dec_TerminationIDList'(${1:Tlv}, ${2:TagIn}) $3" -p28120 -tp28121 -a(S"'dec_TerminationStateDescriptor'/2" -p28122 -S"'dec_TerminationStateDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p28123 -tp28124 -a(S"'dec_TimeNotation'/2" -p28125 -S"'dec_TimeNotation'(${1:Tlv}, ${2:TagIn}) $3" -p28126 -tp28127 -a(S"'dec_TopologyRequest'/2" -p28128 -S"'dec_TopologyRequest'(${1:Tlv}, ${2:TagIn}) $3" -p28129 -tp28130 -a(S"'dec_Transaction'/2" -p28131 -S"'dec_Transaction'(${1:Tlv}, ${2:TagIn}) $3" -p28132 -tp28133 -a(S"'dec_TransactionAck'/2" -p28134 -S"'dec_TransactionAck'(${1:Tlv}, ${2:TagIn}) $3" -p28135 -tp28136 -a(S"'dec_TransactionId'/2" -p28137 -S"'dec_TransactionId'(${1:Tlv}, ${2:TagIn}) $3" -p28138 -tp28139 -a(S"'dec_TransactionPending'/2" -p28140 -S"'dec_TransactionPending'(${1:Tlv}, ${2:TagIn}) $3" -p28141 -tp28142 -a(S"'dec_TransactionReply'/2" -p28143 -S"'dec_TransactionReply'(${1:Tlv}, ${2:TagIn}) $3" -p28144 -tp28145 -a(S"'dec_TransactionRequest'/2" -p28146 -S"'dec_TransactionRequest'(${1:Tlv}, ${2:TagIn}) $3" -p28147 -tp28148 -a(S"'dec_TransactionResponseAck'/2" -p28149 -S"'dec_TransactionResponseAck'(${1:Tlv}, ${2:TagIn}) $3" -p28150 -tp28151 -a(S"'dec_Value'/2" -p28152 -S"'dec_Value'(${1:Tlv}, ${2:TagIn}) $3" -p28153 -tp28154 -a(S"'dec_WildcardField'/2" -p28155 -S"'dec_WildcardField'(${1:Tlv}, ${2:TagIn}) $3" -p28156 -tp28157 -a(S"'enc_ActionReply'/2" -p28158 -S"'enc_ActionReply'(${1:Val}, ${2:TagIn}) $3" -p28159 -tp28160 -a(S"'enc_ActionRequest'/2" -p28161 -S"'enc_ActionRequest'(${1:Val}, ${2:TagIn}) $3" -p28162 -tp28163 -a(S"'enc_AmmDescriptor'/2" -p28164 -S"'enc_AmmDescriptor'(${1:Val}, ${2:TagIn}) $3" -p28165 -tp28166 -a(S"'enc_AmmRequest'/2" -p28167 -S"'enc_AmmRequest'(${1:Val}, ${2:TagIn}) $3" -p28168 -tp28169 -a(S"'enc_AmmsReply'/2" -p28170 -S"'enc_AmmsReply'(${1:Val}, ${2:TagIn}) $3" -p28171 -tp28172 -a(S"'enc_AuditDescriptor'/2" -p28173 -S"'enc_AuditDescriptor'(${1:Val}, ${2:TagIn}) $3" -p28174 -tp28175 -a(S"'enc_AuditReply'/2" -p28176 -S"'enc_AuditReply'(${1:Val}, ${2:TagIn}) $3" -p28177 -tp28178 -a(S"'enc_AuditRequest'/2" -p28179 -S"'enc_AuditRequest'(${1:Val}, ${2:TagIn}) $3" -p28180 -tp28181 -a(S"'enc_AuditResult'/2" -p28182 -S"'enc_AuditResult'(${1:Val}, ${2:TagIn}) $3" -p28183 -tp28184 -a(S"'enc_AuditReturnParameter'/2" -p28185 -S"'enc_AuditReturnParameter'(${1:Val}, ${2:TagIn}) $3" -p28186 -tp28187 -a(S"'enc_AuthData'/2" -p28188 -S"'enc_AuthData'(${1:Val}, ${2:TagIn}) $3" -p28189 -tp28190 -a(S"'enc_AuthenticationHeader'/2" -p28191 -S"'enc_AuthenticationHeader'(${1:Val}, ${2:TagIn}) $3" -p28192 -tp28193 -a(S"'enc_Command'/2" -p28194 -S"'enc_Command'(${1:Val}, ${2:TagIn}) $3" -p28195 -tp28196 -a(S"'enc_CommandReply'/2" -p28197 -S"'enc_CommandReply'(${1:Val}, ${2:TagIn}) $3" -p28198 -tp28199 -a(S"'enc_CommandRequest'/2" -p28200 -S"'enc_CommandRequest'(${1:Val}, ${2:TagIn}) $3" -p28201 -tp28202 -a(S"'enc_ContextAttrAuditRequest'/2" -p28203 -S"'enc_ContextAttrAuditRequest'(${1:Val}, ${2:TagIn}) $3" -p28204 -tp28205 -a(S"'enc_ContextID'/2" -p28206 -S"'enc_ContextID'(${1:Val}, ${2:TagIn}) $3" -p28207 -tp28208 -a(S"'enc_ContextRequest'/2" -p28209 -S"'enc_ContextRequest'(${1:Val}, ${2:TagIn}) $3" -p28210 -tp28211 -a(S"'enc_DigitMapDescriptor'/2" -p28212 -S"'enc_DigitMapDescriptor'(${1:Val}, ${2:TagIn}) $3" -p28213 -tp28214 -a(S"'enc_DigitMapName'/2" -p28215 -S"'enc_DigitMapName'(${1:Val}, ${2:TagIn}) $3" -p28216 -tp28217 -a(S"'enc_DigitMapValue'/2" -p28218 -S"'enc_DigitMapValue'(${1:Val}, ${2:TagIn}) $3" -p28219 -tp28220 -a(S"'enc_DomainName'/2" -p28221 -S"'enc_DomainName'(${1:Val}, ${2:TagIn}) $3" -p28222 -tp28223 -a(S"'enc_ErrorCode'/2" -p28224 -S"'enc_ErrorCode'(${1:Val}, ${2:TagIn}) $3" -p28225 -tp28226 -a(S"'enc_ErrorDescriptor'/2" -p28227 -S"'enc_ErrorDescriptor'(${1:Val}, ${2:TagIn}) $3" -p28228 -tp28229 -a(S"'enc_ErrorText'/2" -p28230 -S"'enc_ErrorText'(${1:Val}, ${2:TagIn}) $3" -p28231 -tp28232 -a(S"'enc_EventBufferControl'/2" -p28233 -S"'enc_EventBufferControl'(${1:Val}, ${2:TagIn}) $3" -p28234 -tp28235 -a(S"'enc_EventBufferDescriptor'/2" -p28236 -S"'enc_EventBufferDescriptor'(${1:Val}, ${2:TagIn}) $3" -p28237 -tp28238 -a(S"'enc_EventDM'/2" -p28239 -S"'enc_EventDM'(${1:Val}, ${2:TagIn}) $3" -p28240 -tp28241 -a(S"'enc_EventName'/2" -p28242 -S"'enc_EventName'(${1:Val}, ${2:TagIn}) $3" -p28243 -tp28244 -a(S"'enc_EventParameter'/2" -p28245 -S"'enc_EventParameter'(${1:Val}, ${2:TagIn}) $3" -p28246 -tp28247 -a(S"'enc_EventSpec'/2" -p28248 -S"'enc_EventSpec'(${1:Val}, ${2:TagIn}) $3" -p28249 -tp28250 -a(S"'enc_EventsDescriptor'/2" -p28251 -S"'enc_EventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p28252 -tp28253 -a(S"'enc_H221NonStandard'/2" -p28254 -S"'enc_H221NonStandard'(${1:Val}, ${2:TagIn}) $3" -p28255 -tp28256 -a(S"'enc_IP4Address'/2" -p28257 -S"'enc_IP4Address'(${1:Val}, ${2:TagIn}) $3" -p28258 -tp28259 -a(S"'enc_IP6Address'/2" -p28260 -S"'enc_IP6Address'(${1:Val}, ${2:TagIn}) $3" -p28261 -tp28262 -a(S"'enc_LocalControlDescriptor'/2" -p28263 -S"'enc_LocalControlDescriptor'(${1:Val}, ${2:TagIn}) $3" -p28264 -tp28265 -a(S"'enc_LocalRemoteDescriptor'/2" -p28266 -S"'enc_LocalRemoteDescriptor'(${1:Val}, ${2:TagIn}) $3" -p28267 -tp28268 -a(S"'enc_MId'/2" -p28269 -S"'enc_MId'(${1:Val}, ${2:TagIn}) $3" -p28270 -tp28271 -a(S"'enc_MediaDescriptor'/2" -p28272 -S"'enc_MediaDescriptor'(${1:Val}, ${2:TagIn}) $3" -p28273 -tp28274 -a(S"'enc_MegacoMessage'/2" -p28275 -S"'enc_MegacoMessage'(${1:Val}, ${2:TagIn}) $3" -p28276 -tp28277 -a(S"'enc_Message'/2" -p28278 -S"'enc_Message'(${1:Val}, ${2:TagIn}) $3" -p28279 -tp28280 -a(S"'enc_ModemDescriptor'/2" -p28281 -S"'enc_ModemDescriptor'(${1:Val}, ${2:TagIn}) $3" -p28282 -tp28283 -a(S"'enc_ModemType'/2" -p28284 -S"'enc_ModemType'(${1:Val}, ${2:TagIn}) $3" -p28285 -tp28286 -a(S"'enc_MuxDescriptor'/2" -p28287 -S"'enc_MuxDescriptor'(${1:Val}, ${2:TagIn}) $3" -p28288 -tp28289 -a(S"'enc_MuxType'/2" -p28290 -S"'enc_MuxType'(${1:Val}, ${2:TagIn}) $3" -p28291 -tp28292 -a(S"'enc_Name'/2" -p28293 -S"'enc_Name'(${1:Val}, ${2:TagIn}) $3" -p28294 -tp28295 -a(S"'enc_NonStandardData'/2" -p28296 -S"'enc_NonStandardData'(${1:Val}, ${2:TagIn}) $3" -p28297 -tp28298 -a(S"'enc_NonStandardIdentifier'/2" -p28299 -S"'enc_NonStandardIdentifier'(${1:Val}, ${2:TagIn}) $3" -p28300 -tp28301 -a(S"'enc_NotifyCompletion'/2" -p28302 -S"'enc_NotifyCompletion'(${1:Val}, ${2:TagIn}) $3" -p28303 -tp28304 -a(S"'enc_NotifyReply'/2" -p28305 -S"'enc_NotifyReply'(${1:Val}, ${2:TagIn}) $3" -p28306 -tp28307 -a(S"'enc_NotifyRequest'/2" -p28308 -S"'enc_NotifyRequest'(${1:Val}, ${2:TagIn}) $3" -p28309 -tp28310 -a(S"'enc_ObservedEvent'/2" -p28311 -S"'enc_ObservedEvent'(${1:Val}, ${2:TagIn}) $3" -p28312 -tp28313 -a(S"'enc_ObservedEventsDescriptor'/2" -p28314 -S"'enc_ObservedEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p28315 -tp28316 -a(S"'enc_PackagesDescriptor'/2" -p28317 -S"'enc_PackagesDescriptor'(${1:Val}, ${2:TagIn}) $3" -p28318 -tp28319 -a(S"'enc_PackagesItem'/2" -p28320 -S"'enc_PackagesItem'(${1:Val}, ${2:TagIn}) $3" -p28321 -tp28322 -a(S"'enc_PathName'/2" -p28323 -S"'enc_PathName'(${1:Val}, ${2:TagIn}) $3" -p28324 -tp28325 -a(S"'enc_PkgdName'/2" -p28326 -S"'enc_PkgdName'(${1:Val}, ${2:TagIn}) $3" -p28327 -tp28328 -a(S"'enc_PropertyGroup'/2" -p28329 -S"'enc_PropertyGroup'(${1:Val}, ${2:TagIn}) $3" -p28330 -tp28331 -a(S"'enc_PropertyParm'/2" -p28332 -S"'enc_PropertyParm'(${1:Val}, ${2:TagIn}) $3" -p28333 -tp28334 -a(S"'enc_Relation'/2" -p28335 -S"'enc_Relation'(${1:Val}, ${2:TagIn}) $3" -p28336 -tp28337 -a(S"'enc_RequestID'/2" -p28338 -S"'enc_RequestID'(${1:Val}, ${2:TagIn}) $3" -p28339 -tp28340 -a(S"'enc_RequestedActions'/2" -p28341 -S"'enc_RequestedActions'(${1:Val}, ${2:TagIn}) $3" -p28342 -tp28343 -a(S"'enc_RequestedEvent'/2" -p28344 -S"'enc_RequestedEvent'(${1:Val}, ${2:TagIn}) $3" -p28345 -tp28346 -a(S"'enc_SecondEventsDescriptor'/2" -p28347 -S"'enc_SecondEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p28348 -tp28349 -a(S"'enc_SecondRequestedActions'/2" -p28350 -S"'enc_SecondRequestedActions'(${1:Val}, ${2:TagIn}) $3" -p28351 -tp28352 -a(S"'enc_SecondRequestedEvent'/2" -p28353 -S"'enc_SecondRequestedEvent'(${1:Val}, ${2:TagIn}) $3" -p28354 -tp28355 -a(S"'enc_SecurityParmIndex'/2" -p28356 -S"'enc_SecurityParmIndex'(${1:Val}, ${2:TagIn}) $3" -p28357 -tp28358 -a(S"'enc_SeqSigList'/2" -p28359 -S"'enc_SeqSigList'(${1:Val}, ${2:TagIn}) $3" -p28360 -tp28361 -a(S"'enc_SequenceNum'/2" -p28362 -S"'enc_SequenceNum'(${1:Val}, ${2:TagIn}) $3" -p28363 -tp28364 -a(S"'enc_ServiceChangeAddress'/2" -p28365 -S"'enc_ServiceChangeAddress'(${1:Val}, ${2:TagIn}) $3" -p28366 -tp28367 -a(S"'enc_ServiceChangeMethod'/2" -p28368 -S"'enc_ServiceChangeMethod'(${1:Val}, ${2:TagIn}) $3" -p28369 -tp28370 -a(S"'enc_ServiceChangeParm'/2" -p28371 -S"'enc_ServiceChangeParm'(${1:Val}, ${2:TagIn}) $3" -p28372 -tp28373 -a(S"'enc_ServiceChangeProfile'/2" -p28374 -S"'enc_ServiceChangeProfile'(${1:Val}, ${2:TagIn}) $3" -p28375 -tp28376 -a(S"'enc_ServiceChangeReply'/2" -p28377 -S"'enc_ServiceChangeReply'(${1:Val}, ${2:TagIn}) $3" -p28378 -tp28379 -a(S"'enc_ServiceChangeRequest'/2" -p28380 -S"'enc_ServiceChangeRequest'(${1:Val}, ${2:TagIn}) $3" -p28381 -tp28382 -a(S"'enc_ServiceChangeResParm'/2" -p28383 -S"'enc_ServiceChangeResParm'(${1:Val}, ${2:TagIn}) $3" -p28384 -tp28385 -a(S"'enc_ServiceChangeResult'/2" -p28386 -S"'enc_ServiceChangeResult'(${1:Val}, ${2:TagIn}) $3" -p28387 -tp28388 -a(S"'enc_ServiceState'/2" -p28389 -S"'enc_ServiceState'(${1:Val}, ${2:TagIn}) $3" -p28390 -tp28391 -a(S"'enc_SigParameter'/2" -p28392 -S"'enc_SigParameter'(${1:Val}, ${2:TagIn}) $3" -p28393 -tp28394 -a(S"'enc_Signal'/2" -p28395 -S"'enc_Signal'(${1:Val}, ${2:TagIn}) $3" -p28396 -tp28397 -a(S"'enc_SignalName'/2" -p28398 -S"'enc_SignalName'(${1:Val}, ${2:TagIn}) $3" -p28399 -tp28400 -a(S"'enc_SignalRequest'/2" -p28401 -S"'enc_SignalRequest'(${1:Val}, ${2:TagIn}) $3" -p28402 -tp28403 -a(S"'enc_SignalType'/2" -p28404 -S"'enc_SignalType'(${1:Val}, ${2:TagIn}) $3" -p28405 -tp28406 -a(S"'enc_SignalsDescriptor'/2" -p28407 -S"'enc_SignalsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p28408 -tp28409 -a(S"'enc_StatisticsDescriptor'/2" -p28410 -S"'enc_StatisticsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p28411 -tp28412 -a(S"'enc_StatisticsParameter'/2" -p28413 -S"'enc_StatisticsParameter'(${1:Val}, ${2:TagIn}) $3" -p28414 -tp28415 -a(S"'enc_StreamDescriptor'/2" -p28416 -S"'enc_StreamDescriptor'(${1:Val}, ${2:TagIn}) $3" -p28417 -tp28418 -a(S"'enc_StreamID'/2" -p28419 -S"'enc_StreamID'(${1:Val}, ${2:TagIn}) $3" -p28420 -tp28421 -a(S"'enc_StreamMode'/2" -p28422 -S"'enc_StreamMode'(${1:Val}, ${2:TagIn}) $3" -p28423 -tp28424 -a(S"'enc_StreamParms'/2" -p28425 -S"'enc_StreamParms'(${1:Val}, ${2:TagIn}) $3" -p28426 -tp28427 -a(S"'enc_SubtractRequest'/2" -p28428 -S"'enc_SubtractRequest'(${1:Val}, ${2:TagIn}) $3" -p28429 -tp28430 -a(S"'enc_TerminationAudit'/2" -p28431 -S"'enc_TerminationAudit'(${1:Val}, ${2:TagIn}) $3" -p28432 -tp28433 -a(S"'enc_TerminationID'/2" -p28434 -S"'enc_TerminationID'(${1:Val}, ${2:TagIn}) $3" -p28435 -tp28436 -a(S"'enc_TerminationIDList'/2" -p28437 -S"'enc_TerminationIDList'(${1:Val}, ${2:TagIn}) $3" -p28438 -tp28439 -a(S"'enc_TerminationStateDescriptor'/2" -p28440 -S"'enc_TerminationStateDescriptor'(${1:Val}, ${2:TagIn}) $3" -p28441 -tp28442 -a(S"'enc_TimeNotation'/2" -p28443 -S"'enc_TimeNotation'(${1:Val}, ${2:TagIn}) $3" -p28444 -tp28445 -a(S"'enc_TopologyRequest'/2" -p28446 -S"'enc_TopologyRequest'(${1:Val}, ${2:TagIn}) $3" -p28447 -tp28448 -a(S"'enc_Transaction'/2" -p28449 -S"'enc_Transaction'(${1:Val}, ${2:TagIn}) $3" -p28450 -tp28451 -a(S"'enc_TransactionAck'/2" -p28452 -S"'enc_TransactionAck'(${1:Val}, ${2:TagIn}) $3" -p28453 -tp28454 -a(S"'enc_TransactionId'/2" -p28455 -S"'enc_TransactionId'(${1:Val}, ${2:TagIn}) $3" -p28456 -tp28457 -a(S"'enc_TransactionPending'/2" -p28458 -S"'enc_TransactionPending'(${1:Val}, ${2:TagIn}) $3" -p28459 -tp28460 -a(S"'enc_TransactionReply'/2" -p28461 -S"'enc_TransactionReply'(${1:Val}, ${2:TagIn}) $3" -p28462 -tp28463 -a(S"'enc_TransactionRequest'/2" -p28464 -S"'enc_TransactionRequest'(${1:Val}, ${2:TagIn}) $3" -p28465 -tp28466 -a(S"'enc_TransactionResponseAck'/2" -p28467 -S"'enc_TransactionResponseAck'(${1:Val}, ${2:TagIn}) $3" -p28468 -tp28469 -a(S"'enc_Value'/2" -p28470 -S"'enc_Value'(${1:Val}, ${2:TagIn}) $3" -p28471 -tp28472 -a(S"'enc_WildcardField'/2" -p28473 -S"'enc_WildcardField'(${1:Val}, ${2:TagIn}) $3" -p28474 -tp28475 -a(S'decode/2' -p28476 -S'decode(${1:Type}, ${2:Data}) $3' -p28477 -tp28478 -a(S'decode_disp/2' -p28479 -S'decode_disp(${1:Type}, ${2:Data}) $3' -p28480 -tp28481 -a(S'decode_message_acts_partial/1' -p28482 -S'decode_message_acts_partial(${1:Bytes}) $2' -p28483 -tp28484 -a(S'decode_message_mId/1' -p28485 -S'decode_message_mId(${1:Bytes}) $2' -p28486 -tp28487 -a(S'decode_message_trans_partial/1' -p28488 -S'decode_message_trans_partial(${1:Bytes}) $2' -p28489 -tp28490 -a(S'decode_message_version/1' -p28491 -S'decode_message_version(${1:Bytes}) $2' -p28492 -tp28493 -a(S'decode_part/2' -p28494 -S'decode_part(${1:Type}, ${2:Data0}) $3' -p28495 -tp28496 -a(S'encode/2' -p28497 -S'encode(${1:Type}, ${2:Data}) $3' -p28498 -tp28499 -a(S'encode_disp/2' -p28500 -S'encode_disp(${1:Type}, ${2:Data}) $3' -p28501 -tp28502 -a(S'encoding_rule/0' -p28503 -S'encoding_rule() $1' -p28504 -tp28505 -a(S'info/0' -p28506 -S'info() $1' -p28507 -tp28508 -asS'wxMessageDialog' -p28509 -(lp28510 -(S'cacheBestSize/2' -p28511 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p28512 -tp28513 -a(S'captureMouse/1' -p28514 -S'captureMouse(${1:This}) $2' -p28515 -tp28516 -a(S'center/1' -p28517 -S'center(${1:This}) $2' -p28518 -tp28519 -a(S'center/2' -p28520 -S'center(${1:This}, ${2:Options}) $3' -p28521 -tp28522 -a(S'centerOnParent/1' -p28523 -S'centerOnParent(${1:This}) $2' -p28524 -tp28525 -a(S'centerOnParent/2' -p28526 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p28527 -tp28528 -a(S'centerOnScreen/1' -p28529 -S'centerOnScreen(${1:This}) $2' -p28530 -tp28531 -a(S'centerOnScreen/2' -p28532 -S'centerOnScreen(${1:This}, ${2:Options}) $3' -p28533 -tp28534 -a(S'centre/1' -p28535 -S'centre(${1:This}) $2' -p28536 -tp28537 -a(S'centre/2' -p28538 -S'centre(${1:This}, ${2:Options}) $3' -p28539 -tp28540 -a(S'centreOnParent/1' -p28541 -S'centreOnParent(${1:This}) $2' -p28542 -tp28543 -a(S'centreOnParent/2' -p28544 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p28545 -tp28546 -a(S'centreOnScreen/1' -p28547 -S'centreOnScreen(${1:This}) $2' -p28548 -tp28549 -a(S'centreOnScreen/2' -p28550 -S'centreOnScreen(${1:This}, ${2:Options}) $3' -p28551 -tp28552 -a(S'clearBackground/1' -p28553 -S'clearBackground(${1:This}) $2' -p28554 -tp28555 -a(S'clientToScreen/2' -p28556 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p28557 -tp28558 -a(S'clientToScreen/3' -p28559 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p28560 -tp28561 -a(S'close/1' -p28562 -S'close(${1:This}) $2' -p28563 -tp28564 -a(S'close/2' -p28565 -S'close(${1:This}, ${2:Options}) $3' -p28566 -tp28567 -a(S'connect/2' -p28568 -S'connect(${1:This}, ${2:EventType}) $3' -p28569 -tp28570 -a(S'connect/3' -p28571 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p28572 -tp28573 -a(S'convertDialogToPixels/2' -p28574 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p28575 -tp28576 -a(S'convertPixelsToDialog/2' -p28577 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p28578 -tp28579 -a(S'createButtonSizer/2' -p28580 -S'createButtonSizer(${1:This}, ${2:Flags}) $3' -p28581 -tp28582 -a(S'createStdDialogButtonSizer/2' -p28583 -S'createStdDialogButtonSizer(${1:This}, ${2:Flags}) $3' -p28584 -tp28585 -a(S'destroy/1' -p28586 -S'destroy(${1:This}) $2' -p28587 -tp28588 -a(S'destroyChildren/1' -p28589 -S'destroyChildren(${1:This}) $2' -p28590 -tp28591 -a(S'disable/1' -p28592 -S'disable(${1:This}) $2' -p28593 -tp28594 -a(S'disconnect/1' -p28595 -S'disconnect(${1:This}) $2' -p28596 -tp28597 -a(S'disconnect/2' -p28598 -S'disconnect(${1:This}, ${2:EventType}) $3' -p28599 -tp28600 -a(S'disconnect/3' -p28601 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p28602 -tp28603 -a(S'enable/1' -p28604 -S'enable(${1:This}) $2' -p28605 -tp28606 -a(S'enable/2' -p28607 -S'enable(${1:This}, ${2:Options}) $3' -p28608 -tp28609 -a(S'endModal/2' -p28610 -S'endModal(${1:This}, ${2:RetCode}) $3' -p28611 -tp28612 -a(S'findWindow/2' -p28613 -S'findWindow(${1:This}, ${2:Winid}) $3' -p28614 -tp28615 -a(S'fit/1' -p28616 -S'fit(${1:This}) $2' -p28617 -tp28618 -a(S'fitInside/1' -p28619 -S'fitInside(${1:This}) $2' -p28620 -tp28621 -a(S'freeze/1' -p28622 -S'freeze(${1:This}) $2' -p28623 -tp28624 -a(S'getAcceleratorTable/1' -p28625 -S'getAcceleratorTable(${1:This}) $2' -p28626 -tp28627 -a(S'getAffirmativeId/1' -p28628 -S'getAffirmativeId(${1:This}) $2' -p28629 -tp28630 -a(S'getBackgroundColour/1' -p28631 -S'getBackgroundColour(${1:This}) $2' -p28632 -tp28633 -a(S'getBackgroundStyle/1' -p28634 -S'getBackgroundStyle(${1:This}) $2' -p28635 -tp28636 -a(S'getBestSize/1' -p28637 -S'getBestSize(${1:This}) $2' -p28638 -tp28639 -a(S'getCaret/1' -p28640 -S'getCaret(${1:This}) $2' -p28641 -tp28642 -a(S'getCharHeight/1' -p28643 -S'getCharHeight(${1:This}) $2' -p28644 -tp28645 -a(S'getCharWidth/1' -p28646 -S'getCharWidth(${1:This}) $2' -p28647 -tp28648 -a(S'getChildren/1' -p28649 -S'getChildren(${1:This}) $2' -p28650 -tp28651 -a(S'getClientSize/1' -p28652 -S'getClientSize(${1:This}) $2' -p28653 -tp28654 -a(S'getContainingSizer/1' -p28655 -S'getContainingSizer(${1:This}) $2' -p28656 -tp28657 -a(S'getCursor/1' -p28658 -S'getCursor(${1:This}) $2' -p28659 -tp28660 -a(S'getDropTarget/1' -p28661 -S'getDropTarget(${1:This}) $2' -p28662 -tp28663 -a(S'getEventHandler/1' -p28664 -S'getEventHandler(${1:This}) $2' -p28665 -tp28666 -a(S'getExtraStyle/1' -p28667 -S'getExtraStyle(${1:This}) $2' -p28668 -tp28669 -a(S'getFont/1' -p28670 -S'getFont(${1:This}) $2' -p28671 -tp28672 -a(S'getForegroundColour/1' -p28673 -S'getForegroundColour(${1:This}) $2' -p28674 -tp28675 -a(S'getGrandParent/1' -p28676 -S'getGrandParent(${1:This}) $2' -p28677 -tp28678 -a(S'getHandle/1' -p28679 -S'getHandle(${1:This}) $2' -p28680 -tp28681 -a(S'getHelpText/1' -p28682 -S'getHelpText(${1:This}) $2' -p28683 -tp28684 -a(S'getIcon/1' -p28685 -S'getIcon(${1:This}) $2' -p28686 -tp28687 -a(S'getIcons/1' -p28688 -S'getIcons(${1:This}) $2' -p28689 -tp28690 -a(S'getId/1' -p28691 -S'getId(${1:This}) $2' -p28692 -tp28693 -a(S'getLabel/1' -p28694 -S'getLabel(${1:This}) $2' -p28695 -tp28696 -a(S'getMaxSize/1' -p28697 -S'getMaxSize(${1:This}) $2' -p28698 -tp28699 -a(S'getMinSize/1' -p28700 -S'getMinSize(${1:This}) $2' -p28701 -tp28702 -a(S'getName/1' -p28703 -S'getName(${1:This}) $2' -p28704 -tp28705 -a(S'getParent/1' -p28706 -S'getParent(${1:This}) $2' -p28707 -tp28708 -a(S'getPosition/1' -p28709 -S'getPosition(${1:This}) $2' -p28710 -tp28711 -a(S'getRect/1' -p28712 -S'getRect(${1:This}) $2' -p28713 -tp28714 -a(S'getReturnCode/1' -p28715 -S'getReturnCode(${1:This}) $2' -p28716 -tp28717 -a(S'getScreenPosition/1' -p28718 -S'getScreenPosition(${1:This}) $2' -p28719 -tp28720 -a(S'getScreenRect/1' -p28721 -S'getScreenRect(${1:This}) $2' -p28722 -tp28723 -a(S'getScrollPos/2' -p28724 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p28725 -tp28726 -a(S'getScrollRange/2' -p28727 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p28728 -tp28729 -a(S'getScrollThumb/2' -p28730 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p28731 -tp28732 -a(S'getSize/1' -p28733 -S'getSize(${1:This}) $2' -p28734 -tp28735 -a(S'getSizer/1' -p28736 -S'getSizer(${1:This}) $2' -p28737 -tp28738 -a(S'getTextExtent/2' -p28739 -S'getTextExtent(${1:This}, ${2:String}) $3' -p28740 -tp28741 -a(S'getTextExtent/3' -p28742 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p28743 -tp28744 -a(S'getTitle/1' -p28745 -S'getTitle(${1:This}) $2' -p28746 -tp28747 -a(S'getToolTip/1' -p28748 -S'getToolTip(${1:This}) $2' -p28749 -tp28750 -a(S'getUpdateRegion/1' -p28751 -S'getUpdateRegion(${1:This}) $2' -p28752 -tp28753 -a(S'getVirtualSize/1' -p28754 -S'getVirtualSize(${1:This}) $2' -p28755 -tp28756 -a(S'getWindowStyleFlag/1' -p28757 -S'getWindowStyleFlag(${1:This}) $2' -p28758 -tp28759 -a(S'getWindowVariant/1' -p28760 -S'getWindowVariant(${1:This}) $2' -p28761 -tp28762 -a(S'hasCapture/1' -p28763 -S'hasCapture(${1:This}) $2' -p28764 -tp28765 -a(S'hasScrollbar/2' -p28766 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p28767 -tp28768 -a(S'hasTransparentBackground/1' -p28769 -S'hasTransparentBackground(${1:This}) $2' -p28770 -tp28771 -a(S'hide/1' -p28772 -S'hide(${1:This}) $2' -p28773 -tp28774 -a(S'iconize/1' -p28775 -S'iconize(${1:This}) $2' -p28776 -tp28777 -a(S'iconize/2' -p28778 -S'iconize(${1:This}, ${2:Options}) $3' -p28779 -tp28780 -a(S'inheritAttributes/1' -p28781 -S'inheritAttributes(${1:This}) $2' -p28782 -tp28783 -a(S'initDialog/1' -p28784 -S'initDialog(${1:This}) $2' -p28785 -tp28786 -a(S'invalidateBestSize/1' -p28787 -S'invalidateBestSize(${1:This}) $2' -p28788 -tp28789 -a(S'isActive/1' -p28790 -S'isActive(${1:This}) $2' -p28791 -tp28792 -a(S'isEnabled/1' -p28793 -S'isEnabled(${1:This}) $2' -p28794 -tp28795 -a(S'isExposed/2' -p28796 -S'isExposed(${1:This}, ${2:Pt}) $3' -p28797 -tp28798 -a(S'isExposed/3' -p28799 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p28800 -tp28801 -a(S'isExposed/5' -p28802 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p28803 -tp28804 -a(S'isFullScreen/1' -p28805 -S'isFullScreen(${1:This}) $2' -p28806 -tp28807 -a(S'isIconized/1' -p28808 -S'isIconized(${1:This}) $2' -p28809 -tp28810 -a(S'isMaximized/1' -p28811 -S'isMaximized(${1:This}) $2' -p28812 -tp28813 -a(S'isModal/1' -p28814 -S'isModal(${1:This}) $2' -p28815 -tp28816 -a(S'isRetained/1' -p28817 -S'isRetained(${1:This}) $2' -p28818 -tp28819 -a(S'isShown/1' -p28820 -S'isShown(${1:This}) $2' -p28821 -tp28822 -a(S'isTopLevel/1' -p28823 -S'isTopLevel(${1:This}) $2' -p28824 -tp28825 -a(S'layout/1' -p28826 -S'layout(${1:This}) $2' -p28827 -tp28828 -a(S'lineDown/1' -p28829 -S'lineDown(${1:This}) $2' -p28830 -tp28831 -a(S'lineUp/1' -p28832 -S'lineUp(${1:This}) $2' -p28833 -tp28834 -a(S'lower/1' -p28835 -S'lower(${1:This}) $2' -p28836 -tp28837 -a(S'makeModal/1' -p28838 -S'makeModal(${1:This}) $2' -p28839 -tp28840 -a(S'makeModal/2' -p28841 -S'makeModal(${1:This}, ${2:Options}) $3' -p28842 -tp28843 -a(S'maximize/1' -p28844 -S'maximize(${1:This}) $2' -p28845 -tp28846 -a(S'maximize/2' -p28847 -S'maximize(${1:This}, ${2:Options}) $3' -p28848 -tp28849 -a(S'move/2' -p28850 -S'move(${1:This}, ${2:Pt}) $3' -p28851 -tp28852 -a(S'move/3' -p28853 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p28854 -tp28855 -a(S'move/4' -p28856 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p28857 -tp28858 -a(S'moveAfterInTabOrder/2' -p28859 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p28860 -tp28861 -a(S'moveBeforeInTabOrder/2' -p28862 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p28863 -tp28864 -a(S'navigate/1' -p28865 -S'navigate(${1:This}) $2' -p28866 -tp28867 -a(S'navigate/2' -p28868 -S'navigate(${1:This}, ${2:Options}) $3' -p28869 -tp28870 -a(S'new/2' -p28871 -S'new(${1:Parent}, ${2:Message}) $3' -p28872 -tp28873 -a(S'new/3' -p28874 -S'new(${1:Parent}, ${2:Message}, ${3:Param3}) $4' -p28875 -tp28876 -a(S'pageDown/1' -p28877 -S'pageDown(${1:This}) $2' -p28878 -tp28879 -a(S'pageUp/1' -p28880 -S'pageUp(${1:This}) $2' -p28881 -tp28882 -a(S'parent_class/1' -p28883 -S'parent_class(${1:Param1}) $2' -p28884 -tp28885 -a(S'popEventHandler/1' -p28886 -S'popEventHandler(${1:This}) $2' -p28887 -tp28888 -a(S'popEventHandler/2' -p28889 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p28890 -tp28891 -a(S'popupMenu/2' -p28892 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p28893 -tp28894 -a(S'popupMenu/3' -p28895 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p28896 -tp28897 -a(S'popupMenu/4' -p28898 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p28899 -tp28900 -a(S'raise/1' -p28901 -S'raise(${1:This}) $2' -p28902 -tp28903 -a(S'refresh/1' -p28904 -S'refresh(${1:This}) $2' -p28905 -tp28906 -a(S'refresh/2' -p28907 -S'refresh(${1:This}, ${2:Options}) $3' -p28908 -tp28909 -a(S'refreshRect/2' -p28910 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p28911 -tp28912 -a(S'refreshRect/3' -p28913 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p28914 -tp28915 -a(S'releaseMouse/1' -p28916 -S'releaseMouse(${1:This}) $2' -p28917 -tp28918 -a(S'removeChild/2' -p28919 -S'removeChild(${1:This}, ${2:Child}) $3' -p28920 -tp28921 -a(S'reparent/2' -p28922 -S'reparent(${1:This}, ${2:NewParent}) $3' -p28923 -tp28924 -a(S'requestUserAttention/1' -p28925 -S'requestUserAttention(${1:This}) $2' -p28926 -tp28927 -a(S'requestUserAttention/2' -p28928 -S'requestUserAttention(${1:This}, ${2:Options}) $3' -p28929 -tp28930 -a(S'screenToClient/1' -p28931 -S'screenToClient(${1:This}) $2' -p28932 -tp28933 -a(S'screenToClient/2' -p28934 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p28935 -tp28936 -a(S'scrollLines/2' -p28937 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p28938 -tp28939 -a(S'scrollPages/2' -p28940 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p28941 -tp28942 -a(S'scrollWindow/3' -p28943 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p28944 -tp28945 -a(S'scrollWindow/4' -p28946 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p28947 -tp28948 -a(S'setAcceleratorTable/2' -p28949 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p28950 -tp28951 -a(S'setAffirmativeId/2' -p28952 -S'setAffirmativeId(${1:This}, ${2:AffirmativeId}) $3' -p28953 -tp28954 -a(S'setAutoLayout/2' -p28955 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p28956 -tp28957 -a(S'setBackgroundColour/2' -p28958 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p28959 -tp28960 -a(S'setBackgroundStyle/2' -p28961 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p28962 -tp28963 -a(S'setCaret/2' -p28964 -S'setCaret(${1:This}, ${2:Caret}) $3' -p28965 -tp28966 -a(S'setClientSize/2' -p28967 -S'setClientSize(${1:This}, ${2:Size}) $3' -p28968 -tp28969 -a(S'setClientSize/3' -p28970 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p28971 -tp28972 -a(S'setContainingSizer/2' -p28973 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p28974 -tp28975 -a(S'setCursor/2' -p28976 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p28977 -tp28978 -a(S'setDropTarget/2' -p28979 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p28980 -tp28981 -a(S'setExtraStyle/2' -p28982 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p28983 -tp28984 -a(S'setFocus/1' -p28985 -S'setFocus(${1:This}) $2' -p28986 -tp28987 -a(S'setFocusFromKbd/1' -p28988 -S'setFocusFromKbd(${1:This}) $2' -p28989 -tp28990 -a(S'setFont/2' -p28991 -S'setFont(${1:This}, ${2:Font}) $3' -p28992 -tp28993 -a(S'setForegroundColour/2' -p28994 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p28995 -tp28996 -a(S'setHelpText/2' -p28997 -S'setHelpText(${1:This}, ${2:Text}) $3' -p28998 -tp28999 -a(S'setIcon/2' -p29000 -S'setIcon(${1:This}, ${2:Icon}) $3' -p29001 -tp29002 -a(S'setIcons/2' -p29003 -S'setIcons(${1:This}, ${2:Icons}) $3' -p29004 -tp29005 -a(S'setId/2' -p29006 -S'setId(${1:This}, ${2:Winid}) $3' -p29007 -tp29008 -a(S'setLabel/2' -p29009 -S'setLabel(${1:This}, ${2:Label}) $3' -p29010 -tp29011 -a(S'setMaxSize/2' -p29012 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p29013 -tp29014 -a(S'setMinSize/2' -p29015 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p29016 -tp29017 -a(S'setName/2' -p29018 -S'setName(${1:This}, ${2:Name}) $3' -p29019 -tp29020 -a(S'setOwnBackgroundColour/2' -p29021 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p29022 -tp29023 -a(S'setOwnFont/2' -p29024 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p29025 -tp29026 -a(S'setOwnForegroundColour/2' -p29027 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p29028 -tp29029 -a(S'setPalette/2' -p29030 -S'setPalette(${1:This}, ${2:Pal}) $3' -p29031 -tp29032 -a(S'setReturnCode/2' -p29033 -S'setReturnCode(${1:This}, ${2:ReturnCode}) $3' -p29034 -tp29035 -a(S'setScrollPos/3' -p29036 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p29037 -tp29038 -a(S'setScrollPos/4' -p29039 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p29040 -tp29041 -a(S'setScrollbar/5' -p29042 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p29043 -tp29044 -a(S'setScrollbar/6' -p29045 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p29046 -tp29047 -a(S'setShape/2' -p29048 -S'setShape(${1:This}, ${2:Region}) $3' -p29049 -tp29050 -a(S'setSize/2' -p29051 -S'setSize(${1:This}, ${2:Rect}) $3' -p29052 -tp29053 -a(S'setSize/3' -p29054 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p29055 -tp29056 -a(S'setSize/5' -p29057 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p29058 -tp29059 -a(S'setSize/6' -p29060 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p29061 -tp29062 -a(S'setSizeHints/2' -p29063 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p29064 -tp29065 -a(S'setSizeHints/3' -p29066 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p29067 -tp29068 -a(S'setSizeHints/4' -p29069 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p29070 -tp29071 -a(S'setSizer/2' -p29072 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p29073 -tp29074 -a(S'setSizer/3' -p29075 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p29076 -tp29077 -a(S'setSizerAndFit/2' -p29078 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p29079 -tp29080 -a(S'setSizerAndFit/3' -p29081 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p29082 -tp29083 -a(S'setThemeEnabled/2' -p29084 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p29085 -tp29086 -a(S'setTitle/2' -p29087 -S'setTitle(${1:This}, ${2:Title}) $3' -p29088 -tp29089 -a(S'setToolTip/2' -p29090 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p29091 -tp29092 -a(S'setVirtualSize/2' -p29093 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p29094 -tp29095 -a(S'setVirtualSize/3' -p29096 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p29097 -tp29098 -a(S'setVirtualSizeHints/2' -p29099 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p29100 -tp29101 -a(S'setVirtualSizeHints/3' -p29102 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p29103 -tp29104 -a(S'setVirtualSizeHints/4' -p29105 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p29106 -tp29107 -a(S'setWindowStyle/2' -p29108 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p29109 -tp29110 -a(S'setWindowStyleFlag/2' -p29111 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p29112 -tp29113 -a(S'setWindowVariant/2' -p29114 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p29115 -tp29116 -a(S'shouldInheritColours/1' -p29117 -S'shouldInheritColours(${1:This}) $2' -p29118 -tp29119 -a(S'show/1' -p29120 -S'show(${1:This}) $2' -p29121 -tp29122 -a(S'show/2' -p29123 -S'show(${1:This}, ${2:Options}) $3' -p29124 -tp29125 -a(S'showFullScreen/2' -p29126 -S'showFullScreen(${1:This}, ${2:Show}) $3' -p29127 -tp29128 -a(S'showFullScreen/3' -p29129 -S'showFullScreen(${1:This}, ${2:Show}, ${3:Options}) $4' -p29130 -tp29131 -a(S'showModal/1' -p29132 -S'showModal(${1:This}) $2' -p29133 -tp29134 -a(S'thaw/1' -p29135 -S'thaw(${1:This}) $2' -p29136 -tp29137 -a(S'transferDataFromWindow/1' -p29138 -S'transferDataFromWindow(${1:This}) $2' -p29139 -tp29140 -a(S'transferDataToWindow/1' -p29141 -S'transferDataToWindow(${1:This}) $2' -p29142 -tp29143 -a(S'update/1' -p29144 -S'update(${1:This}) $2' -p29145 -tp29146 -a(S'updateWindowUI/1' -p29147 -S'updateWindowUI(${1:This}) $2' -p29148 -tp29149 -a(S'updateWindowUI/2' -p29150 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p29151 -tp29152 -a(S'validate/1' -p29153 -S'validate(${1:This}) $2' -p29154 -tp29155 -a(S'warpPointer/3' -p29156 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p29157 -tp29158 -asS'megaco_ber_bin_drv_media_gateway_control_v3' -p29159 -(lp29160 -(S"'dec_ActionReply'/2" -p29161 -S"'dec_ActionReply'(${1:Tlv}, ${2:TagIn}) $3" -p29162 -tp29163 -a(S"'dec_ActionRequest'/2" -p29164 -S"'dec_ActionRequest'(${1:Tlv}, ${2:TagIn}) $3" -p29165 -tp29166 -a(S"'dec_AmmDescriptor'/2" -p29167 -S"'dec_AmmDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p29168 -tp29169 -a(S"'dec_AmmRequest'/2" -p29170 -S"'dec_AmmRequest'(${1:Tlv}, ${2:TagIn}) $3" -p29171 -tp29172 -a(S"'dec_AmmsReply'/2" -p29173 -S"'dec_AmmsReply'(${1:Tlv}, ${2:TagIn}) $3" -p29174 -tp29175 -a(S"'dec_AuditDescriptor'/2" -p29176 -S"'dec_AuditDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p29177 -tp29178 -a(S"'dec_AuditReply'/2" -p29179 -S"'dec_AuditReply'(${1:Tlv}, ${2:TagIn}) $3" -p29180 -tp29181 -a(S"'dec_AuditRequest'/2" -p29182 -S"'dec_AuditRequest'(${1:Tlv}, ${2:TagIn}) $3" -p29183 -tp29184 -a(S"'dec_AuditResult'/2" -p29185 -S"'dec_AuditResult'(${1:Tlv}, ${2:TagIn}) $3" -p29186 -tp29187 -a(S"'dec_AuditReturnParameter'/2" -p29188 -S"'dec_AuditReturnParameter'(${1:Tlv}, ${2:TagIn}) $3" -p29189 -tp29190 -a(S"'dec_AuthData'/2" -p29191 -S"'dec_AuthData'(${1:Tlv}, ${2:TagIn}) $3" -p29192 -tp29193 -a(S"'dec_AuthenticationHeader'/2" -p29194 -S"'dec_AuthenticationHeader'(${1:Tlv}, ${2:TagIn}) $3" -p29195 -tp29196 -a(S"'dec_Command'/2" -p29197 -S"'dec_Command'(${1:Tlv}, ${2:TagIn}) $3" -p29198 -tp29199 -a(S"'dec_CommandReply'/2" -p29200 -S"'dec_CommandReply'(${1:Tlv}, ${2:TagIn}) $3" -p29201 -tp29202 -a(S"'dec_CommandRequest'/2" -p29203 -S"'dec_CommandRequest'(${1:Tlv}, ${2:TagIn}) $3" -p29204 -tp29205 -a(S"'dec_ContextAttrAuditRequest'/2" -p29206 -S"'dec_ContextAttrAuditRequest'(${1:Tlv}, ${2:TagIn}) $3" -p29207 -tp29208 -a(S"'dec_ContextID'/2" -p29209 -S"'dec_ContextID'(${1:Tlv}, ${2:TagIn}) $3" -p29210 -tp29211 -a(S"'dec_ContextRequest'/2" -p29212 -S"'dec_ContextRequest'(${1:Tlv}, ${2:TagIn}) $3" -p29213 -tp29214 -a(S"'dec_DigitMapDescriptor'/2" -p29215 -S"'dec_DigitMapDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p29216 -tp29217 -a(S"'dec_DigitMapName'/2" -p29218 -S"'dec_DigitMapName'(${1:Tlv}, ${2:TagIn}) $3" -p29219 -tp29220 -a(S"'dec_DigitMapValue'/2" -p29221 -S"'dec_DigitMapValue'(${1:Tlv}, ${2:TagIn}) $3" -p29222 -tp29223 -a(S"'dec_DomainName'/2" -p29224 -S"'dec_DomainName'(${1:Tlv}, ${2:TagIn}) $3" -p29225 -tp29226 -a(S"'dec_ErrorCode'/2" -p29227 -S"'dec_ErrorCode'(${1:Tlv}, ${2:TagIn}) $3" -p29228 -tp29229 -a(S"'dec_ErrorDescriptor'/2" -p29230 -S"'dec_ErrorDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p29231 -tp29232 -a(S"'dec_ErrorText'/2" -p29233 -S"'dec_ErrorText'(${1:Tlv}, ${2:TagIn}) $3" -p29234 -tp29235 -a(S"'dec_EventBufferControl'/2" -p29236 -S"'dec_EventBufferControl'(${1:Tlv}, ${2:TagIn}) $3" -p29237 -tp29238 -a(S"'dec_EventBufferDescriptor'/2" -p29239 -S"'dec_EventBufferDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p29240 -tp29241 -a(S"'dec_EventDM'/2" -p29242 -S"'dec_EventDM'(${1:Tlv}, ${2:TagIn}) $3" -p29243 -tp29244 -a(S"'dec_EventName'/2" -p29245 -S"'dec_EventName'(${1:Tlv}, ${2:TagIn}) $3" -p29246 -tp29247 -a(S"'dec_EventParameter'/2" -p29248 -S"'dec_EventParameter'(${1:Tlv}, ${2:TagIn}) $3" -p29249 -tp29250 -a(S"'dec_EventSpec'/2" -p29251 -S"'dec_EventSpec'(${1:Tlv}, ${2:TagIn}) $3" -p29252 -tp29253 -a(S"'dec_EventsDescriptor'/2" -p29254 -S"'dec_EventsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p29255 -tp29256 -a(S"'dec_H221NonStandard'/2" -p29257 -S"'dec_H221NonStandard'(${1:Tlv}, ${2:TagIn}) $3" -p29258 -tp29259 -a(S"'dec_IP4Address'/2" -p29260 -S"'dec_IP4Address'(${1:Tlv}, ${2:TagIn}) $3" -p29261 -tp29262 -a(S"'dec_IP6Address'/2" -p29263 -S"'dec_IP6Address'(${1:Tlv}, ${2:TagIn}) $3" -p29264 -tp29265 -a(S"'dec_IndAudDigitMapDescriptor'/2" -p29266 -S"'dec_IndAudDigitMapDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p29267 -tp29268 -a(S"'dec_IndAudEventBufferDescriptor'/2" -p29269 -S"'dec_IndAudEventBufferDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p29270 -tp29271 -a(S"'dec_IndAudEventsDescriptor'/2" -p29272 -S"'dec_IndAudEventsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p29273 -tp29274 -a(S"'dec_IndAudLocalControlDescriptor'/2" -p29275 -S"'dec_IndAudLocalControlDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p29276 -tp29277 -a(S"'dec_IndAudLocalRemoteDescriptor'/2" -p29278 -S"'dec_IndAudLocalRemoteDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p29279 -tp29280 -a(S"'dec_IndAudMediaDescriptor'/2" -p29281 -S"'dec_IndAudMediaDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p29282 -tp29283 -a(S"'dec_IndAudPackagesDescriptor'/2" -p29284 -S"'dec_IndAudPackagesDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p29285 -tp29286 -a(S"'dec_IndAudPropertyGroup'/2" -p29287 -S"'dec_IndAudPropertyGroup'(${1:Tlv}, ${2:TagIn}) $3" -p29288 -tp29289 -a(S"'dec_IndAudPropertyParm'/2" -p29290 -S"'dec_IndAudPropertyParm'(${1:Tlv}, ${2:TagIn}) $3" -p29291 -tp29292 -a(S"'dec_IndAudSeqSigList'/2" -p29293 -S"'dec_IndAudSeqSigList'(${1:Tlv}, ${2:TagIn}) $3" -p29294 -tp29295 -a(S"'dec_IndAudSignal'/2" -p29296 -S"'dec_IndAudSignal'(${1:Tlv}, ${2:TagIn}) $3" -p29297 -tp29298 -a(S"'dec_IndAudSignalsDescriptor'/2" -p29299 -S"'dec_IndAudSignalsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p29300 -tp29301 -a(S"'dec_IndAudStatisticsDescriptor'/2" -p29302 -S"'dec_IndAudStatisticsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p29303 -tp29304 -a(S"'dec_IndAudStreamDescriptor'/2" -p29305 -S"'dec_IndAudStreamDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p29306 -tp29307 -a(S"'dec_IndAudStreamParms'/2" -p29308 -S"'dec_IndAudStreamParms'(${1:Tlv}, ${2:TagIn}) $3" -p29309 -tp29310 -a(S"'dec_IndAudTerminationStateDescriptor'/2" -p29311 -S"'dec_IndAudTerminationStateDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p29312 -tp29313 -a(S"'dec_IndAuditParameter'/2" -p29314 -S"'dec_IndAuditParameter'(${1:Tlv}, ${2:TagIn}) $3" -p29315 -tp29316 -a(S"'dec_LocalControlDescriptor'/2" -p29317 -S"'dec_LocalControlDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p29318 -tp29319 -a(S"'dec_LocalRemoteDescriptor'/2" -p29320 -S"'dec_LocalRemoteDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p29321 -tp29322 -a(S"'dec_MId'/2" -p29323 -S"'dec_MId'(${1:Tlv}, ${2:TagIn}) $3" -p29324 -tp29325 -a(S"'dec_MediaDescriptor'/2" -p29326 -S"'dec_MediaDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p29327 -tp29328 -a(S"'dec_MegacoMessage'/2" -p29329 -S"'dec_MegacoMessage'(${1:Tlv}, ${2:TagIn}) $3" -p29330 -tp29331 -a(S"'dec_Message'/2" -p29332 -S"'dec_Message'(${1:Tlv}, ${2:TagIn}) $3" -p29333 -tp29334 -a(S"'dec_ModemDescriptor'/2" -p29335 -S"'dec_ModemDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p29336 -tp29337 -a(S"'dec_ModemType'/2" -p29338 -S"'dec_ModemType'(${1:Tlv}, ${2:TagIn}) $3" -p29339 -tp29340 -a(S"'dec_MuxDescriptor'/2" -p29341 -S"'dec_MuxDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p29342 -tp29343 -a(S"'dec_MuxType'/2" -p29344 -S"'dec_MuxType'(${1:Tlv}, ${2:TagIn}) $3" -p29345 -tp29346 -a(S"'dec_Name'/2" -p29347 -S"'dec_Name'(${1:Tlv}, ${2:TagIn}) $3" -p29348 -tp29349 -a(S"'dec_NonStandardData'/2" -p29350 -S"'dec_NonStandardData'(${1:Tlv}, ${2:TagIn}) $3" -p29351 -tp29352 -a(S"'dec_NonStandardIdentifier'/2" -p29353 -S"'dec_NonStandardIdentifier'(${1:Tlv}, ${2:TagIn}) $3" -p29354 -tp29355 -a(S"'dec_NotifyBehaviour'/2" -p29356 -S"'dec_NotifyBehaviour'(${1:Tlv}, ${2:TagIn}) $3" -p29357 -tp29358 -a(S"'dec_NotifyCompletion'/2" -p29359 -S"'dec_NotifyCompletion'(${1:Tlv}, ${2:TagIn}) $3" -p29360 -tp29361 -a(S"'dec_NotifyReply'/2" -p29362 -S"'dec_NotifyReply'(${1:Tlv}, ${2:TagIn}) $3" -p29363 -tp29364 -a(S"'dec_NotifyRequest'/2" -p29365 -S"'dec_NotifyRequest'(${1:Tlv}, ${2:TagIn}) $3" -p29366 -tp29367 -a(S"'dec_ObservedEvent'/2" -p29368 -S"'dec_ObservedEvent'(${1:Tlv}, ${2:TagIn}) $3" -p29369 -tp29370 -a(S"'dec_ObservedEventsDescriptor'/2" -p29371 -S"'dec_ObservedEventsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p29372 -tp29373 -a(S"'dec_PackagesDescriptor'/2" -p29374 -S"'dec_PackagesDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p29375 -tp29376 -a(S"'dec_PackagesItem'/2" -p29377 -S"'dec_PackagesItem'(${1:Tlv}, ${2:TagIn}) $3" -p29378 -tp29379 -a(S"'dec_PathName'/2" -p29380 -S"'dec_PathName'(${1:Tlv}, ${2:TagIn}) $3" -p29381 -tp29382 -a(S"'dec_PkgdName'/2" -p29383 -S"'dec_PkgdName'(${1:Tlv}, ${2:TagIn}) $3" -p29384 -tp29385 -a(S"'dec_PropertyGroup'/2" -p29386 -S"'dec_PropertyGroup'(${1:Tlv}, ${2:TagIn}) $3" -p29387 -tp29388 -a(S"'dec_PropertyParm'/2" -p29389 -S"'dec_PropertyParm'(${1:Tlv}, ${2:TagIn}) $3" -p29390 -tp29391 -a(S"'dec_RegulatedEmbeddedDescriptor'/2" -p29392 -S"'dec_RegulatedEmbeddedDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p29393 -tp29394 -a(S"'dec_Relation'/2" -p29395 -S"'dec_Relation'(${1:Tlv}, ${2:TagIn}) $3" -p29396 -tp29397 -a(S"'dec_RequestID'/2" -p29398 -S"'dec_RequestID'(${1:Tlv}, ${2:TagIn}) $3" -p29399 -tp29400 -a(S"'dec_RequestedActions'/2" -p29401 -S"'dec_RequestedActions'(${1:Tlv}, ${2:TagIn}) $3" -p29402 -tp29403 -a(S"'dec_RequestedEvent'/2" -p29404 -S"'dec_RequestedEvent'(${1:Tlv}, ${2:TagIn}) $3" -p29405 -tp29406 -a(S"'dec_SecondEventsDescriptor'/2" -p29407 -S"'dec_SecondEventsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p29408 -tp29409 -a(S"'dec_SecondRequestedActions'/2" -p29410 -S"'dec_SecondRequestedActions'(${1:Tlv}, ${2:TagIn}) $3" -p29411 -tp29412 -a(S"'dec_SecondRequestedEvent'/2" -p29413 -S"'dec_SecondRequestedEvent'(${1:Tlv}, ${2:TagIn}) $3" -p29414 -tp29415 -a(S"'dec_SecurityParmIndex'/2" -p29416 -S"'dec_SecurityParmIndex'(${1:Tlv}, ${2:TagIn}) $3" -p29417 -tp29418 -a(S"'dec_SegmentNumber'/2" -p29419 -S"'dec_SegmentNumber'(${1:Tlv}, ${2:TagIn}) $3" -p29420 -tp29421 -a(S"'dec_SegmentReply'/2" -p29422 -S"'dec_SegmentReply'(${1:Tlv}, ${2:TagIn}) $3" -p29423 -tp29424 -a(S"'dec_SelectLogic'/2" -p29425 -S"'dec_SelectLogic'(${1:Tlv}, ${2:TagIn}) $3" -p29426 -tp29427 -a(S"'dec_SeqSigList'/2" -p29428 -S"'dec_SeqSigList'(${1:Tlv}, ${2:TagIn}) $3" -p29429 -tp29430 -a(S"'dec_SequenceNum'/2" -p29431 -S"'dec_SequenceNum'(${1:Tlv}, ${2:TagIn}) $3" -p29432 -tp29433 -a(S"'dec_ServiceChangeAddress'/2" -p29434 -S"'dec_ServiceChangeAddress'(${1:Tlv}, ${2:TagIn}) $3" -p29435 -tp29436 -a(S"'dec_ServiceChangeMethod'/2" -p29437 -S"'dec_ServiceChangeMethod'(${1:Tlv}, ${2:TagIn}) $3" -p29438 -tp29439 -a(S"'dec_ServiceChangeParm'/2" -p29440 -S"'dec_ServiceChangeParm'(${1:Tlv}, ${2:TagIn}) $3" -p29441 -tp29442 -a(S"'dec_ServiceChangeProfile'/2" -p29443 -S"'dec_ServiceChangeProfile'(${1:Tlv}, ${2:TagIn}) $3" -p29444 -tp29445 -a(S"'dec_ServiceChangeReply'/2" -p29446 -S"'dec_ServiceChangeReply'(${1:Tlv}, ${2:TagIn}) $3" -p29447 -tp29448 -a(S"'dec_ServiceChangeRequest'/2" -p29449 -S"'dec_ServiceChangeRequest'(${1:Tlv}, ${2:TagIn}) $3" -p29450 -tp29451 -a(S"'dec_ServiceChangeResParm'/2" -p29452 -S"'dec_ServiceChangeResParm'(${1:Tlv}, ${2:TagIn}) $3" -p29453 -tp29454 -a(S"'dec_ServiceChangeResult'/2" -p29455 -S"'dec_ServiceChangeResult'(${1:Tlv}, ${2:TagIn}) $3" -p29456 -tp29457 -a(S"'dec_ServiceState'/2" -p29458 -S"'dec_ServiceState'(${1:Tlv}, ${2:TagIn}) $3" -p29459 -tp29460 -a(S"'dec_SigParameter'/2" -p29461 -S"'dec_SigParameter'(${1:Tlv}, ${2:TagIn}) $3" -p29462 -tp29463 -a(S"'dec_Signal'/2" -p29464 -S"'dec_Signal'(${1:Tlv}, ${2:TagIn}) $3" -p29465 -tp29466 -a(S"'dec_SignalDirection'/2" -p29467 -S"'dec_SignalDirection'(${1:Tlv}, ${2:TagIn}) $3" -p29468 -tp29469 -a(S"'dec_SignalName'/2" -p29470 -S"'dec_SignalName'(${1:Tlv}, ${2:TagIn}) $3" -p29471 -tp29472 -a(S"'dec_SignalRequest'/2" -p29473 -S"'dec_SignalRequest'(${1:Tlv}, ${2:TagIn}) $3" -p29474 -tp29475 -a(S"'dec_SignalType'/2" -p29476 -S"'dec_SignalType'(${1:Tlv}, ${2:TagIn}) $3" -p29477 -tp29478 -a(S"'dec_SignalsDescriptor'/2" -p29479 -S"'dec_SignalsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p29480 -tp29481 -a(S"'dec_StatisticsDescriptor'/2" -p29482 -S"'dec_StatisticsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p29483 -tp29484 -a(S"'dec_StatisticsParameter'/2" -p29485 -S"'dec_StatisticsParameter'(${1:Tlv}, ${2:TagIn}) $3" -p29486 -tp29487 -a(S"'dec_StreamDescriptor'/2" -p29488 -S"'dec_StreamDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p29489 -tp29490 -a(S"'dec_StreamID'/2" -p29491 -S"'dec_StreamID'(${1:Tlv}, ${2:TagIn}) $3" -p29492 -tp29493 -a(S"'dec_StreamMode'/2" -p29494 -S"'dec_StreamMode'(${1:Tlv}, ${2:TagIn}) $3" -p29495 -tp29496 -a(S"'dec_StreamParms'/2" -p29497 -S"'dec_StreamParms'(${1:Tlv}, ${2:TagIn}) $3" -p29498 -tp29499 -a(S"'dec_SubtractRequest'/2" -p29500 -S"'dec_SubtractRequest'(${1:Tlv}, ${2:TagIn}) $3" -p29501 -tp29502 -a(S"'dec_TermListAuditResult'/2" -p29503 -S"'dec_TermListAuditResult'(${1:Tlv}, ${2:TagIn}) $3" -p29504 -tp29505 -a(S"'dec_TerminationAudit'/2" -p29506 -S"'dec_TerminationAudit'(${1:Tlv}, ${2:TagIn}) $3" -p29507 -tp29508 -a(S"'dec_TerminationID'/2" -p29509 -S"'dec_TerminationID'(${1:Tlv}, ${2:TagIn}) $3" -p29510 -tp29511 -a(S"'dec_TerminationIDList'/2" -p29512 -S"'dec_TerminationIDList'(${1:Tlv}, ${2:TagIn}) $3" -p29513 -tp29514 -a(S"'dec_TerminationStateDescriptor'/2" -p29515 -S"'dec_TerminationStateDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p29516 -tp29517 -a(S"'dec_TimeNotation'/2" -p29518 -S"'dec_TimeNotation'(${1:Tlv}, ${2:TagIn}) $3" -p29519 -tp29520 -a(S"'dec_TopologyRequest'/2" -p29521 -S"'dec_TopologyRequest'(${1:Tlv}, ${2:TagIn}) $3" -p29522 -tp29523 -a(S"'dec_Transaction'/2" -p29524 -S"'dec_Transaction'(${1:Tlv}, ${2:TagIn}) $3" -p29525 -tp29526 -a(S"'dec_TransactionAck'/2" -p29527 -S"'dec_TransactionAck'(${1:Tlv}, ${2:TagIn}) $3" -p29528 -tp29529 -a(S"'dec_TransactionId'/2" -p29530 -S"'dec_TransactionId'(${1:Tlv}, ${2:TagIn}) $3" -p29531 -tp29532 -a(S"'dec_TransactionPending'/2" -p29533 -S"'dec_TransactionPending'(${1:Tlv}, ${2:TagIn}) $3" -p29534 -tp29535 -a(S"'dec_TransactionReply'/2" -p29536 -S"'dec_TransactionReply'(${1:Tlv}, ${2:TagIn}) $3" -p29537 -tp29538 -a(S"'dec_TransactionRequest'/2" -p29539 -S"'dec_TransactionRequest'(${1:Tlv}, ${2:TagIn}) $3" -p29540 -tp29541 -a(S"'dec_TransactionResponseAck'/2" -p29542 -S"'dec_TransactionResponseAck'(${1:Tlv}, ${2:TagIn}) $3" -p29543 -tp29544 -a(S"'dec_Value'/2" -p29545 -S"'dec_Value'(${1:Tlv}, ${2:TagIn}) $3" -p29546 -tp29547 -a(S"'dec_WildcardField'/2" -p29548 -S"'dec_WildcardField'(${1:Tlv}, ${2:TagIn}) $3" -p29549 -tp29550 -a(S"'enc_ActionReply'/2" -p29551 -S"'enc_ActionReply'(${1:Val}, ${2:TagIn}) $3" -p29552 -tp29553 -a(S"'enc_ActionRequest'/2" -p29554 -S"'enc_ActionRequest'(${1:Val}, ${2:TagIn}) $3" -p29555 -tp29556 -a(S"'enc_AmmDescriptor'/2" -p29557 -S"'enc_AmmDescriptor'(${1:Val}, ${2:TagIn}) $3" -p29558 -tp29559 -a(S"'enc_AmmRequest'/2" -p29560 -S"'enc_AmmRequest'(${1:Val}, ${2:TagIn}) $3" -p29561 -tp29562 -a(S"'enc_AmmsReply'/2" -p29563 -S"'enc_AmmsReply'(${1:Val}, ${2:TagIn}) $3" -p29564 -tp29565 -a(S"'enc_AuditDescriptor'/2" -p29566 -S"'enc_AuditDescriptor'(${1:Val}, ${2:TagIn}) $3" -p29567 -tp29568 -a(S"'enc_AuditReply'/2" -p29569 -S"'enc_AuditReply'(${1:Val}, ${2:TagIn}) $3" -p29570 -tp29571 -a(S"'enc_AuditRequest'/2" -p29572 -S"'enc_AuditRequest'(${1:Val}, ${2:TagIn}) $3" -p29573 -tp29574 -a(S"'enc_AuditResult'/2" -p29575 -S"'enc_AuditResult'(${1:Val}, ${2:TagIn}) $3" -p29576 -tp29577 -a(S"'enc_AuditReturnParameter'/2" -p29578 -S"'enc_AuditReturnParameter'(${1:Val}, ${2:TagIn}) $3" -p29579 -tp29580 -a(S"'enc_AuthData'/2" -p29581 -S"'enc_AuthData'(${1:Val}, ${2:TagIn}) $3" -p29582 -tp29583 -a(S"'enc_AuthenticationHeader'/2" -p29584 -S"'enc_AuthenticationHeader'(${1:Val}, ${2:TagIn}) $3" -p29585 -tp29586 -a(S"'enc_Command'/2" -p29587 -S"'enc_Command'(${1:Val}, ${2:TagIn}) $3" -p29588 -tp29589 -a(S"'enc_CommandReply'/2" -p29590 -S"'enc_CommandReply'(${1:Val}, ${2:TagIn}) $3" -p29591 -tp29592 -a(S"'enc_CommandRequest'/2" -p29593 -S"'enc_CommandRequest'(${1:Val}, ${2:TagIn}) $3" -p29594 -tp29595 -a(S"'enc_ContextAttrAuditRequest'/2" -p29596 -S"'enc_ContextAttrAuditRequest'(${1:Val}, ${2:TagIn}) $3" -p29597 -tp29598 -a(S"'enc_ContextID'/2" -p29599 -S"'enc_ContextID'(${1:Val}, ${2:TagIn}) $3" -p29600 -tp29601 -a(S"'enc_ContextRequest'/2" -p29602 -S"'enc_ContextRequest'(${1:Val}, ${2:TagIn}) $3" -p29603 -tp29604 -a(S"'enc_DigitMapDescriptor'/2" -p29605 -S"'enc_DigitMapDescriptor'(${1:Val}, ${2:TagIn}) $3" -p29606 -tp29607 -a(S"'enc_DigitMapName'/2" -p29608 -S"'enc_DigitMapName'(${1:Val}, ${2:TagIn}) $3" -p29609 -tp29610 -a(S"'enc_DigitMapValue'/2" -p29611 -S"'enc_DigitMapValue'(${1:Val}, ${2:TagIn}) $3" -p29612 -tp29613 -a(S"'enc_DomainName'/2" -p29614 -S"'enc_DomainName'(${1:Val}, ${2:TagIn}) $3" -p29615 -tp29616 -a(S"'enc_ErrorCode'/2" -p29617 -S"'enc_ErrorCode'(${1:Val}, ${2:TagIn}) $3" -p29618 -tp29619 -a(S"'enc_ErrorDescriptor'/2" -p29620 -S"'enc_ErrorDescriptor'(${1:Val}, ${2:TagIn}) $3" -p29621 -tp29622 -a(S"'enc_ErrorText'/2" -p29623 -S"'enc_ErrorText'(${1:Val}, ${2:TagIn}) $3" -p29624 -tp29625 -a(S"'enc_EventBufferControl'/2" -p29626 -S"'enc_EventBufferControl'(${1:Val}, ${2:TagIn}) $3" -p29627 -tp29628 -a(S"'enc_EventBufferDescriptor'/2" -p29629 -S"'enc_EventBufferDescriptor'(${1:Val}, ${2:TagIn}) $3" -p29630 -tp29631 -a(S"'enc_EventDM'/2" -p29632 -S"'enc_EventDM'(${1:Val}, ${2:TagIn}) $3" -p29633 -tp29634 -a(S"'enc_EventName'/2" -p29635 -S"'enc_EventName'(${1:Val}, ${2:TagIn}) $3" -p29636 -tp29637 -a(S"'enc_EventParameter'/2" -p29638 -S"'enc_EventParameter'(${1:Val}, ${2:TagIn}) $3" -p29639 -tp29640 -a(S"'enc_EventSpec'/2" -p29641 -S"'enc_EventSpec'(${1:Val}, ${2:TagIn}) $3" -p29642 -tp29643 -a(S"'enc_EventsDescriptor'/2" -p29644 -S"'enc_EventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p29645 -tp29646 -a(S"'enc_H221NonStandard'/2" -p29647 -S"'enc_H221NonStandard'(${1:Val}, ${2:TagIn}) $3" -p29648 -tp29649 -a(S"'enc_IP4Address'/2" -p29650 -S"'enc_IP4Address'(${1:Val}, ${2:TagIn}) $3" -p29651 -tp29652 -a(S"'enc_IP6Address'/2" -p29653 -S"'enc_IP6Address'(${1:Val}, ${2:TagIn}) $3" -p29654 -tp29655 -a(S"'enc_IndAudDigitMapDescriptor'/2" -p29656 -S"'enc_IndAudDigitMapDescriptor'(${1:Val}, ${2:TagIn}) $3" -p29657 -tp29658 -a(S"'enc_IndAudEventBufferDescriptor'/2" -p29659 -S"'enc_IndAudEventBufferDescriptor'(${1:Val}, ${2:TagIn}) $3" -p29660 -tp29661 -a(S"'enc_IndAudEventsDescriptor'/2" -p29662 -S"'enc_IndAudEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p29663 -tp29664 -a(S"'enc_IndAudLocalControlDescriptor'/2" -p29665 -S"'enc_IndAudLocalControlDescriptor'(${1:Val}, ${2:TagIn}) $3" -p29666 -tp29667 -a(S"'enc_IndAudLocalRemoteDescriptor'/2" -p29668 -S"'enc_IndAudLocalRemoteDescriptor'(${1:Val}, ${2:TagIn}) $3" -p29669 -tp29670 -a(S"'enc_IndAudMediaDescriptor'/2" -p29671 -S"'enc_IndAudMediaDescriptor'(${1:Val}, ${2:TagIn}) $3" -p29672 -tp29673 -a(S"'enc_IndAudPackagesDescriptor'/2" -p29674 -S"'enc_IndAudPackagesDescriptor'(${1:Val}, ${2:TagIn}) $3" -p29675 -tp29676 -a(S"'enc_IndAudPropertyGroup'/2" -p29677 -S"'enc_IndAudPropertyGroup'(${1:Val}, ${2:TagIn}) $3" -p29678 -tp29679 -a(S"'enc_IndAudPropertyParm'/2" -p29680 -S"'enc_IndAudPropertyParm'(${1:Val}, ${2:TagIn}) $3" -p29681 -tp29682 -a(S"'enc_IndAudSeqSigList'/2" -p29683 -S"'enc_IndAudSeqSigList'(${1:Val}, ${2:TagIn}) $3" -p29684 -tp29685 -a(S"'enc_IndAudSignal'/2" -p29686 -S"'enc_IndAudSignal'(${1:Val}, ${2:TagIn}) $3" -p29687 -tp29688 -a(S"'enc_IndAudSignalsDescriptor'/2" -p29689 -S"'enc_IndAudSignalsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p29690 -tp29691 -a(S"'enc_IndAudStatisticsDescriptor'/2" -p29692 -S"'enc_IndAudStatisticsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p29693 -tp29694 -a(S"'enc_IndAudStreamDescriptor'/2" -p29695 -S"'enc_IndAudStreamDescriptor'(${1:Val}, ${2:TagIn}) $3" -p29696 -tp29697 -a(S"'enc_IndAudStreamParms'/2" -p29698 -S"'enc_IndAudStreamParms'(${1:Val}, ${2:TagIn}) $3" -p29699 -tp29700 -a(S"'enc_IndAudTerminationStateDescriptor'/2" -p29701 -S"'enc_IndAudTerminationStateDescriptor'(${1:Val}, ${2:TagIn}) $3" -p29702 -tp29703 -a(S"'enc_IndAuditParameter'/2" -p29704 -S"'enc_IndAuditParameter'(${1:Val}, ${2:TagIn}) $3" -p29705 -tp29706 -a(S"'enc_LocalControlDescriptor'/2" -p29707 -S"'enc_LocalControlDescriptor'(${1:Val}, ${2:TagIn}) $3" -p29708 -tp29709 -a(S"'enc_LocalRemoteDescriptor'/2" -p29710 -S"'enc_LocalRemoteDescriptor'(${1:Val}, ${2:TagIn}) $3" -p29711 -tp29712 -a(S"'enc_MId'/2" -p29713 -S"'enc_MId'(${1:Val}, ${2:TagIn}) $3" -p29714 -tp29715 -a(S"'enc_MediaDescriptor'/2" -p29716 -S"'enc_MediaDescriptor'(${1:Val}, ${2:TagIn}) $3" -p29717 -tp29718 -a(S"'enc_MegacoMessage'/2" -p29719 -S"'enc_MegacoMessage'(${1:Val}, ${2:TagIn}) $3" -p29720 -tp29721 -a(S"'enc_Message'/2" -p29722 -S"'enc_Message'(${1:Val}, ${2:TagIn}) $3" -p29723 -tp29724 -a(S"'enc_ModemDescriptor'/2" -p29725 -S"'enc_ModemDescriptor'(${1:Val}, ${2:TagIn}) $3" -p29726 -tp29727 -a(S"'enc_ModemType'/2" -p29728 -S"'enc_ModemType'(${1:Val}, ${2:TagIn}) $3" -p29729 -tp29730 -a(S"'enc_MuxDescriptor'/2" -p29731 -S"'enc_MuxDescriptor'(${1:Val}, ${2:TagIn}) $3" -p29732 -tp29733 -a(S"'enc_MuxType'/2" -p29734 -S"'enc_MuxType'(${1:Val}, ${2:TagIn}) $3" -p29735 -tp29736 -a(S"'enc_Name'/2" -p29737 -S"'enc_Name'(${1:Val}, ${2:TagIn}) $3" -p29738 -tp29739 -a(S"'enc_NonStandardData'/2" -p29740 -S"'enc_NonStandardData'(${1:Val}, ${2:TagIn}) $3" -p29741 -tp29742 -a(S"'enc_NonStandardIdentifier'/2" -p29743 -S"'enc_NonStandardIdentifier'(${1:Val}, ${2:TagIn}) $3" -p29744 -tp29745 -a(S"'enc_NotifyBehaviour'/2" -p29746 -S"'enc_NotifyBehaviour'(${1:Val}, ${2:TagIn}) $3" -p29747 -tp29748 -a(S"'enc_NotifyCompletion'/2" -p29749 -S"'enc_NotifyCompletion'(${1:Val}, ${2:TagIn}) $3" -p29750 -tp29751 -a(S"'enc_NotifyReply'/2" -p29752 -S"'enc_NotifyReply'(${1:Val}, ${2:TagIn}) $3" -p29753 -tp29754 -a(S"'enc_NotifyRequest'/2" -p29755 -S"'enc_NotifyRequest'(${1:Val}, ${2:TagIn}) $3" -p29756 -tp29757 -a(S"'enc_ObservedEvent'/2" -p29758 -S"'enc_ObservedEvent'(${1:Val}, ${2:TagIn}) $3" -p29759 -tp29760 -a(S"'enc_ObservedEventsDescriptor'/2" -p29761 -S"'enc_ObservedEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p29762 -tp29763 -a(S"'enc_PackagesDescriptor'/2" -p29764 -S"'enc_PackagesDescriptor'(${1:Val}, ${2:TagIn}) $3" -p29765 -tp29766 -a(S"'enc_PackagesItem'/2" -p29767 -S"'enc_PackagesItem'(${1:Val}, ${2:TagIn}) $3" -p29768 -tp29769 -a(S"'enc_PathName'/2" -p29770 -S"'enc_PathName'(${1:Val}, ${2:TagIn}) $3" -p29771 -tp29772 -a(S"'enc_PkgdName'/2" -p29773 -S"'enc_PkgdName'(${1:Val}, ${2:TagIn}) $3" -p29774 -tp29775 -a(S"'enc_PropertyGroup'/2" -p29776 -S"'enc_PropertyGroup'(${1:Val}, ${2:TagIn}) $3" -p29777 -tp29778 -a(S"'enc_PropertyParm'/2" -p29779 -S"'enc_PropertyParm'(${1:Val}, ${2:TagIn}) $3" -p29780 -tp29781 -a(S"'enc_RegulatedEmbeddedDescriptor'/2" -p29782 -S"'enc_RegulatedEmbeddedDescriptor'(${1:Val}, ${2:TagIn}) $3" -p29783 -tp29784 -a(S"'enc_Relation'/2" -p29785 -S"'enc_Relation'(${1:Val}, ${2:TagIn}) $3" -p29786 -tp29787 -a(S"'enc_RequestID'/2" -p29788 -S"'enc_RequestID'(${1:Val}, ${2:TagIn}) $3" -p29789 -tp29790 -a(S"'enc_RequestedActions'/2" -p29791 -S"'enc_RequestedActions'(${1:Val}, ${2:TagIn}) $3" -p29792 -tp29793 -a(S"'enc_RequestedEvent'/2" -p29794 -S"'enc_RequestedEvent'(${1:Val}, ${2:TagIn}) $3" -p29795 -tp29796 -a(S"'enc_SecondEventsDescriptor'/2" -p29797 -S"'enc_SecondEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p29798 -tp29799 -a(S"'enc_SecondRequestedActions'/2" -p29800 -S"'enc_SecondRequestedActions'(${1:Val}, ${2:TagIn}) $3" -p29801 -tp29802 -a(S"'enc_SecondRequestedEvent'/2" -p29803 -S"'enc_SecondRequestedEvent'(${1:Val}, ${2:TagIn}) $3" -p29804 -tp29805 -a(S"'enc_SecurityParmIndex'/2" -p29806 -S"'enc_SecurityParmIndex'(${1:Val}, ${2:TagIn}) $3" -p29807 -tp29808 -a(S"'enc_SegmentNumber'/2" -p29809 -S"'enc_SegmentNumber'(${1:Val}, ${2:TagIn}) $3" -p29810 -tp29811 -a(S"'enc_SegmentReply'/2" -p29812 -S"'enc_SegmentReply'(${1:Val}, ${2:TagIn}) $3" -p29813 -tp29814 -a(S"'enc_SelectLogic'/2" -p29815 -S"'enc_SelectLogic'(${1:Val}, ${2:TagIn}) $3" -p29816 -tp29817 -a(S"'enc_SeqSigList'/2" -p29818 -S"'enc_SeqSigList'(${1:Val}, ${2:TagIn}) $3" -p29819 -tp29820 -a(S"'enc_SequenceNum'/2" -p29821 -S"'enc_SequenceNum'(${1:Val}, ${2:TagIn}) $3" -p29822 -tp29823 -a(S"'enc_ServiceChangeAddress'/2" -p29824 -S"'enc_ServiceChangeAddress'(${1:Val}, ${2:TagIn}) $3" -p29825 -tp29826 -a(S"'enc_ServiceChangeMethod'/2" -p29827 -S"'enc_ServiceChangeMethod'(${1:Val}, ${2:TagIn}) $3" -p29828 -tp29829 -a(S"'enc_ServiceChangeParm'/2" -p29830 -S"'enc_ServiceChangeParm'(${1:Val}, ${2:TagIn}) $3" -p29831 -tp29832 -a(S"'enc_ServiceChangeProfile'/2" -p29833 -S"'enc_ServiceChangeProfile'(${1:Val}, ${2:TagIn}) $3" -p29834 -tp29835 -a(S"'enc_ServiceChangeReply'/2" -p29836 -S"'enc_ServiceChangeReply'(${1:Val}, ${2:TagIn}) $3" -p29837 -tp29838 -a(S"'enc_ServiceChangeRequest'/2" -p29839 -S"'enc_ServiceChangeRequest'(${1:Val}, ${2:TagIn}) $3" -p29840 -tp29841 -a(S"'enc_ServiceChangeResParm'/2" -p29842 -S"'enc_ServiceChangeResParm'(${1:Val}, ${2:TagIn}) $3" -p29843 -tp29844 -a(S"'enc_ServiceChangeResult'/2" -p29845 -S"'enc_ServiceChangeResult'(${1:Val}, ${2:TagIn}) $3" -p29846 -tp29847 -a(S"'enc_ServiceState'/2" -p29848 -S"'enc_ServiceState'(${1:Val}, ${2:TagIn}) $3" -p29849 -tp29850 -a(S"'enc_SigParameter'/2" -p29851 -S"'enc_SigParameter'(${1:Val}, ${2:TagIn}) $3" -p29852 -tp29853 -a(S"'enc_Signal'/2" -p29854 -S"'enc_Signal'(${1:Val}, ${2:TagIn}) $3" -p29855 -tp29856 -a(S"'enc_SignalDirection'/2" -p29857 -S"'enc_SignalDirection'(${1:Val}, ${2:TagIn}) $3" -p29858 -tp29859 -a(S"'enc_SignalName'/2" -p29860 -S"'enc_SignalName'(${1:Val}, ${2:TagIn}) $3" -p29861 -tp29862 -a(S"'enc_SignalRequest'/2" -p29863 -S"'enc_SignalRequest'(${1:Val}, ${2:TagIn}) $3" -p29864 -tp29865 -a(S"'enc_SignalType'/2" -p29866 -S"'enc_SignalType'(${1:Val}, ${2:TagIn}) $3" -p29867 -tp29868 -a(S"'enc_SignalsDescriptor'/2" -p29869 -S"'enc_SignalsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p29870 -tp29871 -a(S"'enc_StatisticsDescriptor'/2" -p29872 -S"'enc_StatisticsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p29873 -tp29874 -a(S"'enc_StatisticsParameter'/2" -p29875 -S"'enc_StatisticsParameter'(${1:Val}, ${2:TagIn}) $3" -p29876 -tp29877 -a(S"'enc_StreamDescriptor'/2" -p29878 -S"'enc_StreamDescriptor'(${1:Val}, ${2:TagIn}) $3" -p29879 -tp29880 -a(S"'enc_StreamID'/2" -p29881 -S"'enc_StreamID'(${1:Val}, ${2:TagIn}) $3" -p29882 -tp29883 -a(S"'enc_StreamMode'/2" -p29884 -S"'enc_StreamMode'(${1:Val}, ${2:TagIn}) $3" -p29885 -tp29886 -a(S"'enc_StreamParms'/2" -p29887 -S"'enc_StreamParms'(${1:Val}, ${2:TagIn}) $3" -p29888 -tp29889 -a(S"'enc_SubtractRequest'/2" -p29890 -S"'enc_SubtractRequest'(${1:Val}, ${2:TagIn}) $3" -p29891 -tp29892 -a(S"'enc_TermListAuditResult'/2" -p29893 -S"'enc_TermListAuditResult'(${1:Val}, ${2:TagIn}) $3" -p29894 -tp29895 -a(S"'enc_TerminationAudit'/2" -p29896 -S"'enc_TerminationAudit'(${1:Val}, ${2:TagIn}) $3" -p29897 -tp29898 -a(S"'enc_TerminationID'/2" -p29899 -S"'enc_TerminationID'(${1:Val}, ${2:TagIn}) $3" -p29900 -tp29901 -a(S"'enc_TerminationIDList'/2" -p29902 -S"'enc_TerminationIDList'(${1:Val}, ${2:TagIn}) $3" -p29903 -tp29904 -a(S"'enc_TerminationStateDescriptor'/2" -p29905 -S"'enc_TerminationStateDescriptor'(${1:Val}, ${2:TagIn}) $3" -p29906 -tp29907 -a(S"'enc_TimeNotation'/2" -p29908 -S"'enc_TimeNotation'(${1:Val}, ${2:TagIn}) $3" -p29909 -tp29910 -a(S"'enc_TopologyRequest'/2" -p29911 -S"'enc_TopologyRequest'(${1:Val}, ${2:TagIn}) $3" -p29912 -tp29913 -a(S"'enc_Transaction'/2" -p29914 -S"'enc_Transaction'(${1:Val}, ${2:TagIn}) $3" -p29915 -tp29916 -a(S"'enc_TransactionAck'/2" -p29917 -S"'enc_TransactionAck'(${1:Val}, ${2:TagIn}) $3" -p29918 -tp29919 -a(S"'enc_TransactionId'/2" -p29920 -S"'enc_TransactionId'(${1:Val}, ${2:TagIn}) $3" -p29921 -tp29922 -a(S"'enc_TransactionPending'/2" -p29923 -S"'enc_TransactionPending'(${1:Val}, ${2:TagIn}) $3" -p29924 -tp29925 -a(S"'enc_TransactionReply'/2" -p29926 -S"'enc_TransactionReply'(${1:Val}, ${2:TagIn}) $3" -p29927 -tp29928 -a(S"'enc_TransactionRequest'/2" -p29929 -S"'enc_TransactionRequest'(${1:Val}, ${2:TagIn}) $3" -p29930 -tp29931 -a(S"'enc_TransactionResponseAck'/2" -p29932 -S"'enc_TransactionResponseAck'(${1:Val}, ${2:TagIn}) $3" -p29933 -tp29934 -a(S"'enc_Value'/2" -p29935 -S"'enc_Value'(${1:Val}, ${2:TagIn}) $3" -p29936 -tp29937 -a(S"'enc_WildcardField'/2" -p29938 -S"'enc_WildcardField'(${1:Val}, ${2:TagIn}) $3" -p29939 -tp29940 -a(S'decode/2' -p29941 -S'decode(${1:Type}, ${2:Data}) $3' -p29942 -tp29943 -a(S'decode_disp/2' -p29944 -S'decode_disp(${1:Type}, ${2:Data}) $3' -p29945 -tp29946 -a(S'decode_message_acts_partial/1' -p29947 -S'decode_message_acts_partial(${1:Bytes}) $2' -p29948 -tp29949 -a(S'decode_message_mId/1' -p29950 -S'decode_message_mId(${1:Bytes}) $2' -p29951 -tp29952 -a(S'decode_message_trans_partial/1' -p29953 -S'decode_message_trans_partial(${1:Bytes}) $2' -p29954 -tp29955 -a(S'decode_message_version/1' -p29956 -S'decode_message_version(${1:Bytes}) $2' -p29957 -tp29958 -a(S'decode_part/2' -p29959 -S'decode_part(${1:Type}, ${2:Data0}) $3' -p29960 -tp29961 -a(S'encode/2' -p29962 -S'encode(${1:Type}, ${2:Data}) $3' -p29963 -tp29964 -a(S'encode_disp/2' -p29965 -S'encode_disp(${1:Type}, ${2:Data}) $3' -p29966 -tp29967 -a(S'encoding_rule/0' -p29968 -S'encoding_rule() $1' -p29969 -tp29970 -a(S'info/0' -p29971 -S'info() $1' -p29972 -tp29973 -asS'megaco_ber_bin_drv_media_gateway_control_v2' -p29974 -(lp29975 -(S"'dec_ActionReply'/2" -p29976 -S"'dec_ActionReply'(${1:Tlv}, ${2:TagIn}) $3" -p29977 -tp29978 -a(S"'dec_ActionRequest'/2" -p29979 -S"'dec_ActionRequest'(${1:Tlv}, ${2:TagIn}) $3" -p29980 -tp29981 -a(S"'dec_AmmDescriptor'/2" -p29982 -S"'dec_AmmDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p29983 -tp29984 -a(S"'dec_AmmRequest'/2" -p29985 -S"'dec_AmmRequest'(${1:Tlv}, ${2:TagIn}) $3" -p29986 -tp29987 -a(S"'dec_AmmsReply'/2" -p29988 -S"'dec_AmmsReply'(${1:Tlv}, ${2:TagIn}) $3" -p29989 -tp29990 -a(S"'dec_AuditDescriptor'/2" -p29991 -S"'dec_AuditDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p29992 -tp29993 -a(S"'dec_AuditReply'/2" -p29994 -S"'dec_AuditReply'(${1:Tlv}, ${2:TagIn}) $3" -p29995 -tp29996 -a(S"'dec_AuditRequest'/2" -p29997 -S"'dec_AuditRequest'(${1:Tlv}, ${2:TagIn}) $3" -p29998 -tp29999 -a(S"'dec_AuditResult'/2" -p30000 -S"'dec_AuditResult'(${1:Tlv}, ${2:TagIn}) $3" -p30001 -tp30002 -a(S"'dec_AuditReturnParameter'/2" -p30003 -S"'dec_AuditReturnParameter'(${1:Tlv}, ${2:TagIn}) $3" -p30004 -tp30005 -a(S"'dec_AuthData'/2" -p30006 -S"'dec_AuthData'(${1:Tlv}, ${2:TagIn}) $3" -p30007 -tp30008 -a(S"'dec_AuthenticationHeader'/2" -p30009 -S"'dec_AuthenticationHeader'(${1:Tlv}, ${2:TagIn}) $3" -p30010 -tp30011 -a(S"'dec_Command'/2" -p30012 -S"'dec_Command'(${1:Tlv}, ${2:TagIn}) $3" -p30013 -tp30014 -a(S"'dec_CommandReply'/2" -p30015 -S"'dec_CommandReply'(${1:Tlv}, ${2:TagIn}) $3" -p30016 -tp30017 -a(S"'dec_CommandRequest'/2" -p30018 -S"'dec_CommandRequest'(${1:Tlv}, ${2:TagIn}) $3" -p30019 -tp30020 -a(S"'dec_ContextAttrAuditRequest'/2" -p30021 -S"'dec_ContextAttrAuditRequest'(${1:Tlv}, ${2:TagIn}) $3" -p30022 -tp30023 -a(S"'dec_ContextID'/2" -p30024 -S"'dec_ContextID'(${1:Tlv}, ${2:TagIn}) $3" -p30025 -tp30026 -a(S"'dec_ContextRequest'/2" -p30027 -S"'dec_ContextRequest'(${1:Tlv}, ${2:TagIn}) $3" -p30028 -tp30029 -a(S"'dec_DigitMapDescriptor'/2" -p30030 -S"'dec_DigitMapDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p30031 -tp30032 -a(S"'dec_DigitMapName'/2" -p30033 -S"'dec_DigitMapName'(${1:Tlv}, ${2:TagIn}) $3" -p30034 -tp30035 -a(S"'dec_DigitMapValue'/2" -p30036 -S"'dec_DigitMapValue'(${1:Tlv}, ${2:TagIn}) $3" -p30037 -tp30038 -a(S"'dec_DomainName'/2" -p30039 -S"'dec_DomainName'(${1:Tlv}, ${2:TagIn}) $3" -p30040 -tp30041 -a(S"'dec_ErrorCode'/2" -p30042 -S"'dec_ErrorCode'(${1:Tlv}, ${2:TagIn}) $3" -p30043 -tp30044 -a(S"'dec_ErrorDescriptor'/2" -p30045 -S"'dec_ErrorDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p30046 -tp30047 -a(S"'dec_ErrorText'/2" -p30048 -S"'dec_ErrorText'(${1:Tlv}, ${2:TagIn}) $3" -p30049 -tp30050 -a(S"'dec_EventBufferControl'/2" -p30051 -S"'dec_EventBufferControl'(${1:Tlv}, ${2:TagIn}) $3" -p30052 -tp30053 -a(S"'dec_EventBufferDescriptor'/2" -p30054 -S"'dec_EventBufferDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p30055 -tp30056 -a(S"'dec_EventDM'/2" -p30057 -S"'dec_EventDM'(${1:Tlv}, ${2:TagIn}) $3" -p30058 -tp30059 -a(S"'dec_EventName'/2" -p30060 -S"'dec_EventName'(${1:Tlv}, ${2:TagIn}) $3" -p30061 -tp30062 -a(S"'dec_EventParameter'/2" -p30063 -S"'dec_EventParameter'(${1:Tlv}, ${2:TagIn}) $3" -p30064 -tp30065 -a(S"'dec_EventSpec'/2" -p30066 -S"'dec_EventSpec'(${1:Tlv}, ${2:TagIn}) $3" -p30067 -tp30068 -a(S"'dec_EventsDescriptor'/2" -p30069 -S"'dec_EventsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p30070 -tp30071 -a(S"'dec_H221NonStandard'/2" -p30072 -S"'dec_H221NonStandard'(${1:Tlv}, ${2:TagIn}) $3" -p30073 -tp30074 -a(S"'dec_IP4Address'/2" -p30075 -S"'dec_IP4Address'(${1:Tlv}, ${2:TagIn}) $3" -p30076 -tp30077 -a(S"'dec_IP6Address'/2" -p30078 -S"'dec_IP6Address'(${1:Tlv}, ${2:TagIn}) $3" -p30079 -tp30080 -a(S"'dec_IndAudDigitMapDescriptor'/2" -p30081 -S"'dec_IndAudDigitMapDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p30082 -tp30083 -a(S"'dec_IndAudEventBufferDescriptor'/2" -p30084 -S"'dec_IndAudEventBufferDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p30085 -tp30086 -a(S"'dec_IndAudEventsDescriptor'/2" -p30087 -S"'dec_IndAudEventsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p30088 -tp30089 -a(S"'dec_IndAudLocalControlDescriptor'/2" -p30090 -S"'dec_IndAudLocalControlDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p30091 -tp30092 -a(S"'dec_IndAudLocalRemoteDescriptor'/2" -p30093 -S"'dec_IndAudLocalRemoteDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p30094 -tp30095 -a(S"'dec_IndAudMediaDescriptor'/2" -p30096 -S"'dec_IndAudMediaDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p30097 -tp30098 -a(S"'dec_IndAudPackagesDescriptor'/2" -p30099 -S"'dec_IndAudPackagesDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p30100 -tp30101 -a(S"'dec_IndAudPropertyGroup'/2" -p30102 -S"'dec_IndAudPropertyGroup'(${1:Tlv}, ${2:TagIn}) $3" -p30103 -tp30104 -a(S"'dec_IndAudPropertyParm'/2" -p30105 -S"'dec_IndAudPropertyParm'(${1:Tlv}, ${2:TagIn}) $3" -p30106 -tp30107 -a(S"'dec_IndAudSeqSigList'/2" -p30108 -S"'dec_IndAudSeqSigList'(${1:Tlv}, ${2:TagIn}) $3" -p30109 -tp30110 -a(S"'dec_IndAudSignal'/2" -p30111 -S"'dec_IndAudSignal'(${1:Tlv}, ${2:TagIn}) $3" -p30112 -tp30113 -a(S"'dec_IndAudSignalsDescriptor'/2" -p30114 -S"'dec_IndAudSignalsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p30115 -tp30116 -a(S"'dec_IndAudStatisticsDescriptor'/2" -p30117 -S"'dec_IndAudStatisticsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p30118 -tp30119 -a(S"'dec_IndAudStreamDescriptor'/2" -p30120 -S"'dec_IndAudStreamDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p30121 -tp30122 -a(S"'dec_IndAudStreamParms'/2" -p30123 -S"'dec_IndAudStreamParms'(${1:Tlv}, ${2:TagIn}) $3" -p30124 -tp30125 -a(S"'dec_IndAudTerminationStateDescriptor'/2" -p30126 -S"'dec_IndAudTerminationStateDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p30127 -tp30128 -a(S"'dec_IndAuditParameter'/2" -p30129 -S"'dec_IndAuditParameter'(${1:Tlv}, ${2:TagIn}) $3" -p30130 -tp30131 -a(S"'dec_LocalControlDescriptor'/2" -p30132 -S"'dec_LocalControlDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p30133 -tp30134 -a(S"'dec_LocalRemoteDescriptor'/2" -p30135 -S"'dec_LocalRemoteDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p30136 -tp30137 -a(S"'dec_MId'/2" -p30138 -S"'dec_MId'(${1:Tlv}, ${2:TagIn}) $3" -p30139 -tp30140 -a(S"'dec_MediaDescriptor'/2" -p30141 -S"'dec_MediaDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p30142 -tp30143 -a(S"'dec_MegacoMessage'/2" -p30144 -S"'dec_MegacoMessage'(${1:Tlv}, ${2:TagIn}) $3" -p30145 -tp30146 -a(S"'dec_Message'/2" -p30147 -S"'dec_Message'(${1:Tlv}, ${2:TagIn}) $3" -p30148 -tp30149 -a(S"'dec_ModemDescriptor'/2" -p30150 -S"'dec_ModemDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p30151 -tp30152 -a(S"'dec_ModemType'/2" -p30153 -S"'dec_ModemType'(${1:Tlv}, ${2:TagIn}) $3" -p30154 -tp30155 -a(S"'dec_MuxDescriptor'/2" -p30156 -S"'dec_MuxDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p30157 -tp30158 -a(S"'dec_MuxType'/2" -p30159 -S"'dec_MuxType'(${1:Tlv}, ${2:TagIn}) $3" -p30160 -tp30161 -a(S"'dec_Name'/2" -p30162 -S"'dec_Name'(${1:Tlv}, ${2:TagIn}) $3" -p30163 -tp30164 -a(S"'dec_NonStandardData'/2" -p30165 -S"'dec_NonStandardData'(${1:Tlv}, ${2:TagIn}) $3" -p30166 -tp30167 -a(S"'dec_NonStandardIdentifier'/2" -p30168 -S"'dec_NonStandardIdentifier'(${1:Tlv}, ${2:TagIn}) $3" -p30169 -tp30170 -a(S"'dec_NotifyCompletion'/2" -p30171 -S"'dec_NotifyCompletion'(${1:Tlv}, ${2:TagIn}) $3" -p30172 -tp30173 -a(S"'dec_NotifyReply'/2" -p30174 -S"'dec_NotifyReply'(${1:Tlv}, ${2:TagIn}) $3" -p30175 -tp30176 -a(S"'dec_NotifyRequest'/2" -p30177 -S"'dec_NotifyRequest'(${1:Tlv}, ${2:TagIn}) $3" -p30178 -tp30179 -a(S"'dec_ObservedEvent'/2" -p30180 -S"'dec_ObservedEvent'(${1:Tlv}, ${2:TagIn}) $3" -p30181 -tp30182 -a(S"'dec_ObservedEventsDescriptor'/2" -p30183 -S"'dec_ObservedEventsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p30184 -tp30185 -a(S"'dec_PackagesDescriptor'/2" -p30186 -S"'dec_PackagesDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p30187 -tp30188 -a(S"'dec_PackagesItem'/2" -p30189 -S"'dec_PackagesItem'(${1:Tlv}, ${2:TagIn}) $3" -p30190 -tp30191 -a(S"'dec_PathName'/2" -p30192 -S"'dec_PathName'(${1:Tlv}, ${2:TagIn}) $3" -p30193 -tp30194 -a(S"'dec_PkgdName'/2" -p30195 -S"'dec_PkgdName'(${1:Tlv}, ${2:TagIn}) $3" -p30196 -tp30197 -a(S"'dec_PropertyGroup'/2" -p30198 -S"'dec_PropertyGroup'(${1:Tlv}, ${2:TagIn}) $3" -p30199 -tp30200 -a(S"'dec_PropertyParm'/2" -p30201 -S"'dec_PropertyParm'(${1:Tlv}, ${2:TagIn}) $3" -p30202 -tp30203 -a(S"'dec_Relation'/2" -p30204 -S"'dec_Relation'(${1:Tlv}, ${2:TagIn}) $3" -p30205 -tp30206 -a(S"'dec_RequestID'/2" -p30207 -S"'dec_RequestID'(${1:Tlv}, ${2:TagIn}) $3" -p30208 -tp30209 -a(S"'dec_RequestedActions'/2" -p30210 -S"'dec_RequestedActions'(${1:Tlv}, ${2:TagIn}) $3" -p30211 -tp30212 -a(S"'dec_RequestedEvent'/2" -p30213 -S"'dec_RequestedEvent'(${1:Tlv}, ${2:TagIn}) $3" -p30214 -tp30215 -a(S"'dec_SecondEventsDescriptor'/2" -p30216 -S"'dec_SecondEventsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p30217 -tp30218 -a(S"'dec_SecondRequestedActions'/2" -p30219 -S"'dec_SecondRequestedActions'(${1:Tlv}, ${2:TagIn}) $3" -p30220 -tp30221 -a(S"'dec_SecondRequestedEvent'/2" -p30222 -S"'dec_SecondRequestedEvent'(${1:Tlv}, ${2:TagIn}) $3" -p30223 -tp30224 -a(S"'dec_SecurityParmIndex'/2" -p30225 -S"'dec_SecurityParmIndex'(${1:Tlv}, ${2:TagIn}) $3" -p30226 -tp30227 -a(S"'dec_SeqSigList'/2" -p30228 -S"'dec_SeqSigList'(${1:Tlv}, ${2:TagIn}) $3" -p30229 -tp30230 -a(S"'dec_SequenceNum'/2" -p30231 -S"'dec_SequenceNum'(${1:Tlv}, ${2:TagIn}) $3" -p30232 -tp30233 -a(S"'dec_ServiceChangeAddress'/2" -p30234 -S"'dec_ServiceChangeAddress'(${1:Tlv}, ${2:TagIn}) $3" -p30235 -tp30236 -a(S"'dec_ServiceChangeMethod'/2" -p30237 -S"'dec_ServiceChangeMethod'(${1:Tlv}, ${2:TagIn}) $3" -p30238 -tp30239 -a(S"'dec_ServiceChangeParm'/2" -p30240 -S"'dec_ServiceChangeParm'(${1:Tlv}, ${2:TagIn}) $3" -p30241 -tp30242 -a(S"'dec_ServiceChangeProfile'/2" -p30243 -S"'dec_ServiceChangeProfile'(${1:Tlv}, ${2:TagIn}) $3" -p30244 -tp30245 -a(S"'dec_ServiceChangeReply'/2" -p30246 -S"'dec_ServiceChangeReply'(${1:Tlv}, ${2:TagIn}) $3" -p30247 -tp30248 -a(S"'dec_ServiceChangeRequest'/2" -p30249 -S"'dec_ServiceChangeRequest'(${1:Tlv}, ${2:TagIn}) $3" -p30250 -tp30251 -a(S"'dec_ServiceChangeResParm'/2" -p30252 -S"'dec_ServiceChangeResParm'(${1:Tlv}, ${2:TagIn}) $3" -p30253 -tp30254 -a(S"'dec_ServiceChangeResult'/2" -p30255 -S"'dec_ServiceChangeResult'(${1:Tlv}, ${2:TagIn}) $3" -p30256 -tp30257 -a(S"'dec_ServiceState'/2" -p30258 -S"'dec_ServiceState'(${1:Tlv}, ${2:TagIn}) $3" -p30259 -tp30260 -a(S"'dec_SigParameter'/2" -p30261 -S"'dec_SigParameter'(${1:Tlv}, ${2:TagIn}) $3" -p30262 -tp30263 -a(S"'dec_Signal'/2" -p30264 -S"'dec_Signal'(${1:Tlv}, ${2:TagIn}) $3" -p30265 -tp30266 -a(S"'dec_SignalName'/2" -p30267 -S"'dec_SignalName'(${1:Tlv}, ${2:TagIn}) $3" -p30268 -tp30269 -a(S"'dec_SignalRequest'/2" -p30270 -S"'dec_SignalRequest'(${1:Tlv}, ${2:TagIn}) $3" -p30271 -tp30272 -a(S"'dec_SignalType'/2" -p30273 -S"'dec_SignalType'(${1:Tlv}, ${2:TagIn}) $3" -p30274 -tp30275 -a(S"'dec_SignalsDescriptor'/2" -p30276 -S"'dec_SignalsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p30277 -tp30278 -a(S"'dec_StatisticsDescriptor'/2" -p30279 -S"'dec_StatisticsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p30280 -tp30281 -a(S"'dec_StatisticsParameter'/2" -p30282 -S"'dec_StatisticsParameter'(${1:Tlv}, ${2:TagIn}) $3" -p30283 -tp30284 -a(S"'dec_StreamDescriptor'/2" -p30285 -S"'dec_StreamDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p30286 -tp30287 -a(S"'dec_StreamID'/2" -p30288 -S"'dec_StreamID'(${1:Tlv}, ${2:TagIn}) $3" -p30289 -tp30290 -a(S"'dec_StreamMode'/2" -p30291 -S"'dec_StreamMode'(${1:Tlv}, ${2:TagIn}) $3" -p30292 -tp30293 -a(S"'dec_StreamParms'/2" -p30294 -S"'dec_StreamParms'(${1:Tlv}, ${2:TagIn}) $3" -p30295 -tp30296 -a(S"'dec_SubtractRequest'/2" -p30297 -S"'dec_SubtractRequest'(${1:Tlv}, ${2:TagIn}) $3" -p30298 -tp30299 -a(S"'dec_TerminationAudit'/2" -p30300 -S"'dec_TerminationAudit'(${1:Tlv}, ${2:TagIn}) $3" -p30301 -tp30302 -a(S"'dec_TerminationID'/2" -p30303 -S"'dec_TerminationID'(${1:Tlv}, ${2:TagIn}) $3" -p30304 -tp30305 -a(S"'dec_TerminationIDList'/2" -p30306 -S"'dec_TerminationIDList'(${1:Tlv}, ${2:TagIn}) $3" -p30307 -tp30308 -a(S"'dec_TerminationStateDescriptor'/2" -p30309 -S"'dec_TerminationStateDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p30310 -tp30311 -a(S"'dec_TimeNotation'/2" -p30312 -S"'dec_TimeNotation'(${1:Tlv}, ${2:TagIn}) $3" -p30313 -tp30314 -a(S"'dec_TopologyRequest'/2" -p30315 -S"'dec_TopologyRequest'(${1:Tlv}, ${2:TagIn}) $3" -p30316 -tp30317 -a(S"'dec_Transaction'/2" -p30318 -S"'dec_Transaction'(${1:Tlv}, ${2:TagIn}) $3" -p30319 -tp30320 -a(S"'dec_TransactionAck'/2" -p30321 -S"'dec_TransactionAck'(${1:Tlv}, ${2:TagIn}) $3" -p30322 -tp30323 -a(S"'dec_TransactionId'/2" -p30324 -S"'dec_TransactionId'(${1:Tlv}, ${2:TagIn}) $3" -p30325 -tp30326 -a(S"'dec_TransactionPending'/2" -p30327 -S"'dec_TransactionPending'(${1:Tlv}, ${2:TagIn}) $3" -p30328 -tp30329 -a(S"'dec_TransactionReply'/2" -p30330 -S"'dec_TransactionReply'(${1:Tlv}, ${2:TagIn}) $3" -p30331 -tp30332 -a(S"'dec_TransactionRequest'/2" -p30333 -S"'dec_TransactionRequest'(${1:Tlv}, ${2:TagIn}) $3" -p30334 -tp30335 -a(S"'dec_TransactionResponseAck'/2" -p30336 -S"'dec_TransactionResponseAck'(${1:Tlv}, ${2:TagIn}) $3" -p30337 -tp30338 -a(S"'dec_Value'/2" -p30339 -S"'dec_Value'(${1:Tlv}, ${2:TagIn}) $3" -p30340 -tp30341 -a(S"'dec_WildcardField'/2" -p30342 -S"'dec_WildcardField'(${1:Tlv}, ${2:TagIn}) $3" -p30343 -tp30344 -a(S"'enc_ActionReply'/2" -p30345 -S"'enc_ActionReply'(${1:Val}, ${2:TagIn}) $3" -p30346 -tp30347 -a(S"'enc_ActionRequest'/2" -p30348 -S"'enc_ActionRequest'(${1:Val}, ${2:TagIn}) $3" -p30349 -tp30350 -a(S"'enc_AmmDescriptor'/2" -p30351 -S"'enc_AmmDescriptor'(${1:Val}, ${2:TagIn}) $3" -p30352 -tp30353 -a(S"'enc_AmmRequest'/2" -p30354 -S"'enc_AmmRequest'(${1:Val}, ${2:TagIn}) $3" -p30355 -tp30356 -a(S"'enc_AmmsReply'/2" -p30357 -S"'enc_AmmsReply'(${1:Val}, ${2:TagIn}) $3" -p30358 -tp30359 -a(S"'enc_AuditDescriptor'/2" -p30360 -S"'enc_AuditDescriptor'(${1:Val}, ${2:TagIn}) $3" -p30361 -tp30362 -a(S"'enc_AuditReply'/2" -p30363 -S"'enc_AuditReply'(${1:Val}, ${2:TagIn}) $3" -p30364 -tp30365 -a(S"'enc_AuditRequest'/2" -p30366 -S"'enc_AuditRequest'(${1:Val}, ${2:TagIn}) $3" -p30367 -tp30368 -a(S"'enc_AuditResult'/2" -p30369 -S"'enc_AuditResult'(${1:Val}, ${2:TagIn}) $3" -p30370 -tp30371 -a(S"'enc_AuditReturnParameter'/2" -p30372 -S"'enc_AuditReturnParameter'(${1:Val}, ${2:TagIn}) $3" -p30373 -tp30374 -a(S"'enc_AuthData'/2" -p30375 -S"'enc_AuthData'(${1:Val}, ${2:TagIn}) $3" -p30376 -tp30377 -a(S"'enc_AuthenticationHeader'/2" -p30378 -S"'enc_AuthenticationHeader'(${1:Val}, ${2:TagIn}) $3" -p30379 -tp30380 -a(S"'enc_Command'/2" -p30381 -S"'enc_Command'(${1:Val}, ${2:TagIn}) $3" -p30382 -tp30383 -a(S"'enc_CommandReply'/2" -p30384 -S"'enc_CommandReply'(${1:Val}, ${2:TagIn}) $3" -p30385 -tp30386 -a(S"'enc_CommandRequest'/2" -p30387 -S"'enc_CommandRequest'(${1:Val}, ${2:TagIn}) $3" -p30388 -tp30389 -a(S"'enc_ContextAttrAuditRequest'/2" -p30390 -S"'enc_ContextAttrAuditRequest'(${1:Val}, ${2:TagIn}) $3" -p30391 -tp30392 -a(S"'enc_ContextID'/2" -p30393 -S"'enc_ContextID'(${1:Val}, ${2:TagIn}) $3" -p30394 -tp30395 -a(S"'enc_ContextRequest'/2" -p30396 -S"'enc_ContextRequest'(${1:Val}, ${2:TagIn}) $3" -p30397 -tp30398 -a(S"'enc_DigitMapDescriptor'/2" -p30399 -S"'enc_DigitMapDescriptor'(${1:Val}, ${2:TagIn}) $3" -p30400 -tp30401 -a(S"'enc_DigitMapName'/2" -p30402 -S"'enc_DigitMapName'(${1:Val}, ${2:TagIn}) $3" -p30403 -tp30404 -a(S"'enc_DigitMapValue'/2" -p30405 -S"'enc_DigitMapValue'(${1:Val}, ${2:TagIn}) $3" -p30406 -tp30407 -a(S"'enc_DomainName'/2" -p30408 -S"'enc_DomainName'(${1:Val}, ${2:TagIn}) $3" -p30409 -tp30410 -a(S"'enc_ErrorCode'/2" -p30411 -S"'enc_ErrorCode'(${1:Val}, ${2:TagIn}) $3" -p30412 -tp30413 -a(S"'enc_ErrorDescriptor'/2" -p30414 -S"'enc_ErrorDescriptor'(${1:Val}, ${2:TagIn}) $3" -p30415 -tp30416 -a(S"'enc_ErrorText'/2" -p30417 -S"'enc_ErrorText'(${1:Val}, ${2:TagIn}) $3" -p30418 -tp30419 -a(S"'enc_EventBufferControl'/2" -p30420 -S"'enc_EventBufferControl'(${1:Val}, ${2:TagIn}) $3" -p30421 -tp30422 -a(S"'enc_EventBufferDescriptor'/2" -p30423 -S"'enc_EventBufferDescriptor'(${1:Val}, ${2:TagIn}) $3" -p30424 -tp30425 -a(S"'enc_EventDM'/2" -p30426 -S"'enc_EventDM'(${1:Val}, ${2:TagIn}) $3" -p30427 -tp30428 -a(S"'enc_EventName'/2" -p30429 -S"'enc_EventName'(${1:Val}, ${2:TagIn}) $3" -p30430 -tp30431 -a(S"'enc_EventParameter'/2" -p30432 -S"'enc_EventParameter'(${1:Val}, ${2:TagIn}) $3" -p30433 -tp30434 -a(S"'enc_EventSpec'/2" -p30435 -S"'enc_EventSpec'(${1:Val}, ${2:TagIn}) $3" -p30436 -tp30437 -a(S"'enc_EventsDescriptor'/2" -p30438 -S"'enc_EventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p30439 -tp30440 -a(S"'enc_H221NonStandard'/2" -p30441 -S"'enc_H221NonStandard'(${1:Val}, ${2:TagIn}) $3" -p30442 -tp30443 -a(S"'enc_IP4Address'/2" -p30444 -S"'enc_IP4Address'(${1:Val}, ${2:TagIn}) $3" -p30445 -tp30446 -a(S"'enc_IP6Address'/2" -p30447 -S"'enc_IP6Address'(${1:Val}, ${2:TagIn}) $3" -p30448 -tp30449 -a(S"'enc_IndAudDigitMapDescriptor'/2" -p30450 -S"'enc_IndAudDigitMapDescriptor'(${1:Val}, ${2:TagIn}) $3" -p30451 -tp30452 -a(S"'enc_IndAudEventBufferDescriptor'/2" -p30453 -S"'enc_IndAudEventBufferDescriptor'(${1:Val}, ${2:TagIn}) $3" -p30454 -tp30455 -a(S"'enc_IndAudEventsDescriptor'/2" -p30456 -S"'enc_IndAudEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p30457 -tp30458 -a(S"'enc_IndAudLocalControlDescriptor'/2" -p30459 -S"'enc_IndAudLocalControlDescriptor'(${1:Val}, ${2:TagIn}) $3" -p30460 -tp30461 -a(S"'enc_IndAudLocalRemoteDescriptor'/2" -p30462 -S"'enc_IndAudLocalRemoteDescriptor'(${1:Val}, ${2:TagIn}) $3" -p30463 -tp30464 -a(S"'enc_IndAudMediaDescriptor'/2" -p30465 -S"'enc_IndAudMediaDescriptor'(${1:Val}, ${2:TagIn}) $3" -p30466 -tp30467 -a(S"'enc_IndAudPackagesDescriptor'/2" -p30468 -S"'enc_IndAudPackagesDescriptor'(${1:Val}, ${2:TagIn}) $3" -p30469 -tp30470 -a(S"'enc_IndAudPropertyGroup'/2" -p30471 -S"'enc_IndAudPropertyGroup'(${1:Val}, ${2:TagIn}) $3" -p30472 -tp30473 -a(S"'enc_IndAudPropertyParm'/2" -p30474 -S"'enc_IndAudPropertyParm'(${1:Val}, ${2:TagIn}) $3" -p30475 -tp30476 -a(S"'enc_IndAudSeqSigList'/2" -p30477 -S"'enc_IndAudSeqSigList'(${1:Val}, ${2:TagIn}) $3" -p30478 -tp30479 -a(S"'enc_IndAudSignal'/2" -p30480 -S"'enc_IndAudSignal'(${1:Val}, ${2:TagIn}) $3" -p30481 -tp30482 -a(S"'enc_IndAudSignalsDescriptor'/2" -p30483 -S"'enc_IndAudSignalsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p30484 -tp30485 -a(S"'enc_IndAudStatisticsDescriptor'/2" -p30486 -S"'enc_IndAudStatisticsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p30487 -tp30488 -a(S"'enc_IndAudStreamDescriptor'/2" -p30489 -S"'enc_IndAudStreamDescriptor'(${1:Val}, ${2:TagIn}) $3" -p30490 -tp30491 -a(S"'enc_IndAudStreamParms'/2" -p30492 -S"'enc_IndAudStreamParms'(${1:Val}, ${2:TagIn}) $3" -p30493 -tp30494 -a(S"'enc_IndAudTerminationStateDescriptor'/2" -p30495 -S"'enc_IndAudTerminationStateDescriptor'(${1:Val}, ${2:TagIn}) $3" -p30496 -tp30497 -a(S"'enc_IndAuditParameter'/2" -p30498 -S"'enc_IndAuditParameter'(${1:Val}, ${2:TagIn}) $3" -p30499 -tp30500 -a(S"'enc_LocalControlDescriptor'/2" -p30501 -S"'enc_LocalControlDescriptor'(${1:Val}, ${2:TagIn}) $3" -p30502 -tp30503 -a(S"'enc_LocalRemoteDescriptor'/2" -p30504 -S"'enc_LocalRemoteDescriptor'(${1:Val}, ${2:TagIn}) $3" -p30505 -tp30506 -a(S"'enc_MId'/2" -p30507 -S"'enc_MId'(${1:Val}, ${2:TagIn}) $3" -p30508 -tp30509 -a(S"'enc_MediaDescriptor'/2" -p30510 -S"'enc_MediaDescriptor'(${1:Val}, ${2:TagIn}) $3" -p30511 -tp30512 -a(S"'enc_MegacoMessage'/2" -p30513 -S"'enc_MegacoMessage'(${1:Val}, ${2:TagIn}) $3" -p30514 -tp30515 -a(S"'enc_Message'/2" -p30516 -S"'enc_Message'(${1:Val}, ${2:TagIn}) $3" -p30517 -tp30518 -a(S"'enc_ModemDescriptor'/2" -p30519 -S"'enc_ModemDescriptor'(${1:Val}, ${2:TagIn}) $3" -p30520 -tp30521 -a(S"'enc_ModemType'/2" -p30522 -S"'enc_ModemType'(${1:Val}, ${2:TagIn}) $3" -p30523 -tp30524 -a(S"'enc_MuxDescriptor'/2" -p30525 -S"'enc_MuxDescriptor'(${1:Val}, ${2:TagIn}) $3" -p30526 -tp30527 -a(S"'enc_MuxType'/2" -p30528 -S"'enc_MuxType'(${1:Val}, ${2:TagIn}) $3" -p30529 -tp30530 -a(S"'enc_Name'/2" -p30531 -S"'enc_Name'(${1:Val}, ${2:TagIn}) $3" -p30532 -tp30533 -a(S"'enc_NonStandardData'/2" -p30534 -S"'enc_NonStandardData'(${1:Val}, ${2:TagIn}) $3" -p30535 -tp30536 -a(S"'enc_NonStandardIdentifier'/2" -p30537 -S"'enc_NonStandardIdentifier'(${1:Val}, ${2:TagIn}) $3" -p30538 -tp30539 -a(S"'enc_NotifyCompletion'/2" -p30540 -S"'enc_NotifyCompletion'(${1:Val}, ${2:TagIn}) $3" -p30541 -tp30542 -a(S"'enc_NotifyReply'/2" -p30543 -S"'enc_NotifyReply'(${1:Val}, ${2:TagIn}) $3" -p30544 -tp30545 -a(S"'enc_NotifyRequest'/2" -p30546 -S"'enc_NotifyRequest'(${1:Val}, ${2:TagIn}) $3" -p30547 -tp30548 -a(S"'enc_ObservedEvent'/2" -p30549 -S"'enc_ObservedEvent'(${1:Val}, ${2:TagIn}) $3" -p30550 -tp30551 -a(S"'enc_ObservedEventsDescriptor'/2" -p30552 -S"'enc_ObservedEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p30553 -tp30554 -a(S"'enc_PackagesDescriptor'/2" -p30555 -S"'enc_PackagesDescriptor'(${1:Val}, ${2:TagIn}) $3" -p30556 -tp30557 -a(S"'enc_PackagesItem'/2" -p30558 -S"'enc_PackagesItem'(${1:Val}, ${2:TagIn}) $3" -p30559 -tp30560 -a(S"'enc_PathName'/2" -p30561 -S"'enc_PathName'(${1:Val}, ${2:TagIn}) $3" -p30562 -tp30563 -a(S"'enc_PkgdName'/2" -p30564 -S"'enc_PkgdName'(${1:Val}, ${2:TagIn}) $3" -p30565 -tp30566 -a(S"'enc_PropertyGroup'/2" -p30567 -S"'enc_PropertyGroup'(${1:Val}, ${2:TagIn}) $3" -p30568 -tp30569 -a(S"'enc_PropertyParm'/2" -p30570 -S"'enc_PropertyParm'(${1:Val}, ${2:TagIn}) $3" -p30571 -tp30572 -a(S"'enc_Relation'/2" -p30573 -S"'enc_Relation'(${1:Val}, ${2:TagIn}) $3" -p30574 -tp30575 -a(S"'enc_RequestID'/2" -p30576 -S"'enc_RequestID'(${1:Val}, ${2:TagIn}) $3" -p30577 -tp30578 -a(S"'enc_RequestedActions'/2" -p30579 -S"'enc_RequestedActions'(${1:Val}, ${2:TagIn}) $3" -p30580 -tp30581 -a(S"'enc_RequestedEvent'/2" -p30582 -S"'enc_RequestedEvent'(${1:Val}, ${2:TagIn}) $3" -p30583 -tp30584 -a(S"'enc_SecondEventsDescriptor'/2" -p30585 -S"'enc_SecondEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p30586 -tp30587 -a(S"'enc_SecondRequestedActions'/2" -p30588 -S"'enc_SecondRequestedActions'(${1:Val}, ${2:TagIn}) $3" -p30589 -tp30590 -a(S"'enc_SecondRequestedEvent'/2" -p30591 -S"'enc_SecondRequestedEvent'(${1:Val}, ${2:TagIn}) $3" -p30592 -tp30593 -a(S"'enc_SecurityParmIndex'/2" -p30594 -S"'enc_SecurityParmIndex'(${1:Val}, ${2:TagIn}) $3" -p30595 -tp30596 -a(S"'enc_SeqSigList'/2" -p30597 -S"'enc_SeqSigList'(${1:Val}, ${2:TagIn}) $3" -p30598 -tp30599 -a(S"'enc_SequenceNum'/2" -p30600 -S"'enc_SequenceNum'(${1:Val}, ${2:TagIn}) $3" -p30601 -tp30602 -a(S"'enc_ServiceChangeAddress'/2" -p30603 -S"'enc_ServiceChangeAddress'(${1:Val}, ${2:TagIn}) $3" -p30604 -tp30605 -a(S"'enc_ServiceChangeMethod'/2" -p30606 -S"'enc_ServiceChangeMethod'(${1:Val}, ${2:TagIn}) $3" -p30607 -tp30608 -a(S"'enc_ServiceChangeParm'/2" -p30609 -S"'enc_ServiceChangeParm'(${1:Val}, ${2:TagIn}) $3" -p30610 -tp30611 -a(S"'enc_ServiceChangeProfile'/2" -p30612 -S"'enc_ServiceChangeProfile'(${1:Val}, ${2:TagIn}) $3" -p30613 -tp30614 -a(S"'enc_ServiceChangeReply'/2" -p30615 -S"'enc_ServiceChangeReply'(${1:Val}, ${2:TagIn}) $3" -p30616 -tp30617 -a(S"'enc_ServiceChangeRequest'/2" -p30618 -S"'enc_ServiceChangeRequest'(${1:Val}, ${2:TagIn}) $3" -p30619 -tp30620 -a(S"'enc_ServiceChangeResParm'/2" -p30621 -S"'enc_ServiceChangeResParm'(${1:Val}, ${2:TagIn}) $3" -p30622 -tp30623 -a(S"'enc_ServiceChangeResult'/2" -p30624 -S"'enc_ServiceChangeResult'(${1:Val}, ${2:TagIn}) $3" -p30625 -tp30626 -a(S"'enc_ServiceState'/2" -p30627 -S"'enc_ServiceState'(${1:Val}, ${2:TagIn}) $3" -p30628 -tp30629 -a(S"'enc_SigParameter'/2" -p30630 -S"'enc_SigParameter'(${1:Val}, ${2:TagIn}) $3" -p30631 -tp30632 -a(S"'enc_Signal'/2" -p30633 -S"'enc_Signal'(${1:Val}, ${2:TagIn}) $3" -p30634 -tp30635 -a(S"'enc_SignalName'/2" -p30636 -S"'enc_SignalName'(${1:Val}, ${2:TagIn}) $3" -p30637 -tp30638 -a(S"'enc_SignalRequest'/2" -p30639 -S"'enc_SignalRequest'(${1:Val}, ${2:TagIn}) $3" -p30640 -tp30641 -a(S"'enc_SignalType'/2" -p30642 -S"'enc_SignalType'(${1:Val}, ${2:TagIn}) $3" -p30643 -tp30644 -a(S"'enc_SignalsDescriptor'/2" -p30645 -S"'enc_SignalsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p30646 -tp30647 -a(S"'enc_StatisticsDescriptor'/2" -p30648 -S"'enc_StatisticsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p30649 -tp30650 -a(S"'enc_StatisticsParameter'/2" -p30651 -S"'enc_StatisticsParameter'(${1:Val}, ${2:TagIn}) $3" -p30652 -tp30653 -a(S"'enc_StreamDescriptor'/2" -p30654 -S"'enc_StreamDescriptor'(${1:Val}, ${2:TagIn}) $3" -p30655 -tp30656 -a(S"'enc_StreamID'/2" -p30657 -S"'enc_StreamID'(${1:Val}, ${2:TagIn}) $3" -p30658 -tp30659 -a(S"'enc_StreamMode'/2" -p30660 -S"'enc_StreamMode'(${1:Val}, ${2:TagIn}) $3" -p30661 -tp30662 -a(S"'enc_StreamParms'/2" -p30663 -S"'enc_StreamParms'(${1:Val}, ${2:TagIn}) $3" -p30664 -tp30665 -a(S"'enc_SubtractRequest'/2" -p30666 -S"'enc_SubtractRequest'(${1:Val}, ${2:TagIn}) $3" -p30667 -tp30668 -a(S"'enc_TerminationAudit'/2" -p30669 -S"'enc_TerminationAudit'(${1:Val}, ${2:TagIn}) $3" -p30670 -tp30671 -a(S"'enc_TerminationID'/2" -p30672 -S"'enc_TerminationID'(${1:Val}, ${2:TagIn}) $3" -p30673 -tp30674 -a(S"'enc_TerminationIDList'/2" -p30675 -S"'enc_TerminationIDList'(${1:Val}, ${2:TagIn}) $3" -p30676 -tp30677 -a(S"'enc_TerminationStateDescriptor'/2" -p30678 -S"'enc_TerminationStateDescriptor'(${1:Val}, ${2:TagIn}) $3" -p30679 -tp30680 -a(S"'enc_TimeNotation'/2" -p30681 -S"'enc_TimeNotation'(${1:Val}, ${2:TagIn}) $3" -p30682 -tp30683 -a(S"'enc_TopologyRequest'/2" -p30684 -S"'enc_TopologyRequest'(${1:Val}, ${2:TagIn}) $3" -p30685 -tp30686 -a(S"'enc_Transaction'/2" -p30687 -S"'enc_Transaction'(${1:Val}, ${2:TagIn}) $3" -p30688 -tp30689 -a(S"'enc_TransactionAck'/2" -p30690 -S"'enc_TransactionAck'(${1:Val}, ${2:TagIn}) $3" -p30691 -tp30692 -a(S"'enc_TransactionId'/2" -p30693 -S"'enc_TransactionId'(${1:Val}, ${2:TagIn}) $3" -p30694 -tp30695 -a(S"'enc_TransactionPending'/2" -p30696 -S"'enc_TransactionPending'(${1:Val}, ${2:TagIn}) $3" -p30697 -tp30698 -a(S"'enc_TransactionReply'/2" -p30699 -S"'enc_TransactionReply'(${1:Val}, ${2:TagIn}) $3" -p30700 -tp30701 -a(S"'enc_TransactionRequest'/2" -p30702 -S"'enc_TransactionRequest'(${1:Val}, ${2:TagIn}) $3" -p30703 -tp30704 -a(S"'enc_TransactionResponseAck'/2" -p30705 -S"'enc_TransactionResponseAck'(${1:Val}, ${2:TagIn}) $3" -p30706 -tp30707 -a(S"'enc_Value'/2" -p30708 -S"'enc_Value'(${1:Val}, ${2:TagIn}) $3" -p30709 -tp30710 -a(S"'enc_WildcardField'/2" -p30711 -S"'enc_WildcardField'(${1:Val}, ${2:TagIn}) $3" -p30712 -tp30713 -a(S'decode/2' -p30714 -S'decode(${1:Type}, ${2:Data}) $3' -p30715 -tp30716 -a(S'decode_disp/2' -p30717 -S'decode_disp(${1:Type}, ${2:Data}) $3' -p30718 -tp30719 -a(S'decode_message_acts_partial/1' -p30720 -S'decode_message_acts_partial(${1:Bytes}) $2' -p30721 -tp30722 -a(S'decode_message_mId/1' -p30723 -S'decode_message_mId(${1:Bytes}) $2' -p30724 -tp30725 -a(S'decode_message_trans_partial/1' -p30726 -S'decode_message_trans_partial(${1:Bytes}) $2' -p30727 -tp30728 -a(S'decode_message_version/1' -p30729 -S'decode_message_version(${1:Bytes}) $2' -p30730 -tp30731 -a(S'decode_part/2' -p30732 -S'decode_part(${1:Type}, ${2:Data0}) $3' -p30733 -tp30734 -a(S'encode/2' -p30735 -S'encode(${1:Type}, ${2:Data}) $3' -p30736 -tp30737 -a(S'encode_disp/2' -p30738 -S'encode_disp(${1:Type}, ${2:Data}) $3' -p30739 -tp30740 -a(S'encoding_rule/0' -p30741 -S'encoding_rule() $1' -p30742 -tp30743 -a(S'info/0' -p30744 -S'info() $1' -p30745 -tp30746 -asS'httpd_esi' -p30747 -(lp30748 -(S'handle_headers/1' -p30749 -S'handle_headers(${1:Headers}) $2' -p30750 -tp30751 -a(S'parse_headers/1' -p30752 -S'parse_headers(${1:Data}) $2' -p30753 -tp30754 -asS'mod_auth_plain' -p30755 -(lp30756 -(S'add_group_member/3' -p30757 -S'add_group_member(${1:DirData}, ${2:Group}, ${3:UserName}) $4' -p30758 -tp30759 -a(S'add_user/2' -p30760 -S'add_user(${1:DirData}, ${2:UStruct}) $3' -p30761 -tp30762 -a(S'delete_group/2' -p30763 -S'delete_group(${1:DirData}, ${2:Group}) $3' -p30764 -tp30765 -a(S'delete_group_member/3' -p30766 -S'delete_group_member(${1:DirData}, ${2:Group}, ${3:User}) $4' -p30767 -tp30768 -a(S'delete_user/2' -p30769 -S'delete_user(${1:DirData}, ${2:UserName}) $3' -p30770 -tp30771 -a(S'get_user/2' -p30772 -S'get_user(${1:DirData}, ${2:User}) $3' -p30773 -tp30774 -a(S'list_group_members/2' -p30775 -S'list_group_members(${1:DirData}, ${2:Group}) $3' -p30776 -tp30777 -a(S'list_groups/1' -p30778 -S'list_groups(${1:DirData}) $2' -p30779 -tp30780 -a(S'list_users/1' -p30781 -S'list_users(${1:DirData}) $2' -p30782 -tp30783 -a(S'remove/1' -p30784 -S'remove(${1:DirData}) $2' -p30785 -tp30786 -a(S'store_directory_data/3' -p30787 -S'store_directory_data(${1:Param1}, ${2:DirData}, ${3:Server_root}) $4' -p30788 -tp30789 -asS'tv_pd_display' -p30790 -(lp30791 -(S'display_data/8' -p30792 -S'display_data(${1:Pos}, ${2:Range}, ${3:Param3}, ${4:List}, ${5:KeyList}, ${6:MaxElemSize}, ${7:MarkedRowData}, ${8:ProcVars}) $9' -p30793 -tp30794 -a(S'get_data_element/4' -p30795 -S'get_data_element(${1:Param1}, ${2:DataList}, ${3:RowNo}, ${4:ColNo}) $5' -p30796 -tp30797 -a(S'hide_toolbar_editor/1' -p30798 -S'hide_toolbar_editor(${1:ProcVars}) $2' -p30799 -tp30800 -a(S'init_display/4' -p30801 -S'init_display(${1:WindowId}, ${2:WindowWidth}, ${3:WindowHeight}, ${4:ProcVars}) $5' -p30802 -tp30803 -a(S'marked_cell/5' -p30804 -S'marked_cell(${1:Param1}, ${2:VirtualCol}, ${3:RealRow}, ${4:VirtualRow}, ${5:ProcVars}) $6' -p30805 -tp30806 -a(S'perform_horizontal_scroll/2' -p30807 -S'perform_horizontal_scroll(${1:NewScalePos}, ${2:ProcVars}) $3' -p30808 -tp30809 -a(S'perform_vertical_scroll/2' -p30810 -S'perform_vertical_scroll(${1:NewScalePos}, ${2:ProcVars}) $3' -p30811 -tp30812 -a(S'resize_column/4' -p30813 -S'resize_column(${1:RealCol}, ${2:VirtualCol}, ${3:Xdiff}, ${4:ProcVars}) $5' -p30814 -tp30815 -a(S'resize_display/3' -p30816 -S'resize_display(${1:NewWinW}, ${2:NewWinH}, ${3:ProcVars}) $4' -p30817 -tp30818 -a(S'scroll_horizontally/2' -p30819 -S'scroll_horizontally(${1:MouseBtn}, ${2:ProcVars}) $3' -p30820 -tp30821 -a(S'scroll_vertically/2' -p30822 -S'scroll_vertically(${1:MouseBtn}, ${2:ProcVars}) $3' -p30823 -tp30824 -a(S'show_toolbar_editor/1' -p30825 -S'show_toolbar_editor(${1:ProcVars}) $2' -p30826 -tp30827 -a(S'update_toolbar_editor/2' -p30828 -S'update_toolbar_editor(${1:EdId}, ${2:Param2}) $3' -p30829 -tp30830 -a(S'update_toolbar_label/5' -p30831 -S'update_toolbar_label(${1:Param1}, ${2:ToolP}, ${3:VirtualRowNo}, ${4:VirtualColNo}, ${5:Writable}) $6' -p30832 -tp30833 -asS'tv_rec_edit' -p30834 -(lp30835 -(S'init/8' -p30836 -S'init(${1:TableType}, ${2:TableName}, ${3:AttributeList}, ${4:AttributeValues}, ${5:ListsAsStr}, ${6:ErrMsgMode}, ${7:MasterPid}, ${8:Insert}) $9' -p30837 -tp30838 -a(S'start/5' -p30839 -S'start(${1:TableType}, ${2:TableName}, ${3:AttributeList}, ${4:ListsAsStr}, ${5:ErrMsgMode}) $6' -p30840 -tp30841 -a(S'start/6' -p30842 -S'start(${1:TableType}, ${2:TableName}, ${3:AttributeList}, ${4:AttributeValues}, ${5:ListsAsStr}, ${6:ErrMsgMode}) $7' -p30843 -tp30844 -asS'wxColourPickerEvent' -p30845 -(lp30846 -(S'getClientData/1' -p30847 -S'getClientData(${1:This}) $2' -p30848 -tp30849 -a(S'getColour/1' -p30850 -S'getColour(${1:This}) $2' -p30851 -tp30852 -a(S'getExtraLong/1' -p30853 -S'getExtraLong(${1:This}) $2' -p30854 -tp30855 -a(S'getId/1' -p30856 -S'getId(${1:This}) $2' -p30857 -tp30858 -a(S'getInt/1' -p30859 -S'getInt(${1:This}) $2' -p30860 -tp30861 -a(S'getSelection/1' -p30862 -S'getSelection(${1:This}) $2' -p30863 -tp30864 -a(S'getSkipped/1' -p30865 -S'getSkipped(${1:This}) $2' -p30866 -tp30867 -a(S'getString/1' -p30868 -S'getString(${1:This}) $2' -p30869 -tp30870 -a(S'getTimestamp/1' -p30871 -S'getTimestamp(${1:This}) $2' -p30872 -tp30873 -a(S'isChecked/1' -p30874 -S'isChecked(${1:This}) $2' -p30875 -tp30876 -a(S'isCommandEvent/1' -p30877 -S'isCommandEvent(${1:This}) $2' -p30878 -tp30879 -a(S'isSelection/1' -p30880 -S'isSelection(${1:This}) $2' -p30881 -tp30882 -a(S'parent_class/1' -p30883 -S'parent_class(${1:Param1}) $2' -p30884 -tp30885 -a(S'resumePropagation/2' -p30886 -S'resumePropagation(${1:This}, ${2:PropagationLevel}) $3' -p30887 -tp30888 -a(S'setInt/2' -p30889 -S'setInt(${1:This}, ${2:I}) $3' -p30890 -tp30891 -a(S'setString/2' -p30892 -S'setString(${1:This}, ${2:S}) $3' -p30893 -tp30894 -a(S'shouldPropagate/1' -p30895 -S'shouldPropagate(${1:This}) $2' -p30896 -tp30897 -a(S'skip/1' -p30898 -S'skip(${1:This}) $2' -p30899 -tp30900 -a(S'skip/2' -p30901 -S'skip(${1:This}, ${2:Options}) $3' -p30902 -tp30903 -a(S'stopPropagation/1' -p30904 -S'stopPropagation(${1:This}) $2' -p30905 -tp30906 -asS'icenum' -p30907 -(lp30908 -(S'enum_gen/4' -p30909 -S'enum_gen(${1:G}, ${2:N}, ${3:X}, ${4:Param4}) $5' -p30910 -tp30911 -asS'et_wx_contents_viewer' -p30912 -(lp30913 -(S'code_change/3' -p30914 -S'code_change(${1:Param1}, ${2:S}, ${3:Param3}) $4' -p30915 -tp30916 -a(S'handle_call/3' -p30917 -S'handle_call(${1:Request}, ${2:From}, ${3:S}) $4' -p30918 -tp30919 -a(S'handle_cast/2' -p30920 -S'handle_cast(${1:Msg}, ${2:S}) $3' -p30921 -tp30922 -a(S'handle_event/2' -p30923 -S'handle_event(${1:Param1}, ${2:S}) $3' -p30924 -tp30925 -a(S'handle_info/2' -p30926 -S'handle_info(${1:Info}, ${2:S}) $3' -p30927 -tp30928 -a(S'init/1' -p30929 -S'init(${1:Param1}) $2' -p30930 -tp30931 -a(S'start_link/1' -p30932 -S'start_link(${1:Options}) $2' -p30933 -tp30934 -a(S'stop/1' -p30935 -S'stop(${1:ContentsPid}) $2' -p30936 -tp30937 -a(S'terminate/2' -p30938 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p30939 -tp30940 -asS'xmerl_html' -p30941 -(lp30942 -(S"'#element#'/5" -p30943 -S"'#element#'(${1:Tag}, ${2:Data}, ${3:Attrs}, ${4:Param4}, ${5:Param5}) $6" -p30944 -tp30945 -a(S"'#root#'/4" -p30946 -S"'#root#'(${1:Data}, ${2:Attrs}, ${3:Param3}, ${4:Param4}) $5" -p30947 -tp30948 -a(S"'#text#'/1" -p30949 -S"'#text#'(${1:Text}) $2" -p30950 -tp30951 -a(S"'#xml-inheritance#'/0" -p30952 -S"'#xml-inheritance#'() $1" -p30953 -tp30954 -a(S'p/4' -p30955 -S'p(${1:Data}, ${2:Attrs}, ${3:Param3}, ${4:Param4}) $5' -p30956 -tp30957 -asS'CosNotifyFilter_DuplicateConstraintID' -p30958 -(lp30959 -(S'id/0' -p30960 -S'id() $1' -p30961 -tp30962 -a(S'name/0' -p30963 -S'name() $1' -p30964 -tp30965 -a(S'tc/0' -p30966 -S'tc() $1' -p30967 -tp30968 -asS'application_master' -p30969 -(lp30970 -(S'get_child/1' -p30971 -S'get_child(${1:AppMaster}) $2' -p30972 -tp30973 -a(S'init/4' -p30974 -S'init(${1:Parent}, ${2:Starter}, ${3:ApplData}, ${4:Type}) $5' -p30975 -tp30976 -a(S'start_it/4' -p30977 -S'start_it(${1:Tag}, ${2:State}, ${3:From}, ${4:Type}) $5' -p30978 -tp30979 -a(S'start_link/2' -p30980 -S'start_link(${1:ApplData}, ${2:Type}) $3' -p30981 -tp30982 -a(S'start_type/0' -p30983 -S'start_type() $1' -p30984 -tp30985 -a(S'stop/1' -p30986 -S'stop(${1:AppMaster}) $2' -p30987 -tp30988 -asS'httpd_file' -p30989 -(lp30990 -(S'handle_error/4' -p30991 -S'handle_error(${1:Param1}, ${2:Op}, ${3:ModData}, ${4:Path}) $5' -p30992 -tp30993 -asS'erl_posix_msg' -p30994 -(lp30995 -(S'message/1' -p30996 -S'message(${1:T}) $2' -p30997 -tp30998 -asS'orber_ifr_moduledef' -p30999 -(lp31000 -(S"'_get_absolute_name'/1" -p31001 -S"'_get_absolute_name'() $1" -p31002 -tp31003 -a(S"'_get_containing_repository'/1" -p31004 -S"'_get_containing_repository'() $1" -p31005 -tp31006 -a(S"'_get_def_kind'/1" -p31007 -S"'_get_def_kind'() $1" -p31008 -tp31009 -a(S"'_get_defined_in'/1" -p31010 -S"'_get_defined_in'() $1" -p31011 -tp31012 -a(S"'_get_id'/1" -p31013 -S"'_get_id'() $1" -p31014 -tp31015 -a(S"'_get_name'/1" -p31016 -S"'_get_name'() $1" -p31017 -tp31018 -a(S"'_get_version'/1" -p31019 -S"'_get_version'() $1" -p31020 -tp31021 -a(S"'_set_id'/2" -p31022 -S"'_set_id'() $1" -p31023 -tp31024 -a(S"'_set_name'/2" -p31025 -S"'_set_name'() $1" -p31026 -tp31027 -a(S"'_set_version'/2" -p31028 -S"'_set_version'() $1" -p31029 -tp31030 -a(S'cleanup_for_destroy/1' -p31031 -S'cleanup_for_destroy() $1' -p31032 -tp31033 -a(S'contents/3' -p31034 -S'contents() $1' -p31035 -tp31036 -a(S'create_alias/5' -p31037 -S'create_alias() $1' -p31038 -tp31039 -a(S'create_constant/6' -p31040 -S'create_constant() $1' -p31041 -tp31042 -a(S'create_enum/5' -p31043 -S'create_enum() $1' -p31044 -tp31045 -a(S'create_exception/5' -p31046 -S'create_exception() $1' -p31047 -tp31048 -a(S'create_interface/5' -p31049 -S'create_interface() $1' -p31050 -tp31051 -a(S'create_module/4' -p31052 -S'create_module() $1' -p31053 -tp31054 -a(S'create_struct/5' -p31055 -S'create_struct() $1' -p31056 -tp31057 -a(S'create_union/6' -p31058 -S'create_union() $1' -p31059 -tp31060 -a(S'describe/1' -p31061 -S'describe() $1' -p31062 -tp31063 -a(S'describe_contents/4' -p31064 -S'describe_contents() $1' -p31065 -tp31066 -a(S'destroy/1' -p31067 -S'destroy() $1' -p31068 -tp31069 -a(S'lookup/2' -p31070 -S'lookup() $1' -p31071 -tp31072 -a(S'lookup_name/5' -p31073 -S'lookup_name() $1' -p31074 -tp31075 -a(S'move/4' -p31076 -S'move() $1' -p31077 -tp31078 -asS'wxGraphicsFont' -p31079 -(lp31080 -(S'getRenderer/1' -p31081 -S'getRenderer(${1:This}) $2' -p31082 -tp31083 -a(S'isNull/1' -p31084 -S'isNull(${1:This}) $2' -p31085 -tp31086 -a(S'parent_class/1' -p31087 -S'parent_class(${1:Param1}) $2' -p31088 -tp31089 -asS'CosNotification_QoSAdmin' -p31090 -(lp31091 -(S'code_change/3' -p31092 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p31093 -tp31094 -a(S'get_qos/1' -p31095 -S'get_qos(${1:OE_THIS}) $2' -p31096 -tp31097 -a(S'get_qos/2' -p31098 -S'get_qos(${1:OE_THIS}, ${2:OE_Options}) $3' -p31099 -tp31100 -a(S'handle_call/3' -p31101 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p31102 -tp31103 -a(S'handle_cast/2' -p31104 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p31105 -tp31106 -a(S'handle_info/2' -p31107 -S'handle_info(${1:Param1}, ${2:State}) $3' -p31108 -tp31109 -a(S'init/1' -p31110 -S'init(${1:Env}) $2' -p31111 -tp31112 -a(S'oe_create/0' -p31113 -S'oe_create() $1' -p31114 -tp31115 -a(S'oe_create/1' -p31116 -S'oe_create(${1:Env}) $2' -p31117 -tp31118 -a(S'oe_create/2' -p31119 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p31120 -tp31121 -a(S'oe_create_link/0' -p31122 -S'oe_create_link() $1' -p31123 -tp31124 -a(S'oe_create_link/1' -p31125 -S'oe_create_link(${1:Env}) $2' -p31126 -tp31127 -a(S'oe_create_link/2' -p31128 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p31129 -tp31130 -a(S'oe_get_interface/0' -p31131 -S'oe_get_interface() $1' -p31132 -tp31133 -a(S'oe_is_a/1' -p31134 -S'oe_is_a(${1:Param1}) $2' -p31135 -tp31136 -a(S'oe_tc/1' -p31137 -S'oe_tc(${1:Param1}) $2' -p31138 -tp31139 -a(S'set_qos/2' -p31140 -S'set_qos(${1:OE_THIS}, ${2:Qos}) $3' -p31141 -tp31142 -a(S'set_qos/3' -p31143 -S'set_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Qos}) $4' -p31144 -tp31145 -a(S'terminate/2' -p31146 -S'terminate(${1:Reason}, ${2:State}) $3' -p31147 -tp31148 -a(S'typeID/0' -p31149 -S'typeID() $1' -p31150 -tp31151 -a(S'validate_qos/2' -p31152 -S'validate_qos(${1:OE_THIS}, ${2:Required_qos}) $3' -p31153 -tp31154 -a(S'validate_qos/3' -p31155 -S'validate_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Required_qos}) $4' -p31156 -tp31157 -asS'diameter_service' -p31158 -(lp31159 -(S'call/4' -p31160 -S'call() $1' -p31161 -tp31162 -a(S'call_module/3' -p31163 -S'call_module(${1:Service}, ${2:AppMod}, ${3:Request}) $4' -p31164 -tp31165 -a(S'code_change/3' -p31166 -S'code_change() $1' -p31167 -tp31168 -a(S'flush_stats/1' -p31169 -S'flush_stats(${1:TPid}) $2' -p31170 -tp31171 -a(S'handle_call/3' -p31172 -S'handle_call(${1:Req}, ${2:From}, ${3:S}) $4' -p31173 -tp31174 -a(S'handle_cast/2' -p31175 -S'handle_cast(${1:Req}, ${2:S}) $3' -p31176 -tp31177 -a(S'handle_info/2' -p31178 -S'handle_info(${1:T}, ${2:S}) $3' -p31179 -tp31180 -a(S'info/2' -p31181 -S'info(${1:SvcName}, ${2:Item}) $3' -p31182 -tp31183 -a(S'init/1' -p31184 -S'init(${1:Param1}) $2' -p31185 -tp31186 -a(S'receive_message/3' -p31187 -S'receive_message() $1' -p31188 -tp31189 -a(S'send/1' -p31190 -S'send(${1:Param1}) $2' -p31191 -tp31192 -a(S'services/0' -p31193 -S'services() $1' -p31194 -tp31195 -a(S'services/1' -p31196 -S'services(${1:Pat}) $2' -p31197 -tp31198 -a(S'start/1' -p31199 -S'start(${1:SvcName}) $2' -p31200 -tp31201 -a(S'start_link/1' -p31202 -S'start_link(${1:SvcName}) $2' -p31203 -tp31204 -a(S'start_transport/2' -p31205 -S'start_transport(${1:SvcName}, ${2:T}) $3' -p31206 -tp31207 -a(S'state/1' -p31208 -S'state(${1:Svc}) $2' -p31209 -tp31210 -a(S'stop/1' -p31211 -S'stop(${1:SvcName}) $2' -p31212 -tp31213 -a(S'stop_transport/2' -p31214 -S'stop_transport(${1:SvcName}, ${2:Refs}) $3' -p31215 -tp31216 -a(S'subscribe/1' -p31217 -S'subscribe(${1:SvcName}) $2' -p31218 -tp31219 -a(S'subscriptions/0' -p31220 -S'subscriptions() $1' -p31221 -tp31222 -a(S'subscriptions/1' -p31223 -S'subscriptions(${1:Pat}) $2' -p31224 -tp31225 -a(S'terminate/2' -p31226 -S'terminate(${1:Reason}, ${2:S}) $3' -p31227 -tp31228 -a(S'unsubscribe/1' -p31229 -S'unsubscribe(${1:SvcName}) $2' -p31230 -tp31231 -a(S'uptime/1' -p31232 -S'uptime(${1:Svc}) $2' -p31233 -tp31234 -a(S'whois/1' -p31235 -S'whois(${1:SvcName}) $2' -p31236 -tp31237 -asS'oe_CosNotificationComm_Event' -p31238 -(lp31239 -(S'callAny/3' -p31240 -S'callAny(${1:OE_THIS}, ${2:Event}, ${3:Stat}) $4' -p31241 -tp31242 -a(S'callAny/4' -p31243 -S'callAny(${1:OE_THIS}, ${2:OE_Options}, ${3:Event}, ${4:Stat}) $5' -p31244 -tp31245 -a(S'callSeq/3' -p31246 -S'callSeq(${1:OE_THIS}, ${2:Events}, ${3:Stat}) $4' -p31247 -tp31248 -a(S'callSeq/4' -p31249 -S'callSeq(${1:OE_THIS}, ${2:OE_Options}, ${3:Events}, ${4:Stat}) $5' -p31250 -tp31251 -a(S'code_change/3' -p31252 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p31253 -tp31254 -a(S'handle_call/3' -p31255 -S'handle_call(${1:Param1}, ${2:OE_From}, ${3:OE_State}) $4' -p31256 -tp31257 -a(S'handle_cast/2' -p31258 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p31259 -tp31260 -a(S'handle_info/2' -p31261 -S'handle_info(${1:Info}, ${2:State}) $3' -p31262 -tp31263 -a(S'init/1' -p31264 -S'init(${1:Env}) $2' -p31265 -tp31266 -a(S'oe_create/0' -p31267 -S'oe_create() $1' -p31268 -tp31269 -a(S'oe_create/1' -p31270 -S'oe_create(${1:Env}) $2' -p31271 -tp31272 -a(S'oe_create/2' -p31273 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p31274 -tp31275 -a(S'oe_create_link/0' -p31276 -S'oe_create_link() $1' -p31277 -tp31278 -a(S'oe_create_link/1' -p31279 -S'oe_create_link(${1:Env}) $2' -p31280 -tp31281 -a(S'oe_create_link/2' -p31282 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p31283 -tp31284 -a(S'oe_get_interface/0' -p31285 -S'oe_get_interface() $1' -p31286 -tp31287 -a(S'oe_is_a/1' -p31288 -S'oe_is_a(${1:Param1}) $2' -p31289 -tp31290 -a(S'oe_tc/1' -p31291 -S'oe_tc(${1:Param1}) $2' -p31292 -tp31293 -a(S'terminate/2' -p31294 -S'terminate(${1:Reason}, ${2:State}) $3' -p31295 -tp31296 -a(S'typeID/0' -p31297 -S'typeID() $1' -p31298 -tp31299 -asS'wxStaticBoxSizer' -p31300 -(lp31301 -(S'add/2' -p31302 -S'add(${1:This}, ${2:Window}) $3' -p31303 -tp31304 -a(S'add/3' -p31305 -S'add(${1:This}, ${2:Width}, ${3:Height}) $4' -p31306 -tp31307 -a(S'add/4' -p31308 -S'add(${1:This}, ${2:Width}, ${3:Height}, ${4:Options}) $5' -p31309 -tp31310 -a(S'addSpacer/2' -p31311 -S'addSpacer(${1:This}, ${2:Size}) $3' -p31312 -tp31313 -a(S'addStretchSpacer/1' -p31314 -S'addStretchSpacer(${1:This}) $2' -p31315 -tp31316 -a(S'addStretchSpacer/2' -p31317 -S'addStretchSpacer(${1:This}, ${2:Options}) $3' -p31318 -tp31319 -a(S'calcMin/1' -p31320 -S'calcMin(${1:This}) $2' -p31321 -tp31322 -a(S'clear/1' -p31323 -S'clear(${1:This}) $2' -p31324 -tp31325 -a(S'clear/2' -p31326 -S'clear(${1:This}, ${2:Options}) $3' -p31327 -tp31328 -a(S'destroy/1' -p31329 -S'destroy(${1:This}) $2' -p31330 -tp31331 -a(S'detach/2' -p31332 -S'detach(${1:This}, ${2:Index}) $3' -p31333 -tp31334 -a(S'fit/2' -p31335 -S'fit(${1:This}, ${2:Window}) $3' -p31336 -tp31337 -a(S'fitInside/2' -p31338 -S'fitInside(${1:This}, ${2:Window}) $3' -p31339 -tp31340 -a(S'getChildren/1' -p31341 -S'getChildren(${1:This}) $2' -p31342 -tp31343 -a(S'getItem/2' -p31344 -S'getItem(${1:This}, ${2:Window}) $3' -p31345 -tp31346 -a(S'getItem/3' -p31347 -S'getItem(${1:This}, ${2:Window}, ${3:Options}) $4' -p31348 -tp31349 -a(S'getMinSize/1' -p31350 -S'getMinSize(${1:This}) $2' -p31351 -tp31352 -a(S'getOrientation/1' -p31353 -S'getOrientation(${1:This}) $2' -p31354 -tp31355 -a(S'getPosition/1' -p31356 -S'getPosition(${1:This}) $2' -p31357 -tp31358 -a(S'getSize/1' -p31359 -S'getSize(${1:This}) $2' -p31360 -tp31361 -a(S'getStaticBox/1' -p31362 -S'getStaticBox(${1:This}) $2' -p31363 -tp31364 -a(S'hide/2' -p31365 -S'hide(${1:This}, ${2:Window}) $3' -p31366 -tp31367 -a(S'hide/3' -p31368 -S'hide(${1:This}, ${2:Window}, ${3:Options}) $4' -p31369 -tp31370 -a(S'insert/3' -p31371 -S'insert(${1:This}, ${2:Index}, ${3:Item}) $4' -p31372 -tp31373 -a(S'insert/4' -p31374 -S'insert(${1:This}, ${2:Index}, ${3:Width}, ${4:Height}) $5' -p31375 -tp31376 -a(S'insert/5' -p31377 -S'insert(${1:This}, ${2:Index}, ${3:Width}, ${4:Height}, ${5:Options}) $6' -p31378 -tp31379 -a(S'insertSpacer/3' -p31380 -S'insertSpacer(${1:This}, ${2:Index}, ${3:Size}) $4' -p31381 -tp31382 -a(S'insertStretchSpacer/2' -p31383 -S'insertStretchSpacer(${1:This}, ${2:Index}) $3' -p31384 -tp31385 -a(S'insertStretchSpacer/3' -p31386 -S'insertStretchSpacer(${1:This}, ${2:Index}, ${3:Options}) $4' -p31387 -tp31388 -a(S'isShown/2' -p31389 -S'isShown(${1:This}, ${2:Index}) $3' -p31390 -tp31391 -a(S'layout/1' -p31392 -S'layout(${1:This}) $2' -p31393 -tp31394 -a(S'new/2' -p31395 -S'new(${1:Orient}, ${2:Win}) $3' -p31396 -tp31397 -a(S'new/3' -p31398 -S'new(${1:Orient}, ${2:Win}, ${3:Param3}) $4' -p31399 -tp31400 -a(S'parent_class/1' -p31401 -S'parent_class(${1:Param1}) $2' -p31402 -tp31403 -a(S'prepend/2' -p31404 -S'prepend(${1:This}, ${2:Item}) $3' -p31405 -tp31406 -a(S'prepend/3' -p31407 -S'prepend(${1:This}, ${2:Width}, ${3:Height}) $4' -p31408 -tp31409 -a(S'prepend/4' -p31410 -S'prepend(${1:This}, ${2:Width}, ${3:Height}, ${4:Options}) $5' -p31411 -tp31412 -a(S'prependSpacer/2' -p31413 -S'prependSpacer(${1:This}, ${2:Size}) $3' -p31414 -tp31415 -a(S'prependStretchSpacer/1' -p31416 -S'prependStretchSpacer(${1:This}) $2' -p31417 -tp31418 -a(S'prependStretchSpacer/2' -p31419 -S'prependStretchSpacer(${1:This}, ${2:Options}) $3' -p31420 -tp31421 -a(S'recalcSizes/1' -p31422 -S'recalcSizes(${1:This}) $2' -p31423 -tp31424 -a(S'remove/2' -p31425 -S'remove(${1:This}, ${2:Index}) $3' -p31426 -tp31427 -a(S'replace/3' -p31428 -S'replace(${1:This}, ${2:Oldwin}, ${3:Newwin}) $4' -p31429 -tp31430 -a(S'replace/4' -p31431 -S'replace(${1:This}, ${2:Oldwin}, ${3:Newwin}, ${4:Options}) $5' -p31432 -tp31433 -a(S'setDimension/5' -p31434 -S'setDimension(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p31435 -tp31436 -a(S'setItemMinSize/3' -p31437 -S'setItemMinSize(${1:This}, ${2:Index}, ${3:Size}) $4' -p31438 -tp31439 -a(S'setItemMinSize/4' -p31440 -S'setItemMinSize(${1:This}, ${2:Index}, ${3:Width}, ${4:Height}) $5' -p31441 -tp31442 -a(S'setMinSize/2' -p31443 -S'setMinSize(${1:This}, ${2:Size}) $3' -p31444 -tp31445 -a(S'setMinSize/3' -p31446 -S'setMinSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p31447 -tp31448 -a(S'setSizeHints/2' -p31449 -S'setSizeHints(${1:This}, ${2:Window}) $3' -p31450 -tp31451 -a(S'setVirtualSizeHints/2' -p31452 -S'setVirtualSizeHints(${1:This}, ${2:Window}) $3' -p31453 -tp31454 -a(S'show/2' -p31455 -S'show(${1:This}, ${2:Index}) $3' -p31456 -tp31457 -a(S'show/3' -p31458 -S'show(${1:This}, ${2:Index}, ${3:Options}) $4' -p31459 -tp31460 -asS'global_search' -p31461 -(lp31462 -(S'init_names/1' -p31463 -S'init_names(${1:Param1}) $2' -p31464 -tp31465 -a(S'init_send/1' -p31466 -S'init_send(${1:Param1}) $2' -p31467 -tp31468 -a(S'init_whereis/1' -p31469 -S'init_whereis(${1:Param1}) $2' -p31470 -tp31471 -a(S'names_test/1' -p31472 -S'names_test(${1:Param1}) $2' -p31473 -tp31474 -a(S'send_test/1' -p31475 -S'send_test(${1:Param1}) $2' -p31476 -tp31477 -a(S'start/2' -p31478 -S'start(${1:Flag}, ${2:Arg}) $3' -p31479 -tp31480 -a(S'whereis_test/1' -p31481 -S'whereis_test(${1:Param1}) $2' -p31482 -tp31483 -asS'user_sup' -p31484 -(lp31485 -(S'init/1' -p31486 -S'init(${1:Param1}) $2' -p31487 -tp31488 -a(S'relay/1' -p31489 -S'relay(${1:Pid}) $2' -p31490 -tp31491 -a(S'start/0' -p31492 -S'start() $1' -p31493 -tp31494 -a(S'terminate/2' -p31495 -S'terminate(${1:Param1}, ${2:UserPid}) $3' -p31496 -tp31497 -asS'wxSpinButton' -p31498 -(lp31499 -(S'cacheBestSize/2' -p31500 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p31501 -tp31502 -a(S'captureMouse/1' -p31503 -S'captureMouse(${1:This}) $2' -p31504 -tp31505 -a(S'center/1' -p31506 -S'center(${1:This}) $2' -p31507 -tp31508 -a(S'center/2' -p31509 -S'center(${1:This}, ${2:Options}) $3' -p31510 -tp31511 -a(S'centerOnParent/1' -p31512 -S'centerOnParent(${1:This}) $2' -p31513 -tp31514 -a(S'centerOnParent/2' -p31515 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p31516 -tp31517 -a(S'centre/1' -p31518 -S'centre(${1:This}) $2' -p31519 -tp31520 -a(S'centre/2' -p31521 -S'centre(${1:This}, ${2:Options}) $3' -p31522 -tp31523 -a(S'centreOnParent/1' -p31524 -S'centreOnParent(${1:This}) $2' -p31525 -tp31526 -a(S'centreOnParent/2' -p31527 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p31528 -tp31529 -a(S'clearBackground/1' -p31530 -S'clearBackground(${1:This}) $2' -p31531 -tp31532 -a(S'clientToScreen/2' -p31533 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p31534 -tp31535 -a(S'clientToScreen/3' -p31536 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p31537 -tp31538 -a(S'close/1' -p31539 -S'close(${1:This}) $2' -p31540 -tp31541 -a(S'close/2' -p31542 -S'close(${1:This}, ${2:Options}) $3' -p31543 -tp31544 -a(S'connect/2' -p31545 -S'connect(${1:This}, ${2:EventType}) $3' -p31546 -tp31547 -a(S'connect/3' -p31548 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p31549 -tp31550 -a(S'convertDialogToPixels/2' -p31551 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p31552 -tp31553 -a(S'convertPixelsToDialog/2' -p31554 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p31555 -tp31556 -a(S'create/2' -p31557 -S'create(${1:This}, ${2:Parent}) $3' -p31558 -tp31559 -a(S'create/3' -p31560 -S'create(${1:This}, ${2:Parent}, ${3:Param3}) $4' -p31561 -tp31562 -a(S'destroy/1' -p31563 -S'destroy(${1:This}) $2' -p31564 -tp31565 -a(S'destroyChildren/1' -p31566 -S'destroyChildren(${1:This}) $2' -p31567 -tp31568 -a(S'disable/1' -p31569 -S'disable(${1:This}) $2' -p31570 -tp31571 -a(S'disconnect/1' -p31572 -S'disconnect(${1:This}) $2' -p31573 -tp31574 -a(S'disconnect/2' -p31575 -S'disconnect(${1:This}, ${2:EventType}) $3' -p31576 -tp31577 -a(S'disconnect/3' -p31578 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p31579 -tp31580 -a(S'enable/1' -p31581 -S'enable(${1:This}) $2' -p31582 -tp31583 -a(S'enable/2' -p31584 -S'enable(${1:This}, ${2:Options}) $3' -p31585 -tp31586 -a(S'findWindow/2' -p31587 -S'findWindow(${1:This}, ${2:Winid}) $3' -p31588 -tp31589 -a(S'fit/1' -p31590 -S'fit(${1:This}) $2' -p31591 -tp31592 -a(S'fitInside/1' -p31593 -S'fitInside(${1:This}) $2' -p31594 -tp31595 -a(S'freeze/1' -p31596 -S'freeze(${1:This}) $2' -p31597 -tp31598 -a(S'getAcceleratorTable/1' -p31599 -S'getAcceleratorTable(${1:This}) $2' -p31600 -tp31601 -a(S'getBackgroundColour/1' -p31602 -S'getBackgroundColour(${1:This}) $2' -p31603 -tp31604 -a(S'getBackgroundStyle/1' -p31605 -S'getBackgroundStyle(${1:This}) $2' -p31606 -tp31607 -a(S'getBestSize/1' -p31608 -S'getBestSize(${1:This}) $2' -p31609 -tp31610 -a(S'getCaret/1' -p31611 -S'getCaret(${1:This}) $2' -p31612 -tp31613 -a(S'getCharHeight/1' -p31614 -S'getCharHeight(${1:This}) $2' -p31615 -tp31616 -a(S'getCharWidth/1' -p31617 -S'getCharWidth(${1:This}) $2' -p31618 -tp31619 -a(S'getChildren/1' -p31620 -S'getChildren(${1:This}) $2' -p31621 -tp31622 -a(S'getClientSize/1' -p31623 -S'getClientSize(${1:This}) $2' -p31624 -tp31625 -a(S'getContainingSizer/1' -p31626 -S'getContainingSizer(${1:This}) $2' -p31627 -tp31628 -a(S'getCursor/1' -p31629 -S'getCursor(${1:This}) $2' -p31630 -tp31631 -a(S'getDropTarget/1' -p31632 -S'getDropTarget(${1:This}) $2' -p31633 -tp31634 -a(S'getEventHandler/1' -p31635 -S'getEventHandler(${1:This}) $2' -p31636 -tp31637 -a(S'getExtraStyle/1' -p31638 -S'getExtraStyle(${1:This}) $2' -p31639 -tp31640 -a(S'getFont/1' -p31641 -S'getFont(${1:This}) $2' -p31642 -tp31643 -a(S'getForegroundColour/1' -p31644 -S'getForegroundColour(${1:This}) $2' -p31645 -tp31646 -a(S'getGrandParent/1' -p31647 -S'getGrandParent(${1:This}) $2' -p31648 -tp31649 -a(S'getHandle/1' -p31650 -S'getHandle(${1:This}) $2' -p31651 -tp31652 -a(S'getHelpText/1' -p31653 -S'getHelpText(${1:This}) $2' -p31654 -tp31655 -a(S'getId/1' -p31656 -S'getId(${1:This}) $2' -p31657 -tp31658 -a(S'getLabel/1' -p31659 -S'getLabel(${1:This}) $2' -p31660 -tp31661 -a(S'getMax/1' -p31662 -S'getMax(${1:This}) $2' -p31663 -tp31664 -a(S'getMaxSize/1' -p31665 -S'getMaxSize(${1:This}) $2' -p31666 -tp31667 -a(S'getMin/1' -p31668 -S'getMin(${1:This}) $2' -p31669 -tp31670 -a(S'getMinSize/1' -p31671 -S'getMinSize(${1:This}) $2' -p31672 -tp31673 -a(S'getName/1' -p31674 -S'getName(${1:This}) $2' -p31675 -tp31676 -a(S'getParent/1' -p31677 -S'getParent(${1:This}) $2' -p31678 -tp31679 -a(S'getPosition/1' -p31680 -S'getPosition(${1:This}) $2' -p31681 -tp31682 -a(S'getRect/1' -p31683 -S'getRect(${1:This}) $2' -p31684 -tp31685 -a(S'getScreenPosition/1' -p31686 -S'getScreenPosition(${1:This}) $2' -p31687 -tp31688 -a(S'getScreenRect/1' -p31689 -S'getScreenRect(${1:This}) $2' -p31690 -tp31691 -a(S'getScrollPos/2' -p31692 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p31693 -tp31694 -a(S'getScrollRange/2' -p31695 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p31696 -tp31697 -a(S'getScrollThumb/2' -p31698 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p31699 -tp31700 -a(S'getSize/1' -p31701 -S'getSize(${1:This}) $2' -p31702 -tp31703 -a(S'getSizer/1' -p31704 -S'getSizer(${1:This}) $2' -p31705 -tp31706 -a(S'getTextExtent/2' -p31707 -S'getTextExtent(${1:This}, ${2:String}) $3' -p31708 -tp31709 -a(S'getTextExtent/3' -p31710 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p31711 -tp31712 -a(S'getToolTip/1' -p31713 -S'getToolTip(${1:This}) $2' -p31714 -tp31715 -a(S'getUpdateRegion/1' -p31716 -S'getUpdateRegion(${1:This}) $2' -p31717 -tp31718 -a(S'getValue/1' -p31719 -S'getValue(${1:This}) $2' -p31720 -tp31721 -a(S'getVirtualSize/1' -p31722 -S'getVirtualSize(${1:This}) $2' -p31723 -tp31724 -a(S'getWindowStyleFlag/1' -p31725 -S'getWindowStyleFlag(${1:This}) $2' -p31726 -tp31727 -a(S'getWindowVariant/1' -p31728 -S'getWindowVariant(${1:This}) $2' -p31729 -tp31730 -a(S'hasCapture/1' -p31731 -S'hasCapture(${1:This}) $2' -p31732 -tp31733 -a(S'hasScrollbar/2' -p31734 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p31735 -tp31736 -a(S'hasTransparentBackground/1' -p31737 -S'hasTransparentBackground(${1:This}) $2' -p31738 -tp31739 -a(S'hide/1' -p31740 -S'hide(${1:This}) $2' -p31741 -tp31742 -a(S'inheritAttributes/1' -p31743 -S'inheritAttributes(${1:This}) $2' -p31744 -tp31745 -a(S'initDialog/1' -p31746 -S'initDialog(${1:This}) $2' -p31747 -tp31748 -a(S'invalidateBestSize/1' -p31749 -S'invalidateBestSize(${1:This}) $2' -p31750 -tp31751 -a(S'isEnabled/1' -p31752 -S'isEnabled(${1:This}) $2' -p31753 -tp31754 -a(S'isExposed/2' -p31755 -S'isExposed(${1:This}, ${2:Pt}) $3' -p31756 -tp31757 -a(S'isExposed/3' -p31758 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p31759 -tp31760 -a(S'isExposed/5' -p31761 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p31762 -tp31763 -a(S'isRetained/1' -p31764 -S'isRetained(${1:This}) $2' -p31765 -tp31766 -a(S'isShown/1' -p31767 -S'isShown(${1:This}) $2' -p31768 -tp31769 -a(S'isTopLevel/1' -p31770 -S'isTopLevel(${1:This}) $2' -p31771 -tp31772 -a(S'layout/1' -p31773 -S'layout(${1:This}) $2' -p31774 -tp31775 -a(S'lineDown/1' -p31776 -S'lineDown(${1:This}) $2' -p31777 -tp31778 -a(S'lineUp/1' -p31779 -S'lineUp(${1:This}) $2' -p31780 -tp31781 -a(S'lower/1' -p31782 -S'lower(${1:This}) $2' -p31783 -tp31784 -a(S'makeModal/1' -p31785 -S'makeModal(${1:This}) $2' -p31786 -tp31787 -a(S'makeModal/2' -p31788 -S'makeModal(${1:This}, ${2:Options}) $3' -p31789 -tp31790 -a(S'move/2' -p31791 -S'move(${1:This}, ${2:Pt}) $3' -p31792 -tp31793 -a(S'move/3' -p31794 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p31795 -tp31796 -a(S'move/4' -p31797 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p31798 -tp31799 -a(S'moveAfterInTabOrder/2' -p31800 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p31801 -tp31802 -a(S'moveBeforeInTabOrder/2' -p31803 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p31804 -tp31805 -a(S'navigate/1' -p31806 -S'navigate(${1:This}) $2' -p31807 -tp31808 -a(S'navigate/2' -p31809 -S'navigate(${1:This}, ${2:Options}) $3' -p31810 -tp31811 -a(S'new/0' -p31812 -S'new() $1' -p31813 -tp31814 -a(S'new/1' -p31815 -S'new(${1:Parent}) $2' -p31816 -tp31817 -a(S'new/2' -p31818 -S'new(${1:Parent}, ${2:Param2}) $3' -p31819 -tp31820 -a(S'pageDown/1' -p31821 -S'pageDown(${1:This}) $2' -p31822 -tp31823 -a(S'pageUp/1' -p31824 -S'pageUp(${1:This}) $2' -p31825 -tp31826 -a(S'parent_class/1' -p31827 -S'parent_class(${1:Param1}) $2' -p31828 -tp31829 -a(S'popEventHandler/1' -p31830 -S'popEventHandler(${1:This}) $2' -p31831 -tp31832 -a(S'popEventHandler/2' -p31833 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p31834 -tp31835 -a(S'popupMenu/2' -p31836 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p31837 -tp31838 -a(S'popupMenu/3' -p31839 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p31840 -tp31841 -a(S'popupMenu/4' -p31842 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p31843 -tp31844 -a(S'raise/1' -p31845 -S'raise(${1:This}) $2' -p31846 -tp31847 -a(S'refresh/1' -p31848 -S'refresh(${1:This}) $2' -p31849 -tp31850 -a(S'refresh/2' -p31851 -S'refresh(${1:This}, ${2:Options}) $3' -p31852 -tp31853 -a(S'refreshRect/2' -p31854 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p31855 -tp31856 -a(S'refreshRect/3' -p31857 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p31858 -tp31859 -a(S'releaseMouse/1' -p31860 -S'releaseMouse(${1:This}) $2' -p31861 -tp31862 -a(S'removeChild/2' -p31863 -S'removeChild(${1:This}, ${2:Child}) $3' -p31864 -tp31865 -a(S'reparent/2' -p31866 -S'reparent(${1:This}, ${2:NewParent}) $3' -p31867 -tp31868 -a(S'screenToClient/1' -p31869 -S'screenToClient(${1:This}) $2' -p31870 -tp31871 -a(S'screenToClient/2' -p31872 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p31873 -tp31874 -a(S'scrollLines/2' -p31875 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p31876 -tp31877 -a(S'scrollPages/2' -p31878 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p31879 -tp31880 -a(S'scrollWindow/3' -p31881 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p31882 -tp31883 -a(S'scrollWindow/4' -p31884 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p31885 -tp31886 -a(S'setAcceleratorTable/2' -p31887 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p31888 -tp31889 -a(S'setAutoLayout/2' -p31890 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p31891 -tp31892 -a(S'setBackgroundColour/2' -p31893 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p31894 -tp31895 -a(S'setBackgroundStyle/2' -p31896 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p31897 -tp31898 -a(S'setCaret/2' -p31899 -S'setCaret(${1:This}, ${2:Caret}) $3' -p31900 -tp31901 -a(S'setClientSize/2' -p31902 -S'setClientSize(${1:This}, ${2:Size}) $3' -p31903 -tp31904 -a(S'setClientSize/3' -p31905 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p31906 -tp31907 -a(S'setContainingSizer/2' -p31908 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p31909 -tp31910 -a(S'setCursor/2' -p31911 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p31912 -tp31913 -a(S'setDropTarget/2' -p31914 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p31915 -tp31916 -a(S'setExtraStyle/2' -p31917 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p31918 -tp31919 -a(S'setFocus/1' -p31920 -S'setFocus(${1:This}) $2' -p31921 -tp31922 -a(S'setFocusFromKbd/1' -p31923 -S'setFocusFromKbd(${1:This}) $2' -p31924 -tp31925 -a(S'setFont/2' -p31926 -S'setFont(${1:This}, ${2:Font}) $3' -p31927 -tp31928 -a(S'setForegroundColour/2' -p31929 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p31930 -tp31931 -a(S'setHelpText/2' -p31932 -S'setHelpText(${1:This}, ${2:Text}) $3' -p31933 -tp31934 -a(S'setId/2' -p31935 -S'setId(${1:This}, ${2:Winid}) $3' -p31936 -tp31937 -a(S'setLabel/2' -p31938 -S'setLabel(${1:This}, ${2:Label}) $3' -p31939 -tp31940 -a(S'setMaxSize/2' -p31941 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p31942 -tp31943 -a(S'setMinSize/2' -p31944 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p31945 -tp31946 -a(S'setName/2' -p31947 -S'setName(${1:This}, ${2:Name}) $3' -p31948 -tp31949 -a(S'setOwnBackgroundColour/2' -p31950 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p31951 -tp31952 -a(S'setOwnFont/2' -p31953 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p31954 -tp31955 -a(S'setOwnForegroundColour/2' -p31956 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p31957 -tp31958 -a(S'setPalette/2' -p31959 -S'setPalette(${1:This}, ${2:Pal}) $3' -p31960 -tp31961 -a(S'setRange/3' -p31962 -S'setRange(${1:This}, ${2:MinVal}, ${3:MaxVal}) $4' -p31963 -tp31964 -a(S'setScrollPos/3' -p31965 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p31966 -tp31967 -a(S'setScrollPos/4' -p31968 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p31969 -tp31970 -a(S'setScrollbar/5' -p31971 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p31972 -tp31973 -a(S'setScrollbar/6' -p31974 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p31975 -tp31976 -a(S'setSize/2' -p31977 -S'setSize(${1:This}, ${2:Rect}) $3' -p31978 -tp31979 -a(S'setSize/3' -p31980 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p31981 -tp31982 -a(S'setSize/5' -p31983 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p31984 -tp31985 -a(S'setSize/6' -p31986 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p31987 -tp31988 -a(S'setSizeHints/2' -p31989 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p31990 -tp31991 -a(S'setSizeHints/3' -p31992 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p31993 -tp31994 -a(S'setSizeHints/4' -p31995 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p31996 -tp31997 -a(S'setSizer/2' -p31998 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p31999 -tp32000 -a(S'setSizer/3' -p32001 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p32002 -tp32003 -a(S'setSizerAndFit/2' -p32004 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p32005 -tp32006 -a(S'setSizerAndFit/3' -p32007 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p32008 -tp32009 -a(S'setThemeEnabled/2' -p32010 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p32011 -tp32012 -a(S'setToolTip/2' -p32013 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p32014 -tp32015 -a(S'setValue/2' -p32016 -S'setValue(${1:This}, ${2:Value}) $3' -p32017 -tp32018 -a(S'setVirtualSize/2' -p32019 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p32020 -tp32021 -a(S'setVirtualSize/3' -p32022 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p32023 -tp32024 -a(S'setVirtualSizeHints/2' -p32025 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p32026 -tp32027 -a(S'setVirtualSizeHints/3' -p32028 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p32029 -tp32030 -a(S'setVirtualSizeHints/4' -p32031 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p32032 -tp32033 -a(S'setWindowStyle/2' -p32034 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p32035 -tp32036 -a(S'setWindowStyleFlag/2' -p32037 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p32038 -tp32039 -a(S'setWindowVariant/2' -p32040 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p32041 -tp32042 -a(S'shouldInheritColours/1' -p32043 -S'shouldInheritColours(${1:This}) $2' -p32044 -tp32045 -a(S'show/1' -p32046 -S'show(${1:This}) $2' -p32047 -tp32048 -a(S'show/2' -p32049 -S'show(${1:This}, ${2:Options}) $3' -p32050 -tp32051 -a(S'thaw/1' -p32052 -S'thaw(${1:This}) $2' -p32053 -tp32054 -a(S'transferDataFromWindow/1' -p32055 -S'transferDataFromWindow(${1:This}) $2' -p32056 -tp32057 -a(S'transferDataToWindow/1' -p32058 -S'transferDataToWindow(${1:This}) $2' -p32059 -tp32060 -a(S'update/1' -p32061 -S'update(${1:This}) $2' -p32062 -tp32063 -a(S'updateWindowUI/1' -p32064 -S'updateWindowUI(${1:This}) $2' -p32065 -tp32066 -a(S'updateWindowUI/2' -p32067 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p32068 -tp32069 -a(S'validate/1' -p32070 -S'validate(${1:This}) $2' -p32071 -tp32072 -a(S'warpPointer/3' -p32073 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p32074 -tp32075 -asS'megaco_sdp' -p32076 -(lp32077 -(S'decode/1' -p32078 -S'decode(${1:SDP}) $2' -p32079 -tp32080 -a(S'encode/1' -p32081 -S'encode(${1:SDP}) $2' -p32082 -tp32083 -a(S'get_sdp_record_from_PropertyGroup/2' -p32084 -S'get_sdp_record_from_PropertyGroup() $1' -p32085 -tp32086 -asS'cdrlib' -p32087 -(lp32088 -(S'dec_bool/1' -p32089 -S'dec_bool(${1:Param1}) $2' -p32090 -tp32091 -a(S'dec_char/1' -p32092 -S'dec_char(${1:Param1}) $2' -p32093 -tp32094 -a(S'dec_double/2' -p32095 -S'dec_double(${1:Param1}, ${2:Param2}) $3' -p32096 -tp32097 -a(S'dec_enum/3' -p32098 -S'dec_enum(${1:ByteOrder}, ${2:ElemList}, ${3:Message}) $4' -p32099 -tp32100 -a(S'dec_float/2' -p32101 -S'dec_float(${1:Param1}, ${2:Param2}) $3' -p32102 -tp32103 -a(S'dec_long/2' -p32104 -S'dec_long(${1:Param1}, ${2:Param2}) $3' -p32105 -tp32106 -a(S'dec_longlong/2' -p32107 -S'dec_longlong(${1:Param1}, ${2:Param2}) $3' -p32108 -tp32109 -a(S'dec_octet/1' -p32110 -S'dec_octet(${1:Param1}) $2' -p32111 -tp32112 -a(S'dec_short/2' -p32113 -S'dec_short(${1:Param1}, ${2:Param2}) $3' -p32114 -tp32115 -a(S'dec_unsigned_long/2' -p32116 -S'dec_unsigned_long(${1:Param1}, ${2:Param2}) $3' -p32117 -tp32118 -a(S'dec_unsigned_longlong/2' -p32119 -S'dec_unsigned_longlong(${1:Param1}, ${2:Param2}) $3' -p32120 -tp32121 -a(S'dec_unsigned_short/2' -p32122 -S'dec_unsigned_short(${1:Param1}, ${2:Param2}) $3' -p32123 -tp32124 -a(S'enc_bool/2' -p32125 -S'enc_bool(${1:X}, ${2:Message}) $3' -p32126 -tp32127 -a(S'enc_char/2' -p32128 -S'enc_char(${1:X}, ${2:Param2}) $3' -p32129 -tp32130 -a(S'enc_double/2' -p32131 -S'enc_double(${1:X}, ${2:Message}) $3' -p32132 -tp32133 -a(S'enc_enum/3' -p32134 -S'enc_enum(${1:Enum}, ${2:ElemList}, ${3:Message}) $4' -p32135 -tp32136 -a(S'enc_float/2' -p32137 -S'enc_float(${1:X}, ${2:Message}) $3' -p32138 -tp32139 -a(S'enc_long/2' -p32140 -S'enc_long(${1:X}, ${2:Param2}) $3' -p32141 -tp32142 -a(S'enc_longlong/2' -p32143 -S'enc_longlong(${1:X}, ${2:Param2}) $3' -p32144 -tp32145 -a(S'enc_octet/2' -p32146 -S'enc_octet(${1:X}, ${2:Param2}) $3' -p32147 -tp32148 -a(S'enc_short/2' -p32149 -S'enc_short(${1:X}, ${2:Param2}) $3' -p32150 -tp32151 -a(S'enc_unsigned_long/2' -p32152 -S'enc_unsigned_long(${1:X}, ${2:Param2}) $3' -p32153 -tp32154 -a(S'enc_unsigned_longlong/2' -p32155 -S'enc_unsigned_longlong(${1:X}, ${2:Param2}) $3' -p32156 -tp32157 -a(S'enc_unsigned_short/2' -p32158 -S'enc_unsigned_short(${1:X}, ${2:Param2}) $3' -p32159 -tp32160 -asS'wxIconizeEvent' -p32161 -(lp32162 -(S'getId/1' -p32163 -S'getId(${1:This}) $2' -p32164 -tp32165 -a(S'getSkipped/1' -p32166 -S'getSkipped(${1:This}) $2' -p32167 -tp32168 -a(S'getTimestamp/1' -p32169 -S'getTimestamp(${1:This}) $2' -p32170 -tp32171 -a(S'iconized/1' -p32172 -S'iconized(${1:This}) $2' -p32173 -tp32174 -a(S'isCommandEvent/1' -p32175 -S'isCommandEvent(${1:This}) $2' -p32176 -tp32177 -a(S'parent_class/1' -p32178 -S'parent_class(${1:Param1}) $2' -p32179 -tp32180 -a(S'resumePropagation/2' -p32181 -S'resumePropagation(${1:This}, ${2:PropagationLevel}) $3' -p32182 -tp32183 -a(S'shouldPropagate/1' -p32184 -S'shouldPropagate(${1:This}) $2' -p32185 -tp32186 -a(S'skip/1' -p32187 -S'skip(${1:This}) $2' -p32188 -tp32189 -a(S'skip/2' -p32190 -S'skip(${1:This}, ${2:Options}) $3' -p32191 -tp32192 -a(S'stopPropagation/1' -p32193 -S'stopPropagation(${1:This}) $2' -p32194 -tp32195 -asS'PusherSupplier_impl' -p32196 -(lp32197 -(S"'_get_MyAdmin'/3" -p32198 -S"'_get_MyAdmin'(${1:Param1}, ${2:Param2}, ${3:State}) $4" -p32199 -tp32200 -a(S"'_get_MyType'/3" -p32201 -S"'_get_MyType'(${1:Param1}, ${2:Param2}, ${3:State}) $4" -p32202 -tp32203 -a(S"'_get_lifetime_filter'/3" -p32204 -S"'_get_lifetime_filter'(${1:Param1}, ${2:Param2}, ${3:State}) $4" -p32205 -tp32206 -a(S"'_get_priority_filter'/3" -p32207 -S"'_get_priority_filter'(${1:Param1}, ${2:Param2}, ${3:State}) $4" -p32208 -tp32209 -a(S"'_set_lifetime_filter'/4" -p32210 -S"'_set_lifetime_filter'(${1:Param1}, ${2:Param2}, ${3:State}, ${4:LifeTF}) $5" -p32211 -tp32212 -a(S"'_set_priority_filter'/4" -p32213 -S"'_set_priority_filter'(${1:Param1}, ${2:Param2}, ${3:State}, ${4:PrioF}) $5" -p32214 -tp32215 -a(S'add_filter/4' -p32216 -S'add_filter(${1:Param1}, ${2:Param2}, ${3:State}, ${4:Filter}) $5' -p32217 -tp32218 -a(S'callAny/5' -p32219 -S'callAny(${1:Param1}, ${2:OE_FROM}, ${3:State}, ${4:EventIn}, ${5:Status}) $6' -p32220 -tp32221 -a(S'callSeq/5' -p32222 -S'callSeq(${1:Param1}, ${2:OE_FROM}, ${3:State}, ${4:EventsIn}, ${5:Status}) $6' -p32223 -tp32224 -a(S'code_change/3' -p32225 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p32226 -tp32227 -a(S'connect_any_push_consumer/4' -p32228 -S'connect_any_push_consumer(${1:OE_THIS}, ${2:Param2}, ${3:State}, ${4:Client}) $5' -p32229 -tp32230 -a(S'connect_push_consumer/4' -p32231 -S'connect_push_consumer(${1:OE_THIS}, ${2:OE_FROM}, ${3:State}, ${4:Client}) $5' -p32232 -tp32233 -a(S'connect_sequence_push_consumer/4' -p32234 -S'connect_sequence_push_consumer(${1:OE_THIS}, ${2:Param2}, ${3:State}, ${4:Client}) $5' -p32235 -tp32236 -a(S'connect_structured_push_consumer/4' -p32237 -S'connect_structured_push_consumer(${1:OE_THIS}, ${2:Param2}, ${3:State}, ${4:Client}) $5' -p32238 -tp32239 -a(S'disconnect_push_supplier/3' -p32240 -S'disconnect_push_supplier(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p32241 -tp32242 -a(S'disconnect_sequence_push_supplier/3' -p32243 -S'disconnect_sequence_push_supplier(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p32244 -tp32245 -a(S'disconnect_structured_push_supplier/3' -p32246 -S'disconnect_structured_push_supplier(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p32247 -tp32248 -a(S'get_all_filters/3' -p32249 -S'get_all_filters(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p32250 -tp32251 -a(S'get_filter/4' -p32252 -S'get_filter(${1:Param1}, ${2:Param2}, ${3:State}, ${4:FilterID}) $5' -p32253 -tp32254 -a(S'get_qos/3' -p32255 -S'get_qos(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p32256 -tp32257 -a(S'handle_info/2' -p32258 -S'handle_info() $1' -p32259 -tp32260 -a(S'init/1' -p32261 -S'init(${1:Param1}) $2' -p32262 -tp32263 -a(S'obtain_offered_types/4' -p32264 -S'obtain_offered_types(${1:Param1}, ${2:Param2}, ${3:State}, ${4:What}) $5' -p32265 -tp32266 -a(S'remove_all_filters/3' -p32267 -S'remove_all_filters(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p32268 -tp32269 -a(S'remove_filter/4' -p32270 -S'remove_filter(${1:Param1}, ${2:Param2}, ${3:State}, ${4:FilterID}) $5' -p32271 -tp32272 -a(S'resume_connection/3' -p32273 -S'resume_connection(${1:Param1}, ${2:OE_FROM}, ${3:State}) $4' -p32274 -tp32275 -a(S'set_qos/4' -p32276 -S'set_qos(${1:Param1}, ${2:Param2}, ${3:State}, ${4:QoS}) $5' -p32277 -tp32278 -a(S'subscription_change/5' -p32279 -S'subscription_change(${1:Param1}, ${2:Param2}, ${3:State}, ${4:Added}, ${5:Removed}) $6' -p32280 -tp32281 -a(S'suspend_connection/3' -p32282 -S'suspend_connection(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p32283 -tp32284 -a(S'terminate/2' -p32285 -S'terminate(${1:Param1}, ${2:State}) $3' -p32286 -tp32287 -a(S'validate_event_qos/4' -p32288 -S'validate_event_qos(${1:Param1}, ${2:Param2}, ${3:State}, ${4:RequiredQoS}) $5' -p32289 -tp32290 -a(S'validate_qos/4' -p32291 -S'validate_qos(${1:Param1}, ${2:Param2}, ${3:State}, ${4:Required_qos}) $5' -p32292 -tp32293 -asS'wxToolbook' -p32294 -(lp32295 -(S'addPage/3' -p32296 -S'addPage(${1:This}, ${2:Page}, ${3:Text}) $4' -p32297 -tp32298 -a(S'addPage/4' -p32299 -S'addPage(${1:This}, ${2:Page}, ${3:Text}, ${4:Param4}) $5' -p32300 -tp32301 -a(S'advanceSelection/1' -p32302 -S'advanceSelection(${1:This}) $2' -p32303 -tp32304 -a(S'advanceSelection/2' -p32305 -S'advanceSelection(${1:This}, ${2:Param2}) $3' -p32306 -tp32307 -a(S'assignImageList/2' -p32308 -S'assignImageList(${1:This}, ${2:ImageList}) $3' -p32309 -tp32310 -a(S'cacheBestSize/2' -p32311 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p32312 -tp32313 -a(S'captureMouse/1' -p32314 -S'captureMouse(${1:This}) $2' -p32315 -tp32316 -a(S'center/1' -p32317 -S'center(${1:This}) $2' -p32318 -tp32319 -a(S'center/2' -p32320 -S'center(${1:This}, ${2:Options}) $3' -p32321 -tp32322 -a(S'centerOnParent/1' -p32323 -S'centerOnParent(${1:This}) $2' -p32324 -tp32325 -a(S'centerOnParent/2' -p32326 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p32327 -tp32328 -a(S'centre/1' -p32329 -S'centre(${1:This}) $2' -p32330 -tp32331 -a(S'centre/2' -p32332 -S'centre(${1:This}, ${2:Options}) $3' -p32333 -tp32334 -a(S'centreOnParent/1' -p32335 -S'centreOnParent(${1:This}) $2' -p32336 -tp32337 -a(S'centreOnParent/2' -p32338 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p32339 -tp32340 -a(S'changeSelection/2' -p32341 -S'changeSelection(${1:This}, ${2:N}) $3' -p32342 -tp32343 -a(S'clearBackground/1' -p32344 -S'clearBackground(${1:This}) $2' -p32345 -tp32346 -a(S'clientToScreen/2' -p32347 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p32348 -tp32349 -a(S'clientToScreen/3' -p32350 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p32351 -tp32352 -a(S'close/1' -p32353 -S'close(${1:This}) $2' -p32354 -tp32355 -a(S'close/2' -p32356 -S'close(${1:This}, ${2:Options}) $3' -p32357 -tp32358 -a(S'connect/2' -p32359 -S'connect(${1:This}, ${2:EventType}) $3' -p32360 -tp32361 -a(S'connect/3' -p32362 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p32363 -tp32364 -a(S'convertDialogToPixels/2' -p32365 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p32366 -tp32367 -a(S'convertPixelsToDialog/2' -p32368 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p32369 -tp32370 -a(S'create/3' -p32371 -S'create(${1:This}, ${2:Parent}, ${3:Id}) $4' -p32372 -tp32373 -a(S'create/4' -p32374 -S'create(${1:This}, ${2:Parent}, ${3:Id}, ${4:Param4}) $5' -p32375 -tp32376 -a(S'deleteAllPages/1' -p32377 -S'deleteAllPages(${1:This}) $2' -p32378 -tp32379 -a(S'deletePage/2' -p32380 -S'deletePage(${1:This}, ${2:N}) $3' -p32381 -tp32382 -a(S'destroy/1' -p32383 -S'destroy(${1:This}) $2' -p32384 -tp32385 -a(S'destroyChildren/1' -p32386 -S'destroyChildren(${1:This}) $2' -p32387 -tp32388 -a(S'disable/1' -p32389 -S'disable(${1:This}) $2' -p32390 -tp32391 -a(S'disconnect/1' -p32392 -S'disconnect(${1:This}) $2' -p32393 -tp32394 -a(S'disconnect/2' -p32395 -S'disconnect(${1:This}, ${2:EventType}) $3' -p32396 -tp32397 -a(S'disconnect/3' -p32398 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p32399 -tp32400 -a(S'enable/1' -p32401 -S'enable(${1:This}) $2' -p32402 -tp32403 -a(S'enable/2' -p32404 -S'enable(${1:This}, ${2:Options}) $3' -p32405 -tp32406 -a(S'findWindow/2' -p32407 -S'findWindow(${1:This}, ${2:Winid}) $3' -p32408 -tp32409 -a(S'fit/1' -p32410 -S'fit(${1:This}) $2' -p32411 -tp32412 -a(S'fitInside/1' -p32413 -S'fitInside(${1:This}) $2' -p32414 -tp32415 -a(S'freeze/1' -p32416 -S'freeze(${1:This}) $2' -p32417 -tp32418 -a(S'getAcceleratorTable/1' -p32419 -S'getAcceleratorTable(${1:This}) $2' -p32420 -tp32421 -a(S'getBackgroundColour/1' -p32422 -S'getBackgroundColour(${1:This}) $2' -p32423 -tp32424 -a(S'getBackgroundStyle/1' -p32425 -S'getBackgroundStyle(${1:This}) $2' -p32426 -tp32427 -a(S'getBestSize/1' -p32428 -S'getBestSize(${1:This}) $2' -p32429 -tp32430 -a(S'getCaret/1' -p32431 -S'getCaret(${1:This}) $2' -p32432 -tp32433 -a(S'getCharHeight/1' -p32434 -S'getCharHeight(${1:This}) $2' -p32435 -tp32436 -a(S'getCharWidth/1' -p32437 -S'getCharWidth(${1:This}) $2' -p32438 -tp32439 -a(S'getChildren/1' -p32440 -S'getChildren(${1:This}) $2' -p32441 -tp32442 -a(S'getClientSize/1' -p32443 -S'getClientSize(${1:This}) $2' -p32444 -tp32445 -a(S'getContainingSizer/1' -p32446 -S'getContainingSizer(${1:This}) $2' -p32447 -tp32448 -a(S'getCurrentPage/1' -p32449 -S'getCurrentPage(${1:This}) $2' -p32450 -tp32451 -a(S'getCursor/1' -p32452 -S'getCursor(${1:This}) $2' -p32453 -tp32454 -a(S'getDropTarget/1' -p32455 -S'getDropTarget(${1:This}) $2' -p32456 -tp32457 -a(S'getEventHandler/1' -p32458 -S'getEventHandler(${1:This}) $2' -p32459 -tp32460 -a(S'getExtraStyle/1' -p32461 -S'getExtraStyle(${1:This}) $2' -p32462 -tp32463 -a(S'getFont/1' -p32464 -S'getFont(${1:This}) $2' -p32465 -tp32466 -a(S'getForegroundColour/1' -p32467 -S'getForegroundColour(${1:This}) $2' -p32468 -tp32469 -a(S'getGrandParent/1' -p32470 -S'getGrandParent(${1:This}) $2' -p32471 -tp32472 -a(S'getHandle/1' -p32473 -S'getHandle(${1:This}) $2' -p32474 -tp32475 -a(S'getHelpText/1' -p32476 -S'getHelpText(${1:This}) $2' -p32477 -tp32478 -a(S'getId/1' -p32479 -S'getId(${1:This}) $2' -p32480 -tp32481 -a(S'getImageList/1' -p32482 -S'getImageList(${1:This}) $2' -p32483 -tp32484 -a(S'getLabel/1' -p32485 -S'getLabel(${1:This}) $2' -p32486 -tp32487 -a(S'getMaxSize/1' -p32488 -S'getMaxSize(${1:This}) $2' -p32489 -tp32490 -a(S'getMinSize/1' -p32491 -S'getMinSize(${1:This}) $2' -p32492 -tp32493 -a(S'getName/1' -p32494 -S'getName(${1:This}) $2' -p32495 -tp32496 -a(S'getPage/2' -p32497 -S'getPage(${1:This}, ${2:N}) $3' -p32498 -tp32499 -a(S'getPageCount/1' -p32500 -S'getPageCount(${1:This}) $2' -p32501 -tp32502 -a(S'getPageImage/2' -p32503 -S'getPageImage(${1:This}, ${2:N}) $3' -p32504 -tp32505 -a(S'getPageText/2' -p32506 -S'getPageText(${1:This}, ${2:N}) $3' -p32507 -tp32508 -a(S'getParent/1' -p32509 -S'getParent(${1:This}) $2' -p32510 -tp32511 -a(S'getPosition/1' -p32512 -S'getPosition(${1:This}) $2' -p32513 -tp32514 -a(S'getRect/1' -p32515 -S'getRect(${1:This}) $2' -p32516 -tp32517 -a(S'getScreenPosition/1' -p32518 -S'getScreenPosition(${1:This}) $2' -p32519 -tp32520 -a(S'getScreenRect/1' -p32521 -S'getScreenRect(${1:This}) $2' -p32522 -tp32523 -a(S'getScrollPos/2' -p32524 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p32525 -tp32526 -a(S'getScrollRange/2' -p32527 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p32528 -tp32529 -a(S'getScrollThumb/2' -p32530 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p32531 -tp32532 -a(S'getSelection/1' -p32533 -S'getSelection(${1:This}) $2' -p32534 -tp32535 -a(S'getSize/1' -p32536 -S'getSize(${1:This}) $2' -p32537 -tp32538 -a(S'getSizer/1' -p32539 -S'getSizer(${1:This}) $2' -p32540 -tp32541 -a(S'getTextExtent/2' -p32542 -S'getTextExtent(${1:This}, ${2:String}) $3' -p32543 -tp32544 -a(S'getTextExtent/3' -p32545 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p32546 -tp32547 -a(S'getToolTip/1' -p32548 -S'getToolTip(${1:This}) $2' -p32549 -tp32550 -a(S'getUpdateRegion/1' -p32551 -S'getUpdateRegion(${1:This}) $2' -p32552 -tp32553 -a(S'getVirtualSize/1' -p32554 -S'getVirtualSize(${1:This}) $2' -p32555 -tp32556 -a(S'getWindowStyleFlag/1' -p32557 -S'getWindowStyleFlag(${1:This}) $2' -p32558 -tp32559 -a(S'getWindowVariant/1' -p32560 -S'getWindowVariant(${1:This}) $2' -p32561 -tp32562 -a(S'hasCapture/1' -p32563 -S'hasCapture(${1:This}) $2' -p32564 -tp32565 -a(S'hasScrollbar/2' -p32566 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p32567 -tp32568 -a(S'hasTransparentBackground/1' -p32569 -S'hasTransparentBackground(${1:This}) $2' -p32570 -tp32571 -a(S'hide/1' -p32572 -S'hide(${1:This}) $2' -p32573 -tp32574 -a(S'hitTest/2' -p32575 -S'hitTest(${1:This}, ${2:Pt}) $3' -p32576 -tp32577 -a(S'inheritAttributes/1' -p32578 -S'inheritAttributes(${1:This}) $2' -p32579 -tp32580 -a(S'initDialog/1' -p32581 -S'initDialog(${1:This}) $2' -p32582 -tp32583 -a(S'insertPage/4' -p32584 -S'insertPage(${1:This}, ${2:N}, ${3:Page}, ${4:Text}) $5' -p32585 -tp32586 -a(S'insertPage/5' -p32587 -S'insertPage(${1:This}, ${2:N}, ${3:Page}, ${4:Text}, ${5:Param5}) $6' -p32588 -tp32589 -a(S'invalidateBestSize/1' -p32590 -S'invalidateBestSize(${1:This}) $2' -p32591 -tp32592 -a(S'isEnabled/1' -p32593 -S'isEnabled(${1:This}) $2' -p32594 -tp32595 -a(S'isExposed/2' -p32596 -S'isExposed(${1:This}, ${2:Pt}) $3' -p32597 -tp32598 -a(S'isExposed/3' -p32599 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p32600 -tp32601 -a(S'isExposed/5' -p32602 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p32603 -tp32604 -a(S'isRetained/1' -p32605 -S'isRetained(${1:This}) $2' -p32606 -tp32607 -a(S'isShown/1' -p32608 -S'isShown(${1:This}) $2' -p32609 -tp32610 -a(S'isTopLevel/1' -p32611 -S'isTopLevel(${1:This}) $2' -p32612 -tp32613 -a(S'layout/1' -p32614 -S'layout(${1:This}) $2' -p32615 -tp32616 -a(S'lineDown/1' -p32617 -S'lineDown(${1:This}) $2' -p32618 -tp32619 -a(S'lineUp/1' -p32620 -S'lineUp(${1:This}) $2' -p32621 -tp32622 -a(S'lower/1' -p32623 -S'lower(${1:This}) $2' -p32624 -tp32625 -a(S'makeModal/1' -p32626 -S'makeModal(${1:This}) $2' -p32627 -tp32628 -a(S'makeModal/2' -p32629 -S'makeModal(${1:This}, ${2:Options}) $3' -p32630 -tp32631 -a(S'move/2' -p32632 -S'move(${1:This}, ${2:Pt}) $3' -p32633 -tp32634 -a(S'move/3' -p32635 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p32636 -tp32637 -a(S'move/4' -p32638 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p32639 -tp32640 -a(S'moveAfterInTabOrder/2' -p32641 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p32642 -tp32643 -a(S'moveBeforeInTabOrder/2' -p32644 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p32645 -tp32646 -a(S'navigate/1' -p32647 -S'navigate(${1:This}) $2' -p32648 -tp32649 -a(S'navigate/2' -p32650 -S'navigate(${1:This}, ${2:Options}) $3' -p32651 -tp32652 -a(S'new/0' -p32653 -S'new() $1' -p32654 -tp32655 -a(S'new/2' -p32656 -S'new(${1:Parent}, ${2:Id}) $3' -p32657 -tp32658 -a(S'new/3' -p32659 -S'new(${1:Parent}, ${2:Id}, ${3:Param3}) $4' -p32660 -tp32661 -a(S'pageDown/1' -p32662 -S'pageDown(${1:This}) $2' -p32663 -tp32664 -a(S'pageUp/1' -p32665 -S'pageUp(${1:This}) $2' -p32666 -tp32667 -a(S'parent_class/1' -p32668 -S'parent_class(${1:Param1}) $2' -p32669 -tp32670 -a(S'popEventHandler/1' -p32671 -S'popEventHandler(${1:This}) $2' -p32672 -tp32673 -a(S'popEventHandler/2' -p32674 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p32675 -tp32676 -a(S'popupMenu/2' -p32677 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p32678 -tp32679 -a(S'popupMenu/3' -p32680 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p32681 -tp32682 -a(S'popupMenu/4' -p32683 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p32684 -tp32685 -a(S'raise/1' -p32686 -S'raise(${1:This}) $2' -p32687 -tp32688 -a(S'refresh/1' -p32689 -S'refresh(${1:This}) $2' -p32690 -tp32691 -a(S'refresh/2' -p32692 -S'refresh(${1:This}, ${2:Options}) $3' -p32693 -tp32694 -a(S'refreshRect/2' -p32695 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p32696 -tp32697 -a(S'refreshRect/3' -p32698 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p32699 -tp32700 -a(S'releaseMouse/1' -p32701 -S'releaseMouse(${1:This}) $2' -p32702 -tp32703 -a(S'removeChild/2' -p32704 -S'removeChild(${1:This}, ${2:Child}) $3' -p32705 -tp32706 -a(S'removePage/2' -p32707 -S'removePage(${1:This}, ${2:N}) $3' -p32708 -tp32709 -a(S'reparent/2' -p32710 -S'reparent(${1:This}, ${2:NewParent}) $3' -p32711 -tp32712 -a(S'screenToClient/1' -p32713 -S'screenToClient(${1:This}) $2' -p32714 -tp32715 -a(S'screenToClient/2' -p32716 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p32717 -tp32718 -a(S'scrollLines/2' -p32719 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p32720 -tp32721 -a(S'scrollPages/2' -p32722 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p32723 -tp32724 -a(S'scrollWindow/3' -p32725 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p32726 -tp32727 -a(S'scrollWindow/4' -p32728 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p32729 -tp32730 -a(S'setAcceleratorTable/2' -p32731 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p32732 -tp32733 -a(S'setAutoLayout/2' -p32734 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p32735 -tp32736 -a(S'setBackgroundColour/2' -p32737 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p32738 -tp32739 -a(S'setBackgroundStyle/2' -p32740 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p32741 -tp32742 -a(S'setCaret/2' -p32743 -S'setCaret(${1:This}, ${2:Caret}) $3' -p32744 -tp32745 -a(S'setClientSize/2' -p32746 -S'setClientSize(${1:This}, ${2:Size}) $3' -p32747 -tp32748 -a(S'setClientSize/3' -p32749 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p32750 -tp32751 -a(S'setContainingSizer/2' -p32752 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p32753 -tp32754 -a(S'setCursor/2' -p32755 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p32756 -tp32757 -a(S'setDropTarget/2' -p32758 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p32759 -tp32760 -a(S'setExtraStyle/2' -p32761 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p32762 -tp32763 -a(S'setFocus/1' -p32764 -S'setFocus(${1:This}) $2' -p32765 -tp32766 -a(S'setFocusFromKbd/1' -p32767 -S'setFocusFromKbd(${1:This}) $2' -p32768 -tp32769 -a(S'setFont/2' -p32770 -S'setFont(${1:This}, ${2:Font}) $3' -p32771 -tp32772 -a(S'setForegroundColour/2' -p32773 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p32774 -tp32775 -a(S'setHelpText/2' -p32776 -S'setHelpText(${1:This}, ${2:Text}) $3' -p32777 -tp32778 -a(S'setId/2' -p32779 -S'setId(${1:This}, ${2:Winid}) $3' -p32780 -tp32781 -a(S'setImageList/2' -p32782 -S'setImageList(${1:This}, ${2:ImageList}) $3' -p32783 -tp32784 -a(S'setLabel/2' -p32785 -S'setLabel(${1:This}, ${2:Label}) $3' -p32786 -tp32787 -a(S'setMaxSize/2' -p32788 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p32789 -tp32790 -a(S'setMinSize/2' -p32791 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p32792 -tp32793 -a(S'setName/2' -p32794 -S'setName(${1:This}, ${2:Name}) $3' -p32795 -tp32796 -a(S'setOwnBackgroundColour/2' -p32797 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p32798 -tp32799 -a(S'setOwnFont/2' -p32800 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p32801 -tp32802 -a(S'setOwnForegroundColour/2' -p32803 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p32804 -tp32805 -a(S'setPageImage/3' -p32806 -S'setPageImage(${1:This}, ${2:N}, ${3:ImageId}) $4' -p32807 -tp32808 -a(S'setPageSize/2' -p32809 -S'setPageSize(${1:This}, ${2:Size}) $3' -p32810 -tp32811 -a(S'setPageText/3' -p32812 -S'setPageText(${1:This}, ${2:N}, ${3:StrText}) $4' -p32813 -tp32814 -a(S'setPalette/2' -p32815 -S'setPalette(${1:This}, ${2:Pal}) $3' -p32816 -tp32817 -a(S'setScrollPos/3' -p32818 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p32819 -tp32820 -a(S'setScrollPos/4' -p32821 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p32822 -tp32823 -a(S'setScrollbar/5' -p32824 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p32825 -tp32826 -a(S'setScrollbar/6' -p32827 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p32828 -tp32829 -a(S'setSelection/2' -p32830 -S'setSelection(${1:This}, ${2:N}) $3' -p32831 -tp32832 -a(S'setSize/2' -p32833 -S'setSize(${1:This}, ${2:Rect}) $3' -p32834 -tp32835 -a(S'setSize/3' -p32836 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p32837 -tp32838 -a(S'setSize/5' -p32839 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p32840 -tp32841 -a(S'setSize/6' -p32842 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p32843 -tp32844 -a(S'setSizeHints/2' -p32845 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p32846 -tp32847 -a(S'setSizeHints/3' -p32848 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p32849 -tp32850 -a(S'setSizeHints/4' -p32851 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p32852 -tp32853 -a(S'setSizer/2' -p32854 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p32855 -tp32856 -a(S'setSizer/3' -p32857 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p32858 -tp32859 -a(S'setSizerAndFit/2' -p32860 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p32861 -tp32862 -a(S'setSizerAndFit/3' -p32863 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p32864 -tp32865 -a(S'setThemeEnabled/2' -p32866 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p32867 -tp32868 -a(S'setToolTip/2' -p32869 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p32870 -tp32871 -a(S'setVirtualSize/2' -p32872 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p32873 -tp32874 -a(S'setVirtualSize/3' -p32875 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p32876 -tp32877 -a(S'setVirtualSizeHints/2' -p32878 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p32879 -tp32880 -a(S'setVirtualSizeHints/3' -p32881 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p32882 -tp32883 -a(S'setVirtualSizeHints/4' -p32884 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p32885 -tp32886 -a(S'setWindowStyle/2' -p32887 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p32888 -tp32889 -a(S'setWindowStyleFlag/2' -p32890 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p32891 -tp32892 -a(S'setWindowVariant/2' -p32893 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p32894 -tp32895 -a(S'shouldInheritColours/1' -p32896 -S'shouldInheritColours(${1:This}) $2' -p32897 -tp32898 -a(S'show/1' -p32899 -S'show(${1:This}) $2' -p32900 -tp32901 -a(S'show/2' -p32902 -S'show(${1:This}, ${2:Options}) $3' -p32903 -tp32904 -a(S'thaw/1' -p32905 -S'thaw(${1:This}) $2' -p32906 -tp32907 -a(S'transferDataFromWindow/1' -p32908 -S'transferDataFromWindow(${1:This}) $2' -p32909 -tp32910 -a(S'transferDataToWindow/1' -p32911 -S'transferDataToWindow(${1:This}) $2' -p32912 -tp32913 -a(S'update/1' -p32914 -S'update(${1:This}) $2' -p32915 -tp32916 -a(S'updateWindowUI/1' -p32917 -S'updateWindowUI(${1:This}) $2' -p32918 -tp32919 -a(S'updateWindowUI/2' -p32920 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p32921 -tp32922 -a(S'validate/1' -p32923 -S'validate(${1:This}) $2' -p32924 -tp32925 -a(S'warpPointer/3' -p32926 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p32927 -tp32928 -asS'wxListItemAttr' -p32929 -(lp32930 -(S'destroy/1' -p32931 -S'destroy(${1:This}) $2' -p32932 -tp32933 -a(S'getBackgroundColour/1' -p32934 -S'getBackgroundColour(${1:This}) $2' -p32935 -tp32936 -a(S'getFont/1' -p32937 -S'getFont(${1:This}) $2' -p32938 -tp32939 -a(S'getTextColour/1' -p32940 -S'getTextColour(${1:This}) $2' -p32941 -tp32942 -a(S'hasBackgroundColour/1' -p32943 -S'hasBackgroundColour(${1:This}) $2' -p32944 -tp32945 -a(S'hasFont/1' -p32946 -S'hasFont(${1:This}) $2' -p32947 -tp32948 -a(S'hasTextColour/1' -p32949 -S'hasTextColour(${1:This}) $2' -p32950 -tp32951 -a(S'new/0' -p32952 -S'new() $1' -p32953 -tp32954 -a(S'new/3' -p32955 -S'new(${1:ColText}, ${2:ColBack}, ${3:Font}) $4' -p32956 -tp32957 -a(S'parent_class/1' -p32958 -S'parent_class(${1:Param1}) $2' -p32959 -tp32960 -a(S'setBackgroundColour/2' -p32961 -S'setBackgroundColour(${1:This}, ${2:ColBack}) $3' -p32962 -tp32963 -a(S'setFont/2' -p32964 -S'setFont(${1:This}, ${2:Font}) $3' -p32965 -tp32966 -a(S'setTextColour/2' -p32967 -S'setTextColour(${1:This}, ${2:ColText}) $3' -p32968 -tp32969 -asS'snmpm_net_if_filter' -p32970 -(lp32971 -(S'accept_recv/2' -p32972 -S'accept_recv(${1:Param1}, ${2:Param2}) $3' -p32973 -tp32974 -a(S'accept_recv_pdu/3' -p32975 -S'accept_recv_pdu(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p32976 -tp32977 -a(S'accept_send/2' -p32978 -S'accept_send(${1:Param1}, ${2:Param2}) $3' -p32979 -tp32980 -a(S'accept_send_pdu/3' -p32981 -S'accept_send_pdu(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p32982 -tp32983 -asS'prim_zip' -p32984 -(lp32985 -(S'close/1' -p32986 -S'close(${1:Param1}) $2' -p32987 -tp32988 -a(S'foldl/3' -p32989 -S'foldl(${1:F}, ${2:Accu}, ${3:Param3}) $4' -p32990 -tp32991 -a(S'open/1' -p32992 -S'open(${1:F}) $2' -p32993 -tp32994 -a(S'open/3' -p32995 -S'open(${1:FilterFun}, ${2:FilterAcc}, ${3:F}) $4' -p32996 -tp32997 -a(S'splitter/3' -p32998 -S'splitter(${1:Left}, ${2:Right}, ${3:RelPos}) $4' -p32999 -tp33000 -asS'dbg_wx_win' -p33001 -(lp33002 -(S'add_break/3' -p33003 -S'add_break(${1:Win}, ${2:MenuName}, ${3:Point}) $4' -p33004 -tp33005 -a(S'confirm/2' -p33006 -S'confirm(${1:Win}, ${2:Message}) $3' -p33007 -tp33008 -a(S'create_menus/4' -p33009 -S'create_menus(${1:MB}, ${2:Param2}, ${3:Win}, ${4:Id0}) $5' -p33010 -tp33011 -a(S'delete_break/1' -p33012 -S'delete_break(${1:Break}) $2' -p33013 -tp33014 -a(S'entry/4' -p33015 -S'entry(${1:Parent}, ${2:Title}, ${3:Prompt}, ${4:Param4}) $5' -p33016 -tp33017 -a(S'find_icon/1' -p33018 -S'find_icon(${1:File}) $2' -p33019 -tp33020 -a(S'init/0' -p33021 -S'init() $1' -p33022 -tp33023 -a(S'motion/2' -p33024 -S'motion(${1:X}, ${2:Y}) $3' -p33025 -tp33026 -a(S'notify/2' -p33027 -S'notify(${1:Win}, ${2:Message}) $3' -p33028 -tp33029 -a(S'open_help/2' -p33030 -S'open_help(${1:Param1}, ${2:HelpHtmlFile}) $3' -p33031 -tp33032 -a(S'to_string/1' -p33033 -S'to_string(${1:Atom}) $2' -p33034 -tp33035 -a(S'to_string/2' -p33036 -S'to_string(${1:Format}, ${2:Args}) $3' -p33037 -tp33038 -a(S'update_break/2' -p33039 -S'update_break(${1:Break}, ${2:Options}) $3' -p33040 -tp33041 -asS'CosNotifyComm_StructuredPullSupplier' -p33042 -(lp33043 -(S'code_change/3' -p33044 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p33045 -tp33046 -a(S'disconnect_structured_pull_supplier/1' -p33047 -S'disconnect_structured_pull_supplier(${1:OE_THIS}) $2' -p33048 -tp33049 -a(S'disconnect_structured_pull_supplier/2' -p33050 -S'disconnect_structured_pull_supplier(${1:OE_THIS}, ${2:OE_Options}) $3' -p33051 -tp33052 -a(S'handle_call/3' -p33053 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p33054 -tp33055 -a(S'handle_cast/2' -p33056 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p33057 -tp33058 -a(S'handle_info/2' -p33059 -S'handle_info(${1:Param1}, ${2:State}) $3' -p33060 -tp33061 -a(S'init/1' -p33062 -S'init(${1:Env}) $2' -p33063 -tp33064 -a(S'oe_create/0' -p33065 -S'oe_create() $1' -p33066 -tp33067 -a(S'oe_create/1' -p33068 -S'oe_create(${1:Env}) $2' -p33069 -tp33070 -a(S'oe_create/2' -p33071 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p33072 -tp33073 -a(S'oe_create_link/0' -p33074 -S'oe_create_link() $1' -p33075 -tp33076 -a(S'oe_create_link/1' -p33077 -S'oe_create_link(${1:Env}) $2' -p33078 -tp33079 -a(S'oe_create_link/2' -p33080 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p33081 -tp33082 -a(S'oe_get_interface/0' -p33083 -S'oe_get_interface() $1' -p33084 -tp33085 -a(S'oe_is_a/1' -p33086 -S'oe_is_a(${1:Param1}) $2' -p33087 -tp33088 -a(S'oe_tc/1' -p33089 -S'oe_tc(${1:Param1}) $2' -p33090 -tp33091 -a(S'pull_structured_event/1' -p33092 -S'pull_structured_event(${1:OE_THIS}) $2' -p33093 -tp33094 -a(S'pull_structured_event/2' -p33095 -S'pull_structured_event(${1:OE_THIS}, ${2:OE_Options}) $3' -p33096 -tp33097 -a(S'subscription_change/3' -p33098 -S'subscription_change(${1:OE_THIS}, ${2:Added}, ${3:Removed}) $4' -p33099 -tp33100 -a(S'subscription_change/4' -p33101 -S'subscription_change(${1:OE_THIS}, ${2:OE_Options}, ${3:Added}, ${4:Removed}) $5' -p33102 -tp33103 -a(S'terminate/2' -p33104 -S'terminate(${1:Reason}, ${2:State}) $3' -p33105 -tp33106 -a(S'try_pull_structured_event/1' -p33107 -S'try_pull_structured_event(${1:OE_THIS}) $2' -p33108 -tp33109 -a(S'try_pull_structured_event/2' -p33110 -S'try_pull_structured_event(${1:OE_THIS}, ${2:OE_Options}) $3' -p33111 -tp33112 -a(S'typeID/0' -p33113 -S'typeID() $1' -p33114 -tp33115 -asS'erl_syntax_lib' -p33116 -(lp33117 -(S'analyze_application/1' -p33118 -S'analyze_application(${1:Node}) $2' -p33119 -tp33120 -a(S'analyze_attribute/1' -p33121 -S'analyze_attribute(${1:Node}) $2' -p33122 -tp33123 -a(S'analyze_export_attribute/1' -p33124 -S'analyze_export_attribute(${1:Node}) $2' -p33125 -tp33126 -a(S'analyze_file_attribute/1' -p33127 -S'analyze_file_attribute(${1:Node}) $2' -p33128 -tp33129 -a(S'analyze_form/1' -p33130 -S'analyze_form(${1:Node}) $2' -p33131 -tp33132 -a(S'analyze_forms/1' -p33133 -S'analyze_forms(${1:Forms}) $2' -p33134 -tp33135 -a(S'analyze_function/1' -p33136 -S'analyze_function(${1:Node}) $2' -p33137 -tp33138 -a(S'analyze_function_name/1' -p33139 -S'analyze_function_name(${1:Node}) $2' -p33140 -tp33141 -a(S'analyze_implicit_fun/1' -p33142 -S'analyze_implicit_fun(${1:Node}) $2' -p33143 -tp33144 -a(S'analyze_import_attribute/1' -p33145 -S'analyze_import_attribute(${1:Node}) $2' -p33146 -tp33147 -a(S'analyze_module_attribute/1' -p33148 -S'analyze_module_attribute(${1:Node}) $2' -p33149 -tp33150 -a(S'analyze_record_attribute/1' -p33151 -S'analyze_record_attribute(${1:Node}) $2' -p33152 -tp33153 -a(S'analyze_record_expr/1' -p33154 -S'analyze_record_expr(${1:Node}) $2' -p33155 -tp33156 -a(S'analyze_record_field/1' -p33157 -S'analyze_record_field(${1:Node}) $2' -p33158 -tp33159 -a(S'analyze_rule/1' -p33160 -S'analyze_rule(${1:Node}) $2' -p33161 -tp33162 -a(S'analyze_wild_attribute/1' -p33163 -S'analyze_wild_attribute(${1:Node}) $2' -p33164 -tp33165 -a(S'annotate_bindings/1' -p33166 -S'annotate_bindings(${1:Tree}) $2' -p33167 -tp33168 -a(S'annotate_bindings/2' -p33169 -S'annotate_bindings(${1:Tree}, ${2:Env}) $3' -p33170 -tp33171 -a(S'fold/3' -p33172 -S'fold(${1:F}, ${2:S}, ${3:Tree}) $4' -p33173 -tp33174 -a(S'fold_subtrees/3' -p33175 -S'fold_subtrees(${1:F}, ${2:S}, ${3:Tree}) $4' -p33176 -tp33177 -a(S'foldl_listlist/3' -p33178 -S'foldl_listlist(${1:F}, ${2:S}, ${3:Param3}) $4' -p33179 -tp33180 -a(S'function_name_expansions/1' -p33181 -S'function_name_expansions(${1:Fs}) $2' -p33182 -tp33183 -a(S'is_fail_expr/1' -p33184 -S'is_fail_expr(${1:E}) $2' -p33185 -tp33186 -a(S'limit/2' -p33187 -S'limit(${1:Tree}, ${2:Depth}) $3' -p33188 -tp33189 -a(S'limit/3' -p33190 -S'limit(${1:Tree}, ${2:Depth}, ${3:Node}) $4' -p33191 -tp33192 -a(S'map/2' -p33193 -S'map(${1:F}, ${2:Tree}) $3' -p33194 -tp33195 -a(S'map_subtrees/2' -p33196 -S'map_subtrees(${1:F}, ${2:Tree}) $3' -p33197 -tp33198 -a(S'mapfold/3' -p33199 -S'mapfold(${1:F}, ${2:S}, ${3:Tree}) $4' -p33200 -tp33201 -a(S'mapfold_subtrees/3' -p33202 -S'mapfold_subtrees(${1:F}, ${2:S}, ${3:Tree}) $4' -p33203 -tp33204 -a(S'mapfoldl_listlist/3' -p33205 -S'mapfoldl_listlist(${1:F}, ${2:S}, ${3:Param3}) $4' -p33206 -tp33207 -a(S'new_variable_name/1' -p33208 -S'new_variable_name(${1:S}) $2' -p33209 -tp33210 -a(S'new_variable_name/2' -p33211 -S'new_variable_name(${1:F}, ${2:S}) $3' -p33212 -tp33213 -a(S'new_variable_names/2' -p33214 -S'new_variable_names(${1:N}, ${2:S}) $3' -p33215 -tp33216 -a(S'new_variable_names/3' -p33217 -S'new_variable_names(${1:N}, ${2:F}, ${3:S}) $4' -p33218 -tp33219 -a(S'strip_comments/1' -p33220 -S'strip_comments(${1:Tree}) $2' -p33221 -tp33222 -a(S'to_comment/1' -p33223 -S'to_comment(${1:Tree}) $2' -p33224 -tp33225 -a(S'to_comment/2' -p33226 -S'to_comment(${1:Tree}, ${2:Prefix}) $3' -p33227 -tp33228 -a(S'to_comment/3' -p33229 -S'to_comment(${1:Tree}, ${2:Prefix}, ${3:F}) $4' -p33230 -tp33231 -a(S'variables/1' -p33232 -S'variables(${1:Tree}) $2' -p33233 -tp33234 -asS'snmpa_symbolic_store' -p33235 -(lp33236 -(S'add_aliasnames/2' -p33237 -S'add_aliasnames(${1:MibName}, ${2:MEs}) $3' -p33238 -tp33239 -a(S'add_table_infos/2' -p33240 -S'add_table_infos(${1:MibName}, ${2:TableInfos}) $3' -p33241 -tp33242 -a(S'add_types/2' -p33243 -S'add_types(${1:MibName}, ${2:Types}) $3' -p33244 -tp33245 -a(S'add_variable_infos/2' -p33246 -S'add_variable_infos(${1:MibName}, ${2:VariableInfos}) $3' -p33247 -tp33248 -a(S'aliasname_to_oid/1' -p33249 -S'aliasname_to_oid(${1:Aliasname}) $2' -p33250 -tp33251 -a(S'aliasname_to_oid/2' -p33252 -S'aliasname_to_oid(${1:Db}, ${2:Aliasname}) $3' -p33253 -tp33254 -a(S'backup/1' -p33255 -S'backup(${1:BackupDir}) $2' -p33256 -tp33257 -a(S'code_change/3' -p33258 -S'code_change(${1:Param1}, ${2:S}, ${3:Param3}) $4' -p33259 -tp33260 -a(S'delete_aliasnames/1' -p33261 -S'delete_aliasnames(${1:MibName}) $2' -p33262 -tp33263 -a(S'delete_notifications/1' -p33264 -S'delete_notifications(${1:MibName}) $2' -p33265 -tp33266 -a(S'delete_table_infos/1' -p33267 -S'delete_table_infos(${1:MibName}) $2' -p33268 -tp33269 -a(S'delete_types/1' -p33270 -S'delete_types(${1:MibName}) $2' -p33271 -tp33272 -a(S'delete_variable_infos/1' -p33273 -S'delete_variable_infos(${1:MibName}) $2' -p33274 -tp33275 -a(S'enum_to_int/2' -p33276 -S'enum_to_int(${1:TypeOrObjName}, ${2:Enum}) $3' -p33277 -tp33278 -a(S'enum_to_int/3' -p33279 -S'enum_to_int(${1:Db}, ${2:TypeOrObjName}, ${3:Enum}) $4' -p33280 -tp33281 -a(S'get_db/0' -p33282 -S'get_db() $1' -p33283 -tp33284 -a(S'get_notification/1' -p33285 -S'get_notification(${1:Key}) $2' -p33286 -tp33287 -a(S'handle_call/3' -p33288 -S'handle_call(${1:Req}, ${2:Param2}, ${3:S}) $4' -p33289 -tp33290 -a(S'handle_cast/2' -p33291 -S'handle_cast(${1:Msg}, ${2:State}) $3' -p33292 -tp33293 -a(S'handle_info/2' -p33294 -S'handle_info(${1:Info}, ${2:S}) $3' -p33295 -tp33296 -a(S'info/0' -p33297 -S'info() $1' -p33298 -tp33299 -a(S'init/1' -p33300 -S'init(${1:Param1}) $2' -p33301 -tp33302 -a(S'int_to_enum/2' -p33303 -S'int_to_enum(${1:TypeOrObjName}, ${2:Int}) $3' -p33304 -tp33305 -a(S'int_to_enum/3' -p33306 -S'int_to_enum(${1:Db}, ${2:TypeOrObjName}, ${3:Int}) $4' -p33307 -tp33308 -a(S'oid_to_aliasname/1' -p33309 -S'oid_to_aliasname(${1:OID}) $2' -p33310 -tp33311 -a(S'oid_to_aliasname/2' -p33312 -S'oid_to_aliasname(${1:Db}, ${2:Oid}) $3' -p33313 -tp33314 -a(S'set_notification/2' -p33315 -S'set_notification(${1:Trap}, ${2:MibName}) $3' -p33316 -tp33317 -a(S'start_link/2' -p33318 -S'start_link(${1:Prio}, ${2:Opts}) $3' -p33319 -tp33320 -a(S'stop/0' -p33321 -S'stop() $1' -p33322 -tp33323 -a(S'table_info/1' -p33324 -S'table_info(${1:TableName}) $2' -p33325 -tp33326 -a(S'terminate/2' -p33327 -S'terminate(${1:Reason}, ${2:S}) $3' -p33328 -tp33329 -a(S'variable_info/1' -p33330 -S'variable_info(${1:VariableName}) $2' -p33331 -tp33332 -a(S'verbosity/1' -p33333 -S'verbosity(${1:Verbosity}) $2' -p33334 -tp33335 -a(S'which_aliasnames/0' -p33336 -S'which_aliasnames() $1' -p33337 -tp33338 -a(S'which_notifications/0' -p33339 -S'which_notifications() $1' -p33340 -tp33341 -a(S'which_tables/0' -p33342 -S'which_tables() $1' -p33343 -tp33344 -a(S'which_variables/0' -p33345 -S'which_variables() $1' -p33346 -tp33347 -asS'erl_eval' -p33348 -(lp33349 -(S'add_binding/3' -p33350 -S'add_binding(${1:Name}, ${2:Value}, ${3:BindingStruct}) $4' -p33351 -tp33352 -a(S'binding/2' -p33353 -S'binding(${1:Name}, ${2:BindingStruct}) $3' -p33354 -tp33355 -a(S'bindings/1' -p33356 -S'bindings(${1:Bs}) $2' -p33357 -tp33358 -a(S'check_command/2' -p33359 -S'check_command(${1:Es}, ${2:Bs}) $3' -p33360 -tp33361 -a(S'del_binding/2' -p33362 -S'del_binding(${1:Name}, ${2:BindingStruct}) $3' -p33363 -tp33364 -a(S'expr/2' -p33365 -S'expr(${1:Expression}, ${2:Bindings}) $3' -p33366 -tp33367 -a(S'expr/3' -p33368 -S'expr(${1:Expression}, ${2:Bindings}, ${3:LocalFunctionHandler}) $4' -p33369 -tp33370 -a(S'expr/4' -p33371 -S'expr(${1:E}, ${2:Bs}, ${3:Lf}, ${4:Ef}) $5' -p33372 -tp33373 -a(S'expr/5' -p33374 -S'expr(${1:Mod}, ${2:Bs}, ${3:Lf}, ${4:Ef}, ${5:RBs}) $6' -p33375 -tp33376 -a(S'expr_list/2' -p33377 -S'expr_list(${1:ExpressionList}, ${2:Bindings}) $3' -p33378 -tp33379 -a(S'expr_list/3' -p33380 -S'expr_list(${1:ExpressionList}, ${2:Bindings}, ${3:LocalFunctionHandler}) $4' -p33381 -tp33382 -a(S'expr_list/4' -p33383 -S'expr_list(${1:Es}, ${2:Bs}, ${3:Lf}, ${4:Ef}) $5' -p33384 -tp33385 -a(S'exprs/2' -p33386 -S'exprs(${1:Expressions}, ${2:Bindings}) $3' -p33387 -tp33388 -a(S'exprs/3' -p33389 -S'exprs(${1:Expressions}, ${2:Bindings}, ${3:LocalFunctionHandler}) $4' -p33390 -tp33391 -a(S'exprs/4' -p33392 -S'exprs(${1:Exprs}, ${2:Bs}, ${3:Lf}, ${4:Ef}) $5' -p33393 -tp33394 -a(S'fun_data/1' -p33395 -S'fun_data(${1:F}) $2' -p33396 -tp33397 -a(S'is_constant_expr/1' -p33398 -S'is_constant_expr(${1:Expr}) $2' -p33399 -tp33400 -a(S'match_clause/4' -p33401 -S'match_clause(${1:Clauses}, ${2:ValueList}, ${3:Bindings}, ${4:LocalFunctionHandler}) $5' -p33402 -tp33403 -a(S'new_bindings/0' -p33404 -S'new_bindings() $1' -p33405 -tp33406 -a(S'partial_eval/1' -p33407 -S'partial_eval(${1:Expr}) $2' -p33408 -tp33409 -asS'dbg_ui_edit_win' -p33410 -(lp33411 -(S'create_win/5' -p33412 -S'create_win() $1' -p33413 -tp33414 -a(S'get_window/1' -p33415 -S'get_window(${1:WinInfo}) $2' -p33416 -tp33417 -a(S'handle_event/2' -p33418 -S'handle_event(${1:Param1}, ${2:WinInfo}) $3' -p33419 -tp33420 -asS'mnesia_backup' -p33421 -(lp33422 -(S'abort_write/1' -p33423 -S'abort_write(${1:BackupRef}) $2' -p33424 -tp33425 -a(S'close_read/1' -p33426 -S'close_read(${1:OpaqueData}) $2' -p33427 -tp33428 -a(S'commit_write/1' -p33429 -S'commit_write(${1:OpaqueData}) $2' -p33430 -tp33431 -a(S'open_read/1' -p33432 -S'open_read(${1:OpaqueData}) $2' -p33433 -tp33434 -a(S'open_write/1' -p33435 -S'open_write(${1:OpaqueData}) $2' -p33436 -tp33437 -a(S'read/1' -p33438 -S'read(${1:OpaqueData}) $2' -p33439 -tp33440 -a(S'write/2' -p33441 -S'write(${1:OpaqueData}, ${2:BackupItems}) $3' -p33442 -tp33443 -asS'orber_ifr_container' -p33444 -(lp33445 -(S"'_get_def_kind'/1" -p33446 -S"'_get_def_kind'(${1:ObjRef}) $2" -p33447 -tp33448 -a(S'add_to_container/5' -p33449 -S'add_to_container(${1:ContainerRef}, ${2:Object}, ${3:Id}, ${4:Table}, ${5:Index}) $6' -p33450 -tp33451 -a(S'cleanup_for_destroy/1' -p33452 -S'cleanup_for_destroy(${1:Container_objref}) $2' -p33453 -tp33454 -a(S'contents/3' -p33455 -S'contents(${1:ObjRef}, ${2:Limit_type}, ${3:Exclude_inherited}) $4' -p33456 -tp33457 -a(S'create_alias/5' -p33458 -S'create_alias(${1:LRef}, ${2:Id}, ${3:Name}, ${4:Version}, ${5:Original_type}) $6' -p33459 -tp33460 -a(S'create_constant/6' -p33461 -S'create_constant(${1:LRef}, ${2:Id}, ${3:Name}, ${4:Version}, ${5:Type}, ${6:Value}) $7' -p33462 -tp33463 -a(S'create_enum/5' -p33464 -S'create_enum(${1:LRef}, ${2:Id}, ${3:Name}, ${4:Version}, ${5:Members}) $6' -p33465 -tp33466 -a(S'create_exception/5' -p33467 -S'create_exception(${1:LRef}, ${2:Id}, ${3:Name}, ${4:Version}, ${5:Members}) $6' -p33468 -tp33469 -a(S'create_interface/5' -p33470 -S'create_interface(${1:LRef}, ${2:Id}, ${3:Name}, ${4:Version}, ${5:Base_interfaces}) $6' -p33471 -tp33472 -a(S'create_module/4' -p33473 -S'create_module(${1:LRef}, ${2:Id}, ${3:Name}, ${4:Version}) $5' -p33474 -tp33475 -a(S'create_struct/5' -p33476 -S'create_struct(${1:LRef}, ${2:Id}, ${3:Name}, ${4:Version}, ${5:Members}) $6' -p33477 -tp33478 -a(S'create_union/6' -p33479 -S'create_union() $1' -p33480 -tp33481 -a(S'describe_contents/4' -p33482 -S'describe_contents() $1' -p33483 -tp33484 -a(S'destroy/1' -p33485 -S'destroy(${1:Container_objref}) $2' -p33486 -tp33487 -a(S'lookup/2' -p33488 -S'lookup(${1:ObjRef}, ${2:Search_name}) $3' -p33489 -tp33490 -a(S'lookup_name/5' -p33491 -S'lookup_name() $1' -p33492 -tp33493 -a(S'make_absolute_name/2' -p33494 -S'make_absolute_name(${1:Param1}, ${2:Name}) $3' -p33495 -tp33496 -a(S'make_containing_repository/1' -p33497 -S'make_containing_repository(${1:Param1}) $2' -p33498 -tp33499 -asS'CosNotifyFilter_ConstraintInfo' -p33500 -(lp33501 -(S'id/0' -p33502 -S'id() $1' -p33503 -tp33504 -a(S'name/0' -p33505 -S'name() $1' -p33506 -tp33507 -a(S'tc/0' -p33508 -S'tc() $1' -p33509 -tp33510 -asS'snmp_config' -p33511 -(lp33512 -(S'append_config_file/4' -p33513 -S'append_config_file(${1:Dir}, ${2:FileName}, ${3:Verify}, ${4:Write}) $5' -p33514 -tp33515 -a(S'config/0' -p33516 -S'config() $1' -p33517 -tp33518 -a(S'read_config_file/3' -p33519 -S'read_config_file(${1:Dir}, ${2:FileName}, ${3:Verify}) $4' -p33520 -tp33521 -a(S'update_agent_community_config/2' -p33522 -S'update_agent_community_config(${1:Dir}, ${2:Conf}) $3' -p33523 -tp33524 -a(S'update_agent_config/2' -p33525 -S'update_agent_config(${1:Dir}, ${2:Conf}) $3' -p33526 -tp33527 -a(S'update_agent_context_config/2' -p33528 -S'update_agent_context_config(${1:Dir}, ${2:Conf}) $3' -p33529 -tp33530 -a(S'update_agent_notify_config/2' -p33531 -S'update_agent_notify_config(${1:Dir}, ${2:Conf}) $3' -p33532 -tp33533 -a(S'update_agent_standard_config/2' -p33534 -S'update_agent_standard_config(${1:Dir}, ${2:Conf}) $3' -p33535 -tp33536 -a(S'update_agent_target_addr_config/2' -p33537 -S'update_agent_target_addr_config(${1:Dir}, ${2:Conf}) $3' -p33538 -tp33539 -a(S'update_agent_target_params_config/2' -p33540 -S'update_agent_target_params_config(${1:Dir}, ${2:Conf}) $3' -p33541 -tp33542 -a(S'update_agent_usm_config/2' -p33543 -S'update_agent_usm_config(${1:Dir}, ${2:Conf}) $3' -p33544 -tp33545 -a(S'update_agent_vacm_config/2' -p33546 -S'update_agent_vacm_config(${1:Dir}, ${2:Conf}) $3' -p33547 -tp33548 -a(S'update_manager_agents_config/2' -p33549 -S'update_manager_agents_config(${1:Dir}, ${2:Agents}) $3' -p33550 -tp33551 -a(S'update_manager_config/2' -p33552 -S'update_manager_config(${1:Dir}, ${2:Conf}) $3' -p33553 -tp33554 -a(S'update_manager_users_config/2' -p33555 -S'update_manager_users_config(${1:Dir}, ${2:Users}) $3' -p33556 -tp33557 -a(S'update_manager_usm_config/2' -p33558 -S'update_manager_usm_config(${1:Dir}, ${2:Usms}) $3' -p33559 -tp33560 -a(S'write_agent_community_config/3' -p33561 -S'write_agent_community_config(${1:Dir}, ${2:Hdr}, ${3:Conf}) $4' -p33562 -tp33563 -a(S'write_agent_config/3' -p33564 -S'write_agent_config(${1:Dir}, ${2:Hdr}, ${3:Conf}) $4' -p33565 -tp33566 -a(S'write_agent_context_config/3' -p33567 -S'write_agent_context_config(${1:Dir}, ${2:Hdr}, ${3:Conf}) $4' -p33568 -tp33569 -a(S'write_agent_notify_config/3' -p33570 -S'write_agent_notify_config(${1:Dir}, ${2:Hdr}, ${3:Conf}) $4' -p33571 -tp33572 -a(S'write_agent_snmp_community_conf/1' -p33573 -S'write_agent_snmp_community_conf(${1:Dir}) $2' -p33574 -tp33575 -a(S'write_agent_snmp_conf/5' -p33576 -S'write_agent_snmp_conf(${1:Dir}, ${2:AgentIP}, ${3:AgentUDP}, ${4:EngineID}, ${5:MMS}) $6' -p33577 -tp33578 -a(S'write_agent_snmp_context_conf/1' -p33579 -S'write_agent_snmp_context_conf(${1:Dir}) $2' -p33580 -tp33581 -a(S'write_agent_snmp_files/12' -p33582 -S'write_agent_snmp_files() $1' -p33583 -tp33584 -a(S'write_agent_snmp_files/7' -p33585 -S'write_agent_snmp_files() $1' -p33586 -tp33587 -a(S'write_agent_snmp_notify_conf/2' -p33588 -S'write_agent_snmp_notify_conf(${1:Dir}, ${2:NotifyType}) $3' -p33589 -tp33590 -a(S'write_agent_snmp_standard_conf/2' -p33591 -S'write_agent_snmp_standard_conf(${1:Dir}, ${2:SysName}) $3' -p33592 -tp33593 -a(S'write_agent_snmp_target_addr_conf/4' -p33594 -S'write_agent_snmp_target_addr_conf(${1:Dir}, ${2:ManagerIp}, ${3:UDP}, ${4:Vsns}) $5' -p33595 -tp33596 -a(S'write_agent_snmp_target_addr_conf/6' -p33597 -S'write_agent_snmp_target_addr_conf() $1' -p33598 -tp33599 -a(S'write_agent_snmp_target_params_conf/2' -p33600 -S'write_agent_snmp_target_params_conf(${1:Dir}, ${2:Vsns}) $3' -p33601 -tp33602 -a(S'write_agent_snmp_usm_conf/5' -p33603 -S'write_agent_snmp_usm_conf(${1:Dir}, ${2:Vsns}, ${3:EngineID}, ${4:SecType}, ${5:Passwd}) $6' -p33604 -tp33605 -a(S'write_agent_snmp_vacm_conf/3' -p33606 -S'write_agent_snmp_vacm_conf(${1:Dir}, ${2:Vsns}, ${3:SecType}) $4' -p33607 -tp33608 -a(S'write_agent_standard_config/3' -p33609 -S'write_agent_standard_config(${1:Dir}, ${2:Hdr}, ${3:Conf}) $4' -p33610 -tp33611 -a(S'write_agent_target_addr_config/3' -p33612 -S'write_agent_target_addr_config(${1:Dir}, ${2:Hdr}, ${3:Conf}) $4' -p33613 -tp33614 -a(S'write_agent_target_params_config/3' -p33615 -S'write_agent_target_params_config(${1:Dir}, ${2:Hdr}, ${3:Conf}) $4' -p33616 -tp33617 -a(S'write_agent_usm_config/3' -p33618 -S'write_agent_usm_config(${1:Dir}, ${2:Hdr}, ${3:Conf}) $4' -p33619 -tp33620 -a(S'write_agent_vacm_config/3' -p33621 -S'write_agent_vacm_config(${1:Dir}, ${2:Hdr}, ${3:Conf}) $4' -p33622 -tp33623 -a(S'write_config_file/4' -p33624 -S'write_config_file(${1:Dir}, ${2:FileName}, ${3:Verify}, ${4:Write}) $5' -p33625 -tp33626 -a(S'write_manager_agents_config/3' -p33627 -S'write_manager_agents_config(${1:Dir}, ${2:Hdr}, ${3:Agents}) $4' -p33628 -tp33629 -a(S'write_manager_config/3' -p33630 -S'write_manager_config(${1:Dir}, ${2:Hdr}, ${3:Conf}) $4' -p33631 -tp33632 -a(S'write_manager_snmp_agents_conf/2' -p33633 -S'write_manager_snmp_agents_conf(${1:Dir}, ${2:Agents}) $3' -p33634 -tp33635 -a(S'write_manager_snmp_conf/5' -p33636 -S'write_manager_snmp_conf(${1:Dir}, ${2:IP}, ${3:Port}, ${4:MMS}, ${5:EngineID}) $6' -p33637 -tp33638 -a(S'write_manager_snmp_files/8' -p33639 -S'write_manager_snmp_files() $1' -p33640 -tp33641 -a(S'write_manager_snmp_users_conf/2' -p33642 -S'write_manager_snmp_users_conf(${1:Dir}, ${2:Users}) $3' -p33643 -tp33644 -a(S'write_manager_snmp_usm_conf/2' -p33645 -S'write_manager_snmp_usm_conf(${1:Dir}, ${2:Usms}) $3' -p33646 -tp33647 -a(S'write_manager_users_config/3' -p33648 -S'write_manager_users_config(${1:Dir}, ${2:Hdr}, ${3:Users}) $4' -p33649 -tp33650 -a(S'write_manager_usm_config/3' -p33651 -S'write_manager_usm_config(${1:Dir}, ${2:Hdr}, ${3:Usms}) $4' -p33652 -tp33653 -asS'webtool' -p33654 -(lp33655 -(S'code_change/3' -p33656 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p33657 -tp33658 -a(S'debug/1' -p33659 -S'debug(${1:F}) $2' -p33660 -tp33661 -a(S'debug_app/1' -p33662 -S'debug_app(${1:Mod}) $2' -p33663 -tp33664 -a(S'get_tools1/1' -p33665 -S'get_tools1(${1:Dirs}) $2' -p33666 -tp33667 -a(S'handle_call/3' -p33668 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p33669 -tp33670 -a(S'handle_cast/2' -p33671 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p33672 -tp33673 -a(S'handle_info/2' -p33674 -S'handle_info(${1:Param1}, ${2:State}) $3' -p33675 -tp33676 -a(S'init/1' -p33677 -S'init(${1:Param1}) $2' -p33678 -tp33679 -a(S'is_localhost/0' -p33680 -S'is_localhost() $1' -p33681 -tp33682 -a(S'script_start/0' -p33683 -S'script_start() $1' -p33684 -tp33685 -a(S'script_start/1' -p33686 -S'script_start(${1:Param1}) $2' -p33687 -tp33688 -a(S'start/0' -p33689 -S'start() $1' -p33690 -tp33691 -a(S'start/2' -p33692 -S'start(${1:Path}, ${2:Data}) $3' -p33693 -tp33694 -a(S'start_tools/2' -p33695 -S'start_tools(${1:Env}, ${2:Input}) $3' -p33696 -tp33697 -a(S'started_tools/2' -p33698 -S'started_tools(${1:Env}, ${2:Input}) $3' -p33699 -tp33700 -a(S'stop/0' -p33701 -S'stop() $1' -p33702 -tp33703 -a(S'stop_debug/0' -p33704 -S'stop_debug() $1' -p33705 -tp33706 -a(S'stop_tools/2' -p33707 -S'stop_tools(${1:Env}, ${2:Input}) $3' -p33708 -tp33709 -a(S'terminate/2' -p33710 -S'terminate(${1:Param1}, ${2:Data}) $3' -p33711 -tp33712 -a(S'toolbar/2' -p33713 -S'toolbar(${1:Env}, ${2:Input}) $3' -p33714 -tp33715 -asS'snmpm_network_interface' -p33716 -(lp33717 -(S'behaviour_info/1' -p33718 -S'behaviour_info(${1:Param1}) $2' -p33719 -tp33720 -asS'sasl_report' -p33721 -(lp33722 -(S'format_report/3' -p33723 -S'format_report(${1:Fd}, ${2:What}, ${3:Report}) $4' -p33724 -tp33725 -a(S'write_report/3' -p33726 -S'write_report(${1:Fd}, ${2:What}, ${3:Report}) $4' -p33727 -tp33728 -asS'CosNotifyChannelAdmin_StructuredProxyPushConsumer' -p33729 -(lp33730 -(S"'_get_MyAdmin'/1" -p33731 -S"'_get_MyAdmin'(${1:OE_THIS}) $2" -p33732 -tp33733 -a(S"'_get_MyAdmin'/2" -p33734 -S"'_get_MyAdmin'(${1:OE_THIS}, ${2:OE_Options}) $3" -p33735 -tp33736 -a(S"'_get_MyType'/1" -p33737 -S"'_get_MyType'(${1:OE_THIS}) $2" -p33738 -tp33739 -a(S"'_get_MyType'/2" -p33740 -S"'_get_MyType'(${1:OE_THIS}, ${2:OE_Options}) $3" -p33741 -tp33742 -a(S'add_filter/2' -p33743 -S'add_filter(${1:OE_THIS}, ${2:New_filter}) $3' -p33744 -tp33745 -a(S'add_filter/3' -p33746 -S'add_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:New_filter}) $4' -p33747 -tp33748 -a(S'code_change/3' -p33749 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p33750 -tp33751 -a(S'connect_structured_push_supplier/2' -p33752 -S'connect_structured_push_supplier(${1:OE_THIS}, ${2:Push_supplier}) $3' -p33753 -tp33754 -a(S'connect_structured_push_supplier/3' -p33755 -S'connect_structured_push_supplier(${1:OE_THIS}, ${2:OE_Options}, ${3:Push_supplier}) $4' -p33756 -tp33757 -a(S'disconnect_structured_push_consumer/1' -p33758 -S'disconnect_structured_push_consumer(${1:OE_THIS}) $2' -p33759 -tp33760 -a(S'disconnect_structured_push_consumer/2' -p33761 -S'disconnect_structured_push_consumer(${1:OE_THIS}, ${2:OE_Options}) $3' -p33762 -tp33763 -a(S'get_all_filters/1' -p33764 -S'get_all_filters(${1:OE_THIS}) $2' -p33765 -tp33766 -a(S'get_all_filters/2' -p33767 -S'get_all_filters(${1:OE_THIS}, ${2:OE_Options}) $3' -p33768 -tp33769 -a(S'get_filter/2' -p33770 -S'get_filter(${1:OE_THIS}, ${2:Filter}) $3' -p33771 -tp33772 -a(S'get_filter/3' -p33773 -S'get_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:Filter}) $4' -p33774 -tp33775 -a(S'get_qos/1' -p33776 -S'get_qos(${1:OE_THIS}) $2' -p33777 -tp33778 -a(S'get_qos/2' -p33779 -S'get_qos(${1:OE_THIS}, ${2:OE_Options}) $3' -p33780 -tp33781 -a(S'handle_call/3' -p33782 -S'handle_call(${1:Param1}, ${2:OE_From}, ${3:OE_State}) $4' -p33783 -tp33784 -a(S'handle_cast/2' -p33785 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p33786 -tp33787 -a(S'handle_info/2' -p33788 -S'handle_info(${1:Info}, ${2:State}) $3' -p33789 -tp33790 -a(S'init/1' -p33791 -S'init(${1:Env}) $2' -p33792 -tp33793 -a(S'obtain_subscription_types/2' -p33794 -S'obtain_subscription_types(${1:OE_THIS}, ${2:Mode}) $3' -p33795 -tp33796 -a(S'obtain_subscription_types/3' -p33797 -S'obtain_subscription_types(${1:OE_THIS}, ${2:OE_Options}, ${3:Mode}) $4' -p33798 -tp33799 -a(S'oe_create/0' -p33800 -S'oe_create() $1' -p33801 -tp33802 -a(S'oe_create/1' -p33803 -S'oe_create(${1:Env}) $2' -p33804 -tp33805 -a(S'oe_create/2' -p33806 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p33807 -tp33808 -a(S'oe_create_link/0' -p33809 -S'oe_create_link() $1' -p33810 -tp33811 -a(S'oe_create_link/1' -p33812 -S'oe_create_link(${1:Env}) $2' -p33813 -tp33814 -a(S'oe_create_link/2' -p33815 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p33816 -tp33817 -a(S'oe_get_interface/0' -p33818 -S'oe_get_interface() $1' -p33819 -tp33820 -a(S'oe_is_a/1' -p33821 -S'oe_is_a(${1:Param1}) $2' -p33822 -tp33823 -a(S'oe_tc/1' -p33824 -S'oe_tc(${1:Param1}) $2' -p33825 -tp33826 -a(S'offer_change/3' -p33827 -S'offer_change(${1:OE_THIS}, ${2:Added}, ${3:Removed}) $4' -p33828 -tp33829 -a(S'offer_change/4' -p33830 -S'offer_change(${1:OE_THIS}, ${2:OE_Options}, ${3:Added}, ${4:Removed}) $5' -p33831 -tp33832 -a(S'push_structured_event/2' -p33833 -S'push_structured_event(${1:OE_THIS}, ${2:Notification}) $3' -p33834 -tp33835 -a(S'push_structured_event/3' -p33836 -S'push_structured_event(${1:OE_THIS}, ${2:OE_Options}, ${3:Notification}) $4' -p33837 -tp33838 -a(S'remove_all_filters/1' -p33839 -S'remove_all_filters(${1:OE_THIS}) $2' -p33840 -tp33841 -a(S'remove_all_filters/2' -p33842 -S'remove_all_filters(${1:OE_THIS}, ${2:OE_Options}) $3' -p33843 -tp33844 -a(S'remove_filter/2' -p33845 -S'remove_filter(${1:OE_THIS}, ${2:Filter}) $3' -p33846 -tp33847 -a(S'remove_filter/3' -p33848 -S'remove_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:Filter}) $4' -p33849 -tp33850 -a(S'set_qos/2' -p33851 -S'set_qos(${1:OE_THIS}, ${2:Qos}) $3' -p33852 -tp33853 -a(S'set_qos/3' -p33854 -S'set_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Qos}) $4' -p33855 -tp33856 -a(S'terminate/2' -p33857 -S'terminate(${1:Reason}, ${2:State}) $3' -p33858 -tp33859 -a(S'typeID/0' -p33860 -S'typeID() $1' -p33861 -tp33862 -a(S'validate_event_qos/2' -p33863 -S'validate_event_qos(${1:OE_THIS}, ${2:Required_qos}) $3' -p33864 -tp33865 -a(S'validate_event_qos/3' -p33866 -S'validate_event_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Required_qos}) $4' -p33867 -tp33868 -a(S'validate_qos/2' -p33869 -S'validate_qos(${1:OE_THIS}, ${2:Required_qos}) $3' -p33870 -tp33871 -a(S'validate_qos/3' -p33872 -S'validate_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Required_qos}) $4' -p33873 -tp33874 -asS'wxDatePickerCtrl' -p33875 -(lp33876 -(S'cacheBestSize/2' -p33877 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p33878 -tp33879 -a(S'captureMouse/1' -p33880 -S'captureMouse(${1:This}) $2' -p33881 -tp33882 -a(S'center/1' -p33883 -S'center(${1:This}) $2' -p33884 -tp33885 -a(S'center/2' -p33886 -S'center(${1:This}, ${2:Options}) $3' -p33887 -tp33888 -a(S'centerOnParent/1' -p33889 -S'centerOnParent(${1:This}) $2' -p33890 -tp33891 -a(S'centerOnParent/2' -p33892 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p33893 -tp33894 -a(S'centre/1' -p33895 -S'centre(${1:This}) $2' -p33896 -tp33897 -a(S'centre/2' -p33898 -S'centre(${1:This}, ${2:Options}) $3' -p33899 -tp33900 -a(S'centreOnParent/1' -p33901 -S'centreOnParent(${1:This}) $2' -p33902 -tp33903 -a(S'centreOnParent/2' -p33904 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p33905 -tp33906 -a(S'clearBackground/1' -p33907 -S'clearBackground(${1:This}) $2' -p33908 -tp33909 -a(S'clientToScreen/2' -p33910 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p33911 -tp33912 -a(S'clientToScreen/3' -p33913 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p33914 -tp33915 -a(S'close/1' -p33916 -S'close(${1:This}) $2' -p33917 -tp33918 -a(S'close/2' -p33919 -S'close(${1:This}, ${2:Options}) $3' -p33920 -tp33921 -a(S'connect/2' -p33922 -S'connect(${1:This}, ${2:EventType}) $3' -p33923 -tp33924 -a(S'connect/3' -p33925 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p33926 -tp33927 -a(S'convertDialogToPixels/2' -p33928 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p33929 -tp33930 -a(S'convertPixelsToDialog/2' -p33931 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p33932 -tp33933 -a(S'destroy/1' -p33934 -S'destroy(${1:This}) $2' -p33935 -tp33936 -a(S'destroyChildren/1' -p33937 -S'destroyChildren(${1:This}) $2' -p33938 -tp33939 -a(S'disable/1' -p33940 -S'disable(${1:This}) $2' -p33941 -tp33942 -a(S'disconnect/1' -p33943 -S'disconnect(${1:This}) $2' -p33944 -tp33945 -a(S'disconnect/2' -p33946 -S'disconnect(${1:This}, ${2:EventType}) $3' -p33947 -tp33948 -a(S'disconnect/3' -p33949 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p33950 -tp33951 -a(S'enable/1' -p33952 -S'enable(${1:This}) $2' -p33953 -tp33954 -a(S'enable/2' -p33955 -S'enable(${1:This}, ${2:Options}) $3' -p33956 -tp33957 -a(S'findWindow/2' -p33958 -S'findWindow(${1:This}, ${2:Winid}) $3' -p33959 -tp33960 -a(S'fit/1' -p33961 -S'fit(${1:This}) $2' -p33962 -tp33963 -a(S'fitInside/1' -p33964 -S'fitInside(${1:This}) $2' -p33965 -tp33966 -a(S'freeze/1' -p33967 -S'freeze(${1:This}) $2' -p33968 -tp33969 -a(S'getAcceleratorTable/1' -p33970 -S'getAcceleratorTable(${1:This}) $2' -p33971 -tp33972 -a(S'getBackgroundColour/1' -p33973 -S'getBackgroundColour(${1:This}) $2' -p33974 -tp33975 -a(S'getBackgroundStyle/1' -p33976 -S'getBackgroundStyle(${1:This}) $2' -p33977 -tp33978 -a(S'getBestSize/1' -p33979 -S'getBestSize(${1:This}) $2' -p33980 -tp33981 -a(S'getCaret/1' -p33982 -S'getCaret(${1:This}) $2' -p33983 -tp33984 -a(S'getCharHeight/1' -p33985 -S'getCharHeight(${1:This}) $2' -p33986 -tp33987 -a(S'getCharWidth/1' -p33988 -S'getCharWidth(${1:This}) $2' -p33989 -tp33990 -a(S'getChildren/1' -p33991 -S'getChildren(${1:This}) $2' -p33992 -tp33993 -a(S'getClientSize/1' -p33994 -S'getClientSize(${1:This}) $2' -p33995 -tp33996 -a(S'getContainingSizer/1' -p33997 -S'getContainingSizer(${1:This}) $2' -p33998 -tp33999 -a(S'getCursor/1' -p34000 -S'getCursor(${1:This}) $2' -p34001 -tp34002 -a(S'getDropTarget/1' -p34003 -S'getDropTarget(${1:This}) $2' -p34004 -tp34005 -a(S'getEventHandler/1' -p34006 -S'getEventHandler(${1:This}) $2' -p34007 -tp34008 -a(S'getExtraStyle/1' -p34009 -S'getExtraStyle(${1:This}) $2' -p34010 -tp34011 -a(S'getFont/1' -p34012 -S'getFont(${1:This}) $2' -p34013 -tp34014 -a(S'getForegroundColour/1' -p34015 -S'getForegroundColour(${1:This}) $2' -p34016 -tp34017 -a(S'getGrandParent/1' -p34018 -S'getGrandParent(${1:This}) $2' -p34019 -tp34020 -a(S'getHandle/1' -p34021 -S'getHandle(${1:This}) $2' -p34022 -tp34023 -a(S'getHelpText/1' -p34024 -S'getHelpText(${1:This}) $2' -p34025 -tp34026 -a(S'getId/1' -p34027 -S'getId(${1:This}) $2' -p34028 -tp34029 -a(S'getInternalMargin/1' -p34030 -S'getInternalMargin(${1:This}) $2' -p34031 -tp34032 -a(S'getLabel/1' -p34033 -S'getLabel(${1:This}) $2' -p34034 -tp34035 -a(S'getMaxSize/1' -p34036 -S'getMaxSize(${1:This}) $2' -p34037 -tp34038 -a(S'getMinSize/1' -p34039 -S'getMinSize(${1:This}) $2' -p34040 -tp34041 -a(S'getName/1' -p34042 -S'getName(${1:This}) $2' -p34043 -tp34044 -a(S'getParent/1' -p34045 -S'getParent(${1:This}) $2' -p34046 -tp34047 -a(S'getPickerCtrlProportion/1' -p34048 -S'getPickerCtrlProportion(${1:This}) $2' -p34049 -tp34050 -a(S'getPosition/1' -p34051 -S'getPosition(${1:This}) $2' -p34052 -tp34053 -a(S'getRange/3' -p34054 -S'getRange(${1:This}, ${2:Dt1}, ${3:Dt2}) $4' -p34055 -tp34056 -a(S'getRect/1' -p34057 -S'getRect(${1:This}) $2' -p34058 -tp34059 -a(S'getScreenPosition/1' -p34060 -S'getScreenPosition(${1:This}) $2' -p34061 -tp34062 -a(S'getScreenRect/1' -p34063 -S'getScreenRect(${1:This}) $2' -p34064 -tp34065 -a(S'getScrollPos/2' -p34066 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p34067 -tp34068 -a(S'getScrollRange/2' -p34069 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p34070 -tp34071 -a(S'getScrollThumb/2' -p34072 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p34073 -tp34074 -a(S'getSize/1' -p34075 -S'getSize(${1:This}) $2' -p34076 -tp34077 -a(S'getSizer/1' -p34078 -S'getSizer(${1:This}) $2' -p34079 -tp34080 -a(S'getTextCtrl/1' -p34081 -S'getTextCtrl(${1:This}) $2' -p34082 -tp34083 -a(S'getTextCtrlProportion/1' -p34084 -S'getTextCtrlProportion(${1:This}) $2' -p34085 -tp34086 -a(S'getTextExtent/2' -p34087 -S'getTextExtent(${1:This}, ${2:String}) $3' -p34088 -tp34089 -a(S'getTextExtent/3' -p34090 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p34091 -tp34092 -a(S'getToolTip/1' -p34093 -S'getToolTip(${1:This}) $2' -p34094 -tp34095 -a(S'getUpdateRegion/1' -p34096 -S'getUpdateRegion(${1:This}) $2' -p34097 -tp34098 -a(S'getValue/1' -p34099 -S'getValue(${1:This}) $2' -p34100 -tp34101 -a(S'getVirtualSize/1' -p34102 -S'getVirtualSize(${1:This}) $2' -p34103 -tp34104 -a(S'getWindowStyleFlag/1' -p34105 -S'getWindowStyleFlag(${1:This}) $2' -p34106 -tp34107 -a(S'getWindowVariant/1' -p34108 -S'getWindowVariant(${1:This}) $2' -p34109 -tp34110 -a(S'hasCapture/1' -p34111 -S'hasCapture(${1:This}) $2' -p34112 -tp34113 -a(S'hasScrollbar/2' -p34114 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p34115 -tp34116 -a(S'hasTextCtrl/1' -p34117 -S'hasTextCtrl(${1:This}) $2' -p34118 -tp34119 -a(S'hasTransparentBackground/1' -p34120 -S'hasTransparentBackground(${1:This}) $2' -p34121 -tp34122 -a(S'hide/1' -p34123 -S'hide(${1:This}) $2' -p34124 -tp34125 -a(S'inheritAttributes/1' -p34126 -S'inheritAttributes(${1:This}) $2' -p34127 -tp34128 -a(S'initDialog/1' -p34129 -S'initDialog(${1:This}) $2' -p34130 -tp34131 -a(S'invalidateBestSize/1' -p34132 -S'invalidateBestSize(${1:This}) $2' -p34133 -tp34134 -a(S'isEnabled/1' -p34135 -S'isEnabled(${1:This}) $2' -p34136 -tp34137 -a(S'isExposed/2' -p34138 -S'isExposed(${1:This}, ${2:Pt}) $3' -p34139 -tp34140 -a(S'isExposed/3' -p34141 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p34142 -tp34143 -a(S'isExposed/5' -p34144 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p34145 -tp34146 -a(S'isPickerCtrlGrowable/1' -p34147 -S'isPickerCtrlGrowable(${1:This}) $2' -p34148 -tp34149 -a(S'isRetained/1' -p34150 -S'isRetained(${1:This}) $2' -p34151 -tp34152 -a(S'isShown/1' -p34153 -S'isShown(${1:This}) $2' -p34154 -tp34155 -a(S'isTextCtrlGrowable/1' -p34156 -S'isTextCtrlGrowable(${1:This}) $2' -p34157 -tp34158 -a(S'isTopLevel/1' -p34159 -S'isTopLevel(${1:This}) $2' -p34160 -tp34161 -a(S'layout/1' -p34162 -S'layout(${1:This}) $2' -p34163 -tp34164 -a(S'lineDown/1' -p34165 -S'lineDown(${1:This}) $2' -p34166 -tp34167 -a(S'lineUp/1' -p34168 -S'lineUp(${1:This}) $2' -p34169 -tp34170 -a(S'lower/1' -p34171 -S'lower(${1:This}) $2' -p34172 -tp34173 -a(S'makeModal/1' -p34174 -S'makeModal(${1:This}) $2' -p34175 -tp34176 -a(S'makeModal/2' -p34177 -S'makeModal(${1:This}, ${2:Options}) $3' -p34178 -tp34179 -a(S'move/2' -p34180 -S'move(${1:This}, ${2:Pt}) $3' -p34181 -tp34182 -a(S'move/3' -p34183 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p34184 -tp34185 -a(S'move/4' -p34186 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p34187 -tp34188 -a(S'moveAfterInTabOrder/2' -p34189 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p34190 -tp34191 -a(S'moveBeforeInTabOrder/2' -p34192 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p34193 -tp34194 -a(S'navigate/1' -p34195 -S'navigate(${1:This}) $2' -p34196 -tp34197 -a(S'navigate/2' -p34198 -S'navigate(${1:This}, ${2:Options}) $3' -p34199 -tp34200 -a(S'new/0' -p34201 -S'new() $1' -p34202 -tp34203 -a(S'new/2' -p34204 -S'new(${1:Parent}, ${2:Id}) $3' -p34205 -tp34206 -a(S'new/3' -p34207 -S'new(${1:Parent}, ${2:Id}, ${3:Param3}) $4' -p34208 -tp34209 -a(S'pageDown/1' -p34210 -S'pageDown(${1:This}) $2' -p34211 -tp34212 -a(S'pageUp/1' -p34213 -S'pageUp(${1:This}) $2' -p34214 -tp34215 -a(S'parent_class/1' -p34216 -S'parent_class(${1:Param1}) $2' -p34217 -tp34218 -a(S'popEventHandler/1' -p34219 -S'popEventHandler(${1:This}) $2' -p34220 -tp34221 -a(S'popEventHandler/2' -p34222 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p34223 -tp34224 -a(S'popupMenu/2' -p34225 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p34226 -tp34227 -a(S'popupMenu/3' -p34228 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p34229 -tp34230 -a(S'popupMenu/4' -p34231 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p34232 -tp34233 -a(S'raise/1' -p34234 -S'raise(${1:This}) $2' -p34235 -tp34236 -a(S'refresh/1' -p34237 -S'refresh(${1:This}) $2' -p34238 -tp34239 -a(S'refresh/2' -p34240 -S'refresh(${1:This}, ${2:Options}) $3' -p34241 -tp34242 -a(S'refreshRect/2' -p34243 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p34244 -tp34245 -a(S'refreshRect/3' -p34246 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p34247 -tp34248 -a(S'releaseMouse/1' -p34249 -S'releaseMouse(${1:This}) $2' -p34250 -tp34251 -a(S'removeChild/2' -p34252 -S'removeChild(${1:This}, ${2:Child}) $3' -p34253 -tp34254 -a(S'reparent/2' -p34255 -S'reparent(${1:This}, ${2:NewParent}) $3' -p34256 -tp34257 -a(S'screenToClient/1' -p34258 -S'screenToClient(${1:This}) $2' -p34259 -tp34260 -a(S'screenToClient/2' -p34261 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p34262 -tp34263 -a(S'scrollLines/2' -p34264 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p34265 -tp34266 -a(S'scrollPages/2' -p34267 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p34268 -tp34269 -a(S'scrollWindow/3' -p34270 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p34271 -tp34272 -a(S'scrollWindow/4' -p34273 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p34274 -tp34275 -a(S'setAcceleratorTable/2' -p34276 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p34277 -tp34278 -a(S'setAutoLayout/2' -p34279 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p34280 -tp34281 -a(S'setBackgroundColour/2' -p34282 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p34283 -tp34284 -a(S'setBackgroundStyle/2' -p34285 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p34286 -tp34287 -a(S'setCaret/2' -p34288 -S'setCaret(${1:This}, ${2:Caret}) $3' -p34289 -tp34290 -a(S'setClientSize/2' -p34291 -S'setClientSize(${1:This}, ${2:Size}) $3' -p34292 -tp34293 -a(S'setClientSize/3' -p34294 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p34295 -tp34296 -a(S'setContainingSizer/2' -p34297 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p34298 -tp34299 -a(S'setCursor/2' -p34300 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p34301 -tp34302 -a(S'setDropTarget/2' -p34303 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p34304 -tp34305 -a(S'setExtraStyle/2' -p34306 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p34307 -tp34308 -a(S'setFocus/1' -p34309 -S'setFocus(${1:This}) $2' -p34310 -tp34311 -a(S'setFocusFromKbd/1' -p34312 -S'setFocusFromKbd(${1:This}) $2' -p34313 -tp34314 -a(S'setFont/2' -p34315 -S'setFont(${1:This}, ${2:Font}) $3' -p34316 -tp34317 -a(S'setForegroundColour/2' -p34318 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p34319 -tp34320 -a(S'setHelpText/2' -p34321 -S'setHelpText(${1:This}, ${2:Text}) $3' -p34322 -tp34323 -a(S'setId/2' -p34324 -S'setId(${1:This}, ${2:Winid}) $3' -p34325 -tp34326 -a(S'setInternalMargin/2' -p34327 -S'setInternalMargin(${1:This}, ${2:Newmargin}) $3' -p34328 -tp34329 -a(S'setLabel/2' -p34330 -S'setLabel(${1:This}, ${2:Label}) $3' -p34331 -tp34332 -a(S'setMaxSize/2' -p34333 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p34334 -tp34335 -a(S'setMinSize/2' -p34336 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p34337 -tp34338 -a(S'setName/2' -p34339 -S'setName(${1:This}, ${2:Name}) $3' -p34340 -tp34341 -a(S'setOwnBackgroundColour/2' -p34342 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p34343 -tp34344 -a(S'setOwnFont/2' -p34345 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p34346 -tp34347 -a(S'setOwnForegroundColour/2' -p34348 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p34349 -tp34350 -a(S'setPalette/2' -p34351 -S'setPalette(${1:This}, ${2:Pal}) $3' -p34352 -tp34353 -a(S'setPickerCtrlGrowable/1' -p34354 -S'setPickerCtrlGrowable(${1:This}) $2' -p34355 -tp34356 -a(S'setPickerCtrlGrowable/2' -p34357 -S'setPickerCtrlGrowable(${1:This}, ${2:Options}) $3' -p34358 -tp34359 -a(S'setPickerCtrlProportion/2' -p34360 -S'setPickerCtrlProportion(${1:This}, ${2:Prop}) $3' -p34361 -tp34362 -a(S'setRange/3' -p34363 -S'setRange(${1:This}, ${2:Dt1}, ${3:Dt2}) $4' -p34364 -tp34365 -a(S'setScrollPos/3' -p34366 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p34367 -tp34368 -a(S'setScrollPos/4' -p34369 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p34370 -tp34371 -a(S'setScrollbar/5' -p34372 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p34373 -tp34374 -a(S'setScrollbar/6' -p34375 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p34376 -tp34377 -a(S'setSize/2' -p34378 -S'setSize(${1:This}, ${2:Rect}) $3' -p34379 -tp34380 -a(S'setSize/3' -p34381 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p34382 -tp34383 -a(S'setSize/5' -p34384 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p34385 -tp34386 -a(S'setSize/6' -p34387 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p34388 -tp34389 -a(S'setSizeHints/2' -p34390 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p34391 -tp34392 -a(S'setSizeHints/3' -p34393 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p34394 -tp34395 -a(S'setSizeHints/4' -p34396 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p34397 -tp34398 -a(S'setSizer/2' -p34399 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p34400 -tp34401 -a(S'setSizer/3' -p34402 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p34403 -tp34404 -a(S'setSizerAndFit/2' -p34405 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p34406 -tp34407 -a(S'setSizerAndFit/3' -p34408 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p34409 -tp34410 -a(S'setTextCtrlGrowable/1' -p34411 -S'setTextCtrlGrowable(${1:This}) $2' -p34412 -tp34413 -a(S'setTextCtrlGrowable/2' -p34414 -S'setTextCtrlGrowable(${1:This}, ${2:Options}) $3' -p34415 -tp34416 -a(S'setTextCtrlProportion/2' -p34417 -S'setTextCtrlProportion(${1:This}, ${2:Prop}) $3' -p34418 -tp34419 -a(S'setThemeEnabled/2' -p34420 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p34421 -tp34422 -a(S'setToolTip/2' -p34423 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p34424 -tp34425 -a(S'setValue/2' -p34426 -S'setValue(${1:This}, ${2:Date}) $3' -p34427 -tp34428 -a(S'setVirtualSize/2' -p34429 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p34430 -tp34431 -a(S'setVirtualSize/3' -p34432 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p34433 -tp34434 -a(S'setVirtualSizeHints/2' -p34435 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p34436 -tp34437 -a(S'setVirtualSizeHints/3' -p34438 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p34439 -tp34440 -a(S'setVirtualSizeHints/4' -p34441 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p34442 -tp34443 -a(S'setWindowStyle/2' -p34444 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p34445 -tp34446 -a(S'setWindowStyleFlag/2' -p34447 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p34448 -tp34449 -a(S'setWindowVariant/2' -p34450 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p34451 -tp34452 -a(S'shouldInheritColours/1' -p34453 -S'shouldInheritColours(${1:This}) $2' -p34454 -tp34455 -a(S'show/1' -p34456 -S'show(${1:This}) $2' -p34457 -tp34458 -a(S'show/2' -p34459 -S'show(${1:This}, ${2:Options}) $3' -p34460 -tp34461 -a(S'thaw/1' -p34462 -S'thaw(${1:This}) $2' -p34463 -tp34464 -a(S'transferDataFromWindow/1' -p34465 -S'transferDataFromWindow(${1:This}) $2' -p34466 -tp34467 -a(S'transferDataToWindow/1' -p34468 -S'transferDataToWindow(${1:This}) $2' -p34469 -tp34470 -a(S'update/1' -p34471 -S'update(${1:This}) $2' -p34472 -tp34473 -a(S'updateWindowUI/1' -p34474 -S'updateWindowUI(${1:This}) $2' -p34475 -tp34476 -a(S'updateWindowUI/2' -p34477 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p34478 -tp34479 -a(S'validate/1' -p34480 -S'validate(${1:This}) $2' -p34481 -tp34482 -a(S'warpPointer/3' -p34483 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p34484 -tp34485 -asS'snmp_pdus' -p34486 -(lp34487 -(S'bits_to_str/1' -p34488 -S'bits_to_str(${1:Int}) $2' -p34489 -tp34490 -a(S'dec_message/1' -p34491 -S'dec_message(${1:Param1}) $2' -p34492 -tp34493 -a(S'dec_message_only/1' -p34494 -S'dec_message_only(${1:Param1}) $2' -p34495 -tp34496 -a(S'dec_pdu/1' -p34497 -S'dec_pdu(${1:Param1}) $2' -p34498 -tp34499 -a(S'dec_scoped_pdu/1' -p34500 -S'dec_scoped_pdu(${1:Param1}) $2' -p34501 -tp34502 -a(S'dec_scoped_pdu_data/1' -p34503 -S'dec_scoped_pdu_data(${1:Param1}) $2' -p34504 -tp34505 -a(S'dec_usm_security_parameters/1' -p34506 -S'dec_usm_security_parameters(${1:Param1}) $2' -p34507 -tp34508 -a(S'dec_value/1' -p34509 -S'dec_value(${1:Param1}) $2' -p34510 -tp34511 -a(S'enc_message/1' -p34512 -S'enc_message(${1:Param1}) $2' -p34513 -tp34514 -a(S'enc_message_only/1' -p34515 -S'enc_message_only(${1:Param1}) $2' -p34516 -tp34517 -a(S'enc_oct_str_tag/1' -p34518 -S'enc_oct_str_tag(${1:OStr}) $2' -p34519 -tp34520 -a(S'enc_pdu/1' -p34521 -S'enc_pdu(${1:TrapPDU}) $2' -p34522 -tp34523 -a(S'enc_scoped_pdu/1' -p34524 -S'enc_scoped_pdu() $1' -p34525 -tp34526 -a(S'enc_usm_security_parameters/1' -p34527 -S'enc_usm_security_parameters() $1' -p34528 -tp34529 -a(S'enc_value/2' -p34530 -S'enc_value(${1:Type}, ${2:Val}) $3' -p34531 -tp34532 -a(S'enc_varbind/1' -p34533 -S'enc_varbind(${1:Varbind}) $2' -p34534 -tp34535 -a(S'get_encoded_length/1' -p34536 -S'get_encoded_length(${1:Length}) $2' -p34537 -tp34538 -a(S'octet_str_to_bits/1' -p34539 -S'octet_str_to_bits(${1:Str}) $2' -p34540 -tp34541 -a(S'strip_encrypted_scoped_pdu_data/1' -p34542 -S'strip_encrypted_scoped_pdu_data(${1:Param1}) $2' -p34543 -tp34544 -asS'megaco_pretty_text_encoder' -p34545 -(lp34546 -(S'decode_message/2' -p34547 -S'decode_message(${1:EC}, ${2:Bin}) $3' -p34548 -tp34549 -a(S'decode_message/3' -p34550 -S'decode_message(${1:EC}, ${2:Tokens}, ${3:Bin}) $4' -p34551 -tp34552 -a(S'decode_mini_message/3' -p34553 -S'decode_mini_message(${1:EC}, ${2:Param2}, ${3:Bin}) $4' -p34554 -tp34555 -a(S'encode_action_reply/1' -p34556 -S'encode_action_reply(${1:ActRep}) $2' -p34557 -tp34558 -a(S'encode_action_reply/3' -p34559 -S'encode_action_reply(${1:EC}, ${2:V}, ${3:ActRep}) $4' -p34560 -tp34561 -a(S'encode_action_request/3' -p34562 -S'encode_action_request(${1:EC}, ${2:V}, ${3:ActReq}) $4' -p34563 -tp34564 -a(S'encode_action_requests/3' -p34565 -S'encode_action_requests(${1:EC}, ${2:V}, ${3:ActReqs}) $4' -p34566 -tp34567 -a(S'encode_command_request/1' -p34568 -S'encode_command_request(${1:CmdReq}) $2' -p34569 -tp34570 -a(S'encode_command_request/3' -p34571 -S'encode_command_request(${1:EC}, ${2:V}, ${3:CmdReq}) $4' -p34572 -tp34573 -a(S'encode_message/2' -p34574 -S'encode_message() $1' -p34575 -tp34576 -a(S'encode_message/3' -p34577 -S'encode_message(${1:EC}, ${2:V}, ${3:MegaMsg}) $4' -p34578 -tp34579 -a(S'encode_transaction/1' -p34580 -S'encode_transaction(${1:Trans}) $2' -p34581 -tp34582 -a(S'encode_transaction/3' -p34583 -S'encode_transaction(${1:EC}, ${2:V}, ${3:Trans}) $4' -p34584 -tp34585 -a(S'term_to_compact_string/1' -p34586 -S'term_to_compact_string(${1:Term}) $2' -p34587 -tp34588 -a(S'term_to_pretty_string/1' -p34589 -S'term_to_pretty_string(${1:Term}) $2' -p34590 -tp34591 -a(S'token_tag2string/1' -p34592 -S'token_tag2string(${1:Tag}) $2' -p34593 -tp34594 -a(S'token_tag2string/2' -p34595 -S'token_tag2string(${1:Tag}, ${2:Param2}) $3' -p34596 -tp34597 -a(S'trim_quoted_string/1' -p34598 -S'trim_quoted_string(${1:Param1}) $2' -p34599 -tp34600 -a(S'version_of/2' -p34601 -S'version_of(${1:Param1}, ${2:Bin}) $3' -p34602 -tp34603 -asS'diameter_nowarn' -p34604 -(lp34605 -(S'parse_transform/2' -p34606 -S'parse_transform(${1:Forms}, ${2:Param2}) $3' -p34607 -tp34608 -asS'diameter_sctp' -p34609 -(lp34610 -(S'code_change/3' -p34611 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p34612 -tp34613 -a(S'handle_call/3' -p34614 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p34615 -tp34616 -a(S'handle_cast/2' -p34617 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p34618 -tp34619 -a(S'handle_info/2' -p34620 -S'handle_info(${1:T}, ${2:S}) $3' -p34621 -tp34622 -a(S'init/1' -p34623 -S'init(${1:T}) $2' -p34624 -tp34625 -a(S'ports/0' -p34626 -S'ports() $1' -p34627 -tp34628 -a(S'ports/1' -p34629 -S'ports(${1:Ref}) $2' -p34630 -tp34631 -a(S'start/3' -p34632 -S'start() $1' -p34633 -tp34634 -a(S'start_link/1' -p34635 -S'start_link(${1:T}) $2' -p34636 -tp34637 -a(S'terminate/2' -p34638 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p34639 -tp34640 -asS'wxSplitterEvent' -p34641 -(lp34642 -(S'allow/1' -p34643 -S'allow(${1:This}) $2' -p34644 -tp34645 -a(S'getClientData/1' -p34646 -S'getClientData(${1:This}) $2' -p34647 -tp34648 -a(S'getExtraLong/1' -p34649 -S'getExtraLong(${1:This}) $2' -p34650 -tp34651 -a(S'getId/1' -p34652 -S'getId(${1:This}) $2' -p34653 -tp34654 -a(S'getInt/1' -p34655 -S'getInt(${1:This}) $2' -p34656 -tp34657 -a(S'getSashPosition/1' -p34658 -S'getSashPosition(${1:This}) $2' -p34659 -tp34660 -a(S'getSelection/1' -p34661 -S'getSelection(${1:This}) $2' -p34662 -tp34663 -a(S'getSkipped/1' -p34664 -S'getSkipped(${1:This}) $2' -p34665 -tp34666 -a(S'getString/1' -p34667 -S'getString(${1:This}) $2' -p34668 -tp34669 -a(S'getTimestamp/1' -p34670 -S'getTimestamp(${1:This}) $2' -p34671 -tp34672 -a(S'getWindowBeingRemoved/1' -p34673 -S'getWindowBeingRemoved(${1:This}) $2' -p34674 -tp34675 -a(S'getX/1' -p34676 -S'getX(${1:This}) $2' -p34677 -tp34678 -a(S'getY/1' -p34679 -S'getY(${1:This}) $2' -p34680 -tp34681 -a(S'isAllowed/1' -p34682 -S'isAllowed(${1:This}) $2' -p34683 -tp34684 -a(S'isChecked/1' -p34685 -S'isChecked(${1:This}) $2' -p34686 -tp34687 -a(S'isCommandEvent/1' -p34688 -S'isCommandEvent(${1:This}) $2' -p34689 -tp34690 -a(S'isSelection/1' -p34691 -S'isSelection(${1:This}) $2' -p34692 -tp34693 -a(S'parent_class/1' -p34694 -S'parent_class(${1:Param1}) $2' -p34695 -tp34696 -a(S'resumePropagation/2' -p34697 -S'resumePropagation(${1:This}, ${2:PropagationLevel}) $3' -p34698 -tp34699 -a(S'setInt/2' -p34700 -S'setInt(${1:This}, ${2:I}) $3' -p34701 -tp34702 -a(S'setSashPosition/2' -p34703 -S'setSashPosition(${1:This}, ${2:Pos}) $3' -p34704 -tp34705 -a(S'setString/2' -p34706 -S'setString(${1:This}, ${2:S}) $3' -p34707 -tp34708 -a(S'shouldPropagate/1' -p34709 -S'shouldPropagate(${1:This}) $2' -p34710 -tp34711 -a(S'skip/1' -p34712 -S'skip(${1:This}) $2' -p34713 -tp34714 -a(S'skip/2' -p34715 -S'skip(${1:This}, ${2:Options}) $3' -p34716 -tp34717 -a(S'stopPropagation/1' -p34718 -S'stopPropagation(${1:This}) $2' -p34719 -tp34720 -a(S'veto/1' -p34721 -S'veto(${1:This}) $2' -p34722 -tp34723 -asS'vxworks_client' -p34724 -(lp34725 -(S'close/1' -p34726 -S'close(${1:Pid}) $2' -p34727 -tp34728 -a(S'init/2' -p34729 -S'init(${1:Target}, ${2:Socket}) $3' -p34730 -tp34731 -a(S'open/1' -p34732 -S'open(${1:Target}) $2' -p34733 -tp34734 -a(S'reboot/1' -p34735 -S'reboot(${1:Target}) $2' -p34736 -tp34737 -a(S'send_data/2' -p34738 -S'send_data(${1:Pid}, ${2:Data}) $3' -p34739 -tp34740 -a(S'send_data/3' -p34741 -S'send_data(${1:Pid}, ${2:Data}, ${3:Return}) $4' -p34742 -tp34743 -a(S'send_data_wait_for_close/2' -p34744 -S'send_data_wait_for_close(${1:Pid}, ${2:Data}) $3' -p34745 -tp34746 -asS'mnesia_checkpoint' -p34747 -(lp34748 -(S'activate/1' -p34749 -S'activate(${1:Name}) $2' -p34750 -tp34751 -a(S'call/2' -p34752 -S'call(${1:Name}, ${2:Msg}) $3' -p34753 -tp34754 -a(S'cast/2' -p34755 -S'cast(${1:Name}, ${2:Msg}) $3' -p34756 -tp34757 -a(S'checkpoints/0' -p34758 -S'checkpoints() $1' -p34759 -tp34760 -a(S'convert_cp_record/1' -p34761 -S'convert_cp_record(${1:Cp}) $2' -p34762 -tp34763 -a(S'deactivate/1' -p34764 -S'deactivate(${1:Name}) $2' -p34765 -tp34766 -a(S'deactivate/2' -p34767 -S'deactivate(${1:Nodes}, ${2:Name}) $3' -p34768 -tp34769 -a(S'init/1' -p34770 -S'init(${1:Cp}) $2' -p34771 -tp34772 -a(S'iterate/6' -p34773 -S'iterate(${1:Name}, ${2:Tab}, ${3:Fun}, ${4:Acc}, ${5:Source}, ${6:Val}) $7' -p34774 -tp34775 -a(S'most_local_node/2' -p34776 -S'most_local_node(${1:Name}, ${2:Tab}) $3' -p34777 -tp34778 -a(S'really_retain/2' -p34779 -S'really_retain(${1:Name}, ${2:Tab}) $3' -p34780 -tp34781 -a(S'remote_deactivate/1' -p34782 -S'remote_deactivate(${1:Name}) $2' -p34783 -tp34784 -a(S'start/1' -p34785 -S'start(${1:Cp}) $2' -p34786 -tp34787 -a(S'stop/0' -p34788 -S'stop() $1' -p34789 -tp34790 -a(S'stop_iteration/1' -p34791 -S'stop_iteration(${1:Reason}) $2' -p34792 -tp34793 -a(S'system_code_change/4' -p34794 -S'system_code_change(${1:Cp}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p34795 -tp34796 -a(S'system_continue/3' -p34797 -S'system_continue(${1:Param1}, ${2:Param2}, ${3:Cp}) $4' -p34798 -tp34799 -a(S'system_terminate/4' -p34800 -S'system_terminate(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Cp}) $5' -p34801 -tp34802 -a(S'tables_and_cookie/1' -p34803 -S'tables_and_cookie(${1:Name}) $2' -p34804 -tp34805 -a(S'tm_add_copy/2' -p34806 -S'tm_add_copy(${1:Tab}, ${2:Node}) $3' -p34807 -tp34808 -a(S'tm_change_table_copy_type/3' -p34809 -S'tm_change_table_copy_type(${1:Tab}, ${2:From}, ${3:To}) $4' -p34810 -tp34811 -a(S'tm_del_copy/2' -p34812 -S'tm_del_copy(${1:Tab}, ${2:Node}) $3' -p34813 -tp34814 -a(S'tm_enter_pending/1' -p34815 -S'tm_enter_pending(${1:Pending}) $2' -p34816 -tp34817 -a(S'tm_enter_pending/3' -p34818 -S'tm_enter_pending(${1:Tid}, ${2:DiscNs}, ${3:RamNs}) $4' -p34819 -tp34820 -a(S'tm_exit_pending/1' -p34821 -S'tm_exit_pending(${1:Tid}) $2' -p34822 -tp34823 -a(S'tm_mnesia_down/1' -p34824 -S'tm_mnesia_down(${1:Node}) $2' -p34825 -tp34826 -a(S'tm_prepare/1' -p34827 -S'tm_prepare(${1:Cp}) $2' -p34828 -tp34829 -a(S'tm_retain/4' -p34830 -S'tm_retain(${1:Tid}, ${2:Tab}, ${3:Key}, ${4:Op}) $5' -p34831 -tp34832 -a(S'tm_retain/5' -p34833 -S'tm_retain(${1:Tid}, ${2:Tab}, ${3:Key}, ${4:Op}, ${5:Checkpoints}) $6' -p34834 -tp34835 -asS'icpreproc' -p34836 -(lp34837 -(S'preproc/2' -p34838 -S'preproc(${1:G}, ${2:File}) $3' -p34839 -tp34840 -asS'ct_rpc' -p34841 -(lp34842 -(S'app_node/2' -p34843 -S'app_node(${1:App}, ${2:Candidates}) $3' -p34844 -tp34845 -a(S'app_node/3' -p34846 -S'app_node(${1:App}, ${2:Candidates}, ${3:FailOnBadRPC}) $4' -p34847 -tp34848 -a(S'app_node/4' -p34849 -S'app_node(${1:App}, ${2:Param2}, ${3:FailOnBadRPC}, ${4:Cookie}) $5' -p34850 -tp34851 -a(S'call/4' -p34852 -S'call(${1:Node}, ${2:Module}, ${3:Function}, ${4:Args}) $5' -p34853 -tp34854 -a(S'call/5' -p34855 -S'call(${1:Node}, ${2:Module}, ${3:Function}, ${4:Args}, ${5:TimeOut}) $6' -p34856 -tp34857 -a(S'call/6' -p34858 -S'call(${1:Node}, ${2:Module}, ${3:Function}, ${4:Args}, ${5:TimeOut}, ${6:Cookie}) $7' -p34859 -tp34860 -a(S'cast/4' -p34861 -S'cast(${1:Node}, ${2:Module}, ${3:Function}, ${4:Args}) $5' -p34862 -tp34863 -a(S'cast/5' -p34864 -S'cast(${1:Node}, ${2:Module}, ${3:Function}, ${4:Args}, ${5:Cookie}) $6' -p34865 -tp34866 -asS'mnesia_frag_hash' -p34867 -(lp34868 -(S'add_frag/1' -p34869 -S'add_frag(${1:State}) $2' -p34870 -tp34871 -a(S'del_frag/1' -p34872 -S'del_frag(${1:State}) $2' -p34873 -tp34874 -a(S'init_state/2' -p34875 -S'init_state() $1' -p34876 -tp34877 -a(S'key_to_frag_number/2' -p34878 -S'key_to_frag_number(${1:OldState}, ${2:Key}) $3' -p34879 -tp34880 -a(S'match_spec_to_frag_numbers/2' -p34881 -S'match_spec_to_frag_numbers(${1:State}, ${2:MatchSpec}) $3' -p34882 -tp34883 -asS'CosPropertyService_PropertyDef' -p34884 -(lp34885 -(S'id/0' -p34886 -S'id() $1' -p34887 -tp34888 -a(S'name/0' -p34889 -S'name() $1' -p34890 -tp34891 -a(S'tc/0' -p34892 -S'tc() $1' -p34893 -tp34894 -asS'dbg_ui_break_win' -p34895 -(lp34896 -(S'create_win/5' -p34897 -S'create_win(${1:GS}, ${2:Param2}, ${3:Type}, ${4:Mod}, ${5:Line}) $6' -p34898 -tp34899 -a(S'handle_event/2' -p34900 -S'handle_event(${1:Param1}, ${2:WinInfo}) $3' -p34901 -tp34902 -a(S'update_functions/2' -p34903 -S'update_functions(${1:WinInfo}, ${2:Funcs}) $3' -p34904 -tp34905 -asS'gstk' -p34906 -(lp34907 -(S'call/1' -p34908 -S'call(${1:Cmd}) $2' -p34909 -tp34910 -a(S'config/2' -p34911 -S'config(${1:BackendServ}, ${2:Args}) $3' -p34912 -tp34913 -a(S'config_impl/3' -p34914 -S'config_impl(${1:DB}, ${2:Id}, ${3:Opts}) $4' -p34915 -tp34916 -a(S'create/2' -p34917 -S'create(${1:BackendServ}, ${2:Args}) $3' -p34918 -tp34919 -a(S'create_impl/2' -p34920 -S'create_impl(${1:DB}, ${2:Param2}) $3' -p34921 -tp34922 -a(S'destroy/2' -p34923 -S'destroy(${1:BackendServ}, ${2:Args}) $3' -p34924 -tp34925 -a(S'destroy_impl/2' -p34926 -S'destroy_impl(${1:DB}, ${2:Gstkid}) $3' -p34927 -tp34928 -a(S'event/2' -p34929 -S'event(${1:BackendServ}, ${2:Event}) $3' -p34930 -tp34931 -a(S'exec/1' -p34932 -S'exec(${1:Cmd}) $2' -p34933 -tp34934 -a(S'init/1' -p34935 -S'init(${1:Delay}) $2' -p34936 -tp34937 -a(S'make_extern_id/2' -p34938 -S'make_extern_id(${1:IntId}, ${2:DB}) $3' -p34939 -tp34940 -a(S'pid_died/2' -p34941 -S'pid_died(${1:BackendServ}, ${2:Pid}) $3' -p34942 -tp34943 -a(S'read/2' -p34944 -S'read(${1:BackendServ}, ${2:Args}) $3' -p34945 -tp34946 -a(S'read_impl/3' -p34947 -S'read_impl(${1:DB}, ${2:Id}, ${3:Opt}) $4' -p34948 -tp34949 -a(S'request/2' -p34950 -S'request(${1:Who}, ${2:Msg}) $3' -p34951 -tp34952 -a(S'start_link/4' -p34953 -S'start_link(${1:GsId}, ${2:FrontendNode}, ${3:Owner}, ${4:Options}) $5' -p34954 -tp34955 -a(S'stop/1' -p34956 -S'stop(${1:BackendServ}) $2' -p34957 -tp34958 -a(S'to_ascii/1' -p34959 -S'to_ascii(${1:V}) $2' -p34960 -tp34961 -a(S'to_color/1' -p34962 -S'to_color(${1:Color}) $2' -p34963 -tp34964 -a(S'worker_do/1' -p34965 -S'worker_do(${1:Msg}) $2' -p34966 -tp34967 -a(S'worker_init/1' -p34968 -S'worker_init(${1:Delay}) $2' -p34969 -tp34970 -asS'wxBrush' -p34971 -(lp34972 -(S'destroy/1' -p34973 -S'destroy(${1:This}) $2' -p34974 -tp34975 -a(S'getColour/1' -p34976 -S'getColour(${1:This}) $2' -p34977 -tp34978 -a(S'getStipple/1' -p34979 -S'getStipple(${1:This}) $2' -p34980 -tp34981 -a(S'getStyle/1' -p34982 -S'getStyle(${1:This}) $2' -p34983 -tp34984 -a(S'isHatch/1' -p34985 -S'isHatch(${1:This}) $2' -p34986 -tp34987 -a(S'isOk/1' -p34988 -S'isOk(${1:This}) $2' -p34989 -tp34990 -a(S'new/0' -p34991 -S'new() $1' -p34992 -tp34993 -a(S'new/1' -p34994 -S'new(${1:Colour}) $2' -p34995 -tp34996 -a(S'new/2' -p34997 -S'new(${1:Colour}, ${2:Param2}) $3' -p34998 -tp34999 -a(S'parent_class/1' -p35000 -S'parent_class(${1:Param1}) $2' -p35001 -tp35002 -a(S'setColour/2' -p35003 -S'setColour(${1:This}, ${2:Col}) $3' -p35004 -tp35005 -a(S'setColour/4' -p35006 -S'setColour(${1:This}, ${2:R}, ${3:G}, ${4:B}) $5' -p35007 -tp35008 -a(S'setStipple/2' -p35009 -S'setStipple(${1:This}, ${2:Stipple}) $3' -p35010 -tp35011 -a(S'setStyle/2' -p35012 -S'setStyle(${1:This}, ${2:Style}) $3' -p35013 -tp35014 -asS'orber_socket' -p35015 -(lp35016 -(S'accept/2' -p35017 -S'accept(${1:Type}, ${2:ListenSocket}) $3' -p35018 -tp35019 -a(S'accept/3' -p35020 -S'accept(${1:Param1}, ${2:ListenSocket}, ${3:Timeout}) $4' -p35021 -tp35022 -a(S'clear/2' -p35023 -S'clear(${1:Param1}, ${2:Socket}) $3' -p35024 -tp35025 -a(S'close/2' -p35026 -S'close(${1:Param1}, ${2:Socket}) $3' -p35027 -tp35028 -a(S'connect/4' -p35029 -S'connect(${1:Type}, ${2:Host}, ${3:Port}, ${4:Options}) $5' -p35030 -tp35031 -a(S'controlling_process/3' -p35032 -S'controlling_process(${1:Param1}, ${2:Socket}, ${3:Pid}) $4' -p35033 -tp35034 -a(S'listen/3' -p35035 -S'listen(${1:Type}, ${2:Port}, ${3:Options}) $4' -p35036 -tp35037 -a(S'listen/4' -p35038 -S'listen(${1:Param1}, ${2:Port}, ${3:Options}, ${4:Exception}) $5' -p35039 -tp35040 -a(S'peercert/2' -p35041 -S'peercert(${1:Type}, ${2:Socket}) $3' -p35042 -tp35043 -a(S'peerdata/2' -p35044 -S'peerdata(${1:Param1}, ${2:Socket}) $3' -p35045 -tp35046 -a(S'peername/2' -p35047 -S'peername(${1:Param1}, ${2:Socket}) $3' -p35048 -tp35049 -a(S'post_accept/2' -p35050 -S'post_accept(${1:Type}, ${2:Socket}) $3' -p35051 -tp35052 -a(S'post_accept/3' -p35053 -S'post_accept(${1:Param1}, ${2:Socket}, ${3:Timeout}) $4' -p35054 -tp35055 -a(S'setopts/3' -p35056 -S'setopts(${1:Param1}, ${2:Socket}, ${3:Opts}) $4' -p35057 -tp35058 -a(S'shutdown/3' -p35059 -S'shutdown(${1:Param1}, ${2:Socket}, ${3:How}) $4' -p35060 -tp35061 -a(S'sockdata/2' -p35062 -S'sockdata(${1:Param1}, ${2:Socket}) $3' -p35063 -tp35064 -a(S'sockname/2' -p35065 -S'sockname(${1:Param1}, ${2:Socket}) $3' -p35066 -tp35067 -a(S'start/0' -p35068 -S'start() $1' -p35069 -tp35070 -a(S'write/3' -p35071 -S'write(${1:Param1}, ${2:Socket}, ${3:Bytes}) $4' -p35072 -tp35073 -asS'CosPropertyService_PropertyException' -p35074 -(lp35075 -(S'id/0' -p35076 -S'id() $1' -p35077 -tp35078 -a(S'name/0' -p35079 -S'name() $1' -p35080 -tp35081 -a(S'tc/0' -p35082 -S'tc() $1' -p35083 -tp35084 -asS'mnesia_monitor' -p35085 -(lp35086 -(S'call/1' -p35087 -S'call(${1:Msg}) $2' -p35088 -tp35089 -a(S'cast/1' -p35090 -S'cast(${1:Msg}) $2' -p35091 -tp35092 -a(S'close_dets/1' -p35093 -S'close_dets(${1:Tab}) $2' -p35094 -tp35095 -a(S'close_log/1' -p35096 -S'close_log(${1:Name}) $2' -p35097 -tp35098 -a(S'code_change/3' -p35099 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p35100 -tp35101 -a(S'detect_inconcistency/2' -p35102 -S'detect_inconcistency(${1:Nodes}, ${2:Context}) $3' -p35103 -tp35104 -a(S'detect_partitioned_network/2' -p35105 -S'detect_partitioned_network(${1:Mon}, ${2:Node}) $3' -p35106 -tp35107 -a(S'disconnect/1' -p35108 -S'disconnect(${1:Node}) $2' -p35109 -tp35110 -a(S'do_check_type/2' -p35111 -S'do_check_type(${1:Param1}, ${2:A}) $3' -p35112 -tp35113 -a(S'get_env/1' -p35114 -S'get_env(${1:E}) $2' -p35115 -tp35116 -a(S'handle_call/3' -p35117 -S'handle_call(${1:Msg}, ${2:From}, ${3:State}) $4' -p35118 -tp35119 -a(S'handle_cast/2' -p35120 -S'handle_cast(${1:Msg}, ${2:State}) $3' -p35121 -tp35122 -a(S'handle_info/2' -p35123 -S'handle_info(${1:Msg}, ${2:State}) $3' -p35124 -tp35125 -a(S'has_remote_mnesia_down/1' -p35126 -S'has_remote_mnesia_down(${1:Node}) $2' -p35127 -tp35128 -a(S'init/0' -p35129 -S'init() $1' -p35130 -tp35131 -a(S'init/1' -p35132 -S'init(${1:Param1}) $2' -p35133 -tp35134 -a(S'mktab/2' -p35135 -S'mktab(${1:Tab}, ${2:Args}) $3' -p35136 -tp35137 -a(S'mnesia_down/2' -p35138 -S'mnesia_down(${1:From}, ${2:Node}) $3' -p35139 -tp35140 -a(S'needs_protocol_conversion/1' -p35141 -S'needs_protocol_conversion(${1:Node}) $2' -p35142 -tp35143 -a(S'negotiate_protocol/1' -p35144 -S'negotiate_protocol(${1:Nodes}) $2' -p35145 -tp35146 -a(S'negotiate_protocol_impl/2' -p35147 -S'negotiate_protocol_impl(${1:Nodes}, ${2:Requester}) $3' -p35148 -tp35149 -a(S'open_dets/2' -p35150 -S'open_dets(${1:Tab}, ${2:Args}) $3' -p35151 -tp35152 -a(S'open_log/1' -p35153 -S'open_log(${1:Args}) $2' -p35154 -tp35155 -a(S'patch_env/2' -p35156 -S'patch_env(${1:Env}, ${2:Val}) $3' -p35157 -tp35158 -a(S'protocol_version/0' -p35159 -S'protocol_version() $1' -p35160 -tp35161 -a(S'reopen_log/3' -p35162 -S'reopen_log(${1:Name}, ${2:Fname}, ${3:Head}) $4' -p35163 -tp35164 -a(S'set_env/2' -p35165 -S'set_env(${1:E}, ${2:Val}) $3' -p35166 -tp35167 -a(S'start/0' -p35168 -S'start() $1' -p35169 -tp35170 -a(S'start_proc/4' -p35171 -S'start_proc(${1:Who}, ${2:Mod}, ${3:Fun}, ${4:Args}) $5' -p35172 -tp35173 -a(S'terminate/2' -p35174 -S'terminate(${1:Reason}, ${2:State}) $3' -p35175 -tp35176 -a(S'terminate_proc/3' -p35177 -S'terminate_proc(${1:Who}, ${2:Reason}, ${3:Param3}) $4' -p35178 -tp35179 -a(S'unsafe_close_dets/1' -p35180 -S'unsafe_close_dets(${1:Name}) $2' -p35181 -tp35182 -a(S'unsafe_close_log/1' -p35183 -S'unsafe_close_log(${1:Name}) $2' -p35184 -tp35185 -a(S'unsafe_mktab/2' -p35186 -S'unsafe_mktab(${1:Tab}, ${2:Args}) $3' -p35187 -tp35188 -a(S'unsafe_open_dets/2' -p35189 -S'unsafe_open_dets(${1:Tab}, ${2:Args}) $3' -p35190 -tp35191 -a(S'use_dir/0' -p35192 -S'use_dir() $1' -p35193 -tp35194 -asS'eunit_test' -p35195 -(lp35196 -(S'enter_context/4' -p35197 -S'enter_context(${1:Setup}, ${2:Cleanup}, ${3:Instantiate}, ${4:Callback}) $5' -p35198 -tp35199 -a(S'function_wrapper/2' -p35200 -S'function_wrapper(${1:M}, ${2:F}) $3' -p35201 -tp35202 -a(S'multi_setup/1' -p35203 -S'multi_setup(${1:List}) $2' -p35204 -tp35205 -a(S'run_testfun/1' -p35206 -S'run_testfun(${1:F}) $2' -p35207 -tp35208 -asS'CosTransactions_NoTransaction' -p35209 -(lp35210 -(S'id/0' -p35211 -S'id() $1' -p35212 -tp35213 -a(S'name/0' -p35214 -S'name() $1' -p35215 -tp35216 -a(S'tc/0' -p35217 -S'tc() $1' -p35218 -tp35219 -asS'CosPropertyService_PropertiesIterator' -p35220 -(lp35221 -(S'code_change/3' -p35222 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p35223 -tp35224 -a(S'destroy/1' -p35225 -S'destroy(${1:OE_THIS}) $2' -p35226 -tp35227 -a(S'destroy/2' -p35228 -S'destroy(${1:OE_THIS}, ${2:OE_Options}) $3' -p35229 -tp35230 -a(S'handle_call/3' -p35231 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p35232 -tp35233 -a(S'handle_cast/2' -p35234 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p35235 -tp35236 -a(S'handle_info/2' -p35237 -S'handle_info(${1:Param1}, ${2:State}) $3' -p35238 -tp35239 -a(S'init/1' -p35240 -S'init(${1:Env}) $2' -p35241 -tp35242 -a(S'next_n/2' -p35243 -S'next_n(${1:OE_THIS}, ${2:How_many}) $3' -p35244 -tp35245 -a(S'next_n/3' -p35246 -S'next_n(${1:OE_THIS}, ${2:OE_Options}, ${3:How_many}) $4' -p35247 -tp35248 -a(S'next_one/1' -p35249 -S'next_one(${1:OE_THIS}) $2' -p35250 -tp35251 -a(S'next_one/2' -p35252 -S'next_one(${1:OE_THIS}, ${2:OE_Options}) $3' -p35253 -tp35254 -a(S'oe_create/0' -p35255 -S'oe_create() $1' -p35256 -tp35257 -a(S'oe_create/1' -p35258 -S'oe_create(${1:Env}) $2' -p35259 -tp35260 -a(S'oe_create/2' -p35261 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p35262 -tp35263 -a(S'oe_create_link/0' -p35264 -S'oe_create_link() $1' -p35265 -tp35266 -a(S'oe_create_link/1' -p35267 -S'oe_create_link(${1:Env}) $2' -p35268 -tp35269 -a(S'oe_create_link/2' -p35270 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p35271 -tp35272 -a(S'oe_get_interface/0' -p35273 -S'oe_get_interface() $1' -p35274 -tp35275 -a(S'oe_is_a/1' -p35276 -S'oe_is_a(${1:Param1}) $2' -p35277 -tp35278 -a(S'oe_tc/1' -p35279 -S'oe_tc(${1:Param1}) $2' -p35280 -tp35281 -a(S'reset/1' -p35282 -S'reset(${1:OE_THIS}) $2' -p35283 -tp35284 -a(S'reset/2' -p35285 -S'reset(${1:OE_THIS}, ${2:OE_Options}) $3' -p35286 -tp35287 -a(S'terminate/2' -p35288 -S'terminate(${1:Reason}, ${2:State}) $3' -p35289 -tp35290 -a(S'typeID/0' -p35291 -S'typeID() $1' -p35292 -tp35293 -asS'tftp_logger' -p35294 -(lp35295 -(S'behaviour_info/1' -p35296 -S'behaviour_info(${1:Param1}) $2' -p35297 -tp35298 -a(S'error_msg/2' -p35299 -S'error_msg(${1:Format}, ${2:Data}) $3' -p35300 -tp35301 -a(S'info_msg/2' -p35302 -S'info_msg(${1:Format}, ${2:Data}) $3' -p35303 -tp35304 -a(S'warning_msg/2' -p35305 -S'warning_msg(${1:Format}, ${2:Data}) $3' -p35306 -tp35307 -asS'wxToggleButton' -p35308 -(lp35309 -(S'cacheBestSize/2' -p35310 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p35311 -tp35312 -a(S'captureMouse/1' -p35313 -S'captureMouse(${1:This}) $2' -p35314 -tp35315 -a(S'center/1' -p35316 -S'center(${1:This}) $2' -p35317 -tp35318 -a(S'center/2' -p35319 -S'center(${1:This}, ${2:Options}) $3' -p35320 -tp35321 -a(S'centerOnParent/1' -p35322 -S'centerOnParent(${1:This}) $2' -p35323 -tp35324 -a(S'centerOnParent/2' -p35325 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p35326 -tp35327 -a(S'centre/1' -p35328 -S'centre(${1:This}) $2' -p35329 -tp35330 -a(S'centre/2' -p35331 -S'centre(${1:This}, ${2:Options}) $3' -p35332 -tp35333 -a(S'centreOnParent/1' -p35334 -S'centreOnParent(${1:This}) $2' -p35335 -tp35336 -a(S'centreOnParent/2' -p35337 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p35338 -tp35339 -a(S'clearBackground/1' -p35340 -S'clearBackground(${1:This}) $2' -p35341 -tp35342 -a(S'clientToScreen/2' -p35343 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p35344 -tp35345 -a(S'clientToScreen/3' -p35346 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p35347 -tp35348 -a(S'close/1' -p35349 -S'close(${1:This}) $2' -p35350 -tp35351 -a(S'close/2' -p35352 -S'close(${1:This}, ${2:Options}) $3' -p35353 -tp35354 -a(S'connect/2' -p35355 -S'connect(${1:This}, ${2:EventType}) $3' -p35356 -tp35357 -a(S'connect/3' -p35358 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p35359 -tp35360 -a(S'convertDialogToPixels/2' -p35361 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p35362 -tp35363 -a(S'convertPixelsToDialog/2' -p35364 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p35365 -tp35366 -a(S'create/4' -p35367 -S'create(${1:This}, ${2:Parent}, ${3:Id}, ${4:Label}) $5' -p35368 -tp35369 -a(S'create/5' -p35370 -S'create(${1:This}, ${2:Parent}, ${3:Id}, ${4:Label}, ${5:Param5}) $6' -p35371 -tp35372 -a(S'destroy/1' -p35373 -S'destroy(${1:This}) $2' -p35374 -tp35375 -a(S'destroyChildren/1' -p35376 -S'destroyChildren(${1:This}) $2' -p35377 -tp35378 -a(S'disable/1' -p35379 -S'disable(${1:This}) $2' -p35380 -tp35381 -a(S'disconnect/1' -p35382 -S'disconnect(${1:This}) $2' -p35383 -tp35384 -a(S'disconnect/2' -p35385 -S'disconnect(${1:This}, ${2:EventType}) $3' -p35386 -tp35387 -a(S'disconnect/3' -p35388 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p35389 -tp35390 -a(S'enable/1' -p35391 -S'enable(${1:This}) $2' -p35392 -tp35393 -a(S'enable/2' -p35394 -S'enable(${1:This}, ${2:Options}) $3' -p35395 -tp35396 -a(S'findWindow/2' -p35397 -S'findWindow(${1:This}, ${2:Winid}) $3' -p35398 -tp35399 -a(S'fit/1' -p35400 -S'fit(${1:This}) $2' -p35401 -tp35402 -a(S'fitInside/1' -p35403 -S'fitInside(${1:This}) $2' -p35404 -tp35405 -a(S'freeze/1' -p35406 -S'freeze(${1:This}) $2' -p35407 -tp35408 -a(S'getAcceleratorTable/1' -p35409 -S'getAcceleratorTable(${1:This}) $2' -p35410 -tp35411 -a(S'getBackgroundColour/1' -p35412 -S'getBackgroundColour(${1:This}) $2' -p35413 -tp35414 -a(S'getBackgroundStyle/1' -p35415 -S'getBackgroundStyle(${1:This}) $2' -p35416 -tp35417 -a(S'getBestSize/1' -p35418 -S'getBestSize(${1:This}) $2' -p35419 -tp35420 -a(S'getCaret/1' -p35421 -S'getCaret(${1:This}) $2' -p35422 -tp35423 -a(S'getCharHeight/1' -p35424 -S'getCharHeight(${1:This}) $2' -p35425 -tp35426 -a(S'getCharWidth/1' -p35427 -S'getCharWidth(${1:This}) $2' -p35428 -tp35429 -a(S'getChildren/1' -p35430 -S'getChildren(${1:This}) $2' -p35431 -tp35432 -a(S'getClientSize/1' -p35433 -S'getClientSize(${1:This}) $2' -p35434 -tp35435 -a(S'getContainingSizer/1' -p35436 -S'getContainingSizer(${1:This}) $2' -p35437 -tp35438 -a(S'getCursor/1' -p35439 -S'getCursor(${1:This}) $2' -p35440 -tp35441 -a(S'getDropTarget/1' -p35442 -S'getDropTarget(${1:This}) $2' -p35443 -tp35444 -a(S'getEventHandler/1' -p35445 -S'getEventHandler(${1:This}) $2' -p35446 -tp35447 -a(S'getExtraStyle/1' -p35448 -S'getExtraStyle(${1:This}) $2' -p35449 -tp35450 -a(S'getFont/1' -p35451 -S'getFont(${1:This}) $2' -p35452 -tp35453 -a(S'getForegroundColour/1' -p35454 -S'getForegroundColour(${1:This}) $2' -p35455 -tp35456 -a(S'getGrandParent/1' -p35457 -S'getGrandParent(${1:This}) $2' -p35458 -tp35459 -a(S'getHandle/1' -p35460 -S'getHandle(${1:This}) $2' -p35461 -tp35462 -a(S'getHelpText/1' -p35463 -S'getHelpText(${1:This}) $2' -p35464 -tp35465 -a(S'getId/1' -p35466 -S'getId(${1:This}) $2' -p35467 -tp35468 -a(S'getLabel/1' -p35469 -S'getLabel(${1:This}) $2' -p35470 -tp35471 -a(S'getMaxSize/1' -p35472 -S'getMaxSize(${1:This}) $2' -p35473 -tp35474 -a(S'getMinSize/1' -p35475 -S'getMinSize(${1:This}) $2' -p35476 -tp35477 -a(S'getName/1' -p35478 -S'getName(${1:This}) $2' -p35479 -tp35480 -a(S'getParent/1' -p35481 -S'getParent(${1:This}) $2' -p35482 -tp35483 -a(S'getPosition/1' -p35484 -S'getPosition(${1:This}) $2' -p35485 -tp35486 -a(S'getRect/1' -p35487 -S'getRect(${1:This}) $2' -p35488 -tp35489 -a(S'getScreenPosition/1' -p35490 -S'getScreenPosition(${1:This}) $2' -p35491 -tp35492 -a(S'getScreenRect/1' -p35493 -S'getScreenRect(${1:This}) $2' -p35494 -tp35495 -a(S'getScrollPos/2' -p35496 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p35497 -tp35498 -a(S'getScrollRange/2' -p35499 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p35500 -tp35501 -a(S'getScrollThumb/2' -p35502 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p35503 -tp35504 -a(S'getSize/1' -p35505 -S'getSize(${1:This}) $2' -p35506 -tp35507 -a(S'getSizer/1' -p35508 -S'getSizer(${1:This}) $2' -p35509 -tp35510 -a(S'getTextExtent/2' -p35511 -S'getTextExtent(${1:This}, ${2:String}) $3' -p35512 -tp35513 -a(S'getTextExtent/3' -p35514 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p35515 -tp35516 -a(S'getToolTip/1' -p35517 -S'getToolTip(${1:This}) $2' -p35518 -tp35519 -a(S'getUpdateRegion/1' -p35520 -S'getUpdateRegion(${1:This}) $2' -p35521 -tp35522 -a(S'getValue/1' -p35523 -S'getValue(${1:This}) $2' -p35524 -tp35525 -a(S'getVirtualSize/1' -p35526 -S'getVirtualSize(${1:This}) $2' -p35527 -tp35528 -a(S'getWindowStyleFlag/1' -p35529 -S'getWindowStyleFlag(${1:This}) $2' -p35530 -tp35531 -a(S'getWindowVariant/1' -p35532 -S'getWindowVariant(${1:This}) $2' -p35533 -tp35534 -a(S'hasCapture/1' -p35535 -S'hasCapture(${1:This}) $2' -p35536 -tp35537 -a(S'hasScrollbar/2' -p35538 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p35539 -tp35540 -a(S'hasTransparentBackground/1' -p35541 -S'hasTransparentBackground(${1:This}) $2' -p35542 -tp35543 -a(S'hide/1' -p35544 -S'hide(${1:This}) $2' -p35545 -tp35546 -a(S'inheritAttributes/1' -p35547 -S'inheritAttributes(${1:This}) $2' -p35548 -tp35549 -a(S'initDialog/1' -p35550 -S'initDialog(${1:This}) $2' -p35551 -tp35552 -a(S'invalidateBestSize/1' -p35553 -S'invalidateBestSize(${1:This}) $2' -p35554 -tp35555 -a(S'isEnabled/1' -p35556 -S'isEnabled(${1:This}) $2' -p35557 -tp35558 -a(S'isExposed/2' -p35559 -S'isExposed(${1:This}, ${2:Pt}) $3' -p35560 -tp35561 -a(S'isExposed/3' -p35562 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p35563 -tp35564 -a(S'isExposed/5' -p35565 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p35566 -tp35567 -a(S'isRetained/1' -p35568 -S'isRetained(${1:This}) $2' -p35569 -tp35570 -a(S'isShown/1' -p35571 -S'isShown(${1:This}) $2' -p35572 -tp35573 -a(S'isTopLevel/1' -p35574 -S'isTopLevel(${1:This}) $2' -p35575 -tp35576 -a(S'layout/1' -p35577 -S'layout(${1:This}) $2' -p35578 -tp35579 -a(S'lineDown/1' -p35580 -S'lineDown(${1:This}) $2' -p35581 -tp35582 -a(S'lineUp/1' -p35583 -S'lineUp(${1:This}) $2' -p35584 -tp35585 -a(S'lower/1' -p35586 -S'lower(${1:This}) $2' -p35587 -tp35588 -a(S'makeModal/1' -p35589 -S'makeModal(${1:This}) $2' -p35590 -tp35591 -a(S'makeModal/2' -p35592 -S'makeModal(${1:This}, ${2:Options}) $3' -p35593 -tp35594 -a(S'move/2' -p35595 -S'move(${1:This}, ${2:Pt}) $3' -p35596 -tp35597 -a(S'move/3' -p35598 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p35599 -tp35600 -a(S'move/4' -p35601 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p35602 -tp35603 -a(S'moveAfterInTabOrder/2' -p35604 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p35605 -tp35606 -a(S'moveBeforeInTabOrder/2' -p35607 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p35608 -tp35609 -a(S'navigate/1' -p35610 -S'navigate(${1:This}) $2' -p35611 -tp35612 -a(S'navigate/2' -p35613 -S'navigate(${1:This}, ${2:Options}) $3' -p35614 -tp35615 -a(S'new/0' -p35616 -S'new() $1' -p35617 -tp35618 -a(S'new/3' -p35619 -S'new(${1:Parent}, ${2:Id}, ${3:Label}) $4' -p35620 -tp35621 -a(S'new/4' -p35622 -S'new(${1:Parent}, ${2:Id}, ${3:Label}, ${4:Param4}) $5' -p35623 -tp35624 -a(S'pageDown/1' -p35625 -S'pageDown(${1:This}) $2' -p35626 -tp35627 -a(S'pageUp/1' -p35628 -S'pageUp(${1:This}) $2' -p35629 -tp35630 -a(S'parent_class/1' -p35631 -S'parent_class(${1:Param1}) $2' -p35632 -tp35633 -a(S'popEventHandler/1' -p35634 -S'popEventHandler(${1:This}) $2' -p35635 -tp35636 -a(S'popEventHandler/2' -p35637 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p35638 -tp35639 -a(S'popupMenu/2' -p35640 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p35641 -tp35642 -a(S'popupMenu/3' -p35643 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p35644 -tp35645 -a(S'popupMenu/4' -p35646 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p35647 -tp35648 -a(S'raise/1' -p35649 -S'raise(${1:This}) $2' -p35650 -tp35651 -a(S'refresh/1' -p35652 -S'refresh(${1:This}) $2' -p35653 -tp35654 -a(S'refresh/2' -p35655 -S'refresh(${1:This}, ${2:Options}) $3' -p35656 -tp35657 -a(S'refreshRect/2' -p35658 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p35659 -tp35660 -a(S'refreshRect/3' -p35661 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p35662 -tp35663 -a(S'releaseMouse/1' -p35664 -S'releaseMouse(${1:This}) $2' -p35665 -tp35666 -a(S'removeChild/2' -p35667 -S'removeChild(${1:This}, ${2:Child}) $3' -p35668 -tp35669 -a(S'reparent/2' -p35670 -S'reparent(${1:This}, ${2:NewParent}) $3' -p35671 -tp35672 -a(S'screenToClient/1' -p35673 -S'screenToClient(${1:This}) $2' -p35674 -tp35675 -a(S'screenToClient/2' -p35676 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p35677 -tp35678 -a(S'scrollLines/2' -p35679 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p35680 -tp35681 -a(S'scrollPages/2' -p35682 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p35683 -tp35684 -a(S'scrollWindow/3' -p35685 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p35686 -tp35687 -a(S'scrollWindow/4' -p35688 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p35689 -tp35690 -a(S'setAcceleratorTable/2' -p35691 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p35692 -tp35693 -a(S'setAutoLayout/2' -p35694 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p35695 -tp35696 -a(S'setBackgroundColour/2' -p35697 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p35698 -tp35699 -a(S'setBackgroundStyle/2' -p35700 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p35701 -tp35702 -a(S'setCaret/2' -p35703 -S'setCaret(${1:This}, ${2:Caret}) $3' -p35704 -tp35705 -a(S'setClientSize/2' -p35706 -S'setClientSize(${1:This}, ${2:Size}) $3' -p35707 -tp35708 -a(S'setClientSize/3' -p35709 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p35710 -tp35711 -a(S'setContainingSizer/2' -p35712 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p35713 -tp35714 -a(S'setCursor/2' -p35715 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p35716 -tp35717 -a(S'setDropTarget/2' -p35718 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p35719 -tp35720 -a(S'setExtraStyle/2' -p35721 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p35722 -tp35723 -a(S'setFocus/1' -p35724 -S'setFocus(${1:This}) $2' -p35725 -tp35726 -a(S'setFocusFromKbd/1' -p35727 -S'setFocusFromKbd(${1:This}) $2' -p35728 -tp35729 -a(S'setFont/2' -p35730 -S'setFont(${1:This}, ${2:Font}) $3' -p35731 -tp35732 -a(S'setForegroundColour/2' -p35733 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p35734 -tp35735 -a(S'setHelpText/2' -p35736 -S'setHelpText(${1:This}, ${2:Text}) $3' -p35737 -tp35738 -a(S'setId/2' -p35739 -S'setId(${1:This}, ${2:Winid}) $3' -p35740 -tp35741 -a(S'setLabel/2' -p35742 -S'setLabel(${1:This}, ${2:Label}) $3' -p35743 -tp35744 -a(S'setMaxSize/2' -p35745 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p35746 -tp35747 -a(S'setMinSize/2' -p35748 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p35749 -tp35750 -a(S'setName/2' -p35751 -S'setName(${1:This}, ${2:Name}) $3' -p35752 -tp35753 -a(S'setOwnBackgroundColour/2' -p35754 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p35755 -tp35756 -a(S'setOwnFont/2' -p35757 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p35758 -tp35759 -a(S'setOwnForegroundColour/2' -p35760 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p35761 -tp35762 -a(S'setPalette/2' -p35763 -S'setPalette(${1:This}, ${2:Pal}) $3' -p35764 -tp35765 -a(S'setScrollPos/3' -p35766 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p35767 -tp35768 -a(S'setScrollPos/4' -p35769 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p35770 -tp35771 -a(S'setScrollbar/5' -p35772 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p35773 -tp35774 -a(S'setScrollbar/6' -p35775 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p35776 -tp35777 -a(S'setSize/2' -p35778 -S'setSize(${1:This}, ${2:Rect}) $3' -p35779 -tp35780 -a(S'setSize/3' -p35781 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p35782 -tp35783 -a(S'setSize/5' -p35784 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p35785 -tp35786 -a(S'setSize/6' -p35787 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p35788 -tp35789 -a(S'setSizeHints/2' -p35790 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p35791 -tp35792 -a(S'setSizeHints/3' -p35793 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p35794 -tp35795 -a(S'setSizeHints/4' -p35796 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p35797 -tp35798 -a(S'setSizer/2' -p35799 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p35800 -tp35801 -a(S'setSizer/3' -p35802 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p35803 -tp35804 -a(S'setSizerAndFit/2' -p35805 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p35806 -tp35807 -a(S'setSizerAndFit/3' -p35808 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p35809 -tp35810 -a(S'setThemeEnabled/2' -p35811 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p35812 -tp35813 -a(S'setToolTip/2' -p35814 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p35815 -tp35816 -a(S'setValue/2' -p35817 -S'setValue(${1:This}, ${2:State}) $3' -p35818 -tp35819 -a(S'setVirtualSize/2' -p35820 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p35821 -tp35822 -a(S'setVirtualSize/3' -p35823 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p35824 -tp35825 -a(S'setVirtualSizeHints/2' -p35826 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p35827 -tp35828 -a(S'setVirtualSizeHints/3' -p35829 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p35830 -tp35831 -a(S'setVirtualSizeHints/4' -p35832 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p35833 -tp35834 -a(S'setWindowStyle/2' -p35835 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p35836 -tp35837 -a(S'setWindowStyleFlag/2' -p35838 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p35839 -tp35840 -a(S'setWindowVariant/2' -p35841 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p35842 -tp35843 -a(S'shouldInheritColours/1' -p35844 -S'shouldInheritColours(${1:This}) $2' -p35845 -tp35846 -a(S'show/1' -p35847 -S'show(${1:This}) $2' -p35848 -tp35849 -a(S'show/2' -p35850 -S'show(${1:This}, ${2:Options}) $3' -p35851 -tp35852 -a(S'thaw/1' -p35853 -S'thaw(${1:This}) $2' -p35854 -tp35855 -a(S'transferDataFromWindow/1' -p35856 -S'transferDataFromWindow(${1:This}) $2' -p35857 -tp35858 -a(S'transferDataToWindow/1' -p35859 -S'transferDataToWindow(${1:This}) $2' -p35860 -tp35861 -a(S'update/1' -p35862 -S'update(${1:This}) $2' -p35863 -tp35864 -a(S'updateWindowUI/1' -p35865 -S'updateWindowUI(${1:This}) $2' -p35866 -tp35867 -a(S'updateWindowUI/2' -p35868 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p35869 -tp35870 -a(S'validate/1' -p35871 -S'validate(${1:This}) $2' -p35872 -tp35873 -a(S'warpPointer/3' -p35874 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p35875 -tp35876 -asS'disk_log_sup' -p35877 -(lp35878 -(S'init/1' -p35879 -S'init(${1:Param1}) $2' -p35880 -tp35881 -a(S'start_link/0' -p35882 -S'start_link() $1' -p35883 -tp35884 -asS'wxGraphicsObject' -p35885 -(lp35886 -(S'destroy/1' -p35887 -S'destroy(${1:This}) $2' -p35888 -tp35889 -a(S'getRenderer/1' -p35890 -S'getRenderer(${1:This}) $2' -p35891 -tp35892 -a(S'isNull/1' -p35893 -S'isNull(${1:This}) $2' -p35894 -tp35895 -a(S'parent_class/1' -p35896 -S'parent_class(${1:Param1}) $2' -p35897 -tp35898 -asS'ftp_response' -p35899 -(lp35900 -(S'error_string/1' -p35901 -S'error_string(${1:Reason}) $2' -p35902 -tp35903 -a(S'interpret/1' -p35904 -S'interpret(${1:Param1}) $2' -p35905 -tp35906 -a(S'parse_lines/3' -p35907 -S'parse_lines(${1:Bin}, ${2:Lines}, ${3:StatusCode}) $4' -p35908 -tp35909 -asS'leex' -p35910 -(lp35911 -(S'compile/3' -p35912 -S'compile() $1' -p35913 -tp35914 -a(S'file/1' -p35915 -S'file(${1:File}) $2' -p35916 -tp35917 -a(S'file/2' -p35918 -S'file(${1:File}, ${2:Opts0}) $3' -p35919 -tp35920 -a(S'format_error/1' -p35921 -S'format_error(${1:Param1}) $2' -p35922 -tp35923 -asS'wxGridCellBoolEditor' -p35924 -(lp35925 -(S'beginEdit/4' -p35926 -S'beginEdit(${1:This}, ${2:Row}, ${3:Col}, ${4:Grid}) $5' -p35927 -tp35928 -a(S'destroy/1' -p35929 -S'destroy(${1:This}) $2' -p35930 -tp35931 -a(S'endEdit/4' -p35932 -S'endEdit(${1:This}, ${2:Row}, ${3:Col}, ${4:Grid}) $5' -p35933 -tp35934 -a(S'handleReturn/2' -p35935 -S'handleReturn(${1:This}, ${2:Event}) $3' -p35936 -tp35937 -a(S'isCreated/1' -p35938 -S'isCreated(${1:This}) $2' -p35939 -tp35940 -a(S'isTrueValue/1' -p35941 -S'isTrueValue(${1:Value}) $2' -p35942 -tp35943 -a(S'new/0' -p35944 -S'new() $1' -p35945 -tp35946 -a(S'paintBackground/3' -p35947 -S'paintBackground(${1:This}, ${2:RectCell}, ${3:Attr}) $4' -p35948 -tp35949 -a(S'parent_class/1' -p35950 -S'parent_class(${1:Param1}) $2' -p35951 -tp35952 -a(S'reset/1' -p35953 -S'reset(${1:This}) $2' -p35954 -tp35955 -a(S'setSize/2' -p35956 -S'setSize(${1:This}, ${2:Rect}) $3' -p35957 -tp35958 -a(S'show/2' -p35959 -S'show(${1:This}, ${2:Show}) $3' -p35960 -tp35961 -a(S'show/3' -p35962 -S'show(${1:This}, ${2:Show}, ${3:Options}) $4' -p35963 -tp35964 -a(S'startingClick/1' -p35965 -S'startingClick(${1:This}) $2' -p35966 -tp35967 -a(S'startingKey/2' -p35968 -S'startingKey(${1:This}, ${2:Event}) $3' -p35969 -tp35970 -a(S'useStringValues/0' -p35971 -S'useStringValues() $1' -p35972 -tp35973 -a(S'useStringValues/1' -p35974 -S'useStringValues(${1:Param1}) $2' -p35975 -tp35976 -asS'gstk_menu' -p35977 -(lp35978 -(S'config/3' -p35979 -S'config(${1:DB}, ${2:Gstkid}, ${3:Opts}) $4' -p35980 -tp35981 -a(S'create/3' -p35982 -S'create(${1:DB}, ${2:GstkId}, ${3:Opts}) $4' -p35983 -tp35984 -a(S'delete/2' -p35985 -S'delete(${1:DB}, ${2:Gstkid}) $3' -p35986 -tp35987 -a(S'delete_menuitem/3' -p35988 -S'delete_menuitem(${1:DB}, ${2:MenuId}, ${3:ItemId}) $4' -p35989 -tp35990 -a(S'event/5' -p35991 -S'event(${1:DB}, ${2:Gstkid}, ${3:Etype}, ${4:Edata}, ${5:Args}) $6' -p35992 -tp35993 -a(S'insert_menuitem/4' -p35994 -S'insert_menuitem(${1:DB}, ${2:MenuId}, ${3:ItemId}, ${4:Pos}) $5' -p35995 -tp35996 -a(S'lookup_menuitem_pos/3' -p35997 -S'lookup_menuitem_pos(${1:Param1}, ${2:Mgstkid}, ${3:ItemId}) $4' -p35998 -tp35999 -a(S'mk_create_opts_for_child/4' -p36000 -S'mk_create_opts_for_child(${1:DB}, ${2:Cgstkid}, ${3:Pgstkid}, ${4:Opts}) $5' -p36001 -tp36002 -a(S'option/5' -p36003 -S'option(${1:Option}, ${2:Gstkid}, ${3:TkW}, ${4:DB}, ${5:Param5}) $6' -p36004 -tp36005 -a(S'read/3' -p36006 -S'read(${1:DB}, ${2:Gstkid}, ${3:Opt}) $4' -p36007 -tp36008 -a(S'read_option/5' -p36009 -S'read_option(${1:Option}, ${2:Gstkid}, ${3:TkW}, ${4:Param4}, ${5:Param5}) $6' -p36010 -tp36011 -asS'snmp_shadow_table' -p36012 -(lp36013 -(S'table_func/2' -p36014 -S'table_func(${1:Param1}, ${2:Param2}) $3' -p36015 -tp36016 -a(S'table_func/4' -p36017 -S'table_func() $1' -p36018 -tp36019 -asS'megaco_trans_sup' -p36020 -(lp36021 -(S'init/1' -p36022 -S'init(${1:BadArg}) $2' -p36023 -tp36024 -a(S'start/0' -p36025 -S'start() $1' -p36026 -tp36027 -a(S'start_trans_sender/5' -p36028 -S'start_trans_sender(${1:CH}, ${2:To}, ${3:ReqsMaxSz}, ${4:ReqsMax}, ${5:AcksMax}) $6' -p36029 -tp36030 -a(S'stop/1' -p36031 -S'stop(${1:Param1}) $2' -p36032 -tp36033 -asS'edoc' -p36034 -(lp36035 -(S'application/1' -p36036 -S'application(${1:App}) $2' -p36037 -tp36038 -a(S'application/2' -p36039 -S'application(${1:App}, ${2:Options}) $3' -p36040 -tp36041 -a(S'application/3' -p36042 -S'application(${1:App}, ${2:Dir}, ${3:Options}) $4' -p36043 -tp36044 -a(S'file/1' -p36045 -S'file(${1:Name}) $2' -p36046 -tp36047 -a(S'file/2' -p36048 -S'file(${1:Name}, ${2:Options}) $3' -p36049 -tp36050 -a(S'files/1' -p36051 -S'files(${1:Files}) $2' -p36052 -tp36053 -a(S'files/2' -p36054 -S'files(${1:Files}, ${2:Options}) $3' -p36055 -tp36056 -a(S'get_doc/1' -p36057 -S'get_doc(${1:File}) $2' -p36058 -tp36059 -a(S'get_doc/2' -p36060 -S'get_doc(${1:File}, ${2:Opts}) $3' -p36061 -tp36062 -a(S'get_doc/3' -p36063 -S'get_doc(${1:File}, ${2:Env}, ${3:Opts}) $4' -p36064 -tp36065 -a(S'layout/1' -p36066 -S'layout(${1:Doc}) $2' -p36067 -tp36068 -a(S'layout/2' -p36069 -S'layout(${1:Doc}, ${2:Opts}) $3' -p36070 -tp36071 -a(S'packages/1' -p36072 -S'packages(${1:Packages}) $2' -p36073 -tp36074 -a(S'packages/2' -p36075 -S'packages(${1:Packages}, ${2:Options}) $3' -p36076 -tp36077 -a(S'read/1' -p36078 -S'read(${1:File}) $2' -p36079 -tp36080 -a(S'read/2' -p36081 -S'read(${1:File}, ${2:Opts}) $3' -p36082 -tp36083 -a(S'read_comments/1' -p36084 -S'read_comments(${1:File}) $2' -p36085 -tp36086 -a(S'read_comments/2' -p36087 -S'read_comments(${1:File}, ${2:Param2}) $3' -p36088 -tp36089 -a(S'read_source/1' -p36090 -S'read_source(${1:Name}) $2' -p36091 -tp36092 -a(S'read_source/2' -p36093 -S'read_source(${1:Name}, ${2:Opts0}) $3' -p36094 -tp36095 -a(S'run/3' -p36096 -S'run(${1:Packages}, ${2:Files}, ${3:Opts0}) $4' -p36097 -tp36098 -a(S'toc/1' -p36099 -S'toc(${1:Dir}) $2' -p36100 -tp36101 -a(S'toc/2' -p36102 -S'toc(${1:Dir}, ${2:Opts}) $3' -p36103 -tp36104 -a(S'toc/3' -p36105 -S'toc(${1:Dir}, ${2:Paths}, ${3:Opts0}) $4' -p36106 -tp36107 -asS'diameter_config' -p36108 -(lp36109 -(S'add_transport/2' -p36110 -S'add_transport() $1' -p36111 -tp36112 -a(S'code_change/3' -p36113 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p36114 -tp36115 -a(S'handle_call/3' -p36116 -S'handle_call(${1:Req}, ${2:From}, ${3:State}) $4' -p36117 -tp36118 -a(S'handle_cast/2' -p36119 -S'handle_cast(${1:Msg}, ${2:State}) $3' -p36120 -tp36121 -a(S'handle_info/2' -p36122 -S'handle_info(${1:Info}, ${2:State}) $3' -p36123 -tp36124 -a(S'have_transport/2' -p36125 -S'have_transport(${1:SvcName}, ${2:Ref}) $3' -p36126 -tp36127 -a(S'init/1' -p36128 -S'init(${1:Param1}) $2' -p36129 -tp36130 -a(S'lookup/1' -p36131 -S'lookup(${1:SvcName}) $2' -p36132 -tp36133 -a(S'remove_transport/2' -p36134 -S'remove_transport(${1:SvcName}, ${2:Pred}) $3' -p36135 -tp36136 -a(S'start_link/0' -p36137 -S'start_link() $1' -p36138 -tp36139 -a(S'start_service/2' -p36140 -S'start_service() $1' -p36141 -tp36142 -a(S'state/0' -p36143 -S'state() $1' -p36144 -tp36145 -a(S'stop_service/1' -p36146 -S'stop_service(${1:SvcName}) $2' -p36147 -tp36148 -a(S'sync/1' -p36149 -S'sync(${1:Param1}) $2' -p36150 -tp36151 -a(S'terminate/2' -p36152 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p36153 -tp36154 -a(S'uptime/0' -p36155 -S'uptime() $1' -p36156 -tp36157 -asS'ssl_dist_sup' -p36158 -(lp36159 -(S'init/1' -p36160 -S'init(${1:Param1}) $2' -p36161 -tp36162 -a(S'start_link/0' -p36163 -S'start_link() $1' -p36164 -tp36165 -asS'CosNotifyChannelAdmin_StructuredProxyPullConsumer' -p36166 -(lp36167 -(S"'_get_MyAdmin'/1" -p36168 -S"'_get_MyAdmin'(${1:OE_THIS}) $2" -p36169 -tp36170 -a(S"'_get_MyAdmin'/2" -p36171 -S"'_get_MyAdmin'(${1:OE_THIS}, ${2:OE_Options}) $3" -p36172 -tp36173 -a(S"'_get_MyType'/1" -p36174 -S"'_get_MyType'(${1:OE_THIS}) $2" -p36175 -tp36176 -a(S"'_get_MyType'/2" -p36177 -S"'_get_MyType'(${1:OE_THIS}, ${2:OE_Options}) $3" -p36178 -tp36179 -a(S'add_filter/2' -p36180 -S'add_filter(${1:OE_THIS}, ${2:New_filter}) $3' -p36181 -tp36182 -a(S'add_filter/3' -p36183 -S'add_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:New_filter}) $4' -p36184 -tp36185 -a(S'code_change/3' -p36186 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p36187 -tp36188 -a(S'connect_structured_pull_supplier/2' -p36189 -S'connect_structured_pull_supplier(${1:OE_THIS}, ${2:Pull_supplier}) $3' -p36190 -tp36191 -a(S'connect_structured_pull_supplier/3' -p36192 -S'connect_structured_pull_supplier(${1:OE_THIS}, ${2:OE_Options}, ${3:Pull_supplier}) $4' -p36193 -tp36194 -a(S'disconnect_structured_pull_consumer/1' -p36195 -S'disconnect_structured_pull_consumer(${1:OE_THIS}) $2' -p36196 -tp36197 -a(S'disconnect_structured_pull_consumer/2' -p36198 -S'disconnect_structured_pull_consumer(${1:OE_THIS}, ${2:OE_Options}) $3' -p36199 -tp36200 -a(S'get_all_filters/1' -p36201 -S'get_all_filters(${1:OE_THIS}) $2' -p36202 -tp36203 -a(S'get_all_filters/2' -p36204 -S'get_all_filters(${1:OE_THIS}, ${2:OE_Options}) $3' -p36205 -tp36206 -a(S'get_filter/2' -p36207 -S'get_filter(${1:OE_THIS}, ${2:Filter}) $3' -p36208 -tp36209 -a(S'get_filter/3' -p36210 -S'get_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:Filter}) $4' -p36211 -tp36212 -a(S'get_qos/1' -p36213 -S'get_qos(${1:OE_THIS}) $2' -p36214 -tp36215 -a(S'get_qos/2' -p36216 -S'get_qos(${1:OE_THIS}, ${2:OE_Options}) $3' -p36217 -tp36218 -a(S'handle_call/3' -p36219 -S'handle_call(${1:Param1}, ${2:OE_From}, ${3:OE_State}) $4' -p36220 -tp36221 -a(S'handle_cast/2' -p36222 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p36223 -tp36224 -a(S'handle_info/2' -p36225 -S'handle_info(${1:Info}, ${2:State}) $3' -p36226 -tp36227 -a(S'init/1' -p36228 -S'init(${1:Env}) $2' -p36229 -tp36230 -a(S'obtain_subscription_types/2' -p36231 -S'obtain_subscription_types(${1:OE_THIS}, ${2:Mode}) $3' -p36232 -tp36233 -a(S'obtain_subscription_types/3' -p36234 -S'obtain_subscription_types(${1:OE_THIS}, ${2:OE_Options}, ${3:Mode}) $4' -p36235 -tp36236 -a(S'oe_create/0' -p36237 -S'oe_create() $1' -p36238 -tp36239 -a(S'oe_create/1' -p36240 -S'oe_create(${1:Env}) $2' -p36241 -tp36242 -a(S'oe_create/2' -p36243 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p36244 -tp36245 -a(S'oe_create_link/0' -p36246 -S'oe_create_link() $1' -p36247 -tp36248 -a(S'oe_create_link/1' -p36249 -S'oe_create_link(${1:Env}) $2' -p36250 -tp36251 -a(S'oe_create_link/2' -p36252 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p36253 -tp36254 -a(S'oe_get_interface/0' -p36255 -S'oe_get_interface() $1' -p36256 -tp36257 -a(S'oe_is_a/1' -p36258 -S'oe_is_a(${1:Param1}) $2' -p36259 -tp36260 -a(S'oe_tc/1' -p36261 -S'oe_tc(${1:Param1}) $2' -p36262 -tp36263 -a(S'offer_change/3' -p36264 -S'offer_change(${1:OE_THIS}, ${2:Added}, ${3:Removed}) $4' -p36265 -tp36266 -a(S'offer_change/4' -p36267 -S'offer_change(${1:OE_THIS}, ${2:OE_Options}, ${3:Added}, ${4:Removed}) $5' -p36268 -tp36269 -a(S'remove_all_filters/1' -p36270 -S'remove_all_filters(${1:OE_THIS}) $2' -p36271 -tp36272 -a(S'remove_all_filters/2' -p36273 -S'remove_all_filters(${1:OE_THIS}, ${2:OE_Options}) $3' -p36274 -tp36275 -a(S'remove_filter/2' -p36276 -S'remove_filter(${1:OE_THIS}, ${2:Filter}) $3' -p36277 -tp36278 -a(S'remove_filter/3' -p36279 -S'remove_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:Filter}) $4' -p36280 -tp36281 -a(S'resume_connection/1' -p36282 -S'resume_connection(${1:OE_THIS}) $2' -p36283 -tp36284 -a(S'resume_connection/2' -p36285 -S'resume_connection(${1:OE_THIS}, ${2:OE_Options}) $3' -p36286 -tp36287 -a(S'set_qos/2' -p36288 -S'set_qos(${1:OE_THIS}, ${2:Qos}) $3' -p36289 -tp36290 -a(S'set_qos/3' -p36291 -S'set_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Qos}) $4' -p36292 -tp36293 -a(S'suspend_connection/1' -p36294 -S'suspend_connection(${1:OE_THIS}) $2' -p36295 -tp36296 -a(S'suspend_connection/2' -p36297 -S'suspend_connection(${1:OE_THIS}, ${2:OE_Options}) $3' -p36298 -tp36299 -a(S'terminate/2' -p36300 -S'terminate(${1:Reason}, ${2:State}) $3' -p36301 -tp36302 -a(S'typeID/0' -p36303 -S'typeID() $1' -p36304 -tp36305 -a(S'validate_event_qos/2' -p36306 -S'validate_event_qos(${1:OE_THIS}, ${2:Required_qos}) $3' -p36307 -tp36308 -a(S'validate_event_qos/3' -p36309 -S'validate_event_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Required_qos}) $4' -p36310 -tp36311 -a(S'validate_qos/2' -p36312 -S'validate_qos(${1:OE_THIS}, ${2:Required_qos}) $3' -p36313 -tp36314 -a(S'validate_qos/3' -p36315 -S'validate_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Required_qos}) $4' -p36316 -tp36317 -asS'erl_comment_scan' -p36318 -(lp36319 -(S'file/1' -p36320 -S'file(${1:Name}) $2' -p36321 -tp36322 -a(S'join_lines/1' -p36323 -S'join_lines(${1:Param1}) $2' -p36324 -tp36325 -a(S'scan_lines/1' -p36326 -S'scan_lines(${1:Text}) $2' -p36327 -tp36328 -a(S'string/1' -p36329 -S'string(${1:Text}) $2' -p36330 -tp36331 -asS'seq_trace' -p36332 -(lp36333 -(S'get_system_tracer/0' -p36334 -S'get_system_tracer() $1' -p36335 -tp36336 -a(S'get_token/0' -p36337 -S'get_token() $1' -p36338 -tp36339 -a(S'get_token/1' -p36340 -S'get_token(${1:Component}) $2' -p36341 -tp36342 -a(S'print/1' -p36343 -S'print(${1:TraceInfo}) $2' -p36344 -tp36345 -a(S'print/2' -p36346 -S'print(${1:Label}, ${2:TraceInfo}) $3' -p36347 -tp36348 -a(S'reset_trace/0' -p36349 -S'reset_trace() $1' -p36350 -tp36351 -a(S'set_system_tracer/1' -p36352 -S'set_system_tracer(${1:Tracer}) $2' -p36353 -tp36354 -a(S'set_token/1' -p36355 -S'set_token(${1:Token}) $2' -p36356 -tp36357 -a(S'set_token/2' -p36358 -S'set_token(${1:Component}, ${2:Val}) $3' -p36359 -tp36360 -asS'log_mf_h' -p36361 -(lp36362 -(S'code_change/3' -p36363 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p36364 -tp36365 -a(S'handle_call/2' -p36366 -S'handle_call(${1:Param1}, ${2:State}) $3' -p36367 -tp36368 -a(S'handle_event/2' -p36369 -S'handle_event(${1:Event}, ${2:State}) $3' -p36370 -tp36371 -a(S'handle_info/2' -p36372 -S'handle_info(${1:Param1}, ${2:State}) $3' -p36373 -tp36374 -a(S'init/1' -p36375 -S'init(${1:Param1}) $2' -p36376 -tp36377 -a(S'init/3' -p36378 -S'init(${1:Dir}, ${2:MaxBytes}, ${3:MaxFiles}) $4' -p36379 -tp36380 -a(S'init/4' -p36381 -S'init(${1:Dir}, ${2:MaxBytes}, ${3:MaxFiles}, ${4:Pred}) $5' -p36382 -tp36383 -a(S'terminate/2' -p36384 -S'terminate(${1:Param1}, ${2:State}) $3' -p36385 -tp36386 -asS'CosTransactions_Unavailable' -p36387 -(lp36388 -(S'id/0' -p36389 -S'id() $1' -p36390 -tp36391 -a(S'name/0' -p36392 -S'name() $1' -p36393 -tp36394 -a(S'tc/0' -p36395 -S'tc() $1' -p36396 -tp36397 -asS'orber_ifr_constantdef' -p36398 -(lp36399 -(S"'_get_absolute_name'/1" -p36400 -S"'_get_absolute_name'() $1" -p36401 -tp36402 -a(S"'_get_containing_repository'/1" -p36403 -S"'_get_containing_repository'() $1" -p36404 -tp36405 -a(S"'_get_def_kind'/1" -p36406 -S"'_get_def_kind'() $1" -p36407 -tp36408 -a(S"'_get_defined_in'/1" -p36409 -S"'_get_defined_in'() $1" -p36410 -tp36411 -a(S"'_get_id'/1" -p36412 -S"'_get_id'() $1" -p36413 -tp36414 -a(S"'_get_name'/1" -p36415 -S"'_get_name'() $1" -p36416 -tp36417 -a(S"'_get_type'/1" -p36418 -S"'_get_type'() $1" -p36419 -tp36420 -a(S"'_get_type_def'/1" -p36421 -S"'_get_type_def'() $1" -p36422 -tp36423 -a(S"'_get_value'/1" -p36424 -S"'_get_value'() $1" -p36425 -tp36426 -a(S"'_get_version'/1" -p36427 -S"'_get_version'() $1" -p36428 -tp36429 -a(S"'_set_id'/2" -p36430 -S"'_set_id'() $1" -p36431 -tp36432 -a(S"'_set_name'/2" -p36433 -S"'_set_name'() $1" -p36434 -tp36435 -a(S"'_set_type_def'/2" -p36436 -S"'_set_type_def'() $1" -p36437 -tp36438 -a(S"'_set_value'/2" -p36439 -S"'_set_value'() $1" -p36440 -tp36441 -a(S"'_set_version'/2" -p36442 -S"'_set_version'() $1" -p36443 -tp36444 -a(S'cleanup_for_destroy/1' -p36445 -S'cleanup_for_destroy() $1' -p36446 -tp36447 -a(S'describe/1' -p36448 -S'describe() $1' -p36449 -tp36450 -a(S'destroy/1' -p36451 -S'destroy() $1' -p36452 -tp36453 -a(S'move/4' -p36454 -S'move() $1' -p36455 -tp36456 -asS'global' -p36457 -(lp36458 -(S'code_change/3' -p36459 -S'code_change(${1:Param1}, ${2:S}, ${3:Param3}) $4' -p36460 -tp36461 -a(S'del_lock/1' -p36462 -S'del_lock(${1:Id}) $2' -p36463 -tp36464 -a(S'del_lock/2' -p36465 -S'del_lock(${1:Id}, ${2:Nodes}) $3' -p36466 -tp36467 -a(S'handle_call/3' -p36468 -S'handle_call(${1:Request}, ${2:From}, ${3:S}) $4' -p36469 -tp36470 -a(S'handle_cast/2' -p36471 -S'handle_cast(${1:Request}, ${2:S}) $3' -p36472 -tp36473 -a(S'handle_info/2' -p36474 -S'handle_info(${1:Message}, ${2:S}) $3' -p36475 -tp36476 -a(S'info/0' -p36477 -S'info() $1' -p36478 -tp36479 -a(S'init/1' -p36480 -S'init(${1:Param1}) $2' -p36481 -tp36482 -a(S'node_disconnected/1' -p36483 -S'node_disconnected(${1:Node}) $2' -p36484 -tp36485 -a(S'notify_all_name/3' -p36486 -S'notify_all_name(${1:Name}, ${2:Pid1}, ${3:Pid2}) $4' -p36487 -tp36488 -a(S'random_exit_name/3' -p36489 -S'random_exit_name(${1:Name}, ${2:Pid1}, ${3:Pid2}) $4' -p36490 -tp36491 -a(S'random_notify_name/3' -p36492 -S'random_notify_name(${1:Name}, ${2:Pid1}, ${3:Pid2}) $4' -p36493 -tp36494 -a(S're_register_name/2' -p36495 -S're_register_name(${1:Name}, ${2:Pid}) $3' -p36496 -tp36497 -a(S're_register_name/3' -p36498 -S're_register_name(${1:Name}, ${2:Pid}, ${3:Resolve}) $4' -p36499 -tp36500 -a(S'register_name/2' -p36501 -S'register_name(${1:Name}, ${2:Pid}) $3' -p36502 -tp36503 -a(S'register_name/3' -p36504 -S'register_name(${1:Name}, ${2:Pid}, ${3:Resolve}) $4' -p36505 -tp36506 -a(S'register_name_external/2' -p36507 -S'register_name_external(${1:Name}, ${2:Pid}) $3' -p36508 -tp36509 -a(S'register_name_external/3' -p36510 -S'register_name_external(${1:Name}, ${2:Pid}, ${3:Method}) $4' -p36511 -tp36512 -a(S'registered_names/0' -p36513 -S'registered_names() $1' -p36514 -tp36515 -a(S'resolve_it/4' -p36516 -S'resolve_it(${1:Method}, ${2:Name}, ${3:Pid1}, ${4:Pid2}) $5' -p36517 -tp36518 -a(S'send/2' -p36519 -S'send(${1:Name}, ${2:Msg}) $3' -p36520 -tp36521 -a(S'set_lock/1' -p36522 -S'set_lock(${1:Id}) $2' -p36523 -tp36524 -a(S'set_lock/2' -p36525 -S'set_lock(${1:Id}, ${2:Nodes}) $3' -p36526 -tp36527 -a(S'set_lock/3' -p36528 -S'set_lock(${1:Id}, ${2:Nodes}, ${3:Retries}) $4' -p36529 -tp36530 -a(S'start/0' -p36531 -S'start() $1' -p36532 -tp36533 -a(S'start_link/0' -p36534 -S'start_link() $1' -p36535 -tp36536 -a(S'stop/0' -p36537 -S'stop() $1' -p36538 -tp36539 -a(S'sync/0' -p36540 -S'sync() $1' -p36541 -tp36542 -a(S'sync/1' -p36543 -S'sync(${1:Nodes}) $2' -p36544 -tp36545 -a(S'terminate/2' -p36546 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p36547 -tp36548 -a(S'trans/2' -p36549 -S'trans(${1:Id}, ${2:Fun}) $3' -p36550 -tp36551 -a(S'trans/3' -p36552 -S'trans(${1:Id}, ${2:Fun}, ${3:Nodes}) $4' -p36553 -tp36554 -a(S'trans/4' -p36555 -S'trans(${1:Id}, ${2:Fun}, ${3:Nodes}, ${4:Retries}) $5' -p36556 -tp36557 -a(S'unregister_name/1' -p36558 -S'unregister_name(${1:Name}) $2' -p36559 -tp36560 -a(S'unregister_name_external/1' -p36561 -S'unregister_name_external(${1:Name}) $2' -p36562 -tp36563 -a(S'whereis_name/1' -p36564 -S'whereis_name(${1:Name}) $2' -p36565 -tp36566 -asS'oe_CosTransactions' -p36567 -(lp36568 -(S'oe_dependency/0' -p36569 -S'oe_dependency() $1' -p36570 -tp36571 -a(S'oe_get_module/5' -p36572 -S'oe_get_module(${1:OE_IFR}, ${2:OE_Parent}, ${3:ID}, ${4:Name}, ${5:Version}) $6' -p36573 -tp36574 -a(S'oe_register/0' -p36575 -S'oe_register() $1' -p36576 -tp36577 -a(S'oe_unregister/0' -p36578 -S'oe_unregister() $1' -p36579 -tp36580 -asS'orber_acl' -p36581 -(lp36582 -(S'clear_acl/0' -p36583 -S'clear_acl() $1' -p36584 -tp36585 -a(S'init_acl/1' -p36586 -S'init_acl(${1:Filters}) $2' -p36587 -tp36588 -a(S'init_acl/2' -p36589 -S'init_acl(${1:Filters}, ${2:Family}) $3' -p36590 -tp36591 -a(S'match/2' -p36592 -S'match(${1:IPTuple}, ${2:Direction}) $3' -p36593 -tp36594 -a(S'match/3' -p36595 -S'match(${1:IPTuple}, ${2:Direction}, ${3:All}) $4' -p36596 -tp36597 -a(S'range/1' -p36598 -S'range(${1:Filter}) $2' -p36599 -tp36600 -a(S'range/2' -p36601 -S'range(${1:Filter}, ${2:Family}) $3' -p36602 -tp36603 -a(S'verify/3' -p36604 -S'verify(${1:IP}, ${2:Filter}, ${3:Family}) $4' -p36605 -tp36606 -asS'CosNotification_AdminPropertiesAdmin' -p36607 -(lp36608 -(S'code_change/3' -p36609 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p36610 -tp36611 -a(S'get_admin/1' -p36612 -S'get_admin(${1:OE_THIS}) $2' -p36613 -tp36614 -a(S'get_admin/2' -p36615 -S'get_admin(${1:OE_THIS}, ${2:OE_Options}) $3' -p36616 -tp36617 -a(S'handle_call/3' -p36618 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p36619 -tp36620 -a(S'handle_cast/2' -p36621 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p36622 -tp36623 -a(S'handle_info/2' -p36624 -S'handle_info(${1:Param1}, ${2:State}) $3' -p36625 -tp36626 -a(S'init/1' -p36627 -S'init(${1:Env}) $2' -p36628 -tp36629 -a(S'oe_create/0' -p36630 -S'oe_create() $1' -p36631 -tp36632 -a(S'oe_create/1' -p36633 -S'oe_create(${1:Env}) $2' -p36634 -tp36635 -a(S'oe_create/2' -p36636 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p36637 -tp36638 -a(S'oe_create_link/0' -p36639 -S'oe_create_link() $1' -p36640 -tp36641 -a(S'oe_create_link/1' -p36642 -S'oe_create_link(${1:Env}) $2' -p36643 -tp36644 -a(S'oe_create_link/2' -p36645 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p36646 -tp36647 -a(S'oe_get_interface/0' -p36648 -S'oe_get_interface() $1' -p36649 -tp36650 -a(S'oe_is_a/1' -p36651 -S'oe_is_a(${1:Param1}) $2' -p36652 -tp36653 -a(S'oe_tc/1' -p36654 -S'oe_tc(${1:Param1}) $2' -p36655 -tp36656 -a(S'set_admin/2' -p36657 -S'set_admin(${1:OE_THIS}, ${2:Admin}) $3' -p36658 -tp36659 -a(S'set_admin/3' -p36660 -S'set_admin(${1:OE_THIS}, ${2:OE_Options}, ${3:Admin}) $4' -p36661 -tp36662 -a(S'terminate/2' -p36663 -S'terminate(${1:Reason}, ${2:State}) $3' -p36664 -tp36665 -a(S'typeID/0' -p36666 -S'typeID() $1' -p36667 -tp36668 -asS'orber_ifr_idltype' -p36669 -(lp36670 -(S"'_get_def_kind'/1" -p36671 -S"'_get_def_kind'() $1" -p36672 -tp36673 -a(S"'_get_type'/1" -p36674 -S"'_get_type'(${1:Param1}) $2" -p36675 -tp36676 -a(S"'_get_type_def'/1" -p36677 -S"'_get_type_def'(${1:Param1}) $2" -p36678 -tp36679 -a(S'cleanup_for_destroy/1' -p36680 -S'cleanup_for_destroy(${1:IDLType_objref}) $2' -p36681 -tp36682 -a(S'destroy/1' -p36683 -S'destroy(${1:IDLType_objref}) $2' -p36684 -tp36685 -asS'CosNotifyFilter_Filter' -p36686 -(lp36687 -(S"'_get_constraint_grammar'/1" -p36688 -S"'_get_constraint_grammar'(${1:OE_THIS}) $2" -p36689 -tp36690 -a(S"'_get_constraint_grammar'/2" -p36691 -S"'_get_constraint_grammar'(${1:OE_THIS}, ${2:OE_Options}) $3" -p36692 -tp36693 -a(S'add_constraints/2' -p36694 -S'add_constraints(${1:OE_THIS}, ${2:Constraint_list}) $3' -p36695 -tp36696 -a(S'add_constraints/3' -p36697 -S'add_constraints(${1:OE_THIS}, ${2:OE_Options}, ${3:Constraint_list}) $4' -p36698 -tp36699 -a(S'attach_callback/2' -p36700 -S'attach_callback(${1:OE_THIS}, ${2:Callback}) $3' -p36701 -tp36702 -a(S'attach_callback/3' -p36703 -S'attach_callback(${1:OE_THIS}, ${2:OE_Options}, ${3:Callback}) $4' -p36704 -tp36705 -a(S'code_change/3' -p36706 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p36707 -tp36708 -a(S'destroy/1' -p36709 -S'destroy(${1:OE_THIS}) $2' -p36710 -tp36711 -a(S'destroy/2' -p36712 -S'destroy(${1:OE_THIS}, ${2:OE_Options}) $3' -p36713 -tp36714 -a(S'detach_callback/2' -p36715 -S'detach_callback(${1:OE_THIS}, ${2:Callback}) $3' -p36716 -tp36717 -a(S'detach_callback/3' -p36718 -S'detach_callback(${1:OE_THIS}, ${2:OE_Options}, ${3:Callback}) $4' -p36719 -tp36720 -a(S'get_all_constraints/1' -p36721 -S'get_all_constraints(${1:OE_THIS}) $2' -p36722 -tp36723 -a(S'get_all_constraints/2' -p36724 -S'get_all_constraints(${1:OE_THIS}, ${2:OE_Options}) $3' -p36725 -tp36726 -a(S'get_callbacks/1' -p36727 -S'get_callbacks(${1:OE_THIS}) $2' -p36728 -tp36729 -a(S'get_callbacks/2' -p36730 -S'get_callbacks(${1:OE_THIS}, ${2:OE_Options}) $3' -p36731 -tp36732 -a(S'get_constraints/2' -p36733 -S'get_constraints(${1:OE_THIS}, ${2:Id_list}) $3' -p36734 -tp36735 -a(S'get_constraints/3' -p36736 -S'get_constraints(${1:OE_THIS}, ${2:OE_Options}, ${3:Id_list}) $4' -p36737 -tp36738 -a(S'handle_call/3' -p36739 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p36740 -tp36741 -a(S'handle_cast/2' -p36742 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p36743 -tp36744 -a(S'handle_info/2' -p36745 -S'handle_info(${1:Info}, ${2:State}) $3' -p36746 -tp36747 -a(S'init/1' -p36748 -S'init(${1:Env}) $2' -p36749 -tp36750 -a(S'match/2' -p36751 -S'match(${1:OE_THIS}, ${2:Filterable_data}) $3' -p36752 -tp36753 -a(S'match/3' -p36754 -S'match(${1:OE_THIS}, ${2:OE_Options}, ${3:Filterable_data}) $4' -p36755 -tp36756 -a(S'match_structured/2' -p36757 -S'match_structured(${1:OE_THIS}, ${2:Filterable_data}) $3' -p36758 -tp36759 -a(S'match_structured/3' -p36760 -S'match_structured(${1:OE_THIS}, ${2:OE_Options}, ${3:Filterable_data}) $4' -p36761 -tp36762 -a(S'match_typed/2' -p36763 -S'match_typed(${1:OE_THIS}, ${2:Filterable_data}) $3' -p36764 -tp36765 -a(S'match_typed/3' -p36766 -S'match_typed(${1:OE_THIS}, ${2:OE_Options}, ${3:Filterable_data}) $4' -p36767 -tp36768 -a(S'modify_constraints/3' -p36769 -S'modify_constraints(${1:OE_THIS}, ${2:Del_list}, ${3:Modify_list}) $4' -p36770 -tp36771 -a(S'modify_constraints/4' -p36772 -S'modify_constraints(${1:OE_THIS}, ${2:OE_Options}, ${3:Del_list}, ${4:Modify_list}) $5' -p36773 -tp36774 -a(S'oe_create/0' -p36775 -S'oe_create() $1' -p36776 -tp36777 -a(S'oe_create/1' -p36778 -S'oe_create(${1:Env}) $2' -p36779 -tp36780 -a(S'oe_create/2' -p36781 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p36782 -tp36783 -a(S'oe_create_link/0' -p36784 -S'oe_create_link() $1' -p36785 -tp36786 -a(S'oe_create_link/1' -p36787 -S'oe_create_link(${1:Env}) $2' -p36788 -tp36789 -a(S'oe_create_link/2' -p36790 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p36791 -tp36792 -a(S'oe_get_interface/0' -p36793 -S'oe_get_interface() $1' -p36794 -tp36795 -a(S'oe_is_a/1' -p36796 -S'oe_is_a(${1:Param1}) $2' -p36797 -tp36798 -a(S'oe_tc/1' -p36799 -S'oe_tc(${1:Param1}) $2' -p36800 -tp36801 -a(S'remove_all_constraints/1' -p36802 -S'remove_all_constraints(${1:OE_THIS}) $2' -p36803 -tp36804 -a(S'remove_all_constraints/2' -p36805 -S'remove_all_constraints(${1:OE_THIS}, ${2:OE_Options}) $3' -p36806 -tp36807 -a(S'terminate/2' -p36808 -S'terminate(${1:Reason}, ${2:State}) $3' -p36809 -tp36810 -a(S'typeID/0' -p36811 -S'typeID() $1' -p36812 -tp36813 -asS'mnesia_dumper' -p36814 -(lp36815 -(S'get_log_writes/0' -p36816 -S'get_log_writes() $1' -p36817 -tp36818 -a(S'incr_log_writes/0' -p36819 -S'incr_log_writes() $1' -p36820 -tp36821 -a(S'opt_dump_log/1' -p36822 -S'opt_dump_log(${1:InitBy}) $2' -p36823 -tp36824 -a(S'raw_dump_table/2' -p36825 -S'raw_dump_table(${1:DetsRef}, ${2:EtsRef}) $3' -p36826 -tp36827 -a(S'raw_named_dump_table/2' -p36828 -S'raw_named_dump_table(${1:Tab}, ${2:Ftype}) $3' -p36829 -tp36830 -a(S'regulator_init/1' -p36831 -S'regulator_init(${1:Parent}) $2' -p36832 -tp36833 -a(S'start_regulator/0' -p36834 -S'start_regulator() $1' -p36835 -tp36836 -a(S'update/3' -p36837 -S'update(${1:Tid}, ${2:SchemaOps}, ${3:DumperMode}) $4' -p36838 -tp36839 -asS'snmpc_tok' -p36840 -(lp36841 -(S'format_error/1' -p36842 -S'format_error(${1:Param1}) $2' -p36843 -tp36844 -a(S'get_all_tokens/1' -p36845 -S'get_all_tokens(${1:TokPid}) $2' -p36846 -tp36847 -a(S'get_token/1' -p36848 -S'get_token(${1:TokPid}) $2' -p36849 -tp36850 -a(S'handle_call/3' -p36851 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:String}) $4' -p36852 -tp36853 -a(S'init/1' -p36854 -S'init(${1:Param1}) $2' -p36855 -tp36856 -a(S'null_get_line/0' -p36857 -S'null_get_line() $1' -p36858 -tp36859 -a(S'start_link/2' -p36860 -S'start_link(${1:Reserved_words}, ${2:Options}) $3' -p36861 -tp36862 -a(S'stop/1' -p36863 -S'stop(${1:TokPid}) $2' -p36864 -tp36865 -a(S'terminate/2' -p36866 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p36867 -tp36868 -a(S'test/0' -p36869 -S'test() $1' -p36870 -tp36871 -a(S'tokenize/2' -p36872 -S'tokenize(${1:TokPid}, ${2:String}) $3' -p36873 -tp36874 -asS'ct_master_logs' -p36875 -(lp36876 -(S'log/3' -p36877 -S'log(${1:Heading}, ${2:Format}, ${3:Args}) $4' -p36878 -tp36879 -a(S'make_all_runs_index/0' -p36880 -S'make_all_runs_index() $1' -p36881 -tp36882 -a(S'nodedir/2' -p36883 -S'nodedir(${1:Node}, ${2:RunDir}) $3' -p36884 -tp36885 -a(S'start/2' -p36886 -S'start(${1:LogDir}, ${2:Nodes}) $3' -p36887 -tp36888 -a(S'stop/0' -p36889 -S'stop() $1' -p36890 -tp36891 -asS'CosEventChannelAdmin_SupplierAdmin_impl' -p36892 -(lp36893 -(S'code_change/3' -p36894 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p36895 -tp36896 -a(S'handle_info/2' -p36897 -S'handle_info(${1:Param1}, ${2:State}) $3' -p36898 -tp36899 -a(S'init/1' -p36900 -S'init(${1:Param1}) $2' -p36901 -tp36902 -a(S'obtain_pull_consumer/2' -p36903 -S'obtain_pull_consumer() $1' -p36904 -tp36905 -a(S'obtain_push_consumer/2' -p36906 -S'obtain_push_consumer() $1' -p36907 -tp36908 -a(S'terminate/2' -p36909 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p36910 -tp36911 -asS'string' -p36912 -(lp36913 -(S'centre/2' -p36914 -S'centre(${1:String}, ${2:Number}) $3' -p36915 -tp36916 -a(S'centre/3' -p36917 -S'centre(${1:String}, ${2:Number}, ${3:Character}) $4' -p36918 -tp36919 -a(S'chars/2' -p36920 -S'chars(${1:Character}, ${2:Number}) $3' -p36921 -tp36922 -a(S'chars/3' -p36923 -S'chars(${1:Character}, ${2:Number}, ${3:Tail}) $4' -p36924 -tp36925 -a(S'chr/2' -p36926 -S'chr(${1:String}, ${2:Character}) $3' -p36927 -tp36928 -a(S'concat/2' -p36929 -S'concat(${1:String1}, ${2:String2}) $3' -p36930 -tp36931 -a(S'copies/2' -p36932 -S'copies(${1:String}, ${2:Number}) $3' -p36933 -tp36934 -a(S'cspan/2' -p36935 -S'cspan(${1:String}, ${2:Chars}) $3' -p36936 -tp36937 -a(S'equal/2' -p36938 -S'equal(${1:String1}, ${2:String2}) $3' -p36939 -tp36940 -a(S'join/2' -p36941 -S'join(${1:StringList}, ${2:Separator}) $3' -p36942 -tp36943 -a(S'left/2' -p36944 -S'left(${1:S}, ${2:Sc}) $3' -p36945 -tp36946 -a(S'left/3' -p36947 -S'left(${1:String}, ${2:Number}, ${3:Character}) $4' -p36948 -tp36949 -a(S'len/1' -p36950 -S'len(${1:String}) $2' -p36951 -tp36952 -a(S'rchr/2' -p36953 -S'rchr(${1:String}, ${2:Character}) $3' -p36954 -tp36955 -a(S'right/2' -p36956 -S'right(${1:String}, ${2:Sc}) $3' -p36957 -tp36958 -a(S'right/3' -p36959 -S'right(${1:String}, ${2:Number}, ${3:Character}) $4' -p36960 -tp36961 -a(S'rstr/2' -p36962 -S'rstr(${1:String}, ${2:SubString}) $3' -p36963 -tp36964 -a(S'span/2' -p36965 -S'span(${1:String}, ${2:Chars}) $3' -p36966 -tp36967 -a(S'str/2' -p36968 -S'str(${1:String}, ${2:SubString}) $3' -p36969 -tp36970 -a(S'strip/1' -p36971 -S'strip(${1:String}) $2' -p36972 -tp36973 -a(S'strip/2' -p36974 -S'strip(${1:String}, ${2:Direction}) $3' -p36975 -tp36976 -a(S'strip/3' -p36977 -S'strip(${1:String}, ${2:Direction}, ${3:Character}) $4' -p36978 -tp36979 -a(S'sub_string/2' -p36980 -S'sub_string(${1:String}, ${2:Start}) $3' -p36981 -tp36982 -a(S'sub_string/3' -p36983 -S'sub_string(${1:String}, ${2:Start}, ${3:Stop}) $4' -p36984 -tp36985 -a(S'sub_word/2' -p36986 -S'sub_word(${1:String}, ${2:Number}) $3' -p36987 -tp36988 -a(S'sub_word/3' -p36989 -S'sub_word(${1:String}, ${2:Number}, ${3:Character}) $4' -p36990 -tp36991 -a(S'substr/2' -p36992 -S'substr(${1:String}, ${2:Start}) $3' -p36993 -tp36994 -a(S'substr/3' -p36995 -S'substr(${1:String}, ${2:Start}, ${3:Length}) $4' -p36996 -tp36997 -a(S'to_lower/1' -p36998 -S'to_lower(${1:String}) $2' -p36999 -tp37000 -a(S'to_upper/1' -p37001 -S'to_upper(${1:String}) $2' -p37002 -tp37003 -a(S'tokens/2' -p37004 -S'tokens(${1:String}, ${2:SeparatorList}) $3' -p37005 -tp37006 -a(S'words/1' -p37007 -S'words(${1:String}) $2' -p37008 -tp37009 -a(S'words/2' -p37010 -S'words(${1:String}, ${2:Character}) $3' -p37011 -tp37012 -asS'CosTransactions_TransIdentity' -p37013 -(lp37014 -(S'id/0' -p37015 -S'id() $1' -p37016 -tp37017 -a(S'name/0' -p37018 -S'name() $1' -p37019 -tp37020 -a(S'tc/0' -p37021 -S'tc() $1' -p37022 -tp37023 -asS'dbg_wx_trace_win' -p37024 -(lp37025 -(S'add_break/3' -p37026 -S'add_break(${1:WinInfo}, ${2:Menu}, ${3:Break}) $4' -p37027 -tp37028 -a(S'clear_breaks/1' -p37029 -S'clear_breaks(${1:WinInfo}) $2' -p37030 -tp37031 -a(S'clear_breaks/2' -p37032 -S'clear_breaks(${1:WinInfo}, ${2:Mod}) $3' -p37033 -tp37034 -a(S'configure/2' -p37035 -S'configure(${1:Param1}, ${2:Windows}) $3' -p37036 -tp37037 -a(S'create_win/4' -p37038 -S'create_win(${1:Parent}, ${2:Title}, ${3:Windows}, ${4:Menus}) $5' -p37039 -tp37040 -a(S'delete_break/2' -p37041 -S'delete_break(${1:WinInfo}, ${2:Point}) $3' -p37042 -tp37043 -a(S'display/2' -p37044 -S'display(${1:Param1}, ${2:Arg}) $3' -p37045 -tp37046 -a(S'enable/2' -p37047 -S'enable(${1:MenuItems}, ${2:Bool}) $3' -p37048 -tp37049 -a(S'eval_output/3' -p37050 -S'eval_output(${1:Param1}, ${2:Text}, ${3:Param3}) $4' -p37051 -tp37052 -a(S'get_window/1' -p37053 -S'get_window(${1:WinInfo}) $2' -p37054 -tp37055 -a(S'handle_event/2' -p37056 -S'handle_event(${1:Param1}, ${2:Wi0}) $3' -p37057 -tp37058 -a(S'helpwin/2' -p37059 -S'helpwin(${1:Type}, ${2:Param2}) $3' -p37060 -tp37061 -a(S'init/0' -p37062 -S'init() $1' -p37063 -tp37064 -a(S'is_enabled/1' -p37065 -S'is_enabled(${1:MenuItem}) $2' -p37066 -tp37067 -a(S'is_shown/2' -p37068 -S'is_shown(${1:WinInfo}, ${2:Mod}) $3' -p37069 -tp37070 -a(S'mark_line/3' -p37071 -S'mark_line(${1:Param1}, ${2:Line}, ${3:Param3}) $4' -p37072 -tp37073 -a(S'remove_code/2' -p37074 -S'remove_code(${1:WinInfo}, ${2:Param2}) $3' -p37075 -tp37076 -a(S'select/2' -p37077 -S'select(${1:MenuItem}, ${2:Bool}) $3' -p37078 -tp37079 -a(S'select_line/2' -p37080 -S'select_line(${1:WinInfo}, ${2:Line}) $3' -p37081 -tp37082 -a(S'selected_line/1' -p37083 -S'selected_line(${1:Param1}) $2' -p37084 -tp37085 -a(S'show_code/3' -p37086 -S'show_code(${1:Param1}, ${2:Mod}, ${3:Contents}) $4' -p37087 -tp37088 -a(S'show_no_code/1' -p37089 -S'show_no_code(${1:Param1}) $2' -p37090 -tp37091 -a(S'stop/1' -p37092 -S'stop(${1:Param1}) $2' -p37093 -tp37094 -a(S'trace_output/2' -p37095 -S'trace_output(${1:Param1}, ${2:Text}) $3' -p37096 -tp37097 -a(S'unmark_line/1' -p37098 -S'unmark_line(${1:WinInfo}) $2' -p37099 -tp37100 -a(S'update_bindings/2' -p37101 -S'update_bindings(${1:Param1}, ${2:Bs}) $3' -p37102 -tp37103 -a(S'update_break/2' -p37104 -S'update_break(${1:WinInfo}, ${2:Break}) $3' -p37105 -tp37106 -asS'wxFilePickerCtrl' -p37107 -(lp37108 -(S'cacheBestSize/2' -p37109 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p37110 -tp37111 -a(S'captureMouse/1' -p37112 -S'captureMouse(${1:This}) $2' -p37113 -tp37114 -a(S'center/1' -p37115 -S'center(${1:This}) $2' -p37116 -tp37117 -a(S'center/2' -p37118 -S'center(${1:This}, ${2:Options}) $3' -p37119 -tp37120 -a(S'centerOnParent/1' -p37121 -S'centerOnParent(${1:This}) $2' -p37122 -tp37123 -a(S'centerOnParent/2' -p37124 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p37125 -tp37126 -a(S'centre/1' -p37127 -S'centre(${1:This}) $2' -p37128 -tp37129 -a(S'centre/2' -p37130 -S'centre(${1:This}, ${2:Options}) $3' -p37131 -tp37132 -a(S'centreOnParent/1' -p37133 -S'centreOnParent(${1:This}) $2' -p37134 -tp37135 -a(S'centreOnParent/2' -p37136 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p37137 -tp37138 -a(S'clearBackground/1' -p37139 -S'clearBackground(${1:This}) $2' -p37140 -tp37141 -a(S'clientToScreen/2' -p37142 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p37143 -tp37144 -a(S'clientToScreen/3' -p37145 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p37146 -tp37147 -a(S'close/1' -p37148 -S'close(${1:This}) $2' -p37149 -tp37150 -a(S'close/2' -p37151 -S'close(${1:This}, ${2:Options}) $3' -p37152 -tp37153 -a(S'connect/2' -p37154 -S'connect(${1:This}, ${2:EventType}) $3' -p37155 -tp37156 -a(S'connect/3' -p37157 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p37158 -tp37159 -a(S'convertDialogToPixels/2' -p37160 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p37161 -tp37162 -a(S'convertPixelsToDialog/2' -p37163 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p37164 -tp37165 -a(S'create/3' -p37166 -S'create(${1:This}, ${2:Parent}, ${3:Id}) $4' -p37167 -tp37168 -a(S'create/4' -p37169 -S'create(${1:This}, ${2:Parent}, ${3:Id}, ${4:Param4}) $5' -p37170 -tp37171 -a(S'destroy/1' -p37172 -S'destroy(${1:This}) $2' -p37173 -tp37174 -a(S'destroyChildren/1' -p37175 -S'destroyChildren(${1:This}) $2' -p37176 -tp37177 -a(S'disable/1' -p37178 -S'disable(${1:This}) $2' -p37179 -tp37180 -a(S'disconnect/1' -p37181 -S'disconnect(${1:This}) $2' -p37182 -tp37183 -a(S'disconnect/2' -p37184 -S'disconnect(${1:This}, ${2:EventType}) $3' -p37185 -tp37186 -a(S'disconnect/3' -p37187 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p37188 -tp37189 -a(S'enable/1' -p37190 -S'enable(${1:This}) $2' -p37191 -tp37192 -a(S'enable/2' -p37193 -S'enable(${1:This}, ${2:Options}) $3' -p37194 -tp37195 -a(S'findWindow/2' -p37196 -S'findWindow(${1:This}, ${2:Winid}) $3' -p37197 -tp37198 -a(S'fit/1' -p37199 -S'fit(${1:This}) $2' -p37200 -tp37201 -a(S'fitInside/1' -p37202 -S'fitInside(${1:This}) $2' -p37203 -tp37204 -a(S'freeze/1' -p37205 -S'freeze(${1:This}) $2' -p37206 -tp37207 -a(S'getAcceleratorTable/1' -p37208 -S'getAcceleratorTable(${1:This}) $2' -p37209 -tp37210 -a(S'getBackgroundColour/1' -p37211 -S'getBackgroundColour(${1:This}) $2' -p37212 -tp37213 -a(S'getBackgroundStyle/1' -p37214 -S'getBackgroundStyle(${1:This}) $2' -p37215 -tp37216 -a(S'getBestSize/1' -p37217 -S'getBestSize(${1:This}) $2' -p37218 -tp37219 -a(S'getCaret/1' -p37220 -S'getCaret(${1:This}) $2' -p37221 -tp37222 -a(S'getCharHeight/1' -p37223 -S'getCharHeight(${1:This}) $2' -p37224 -tp37225 -a(S'getCharWidth/1' -p37226 -S'getCharWidth(${1:This}) $2' -p37227 -tp37228 -a(S'getChildren/1' -p37229 -S'getChildren(${1:This}) $2' -p37230 -tp37231 -a(S'getClientSize/1' -p37232 -S'getClientSize(${1:This}) $2' -p37233 -tp37234 -a(S'getContainingSizer/1' -p37235 -S'getContainingSizer(${1:This}) $2' -p37236 -tp37237 -a(S'getCursor/1' -p37238 -S'getCursor(${1:This}) $2' -p37239 -tp37240 -a(S'getDropTarget/1' -p37241 -S'getDropTarget(${1:This}) $2' -p37242 -tp37243 -a(S'getEventHandler/1' -p37244 -S'getEventHandler(${1:This}) $2' -p37245 -tp37246 -a(S'getExtraStyle/1' -p37247 -S'getExtraStyle(${1:This}) $2' -p37248 -tp37249 -a(S'getFont/1' -p37250 -S'getFont(${1:This}) $2' -p37251 -tp37252 -a(S'getForegroundColour/1' -p37253 -S'getForegroundColour(${1:This}) $2' -p37254 -tp37255 -a(S'getGrandParent/1' -p37256 -S'getGrandParent(${1:This}) $2' -p37257 -tp37258 -a(S'getHandle/1' -p37259 -S'getHandle(${1:This}) $2' -p37260 -tp37261 -a(S'getHelpText/1' -p37262 -S'getHelpText(${1:This}) $2' -p37263 -tp37264 -a(S'getId/1' -p37265 -S'getId(${1:This}) $2' -p37266 -tp37267 -a(S'getInternalMargin/1' -p37268 -S'getInternalMargin(${1:This}) $2' -p37269 -tp37270 -a(S'getLabel/1' -p37271 -S'getLabel(${1:This}) $2' -p37272 -tp37273 -a(S'getMaxSize/1' -p37274 -S'getMaxSize(${1:This}) $2' -p37275 -tp37276 -a(S'getMinSize/1' -p37277 -S'getMinSize(${1:This}) $2' -p37278 -tp37279 -a(S'getName/1' -p37280 -S'getName(${1:This}) $2' -p37281 -tp37282 -a(S'getParent/1' -p37283 -S'getParent(${1:This}) $2' -p37284 -tp37285 -a(S'getPath/1' -p37286 -S'getPath(${1:This}) $2' -p37287 -tp37288 -a(S'getPickerCtrlProportion/1' -p37289 -S'getPickerCtrlProportion(${1:This}) $2' -p37290 -tp37291 -a(S'getPosition/1' -p37292 -S'getPosition(${1:This}) $2' -p37293 -tp37294 -a(S'getRect/1' -p37295 -S'getRect(${1:This}) $2' -p37296 -tp37297 -a(S'getScreenPosition/1' -p37298 -S'getScreenPosition(${1:This}) $2' -p37299 -tp37300 -a(S'getScreenRect/1' -p37301 -S'getScreenRect(${1:This}) $2' -p37302 -tp37303 -a(S'getScrollPos/2' -p37304 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p37305 -tp37306 -a(S'getScrollRange/2' -p37307 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p37308 -tp37309 -a(S'getScrollThumb/2' -p37310 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p37311 -tp37312 -a(S'getSize/1' -p37313 -S'getSize(${1:This}) $2' -p37314 -tp37315 -a(S'getSizer/1' -p37316 -S'getSizer(${1:This}) $2' -p37317 -tp37318 -a(S'getTextCtrl/1' -p37319 -S'getTextCtrl(${1:This}) $2' -p37320 -tp37321 -a(S'getTextCtrlProportion/1' -p37322 -S'getTextCtrlProportion(${1:This}) $2' -p37323 -tp37324 -a(S'getTextExtent/2' -p37325 -S'getTextExtent(${1:This}, ${2:String}) $3' -p37326 -tp37327 -a(S'getTextExtent/3' -p37328 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p37329 -tp37330 -a(S'getToolTip/1' -p37331 -S'getToolTip(${1:This}) $2' -p37332 -tp37333 -a(S'getUpdateRegion/1' -p37334 -S'getUpdateRegion(${1:This}) $2' -p37335 -tp37336 -a(S'getVirtualSize/1' -p37337 -S'getVirtualSize(${1:This}) $2' -p37338 -tp37339 -a(S'getWindowStyleFlag/1' -p37340 -S'getWindowStyleFlag(${1:This}) $2' -p37341 -tp37342 -a(S'getWindowVariant/1' -p37343 -S'getWindowVariant(${1:This}) $2' -p37344 -tp37345 -a(S'hasCapture/1' -p37346 -S'hasCapture(${1:This}) $2' -p37347 -tp37348 -a(S'hasScrollbar/2' -p37349 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p37350 -tp37351 -a(S'hasTextCtrl/1' -p37352 -S'hasTextCtrl(${1:This}) $2' -p37353 -tp37354 -a(S'hasTransparentBackground/1' -p37355 -S'hasTransparentBackground(${1:This}) $2' -p37356 -tp37357 -a(S'hide/1' -p37358 -S'hide(${1:This}) $2' -p37359 -tp37360 -a(S'inheritAttributes/1' -p37361 -S'inheritAttributes(${1:This}) $2' -p37362 -tp37363 -a(S'initDialog/1' -p37364 -S'initDialog(${1:This}) $2' -p37365 -tp37366 -a(S'invalidateBestSize/1' -p37367 -S'invalidateBestSize(${1:This}) $2' -p37368 -tp37369 -a(S'isEnabled/1' -p37370 -S'isEnabled(${1:This}) $2' -p37371 -tp37372 -a(S'isExposed/2' -p37373 -S'isExposed(${1:This}, ${2:Pt}) $3' -p37374 -tp37375 -a(S'isExposed/3' -p37376 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p37377 -tp37378 -a(S'isExposed/5' -p37379 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p37380 -tp37381 -a(S'isPickerCtrlGrowable/1' -p37382 -S'isPickerCtrlGrowable(${1:This}) $2' -p37383 -tp37384 -a(S'isRetained/1' -p37385 -S'isRetained(${1:This}) $2' -p37386 -tp37387 -a(S'isShown/1' -p37388 -S'isShown(${1:This}) $2' -p37389 -tp37390 -a(S'isTextCtrlGrowable/1' -p37391 -S'isTextCtrlGrowable(${1:This}) $2' -p37392 -tp37393 -a(S'isTopLevel/1' -p37394 -S'isTopLevel(${1:This}) $2' -p37395 -tp37396 -a(S'layout/1' -p37397 -S'layout(${1:This}) $2' -p37398 -tp37399 -a(S'lineDown/1' -p37400 -S'lineDown(${1:This}) $2' -p37401 -tp37402 -a(S'lineUp/1' -p37403 -S'lineUp(${1:This}) $2' -p37404 -tp37405 -a(S'lower/1' -p37406 -S'lower(${1:This}) $2' -p37407 -tp37408 -a(S'makeModal/1' -p37409 -S'makeModal(${1:This}) $2' -p37410 -tp37411 -a(S'makeModal/2' -p37412 -S'makeModal(${1:This}, ${2:Options}) $3' -p37413 -tp37414 -a(S'move/2' -p37415 -S'move(${1:This}, ${2:Pt}) $3' -p37416 -tp37417 -a(S'move/3' -p37418 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p37419 -tp37420 -a(S'move/4' -p37421 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p37422 -tp37423 -a(S'moveAfterInTabOrder/2' -p37424 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p37425 -tp37426 -a(S'moveBeforeInTabOrder/2' -p37427 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p37428 -tp37429 -a(S'navigate/1' -p37430 -S'navigate(${1:This}) $2' -p37431 -tp37432 -a(S'navigate/2' -p37433 -S'navigate(${1:This}, ${2:Options}) $3' -p37434 -tp37435 -a(S'new/0' -p37436 -S'new() $1' -p37437 -tp37438 -a(S'new/2' -p37439 -S'new(${1:Parent}, ${2:Id}) $3' -p37440 -tp37441 -a(S'new/3' -p37442 -S'new(${1:Parent}, ${2:Id}, ${3:Param3}) $4' -p37443 -tp37444 -a(S'pageDown/1' -p37445 -S'pageDown(${1:This}) $2' -p37446 -tp37447 -a(S'pageUp/1' -p37448 -S'pageUp(${1:This}) $2' -p37449 -tp37450 -a(S'parent_class/1' -p37451 -S'parent_class(${1:Param1}) $2' -p37452 -tp37453 -a(S'popEventHandler/1' -p37454 -S'popEventHandler(${1:This}) $2' -p37455 -tp37456 -a(S'popEventHandler/2' -p37457 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p37458 -tp37459 -a(S'popupMenu/2' -p37460 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p37461 -tp37462 -a(S'popupMenu/3' -p37463 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p37464 -tp37465 -a(S'popupMenu/4' -p37466 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p37467 -tp37468 -a(S'raise/1' -p37469 -S'raise(${1:This}) $2' -p37470 -tp37471 -a(S'refresh/1' -p37472 -S'refresh(${1:This}) $2' -p37473 -tp37474 -a(S'refresh/2' -p37475 -S'refresh(${1:This}, ${2:Options}) $3' -p37476 -tp37477 -a(S'refreshRect/2' -p37478 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p37479 -tp37480 -a(S'refreshRect/3' -p37481 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p37482 -tp37483 -a(S'releaseMouse/1' -p37484 -S'releaseMouse(${1:This}) $2' -p37485 -tp37486 -a(S'removeChild/2' -p37487 -S'removeChild(${1:This}, ${2:Child}) $3' -p37488 -tp37489 -a(S'reparent/2' -p37490 -S'reparent(${1:This}, ${2:NewParent}) $3' -p37491 -tp37492 -a(S'screenToClient/1' -p37493 -S'screenToClient(${1:This}) $2' -p37494 -tp37495 -a(S'screenToClient/2' -p37496 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p37497 -tp37498 -a(S'scrollLines/2' -p37499 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p37500 -tp37501 -a(S'scrollPages/2' -p37502 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p37503 -tp37504 -a(S'scrollWindow/3' -p37505 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p37506 -tp37507 -a(S'scrollWindow/4' -p37508 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p37509 -tp37510 -a(S'setAcceleratorTable/2' -p37511 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p37512 -tp37513 -a(S'setAutoLayout/2' -p37514 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p37515 -tp37516 -a(S'setBackgroundColour/2' -p37517 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p37518 -tp37519 -a(S'setBackgroundStyle/2' -p37520 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p37521 -tp37522 -a(S'setCaret/2' -p37523 -S'setCaret(${1:This}, ${2:Caret}) $3' -p37524 -tp37525 -a(S'setClientSize/2' -p37526 -S'setClientSize(${1:This}, ${2:Size}) $3' -p37527 -tp37528 -a(S'setClientSize/3' -p37529 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p37530 -tp37531 -a(S'setContainingSizer/2' -p37532 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p37533 -tp37534 -a(S'setCursor/2' -p37535 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p37536 -tp37537 -a(S'setDropTarget/2' -p37538 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p37539 -tp37540 -a(S'setExtraStyle/2' -p37541 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p37542 -tp37543 -a(S'setFocus/1' -p37544 -S'setFocus(${1:This}) $2' -p37545 -tp37546 -a(S'setFocusFromKbd/1' -p37547 -S'setFocusFromKbd(${1:This}) $2' -p37548 -tp37549 -a(S'setFont/2' -p37550 -S'setFont(${1:This}, ${2:Font}) $3' -p37551 -tp37552 -a(S'setForegroundColour/2' -p37553 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p37554 -tp37555 -a(S'setHelpText/2' -p37556 -S'setHelpText(${1:This}, ${2:Text}) $3' -p37557 -tp37558 -a(S'setId/2' -p37559 -S'setId(${1:This}, ${2:Winid}) $3' -p37560 -tp37561 -a(S'setInternalMargin/2' -p37562 -S'setInternalMargin(${1:This}, ${2:Newmargin}) $3' -p37563 -tp37564 -a(S'setLabel/2' -p37565 -S'setLabel(${1:This}, ${2:Label}) $3' -p37566 -tp37567 -a(S'setMaxSize/2' -p37568 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p37569 -tp37570 -a(S'setMinSize/2' -p37571 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p37572 -tp37573 -a(S'setName/2' -p37574 -S'setName(${1:This}, ${2:Name}) $3' -p37575 -tp37576 -a(S'setOwnBackgroundColour/2' -p37577 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p37578 -tp37579 -a(S'setOwnFont/2' -p37580 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p37581 -tp37582 -a(S'setOwnForegroundColour/2' -p37583 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p37584 -tp37585 -a(S'setPalette/2' -p37586 -S'setPalette(${1:This}, ${2:Pal}) $3' -p37587 -tp37588 -a(S'setPath/2' -p37589 -S'setPath(${1:This}, ${2:Str}) $3' -p37590 -tp37591 -a(S'setPickerCtrlGrowable/1' -p37592 -S'setPickerCtrlGrowable(${1:This}) $2' -p37593 -tp37594 -a(S'setPickerCtrlGrowable/2' -p37595 -S'setPickerCtrlGrowable(${1:This}, ${2:Options}) $3' -p37596 -tp37597 -a(S'setPickerCtrlProportion/2' -p37598 -S'setPickerCtrlProportion(${1:This}, ${2:Prop}) $3' -p37599 -tp37600 -a(S'setScrollPos/3' -p37601 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p37602 -tp37603 -a(S'setScrollPos/4' -p37604 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p37605 -tp37606 -a(S'setScrollbar/5' -p37607 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p37608 -tp37609 -a(S'setScrollbar/6' -p37610 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p37611 -tp37612 -a(S'setSize/2' -p37613 -S'setSize(${1:This}, ${2:Rect}) $3' -p37614 -tp37615 -a(S'setSize/3' -p37616 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p37617 -tp37618 -a(S'setSize/5' -p37619 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p37620 -tp37621 -a(S'setSize/6' -p37622 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p37623 -tp37624 -a(S'setSizeHints/2' -p37625 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p37626 -tp37627 -a(S'setSizeHints/3' -p37628 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p37629 -tp37630 -a(S'setSizeHints/4' -p37631 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p37632 -tp37633 -a(S'setSizer/2' -p37634 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p37635 -tp37636 -a(S'setSizer/3' -p37637 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p37638 -tp37639 -a(S'setSizerAndFit/2' -p37640 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p37641 -tp37642 -a(S'setSizerAndFit/3' -p37643 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p37644 -tp37645 -a(S'setTextCtrlGrowable/1' -p37646 -S'setTextCtrlGrowable(${1:This}) $2' -p37647 -tp37648 -a(S'setTextCtrlGrowable/2' -p37649 -S'setTextCtrlGrowable(${1:This}, ${2:Options}) $3' -p37650 -tp37651 -a(S'setTextCtrlProportion/2' -p37652 -S'setTextCtrlProportion(${1:This}, ${2:Prop}) $3' -p37653 -tp37654 -a(S'setThemeEnabled/2' -p37655 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p37656 -tp37657 -a(S'setToolTip/2' -p37658 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p37659 -tp37660 -a(S'setVirtualSize/2' -p37661 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p37662 -tp37663 -a(S'setVirtualSize/3' -p37664 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p37665 -tp37666 -a(S'setVirtualSizeHints/2' -p37667 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p37668 -tp37669 -a(S'setVirtualSizeHints/3' -p37670 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p37671 -tp37672 -a(S'setVirtualSizeHints/4' -p37673 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p37674 -tp37675 -a(S'setWindowStyle/2' -p37676 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p37677 -tp37678 -a(S'setWindowStyleFlag/2' -p37679 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p37680 -tp37681 -a(S'setWindowVariant/2' -p37682 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p37683 -tp37684 -a(S'shouldInheritColours/1' -p37685 -S'shouldInheritColours(${1:This}) $2' -p37686 -tp37687 -a(S'show/1' -p37688 -S'show(${1:This}) $2' -p37689 -tp37690 -a(S'show/2' -p37691 -S'show(${1:This}, ${2:Options}) $3' -p37692 -tp37693 -a(S'thaw/1' -p37694 -S'thaw(${1:This}) $2' -p37695 -tp37696 -a(S'transferDataFromWindow/1' -p37697 -S'transferDataFromWindow(${1:This}) $2' -p37698 -tp37699 -a(S'transferDataToWindow/1' -p37700 -S'transferDataToWindow(${1:This}) $2' -p37701 -tp37702 -a(S'update/1' -p37703 -S'update(${1:This}) $2' -p37704 -tp37705 -a(S'updateWindowUI/1' -p37706 -S'updateWindowUI(${1:This}) $2' -p37707 -tp37708 -a(S'updateWindowUI/2' -p37709 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p37710 -tp37711 -a(S'validate/1' -p37712 -S'validate(${1:This}) $2' -p37713 -tp37714 -a(S'warpPointer/3' -p37715 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p37716 -tp37717 -asS'xmerl_xlate' -p37718 -(lp37719 -(S'file/3' -p37720 -S'file(${1:F}, ${2:Title}, ${3:Callback}) $4' -p37721 -tp37722 -a(S'string/3' -p37723 -S'string(${1:Str}, ${2:Title}, ${3:Callback}) $4' -p37724 -tp37725 -asS'snmpm_config' -p37726 -(lp37727 -(S'agent_info/0' -p37728 -S'agent_info() $1' -p37729 -tp37730 -a(S'agent_info/2' -p37731 -S'agent_info(${1:TargetName}, ${2:Item}) $3' -p37732 -tp37733 -a(S'agent_info/3' -p37734 -S'agent_info(${1:Addr0}, ${2:Port}, ${3:Item}) $4' -p37735 -tp37736 -a(S'backup/1' -p37737 -S'backup(${1:BackupDir}) $2' -p37738 -tp37739 -a(S'check_agent_config/1' -p37740 -S'check_agent_config(${1:Agent}) $2' -p37741 -tp37742 -a(S'check_manager_config/1' -p37743 -S'check_manager_config(${1:Conf}) $2' -p37744 -tp37745 -a(S'check_user_config/1' -p37746 -S'check_user_config(${1:User}) $2' -p37747 -tp37748 -a(S'check_usm_user_config/1' -p37749 -S'check_usm_user_config(${1:User}) $2' -p37750 -tp37751 -a(S'code_change/3' -p37752 -S'code_change(${1:Param1}, ${2:S1}, ${3:Param3}) $4' -p37753 -tp37754 -a(S'cre_counter/2' -p37755 -S'cre_counter(${1:Counter}, ${2:Initial}) $3' -p37756 -tp37757 -a(S'cre_stats_counter/2' -p37758 -S'cre_stats_counter(${1:Counter}, ${2:Initial}) $3' -p37759 -tp37760 -a(S'default_transport_domain/0' -p37761 -S'default_transport_domain() $1' -p37762 -tp37763 -a(S'get_agent_engine_id/1' -p37764 -S'get_agent_engine_id(${1:TargetName}) $2' -p37765 -tp37766 -a(S'get_agent_engine_id/2' -p37767 -S'get_agent_engine_id(${1:Addr}, ${2:Port}) $3' -p37768 -tp37769 -a(S'get_agent_engine_max_message_size/1' -p37770 -S'get_agent_engine_max_message_size(${1:TargetName}) $2' -p37771 -tp37772 -a(S'get_agent_engine_max_message_size/2' -p37773 -S'get_agent_engine_max_message_size(${1:Addr}, ${2:Port}) $3' -p37774 -tp37775 -a(S'get_agent_mp_model/1' -p37776 -S'get_agent_mp_model(${1:TargetName}) $2' -p37777 -tp37778 -a(S'get_agent_mp_model/2' -p37779 -S'get_agent_mp_model(${1:Addr}, ${2:Port}) $3' -p37780 -tp37781 -a(S'get_agent_user_id/1' -p37782 -S'get_agent_user_id(${1:TargetName}) $2' -p37783 -tp37784 -a(S'get_agent_user_id/2' -p37785 -S'get_agent_user_id(${1:Addr}, ${2:Port}) $3' -p37786 -tp37787 -a(S'get_agent_user_info/2' -p37788 -S'get_agent_user_info(${1:Addr}, ${2:Port}) $3' -p37789 -tp37790 -a(S'get_agent_version/1' -p37791 -S'get_agent_version(${1:TargetName}) $2' -p37792 -tp37793 -a(S'get_agent_version/2' -p37794 -S'get_agent_version(${1:Addr}, ${2:Port}) $3' -p37795 -tp37796 -a(S'get_engine_boots/0' -p37797 -S'get_engine_boots() $1' -p37798 -tp37799 -a(S'get_engine_id/0' -p37800 -S'get_engine_id() $1' -p37801 -tp37802 -a(S'get_engine_max_message_size/0' -p37803 -S'get_engine_max_message_size() $1' -p37804 -tp37805 -a(S'get_engine_time/0' -p37806 -S'get_engine_time() $1' -p37807 -tp37808 -a(S'get_stats_counter/1' -p37809 -S'get_stats_counter(${1:Counter}) $2' -p37810 -tp37811 -a(S'get_stats_counters/0' -p37812 -S'get_stats_counters() $1' -p37813 -tp37814 -a(S'get_usm_eboots/1' -p37815 -S'get_usm_eboots(${1:SnmpEngineID}) $2' -p37816 -tp37817 -a(S'get_usm_eltime/1' -p37818 -S'get_usm_eltime(${1:SnmpEngineID}) $2' -p37819 -tp37820 -a(S'get_usm_etime/1' -p37821 -S'get_usm_etime(${1:SnmpEngineID}) $2' -p37822 -tp37823 -a(S'get_usm_user/2' -p37824 -S'get_usm_user(${1:EngineID}, ${2:UserName}) $3' -p37825 -tp37826 -a(S'get_usm_user_from_sec_name/2' -p37827 -S'get_usm_user_from_sec_name(${1:EngineID}, ${2:SecName}) $3' -p37828 -tp37829 -a(S'handle_call/3' -p37830 -S'handle_call(${1:Req}, ${2:From}, ${3:State}) $4' -p37831 -tp37832 -a(S'handle_cast/2' -p37833 -S'handle_cast(${1:Msg}, ${2:State}) $3' -p37834 -tp37835 -a(S'handle_info/2' -p37836 -S'handle_info(${1:Info}, ${2:S}) $3' -p37837 -tp37838 -a(S'incr_counter/2' -p37839 -S'incr_counter(${1:Counter}, ${2:Incr}) $3' -p37840 -tp37841 -a(S'incr_stats_counter/2' -p37842 -S'incr_stats_counter(${1:Counter}, ${2:Incr}) $3' -p37843 -tp37844 -a(S'increment_counter/3' -p37845 -S'increment_counter(${1:Counter}, ${2:Initial}, ${3:Max}) $4' -p37846 -tp37847 -a(S'increment_counter/4' -p37848 -S'increment_counter(${1:Counter}, ${2:Initial}, ${3:Increment}, ${4:Max}) $5' -p37849 -tp37850 -a(S'info/0' -p37851 -S'info() $1' -p37852 -tp37853 -a(S'init/1' -p37854 -S'init(${1:Opts}) $2' -p37855 -tp37856 -a(S'is_known_engine_id/2' -p37857 -S'is_known_engine_id(${1:EngineID}, ${2:TargetName}) $3' -p37858 -tp37859 -a(S'is_known_engine_id/3' -p37860 -S'is_known_engine_id(${1:EngineID}, ${2:Addr}, ${3:Port}) $4' -p37861 -tp37862 -a(S'is_started/0' -p37863 -S'is_started() $1' -p37864 -tp37865 -a(S'is_usm_engine_id_known/1' -p37866 -S'is_usm_engine_id_known(${1:EngineID}) $2' -p37867 -tp37868 -a(S'load_mib/1' -p37869 -S'load_mib(${1:Mib}) $2' -p37870 -tp37871 -a(S'make_mini_mib/0' -p37872 -S'make_mini_mib() $1' -p37873 -tp37874 -a(S'maybe_cre_stats_counter/2' -p37875 -S'maybe_cre_stats_counter(${1:Counter}, ${2:Initial}) $3' -p37876 -tp37877 -a(S'mk_target_name/3' -p37878 -S'mk_target_name(${1:Addr0}, ${2:Port}, ${3:Config}) $4' -p37879 -tp37880 -a(S'name_to_oid/1' -p37881 -S'name_to_oid(${1:Name}) $2' -p37882 -tp37883 -a(S'oid_to_name/1' -p37884 -S'oid_to_name(${1:Oid}) $2' -p37885 -tp37886 -a(S'oid_to_type/1' -p37887 -S'oid_to_type(${1:Oid}) $2' -p37888 -tp37889 -a(S'register_agent/3' -p37890 -S'register_agent(${1:UserId}, ${2:Addr0}, ${3:Port}) $4' -p37891 -tp37892 -a(S'register_user/3' -p37893 -S'register_user(${1:UserId}, ${2:UserMod}, ${3:UserData}) $4' -p37894 -tp37895 -a(S'register_user/4' -p37896 -S'register_user(${1:UserId}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p37897 -tp37898 -a(S'register_usm_user/3' -p37899 -S'register_usm_user() $1' -p37900 -tp37901 -a(S'reset_stats_counter/1' -p37902 -S'reset_stats_counter(${1:Counter}) $2' -p37903 -tp37904 -a(S'reset_usm_cache/1' -p37905 -S'reset_usm_cache(${1:SnmpEngineID}) $2' -p37906 -tp37907 -a(S'set_engine_boots/1' -p37908 -S'set_engine_boots(${1:Boots}) $2' -p37909 -tp37910 -a(S'set_engine_time/1' -p37911 -S'set_engine_time(${1:Time}) $2' -p37912 -tp37913 -a(S'set_usm_eboots/2' -p37914 -S'set_usm_eboots(${1:SnmpEngineID}, ${2:EngineBoots}) $3' -p37915 -tp37916 -a(S'set_usm_eltime/2' -p37917 -S'set_usm_eltime(${1:SnmpEngineID}, ${2:Time}) $3' -p37918 -tp37919 -a(S'set_usm_etime/2' -p37920 -S'set_usm_etime(${1:SnmpEngineID}, ${2:Diff}) $3' -p37921 -tp37922 -a(S'start_link/1' -p37923 -S'start_link(${1:Opts}) $2' -p37924 -tp37925 -a(S'stop/0' -p37926 -S'stop() $1' -p37927 -tp37928 -a(S'system_info/0' -p37929 -S'system_info() $1' -p37930 -tp37931 -a(S'system_info/1' -p37932 -S'system_info(${1:Key}) $2' -p37933 -tp37934 -a(S'system_start_time/0' -p37935 -S'system_start_time() $1' -p37936 -tp37937 -a(S'terminate/2' -p37938 -S'terminate(${1:Reason}, ${2:Param2}) $3' -p37939 -tp37940 -a(S'unload_mib/1' -p37941 -S'unload_mib(${1:Mib}) $2' -p37942 -tp37943 -a(S'unregister_agent/2' -p37944 -S'unregister_agent(${1:UserId}, ${2:TargetName}) $3' -p37945 -tp37946 -a(S'unregister_agent/3' -p37947 -S'unregister_agent(${1:UserId}, ${2:Addr0}, ${3:Port}) $4' -p37948 -tp37949 -a(S'unregister_user/1' -p37950 -S'unregister_user(${1:BadUserId}) $2' -p37951 -tp37952 -a(S'unregister_usm_user/2' -p37953 -S'unregister_usm_user(${1:EngineID}, ${2:Name}) $3' -p37954 -tp37955 -a(S'update_agent_info/3' -p37956 -S'update_agent_info(${1:UserId}, ${2:TargetName}, ${3:Info}) $4' -p37957 -tp37958 -a(S'update_agent_info/4' -p37959 -S'update_agent_info(${1:UserId}, ${2:TargetName}, ${3:Item}, ${4:Val}) $5' -p37960 -tp37961 -a(S'update_agent_info/5' -p37962 -S'update_agent_info(${1:UserId}, ${2:Addr}, ${3:Port}, ${4:Item}, ${5:Val}) $6' -p37963 -tp37964 -a(S'update_usm_user_info/4' -p37965 -S'update_usm_user_info(${1:EngineID}, ${2:Name}, ${3:Item}, ${4:Val}) $5' -p37966 -tp37967 -a(S'user_info/0' -p37968 -S'user_info() $1' -p37969 -tp37970 -a(S'user_info/1' -p37971 -S'user_info(${1:UserId}) $2' -p37972 -tp37973 -a(S'user_info/2' -p37974 -S'user_info(${1:UserId}, ${2:Item}) $3' -p37975 -tp37976 -a(S'usm_user_info/3' -p37977 -S'usm_user_info(${1:EngineID}, ${2:UserName}, ${3:Item}) $4' -p37978 -tp37979 -a(S'verbosity/1' -p37980 -S'verbosity(${1:Verbosity}) $2' -p37981 -tp37982 -a(S'which_agents/0' -p37983 -S'which_agents() $1' -p37984 -tp37985 -a(S'which_agents/1' -p37986 -S'which_agents(${1:UserId}) $2' -p37987 -tp37988 -a(S'which_mibs/0' -p37989 -S'which_mibs() $1' -p37990 -tp37991 -a(S'which_users/0' -p37992 -S'which_users() $1' -p37993 -tp37994 -a(S'which_usm_users/0' -p37995 -S'which_usm_users() $1' -p37996 -tp37997 -a(S'which_usm_users/1' -p37998 -S'which_usm_users(${1:EngineID}) $2' -p37999 -tp38000 -asS'asn1ct_constructed_ber' -p38001 -(lp38002 -(S'gen_decode_choice/3' -p38003 -S'gen_decode_choice(${1:Erules}, ${2:Typename}, ${3:D}) $4' -p38004 -tp38005 -a(S'gen_decode_sequence/3' -p38006 -S'gen_decode_sequence(${1:Erules}, ${2:Typename}, ${3:D}) $4' -p38007 -tp38008 -a(S'gen_decode_set/3' -p38009 -S'gen_decode_set(${1:Erules}, ${2:Typename}, ${3:D}) $4' -p38010 -tp38011 -a(S'gen_decode_sof/4' -p38012 -S'gen_decode_sof(${1:Erules}, ${2:Typename}, ${3:Param3}, ${4:D}) $5' -p38013 -tp38014 -a(S'gen_encode_choice/3' -p38015 -S'gen_encode_choice(${1:Erules}, ${2:Typename}, ${3:D}) $4' -p38016 -tp38017 -a(S'gen_encode_sequence/3' -p38018 -S'gen_encode_sequence(${1:Erules}, ${2:Typename}, ${3:D}) $4' -p38019 -tp38020 -a(S'gen_encode_set/3' -p38021 -S'gen_encode_set(${1:Erules}, ${2:Typename}, ${3:D}) $4' -p38022 -tp38023 -a(S'gen_encode_sof/4' -p38024 -S'gen_encode_sof(${1:Erules}, ${2:Typename}, ${3:Param3}, ${4:D}) $5' -p38025 -tp38026 -a(S'match_tag/2' -p38027 -S'match_tag(${1:Erules}, ${2:Arg}) $3' -p38028 -tp38029 -asS'cdr_decode' -p38030 -(lp38031 -(S'dec_byte_order/1' -p38032 -S'dec_byte_order(${1:Param1}) $2' -p38033 -tp38034 -a(S'dec_byte_order_list/1' -p38035 -S'dec_byte_order_list(${1:Param1}) $2' -p38036 -tp38037 -a(S'dec_giop_message_header/1' -p38038 -S'dec_giop_message_header(${1:Other}) $2' -p38039 -tp38040 -a(S'dec_locate_reply_body/5' -p38041 -S'dec_locate_reply_body(${1:Version}, ${2:LocateStatus}, ${3:Rest}, ${4:Len}, ${5:ByteOrder}) $6' -p38042 -tp38043 -a(S'dec_locate_reply_header/4' -p38044 -S'dec_locate_reply_header(${1:Version}, ${2:Message}, ${3:Len}, ${4:ByteOrder}) $5' -p38045 -tp38046 -a(S'dec_message/2' -p38047 -S'dec_message(${1:TypeCodes}, ${2:Bytes}) $3' -p38048 -tp38049 -a(S'dec_message_header/3' -p38050 -S'dec_message_header(${1:TypeCodes}, ${2:Message}, ${3:Bytes}) $4' -p38051 -tp38052 -a(S'dec_octet_sequence_bin/6' -p38053 -S'dec_octet_sequence_bin(${1:Param1}, ${2:Message}, ${3:Len}, ${4:ByteOrder}, ${5:Param5}, ${6:C}) $7' -p38054 -tp38055 -a(S'dec_reply_body/6' -p38056 -S'dec_reply_body(${1:Version}, ${2:Param2}, ${3:Body}, ${4:Len}, ${5:ByteOrder}, ${6:Bytes}) $7' -p38057 -tp38058 -a(S'dec_reply_header/4' -p38059 -S'dec_reply_header(${1:Version}, ${2:Message}, ${3:Len0}, ${4:ByteOrder}) $5' -p38060 -tp38061 -a(S'dec_request_body/6' -p38062 -S'dec_request_body(${1:Version}, ${2:ReqHdr}, ${3:Rest}, ${4:Len}, ${5:ByteOrder}, ${6:Buffer}) $7' -p38063 -tp38064 -a(S'dec_system_exception/4' -p38065 -S'dec_system_exception(${1:Version}, ${2:Message}, ${3:Len}, ${4:ByteOrder}) $5' -p38066 -tp38067 -a(S'dec_type/5' -p38068 -S'dec_type(${1:Type}, ${2:Version}, ${3:Bytes}, ${4:Len}, ${5:ByteOrder}) $6' -p38069 -tp38070 -a(S'dec_user_exception/4' -p38071 -S'dec_user_exception(${1:Version}, ${2:Message}, ${3:Len}, ${4:ByteOrder}) $5' -p38072 -tp38073 -a(S'peek_request_id/2' -p38074 -S'peek_request_id(${1:Param1}, ${2:Param2}) $3' -p38075 -tp38076 -asS'CosFileTransfer_CommandNotImplementedException' -p38077 -(lp38078 -(S'id/0' -p38079 -S'id() $1' -p38080 -tp38081 -a(S'name/0' -p38082 -S'name() $1' -p38083 -tp38084 -a(S'tc/0' -p38085 -S'tc() $1' -p38086 -tp38087 -asS'gen_sctp' -p38088 -(lp38089 -(S'abort/2' -p38090 -S'abort(${1:Socket}, ${2:Assoc}) $3' -p38091 -tp38092 -a(S'close/1' -p38093 -S'close(${1:Socket}) $2' -p38094 -tp38095 -a(S'connect/4' -p38096 -S'connect(${1:Socket}, ${2:Addr}, ${3:Port}, ${4:Opts}) $5' -p38097 -tp38098 -a(S'connect/5' -p38099 -S'connect(${1:Socket}, ${2:Addr}, ${3:Port}, ${4:Opts}, ${5:Timeout}) $6' -p38100 -tp38101 -a(S'connect_init/4' -p38102 -S'connect_init(${1:Socket}, ${2:Addr}, ${3:Port}, ${4:Opts}) $5' -p38103 -tp38104 -a(S'connect_init/5' -p38105 -S'connect_init(${1:Socket}, ${2:Addr}, ${3:Port}, ${4:Opts}, ${5:Timeout}) $6' -p38106 -tp38107 -a(S'controlling_process/2' -p38108 -S'controlling_process(${1:Socket}, ${2:Pid}) $3' -p38109 -tp38110 -a(S'eof/2' -p38111 -S'eof(${1:Socket}, ${2:Assoc}) $3' -p38112 -tp38113 -a(S'error_string/1' -p38114 -S'error_string(${1:ErrorNumber}) $2' -p38115 -tp38116 -a(S'listen/2' -p38117 -S'listen(${1:Socket}, ${2:IsServer}) $3' -p38118 -tp38119 -a(S'open/0' -p38120 -S'open() $1' -p38121 -tp38122 -a(S'open/1' -p38123 -S'open(${1:Port}) $2' -p38124 -tp38125 -a(S'open/2' -p38126 -S'open(${1:Port}, ${2:Opts}) $3' -p38127 -tp38128 -a(S'peeloff/2' -p38129 -S'peeloff(${1:Socket}, ${2:Assoc}) $3' -p38130 -tp38131 -a(S'recv/1' -p38132 -S'recv(${1:Socket}) $2' -p38133 -tp38134 -a(S'recv/2' -p38135 -S'recv(${1:Socket}, ${2:Timeout}) $3' -p38136 -tp38137 -a(S'send/3' -p38138 -S'send(${1:Socket}, ${2:SndRcvInfo}, ${3:Data}) $4' -p38139 -tp38140 -a(S'send/4' -p38141 -S'send(${1:Socket}, ${2:Assoc}, ${3:Stream}, ${4:Data}) $5' -p38142 -tp38143 -asS'CosNotifyFilter_FilterIDSeq' -p38144 -(lp38145 -(S'id/0' -p38146 -S'id() $1' -p38147 -tp38148 -a(S'name/0' -p38149 -S'name() $1' -p38150 -tp38151 -a(S'tc/0' -p38152 -S'tc() $1' -p38153 -tp38154 -asS'eunit_serial' -p38155 -(lp38156 -(S'start/1' -p38157 -S'start(${1:Pids}) $2' -p38158 -tp38159 -asS'tv_comm_func' -p38160 -(lp38161 -(S'max/2' -p38162 -S'max(${1:Param1}, ${2:Y}) $3' -p38163 -tp38164 -a(S'min/2' -p38165 -S'min(${1:Param1}, ${2:Y}) $3' -p38166 -tp38167 -asS'inets_regexp' -p38168 -(lp38169 -(S'first_match/2' -p38170 -S'first_match(${1:S}, ${2:RegExp}) $3' -p38171 -tp38172 -a(S'gsub/3' -p38173 -S'gsub(${1:String}, ${2:RegExp}, ${3:Rep}) $4' -p38174 -tp38175 -a(S'match/2' -p38176 -S'match(${1:S}, ${2:RegExp}) $3' -p38177 -tp38178 -a(S'parse/1' -p38179 -S'parse(${1:S}) $2' -p38180 -tp38181 -a(S'split/2' -p38182 -S'split(${1:String}, ${2:RegExp}) $3' -p38183 -tp38184 -a(S'sub/3' -p38185 -S'sub(${1:String}, ${2:RegExp}, ${3:Rep}) $4' -p38186 -tp38187 -asS'wxListCtrl' -p38188 -(lp38189 -(S'arrange/1' -p38190 -S'arrange(${1:This}) $2' -p38191 -tp38192 -a(S'arrange/2' -p38193 -S'arrange(${1:This}, ${2:Param2}) $3' -p38194 -tp38195 -a(S'assignImageList/3' -p38196 -S'assignImageList(${1:This}, ${2:ImageList}, ${3:Which}) $4' -p38197 -tp38198 -a(S'cacheBestSize/2' -p38199 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p38200 -tp38201 -a(S'captureMouse/1' -p38202 -S'captureMouse(${1:This}) $2' -p38203 -tp38204 -a(S'center/1' -p38205 -S'center(${1:This}) $2' -p38206 -tp38207 -a(S'center/2' -p38208 -S'center(${1:This}, ${2:Options}) $3' -p38209 -tp38210 -a(S'centerOnParent/1' -p38211 -S'centerOnParent(${1:This}) $2' -p38212 -tp38213 -a(S'centerOnParent/2' -p38214 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p38215 -tp38216 -a(S'centre/1' -p38217 -S'centre(${1:This}) $2' -p38218 -tp38219 -a(S'centre/2' -p38220 -S'centre(${1:This}, ${2:Options}) $3' -p38221 -tp38222 -a(S'centreOnParent/1' -p38223 -S'centreOnParent(${1:This}) $2' -p38224 -tp38225 -a(S'centreOnParent/2' -p38226 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p38227 -tp38228 -a(S'clearAll/1' -p38229 -S'clearAll(${1:This}) $2' -p38230 -tp38231 -a(S'clearBackground/1' -p38232 -S'clearBackground(${1:This}) $2' -p38233 -tp38234 -a(S'clientToScreen/2' -p38235 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p38236 -tp38237 -a(S'clientToScreen/3' -p38238 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p38239 -tp38240 -a(S'close/1' -p38241 -S'close(${1:This}) $2' -p38242 -tp38243 -a(S'close/2' -p38244 -S'close(${1:This}, ${2:Options}) $3' -p38245 -tp38246 -a(S'connect/2' -p38247 -S'connect(${1:This}, ${2:EventType}) $3' -p38248 -tp38249 -a(S'connect/3' -p38250 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p38251 -tp38252 -a(S'convertDialogToPixels/2' -p38253 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p38254 -tp38255 -a(S'convertPixelsToDialog/2' -p38256 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p38257 -tp38258 -a(S'create/2' -p38259 -S'create() $1' -p38260 -tp38261 -a(S'create/3' -p38262 -S'create() $1' -p38263 -tp38264 -a(S'deleteAllItems/1' -p38265 -S'deleteAllItems(${1:This}) $2' -p38266 -tp38267 -a(S'deleteColumn/2' -p38268 -S'deleteColumn(${1:This}, ${2:Col}) $3' -p38269 -tp38270 -a(S'deleteItem/2' -p38271 -S'deleteItem(${1:This}, ${2:Item}) $3' -p38272 -tp38273 -a(S'destroy/1' -p38274 -S'destroy(${1:This}) $2' -p38275 -tp38276 -a(S'destroyChildren/1' -p38277 -S'destroyChildren(${1:This}) $2' -p38278 -tp38279 -a(S'disable/1' -p38280 -S'disable(${1:This}) $2' -p38281 -tp38282 -a(S'disconnect/1' -p38283 -S'disconnect(${1:This}) $2' -p38284 -tp38285 -a(S'disconnect/2' -p38286 -S'disconnect(${1:This}, ${2:EventType}) $3' -p38287 -tp38288 -a(S'disconnect/3' -p38289 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p38290 -tp38291 -a(S'editLabel/2' -p38292 -S'editLabel(${1:This}, ${2:Item}) $3' -p38293 -tp38294 -a(S'enable/1' -p38295 -S'enable(${1:This}) $2' -p38296 -tp38297 -a(S'enable/2' -p38298 -S'enable(${1:This}, ${2:Options}) $3' -p38299 -tp38300 -a(S'ensureVisible/2' -p38301 -S'ensureVisible(${1:This}, ${2:Item}) $3' -p38302 -tp38303 -a(S'findItem/3' -p38304 -S'findItem(${1:This}, ${2:Start}, ${3:Str}) $4' -p38305 -tp38306 -a(S'findItem/4' -p38307 -S'findItem(${1:This}, ${2:Start}, ${3:Str}, ${4:Param4}) $5' -p38308 -tp38309 -a(S'findWindow/2' -p38310 -S'findWindow(${1:This}, ${2:Winid}) $3' -p38311 -tp38312 -a(S'fit/1' -p38313 -S'fit(${1:This}) $2' -p38314 -tp38315 -a(S'fitInside/1' -p38316 -S'fitInside(${1:This}) $2' -p38317 -tp38318 -a(S'freeze/1' -p38319 -S'freeze(${1:This}) $2' -p38320 -tp38321 -a(S'getAcceleratorTable/1' -p38322 -S'getAcceleratorTable(${1:This}) $2' -p38323 -tp38324 -a(S'getBackgroundColour/1' -p38325 -S'getBackgroundColour(${1:This}) $2' -p38326 -tp38327 -a(S'getBackgroundStyle/1' -p38328 -S'getBackgroundStyle(${1:This}) $2' -p38329 -tp38330 -a(S'getBestSize/1' -p38331 -S'getBestSize(${1:This}) $2' -p38332 -tp38333 -a(S'getCaret/1' -p38334 -S'getCaret(${1:This}) $2' -p38335 -tp38336 -a(S'getCharHeight/1' -p38337 -S'getCharHeight(${1:This}) $2' -p38338 -tp38339 -a(S'getCharWidth/1' -p38340 -S'getCharWidth(${1:This}) $2' -p38341 -tp38342 -a(S'getChildren/1' -p38343 -S'getChildren(${1:This}) $2' -p38344 -tp38345 -a(S'getClientSize/1' -p38346 -S'getClientSize(${1:This}) $2' -p38347 -tp38348 -a(S'getColumn/3' -p38349 -S'getColumn(${1:This}, ${2:Col}, ${3:Item}) $4' -p38350 -tp38351 -a(S'getColumnCount/1' -p38352 -S'getColumnCount(${1:This}) $2' -p38353 -tp38354 -a(S'getColumnWidth/2' -p38355 -S'getColumnWidth(${1:This}, ${2:Col}) $3' -p38356 -tp38357 -a(S'getContainingSizer/1' -p38358 -S'getContainingSizer(${1:This}) $2' -p38359 -tp38360 -a(S'getCountPerPage/1' -p38361 -S'getCountPerPage(${1:This}) $2' -p38362 -tp38363 -a(S'getCursor/1' -p38364 -S'getCursor(${1:This}) $2' -p38365 -tp38366 -a(S'getDropTarget/1' -p38367 -S'getDropTarget(${1:This}) $2' -p38368 -tp38369 -a(S'getEditControl/1' -p38370 -S'getEditControl(${1:This}) $2' -p38371 -tp38372 -a(S'getEventHandler/1' -p38373 -S'getEventHandler(${1:This}) $2' -p38374 -tp38375 -a(S'getExtraStyle/1' -p38376 -S'getExtraStyle(${1:This}) $2' -p38377 -tp38378 -a(S'getFont/1' -p38379 -S'getFont(${1:This}) $2' -p38380 -tp38381 -a(S'getForegroundColour/1' -p38382 -S'getForegroundColour(${1:This}) $2' -p38383 -tp38384 -a(S'getGrandParent/1' -p38385 -S'getGrandParent(${1:This}) $2' -p38386 -tp38387 -a(S'getHandle/1' -p38388 -S'getHandle(${1:This}) $2' -p38389 -tp38390 -a(S'getHelpText/1' -p38391 -S'getHelpText(${1:This}) $2' -p38392 -tp38393 -a(S'getId/1' -p38394 -S'getId(${1:This}) $2' -p38395 -tp38396 -a(S'getImageList/2' -p38397 -S'getImageList(${1:This}, ${2:Which}) $3' -p38398 -tp38399 -a(S'getItem/2' -p38400 -S'getItem(${1:This}, ${2:Info}) $3' -p38401 -tp38402 -a(S'getItemBackgroundColour/2' -p38403 -S'getItemBackgroundColour(${1:This}, ${2:Item}) $3' -p38404 -tp38405 -a(S'getItemCount/1' -p38406 -S'getItemCount(${1:This}) $2' -p38407 -tp38408 -a(S'getItemData/2' -p38409 -S'getItemData(${1:This}, ${2:Item}) $3' -p38410 -tp38411 -a(S'getItemFont/2' -p38412 -S'getItemFont(${1:This}, ${2:Item}) $3' -p38413 -tp38414 -a(S'getItemPosition/2' -p38415 -S'getItemPosition(${1:This}, ${2:Item}) $3' -p38416 -tp38417 -a(S'getItemRect/2' -p38418 -S'getItemRect(${1:This}, ${2:Item}) $3' -p38419 -tp38420 -a(S'getItemRect/3' -p38421 -S'getItemRect(${1:This}, ${2:Item}, ${3:Param3}) $4' -p38422 -tp38423 -a(S'getItemSpacing/1' -p38424 -S'getItemSpacing(${1:This}) $2' -p38425 -tp38426 -a(S'getItemState/3' -p38427 -S'getItemState(${1:This}, ${2:Item}, ${3:StateMask}) $4' -p38428 -tp38429 -a(S'getItemText/2' -p38430 -S'getItemText(${1:This}, ${2:Item}) $3' -p38431 -tp38432 -a(S'getItemTextColour/2' -p38433 -S'getItemTextColour(${1:This}, ${2:Item}) $3' -p38434 -tp38435 -a(S'getLabel/1' -p38436 -S'getLabel(${1:This}) $2' -p38437 -tp38438 -a(S'getMaxSize/1' -p38439 -S'getMaxSize(${1:This}) $2' -p38440 -tp38441 -a(S'getMinSize/1' -p38442 -S'getMinSize(${1:This}) $2' -p38443 -tp38444 -a(S'getName/1' -p38445 -S'getName(${1:This}) $2' -p38446 -tp38447 -a(S'getNextItem/2' -p38448 -S'getNextItem(${1:This}, ${2:Item}) $3' -p38449 -tp38450 -a(S'getNextItem/3' -p38451 -S'getNextItem(${1:This}, ${2:Item}, ${3:Param3}) $4' -p38452 -tp38453 -a(S'getParent/1' -p38454 -S'getParent(${1:This}) $2' -p38455 -tp38456 -a(S'getPosition/1' -p38457 -S'getPosition(${1:This}) $2' -p38458 -tp38459 -a(S'getRect/1' -p38460 -S'getRect(${1:This}) $2' -p38461 -tp38462 -a(S'getScreenPosition/1' -p38463 -S'getScreenPosition(${1:This}) $2' -p38464 -tp38465 -a(S'getScreenRect/1' -p38466 -S'getScreenRect(${1:This}) $2' -p38467 -tp38468 -a(S'getScrollPos/2' -p38469 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p38470 -tp38471 -a(S'getScrollRange/2' -p38472 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p38473 -tp38474 -a(S'getScrollThumb/2' -p38475 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p38476 -tp38477 -a(S'getSelectedItemCount/1' -p38478 -S'getSelectedItemCount(${1:This}) $2' -p38479 -tp38480 -a(S'getSize/1' -p38481 -S'getSize(${1:This}) $2' -p38482 -tp38483 -a(S'getSizer/1' -p38484 -S'getSizer(${1:This}) $2' -p38485 -tp38486 -a(S'getTextColour/1' -p38487 -S'getTextColour(${1:This}) $2' -p38488 -tp38489 -a(S'getTextExtent/2' -p38490 -S'getTextExtent(${1:This}, ${2:String}) $3' -p38491 -tp38492 -a(S'getTextExtent/3' -p38493 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p38494 -tp38495 -a(S'getToolTip/1' -p38496 -S'getToolTip(${1:This}) $2' -p38497 -tp38498 -a(S'getTopItem/1' -p38499 -S'getTopItem(${1:This}) $2' -p38500 -tp38501 -a(S'getUpdateRegion/1' -p38502 -S'getUpdateRegion(${1:This}) $2' -p38503 -tp38504 -a(S'getViewRect/1' -p38505 -S'getViewRect(${1:This}) $2' -p38506 -tp38507 -a(S'getVirtualSize/1' -p38508 -S'getVirtualSize(${1:This}) $2' -p38509 -tp38510 -a(S'getWindowStyleFlag/1' -p38511 -S'getWindowStyleFlag(${1:This}) $2' -p38512 -tp38513 -a(S'getWindowVariant/1' -p38514 -S'getWindowVariant(${1:This}) $2' -p38515 -tp38516 -a(S'hasCapture/1' -p38517 -S'hasCapture(${1:This}) $2' -p38518 -tp38519 -a(S'hasScrollbar/2' -p38520 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p38521 -tp38522 -a(S'hasTransparentBackground/1' -p38523 -S'hasTransparentBackground(${1:This}) $2' -p38524 -tp38525 -a(S'hide/1' -p38526 -S'hide(${1:This}) $2' -p38527 -tp38528 -a(S'hitTest/3' -p38529 -S'hitTest(${1:This}, ${2:Point}, ${3:Flags}) $4' -p38530 -tp38531 -a(S'inheritAttributes/1' -p38532 -S'inheritAttributes(${1:This}) $2' -p38533 -tp38534 -a(S'initDialog/1' -p38535 -S'initDialog(${1:This}) $2' -p38536 -tp38537 -a(S'insertColumn/3' -p38538 -S'insertColumn(${1:This}, ${2:Col}, ${3:Heading}) $4' -p38539 -tp38540 -a(S'insertColumn/4' -p38541 -S'insertColumn(${1:This}, ${2:Col}, ${3:Heading}, ${4:Param4}) $5' -p38542 -tp38543 -a(S'insertItem/2' -p38544 -S'insertItem(${1:This}, ${2:Info}) $3' -p38545 -tp38546 -a(S'insertItem/3' -p38547 -S'insertItem(${1:This}, ${2:Index}, ${3:ImageIndex}) $4' -p38548 -tp38549 -a(S'insertItem/4' -p38550 -S'insertItem(${1:This}, ${2:Index}, ${3:Label}, ${4:ImageIndex}) $5' -p38551 -tp38552 -a(S'invalidateBestSize/1' -p38553 -S'invalidateBestSize(${1:This}) $2' -p38554 -tp38555 -a(S'isEnabled/1' -p38556 -S'isEnabled(${1:This}) $2' -p38557 -tp38558 -a(S'isExposed/2' -p38559 -S'isExposed(${1:This}, ${2:Pt}) $3' -p38560 -tp38561 -a(S'isExposed/3' -p38562 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p38563 -tp38564 -a(S'isExposed/5' -p38565 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p38566 -tp38567 -a(S'isRetained/1' -p38568 -S'isRetained(${1:This}) $2' -p38569 -tp38570 -a(S'isShown/1' -p38571 -S'isShown(${1:This}) $2' -p38572 -tp38573 -a(S'isTopLevel/1' -p38574 -S'isTopLevel(${1:This}) $2' -p38575 -tp38576 -a(S'layout/1' -p38577 -S'layout(${1:This}) $2' -p38578 -tp38579 -a(S'lineDown/1' -p38580 -S'lineDown(${1:This}) $2' -p38581 -tp38582 -a(S'lineUp/1' -p38583 -S'lineUp(${1:This}) $2' -p38584 -tp38585 -a(S'lower/1' -p38586 -S'lower(${1:This}) $2' -p38587 -tp38588 -a(S'makeModal/1' -p38589 -S'makeModal(${1:This}) $2' -p38590 -tp38591 -a(S'makeModal/2' -p38592 -S'makeModal(${1:This}, ${2:Options}) $3' -p38593 -tp38594 -a(S'move/2' -p38595 -S'move(${1:This}, ${2:Pt}) $3' -p38596 -tp38597 -a(S'move/3' -p38598 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p38599 -tp38600 -a(S'move/4' -p38601 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p38602 -tp38603 -a(S'moveAfterInTabOrder/2' -p38604 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p38605 -tp38606 -a(S'moveBeforeInTabOrder/2' -p38607 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p38608 -tp38609 -a(S'navigate/1' -p38610 -S'navigate(${1:This}) $2' -p38611 -tp38612 -a(S'navigate/2' -p38613 -S'navigate(${1:This}, ${2:Options}) $3' -p38614 -tp38615 -a(S'new/0' -p38616 -S'new() $1' -p38617 -tp38618 -a(S'new/1' -p38619 -S'new() $1' -p38620 -tp38621 -a(S'new/2' -p38622 -S'new() $1' -p38623 -tp38624 -a(S'pageDown/1' -p38625 -S'pageDown(${1:This}) $2' -p38626 -tp38627 -a(S'pageUp/1' -p38628 -S'pageUp(${1:This}) $2' -p38629 -tp38630 -a(S'parent_class/1' -p38631 -S'parent_class(${1:Param1}) $2' -p38632 -tp38633 -a(S'popEventHandler/1' -p38634 -S'popEventHandler(${1:This}) $2' -p38635 -tp38636 -a(S'popEventHandler/2' -p38637 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p38638 -tp38639 -a(S'popupMenu/2' -p38640 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p38641 -tp38642 -a(S'popupMenu/3' -p38643 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p38644 -tp38645 -a(S'popupMenu/4' -p38646 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p38647 -tp38648 -a(S'raise/1' -p38649 -S'raise(${1:This}) $2' -p38650 -tp38651 -a(S'refresh/1' -p38652 -S'refresh(${1:This}) $2' -p38653 -tp38654 -a(S'refresh/2' -p38655 -S'refresh(${1:This}, ${2:Options}) $3' -p38656 -tp38657 -a(S'refreshItem/2' -p38658 -S'refreshItem(${1:This}, ${2:Item}) $3' -p38659 -tp38660 -a(S'refreshItems/3' -p38661 -S'refreshItems(${1:This}, ${2:ItemFrom}, ${3:ItemTo}) $4' -p38662 -tp38663 -a(S'refreshRect/2' -p38664 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p38665 -tp38666 -a(S'refreshRect/3' -p38667 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p38668 -tp38669 -a(S'releaseMouse/1' -p38670 -S'releaseMouse(${1:This}) $2' -p38671 -tp38672 -a(S'removeChild/2' -p38673 -S'removeChild(${1:This}, ${2:Child}) $3' -p38674 -tp38675 -a(S'reparent/2' -p38676 -S'reparent(${1:This}, ${2:NewParent}) $3' -p38677 -tp38678 -a(S'screenToClient/1' -p38679 -S'screenToClient(${1:This}) $2' -p38680 -tp38681 -a(S'screenToClient/2' -p38682 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p38683 -tp38684 -a(S'scrollLines/2' -p38685 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p38686 -tp38687 -a(S'scrollList/3' -p38688 -S'scrollList(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p38689 -tp38690 -a(S'scrollPages/2' -p38691 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p38692 -tp38693 -a(S'scrollWindow/3' -p38694 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p38695 -tp38696 -a(S'scrollWindow/4' -p38697 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p38698 -tp38699 -a(S'setAcceleratorTable/2' -p38700 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p38701 -tp38702 -a(S'setAutoLayout/2' -p38703 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p38704 -tp38705 -a(S'setBackgroundColour/2' -p38706 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p38707 -tp38708 -a(S'setBackgroundStyle/2' -p38709 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p38710 -tp38711 -a(S'setCaret/2' -p38712 -S'setCaret(${1:This}, ${2:Caret}) $3' -p38713 -tp38714 -a(S'setClientSize/2' -p38715 -S'setClientSize(${1:This}, ${2:Size}) $3' -p38716 -tp38717 -a(S'setClientSize/3' -p38718 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p38719 -tp38720 -a(S'setColumn/3' -p38721 -S'setColumn(${1:This}, ${2:Col}, ${3:Item}) $4' -p38722 -tp38723 -a(S'setColumnWidth/3' -p38724 -S'setColumnWidth(${1:This}, ${2:Col}, ${3:Width}) $4' -p38725 -tp38726 -a(S'setContainingSizer/2' -p38727 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p38728 -tp38729 -a(S'setCursor/2' -p38730 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p38731 -tp38732 -a(S'setDropTarget/2' -p38733 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p38734 -tp38735 -a(S'setExtraStyle/2' -p38736 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p38737 -tp38738 -a(S'setFocus/1' -p38739 -S'setFocus(${1:This}) $2' -p38740 -tp38741 -a(S'setFocusFromKbd/1' -p38742 -S'setFocusFromKbd(${1:This}) $2' -p38743 -tp38744 -a(S'setFont/2' -p38745 -S'setFont(${1:This}, ${2:Font}) $3' -p38746 -tp38747 -a(S'setForegroundColour/2' -p38748 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p38749 -tp38750 -a(S'setHelpText/2' -p38751 -S'setHelpText(${1:This}, ${2:Text}) $3' -p38752 -tp38753 -a(S'setId/2' -p38754 -S'setId(${1:This}, ${2:Winid}) $3' -p38755 -tp38756 -a(S'setImageList/3' -p38757 -S'setImageList(${1:This}, ${2:ImageList}, ${3:Which}) $4' -p38758 -tp38759 -a(S'setItem/2' -p38760 -S'setItem(${1:This}, ${2:Info}) $3' -p38761 -tp38762 -a(S'setItem/4' -p38763 -S'setItem(${1:This}, ${2:Index}, ${3:Col}, ${4:Label}) $5' -p38764 -tp38765 -a(S'setItem/5' -p38766 -S'setItem(${1:This}, ${2:Index}, ${3:Col}, ${4:Label}, ${5:Param5}) $6' -p38767 -tp38768 -a(S'setItemBackgroundColour/3' -p38769 -S'setItemBackgroundColour(${1:This}, ${2:Item}, ${3:Col}) $4' -p38770 -tp38771 -a(S'setItemColumnImage/4' -p38772 -S'setItemColumnImage(${1:This}, ${2:Item}, ${3:Column}, ${4:Image}) $5' -p38773 -tp38774 -a(S'setItemCount/2' -p38775 -S'setItemCount(${1:This}, ${2:Count}) $3' -p38776 -tp38777 -a(S'setItemData/3' -p38778 -S'setItemData(${1:This}, ${2:Item}, ${3:Data}) $4' -p38779 -tp38780 -a(S'setItemFont/3' -p38781 -S'setItemFont(${1:This}, ${2:Item}, ${3:F}) $4' -p38782 -tp38783 -a(S'setItemImage/3' -p38784 -S'setItemImage(${1:This}, ${2:Item}, ${3:Image}) $4' -p38785 -tp38786 -a(S'setItemImage/4' -p38787 -S'setItemImage(${1:This}, ${2:Item}, ${3:Image}, ${4:Param4}) $5' -p38788 -tp38789 -a(S'setItemPosition/3' -p38790 -S'setItemPosition(${1:This}, ${2:Item}, ${3:Pos}) $4' -p38791 -tp38792 -a(S'setItemState/4' -p38793 -S'setItemState(${1:This}, ${2:Item}, ${3:State}, ${4:StateMask}) $5' -p38794 -tp38795 -a(S'setItemText/3' -p38796 -S'setItemText(${1:This}, ${2:Item}, ${3:Str}) $4' -p38797 -tp38798 -a(S'setItemTextColour/3' -p38799 -S'setItemTextColour(${1:This}, ${2:Item}, ${3:Col}) $4' -p38800 -tp38801 -a(S'setLabel/2' -p38802 -S'setLabel(${1:This}, ${2:Label}) $3' -p38803 -tp38804 -a(S'setMaxSize/2' -p38805 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p38806 -tp38807 -a(S'setMinSize/2' -p38808 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p38809 -tp38810 -a(S'setName/2' -p38811 -S'setName(${1:This}, ${2:Name}) $3' -p38812 -tp38813 -a(S'setOwnBackgroundColour/2' -p38814 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p38815 -tp38816 -a(S'setOwnFont/2' -p38817 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p38818 -tp38819 -a(S'setOwnForegroundColour/2' -p38820 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p38821 -tp38822 -a(S'setPalette/2' -p38823 -S'setPalette(${1:This}, ${2:Pal}) $3' -p38824 -tp38825 -a(S'setScrollPos/3' -p38826 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p38827 -tp38828 -a(S'setScrollPos/4' -p38829 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p38830 -tp38831 -a(S'setScrollbar/5' -p38832 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p38833 -tp38834 -a(S'setScrollbar/6' -p38835 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p38836 -tp38837 -a(S'setSingleStyle/2' -p38838 -S'setSingleStyle(${1:This}, ${2:Style}) $3' -p38839 -tp38840 -a(S'setSingleStyle/3' -p38841 -S'setSingleStyle(${1:This}, ${2:Style}, ${3:Param3}) $4' -p38842 -tp38843 -a(S'setSize/2' -p38844 -S'setSize(${1:This}, ${2:Rect}) $3' -p38845 -tp38846 -a(S'setSize/3' -p38847 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p38848 -tp38849 -a(S'setSize/5' -p38850 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p38851 -tp38852 -a(S'setSize/6' -p38853 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p38854 -tp38855 -a(S'setSizeHints/2' -p38856 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p38857 -tp38858 -a(S'setSizeHints/3' -p38859 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p38860 -tp38861 -a(S'setSizeHints/4' -p38862 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p38863 -tp38864 -a(S'setSizer/2' -p38865 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p38866 -tp38867 -a(S'setSizer/3' -p38868 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p38869 -tp38870 -a(S'setSizerAndFit/2' -p38871 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p38872 -tp38873 -a(S'setSizerAndFit/3' -p38874 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p38875 -tp38876 -a(S'setTextColour/2' -p38877 -S'setTextColour(${1:This}, ${2:Col}) $3' -p38878 -tp38879 -a(S'setThemeEnabled/2' -p38880 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p38881 -tp38882 -a(S'setToolTip/2' -p38883 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p38884 -tp38885 -a(S'setVirtualSize/2' -p38886 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p38887 -tp38888 -a(S'setVirtualSize/3' -p38889 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p38890 -tp38891 -a(S'setVirtualSizeHints/2' -p38892 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p38893 -tp38894 -a(S'setVirtualSizeHints/3' -p38895 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p38896 -tp38897 -a(S'setVirtualSizeHints/4' -p38898 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p38899 -tp38900 -a(S'setWindowStyle/2' -p38901 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p38902 -tp38903 -a(S'setWindowStyleFlag/2' -p38904 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p38905 -tp38906 -a(S'setWindowVariant/2' -p38907 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p38908 -tp38909 -a(S'shouldInheritColours/1' -p38910 -S'shouldInheritColours(${1:This}) $2' -p38911 -tp38912 -a(S'show/1' -p38913 -S'show(${1:This}) $2' -p38914 -tp38915 -a(S'show/2' -p38916 -S'show(${1:This}, ${2:Options}) $3' -p38917 -tp38918 -a(S'sortItems/2' -p38919 -S'sortItems() $1' -p38920 -tp38921 -a(S'thaw/1' -p38922 -S'thaw(${1:This}) $2' -p38923 -tp38924 -a(S'transferDataFromWindow/1' -p38925 -S'transferDataFromWindow(${1:This}) $2' -p38926 -tp38927 -a(S'transferDataToWindow/1' -p38928 -S'transferDataToWindow(${1:This}) $2' -p38929 -tp38930 -a(S'update/1' -p38931 -S'update(${1:This}) $2' -p38932 -tp38933 -a(S'updateWindowUI/1' -p38934 -S'updateWindowUI(${1:This}) $2' -p38935 -tp38936 -a(S'updateWindowUI/2' -p38937 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p38938 -tp38939 -a(S'validate/1' -p38940 -S'validate(${1:This}) $2' -p38941 -tp38942 -a(S'warpPointer/3' -p38943 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p38944 -tp38945 -asS'erl2html2' -p38946 -(lp38947 -(S'convert/2' -p38948 -S'convert(${1:File}, ${2:Dest}) $3' -p38949 -tp38950 -a(S'convert/3' -p38951 -S'convert(${1:File}, ${2:Dest}, ${3:Header}) $4' -p38952 -tp38953 -asS'dbg_wx_break_win' -p38954 -(lp38955 -(S'create_win/5' -p38956 -S'create_win(${1:Parent}, ${2:Pos}, ${3:Type}, ${4:Mod}, ${5:Line}) $6' -p38957 -tp38958 -a(S'handle_event/2' -p38959 -S'handle_event(${1:Param1}, ${2:Param2}) $3' -p38960 -tp38961 -a(S'update_functions/2' -p38962 -S'update_functions(${1:WinInfo}, ${2:Funcs}) $3' -p38963 -tp38964 -asS'odbc_sup' -p38965 -(lp38966 -(S'init/1' -p38967 -S'init(${1:Param1}) $2' -p38968 -tp38969 -asS'observer_pro_wx' -p38970 -(lp38971 -(S'code_change/3' -p38972 -S'code_change(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p38973 -tp38974 -a(S'handle_call/3' -p38975 -S'handle_call(${1:Msg}, ${2:Param2}, ${3:State}) $4' -p38976 -tp38977 -a(S'handle_cast/2' -p38978 -S'handle_cast(${1:Msg}, ${2:State}) $3' -p38979 -tp38980 -a(S'handle_event/2' -p38981 -S'handle_event(${1:Event}, ${2:State}) $3' -p38982 -tp38983 -a(S'handle_info/2' -p38984 -S'handle_info(${1:Info}, ${2:State}) $3' -p38985 -tp38986 -a(S'init/1' -p38987 -S'init(${1:Param1}) $2' -p38988 -tp38989 -a(S'start_link/2' -p38990 -S'start_link(${1:Notebook}, ${2:Parent}) $3' -p38991 -tp38992 -a(S'terminate/2' -p38993 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p38994 -tp38995 -asS'misc_supp' -p38996 -(lp38997 -(S'assq/2' -p38998 -S'assq(${1:Key}, ${2:List}) $3' -p38999 -tp39000 -a(S'format_pdict/3' -p39001 -S'format_pdict(${1:Param1}, ${2:PDict}, ${3:Exclude}) $4' -p39002 -tp39003 -a(S'format_tuples/2' -p39004 -S'format_tuples(${1:KeyValues}, ${2:Exclude}) $3' -p39005 -tp39006 -a(S'is_string/1' -p39007 -S'is_string(${1:X}) $2' -p39008 -tp39009 -a(S'multi_map/2' -p39010 -S'multi_map(${1:Func}, ${2:ListOfLists}) $3' -p39011 -tp39012 -a(S'passq/2' -p39013 -S'passq(${1:Key}, ${2:List}) $3' -p39014 -tp39015 -asS'oe_CosFileTransfer' -p39016 -(lp39017 -(S'oe_dependency/0' -p39018 -S'oe_dependency() $1' -p39019 -tp39020 -a(S'oe_get_module/5' -p39021 -S'oe_get_module(${1:OE_IFR}, ${2:OE_Parent}, ${3:ID}, ${4:Name}, ${5:Version}) $6' -p39022 -tp39023 -a(S'oe_register/0' -p39024 -S'oe_register() $1' -p39025 -tp39026 -a(S'oe_unregister/0' -p39027 -S'oe_unregister() $1' -p39028 -tp39029 -asS'yeccscan' -p39030 -(lp39031 -(S'scan/1' -p39032 -S'scan(${1:Inport}) $2' -p39033 -tp39034 -a(S'scan/3' -p39035 -S'scan(${1:Inport}, ${2:Prompt}, ${3:Line1}) $4' -p39036 -tp39037 -asS'diameter_make' -p39038 -(lp39039 -(S'codec/1' -p39040 -S'codec(${1:File}) $2' -p39041 -tp39042 -a(S'codec/2' -p39043 -S'codec(${1:Path}, ${2:Opts}) $3' -p39044 -tp39045 -a(S'dict/1' -p39046 -S'dict(${1:File}) $2' -p39047 -tp39048 -a(S'dict/2' -p39049 -S'dict(${1:Path}, ${2:Opts}) $3' -p39050 -tp39051 -a(S'format/1' -p39052 -S'format(${1:Dict}) $2' -p39053 -tp39054 -a(S'reformat/1' -p39055 -S'reformat(${1:File}) $2' -p39056 -tp39057 -asS'wxPickerBase' -p39058 -(lp39059 -(S'cacheBestSize/2' -p39060 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p39061 -tp39062 -a(S'captureMouse/1' -p39063 -S'captureMouse(${1:This}) $2' -p39064 -tp39065 -a(S'center/1' -p39066 -S'center(${1:This}) $2' -p39067 -tp39068 -a(S'center/2' -p39069 -S'center(${1:This}, ${2:Options}) $3' -p39070 -tp39071 -a(S'centerOnParent/1' -p39072 -S'centerOnParent(${1:This}) $2' -p39073 -tp39074 -a(S'centerOnParent/2' -p39075 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p39076 -tp39077 -a(S'centre/1' -p39078 -S'centre(${1:This}) $2' -p39079 -tp39080 -a(S'centre/2' -p39081 -S'centre(${1:This}, ${2:Options}) $3' -p39082 -tp39083 -a(S'centreOnParent/1' -p39084 -S'centreOnParent(${1:This}) $2' -p39085 -tp39086 -a(S'centreOnParent/2' -p39087 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p39088 -tp39089 -a(S'clearBackground/1' -p39090 -S'clearBackground(${1:This}) $2' -p39091 -tp39092 -a(S'clientToScreen/2' -p39093 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p39094 -tp39095 -a(S'clientToScreen/3' -p39096 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p39097 -tp39098 -a(S'close/1' -p39099 -S'close(${1:This}) $2' -p39100 -tp39101 -a(S'close/2' -p39102 -S'close(${1:This}, ${2:Options}) $3' -p39103 -tp39104 -a(S'connect/2' -p39105 -S'connect(${1:This}, ${2:EventType}) $3' -p39106 -tp39107 -a(S'connect/3' -p39108 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p39109 -tp39110 -a(S'convertDialogToPixels/2' -p39111 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p39112 -tp39113 -a(S'convertPixelsToDialog/2' -p39114 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p39115 -tp39116 -a(S'destroyChildren/1' -p39117 -S'destroyChildren(${1:This}) $2' -p39118 -tp39119 -a(S'disable/1' -p39120 -S'disable(${1:This}) $2' -p39121 -tp39122 -a(S'disconnect/1' -p39123 -S'disconnect(${1:This}) $2' -p39124 -tp39125 -a(S'disconnect/2' -p39126 -S'disconnect(${1:This}, ${2:EventType}) $3' -p39127 -tp39128 -a(S'disconnect/3' -p39129 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p39130 -tp39131 -a(S'enable/1' -p39132 -S'enable(${1:This}) $2' -p39133 -tp39134 -a(S'enable/2' -p39135 -S'enable(${1:This}, ${2:Options}) $3' -p39136 -tp39137 -a(S'findWindow/2' -p39138 -S'findWindow(${1:This}, ${2:Winid}) $3' -p39139 -tp39140 -a(S'fit/1' -p39141 -S'fit(${1:This}) $2' -p39142 -tp39143 -a(S'fitInside/1' -p39144 -S'fitInside(${1:This}) $2' -p39145 -tp39146 -a(S'freeze/1' -p39147 -S'freeze(${1:This}) $2' -p39148 -tp39149 -a(S'getAcceleratorTable/1' -p39150 -S'getAcceleratorTable(${1:This}) $2' -p39151 -tp39152 -a(S'getBackgroundColour/1' -p39153 -S'getBackgroundColour(${1:This}) $2' -p39154 -tp39155 -a(S'getBackgroundStyle/1' -p39156 -S'getBackgroundStyle(${1:This}) $2' -p39157 -tp39158 -a(S'getBestSize/1' -p39159 -S'getBestSize(${1:This}) $2' -p39160 -tp39161 -a(S'getCaret/1' -p39162 -S'getCaret(${1:This}) $2' -p39163 -tp39164 -a(S'getCharHeight/1' -p39165 -S'getCharHeight(${1:This}) $2' -p39166 -tp39167 -a(S'getCharWidth/1' -p39168 -S'getCharWidth(${1:This}) $2' -p39169 -tp39170 -a(S'getChildren/1' -p39171 -S'getChildren(${1:This}) $2' -p39172 -tp39173 -a(S'getClientSize/1' -p39174 -S'getClientSize(${1:This}) $2' -p39175 -tp39176 -a(S'getContainingSizer/1' -p39177 -S'getContainingSizer(${1:This}) $2' -p39178 -tp39179 -a(S'getCursor/1' -p39180 -S'getCursor(${1:This}) $2' -p39181 -tp39182 -a(S'getDropTarget/1' -p39183 -S'getDropTarget(${1:This}) $2' -p39184 -tp39185 -a(S'getEventHandler/1' -p39186 -S'getEventHandler(${1:This}) $2' -p39187 -tp39188 -a(S'getExtraStyle/1' -p39189 -S'getExtraStyle(${1:This}) $2' -p39190 -tp39191 -a(S'getFont/1' -p39192 -S'getFont(${1:This}) $2' -p39193 -tp39194 -a(S'getForegroundColour/1' -p39195 -S'getForegroundColour(${1:This}) $2' -p39196 -tp39197 -a(S'getGrandParent/1' -p39198 -S'getGrandParent(${1:This}) $2' -p39199 -tp39200 -a(S'getHandle/1' -p39201 -S'getHandle(${1:This}) $2' -p39202 -tp39203 -a(S'getHelpText/1' -p39204 -S'getHelpText(${1:This}) $2' -p39205 -tp39206 -a(S'getId/1' -p39207 -S'getId(${1:This}) $2' -p39208 -tp39209 -a(S'getInternalMargin/1' -p39210 -S'getInternalMargin(${1:This}) $2' -p39211 -tp39212 -a(S'getLabel/1' -p39213 -S'getLabel(${1:This}) $2' -p39214 -tp39215 -a(S'getMaxSize/1' -p39216 -S'getMaxSize(${1:This}) $2' -p39217 -tp39218 -a(S'getMinSize/1' -p39219 -S'getMinSize(${1:This}) $2' -p39220 -tp39221 -a(S'getName/1' -p39222 -S'getName(${1:This}) $2' -p39223 -tp39224 -a(S'getParent/1' -p39225 -S'getParent(${1:This}) $2' -p39226 -tp39227 -a(S'getPickerCtrlProportion/1' -p39228 -S'getPickerCtrlProportion(${1:This}) $2' -p39229 -tp39230 -a(S'getPosition/1' -p39231 -S'getPosition(${1:This}) $2' -p39232 -tp39233 -a(S'getRect/1' -p39234 -S'getRect(${1:This}) $2' -p39235 -tp39236 -a(S'getScreenPosition/1' -p39237 -S'getScreenPosition(${1:This}) $2' -p39238 -tp39239 -a(S'getScreenRect/1' -p39240 -S'getScreenRect(${1:This}) $2' -p39241 -tp39242 -a(S'getScrollPos/2' -p39243 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p39244 -tp39245 -a(S'getScrollRange/2' -p39246 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p39247 -tp39248 -a(S'getScrollThumb/2' -p39249 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p39250 -tp39251 -a(S'getSize/1' -p39252 -S'getSize(${1:This}) $2' -p39253 -tp39254 -a(S'getSizer/1' -p39255 -S'getSizer(${1:This}) $2' -p39256 -tp39257 -a(S'getTextCtrl/1' -p39258 -S'getTextCtrl(${1:This}) $2' -p39259 -tp39260 -a(S'getTextCtrlProportion/1' -p39261 -S'getTextCtrlProportion(${1:This}) $2' -p39262 -tp39263 -a(S'getTextExtent/2' -p39264 -S'getTextExtent(${1:This}, ${2:String}) $3' -p39265 -tp39266 -a(S'getTextExtent/3' -p39267 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p39268 -tp39269 -a(S'getToolTip/1' -p39270 -S'getToolTip(${1:This}) $2' -p39271 -tp39272 -a(S'getUpdateRegion/1' -p39273 -S'getUpdateRegion(${1:This}) $2' -p39274 -tp39275 -a(S'getVirtualSize/1' -p39276 -S'getVirtualSize(${1:This}) $2' -p39277 -tp39278 -a(S'getWindowStyleFlag/1' -p39279 -S'getWindowStyleFlag(${1:This}) $2' -p39280 -tp39281 -a(S'getWindowVariant/1' -p39282 -S'getWindowVariant(${1:This}) $2' -p39283 -tp39284 -a(S'hasCapture/1' -p39285 -S'hasCapture(${1:This}) $2' -p39286 -tp39287 -a(S'hasScrollbar/2' -p39288 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p39289 -tp39290 -a(S'hasTextCtrl/1' -p39291 -S'hasTextCtrl(${1:This}) $2' -p39292 -tp39293 -a(S'hasTransparentBackground/1' -p39294 -S'hasTransparentBackground(${1:This}) $2' -p39295 -tp39296 -a(S'hide/1' -p39297 -S'hide(${1:This}) $2' -p39298 -tp39299 -a(S'inheritAttributes/1' -p39300 -S'inheritAttributes(${1:This}) $2' -p39301 -tp39302 -a(S'initDialog/1' -p39303 -S'initDialog(${1:This}) $2' -p39304 -tp39305 -a(S'invalidateBestSize/1' -p39306 -S'invalidateBestSize(${1:This}) $2' -p39307 -tp39308 -a(S'isEnabled/1' -p39309 -S'isEnabled(${1:This}) $2' -p39310 -tp39311 -a(S'isExposed/2' -p39312 -S'isExposed(${1:This}, ${2:Pt}) $3' -p39313 -tp39314 -a(S'isExposed/3' -p39315 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p39316 -tp39317 -a(S'isExposed/5' -p39318 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p39319 -tp39320 -a(S'isPickerCtrlGrowable/1' -p39321 -S'isPickerCtrlGrowable(${1:This}) $2' -p39322 -tp39323 -a(S'isRetained/1' -p39324 -S'isRetained(${1:This}) $2' -p39325 -tp39326 -a(S'isShown/1' -p39327 -S'isShown(${1:This}) $2' -p39328 -tp39329 -a(S'isTextCtrlGrowable/1' -p39330 -S'isTextCtrlGrowable(${1:This}) $2' -p39331 -tp39332 -a(S'isTopLevel/1' -p39333 -S'isTopLevel(${1:This}) $2' -p39334 -tp39335 -a(S'layout/1' -p39336 -S'layout(${1:This}) $2' -p39337 -tp39338 -a(S'lineDown/1' -p39339 -S'lineDown(${1:This}) $2' -p39340 -tp39341 -a(S'lineUp/1' -p39342 -S'lineUp(${1:This}) $2' -p39343 -tp39344 -a(S'lower/1' -p39345 -S'lower(${1:This}) $2' -p39346 -tp39347 -a(S'makeModal/1' -p39348 -S'makeModal(${1:This}) $2' -p39349 -tp39350 -a(S'makeModal/2' -p39351 -S'makeModal(${1:This}, ${2:Options}) $3' -p39352 -tp39353 -a(S'move/2' -p39354 -S'move(${1:This}, ${2:Pt}) $3' -p39355 -tp39356 -a(S'move/3' -p39357 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p39358 -tp39359 -a(S'move/4' -p39360 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p39361 -tp39362 -a(S'moveAfterInTabOrder/2' -p39363 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p39364 -tp39365 -a(S'moveBeforeInTabOrder/2' -p39366 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p39367 -tp39368 -a(S'navigate/1' -p39369 -S'navigate(${1:This}) $2' -p39370 -tp39371 -a(S'navigate/2' -p39372 -S'navigate(${1:This}, ${2:Options}) $3' -p39373 -tp39374 -a(S'pageDown/1' -p39375 -S'pageDown(${1:This}) $2' -p39376 -tp39377 -a(S'pageUp/1' -p39378 -S'pageUp(${1:This}) $2' -p39379 -tp39380 -a(S'parent_class/1' -p39381 -S'parent_class(${1:Param1}) $2' -p39382 -tp39383 -a(S'popEventHandler/1' -p39384 -S'popEventHandler(${1:This}) $2' -p39385 -tp39386 -a(S'popEventHandler/2' -p39387 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p39388 -tp39389 -a(S'popupMenu/2' -p39390 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p39391 -tp39392 -a(S'popupMenu/3' -p39393 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p39394 -tp39395 -a(S'popupMenu/4' -p39396 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p39397 -tp39398 -a(S'raise/1' -p39399 -S'raise(${1:This}) $2' -p39400 -tp39401 -a(S'refresh/1' -p39402 -S'refresh(${1:This}) $2' -p39403 -tp39404 -a(S'refresh/2' -p39405 -S'refresh(${1:This}, ${2:Options}) $3' -p39406 -tp39407 -a(S'refreshRect/2' -p39408 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p39409 -tp39410 -a(S'refreshRect/3' -p39411 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p39412 -tp39413 -a(S'releaseMouse/1' -p39414 -S'releaseMouse(${1:This}) $2' -p39415 -tp39416 -a(S'removeChild/2' -p39417 -S'removeChild(${1:This}, ${2:Child}) $3' -p39418 -tp39419 -a(S'reparent/2' -p39420 -S'reparent(${1:This}, ${2:NewParent}) $3' -p39421 -tp39422 -a(S'screenToClient/1' -p39423 -S'screenToClient(${1:This}) $2' -p39424 -tp39425 -a(S'screenToClient/2' -p39426 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p39427 -tp39428 -a(S'scrollLines/2' -p39429 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p39430 -tp39431 -a(S'scrollPages/2' -p39432 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p39433 -tp39434 -a(S'scrollWindow/3' -p39435 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p39436 -tp39437 -a(S'scrollWindow/4' -p39438 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p39439 -tp39440 -a(S'setAcceleratorTable/2' -p39441 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p39442 -tp39443 -a(S'setAutoLayout/2' -p39444 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p39445 -tp39446 -a(S'setBackgroundColour/2' -p39447 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p39448 -tp39449 -a(S'setBackgroundStyle/2' -p39450 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p39451 -tp39452 -a(S'setCaret/2' -p39453 -S'setCaret(${1:This}, ${2:Caret}) $3' -p39454 -tp39455 -a(S'setClientSize/2' -p39456 -S'setClientSize(${1:This}, ${2:Size}) $3' -p39457 -tp39458 -a(S'setClientSize/3' -p39459 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p39460 -tp39461 -a(S'setContainingSizer/2' -p39462 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p39463 -tp39464 -a(S'setCursor/2' -p39465 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p39466 -tp39467 -a(S'setDropTarget/2' -p39468 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p39469 -tp39470 -a(S'setExtraStyle/2' -p39471 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p39472 -tp39473 -a(S'setFocus/1' -p39474 -S'setFocus(${1:This}) $2' -p39475 -tp39476 -a(S'setFocusFromKbd/1' -p39477 -S'setFocusFromKbd(${1:This}) $2' -p39478 -tp39479 -a(S'setFont/2' -p39480 -S'setFont(${1:This}, ${2:Font}) $3' -p39481 -tp39482 -a(S'setForegroundColour/2' -p39483 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p39484 -tp39485 -a(S'setHelpText/2' -p39486 -S'setHelpText(${1:This}, ${2:Text}) $3' -p39487 -tp39488 -a(S'setId/2' -p39489 -S'setId(${1:This}, ${2:Winid}) $3' -p39490 -tp39491 -a(S'setInternalMargin/2' -p39492 -S'setInternalMargin(${1:This}, ${2:Newmargin}) $3' -p39493 -tp39494 -a(S'setLabel/2' -p39495 -S'setLabel(${1:This}, ${2:Label}) $3' -p39496 -tp39497 -a(S'setMaxSize/2' -p39498 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p39499 -tp39500 -a(S'setMinSize/2' -p39501 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p39502 -tp39503 -a(S'setName/2' -p39504 -S'setName(${1:This}, ${2:Name}) $3' -p39505 -tp39506 -a(S'setOwnBackgroundColour/2' -p39507 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p39508 -tp39509 -a(S'setOwnFont/2' -p39510 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p39511 -tp39512 -a(S'setOwnForegroundColour/2' -p39513 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p39514 -tp39515 -a(S'setPalette/2' -p39516 -S'setPalette(${1:This}, ${2:Pal}) $3' -p39517 -tp39518 -a(S'setPickerCtrlGrowable/1' -p39519 -S'setPickerCtrlGrowable(${1:This}) $2' -p39520 -tp39521 -a(S'setPickerCtrlGrowable/2' -p39522 -S'setPickerCtrlGrowable(${1:This}, ${2:Param2}) $3' -p39523 -tp39524 -a(S'setPickerCtrlProportion/2' -p39525 -S'setPickerCtrlProportion(${1:This}, ${2:Prop}) $3' -p39526 -tp39527 -a(S'setScrollPos/3' -p39528 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p39529 -tp39530 -a(S'setScrollPos/4' -p39531 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p39532 -tp39533 -a(S'setScrollbar/5' -p39534 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p39535 -tp39536 -a(S'setScrollbar/6' -p39537 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p39538 -tp39539 -a(S'setSize/2' -p39540 -S'setSize(${1:This}, ${2:Rect}) $3' -p39541 -tp39542 -a(S'setSize/3' -p39543 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p39544 -tp39545 -a(S'setSize/5' -p39546 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p39547 -tp39548 -a(S'setSize/6' -p39549 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p39550 -tp39551 -a(S'setSizeHints/2' -p39552 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p39553 -tp39554 -a(S'setSizeHints/3' -p39555 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p39556 -tp39557 -a(S'setSizeHints/4' -p39558 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p39559 -tp39560 -a(S'setSizer/2' -p39561 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p39562 -tp39563 -a(S'setSizer/3' -p39564 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p39565 -tp39566 -a(S'setSizerAndFit/2' -p39567 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p39568 -tp39569 -a(S'setSizerAndFit/3' -p39570 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p39571 -tp39572 -a(S'setTextCtrlGrowable/1' -p39573 -S'setTextCtrlGrowable(${1:This}) $2' -p39574 -tp39575 -a(S'setTextCtrlGrowable/2' -p39576 -S'setTextCtrlGrowable(${1:This}, ${2:Param2}) $3' -p39577 -tp39578 -a(S'setTextCtrlProportion/2' -p39579 -S'setTextCtrlProportion(${1:This}, ${2:Prop}) $3' -p39580 -tp39581 -a(S'setThemeEnabled/2' -p39582 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p39583 -tp39584 -a(S'setToolTip/2' -p39585 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p39586 -tp39587 -a(S'setVirtualSize/2' -p39588 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p39589 -tp39590 -a(S'setVirtualSize/3' -p39591 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p39592 -tp39593 -a(S'setVirtualSizeHints/2' -p39594 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p39595 -tp39596 -a(S'setVirtualSizeHints/3' -p39597 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p39598 -tp39599 -a(S'setVirtualSizeHints/4' -p39600 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p39601 -tp39602 -a(S'setWindowStyle/2' -p39603 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p39604 -tp39605 -a(S'setWindowStyleFlag/2' -p39606 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p39607 -tp39608 -a(S'setWindowVariant/2' -p39609 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p39610 -tp39611 -a(S'shouldInheritColours/1' -p39612 -S'shouldInheritColours(${1:This}) $2' -p39613 -tp39614 -a(S'show/1' -p39615 -S'show(${1:This}) $2' -p39616 -tp39617 -a(S'show/2' -p39618 -S'show(${1:This}, ${2:Options}) $3' -p39619 -tp39620 -a(S'thaw/1' -p39621 -S'thaw(${1:This}) $2' -p39622 -tp39623 -a(S'transferDataFromWindow/1' -p39624 -S'transferDataFromWindow(${1:This}) $2' -p39625 -tp39626 -a(S'transferDataToWindow/1' -p39627 -S'transferDataToWindow(${1:This}) $2' -p39628 -tp39629 -a(S'update/1' -p39630 -S'update(${1:This}) $2' -p39631 -tp39632 -a(S'updateWindowUI/1' -p39633 -S'updateWindowUI(${1:This}) $2' -p39634 -tp39635 -a(S'updateWindowUI/2' -p39636 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p39637 -tp39638 -a(S'validate/1' -p39639 -S'validate(${1:This}) $2' -p39640 -tp39641 -a(S'warpPointer/3' -p39642 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p39643 -tp39644 -asS'corba' -p39645 -(lp39646 -(S'add_FTGroup_component/4' -p39647 -S'add_FTGroup_component(${1:Param1}, ${2:FTDomain}, ${3:GroupID}, ${4:GroupVer}) $5' -p39648 -tp39649 -a(S'add_FTPrimary_component/1' -p39650 -S'add_FTPrimary_component(${1:Obj}) $2' -p39651 -tp39652 -a(S'add_alternate_iiop_address/3' -p39653 -S'add_alternate_iiop_address(${1:Obj}, ${2:Host}, ${3:Port}) $4' -p39654 -tp39655 -a(S'add_initial_service/2' -p39656 -S'add_initial_service(${1:ObjectId}, ${2:ObjectRef}) $3' -p39657 -tp39658 -a(S'call/4' -p39659 -S'call(${1:Obj}, ${2:Func}, ${3:Args}, ${4:TypesOrMod}) $5' -p39660 -tp39661 -a(S'call/5' -p39662 -S'call(${1:Obj}, ${2:Func}, ${3:Args}, ${4:TypesOrMod}, ${5:Extra}) $6' -p39663 -tp39664 -a(S'call_internal/10' -p39665 -S'call_internal() $1' -p39666 -tp39667 -a(S'call_relay/3' -p39668 -S'call_relay(${1:Pid}, ${2:Data}, ${3:Timeout}) $4' -p39669 -tp39670 -a(S'cast/4' -p39671 -S'cast(${1:Obj}, ${2:Func}, ${3:Args}, ${4:TypesOrMod}) $5' -p39672 -tp39673 -a(S'cast/5' -p39674 -S'cast(${1:Obj}, ${2:Func}, ${3:Args}, ${4:TypesOrMod}, ${5:Param5}) $6' -p39675 -tp39676 -a(S'cast_relay/2' -p39677 -S'cast_relay(${1:Pid}, ${2:Data}) $3' -p39678 -tp39679 -a(S'common_create/5' -p39680 -S'common_create(${1:Module}, ${2:Param2}, ${3:Env}, ${4:Options}, ${5:StartMethod}) $6' -p39681 -tp39682 -a(S'create/2' -p39683 -S'create(${1:Module}, ${2:TypeID}) $3' -p39684 -tp39685 -a(S'create/3' -p39686 -S'create(${1:Module}, ${2:TypeID}, ${3:Env}) $4' -p39687 -tp39688 -a(S'create/4' -p39689 -S'create(${1:Module}, ${2:TypeID}, ${3:Env}, ${4:Options}) $5' -p39690 -tp39691 -a(S'create_link/2' -p39692 -S'create_link(${1:Module}, ${2:TypeID}) $3' -p39693 -tp39694 -a(S'create_link/3' -p39695 -S'create_link(${1:Module}, ${2:TypeID}, ${3:Env}) $4' -p39696 -tp39697 -a(S'create_link/4' -p39698 -S'create_link(${1:Module}, ${2:TypeID}, ${3:Env}, ${4:Options}) $5' -p39699 -tp39700 -a(S'create_link_remote/3' -p39701 -S'create_link_remote(${1:Node}, ${2:Module}, ${3:TypeID}) $4' -p39702 -tp39703 -a(S'create_link_remote/5' -p39704 -S'create_link_remote(${1:Node}, ${2:Module}, ${3:TypeID}, ${4:Env}, ${5:Options}) $6' -p39705 -tp39706 -a(S'create_nil_objref/0' -p39707 -S'create_nil_objref() $1' -p39708 -tp39709 -a(S'create_remote/3' -p39710 -S'create_remote(${1:Node}, ${2:Module}, ${3:TypeID}) $4' -p39711 -tp39712 -a(S'create_remote/5' -p39713 -S'create_remote(${1:Node}, ${2:Module}, ${3:TypeID}, ${4:Env}, ${5:Options}) $6' -p39714 -tp39715 -a(S'create_subobject_key/2' -p39716 -S'create_subobject_key(${1:Objkey}, ${2:B}) $3' -p39717 -tp39718 -a(S'dispose/1' -p39719 -S'dispose(${1:Obj}) $2' -p39720 -tp39721 -a(S'get_implicit_context/1' -p39722 -S'get_implicit_context(${1:Ctx}) $2' -p39723 -tp39724 -a(S'get_pid/1' -p39725 -S'get_pid(${1:Objkey}) $2' -p39726 -tp39727 -a(S'get_subobject_key/1' -p39728 -S'get_subobject_key(${1:Objkey}) $2' -p39729 -tp39730 -a(S'handle_call/10' -p39731 -S'handle_call() $1' -p39732 -tp39733 -a(S'handle_call/7' -p39734 -S'handle_call(${1:M}, ${2:F}, ${3:A}, ${4:Param4}, ${5:Ctx}, ${6:This}, ${7:From}) $8' -p39735 -tp39736 -a(S'handle_cast/6' -p39737 -S'handle_cast(${1:M}, ${2:F}, ${3:A}, ${4:Param4}, ${5:Ctx}, ${6:This}) $7' -p39738 -tp39739 -a(S'handle_cast/9' -p39740 -S'handle_cast(${1:M}, ${2:F}, ${3:A}, ${4:Param4}, ${5:Ctx}, ${6:This}, ${7:PreData}, ${8:PostData}, ${9:Stub}) $10' -p39741 -tp39742 -a(S'handle_code_change/4' -p39743 -S'handle_code_change(${1:M}, ${2:OldVsn}, ${3:Param3}, ${4:Extra}) $5' -p39744 -tp39745 -a(S'handle_info/3' -p39746 -S'handle_info(${1:M}, ${2:Info}, ${3:Param3}) $4' -p39747 -tp39748 -a(S'handle_init/2' -p39749 -S'handle_init(${1:M}, ${2:Param2}) $3' -p39750 -tp39751 -a(S'handle_terminate/3' -p39752 -S'handle_terminate(${1:M}, ${2:Reason}, ${3:Param3}) $4' -p39753 -tp39754 -a(S'list_initial_services/0' -p39755 -S'list_initial_services() $1' -p39756 -tp39757 -a(S'list_initial_services_remote/1' -p39758 -S'list_initial_services_remote(${1:Address}) $2' -p39759 -tp39760 -a(S'list_initial_services_remote/2' -p39761 -S'list_initial_services_remote(${1:Param1}, ${2:Ctx}) $3' -p39762 -tp39763 -a(S'locate/1' -p39764 -S'locate(${1:Obj}) $2' -p39765 -tp39766 -a(S'locate/2' -p39767 -S'locate(${1:Obj}, ${2:Timeout}) $3' -p39768 -tp39769 -a(S'locate/3' -p39770 -S'locate(${1:Obj}, ${2:Timeout}, ${3:Ctx}) $4' -p39771 -tp39772 -a(S'mk_light_objkey/2' -p39773 -S'mk_light_objkey(${1:Mod}, ${2:RegName}) $3' -p39774 -tp39775 -a(S'mk_objkey/4' -p39776 -S'mk_objkey(${1:Mod}, ${2:Pid}, ${3:RegName}, ${4:Persistent}) $5' -p39777 -tp39778 -a(S'object_to_string/1' -p39779 -S'object_to_string(${1:Object}) $2' -p39780 -tp39781 -a(S'object_to_string/2' -p39782 -S'object_to_string(${1:Object}, ${2:Hosts}) $3' -p39783 -tp39784 -a(S'object_to_string/3' -p39785 -S'object_to_string(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p39786 -tp39787 -a(S'object_to_string/4' -p39788 -S'object_to_string(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p39789 -tp39790 -a(S'objkey_to_string/1' -p39791 -S'objkey_to_string(${1:External_object_key}) $2' -p39792 -tp39793 -a(S'orb_init/1' -p39794 -S'orb_init(${1:KeyValueList}) $2' -p39795 -tp39796 -a(S'orb_init/2' -p39797 -S'orb_init(${1:KeyValueList}, ${2:Param2}) $3' -p39798 -tp39799 -a(S'print_object/1' -p39800 -S'print_object(${1:Object}) $2' -p39801 -tp39802 -a(S'print_object/2' -p39803 -S'print_object(${1:Object}, ${2:IoDevice}) $3' -p39804 -tp39805 -a(S'raise/1' -p39806 -S'raise(${1:E}) $2' -p39807 -tp39808 -a(S'raise_with_state/2' -p39809 -S'raise_with_state(${1:E}, ${2:State}) $3' -p39810 -tp39811 -a(S'remove_initial_service/1' -p39812 -S'remove_initial_service(${1:ObjectId}) $2' -p39813 -tp39814 -a(S'reply/2' -p39815 -S'reply(${1:To}, ${2:Reply}) $3' -p39816 -tp39817 -a(S'request_from_iiop/6' -p39818 -S'request_from_iiop(${1:Obj}, ${2:Param2}, ${3:Param3}, ${4:Param4}, ${5:Param5}, ${6:Param6}) $7' -p39819 -tp39820 -a(S'resolve_initial_references/1' -p39821 -S'resolve_initial_references(${1:ObjectId}) $2' -p39822 -tp39823 -a(S'resolve_initial_references/2' -p39824 -S'resolve_initial_references(${1:ObjectId}, ${2:Ctx}) $3' -p39825 -tp39826 -a(S'resolve_initial_references_local/1' -p39827 -S'resolve_initial_references_local(${1:ObjectId}) $2' -p39828 -tp39829 -a(S'resolve_initial_references_remote/2' -p39830 -S'resolve_initial_references_remote(${1:ObjectId}, ${2:Address}) $3' -p39831 -tp39832 -a(S'resolve_initial_references_remote/3' -p39833 -S'resolve_initial_references_remote(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p39834 -tp39835 -a(S'string_to_object/1' -p39836 -S'string_to_object(${1:IORString}) $2' -p39837 -tp39838 -a(S'string_to_object/2' -p39839 -S'string_to_object(${1:IORString}, ${2:Ctx}) $3' -p39840 -tp39841 -a(S'string_to_objkey/1' -p39842 -S'string_to_objkey(${1:String}) $2' -p39843 -tp39844 -a(S'string_to_objkey_local/1' -p39845 -S'string_to_objkey_local(${1:String}) $2' -p39846 -tp39847 -asS'diameter_gen_base_rfc3588' -p39848 -(lp39849 -(S'avp/3' -p39850 -S'avp(${1:T}, ${2:Data}, ${3:Param3}) $4' -p39851 -tp39852 -a(S'avp_arity/2' -p39853 -S'avp_arity(${1:Param1}, ${2:Param2}) $3' -p39854 -tp39855 -a(S'avp_header/1' -p39856 -S'avp_header(${1:Param1}) $2' -p39857 -tp39858 -a(S'avp_name/2' -p39859 -S'avp_name(${1:Param1}, ${2:Param2}) $3' -p39860 -tp39861 -a(S'decode_avps/2' -p39862 -S'decode_avps() $1' -p39863 -tp39864 -a(S'dict/0' -p39865 -S'dict() $1' -p39866 -tp39867 -a(S'empty_value/1' -p39868 -S'empty_value(${1:Name}) $2' -p39869 -tp39870 -a(S'encode_avps/2' -p39871 -S'encode_avps() $1' -p39872 -tp39873 -a(S'enumerated_avp/3' -p39874 -S'enumerated_avp(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p39875 -tp39876 -a(S'grouped_avp/3' -p39877 -S'grouped_avp() $1' -p39878 -tp39879 -a(S'id/0' -p39880 -S'id() $1' -p39881 -tp39882 -a(S'msg2rec/1' -p39883 -S'msg2rec(${1:Param1}) $2' -p39884 -tp39885 -a(S'msg_header/1' -p39886 -S'msg_header(${1:Param1}) $2' -p39887 -tp39888 -a(S'msg_name/2' -p39889 -S'msg_name(${1:Param1}, ${2:Param2}) $3' -p39890 -tp39891 -a(S'name/0' -p39892 -S'name() $1' -p39893 -tp39894 -a(S'name2rec/1' -p39895 -S'name2rec(${1:T}) $2' -p39896 -tp39897 -a(S'rec2msg/1' -p39898 -S'rec2msg(${1:Param1}) $2' -p39899 -tp39900 -a(S'vendor_id/0' -p39901 -S'vendor_id() $1' -p39902 -tp39903 -a(S'vendor_name/0' -p39904 -S'vendor_name() $1' -p39905 -tp39906 -asS'sys_core_dsetel' -p39907 -(lp39908 -(S'module/2' -p39909 -S'module(${1:M0}, ${2:Param2}) $3' -p39910 -tp39911 -asS'tv_pc_graph_ctrl' -p39912 -(lp39913 -(S'create_menu/4' -p39914 -S'create_menu(${1:PwPid}, ${2:MenuTitle}, ${3:TitleAccPos}, ${4:MenuList}) $5' -p39915 -tp39916 -a(S'win_conf/2' -p39917 -S'win_conf(${1:Msg}, ${2:ProcVars}) $3' -p39918 -tp39919 -asS'gstk_arc' -p39920 -(lp39921 -(S'config/3' -p39922 -S'config(${1:DB}, ${2:Gstkid}, ${3:Opts}) $4' -p39923 -tp39924 -a(S'create/3' -p39925 -S'create(${1:DB}, ${2:GstkId}, ${3:Opts}) $4' -p39926 -tp39927 -a(S'delete/2' -p39928 -S'delete(${1:DB}, ${2:Gstkid}) $3' -p39929 -tp39930 -a(S'destroy/3' -p39931 -S'destroy(${1:Param1}, ${2:Canvas}, ${3:Item}) $4' -p39932 -tp39933 -a(S'event/5' -p39934 -S'event(${1:DB}, ${2:Gstkid}, ${3:Etype}, ${4:Edata}, ${5:Args}) $6' -p39935 -tp39936 -a(S'option/5' -p39937 -S'option(${1:Option}, ${2:Gstkid}, ${3:Canvas}, ${4:Param4}, ${5:AItem}) $6' -p39938 -tp39939 -a(S'read/3' -p39940 -S'read(${1:DB}, ${2:Gstkid}, ${3:Opt}) $4' -p39941 -tp39942 -a(S'read_option/5' -p39943 -S'read_option(${1:Option}, ${2:Gstkid}, ${3:Canvas}, ${4:Param4}, ${5:AItem}) $6' -p39944 -tp39945 -asS'wxTopLevelWindow' -p39946 -(lp39947 -(S'cacheBestSize/2' -p39948 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p39949 -tp39950 -a(S'captureMouse/1' -p39951 -S'captureMouse(${1:This}) $2' -p39952 -tp39953 -a(S'center/1' -p39954 -S'center(${1:This}) $2' -p39955 -tp39956 -a(S'center/2' -p39957 -S'center(${1:This}, ${2:Options}) $3' -p39958 -tp39959 -a(S'centerOnParent/1' -p39960 -S'centerOnParent(${1:This}) $2' -p39961 -tp39962 -a(S'centerOnParent/2' -p39963 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p39964 -tp39965 -a(S'centerOnScreen/1' -p39966 -S'centerOnScreen(${1:This}) $2' -p39967 -tp39968 -a(S'centerOnScreen/2' -p39969 -S'centerOnScreen(${1:This}, ${2:Param2}) $3' -p39970 -tp39971 -a(S'centre/1' -p39972 -S'centre(${1:This}) $2' -p39973 -tp39974 -a(S'centre/2' -p39975 -S'centre(${1:This}, ${2:Options}) $3' -p39976 -tp39977 -a(S'centreOnParent/1' -p39978 -S'centreOnParent(${1:This}) $2' -p39979 -tp39980 -a(S'centreOnParent/2' -p39981 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p39982 -tp39983 -a(S'centreOnScreen/1' -p39984 -S'centreOnScreen(${1:This}) $2' -p39985 -tp39986 -a(S'centreOnScreen/2' -p39987 -S'centreOnScreen(${1:This}, ${2:Param2}) $3' -p39988 -tp39989 -a(S'clearBackground/1' -p39990 -S'clearBackground(${1:This}) $2' -p39991 -tp39992 -a(S'clientToScreen/2' -p39993 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p39994 -tp39995 -a(S'clientToScreen/3' -p39996 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p39997 -tp39998 -a(S'close/1' -p39999 -S'close(${1:This}) $2' -p40000 -tp40001 -a(S'close/2' -p40002 -S'close(${1:This}, ${2:Options}) $3' -p40003 -tp40004 -a(S'connect/2' -p40005 -S'connect(${1:This}, ${2:EventType}) $3' -p40006 -tp40007 -a(S'connect/3' -p40008 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p40009 -tp40010 -a(S'convertDialogToPixels/2' -p40011 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p40012 -tp40013 -a(S'convertPixelsToDialog/2' -p40014 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p40015 -tp40016 -a(S'destroyChildren/1' -p40017 -S'destroyChildren(${1:This}) $2' -p40018 -tp40019 -a(S'disable/1' -p40020 -S'disable(${1:This}) $2' -p40021 -tp40022 -a(S'disconnect/1' -p40023 -S'disconnect(${1:This}) $2' -p40024 -tp40025 -a(S'disconnect/2' -p40026 -S'disconnect(${1:This}, ${2:EventType}) $3' -p40027 -tp40028 -a(S'disconnect/3' -p40029 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p40030 -tp40031 -a(S'enable/1' -p40032 -S'enable(${1:This}) $2' -p40033 -tp40034 -a(S'enable/2' -p40035 -S'enable(${1:This}, ${2:Options}) $3' -p40036 -tp40037 -a(S'findWindow/2' -p40038 -S'findWindow(${1:This}, ${2:Winid}) $3' -p40039 -tp40040 -a(S'fit/1' -p40041 -S'fit(${1:This}) $2' -p40042 -tp40043 -a(S'fitInside/1' -p40044 -S'fitInside(${1:This}) $2' -p40045 -tp40046 -a(S'freeze/1' -p40047 -S'freeze(${1:This}) $2' -p40048 -tp40049 -a(S'getAcceleratorTable/1' -p40050 -S'getAcceleratorTable(${1:This}) $2' -p40051 -tp40052 -a(S'getBackgroundColour/1' -p40053 -S'getBackgroundColour(${1:This}) $2' -p40054 -tp40055 -a(S'getBackgroundStyle/1' -p40056 -S'getBackgroundStyle(${1:This}) $2' -p40057 -tp40058 -a(S'getBestSize/1' -p40059 -S'getBestSize(${1:This}) $2' -p40060 -tp40061 -a(S'getCaret/1' -p40062 -S'getCaret(${1:This}) $2' -p40063 -tp40064 -a(S'getCharHeight/1' -p40065 -S'getCharHeight(${1:This}) $2' -p40066 -tp40067 -a(S'getCharWidth/1' -p40068 -S'getCharWidth(${1:This}) $2' -p40069 -tp40070 -a(S'getChildren/1' -p40071 -S'getChildren(${1:This}) $2' -p40072 -tp40073 -a(S'getClientSize/1' -p40074 -S'getClientSize(${1:This}) $2' -p40075 -tp40076 -a(S'getContainingSizer/1' -p40077 -S'getContainingSizer(${1:This}) $2' -p40078 -tp40079 -a(S'getCursor/1' -p40080 -S'getCursor(${1:This}) $2' -p40081 -tp40082 -a(S'getDropTarget/1' -p40083 -S'getDropTarget(${1:This}) $2' -p40084 -tp40085 -a(S'getEventHandler/1' -p40086 -S'getEventHandler(${1:This}) $2' -p40087 -tp40088 -a(S'getExtraStyle/1' -p40089 -S'getExtraStyle(${1:This}) $2' -p40090 -tp40091 -a(S'getFont/1' -p40092 -S'getFont(${1:This}) $2' -p40093 -tp40094 -a(S'getForegroundColour/1' -p40095 -S'getForegroundColour(${1:This}) $2' -p40096 -tp40097 -a(S'getGrandParent/1' -p40098 -S'getGrandParent(${1:This}) $2' -p40099 -tp40100 -a(S'getHandle/1' -p40101 -S'getHandle(${1:This}) $2' -p40102 -tp40103 -a(S'getHelpText/1' -p40104 -S'getHelpText(${1:This}) $2' -p40105 -tp40106 -a(S'getIcon/1' -p40107 -S'getIcon(${1:This}) $2' -p40108 -tp40109 -a(S'getIcons/1' -p40110 -S'getIcons(${1:This}) $2' -p40111 -tp40112 -a(S'getId/1' -p40113 -S'getId(${1:This}) $2' -p40114 -tp40115 -a(S'getLabel/1' -p40116 -S'getLabel(${1:This}) $2' -p40117 -tp40118 -a(S'getMaxSize/1' -p40119 -S'getMaxSize(${1:This}) $2' -p40120 -tp40121 -a(S'getMinSize/1' -p40122 -S'getMinSize(${1:This}) $2' -p40123 -tp40124 -a(S'getName/1' -p40125 -S'getName(${1:This}) $2' -p40126 -tp40127 -a(S'getParent/1' -p40128 -S'getParent(${1:This}) $2' -p40129 -tp40130 -a(S'getPosition/1' -p40131 -S'getPosition(${1:This}) $2' -p40132 -tp40133 -a(S'getRect/1' -p40134 -S'getRect(${1:This}) $2' -p40135 -tp40136 -a(S'getScreenPosition/1' -p40137 -S'getScreenPosition(${1:This}) $2' -p40138 -tp40139 -a(S'getScreenRect/1' -p40140 -S'getScreenRect(${1:This}) $2' -p40141 -tp40142 -a(S'getScrollPos/2' -p40143 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p40144 -tp40145 -a(S'getScrollRange/2' -p40146 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p40147 -tp40148 -a(S'getScrollThumb/2' -p40149 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p40150 -tp40151 -a(S'getSize/1' -p40152 -S'getSize(${1:This}) $2' -p40153 -tp40154 -a(S'getSizer/1' -p40155 -S'getSizer(${1:This}) $2' -p40156 -tp40157 -a(S'getTextExtent/2' -p40158 -S'getTextExtent(${1:This}, ${2:String}) $3' -p40159 -tp40160 -a(S'getTextExtent/3' -p40161 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p40162 -tp40163 -a(S'getTitle/1' -p40164 -S'getTitle(${1:This}) $2' -p40165 -tp40166 -a(S'getToolTip/1' -p40167 -S'getToolTip(${1:This}) $2' -p40168 -tp40169 -a(S'getUpdateRegion/1' -p40170 -S'getUpdateRegion(${1:This}) $2' -p40171 -tp40172 -a(S'getVirtualSize/1' -p40173 -S'getVirtualSize(${1:This}) $2' -p40174 -tp40175 -a(S'getWindowStyleFlag/1' -p40176 -S'getWindowStyleFlag(${1:This}) $2' -p40177 -tp40178 -a(S'getWindowVariant/1' -p40179 -S'getWindowVariant(${1:This}) $2' -p40180 -tp40181 -a(S'hasCapture/1' -p40182 -S'hasCapture(${1:This}) $2' -p40183 -tp40184 -a(S'hasScrollbar/2' -p40185 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p40186 -tp40187 -a(S'hasTransparentBackground/1' -p40188 -S'hasTransparentBackground(${1:This}) $2' -p40189 -tp40190 -a(S'hide/1' -p40191 -S'hide(${1:This}) $2' -p40192 -tp40193 -a(S'iconize/1' -p40194 -S'iconize(${1:This}) $2' -p40195 -tp40196 -a(S'iconize/2' -p40197 -S'iconize(${1:This}, ${2:Param2}) $3' -p40198 -tp40199 -a(S'inheritAttributes/1' -p40200 -S'inheritAttributes(${1:This}) $2' -p40201 -tp40202 -a(S'initDialog/1' -p40203 -S'initDialog(${1:This}) $2' -p40204 -tp40205 -a(S'invalidateBestSize/1' -p40206 -S'invalidateBestSize(${1:This}) $2' -p40207 -tp40208 -a(S'isActive/1' -p40209 -S'isActive(${1:This}) $2' -p40210 -tp40211 -a(S'isEnabled/1' -p40212 -S'isEnabled(${1:This}) $2' -p40213 -tp40214 -a(S'isExposed/2' -p40215 -S'isExposed(${1:This}, ${2:Pt}) $3' -p40216 -tp40217 -a(S'isExposed/3' -p40218 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p40219 -tp40220 -a(S'isExposed/5' -p40221 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p40222 -tp40223 -a(S'isFullScreen/1' -p40224 -S'isFullScreen(${1:This}) $2' -p40225 -tp40226 -a(S'isIconized/1' -p40227 -S'isIconized(${1:This}) $2' -p40228 -tp40229 -a(S'isMaximized/1' -p40230 -S'isMaximized(${1:This}) $2' -p40231 -tp40232 -a(S'isRetained/1' -p40233 -S'isRetained(${1:This}) $2' -p40234 -tp40235 -a(S'isShown/1' -p40236 -S'isShown(${1:This}) $2' -p40237 -tp40238 -a(S'isTopLevel/1' -p40239 -S'isTopLevel(${1:This}) $2' -p40240 -tp40241 -a(S'layout/1' -p40242 -S'layout(${1:This}) $2' -p40243 -tp40244 -a(S'lineDown/1' -p40245 -S'lineDown(${1:This}) $2' -p40246 -tp40247 -a(S'lineUp/1' -p40248 -S'lineUp(${1:This}) $2' -p40249 -tp40250 -a(S'lower/1' -p40251 -S'lower(${1:This}) $2' -p40252 -tp40253 -a(S'makeModal/1' -p40254 -S'makeModal(${1:This}) $2' -p40255 -tp40256 -a(S'makeModal/2' -p40257 -S'makeModal(${1:This}, ${2:Options}) $3' -p40258 -tp40259 -a(S'maximize/1' -p40260 -S'maximize(${1:This}) $2' -p40261 -tp40262 -a(S'maximize/2' -p40263 -S'maximize(${1:This}, ${2:Param2}) $3' -p40264 -tp40265 -a(S'move/2' -p40266 -S'move(${1:This}, ${2:Pt}) $3' -p40267 -tp40268 -a(S'move/3' -p40269 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p40270 -tp40271 -a(S'move/4' -p40272 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p40273 -tp40274 -a(S'moveAfterInTabOrder/2' -p40275 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p40276 -tp40277 -a(S'moveBeforeInTabOrder/2' -p40278 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p40279 -tp40280 -a(S'navigate/1' -p40281 -S'navigate(${1:This}) $2' -p40282 -tp40283 -a(S'navigate/2' -p40284 -S'navigate(${1:This}, ${2:Options}) $3' -p40285 -tp40286 -a(S'pageDown/1' -p40287 -S'pageDown(${1:This}) $2' -p40288 -tp40289 -a(S'pageUp/1' -p40290 -S'pageUp(${1:This}) $2' -p40291 -tp40292 -a(S'parent_class/1' -p40293 -S'parent_class(${1:Param1}) $2' -p40294 -tp40295 -a(S'popEventHandler/1' -p40296 -S'popEventHandler(${1:This}) $2' -p40297 -tp40298 -a(S'popEventHandler/2' -p40299 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p40300 -tp40301 -a(S'popupMenu/2' -p40302 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p40303 -tp40304 -a(S'popupMenu/3' -p40305 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p40306 -tp40307 -a(S'popupMenu/4' -p40308 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p40309 -tp40310 -a(S'raise/1' -p40311 -S'raise(${1:This}) $2' -p40312 -tp40313 -a(S'refresh/1' -p40314 -S'refresh(${1:This}) $2' -p40315 -tp40316 -a(S'refresh/2' -p40317 -S'refresh(${1:This}, ${2:Options}) $3' -p40318 -tp40319 -a(S'refreshRect/2' -p40320 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p40321 -tp40322 -a(S'refreshRect/3' -p40323 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p40324 -tp40325 -a(S'releaseMouse/1' -p40326 -S'releaseMouse(${1:This}) $2' -p40327 -tp40328 -a(S'removeChild/2' -p40329 -S'removeChild(${1:This}, ${2:Child}) $3' -p40330 -tp40331 -a(S'reparent/2' -p40332 -S'reparent(${1:This}, ${2:NewParent}) $3' -p40333 -tp40334 -a(S'requestUserAttention/1' -p40335 -S'requestUserAttention(${1:This}) $2' -p40336 -tp40337 -a(S'requestUserAttention/2' -p40338 -S'requestUserAttention(${1:This}, ${2:Param2}) $3' -p40339 -tp40340 -a(S'screenToClient/1' -p40341 -S'screenToClient(${1:This}) $2' -p40342 -tp40343 -a(S'screenToClient/2' -p40344 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p40345 -tp40346 -a(S'scrollLines/2' -p40347 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p40348 -tp40349 -a(S'scrollPages/2' -p40350 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p40351 -tp40352 -a(S'scrollWindow/3' -p40353 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p40354 -tp40355 -a(S'scrollWindow/4' -p40356 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p40357 -tp40358 -a(S'setAcceleratorTable/2' -p40359 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p40360 -tp40361 -a(S'setAutoLayout/2' -p40362 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p40363 -tp40364 -a(S'setBackgroundColour/2' -p40365 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p40366 -tp40367 -a(S'setBackgroundStyle/2' -p40368 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p40369 -tp40370 -a(S'setCaret/2' -p40371 -S'setCaret(${1:This}, ${2:Caret}) $3' -p40372 -tp40373 -a(S'setClientSize/2' -p40374 -S'setClientSize(${1:This}, ${2:Size}) $3' -p40375 -tp40376 -a(S'setClientSize/3' -p40377 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p40378 -tp40379 -a(S'setContainingSizer/2' -p40380 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p40381 -tp40382 -a(S'setCursor/2' -p40383 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p40384 -tp40385 -a(S'setDropTarget/2' -p40386 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p40387 -tp40388 -a(S'setExtraStyle/2' -p40389 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p40390 -tp40391 -a(S'setFocus/1' -p40392 -S'setFocus(${1:This}) $2' -p40393 -tp40394 -a(S'setFocusFromKbd/1' -p40395 -S'setFocusFromKbd(${1:This}) $2' -p40396 -tp40397 -a(S'setFont/2' -p40398 -S'setFont(${1:This}, ${2:Font}) $3' -p40399 -tp40400 -a(S'setForegroundColour/2' -p40401 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p40402 -tp40403 -a(S'setHelpText/2' -p40404 -S'setHelpText(${1:This}, ${2:Text}) $3' -p40405 -tp40406 -a(S'setIcon/2' -p40407 -S'setIcon(${1:This}, ${2:Icon}) $3' -p40408 -tp40409 -a(S'setIcons/2' -p40410 -S'setIcons(${1:This}, ${2:Icons}) $3' -p40411 -tp40412 -a(S'setId/2' -p40413 -S'setId(${1:This}, ${2:Winid}) $3' -p40414 -tp40415 -a(S'setLabel/2' -p40416 -S'setLabel(${1:This}, ${2:Label}) $3' -p40417 -tp40418 -a(S'setMaxSize/2' -p40419 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p40420 -tp40421 -a(S'setMinSize/2' -p40422 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p40423 -tp40424 -a(S'setName/2' -p40425 -S'setName(${1:This}, ${2:Name}) $3' -p40426 -tp40427 -a(S'setOwnBackgroundColour/2' -p40428 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p40429 -tp40430 -a(S'setOwnFont/2' -p40431 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p40432 -tp40433 -a(S'setOwnForegroundColour/2' -p40434 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p40435 -tp40436 -a(S'setPalette/2' -p40437 -S'setPalette(${1:This}, ${2:Pal}) $3' -p40438 -tp40439 -a(S'setScrollPos/3' -p40440 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p40441 -tp40442 -a(S'setScrollPos/4' -p40443 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p40444 -tp40445 -a(S'setScrollbar/5' -p40446 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p40447 -tp40448 -a(S'setScrollbar/6' -p40449 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p40450 -tp40451 -a(S'setShape/2' -p40452 -S'setShape(${1:This}, ${2:Region}) $3' -p40453 -tp40454 -a(S'setSize/2' -p40455 -S'setSize(${1:This}, ${2:Rect}) $3' -p40456 -tp40457 -a(S'setSize/3' -p40458 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p40459 -tp40460 -a(S'setSize/5' -p40461 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p40462 -tp40463 -a(S'setSize/6' -p40464 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p40465 -tp40466 -a(S'setSizeHints/2' -p40467 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p40468 -tp40469 -a(S'setSizeHints/3' -p40470 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p40471 -tp40472 -a(S'setSizeHints/4' -p40473 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p40474 -tp40475 -a(S'setSizer/2' -p40476 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p40477 -tp40478 -a(S'setSizer/3' -p40479 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p40480 -tp40481 -a(S'setSizerAndFit/2' -p40482 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p40483 -tp40484 -a(S'setSizerAndFit/3' -p40485 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p40486 -tp40487 -a(S'setThemeEnabled/2' -p40488 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p40489 -tp40490 -a(S'setTitle/2' -p40491 -S'setTitle(${1:This}, ${2:Title}) $3' -p40492 -tp40493 -a(S'setToolTip/2' -p40494 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p40495 -tp40496 -a(S'setVirtualSize/2' -p40497 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p40498 -tp40499 -a(S'setVirtualSize/3' -p40500 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p40501 -tp40502 -a(S'setVirtualSizeHints/2' -p40503 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p40504 -tp40505 -a(S'setVirtualSizeHints/3' -p40506 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p40507 -tp40508 -a(S'setVirtualSizeHints/4' -p40509 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p40510 -tp40511 -a(S'setWindowStyle/2' -p40512 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p40513 -tp40514 -a(S'setWindowStyleFlag/2' -p40515 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p40516 -tp40517 -a(S'setWindowVariant/2' -p40518 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p40519 -tp40520 -a(S'shouldInheritColours/1' -p40521 -S'shouldInheritColours(${1:This}) $2' -p40522 -tp40523 -a(S'show/1' -p40524 -S'show(${1:This}) $2' -p40525 -tp40526 -a(S'show/2' -p40527 -S'show(${1:This}, ${2:Options}) $3' -p40528 -tp40529 -a(S'showFullScreen/2' -p40530 -S'showFullScreen(${1:This}, ${2:Show}) $3' -p40531 -tp40532 -a(S'showFullScreen/3' -p40533 -S'showFullScreen(${1:This}, ${2:Show}, ${3:Param3}) $4' -p40534 -tp40535 -a(S'thaw/1' -p40536 -S'thaw(${1:This}) $2' -p40537 -tp40538 -a(S'transferDataFromWindow/1' -p40539 -S'transferDataFromWindow(${1:This}) $2' -p40540 -tp40541 -a(S'transferDataToWindow/1' -p40542 -S'transferDataToWindow(${1:This}) $2' -p40543 -tp40544 -a(S'update/1' -p40545 -S'update(${1:This}) $2' -p40546 -tp40547 -a(S'updateWindowUI/1' -p40548 -S'updateWindowUI(${1:This}) $2' -p40549 -tp40550 -a(S'updateWindowUI/2' -p40551 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p40552 -tp40553 -a(S'validate/1' -p40554 -S'validate(${1:This}) $2' -p40555 -tp40556 -a(S'warpPointer/3' -p40557 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p40558 -tp40559 -asS'file_io_server' -p40560 -(lp40561 -(S'count_and_find/3' -p40562 -S'count_and_find(${1:Bin}, ${2:N}, ${3:Encoding}) $4' -p40563 -tp40564 -a(S'format_error/1' -p40565 -S'format_error(${1:ErrorId}) $2' -p40566 -tp40567 -a(S'start/3' -p40568 -S'start() $1' -p40569 -tp40570 -a(S'start_link/3' -p40571 -S'start_link() $1' -p40572 -tp40573 -asS'ct_framework' -p40574 -(lp40575 -(S'end_per_group/2' -p40576 -S'end_per_group(${1:GroupName}, ${2:Param2}) $3' -p40577 -tp40578 -a(S'end_per_suite/1' -p40579 -S'end_per_suite(${1:Param1}) $2' -p40580 -tp40581 -a(S'end_tc/3' -p40582 -S'end_tc(${1:Mod}, ${2:Fun}, ${3:Args}) $4' -p40583 -tp40584 -a(S'end_tc/4' -p40585 -S'end_tc(${1:Mod}, ${2:Func}, ${3:Param3}, ${4:Return}) $5' -p40586 -tp40587 -a(S'error_in_suite/1' -p40588 -S'error_in_suite(${1:Config}) $2' -p40589 -tp40590 -a(S'error_notification/4' -p40591 -S'error_notification(${1:Mod}, ${2:Func}, ${3:Param3}, ${4:Param4}) $5' -p40592 -tp40593 -a(S'format_comment/1' -p40594 -S'format_comment(${1:Comment}) $2' -p40595 -tp40596 -a(S'get_all_cases/1' -p40597 -S'get_all_cases(${1:Suite}) $2' -p40598 -tp40599 -a(S'get_html_wrapper/3' -p40600 -S'get_html_wrapper(${1:TestName}, ${2:PrintLabel}, ${3:Cwd}) $4' -p40601 -tp40602 -a(S'get_logopts/0' -p40603 -S'get_logopts() $1' -p40604 -tp40605 -a(S'get_suite/2' -p40606 -S'get_suite(${1:Mod}, ${2:Name}) $3' -p40607 -tp40608 -a(S'init_per_group/2' -p40609 -S'init_per_group(${1:GroupName}, ${2:Config}) $3' -p40610 -tp40611 -a(S'init_per_suite/1' -p40612 -S'init_per_suite(${1:Config}) $2' -p40613 -tp40614 -a(S'init_tc/3' -p40615 -S'init_tc(${1:Mod}, ${2:Func}, ${3:Config}) $4' -p40616 -tp40617 -a(S'make_all_conf/3' -p40618 -S'make_all_conf(${1:Dir}, ${2:Mod}, ${3:Param3}) $4' -p40619 -tp40620 -a(S'make_conf/5' -p40621 -S'make_conf(${1:Dir}, ${2:Mod}, ${3:Name}, ${4:Props}, ${5:TestSpec}) $6' -p40622 -tp40623 -a(S'report/2' -p40624 -S'report(${1:What}, ${2:Data}) $3' -p40625 -tp40626 -a(S'warn/1' -p40627 -S'warn(${1:Param1}) $2' -p40628 -tp40629 -asS'asn1ct_gen_per_rt2ct' -p40630 -(lp40631 -(S'extaddgroup2sequence/1' -p40632 -S'extaddgroup2sequence(${1:ExtList}) $2' -p40633 -tp40634 -a(S'gen_dec_prim/3' -p40635 -S'gen_dec_prim(${1:Erules}, ${2:Att}, ${3:BytesVar}) $4' -p40636 -tp40637 -a(S'gen_decode/2' -p40638 -S'gen_decode(${1:Erules}, ${2:Type}) $3' -p40639 -tp40640 -a(S'gen_decode/3' -p40641 -S'gen_decode(${1:Erules}, ${2:Tname}, ${3:Type}) $4' -p40642 -tp40643 -a(S'gen_encode/2' -p40644 -S'gen_encode(${1:Erules}, ${2:Type}) $3' -p40645 -tp40646 -a(S'gen_encode/3' -p40647 -S'gen_encode(${1:Erules}, ${2:Typename}, ${3:Type}) $4' -p40648 -tp40649 -a(S'gen_encode_prim/4' -p40650 -S'gen_encode_prim(${1:Erules}, ${2:D}, ${3:DoTag}, ${4:Value}) $5' -p40651 -tp40652 -a(S'gen_obj_code/3' -p40653 -S'gen_obj_code(${1:Erules}, ${2:Param2}, ${3:Obj}) $4' -p40654 -tp40655 -a(S'gen_objectset_code/2' -p40656 -S'gen_objectset_code(${1:Erules}, ${2:ObjSet}) $3' -p40657 -tp40658 -a(S'pgen/4' -p40659 -S'pgen(${1:OutFile}, ${2:Erules}, ${3:Module}, ${4:TypeOrVal}) $5' -p40660 -tp40661 -asS'xmerl_scan' -p40662 -(lp40663 -(S'accumulate_whitespace/4' -p40664 -S'accumulate_whitespace(${1:T}, ${2:S}, ${3:Param3}, ${4:Acc}) $5' -p40665 -tp40666 -a(S'cont_state/1' -p40667 -S'cont_state(${1:Param1}) $2' -p40668 -tp40669 -a(S'cont_state/2' -p40670 -S'cont_state(${1:X}, ${2:Param2}) $3' -p40671 -tp40672 -a(S'event_state/1' -p40673 -S'event_state(${1:Param1}) $2' -p40674 -tp40675 -a(S'event_state/2' -p40676 -S'event_state(${1:X}, ${2:Param2}) $3' -p40677 -tp40678 -a(S'fetch_state/1' -p40679 -S'fetch_state(${1:Param1}) $2' -p40680 -tp40681 -a(S'fetch_state/2' -p40682 -S'fetch_state(${1:X}, ${2:Param2}) $3' -p40683 -tp40684 -a(S'file/1' -p40685 -S'file(${1:F}) $2' -p40686 -tp40687 -a(S'file/2' -p40688 -S'file(${1:F}, ${2:Options}) $3' -p40689 -tp40690 -a(S'hook_state/1' -p40691 -S'hook_state(${1:Param1}) $2' -p40692 -tp40693 -a(S'hook_state/2' -p40694 -S'hook_state(${1:X}, ${2:Param2}) $3' -p40695 -tp40696 -a(S'rules_state/1' -p40697 -S'rules_state(${1:Param1}) $2' -p40698 -tp40699 -a(S'rules_state/2' -p40700 -S'rules_state(${1:X}, ${2:Param2}) $3' -p40701 -tp40702 -a(S'string/1' -p40703 -S'string(${1:Str}) $2' -p40704 -tp40705 -a(S'string/2' -p40706 -S'string(${1:Str}, ${2:Options}) $3' -p40707 -tp40708 -a(S'user_state/1' -p40709 -S'user_state(${1:Param1}) $2' -p40710 -tp40711 -a(S'user_state/2' -p40712 -S'user_state(${1:X}, ${2:S}) $3' -p40713 -tp40714 -asS'mod_range' -p40715 -(lp40716 -(S'do/1' -p40717 -S'do(${1:Info}) $2' -p40718 -tp40719 -asS'wxFont' -p40720 -(lp40721 -(S'destroy/1' -p40722 -S'destroy(${1:This}) $2' -p40723 -tp40724 -a(S'getDefaultEncoding/0' -p40725 -S'getDefaultEncoding() $1' -p40726 -tp40727 -a(S'getFaceName/1' -p40728 -S'getFaceName(${1:This}) $2' -p40729 -tp40730 -a(S'getFamily/1' -p40731 -S'getFamily(${1:This}) $2' -p40732 -tp40733 -a(S'getNativeFontInfoDesc/1' -p40734 -S'getNativeFontInfoDesc(${1:This}) $2' -p40735 -tp40736 -a(S'getNativeFontInfoUserDesc/1' -p40737 -S'getNativeFontInfoUserDesc(${1:This}) $2' -p40738 -tp40739 -a(S'getPointSize/1' -p40740 -S'getPointSize(${1:This}) $2' -p40741 -tp40742 -a(S'getStyle/1' -p40743 -S'getStyle(${1:This}) $2' -p40744 -tp40745 -a(S'getUnderlined/1' -p40746 -S'getUnderlined(${1:This}) $2' -p40747 -tp40748 -a(S'getWeight/1' -p40749 -S'getWeight(${1:This}) $2' -p40750 -tp40751 -a(S'isFixedWidth/1' -p40752 -S'isFixedWidth(${1:This}) $2' -p40753 -tp40754 -a(S'new/0' -p40755 -S'new() $1' -p40756 -tp40757 -a(S'new/1' -p40758 -S'new(${1:Fontname}) $2' -p40759 -tp40760 -a(S'new/4' -p40761 -S'new(${1:Size}, ${2:Family}, ${3:Style}, ${4:Weight}) $5' -p40762 -tp40763 -a(S'new/5' -p40764 -S'new(${1:Size}, ${2:Family}, ${3:Style}, ${4:Weight}, ${5:Param5}) $6' -p40765 -tp40766 -a(S'ok/1' -p40767 -S'ok(${1:This}) $2' -p40768 -tp40769 -a(S'parent_class/1' -p40770 -S'parent_class(${1:Param1}) $2' -p40771 -tp40772 -a(S'setDefaultEncoding/1' -p40773 -S'setDefaultEncoding(${1:Encoding}) $2' -p40774 -tp40775 -a(S'setFaceName/2' -p40776 -S'setFaceName(${1:This}, ${2:FaceName}) $3' -p40777 -tp40778 -a(S'setFamily/2' -p40779 -S'setFamily(${1:This}, ${2:Family}) $3' -p40780 -tp40781 -a(S'setPointSize/2' -p40782 -S'setPointSize(${1:This}, ${2:PointSize}) $3' -p40783 -tp40784 -a(S'setStyle/2' -p40785 -S'setStyle(${1:This}, ${2:Style}) $3' -p40786 -tp40787 -a(S'setUnderlined/2' -p40788 -S'setUnderlined(${1:This}, ${2:Underlined}) $3' -p40789 -tp40790 -a(S'setWeight/2' -p40791 -S'setWeight(${1:This}, ${2:Weight}) $3' -p40792 -tp40793 -asS'toolbar' -p40794 -(lp40795 -(S'add_gs_contribs/0' -p40796 -S'add_gs_contribs() $1' -p40797 -tp40798 -a(S'create_tool_file/0' -p40799 -S'create_tool_file() $1' -p40800 -tp40801 -a(S'quit/0' -p40802 -S'quit() $1' -p40803 -tp40804 -a(S'start/0' -p40805 -S'start() $1' -p40806 -tp40807 -a(S'update/0' -p40808 -S'update() $1' -p40809 -tp40810 -a(S'version/0' -p40811 -S'version() $1' -p40812 -tp40813 -asS'wxUpdateUIEvent' -p40814 -(lp40815 -(S'canUpdate/1' -p40816 -S'canUpdate(${1:Win}) $2' -p40817 -tp40818 -a(S'check/2' -p40819 -S'check(${1:This}, ${2:Check}) $3' -p40820 -tp40821 -a(S'enable/2' -p40822 -S'enable(${1:This}, ${2:Enable}) $3' -p40823 -tp40824 -a(S'getChecked/1' -p40825 -S'getChecked(${1:This}) $2' -p40826 -tp40827 -a(S'getClientData/1' -p40828 -S'getClientData(${1:This}) $2' -p40829 -tp40830 -a(S'getEnabled/1' -p40831 -S'getEnabled(${1:This}) $2' -p40832 -tp40833 -a(S'getExtraLong/1' -p40834 -S'getExtraLong(${1:This}) $2' -p40835 -tp40836 -a(S'getId/1' -p40837 -S'getId(${1:This}) $2' -p40838 -tp40839 -a(S'getInt/1' -p40840 -S'getInt(${1:This}) $2' -p40841 -tp40842 -a(S'getMode/0' -p40843 -S'getMode() $1' -p40844 -tp40845 -a(S'getSelection/1' -p40846 -S'getSelection(${1:This}) $2' -p40847 -tp40848 -a(S'getSetChecked/1' -p40849 -S'getSetChecked(${1:This}) $2' -p40850 -tp40851 -a(S'getSetEnabled/1' -p40852 -S'getSetEnabled(${1:This}) $2' -p40853 -tp40854 -a(S'getSetShown/1' -p40855 -S'getSetShown(${1:This}) $2' -p40856 -tp40857 -a(S'getSetText/1' -p40858 -S'getSetText(${1:This}) $2' -p40859 -tp40860 -a(S'getShown/1' -p40861 -S'getShown(${1:This}) $2' -p40862 -tp40863 -a(S'getSkipped/1' -p40864 -S'getSkipped(${1:This}) $2' -p40865 -tp40866 -a(S'getString/1' -p40867 -S'getString(${1:This}) $2' -p40868 -tp40869 -a(S'getText/1' -p40870 -S'getText(${1:This}) $2' -p40871 -tp40872 -a(S'getTimestamp/1' -p40873 -S'getTimestamp(${1:This}) $2' -p40874 -tp40875 -a(S'getUpdateInterval/0' -p40876 -S'getUpdateInterval() $1' -p40877 -tp40878 -a(S'isChecked/1' -p40879 -S'isChecked(${1:This}) $2' -p40880 -tp40881 -a(S'isCommandEvent/1' -p40882 -S'isCommandEvent(${1:This}) $2' -p40883 -tp40884 -a(S'isSelection/1' -p40885 -S'isSelection(${1:This}) $2' -p40886 -tp40887 -a(S'parent_class/1' -p40888 -S'parent_class(${1:Param1}) $2' -p40889 -tp40890 -a(S'resetUpdateTime/0' -p40891 -S'resetUpdateTime() $1' -p40892 -tp40893 -a(S'resumePropagation/2' -p40894 -S'resumePropagation(${1:This}, ${2:PropagationLevel}) $3' -p40895 -tp40896 -a(S'setInt/2' -p40897 -S'setInt(${1:This}, ${2:I}) $3' -p40898 -tp40899 -a(S'setMode/1' -p40900 -S'setMode(${1:Mode}) $2' -p40901 -tp40902 -a(S'setString/2' -p40903 -S'setString(${1:This}, ${2:S}) $3' -p40904 -tp40905 -a(S'setText/2' -p40906 -S'setText(${1:This}, ${2:Text}) $3' -p40907 -tp40908 -a(S'setUpdateInterval/1' -p40909 -S'setUpdateInterval(${1:UpdateInterval}) $2' -p40910 -tp40911 -a(S'shouldPropagate/1' -p40912 -S'shouldPropagate(${1:This}) $2' -p40913 -tp40914 -a(S'show/2' -p40915 -S'show(${1:This}, ${2:Show}) $3' -p40916 -tp40917 -a(S'skip/1' -p40918 -S'skip(${1:This}) $2' -p40919 -tp40920 -a(S'skip/2' -p40921 -S'skip(${1:This}, ${2:Options}) $3' -p40922 -tp40923 -a(S'stopPropagation/1' -p40924 -S'stopPropagation(${1:This}) $2' -p40925 -tp40926 -asS'queue' -p40927 -(lp40928 -(S'cons/2' -p40929 -S'cons(${1:X}, ${2:Q}) $3' -p40930 -tp40931 -a(S'daeh/1' -p40932 -S'daeh(${1:Q}) $2' -p40933 -tp40934 -a(S'drop/1' -p40935 -S'drop(${1:Q}) $2' -p40936 -tp40937 -a(S'drop_r/1' -p40938 -S'drop_r(${1:Q}) $2' -p40939 -tp40940 -a(S'filter/2' -p40941 -S'filter(${1:Fun}, ${2:Q}) $3' -p40942 -tp40943 -a(S'from_list/1' -p40944 -S'from_list(${1:L}) $2' -p40945 -tp40946 -a(S'get/1' -p40947 -S'get(${1:Q}) $2' -p40948 -tp40949 -a(S'get_r/1' -p40950 -S'get_r(${1:Q}) $2' -p40951 -tp40952 -a(S'head/1' -p40953 -S'head(${1:Q}) $2' -p40954 -tp40955 -a(S'in/2' -p40956 -S'in(${1:X}, ${2:Q}) $3' -p40957 -tp40958 -a(S'in_r/2' -p40959 -S'in_r(${1:X}, ${2:Q}) $3' -p40960 -tp40961 -a(S'init/1' -p40962 -S'init(${1:Q}) $2' -p40963 -tp40964 -a(S'is_empty/1' -p40965 -S'is_empty(${1:Q}) $2' -p40966 -tp40967 -a(S'is_queue/1' -p40968 -S'is_queue(${1:Param1}) $2' -p40969 -tp40970 -a(S'join/2' -p40971 -S'join(${1:Q1}, ${2:Q2}) $3' -p40972 -tp40973 -a(S'lait/1' -p40974 -S'lait(${1:Q}) $2' -p40975 -tp40976 -a(S'last/1' -p40977 -S'last(${1:Q}) $2' -p40978 -tp40979 -a(S'len/1' -p40980 -S'len(${1:Q}) $2' -p40981 -tp40982 -a(S'liat/1' -p40983 -S'liat(${1:Q}) $2' -p40984 -tp40985 -a(S'member/2' -p40986 -S'member(${1:X}, ${2:Q}) $3' -p40987 -tp40988 -a(S'new/0' -p40989 -S'new() $1' -p40990 -tp40991 -a(S'out/1' -p40992 -S'out(${1:Q}) $2' -p40993 -tp40994 -a(S'out_r/1' -p40995 -S'out_r(${1:Q}) $2' -p40996 -tp40997 -a(S'peek/1' -p40998 -S'peek(${1:Q}) $2' -p40999 -tp41000 -a(S'peek_r/1' -p41001 -S'peek_r(${1:Q}) $2' -p41002 -tp41003 -a(S'reverse/1' -p41004 -S'reverse(${1:Q}) $2' -p41005 -tp41006 -a(S'snoc/2' -p41007 -S'snoc(${1:Q}, ${2:X}) $3' -p41008 -tp41009 -a(S'split/2' -p41010 -S'split(${1:N}, ${2:Q}) $3' -p41011 -tp41012 -a(S'tail/1' -p41013 -S'tail(${1:Q}) $2' -p41014 -tp41015 -a(S'to_list/1' -p41016 -S'to_list(${1:Q}) $2' -p41017 -tp41018 -asS'CosEventDomainAdmin_MemberIDSeq' -p41019 -(lp41020 -(S'id/0' -p41021 -S'id() $1' -p41022 -tp41023 -a(S'name/0' -p41024 -S'name() $1' -p41025 -tp41026 -a(S'tc/0' -p41027 -S'tc() $1' -p41028 -tp41029 -asS'mnesia_bup' -p41030 -(lp41031 -(S'create_schema/1' -p41032 -S'create_schema(${1:Ns}) $2' -p41033 -tp41034 -a(S'do_traverse_backup/7' -p41035 -S'do_traverse_backup(${1:ClientPid}, ${2:Source}, ${3:SourceMod}, ${4:Target}, ${5:TargetMod}, ${6:Fun}, ${7:Acc}) $8' -p41036 -tp41037 -a(S'fallback_bup/0' -p41038 -S'fallback_bup() $1' -p41039 -tp41040 -a(S'fallback_exists/0' -p41041 -S'fallback_exists() $1' -p41042 -tp41043 -a(S'fallback_receiver/2' -p41044 -S'fallback_receiver(${1:Master}, ${2:FA}) $3' -p41045 -tp41046 -a(S'fallback_to_schema/0' -p41047 -S'fallback_to_schema() $1' -p41048 -tp41049 -a(S'install_fallback/1' -p41050 -S'install_fallback(${1:Opaque}) $2' -p41051 -tp41052 -a(S'install_fallback/2' -p41053 -S'install_fallback(${1:Opaque}, ${2:Args}) $3' -p41054 -tp41055 -a(S'install_fallback_master/2' -p41056 -S'install_fallback_master(${1:ClientPid}, ${2:FA}) $3' -p41057 -tp41058 -a(S'iterate/4' -p41059 -S'iterate(${1:Mod}, ${2:Fun}, ${3:Opaque}, ${4:Acc}) $5' -p41060 -tp41061 -a(S'local_uninstall_fallback/2' -p41062 -S'local_uninstall_fallback(${1:Master}, ${2:FA}) $3' -p41063 -tp41064 -a(S'lookup_schema/2' -p41065 -S'lookup_schema(${1:Key}, ${2:Schema}) $3' -p41066 -tp41067 -a(S'make_initial_backup/3' -p41068 -S'make_initial_backup(${1:Ns}, ${2:Opaque}, ${3:Mod}) $4' -p41069 -tp41070 -a(S'read_schema/2' -p41071 -S'read_schema(${1:Mod}, ${2:Opaque}) $3' -p41072 -tp41073 -a(S'refresh_cookie/2' -p41074 -S'refresh_cookie(${1:Schema}, ${2:NewCookie}) $3' -p41075 -tp41076 -a(S'schema2bup/1' -p41077 -S'schema2bup(${1:Param1}) $2' -p41078 -tp41079 -a(S'tm_fallback_start/1' -p41080 -S'tm_fallback_start(${1:IgnoreFallback}) $2' -p41081 -tp41082 -a(S'trav_apply/4' -p41083 -S'trav_apply(${1:Recs}, ${2:Header}, ${3:Schema}, ${4:Param4}) $5' -p41084 -tp41085 -a(S'traverse_backup/4' -p41086 -S'traverse_backup(${1:Source}, ${2:Target}, ${3:Fun}, ${4:Acc}) $5' -p41087 -tp41088 -a(S'traverse_backup/6' -p41089 -S'traverse_backup(${1:Source}, ${2:SourceMod}, ${3:Target}, ${4:TargetMod}, ${5:Fun}, ${6:Acc}) $7' -p41090 -tp41091 -a(S'uninstall_fallback/0' -p41092 -S'uninstall_fallback() $1' -p41093 -tp41094 -a(S'uninstall_fallback/1' -p41095 -S'uninstall_fallback(${1:Args}) $2' -p41096 -tp41097 -a(S'uninstall_fallback_master/2' -p41098 -S'uninstall_fallback_master(${1:ClientPid}, ${2:FA}) $3' -p41099 -tp41100 -asS'httpd_response' -p41101 -(lp41102 -(S'cache_headers/1' -p41103 -S'cache_headers(${1:Param1}) $2' -p41104 -tp41105 -a(S'generate_and_send_response/1' -p41106 -S'generate_and_send_response(${1:ModData}) $2' -p41107 -tp41108 -a(S'is_disable_chunked_send/1' -p41109 -S'is_disable_chunked_send(${1:Db}) $2' -p41110 -tp41111 -a(S'map_status_code/2' -p41112 -S'map_status_code(${1:Param1}, ${2:Code}) $3' -p41113 -tp41114 -a(S'send_body/3' -p41115 -S'send_body(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p41116 -tp41117 -a(S'send_chunk/3' -p41118 -S'send_chunk(${1:Param1}, ${2:Response}, ${3:Param3}) $4' -p41119 -tp41120 -a(S'send_final_chunk/2' -p41121 -S'send_final_chunk(${1:Param1}, ${2:Param2}) $3' -p41122 -tp41123 -a(S'send_header/3' -p41124 -S'send_header() $1' -p41125 -tp41126 -a(S'send_status/3' -p41127 -S'send_status(${1:ModData}, ${2:Param2}, ${3:Param3}) $4' -p41128 -tp41129 -a(S'split_header/2' -p41130 -S'split_header(${1:Param1}, ${2:AccName}) $3' -p41131 -tp41132 -asS'wxDialog' -p41133 -(lp41134 -(S'cacheBestSize/2' -p41135 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p41136 -tp41137 -a(S'captureMouse/1' -p41138 -S'captureMouse(${1:This}) $2' -p41139 -tp41140 -a(S'center/1' -p41141 -S'center(${1:This}) $2' -p41142 -tp41143 -a(S'center/2' -p41144 -S'center(${1:This}, ${2:Options}) $3' -p41145 -tp41146 -a(S'centerOnParent/1' -p41147 -S'centerOnParent(${1:This}) $2' -p41148 -tp41149 -a(S'centerOnParent/2' -p41150 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p41151 -tp41152 -a(S'centerOnScreen/1' -p41153 -S'centerOnScreen(${1:This}) $2' -p41154 -tp41155 -a(S'centerOnScreen/2' -p41156 -S'centerOnScreen(${1:This}, ${2:Options}) $3' -p41157 -tp41158 -a(S'centre/1' -p41159 -S'centre(${1:This}) $2' -p41160 -tp41161 -a(S'centre/2' -p41162 -S'centre(${1:This}, ${2:Options}) $3' -p41163 -tp41164 -a(S'centreOnParent/1' -p41165 -S'centreOnParent(${1:This}) $2' -p41166 -tp41167 -a(S'centreOnParent/2' -p41168 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p41169 -tp41170 -a(S'centreOnScreen/1' -p41171 -S'centreOnScreen(${1:This}) $2' -p41172 -tp41173 -a(S'centreOnScreen/2' -p41174 -S'centreOnScreen(${1:This}, ${2:Options}) $3' -p41175 -tp41176 -a(S'clearBackground/1' -p41177 -S'clearBackground(${1:This}) $2' -p41178 -tp41179 -a(S'clientToScreen/2' -p41180 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p41181 -tp41182 -a(S'clientToScreen/3' -p41183 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p41184 -tp41185 -a(S'close/1' -p41186 -S'close(${1:This}) $2' -p41187 -tp41188 -a(S'close/2' -p41189 -S'close(${1:This}, ${2:Options}) $3' -p41190 -tp41191 -a(S'connect/2' -p41192 -S'connect(${1:This}, ${2:EventType}) $3' -p41193 -tp41194 -a(S'connect/3' -p41195 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p41196 -tp41197 -a(S'convertDialogToPixels/2' -p41198 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p41199 -tp41200 -a(S'convertPixelsToDialog/2' -p41201 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p41202 -tp41203 -a(S'create/4' -p41204 -S'create(${1:This}, ${2:Parent}, ${3:Id}, ${4:Title}) $5' -p41205 -tp41206 -a(S'create/5' -p41207 -S'create(${1:This}, ${2:Parent}, ${3:Id}, ${4:Title}, ${5:Param5}) $6' -p41208 -tp41209 -a(S'createButtonSizer/2' -p41210 -S'createButtonSizer(${1:This}, ${2:Flags}) $3' -p41211 -tp41212 -a(S'createStdDialogButtonSizer/2' -p41213 -S'createStdDialogButtonSizer(${1:This}, ${2:Flags}) $3' -p41214 -tp41215 -a(S'destroy/1' -p41216 -S'destroy(${1:This}) $2' -p41217 -tp41218 -a(S'destroyChildren/1' -p41219 -S'destroyChildren(${1:This}) $2' -p41220 -tp41221 -a(S'disable/1' -p41222 -S'disable(${1:This}) $2' -p41223 -tp41224 -a(S'disconnect/1' -p41225 -S'disconnect(${1:This}) $2' -p41226 -tp41227 -a(S'disconnect/2' -p41228 -S'disconnect(${1:This}, ${2:EventType}) $3' -p41229 -tp41230 -a(S'disconnect/3' -p41231 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p41232 -tp41233 -a(S'enable/1' -p41234 -S'enable(${1:This}) $2' -p41235 -tp41236 -a(S'enable/2' -p41237 -S'enable(${1:This}, ${2:Options}) $3' -p41238 -tp41239 -a(S'endModal/2' -p41240 -S'endModal(${1:This}, ${2:RetCode}) $3' -p41241 -tp41242 -a(S'findWindow/2' -p41243 -S'findWindow(${1:This}, ${2:Winid}) $3' -p41244 -tp41245 -a(S'fit/1' -p41246 -S'fit(${1:This}) $2' -p41247 -tp41248 -a(S'fitInside/1' -p41249 -S'fitInside(${1:This}) $2' -p41250 -tp41251 -a(S'freeze/1' -p41252 -S'freeze(${1:This}) $2' -p41253 -tp41254 -a(S'getAcceleratorTable/1' -p41255 -S'getAcceleratorTable(${1:This}) $2' -p41256 -tp41257 -a(S'getAffirmativeId/1' -p41258 -S'getAffirmativeId(${1:This}) $2' -p41259 -tp41260 -a(S'getBackgroundColour/1' -p41261 -S'getBackgroundColour(${1:This}) $2' -p41262 -tp41263 -a(S'getBackgroundStyle/1' -p41264 -S'getBackgroundStyle(${1:This}) $2' -p41265 -tp41266 -a(S'getBestSize/1' -p41267 -S'getBestSize(${1:This}) $2' -p41268 -tp41269 -a(S'getCaret/1' -p41270 -S'getCaret(${1:This}) $2' -p41271 -tp41272 -a(S'getCharHeight/1' -p41273 -S'getCharHeight(${1:This}) $2' -p41274 -tp41275 -a(S'getCharWidth/1' -p41276 -S'getCharWidth(${1:This}) $2' -p41277 -tp41278 -a(S'getChildren/1' -p41279 -S'getChildren(${1:This}) $2' -p41280 -tp41281 -a(S'getClientSize/1' -p41282 -S'getClientSize(${1:This}) $2' -p41283 -tp41284 -a(S'getContainingSizer/1' -p41285 -S'getContainingSizer(${1:This}) $2' -p41286 -tp41287 -a(S'getCursor/1' -p41288 -S'getCursor(${1:This}) $2' -p41289 -tp41290 -a(S'getDropTarget/1' -p41291 -S'getDropTarget(${1:This}) $2' -p41292 -tp41293 -a(S'getEventHandler/1' -p41294 -S'getEventHandler(${1:This}) $2' -p41295 -tp41296 -a(S'getExtraStyle/1' -p41297 -S'getExtraStyle(${1:This}) $2' -p41298 -tp41299 -a(S'getFont/1' -p41300 -S'getFont(${1:This}) $2' -p41301 -tp41302 -a(S'getForegroundColour/1' -p41303 -S'getForegroundColour(${1:This}) $2' -p41304 -tp41305 -a(S'getGrandParent/1' -p41306 -S'getGrandParent(${1:This}) $2' -p41307 -tp41308 -a(S'getHandle/1' -p41309 -S'getHandle(${1:This}) $2' -p41310 -tp41311 -a(S'getHelpText/1' -p41312 -S'getHelpText(${1:This}) $2' -p41313 -tp41314 -a(S'getIcon/1' -p41315 -S'getIcon(${1:This}) $2' -p41316 -tp41317 -a(S'getIcons/1' -p41318 -S'getIcons(${1:This}) $2' -p41319 -tp41320 -a(S'getId/1' -p41321 -S'getId(${1:This}) $2' -p41322 -tp41323 -a(S'getLabel/1' -p41324 -S'getLabel(${1:This}) $2' -p41325 -tp41326 -a(S'getMaxSize/1' -p41327 -S'getMaxSize(${1:This}) $2' -p41328 -tp41329 -a(S'getMinSize/1' -p41330 -S'getMinSize(${1:This}) $2' -p41331 -tp41332 -a(S'getName/1' -p41333 -S'getName(${1:This}) $2' -p41334 -tp41335 -a(S'getParent/1' -p41336 -S'getParent(${1:This}) $2' -p41337 -tp41338 -a(S'getPosition/1' -p41339 -S'getPosition(${1:This}) $2' -p41340 -tp41341 -a(S'getRect/1' -p41342 -S'getRect(${1:This}) $2' -p41343 -tp41344 -a(S'getReturnCode/1' -p41345 -S'getReturnCode(${1:This}) $2' -p41346 -tp41347 -a(S'getScreenPosition/1' -p41348 -S'getScreenPosition(${1:This}) $2' -p41349 -tp41350 -a(S'getScreenRect/1' -p41351 -S'getScreenRect(${1:This}) $2' -p41352 -tp41353 -a(S'getScrollPos/2' -p41354 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p41355 -tp41356 -a(S'getScrollRange/2' -p41357 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p41358 -tp41359 -a(S'getScrollThumb/2' -p41360 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p41361 -tp41362 -a(S'getSize/1' -p41363 -S'getSize(${1:This}) $2' -p41364 -tp41365 -a(S'getSizer/1' -p41366 -S'getSizer(${1:This}) $2' -p41367 -tp41368 -a(S'getTextExtent/2' -p41369 -S'getTextExtent(${1:This}, ${2:String}) $3' -p41370 -tp41371 -a(S'getTextExtent/3' -p41372 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p41373 -tp41374 -a(S'getTitle/1' -p41375 -S'getTitle(${1:This}) $2' -p41376 -tp41377 -a(S'getToolTip/1' -p41378 -S'getToolTip(${1:This}) $2' -p41379 -tp41380 -a(S'getUpdateRegion/1' -p41381 -S'getUpdateRegion(${1:This}) $2' -p41382 -tp41383 -a(S'getVirtualSize/1' -p41384 -S'getVirtualSize(${1:This}) $2' -p41385 -tp41386 -a(S'getWindowStyleFlag/1' -p41387 -S'getWindowStyleFlag(${1:This}) $2' -p41388 -tp41389 -a(S'getWindowVariant/1' -p41390 -S'getWindowVariant(${1:This}) $2' -p41391 -tp41392 -a(S'hasCapture/1' -p41393 -S'hasCapture(${1:This}) $2' -p41394 -tp41395 -a(S'hasScrollbar/2' -p41396 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p41397 -tp41398 -a(S'hasTransparentBackground/1' -p41399 -S'hasTransparentBackground(${1:This}) $2' -p41400 -tp41401 -a(S'hide/1' -p41402 -S'hide(${1:This}) $2' -p41403 -tp41404 -a(S'iconize/1' -p41405 -S'iconize(${1:This}) $2' -p41406 -tp41407 -a(S'iconize/2' -p41408 -S'iconize(${1:This}, ${2:Options}) $3' -p41409 -tp41410 -a(S'inheritAttributes/1' -p41411 -S'inheritAttributes(${1:This}) $2' -p41412 -tp41413 -a(S'initDialog/1' -p41414 -S'initDialog(${1:This}) $2' -p41415 -tp41416 -a(S'invalidateBestSize/1' -p41417 -S'invalidateBestSize(${1:This}) $2' -p41418 -tp41419 -a(S'isActive/1' -p41420 -S'isActive(${1:This}) $2' -p41421 -tp41422 -a(S'isEnabled/1' -p41423 -S'isEnabled(${1:This}) $2' -p41424 -tp41425 -a(S'isExposed/2' -p41426 -S'isExposed(${1:This}, ${2:Pt}) $3' -p41427 -tp41428 -a(S'isExposed/3' -p41429 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p41430 -tp41431 -a(S'isExposed/5' -p41432 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p41433 -tp41434 -a(S'isFullScreen/1' -p41435 -S'isFullScreen(${1:This}) $2' -p41436 -tp41437 -a(S'isIconized/1' -p41438 -S'isIconized(${1:This}) $2' -p41439 -tp41440 -a(S'isMaximized/1' -p41441 -S'isMaximized(${1:This}) $2' -p41442 -tp41443 -a(S'isModal/1' -p41444 -S'isModal(${1:This}) $2' -p41445 -tp41446 -a(S'isRetained/1' -p41447 -S'isRetained(${1:This}) $2' -p41448 -tp41449 -a(S'isShown/1' -p41450 -S'isShown(${1:This}) $2' -p41451 -tp41452 -a(S'isTopLevel/1' -p41453 -S'isTopLevel(${1:This}) $2' -p41454 -tp41455 -a(S'layout/1' -p41456 -S'layout(${1:This}) $2' -p41457 -tp41458 -a(S'lineDown/1' -p41459 -S'lineDown(${1:This}) $2' -p41460 -tp41461 -a(S'lineUp/1' -p41462 -S'lineUp(${1:This}) $2' -p41463 -tp41464 -a(S'lower/1' -p41465 -S'lower(${1:This}) $2' -p41466 -tp41467 -a(S'makeModal/1' -p41468 -S'makeModal(${1:This}) $2' -p41469 -tp41470 -a(S'makeModal/2' -p41471 -S'makeModal(${1:This}, ${2:Options}) $3' -p41472 -tp41473 -a(S'maximize/1' -p41474 -S'maximize(${1:This}) $2' -p41475 -tp41476 -a(S'maximize/2' -p41477 -S'maximize(${1:This}, ${2:Options}) $3' -p41478 -tp41479 -a(S'move/2' -p41480 -S'move(${1:This}, ${2:Pt}) $3' -p41481 -tp41482 -a(S'move/3' -p41483 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p41484 -tp41485 -a(S'move/4' -p41486 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p41487 -tp41488 -a(S'moveAfterInTabOrder/2' -p41489 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p41490 -tp41491 -a(S'moveBeforeInTabOrder/2' -p41492 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p41493 -tp41494 -a(S'navigate/1' -p41495 -S'navigate(${1:This}) $2' -p41496 -tp41497 -a(S'navigate/2' -p41498 -S'navigate(${1:This}, ${2:Options}) $3' -p41499 -tp41500 -a(S'new/0' -p41501 -S'new() $1' -p41502 -tp41503 -a(S'new/3' -p41504 -S'new(${1:Parent}, ${2:Id}, ${3:Title}) $4' -p41505 -tp41506 -a(S'new/4' -p41507 -S'new(${1:Parent}, ${2:Id}, ${3:Title}, ${4:Param4}) $5' -p41508 -tp41509 -a(S'pageDown/1' -p41510 -S'pageDown(${1:This}) $2' -p41511 -tp41512 -a(S'pageUp/1' -p41513 -S'pageUp(${1:This}) $2' -p41514 -tp41515 -a(S'parent_class/1' -p41516 -S'parent_class(${1:Param1}) $2' -p41517 -tp41518 -a(S'popEventHandler/1' -p41519 -S'popEventHandler(${1:This}) $2' -p41520 -tp41521 -a(S'popEventHandler/2' -p41522 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p41523 -tp41524 -a(S'popupMenu/2' -p41525 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p41526 -tp41527 -a(S'popupMenu/3' -p41528 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p41529 -tp41530 -a(S'popupMenu/4' -p41531 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p41532 -tp41533 -a(S'raise/1' -p41534 -S'raise(${1:This}) $2' -p41535 -tp41536 -a(S'refresh/1' -p41537 -S'refresh(${1:This}) $2' -p41538 -tp41539 -a(S'refresh/2' -p41540 -S'refresh(${1:This}, ${2:Options}) $3' -p41541 -tp41542 -a(S'refreshRect/2' -p41543 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p41544 -tp41545 -a(S'refreshRect/3' -p41546 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p41547 -tp41548 -a(S'releaseMouse/1' -p41549 -S'releaseMouse(${1:This}) $2' -p41550 -tp41551 -a(S'removeChild/2' -p41552 -S'removeChild(${1:This}, ${2:Child}) $3' -p41553 -tp41554 -a(S'reparent/2' -p41555 -S'reparent(${1:This}, ${2:NewParent}) $3' -p41556 -tp41557 -a(S'requestUserAttention/1' -p41558 -S'requestUserAttention(${1:This}) $2' -p41559 -tp41560 -a(S'requestUserAttention/2' -p41561 -S'requestUserAttention(${1:This}, ${2:Options}) $3' -p41562 -tp41563 -a(S'screenToClient/1' -p41564 -S'screenToClient(${1:This}) $2' -p41565 -tp41566 -a(S'screenToClient/2' -p41567 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p41568 -tp41569 -a(S'scrollLines/2' -p41570 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p41571 -tp41572 -a(S'scrollPages/2' -p41573 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p41574 -tp41575 -a(S'scrollWindow/3' -p41576 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p41577 -tp41578 -a(S'scrollWindow/4' -p41579 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p41580 -tp41581 -a(S'setAcceleratorTable/2' -p41582 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p41583 -tp41584 -a(S'setAffirmativeId/2' -p41585 -S'setAffirmativeId(${1:This}, ${2:AffirmativeId}) $3' -p41586 -tp41587 -a(S'setAutoLayout/2' -p41588 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p41589 -tp41590 -a(S'setBackgroundColour/2' -p41591 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p41592 -tp41593 -a(S'setBackgroundStyle/2' -p41594 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p41595 -tp41596 -a(S'setCaret/2' -p41597 -S'setCaret(${1:This}, ${2:Caret}) $3' -p41598 -tp41599 -a(S'setClientSize/2' -p41600 -S'setClientSize(${1:This}, ${2:Size}) $3' -p41601 -tp41602 -a(S'setClientSize/3' -p41603 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p41604 -tp41605 -a(S'setContainingSizer/2' -p41606 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p41607 -tp41608 -a(S'setCursor/2' -p41609 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p41610 -tp41611 -a(S'setDropTarget/2' -p41612 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p41613 -tp41614 -a(S'setExtraStyle/2' -p41615 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p41616 -tp41617 -a(S'setFocus/1' -p41618 -S'setFocus(${1:This}) $2' -p41619 -tp41620 -a(S'setFocusFromKbd/1' -p41621 -S'setFocusFromKbd(${1:This}) $2' -p41622 -tp41623 -a(S'setFont/2' -p41624 -S'setFont(${1:This}, ${2:Font}) $3' -p41625 -tp41626 -a(S'setForegroundColour/2' -p41627 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p41628 -tp41629 -a(S'setHelpText/2' -p41630 -S'setHelpText(${1:This}, ${2:Text}) $3' -p41631 -tp41632 -a(S'setIcon/2' -p41633 -S'setIcon(${1:This}, ${2:Icon}) $3' -p41634 -tp41635 -a(S'setIcons/2' -p41636 -S'setIcons(${1:This}, ${2:Icons}) $3' -p41637 -tp41638 -a(S'setId/2' -p41639 -S'setId(${1:This}, ${2:Winid}) $3' -p41640 -tp41641 -a(S'setLabel/2' -p41642 -S'setLabel(${1:This}, ${2:Label}) $3' -p41643 -tp41644 -a(S'setMaxSize/2' -p41645 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p41646 -tp41647 -a(S'setMinSize/2' -p41648 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p41649 -tp41650 -a(S'setName/2' -p41651 -S'setName(${1:This}, ${2:Name}) $3' -p41652 -tp41653 -a(S'setOwnBackgroundColour/2' -p41654 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p41655 -tp41656 -a(S'setOwnFont/2' -p41657 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p41658 -tp41659 -a(S'setOwnForegroundColour/2' -p41660 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p41661 -tp41662 -a(S'setPalette/2' -p41663 -S'setPalette(${1:This}, ${2:Pal}) $3' -p41664 -tp41665 -a(S'setReturnCode/2' -p41666 -S'setReturnCode(${1:This}, ${2:ReturnCode}) $3' -p41667 -tp41668 -a(S'setScrollPos/3' -p41669 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p41670 -tp41671 -a(S'setScrollPos/4' -p41672 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p41673 -tp41674 -a(S'setScrollbar/5' -p41675 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p41676 -tp41677 -a(S'setScrollbar/6' -p41678 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p41679 -tp41680 -a(S'setShape/2' -p41681 -S'setShape(${1:This}, ${2:Region}) $3' -p41682 -tp41683 -a(S'setSize/2' -p41684 -S'setSize(${1:This}, ${2:Rect}) $3' -p41685 -tp41686 -a(S'setSize/3' -p41687 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p41688 -tp41689 -a(S'setSize/5' -p41690 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p41691 -tp41692 -a(S'setSize/6' -p41693 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p41694 -tp41695 -a(S'setSizeHints/2' -p41696 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p41697 -tp41698 -a(S'setSizeHints/3' -p41699 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p41700 -tp41701 -a(S'setSizeHints/4' -p41702 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p41703 -tp41704 -a(S'setSizer/2' -p41705 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p41706 -tp41707 -a(S'setSizer/3' -p41708 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p41709 -tp41710 -a(S'setSizerAndFit/2' -p41711 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p41712 -tp41713 -a(S'setSizerAndFit/3' -p41714 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p41715 -tp41716 -a(S'setThemeEnabled/2' -p41717 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p41718 -tp41719 -a(S'setTitle/2' -p41720 -S'setTitle(${1:This}, ${2:Title}) $3' -p41721 -tp41722 -a(S'setToolTip/2' -p41723 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p41724 -tp41725 -a(S'setVirtualSize/2' -p41726 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p41727 -tp41728 -a(S'setVirtualSize/3' -p41729 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p41730 -tp41731 -a(S'setVirtualSizeHints/2' -p41732 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p41733 -tp41734 -a(S'setVirtualSizeHints/3' -p41735 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p41736 -tp41737 -a(S'setVirtualSizeHints/4' -p41738 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p41739 -tp41740 -a(S'setWindowStyle/2' -p41741 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p41742 -tp41743 -a(S'setWindowStyleFlag/2' -p41744 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p41745 -tp41746 -a(S'setWindowVariant/2' -p41747 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p41748 -tp41749 -a(S'shouldInheritColours/1' -p41750 -S'shouldInheritColours(${1:This}) $2' -p41751 -tp41752 -a(S'show/1' -p41753 -S'show(${1:This}) $2' -p41754 -tp41755 -a(S'show/2' -p41756 -S'show(${1:This}, ${2:Param2}) $3' -p41757 -tp41758 -a(S'showFullScreen/2' -p41759 -S'showFullScreen(${1:This}, ${2:Show}) $3' -p41760 -tp41761 -a(S'showFullScreen/3' -p41762 -S'showFullScreen(${1:This}, ${2:Show}, ${3:Options}) $4' -p41763 -tp41764 -a(S'showModal/1' -p41765 -S'showModal(${1:This}) $2' -p41766 -tp41767 -a(S'thaw/1' -p41768 -S'thaw(${1:This}) $2' -p41769 -tp41770 -a(S'transferDataFromWindow/1' -p41771 -S'transferDataFromWindow(${1:This}) $2' -p41772 -tp41773 -a(S'transferDataToWindow/1' -p41774 -S'transferDataToWindow(${1:This}) $2' -p41775 -tp41776 -a(S'update/1' -p41777 -S'update(${1:This}) $2' -p41778 -tp41779 -a(S'updateWindowUI/1' -p41780 -S'updateWindowUI(${1:This}) $2' -p41781 -tp41782 -a(S'updateWindowUI/2' -p41783 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p41784 -tp41785 -a(S'validate/1' -p41786 -S'validate(${1:This}) $2' -p41787 -tp41788 -a(S'warpPointer/3' -p41789 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p41790 -tp41791 -asS'CosNotifyComm_SequencePullSupplier' -p41792 -(lp41793 -(S'code_change/3' -p41794 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p41795 -tp41796 -a(S'disconnect_sequence_pull_supplier/1' -p41797 -S'disconnect_sequence_pull_supplier(${1:OE_THIS}) $2' -p41798 -tp41799 -a(S'disconnect_sequence_pull_supplier/2' -p41800 -S'disconnect_sequence_pull_supplier(${1:OE_THIS}, ${2:OE_Options}) $3' -p41801 -tp41802 -a(S'handle_call/3' -p41803 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p41804 -tp41805 -a(S'handle_cast/2' -p41806 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p41807 -tp41808 -a(S'handle_info/2' -p41809 -S'handle_info(${1:Param1}, ${2:State}) $3' -p41810 -tp41811 -a(S'init/1' -p41812 -S'init(${1:Env}) $2' -p41813 -tp41814 -a(S'oe_create/0' -p41815 -S'oe_create() $1' -p41816 -tp41817 -a(S'oe_create/1' -p41818 -S'oe_create(${1:Env}) $2' -p41819 -tp41820 -a(S'oe_create/2' -p41821 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p41822 -tp41823 -a(S'oe_create_link/0' -p41824 -S'oe_create_link() $1' -p41825 -tp41826 -a(S'oe_create_link/1' -p41827 -S'oe_create_link(${1:Env}) $2' -p41828 -tp41829 -a(S'oe_create_link/2' -p41830 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p41831 -tp41832 -a(S'oe_get_interface/0' -p41833 -S'oe_get_interface() $1' -p41834 -tp41835 -a(S'oe_is_a/1' -p41836 -S'oe_is_a(${1:Param1}) $2' -p41837 -tp41838 -a(S'oe_tc/1' -p41839 -S'oe_tc(${1:Param1}) $2' -p41840 -tp41841 -a(S'pull_structured_events/2' -p41842 -S'pull_structured_events(${1:OE_THIS}, ${2:Max_number}) $3' -p41843 -tp41844 -a(S'pull_structured_events/3' -p41845 -S'pull_structured_events(${1:OE_THIS}, ${2:OE_Options}, ${3:Max_number}) $4' -p41846 -tp41847 -a(S'subscription_change/3' -p41848 -S'subscription_change(${1:OE_THIS}, ${2:Added}, ${3:Removed}) $4' -p41849 -tp41850 -a(S'subscription_change/4' -p41851 -S'subscription_change(${1:OE_THIS}, ${2:OE_Options}, ${3:Added}, ${4:Removed}) $5' -p41852 -tp41853 -a(S'terminate/2' -p41854 -S'terminate(${1:Reason}, ${2:State}) $3' -p41855 -tp41856 -a(S'try_pull_structured_events/2' -p41857 -S'try_pull_structured_events(${1:OE_THIS}, ${2:Max_number}) $3' -p41858 -tp41859 -a(S'try_pull_structured_events/3' -p41860 -S'try_pull_structured_events(${1:OE_THIS}, ${2:OE_Options}, ${3:Max_number}) $4' -p41861 -tp41862 -a(S'typeID/0' -p41863 -S'typeID() $1' -p41864 -tp41865 -asS'percept_image' -p41866 -(lp41867 -(S'activities/3' -p41868 -S'activities(${1:Width}, ${2:Height}, ${3:Activities}) $4' -p41869 -tp41870 -a(S'activities/4' -p41871 -S'activities(${1:Width}, ${2:Height}, ${3:Param3}, ${4:Activities}) $5' -p41872 -tp41873 -a(S'graph/3' -p41874 -S'graph(${1:Width}, ${2:Height}, ${3:Data}) $4' -p41875 -tp41876 -a(S'graph/4' -p41877 -S'graph(${1:Width}, ${2:Height}, ${3:Param3}, ${4:Data}) $5' -p41878 -tp41879 -a(S'percentage/3' -p41880 -S'percentage(${1:Width}, ${2:Height}, ${3:Percentage}) $4' -p41881 -tp41882 -a(S'proc_lifetime/5' -p41883 -S'proc_lifetime(${1:Width}, ${2:Height}, ${3:Start}, ${4:End}, ${5:ProfileTime}) $6' -p41884 -tp41885 -asS'CosFileTransfer_ProtocolAddressList' -p41886 -(lp41887 -(S'id/0' -p41888 -S'id() $1' -p41889 -tp41890 -a(S'name/0' -p41891 -S'name() $1' -p41892 -tp41893 -a(S'tc/0' -p41894 -S'tc() $1' -p41895 -tp41896 -asS'wxShowEvent' -p41897 -(lp41898 -(S'getId/1' -p41899 -S'getId(${1:This}) $2' -p41900 -tp41901 -a(S'getShow/1' -p41902 -S'getShow(${1:This}) $2' -p41903 -tp41904 -a(S'getSkipped/1' -p41905 -S'getSkipped(${1:This}) $2' -p41906 -tp41907 -a(S'getTimestamp/1' -p41908 -S'getTimestamp(${1:This}) $2' -p41909 -tp41910 -a(S'isCommandEvent/1' -p41911 -S'isCommandEvent(${1:This}) $2' -p41912 -tp41913 -a(S'parent_class/1' -p41914 -S'parent_class(${1:Param1}) $2' -p41915 -tp41916 -a(S'resumePropagation/2' -p41917 -S'resumePropagation(${1:This}, ${2:PropagationLevel}) $3' -p41918 -tp41919 -a(S'setShow/2' -p41920 -S'setShow(${1:This}, ${2:Show}) $3' -p41921 -tp41922 -a(S'shouldPropagate/1' -p41923 -S'shouldPropagate(${1:This}) $2' -p41924 -tp41925 -a(S'skip/1' -p41926 -S'skip(${1:This}) $2' -p41927 -tp41928 -a(S'skip/2' -p41929 -S'skip(${1:This}, ${2:Options}) $3' -p41930 -tp41931 -a(S'stopPropagation/1' -p41932 -S'stopPropagation(${1:This}) $2' -p41933 -tp41934 -asS'wxMirrorDC' -p41935 -(lp41936 -(S'blit/5' -p41937 -S'blit(${1:This}, ${2:DestPt}, ${3:Sz}, ${4:Source}, ${5:SrcPt}) $6' -p41938 -tp41939 -a(S'blit/6' -p41940 -S'blit(${1:This}, ${2:DestPt}, ${3:Sz}, ${4:Source}, ${5:SrcPt}, ${6:Options}) $7' -p41941 -tp41942 -a(S'calcBoundingBox/3' -p41943 -S'calcBoundingBox(${1:This}, ${2:X}, ${3:Y}) $4' -p41944 -tp41945 -a(S'clear/1' -p41946 -S'clear(${1:This}) $2' -p41947 -tp41948 -a(S'computeScaleAndOrigin/1' -p41949 -S'computeScaleAndOrigin(${1:This}) $2' -p41950 -tp41951 -a(S'crossHair/2' -p41952 -S'crossHair(${1:This}, ${2:Pt}) $3' -p41953 -tp41954 -a(S'destroy/1' -p41955 -S'destroy(${1:This}) $2' -p41956 -tp41957 -a(S'destroyClippingRegion/1' -p41958 -S'destroyClippingRegion(${1:This}) $2' -p41959 -tp41960 -a(S'deviceToLogicalX/2' -p41961 -S'deviceToLogicalX(${1:This}, ${2:X}) $3' -p41962 -tp41963 -a(S'deviceToLogicalXRel/2' -p41964 -S'deviceToLogicalXRel(${1:This}, ${2:X}) $3' -p41965 -tp41966 -a(S'deviceToLogicalY/2' -p41967 -S'deviceToLogicalY(${1:This}, ${2:Y}) $3' -p41968 -tp41969 -a(S'deviceToLogicalYRel/2' -p41970 -S'deviceToLogicalYRel(${1:This}, ${2:Y}) $3' -p41971 -tp41972 -a(S'drawArc/4' -p41973 -S'drawArc(${1:This}, ${2:Pt1}, ${3:Pt2}, ${4:Centre}) $5' -p41974 -tp41975 -a(S'drawBitmap/3' -p41976 -S'drawBitmap(${1:This}, ${2:Bmp}, ${3:Pt}) $4' -p41977 -tp41978 -a(S'drawBitmap/4' -p41979 -S'drawBitmap(${1:This}, ${2:Bmp}, ${3:Pt}, ${4:Options}) $5' -p41980 -tp41981 -a(S'drawCheckMark/2' -p41982 -S'drawCheckMark(${1:This}, ${2:Rect}) $3' -p41983 -tp41984 -a(S'drawCircle/3' -p41985 -S'drawCircle(${1:This}, ${2:Pt}, ${3:Radius}) $4' -p41986 -tp41987 -a(S'drawEllipse/2' -p41988 -S'drawEllipse(${1:This}, ${2:Rect}) $3' -p41989 -tp41990 -a(S'drawEllipse/3' -p41991 -S'drawEllipse(${1:This}, ${2:Pt}, ${3:Sz}) $4' -p41992 -tp41993 -a(S'drawEllipticArc/5' -p41994 -S'drawEllipticArc(${1:This}, ${2:Pt}, ${3:Sz}, ${4:Sa}, ${5:Ea}) $6' -p41995 -tp41996 -a(S'drawIcon/3' -p41997 -S'drawIcon(${1:This}, ${2:Icon}, ${3:Pt}) $4' -p41998 -tp41999 -a(S'drawLabel/3' -p42000 -S'drawLabel(${1:This}, ${2:Text}, ${3:Rect}) $4' -p42001 -tp42002 -a(S'drawLabel/4' -p42003 -S'drawLabel(${1:This}, ${2:Text}, ${3:Rect}, ${4:Options}) $5' -p42004 -tp42005 -a(S'drawLine/3' -p42006 -S'drawLine(${1:This}, ${2:Pt1}, ${3:Pt2}) $4' -p42007 -tp42008 -a(S'drawLines/2' -p42009 -S'drawLines(${1:This}, ${2:Points}) $3' -p42010 -tp42011 -a(S'drawLines/3' -p42012 -S'drawLines(${1:This}, ${2:Points}, ${3:Options}) $4' -p42013 -tp42014 -a(S'drawPoint/2' -p42015 -S'drawPoint(${1:This}, ${2:Pt}) $3' -p42016 -tp42017 -a(S'drawPolygon/2' -p42018 -S'drawPolygon(${1:This}, ${2:Points}) $3' -p42019 -tp42020 -a(S'drawPolygon/3' -p42021 -S'drawPolygon(${1:This}, ${2:Points}, ${3:Options}) $4' -p42022 -tp42023 -a(S'drawRectangle/2' -p42024 -S'drawRectangle(${1:This}, ${2:Rect}) $3' -p42025 -tp42026 -a(S'drawRectangle/3' -p42027 -S'drawRectangle(${1:This}, ${2:Pt}, ${3:Sz}) $4' -p42028 -tp42029 -a(S'drawRotatedText/4' -p42030 -S'drawRotatedText(${1:This}, ${2:Text}, ${3:Pt}, ${4:Angle}) $5' -p42031 -tp42032 -a(S'drawRoundedRectangle/3' -p42033 -S'drawRoundedRectangle(${1:This}, ${2:R}, ${3:Radius}) $4' -p42034 -tp42035 -a(S'drawRoundedRectangle/4' -p42036 -S'drawRoundedRectangle(${1:This}, ${2:Pt}, ${3:Sz}, ${4:Radius}) $5' -p42037 -tp42038 -a(S'drawText/3' -p42039 -S'drawText(${1:This}, ${2:Text}, ${3:Pt}) $4' -p42040 -tp42041 -a(S'endDoc/1' -p42042 -S'endDoc(${1:This}) $2' -p42043 -tp42044 -a(S'endPage/1' -p42045 -S'endPage(${1:This}) $2' -p42046 -tp42047 -a(S'floodFill/3' -p42048 -S'floodFill(${1:This}, ${2:Pt}, ${3:Col}) $4' -p42049 -tp42050 -a(S'floodFill/4' -p42051 -S'floodFill(${1:This}, ${2:Pt}, ${3:Col}, ${4:Options}) $5' -p42052 -tp42053 -a(S'getBackground/1' -p42054 -S'getBackground(${1:This}) $2' -p42055 -tp42056 -a(S'getBackgroundMode/1' -p42057 -S'getBackgroundMode(${1:This}) $2' -p42058 -tp42059 -a(S'getBrush/1' -p42060 -S'getBrush(${1:This}) $2' -p42061 -tp42062 -a(S'getCharHeight/1' -p42063 -S'getCharHeight(${1:This}) $2' -p42064 -tp42065 -a(S'getCharWidth/1' -p42066 -S'getCharWidth(${1:This}) $2' -p42067 -tp42068 -a(S'getClippingBox/1' -p42069 -S'getClippingBox(${1:This}) $2' -p42070 -tp42071 -a(S'getFont/1' -p42072 -S'getFont(${1:This}) $2' -p42073 -tp42074 -a(S'getLayoutDirection/1' -p42075 -S'getLayoutDirection(${1:This}) $2' -p42076 -tp42077 -a(S'getLogicalFunction/1' -p42078 -S'getLogicalFunction(${1:This}) $2' -p42079 -tp42080 -a(S'getMapMode/1' -p42081 -S'getMapMode(${1:This}) $2' -p42082 -tp42083 -a(S'getMultiLineTextExtent/2' -p42084 -S'getMultiLineTextExtent(${1:This}, ${2:String}) $3' -p42085 -tp42086 -a(S'getMultiLineTextExtent/3' -p42087 -S'getMultiLineTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p42088 -tp42089 -a(S'getPPI/1' -p42090 -S'getPPI(${1:This}) $2' -p42091 -tp42092 -a(S'getPartialTextExtents/2' -p42093 -S'getPartialTextExtents(${1:This}, ${2:Text}) $3' -p42094 -tp42095 -a(S'getPen/1' -p42096 -S'getPen(${1:This}) $2' -p42097 -tp42098 -a(S'getPixel/2' -p42099 -S'getPixel(${1:This}, ${2:Pt}) $3' -p42100 -tp42101 -a(S'getSize/1' -p42102 -S'getSize(${1:This}) $2' -p42103 -tp42104 -a(S'getSizeMM/1' -p42105 -S'getSizeMM(${1:This}) $2' -p42106 -tp42107 -a(S'getTextBackground/1' -p42108 -S'getTextBackground(${1:This}) $2' -p42109 -tp42110 -a(S'getTextExtent/2' -p42111 -S'getTextExtent(${1:This}, ${2:String}) $3' -p42112 -tp42113 -a(S'getTextExtent/3' -p42114 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p42115 -tp42116 -a(S'getTextForeground/1' -p42117 -S'getTextForeground(${1:This}) $2' -p42118 -tp42119 -a(S'getUserScale/1' -p42120 -S'getUserScale(${1:This}) $2' -p42121 -tp42122 -a(S'gradientFillConcentric/4' -p42123 -S'gradientFillConcentric(${1:This}, ${2:Rect}, ${3:InitialColour}, ${4:DestColour}) $5' -p42124 -tp42125 -a(S'gradientFillConcentric/5' -p42126 -S'gradientFillConcentric(${1:This}, ${2:Rect}, ${3:InitialColour}, ${4:DestColour}, ${5:CircleCenter}) $6' -p42127 -tp42128 -a(S'gradientFillLinear/4' -p42129 -S'gradientFillLinear(${1:This}, ${2:Rect}, ${3:InitialColour}, ${4:DestColour}) $5' -p42130 -tp42131 -a(S'gradientFillLinear/5' -p42132 -S'gradientFillLinear(${1:This}, ${2:Rect}, ${3:InitialColour}, ${4:DestColour}, ${5:Options}) $6' -p42133 -tp42134 -a(S'isOk/1' -p42135 -S'isOk(${1:This}) $2' -p42136 -tp42137 -a(S'logicalToDeviceX/2' -p42138 -S'logicalToDeviceX(${1:This}, ${2:X}) $3' -p42139 -tp42140 -a(S'logicalToDeviceXRel/2' -p42141 -S'logicalToDeviceXRel(${1:This}, ${2:X}) $3' -p42142 -tp42143 -a(S'logicalToDeviceY/2' -p42144 -S'logicalToDeviceY(${1:This}, ${2:Y}) $3' -p42145 -tp42146 -a(S'logicalToDeviceYRel/2' -p42147 -S'logicalToDeviceYRel(${1:This}, ${2:Y}) $3' -p42148 -tp42149 -a(S'maxX/1' -p42150 -S'maxX(${1:This}) $2' -p42151 -tp42152 -a(S'maxY/1' -p42153 -S'maxY(${1:This}) $2' -p42154 -tp42155 -a(S'minX/1' -p42156 -S'minX(${1:This}) $2' -p42157 -tp42158 -a(S'minY/1' -p42159 -S'minY(${1:This}) $2' -p42160 -tp42161 -a(S'new/2' -p42162 -S'new(${1:Dc}, ${2:Mirror}) $3' -p42163 -tp42164 -a(S'parent_class/1' -p42165 -S'parent_class(${1:Param1}) $2' -p42166 -tp42167 -a(S'resetBoundingBox/1' -p42168 -S'resetBoundingBox(${1:This}) $2' -p42169 -tp42170 -a(S'setAxisOrientation/3' -p42171 -S'setAxisOrientation(${1:This}, ${2:XLeftRight}, ${3:YBottomUp}) $4' -p42172 -tp42173 -a(S'setBackground/2' -p42174 -S'setBackground(${1:This}, ${2:Brush}) $3' -p42175 -tp42176 -a(S'setBackgroundMode/2' -p42177 -S'setBackgroundMode(${1:This}, ${2:Mode}) $3' -p42178 -tp42179 -a(S'setBrush/2' -p42180 -S'setBrush(${1:This}, ${2:Brush}) $3' -p42181 -tp42182 -a(S'setClippingRegion/2' -p42183 -S'setClippingRegion(${1:This}, ${2:Region}) $3' -p42184 -tp42185 -a(S'setClippingRegion/3' -p42186 -S'setClippingRegion(${1:This}, ${2:Pt}, ${3:Sz}) $4' -p42187 -tp42188 -a(S'setDeviceOrigin/3' -p42189 -S'setDeviceOrigin(${1:This}, ${2:X}, ${3:Y}) $4' -p42190 -tp42191 -a(S'setFont/2' -p42192 -S'setFont(${1:This}, ${2:Font}) $3' -p42193 -tp42194 -a(S'setLayoutDirection/2' -p42195 -S'setLayoutDirection(${1:This}, ${2:Dir}) $3' -p42196 -tp42197 -a(S'setLogicalFunction/2' -p42198 -S'setLogicalFunction(${1:This}, ${2:Function}) $3' -p42199 -tp42200 -a(S'setMapMode/2' -p42201 -S'setMapMode(${1:This}, ${2:Mode}) $3' -p42202 -tp42203 -a(S'setPalette/2' -p42204 -S'setPalette(${1:This}, ${2:Palette}) $3' -p42205 -tp42206 -a(S'setPen/2' -p42207 -S'setPen(${1:This}, ${2:Pen}) $3' -p42208 -tp42209 -a(S'setTextBackground/2' -p42210 -S'setTextBackground(${1:This}, ${2:Colour}) $3' -p42211 -tp42212 -a(S'setTextForeground/2' -p42213 -S'setTextForeground(${1:This}, ${2:Colour}) $3' -p42214 -tp42215 -a(S'setUserScale/3' -p42216 -S'setUserScale(${1:This}, ${2:X}, ${3:Y}) $4' -p42217 -tp42218 -a(S'startDoc/2' -p42219 -S'startDoc(${1:This}, ${2:Message}) $3' -p42220 -tp42221 -a(S'startPage/1' -p42222 -S'startPage(${1:This}) $2' -p42223 -tp42224 -asS'mnesia_kernel_sup' -p42225 -(lp42226 -(S'init/1' -p42227 -S'init(${1:Param1}) $2' -p42228 -tp42229 -a(S'start/0' -p42230 -S'start() $1' -p42231 -tp42232 -a(S'supervisor_timeout/1' -p42233 -S'supervisor_timeout(${1:KillAfter}) $2' -p42234 -tp42235 -asS'wxControlWithItems' -p42236 -(lp42237 -(S'append/2' -p42238 -S'append(${1:This}, ${2:Item}) $3' -p42239 -tp42240 -a(S'append/3' -p42241 -S'append(${1:This}, ${2:Item}, ${3:ClientData}) $4' -p42242 -tp42243 -a(S'appendStrings/2' -p42244 -S'appendStrings(${1:This}, ${2:Strings}) $3' -p42245 -tp42246 -a(S'cacheBestSize/2' -p42247 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p42248 -tp42249 -a(S'captureMouse/1' -p42250 -S'captureMouse(${1:This}) $2' -p42251 -tp42252 -a(S'center/1' -p42253 -S'center(${1:This}) $2' -p42254 -tp42255 -a(S'center/2' -p42256 -S'center(${1:This}, ${2:Options}) $3' -p42257 -tp42258 -a(S'centerOnParent/1' -p42259 -S'centerOnParent(${1:This}) $2' -p42260 -tp42261 -a(S'centerOnParent/2' -p42262 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p42263 -tp42264 -a(S'centre/1' -p42265 -S'centre(${1:This}) $2' -p42266 -tp42267 -a(S'centre/2' -p42268 -S'centre(${1:This}, ${2:Options}) $3' -p42269 -tp42270 -a(S'centreOnParent/1' -p42271 -S'centreOnParent(${1:This}) $2' -p42272 -tp42273 -a(S'centreOnParent/2' -p42274 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p42275 -tp42276 -a(S'clear/1' -p42277 -S'clear(${1:This}) $2' -p42278 -tp42279 -a(S'clearBackground/1' -p42280 -S'clearBackground(${1:This}) $2' -p42281 -tp42282 -a(S'clientToScreen/2' -p42283 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p42284 -tp42285 -a(S'clientToScreen/3' -p42286 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p42287 -tp42288 -a(S'close/1' -p42289 -S'close(${1:This}) $2' -p42290 -tp42291 -a(S'close/2' -p42292 -S'close(${1:This}, ${2:Options}) $3' -p42293 -tp42294 -a(S'connect/2' -p42295 -S'connect(${1:This}, ${2:EventType}) $3' -p42296 -tp42297 -a(S'connect/3' -p42298 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p42299 -tp42300 -a(S'convertDialogToPixels/2' -p42301 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p42302 -tp42303 -a(S'convertPixelsToDialog/2' -p42304 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p42305 -tp42306 -a(S'delete/2' -p42307 -S'delete(${1:This}, ${2:N}) $3' -p42308 -tp42309 -a(S'destroyChildren/1' -p42310 -S'destroyChildren(${1:This}) $2' -p42311 -tp42312 -a(S'disable/1' -p42313 -S'disable(${1:This}) $2' -p42314 -tp42315 -a(S'disconnect/1' -p42316 -S'disconnect(${1:This}) $2' -p42317 -tp42318 -a(S'disconnect/2' -p42319 -S'disconnect(${1:This}, ${2:EventType}) $3' -p42320 -tp42321 -a(S'disconnect/3' -p42322 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p42323 -tp42324 -a(S'enable/1' -p42325 -S'enable(${1:This}) $2' -p42326 -tp42327 -a(S'enable/2' -p42328 -S'enable(${1:This}, ${2:Options}) $3' -p42329 -tp42330 -a(S'findString/2' -p42331 -S'findString(${1:This}, ${2:S}) $3' -p42332 -tp42333 -a(S'findString/3' -p42334 -S'findString(${1:This}, ${2:S}, ${3:Param3}) $4' -p42335 -tp42336 -a(S'findWindow/2' -p42337 -S'findWindow(${1:This}, ${2:Winid}) $3' -p42338 -tp42339 -a(S'fit/1' -p42340 -S'fit(${1:This}) $2' -p42341 -tp42342 -a(S'fitInside/1' -p42343 -S'fitInside(${1:This}) $2' -p42344 -tp42345 -a(S'freeze/1' -p42346 -S'freeze(${1:This}) $2' -p42347 -tp42348 -a(S'getAcceleratorTable/1' -p42349 -S'getAcceleratorTable(${1:This}) $2' -p42350 -tp42351 -a(S'getBackgroundColour/1' -p42352 -S'getBackgroundColour(${1:This}) $2' -p42353 -tp42354 -a(S'getBackgroundStyle/1' -p42355 -S'getBackgroundStyle(${1:This}) $2' -p42356 -tp42357 -a(S'getBestSize/1' -p42358 -S'getBestSize(${1:This}) $2' -p42359 -tp42360 -a(S'getCaret/1' -p42361 -S'getCaret(${1:This}) $2' -p42362 -tp42363 -a(S'getCharHeight/1' -p42364 -S'getCharHeight(${1:This}) $2' -p42365 -tp42366 -a(S'getCharWidth/1' -p42367 -S'getCharWidth(${1:This}) $2' -p42368 -tp42369 -a(S'getChildren/1' -p42370 -S'getChildren(${1:This}) $2' -p42371 -tp42372 -a(S'getClientData/2' -p42373 -S'getClientData(${1:This}, ${2:N}) $3' -p42374 -tp42375 -a(S'getClientSize/1' -p42376 -S'getClientSize(${1:This}) $2' -p42377 -tp42378 -a(S'getContainingSizer/1' -p42379 -S'getContainingSizer(${1:This}) $2' -p42380 -tp42381 -a(S'getCount/1' -p42382 -S'getCount(${1:This}) $2' -p42383 -tp42384 -a(S'getCursor/1' -p42385 -S'getCursor(${1:This}) $2' -p42386 -tp42387 -a(S'getDropTarget/1' -p42388 -S'getDropTarget(${1:This}) $2' -p42389 -tp42390 -a(S'getEventHandler/1' -p42391 -S'getEventHandler(${1:This}) $2' -p42392 -tp42393 -a(S'getExtraStyle/1' -p42394 -S'getExtraStyle(${1:This}) $2' -p42395 -tp42396 -a(S'getFont/1' -p42397 -S'getFont(${1:This}) $2' -p42398 -tp42399 -a(S'getForegroundColour/1' -p42400 -S'getForegroundColour(${1:This}) $2' -p42401 -tp42402 -a(S'getGrandParent/1' -p42403 -S'getGrandParent(${1:This}) $2' -p42404 -tp42405 -a(S'getHandle/1' -p42406 -S'getHandle(${1:This}) $2' -p42407 -tp42408 -a(S'getHelpText/1' -p42409 -S'getHelpText(${1:This}) $2' -p42410 -tp42411 -a(S'getId/1' -p42412 -S'getId(${1:This}) $2' -p42413 -tp42414 -a(S'getLabel/1' -p42415 -S'getLabel(${1:This}) $2' -p42416 -tp42417 -a(S'getMaxSize/1' -p42418 -S'getMaxSize(${1:This}) $2' -p42419 -tp42420 -a(S'getMinSize/1' -p42421 -S'getMinSize(${1:This}) $2' -p42422 -tp42423 -a(S'getName/1' -p42424 -S'getName(${1:This}) $2' -p42425 -tp42426 -a(S'getParent/1' -p42427 -S'getParent(${1:This}) $2' -p42428 -tp42429 -a(S'getPosition/1' -p42430 -S'getPosition(${1:This}) $2' -p42431 -tp42432 -a(S'getRect/1' -p42433 -S'getRect(${1:This}) $2' -p42434 -tp42435 -a(S'getScreenPosition/1' -p42436 -S'getScreenPosition(${1:This}) $2' -p42437 -tp42438 -a(S'getScreenRect/1' -p42439 -S'getScreenRect(${1:This}) $2' -p42440 -tp42441 -a(S'getScrollPos/2' -p42442 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p42443 -tp42444 -a(S'getScrollRange/2' -p42445 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p42446 -tp42447 -a(S'getScrollThumb/2' -p42448 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p42449 -tp42450 -a(S'getSelection/1' -p42451 -S'getSelection(${1:This}) $2' -p42452 -tp42453 -a(S'getSize/1' -p42454 -S'getSize(${1:This}) $2' -p42455 -tp42456 -a(S'getSizer/1' -p42457 -S'getSizer(${1:This}) $2' -p42458 -tp42459 -a(S'getString/2' -p42460 -S'getString(${1:This}, ${2:N}) $3' -p42461 -tp42462 -a(S'getStringSelection/1' -p42463 -S'getStringSelection(${1:This}) $2' -p42464 -tp42465 -a(S'getTextExtent/2' -p42466 -S'getTextExtent(${1:This}, ${2:String}) $3' -p42467 -tp42468 -a(S'getTextExtent/3' -p42469 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p42470 -tp42471 -a(S'getToolTip/1' -p42472 -S'getToolTip(${1:This}) $2' -p42473 -tp42474 -a(S'getUpdateRegion/1' -p42475 -S'getUpdateRegion(${1:This}) $2' -p42476 -tp42477 -a(S'getVirtualSize/1' -p42478 -S'getVirtualSize(${1:This}) $2' -p42479 -tp42480 -a(S'getWindowStyleFlag/1' -p42481 -S'getWindowStyleFlag(${1:This}) $2' -p42482 -tp42483 -a(S'getWindowVariant/1' -p42484 -S'getWindowVariant(${1:This}) $2' -p42485 -tp42486 -a(S'hasCapture/1' -p42487 -S'hasCapture(${1:This}) $2' -p42488 -tp42489 -a(S'hasScrollbar/2' -p42490 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p42491 -tp42492 -a(S'hasTransparentBackground/1' -p42493 -S'hasTransparentBackground(${1:This}) $2' -p42494 -tp42495 -a(S'hide/1' -p42496 -S'hide(${1:This}) $2' -p42497 -tp42498 -a(S'inheritAttributes/1' -p42499 -S'inheritAttributes(${1:This}) $2' -p42500 -tp42501 -a(S'initDialog/1' -p42502 -S'initDialog(${1:This}) $2' -p42503 -tp42504 -a(S'insert/3' -p42505 -S'insert(${1:This}, ${2:Item}, ${3:Pos}) $4' -p42506 -tp42507 -a(S'insert/4' -p42508 -S'insert(${1:This}, ${2:Item}, ${3:Pos}, ${4:ClientData}) $5' -p42509 -tp42510 -a(S'invalidateBestSize/1' -p42511 -S'invalidateBestSize(${1:This}) $2' -p42512 -tp42513 -a(S'isEmpty/1' -p42514 -S'isEmpty(${1:This}) $2' -p42515 -tp42516 -a(S'isEnabled/1' -p42517 -S'isEnabled(${1:This}) $2' -p42518 -tp42519 -a(S'isExposed/2' -p42520 -S'isExposed(${1:This}, ${2:Pt}) $3' -p42521 -tp42522 -a(S'isExposed/3' -p42523 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p42524 -tp42525 -a(S'isExposed/5' -p42526 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p42527 -tp42528 -a(S'isRetained/1' -p42529 -S'isRetained(${1:This}) $2' -p42530 -tp42531 -a(S'isShown/1' -p42532 -S'isShown(${1:This}) $2' -p42533 -tp42534 -a(S'isTopLevel/1' -p42535 -S'isTopLevel(${1:This}) $2' -p42536 -tp42537 -a(S'layout/1' -p42538 -S'layout(${1:This}) $2' -p42539 -tp42540 -a(S'lineDown/1' -p42541 -S'lineDown(${1:This}) $2' -p42542 -tp42543 -a(S'lineUp/1' -p42544 -S'lineUp(${1:This}) $2' -p42545 -tp42546 -a(S'lower/1' -p42547 -S'lower(${1:This}) $2' -p42548 -tp42549 -a(S'makeModal/1' -p42550 -S'makeModal(${1:This}) $2' -p42551 -tp42552 -a(S'makeModal/2' -p42553 -S'makeModal(${1:This}, ${2:Options}) $3' -p42554 -tp42555 -a(S'move/2' -p42556 -S'move(${1:This}, ${2:Pt}) $3' -p42557 -tp42558 -a(S'move/3' -p42559 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p42560 -tp42561 -a(S'move/4' -p42562 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p42563 -tp42564 -a(S'moveAfterInTabOrder/2' -p42565 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p42566 -tp42567 -a(S'moveBeforeInTabOrder/2' -p42568 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p42569 -tp42570 -a(S'navigate/1' -p42571 -S'navigate(${1:This}) $2' -p42572 -tp42573 -a(S'navigate/2' -p42574 -S'navigate(${1:This}, ${2:Options}) $3' -p42575 -tp42576 -a(S'pageDown/1' -p42577 -S'pageDown(${1:This}) $2' -p42578 -tp42579 -a(S'pageUp/1' -p42580 -S'pageUp(${1:This}) $2' -p42581 -tp42582 -a(S'parent_class/1' -p42583 -S'parent_class(${1:Param1}) $2' -p42584 -tp42585 -a(S'popEventHandler/1' -p42586 -S'popEventHandler(${1:This}) $2' -p42587 -tp42588 -a(S'popEventHandler/2' -p42589 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p42590 -tp42591 -a(S'popupMenu/2' -p42592 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p42593 -tp42594 -a(S'popupMenu/3' -p42595 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p42596 -tp42597 -a(S'popupMenu/4' -p42598 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p42599 -tp42600 -a(S'raise/1' -p42601 -S'raise(${1:This}) $2' -p42602 -tp42603 -a(S'refresh/1' -p42604 -S'refresh(${1:This}) $2' -p42605 -tp42606 -a(S'refresh/2' -p42607 -S'refresh(${1:This}, ${2:Options}) $3' -p42608 -tp42609 -a(S'refreshRect/2' -p42610 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p42611 -tp42612 -a(S'refreshRect/3' -p42613 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p42614 -tp42615 -a(S'releaseMouse/1' -p42616 -S'releaseMouse(${1:This}) $2' -p42617 -tp42618 -a(S'removeChild/2' -p42619 -S'removeChild(${1:This}, ${2:Child}) $3' -p42620 -tp42621 -a(S'reparent/2' -p42622 -S'reparent(${1:This}, ${2:NewParent}) $3' -p42623 -tp42624 -a(S'screenToClient/1' -p42625 -S'screenToClient(${1:This}) $2' -p42626 -tp42627 -a(S'screenToClient/2' -p42628 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p42629 -tp42630 -a(S'scrollLines/2' -p42631 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p42632 -tp42633 -a(S'scrollPages/2' -p42634 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p42635 -tp42636 -a(S'scrollWindow/3' -p42637 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p42638 -tp42639 -a(S'scrollWindow/4' -p42640 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p42641 -tp42642 -a(S'select/2' -p42643 -S'select(${1:This}, ${2:N}) $3' -p42644 -tp42645 -a(S'setAcceleratorTable/2' -p42646 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p42647 -tp42648 -a(S'setAutoLayout/2' -p42649 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p42650 -tp42651 -a(S'setBackgroundColour/2' -p42652 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p42653 -tp42654 -a(S'setBackgroundStyle/2' -p42655 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p42656 -tp42657 -a(S'setCaret/2' -p42658 -S'setCaret(${1:This}, ${2:Caret}) $3' -p42659 -tp42660 -a(S'setClientData/3' -p42661 -S'setClientData(${1:This}, ${2:N}, ${3:ClientData}) $4' -p42662 -tp42663 -a(S'setClientSize/2' -p42664 -S'setClientSize(${1:This}, ${2:Size}) $3' -p42665 -tp42666 -a(S'setClientSize/3' -p42667 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p42668 -tp42669 -a(S'setContainingSizer/2' -p42670 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p42671 -tp42672 -a(S'setCursor/2' -p42673 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p42674 -tp42675 -a(S'setDropTarget/2' -p42676 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p42677 -tp42678 -a(S'setExtraStyle/2' -p42679 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p42680 -tp42681 -a(S'setFocus/1' -p42682 -S'setFocus(${1:This}) $2' -p42683 -tp42684 -a(S'setFocusFromKbd/1' -p42685 -S'setFocusFromKbd(${1:This}) $2' -p42686 -tp42687 -a(S'setFont/2' -p42688 -S'setFont(${1:This}, ${2:Font}) $3' -p42689 -tp42690 -a(S'setForegroundColour/2' -p42691 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p42692 -tp42693 -a(S'setHelpText/2' -p42694 -S'setHelpText(${1:This}, ${2:Text}) $3' -p42695 -tp42696 -a(S'setId/2' -p42697 -S'setId(${1:This}, ${2:Winid}) $3' -p42698 -tp42699 -a(S'setLabel/2' -p42700 -S'setLabel(${1:This}, ${2:Label}) $3' -p42701 -tp42702 -a(S'setMaxSize/2' -p42703 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p42704 -tp42705 -a(S'setMinSize/2' -p42706 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p42707 -tp42708 -a(S'setName/2' -p42709 -S'setName(${1:This}, ${2:Name}) $3' -p42710 -tp42711 -a(S'setOwnBackgroundColour/2' -p42712 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p42713 -tp42714 -a(S'setOwnFont/2' -p42715 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p42716 -tp42717 -a(S'setOwnForegroundColour/2' -p42718 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p42719 -tp42720 -a(S'setPalette/2' -p42721 -S'setPalette(${1:This}, ${2:Pal}) $3' -p42722 -tp42723 -a(S'setScrollPos/3' -p42724 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p42725 -tp42726 -a(S'setScrollPos/4' -p42727 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p42728 -tp42729 -a(S'setScrollbar/5' -p42730 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p42731 -tp42732 -a(S'setScrollbar/6' -p42733 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p42734 -tp42735 -a(S'setSelection/2' -p42736 -S'setSelection(${1:This}, ${2:N}) $3' -p42737 -tp42738 -a(S'setSize/2' -p42739 -S'setSize(${1:This}, ${2:Rect}) $3' -p42740 -tp42741 -a(S'setSize/3' -p42742 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p42743 -tp42744 -a(S'setSize/5' -p42745 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p42746 -tp42747 -a(S'setSize/6' -p42748 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p42749 -tp42750 -a(S'setSizeHints/2' -p42751 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p42752 -tp42753 -a(S'setSizeHints/3' -p42754 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p42755 -tp42756 -a(S'setSizeHints/4' -p42757 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p42758 -tp42759 -a(S'setSizer/2' -p42760 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p42761 -tp42762 -a(S'setSizer/3' -p42763 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p42764 -tp42765 -a(S'setSizerAndFit/2' -p42766 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p42767 -tp42768 -a(S'setSizerAndFit/3' -p42769 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p42770 -tp42771 -a(S'setString/3' -p42772 -S'setString(${1:This}, ${2:N}, ${3:S}) $4' -p42773 -tp42774 -a(S'setStringSelection/2' -p42775 -S'setStringSelection(${1:This}, ${2:S}) $3' -p42776 -tp42777 -a(S'setThemeEnabled/2' -p42778 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p42779 -tp42780 -a(S'setToolTip/2' -p42781 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p42782 -tp42783 -a(S'setVirtualSize/2' -p42784 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p42785 -tp42786 -a(S'setVirtualSize/3' -p42787 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p42788 -tp42789 -a(S'setVirtualSizeHints/2' -p42790 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p42791 -tp42792 -a(S'setVirtualSizeHints/3' -p42793 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p42794 -tp42795 -a(S'setVirtualSizeHints/4' -p42796 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p42797 -tp42798 -a(S'setWindowStyle/2' -p42799 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p42800 -tp42801 -a(S'setWindowStyleFlag/2' -p42802 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p42803 -tp42804 -a(S'setWindowVariant/2' -p42805 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p42806 -tp42807 -a(S'shouldInheritColours/1' -p42808 -S'shouldInheritColours(${1:This}) $2' -p42809 -tp42810 -a(S'show/1' -p42811 -S'show(${1:This}) $2' -p42812 -tp42813 -a(S'show/2' -p42814 -S'show(${1:This}, ${2:Options}) $3' -p42815 -tp42816 -a(S'thaw/1' -p42817 -S'thaw(${1:This}) $2' -p42818 -tp42819 -a(S'transferDataFromWindow/1' -p42820 -S'transferDataFromWindow(${1:This}) $2' -p42821 -tp42822 -a(S'transferDataToWindow/1' -p42823 -S'transferDataToWindow(${1:This}) $2' -p42824 -tp42825 -a(S'update/1' -p42826 -S'update(${1:This}) $2' -p42827 -tp42828 -a(S'updateWindowUI/1' -p42829 -S'updateWindowUI(${1:This}) $2' -p42830 -tp42831 -a(S'updateWindowUI/2' -p42832 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p42833 -tp42834 -a(S'validate/1' -p42835 -S'validate(${1:This}) $2' -p42836 -tp42837 -a(S'warpPointer/3' -p42838 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p42839 -tp42840 -asS'httpd' -p42841 -(lp42842 -(S'get_admin_state/0' -p42843 -S'get_admin_state() $1' -p42844 -tp42845 -a(S'get_admin_state/1' -p42846 -S'get_admin_state(${1:Port}) $2' -p42847 -tp42848 -a(S'get_admin_state/2' -p42849 -S'get_admin_state(${1:Addr}, ${2:Port}) $3' -p42850 -tp42851 -a(S'get_status/1' -p42852 -S'get_status(${1:ConfigFile}) $2' -p42853 -tp42854 -a(S'get_status/2' -p42855 -S'get_status(${1:Port}, ${2:Timeout}) $3' -p42856 -tp42857 -a(S'get_status/3' -p42858 -S'get_status(${1:Addr}, ${2:Port}, ${3:Timeout}) $4' -p42859 -tp42860 -a(S'get_usage_state/0' -p42861 -S'get_usage_state() $1' -p42862 -tp42863 -a(S'get_usage_state/1' -p42864 -S'get_usage_state(${1:Port}) $2' -p42865 -tp42866 -a(S'get_usage_state/2' -p42867 -S'get_usage_state(${1:Addr}, ${2:Port}) $3' -p42868 -tp42869 -a(S'info/1' -p42870 -S'info(${1:Pid}) $2' -p42871 -tp42872 -a(S'info/2' -p42873 -S'info(${1:Pid}, ${2:Properties}) $3' -p42874 -tp42875 -a(S'info/3' -p42876 -S'info() $1' -p42877 -tp42878 -a(S'parse_query/1' -p42879 -S'parse_query(${1:String}) $2' -p42880 -tp42881 -a(S'reload_config/2' -p42882 -S'reload_config(${1:ConfigFile}, ${2:Mode}) $3' -p42883 -tp42884 -a(S'service_info/1' -p42885 -S'service_info(${1:Pid}) $2' -p42886 -tp42887 -a(S'services/0' -p42888 -S'services() $1' -p42889 -tp42890 -a(S'start_service/1' -p42891 -S'start_service(${1:Conf}) $2' -p42892 -tp42893 -a(S'start_standalone/1' -p42894 -S'start_standalone(${1:Config}) $2' -p42895 -tp42896 -a(S'stop_service/1' -p42897 -S'stop_service(${1:Pid}) $2' -p42898 -tp42899 -asS'httpc' -p42900 -(lp42901 -(S'cancel_request/1' -p42902 -S'cancel_request(${1:RequestId}) $2' -p42903 -tp42904 -a(S'cancel_request/2' -p42905 -S'cancel_request() $1' -p42906 -tp42907 -a(S'cookie_header/1' -p42908 -S'cookie_header(${1:Url}) $2' -p42909 -tp42910 -a(S'cookie_header/2' -p42911 -S'cookie_header(${1:Url}, ${2:Profile}) $3' -p42912 -tp42913 -a(S'cookie_header/3' -p42914 -S'cookie_header() $1' -p42915 -tp42916 -a(S'default_profile/0' -p42917 -S'default_profile() $1' -p42918 -tp42919 -a(S'get_option/1' -p42920 -S'get_option(${1:Key}) $2' -p42921 -tp42922 -a(S'get_option/2' -p42923 -S'get_option(${1:Key}, ${2:Profile}) $3' -p42924 -tp42925 -a(S'get_options/1' -p42926 -S'get_options(${1:Options}) $2' -p42927 -tp42928 -a(S'get_options/2' -p42929 -S'get_options(${1:Param1}, ${2:Profile}) $3' -p42930 -tp42931 -a(S'info/0' -p42932 -S'info() $1' -p42933 -tp42934 -a(S'info/1' -p42935 -S'info(${1:Profile}) $2' -p42936 -tp42937 -a(S'profile_name/1' -p42938 -S'profile_name(${1:Profile}) $2' -p42939 -tp42940 -a(S'profile_name/2' -p42941 -S'profile_name(${1:Prefix}, ${2:Profile}) $3' -p42942 -tp42943 -a(S'request/1' -p42944 -S'request(${1:Url}) $2' -p42945 -tp42946 -a(S'request/2' -p42947 -S'request(${1:Url}, ${2:Profile}) $3' -p42948 -tp42949 -a(S'request/4' -p42950 -S'request(${1:Method}, ${2:Request}, ${3:HttpOptions}, ${4:Options}) $5' -p42951 -tp42952 -a(S'request/5' -p42953 -S'request() $1' -p42954 -tp42955 -a(S'reset_cookies/0' -p42956 -S'reset_cookies() $1' -p42957 -tp42958 -a(S'reset_cookies/1' -p42959 -S'reset_cookies(${1:Profile}) $2' -p42960 -tp42961 -a(S'service_info/1' -p42962 -S'service_info(${1:Pid}) $2' -p42963 -tp42964 -a(S'services/0' -p42965 -S'services() $1' -p42966 -tp42967 -a(S'set_option/2' -p42968 -S'set_option(${1:Key}, ${2:Value}) $3' -p42969 -tp42970 -a(S'set_option/3' -p42971 -S'set_option(${1:Key}, ${2:Value}, ${3:Profile}) $4' -p42972 -tp42973 -a(S'set_options/1' -p42974 -S'set_options(${1:Options}) $2' -p42975 -tp42976 -a(S'set_options/2' -p42977 -S'set_options(${1:Options}, ${2:Profile}) $3' -p42978 -tp42979 -a(S'start_service/1' -p42980 -S'start_service(${1:Config}) $2' -p42981 -tp42982 -a(S'start_standalone/1' -p42983 -S'start_standalone(${1:PropList}) $2' -p42984 -tp42985 -a(S'stop_service/1' -p42986 -S'stop_service(${1:Profile}) $2' -p42987 -tp42988 -a(S'store_cookies/2' -p42989 -S'store_cookies(${1:SetCookieHeaders}, ${2:Url}) $3' -p42990 -tp42991 -a(S'store_cookies/3' -p42992 -S'store_cookies() $1' -p42993 -tp42994 -a(S'stream_next/1' -p42995 -S'stream_next(${1:Pid}) $2' -p42996 -tp42997 -a(S'which_cookies/0' -p42998 -S'which_cookies() $1' -p42999 -tp43000 -a(S'which_cookies/1' -p43001 -S'which_cookies(${1:Profile}) $2' -p43002 -tp43003 -asS'mod_security_server' -p43004 -(lp43005 -(S'block_user/5' -p43006 -S'block_user(${1:User}, ${2:Addr}, ${3:Port}, ${4:Dir}, ${5:Time}) $6' -p43007 -tp43008 -a(S'check_blocked_user/5' -p43009 -S'check_blocked_user(${1:Info}, ${2:User}, ${3:SDirData}, ${4:Addr}, ${5:Port}) $6' -p43010 -tp43011 -a(S'code_change/3' -p43012 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p43013 -tp43014 -a(S'delete_tables/2' -p43015 -S'delete_tables(${1:Addr}, ${2:Port}) $3' -p43016 -tp43017 -a(S'handle_call/3' -p43018 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:Tables}) $4' -p43019 -tp43020 -a(S'handle_cast/2' -p43021 -S'handle_cast(${1:Req}, ${2:Tables}) $3' -p43022 -tp43023 -a(S'handle_info/2' -p43024 -S'handle_info(${1:Param1}, ${2:State}) $3' -p43025 -tp43026 -a(S'init/1' -p43027 -S'init(${1:Param1}) $2' -p43028 -tp43029 -a(S'list_auth_users/2' -p43030 -S'list_auth_users(${1:Addr}, ${2:Port}) $3' -p43031 -tp43032 -a(S'list_auth_users/3' -p43033 -S'list_auth_users(${1:Addr}, ${2:Port}, ${3:Dir}) $4' -p43034 -tp43035 -a(S'list_blocked_users/2' -p43036 -S'list_blocked_users(${1:Addr}, ${2:Port}) $3' -p43037 -tp43038 -a(S'list_blocked_users/3' -p43039 -S'list_blocked_users(${1:Addr}, ${2:Port}, ${3:Dir}) $4' -p43040 -tp43041 -a(S'new_table/3' -p43042 -S'new_table(${1:Addr}, ${2:Port}, ${3:TabName}) $4' -p43043 -tp43044 -a(S'start/2' -p43045 -S'start(${1:Addr}, ${2:Port}) $3' -p43046 -tp43047 -a(S'start_link/2' -p43048 -S'start_link(${1:Addr}, ${2:Port}) $3' -p43049 -tp43050 -a(S'stop/1' -p43051 -S'stop(${1:Port}) $2' -p43052 -tp43053 -a(S'stop/2' -p43054 -S'stop(${1:Addr}, ${2:Port}) $3' -p43055 -tp43056 -a(S'store_failed_auth/5' -p43057 -S'store_failed_auth(${1:Info}, ${2:Addr}, ${3:Port}, ${4:DecodedString}, ${5:SDirData}) $6' -p43058 -tp43059 -a(S'store_successful_auth/4' -p43060 -S'store_successful_auth(${1:Addr}, ${2:Port}, ${3:User}, ${4:SDirData}) $5' -p43061 -tp43062 -a(S'terminate/2' -p43063 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p43064 -tp43065 -a(S'unblock_user/3' -p43066 -S'unblock_user(${1:User}, ${2:Addr}, ${3:Port}) $4' -p43067 -tp43068 -a(S'unblock_user/4' -p43069 -S'unblock_user(${1:User}, ${2:Addr}, ${3:Port}, ${4:Dir}) $5' -p43070 -tp43071 -asS'tv_ip' -p43072 -(lp43073 -(S'ip/1' -p43074 -S'ip(${1:Param1}) $2' -p43075 -tp43076 -asS'xmerl_xpath_scan' -p43077 -(lp43078 -(S'scan_number/1' -p43079 -S'scan_number(${1:T}) $2' -p43080 -tp43081 -a(S'tokens/1' -p43082 -S'tokens(${1:Str}) $2' -p43083 -tp43084 -asS'percept' -p43085 -(lp43086 -(S'analyze/1' -p43087 -S'analyze(${1:Filename}) $2' -p43088 -tp43089 -a(S'profile/1' -p43090 -S'profile(${1:Filename}) $2' -p43091 -tp43092 -a(S'profile/2' -p43093 -S'profile(${1:Filename}, ${2:Options}) $3' -p43094 -tp43095 -a(S'profile/3' -p43096 -S'profile(${1:Filename}, ${2:MFA}, ${3:Options}) $4' -p43097 -tp43098 -a(S'start/2' -p43099 -S'start(${1:Param1}, ${2:Param2}) $3' -p43100 -tp43101 -a(S'start_webserver/0' -p43102 -S'start_webserver() $1' -p43103 -tp43104 -a(S'start_webserver/1' -p43105 -S'start_webserver(${1:Port}) $2' -p43106 -tp43107 -a(S'stop/1' -p43108 -S'stop(${1:Param1}) $2' -p43109 -tp43110 -a(S'stop_profile/0' -p43111 -S'stop_profile() $1' -p43112 -tp43113 -a(S'stop_webserver/0' -p43114 -S'stop_webserver() $1' -p43115 -tp43116 -a(S'stop_webserver/1' -p43117 -S'stop_webserver(${1:Port}) $2' -p43118 -tp43119 -asS'error_logger_tty_h' -p43120 -(lp43121 -(S'code_change/3' -p43122 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p43123 -tp43124 -a(S'handle_call/2' -p43125 -S'handle_call(${1:Param1}, ${2:State}) $3' -p43126 -tp43127 -a(S'handle_event/2' -p43128 -S'handle_event(${1:Event}, ${2:State}) $3' -p43129 -tp43130 -a(S'handle_info/2' -p43131 -S'handle_info(${1:Param1}, ${2:State}) $3' -p43132 -tp43133 -a(S'init/1' -p43134 -S'init(${1:Param1}) $2' -p43135 -tp43136 -a(S'terminate/2' -p43137 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p43138 -tp43139 -a(S'write_event/2' -p43140 -S'write_event(${1:Param1}, ${2:IOMod}) $3' -p43141 -tp43142 -asS'wxDC' -p43143 -(lp43144 -(S'blit/5' -p43145 -S'blit(${1:This}, ${2:DestPt}, ${3:Sz}, ${4:Source}, ${5:SrcPt}) $6' -p43146 -tp43147 -a(S'blit/6' -p43148 -S'blit(${1:This}, ${2:DestPt}, ${3:Sz}, ${4:Source}, ${5:SrcPt}, ${6:Param6}) $7' -p43149 -tp43150 -a(S'calcBoundingBox/3' -p43151 -S'calcBoundingBox(${1:This}, ${2:X}, ${3:Y}) $4' -p43152 -tp43153 -a(S'clear/1' -p43154 -S'clear(${1:This}) $2' -p43155 -tp43156 -a(S'computeScaleAndOrigin/1' -p43157 -S'computeScaleAndOrigin(${1:This}) $2' -p43158 -tp43159 -a(S'crossHair/2' -p43160 -S'crossHair(${1:This}, ${2:Pt}) $3' -p43161 -tp43162 -a(S'destroyClippingRegion/1' -p43163 -S'destroyClippingRegion(${1:This}) $2' -p43164 -tp43165 -a(S'deviceToLogicalX/2' -p43166 -S'deviceToLogicalX(${1:This}, ${2:X}) $3' -p43167 -tp43168 -a(S'deviceToLogicalXRel/2' -p43169 -S'deviceToLogicalXRel(${1:This}, ${2:X}) $3' -p43170 -tp43171 -a(S'deviceToLogicalY/2' -p43172 -S'deviceToLogicalY(${1:This}, ${2:Y}) $3' -p43173 -tp43174 -a(S'deviceToLogicalYRel/2' -p43175 -S'deviceToLogicalYRel(${1:This}, ${2:Y}) $3' -p43176 -tp43177 -a(S'drawArc/4' -p43178 -S'drawArc(${1:This}, ${2:Pt1}, ${3:Pt2}, ${4:Centre}) $5' -p43179 -tp43180 -a(S'drawBitmap/3' -p43181 -S'drawBitmap(${1:This}, ${2:Bmp}, ${3:Pt}) $4' -p43182 -tp43183 -a(S'drawBitmap/4' -p43184 -S'drawBitmap(${1:This}, ${2:Bmp}, ${3:Pt}, ${4:Param4}) $5' -p43185 -tp43186 -a(S'drawCheckMark/2' -p43187 -S'drawCheckMark(${1:This}, ${2:Rect}) $3' -p43188 -tp43189 -a(S'drawCircle/3' -p43190 -S'drawCircle(${1:This}, ${2:Pt}, ${3:Radius}) $4' -p43191 -tp43192 -a(S'drawEllipse/2' -p43193 -S'drawEllipse(${1:This}, ${2:Rect}) $3' -p43194 -tp43195 -a(S'drawEllipse/3' -p43196 -S'drawEllipse(${1:This}, ${2:Pt}, ${3:Sz}) $4' -p43197 -tp43198 -a(S'drawEllipticArc/5' -p43199 -S'drawEllipticArc(${1:This}, ${2:Pt}, ${3:Sz}, ${4:Sa}, ${5:Ea}) $6' -p43200 -tp43201 -a(S'drawIcon/3' -p43202 -S'drawIcon(${1:This}, ${2:Icon}, ${3:Pt}) $4' -p43203 -tp43204 -a(S'drawLabel/3' -p43205 -S'drawLabel(${1:This}, ${2:Text}, ${3:Rect}) $4' -p43206 -tp43207 -a(S'drawLabel/4' -p43208 -S'drawLabel(${1:This}, ${2:Text}, ${3:Rect}, ${4:Param4}) $5' -p43209 -tp43210 -a(S'drawLine/3' -p43211 -S'drawLine(${1:This}, ${2:Pt1}, ${3:Pt2}) $4' -p43212 -tp43213 -a(S'drawLines/2' -p43214 -S'drawLines(${1:This}, ${2:Points}) $3' -p43215 -tp43216 -a(S'drawLines/3' -p43217 -S'drawLines(${1:This}, ${2:Points}, ${3:Param3}) $4' -p43218 -tp43219 -a(S'drawPoint/2' -p43220 -S'drawPoint(${1:This}, ${2:Pt}) $3' -p43221 -tp43222 -a(S'drawPolygon/2' -p43223 -S'drawPolygon(${1:This}, ${2:Points}) $3' -p43224 -tp43225 -a(S'drawPolygon/3' -p43226 -S'drawPolygon(${1:This}, ${2:Points}, ${3:Param3}) $4' -p43227 -tp43228 -a(S'drawRectangle/2' -p43229 -S'drawRectangle(${1:This}, ${2:Rect}) $3' -p43230 -tp43231 -a(S'drawRectangle/3' -p43232 -S'drawRectangle(${1:This}, ${2:Pt}, ${3:Sz}) $4' -p43233 -tp43234 -a(S'drawRotatedText/4' -p43235 -S'drawRotatedText(${1:This}, ${2:Text}, ${3:Pt}, ${4:Angle}) $5' -p43236 -tp43237 -a(S'drawRoundedRectangle/3' -p43238 -S'drawRoundedRectangle(${1:This}, ${2:R}, ${3:Radius}) $4' -p43239 -tp43240 -a(S'drawRoundedRectangle/4' -p43241 -S'drawRoundedRectangle(${1:This}, ${2:Pt}, ${3:Sz}, ${4:Radius}) $5' -p43242 -tp43243 -a(S'drawText/3' -p43244 -S'drawText(${1:This}, ${2:Text}, ${3:Pt}) $4' -p43245 -tp43246 -a(S'endDoc/1' -p43247 -S'endDoc(${1:This}) $2' -p43248 -tp43249 -a(S'endPage/1' -p43250 -S'endPage(${1:This}) $2' -p43251 -tp43252 -a(S'floodFill/3' -p43253 -S'floodFill(${1:This}, ${2:Pt}, ${3:Col}) $4' -p43254 -tp43255 -a(S'floodFill/4' -p43256 -S'floodFill(${1:This}, ${2:Pt}, ${3:Col}, ${4:Param4}) $5' -p43257 -tp43258 -a(S'getBackground/1' -p43259 -S'getBackground(${1:This}) $2' -p43260 -tp43261 -a(S'getBackgroundMode/1' -p43262 -S'getBackgroundMode(${1:This}) $2' -p43263 -tp43264 -a(S'getBrush/1' -p43265 -S'getBrush(${1:This}) $2' -p43266 -tp43267 -a(S'getCharHeight/1' -p43268 -S'getCharHeight(${1:This}) $2' -p43269 -tp43270 -a(S'getCharWidth/1' -p43271 -S'getCharWidth(${1:This}) $2' -p43272 -tp43273 -a(S'getClippingBox/1' -p43274 -S'getClippingBox(${1:This}) $2' -p43275 -tp43276 -a(S'getFont/1' -p43277 -S'getFont(${1:This}) $2' -p43278 -tp43279 -a(S'getLayoutDirection/1' -p43280 -S'getLayoutDirection(${1:This}) $2' -p43281 -tp43282 -a(S'getLogicalFunction/1' -p43283 -S'getLogicalFunction(${1:This}) $2' -p43284 -tp43285 -a(S'getMapMode/1' -p43286 -S'getMapMode(${1:This}) $2' -p43287 -tp43288 -a(S'getMultiLineTextExtent/2' -p43289 -S'getMultiLineTextExtent(${1:This}, ${2:String}) $3' -p43290 -tp43291 -a(S'getMultiLineTextExtent/3' -p43292 -S'getMultiLineTextExtent(${1:This}, ${2:String}, ${3:Param3}) $4' -p43293 -tp43294 -a(S'getPPI/1' -p43295 -S'getPPI(${1:This}) $2' -p43296 -tp43297 -a(S'getPartialTextExtents/2' -p43298 -S'getPartialTextExtents(${1:This}, ${2:Text}) $3' -p43299 -tp43300 -a(S'getPen/1' -p43301 -S'getPen(${1:This}) $2' -p43302 -tp43303 -a(S'getPixel/2' -p43304 -S'getPixel(${1:This}, ${2:Pt}) $3' -p43305 -tp43306 -a(S'getSize/1' -p43307 -S'getSize(${1:This}) $2' -p43308 -tp43309 -a(S'getSizeMM/1' -p43310 -S'getSizeMM(${1:This}) $2' -p43311 -tp43312 -a(S'getTextBackground/1' -p43313 -S'getTextBackground(${1:This}) $2' -p43314 -tp43315 -a(S'getTextExtent/2' -p43316 -S'getTextExtent(${1:This}, ${2:String}) $3' -p43317 -tp43318 -a(S'getTextExtent/3' -p43319 -S'getTextExtent(${1:This}, ${2:String}, ${3:Param3}) $4' -p43320 -tp43321 -a(S'getTextForeground/1' -p43322 -S'getTextForeground(${1:This}) $2' -p43323 -tp43324 -a(S'getUserScale/1' -p43325 -S'getUserScale(${1:This}) $2' -p43326 -tp43327 -a(S'gradientFillConcentric/4' -p43328 -S'gradientFillConcentric(${1:This}, ${2:Rect}, ${3:InitialColour}, ${4:DestColour}) $5' -p43329 -tp43330 -a(S'gradientFillConcentric/5' -p43331 -S'gradientFillConcentric(${1:This}, ${2:Rect}, ${3:InitialColour}, ${4:DestColour}, ${5:CircleCenter}) $6' -p43332 -tp43333 -a(S'gradientFillLinear/4' -p43334 -S'gradientFillLinear(${1:This}, ${2:Rect}, ${3:InitialColour}, ${4:DestColour}) $5' -p43335 -tp43336 -a(S'gradientFillLinear/5' -p43337 -S'gradientFillLinear(${1:This}, ${2:Rect}, ${3:InitialColour}, ${4:DestColour}, ${5:Param5}) $6' -p43338 -tp43339 -a(S'isOk/1' -p43340 -S'isOk(${1:This}) $2' -p43341 -tp43342 -a(S'logicalToDeviceX/2' -p43343 -S'logicalToDeviceX(${1:This}, ${2:X}) $3' -p43344 -tp43345 -a(S'logicalToDeviceXRel/2' -p43346 -S'logicalToDeviceXRel(${1:This}, ${2:X}) $3' -p43347 -tp43348 -a(S'logicalToDeviceY/2' -p43349 -S'logicalToDeviceY(${1:This}, ${2:Y}) $3' -p43350 -tp43351 -a(S'logicalToDeviceYRel/2' -p43352 -S'logicalToDeviceYRel(${1:This}, ${2:Y}) $3' -p43353 -tp43354 -a(S'maxX/1' -p43355 -S'maxX(${1:This}) $2' -p43356 -tp43357 -a(S'maxY/1' -p43358 -S'maxY(${1:This}) $2' -p43359 -tp43360 -a(S'minX/1' -p43361 -S'minX(${1:This}) $2' -p43362 -tp43363 -a(S'minY/1' -p43364 -S'minY(${1:This}) $2' -p43365 -tp43366 -a(S'parent_class/1' -p43367 -S'parent_class(${1:Param1}) $2' -p43368 -tp43369 -a(S'resetBoundingBox/1' -p43370 -S'resetBoundingBox(${1:This}) $2' -p43371 -tp43372 -a(S'setAxisOrientation/3' -p43373 -S'setAxisOrientation(${1:This}, ${2:XLeftRight}, ${3:YBottomUp}) $4' -p43374 -tp43375 -a(S'setBackground/2' -p43376 -S'setBackground(${1:This}, ${2:Brush}) $3' -p43377 -tp43378 -a(S'setBackgroundMode/2' -p43379 -S'setBackgroundMode(${1:This}, ${2:Mode}) $3' -p43380 -tp43381 -a(S'setBrush/2' -p43382 -S'setBrush(${1:This}, ${2:Brush}) $3' -p43383 -tp43384 -a(S'setClippingRegion/2' -p43385 -S'setClippingRegion(${1:This}, ${2:Region}) $3' -p43386 -tp43387 -a(S'setClippingRegion/3' -p43388 -S'setClippingRegion(${1:This}, ${2:Pt}, ${3:Sz}) $4' -p43389 -tp43390 -a(S'setDeviceOrigin/3' -p43391 -S'setDeviceOrigin(${1:This}, ${2:X}, ${3:Y}) $4' -p43392 -tp43393 -a(S'setFont/2' -p43394 -S'setFont(${1:This}, ${2:Font}) $3' -p43395 -tp43396 -a(S'setLayoutDirection/2' -p43397 -S'setLayoutDirection(${1:This}, ${2:Dir}) $3' -p43398 -tp43399 -a(S'setLogicalFunction/2' -p43400 -S'setLogicalFunction(${1:This}, ${2:Function}) $3' -p43401 -tp43402 -a(S'setMapMode/2' -p43403 -S'setMapMode(${1:This}, ${2:Mode}) $3' -p43404 -tp43405 -a(S'setPalette/2' -p43406 -S'setPalette(${1:This}, ${2:Palette}) $3' -p43407 -tp43408 -a(S'setPen/2' -p43409 -S'setPen(${1:This}, ${2:Pen}) $3' -p43410 -tp43411 -a(S'setTextBackground/2' -p43412 -S'setTextBackground(${1:This}, ${2:Colour}) $3' -p43413 -tp43414 -a(S'setTextForeground/2' -p43415 -S'setTextForeground(${1:This}, ${2:Colour}) $3' -p43416 -tp43417 -a(S'setUserScale/3' -p43418 -S'setUserScale(${1:This}, ${2:X}, ${3:Y}) $4' -p43419 -tp43420 -a(S'startDoc/2' -p43421 -S'startDoc(${1:This}, ${2:Message}) $3' -p43422 -tp43423 -a(S'startPage/1' -p43424 -S'startPage(${1:This}) $2' -p43425 -tp43426 -asS'observer_backend' -p43427 -(lp43428 -(S'etop_collect/1' -p43429 -S'etop_collect(${1:Collector}) $2' -p43430 -tp43431 -a(S'fetch_stats/2' -p43432 -S'fetch_stats(${1:Parent}, ${2:Time}) $3' -p43433 -tp43434 -a(S'get_table/3' -p43435 -S'get_table(${1:Parent}, ${2:Table}, ${3:Module}) $4' -p43436 -tp43437 -a(S'get_table_list/2' -p43438 -S'get_table_list(${1:Param1}, ${2:Opts}) $3' -p43439 -tp43440 -a(S'sys_info/0' -p43441 -S'sys_info() $1' -p43442 -tp43443 -a(S'ttb_fetch/2' -p43444 -S'ttb_fetch(${1:MetaFile}, ${2:Param2}) $3' -p43445 -tp43446 -a(S'ttb_get_filenames/1' -p43447 -S'ttb_get_filenames(${1:MetaFile}) $2' -p43448 -tp43449 -a(S'ttb_init_node/3' -p43450 -S'ttb_init_node(${1:MetaFile_0}, ${2:PI}, ${3:Traci}) $4' -p43451 -tp43452 -a(S'ttb_resume_trace/0' -p43453 -S'ttb_resume_trace() $1' -p43454 -tp43455 -a(S'ttb_stop/1' -p43456 -S'ttb_stop(${1:MetaPid}) $2' -p43457 -tp43458 -a(S'ttb_write_binary/2' -p43459 -S'ttb_write_binary(${1:Fd}, ${2:Param2}) $3' -p43460 -tp43461 -a(S'ttb_write_trace_info/3' -p43462 -S'ttb_write_trace_info(${1:MetaPid}, ${2:Key}, ${3:What}) $4' -p43463 -tp43464 -a(S'vsn/0' -p43465 -S'vsn() $1' -p43466 -tp43467 -asS'diameter_misc_sup' -p43468 -(lp43469 -(S'init/1' -p43470 -S'init(${1:Param1}) $2' -p43471 -tp43472 -a(S'start_link/0' -p43473 -S'start_link() $1' -p43474 -tp43475 -asS'asn1ct_pretty_format' -p43476 -(lp43477 -(S'term/1' -p43478 -S'term(${1:Term}) $2' -p43479 -tp43480 -asS'dialyzer_succ_typings' -p43481 -(lp43482 -(S'analyze_callgraph/3' -p43483 -S'analyze_callgraph(${1:Callgraph}, ${2:Plt}, ${3:Codeserver}) $4' -p43484 -tp43485 -a(S'analyze_callgraph/4' -p43486 -S'analyze_callgraph(${1:Callgraph}, ${2:Plt}, ${3:Codeserver}, ${4:Parent}) $5' -p43487 -tp43488 -a(S'doit/1' -p43489 -S'doit(${1:Module}) $2' -p43490 -tp43491 -a(S'get_top_level_signatures/3' -p43492 -S'get_top_level_signatures(${1:Code}, ${2:Records}, ${3:Contracts}) $4' -p43493 -tp43494 -a(S'get_warnings/6' -p43495 -S'get_warnings(${1:Callgraph}, ${2:Plt}, ${3:DocPlt}, ${4:Codeserver}, ${5:NoWarnUnused}, ${6:Parent}) $7' -p43496 -tp43497 -asS'wxDisplayChangedEvent' -p43498 -(lp43499 -(S'getId/1' -p43500 -S'getId(${1:This}) $2' -p43501 -tp43502 -a(S'getSkipped/1' -p43503 -S'getSkipped(${1:This}) $2' -p43504 -tp43505 -a(S'getTimestamp/1' -p43506 -S'getTimestamp(${1:This}) $2' -p43507 -tp43508 -a(S'isCommandEvent/1' -p43509 -S'isCommandEvent(${1:This}) $2' -p43510 -tp43511 -a(S'parent_class/1' -p43512 -S'parent_class(${1:Param1}) $2' -p43513 -tp43514 -a(S'resumePropagation/2' -p43515 -S'resumePropagation(${1:This}, ${2:PropagationLevel}) $3' -p43516 -tp43517 -a(S'shouldPropagate/1' -p43518 -S'shouldPropagate(${1:This}) $2' -p43519 -tp43520 -a(S'skip/1' -p43521 -S'skip(${1:This}) $2' -p43522 -tp43523 -a(S'skip/2' -p43524 -S'skip(${1:This}, ${2:Options}) $3' -p43525 -tp43526 -a(S'stopPropagation/1' -p43527 -S'stopPropagation(${1:This}) $2' -p43528 -tp43529 -asS'pubkey_ssh' -p43530 -(lp43531 -(S'decode/2' -p43532 -S'decode(${1:Bin}, ${2:Type}) $3' -p43533 -tp43534 -a(S'encode/2' -p43535 -S'encode(${1:Entries}, ${2:Type}) $3' -p43536 -tp43537 -asS'gstk_widgets' -p43538 -(lp43539 -(S'objmod/1' -p43540 -S'objmod(${1:Param1}) $2' -p43541 -tp43542 -a(S'suffix/1' -p43543 -S'suffix(${1:Objtype}) $2' -p43544 -tp43545 -a(S'type2mod/1' -p43546 -S'type2mod(${1:Type}) $2' -p43547 -tp43548 -asS'httpc_cookie' -p43549 -(lp43550 -(S'close_db/1' -p43551 -S'close_db(${1:Param1}) $2' -p43552 -tp43553 -a(S'cookies/3' -p43554 -S'cookies(${1:Headers}, ${2:RequestPath}, ${3:RequestHost}) $4' -p43555 -tp43556 -a(S'header/4' -p43557 -S'header(${1:CookieDb}, ${2:Scheme}, ${3:Param3}, ${4:Path}) $5' -p43558 -tp43559 -a(S'image_of/2' -p43560 -S'image_of() $1' -p43561 -tp43562 -a(S'insert/2' -p43563 -S'insert() $1' -p43564 -tp43565 -a(S'open_db/3' -p43566 -S'open_db(${1:Name}, ${2:Dir}, ${3:SessionDbName}) $4' -p43567 -tp43568 -a(S'print/2' -p43569 -S'print(${1:Prefix}, ${2:Cookie}) $3' -p43570 -tp43571 -a(S'reset_db/1' -p43572 -S'reset_db(${1:Param1}) $2' -p43573 -tp43574 -a(S'which_cookies/1' -p43575 -S'which_cookies(${1:Param1}) $2' -p43576 -tp43577 -asS'pman_module_info' -p43578 -(lp43579 -(S'start/1' -p43580 -S'start(${1:Module}) $2' -p43581 -tp43582 -asS'httpc_handler_sup' -p43583 -(lp43584 -(S'init/1' -p43585 -S'init(${1:Args}) $2' -p43586 -tp43587 -a(S'start_child/1' -p43588 -S'start_child(${1:Args}) $2' -p43589 -tp43590 -a(S'start_link/0' -p43591 -S'start_link() $1' -p43592 -tp43593 -asS'oe_CosEventComm_PusherS' -p43594 -(lp43595 -(S'code_change/3' -p43596 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p43597 -tp43598 -a(S'connect_push_consumer/2' -p43599 -S'connect_push_consumer(${1:OE_THIS}, ${2:Push_consumer}) $3' -p43600 -tp43601 -a(S'connect_push_consumer/3' -p43602 -S'connect_push_consumer(${1:OE_THIS}, ${2:OE_Options}, ${3:Push_consumer}) $4' -p43603 -tp43604 -a(S'disconnect_push_supplier/1' -p43605 -S'disconnect_push_supplier(${1:OE_THIS}) $2' -p43606 -tp43607 -a(S'disconnect_push_supplier/2' -p43608 -S'disconnect_push_supplier(${1:OE_THIS}, ${2:OE_Options}) $3' -p43609 -tp43610 -a(S'handle_call/3' -p43611 -S'handle_call(${1:Param1}, ${2:OE_From}, ${3:OE_State}) $4' -p43612 -tp43613 -a(S'handle_cast/2' -p43614 -S'handle_cast(${1:Param1}, ${2:OE_State}) $3' -p43615 -tp43616 -a(S'handle_info/2' -p43617 -S'handle_info(${1:Info}, ${2:State}) $3' -p43618 -tp43619 -a(S'init/1' -p43620 -S'init(${1:Env}) $2' -p43621 -tp43622 -a(S'oe_create/0' -p43623 -S'oe_create() $1' -p43624 -tp43625 -a(S'oe_create/1' -p43626 -S'oe_create(${1:Env}) $2' -p43627 -tp43628 -a(S'oe_create/2' -p43629 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p43630 -tp43631 -a(S'oe_create_link/0' -p43632 -S'oe_create_link() $1' -p43633 -tp43634 -a(S'oe_create_link/1' -p43635 -S'oe_create_link(${1:Env}) $2' -p43636 -tp43637 -a(S'oe_create_link/2' -p43638 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p43639 -tp43640 -a(S'oe_get_interface/0' -p43641 -S'oe_get_interface() $1' -p43642 -tp43643 -a(S'oe_is_a/1' -p43644 -S'oe_is_a(${1:Param1}) $2' -p43645 -tp43646 -a(S'oe_tc/1' -p43647 -S'oe_tc(${1:Param1}) $2' -p43648 -tp43649 -a(S'send/2' -p43650 -S'send(${1:OE_THIS}, ${2:Event}) $3' -p43651 -tp43652 -a(S'send/3' -p43653 -S'send(${1:OE_THIS}, ${2:OE_Options}, ${3:Event}) $4' -p43654 -tp43655 -a(S'send_sync/2' -p43656 -S'send_sync(${1:OE_THIS}, ${2:Event}) $3' -p43657 -tp43658 -a(S'send_sync/3' -p43659 -S'send_sync(${1:OE_THIS}, ${2:OE_Options}, ${3:Event}) $4' -p43660 -tp43661 -a(S'terminate/2' -p43662 -S'terminate(${1:Reason}, ${2:State}) $3' -p43663 -tp43664 -a(S'typeID/0' -p43665 -S'typeID() $1' -p43666 -tp43667 -asS'core_pp' -p43668 -(lp43669 -(S'format/1' -p43670 -S'format(${1:Node}) $2' -p43671 -tp43672 -asS'CosEventComm_PushSupplier' -p43673 -(lp43674 -(S'code_change/3' -p43675 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p43676 -tp43677 -a(S'disconnect_push_supplier/1' -p43678 -S'disconnect_push_supplier(${1:OE_THIS}) $2' -p43679 -tp43680 -a(S'disconnect_push_supplier/2' -p43681 -S'disconnect_push_supplier(${1:OE_THIS}, ${2:OE_Options}) $3' -p43682 -tp43683 -a(S'handle_call/3' -p43684 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p43685 -tp43686 -a(S'handle_cast/2' -p43687 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p43688 -tp43689 -a(S'handle_info/2' -p43690 -S'handle_info(${1:Param1}, ${2:State}) $3' -p43691 -tp43692 -a(S'init/1' -p43693 -S'init(${1:Env}) $2' -p43694 -tp43695 -a(S'oe_create/0' -p43696 -S'oe_create() $1' -p43697 -tp43698 -a(S'oe_create/1' -p43699 -S'oe_create(${1:Env}) $2' -p43700 -tp43701 -a(S'oe_create/2' -p43702 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p43703 -tp43704 -a(S'oe_create_link/0' -p43705 -S'oe_create_link() $1' -p43706 -tp43707 -a(S'oe_create_link/1' -p43708 -S'oe_create_link(${1:Env}) $2' -p43709 -tp43710 -a(S'oe_create_link/2' -p43711 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p43712 -tp43713 -a(S'oe_get_interface/0' -p43714 -S'oe_get_interface() $1' -p43715 -tp43716 -a(S'oe_is_a/1' -p43717 -S'oe_is_a(${1:Param1}) $2' -p43718 -tp43719 -a(S'oe_tc/1' -p43720 -S'oe_tc(${1:Param1}) $2' -p43721 -tp43722 -a(S'terminate/2' -p43723 -S'terminate(${1:Reason}, ${2:State}) $3' -p43724 -tp43725 -a(S'typeID/0' -p43726 -S'typeID() $1' -p43727 -tp43728 -asS'heart' -p43729 -(lp43730 -(S'clear_cmd/0' -p43731 -S'clear_cmd() $1' -p43732 -tp43733 -a(S'cycle/0' -p43734 -S'cycle() $1' -p43735 -tp43736 -a(S'get_cmd/0' -p43737 -S'get_cmd() $1' -p43738 -tp43739 -a(S'init/2' -p43740 -S'init(${1:Starter}, ${2:Parent}) $3' -p43741 -tp43742 -a(S'set_cmd/1' -p43743 -S'set_cmd(${1:Cmd}) $2' -p43744 -tp43745 -a(S'start/0' -p43746 -S'start() $1' -p43747 -tp43748 -asS'wxFrame' -p43749 -(lp43750 -(S'cacheBestSize/2' -p43751 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p43752 -tp43753 -a(S'captureMouse/1' -p43754 -S'captureMouse(${1:This}) $2' -p43755 -tp43756 -a(S'center/1' -p43757 -S'center(${1:This}) $2' -p43758 -tp43759 -a(S'center/2' -p43760 -S'center(${1:This}, ${2:Options}) $3' -p43761 -tp43762 -a(S'centerOnParent/1' -p43763 -S'centerOnParent(${1:This}) $2' -p43764 -tp43765 -a(S'centerOnParent/2' -p43766 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p43767 -tp43768 -a(S'centerOnScreen/1' -p43769 -S'centerOnScreen(${1:This}) $2' -p43770 -tp43771 -a(S'centerOnScreen/2' -p43772 -S'centerOnScreen(${1:This}, ${2:Options}) $3' -p43773 -tp43774 -a(S'centre/1' -p43775 -S'centre(${1:This}) $2' -p43776 -tp43777 -a(S'centre/2' -p43778 -S'centre(${1:This}, ${2:Options}) $3' -p43779 -tp43780 -a(S'centreOnParent/1' -p43781 -S'centreOnParent(${1:This}) $2' -p43782 -tp43783 -a(S'centreOnParent/2' -p43784 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p43785 -tp43786 -a(S'centreOnScreen/1' -p43787 -S'centreOnScreen(${1:This}) $2' -p43788 -tp43789 -a(S'centreOnScreen/2' -p43790 -S'centreOnScreen(${1:This}, ${2:Options}) $3' -p43791 -tp43792 -a(S'clearBackground/1' -p43793 -S'clearBackground(${1:This}) $2' -p43794 -tp43795 -a(S'clientToScreen/2' -p43796 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p43797 -tp43798 -a(S'clientToScreen/3' -p43799 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p43800 -tp43801 -a(S'close/1' -p43802 -S'close(${1:This}) $2' -p43803 -tp43804 -a(S'close/2' -p43805 -S'close(${1:This}, ${2:Options}) $3' -p43806 -tp43807 -a(S'connect/2' -p43808 -S'connect(${1:This}, ${2:EventType}) $3' -p43809 -tp43810 -a(S'connect/3' -p43811 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p43812 -tp43813 -a(S'convertDialogToPixels/2' -p43814 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p43815 -tp43816 -a(S'convertPixelsToDialog/2' -p43817 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p43818 -tp43819 -a(S'create/4' -p43820 -S'create(${1:This}, ${2:Parent}, ${3:Id}, ${4:Title}) $5' -p43821 -tp43822 -a(S'create/5' -p43823 -S'create(${1:This}, ${2:Parent}, ${3:Id}, ${4:Title}, ${5:Param5}) $6' -p43824 -tp43825 -a(S'createStatusBar/1' -p43826 -S'createStatusBar(${1:This}) $2' -p43827 -tp43828 -a(S'createStatusBar/2' -p43829 -S'createStatusBar(${1:This}, ${2:Param2}) $3' -p43830 -tp43831 -a(S'createToolBar/1' -p43832 -S'createToolBar(${1:This}) $2' -p43833 -tp43834 -a(S'createToolBar/2' -p43835 -S'createToolBar(${1:This}, ${2:Param2}) $3' -p43836 -tp43837 -a(S'destroy/1' -p43838 -S'destroy(${1:This}) $2' -p43839 -tp43840 -a(S'destroyChildren/1' -p43841 -S'destroyChildren(${1:This}) $2' -p43842 -tp43843 -a(S'disable/1' -p43844 -S'disable(${1:This}) $2' -p43845 -tp43846 -a(S'disconnect/1' -p43847 -S'disconnect(${1:This}) $2' -p43848 -tp43849 -a(S'disconnect/2' -p43850 -S'disconnect(${1:This}, ${2:EventType}) $3' -p43851 -tp43852 -a(S'disconnect/3' -p43853 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p43854 -tp43855 -a(S'enable/1' -p43856 -S'enable(${1:This}) $2' -p43857 -tp43858 -a(S'enable/2' -p43859 -S'enable(${1:This}, ${2:Options}) $3' -p43860 -tp43861 -a(S'findWindow/2' -p43862 -S'findWindow(${1:This}, ${2:Winid}) $3' -p43863 -tp43864 -a(S'fit/1' -p43865 -S'fit(${1:This}) $2' -p43866 -tp43867 -a(S'fitInside/1' -p43868 -S'fitInside(${1:This}) $2' -p43869 -tp43870 -a(S'freeze/1' -p43871 -S'freeze(${1:This}) $2' -p43872 -tp43873 -a(S'getAcceleratorTable/1' -p43874 -S'getAcceleratorTable(${1:This}) $2' -p43875 -tp43876 -a(S'getBackgroundColour/1' -p43877 -S'getBackgroundColour(${1:This}) $2' -p43878 -tp43879 -a(S'getBackgroundStyle/1' -p43880 -S'getBackgroundStyle(${1:This}) $2' -p43881 -tp43882 -a(S'getBestSize/1' -p43883 -S'getBestSize(${1:This}) $2' -p43884 -tp43885 -a(S'getCaret/1' -p43886 -S'getCaret(${1:This}) $2' -p43887 -tp43888 -a(S'getCharHeight/1' -p43889 -S'getCharHeight(${1:This}) $2' -p43890 -tp43891 -a(S'getCharWidth/1' -p43892 -S'getCharWidth(${1:This}) $2' -p43893 -tp43894 -a(S'getChildren/1' -p43895 -S'getChildren(${1:This}) $2' -p43896 -tp43897 -a(S'getClientAreaOrigin/1' -p43898 -S'getClientAreaOrigin(${1:This}) $2' -p43899 -tp43900 -a(S'getClientSize/1' -p43901 -S'getClientSize(${1:This}) $2' -p43902 -tp43903 -a(S'getContainingSizer/1' -p43904 -S'getContainingSizer(${1:This}) $2' -p43905 -tp43906 -a(S'getCursor/1' -p43907 -S'getCursor(${1:This}) $2' -p43908 -tp43909 -a(S'getDropTarget/1' -p43910 -S'getDropTarget(${1:This}) $2' -p43911 -tp43912 -a(S'getEventHandler/1' -p43913 -S'getEventHandler(${1:This}) $2' -p43914 -tp43915 -a(S'getExtraStyle/1' -p43916 -S'getExtraStyle(${1:This}) $2' -p43917 -tp43918 -a(S'getFont/1' -p43919 -S'getFont(${1:This}) $2' -p43920 -tp43921 -a(S'getForegroundColour/1' -p43922 -S'getForegroundColour(${1:This}) $2' -p43923 -tp43924 -a(S'getGrandParent/1' -p43925 -S'getGrandParent(${1:This}) $2' -p43926 -tp43927 -a(S'getHandle/1' -p43928 -S'getHandle(${1:This}) $2' -p43929 -tp43930 -a(S'getHelpText/1' -p43931 -S'getHelpText(${1:This}) $2' -p43932 -tp43933 -a(S'getIcon/1' -p43934 -S'getIcon(${1:This}) $2' -p43935 -tp43936 -a(S'getIcons/1' -p43937 -S'getIcons(${1:This}) $2' -p43938 -tp43939 -a(S'getId/1' -p43940 -S'getId(${1:This}) $2' -p43941 -tp43942 -a(S'getLabel/1' -p43943 -S'getLabel(${1:This}) $2' -p43944 -tp43945 -a(S'getMaxSize/1' -p43946 -S'getMaxSize(${1:This}) $2' -p43947 -tp43948 -a(S'getMenuBar/1' -p43949 -S'getMenuBar(${1:This}) $2' -p43950 -tp43951 -a(S'getMinSize/1' -p43952 -S'getMinSize(${1:This}) $2' -p43953 -tp43954 -a(S'getName/1' -p43955 -S'getName(${1:This}) $2' -p43956 -tp43957 -a(S'getParent/1' -p43958 -S'getParent(${1:This}) $2' -p43959 -tp43960 -a(S'getPosition/1' -p43961 -S'getPosition(${1:This}) $2' -p43962 -tp43963 -a(S'getRect/1' -p43964 -S'getRect(${1:This}) $2' -p43965 -tp43966 -a(S'getScreenPosition/1' -p43967 -S'getScreenPosition(${1:This}) $2' -p43968 -tp43969 -a(S'getScreenRect/1' -p43970 -S'getScreenRect(${1:This}) $2' -p43971 -tp43972 -a(S'getScrollPos/2' -p43973 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p43974 -tp43975 -a(S'getScrollRange/2' -p43976 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p43977 -tp43978 -a(S'getScrollThumb/2' -p43979 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p43980 -tp43981 -a(S'getSize/1' -p43982 -S'getSize(${1:This}) $2' -p43983 -tp43984 -a(S'getSizer/1' -p43985 -S'getSizer(${1:This}) $2' -p43986 -tp43987 -a(S'getStatusBar/1' -p43988 -S'getStatusBar(${1:This}) $2' -p43989 -tp43990 -a(S'getStatusBarPane/1' -p43991 -S'getStatusBarPane(${1:This}) $2' -p43992 -tp43993 -a(S'getTextExtent/2' -p43994 -S'getTextExtent(${1:This}, ${2:String}) $3' -p43995 -tp43996 -a(S'getTextExtent/3' -p43997 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p43998 -tp43999 -a(S'getTitle/1' -p44000 -S'getTitle(${1:This}) $2' -p44001 -tp44002 -a(S'getToolBar/1' -p44003 -S'getToolBar(${1:This}) $2' -p44004 -tp44005 -a(S'getToolTip/1' -p44006 -S'getToolTip(${1:This}) $2' -p44007 -tp44008 -a(S'getUpdateRegion/1' -p44009 -S'getUpdateRegion(${1:This}) $2' -p44010 -tp44011 -a(S'getVirtualSize/1' -p44012 -S'getVirtualSize(${1:This}) $2' -p44013 -tp44014 -a(S'getWindowStyleFlag/1' -p44015 -S'getWindowStyleFlag(${1:This}) $2' -p44016 -tp44017 -a(S'getWindowVariant/1' -p44018 -S'getWindowVariant(${1:This}) $2' -p44019 -tp44020 -a(S'hasCapture/1' -p44021 -S'hasCapture(${1:This}) $2' -p44022 -tp44023 -a(S'hasScrollbar/2' -p44024 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p44025 -tp44026 -a(S'hasTransparentBackground/1' -p44027 -S'hasTransparentBackground(${1:This}) $2' -p44028 -tp44029 -a(S'hide/1' -p44030 -S'hide(${1:This}) $2' -p44031 -tp44032 -a(S'iconize/1' -p44033 -S'iconize(${1:This}) $2' -p44034 -tp44035 -a(S'iconize/2' -p44036 -S'iconize(${1:This}, ${2:Options}) $3' -p44037 -tp44038 -a(S'inheritAttributes/1' -p44039 -S'inheritAttributes(${1:This}) $2' -p44040 -tp44041 -a(S'initDialog/1' -p44042 -S'initDialog(${1:This}) $2' -p44043 -tp44044 -a(S'invalidateBestSize/1' -p44045 -S'invalidateBestSize(${1:This}) $2' -p44046 -tp44047 -a(S'isActive/1' -p44048 -S'isActive(${1:This}) $2' -p44049 -tp44050 -a(S'isEnabled/1' -p44051 -S'isEnabled(${1:This}) $2' -p44052 -tp44053 -a(S'isExposed/2' -p44054 -S'isExposed(${1:This}, ${2:Pt}) $3' -p44055 -tp44056 -a(S'isExposed/3' -p44057 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p44058 -tp44059 -a(S'isExposed/5' -p44060 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p44061 -tp44062 -a(S'isFullScreen/1' -p44063 -S'isFullScreen(${1:This}) $2' -p44064 -tp44065 -a(S'isIconized/1' -p44066 -S'isIconized(${1:This}) $2' -p44067 -tp44068 -a(S'isMaximized/1' -p44069 -S'isMaximized(${1:This}) $2' -p44070 -tp44071 -a(S'isRetained/1' -p44072 -S'isRetained(${1:This}) $2' -p44073 -tp44074 -a(S'isShown/1' -p44075 -S'isShown(${1:This}) $2' -p44076 -tp44077 -a(S'isTopLevel/1' -p44078 -S'isTopLevel(${1:This}) $2' -p44079 -tp44080 -a(S'layout/1' -p44081 -S'layout(${1:This}) $2' -p44082 -tp44083 -a(S'lineDown/1' -p44084 -S'lineDown(${1:This}) $2' -p44085 -tp44086 -a(S'lineUp/1' -p44087 -S'lineUp(${1:This}) $2' -p44088 -tp44089 -a(S'lower/1' -p44090 -S'lower(${1:This}) $2' -p44091 -tp44092 -a(S'makeModal/1' -p44093 -S'makeModal(${1:This}) $2' -p44094 -tp44095 -a(S'makeModal/2' -p44096 -S'makeModal(${1:This}, ${2:Options}) $3' -p44097 -tp44098 -a(S'maximize/1' -p44099 -S'maximize(${1:This}) $2' -p44100 -tp44101 -a(S'maximize/2' -p44102 -S'maximize(${1:This}, ${2:Options}) $3' -p44103 -tp44104 -a(S'move/2' -p44105 -S'move(${1:This}, ${2:Pt}) $3' -p44106 -tp44107 -a(S'move/3' -p44108 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p44109 -tp44110 -a(S'move/4' -p44111 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p44112 -tp44113 -a(S'moveAfterInTabOrder/2' -p44114 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p44115 -tp44116 -a(S'moveBeforeInTabOrder/2' -p44117 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p44118 -tp44119 -a(S'navigate/1' -p44120 -S'navigate(${1:This}) $2' -p44121 -tp44122 -a(S'navigate/2' -p44123 -S'navigate(${1:This}, ${2:Options}) $3' -p44124 -tp44125 -a(S'new/0' -p44126 -S'new() $1' -p44127 -tp44128 -a(S'new/3' -p44129 -S'new(${1:Parent}, ${2:Id}, ${3:Title}) $4' -p44130 -tp44131 -a(S'new/4' -p44132 -S'new(${1:Parent}, ${2:Id}, ${3:Title}, ${4:Param4}) $5' -p44133 -tp44134 -a(S'pageDown/1' -p44135 -S'pageDown(${1:This}) $2' -p44136 -tp44137 -a(S'pageUp/1' -p44138 -S'pageUp(${1:This}) $2' -p44139 -tp44140 -a(S'parent_class/1' -p44141 -S'parent_class(${1:Param1}) $2' -p44142 -tp44143 -a(S'popEventHandler/1' -p44144 -S'popEventHandler(${1:This}) $2' -p44145 -tp44146 -a(S'popEventHandler/2' -p44147 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p44148 -tp44149 -a(S'popupMenu/2' -p44150 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p44151 -tp44152 -a(S'popupMenu/3' -p44153 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p44154 -tp44155 -a(S'popupMenu/4' -p44156 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p44157 -tp44158 -a(S'processCommand/2' -p44159 -S'processCommand(${1:This}, ${2:Winid}) $3' -p44160 -tp44161 -a(S'raise/1' -p44162 -S'raise(${1:This}) $2' -p44163 -tp44164 -a(S'refresh/1' -p44165 -S'refresh(${1:This}) $2' -p44166 -tp44167 -a(S'refresh/2' -p44168 -S'refresh(${1:This}, ${2:Options}) $3' -p44169 -tp44170 -a(S'refreshRect/2' -p44171 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p44172 -tp44173 -a(S'refreshRect/3' -p44174 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p44175 -tp44176 -a(S'releaseMouse/1' -p44177 -S'releaseMouse(${1:This}) $2' -p44178 -tp44179 -a(S'removeChild/2' -p44180 -S'removeChild(${1:This}, ${2:Child}) $3' -p44181 -tp44182 -a(S'reparent/2' -p44183 -S'reparent(${1:This}, ${2:NewParent}) $3' -p44184 -tp44185 -a(S'requestUserAttention/1' -p44186 -S'requestUserAttention(${1:This}) $2' -p44187 -tp44188 -a(S'requestUserAttention/2' -p44189 -S'requestUserAttention(${1:This}, ${2:Options}) $3' -p44190 -tp44191 -a(S'screenToClient/1' -p44192 -S'screenToClient(${1:This}) $2' -p44193 -tp44194 -a(S'screenToClient/2' -p44195 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p44196 -tp44197 -a(S'scrollLines/2' -p44198 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p44199 -tp44200 -a(S'scrollPages/2' -p44201 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p44202 -tp44203 -a(S'scrollWindow/3' -p44204 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p44205 -tp44206 -a(S'scrollWindow/4' -p44207 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p44208 -tp44209 -a(S'sendSizeEvent/1' -p44210 -S'sendSizeEvent(${1:This}) $2' -p44211 -tp44212 -a(S'setAcceleratorTable/2' -p44213 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p44214 -tp44215 -a(S'setAutoLayout/2' -p44216 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p44217 -tp44218 -a(S'setBackgroundColour/2' -p44219 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p44220 -tp44221 -a(S'setBackgroundStyle/2' -p44222 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p44223 -tp44224 -a(S'setCaret/2' -p44225 -S'setCaret(${1:This}, ${2:Caret}) $3' -p44226 -tp44227 -a(S'setClientSize/2' -p44228 -S'setClientSize(${1:This}, ${2:Size}) $3' -p44229 -tp44230 -a(S'setClientSize/3' -p44231 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p44232 -tp44233 -a(S'setContainingSizer/2' -p44234 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p44235 -tp44236 -a(S'setCursor/2' -p44237 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p44238 -tp44239 -a(S'setDropTarget/2' -p44240 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p44241 -tp44242 -a(S'setExtraStyle/2' -p44243 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p44244 -tp44245 -a(S'setFocus/1' -p44246 -S'setFocus(${1:This}) $2' -p44247 -tp44248 -a(S'setFocusFromKbd/1' -p44249 -S'setFocusFromKbd(${1:This}) $2' -p44250 -tp44251 -a(S'setFont/2' -p44252 -S'setFont(${1:This}, ${2:Font}) $3' -p44253 -tp44254 -a(S'setForegroundColour/2' -p44255 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p44256 -tp44257 -a(S'setHelpText/2' -p44258 -S'setHelpText(${1:This}, ${2:Text}) $3' -p44259 -tp44260 -a(S'setIcon/2' -p44261 -S'setIcon(${1:This}, ${2:Icon}) $3' -p44262 -tp44263 -a(S'setIcons/2' -p44264 -S'setIcons(${1:This}, ${2:Icons}) $3' -p44265 -tp44266 -a(S'setId/2' -p44267 -S'setId(${1:This}, ${2:Winid}) $3' -p44268 -tp44269 -a(S'setLabel/2' -p44270 -S'setLabel(${1:This}, ${2:Label}) $3' -p44271 -tp44272 -a(S'setMaxSize/2' -p44273 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p44274 -tp44275 -a(S'setMenuBar/2' -p44276 -S'setMenuBar(${1:This}, ${2:Menubar}) $3' -p44277 -tp44278 -a(S'setMinSize/2' -p44279 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p44280 -tp44281 -a(S'setName/2' -p44282 -S'setName(${1:This}, ${2:Name}) $3' -p44283 -tp44284 -a(S'setOwnBackgroundColour/2' -p44285 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p44286 -tp44287 -a(S'setOwnFont/2' -p44288 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p44289 -tp44290 -a(S'setOwnForegroundColour/2' -p44291 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p44292 -tp44293 -a(S'setPalette/2' -p44294 -S'setPalette(${1:This}, ${2:Pal}) $3' -p44295 -tp44296 -a(S'setScrollPos/3' -p44297 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p44298 -tp44299 -a(S'setScrollPos/4' -p44300 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p44301 -tp44302 -a(S'setScrollbar/5' -p44303 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p44304 -tp44305 -a(S'setScrollbar/6' -p44306 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p44307 -tp44308 -a(S'setShape/2' -p44309 -S'setShape(${1:This}, ${2:Region}) $3' -p44310 -tp44311 -a(S'setSize/2' -p44312 -S'setSize(${1:This}, ${2:Rect}) $3' -p44313 -tp44314 -a(S'setSize/3' -p44315 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p44316 -tp44317 -a(S'setSize/5' -p44318 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p44319 -tp44320 -a(S'setSize/6' -p44321 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p44322 -tp44323 -a(S'setSizeHints/2' -p44324 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p44325 -tp44326 -a(S'setSizeHints/3' -p44327 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p44328 -tp44329 -a(S'setSizeHints/4' -p44330 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p44331 -tp44332 -a(S'setSizer/2' -p44333 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p44334 -tp44335 -a(S'setSizer/3' -p44336 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p44337 -tp44338 -a(S'setSizerAndFit/2' -p44339 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p44340 -tp44341 -a(S'setSizerAndFit/3' -p44342 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p44343 -tp44344 -a(S'setStatusBar/2' -p44345 -S'setStatusBar(${1:This}, ${2:Statbar}) $3' -p44346 -tp44347 -a(S'setStatusBarPane/2' -p44348 -S'setStatusBarPane(${1:This}, ${2:N}) $3' -p44349 -tp44350 -a(S'setStatusText/2' -p44351 -S'setStatusText(${1:This}, ${2:Text}) $3' -p44352 -tp44353 -a(S'setStatusText/3' -p44354 -S'setStatusText(${1:This}, ${2:Text}, ${3:Param3}) $4' -p44355 -tp44356 -a(S'setStatusWidths/2' -p44357 -S'setStatusWidths(${1:This}, ${2:Widths_field}) $3' -p44358 -tp44359 -a(S'setThemeEnabled/2' -p44360 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p44361 -tp44362 -a(S'setTitle/2' -p44363 -S'setTitle(${1:This}, ${2:Title}) $3' -p44364 -tp44365 -a(S'setToolBar/2' -p44366 -S'setToolBar(${1:This}, ${2:Toolbar}) $3' -p44367 -tp44368 -a(S'setToolTip/2' -p44369 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p44370 -tp44371 -a(S'setVirtualSize/2' -p44372 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p44373 -tp44374 -a(S'setVirtualSize/3' -p44375 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p44376 -tp44377 -a(S'setVirtualSizeHints/2' -p44378 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p44379 -tp44380 -a(S'setVirtualSizeHints/3' -p44381 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p44382 -tp44383 -a(S'setVirtualSizeHints/4' -p44384 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p44385 -tp44386 -a(S'setWindowStyle/2' -p44387 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p44388 -tp44389 -a(S'setWindowStyleFlag/2' -p44390 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p44391 -tp44392 -a(S'setWindowVariant/2' -p44393 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p44394 -tp44395 -a(S'shouldInheritColours/1' -p44396 -S'shouldInheritColours(${1:This}) $2' -p44397 -tp44398 -a(S'show/1' -p44399 -S'show(${1:This}) $2' -p44400 -tp44401 -a(S'show/2' -p44402 -S'show(${1:This}, ${2:Options}) $3' -p44403 -tp44404 -a(S'showFullScreen/2' -p44405 -S'showFullScreen(${1:This}, ${2:Show}) $3' -p44406 -tp44407 -a(S'showFullScreen/3' -p44408 -S'showFullScreen(${1:This}, ${2:Show}, ${3:Options}) $4' -p44409 -tp44410 -a(S'thaw/1' -p44411 -S'thaw(${1:This}) $2' -p44412 -tp44413 -a(S'transferDataFromWindow/1' -p44414 -S'transferDataFromWindow(${1:This}) $2' -p44415 -tp44416 -a(S'transferDataToWindow/1' -p44417 -S'transferDataToWindow(${1:This}) $2' -p44418 -tp44419 -a(S'update/1' -p44420 -S'update(${1:This}) $2' -p44421 -tp44422 -a(S'updateWindowUI/1' -p44423 -S'updateWindowUI(${1:This}) $2' -p44424 -tp44425 -a(S'updateWindowUI/2' -p44426 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p44427 -tp44428 -a(S'validate/1' -p44429 -S'validate(${1:This}) $2' -p44430 -tp44431 -a(S'warpPointer/3' -p44432 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p44433 -tp44434 -asS'erl_bifs' -p44435 -(lp44436 -(S'is_exit_bif/3' -p44437 -S'is_exit_bif(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p44438 -tp44439 -a(S'is_pure/3' -p44440 -S'is_pure(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p44441 -tp44442 -a(S'is_safe/3' -p44443 -S'is_safe(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p44444 -tp44445 -asS'mnesia_subscr' -p44446 -(lp44447 -(S'code_change/3' -p44448 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p44449 -tp44450 -a(S'handle_call/3' -p44451 -S'handle_call(${1:Msg}, ${2:Param2}, ${3:State}) $4' -p44452 -tp44453 -a(S'handle_cast/2' -p44454 -S'handle_cast(${1:Msg}, ${2:State}) $3' -p44455 -tp44456 -a(S'handle_info/2' -p44457 -S'handle_info(${1:Msg}, ${2:State}) $3' -p44458 -tp44459 -a(S'init/1' -p44460 -S'init(${1:Param1}) $2' -p44461 -tp44462 -a(S'report_activity/1' -p44463 -S'report_activity(${1:Tid}) $2' -p44464 -tp44465 -a(S'report_table_event/4' -p44466 -S'report_table_event(${1:Tab}, ${2:Tid}, ${3:Obj}, ${4:Op}) $5' -p44467 -tp44468 -a(S'report_table_event/5' -p44469 -S'report_table_event(${1:Subscr}, ${2:Tab}, ${3:Tid}, ${4:Obj}, ${5:Op}) $6' -p44470 -tp44471 -a(S'report_table_event/6' -p44472 -S'report_table_event(${1:Param1}, ${2:Tab}, ${3:Tid}, ${4:Obj}, ${5:Op}, ${6:Old}) $7' -p44473 -tp44474 -a(S'set_debug_level/1' -p44475 -S'set_debug_level(${1:Level}) $2' -p44476 -tp44477 -a(S'start/0' -p44478 -S'start() $1' -p44479 -tp44480 -a(S'subscribe/2' -p44481 -S'subscribe(${1:ClientPid}, ${2:What}) $3' -p44482 -tp44483 -a(S'subscribers/0' -p44484 -S'subscribers() $1' -p44485 -tp44486 -a(S'terminate/2' -p44487 -S'terminate(${1:Reason}, ${2:State}) $3' -p44488 -tp44489 -a(S'unsubscribe/2' -p44490 -S'unsubscribe(${1:ClientPid}, ${2:What}) $3' -p44491 -tp44492 -a(S'unsubscribe_table/1' -p44493 -S'unsubscribe_table(${1:Tab}) $2' -p44494 -tp44495 -asS'wxQueryNewPaletteEvent' -p44496 -(lp44497 -(S'getId/1' -p44498 -S'getId(${1:This}) $2' -p44499 -tp44500 -a(S'getPaletteRealized/1' -p44501 -S'getPaletteRealized(${1:This}) $2' -p44502 -tp44503 -a(S'getSkipped/1' -p44504 -S'getSkipped(${1:This}) $2' -p44505 -tp44506 -a(S'getTimestamp/1' -p44507 -S'getTimestamp(${1:This}) $2' -p44508 -tp44509 -a(S'isCommandEvent/1' -p44510 -S'isCommandEvent(${1:This}) $2' -p44511 -tp44512 -a(S'parent_class/1' -p44513 -S'parent_class(${1:Param1}) $2' -p44514 -tp44515 -a(S'resumePropagation/2' -p44516 -S'resumePropagation(${1:This}, ${2:PropagationLevel}) $3' -p44517 -tp44518 -a(S'setPaletteRealized/2' -p44519 -S'setPaletteRealized(${1:This}, ${2:Realized}) $3' -p44520 -tp44521 -a(S'shouldPropagate/1' -p44522 -S'shouldPropagate(${1:This}) $2' -p44523 -tp44524 -a(S'skip/1' -p44525 -S'skip(${1:This}) $2' -p44526 -tp44527 -a(S'skip/2' -p44528 -S'skip(${1:This}, ${2:Options}) $3' -p44529 -tp44530 -a(S'stopPropagation/1' -p44531 -S'stopPropagation(${1:This}) $2' -p44532 -tp44533 -asS'mod_get' -p44534 -(lp44535 -(S'do/1' -p44536 -S'do(${1:Info}) $2' -p44537 -tp44538 -asS'pubkey_cert_records' -p44539 -(lp44540 -(S'decode_cert/1' -p44541 -S'decode_cert(${1:DerCert}) $2' -p44542 -tp44543 -a(S'supportedPublicKeyAlgorithms/1' -p44544 -S'supportedPublicKeyAlgorithms(${1:Oid}) $2' -p44545 -tp44546 -a(S'transform/2' -p44547 -S'transform(${1:Cert}, ${2:Func}) $3' -p44548 -tp44549 -asS'CosEventComm_Disconnected' -p44550 -(lp44551 -(S'id/0' -p44552 -S'id() $1' -p44553 -tp44554 -a(S'name/0' -p44555 -S'name() $1' -p44556 -tp44557 -a(S'tc/0' -p44558 -S'tc() $1' -p44559 -tp44560 -asS'snmpa_supervisor' -p44561 -(lp44562 -(S'config/2' -p44563 -S'config(${1:Vsns}, ${2:Opts}) $3' -p44564 -tp44565 -a(S'init/1' -p44566 -S'init(${1:Param1}) $2' -p44567 -tp44568 -a(S'start_link/2' -p44569 -S'start_link(${1:Type}, ${2:Opts}) $3' -p44570 -tp44571 -a(S'start_master_sup/1' -p44572 -S'start_master_sup(${1:Opts}) $2' -p44573 -tp44574 -a(S'start_sub_agent/3' -p44575 -S'start_sub_agent() $1' -p44576 -tp44577 -a(S'start_sub_sup/1' -p44578 -S'start_sub_sup(${1:Opts}) $2' -p44579 -tp44580 -a(S'stop_sub_agent/1' -p44581 -S'stop_sub_agent(${1:SubAgentPid}) $2' -p44582 -tp44583 -asS'megaco_pretty_text_encoder_v2' -p44584 -(lp44585 -(S'encode_action_reply/2' -p44586 -S'encode_action_reply() $1' -p44587 -tp44588 -a(S'encode_action_request/2' -p44589 -S'encode_action_request() $1' -p44590 -tp44591 -a(S'encode_action_requests/2' -p44592 -S'encode_action_requests(${1:Param1}, ${2:ActReqs}) $3' -p44593 -tp44594 -a(S'encode_command_request/2' -p44595 -S'encode_command_request() $1' -p44596 -tp44597 -a(S'encode_message/2' -p44598 -S'encode_message(${1:Param1}, ${2:Param2}) $3' -p44599 -tp44600 -a(S'encode_transaction/2' -p44601 -S'encode_transaction(${1:Param1}, ${2:Trans}) $3' -p44602 -tp44603 -a(S'test/1' -p44604 -S'test(${1:Fun}) $2' -p44605 -tp44606 -a(S'token_tag2string/1' -p44607 -S'token_tag2string(${1:Param1}) $2' -p44608 -tp44609 -asS'megaco_pretty_text_encoder_v3' -p44610 -(lp44611 -(S'encode_action_reply/2' -p44612 -S'encode_action_reply() $1' -p44613 -tp44614 -a(S'encode_action_request/2' -p44615 -S'encode_action_request() $1' -p44616 -tp44617 -a(S'encode_action_requests/2' -p44618 -S'encode_action_requests(${1:Param1}, ${2:ActReqs}) $3' -p44619 -tp44620 -a(S'encode_command_request/2' -p44621 -S'encode_command_request() $1' -p44622 -tp44623 -a(S'encode_message/2' -p44624 -S'encode_message(${1:Param1}, ${2:Param2}) $3' -p44625 -tp44626 -a(S'encode_transaction/2' -p44627 -S'encode_transaction(${1:Param1}, ${2:Trans}) $3' -p44628 -tp44629 -a(S'token_tag2string/1' -p44630 -S'token_tag2string(${1:Param1}) $2' -p44631 -tp44632 -asS'megaco_pretty_text_encoder_v1' -p44633 -(lp44634 -(S'encode_action_reply/2' -p44635 -S'encode_action_reply() $1' -p44636 -tp44637 -a(S'encode_action_request/2' -p44638 -S'encode_action_request() $1' -p44639 -tp44640 -a(S'encode_action_requests/2' -p44641 -S'encode_action_requests(${1:Param1}, ${2:ActReqs}) $3' -p44642 -tp44643 -a(S'encode_command_request/2' -p44644 -S'encode_command_request() $1' -p44645 -tp44646 -a(S'encode_message/2' -p44647 -S'encode_message(${1:Param1}, ${2:Param2}) $3' -p44648 -tp44649 -a(S'encode_transaction/2' -p44650 -S'encode_transaction(${1:Param1}, ${2:Trans}) $3' -p44651 -tp44652 -a(S'token_tag2string/1' -p44653 -S'token_tag2string(${1:Param1}) $2' -p44654 -tp44655 -asS'oe_CosNotifyComm' -p44656 -(lp44657 -(S'oe_dependency/0' -p44658 -S'oe_dependency() $1' -p44659 -tp44660 -a(S'oe_get_module/5' -p44661 -S'oe_get_module(${1:OE_IFR}, ${2:OE_Parent}, ${3:ID}, ${4:Name}, ${5:Version}) $6' -p44662 -tp44663 -a(S'oe_register/0' -p44664 -S'oe_register() $1' -p44665 -tp44666 -a(S'oe_unregister/0' -p44667 -S'oe_unregister() $1' -p44668 -tp44669 -asS'wxPaletteChangedEvent' -p44670 -(lp44671 -(S'getChangedWindow/1' -p44672 -S'getChangedWindow(${1:This}) $2' -p44673 -tp44674 -a(S'getId/1' -p44675 -S'getId(${1:This}) $2' -p44676 -tp44677 -a(S'getSkipped/1' -p44678 -S'getSkipped(${1:This}) $2' -p44679 -tp44680 -a(S'getTimestamp/1' -p44681 -S'getTimestamp(${1:This}) $2' -p44682 -tp44683 -a(S'isCommandEvent/1' -p44684 -S'isCommandEvent(${1:This}) $2' -p44685 -tp44686 -a(S'parent_class/1' -p44687 -S'parent_class(${1:Param1}) $2' -p44688 -tp44689 -a(S'resumePropagation/2' -p44690 -S'resumePropagation(${1:This}, ${2:PropagationLevel}) $3' -p44691 -tp44692 -a(S'setChangedWindow/2' -p44693 -S'setChangedWindow(${1:This}, ${2:Win}) $3' -p44694 -tp44695 -a(S'shouldPropagate/1' -p44696 -S'shouldPropagate(${1:This}) $2' -p44697 -tp44698 -a(S'skip/1' -p44699 -S'skip(${1:This}) $2' -p44700 -tp44701 -a(S'skip/2' -p44702 -S'skip(${1:This}, ${2:Options}) $3' -p44703 -tp44704 -a(S'stopPropagation/1' -p44705 -S'stopPropagation(${1:This}) $2' -p44706 -tp44707 -asS'snmpm_server_sup' -p44708 -(lp44709 -(S'init/1' -p44710 -S'init(${1:Param1}) $2' -p44711 -tp44712 -a(S'start_link/2' -p44713 -S'start_link(${1:Param1}, ${2:Opts}) $3' -p44714 -tp44715 -a(S'stop/0' -p44716 -S'stop() $1' -p44717 -tp44718 -asS'orber_env' -p44719 -(lp44720 -(S'addr2str/1' -p44721 -S'addr2str(${1:Param1}) $2' -p44722 -tp44723 -a(S'bidir_context/0' -p44724 -S'bidir_context() $1' -p44725 -tp44726 -a(S'code_change/3' -p44727 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p44728 -tp44729 -a(S'configure/2' -p44730 -S'configure(${1:Key}, ${2:Value}) $3' -p44731 -tp44732 -a(S'configure/3' -p44733 -S'configure(${1:Key}, ${2:String}, ${3:Status}) $4' -p44734 -tp44735 -a(S'configure_override/2' -p44736 -S'configure_override(${1:Key}, ${2:Value}) $3' -p44737 -tp44738 -a(S'domain/0' -p44739 -S'domain() $1' -p44740 -tp44741 -a(S'env/1' -p44742 -S'env(${1:Key}) $2' -p44743 -tp44744 -a(S'exclude_codeset_component/0' -p44745 -S'exclude_codeset_component() $1' -p44746 -tp44747 -a(S'exclude_codeset_ctx/0' -p44748 -S'exclude_codeset_ctx() $1' -p44749 -tp44750 -a(S'get_ORBDefaultInitRef/0' -p44751 -S'get_ORBDefaultInitRef() $1' -p44752 -tp44753 -a(S'get_ORBInitRef/0' -p44754 -S'get_ORBInitRef() $1' -p44755 -tp44756 -a(S'get_cached_interceptors/0' -p44757 -S'get_cached_interceptors() $1' -p44758 -tp44759 -a(S'get_debug_level/0' -p44760 -S'get_debug_level() $1' -p44761 -tp44762 -a(S'get_env/1' -p44763 -S'get_env(${1:Key}) $2' -p44764 -tp44765 -a(S'get_flags/0' -p44766 -S'get_flags() $1' -p44767 -tp44768 -a(S'get_interceptors/0' -p44769 -S'get_interceptors() $1' -p44770 -tp44771 -a(S'get_keys/0' -p44772 -S'get_keys() $1' -p44773 -tp44774 -a(S'get_lightweight_nodes/0' -p44775 -S'get_lightweight_nodes() $1' -p44776 -tp44777 -a(S'get_local_interceptors/0' -p44778 -S'get_local_interceptors() $1' -p44779 -tp44780 -a(S'getaddrstr/2' -p44781 -S'getaddrstr(${1:Hostname}, ${2:Param2}) $3' -p44782 -tp44783 -a(S'giop_version/0' -p44784 -S'giop_version() $1' -p44785 -tp44786 -a(S'handle_call/3' -p44787 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p44788 -tp44789 -a(S'handle_cast/2' -p44790 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p44791 -tp44792 -a(S'handle_info/2' -p44793 -S'handle_info(${1:Param1}, ${2:State}) $3' -p44794 -tp44795 -a(S'host/0' -p44796 -S'host() $1' -p44797 -tp44798 -a(S'iiop_acl/0' -p44799 -S'iiop_acl() $1' -p44800 -tp44801 -a(S'iiop_backlog/0' -p44802 -S'iiop_backlog() $1' -p44803 -tp44804 -a(S'iiop_connection_timeout/0' -p44805 -S'iiop_connection_timeout() $1' -p44806 -tp44807 -a(S'iiop_in_connection_timeout/0' -p44808 -S'iiop_in_connection_timeout() $1' -p44809 -tp44810 -a(S'iiop_in_keepalive/0' -p44811 -S'iiop_in_keepalive() $1' -p44812 -tp44813 -a(S'iiop_max_fragments/0' -p44814 -S'iiop_max_fragments() $1' -p44815 -tp44816 -a(S'iiop_max_in_connections/0' -p44817 -S'iiop_max_in_connections() $1' -p44818 -tp44819 -a(S'iiop_max_in_requests/0' -p44820 -S'iiop_max_in_requests() $1' -p44821 -tp44822 -a(S'iiop_out_keepalive/0' -p44823 -S'iiop_out_keepalive() $1' -p44824 -tp44825 -a(S'iiop_out_ports/0' -p44826 -S'iiop_out_ports() $1' -p44827 -tp44828 -a(S'iiop_out_ports_attempts/0' -p44829 -S'iiop_out_ports_attempts() $1' -p44830 -tp44831 -a(S'iiop_out_ports_random/0' -p44832 -S'iiop_out_ports_random() $1' -p44833 -tp44834 -a(S'iiop_packet_size/0' -p44835 -S'iiop_packet_size() $1' -p44836 -tp44837 -a(S'iiop_port/0' -p44838 -S'iiop_port() $1' -p44839 -tp44840 -a(S'iiop_setup_connection_timeout/0' -p44841 -S'iiop_setup_connection_timeout() $1' -p44842 -tp44843 -a(S'iiop_ssl_accept_timeout/0' -p44844 -S'iiop_ssl_accept_timeout() $1' -p44845 -tp44846 -a(S'iiop_ssl_backlog/0' -p44847 -S'iiop_ssl_backlog() $1' -p44848 -tp44849 -a(S'iiop_ssl_in_keepalive/0' -p44850 -S'iiop_ssl_in_keepalive() $1' -p44851 -tp44852 -a(S'iiop_ssl_ip_address_local/0' -p44853 -S'iiop_ssl_ip_address_local() $1' -p44854 -tp44855 -a(S'iiop_ssl_out_keepalive/0' -p44856 -S'iiop_ssl_out_keepalive() $1' -p44857 -tp44858 -a(S'iiop_ssl_port/0' -p44859 -S'iiop_ssl_port() $1' -p44860 -tp44861 -a(S'iiop_timeout/0' -p44862 -S'iiop_timeout() $1' -p44863 -tp44864 -a(S'info/0' -p44865 -S'info() $1' -p44866 -tp44867 -a(S'info/1' -p44868 -S'info(${1:IoDevice}) $2' -p44869 -tp44870 -a(S'init/1' -p44871 -S'init(${1:Param1}) $2' -p44872 -tp44873 -a(S'ip_address/0' -p44874 -S'ip_address() $1' -p44875 -tp44876 -a(S'ip_address/1' -p44877 -S'ip_address(${1:Param1}) $2' -p44878 -tp44879 -a(S'ip_address_local/0' -p44880 -S'ip_address_local() $1' -p44881 -tp44882 -a(S'ip_address_variable_defined/0' -p44883 -S'ip_address_variable_defined() $1' -p44884 -tp44885 -a(S'ip_version/0' -p44886 -S'ip_version() $1' -p44887 -tp44888 -a(S'is_lightweight/0' -p44889 -S'is_lightweight() $1' -p44890 -tp44891 -a(S'light_ifr/0' -p44892 -S'light_ifr() $1' -p44893 -tp44894 -a(S'multi_configure/1' -p44895 -S'multi_configure(${1:KeyValueList}) $2' -p44896 -tp44897 -a(S'nat_host/0' -p44898 -S'nat_host() $1' -p44899 -tp44900 -a(S'nat_host/1' -p44901 -S'nat_host(${1:Param1}) $2' -p44902 -tp44903 -a(S'nat_iiop_port/0' -p44904 -S'nat_iiop_port() $1' -p44905 -tp44906 -a(S'nat_iiop_port/1' -p44907 -S'nat_iiop_port(${1:LocalPort}) $2' -p44908 -tp44909 -a(S'nat_iiop_ssl_port/0' -p44910 -S'nat_iiop_ssl_port() $1' -p44911 -tp44912 -a(S'nat_iiop_ssl_port/1' -p44913 -S'nat_iiop_ssl_port(${1:LocalPort}) $2' -p44914 -tp44915 -a(S'objectkeys_gc_time/0' -p44916 -S'objectkeys_gc_time() $1' -p44917 -tp44918 -a(S'partial_security/0' -p44919 -S'partial_security() $1' -p44920 -tp44921 -a(S'secure/0' -p44922 -S'secure() $1' -p44923 -tp44924 -a(S'set_env/2' -p44925 -S'set_env(${1:Key}, ${2:Value}) $3' -p44926 -tp44927 -a(S'set_interceptors/1' -p44928 -S'set_interceptors(${1:Param1}) $2' -p44929 -tp44930 -a(S'set_ssl_client_cacertfile/1' -p44931 -S'set_ssl_client_cacertfile(${1:Value}) $2' -p44932 -tp44933 -a(S'set_ssl_client_certfile/1' -p44934 -S'set_ssl_client_certfile(${1:Value}) $2' -p44935 -tp44936 -a(S'set_ssl_client_depth/1' -p44937 -S'set_ssl_client_depth(${1:Value}) $2' -p44938 -tp44939 -a(S'set_ssl_client_options/1' -p44940 -S'set_ssl_client_options(${1:Value}) $2' -p44941 -tp44942 -a(S'set_ssl_client_verify/1' -p44943 -S'set_ssl_client_verify() $1' -p44944 -tp44945 -a(S'ssl_client_cacertfile/0' -p44946 -S'ssl_client_cacertfile() $1' -p44947 -tp44948 -a(S'ssl_client_cachetimeout/0' -p44949 -S'ssl_client_cachetimeout() $1' -p44950 -tp44951 -a(S'ssl_client_certfile/0' -p44952 -S'ssl_client_certfile() $1' -p44953 -tp44954 -a(S'ssl_client_ciphers/0' -p44955 -S'ssl_client_ciphers() $1' -p44956 -tp44957 -a(S'ssl_client_depth/0' -p44958 -S'ssl_client_depth() $1' -p44959 -tp44960 -a(S'ssl_client_keyfile/0' -p44961 -S'ssl_client_keyfile() $1' -p44962 -tp44963 -a(S'ssl_client_options/0' -p44964 -S'ssl_client_options() $1' -p44965 -tp44966 -a(S'ssl_client_password/0' -p44967 -S'ssl_client_password() $1' -p44968 -tp44969 -a(S'ssl_client_verify/0' -p44970 -S'ssl_client_verify() $1' -p44971 -tp44972 -a(S'ssl_generation/0' -p44973 -S'ssl_generation() $1' -p44974 -tp44975 -a(S'ssl_server_cacertfile/0' -p44976 -S'ssl_server_cacertfile() $1' -p44977 -tp44978 -a(S'ssl_server_cachetimeout/0' -p44979 -S'ssl_server_cachetimeout() $1' -p44980 -tp44981 -a(S'ssl_server_certfile/0' -p44982 -S'ssl_server_certfile() $1' -p44983 -tp44984 -a(S'ssl_server_ciphers/0' -p44985 -S'ssl_server_ciphers() $1' -p44986 -tp44987 -a(S'ssl_server_depth/0' -p44988 -S'ssl_server_depth() $1' -p44989 -tp44990 -a(S'ssl_server_keyfile/0' -p44991 -S'ssl_server_keyfile() $1' -p44992 -tp44993 -a(S'ssl_server_options/0' -p44994 -S'ssl_server_options() $1' -p44995 -tp44996 -a(S'ssl_server_password/0' -p44997 -S'ssl_server_password() $1' -p44998 -tp44999 -a(S'ssl_server_verify/0' -p45000 -S'ssl_server_verify() $1' -p45001 -tp45002 -a(S'start/1' -p45003 -S'start(${1:Opts}) $2' -p45004 -tp45005 -a(S'terminate/2' -p45006 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p45007 -tp45008 -a(S'typechecking/0' -p45009 -S'typechecking() $1' -p45010 -tp45011 -a(S'use_CSIv2/0' -p45012 -S'use_CSIv2() $1' -p45013 -tp45014 -a(S'use_FT/0' -p45015 -S'use_FT() $1' -p45016 -tp45017 -asS'snmp_usm' -p45018 -(lp45019 -(S'aes_decrypt/5' -p45020 -S'aes_decrypt() $1' -p45021 -tp45022 -a(S'aes_encrypt/3' -p45023 -S'aes_encrypt(${1:PrivKey}, ${2:Data}, ${3:SaltFun}) $4' -p45024 -tp45025 -a(S'auth_in/4' -p45026 -S'auth_in(${1:Param1}, ${2:AuthKey}, ${3:AuthParams}, ${4:Packet}) $5' -p45027 -tp45028 -a(S'auth_out/4' -p45029 -S'auth_out(${1:Param1}, ${2:AuthKey}, ${3:Message}, ${4:UsmSecParams}) $5' -p45030 -tp45031 -a(S'des_decrypt/3' -p45032 -S'des_decrypt(${1:PrivKey}, ${2:BadMsgPrivParams}, ${3:EncData}) $4' -p45033 -tp45034 -a(S'des_encrypt/3' -p45035 -S'des_encrypt(${1:PrivKey}, ${2:Data}, ${3:SaltFun}) $4' -p45036 -tp45037 -a(S'localize_key/3' -p45038 -S'localize_key(${1:Alg}, ${2:Key}, ${3:EngineID}) $4' -p45039 -tp45040 -a(S'passwd2localized_key/3' -p45041 -S'passwd2localized_key() $1' -p45042 -tp45043 -a(S'set_msg_auth_params/3' -p45044 -S'set_msg_auth_params(${1:Message}, ${2:UsmSecParams}, ${3:AuthParams}) $4' -p45045 -tp45046 -asS'inet_db' -p45047 -(lp45048 -(S'add_alt_ns/1' -p45049 -S'add_alt_ns(${1:IP}) $2' -p45050 -tp45051 -a(S'add_alt_ns/2' -p45052 -S'add_alt_ns(${1:IP}, ${2:Port}) $3' -p45053 -tp45054 -a(S'add_host/2' -p45055 -S'add_host(${1:IP}, ${2:Names}) $3' -p45056 -tp45057 -a(S'add_hosts/1' -p45058 -S'add_hosts(${1:File}) $2' -p45059 -tp45060 -a(S'add_ns/1' -p45061 -S'add_ns(${1:IP}) $2' -p45062 -tp45063 -a(S'add_ns/2' -p45064 -S'add_ns(${1:IP}, ${2:Port}) $3' -p45065 -tp45066 -a(S'add_rc/1' -p45067 -S'add_rc(${1:File}) $2' -p45068 -tp45069 -a(S'add_rc_bin/1' -p45070 -S'add_rc_bin(${1:Bin}) $2' -p45071 -tp45072 -a(S'add_rc_list/1' -p45073 -S'add_rc_list(${1:List}) $2' -p45074 -tp45075 -a(S'add_resolv/1' -p45076 -S'add_resolv(${1:File}) $2' -p45077 -tp45078 -a(S'add_rr/1' -p45079 -S'add_rr(${1:RR}) $2' -p45080 -tp45081 -a(S'add_rr/5' -p45082 -S'add_rr(${1:Domain}, ${2:Class}, ${3:Type}, ${4:TTL}, ${5:Data}) $6' -p45083 -tp45084 -a(S'add_search/1' -p45085 -S'add_search(${1:Domain}) $2' -p45086 -tp45087 -a(S'add_socks_methods/1' -p45088 -S'add_socks_methods(${1:Ms}) $2' -p45089 -tp45090 -a(S'add_socks_noproxy/1' -p45091 -S'add_socks_noproxy(${1:Param1}) $2' -p45092 -tp45093 -a(S'clear_cache/0' -p45094 -S'clear_cache() $1' -p45095 -tp45096 -a(S'clear_hosts/0' -p45097 -S'clear_hosts() $1' -p45098 -tp45099 -a(S'del_alt_ns/0' -p45100 -S'del_alt_ns() $1' -p45101 -tp45102 -a(S'del_alt_ns/1' -p45103 -S'del_alt_ns(${1:IP}) $2' -p45104 -tp45105 -a(S'del_alt_ns/2' -p45106 -S'del_alt_ns(${1:IP}, ${2:Port}) $3' -p45107 -tp45108 -a(S'del_host/1' -p45109 -S'del_host(${1:IP}) $2' -p45110 -tp45111 -a(S'del_ns/0' -p45112 -S'del_ns() $1' -p45113 -tp45114 -a(S'del_ns/1' -p45115 -S'del_ns(${1:IP}) $2' -p45116 -tp45117 -a(S'del_ns/2' -p45118 -S'del_ns(${1:IP}, ${2:Port}) $3' -p45119 -tp45120 -a(S'del_rr/4' -p45121 -S'del_rr(${1:Domain}, ${2:Class}, ${3:Type}, ${4:Data}) $5' -p45122 -tp45123 -a(S'del_search/0' -p45124 -S'del_search() $1' -p45125 -tp45126 -a(S'del_search/1' -p45127 -S'del_search(${1:Domain}) $2' -p45128 -tp45129 -a(S'del_socks_methods/0' -p45130 -S'del_socks_methods() $1' -p45131 -tp45132 -a(S'del_socks_methods/1' -p45133 -S'del_socks_methods(${1:Ms}) $2' -p45134 -tp45135 -a(S'del_socks_noproxy/1' -p45136 -S'del_socks_noproxy(${1:Net}) $2' -p45137 -tp45138 -a(S'get_hosts_file/0' -p45139 -S'get_hosts_file() $1' -p45140 -tp45141 -a(S'get_rc/0' -p45142 -S'get_rc() $1' -p45143 -tp45144 -a(S'get_searchlist/0' -p45145 -S'get_searchlist() $1' -p45146 -tp45147 -a(S'getbyname/2' -p45148 -S'getbyname(${1:Name}, ${2:Type}) $3' -p45149 -tp45150 -a(S'gethostbyaddr/1' -p45151 -S'gethostbyaddr(${1:IP}) $2' -p45152 -tp45153 -a(S'gethostname/0' -p45154 -S'gethostname() $1' -p45155 -tp45156 -a(S'handle_call/3' -p45157 -S'handle_call(${1:Request}, ${2:From}, ${3:State}) $4' -p45158 -tp45159 -a(S'handle_cast/2' -p45160 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p45161 -tp45162 -a(S'handle_info/2' -p45163 -S'handle_info(${1:Param1}, ${2:State}) $3' -p45164 -tp45165 -a(S'init/1' -p45166 -S'init(${1:Param1}) $2' -p45167 -tp45168 -a(S'ins_alt_ns/1' -p45169 -S'ins_alt_ns(${1:IP}) $2' -p45170 -tp45171 -a(S'ins_alt_ns/2' -p45172 -S'ins_alt_ns(${1:IP}, ${2:Port}) $3' -p45173 -tp45174 -a(S'ins_ns/1' -p45175 -S'ins_ns(${1:IP}) $2' -p45176 -tp45177 -a(S'ins_ns/2' -p45178 -S'ins_ns(${1:IP}, ${2:Port}) $3' -p45179 -tp45180 -a(S'ins_search/1' -p45181 -S'ins_search(${1:Domain}) $2' -p45182 -tp45183 -a(S'lookup_socket/1' -p45184 -S'lookup_socket(${1:Socket}) $2' -p45185 -tp45186 -a(S'register_socket/2' -p45187 -S'register_socket(${1:Socket}, ${2:Module}) $3' -p45188 -tp45189 -a(S'res_check_option/2' -p45190 -S'res_check_option(${1:Param1}, ${2:NSs}) $3' -p45191 -tp45192 -a(S'res_gethostbyaddr/2' -p45193 -S'res_gethostbyaddr(${1:IP}, ${2:Rec}) $3' -p45194 -tp45195 -a(S'res_hostent_by_domain/3' -p45196 -S'res_hostent_by_domain(${1:Domain}, ${2:Type}, ${3:Rec}) $4' -p45197 -tp45198 -a(S'res_option/1' -p45199 -S'res_option(${1:Option}) $2' -p45200 -tp45201 -a(S'res_option/2' -p45202 -S'res_option(${1:Option}, ${2:Value}) $3' -p45203 -tp45204 -a(S'res_update_conf/0' -p45205 -S'res_update_conf() $1' -p45206 -tp45207 -a(S'res_update_hosts/0' -p45208 -S'res_update_hosts() $1' -p45209 -tp45210 -a(S'reset/0' -p45211 -S'reset() $1' -p45212 -tp45213 -a(S'sctp_module/0' -p45214 -S'sctp_module() $1' -p45215 -tp45216 -a(S'set_cache_refresh/1' -p45217 -S'set_cache_refresh(${1:Time}) $2' -p45218 -tp45219 -a(S'set_cache_size/1' -p45220 -S'set_cache_size(${1:Limit}) $2' -p45221 -tp45222 -a(S'set_domain/1' -p45223 -S'set_domain(${1:Domain}) $2' -p45224 -tp45225 -a(S'set_edns/1' -p45226 -S'set_edns(${1:Version}) $2' -p45227 -tp45228 -a(S'set_hostname/1' -p45229 -S'set_hostname(${1:Name}) $2' -p45230 -tp45231 -a(S'set_hosts_file/1' -p45232 -S'set_hosts_file(${1:Fname}) $2' -p45233 -tp45234 -a(S'set_inet6/1' -p45235 -S'set_inet6(${1:Bool}) $2' -p45236 -tp45237 -a(S'set_lookup/1' -p45238 -S'set_lookup(${1:Methods}) $2' -p45239 -tp45240 -a(S'set_recurse/1' -p45241 -S'set_recurse(${1:Flag}) $2' -p45242 -tp45243 -a(S'set_resolv_conf/1' -p45244 -S'set_resolv_conf(${1:Fname}) $2' -p45245 -tp45246 -a(S'set_retry/1' -p45247 -S'set_retry(${1:N}) $2' -p45248 -tp45249 -a(S'set_sctp_module/1' -p45250 -S'set_sctp_module(${1:Family}) $2' -p45251 -tp45252 -a(S'set_socks_port/1' -p45253 -S'set_socks_port(${1:Port}) $2' -p45254 -tp45255 -a(S'set_socks_server/1' -p45256 -S'set_socks_server(${1:Server}) $2' -p45257 -tp45258 -a(S'set_tcp_module/1' -p45259 -S'set_tcp_module(${1:Module}) $2' -p45260 -tp45261 -a(S'set_timeout/1' -p45262 -S'set_timeout(${1:Time}) $2' -p45263 -tp45264 -a(S'set_udp_module/1' -p45265 -S'set_udp_module(${1:Module}) $2' -p45266 -tp45267 -a(S'set_udp_payload_size/1' -p45268 -S'set_udp_payload_size(${1:Size}) $2' -p45269 -tp45270 -a(S'set_usevc/1' -p45271 -S'set_usevc(${1:Bool}) $2' -p45272 -tp45273 -a(S'socks_option/1' -p45274 -S'socks_option(${1:Param1}) $2' -p45275 -tp45276 -a(S'start/0' -p45277 -S'start() $1' -p45278 -tp45279 -a(S'start_link/0' -p45280 -S'start_link() $1' -p45281 -tp45282 -a(S'stop/0' -p45283 -S'stop() $1' -p45284 -tp45285 -a(S'tcp_module/0' -p45286 -S'tcp_module() $1' -p45287 -tp45288 -a(S'terminate/2' -p45289 -S'terminate(${1:Param1}, ${2:State}) $3' -p45290 -tp45291 -a(S'tolower/1' -p45292 -S'tolower(${1:Param1}) $2' -p45293 -tp45294 -a(S'udp_module/0' -p45295 -S'udp_module() $1' -p45296 -tp45297 -a(S'unregister_socket/1' -p45298 -S'unregister_socket(${1:Socket}) $2' -p45299 -tp45300 -asS'webtool_sup' -p45301 -(lp45302 -(S'init/1' -p45303 -S'init(${1:Param1}) $2' -p45304 -tp45305 -a(S'start_link/0' -p45306 -S'start_link() $1' -p45307 -tp45308 -a(S'stop/1' -p45309 -S'stop(${1:Pid}) $2' -p45310 -tp45311 -asS'rec_env' -p45312 -(lp45313 -(S'bind/3' -p45314 -S'bind(${1:Key}, ${2:Value}, ${3:Env}) $4' -p45315 -tp45316 -a(S'bind_list/3' -p45317 -S'bind_list(${1:Ks}, ${2:Vs}, ${3:Env}) $4' -p45318 -tp45319 -a(S'bind_recursive/4' -p45320 -S'bind_recursive(${1:Ks}, ${2:Vs}, ${3:F}, ${4:Env}) $5' -p45321 -tp45322 -a(S'delete/2' -p45323 -S'delete(${1:Key}, ${2:Param2}) $3' -p45324 -tp45325 -a(S'empty/0' -p45326 -S'empty() $1' -p45327 -tp45328 -a(S'get/2' -p45329 -S'get(${1:Key}, ${2:Env}) $3' -p45330 -tp45331 -a(S'is_defined/2' -p45332 -S'is_defined(${1:Key}, ${2:Param2}) $3' -p45333 -tp45334 -a(S'is_empty/1' -p45335 -S'is_empty(${1:Param1}) $2' -p45336 -tp45337 -a(S'keys/1' -p45338 -S'keys(${1:Env}) $2' -p45339 -tp45340 -a(S'lookup/2' -p45341 -S'lookup(${1:Key}, ${2:Param2}) $3' -p45342 -tp45343 -a(S'new_key/1' -p45344 -S'new_key(${1:Env}) $2' -p45345 -tp45346 -a(S'new_key/2' -p45347 -S'new_key(${1:F}, ${2:Env}) $3' -p45348 -tp45349 -a(S'new_keys/2' -p45350 -S'new_keys(${1:N}, ${2:Env}) $3' -p45351 -tp45352 -a(S'new_keys/3' -p45353 -S'new_keys(${1:N}, ${2:F}, ${3:Env}) $4' -p45354 -tp45355 -a(S'size/1' -p45356 -S'size(${1:Env}) $2' -p45357 -tp45358 -a(S'test/1' -p45359 -S'test(${1:N}) $2' -p45360 -tp45361 -a(S'test_custom/1' -p45362 -S'test_custom(${1:N}) $2' -p45363 -tp45364 -a(S'test_custom/2' -p45365 -S'test_custom(${1:F}, ${2:N}) $3' -p45366 -tp45367 -a(S'to_list/1' -p45368 -S'to_list(${1:Env}) $2' -p45369 -tp45370 -asS'man' -p45371 -(lp45372 -(S'browser/1' -p45373 -S'browser(${1:Items}) $2' -p45374 -tp45375 -a(S'browser_init/2' -p45376 -S'browser_init(${1:Pid}, ${2:Items}) $3' -p45377 -tp45378 -a(S'init/0' -p45379 -S'init() $1' -p45380 -tp45381 -a(S'man_list/0' -p45382 -S'man_list() $1' -p45383 -tp45384 -a(S'start/0' -p45385 -S'start() $1' -p45386 -tp45387 -asS'gstk_menubar' -p45388 -(lp45389 -(S'config/3' -p45390 -S'config(${1:DB}, ${2:Gstkid}, ${3:Opts}) $4' -p45391 -tp45392 -a(S'create/3' -p45393 -S'create(${1:DB}, ${2:GstkId}, ${3:Opts}) $4' -p45394 -tp45395 -a(S'delete/2' -p45396 -S'delete(${1:DB}, ${2:Gstkid}) $3' -p45397 -tp45398 -a(S'event/5' -p45399 -S'event(${1:DB}, ${2:Gstkid}, ${3:Etype}, ${4:Edata}, ${5:Args}) $6' -p45400 -tp45401 -a(S'mk_create_opts_for_child/4' -p45402 -S'mk_create_opts_for_child() $1' -p45403 -tp45404 -a(S'option/5' -p45405 -S'option(${1:Option}, ${2:GstkId}, ${3:TkW}, ${4:Param4}, ${5:Param5}) $6' -p45406 -tp45407 -a(S'read/3' -p45408 -S'read(${1:DB}, ${2:Gstkid}, ${3:Opt}) $4' -p45409 -tp45410 -a(S'read_option/5' -p45411 -S'read_option(${1:Option}, ${2:GstkId}, ${3:TkW}, ${4:Param4}, ${5:Param5}) $6' -p45412 -tp45413 -asS'ic_constant_java' -p45414 -(lp45415 -(S'gen/3' -p45416 -S'gen(${1:G}, ${2:N}, ${3:X}) $4' -p45417 -tp45418 -asS'orber_initial_references' -p45419 -(lp45420 -(S'add/2' -p45421 -S'add(${1:Id}, ${2:ObjRef}) $3' -p45422 -tp45423 -a(S'add/3' -p45424 -S'add(${1:EO_this}, ${2:Id}, ${3:ObjRef}) $4' -p45425 -tp45426 -a(S'code_change/3' -p45427 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p45428 -tp45429 -a(S'get/1' -p45430 -S'get() $1' -p45431 -tp45432 -a(S'get/2' -p45433 -S'get() $1' -p45434 -tp45435 -a(S'handle_call/3' -p45436 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p45437 -tp45438 -a(S'handle_cast/2' -p45439 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p45440 -tp45441 -a(S'handle_info/2' -p45442 -S'handle_info(${1:Param1}, ${2:State}) $3' -p45443 -tp45444 -a(S'init/1' -p45445 -S'init(${1:Param1}) $2' -p45446 -tp45447 -a(S'install/2' -p45448 -S'install(${1:Timeout}, ${2:Options}) $3' -p45449 -tp45450 -a(S'list/0' -p45451 -S'list() $1' -p45452 -tp45453 -a(S'list/1' -p45454 -S'list(${1:EO_this}) $2' -p45455 -tp45456 -a(S'oe_get_interface/0' -p45457 -S'oe_get_interface() $1' -p45458 -tp45459 -a(S'oe_is_a/1' -p45460 -S'oe_is_a(${1:Param1}) $2' -p45461 -tp45462 -a(S'oe_tc/1' -p45463 -S'oe_tc(${1:Param1}) $2' -p45464 -tp45465 -a(S'remove/1' -p45466 -S'remove(${1:Id}) $2' -p45467 -tp45468 -a(S'remove/2' -p45469 -S'remove(${1:EO_this}, ${2:Id}) $3' -p45470 -tp45471 -a(S'shutdown/1' -p45472 -S'shutdown(${1:EO_this}) $2' -p45473 -tp45474 -a(S'start/1' -p45475 -S'start(${1:Env}) $2' -p45476 -tp45477 -a(S'terminate/2' -p45478 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p45479 -tp45480 -a(S'typeID/0' -p45481 -S'typeID() $1' -p45482 -tp45483 -asS'snmpa_set_lib' -p45484 -(lp45485 -(S'consistency_check/1' -p45486 -S'consistency_check(${1:Varbinds}) $2' -p45487 -tp45488 -a(S'is_varbinds_ok/1' -p45489 -S'is_varbinds_ok(${1:Param1}) $2' -p45490 -tp45491 -a(S'try_set/1' -p45492 -S'try_set(${1:Param1}) $2' -p45493 -tp45494 -a(S'undo_varbinds/1' -p45495 -S'undo_varbinds(${1:Param1}) $2' -p45496 -tp45497 -asS'diameter_sync' -p45498 -(lp45499 -(S'call/4' -p45500 -S'call(${1:Name}, ${2:Req}, ${3:Max}, ${4:Timeout}) $5' -p45501 -tp45502 -a(S'call/5' -p45503 -S'call(${1:Node}, ${2:Name}, ${3:Req}, ${4:Max}, ${5:Timeout}) $6' -p45504 -tp45505 -a(S'carp/1' -p45506 -S'carp(${1:Name}) $2' -p45507 -tp45508 -a(S'carp/2' -p45509 -S'carp(${1:Node}, ${2:Name}) $3' -p45510 -tp45511 -a(S'cast/4' -p45512 -S'cast(${1:Name}, ${2:Req}, ${3:Max}, ${4:Timeout}) $5' -p45513 -tp45514 -a(S'cast/5' -p45515 -S'cast(${1:Node}, ${2:Name}, ${3:Req}, ${4:Max}, ${5:Timeout}) $6' -p45516 -tp45517 -a(S'code_change/3' -p45518 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p45519 -tp45520 -a(S'flush/1' -p45521 -S'flush(${1:Name}) $2' -p45522 -tp45523 -a(S'handle_call/3' -p45524 -S'handle_call(${1:Request}, ${2:From}, ${3:State}) $4' -p45525 -tp45526 -a(S'handle_cast/2' -p45527 -S'handle_cast(${1:Msg}, ${2:State}) $3' -p45528 -tp45529 -a(S'handle_info/2' -p45530 -S'handle_info(${1:Request}, ${2:State}) $3' -p45531 -tp45532 -a(S'init/1' -p45533 -S'init(${1:Param1}) $2' -p45534 -tp45535 -a(S'pending/0' -p45536 -S'pending() $1' -p45537 -tp45538 -a(S'pending/1' -p45539 -S'pending(${1:Name}) $2' -p45540 -tp45541 -a(S'pids/1' -p45542 -S'pids(${1:Name}) $2' -p45543 -tp45544 -a(S'queues/0' -p45545 -S'queues() $1' -p45546 -tp45547 -a(S'start_link/0' -p45548 -S'start_link() $1' -p45549 -tp45550 -a(S'state/0' -p45551 -S'state() $1' -p45552 -tp45553 -a(S'terminate/2' -p45554 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p45555 -tp45556 -a(S'uptime/0' -p45557 -S'uptime() $1' -p45558 -tp45559 -asS'gstk_radiobutton' -p45560 -(lp45561 -(S'config/3' -p45562 -S'config(${1:DB}, ${2:Gstkid}, ${3:Opts}) $4' -p45563 -tp45564 -a(S'create/3' -p45565 -S'create(${1:DB}, ${2:GstkId}, ${3:Opts}) $4' -p45566 -tp45567 -a(S'delete/2' -p45568 -S'delete(${1:DB}, ${2:Gstkid}) $3' -p45569 -tp45570 -a(S'event/5' -p45571 -S'event(${1:DB}, ${2:Gstkid}, ${3:Etype}, ${4:Edata}, ${5:Args}) $6' -p45572 -tp45573 -a(S'option/5' -p45574 -S'option(${1:Option}, ${2:Gstkid}, ${3:TkW}, ${4:DB}, ${5:Param5}) $6' -p45575 -tp45576 -a(S'read/3' -p45577 -S'read(${1:DB}, ${2:Gstkid}, ${3:Opt}) $4' -p45578 -tp45579 -a(S'read_option/5' -p45580 -S'read_option(${1:Option}, ${2:Gstkid}, ${3:TkW}, ${4:DB}, ${5:Param5}) $6' -p45581 -tp45582 -asS'et_selector' -p45583 -(lp45584 -(S'change_pattern/1' -p45585 -S'change_pattern(${1:Param1}) $2' -p45586 -tp45587 -a(S'make_pattern/1' -p45588 -S'make_pattern(${1:Param1}) $2' -p45589 -tp45590 -a(S'parse_event/2' -p45591 -S'parse_event(${1:Mod}, ${2:E}) $3' -p45592 -tp45593 -asS'CosNotifyChannelAdmin_ProxyPullConsumer' -p45594 -(lp45595 -(S"'_get_MyAdmin'/1" -p45596 -S"'_get_MyAdmin'(${1:OE_THIS}) $2" -p45597 -tp45598 -a(S"'_get_MyAdmin'/2" -p45599 -S"'_get_MyAdmin'(${1:OE_THIS}, ${2:OE_Options}) $3" -p45600 -tp45601 -a(S"'_get_MyType'/1" -p45602 -S"'_get_MyType'(${1:OE_THIS}) $2" -p45603 -tp45604 -a(S"'_get_MyType'/2" -p45605 -S"'_get_MyType'(${1:OE_THIS}, ${2:OE_Options}) $3" -p45606 -tp45607 -a(S'add_filter/2' -p45608 -S'add_filter(${1:OE_THIS}, ${2:New_filter}) $3' -p45609 -tp45610 -a(S'add_filter/3' -p45611 -S'add_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:New_filter}) $4' -p45612 -tp45613 -a(S'code_change/3' -p45614 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p45615 -tp45616 -a(S'connect_any_pull_supplier/2' -p45617 -S'connect_any_pull_supplier(${1:OE_THIS}, ${2:Pull_supplier}) $3' -p45618 -tp45619 -a(S'connect_any_pull_supplier/3' -p45620 -S'connect_any_pull_supplier(${1:OE_THIS}, ${2:OE_Options}, ${3:Pull_supplier}) $4' -p45621 -tp45622 -a(S'connect_pull_supplier/2' -p45623 -S'connect_pull_supplier(${1:OE_THIS}, ${2:Pull_supplier}) $3' -p45624 -tp45625 -a(S'connect_pull_supplier/3' -p45626 -S'connect_pull_supplier(${1:OE_THIS}, ${2:OE_Options}, ${3:Pull_supplier}) $4' -p45627 -tp45628 -a(S'disconnect_pull_consumer/1' -p45629 -S'disconnect_pull_consumer(${1:OE_THIS}) $2' -p45630 -tp45631 -a(S'disconnect_pull_consumer/2' -p45632 -S'disconnect_pull_consumer(${1:OE_THIS}, ${2:OE_Options}) $3' -p45633 -tp45634 -a(S'get_all_filters/1' -p45635 -S'get_all_filters(${1:OE_THIS}) $2' -p45636 -tp45637 -a(S'get_all_filters/2' -p45638 -S'get_all_filters(${1:OE_THIS}, ${2:OE_Options}) $3' -p45639 -tp45640 -a(S'get_filter/2' -p45641 -S'get_filter(${1:OE_THIS}, ${2:Filter}) $3' -p45642 -tp45643 -a(S'get_filter/3' -p45644 -S'get_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:Filter}) $4' -p45645 -tp45646 -a(S'get_qos/1' -p45647 -S'get_qos(${1:OE_THIS}) $2' -p45648 -tp45649 -a(S'get_qos/2' -p45650 -S'get_qos(${1:OE_THIS}, ${2:OE_Options}) $3' -p45651 -tp45652 -a(S'handle_call/3' -p45653 -S'handle_call(${1:Param1}, ${2:OE_From}, ${3:OE_State}) $4' -p45654 -tp45655 -a(S'handle_cast/2' -p45656 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p45657 -tp45658 -a(S'handle_info/2' -p45659 -S'handle_info(${1:Info}, ${2:State}) $3' -p45660 -tp45661 -a(S'init/1' -p45662 -S'init(${1:Env}) $2' -p45663 -tp45664 -a(S'obtain_subscription_types/2' -p45665 -S'obtain_subscription_types(${1:OE_THIS}, ${2:Mode}) $3' -p45666 -tp45667 -a(S'obtain_subscription_types/3' -p45668 -S'obtain_subscription_types(${1:OE_THIS}, ${2:OE_Options}, ${3:Mode}) $4' -p45669 -tp45670 -a(S'oe_create/0' -p45671 -S'oe_create() $1' -p45672 -tp45673 -a(S'oe_create/1' -p45674 -S'oe_create(${1:Env}) $2' -p45675 -tp45676 -a(S'oe_create/2' -p45677 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p45678 -tp45679 -a(S'oe_create_link/0' -p45680 -S'oe_create_link() $1' -p45681 -tp45682 -a(S'oe_create_link/1' -p45683 -S'oe_create_link(${1:Env}) $2' -p45684 -tp45685 -a(S'oe_create_link/2' -p45686 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p45687 -tp45688 -a(S'oe_get_interface/0' -p45689 -S'oe_get_interface() $1' -p45690 -tp45691 -a(S'oe_is_a/1' -p45692 -S'oe_is_a(${1:Param1}) $2' -p45693 -tp45694 -a(S'oe_tc/1' -p45695 -S'oe_tc(${1:Param1}) $2' -p45696 -tp45697 -a(S'offer_change/3' -p45698 -S'offer_change(${1:OE_THIS}, ${2:Added}, ${3:Removed}) $4' -p45699 -tp45700 -a(S'offer_change/4' -p45701 -S'offer_change(${1:OE_THIS}, ${2:OE_Options}, ${3:Added}, ${4:Removed}) $5' -p45702 -tp45703 -a(S'remove_all_filters/1' -p45704 -S'remove_all_filters(${1:OE_THIS}) $2' -p45705 -tp45706 -a(S'remove_all_filters/2' -p45707 -S'remove_all_filters(${1:OE_THIS}, ${2:OE_Options}) $3' -p45708 -tp45709 -a(S'remove_filter/2' -p45710 -S'remove_filter(${1:OE_THIS}, ${2:Filter}) $3' -p45711 -tp45712 -a(S'remove_filter/3' -p45713 -S'remove_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:Filter}) $4' -p45714 -tp45715 -a(S'resume_connection/1' -p45716 -S'resume_connection(${1:OE_THIS}) $2' -p45717 -tp45718 -a(S'resume_connection/2' -p45719 -S'resume_connection(${1:OE_THIS}, ${2:OE_Options}) $3' -p45720 -tp45721 -a(S'set_qos/2' -p45722 -S'set_qos(${1:OE_THIS}, ${2:Qos}) $3' -p45723 -tp45724 -a(S'set_qos/3' -p45725 -S'set_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Qos}) $4' -p45726 -tp45727 -a(S'suspend_connection/1' -p45728 -S'suspend_connection(${1:OE_THIS}) $2' -p45729 -tp45730 -a(S'suspend_connection/2' -p45731 -S'suspend_connection(${1:OE_THIS}, ${2:OE_Options}) $3' -p45732 -tp45733 -a(S'terminate/2' -p45734 -S'terminate(${1:Reason}, ${2:State}) $3' -p45735 -tp45736 -a(S'typeID/0' -p45737 -S'typeID() $1' -p45738 -tp45739 -a(S'validate_event_qos/2' -p45740 -S'validate_event_qos(${1:OE_THIS}, ${2:Required_qos}) $3' -p45741 -tp45742 -a(S'validate_event_qos/3' -p45743 -S'validate_event_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Required_qos}) $4' -p45744 -tp45745 -a(S'validate_qos/2' -p45746 -S'validate_qos(${1:OE_THIS}, ${2:Required_qos}) $3' -p45747 -tp45748 -a(S'validate_qos/3' -p45749 -S'validate_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Required_qos}) $4' -p45750 -tp45751 -asS'CosEventDomainAdmin_ConnectionNotFound' -p45752 -(lp45753 -(S'id/0' -p45754 -S'id() $1' -p45755 -tp45756 -a(S'name/0' -p45757 -S'name() $1' -p45758 -tp45759 -a(S'tc/0' -p45760 -S'tc() $1' -p45761 -tp45762 -asS'kernel_config' -p45763 -(lp45764 -(S'code_change/3' -p45765 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p45766 -tp45767 -a(S'handle_call/3' -p45768 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p45769 -tp45770 -a(S'handle_cast/2' -p45771 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p45772 -tp45773 -a(S'handle_info/2' -p45774 -S'handle_info(${1:Param1}, ${2:State}) $3' -p45775 -tp45776 -a(S'init/1' -p45777 -S'init(${1:Param1}) $2' -p45778 -tp45779 -a(S'send_timeout/2' -p45780 -S'send_timeout(${1:Timeout}, ${2:Pid}) $3' -p45781 -tp45782 -a(S'start_link/0' -p45783 -S'start_link() $1' -p45784 -tp45785 -a(S'terminate/2' -p45786 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p45787 -tp45788 -asS'diameter_dict_parser' -p45789 -(lp45790 -(S'format_error/1' -p45791 -S'format_error(${1:Message}) $2' -p45792 -tp45793 -a(S'parse/1' -p45794 -S'parse(${1:Tokens}) $2' -p45795 -tp45796 -a(S'parse_and_scan/1' -p45797 -S'parse_and_scan(${1:Param1}) $2' -p45798 -tp45799 -asS'ttb' -p45800 -(lp45801 -(S'ctp/0' -p45802 -S'ctp() $1' -p45803 -tp45804 -a(S'ctp/1' -p45805 -S'ctp(${1:A}) $2' -p45806 -tp45807 -a(S'ctp/2' -p45808 -S'ctp(${1:A}, ${2:B}) $3' -p45809 -tp45810 -a(S'ctp/3' -p45811 -S'ctp(${1:A}, ${2:B}, ${3:C}) $4' -p45812 -tp45813 -a(S'ctpg/0' -p45814 -S'ctpg() $1' -p45815 -tp45816 -a(S'ctpg/1' -p45817 -S'ctpg(${1:A}) $2' -p45818 -tp45819 -a(S'ctpg/2' -p45820 -S'ctpg(${1:A}, ${2:B}) $3' -p45821 -tp45822 -a(S'ctpg/3' -p45823 -S'ctpg(${1:A}, ${2:B}, ${3:C}) $4' -p45824 -tp45825 -a(S'ctpl/0' -p45826 -S'ctpl() $1' -p45827 -tp45828 -a(S'ctpl/1' -p45829 -S'ctpl(${1:A}) $2' -p45830 -tp45831 -a(S'ctpl/2' -p45832 -S'ctpl(${1:A}, ${2:B}) $3' -p45833 -tp45834 -a(S'ctpl/3' -p45835 -S'ctpl(${1:A}, ${2:B}, ${3:C}) $4' -p45836 -tp45837 -a(S'dump_ti/1' -p45838 -S'dump_ti(${1:File}) $2' -p45839 -tp45840 -a(S'format/1' -p45841 -S'format(${1:Files}) $2' -p45842 -tp45843 -a(S'format/2' -p45844 -S'format(${1:Files}, ${2:Opt}) $3' -p45845 -tp45846 -a(S'get_et_handler/0' -p45847 -S'get_et_handler() $1' -p45848 -tp45849 -a(S'list_config/1' -p45850 -S'list_config(${1:ConfigFile}) $2' -p45851 -tp45852 -a(S'list_history/0' -p45853 -S'list_history() $1' -p45854 -tp45855 -a(S'p/2' -p45856 -S'p(${1:Procs0}, ${2:Flags0}) $3' -p45857 -tp45858 -a(S'run_config/1' -p45859 -S'run_config(${1:ConfigFile}) $2' -p45860 -tp45861 -a(S'run_config/2' -p45862 -S'run_config(${1:ConfigFile}, ${2:N}) $3' -p45863 -tp45864 -a(S'run_history/1' -p45865 -S'run_history(${1:N}) $2' -p45866 -tp45867 -a(S'seq_trigger_ms/0' -p45868 -S'seq_trigger_ms() $1' -p45869 -tp45870 -a(S'seq_trigger_ms/1' -p45871 -S'seq_trigger_ms(${1:Flag}) $2' -p45872 -tp45873 -a(S'start_trace/4' -p45874 -S'start_trace(${1:Nodes}, ${2:Patterns}, ${3:Param3}, ${4:Options}) $5' -p45875 -tp45876 -a(S'stop/0' -p45877 -S'stop() $1' -p45878 -tp45879 -a(S'stop/1' -p45880 -S'stop(${1:Opts}) $2' -p45881 -tp45882 -a(S'tp/2' -p45883 -S'tp(${1:A}, ${2:B}) $3' -p45884 -tp45885 -a(S'tp/3' -p45886 -S'tp(${1:A}, ${2:B}, ${3:C}) $4' -p45887 -tp45888 -a(S'tp/4' -p45889 -S'tp(${1:A}, ${2:B}, ${3:C}, ${4:D}) $5' -p45890 -tp45891 -a(S'tpl/2' -p45892 -S'tpl(${1:A}, ${2:B}) $3' -p45893 -tp45894 -a(S'tpl/3' -p45895 -S'tpl(${1:A}, ${2:B}, ${3:C}) $4' -p45896 -tp45897 -a(S'tpl/4' -p45898 -S'tpl(${1:A}, ${2:B}, ${3:C}, ${4:D}) $5' -p45899 -tp45900 -a(S'tracer/0' -p45901 -S'tracer() $1' -p45902 -tp45903 -a(S'tracer/1' -p45904 -S'tracer(${1:Nodes}) $2' -p45905 -tp45906 -a(S'tracer/2' -p45907 -S'tracer(${1:Nodes}, ${2:Opt}) $3' -p45908 -tp45909 -a(S'write_config/2' -p45910 -S'write_config(${1:ConfigFile}, ${2:Config}) $3' -p45911 -tp45912 -a(S'write_config/3' -p45913 -S'write_config(${1:ConfigFile}, ${2:Config}, ${3:Opt}) $4' -p45914 -tp45915 -a(S'write_trace_info/2' -p45916 -S'write_trace_info(${1:Key}, ${2:What}) $3' -p45917 -tp45918 -asS'dets_sup' -p45919 -(lp45920 -(S'init/1' -p45921 -S'init(${1:Param1}) $2' -p45922 -tp45923 -a(S'start_link/0' -p45924 -S'start_link() $1' -p45925 -tp45926 -asS'odbc_app' -p45927 -(lp45928 -(S'start/2' -p45929 -S'start(${1:Param1}, ${2:Name}) $3' -p45930 -tp45931 -a(S'stop/1' -p45932 -S'stop(${1:Param1}) $2' -p45933 -tp45934 -asS'dbg_wx_view' -p45935 -(lp45936 -(S'start/2' -p45937 -S'start(${1:GS}, ${2:Mod}) $3' -p45938 -tp45939 -asS'ssh_connection_manager' -p45940 -(lp45941 -(S'adjust_window/3' -p45942 -S'adjust_window(${1:ConnectionManager}, ${2:Channel}, ${3:Bytes}) $4' -p45943 -tp45944 -a(S'cast/2' -p45945 -S'cast(${1:Request}, ${2:State0}) $3' -p45946 -tp45947 -a(S'channel_info/3' -p45948 -S'channel_info(${1:ConnectionManager}, ${2:ChannelId}, ${3:Options}) $4' -p45949 -tp45950 -a(S'close/2' -p45951 -S'close(${1:ConnectionManager}, ${2:ChannelId}) $3' -p45952 -tp45953 -a(S'code_change/3' -p45954 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p45955 -tp45956 -a(S'connection_info/2' -p45957 -S'connection_info(${1:ConnectionManager}, ${2:Options}) $3' -p45958 -tp45959 -a(S'event/2' -p45960 -S'event(${1:ConnectionManager}, ${2:BinMsg}) $3' -p45961 -tp45962 -a(S'global_request/4' -p45963 -S'global_request(${1:ConnectionManager}, ${2:Type}, ${3:Reply}, ${4:Data}) $5' -p45964 -tp45965 -a(S'handle_call/3' -p45966 -S'handle_call(${1:Param1}, ${2:From}, ${3:State0}) $4' -p45967 -tp45968 -a(S'handle_cast/2' -p45969 -S'handle_cast(${1:Request}, ${2:State0}) $3' -p45970 -tp45971 -a(S'handle_info/2' -p45972 -S'handle_info(${1:Param1}, ${2:State0}) $3' -p45973 -tp45974 -a(S'info/1' -p45975 -S'info(${1:ConnectionManager}) $2' -p45976 -tp45977 -a(S'info/2' -p45978 -S'info(${1:ConnectionManager}, ${2:ChannelProcess}) $3' -p45979 -tp45980 -a(S'init/1' -p45981 -S'init(${1:Param1}) $2' -p45982 -tp45983 -a(S'open_channel/6' -p45984 -S'open_channel() $1' -p45985 -tp45986 -a(S'peer_addr/1' -p45987 -S'peer_addr(${1:ConnectionManager}) $2' -p45988 -tp45989 -a(S'recv_window/3' -p45990 -S'recv_window(${1:ConnectionManager}, ${2:Channel}, ${3:TimeOut}) $4' -p45991 -tp45992 -a(S'renegotiate/1' -p45993 -S'renegotiate(${1:ConnectionManager}) $2' -p45994 -tp45995 -a(S'request/6' -p45996 -S'request(${1:ConnectionManager}, ${2:ChannelId}, ${3:Type}, ${4:Param4}, ${5:Data}, ${6:Timeout}) $7' -p45997 -tp45998 -a(S'request/7' -p45999 -S'request(${1:ConnectionManager}, ${2:ChannelPid}, ${3:ChannelId}, ${4:Type}, ${5:Param5}, ${6:Data}, ${7:Timeout}) $8' -p46000 -tp46001 -a(S'send/5' -p46002 -S'send(${1:ConnectionManager}, ${2:ChannelId}, ${3:Type}, ${4:Data}, ${5:Timeout}) $6' -p46003 -tp46004 -a(S'send_eof/2' -p46005 -S'send_eof(${1:ConnectionManager}, ${2:ChannelId}) $3' -p46006 -tp46007 -a(S'send_msg/1' -p46008 -S'send_msg(${1:Msg}) $2' -p46009 -tp46010 -a(S'send_window/3' -p46011 -S'send_window(${1:ConnectionManager}, ${2:Channel}, ${3:TimeOut}) $4' -p46012 -tp46013 -a(S'ssh_channel_info_handler/3' -p46014 -S'ssh_channel_info_handler(${1:Options}, ${2:Channel}, ${3:From}) $4' -p46015 -tp46016 -a(S'start_link/1' -p46017 -S'start_link(${1:Opts}) $2' -p46018 -tp46019 -a(S'stop/1' -p46020 -S'stop(${1:ConnectionManager}) $2' -p46021 -tp46022 -a(S'terminate/2' -p46023 -S'terminate() $1' -p46024 -tp46025 -asS'group' -p46026 -(lp46027 -(S'interfaces/1' -p46028 -S'interfaces(${1:Group}) $2' -p46029 -tp46030 -a(S'server/3' -p46031 -S'server(${1:Drv}, ${2:Shell}, ${3:Options}) $4' -p46032 -tp46033 -a(S'start/2' -p46034 -S'start(${1:Drv}, ${2:Shell}) $3' -p46035 -tp46036 -a(S'start/3' -p46037 -S'start(${1:Drv}, ${2:Shell}, ${3:Options}) $4' -p46038 -tp46039 -asS'erl_bits' -p46040 -(lp46041 -(S'as_list/1' -p46042 -S'as_list(${1:Bt}) $2' -p46043 -tp46044 -a(S'set_bit_type/2' -p46045 -S'set_bit_type(${1:Size}, ${2:TypeList}) $3' -p46046 -tp46047 -a(S'system_bitdefault/0' -p46048 -S'system_bitdefault() $1' -p46049 -tp46050 -a(S'system_bittypes/0' -p46051 -S'system_bittypes() $1' -p46052 -tp46053 -asS'inviso_rt' -p46054 -(lp46055 -(S'auto_init/2' -p46056 -S'auto_init(${1:AutoModArgs}, ${2:Parent}) $3' -p46057 -tp46058 -a(S'call_suspend/2' -p46059 -S'call_suspend(${1:NodeOrPid}, ${2:Reason}) $3' -p46060 -tp46061 -a(S'cancel_suspension/1' -p46062 -S'cancel_suspension(${1:Pid}) $2' -p46063 -tp46064 -a(S'change_options/2' -p46065 -S'change_options(${1:Pid}, ${2:Options}) $3' -p46066 -tp46067 -a(S'clear/2' -p46068 -S'clear(${1:Pid}, ${2:Options}) $3' -p46069 -tp46070 -a(S'clear_all_tp/1' -p46071 -S'clear_all_tp(${1:Pid}) $2' -p46072 -tp46073 -a(S'confirm_connection/2' -p46074 -S'confirm_connection(${1:Pid}, ${2:Tag}) $3' -p46075 -tp46076 -a(S'ctf/1' -p46077 -S'ctf(${1:TraceConfList}) $2' -p46078 -tp46079 -a(S'ctf/2' -p46080 -S'ctf(${1:PidSpec}, ${2:FlagList}) $3' -p46081 -tp46082 -a(S'ctp/1' -p46083 -S'ctp(${1:PatternList}) $2' -p46084 -tp46085 -a(S'ctp/3' -p46086 -S'ctp(${1:Module}, ${2:Function}, ${3:Arity}) $4' -p46087 -tp46088 -a(S'ctpg/1' -p46089 -S'ctpg(${1:PatternList}) $2' -p46090 -tp46091 -a(S'ctpg/3' -p46092 -S'ctpg(${1:Mod}, ${2:Func}, ${3:Arity}) $4' -p46093 -tp46094 -a(S'ctpl/1' -p46095 -S'ctpl(${1:PatternList}) $2' -p46096 -tp46097 -a(S'ctpl/3' -p46098 -S'ctpl(${1:Module}, ${2:Function}, ${3:Arity}) $4' -p46099 -tp46100 -a(S'ctpm/3' -p46101 -S'ctpm(${1:Mod}, ${2:Func}, ${3:Arity}) $4' -p46102 -tp46103 -a(S'ctpm_ms/4' -p46104 -S'ctpm_ms(${1:Mod}, ${2:Func}, ${3:Arity}, ${4:MSname}) $5' -p46105 -tp46106 -a(S'delete_log/1' -p46107 -S'delete_log(${1:Pid}) $2' -p46108 -tp46109 -a(S'delete_log/2' -p46110 -S'delete_log(${1:Pid}, ${2:TracerDataOrLogList}) $3' -p46111 -tp46112 -a(S'fetch_init/4' -p46113 -S'fetch_init(${1:Parent}, ${2:Files}, ${3:CollectPid}, ${4:ChunkSize}) $5' -p46114 -tp46115 -a(S'fetch_log/2' -p46116 -S'fetch_log(${1:Pid}, ${2:CollectPid}) $3' -p46117 -tp46118 -a(S'fetch_log/3' -p46119 -S'fetch_log(${1:Pid}, ${2:CollectPid}, ${3:Spec}) $4' -p46120 -tp46121 -a(S'flush/1' -p46122 -S'flush(${1:Pid}) $2' -p46123 -tp46124 -a(S'get_node_info/1' -p46125 -S'get_node_info(${1:Pid}) $2' -p46126 -tp46127 -a(S'get_status/1' -p46128 -S'get_status(${1:Pid}) $2' -p46129 -tp46130 -a(S'get_tracerdata/1' -p46131 -S'get_tracerdata(${1:Pid}) $2' -p46132 -tp46133 -a(S'global_register/0' -p46134 -S'global_register() $1' -p46135 -tp46136 -a(S'init/4' -p46137 -S'init(${1:Ctrl}, ${2:Options}, ${3:Tag}, ${4:Parent}) $5' -p46138 -tp46139 -a(S'init_tpm/4' -p46140 -S'init_tpm(${1:Mod}, ${2:Func}, ${3:Arity}, ${4:CallFunc}) $5' -p46141 -tp46142 -a(S'init_tpm/7' -p46143 -S'init_tpm(${1:Mod}, ${2:Func}, ${3:Arity}, ${4:InitFunc}, ${5:CallFunc}, ${6:ReturnFunc}, ${7:RemoveFunc}) $8' -p46144 -tp46145 -a(S'init_tracing/1' -p46146 -S'init_tracing(${1:TracerData}) $2' -p46147 -tp46148 -a(S'init_tracing/2' -p46149 -S'init_tracing(${1:Pid}, ${2:TracerData}) $3' -p46150 -tp46151 -a(S'list_logs/1' -p46152 -S'list_logs(${1:Pid}) $2' -p46153 -tp46154 -a(S'list_logs/2' -p46155 -S'list_logs(${1:Pid}, ${2:TD}) $3' -p46156 -tp46157 -a(S'local_register/0' -p46158 -S'local_register() $1' -p46159 -tp46160 -a(S'meta_tracer_call_parallel/2' -p46161 -S'meta_tracer_call_parallel(${1:RTpids}, ${2:Args}) $3' -p46162 -tp46163 -a(S'remove_global_register/0' -p46164 -S'remove_global_register() $1' -p46165 -tp46166 -a(S'remove_local_register/0' -p46167 -S'remove_local_register() $1' -p46168 -tp46169 -a(S'start/4' -p46170 -S'start(${1:Node}, ${2:Options}, ${3:Tag}, ${4:Condition}) $5' -p46171 -tp46172 -a(S'start_link_auto/1' -p46173 -S'start_link_auto(${1:AutoModArgs}) $2' -p46174 -tp46175 -a(S'start_link_man/3' -p46176 -S'start_link_man(${1:Ctrl}, ${2:Options}, ${3:Tag}) $4' -p46177 -tp46178 -a(S'state/1' -p46179 -S'state(${1:NodeOrPid}) $2' -p46180 -tp46181 -a(S'stop/1' -p46182 -S'stop(${1:Node}) $2' -p46183 -tp46184 -a(S'stop_tracing_parallel/1' -p46185 -S'stop_tracing_parallel(${1:RTpids}) $2' -p46186 -tp46187 -a(S'suspend/2' -p46188 -S'suspend(${1:NodeOrPid}, ${2:Reason}) $3' -p46189 -tp46190 -a(S'tf/1' -p46191 -S'tf(${1:TraceConfList}) $2' -p46192 -tp46193 -a(S'tf/2' -p46194 -S'tf(${1:PidSpec}, ${2:FlagList}) $3' -p46195 -tp46196 -a(S'tp/1' -p46197 -S'tp(${1:Pid}) $2' -p46198 -tp46199 -a(S'tp/4' -p46200 -S'tp(${1:Module}, ${2:Function}, ${3:Arity}, ${4:MatchSpec}) $5' -p46201 -tp46202 -a(S'tp/5' -p46203 -S'tp(${1:Module}, ${2:Function}, ${3:Arity}, ${4:MatchSpec}, ${5:Opts}) $6' -p46204 -tp46205 -a(S'tpg/1' -p46206 -S'tpg(${1:PatternList}) $2' -p46207 -tp46208 -a(S'tpg/4' -p46209 -S'tpg(${1:Mod}, ${2:Func}, ${3:Arity}, ${4:MatchSpec}) $5' -p46210 -tp46211 -a(S'tpg/5' -p46212 -S'tpg(${1:Mod}, ${2:Func}, ${3:Arity}, ${4:MatchSpec}, ${5:Opts}) $6' -p46213 -tp46214 -a(S'tpl/1' -p46215 -S'tpl(${1:PatternList}) $2' -p46216 -tp46217 -a(S'tpl/4' -p46218 -S'tpl(${1:Module}, ${2:Function}, ${3:Arity}, ${4:MatchSpec}) $5' -p46219 -tp46220 -a(S'tpl/5' -p46221 -S'tpl(${1:Module}, ${2:Function}, ${3:Arity}, ${4:MatchSpec}, ${5:Opts}) $6' -p46222 -tp46223 -a(S'tpm/4' -p46224 -S'tpm(${1:Mod}, ${2:Func}, ${3:Arity}, ${4:CallFunc}) $5' -p46225 -tp46226 -a(S'tpm/5' -p46227 -S'tpm(${1:Mod}, ${2:Func}, ${3:Arity}, ${4:MS}, ${5:CallFunc}) $6' -p46228 -tp46229 -a(S'tpm/8' -p46230 -S'tpm(${1:Mod}, ${2:Func}, ${3:Arity}, ${4:MS}, ${5:InitFunc}, ${6:CallFunc}, ${7:ReturnFunc}, ${8:RemoveFunc}) $9' -p46231 -tp46232 -a(S'tpm_ms/5' -p46233 -S'tpm_ms(${1:Mod}, ${2:Func}, ${3:Arity}, ${4:MSname}, ${5:MS}) $6' -p46234 -tp46235 -a(S'tpm_ms_tracer/5' -p46236 -S'tpm_ms_tracer(${1:Mod}, ${2:Func}, ${3:Arity}, ${4:MSname}, ${5:MS}) $6' -p46237 -tp46238 -a(S'tpm_tracer/4' -p46239 -S'tpm_tracer(${1:Mod}, ${2:Func}, ${3:Arity}, ${4:MS}) $5' -p46240 -tp46241 -a(S'tpm_tracer/5' -p46242 -S'tpm_tracer(${1:Mod}, ${2:Func}, ${3:Arity}, ${4:MS}, ${5:CallFunc}) $6' -p46243 -tp46244 -a(S'tpm_tracer/8' -p46245 -S'tpm_tracer(${1:Mod}, ${2:Func}, ${3:Arity}, ${4:MS}, ${5:InitFunc}, ${6:CallFunc}, ${7:ReturnFunc}, ${8:RemoveFunc}) $9' -p46246 -tp46247 -a(S'trace_flags_parallel/1' -p46248 -S'trace_flags_parallel(${1:RTpidArgsHow}) $2' -p46249 -tp46250 -a(S'trace_flags_parallel/2' -p46251 -S'trace_flags_parallel(${1:RTpidArgs}, ${2:How}) $3' -p46252 -tp46253 -a(S'trace_flags_parallel/3' -p46254 -S'trace_flags_parallel(${1:RTpids}, ${2:Args}, ${3:How}) $4' -p46255 -tp46256 -a(S'trace_patterns_parallel/3' -p46257 -S'trace_patterns_parallel(${1:RTpids}, ${2:Args}, ${3:Flags}) $4' -p46258 -tp46259 -a(S'try_to_adopt/3' -p46260 -S'try_to_adopt(${1:Pid}, ${2:Tag}, ${3:Condition}) $4' -p46261 -tp46262 -asS'vts' -p46263 -(lp46264 -(S'add_config_file/2' -p46265 -S'add_config_file(${1:Param1}, ${2:Input}) $3' -p46266 -tp46267 -a(S'add_test_dir/2' -p46268 -S'add_test_dir(${1:Param1}, ${2:Input}) $3' -p46269 -tp46270 -a(S'browse_config_file/2' -p46271 -S'browse_config_file(${1:Param1}, ${2:Input}) $3' -p46272 -tp46273 -a(S'config_data/0' -p46274 -S'config_data() $1' -p46275 -tp46276 -a(S'config_frame/2' -p46277 -S'config_frame(${1:Param1}, ${2:Param2}) $3' -p46278 -tp46279 -a(S'init_data/5' -p46280 -S'init_data(${1:ConfigFiles}, ${2:EvHandlers}, ${3:LogDir}, ${4:LogOpts}, ${5:Tests}) $6' -p46281 -tp46282 -a(S'menu_frame/2' -p46283 -S'menu_frame(${1:Param1}, ${2:Param2}) $3' -p46284 -tp46285 -a(S'no_result_log_frame/2' -p46286 -S'no_result_log_frame(${1:Param1}, ${2:Param2}) $3' -p46287 -tp46288 -a(S'redirect_to_result_log_frame/2' -p46289 -S'redirect_to_result_log_frame(${1:Param1}, ${2:Param2}) $3' -p46290 -tp46291 -a(S'remove_config_file/2' -p46292 -S'remove_config_file(${1:Param1}, ${2:Input}) $3' -p46293 -tp46294 -a(S'remove_test_dir/2' -p46295 -S'remove_test_dir(${1:Param1}, ${2:Input}) $3' -p46296 -tp46297 -a(S'report/2' -p46298 -S'report(${1:What}, ${2:Data}) $3' -p46299 -tp46300 -a(S'result_frameset/2' -p46301 -S'result_frameset(${1:Param1}, ${2:Param2}) $3' -p46302 -tp46303 -a(S'result_summary_frame/2' -p46304 -S'result_summary_frame(${1:Param1}, ${2:Param2}) $3' -p46305 -tp46306 -a(S'run_frame/2' -p46307 -S'run_frame(${1:Param1}, ${2:Param2}) $3' -p46308 -tp46309 -a(S'run_test/2' -p46310 -S'run_test(${1:Param1}, ${2:Param2}) $3' -p46311 -tp46312 -a(S'select_case/2' -p46313 -S'select_case(${1:Param1}, ${2:Input}) $3' -p46314 -tp46315 -a(S'select_suite/2' -p46316 -S'select_suite(${1:Param1}, ${2:Input}) $3' -p46317 -tp46318 -a(S'start/0' -p46319 -S'start() $1' -p46320 -tp46321 -a(S'start_link/0' -p46322 -S'start_link() $1' -p46323 -tp46324 -a(S'start_page/2' -p46325 -S'start_page(${1:Param1}, ${2:Param2}) $3' -p46326 -tp46327 -a(S'stop/0' -p46328 -S'stop() $1' -p46329 -tp46330 -a(S'test_info/3' -p46331 -S'test_info(${1:Param1}, ${2:Type}, ${3:Data}) $4' -p46332 -tp46333 -a(S'title_frame/2' -p46334 -S'title_frame(${1:Param1}, ${2:Param2}) $3' -p46335 -tp46336 -a(S'welcome_frame/2' -p46337 -S'welcome_frame(${1:Param1}, ${2:Param2}) $3' -p46338 -tp46339 -asS'wxListBox' -p46340 -(lp46341 -(S'append/2' -p46342 -S'append(${1:This}, ${2:Item}) $3' -p46343 -tp46344 -a(S'append/3' -p46345 -S'append(${1:This}, ${2:Item}, ${3:ClientData}) $4' -p46346 -tp46347 -a(S'appendStrings/2' -p46348 -S'appendStrings(${1:This}, ${2:Strings}) $3' -p46349 -tp46350 -a(S'cacheBestSize/2' -p46351 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p46352 -tp46353 -a(S'captureMouse/1' -p46354 -S'captureMouse(${1:This}) $2' -p46355 -tp46356 -a(S'center/1' -p46357 -S'center(${1:This}) $2' -p46358 -tp46359 -a(S'center/2' -p46360 -S'center(${1:This}, ${2:Options}) $3' -p46361 -tp46362 -a(S'centerOnParent/1' -p46363 -S'centerOnParent(${1:This}) $2' -p46364 -tp46365 -a(S'centerOnParent/2' -p46366 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p46367 -tp46368 -a(S'centre/1' -p46369 -S'centre(${1:This}) $2' -p46370 -tp46371 -a(S'centre/2' -p46372 -S'centre(${1:This}, ${2:Options}) $3' -p46373 -tp46374 -a(S'centreOnParent/1' -p46375 -S'centreOnParent(${1:This}) $2' -p46376 -tp46377 -a(S'centreOnParent/2' -p46378 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p46379 -tp46380 -a(S'clear/1' -p46381 -S'clear(${1:This}) $2' -p46382 -tp46383 -a(S'clearBackground/1' -p46384 -S'clearBackground(${1:This}) $2' -p46385 -tp46386 -a(S'clientToScreen/2' -p46387 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p46388 -tp46389 -a(S'clientToScreen/3' -p46390 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p46391 -tp46392 -a(S'close/1' -p46393 -S'close(${1:This}) $2' -p46394 -tp46395 -a(S'close/2' -p46396 -S'close(${1:This}, ${2:Options}) $3' -p46397 -tp46398 -a(S'connect/2' -p46399 -S'connect(${1:This}, ${2:EventType}) $3' -p46400 -tp46401 -a(S'connect/3' -p46402 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p46403 -tp46404 -a(S'convertDialogToPixels/2' -p46405 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p46406 -tp46407 -a(S'convertPixelsToDialog/2' -p46408 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p46409 -tp46410 -a(S'create/6' -p46411 -S'create(${1:This}, ${2:Parent}, ${3:Id}, ${4:Pos}, ${5:Size}, ${6:Choices}) $7' -p46412 -tp46413 -a(S'create/7' -p46414 -S'create(${1:This}, ${2:Parent}, ${3:Id}, ${4:Pos}, ${5:Size}, ${6:Choices}, ${7:Param7}) $8' -p46415 -tp46416 -a(S'delete/2' -p46417 -S'delete(${1:This}, ${2:N}) $3' -p46418 -tp46419 -a(S'deselect/2' -p46420 -S'deselect(${1:This}, ${2:N}) $3' -p46421 -tp46422 -a(S'destroy/1' -p46423 -S'destroy(${1:This}) $2' -p46424 -tp46425 -a(S'destroyChildren/1' -p46426 -S'destroyChildren(${1:This}) $2' -p46427 -tp46428 -a(S'disable/1' -p46429 -S'disable(${1:This}) $2' -p46430 -tp46431 -a(S'disconnect/1' -p46432 -S'disconnect(${1:This}) $2' -p46433 -tp46434 -a(S'disconnect/2' -p46435 -S'disconnect(${1:This}, ${2:EventType}) $3' -p46436 -tp46437 -a(S'disconnect/3' -p46438 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p46439 -tp46440 -a(S'enable/1' -p46441 -S'enable(${1:This}) $2' -p46442 -tp46443 -a(S'enable/2' -p46444 -S'enable(${1:This}, ${2:Options}) $3' -p46445 -tp46446 -a(S'findString/2' -p46447 -S'findString(${1:This}, ${2:S}) $3' -p46448 -tp46449 -a(S'findString/3' -p46450 -S'findString(${1:This}, ${2:S}, ${3:Options}) $4' -p46451 -tp46452 -a(S'findWindow/2' -p46453 -S'findWindow(${1:This}, ${2:Winid}) $3' -p46454 -tp46455 -a(S'fit/1' -p46456 -S'fit(${1:This}) $2' -p46457 -tp46458 -a(S'fitInside/1' -p46459 -S'fitInside(${1:This}) $2' -p46460 -tp46461 -a(S'freeze/1' -p46462 -S'freeze(${1:This}) $2' -p46463 -tp46464 -a(S'getAcceleratorTable/1' -p46465 -S'getAcceleratorTable(${1:This}) $2' -p46466 -tp46467 -a(S'getBackgroundColour/1' -p46468 -S'getBackgroundColour(${1:This}) $2' -p46469 -tp46470 -a(S'getBackgroundStyle/1' -p46471 -S'getBackgroundStyle(${1:This}) $2' -p46472 -tp46473 -a(S'getBestSize/1' -p46474 -S'getBestSize(${1:This}) $2' -p46475 -tp46476 -a(S'getCaret/1' -p46477 -S'getCaret(${1:This}) $2' -p46478 -tp46479 -a(S'getCharHeight/1' -p46480 -S'getCharHeight(${1:This}) $2' -p46481 -tp46482 -a(S'getCharWidth/1' -p46483 -S'getCharWidth(${1:This}) $2' -p46484 -tp46485 -a(S'getChildren/1' -p46486 -S'getChildren(${1:This}) $2' -p46487 -tp46488 -a(S'getClientData/2' -p46489 -S'getClientData(${1:This}, ${2:N}) $3' -p46490 -tp46491 -a(S'getClientSize/1' -p46492 -S'getClientSize(${1:This}) $2' -p46493 -tp46494 -a(S'getContainingSizer/1' -p46495 -S'getContainingSizer(${1:This}) $2' -p46496 -tp46497 -a(S'getCount/1' -p46498 -S'getCount(${1:This}) $2' -p46499 -tp46500 -a(S'getCursor/1' -p46501 -S'getCursor(${1:This}) $2' -p46502 -tp46503 -a(S'getDropTarget/1' -p46504 -S'getDropTarget(${1:This}) $2' -p46505 -tp46506 -a(S'getEventHandler/1' -p46507 -S'getEventHandler(${1:This}) $2' -p46508 -tp46509 -a(S'getExtraStyle/1' -p46510 -S'getExtraStyle(${1:This}) $2' -p46511 -tp46512 -a(S'getFont/1' -p46513 -S'getFont(${1:This}) $2' -p46514 -tp46515 -a(S'getForegroundColour/1' -p46516 -S'getForegroundColour(${1:This}) $2' -p46517 -tp46518 -a(S'getGrandParent/1' -p46519 -S'getGrandParent(${1:This}) $2' -p46520 -tp46521 -a(S'getHandle/1' -p46522 -S'getHandle(${1:This}) $2' -p46523 -tp46524 -a(S'getHelpText/1' -p46525 -S'getHelpText(${1:This}) $2' -p46526 -tp46527 -a(S'getId/1' -p46528 -S'getId(${1:This}) $2' -p46529 -tp46530 -a(S'getLabel/1' -p46531 -S'getLabel(${1:This}) $2' -p46532 -tp46533 -a(S'getMaxSize/1' -p46534 -S'getMaxSize(${1:This}) $2' -p46535 -tp46536 -a(S'getMinSize/1' -p46537 -S'getMinSize(${1:This}) $2' -p46538 -tp46539 -a(S'getName/1' -p46540 -S'getName(${1:This}) $2' -p46541 -tp46542 -a(S'getParent/1' -p46543 -S'getParent(${1:This}) $2' -p46544 -tp46545 -a(S'getPosition/1' -p46546 -S'getPosition(${1:This}) $2' -p46547 -tp46548 -a(S'getRect/1' -p46549 -S'getRect(${1:This}) $2' -p46550 -tp46551 -a(S'getScreenPosition/1' -p46552 -S'getScreenPosition(${1:This}) $2' -p46553 -tp46554 -a(S'getScreenRect/1' -p46555 -S'getScreenRect(${1:This}) $2' -p46556 -tp46557 -a(S'getScrollPos/2' -p46558 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p46559 -tp46560 -a(S'getScrollRange/2' -p46561 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p46562 -tp46563 -a(S'getScrollThumb/2' -p46564 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p46565 -tp46566 -a(S'getSelection/1' -p46567 -S'getSelection(${1:This}) $2' -p46568 -tp46569 -a(S'getSelections/1' -p46570 -S'getSelections(${1:This}) $2' -p46571 -tp46572 -a(S'getSize/1' -p46573 -S'getSize(${1:This}) $2' -p46574 -tp46575 -a(S'getSizer/1' -p46576 -S'getSizer(${1:This}) $2' -p46577 -tp46578 -a(S'getString/2' -p46579 -S'getString(${1:This}, ${2:N}) $3' -p46580 -tp46581 -a(S'getStringSelection/1' -p46582 -S'getStringSelection(${1:This}) $2' -p46583 -tp46584 -a(S'getTextExtent/2' -p46585 -S'getTextExtent(${1:This}, ${2:String}) $3' -p46586 -tp46587 -a(S'getTextExtent/3' -p46588 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p46589 -tp46590 -a(S'getToolTip/1' -p46591 -S'getToolTip(${1:This}) $2' -p46592 -tp46593 -a(S'getUpdateRegion/1' -p46594 -S'getUpdateRegion(${1:This}) $2' -p46595 -tp46596 -a(S'getVirtualSize/1' -p46597 -S'getVirtualSize(${1:This}) $2' -p46598 -tp46599 -a(S'getWindowStyleFlag/1' -p46600 -S'getWindowStyleFlag(${1:This}) $2' -p46601 -tp46602 -a(S'getWindowVariant/1' -p46603 -S'getWindowVariant(${1:This}) $2' -p46604 -tp46605 -a(S'hasCapture/1' -p46606 -S'hasCapture(${1:This}) $2' -p46607 -tp46608 -a(S'hasScrollbar/2' -p46609 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p46610 -tp46611 -a(S'hasTransparentBackground/1' -p46612 -S'hasTransparentBackground(${1:This}) $2' -p46613 -tp46614 -a(S'hide/1' -p46615 -S'hide(${1:This}) $2' -p46616 -tp46617 -a(S'hitTest/2' -p46618 -S'hitTest(${1:This}, ${2:Point}) $3' -p46619 -tp46620 -a(S'inheritAttributes/1' -p46621 -S'inheritAttributes(${1:This}) $2' -p46622 -tp46623 -a(S'initDialog/1' -p46624 -S'initDialog(${1:This}) $2' -p46625 -tp46626 -a(S'insert/3' -p46627 -S'insert(${1:This}, ${2:Item}, ${3:Pos}) $4' -p46628 -tp46629 -a(S'insert/4' -p46630 -S'insert(${1:This}, ${2:Item}, ${3:Pos}, ${4:ClientData}) $5' -p46631 -tp46632 -a(S'insertItems/3' -p46633 -S'insertItems(${1:This}, ${2:Items}, ${3:Pos}) $4' -p46634 -tp46635 -a(S'invalidateBestSize/1' -p46636 -S'invalidateBestSize(${1:This}) $2' -p46637 -tp46638 -a(S'isEmpty/1' -p46639 -S'isEmpty(${1:This}) $2' -p46640 -tp46641 -a(S'isEnabled/1' -p46642 -S'isEnabled(${1:This}) $2' -p46643 -tp46644 -a(S'isExposed/2' -p46645 -S'isExposed(${1:This}, ${2:Pt}) $3' -p46646 -tp46647 -a(S'isExposed/3' -p46648 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p46649 -tp46650 -a(S'isExposed/5' -p46651 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p46652 -tp46653 -a(S'isRetained/1' -p46654 -S'isRetained(${1:This}) $2' -p46655 -tp46656 -a(S'isSelected/2' -p46657 -S'isSelected(${1:This}, ${2:N}) $3' -p46658 -tp46659 -a(S'isShown/1' -p46660 -S'isShown(${1:This}) $2' -p46661 -tp46662 -a(S'isTopLevel/1' -p46663 -S'isTopLevel(${1:This}) $2' -p46664 -tp46665 -a(S'layout/1' -p46666 -S'layout(${1:This}) $2' -p46667 -tp46668 -a(S'lineDown/1' -p46669 -S'lineDown(${1:This}) $2' -p46670 -tp46671 -a(S'lineUp/1' -p46672 -S'lineUp(${1:This}) $2' -p46673 -tp46674 -a(S'lower/1' -p46675 -S'lower(${1:This}) $2' -p46676 -tp46677 -a(S'makeModal/1' -p46678 -S'makeModal(${1:This}) $2' -p46679 -tp46680 -a(S'makeModal/2' -p46681 -S'makeModal(${1:This}, ${2:Options}) $3' -p46682 -tp46683 -a(S'move/2' -p46684 -S'move(${1:This}, ${2:Pt}) $3' -p46685 -tp46686 -a(S'move/3' -p46687 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p46688 -tp46689 -a(S'move/4' -p46690 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p46691 -tp46692 -a(S'moveAfterInTabOrder/2' -p46693 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p46694 -tp46695 -a(S'moveBeforeInTabOrder/2' -p46696 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p46697 -tp46698 -a(S'navigate/1' -p46699 -S'navigate(${1:This}) $2' -p46700 -tp46701 -a(S'navigate/2' -p46702 -S'navigate(${1:This}, ${2:Options}) $3' -p46703 -tp46704 -a(S'new/0' -p46705 -S'new() $1' -p46706 -tp46707 -a(S'new/2' -p46708 -S'new(${1:Parent}, ${2:Id}) $3' -p46709 -tp46710 -a(S'new/3' -p46711 -S'new(${1:Parent}, ${2:Id}, ${3:Param3}) $4' -p46712 -tp46713 -a(S'pageDown/1' -p46714 -S'pageDown(${1:This}) $2' -p46715 -tp46716 -a(S'pageUp/1' -p46717 -S'pageUp(${1:This}) $2' -p46718 -tp46719 -a(S'parent_class/1' -p46720 -S'parent_class(${1:Param1}) $2' -p46721 -tp46722 -a(S'popEventHandler/1' -p46723 -S'popEventHandler(${1:This}) $2' -p46724 -tp46725 -a(S'popEventHandler/2' -p46726 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p46727 -tp46728 -a(S'popupMenu/2' -p46729 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p46730 -tp46731 -a(S'popupMenu/3' -p46732 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p46733 -tp46734 -a(S'popupMenu/4' -p46735 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p46736 -tp46737 -a(S'raise/1' -p46738 -S'raise(${1:This}) $2' -p46739 -tp46740 -a(S'refresh/1' -p46741 -S'refresh(${1:This}) $2' -p46742 -tp46743 -a(S'refresh/2' -p46744 -S'refresh(${1:This}, ${2:Options}) $3' -p46745 -tp46746 -a(S'refreshRect/2' -p46747 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p46748 -tp46749 -a(S'refreshRect/3' -p46750 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p46751 -tp46752 -a(S'releaseMouse/1' -p46753 -S'releaseMouse(${1:This}) $2' -p46754 -tp46755 -a(S'removeChild/2' -p46756 -S'removeChild(${1:This}, ${2:Child}) $3' -p46757 -tp46758 -a(S'reparent/2' -p46759 -S'reparent(${1:This}, ${2:NewParent}) $3' -p46760 -tp46761 -a(S'screenToClient/1' -p46762 -S'screenToClient(${1:This}) $2' -p46763 -tp46764 -a(S'screenToClient/2' -p46765 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p46766 -tp46767 -a(S'scrollLines/2' -p46768 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p46769 -tp46770 -a(S'scrollPages/2' -p46771 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p46772 -tp46773 -a(S'scrollWindow/3' -p46774 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p46775 -tp46776 -a(S'scrollWindow/4' -p46777 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p46778 -tp46779 -a(S'select/2' -p46780 -S'select(${1:This}, ${2:N}) $3' -p46781 -tp46782 -a(S'set/2' -p46783 -S'set(${1:This}, ${2:Items}) $3' -p46784 -tp46785 -a(S'setAcceleratorTable/2' -p46786 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p46787 -tp46788 -a(S'setAutoLayout/2' -p46789 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p46790 -tp46791 -a(S'setBackgroundColour/2' -p46792 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p46793 -tp46794 -a(S'setBackgroundStyle/2' -p46795 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p46796 -tp46797 -a(S'setCaret/2' -p46798 -S'setCaret(${1:This}, ${2:Caret}) $3' -p46799 -tp46800 -a(S'setClientData/3' -p46801 -S'setClientData(${1:This}, ${2:N}, ${3:ClientData}) $4' -p46802 -tp46803 -a(S'setClientSize/2' -p46804 -S'setClientSize(${1:This}, ${2:Size}) $3' -p46805 -tp46806 -a(S'setClientSize/3' -p46807 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p46808 -tp46809 -a(S'setContainingSizer/2' -p46810 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p46811 -tp46812 -a(S'setCursor/2' -p46813 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p46814 -tp46815 -a(S'setDropTarget/2' -p46816 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p46817 -tp46818 -a(S'setExtraStyle/2' -p46819 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p46820 -tp46821 -a(S'setFirstItem/2' -p46822 -S'setFirstItem(${1:This}, ${2:N}) $3' -p46823 -tp46824 -a(S'setFocus/1' -p46825 -S'setFocus(${1:This}) $2' -p46826 -tp46827 -a(S'setFocusFromKbd/1' -p46828 -S'setFocusFromKbd(${1:This}) $2' -p46829 -tp46830 -a(S'setFont/2' -p46831 -S'setFont(${1:This}, ${2:Font}) $3' -p46832 -tp46833 -a(S'setForegroundColour/2' -p46834 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p46835 -tp46836 -a(S'setHelpText/2' -p46837 -S'setHelpText(${1:This}, ${2:Text}) $3' -p46838 -tp46839 -a(S'setId/2' -p46840 -S'setId(${1:This}, ${2:Winid}) $3' -p46841 -tp46842 -a(S'setLabel/2' -p46843 -S'setLabel(${1:This}, ${2:Label}) $3' -p46844 -tp46845 -a(S'setMaxSize/2' -p46846 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p46847 -tp46848 -a(S'setMinSize/2' -p46849 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p46850 -tp46851 -a(S'setName/2' -p46852 -S'setName(${1:This}, ${2:Name}) $3' -p46853 -tp46854 -a(S'setOwnBackgroundColour/2' -p46855 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p46856 -tp46857 -a(S'setOwnFont/2' -p46858 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p46859 -tp46860 -a(S'setOwnForegroundColour/2' -p46861 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p46862 -tp46863 -a(S'setPalette/2' -p46864 -S'setPalette(${1:This}, ${2:Pal}) $3' -p46865 -tp46866 -a(S'setScrollPos/3' -p46867 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p46868 -tp46869 -a(S'setScrollPos/4' -p46870 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p46871 -tp46872 -a(S'setScrollbar/5' -p46873 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p46874 -tp46875 -a(S'setScrollbar/6' -p46876 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p46877 -tp46878 -a(S'setSelection/2' -p46879 -S'setSelection(${1:This}, ${2:N}) $3' -p46880 -tp46881 -a(S'setSize/2' -p46882 -S'setSize(${1:This}, ${2:Rect}) $3' -p46883 -tp46884 -a(S'setSize/3' -p46885 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p46886 -tp46887 -a(S'setSize/5' -p46888 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p46889 -tp46890 -a(S'setSize/6' -p46891 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p46892 -tp46893 -a(S'setSizeHints/2' -p46894 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p46895 -tp46896 -a(S'setSizeHints/3' -p46897 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p46898 -tp46899 -a(S'setSizeHints/4' -p46900 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p46901 -tp46902 -a(S'setSizer/2' -p46903 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p46904 -tp46905 -a(S'setSizer/3' -p46906 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p46907 -tp46908 -a(S'setSizerAndFit/2' -p46909 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p46910 -tp46911 -a(S'setSizerAndFit/3' -p46912 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p46913 -tp46914 -a(S'setString/3' -p46915 -S'setString(${1:This}, ${2:N}, ${3:S}) $4' -p46916 -tp46917 -a(S'setStringSelection/2' -p46918 -S'setStringSelection(${1:This}, ${2:S}) $3' -p46919 -tp46920 -a(S'setThemeEnabled/2' -p46921 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p46922 -tp46923 -a(S'setToolTip/2' -p46924 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p46925 -tp46926 -a(S'setVirtualSize/2' -p46927 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p46928 -tp46929 -a(S'setVirtualSize/3' -p46930 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p46931 -tp46932 -a(S'setVirtualSizeHints/2' -p46933 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p46934 -tp46935 -a(S'setVirtualSizeHints/3' -p46936 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p46937 -tp46938 -a(S'setVirtualSizeHints/4' -p46939 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p46940 -tp46941 -a(S'setWindowStyle/2' -p46942 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p46943 -tp46944 -a(S'setWindowStyleFlag/2' -p46945 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p46946 -tp46947 -a(S'setWindowVariant/2' -p46948 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p46949 -tp46950 -a(S'shouldInheritColours/1' -p46951 -S'shouldInheritColours(${1:This}) $2' -p46952 -tp46953 -a(S'show/1' -p46954 -S'show(${1:This}) $2' -p46955 -tp46956 -a(S'show/2' -p46957 -S'show(${1:This}, ${2:Options}) $3' -p46958 -tp46959 -a(S'thaw/1' -p46960 -S'thaw(${1:This}) $2' -p46961 -tp46962 -a(S'transferDataFromWindow/1' -p46963 -S'transferDataFromWindow(${1:This}) $2' -p46964 -tp46965 -a(S'transferDataToWindow/1' -p46966 -S'transferDataToWindow(${1:This}) $2' -p46967 -tp46968 -a(S'update/1' -p46969 -S'update(${1:This}) $2' -p46970 -tp46971 -a(S'updateWindowUI/1' -p46972 -S'updateWindowUI(${1:This}) $2' -p46973 -tp46974 -a(S'updateWindowUI/2' -p46975 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p46976 -tp46977 -a(S'validate/1' -p46978 -S'validate(${1:This}) $2' -p46979 -tp46980 -a(S'warpPointer/3' -p46981 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p46982 -tp46983 -asS'megaco_edist_compress' -p46984 -(lp46985 -(S'behaviour_info/1' -p46986 -S'behaviour_info(${1:Param1}) $2' -p46987 -tp46988 -asS'erl_compile' -p46989 -(lp46990 -(S'compile_cmdline/1' -p46991 -S'compile_cmdline(${1:List}) $2' -p46992 -tp46993 -asS'megaco_erl_dist_encoder' -p46994 -(lp46995 -(S'decode_message/2' -p46996 -S'decode_message(${1:Config}, ${2:Bin}) $3' -p46997 -tp46998 -a(S'decode_message/3' -p46999 -S'decode_message(${1:Param1}, ${2:V}, ${3:Bin}) $4' -p47000 -tp47001 -a(S'decode_mini_message/3' -p47002 -S'decode_mini_message(${1:EC}, ${2:Vsn}, ${3:Bin}) $4' -p47003 -tp47004 -a(S'encode_action_reply/3' -p47005 -S'encode_action_reply(${1:Param1}, ${2:Vsn}, ${3:ActRep}) $4' -p47006 -tp47007 -a(S'encode_action_request/3' -p47008 -S'encode_action_request(${1:Param1}, ${2:Vsn}, ${3:ActReq}) $4' -p47009 -tp47010 -a(S'encode_action_requests/3' -p47011 -S'encode_action_requests(${1:Param1}, ${2:Vsn}, ${3:ActReqs}) $4' -p47012 -tp47013 -a(S'encode_command_request/3' -p47014 -S'encode_command_request(${1:Param1}, ${2:Vsn}, ${3:CmdReq}) $4' -p47015 -tp47016 -a(S'encode_message/2' -p47017 -S'encode_message() $1' -p47018 -tp47019 -a(S'encode_message/3' -p47020 -S'encode_message(${1:Param1}, ${2:Vsn}, ${3:MegaMsg}) $4' -p47021 -tp47022 -a(S'encode_transaction/3' -p47023 -S'encode_transaction(${1:Config}, ${2:Vsn}, ${3:Trans}) $4' -p47024 -tp47025 -a(S'version_of/2' -p47026 -S'version_of(${1:Config}, ${2:Bin}) $3' -p47027 -tp47028 -asS'CosEventDomainAdmin_CycleSeq' -p47029 -(lp47030 -(S'id/0' -p47031 -S'id() $1' -p47032 -tp47033 -a(S'name/0' -p47034 -S'name() $1' -p47035 -tp47036 -a(S'tc/0' -p47037 -S'tc() $1' -p47038 -tp47039 -asS'corba_boa' -p47040 -(lp47041 -(S'dispose/1' -p47042 -S'dispose(${1:Object}) $2' -p47043 -tp47044 -a(S'get_id/1' -p47045 -S'get_id(${1:Object}) $2' -p47046 -tp47047 -asS'CosEventChannelAdmin_ProxyPullConsumer' -p47048 -(lp47049 -(S'code_change/3' -p47050 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p47051 -tp47052 -a(S'connect_pull_supplier/2' -p47053 -S'connect_pull_supplier(${1:OE_THIS}, ${2:Pull_supplier}) $3' -p47054 -tp47055 -a(S'connect_pull_supplier/3' -p47056 -S'connect_pull_supplier(${1:OE_THIS}, ${2:OE_Options}, ${3:Pull_supplier}) $4' -p47057 -tp47058 -a(S'disconnect_pull_consumer/1' -p47059 -S'disconnect_pull_consumer(${1:OE_THIS}) $2' -p47060 -tp47061 -a(S'disconnect_pull_consumer/2' -p47062 -S'disconnect_pull_consumer(${1:OE_THIS}, ${2:OE_Options}) $3' -p47063 -tp47064 -a(S'handle_call/3' -p47065 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p47066 -tp47067 -a(S'handle_cast/2' -p47068 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p47069 -tp47070 -a(S'handle_info/2' -p47071 -S'handle_info(${1:Info}, ${2:State}) $3' -p47072 -tp47073 -a(S'init/1' -p47074 -S'init(${1:Env}) $2' -p47075 -tp47076 -a(S'oe_create/0' -p47077 -S'oe_create() $1' -p47078 -tp47079 -a(S'oe_create/1' -p47080 -S'oe_create(${1:Env}) $2' -p47081 -tp47082 -a(S'oe_create/2' -p47083 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p47084 -tp47085 -a(S'oe_create_link/0' -p47086 -S'oe_create_link() $1' -p47087 -tp47088 -a(S'oe_create_link/1' -p47089 -S'oe_create_link(${1:Env}) $2' -p47090 -tp47091 -a(S'oe_create_link/2' -p47092 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p47093 -tp47094 -a(S'oe_get_interface/0' -p47095 -S'oe_get_interface() $1' -p47096 -tp47097 -a(S'oe_is_a/1' -p47098 -S'oe_is_a(${1:Param1}) $2' -p47099 -tp47100 -a(S'oe_tc/1' -p47101 -S'oe_tc(${1:Param1}) $2' -p47102 -tp47103 -a(S'terminate/2' -p47104 -S'terminate(${1:Reason}, ${2:State}) $3' -p47105 -tp47106 -a(S'typeID/0' -p47107 -S'typeID() $1' -p47108 -tp47109 -asS'crypto' -p47110 -(lp47111 -(S'aes_cbc_128_decrypt/3' -p47112 -S'aes_cbc_128_decrypt(${1:Key}, ${2:IVec}, ${3:Data}) $4' -p47113 -tp47114 -a(S'aes_cbc_128_encrypt/3' -p47115 -S'aes_cbc_128_encrypt(${1:Key}, ${2:IVec}, ${3:Data}) $4' -p47116 -tp47117 -a(S'aes_cbc_256_decrypt/3' -p47118 -S'aes_cbc_256_decrypt(${1:Key}, ${2:IVec}, ${3:Data}) $4' -p47119 -tp47120 -a(S'aes_cbc_256_encrypt/3' -p47121 -S'aes_cbc_256_encrypt(${1:Key}, ${2:IVec}, ${3:Data}) $4' -p47122 -tp47123 -a(S'aes_cbc_ivec/1' -p47124 -S'aes_cbc_ivec(${1:Data}) $2' -p47125 -tp47126 -a(S'aes_cfb_128_decrypt/3' -p47127 -S'aes_cfb_128_decrypt(${1:Key}, ${2:IVec}, ${3:Data}) $4' -p47128 -tp47129 -a(S'aes_cfb_128_encrypt/3' -p47130 -S'aes_cfb_128_encrypt(${1:Key}, ${2:IVec}, ${3:Data}) $4' -p47131 -tp47132 -a(S'aes_ctr_decrypt/3' -p47133 -S'aes_ctr_decrypt(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p47134 -tp47135 -a(S'aes_ctr_encrypt/3' -p47136 -S'aes_ctr_encrypt(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p47137 -tp47138 -a(S'aes_ctr_stream_decrypt/2' -p47139 -S'aes_ctr_stream_decrypt(${1:Param1}, ${2:Param2}) $3' -p47140 -tp47141 -a(S'aes_ctr_stream_encrypt/2' -p47142 -S'aes_ctr_stream_encrypt(${1:Param1}, ${2:Param2}) $3' -p47143 -tp47144 -a(S'aes_ctr_stream_init/2' -p47145 -S'aes_ctr_stream_init(${1:Key}, ${2:IVec}) $3' -p47146 -tp47147 -a(S'blowfish_cbc_decrypt/3' -p47148 -S'blowfish_cbc_decrypt(${1:Key}, ${2:IVec}, ${3:Data}) $4' -p47149 -tp47150 -a(S'blowfish_cbc_encrypt/3' -p47151 -S'blowfish_cbc_encrypt(${1:Key}, ${2:IVec}, ${3:Data}) $4' -p47152 -tp47153 -a(S'blowfish_cfb64_decrypt/3' -p47154 -S'blowfish_cfb64_decrypt(${1:Key}, ${2:IVec}, ${3:Data}) $4' -p47155 -tp47156 -a(S'blowfish_cfb64_encrypt/3' -p47157 -S'blowfish_cfb64_encrypt(${1:Key}, ${2:IVec}, ${3:Data}) $4' -p47158 -tp47159 -a(S'blowfish_ecb_decrypt/2' -p47160 -S'blowfish_ecb_decrypt(${1:Key}, ${2:Data}) $3' -p47161 -tp47162 -a(S'blowfish_ecb_encrypt/2' -p47163 -S'blowfish_ecb_encrypt(${1:Key}, ${2:Data}) $3' -p47164 -tp47165 -a(S'blowfish_ofb64_encrypt/3' -p47166 -S'blowfish_ofb64_encrypt(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p47167 -tp47168 -a(S'des3_cbc_decrypt/5' -p47169 -S'des3_cbc_decrypt(${1:Key1}, ${2:Key2}, ${3:Key3}, ${4:IVec}, ${5:Data}) $6' -p47170 -tp47171 -a(S'des3_cbc_encrypt/5' -p47172 -S'des3_cbc_encrypt(${1:Key1}, ${2:Key2}, ${3:Key3}, ${4:IVec}, ${5:Data}) $6' -p47173 -tp47174 -a(S'des3_cfb_decrypt/5' -p47175 -S'des3_cfb_decrypt(${1:Key1}, ${2:Key2}, ${3:Key3}, ${4:IVec}, ${5:Data}) $6' -p47176 -tp47177 -a(S'des3_cfb_encrypt/5' -p47178 -S'des3_cfb_encrypt(${1:Key1}, ${2:Key2}, ${3:Key3}, ${4:IVec}, ${5:Data}) $6' -p47179 -tp47180 -a(S'des_cbc_decrypt/3' -p47181 -S'des_cbc_decrypt(${1:Key}, ${2:IVec}, ${3:Data}) $4' -p47182 -tp47183 -a(S'des_cbc_encrypt/3' -p47184 -S'des_cbc_encrypt(${1:Key}, ${2:IVec}, ${3:Data}) $4' -p47185 -tp47186 -a(S'des_cbc_ivec/1' -p47187 -S'des_cbc_ivec(${1:Data}) $2' -p47188 -tp47189 -a(S'des_cfb_decrypt/3' -p47190 -S'des_cfb_decrypt(${1:Key}, ${2:IVec}, ${3:Data}) $4' -p47191 -tp47192 -a(S'des_cfb_encrypt/3' -p47193 -S'des_cfb_encrypt(${1:Key}, ${2:IVec}, ${3:Data}) $4' -p47194 -tp47195 -a(S'des_cfb_ivec/2' -p47196 -S'des_cfb_ivec(${1:IVec}, ${2:Data}) $3' -p47197 -tp47198 -a(S'des_ecb_decrypt/2' -p47199 -S'des_ecb_decrypt(${1:Key}, ${2:Data}) $3' -p47200 -tp47201 -a(S'des_ecb_encrypt/2' -p47202 -S'des_ecb_encrypt(${1:Key}, ${2:Data}) $3' -p47203 -tp47204 -a(S'des_ede3_cbc_decrypt/5' -p47205 -S'des_ede3_cbc_decrypt(${1:Key1}, ${2:Key2}, ${3:Key3}, ${4:IVec}, ${5:Data}) $6' -p47206 -tp47207 -a(S'des_ede3_cbc_encrypt/5' -p47208 -S'des_ede3_cbc_encrypt(${1:Key1}, ${2:Key2}, ${3:Key3}, ${4:IVec}, ${5:Data}) $6' -p47209 -tp47210 -a(S'dh_check/1' -p47211 -S'dh_check(${1:Param1}) $2' -p47212 -tp47213 -a(S'dh_compute_key/3' -p47214 -S'dh_compute_key(${1:OthersPublicKey}, ${2:MyPrivateKey}, ${3:DHParameters}) $4' -p47215 -tp47216 -a(S'dh_generate_key/1' -p47217 -S'dh_generate_key(${1:DHParameters}) $2' -p47218 -tp47219 -a(S'dh_generate_key/2' -p47220 -S'dh_generate_key(${1:PrivateKey}, ${2:DHParameters}) $3' -p47221 -tp47222 -a(S'dh_generate_parameters/2' -p47223 -S'dh_generate_parameters(${1:PrimeLen}, ${2:Generator}) $3' -p47224 -tp47225 -a(S'dss_sign/2' -p47226 -S'dss_sign(${1:Data}, ${2:Key}) $3' -p47227 -tp47228 -a(S'dss_sign/3' -p47229 -S'dss_sign(${1:Type}, ${2:Data}, ${3:Key}) $4' -p47230 -tp47231 -a(S'dss_verify/3' -p47232 -S'dss_verify(${1:Data}, ${2:Signature}, ${3:Key}) $4' -p47233 -tp47234 -a(S'dss_verify/4' -p47235 -S'dss_verify(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p47236 -tp47237 -a(S'erlint/1' -p47238 -S'erlint(${1:Param1}) $2' -p47239 -tp47240 -a(S'exor/2' -p47241 -S'exor(${1:Param1}, ${2:Param2}) $3' -p47242 -tp47243 -a(S'hmac_final/1' -p47244 -S'hmac_final(${1:Param1}) $2' -p47245 -tp47246 -a(S'hmac_final_n/2' -p47247 -S'hmac_final_n(${1:Param1}, ${2:Param2}) $3' -p47248 -tp47249 -a(S'hmac_init/2' -p47250 -S'hmac_init(${1:Param1}, ${2:Param2}) $3' -p47251 -tp47252 -a(S'hmac_update/2' -p47253 -S'hmac_update(${1:Param1}, ${2:Param2}) $3' -p47254 -tp47255 -a(S'info/0' -p47256 -S'info() $1' -p47257 -tp47258 -a(S'info_lib/0' -p47259 -S'info_lib() $1' -p47260 -tp47261 -a(S'md4/1' -p47262 -S'md4(${1:Param1}) $2' -p47263 -tp47264 -a(S'md4_final/1' -p47265 -S'md4_final(${1:Param1}) $2' -p47266 -tp47267 -a(S'md4_init/0' -p47268 -S'md4_init() $1' -p47269 -tp47270 -a(S'md4_update/2' -p47271 -S'md4_update(${1:Param1}, ${2:Param2}) $3' -p47272 -tp47273 -a(S'md5/1' -p47274 -S'md5(${1:Param1}) $2' -p47275 -tp47276 -a(S'md5_final/1' -p47277 -S'md5_final(${1:Param1}) $2' -p47278 -tp47279 -a(S'md5_init/0' -p47280 -S'md5_init() $1' -p47281 -tp47282 -a(S'md5_mac/2' -p47283 -S'md5_mac(${1:Key}, ${2:Data}) $3' -p47284 -tp47285 -a(S'md5_mac_96/2' -p47286 -S'md5_mac_96(${1:Key}, ${2:Data}) $3' -p47287 -tp47288 -a(S'md5_update/2' -p47289 -S'md5_update(${1:Param1}, ${2:Param2}) $3' -p47290 -tp47291 -a(S'mod_exp/3' -p47292 -S'mod_exp(${1:Base}, ${2:Exponent}, ${3:Modulo}) $4' -p47293 -tp47294 -a(S'mpint/1' -p47295 -S'mpint(${1:X}) $2' -p47296 -tp47297 -a(S'rand_bytes/1' -p47298 -S'rand_bytes(${1:Bytes}) $2' -p47299 -tp47300 -a(S'rand_bytes/3' -p47301 -S'rand_bytes(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p47302 -tp47303 -a(S'rand_uniform/2' -p47304 -S'rand_uniform(${1:From}, ${2:To}) $3' -p47305 -tp47306 -a(S'rc2_40_cbc_decrypt/3' -p47307 -S'rc2_40_cbc_decrypt() $1' -p47308 -tp47309 -a(S'rc2_40_cbc_encrypt/3' -p47310 -S'rc2_40_cbc_encrypt() $1' -p47311 -tp47312 -a(S'rc2_cbc_decrypt/3' -p47313 -S'rc2_cbc_decrypt(${1:Key}, ${2:IVec}, ${3:Data}) $4' -p47314 -tp47315 -a(S'rc2_cbc_encrypt/3' -p47316 -S'rc2_cbc_encrypt(${1:Key}, ${2:IVec}, ${3:Data}) $4' -p47317 -tp47318 -a(S'rc4_encrypt/2' -p47319 -S'rc4_encrypt(${1:Param1}, ${2:Param2}) $3' -p47320 -tp47321 -a(S'rc4_encrypt_with_state/2' -p47322 -S'rc4_encrypt_with_state(${1:Param1}, ${2:Param2}) $3' -p47323 -tp47324 -a(S'rc4_set_key/1' -p47325 -S'rc4_set_key(${1:Param1}) $2' -p47326 -tp47327 -a(S'rsa_private_decrypt/3' -p47328 -S'rsa_private_decrypt(${1:BinMesg}, ${2:Key}, ${3:Padding}) $4' -p47329 -tp47330 -a(S'rsa_private_encrypt/3' -p47331 -S'rsa_private_encrypt(${1:BinMesg}, ${2:Key}, ${3:Padding}) $4' -p47332 -tp47333 -a(S'rsa_public_decrypt/3' -p47334 -S'rsa_public_decrypt(${1:BinMesg}, ${2:Key}, ${3:Padding}) $4' -p47335 -tp47336 -a(S'rsa_public_encrypt/3' -p47337 -S'rsa_public_encrypt(${1:BinMesg}, ${2:Key}, ${3:Padding}) $4' -p47338 -tp47339 -a(S'rsa_sign/2' -p47340 -S'rsa_sign(${1:Data}, ${2:Key}) $3' -p47341 -tp47342 -a(S'rsa_sign/3' -p47343 -S'rsa_sign(${1:Type}, ${2:Data}, ${3:Key}) $4' -p47344 -tp47345 -a(S'rsa_verify/3' -p47346 -S'rsa_verify(${1:Data}, ${2:Signature}, ${3:Key}) $4' -p47347 -tp47348 -a(S'rsa_verify/4' -p47349 -S'rsa_verify(${1:Type}, ${2:Data}, ${3:Signature}, ${4:Key}) $5' -p47350 -tp47351 -a(S'sha/1' -p47352 -S'sha(${1:Param1}) $2' -p47353 -tp47354 -a(S'sha256/1' -p47355 -S'sha256(${1:Data}) $2' -p47356 -tp47357 -a(S'sha256_final/1' -p47358 -S'sha256_final(${1:Context}) $2' -p47359 -tp47360 -a(S'sha256_init/0' -p47361 -S'sha256_init() $1' -p47362 -tp47363 -a(S'sha256_update/2' -p47364 -S'sha256_update(${1:Context}, ${2:Data}) $3' -p47365 -tp47366 -a(S'sha512/1' -p47367 -S'sha512(${1:Data}) $2' -p47368 -tp47369 -a(S'sha512_final/1' -p47370 -S'sha512_final(${1:Context}) $2' -p47371 -tp47372 -a(S'sha512_init/0' -p47373 -S'sha512_init() $1' -p47374 -tp47375 -a(S'sha512_update/2' -p47376 -S'sha512_update(${1:Context}, ${2:Data}) $3' -p47377 -tp47378 -a(S'sha_final/1' -p47379 -S'sha_final(${1:Param1}) $2' -p47380 -tp47381 -a(S'sha_init/0' -p47382 -S'sha_init() $1' -p47383 -tp47384 -a(S'sha_mac/2' -p47385 -S'sha_mac(${1:Key}, ${2:Data}) $3' -p47386 -tp47387 -a(S'sha_mac/3' -p47388 -S'sha_mac(${1:Key}, ${2:Data}, ${3:Size}) $4' -p47389 -tp47390 -a(S'sha_mac_96/2' -p47391 -S'sha_mac_96(${1:Key}, ${2:Data}) $3' -p47392 -tp47393 -a(S'sha_update/2' -p47394 -S'sha_update(${1:Param1}, ${2:Param2}) $3' -p47395 -tp47396 -a(S'start/0' -p47397 -S'start() $1' -p47398 -tp47399 -a(S'stop/0' -p47400 -S'stop() $1' -p47401 -tp47402 -a(S'strong_rand_bytes/1' -p47403 -S'strong_rand_bytes(${1:Bytes}) $2' -p47404 -tp47405 -a(S'strong_rand_mpint/3' -p47406 -S'strong_rand_mpint(${1:Bits}, ${2:Top}, ${3:Bottom}) $4' -p47407 -tp47408 -a(S'version/0' -p47409 -S'version() $1' -p47410 -tp47411 -asS'wxGridCellTextEditor' -p47412 -(lp47413 -(S'beginEdit/4' -p47414 -S'beginEdit(${1:This}, ${2:Row}, ${3:Col}, ${4:Grid}) $5' -p47415 -tp47416 -a(S'destroy/1' -p47417 -S'destroy(${1:This}) $2' -p47418 -tp47419 -a(S'endEdit/4' -p47420 -S'endEdit(${1:This}, ${2:Row}, ${3:Col}, ${4:Grid}) $5' -p47421 -tp47422 -a(S'handleReturn/2' -p47423 -S'handleReturn(${1:This}, ${2:Event}) $3' -p47424 -tp47425 -a(S'isCreated/1' -p47426 -S'isCreated(${1:This}) $2' -p47427 -tp47428 -a(S'new/0' -p47429 -S'new() $1' -p47430 -tp47431 -a(S'paintBackground/3' -p47432 -S'paintBackground(${1:This}, ${2:RectCell}, ${3:Attr}) $4' -p47433 -tp47434 -a(S'parent_class/1' -p47435 -S'parent_class(${1:Param1}) $2' -p47436 -tp47437 -a(S'reset/1' -p47438 -S'reset(${1:This}) $2' -p47439 -tp47440 -a(S'setParameters/2' -p47441 -S'setParameters(${1:This}, ${2:Params}) $3' -p47442 -tp47443 -a(S'setSize/2' -p47444 -S'setSize(${1:This}, ${2:Rect}) $3' -p47445 -tp47446 -a(S'show/2' -p47447 -S'show(${1:This}, ${2:Show}) $3' -p47448 -tp47449 -a(S'show/3' -p47450 -S'show(${1:This}, ${2:Show}, ${3:Options}) $4' -p47451 -tp47452 -a(S'startingClick/1' -p47453 -S'startingClick(${1:This}) $2' -p47454 -tp47455 -a(S'startingKey/2' -p47456 -S'startingKey(${1:This}, ${2:Event}) $3' -p47457 -tp47458 -asS'ssl_handshake' -p47459 -(lp47460 -(S'certificate/4' -p47461 -S'certificate(${1:OwnCert}, ${2:CertDbHandle}, ${3:CertDbRef}, ${4:Param4}) $5' -p47462 -tp47463 -a(S'certificate_request/3' -p47464 -S'certificate_request(${1:ConnectionStates}, ${2:CertDbHandle}, ${3:CertDbRef}) $4' -p47465 -tp47466 -a(S'certificate_verify/5' -p47467 -S'certificate_verify(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}, ${5:Param5}) $6' -p47468 -tp47469 -a(S'certify/7' -p47470 -S'certify() $1' -p47471 -tp47472 -a(S'client_certificate_verify/5' -p47473 -S'client_certificate_verify(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}, ${5:Param5}) $6' -p47474 -tp47475 -a(S'client_hello/6' -p47476 -S'client_hello() $1' -p47477 -tp47478 -a(S'dec_hello_extensions/2' -p47479 -S'dec_hello_extensions(${1:Param1}, ${2:Acc}) $3' -p47480 -tp47481 -a(S'decode_client_key/3' -p47482 -S'decode_client_key(${1:ClientKey}, ${2:Type}, ${3:Version}) $4' -p47483 -tp47484 -a(S'decrypt_premaster_secret/2' -p47485 -S'decrypt_premaster_secret(${1:Secret}, ${2:RSAPrivateKey}) $3' -p47486 -tp47487 -a(S'encode_handshake/2' -p47488 -S'encode_handshake(${1:Package}, ${2:Version}) $3' -p47489 -tp47490 -a(S'finished/4' -p47491 -S'finished(${1:Version}, ${2:Role}, ${3:MasterSecret}, ${4:Hashes}) $5' -p47492 -tp47493 -a(S'get_tls_handshake/2' -p47494 -S'get_tls_handshake(${1:Data}, ${2:Buffer}) $3' -p47495 -tp47496 -a(S'hello/4' -p47497 -S'hello(${1:SessionId}, ${2:Version}, ${3:ConnectionStates}, ${4:Renegotiation}) $5' -p47498 -tp47499 -a(S'hello_request/0' -p47500 -S'hello_request() $1' -p47501 -tp47502 -a(S'init_hashes/0' -p47503 -S'init_hashes() $1' -p47504 -tp47505 -a(S'key_exchange/2' -p47506 -S'key_exchange(${1:Param1}, ${2:Param2}) $3' -p47507 -tp47508 -a(S'master_secret/4' -p47509 -S'master_secret(${1:Version}, ${2:PremasterSecret}, ${3:ConnectionStates}, ${4:Role}) $5' -p47510 -tp47511 -a(S'prf/5' -p47512 -S'prf(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}, ${5:Param5}) $6' -p47513 -tp47514 -a(S'server_hello/4' -p47515 -S'server_hello(${1:SessionId}, ${2:Version}, ${3:ConnectionStates}, ${4:Renegotiation}) $5' -p47516 -tp47517 -a(S'server_hello_done/0' -p47518 -S'server_hello_done() $1' -p47519 -tp47520 -a(S'server_key_exchange_hash/2' -p47521 -S'server_key_exchange_hash(${1:Param1}, ${2:Value}) $3' -p47522 -tp47523 -a(S'update_hashes/2' -p47524 -S'update_hashes(${1:Param1}, ${2:Data}) $3' -p47525 -tp47526 -a(S'verify_connection/5' -p47527 -S'verify_connection() $1' -p47528 -tp47529 -asS'pman_buf_printer' -p47530 -(lp47531 -(S'init/2' -p47532 -S'init(${1:Editor}, ${2:Buffer_pid}) $3' -p47533 -tp47534 -asS'file_dialog' -p47535 -(lp47536 -(S'fs_init/3' -p47537 -S'fs_init(${1:Dir}, ${2:File}, ${3:Owner}) $4' -p47538 -tp47539 -a(S'start/0' -p47540 -S'start() $1' -p47541 -tp47542 -a(S'start/1' -p47543 -S'start(${1:Dir}) $2' -p47544 -tp47545 -a(S'start/2' -p47546 -S'start(${1:Dir}, ${2:File}) $3' -p47547 -tp47548 -asS'gstk_db' -p47549 -(lp47550 -(S'counter/2' -p47551 -S'counter(${1:DB}, ${2:Key}) $3' -p47552 -tp47553 -a(S'default_container_opts/3' -p47554 -S'default_container_opts(${1:Param1}, ${2:Id}, ${3:ChildType}) $4' -p47555 -tp47556 -a(S'default_opts/3' -p47557 -S'default_opts(${1:Param1}, ${2:Id}, ${3:ChildType}) $4' -p47558 -tp47559 -a(S'delete_bgrp/2' -p47560 -S'delete_bgrp(${1:DB}, ${2:Key}) $3' -p47561 -tp47562 -a(S'delete_event/3' -p47563 -S'delete_event(${1:DB}, ${2:Gstkid}, ${3:Etype}) $4' -p47564 -tp47565 -a(S'delete_gstkid/2' -p47566 -S'delete_gstkid(${1:DB}, ${2:Gstkid}) $3' -p47567 -tp47568 -a(S'delete_kid/3' -p47569 -S'delete_kid(${1:Param1}, ${2:Parent}, ${3:Kid}) $4' -p47570 -tp47571 -a(S'delete_widget/2' -p47572 -S'delete_widget(${1:DB}, ${2:ID}) $3' -p47573 -tp47574 -a(S'get_deleted/1' -p47575 -S'get_deleted(${1:Param1}) $2' -p47576 -tp47577 -a(S'init/1' -p47578 -S'init(${1:Param1}) $2' -p47579 -tp47580 -a(S'insert/3' -p47581 -S'insert(${1:DB}, ${2:Key}, ${3:Value}) $4' -p47582 -tp47583 -a(S'insert_bgrp/2' -p47584 -S'insert_bgrp(${1:DB}, ${2:Key}) $3' -p47585 -tp47586 -a(S'insert_def/3' -p47587 -S'insert_def(${1:ID}, ${2:ObjType}, ${3:Param3}) $4' -p47588 -tp47589 -a(S'insert_event/4' -p47590 -S'insert_event(${1:DB}, ${2:Gstkid}, ${3:Etype}, ${4:Edata}) $5' -p47591 -tp47592 -a(S'insert_gs/2' -p47593 -S'insert_gs(${1:DB}, ${2:Gstkid}) $3' -p47594 -tp47595 -a(S'insert_opt/3' -p47596 -S'insert_opt(${1:Param1}, ${2:Id}, ${3:Param3}) $4' -p47597 -tp47598 -a(S'insert_opts/3' -p47599 -S'insert_opts(${1:DB}, ${2:Id}, ${3:Param3}) $4' -p47600 -tp47601 -a(S'insert_widget/2' -p47602 -S'insert_widget(${1:DB}, ${2:Gstkid}) $3' -p47603 -tp47604 -a(S'is_inserted/3' -p47605 -S'is_inserted(${1:DB}, ${2:ID}, ${3:What}) $4' -p47606 -tp47607 -a(S'lookup/2' -p47608 -S'lookup(${1:DB}, ${2:Key}) $3' -p47609 -tp47610 -a(S'lookup_def/3' -p47611 -S'lookup_def(${1:ID}, ${2:ObjType}, ${3:Key}) $4' -p47612 -tp47613 -a(S'lookup_event/3' -p47614 -S'lookup_event(${1:DB}, ${2:ID}, ${3:Etag}) $4' -p47615 -tp47616 -a(S'lookup_gstkid/2' -p47617 -S'lookup_gstkid(${1:DB}, ${2:Name}) $3' -p47618 -tp47619 -a(S'lookup_gstkid/3' -p47620 -S'lookup_gstkid(${1:DB}, ${2:Name}, ${3:Owner}) $4' -p47621 -tp47622 -a(S'lookup_ids/2' -p47623 -S'lookup_ids(${1:DB}, ${2:Pid}) $3' -p47624 -tp47625 -a(S'lookup_item/3' -p47626 -S'lookup_item(${1:DB}, ${2:TkW}, ${3:Item}) $4' -p47627 -tp47628 -a(S'lookup_kids/2' -p47629 -S'lookup_kids(${1:Param1}, ${2:Parent}) $3' -p47630 -tp47631 -a(S'opt/3' -p47632 -S'opt(${1:DB}, ${2:Id}, ${3:Opt}) $4' -p47633 -tp47634 -a(S'opt/4' -p47635 -S'opt(${1:DB}, ${2:Id}, ${3:Opt}, ${4:ElseVal}) $5' -p47636 -tp47637 -a(S'opt_or_not/3' -p47638 -S'opt_or_not(${1:DB}, ${2:Id}, ${3:Opt}) $4' -p47639 -tp47640 -a(S'update_widget/2' -p47641 -S'update_widget(${1:DB}, ${2:Gstkid}) $3' -p47642 -tp47643 -asS'mnesia_frag' -p47644 -(lp47645 -(S'all_keys/4' -p47646 -S'all_keys(${1:ActivityId}, ${2:Opaque}, ${3:Tab}, ${4:LockKind}) $5' -p47647 -tp47648 -a(S'change_table_frag/2' -p47649 -S'change_table_frag(${1:Tab}, ${2:Change}) $3' -p47650 -tp47651 -a(S'clear_table/4' -p47652 -S'clear_table(${1:ActivityId}, ${2:Opaque}, ${3:Tab}, ${4:Obj}) $5' -p47653 -tp47654 -a(S'delete/5' -p47655 -S'delete(${1:ActivityId}, ${2:Opaque}, ${3:Tab}, ${4:Key}, ${5:LockKind}) $6' -p47656 -tp47657 -a(S'delete_object/5' -p47658 -S'delete_object(${1:ActivityId}, ${2:Opaque}, ${3:Tab}, ${4:Rec}, ${5:LockKind}) $6' -p47659 -tp47660 -a(S'expand_cstruct/1' -p47661 -S'expand_cstruct(${1:Cs}) $2' -p47662 -tp47663 -a(S'first/3' -p47664 -S'first(${1:ActivityId}, ${2:Opaque}, ${3:Tab}) $4' -p47665 -tp47666 -a(S'foldl/6' -p47667 -S'foldl(${1:ActivityId}, ${2:Opaque}, ${3:Fun}, ${4:Acc}, ${5:Tab}, ${6:LockKind}) $7' -p47668 -tp47669 -a(S'foldr/6' -p47670 -S'foldr(${1:ActivityId}, ${2:Opaque}, ${3:Fun}, ${4:Acc}, ${5:Tab}, ${6:LockKind}) $7' -p47671 -tp47672 -a(S'frag_names/1' -p47673 -S'frag_names(${1:Tab}) $2' -p47674 -tp47675 -a(S'index_match_object/6' -p47676 -S'index_match_object(${1:ActivityId}, ${2:Opaque}, ${3:Tab}, ${4:Pat}, ${5:Attr}, ${6:LockKind}) $7' -p47677 -tp47678 -a(S'index_read/6' -p47679 -S'index_read(${1:ActivityId}, ${2:Opaque}, ${3:Tab}, ${4:Key}, ${5:Attr}, ${6:LockKind}) $7' -p47680 -tp47681 -a(S'last/3' -p47682 -S'last(${1:ActivityId}, ${2:Opaque}, ${3:Tab}) $4' -p47683 -tp47684 -a(S'local_select/4' -p47685 -S'local_select(${1:ReplyTo}, ${2:Ref}, ${3:RemoteNameNodes}, ${4:MatchSpec}) $5' -p47686 -tp47687 -a(S'lock/4' -p47688 -S'lock(${1:ActivityId}, ${2:Opaque}, ${3:LockItem}, ${4:LockKind}) $5' -p47689 -tp47690 -a(S'lookup_foreigners/1' -p47691 -S'lookup_foreigners(${1:Tab}) $2' -p47692 -tp47693 -a(S'lookup_frag_hash/1' -p47694 -S'lookup_frag_hash(${1:Tab}) $2' -p47695 -tp47696 -a(S'match_object/5' -p47697 -S'match_object(${1:ActivityId}, ${2:Opaque}, ${3:Tab}, ${4:HeadPat}, ${5:LockKind}) $6' -p47698 -tp47699 -a(S'next/4' -p47700 -S'next(${1:ActivityId}, ${2:Opaque}, ${3:Tab}, ${4:Key}) $5' -p47701 -tp47702 -a(S'prev/4' -p47703 -S'prev(${1:ActivityId}, ${2:Opaque}, ${3:Tab}, ${4:Key}) $5' -p47704 -tp47705 -a(S'read/5' -p47706 -S'read(${1:ActivityId}, ${2:Opaque}, ${3:Tab}, ${4:Key}, ${5:LockKind}) $6' -p47707 -tp47708 -a(S'remote_select/4' -p47709 -S'remote_select(${1:ReplyTo}, ${2:Ref}, ${3:NameNodes}, ${4:MatchSpec}) $5' -p47710 -tp47711 -a(S'remove_node/2' -p47712 -S'remove_node(${1:Node}, ${2:Cs}) $3' -p47713 -tp47714 -a(S'select/5' -p47715 -S'select(${1:ActivityId}, ${2:Opaque}, ${3:Tab}, ${4:MatchSpec}, ${5:LockKind}) $6' -p47716 -tp47717 -a(S'select/6' -p47718 -S'select(${1:ActivityId}, ${2:Opaque}, ${3:Tab}, ${4:MatchSpec}, ${5:Limit}, ${6:LockKind}) $7' -p47719 -tp47720 -a(S'select_cont/3' -p47721 -S'select_cont(${1:Tid}, ${2:Ts}, ${3:Else}) $4' -p47722 -tp47723 -a(S'set_frag_hash/2' -p47724 -S'set_frag_hash(${1:Tab}, ${2:Props}) $3' -p47725 -tp47726 -a(S'table_info/4' -p47727 -S'table_info(${1:ActivityId}, ${2:Opaque}, ${3:Tab}, ${4:Item}) $5' -p47728 -tp47729 -a(S'write/5' -p47730 -S'write(${1:ActivityId}, ${2:Opaque}, ${3:Tab}, ${4:Rec}, ${5:LockKind}) $6' -p47731 -tp47732 -asS'wxMask' -p47733 -(lp47734 -(S'create/2' -p47735 -S'create(${1:This}, ${2:Bitmap}) $3' -p47736 -tp47737 -a(S'create/3' -p47738 -S'create(${1:This}, ${2:Bitmap}, ${3:PaletteIndex}) $4' -p47739 -tp47740 -a(S'destroy/1' -p47741 -S'destroy(${1:This}) $2' -p47742 -tp47743 -a(S'new/0' -p47744 -S'new() $1' -p47745 -tp47746 -a(S'new/1' -p47747 -S'new(${1:Bitmap}) $2' -p47748 -tp47749 -a(S'new/2' -p47750 -S'new(${1:Bitmap}, ${2:PaletteIndex}) $3' -p47751 -tp47752 -a(S'parent_class/1' -p47753 -S'parent_class(${1:Param1}) $2' -p47754 -tp47755 -asS'beam_bool' -p47756 -(lp47757 -(S'module/2' -p47758 -S'module(${1:Param1}, ${2:Param2}) $3' -p47759 -tp47760 -asS'et' -p47761 -(lp47762 -(S'phone_home/4' -p47763 -S'phone_home(${1:DetailLevel}, ${2:FromTo}, ${3:Label}, ${4:Contents}) $5' -p47764 -tp47765 -a(S'phone_home/5' -p47766 -S'phone_home(${1:DetailLevel}, ${2:From}, ${3:To}, ${4:Label}, ${5:Contents}) $6' -p47767 -tp47768 -a(S'report_event/4' -p47769 -S'report_event(${1:DetailLevel}, ${2:FromTo}, ${3:Label}, ${4:Contents}) $5' -p47770 -tp47771 -a(S'report_event/5' -p47772 -S'report_event() $1' -p47773 -tp47774 -a(S'trace_me/4' -p47775 -S'trace_me() $1' -p47776 -tp47777 -a(S'trace_me/5' -p47778 -S'trace_me() $1' -p47779 -tp47780 -asS'wxGridCellStringRenderer' -p47781 -(lp47782 -(S'destroy/1' -p47783 -S'destroy(${1:This}) $2' -p47784 -tp47785 -a(S'draw/8' -p47786 -S'draw(${1:This}, ${2:Grid}, ${3:Attr}, ${4:Dc}, ${5:Rect}, ${6:Row}, ${7:Col}, ${8:IsSelected}) $9' -p47787 -tp47788 -a(S'getBestSize/6' -p47789 -S'getBestSize(${1:This}, ${2:Grid}, ${3:Attr}, ${4:Dc}, ${5:Row}, ${6:Col}) $7' -p47790 -tp47791 -a(S'new/0' -p47792 -S'new() $1' -p47793 -tp47794 -a(S'parent_class/1' -p47795 -S'parent_class(${1:Param1}) $2' -p47796 -tp47797 -asS'erl_scan' -p47798 -(lp47799 -(S'attributes_info/1' -p47800 -S'attributes_info(${1:Attributes}) $2' -p47801 -tp47802 -a(S'attributes_info/2' -p47803 -S'attributes_info(${1:Attributes}, ${2:AttributeItem}) $3' -p47804 -tp47805 -a(S'format_error/1' -p47806 -S'format_error(${1:ErrorDescriptor}) $2' -p47807 -tp47808 -a(S'reserved_word/1' -p47809 -S'reserved_word(${1:Param1}) $2' -p47810 -tp47811 -a(S'set_attribute/3' -p47812 -S'set_attribute(${1:AttributeItem}, ${2:Attributes}, ${3:SetAttributeFun}) $4' -p47813 -tp47814 -a(S'string/1' -p47815 -S'string(${1:String}) $2' -p47816 -tp47817 -a(S'string/2' -p47818 -S'string(${1:String}, ${2:StartLocation}) $3' -p47819 -tp47820 -a(S'string/3' -p47821 -S'string(${1:String}, ${2:StartLocation}, ${3:Options}) $4' -p47822 -tp47823 -a(S'token_info/1' -p47824 -S'token_info(${1:Token}) $2' -p47825 -tp47826 -a(S'token_info/2' -p47827 -S'token_info(${1:Token}, ${2:TokenItem}) $3' -p47828 -tp47829 -a(S'tokens/3' -p47830 -S'tokens(${1:Continuation}, ${2:CharSpec}, ${3:StartLocation}) $4' -p47831 -tp47832 -a(S'tokens/4' -p47833 -S'tokens(${1:Continuation}, ${2:CharSpec}, ${3:StartLocation}, ${4:Options}) $5' -p47834 -tp47835 -asS'reltool_fgraph' -p47836 -(lp47837 -(S'add/3' -p47838 -S'add(${1:Key}, ${2:Value}, ${3:Fg}) $4' -p47839 -tp47840 -a(S'del/2' -p47841 -S'del(${1:Key}, ${2:Fg}) $3' -p47842 -tp47843 -a(S'foldl/3' -p47844 -S'foldl(${1:Fun}, ${2:I}, ${3:Fg}) $4' -p47845 -tp47846 -a(S'foreach/2' -p47847 -S'foreach(${1:Fun}, ${2:Fg}) $3' -p47848 -tp47849 -a(S'get/2' -p47850 -S'get(${1:K}, ${2:Param2}) $3' -p47851 -tp47852 -a(S'is_defined/2' -p47853 -S'is_defined(${1:Key}, ${2:Param2}) $3' -p47854 -tp47855 -a(S'map/2' -p47856 -S'map(${1:Fun}, ${2:Fg}) $3' -p47857 -tp47858 -a(S'mapfoldl/3' -p47859 -S'mapfoldl(${1:Fun}, ${2:I}, ${3:Fg}) $4' -p47860 -tp47861 -a(S'new/0' -p47862 -S'new() $1' -p47863 -tp47864 -a(S'set/3' -p47865 -S'set(${1:Key}, ${2:Value}, ${3:Fg}) $4' -p47866 -tp47867 -a(S'size/1' -p47868 -S'size(${1:Fg}) $2' -p47869 -tp47870 -a(S'step/2' -p47871 -S'step(${1:Vs}, ${2:Es}) $3' -p47872 -tp47873 -a(S'step/3' -p47874 -S'step(${1:Vs}, ${2:Es}, ${3:Pa}) $4' -p47875 -tp47876 -asS'ct_gen_conn' -p47877 -(lp47878 -(S'call/2' -p47879 -S'call(${1:Pid}, ${2:Msg}) $3' -p47880 -tp47881 -a(S'do_within_time/2' -p47882 -S'do_within_time(${1:Fun}, ${2:Timeout}) $3' -p47883 -tp47884 -a(S'start/4' -p47885 -S'start(${1:Name}, ${2:Address}, ${3:InitData}, ${4:CallbackMod}) $5' -p47886 -tp47887 -a(S'stop/1' -p47888 -S'stop(${1:Pid}) $2' -p47889 -tp47890 -asS'wxe_util' -p47891 -(lp47892 -(S'call/2' -p47893 -S'call(${1:Op}, ${2:Args}) $3' -p47894 -tp47895 -a(S'cast/2' -p47896 -S'cast(${1:Op}, ${2:Args}) $3' -p47897 -tp47898 -a(S'colour_bin/1' -p47899 -S'colour_bin(${1:Param1}) $2' -p47900 -tp47901 -a(S'connect_cb/2' -p47902 -S'connect_cb(${1:Object}, ${2:EvData}) $3' -p47903 -tp47904 -a(S'construct/2' -p47905 -S'construct(${1:Op}, ${2:Args}) $3' -p47906 -tp47907 -a(S'datetime_bin/1' -p47908 -S'datetime_bin(${1:Param1}) $2' -p47909 -tp47910 -a(S'destroy/2' -p47911 -S'destroy(${1:Op}, ${2:Param2}) $3' -p47912 -tp47913 -a(S'disconnect_cb/2' -p47914 -S'disconnect_cb(${1:Object}, ${2:EvData}) $3' -p47915 -tp47916 -a(S'from_bool/1' -p47917 -S'from_bool(${1:Param1}) $2' -p47918 -tp47919 -a(S'get_cbId/1' -p47920 -S'get_cbId(${1:Fun}) $2' -p47921 -tp47922 -a(S'get_const/1' -p47923 -S'get_const(${1:Id}) $2' -p47924 -tp47925 -a(S'priv_dir/1' -p47926 -S'priv_dir(${1:Driver0}) $2' -p47927 -tp47928 -a(S'register_pid/1' -p47929 -S'register_pid(${1:Param1}) $2' -p47930 -tp47931 -a(S'send_bin/1' -p47932 -S'send_bin(${1:Bin}) $2' -p47933 -tp47934 -a(S'to_bool/1' -p47935 -S'to_bool(${1:Param1}) $2' -p47936 -tp47937 -a(S'wxgl_dl/0' -p47938 -S'wxgl_dl() $1' -p47939 -tp47940 -asS'diameter_dbg' -p47941 -(lp47942 -(S'children/0' -p47943 -S'children() $1' -p47944 -tp47945 -a(S'compiled/0' -p47946 -S'compiled() $1' -p47947 -tp47948 -a(S'diameter_config/0' -p47949 -S'diameter_config() $1' -p47950 -tp47951 -a(S'diameter_peer/0' -p47952 -S'diameter_peer() $1' -p47953 -tp47954 -a(S'diameter_reg/0' -p47955 -S'diameter_reg() $1' -p47956 -tp47957 -a(S'diameter_request/0' -p47958 -S'diameter_request() $1' -p47959 -tp47960 -a(S'diameter_sequence/0' -p47961 -S'diameter_sequence() $1' -p47962 -tp47963 -a(S'diameter_service/0' -p47964 -S'diameter_service() $1' -p47965 -tp47966 -a(S'diameter_stats/0' -p47967 -S'diameter_stats() $1' -p47968 -tp47969 -a(S'fields/1' -p47970 -S'fields(${1:Table}) $2' -p47971 -tp47972 -a(S'help/0' -p47973 -S'help() $1' -p47974 -tp47975 -a(S'latest/0' -p47976 -S'latest() $1' -p47977 -tp47978 -a(S'log/4' -p47979 -S'log(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p47980 -tp47981 -a(S'modules/0' -p47982 -S'modules() $1' -p47983 -tp47984 -a(S'nl/0' -p47985 -S'nl() $1' -p47986 -tp47987 -a(S'p/0' -p47988 -S'p() $1' -p47989 -tp47990 -a(S'p/1' -p47991 -S'p(${1:Bin}) $2' -p47992 -tp47993 -a(S'pp/1' -p47994 -S'pp(${1:Bin}) $2' -p47995 -tp47996 -a(S'procs/0' -p47997 -S'procs() $1' -p47998 -tp47999 -a(S'stop/0' -p48000 -S'stop() $1' -p48001 -tp48002 -a(S'subscriptions/0' -p48003 -S'subscriptions() $1' -p48004 -tp48005 -a(S'table/1' -p48006 -S'table() $1' -p48007 -tp48008 -a(S'tables/0' -p48009 -S'tables() $1' -p48010 -tp48011 -a(S'tp/1' -p48012 -S'tp(${1:T}) $2' -p48013 -tp48014 -a(S'tpl/1' -p48015 -S'tpl(${1:T}) $2' -p48016 -tp48017 -a(S'tracer/0' -p48018 -S'tracer() $1' -p48019 -tp48020 -a(S'tracer/1' -p48021 -S'tracer() $1' -p48022 -tp48023 -a(S'version_info/0' -p48024 -S'version_info() $1' -p48025 -tp48026 -a(S'versions/0' -p48027 -S'versions() $1' -p48028 -tp48029 -asS'xmerl_validate' -p48030 -(lp48031 -(S'validate/2' -p48032 -S'validate(${1:Param1}, ${2:XML}) $3' -p48033 -tp48034 -asS'ct_testspec' -p48035 -(lp48036 -(S'collect_tests_from_file/2' -p48037 -S'collect_tests_from_file(${1:Specs}, ${2:Relaxed}) $3' -p48038 -tp48039 -a(S'collect_tests_from_file/3' -p48040 -S'collect_tests_from_file(${1:Specs}, ${2:Nodes}, ${3:Relaxed}) $4' -p48041 -tp48042 -a(S'collect_tests_from_list/2' -p48043 -S'collect_tests_from_list(${1:Terms}, ${2:Relaxed}) $3' -p48044 -tp48045 -a(S'collect_tests_from_list/3' -p48046 -S'collect_tests_from_list(${1:Terms}, ${2:Nodes}, ${3:Relaxed}) $4' -p48047 -tp48048 -a(S'prepare_tests/1' -p48049 -S'prepare_tests(${1:TestSpec}) $2' -p48050 -tp48051 -a(S'prepare_tests/2' -p48052 -S'prepare_tests(${1:TestSpec}, ${2:Node}) $3' -p48053 -tp48054 -asS'diameter_gen_relay' -p48055 -(lp48056 -(S'avp/3' -p48057 -S'avp(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p48058 -tp48059 -a(S'avp_arity/2' -p48060 -S'avp_arity(${1:Param1}, ${2:Param2}) $3' -p48061 -tp48062 -a(S'avp_header/1' -p48063 -S'avp_header(${1:Param1}) $2' -p48064 -tp48065 -a(S'avp_name/2' -p48066 -S'avp_name(${1:Param1}, ${2:Param2}) $3' -p48067 -tp48068 -a(S'decode_avps/2' -p48069 -S'decode_avps() $1' -p48070 -tp48071 -a(S'dict/0' -p48072 -S'dict() $1' -p48073 -tp48074 -a(S'empty_value/1' -p48075 -S'empty_value(${1:Name}) $2' -p48076 -tp48077 -a(S'encode_avps/2' -p48078 -S'encode_avps() $1' -p48079 -tp48080 -a(S'enumerated_avp/3' -p48081 -S'enumerated_avp(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p48082 -tp48083 -a(S'grouped_avp/3' -p48084 -S'grouped_avp() $1' -p48085 -tp48086 -a(S'id/0' -p48087 -S'id() $1' -p48088 -tp48089 -a(S'msg2rec/1' -p48090 -S'msg2rec(${1:Param1}) $2' -p48091 -tp48092 -a(S'msg_header/1' -p48093 -S'msg_header(${1:Param1}) $2' -p48094 -tp48095 -a(S'msg_name/2' -p48096 -S'msg_name(${1:Param1}, ${2:Param2}) $3' -p48097 -tp48098 -a(S'name/0' -p48099 -S'name() $1' -p48100 -tp48101 -a(S'name2rec/1' -p48102 -S'name2rec(${1:T}) $2' -p48103 -tp48104 -a(S'rec2msg/1' -p48105 -S'rec2msg(${1:Param1}) $2' -p48106 -tp48107 -a(S'vendor_id/0' -p48108 -S'vendor_id() $1' -p48109 -tp48110 -a(S'vendor_name/0' -p48111 -S'vendor_name() $1' -p48112 -tp48113 -asS'wxBitmapDataObject' -p48114 -(lp48115 -(S'destroy/1' -p48116 -S'destroy(${1:This}) $2' -p48117 -tp48118 -a(S'getBitmap/1' -p48119 -S'getBitmap(${1:This}) $2' -p48120 -tp48121 -a(S'new/0' -p48122 -S'new() $1' -p48123 -tp48124 -a(S'new/1' -p48125 -S'new(${1:Param1}) $2' -p48126 -tp48127 -a(S'parent_class/1' -p48128 -S'parent_class(${1:Param1}) $2' -p48129 -tp48130 -a(S'setBitmap/2' -p48131 -S'setBitmap(${1:This}, ${2:Bitmap}) $3' -p48132 -tp48133 -asS'ic_union_java' -p48134 -(lp48135 -(S'gen/3' -p48136 -S'gen(${1:G}, ${2:N}, ${3:X}) $4' -p48137 -tp48138 -asS'megaco_udp_sup' -p48139 -(lp48140 -(S'init/1' -p48141 -S'init(${1:Param1}) $2' -p48142 -tp48143 -a(S'start_child/2' -p48144 -S'start_child(${1:SupPid}, ${2:UdpRec}) $3' -p48145 -tp48146 -a(S'start_link/0' -p48147 -S'start_link() $1' -p48148 -tp48149 -a(S'start_server/1' -p48150 -S'start_server(${1:Args}) $2' -p48151 -tp48152 -a(S'terminate/2' -p48153 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p48154 -tp48155 -asS'megaco_compact_text_encoder' -p48156 -(lp48157 -(S'decode_message/2' -p48158 -S'decode_message(${1:EC}, ${2:Bin}) $3' -p48159 -tp48160 -a(S'decode_message/3' -p48161 -S'decode_message(${1:EC}, ${2:Tokens}, ${3:Bin}) $4' -p48162 -tp48163 -a(S'decode_mini_message/3' -p48164 -S'decode_mini_message(${1:EC}, ${2:Param2}, ${3:Bin}) $4' -p48165 -tp48166 -a(S'encode_action_reply/3' -p48167 -S'encode_action_reply(${1:EC}, ${2:V}, ${3:ActRep}) $4' -p48168 -tp48169 -a(S'encode_action_request/3' -p48170 -S'encode_action_request(${1:EC}, ${2:V}, ${3:ActReq}) $4' -p48171 -tp48172 -a(S'encode_action_requests/3' -p48173 -S'encode_action_requests(${1:EC}, ${2:V}, ${3:ActReqs}) $4' -p48174 -tp48175 -a(S'encode_command_request/3' -p48176 -S'encode_command_request(${1:EC}, ${2:V}, ${3:CmdReq}) $4' -p48177 -tp48178 -a(S'encode_message/2' -p48179 -S'encode_message() $1' -p48180 -tp48181 -a(S'encode_message/3' -p48182 -S'encode_message(${1:EC}, ${2:V}, ${3:MegaMsg}) $4' -p48183 -tp48184 -a(S'encode_transaction/3' -p48185 -S'encode_transaction(${1:EC}, ${2:V}, ${3:Trans}) $4' -p48186 -tp48187 -a(S'token_tag2string/1' -p48188 -S'token_tag2string(${1:Tag}) $2' -p48189 -tp48190 -a(S'token_tag2string/2' -p48191 -S'token_tag2string(${1:Tag}, ${2:Param2}) $3' -p48192 -tp48193 -a(S'version_of/2' -p48194 -S'version_of(${1:Param1}, ${2:Bin}) $3' -p48195 -tp48196 -asS'CosPropertyService_ConflictingProperty' -p48197 -(lp48198 -(S'id/0' -p48199 -S'id() $1' -p48200 -tp48201 -a(S'name/0' -p48202 -S'name() $1' -p48203 -tp48204 -a(S'tc/0' -p48205 -S'tc() $1' -p48206 -tp48207 -asS'CosPropertyService_UnsupportedProperty' -p48208 -(lp48209 -(S'id/0' -p48210 -S'id() $1' -p48211 -tp48212 -a(S'name/0' -p48213 -S'name() $1' -p48214 -tp48215 -a(S'tc/0' -p48216 -S'tc() $1' -p48217 -tp48218 -asS'CosTransactions_SynchronizationUnavailable' -p48219 -(lp48220 -(S'id/0' -p48221 -S'id() $1' -p48222 -tp48223 -a(S'name/0' -p48224 -S'name() $1' -p48225 -tp48226 -a(S'tc/0' -p48227 -S'tc() $1' -p48228 -tp48229 -asS'ssh_userreg' -p48230 -(lp48231 -(S'code_change/3' -p48232 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p48233 -tp48234 -a(S'delete_user/1' -p48235 -S'delete_user(${1:Cm}) $2' -p48236 -tp48237 -a(S'handle_call/3' -p48238 -S'handle_call() $1' -p48239 -tp48240 -a(S'handle_cast/2' -p48241 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p48242 -tp48243 -a(S'handle_info/2' -p48244 -S'handle_info(${1:Param1}, ${2:State}) $3' -p48245 -tp48246 -a(S'init/1' -p48247 -S'init(${1:Param1}) $2' -p48248 -tp48249 -a(S'lookup_user/1' -p48250 -S'lookup_user(${1:Cm}) $2' -p48251 -tp48252 -a(S'register_user/2' -p48253 -S'register_user(${1:User}, ${2:Cm}) $3' -p48254 -tp48255 -a(S'start_link/0' -p48256 -S'start_link() $1' -p48257 -tp48258 -a(S'terminate/2' -p48259 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p48260 -tp48261 -asS'wxPageSetupDialogData' -p48262 -(lp48263 -(S'destroy/1' -p48264 -S'destroy(${1:This}) $2' -p48265 -tp48266 -a(S'enableHelp/2' -p48267 -S'enableHelp(${1:This}, ${2:Flag}) $3' -p48268 -tp48269 -a(S'enableMargins/2' -p48270 -S'enableMargins(${1:This}, ${2:Flag}) $3' -p48271 -tp48272 -a(S'enableOrientation/2' -p48273 -S'enableOrientation(${1:This}, ${2:Flag}) $3' -p48274 -tp48275 -a(S'enablePaper/2' -p48276 -S'enablePaper(${1:This}, ${2:Flag}) $3' -p48277 -tp48278 -a(S'enablePrinter/2' -p48279 -S'enablePrinter(${1:This}, ${2:Flag}) $3' -p48280 -tp48281 -a(S'getDefaultInfo/1' -p48282 -S'getDefaultInfo(${1:This}) $2' -p48283 -tp48284 -a(S'getDefaultMinMargins/1' -p48285 -S'getDefaultMinMargins(${1:This}) $2' -p48286 -tp48287 -a(S'getEnableHelp/1' -p48288 -S'getEnableHelp(${1:This}) $2' -p48289 -tp48290 -a(S'getEnableMargins/1' -p48291 -S'getEnableMargins(${1:This}) $2' -p48292 -tp48293 -a(S'getEnableOrientation/1' -p48294 -S'getEnableOrientation(${1:This}) $2' -p48295 -tp48296 -a(S'getEnablePaper/1' -p48297 -S'getEnablePaper(${1:This}) $2' -p48298 -tp48299 -a(S'getEnablePrinter/1' -p48300 -S'getEnablePrinter(${1:This}) $2' -p48301 -tp48302 -a(S'getMarginBottomRight/1' -p48303 -S'getMarginBottomRight(${1:This}) $2' -p48304 -tp48305 -a(S'getMarginTopLeft/1' -p48306 -S'getMarginTopLeft(${1:This}) $2' -p48307 -tp48308 -a(S'getMinMarginBottomRight/1' -p48309 -S'getMinMarginBottomRight(${1:This}) $2' -p48310 -tp48311 -a(S'getMinMarginTopLeft/1' -p48312 -S'getMinMarginTopLeft(${1:This}) $2' -p48313 -tp48314 -a(S'getPaperId/1' -p48315 -S'getPaperId(${1:This}) $2' -p48316 -tp48317 -a(S'getPaperSize/1' -p48318 -S'getPaperSize(${1:This}) $2' -p48319 -tp48320 -a(S'getPrintData/1' -p48321 -S'getPrintData(${1:This}) $2' -p48322 -tp48323 -a(S'isOk/1' -p48324 -S'isOk(${1:This}) $2' -p48325 -tp48326 -a(S'new/0' -p48327 -S'new() $1' -p48328 -tp48329 -a(S'new/1' -p48330 -S'new(${1:PrintData}) $2' -p48331 -tp48332 -a(S'parent_class/1' -p48333 -S'parent_class(${1:Param1}) $2' -p48334 -tp48335 -a(S'setDefaultInfo/2' -p48336 -S'setDefaultInfo(${1:This}, ${2:Flag}) $3' -p48337 -tp48338 -a(S'setDefaultMinMargins/2' -p48339 -S'setDefaultMinMargins(${1:This}, ${2:Flag}) $3' -p48340 -tp48341 -a(S'setMarginBottomRight/2' -p48342 -S'setMarginBottomRight(${1:This}, ${2:Pt}) $3' -p48343 -tp48344 -a(S'setMarginTopLeft/2' -p48345 -S'setMarginTopLeft(${1:This}, ${2:Pt}) $3' -p48346 -tp48347 -a(S'setMinMarginBottomRight/2' -p48348 -S'setMinMarginBottomRight(${1:This}, ${2:Pt}) $3' -p48349 -tp48350 -a(S'setMinMarginTopLeft/2' -p48351 -S'setMinMarginTopLeft(${1:This}, ${2:Pt}) $3' -p48352 -tp48353 -a(S'setPaperId/2' -p48354 -S'setPaperId(${1:This}, ${2:Id}) $3' -p48355 -tp48356 -a(S'setPaperSize/2' -p48357 -S'setPaperSize(${1:This}, ${2:Id}) $3' -p48358 -tp48359 -a(S'setPrintData/2' -p48360 -S'setPrintData(${1:This}, ${2:PrintData}) $3' -p48361 -tp48362 -asS'httpc_profile_sup' -p48363 -(lp48364 -(S'init/1' -p48365 -S'init(${1:Param1}) $2' -p48366 -tp48367 -a(S'restart_child/1' -p48368 -S'restart_child(${1:Profile}) $2' -p48369 -tp48370 -a(S'start_child/1' -p48371 -S'start_child(${1:PropList}) $2' -p48372 -tp48373 -a(S'start_link/1' -p48374 -S'start_link(${1:HttpcServices}) $2' -p48375 -tp48376 -a(S'stop_child/1' -p48377 -S'stop_child(${1:Profile}) $2' -p48378 -tp48379 -asS'array' -p48380 -(lp48381 -(S'default/1' -p48382 -S'default(${1:Param1}) $2' -p48383 -tp48384 -a(S'fix/1' -p48385 -S'fix(${1:A}) $2' -p48386 -tp48387 -a(S'foldl/3' -p48388 -S'foldl(${1:Function}, ${2:Param2}, ${3:Param3}) $4' -p48389 -tp48390 -a(S'foldr/3' -p48391 -S'foldr(${1:Function}, ${2:Param2}, ${3:Param3}) $4' -p48392 -tp48393 -a(S'from_list/1' -p48394 -S'from_list(${1:List}) $2' -p48395 -tp48396 -a(S'from_list/2' -p48397 -S'from_list(${1:List}, ${2:Default}) $3' -p48398 -tp48399 -a(S'from_orddict/1' -p48400 -S'from_orddict(${1:Orddict}) $2' -p48401 -tp48402 -a(S'from_orddict/2' -p48403 -S'from_orddict(${1:List}, ${2:Default}) $3' -p48404 -tp48405 -a(S'get/2' -p48406 -S'get(${1:Param1}, ${2:Param2}) $3' -p48407 -tp48408 -a(S'is_array/1' -p48409 -S'is_array(${1:Param1}) $2' -p48410 -tp48411 -a(S'is_fix/1' -p48412 -S'is_fix(${1:Param1}) $2' -p48413 -tp48414 -a(S'map/2' -p48415 -S'map(${1:Function}, ${2:Param2}) $3' -p48416 -tp48417 -a(S'new/0' -p48418 -S'new() $1' -p48419 -tp48420 -a(S'new/1' -p48421 -S'new(${1:Options}) $2' -p48422 -tp48423 -a(S'new/2' -p48424 -S'new(${1:Param1}, ${2:Param2}) $3' -p48425 -tp48426 -a(S'relax/1' -p48427 -S'relax(${1:A}) $2' -p48428 -tp48429 -a(S'reset/2' -p48430 -S'reset(${1:Param1}, ${2:Param2}) $3' -p48431 -tp48432 -a(S'resize/1' -p48433 -S'resize(${1:Array}) $2' -p48434 -tp48435 -a(S'resize/2' -p48436 -S'resize(${1:Param1}, ${2:Param2}) $3' -p48437 -tp48438 -a(S'set/3' -p48439 -S'set(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p48440 -tp48441 -a(S'size/1' -p48442 -S'size(${1:Array}) $2' -p48443 -tp48444 -a(S'sparse_foldl/3' -p48445 -S'sparse_foldl(${1:Function}, ${2:Param2}, ${3:Param3}) $4' -p48446 -tp48447 -a(S'sparse_foldr/3' -p48448 -S'sparse_foldr(${1:Function}, ${2:Param2}, ${3:Param3}) $4' -p48449 -tp48450 -a(S'sparse_map/2' -p48451 -S'sparse_map(${1:Function}, ${2:Param2}) $3' -p48452 -tp48453 -a(S'sparse_size/1' -p48454 -S'sparse_size(${1:A}) $2' -p48455 -tp48456 -a(S'sparse_to_list/1' -p48457 -S'sparse_to_list(${1:Param1}) $2' -p48458 -tp48459 -a(S'sparse_to_orddict/1' -p48460 -S'sparse_to_orddict(${1:Param1}) $2' -p48461 -tp48462 -a(S'to_list/1' -p48463 -S'to_list(${1:Param1}) $2' -p48464 -tp48465 -a(S'to_orddict/1' -p48466 -S'to_orddict(${1:Param1}) $2' -p48467 -tp48468 -asS'wxBitmap' -p48469 -(lp48470 -(S'convertToImage/1' -p48471 -S'convertToImage(${1:This}) $2' -p48472 -tp48473 -a(S'copyFromIcon/2' -p48474 -S'copyFromIcon(${1:This}, ${2:Icon}) $3' -p48475 -tp48476 -a(S'create/3' -p48477 -S'create(${1:This}, ${2:Width}, ${3:Height}) $4' -p48478 -tp48479 -a(S'create/4' -p48480 -S'create(${1:This}, ${2:Width}, ${3:Height}, ${4:Param4}) $5' -p48481 -tp48482 -a(S'destroy/1' -p48483 -S'destroy(${1:This}) $2' -p48484 -tp48485 -a(S'getDepth/1' -p48486 -S'getDepth(${1:This}) $2' -p48487 -tp48488 -a(S'getHeight/1' -p48489 -S'getHeight(${1:This}) $2' -p48490 -tp48491 -a(S'getMask/1' -p48492 -S'getMask(${1:This}) $2' -p48493 -tp48494 -a(S'getPalette/1' -p48495 -S'getPalette(${1:This}) $2' -p48496 -tp48497 -a(S'getSubBitmap/2' -p48498 -S'getSubBitmap(${1:This}, ${2:Rect}) $3' -p48499 -tp48500 -a(S'getWidth/1' -p48501 -S'getWidth(${1:This}) $2' -p48502 -tp48503 -a(S'loadFile/2' -p48504 -S'loadFile(${1:This}, ${2:Name}) $3' -p48505 -tp48506 -a(S'loadFile/3' -p48507 -S'loadFile(${1:This}, ${2:Name}, ${3:Param3}) $4' -p48508 -tp48509 -a(S'new/0' -p48510 -S'new() $1' -p48511 -tp48512 -a(S'new/1' -p48513 -S'new(${1:Filename}) $2' -p48514 -tp48515 -a(S'new/2' -p48516 -S'new(${1:Width}, ${2:Height}) $3' -p48517 -tp48518 -a(S'new/3' -p48519 -S'new(${1:Bits}, ${2:Width}, ${3:Height}) $4' -p48520 -tp48521 -a(S'new/4' -p48522 -S'new(${1:Bits}, ${2:Width}, ${3:Height}, ${4:Param4}) $5' -p48523 -tp48524 -a(S'ok/1' -p48525 -S'ok(${1:This}) $2' -p48526 -tp48527 -a(S'parent_class/1' -p48528 -S'parent_class(${1:Param1}) $2' -p48529 -tp48530 -a(S'saveFile/3' -p48531 -S'saveFile(${1:This}, ${2:Name}, ${3:Type}) $4' -p48532 -tp48533 -a(S'saveFile/4' -p48534 -S'saveFile(${1:This}, ${2:Name}, ${3:Type}, ${4:Param4}) $5' -p48535 -tp48536 -a(S'setDepth/2' -p48537 -S'setDepth(${1:This}, ${2:Depth}) $3' -p48538 -tp48539 -a(S'setHeight/2' -p48540 -S'setHeight(${1:This}, ${2:Height}) $3' -p48541 -tp48542 -a(S'setMask/2' -p48543 -S'setMask(${1:This}, ${2:Mask}) $3' -p48544 -tp48545 -a(S'setPalette/2' -p48546 -S'setPalette(${1:This}, ${2:Palette}) $3' -p48547 -tp48548 -a(S'setWidth/2' -p48549 -S'setWidth(${1:This}, ${2:Width}) $3' -p48550 -tp48551 -asS'uds_dist' -p48552 -(lp48553 -(S'accept/1' -p48554 -S'accept(${1:Listen}) $2' -p48555 -tp48556 -a(S'accept_connection/5' -p48557 -S'accept_connection(${1:AcceptPid}, ${2:Socket}, ${3:MyNode}, ${4:Allowed}, ${5:SetupTime}) $6' -p48558 -tp48559 -a(S'accept_loop/2' -p48560 -S'accept_loop(${1:Kernel}, ${2:Listen}) $3' -p48561 -tp48562 -a(S'childspecs/0' -p48563 -S'childspecs() $1' -p48564 -tp48565 -a(S'close/1' -p48566 -S'close(${1:Socket}) $2' -p48567 -tp48568 -a(S'do_accept/6' -p48569 -S'do_accept(${1:Kernel}, ${2:AcceptPid}, ${3:Socket}, ${4:MyNode}, ${5:Allowed}, ${6:SetupTime}) $7' -p48570 -tp48571 -a(S'do_setup/5' -p48572 -S'do_setup(${1:Kernel}, ${2:Node}, ${3:MyNode}, ${4:LongOrShortNames}, ${5:SetupTime}) $6' -p48573 -tp48574 -a(S'getstat/1' -p48575 -S'getstat(${1:Socket}) $2' -p48576 -tp48577 -a(S'is_node_name/1' -p48578 -S'is_node_name(${1:Node}) $2' -p48579 -tp48580 -a(S'listen/1' -p48581 -S'listen(${1:Name}) $2' -p48582 -tp48583 -a(S'select/1' -p48584 -S'select(${1:Node}) $2' -p48585 -tp48586 -a(S'setup/4' -p48587 -S'setup(${1:Node}, ${2:MyNode}, ${3:LongOrShortNames}, ${4:SetupTime}) $5' -p48588 -tp48589 -a(S'tick/1' -p48590 -S'tick(${1:Sock}) $2' -p48591 -tp48592 -asS'pman_process' -p48593 -(lp48594 -(S'function_info/1' -p48595 -S'function_info(${1:Pid}) $2' -p48596 -tp48597 -a(S'get_name/1' -p48598 -S'get_name(${1:Pid}) $2' -p48599 -tp48600 -a(S'get_pid/1' -p48601 -S'get_pid(${1:Pid}) $2' -p48602 -tp48603 -a(S'is_hidden_by_module/2' -p48604 -S'is_hidden_by_module(${1:Pid}, ${2:Modules}) $3' -p48605 -tp48606 -a(S'is_pid_or_shell/1' -p48607 -S'is_pid_or_shell(${1:Pid}) $2' -p48608 -tp48609 -a(S'is_running/1' -p48610 -S'is_running(${1:Pid}) $2' -p48611 -tp48612 -a(S'is_system_process/1' -p48613 -S'is_system_process(${1:Pid}) $2' -p48614 -tp48615 -a(S'msg/1' -p48616 -S'msg(${1:Pid}) $2' -p48617 -tp48618 -a(S'pinfo/1' -p48619 -S'pinfo(${1:Pid}) $2' -p48620 -tp48621 -a(S'pinfo/2' -p48622 -S'pinfo(${1:Pid}, ${2:Item}) $3' -p48623 -tp48624 -a(S'psize/1' -p48625 -S'psize(${1:Pid}) $2' -p48626 -tp48627 -a(S'r_processes/1' -p48628 -S'r_processes(${1:Node}) $2' -p48629 -tp48630 -a(S'reds/1' -p48631 -S'reds(${1:Pid}) $2' -p48632 -tp48633 -asS'pman' -p48634 -(lp48635 -(S'proc/1' -p48636 -S'proc(${1:P}) $2' -p48637 -tp48638 -a(S'proc/3' -p48639 -S'proc(${1:X}, ${2:Y}, ${3:Z}) $4' -p48640 -tp48641 -a(S'start/0' -p48642 -S'start() $1' -p48643 -tp48644 -a(S'start/1' -p48645 -S'start(${1:LIModuleExcluded}) $2' -p48646 -tp48647 -a(S'start_notimeout/0' -p48648 -S'start_notimeout() $1' -p48649 -tp48650 -a(S'start_notimeout/1' -p48651 -S'start_notimeout(${1:LIModuleExcluded}) $2' -p48652 -tp48653 -asS'crashdump_viewer_html' -p48654 -(lp48655 -(S'allocated_areas/2' -p48656 -S'allocated_areas(${1:AllocatedAreas}, ${2:TW}) $3' -p48657 -tp48658 -a(S'allocator_info/2' -p48659 -S'allocator_info(${1:Allocators}, ${2:TW}) $3' -p48660 -tp48661 -a(S'atoms/4' -p48662 -S'atoms(${1:SessionId}, ${2:TW}, ${3:Num}, ${4:FirstChunk}) $5' -p48663 -tp48664 -a(S'atoms_chunk/2' -p48665 -S'atoms_chunk(${1:SessionId}, ${2:Atoms}) $3' -p48666 -tp48667 -a(S'chunk/3' -p48668 -S'chunk(${1:SessionId}, ${2:Items}, ${3:TableFun}) $4' -p48669 -tp48670 -a(S'chunk_page/5' -p48671 -S'chunk_page(${1:Param1}, ${2:SessionId}, ${3:TW}, ${4:Heading}, ${5:FirstChunk}) $6' -p48672 -tp48673 -a(S'error/2' -p48674 -S'error(${1:Text}, ${2:Args}) $3' -p48675 -tp48676 -a(S'expanded_binary/1' -p48677 -S'expanded_binary(${1:Bin}) $2' -p48678 -tp48679 -a(S'expanded_memory/2' -p48680 -S'expanded_memory(${1:Heading}, ${2:Expanded}) $3' -p48681 -tp48682 -a(S'filename_frame/1' -p48683 -S'filename_frame(${1:File}) $2' -p48684 -tp48685 -a(S'general_info/1' -p48686 -S'general_info(${1:GenInfo}) $2' -p48687 -tp48688 -a(S'hash_tables/2' -p48689 -S'hash_tables(${1:HashTables}, ${2:TW}) $3' -p48690 -tp48691 -a(S'index_tables/2' -p48692 -S'index_tables(${1:IndexTables}, ${2:TW}) $3' -p48693 -tp48694 -a(S'info_page/2' -p48695 -S'info_page(${1:Heading}, ${2:Info}) $3' -p48696 -tp48697 -a(S'internal_ets_tables/2' -p48698 -S'internal_ets_tables(${1:InternalEts}, ${2:TW}) $3' -p48699 -tp48700 -a(S'loaded_mod_details/2' -p48701 -S'loaded_mod_details(${1:ModInfo}, ${2:TW}) $3' -p48702 -tp48703 -a(S'memory/2' -p48704 -S'memory(${1:Heading}, ${2:Pid}) $3' -p48705 -tp48706 -a(S'menu_frame/0' -p48707 -S'menu_frame() $1' -p48708 -tp48709 -a(S'nods/2' -p48710 -S'nods(${1:Nods}, ${2:TW}) $3' -p48711 -tp48712 -a(S'port/3' -p48713 -S'port(${1:Heading}, ${2:Port}, ${3:TW}) $4' -p48714 -tp48715 -a(S'pretty_info_page/2' -p48716 -S'pretty_info_page(${1:Heading}, ${2:Info}) $3' -p48717 -tp48718 -a(S'proc_details/4' -p48719 -S'proc_details(${1:Pid}, ${2:Proc}, ${3:TW}, ${4:SharedHeap}) $5' -p48720 -tp48721 -a(S'read_file_frame/0' -p48722 -S'read_file_frame() $1' -p48723 -tp48724 -a(S'redirect/1' -p48725 -S'redirect(${1:Status}) $2' -p48726 -tp48727 -a(S'start_page/0' -p48728 -S'start_page() $1' -p48729 -tp48730 -a(S'welcome/0' -p48731 -S'welcome() $1' -p48732 -tp48733 -asS'wxEraseEvent' -p48734 -(lp48735 -(S'getDC/1' -p48736 -S'getDC(${1:This}) $2' -p48737 -tp48738 -a(S'getId/1' -p48739 -S'getId(${1:This}) $2' -p48740 -tp48741 -a(S'getSkipped/1' -p48742 -S'getSkipped(${1:This}) $2' -p48743 -tp48744 -a(S'getTimestamp/1' -p48745 -S'getTimestamp(${1:This}) $2' -p48746 -tp48747 -a(S'isCommandEvent/1' -p48748 -S'isCommandEvent(${1:This}) $2' -p48749 -tp48750 -a(S'parent_class/1' -p48751 -S'parent_class(${1:Param1}) $2' -p48752 -tp48753 -a(S'resumePropagation/2' -p48754 -S'resumePropagation(${1:This}, ${2:PropagationLevel}) $3' -p48755 -tp48756 -a(S'shouldPropagate/1' -p48757 -S'shouldPropagate(${1:This}) $2' -p48758 -tp48759 -a(S'skip/1' -p48760 -S'skip(${1:This}) $2' -p48761 -tp48762 -a(S'skip/2' -p48763 -S'skip(${1:This}, ${2:Options}) $3' -p48764 -tp48765 -a(S'stopPropagation/1' -p48766 -S'stopPropagation(${1:This}) $2' -p48767 -tp48768 -asS'ssl_alert' -p48769 -(lp48770 -(S'alert_txt/1' -p48771 -S'alert_txt(${1:Param1}) $2' -p48772 -tp48773 -a(S'reason_code/2' -p48774 -S'reason_code(${1:Param1}, ${2:Param2}) $3' -p48775 -tp48776 -asS'io_lib_format' -p48777 -(lp48778 -(S'fwrite/2' -p48779 -S'fwrite(${1:Format}, ${2:Args}) $3' -p48780 -tp48781 -a(S'fwrite_g/1' -p48782 -S'fwrite_g(${1:Float}) $2' -p48783 -tp48784 -a(S'indentation/2' -p48785 -S'indentation(${1:Param1}, ${2:I}) $3' -p48786 -tp48787 -asS'snmpa_conf' -p48788 -(lp48789 -(S'agent_entry/2' -p48790 -S'agent_entry(${1:Tag}, ${2:Val}) $3' -p48791 -tp48792 -a(S'append_agent_config/2' -p48793 -S'append_agent_config() $1' -p48794 -tp48795 -a(S'append_community_config/2' -p48796 -S'append_community_config() $1' -p48797 -tp48798 -a(S'append_context_config/2' -p48799 -S'append_context_config() $1' -p48800 -tp48801 -a(S'append_notify_config/2' -p48802 -S'append_notify_config() $1' -p48803 -tp48804 -a(S'append_standard_config/2' -p48805 -S'append_standard_config() $1' -p48806 -tp48807 -a(S'append_target_addr_config/2' -p48808 -S'append_target_addr_config() $1' -p48809 -tp48810 -a(S'append_target_params_config/2' -p48811 -S'append_target_params_config() $1' -p48812 -tp48813 -a(S'append_usm_config/2' -p48814 -S'append_usm_config() $1' -p48815 -tp48816 -a(S'append_vacm_config/2' -p48817 -S'append_vacm_config() $1' -p48818 -tp48819 -a(S'community_entry/1' -p48820 -S'community_entry() $1' -p48821 -tp48822 -a(S'community_entry/5' -p48823 -S'community_entry(${1:CommIndex}, ${2:CommName}, ${3:SecName}, ${4:CtxName}, ${5:TransportTag}) $6' -p48824 -tp48825 -a(S'context_entry/1' -p48826 -S'context_entry(${1:Ctx}) $2' -p48827 -tp48828 -a(S'notify_entry/3' -p48829 -S'notify_entry(${1:Name}, ${2:Tag}, ${3:Type}) $4' -p48830 -tp48831 -a(S'read_agent_config/1' -p48832 -S'read_agent_config(${1:Dir}) $2' -p48833 -tp48834 -a(S'read_community_config/1' -p48835 -S'read_community_config(${1:Dir}) $2' -p48836 -tp48837 -a(S'read_context_config/1' -p48838 -S'read_context_config(${1:Dir}) $2' -p48839 -tp48840 -a(S'read_notify_config/1' -p48841 -S'read_notify_config(${1:Dir}) $2' -p48842 -tp48843 -a(S'read_standard_config/1' -p48844 -S'read_standard_config(${1:Dir}) $2' -p48845 -tp48846 -a(S'read_target_addr_config/1' -p48847 -S'read_target_addr_config(${1:Dir}) $2' -p48848 -tp48849 -a(S'read_target_params_config/1' -p48850 -S'read_target_params_config(${1:Dir}) $2' -p48851 -tp48852 -a(S'read_usm_config/1' -p48853 -S'read_usm_config(${1:Dir}) $2' -p48854 -tp48855 -a(S'read_vacm_config/1' -p48856 -S'read_vacm_config(${1:Dir}) $2' -p48857 -tp48858 -a(S'standard_entry/2' -p48859 -S'standard_entry(${1:Tag}, ${2:Val}) $3' -p48860 -tp48861 -a(S'target_addr_entry/10' -p48862 -S'target_addr_entry() $1' -p48863 -tp48864 -a(S'target_addr_entry/11' -p48865 -S'target_addr_entry() $1' -p48866 -tp48867 -a(S'target_addr_entry/5' -p48868 -S'target_addr_entry() $1' -p48869 -tp48870 -a(S'target_addr_entry/6' -p48871 -S'target_addr_entry() $1' -p48872 -tp48873 -a(S'target_addr_entry/8' -p48874 -S'target_addr_entry() $1' -p48875 -tp48876 -a(S'target_params_entry/2' -p48877 -S'target_params_entry(${1:Name}, ${2:Vsn}) $3' -p48878 -tp48879 -a(S'target_params_entry/4' -p48880 -S'target_params_entry(${1:Name}, ${2:Vsn}, ${3:SecName}, ${4:SecLevel}) $5' -p48881 -tp48882 -a(S'target_params_entry/5' -p48883 -S'target_params_entry(${1:Name}, ${2:MPModel}, ${3:SecModel}, ${4:SecName}, ${5:SecLevel}) $6' -p48884 -tp48885 -a(S'usm_entry/1' -p48886 -S'usm_entry(${1:EngineID}) $2' -p48887 -tp48888 -a(S'usm_entry/13' -p48889 -S'usm_entry() $1' -p48890 -tp48891 -a(S'vacm_acc_entry/8' -p48892 -S'vacm_acc_entry(${1:GroupName}, ${2:Prefix}, ${3:SecModel}, ${4:SecLevel}, ${5:Match}, ${6:RV}, ${7:WV}, ${8:NV}) $9' -p48893 -tp48894 -a(S'vacm_s2g_entry/3' -p48895 -S'vacm_s2g_entry(${1:SecModel}, ${2:SecName}, ${3:GroupName}) $4' -p48896 -tp48897 -a(S'vacm_vtf_entry/2' -p48898 -S'vacm_vtf_entry(${1:ViewIndex}, ${2:ViewSubtree}) $3' -p48899 -tp48900 -a(S'vacm_vtf_entry/4' -p48901 -S'vacm_vtf_entry(${1:ViewIndex}, ${2:ViewSubtree}, ${3:ViewStatus}, ${4:ViewMask}) $5' -p48902 -tp48903 -a(S'write_agent_config/2' -p48904 -S'write_agent_config(${1:Dir}, ${2:Conf}) $3' -p48905 -tp48906 -a(S'write_agent_config/3' -p48907 -S'write_agent_config() $1' -p48908 -tp48909 -a(S'write_community_config/2' -p48910 -S'write_community_config(${1:Dir}, ${2:Conf}) $3' -p48911 -tp48912 -a(S'write_community_config/3' -p48913 -S'write_community_config() $1' -p48914 -tp48915 -a(S'write_context_config/2' -p48916 -S'write_context_config(${1:Dir}, ${2:Conf}) $3' -p48917 -tp48918 -a(S'write_context_config/3' -p48919 -S'write_context_config() $1' -p48920 -tp48921 -a(S'write_notify_config/2' -p48922 -S'write_notify_config(${1:Dir}, ${2:Conf}) $3' -p48923 -tp48924 -a(S'write_notify_config/3' -p48925 -S'write_notify_config() $1' -p48926 -tp48927 -a(S'write_standard_config/2' -p48928 -S'write_standard_config(${1:Dir}, ${2:Conf}) $3' -p48929 -tp48930 -a(S'write_standard_config/3' -p48931 -S'write_standard_config() $1' -p48932 -tp48933 -a(S'write_target_addr_config/2' -p48934 -S'write_target_addr_config(${1:Dir}, ${2:Conf}) $3' -p48935 -tp48936 -a(S'write_target_addr_config/3' -p48937 -S'write_target_addr_config() $1' -p48938 -tp48939 -a(S'write_target_params_config/2' -p48940 -S'write_target_params_config(${1:Dir}, ${2:Conf}) $3' -p48941 -tp48942 -a(S'write_target_params_config/3' -p48943 -S'write_target_params_config() $1' -p48944 -tp48945 -a(S'write_usm_config/2' -p48946 -S'write_usm_config(${1:Dir}, ${2:Conf}) $3' -p48947 -tp48948 -a(S'write_usm_config/3' -p48949 -S'write_usm_config() $1' -p48950 -tp48951 -a(S'write_vacm_config/2' -p48952 -S'write_vacm_config(${1:Dir}, ${2:Conf}) $3' -p48953 -tp48954 -a(S'write_vacm_config/3' -p48955 -S'write_vacm_config() $1' -p48956 -tp48957 -asS'CosTransactions_HeuristicMixed' -p48958 -(lp48959 -(S'id/0' -p48960 -S'id() $1' -p48961 -tp48962 -a(S'name/0' -p48963 -S'name() $1' -p48964 -tp48965 -a(S'tc/0' -p48966 -S'tc() $1' -p48967 -tp48968 -asS'CosNotification' -p48969 -(lp48970 -(S"'AnyOrder'/0" -p48971 -S"'AnyOrder'() $1" -p48972 -tp48973 -a(S"'BestEffort'/0" -p48974 -S"'BestEffort'() $1" -p48975 -tp48976 -a(S"'ConnectionReliability'/0" -p48977 -S"'ConnectionReliability'() $1" -p48978 -tp48979 -a(S"'DeadlineOrder'/0" -p48980 -S"'DeadlineOrder'() $1" -p48981 -tp48982 -a(S"'DefaultPriority'/0" -p48983 -S"'DefaultPriority'() $1" -p48984 -tp48985 -a(S"'DiscardPolicy'/0" -p48986 -S"'DiscardPolicy'() $1" -p48987 -tp48988 -a(S"'EventReliability'/0" -p48989 -S"'EventReliability'() $1" -p48990 -tp48991 -a(S"'FifoOrder'/0" -p48992 -S"'FifoOrder'() $1" -p48993 -tp48994 -a(S"'HighestPriority'/0" -p48995 -S"'HighestPriority'() $1" -p48996 -tp48997 -a(S"'LifoOrder'/0" -p48998 -S"'LifoOrder'() $1" -p48999 -tp49000 -a(S"'LowestPriority'/0" -p49001 -S"'LowestPriority'() $1" -p49002 -tp49003 -a(S"'MaxConsumers'/0" -p49004 -S"'MaxConsumers'() $1" -p49005 -tp49006 -a(S"'MaxEventsPerConsumer'/0" -p49007 -S"'MaxEventsPerConsumer'() $1" -p49008 -tp49009 -a(S"'MaxQueueLength'/0" -p49010 -S"'MaxQueueLength'() $1" -p49011 -tp49012 -a(S"'MaxSuppliers'/0" -p49013 -S"'MaxSuppliers'() $1" -p49014 -tp49015 -a(S"'MaximumBatchSize'/0" -p49016 -S"'MaximumBatchSize'() $1" -p49017 -tp49018 -a(S"'OrderPolicy'/0" -p49019 -S"'OrderPolicy'() $1" -p49020 -tp49021 -a(S"'PacingInterval'/0" -p49022 -S"'PacingInterval'() $1" -p49023 -tp49024 -a(S"'Persistent'/0" -p49025 -S"'Persistent'() $1" -p49026 -tp49027 -a(S"'Priority'/0" -p49028 -S"'Priority'() $1" -p49029 -tp49030 -a(S"'PriorityOrder'/0" -p49031 -S"'PriorityOrder'() $1" -p49032 -tp49033 -a(S"'RejectNewEvents'/0" -p49034 -S"'RejectNewEvents'() $1" -p49035 -tp49036 -a(S"'StartTime'/0" -p49037 -S"'StartTime'() $1" -p49038 -tp49039 -a(S"'StartTimeSupported'/0" -p49040 -S"'StartTimeSupported'() $1" -p49041 -tp49042 -a(S"'StopTime'/0" -p49043 -S"'StopTime'() $1" -p49044 -tp49045 -a(S"'StopTimeSupported'/0" -p49046 -S"'StopTimeSupported'() $1" -p49047 -tp49048 -a(S"'Timeout'/0" -p49049 -S"'Timeout'() $1" -p49050 -tp49051 -asS'asn1rt_check' -p49052 -(lp49053 -(S'check_bitstring/3' -p49054 -S'check_bitstring(${1:V}, ${2:V}, ${3:NBL}) $4' -p49055 -tp49056 -a(S'check_bool/2' -p49057 -S'check_bool(${1:Param1}, ${2:Bool2}) $3' -p49058 -tp49059 -a(S'check_enum/3' -p49060 -S'check_enum(${1:Val}, ${2:Val}, ${3:Enumerations}) $4' -p49061 -tp49062 -a(S'check_int/3' -p49063 -S'check_int(${1:Value}, ${2:Value}, ${3:NNL}) $4' -p49064 -tp49065 -a(S'check_null/2' -p49066 -S'check_null(${1:Param1}, ${2:V}) $3' -p49067 -tp49068 -a(S'check_objectdescriptor/2' -p49069 -S'check_objectdescriptor(${1:OD}, ${2:OD}) $3' -p49070 -tp49071 -a(S'check_objectidentifier/2' -p49072 -S'check_objectidentifier(${1:OI}, ${2:OI}) $3' -p49073 -tp49074 -a(S'check_octetstring/2' -p49075 -S'check_octetstring(${1:L}, ${2:L}) $3' -p49076 -tp49077 -a(S'check_real/2' -p49078 -S'check_real(${1:R}, ${2:R}) $3' -p49079 -tp49080 -a(S'check_restrictedstring/2' -p49081 -S'check_restrictedstring(${1:Val}, ${2:Val}) $3' -p49082 -tp49083 -a(S'dynamicsort_SETOF/1' -p49084 -S'dynamicsort_SETOF(${1:ListOfEncVal}) $2' -p49085 -tp49086 -a(S'dynamicsort_SET_components/1' -p49087 -S'dynamicsort_SET_components(${1:ListOfEncCs}) $2' -p49088 -tp49089 -a(S'transform_to_EXTERNAL1990/1' -p49090 -S'transform_to_EXTERNAL1990(${1:Val}) $2' -p49091 -tp49092 -a(S'transform_to_EXTERNAL1994/1' -p49093 -S'transform_to_EXTERNAL1994(${1:Param1}) $2' -p49094 -tp49095 -asS'dbg_wx_interpret' -p49096 -(lp49097 -(S'start/4' -p49098 -S'start(${1:Win}, ${2:Pos}, ${3:SDir}, ${4:Mode}) $5' -p49099 -tp49100 -asS'gstk_checkbutton' -p49101 -(lp49102 -(S'config/3' -p49103 -S'config(${1:DB}, ${2:Gstkid}, ${3:Opts}) $4' -p49104 -tp49105 -a(S'create/3' -p49106 -S'create(${1:DB}, ${2:GstkId}, ${3:Opts}) $4' -p49107 -tp49108 -a(S'delete/2' -p49109 -S'delete(${1:DB}, ${2:Gstkid}) $3' -p49110 -tp49111 -a(S'event/5' -p49112 -S'event(${1:DB}, ${2:Gstkid}, ${3:Etype}, ${4:Edata}, ${5:Args}) $6' -p49113 -tp49114 -a(S'option/5' -p49115 -S'option(${1:Option}, ${2:Gstkid}, ${3:TkW}, ${4:DB}, ${5:Param5}) $6' -p49116 -tp49117 -a(S'read/3' -p49118 -S'read(${1:DB}, ${2:Gstkid}, ${3:Opt}) $4' -p49119 -tp49120 -a(S'read_option/5' -p49121 -S'read_option(${1:Option}, ${2:Gstkid}, ${3:TkW}, ${4:DB}, ${5:Param5}) $6' -p49122 -tp49123 -asS'ssl_tls1' -p49124 -(lp49125 -(S'certificate_verify/2' -p49126 -S'certificate_verify(${1:OID}, ${2:Param2}) $3' -p49127 -tp49128 -a(S'finished/3' -p49129 -S'finished(${1:Role}, ${2:MasterSecret}, ${3:Param3}) $4' -p49130 -tp49131 -a(S'mac_hash/7' -p49132 -S'mac_hash() $1' -p49133 -tp49134 -a(S'master_secret/3' -p49135 -S'master_secret(${1:PreMasterSecret}, ${2:ClientRandom}, ${3:ServerRandom}) $4' -p49136 -tp49137 -a(S'prf/4' -p49138 -S'prf(${1:Secret}, ${2:Label}, ${3:Seed}, ${4:WantedLength}) $5' -p49139 -tp49140 -a(S'setup_keys/6' -p49141 -S'setup_keys() $1' -p49142 -tp49143 -a(S'suites/0' -p49144 -S'suites() $1' -p49145 -tp49146 -asS'xref_scanner' -p49147 -(lp49148 -(S'scan/1' -p49149 -S'scan(${1:Chars}) $2' -p49150 -tp49151 -asS'megaco_ber_bin_drv_media_gateway_control_prev3a' -p49152 -(lp49153 -(S"'dec_ActionReply'/2" -p49154 -S"'dec_ActionReply'(${1:Tlv}, ${2:TagIn}) $3" -p49155 -tp49156 -a(S"'dec_ActionRequest'/2" -p49157 -S"'dec_ActionRequest'(${1:Tlv}, ${2:TagIn}) $3" -p49158 -tp49159 -a(S"'dec_AmmDescriptor'/2" -p49160 -S"'dec_AmmDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p49161 -tp49162 -a(S"'dec_AmmRequest'/2" -p49163 -S"'dec_AmmRequest'(${1:Tlv}, ${2:TagIn}) $3" -p49164 -tp49165 -a(S"'dec_AmmsReply'/2" -p49166 -S"'dec_AmmsReply'(${1:Tlv}, ${2:TagIn}) $3" -p49167 -tp49168 -a(S"'dec_AuditDescriptor'/2" -p49169 -S"'dec_AuditDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p49170 -tp49171 -a(S"'dec_AuditReply'/2" -p49172 -S"'dec_AuditReply'(${1:Tlv}, ${2:TagIn}) $3" -p49173 -tp49174 -a(S"'dec_AuditRequest'/2" -p49175 -S"'dec_AuditRequest'(${1:Tlv}, ${2:TagIn}) $3" -p49176 -tp49177 -a(S"'dec_AuditResult'/2" -p49178 -S"'dec_AuditResult'(${1:Tlv}, ${2:TagIn}) $3" -p49179 -tp49180 -a(S"'dec_AuditReturnParameter'/2" -p49181 -S"'dec_AuditReturnParameter'(${1:Tlv}, ${2:TagIn}) $3" -p49182 -tp49183 -a(S"'dec_AuthData'/2" -p49184 -S"'dec_AuthData'(${1:Tlv}, ${2:TagIn}) $3" -p49185 -tp49186 -a(S"'dec_AuthenticationHeader'/2" -p49187 -S"'dec_AuthenticationHeader'(${1:Tlv}, ${2:TagIn}) $3" -p49188 -tp49189 -a(S"'dec_Command'/2" -p49190 -S"'dec_Command'(${1:Tlv}, ${2:TagIn}) $3" -p49191 -tp49192 -a(S"'dec_CommandReply'/2" -p49193 -S"'dec_CommandReply'(${1:Tlv}, ${2:TagIn}) $3" -p49194 -tp49195 -a(S"'dec_CommandRequest'/2" -p49196 -S"'dec_CommandRequest'(${1:Tlv}, ${2:TagIn}) $3" -p49197 -tp49198 -a(S"'dec_ContextAttrAuditRequest'/2" -p49199 -S"'dec_ContextAttrAuditRequest'(${1:Tlv}, ${2:TagIn}) $3" -p49200 -tp49201 -a(S"'dec_ContextID'/2" -p49202 -S"'dec_ContextID'(${1:Tlv}, ${2:TagIn}) $3" -p49203 -tp49204 -a(S"'dec_ContextRequest'/2" -p49205 -S"'dec_ContextRequest'(${1:Tlv}, ${2:TagIn}) $3" -p49206 -tp49207 -a(S"'dec_DigitMapDescriptor'/2" -p49208 -S"'dec_DigitMapDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p49209 -tp49210 -a(S"'dec_DigitMapName'/2" -p49211 -S"'dec_DigitMapName'(${1:Tlv}, ${2:TagIn}) $3" -p49212 -tp49213 -a(S"'dec_DigitMapValue'/2" -p49214 -S"'dec_DigitMapValue'(${1:Tlv}, ${2:TagIn}) $3" -p49215 -tp49216 -a(S"'dec_DomainName'/2" -p49217 -S"'dec_DomainName'(${1:Tlv}, ${2:TagIn}) $3" -p49218 -tp49219 -a(S"'dec_ErrorCode'/2" -p49220 -S"'dec_ErrorCode'(${1:Tlv}, ${2:TagIn}) $3" -p49221 -tp49222 -a(S"'dec_ErrorDescriptor'/2" -p49223 -S"'dec_ErrorDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p49224 -tp49225 -a(S"'dec_ErrorText'/2" -p49226 -S"'dec_ErrorText'(${1:Tlv}, ${2:TagIn}) $3" -p49227 -tp49228 -a(S"'dec_EventBufferControl'/2" -p49229 -S"'dec_EventBufferControl'(${1:Tlv}, ${2:TagIn}) $3" -p49230 -tp49231 -a(S"'dec_EventBufferDescriptor'/2" -p49232 -S"'dec_EventBufferDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p49233 -tp49234 -a(S"'dec_EventDM'/2" -p49235 -S"'dec_EventDM'(${1:Tlv}, ${2:TagIn}) $3" -p49236 -tp49237 -a(S"'dec_EventName'/2" -p49238 -S"'dec_EventName'(${1:Tlv}, ${2:TagIn}) $3" -p49239 -tp49240 -a(S"'dec_EventParameter'/2" -p49241 -S"'dec_EventParameter'(${1:Tlv}, ${2:TagIn}) $3" -p49242 -tp49243 -a(S"'dec_EventSpec'/2" -p49244 -S"'dec_EventSpec'(${1:Tlv}, ${2:TagIn}) $3" -p49245 -tp49246 -a(S"'dec_EventsDescriptor'/2" -p49247 -S"'dec_EventsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p49248 -tp49249 -a(S"'dec_H221NonStandard'/2" -p49250 -S"'dec_H221NonStandard'(${1:Tlv}, ${2:TagIn}) $3" -p49251 -tp49252 -a(S"'dec_IP4Address'/2" -p49253 -S"'dec_IP4Address'(${1:Tlv}, ${2:TagIn}) $3" -p49254 -tp49255 -a(S"'dec_IP6Address'/2" -p49256 -S"'dec_IP6Address'(${1:Tlv}, ${2:TagIn}) $3" -p49257 -tp49258 -a(S"'dec_IndAudDigitMapDescriptor'/2" -p49259 -S"'dec_IndAudDigitMapDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p49260 -tp49261 -a(S"'dec_IndAudEventBufferDescriptor'/2" -p49262 -S"'dec_IndAudEventBufferDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p49263 -tp49264 -a(S"'dec_IndAudEventsDescriptor'/2" -p49265 -S"'dec_IndAudEventsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p49266 -tp49267 -a(S"'dec_IndAudLocalControlDescriptor'/2" -p49268 -S"'dec_IndAudLocalControlDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p49269 -tp49270 -a(S"'dec_IndAudLocalRemoteDescriptor'/2" -p49271 -S"'dec_IndAudLocalRemoteDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p49272 -tp49273 -a(S"'dec_IndAudMediaDescriptor'/2" -p49274 -S"'dec_IndAudMediaDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p49275 -tp49276 -a(S"'dec_IndAudPackagesDescriptor'/2" -p49277 -S"'dec_IndAudPackagesDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p49278 -tp49279 -a(S"'dec_IndAudPropertyGroup'/2" -p49280 -S"'dec_IndAudPropertyGroup'(${1:Tlv}, ${2:TagIn}) $3" -p49281 -tp49282 -a(S"'dec_IndAudPropertyParm'/2" -p49283 -S"'dec_IndAudPropertyParm'(${1:Tlv}, ${2:TagIn}) $3" -p49284 -tp49285 -a(S"'dec_IndAudSeqSigList'/2" -p49286 -S"'dec_IndAudSeqSigList'(${1:Tlv}, ${2:TagIn}) $3" -p49287 -tp49288 -a(S"'dec_IndAudSignal'/2" -p49289 -S"'dec_IndAudSignal'(${1:Tlv}, ${2:TagIn}) $3" -p49290 -tp49291 -a(S"'dec_IndAudSignalsDescriptor'/2" -p49292 -S"'dec_IndAudSignalsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p49293 -tp49294 -a(S"'dec_IndAudStatisticsDescriptor'/2" -p49295 -S"'dec_IndAudStatisticsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p49296 -tp49297 -a(S"'dec_IndAudStreamDescriptor'/2" -p49298 -S"'dec_IndAudStreamDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p49299 -tp49300 -a(S"'dec_IndAudStreamParms'/2" -p49301 -S"'dec_IndAudStreamParms'(${1:Tlv}, ${2:TagIn}) $3" -p49302 -tp49303 -a(S"'dec_IndAudTerminationStateDescriptor'/2" -p49304 -S"'dec_IndAudTerminationStateDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p49305 -tp49306 -a(S"'dec_IndAuditParameter'/2" -p49307 -S"'dec_IndAuditParameter'(${1:Tlv}, ${2:TagIn}) $3" -p49308 -tp49309 -a(S"'dec_LocalControlDescriptor'/2" -p49310 -S"'dec_LocalControlDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p49311 -tp49312 -a(S"'dec_LocalRemoteDescriptor'/2" -p49313 -S"'dec_LocalRemoteDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p49314 -tp49315 -a(S"'dec_MId'/2" -p49316 -S"'dec_MId'(${1:Tlv}, ${2:TagIn}) $3" -p49317 -tp49318 -a(S"'dec_MediaDescriptor'/2" -p49319 -S"'dec_MediaDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p49320 -tp49321 -a(S"'dec_MegacoMessage'/2" -p49322 -S"'dec_MegacoMessage'(${1:Tlv}, ${2:TagIn}) $3" -p49323 -tp49324 -a(S"'dec_Message'/2" -p49325 -S"'dec_Message'(${1:Tlv}, ${2:TagIn}) $3" -p49326 -tp49327 -a(S"'dec_ModemDescriptor'/2" -p49328 -S"'dec_ModemDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p49329 -tp49330 -a(S"'dec_ModemType'/2" -p49331 -S"'dec_ModemType'(${1:Tlv}, ${2:TagIn}) $3" -p49332 -tp49333 -a(S"'dec_MuxDescriptor'/2" -p49334 -S"'dec_MuxDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p49335 -tp49336 -a(S"'dec_MuxType'/2" -p49337 -S"'dec_MuxType'(${1:Tlv}, ${2:TagIn}) $3" -p49338 -tp49339 -a(S"'dec_Name'/2" -p49340 -S"'dec_Name'(${1:Tlv}, ${2:TagIn}) $3" -p49341 -tp49342 -a(S"'dec_NonStandardData'/2" -p49343 -S"'dec_NonStandardData'(${1:Tlv}, ${2:TagIn}) $3" -p49344 -tp49345 -a(S"'dec_NonStandardIdentifier'/2" -p49346 -S"'dec_NonStandardIdentifier'(${1:Tlv}, ${2:TagIn}) $3" -p49347 -tp49348 -a(S"'dec_NotifyCompletion'/2" -p49349 -S"'dec_NotifyCompletion'(${1:Tlv}, ${2:TagIn}) $3" -p49350 -tp49351 -a(S"'dec_NotifyReply'/2" -p49352 -S"'dec_NotifyReply'(${1:Tlv}, ${2:TagIn}) $3" -p49353 -tp49354 -a(S"'dec_NotifyRequest'/2" -p49355 -S"'dec_NotifyRequest'(${1:Tlv}, ${2:TagIn}) $3" -p49356 -tp49357 -a(S"'dec_ObservedEvent'/2" -p49358 -S"'dec_ObservedEvent'(${1:Tlv}, ${2:TagIn}) $3" -p49359 -tp49360 -a(S"'dec_ObservedEventsDescriptor'/2" -p49361 -S"'dec_ObservedEventsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p49362 -tp49363 -a(S"'dec_PackagesDescriptor'/2" -p49364 -S"'dec_PackagesDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p49365 -tp49366 -a(S"'dec_PackagesItem'/2" -p49367 -S"'dec_PackagesItem'(${1:Tlv}, ${2:TagIn}) $3" -p49368 -tp49369 -a(S"'dec_PathName'/2" -p49370 -S"'dec_PathName'(${1:Tlv}, ${2:TagIn}) $3" -p49371 -tp49372 -a(S"'dec_PkgdName'/2" -p49373 -S"'dec_PkgdName'(${1:Tlv}, ${2:TagIn}) $3" -p49374 -tp49375 -a(S"'dec_PropertyGroup'/2" -p49376 -S"'dec_PropertyGroup'(${1:Tlv}, ${2:TagIn}) $3" -p49377 -tp49378 -a(S"'dec_PropertyParm'/2" -p49379 -S"'dec_PropertyParm'(${1:Tlv}, ${2:TagIn}) $3" -p49380 -tp49381 -a(S"'dec_Relation'/2" -p49382 -S"'dec_Relation'(${1:Tlv}, ${2:TagIn}) $3" -p49383 -tp49384 -a(S"'dec_RequestID'/2" -p49385 -S"'dec_RequestID'(${1:Tlv}, ${2:TagIn}) $3" -p49386 -tp49387 -a(S"'dec_RequestedActions'/2" -p49388 -S"'dec_RequestedActions'(${1:Tlv}, ${2:TagIn}) $3" -p49389 -tp49390 -a(S"'dec_RequestedEvent'/2" -p49391 -S"'dec_RequestedEvent'(${1:Tlv}, ${2:TagIn}) $3" -p49392 -tp49393 -a(S"'dec_SecondEventsDescriptor'/2" -p49394 -S"'dec_SecondEventsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p49395 -tp49396 -a(S"'dec_SecondRequestedActions'/2" -p49397 -S"'dec_SecondRequestedActions'(${1:Tlv}, ${2:TagIn}) $3" -p49398 -tp49399 -a(S"'dec_SecondRequestedEvent'/2" -p49400 -S"'dec_SecondRequestedEvent'(${1:Tlv}, ${2:TagIn}) $3" -p49401 -tp49402 -a(S"'dec_SecurityParmIndex'/2" -p49403 -S"'dec_SecurityParmIndex'(${1:Tlv}, ${2:TagIn}) $3" -p49404 -tp49405 -a(S"'dec_SegmentNumber'/2" -p49406 -S"'dec_SegmentNumber'(${1:Tlv}, ${2:TagIn}) $3" -p49407 -tp49408 -a(S"'dec_SeqSigList'/2" -p49409 -S"'dec_SeqSigList'(${1:Tlv}, ${2:TagIn}) $3" -p49410 -tp49411 -a(S"'dec_SequenceNum'/2" -p49412 -S"'dec_SequenceNum'(${1:Tlv}, ${2:TagIn}) $3" -p49413 -tp49414 -a(S"'dec_ServiceChangeAddress'/2" -p49415 -S"'dec_ServiceChangeAddress'(${1:Tlv}, ${2:TagIn}) $3" -p49416 -tp49417 -a(S"'dec_ServiceChangeMethod'/2" -p49418 -S"'dec_ServiceChangeMethod'(${1:Tlv}, ${2:TagIn}) $3" -p49419 -tp49420 -a(S"'dec_ServiceChangeParm'/2" -p49421 -S"'dec_ServiceChangeParm'(${1:Tlv}, ${2:TagIn}) $3" -p49422 -tp49423 -a(S"'dec_ServiceChangeProfile'/2" -p49424 -S"'dec_ServiceChangeProfile'(${1:Tlv}, ${2:TagIn}) $3" -p49425 -tp49426 -a(S"'dec_ServiceChangeReply'/2" -p49427 -S"'dec_ServiceChangeReply'(${1:Tlv}, ${2:TagIn}) $3" -p49428 -tp49429 -a(S"'dec_ServiceChangeRequest'/2" -p49430 -S"'dec_ServiceChangeRequest'(${1:Tlv}, ${2:TagIn}) $3" -p49431 -tp49432 -a(S"'dec_ServiceChangeResParm'/2" -p49433 -S"'dec_ServiceChangeResParm'(${1:Tlv}, ${2:TagIn}) $3" -p49434 -tp49435 -a(S"'dec_ServiceChangeResult'/2" -p49436 -S"'dec_ServiceChangeResult'(${1:Tlv}, ${2:TagIn}) $3" -p49437 -tp49438 -a(S"'dec_ServiceState'/2" -p49439 -S"'dec_ServiceState'(${1:Tlv}, ${2:TagIn}) $3" -p49440 -tp49441 -a(S"'dec_SigParameter'/2" -p49442 -S"'dec_SigParameter'(${1:Tlv}, ${2:TagIn}) $3" -p49443 -tp49444 -a(S"'dec_Signal'/2" -p49445 -S"'dec_Signal'(${1:Tlv}, ${2:TagIn}) $3" -p49446 -tp49447 -a(S"'dec_SignalDirection'/2" -p49448 -S"'dec_SignalDirection'(${1:Tlv}, ${2:TagIn}) $3" -p49449 -tp49450 -a(S"'dec_SignalName'/2" -p49451 -S"'dec_SignalName'(${1:Tlv}, ${2:TagIn}) $3" -p49452 -tp49453 -a(S"'dec_SignalRequest'/2" -p49454 -S"'dec_SignalRequest'(${1:Tlv}, ${2:TagIn}) $3" -p49455 -tp49456 -a(S"'dec_SignalType'/2" -p49457 -S"'dec_SignalType'(${1:Tlv}, ${2:TagIn}) $3" -p49458 -tp49459 -a(S"'dec_SignalsDescriptor'/2" -p49460 -S"'dec_SignalsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p49461 -tp49462 -a(S"'dec_StatisticsDescriptor'/2" -p49463 -S"'dec_StatisticsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p49464 -tp49465 -a(S"'dec_StatisticsParameter'/2" -p49466 -S"'dec_StatisticsParameter'(${1:Tlv}, ${2:TagIn}) $3" -p49467 -tp49468 -a(S"'dec_StreamDescriptor'/2" -p49469 -S"'dec_StreamDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p49470 -tp49471 -a(S"'dec_StreamID'/2" -p49472 -S"'dec_StreamID'(${1:Tlv}, ${2:TagIn}) $3" -p49473 -tp49474 -a(S"'dec_StreamMode'/2" -p49475 -S"'dec_StreamMode'(${1:Tlv}, ${2:TagIn}) $3" -p49476 -tp49477 -a(S"'dec_StreamParms'/2" -p49478 -S"'dec_StreamParms'(${1:Tlv}, ${2:TagIn}) $3" -p49479 -tp49480 -a(S"'dec_SubtractRequest'/2" -p49481 -S"'dec_SubtractRequest'(${1:Tlv}, ${2:TagIn}) $3" -p49482 -tp49483 -a(S"'dec_TerminationAudit'/2" -p49484 -S"'dec_TerminationAudit'(${1:Tlv}, ${2:TagIn}) $3" -p49485 -tp49486 -a(S"'dec_TerminationID'/2" -p49487 -S"'dec_TerminationID'(${1:Tlv}, ${2:TagIn}) $3" -p49488 -tp49489 -a(S"'dec_TerminationIDList'/2" -p49490 -S"'dec_TerminationIDList'(${1:Tlv}, ${2:TagIn}) $3" -p49491 -tp49492 -a(S"'dec_TerminationStateDescriptor'/2" -p49493 -S"'dec_TerminationStateDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p49494 -tp49495 -a(S"'dec_TimeNotation'/2" -p49496 -S"'dec_TimeNotation'(${1:Tlv}, ${2:TagIn}) $3" -p49497 -tp49498 -a(S"'dec_TopologyRequest'/2" -p49499 -S"'dec_TopologyRequest'(${1:Tlv}, ${2:TagIn}) $3" -p49500 -tp49501 -a(S"'dec_Transaction'/2" -p49502 -S"'dec_Transaction'(${1:Tlv}, ${2:TagIn}) $3" -p49503 -tp49504 -a(S"'dec_TransactionAck'/2" -p49505 -S"'dec_TransactionAck'(${1:Tlv}, ${2:TagIn}) $3" -p49506 -tp49507 -a(S"'dec_TransactionId'/2" -p49508 -S"'dec_TransactionId'(${1:Tlv}, ${2:TagIn}) $3" -p49509 -tp49510 -a(S"'dec_TransactionPending'/2" -p49511 -S"'dec_TransactionPending'(${1:Tlv}, ${2:TagIn}) $3" -p49512 -tp49513 -a(S"'dec_TransactionReply'/2" -p49514 -S"'dec_TransactionReply'(${1:Tlv}, ${2:TagIn}) $3" -p49515 -tp49516 -a(S"'dec_TransactionRequest'/2" -p49517 -S"'dec_TransactionRequest'(${1:Tlv}, ${2:TagIn}) $3" -p49518 -tp49519 -a(S"'dec_TransactionResponseAck'/2" -p49520 -S"'dec_TransactionResponseAck'(${1:Tlv}, ${2:TagIn}) $3" -p49521 -tp49522 -a(S"'dec_Value'/2" -p49523 -S"'dec_Value'(${1:Tlv}, ${2:TagIn}) $3" -p49524 -tp49525 -a(S"'dec_WildcardField'/2" -p49526 -S"'dec_WildcardField'(${1:Tlv}, ${2:TagIn}) $3" -p49527 -tp49528 -a(S"'enc_ActionReply'/2" -p49529 -S"'enc_ActionReply'(${1:Val}, ${2:TagIn}) $3" -p49530 -tp49531 -a(S"'enc_ActionRequest'/2" -p49532 -S"'enc_ActionRequest'(${1:Val}, ${2:TagIn}) $3" -p49533 -tp49534 -a(S"'enc_AmmDescriptor'/2" -p49535 -S"'enc_AmmDescriptor'(${1:Val}, ${2:TagIn}) $3" -p49536 -tp49537 -a(S"'enc_AmmRequest'/2" -p49538 -S"'enc_AmmRequest'(${1:Val}, ${2:TagIn}) $3" -p49539 -tp49540 -a(S"'enc_AmmsReply'/2" -p49541 -S"'enc_AmmsReply'(${1:Val}, ${2:TagIn}) $3" -p49542 -tp49543 -a(S"'enc_AuditDescriptor'/2" -p49544 -S"'enc_AuditDescriptor'(${1:Val}, ${2:TagIn}) $3" -p49545 -tp49546 -a(S"'enc_AuditReply'/2" -p49547 -S"'enc_AuditReply'(${1:Val}, ${2:TagIn}) $3" -p49548 -tp49549 -a(S"'enc_AuditRequest'/2" -p49550 -S"'enc_AuditRequest'(${1:Val}, ${2:TagIn}) $3" -p49551 -tp49552 -a(S"'enc_AuditResult'/2" -p49553 -S"'enc_AuditResult'(${1:Val}, ${2:TagIn}) $3" -p49554 -tp49555 -a(S"'enc_AuditReturnParameter'/2" -p49556 -S"'enc_AuditReturnParameter'(${1:Val}, ${2:TagIn}) $3" -p49557 -tp49558 -a(S"'enc_AuthData'/2" -p49559 -S"'enc_AuthData'(${1:Val}, ${2:TagIn}) $3" -p49560 -tp49561 -a(S"'enc_AuthenticationHeader'/2" -p49562 -S"'enc_AuthenticationHeader'(${1:Val}, ${2:TagIn}) $3" -p49563 -tp49564 -a(S"'enc_Command'/2" -p49565 -S"'enc_Command'(${1:Val}, ${2:TagIn}) $3" -p49566 -tp49567 -a(S"'enc_CommandReply'/2" -p49568 -S"'enc_CommandReply'(${1:Val}, ${2:TagIn}) $3" -p49569 -tp49570 -a(S"'enc_CommandRequest'/2" -p49571 -S"'enc_CommandRequest'(${1:Val}, ${2:TagIn}) $3" -p49572 -tp49573 -a(S"'enc_ContextAttrAuditRequest'/2" -p49574 -S"'enc_ContextAttrAuditRequest'(${1:Val}, ${2:TagIn}) $3" -p49575 -tp49576 -a(S"'enc_ContextID'/2" -p49577 -S"'enc_ContextID'(${1:Val}, ${2:TagIn}) $3" -p49578 -tp49579 -a(S"'enc_ContextRequest'/2" -p49580 -S"'enc_ContextRequest'(${1:Val}, ${2:TagIn}) $3" -p49581 -tp49582 -a(S"'enc_DigitMapDescriptor'/2" -p49583 -S"'enc_DigitMapDescriptor'(${1:Val}, ${2:TagIn}) $3" -p49584 -tp49585 -a(S"'enc_DigitMapName'/2" -p49586 -S"'enc_DigitMapName'(${1:Val}, ${2:TagIn}) $3" -p49587 -tp49588 -a(S"'enc_DigitMapValue'/2" -p49589 -S"'enc_DigitMapValue'(${1:Val}, ${2:TagIn}) $3" -p49590 -tp49591 -a(S"'enc_DomainName'/2" -p49592 -S"'enc_DomainName'(${1:Val}, ${2:TagIn}) $3" -p49593 -tp49594 -a(S"'enc_ErrorCode'/2" -p49595 -S"'enc_ErrorCode'(${1:Val}, ${2:TagIn}) $3" -p49596 -tp49597 -a(S"'enc_ErrorDescriptor'/2" -p49598 -S"'enc_ErrorDescriptor'(${1:Val}, ${2:TagIn}) $3" -p49599 -tp49600 -a(S"'enc_ErrorText'/2" -p49601 -S"'enc_ErrorText'(${1:Val}, ${2:TagIn}) $3" -p49602 -tp49603 -a(S"'enc_EventBufferControl'/2" -p49604 -S"'enc_EventBufferControl'(${1:Val}, ${2:TagIn}) $3" -p49605 -tp49606 -a(S"'enc_EventBufferDescriptor'/2" -p49607 -S"'enc_EventBufferDescriptor'(${1:Val}, ${2:TagIn}) $3" -p49608 -tp49609 -a(S"'enc_EventDM'/2" -p49610 -S"'enc_EventDM'(${1:Val}, ${2:TagIn}) $3" -p49611 -tp49612 -a(S"'enc_EventName'/2" -p49613 -S"'enc_EventName'(${1:Val}, ${2:TagIn}) $3" -p49614 -tp49615 -a(S"'enc_EventParameter'/2" -p49616 -S"'enc_EventParameter'(${1:Val}, ${2:TagIn}) $3" -p49617 -tp49618 -a(S"'enc_EventSpec'/2" -p49619 -S"'enc_EventSpec'(${1:Val}, ${2:TagIn}) $3" -p49620 -tp49621 -a(S"'enc_EventsDescriptor'/2" -p49622 -S"'enc_EventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p49623 -tp49624 -a(S"'enc_H221NonStandard'/2" -p49625 -S"'enc_H221NonStandard'(${1:Val}, ${2:TagIn}) $3" -p49626 -tp49627 -a(S"'enc_IP4Address'/2" -p49628 -S"'enc_IP4Address'(${1:Val}, ${2:TagIn}) $3" -p49629 -tp49630 -a(S"'enc_IP6Address'/2" -p49631 -S"'enc_IP6Address'(${1:Val}, ${2:TagIn}) $3" -p49632 -tp49633 -a(S"'enc_IndAudDigitMapDescriptor'/2" -p49634 -S"'enc_IndAudDigitMapDescriptor'(${1:Val}, ${2:TagIn}) $3" -p49635 -tp49636 -a(S"'enc_IndAudEventBufferDescriptor'/2" -p49637 -S"'enc_IndAudEventBufferDescriptor'(${1:Val}, ${2:TagIn}) $3" -p49638 -tp49639 -a(S"'enc_IndAudEventsDescriptor'/2" -p49640 -S"'enc_IndAudEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p49641 -tp49642 -a(S"'enc_IndAudLocalControlDescriptor'/2" -p49643 -S"'enc_IndAudLocalControlDescriptor'(${1:Val}, ${2:TagIn}) $3" -p49644 -tp49645 -a(S"'enc_IndAudLocalRemoteDescriptor'/2" -p49646 -S"'enc_IndAudLocalRemoteDescriptor'(${1:Val}, ${2:TagIn}) $3" -p49647 -tp49648 -a(S"'enc_IndAudMediaDescriptor'/2" -p49649 -S"'enc_IndAudMediaDescriptor'(${1:Val}, ${2:TagIn}) $3" -p49650 -tp49651 -a(S"'enc_IndAudPackagesDescriptor'/2" -p49652 -S"'enc_IndAudPackagesDescriptor'(${1:Val}, ${2:TagIn}) $3" -p49653 -tp49654 -a(S"'enc_IndAudPropertyGroup'/2" -p49655 -S"'enc_IndAudPropertyGroup'(${1:Val}, ${2:TagIn}) $3" -p49656 -tp49657 -a(S"'enc_IndAudPropertyParm'/2" -p49658 -S"'enc_IndAudPropertyParm'(${1:Val}, ${2:TagIn}) $3" -p49659 -tp49660 -a(S"'enc_IndAudSeqSigList'/2" -p49661 -S"'enc_IndAudSeqSigList'(${1:Val}, ${2:TagIn}) $3" -p49662 -tp49663 -a(S"'enc_IndAudSignal'/2" -p49664 -S"'enc_IndAudSignal'(${1:Val}, ${2:TagIn}) $3" -p49665 -tp49666 -a(S"'enc_IndAudSignalsDescriptor'/2" -p49667 -S"'enc_IndAudSignalsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p49668 -tp49669 -a(S"'enc_IndAudStatisticsDescriptor'/2" -p49670 -S"'enc_IndAudStatisticsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p49671 -tp49672 -a(S"'enc_IndAudStreamDescriptor'/2" -p49673 -S"'enc_IndAudStreamDescriptor'(${1:Val}, ${2:TagIn}) $3" -p49674 -tp49675 -a(S"'enc_IndAudStreamParms'/2" -p49676 -S"'enc_IndAudStreamParms'(${1:Val}, ${2:TagIn}) $3" -p49677 -tp49678 -a(S"'enc_IndAudTerminationStateDescriptor'/2" -p49679 -S"'enc_IndAudTerminationStateDescriptor'(${1:Val}, ${2:TagIn}) $3" -p49680 -tp49681 -a(S"'enc_IndAuditParameter'/2" -p49682 -S"'enc_IndAuditParameter'(${1:Val}, ${2:TagIn}) $3" -p49683 -tp49684 -a(S"'enc_LocalControlDescriptor'/2" -p49685 -S"'enc_LocalControlDescriptor'(${1:Val}, ${2:TagIn}) $3" -p49686 -tp49687 -a(S"'enc_LocalRemoteDescriptor'/2" -p49688 -S"'enc_LocalRemoteDescriptor'(${1:Val}, ${2:TagIn}) $3" -p49689 -tp49690 -a(S"'enc_MId'/2" -p49691 -S"'enc_MId'(${1:Val}, ${2:TagIn}) $3" -p49692 -tp49693 -a(S"'enc_MediaDescriptor'/2" -p49694 -S"'enc_MediaDescriptor'(${1:Val}, ${2:TagIn}) $3" -p49695 -tp49696 -a(S"'enc_MegacoMessage'/2" -p49697 -S"'enc_MegacoMessage'(${1:Val}, ${2:TagIn}) $3" -p49698 -tp49699 -a(S"'enc_Message'/2" -p49700 -S"'enc_Message'(${1:Val}, ${2:TagIn}) $3" -p49701 -tp49702 -a(S"'enc_ModemDescriptor'/2" -p49703 -S"'enc_ModemDescriptor'(${1:Val}, ${2:TagIn}) $3" -p49704 -tp49705 -a(S"'enc_ModemType'/2" -p49706 -S"'enc_ModemType'(${1:Val}, ${2:TagIn}) $3" -p49707 -tp49708 -a(S"'enc_MuxDescriptor'/2" -p49709 -S"'enc_MuxDescriptor'(${1:Val}, ${2:TagIn}) $3" -p49710 -tp49711 -a(S"'enc_MuxType'/2" -p49712 -S"'enc_MuxType'(${1:Val}, ${2:TagIn}) $3" -p49713 -tp49714 -a(S"'enc_Name'/2" -p49715 -S"'enc_Name'(${1:Val}, ${2:TagIn}) $3" -p49716 -tp49717 -a(S"'enc_NonStandardData'/2" -p49718 -S"'enc_NonStandardData'(${1:Val}, ${2:TagIn}) $3" -p49719 -tp49720 -a(S"'enc_NonStandardIdentifier'/2" -p49721 -S"'enc_NonStandardIdentifier'(${1:Val}, ${2:TagIn}) $3" -p49722 -tp49723 -a(S"'enc_NotifyCompletion'/2" -p49724 -S"'enc_NotifyCompletion'(${1:Val}, ${2:TagIn}) $3" -p49725 -tp49726 -a(S"'enc_NotifyReply'/2" -p49727 -S"'enc_NotifyReply'(${1:Val}, ${2:TagIn}) $3" -p49728 -tp49729 -a(S"'enc_NotifyRequest'/2" -p49730 -S"'enc_NotifyRequest'(${1:Val}, ${2:TagIn}) $3" -p49731 -tp49732 -a(S"'enc_ObservedEvent'/2" -p49733 -S"'enc_ObservedEvent'(${1:Val}, ${2:TagIn}) $3" -p49734 -tp49735 -a(S"'enc_ObservedEventsDescriptor'/2" -p49736 -S"'enc_ObservedEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p49737 -tp49738 -a(S"'enc_PackagesDescriptor'/2" -p49739 -S"'enc_PackagesDescriptor'(${1:Val}, ${2:TagIn}) $3" -p49740 -tp49741 -a(S"'enc_PackagesItem'/2" -p49742 -S"'enc_PackagesItem'(${1:Val}, ${2:TagIn}) $3" -p49743 -tp49744 -a(S"'enc_PathName'/2" -p49745 -S"'enc_PathName'(${1:Val}, ${2:TagIn}) $3" -p49746 -tp49747 -a(S"'enc_PkgdName'/2" -p49748 -S"'enc_PkgdName'(${1:Val}, ${2:TagIn}) $3" -p49749 -tp49750 -a(S"'enc_PropertyGroup'/2" -p49751 -S"'enc_PropertyGroup'(${1:Val}, ${2:TagIn}) $3" -p49752 -tp49753 -a(S"'enc_PropertyParm'/2" -p49754 -S"'enc_PropertyParm'(${1:Val}, ${2:TagIn}) $3" -p49755 -tp49756 -a(S"'enc_Relation'/2" -p49757 -S"'enc_Relation'(${1:Val}, ${2:TagIn}) $3" -p49758 -tp49759 -a(S"'enc_RequestID'/2" -p49760 -S"'enc_RequestID'(${1:Val}, ${2:TagIn}) $3" -p49761 -tp49762 -a(S"'enc_RequestedActions'/2" -p49763 -S"'enc_RequestedActions'(${1:Val}, ${2:TagIn}) $3" -p49764 -tp49765 -a(S"'enc_RequestedEvent'/2" -p49766 -S"'enc_RequestedEvent'(${1:Val}, ${2:TagIn}) $3" -p49767 -tp49768 -a(S"'enc_SecondEventsDescriptor'/2" -p49769 -S"'enc_SecondEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p49770 -tp49771 -a(S"'enc_SecondRequestedActions'/2" -p49772 -S"'enc_SecondRequestedActions'(${1:Val}, ${2:TagIn}) $3" -p49773 -tp49774 -a(S"'enc_SecondRequestedEvent'/2" -p49775 -S"'enc_SecondRequestedEvent'(${1:Val}, ${2:TagIn}) $3" -p49776 -tp49777 -a(S"'enc_SecurityParmIndex'/2" -p49778 -S"'enc_SecurityParmIndex'(${1:Val}, ${2:TagIn}) $3" -p49779 -tp49780 -a(S"'enc_SegmentNumber'/2" -p49781 -S"'enc_SegmentNumber'(${1:Val}, ${2:TagIn}) $3" -p49782 -tp49783 -a(S"'enc_SeqSigList'/2" -p49784 -S"'enc_SeqSigList'(${1:Val}, ${2:TagIn}) $3" -p49785 -tp49786 -a(S"'enc_SequenceNum'/2" -p49787 -S"'enc_SequenceNum'(${1:Val}, ${2:TagIn}) $3" -p49788 -tp49789 -a(S"'enc_ServiceChangeAddress'/2" -p49790 -S"'enc_ServiceChangeAddress'(${1:Val}, ${2:TagIn}) $3" -p49791 -tp49792 -a(S"'enc_ServiceChangeMethod'/2" -p49793 -S"'enc_ServiceChangeMethod'(${1:Val}, ${2:TagIn}) $3" -p49794 -tp49795 -a(S"'enc_ServiceChangeParm'/2" -p49796 -S"'enc_ServiceChangeParm'(${1:Val}, ${2:TagIn}) $3" -p49797 -tp49798 -a(S"'enc_ServiceChangeProfile'/2" -p49799 -S"'enc_ServiceChangeProfile'(${1:Val}, ${2:TagIn}) $3" -p49800 -tp49801 -a(S"'enc_ServiceChangeReply'/2" -p49802 -S"'enc_ServiceChangeReply'(${1:Val}, ${2:TagIn}) $3" -p49803 -tp49804 -a(S"'enc_ServiceChangeRequest'/2" -p49805 -S"'enc_ServiceChangeRequest'(${1:Val}, ${2:TagIn}) $3" -p49806 -tp49807 -a(S"'enc_ServiceChangeResParm'/2" -p49808 -S"'enc_ServiceChangeResParm'(${1:Val}, ${2:TagIn}) $3" -p49809 -tp49810 -a(S"'enc_ServiceChangeResult'/2" -p49811 -S"'enc_ServiceChangeResult'(${1:Val}, ${2:TagIn}) $3" -p49812 -tp49813 -a(S"'enc_ServiceState'/2" -p49814 -S"'enc_ServiceState'(${1:Val}, ${2:TagIn}) $3" -p49815 -tp49816 -a(S"'enc_SigParameter'/2" -p49817 -S"'enc_SigParameter'(${1:Val}, ${2:TagIn}) $3" -p49818 -tp49819 -a(S"'enc_Signal'/2" -p49820 -S"'enc_Signal'(${1:Val}, ${2:TagIn}) $3" -p49821 -tp49822 -a(S"'enc_SignalDirection'/2" -p49823 -S"'enc_SignalDirection'(${1:Val}, ${2:TagIn}) $3" -p49824 -tp49825 -a(S"'enc_SignalName'/2" -p49826 -S"'enc_SignalName'(${1:Val}, ${2:TagIn}) $3" -p49827 -tp49828 -a(S"'enc_SignalRequest'/2" -p49829 -S"'enc_SignalRequest'(${1:Val}, ${2:TagIn}) $3" -p49830 -tp49831 -a(S"'enc_SignalType'/2" -p49832 -S"'enc_SignalType'(${1:Val}, ${2:TagIn}) $3" -p49833 -tp49834 -a(S"'enc_SignalsDescriptor'/2" -p49835 -S"'enc_SignalsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p49836 -tp49837 -a(S"'enc_StatisticsDescriptor'/2" -p49838 -S"'enc_StatisticsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p49839 -tp49840 -a(S"'enc_StatisticsParameter'/2" -p49841 -S"'enc_StatisticsParameter'(${1:Val}, ${2:TagIn}) $3" -p49842 -tp49843 -a(S"'enc_StreamDescriptor'/2" -p49844 -S"'enc_StreamDescriptor'(${1:Val}, ${2:TagIn}) $3" -p49845 -tp49846 -a(S"'enc_StreamID'/2" -p49847 -S"'enc_StreamID'(${1:Val}, ${2:TagIn}) $3" -p49848 -tp49849 -a(S"'enc_StreamMode'/2" -p49850 -S"'enc_StreamMode'(${1:Val}, ${2:TagIn}) $3" -p49851 -tp49852 -a(S"'enc_StreamParms'/2" -p49853 -S"'enc_StreamParms'(${1:Val}, ${2:TagIn}) $3" -p49854 -tp49855 -a(S"'enc_SubtractRequest'/2" -p49856 -S"'enc_SubtractRequest'(${1:Val}, ${2:TagIn}) $3" -p49857 -tp49858 -a(S"'enc_TerminationAudit'/2" -p49859 -S"'enc_TerminationAudit'(${1:Val}, ${2:TagIn}) $3" -p49860 -tp49861 -a(S"'enc_TerminationID'/2" -p49862 -S"'enc_TerminationID'(${1:Val}, ${2:TagIn}) $3" -p49863 -tp49864 -a(S"'enc_TerminationIDList'/2" -p49865 -S"'enc_TerminationIDList'(${1:Val}, ${2:TagIn}) $3" -p49866 -tp49867 -a(S"'enc_TerminationStateDescriptor'/2" -p49868 -S"'enc_TerminationStateDescriptor'(${1:Val}, ${2:TagIn}) $3" -p49869 -tp49870 -a(S"'enc_TimeNotation'/2" -p49871 -S"'enc_TimeNotation'(${1:Val}, ${2:TagIn}) $3" -p49872 -tp49873 -a(S"'enc_TopologyRequest'/2" -p49874 -S"'enc_TopologyRequest'(${1:Val}, ${2:TagIn}) $3" -p49875 -tp49876 -a(S"'enc_Transaction'/2" -p49877 -S"'enc_Transaction'(${1:Val}, ${2:TagIn}) $3" -p49878 -tp49879 -a(S"'enc_TransactionAck'/2" -p49880 -S"'enc_TransactionAck'(${1:Val}, ${2:TagIn}) $3" -p49881 -tp49882 -a(S"'enc_TransactionId'/2" -p49883 -S"'enc_TransactionId'(${1:Val}, ${2:TagIn}) $3" -p49884 -tp49885 -a(S"'enc_TransactionPending'/2" -p49886 -S"'enc_TransactionPending'(${1:Val}, ${2:TagIn}) $3" -p49887 -tp49888 -a(S"'enc_TransactionReply'/2" -p49889 -S"'enc_TransactionReply'(${1:Val}, ${2:TagIn}) $3" -p49890 -tp49891 -a(S"'enc_TransactionRequest'/2" -p49892 -S"'enc_TransactionRequest'(${1:Val}, ${2:TagIn}) $3" -p49893 -tp49894 -a(S"'enc_TransactionResponseAck'/2" -p49895 -S"'enc_TransactionResponseAck'(${1:Val}, ${2:TagIn}) $3" -p49896 -tp49897 -a(S"'enc_Value'/2" -p49898 -S"'enc_Value'(${1:Val}, ${2:TagIn}) $3" -p49899 -tp49900 -a(S"'enc_WildcardField'/2" -p49901 -S"'enc_WildcardField'(${1:Val}, ${2:TagIn}) $3" -p49902 -tp49903 -a(S'decode/2' -p49904 -S'decode(${1:Type}, ${2:Data}) $3' -p49905 -tp49906 -a(S'decode_disp/2' -p49907 -S'decode_disp(${1:Type}, ${2:Data}) $3' -p49908 -tp49909 -a(S'decode_message_acts_partial/1' -p49910 -S'decode_message_acts_partial(${1:Bytes}) $2' -p49911 -tp49912 -a(S'decode_message_mId/1' -p49913 -S'decode_message_mId(${1:Bytes}) $2' -p49914 -tp49915 -a(S'decode_message_trans_partial/1' -p49916 -S'decode_message_trans_partial(${1:Bytes}) $2' -p49917 -tp49918 -a(S'decode_message_version/1' -p49919 -S'decode_message_version(${1:Bytes}) $2' -p49920 -tp49921 -a(S'decode_part/2' -p49922 -S'decode_part(${1:Type}, ${2:Data0}) $3' -p49923 -tp49924 -a(S'encode/2' -p49925 -S'encode(${1:Type}, ${2:Data}) $3' -p49926 -tp49927 -a(S'encode_disp/2' -p49928 -S'encode_disp(${1:Type}, ${2:Data}) $3' -p49929 -tp49930 -a(S'encoding_rule/0' -p49931 -S'encoding_rule() $1' -p49932 -tp49933 -a(S'info/0' -p49934 -S'info() $1' -p49935 -tp49936 -asS'browser' -p49937 -(lp49938 -(S'init/3' -p49939 -S'init(${1:Pid}, ${2:Text}, ${3:Items}) $4' -p49940 -tp49941 -a(S'start/0' -p49942 -S'start() $1' -p49943 -tp49944 -a(S'start/2' -p49945 -S'start(${1:Text}, ${2:Items}) $3' -p49946 -tp49947 -asS'prim_file' -p49948 -(lp49949 -(S'advise/4' -p49950 -S'advise() $1' -p49951 -tp49952 -a(S'altname/1' -p49953 -S'altname(${1:File}) $2' -p49954 -tp49955 -a(S'altname/2' -p49956 -S'altname(${1:Port}, ${2:File}) $3' -p49957 -tp49958 -a(S'close/1' -p49959 -S'close(${1:Port}) $2' -p49960 -tp49961 -a(S'copy/3' -p49962 -S'copy() $1' -p49963 -tp49964 -a(S'datasync/1' -p49965 -S'datasync(${1:Param1}) $2' -p49966 -tp49967 -a(S'del_dir/1' -p49968 -S'del_dir(${1:Dir}) $2' -p49969 -tp49970 -a(S'del_dir/2' -p49971 -S'del_dir(${1:Port}, ${2:Dir}) $3' -p49972 -tp49973 -a(S'delete/1' -p49974 -S'delete(${1:File}) $2' -p49975 -tp49976 -a(S'delete/2' -p49977 -S'delete(${1:Port}, ${2:File}) $3' -p49978 -tp49979 -a(S'get_cwd/0' -p49980 -S'get_cwd() $1' -p49981 -tp49982 -a(S'get_cwd/1' -p49983 -S'get_cwd(${1:Port}) $2' -p49984 -tp49985 -a(S'get_cwd/2' -p49986 -S'get_cwd(${1:Port}, ${2:Param2}) $3' -p49987 -tp49988 -a(S'ipread_s32bu_p32bu/3' -p49989 -S'ipread_s32bu_p32bu() $1' -p49990 -tp49991 -a(S'list_dir/1' -p49992 -S'list_dir(${1:Dir}) $2' -p49993 -tp49994 -a(S'list_dir/2' -p49995 -S'list_dir(${1:Port}, ${2:Dir}) $3' -p49996 -tp49997 -a(S'make_dir/1' -p49998 -S'make_dir(${1:Dir}) $2' -p49999 -tp50000 -a(S'make_dir/2' -p50001 -S'make_dir(${1:Port}, ${2:Dir}) $3' -p50002 -tp50003 -a(S'make_link/2' -p50004 -S'make_link(${1:Old}, ${2:New}) $3' -p50005 -tp50006 -a(S'make_link/3' -p50007 -S'make_link(${1:Port}, ${2:Old}, ${3:New}) $4' -p50008 -tp50009 -a(S'make_symlink/2' -p50010 -S'make_symlink(${1:Old}, ${2:New}) $3' -p50011 -tp50012 -a(S'make_symlink/3' -p50013 -S'make_symlink(${1:Port}, ${2:Old}, ${3:New}) $4' -p50014 -tp50015 -a(S'open/1' -p50016 -S'open(${1:Portopts}) $2' -p50017 -tp50018 -a(S'open/2' -p50019 -S'open(${1:Driver}, ${2:Portopts}) $3' -p50020 -tp50021 -a(S'open/3' -p50022 -S'open(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p50023 -tp50024 -a(S'open_int/4' -p50025 -S'open_int(${1:Port}, ${2:File}, ${3:Mode}, ${4:Setopts}) $5' -p50026 -tp50027 -a(S'open_mode/1' -p50028 -S'open_mode(${1:List}) $2' -p50029 -tp50030 -a(S'open_mode/4' -p50031 -S'open_mode(${1:Param1}, ${2:Mode}, ${3:Portopts}, ${4:Setopts}) $5' -p50032 -tp50033 -a(S'position/2' -p50034 -S'position(${1:Param1}, ${2:At}) $3' -p50035 -tp50036 -a(S'pread/2' -p50037 -S'pread() $1' -p50038 -tp50039 -a(S'pread/3' -p50040 -S'pread(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p50041 -tp50042 -a(S'pwrite/2' -p50043 -S'pwrite() $1' -p50044 -tp50045 -a(S'pwrite/3' -p50046 -S'pwrite(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p50047 -tp50048 -a(S'read/2' -p50049 -S'read() $1' -p50050 -tp50051 -a(S'read_file/1' -p50052 -S'read_file(${1:File}) $2' -p50053 -tp50054 -a(S'read_file/2' -p50055 -S'read_file(${1:Param1}, ${2:Param2}) $3' -p50056 -tp50057 -a(S'read_file_info/1' -p50058 -S'read_file_info(${1:File}) $2' -p50059 -tp50060 -a(S'read_file_info/2' -p50061 -S'read_file_info(${1:Port}, ${2:File}) $3' -p50062 -tp50063 -a(S'read_file_info/3' -p50064 -S'read_file_info(${1:Port}, ${2:File}, ${3:Opts}) $4' -p50065 -tp50066 -a(S'read_line/1' -p50067 -S'read_line(${1:Param1}) $2' -p50068 -tp50069 -a(S'read_link/1' -p50070 -S'read_link(${1:Link}) $2' -p50071 -tp50072 -a(S'read_link/2' -p50073 -S'read_link(${1:Port}, ${2:Link}) $3' -p50074 -tp50075 -a(S'read_link_info/1' -p50076 -S'read_link_info(${1:Link}) $2' -p50077 -tp50078 -a(S'read_link_info/2' -p50079 -S'read_link_info(${1:Port}, ${2:Link}) $3' -p50080 -tp50081 -a(S'read_link_info/3' -p50082 -S'read_link_info(${1:Port}, ${2:Link}, ${3:Opts}) $4' -p50083 -tp50084 -a(S'rename/2' -p50085 -S'rename(${1:From}, ${2:To}) $3' -p50086 -tp50087 -a(S'rename/3' -p50088 -S'rename(${1:Port}, ${2:From}, ${3:To}) $4' -p50089 -tp50090 -a(S'sendfile/10' -p50091 -S'sendfile() $1' -p50092 -tp50093 -a(S'set_cwd/1' -p50094 -S'set_cwd(${1:Dir}) $2' -p50095 -tp50096 -a(S'set_cwd/2' -p50097 -S'set_cwd(${1:Port}, ${2:Dir}) $3' -p50098 -tp50099 -a(S'start/0' -p50100 -S'start() $1' -p50101 -tp50102 -a(S'stop/1' -p50103 -S'stop(${1:Port}) $2' -p50104 -tp50105 -a(S'sync/1' -p50106 -S'sync(${1:Param1}) $2' -p50107 -tp50108 -a(S'truncate/1' -p50109 -S'truncate(${1:Param1}) $2' -p50110 -tp50111 -a(S'write/2' -p50112 -S'write(${1:Param1}, ${2:Bytes}) $3' -p50113 -tp50114 -a(S'write_file/2' -p50115 -S'write_file(${1:File}, ${2:Bin}) $3' -p50116 -tp50117 -a(S'write_file_info/2' -p50118 -S'write_file_info(${1:File}, ${2:Info}) $3' -p50119 -tp50120 -a(S'write_file_info/3' -p50121 -S'write_file_info(${1:Port}, ${2:File}, ${3:Info}) $4' -p50122 -tp50123 -a(S'write_file_info/4' -p50124 -S'write_file_info(${1:Port}, ${2:File}, ${3:Info}, ${4:Opts}) $5' -p50125 -tp50126 -asS'megaco_ber_bin_drv_media_gateway_control_prev3b' -p50127 -(lp50128 -(S"'dec_ActionReply'/2" -p50129 -S"'dec_ActionReply'(${1:Tlv}, ${2:TagIn}) $3" -p50130 -tp50131 -a(S"'dec_ActionRequest'/2" -p50132 -S"'dec_ActionRequest'(${1:Tlv}, ${2:TagIn}) $3" -p50133 -tp50134 -a(S"'dec_AmmDescriptor'/2" -p50135 -S"'dec_AmmDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p50136 -tp50137 -a(S"'dec_AmmRequest'/2" -p50138 -S"'dec_AmmRequest'(${1:Tlv}, ${2:TagIn}) $3" -p50139 -tp50140 -a(S"'dec_AmmsReply'/2" -p50141 -S"'dec_AmmsReply'(${1:Tlv}, ${2:TagIn}) $3" -p50142 -tp50143 -a(S"'dec_AuditDescriptor'/2" -p50144 -S"'dec_AuditDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p50145 -tp50146 -a(S"'dec_AuditReply'/2" -p50147 -S"'dec_AuditReply'(${1:Tlv}, ${2:TagIn}) $3" -p50148 -tp50149 -a(S"'dec_AuditRequest'/2" -p50150 -S"'dec_AuditRequest'(${1:Tlv}, ${2:TagIn}) $3" -p50151 -tp50152 -a(S"'dec_AuditResult'/2" -p50153 -S"'dec_AuditResult'(${1:Tlv}, ${2:TagIn}) $3" -p50154 -tp50155 -a(S"'dec_AuditReturnParameter'/2" -p50156 -S"'dec_AuditReturnParameter'(${1:Tlv}, ${2:TagIn}) $3" -p50157 -tp50158 -a(S"'dec_AuthData'/2" -p50159 -S"'dec_AuthData'(${1:Tlv}, ${2:TagIn}) $3" -p50160 -tp50161 -a(S"'dec_AuthenticationHeader'/2" -p50162 -S"'dec_AuthenticationHeader'(${1:Tlv}, ${2:TagIn}) $3" -p50163 -tp50164 -a(S"'dec_Command'/2" -p50165 -S"'dec_Command'(${1:Tlv}, ${2:TagIn}) $3" -p50166 -tp50167 -a(S"'dec_CommandReply'/2" -p50168 -S"'dec_CommandReply'(${1:Tlv}, ${2:TagIn}) $3" -p50169 -tp50170 -a(S"'dec_CommandRequest'/2" -p50171 -S"'dec_CommandRequest'(${1:Tlv}, ${2:TagIn}) $3" -p50172 -tp50173 -a(S"'dec_ContextAttrAuditRequest'/2" -p50174 -S"'dec_ContextAttrAuditRequest'(${1:Tlv}, ${2:TagIn}) $3" -p50175 -tp50176 -a(S"'dec_ContextID'/2" -p50177 -S"'dec_ContextID'(${1:Tlv}, ${2:TagIn}) $3" -p50178 -tp50179 -a(S"'dec_ContextRequest'/2" -p50180 -S"'dec_ContextRequest'(${1:Tlv}, ${2:TagIn}) $3" -p50181 -tp50182 -a(S"'dec_DigitMapDescriptor'/2" -p50183 -S"'dec_DigitMapDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p50184 -tp50185 -a(S"'dec_DigitMapName'/2" -p50186 -S"'dec_DigitMapName'(${1:Tlv}, ${2:TagIn}) $3" -p50187 -tp50188 -a(S"'dec_DigitMapValue'/2" -p50189 -S"'dec_DigitMapValue'(${1:Tlv}, ${2:TagIn}) $3" -p50190 -tp50191 -a(S"'dec_DomainName'/2" -p50192 -S"'dec_DomainName'(${1:Tlv}, ${2:TagIn}) $3" -p50193 -tp50194 -a(S"'dec_ErrorCode'/2" -p50195 -S"'dec_ErrorCode'(${1:Tlv}, ${2:TagIn}) $3" -p50196 -tp50197 -a(S"'dec_ErrorDescriptor'/2" -p50198 -S"'dec_ErrorDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p50199 -tp50200 -a(S"'dec_ErrorText'/2" -p50201 -S"'dec_ErrorText'(${1:Tlv}, ${2:TagIn}) $3" -p50202 -tp50203 -a(S"'dec_EventBufferControl'/2" -p50204 -S"'dec_EventBufferControl'(${1:Tlv}, ${2:TagIn}) $3" -p50205 -tp50206 -a(S"'dec_EventBufferDescriptor'/2" -p50207 -S"'dec_EventBufferDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p50208 -tp50209 -a(S"'dec_EventDM'/2" -p50210 -S"'dec_EventDM'(${1:Tlv}, ${2:TagIn}) $3" -p50211 -tp50212 -a(S"'dec_EventName'/2" -p50213 -S"'dec_EventName'(${1:Tlv}, ${2:TagIn}) $3" -p50214 -tp50215 -a(S"'dec_EventParameter'/2" -p50216 -S"'dec_EventParameter'(${1:Tlv}, ${2:TagIn}) $3" -p50217 -tp50218 -a(S"'dec_EventSpec'/2" -p50219 -S"'dec_EventSpec'(${1:Tlv}, ${2:TagIn}) $3" -p50220 -tp50221 -a(S"'dec_EventsDescriptor'/2" -p50222 -S"'dec_EventsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p50223 -tp50224 -a(S"'dec_H221NonStandard'/2" -p50225 -S"'dec_H221NonStandard'(${1:Tlv}, ${2:TagIn}) $3" -p50226 -tp50227 -a(S"'dec_IP4Address'/2" -p50228 -S"'dec_IP4Address'(${1:Tlv}, ${2:TagIn}) $3" -p50229 -tp50230 -a(S"'dec_IP6Address'/2" -p50231 -S"'dec_IP6Address'(${1:Tlv}, ${2:TagIn}) $3" -p50232 -tp50233 -a(S"'dec_IndAudDigitMapDescriptor'/2" -p50234 -S"'dec_IndAudDigitMapDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p50235 -tp50236 -a(S"'dec_IndAudEventBufferDescriptor'/2" -p50237 -S"'dec_IndAudEventBufferDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p50238 -tp50239 -a(S"'dec_IndAudEventsDescriptor'/2" -p50240 -S"'dec_IndAudEventsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p50241 -tp50242 -a(S"'dec_IndAudLocalControlDescriptor'/2" -p50243 -S"'dec_IndAudLocalControlDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p50244 -tp50245 -a(S"'dec_IndAudLocalRemoteDescriptor'/2" -p50246 -S"'dec_IndAudLocalRemoteDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p50247 -tp50248 -a(S"'dec_IndAudMediaDescriptor'/2" -p50249 -S"'dec_IndAudMediaDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p50250 -tp50251 -a(S"'dec_IndAudPackagesDescriptor'/2" -p50252 -S"'dec_IndAudPackagesDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p50253 -tp50254 -a(S"'dec_IndAudPropertyGroup'/2" -p50255 -S"'dec_IndAudPropertyGroup'(${1:Tlv}, ${2:TagIn}) $3" -p50256 -tp50257 -a(S"'dec_IndAudPropertyParm'/2" -p50258 -S"'dec_IndAudPropertyParm'(${1:Tlv}, ${2:TagIn}) $3" -p50259 -tp50260 -a(S"'dec_IndAudSeqSigList'/2" -p50261 -S"'dec_IndAudSeqSigList'(${1:Tlv}, ${2:TagIn}) $3" -p50262 -tp50263 -a(S"'dec_IndAudSignal'/2" -p50264 -S"'dec_IndAudSignal'(${1:Tlv}, ${2:TagIn}) $3" -p50265 -tp50266 -a(S"'dec_IndAudSignalsDescriptor'/2" -p50267 -S"'dec_IndAudSignalsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p50268 -tp50269 -a(S"'dec_IndAudStatisticsDescriptor'/2" -p50270 -S"'dec_IndAudStatisticsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p50271 -tp50272 -a(S"'dec_IndAudStreamDescriptor'/2" -p50273 -S"'dec_IndAudStreamDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p50274 -tp50275 -a(S"'dec_IndAudStreamParms'/2" -p50276 -S"'dec_IndAudStreamParms'(${1:Tlv}, ${2:TagIn}) $3" -p50277 -tp50278 -a(S"'dec_IndAudTerminationStateDescriptor'/2" -p50279 -S"'dec_IndAudTerminationStateDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p50280 -tp50281 -a(S"'dec_IndAuditParameter'/2" -p50282 -S"'dec_IndAuditParameter'(${1:Tlv}, ${2:TagIn}) $3" -p50283 -tp50284 -a(S"'dec_LocalControlDescriptor'/2" -p50285 -S"'dec_LocalControlDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p50286 -tp50287 -a(S"'dec_LocalRemoteDescriptor'/2" -p50288 -S"'dec_LocalRemoteDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p50289 -tp50290 -a(S"'dec_MId'/2" -p50291 -S"'dec_MId'(${1:Tlv}, ${2:TagIn}) $3" -p50292 -tp50293 -a(S"'dec_MediaDescriptor'/2" -p50294 -S"'dec_MediaDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p50295 -tp50296 -a(S"'dec_MegacoMessage'/2" -p50297 -S"'dec_MegacoMessage'(${1:Tlv}, ${2:TagIn}) $3" -p50298 -tp50299 -a(S"'dec_Message'/2" -p50300 -S"'dec_Message'(${1:Tlv}, ${2:TagIn}) $3" -p50301 -tp50302 -a(S"'dec_ModemDescriptor'/2" -p50303 -S"'dec_ModemDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p50304 -tp50305 -a(S"'dec_ModemType'/2" -p50306 -S"'dec_ModemType'(${1:Tlv}, ${2:TagIn}) $3" -p50307 -tp50308 -a(S"'dec_MuxDescriptor'/2" -p50309 -S"'dec_MuxDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p50310 -tp50311 -a(S"'dec_MuxType'/2" -p50312 -S"'dec_MuxType'(${1:Tlv}, ${2:TagIn}) $3" -p50313 -tp50314 -a(S"'dec_Name'/2" -p50315 -S"'dec_Name'(${1:Tlv}, ${2:TagIn}) $3" -p50316 -tp50317 -a(S"'dec_NonStandardData'/2" -p50318 -S"'dec_NonStandardData'(${1:Tlv}, ${2:TagIn}) $3" -p50319 -tp50320 -a(S"'dec_NonStandardIdentifier'/2" -p50321 -S"'dec_NonStandardIdentifier'(${1:Tlv}, ${2:TagIn}) $3" -p50322 -tp50323 -a(S"'dec_NotifyCompletion'/2" -p50324 -S"'dec_NotifyCompletion'(${1:Tlv}, ${2:TagIn}) $3" -p50325 -tp50326 -a(S"'dec_NotifyReply'/2" -p50327 -S"'dec_NotifyReply'(${1:Tlv}, ${2:TagIn}) $3" -p50328 -tp50329 -a(S"'dec_NotifyRequest'/2" -p50330 -S"'dec_NotifyRequest'(${1:Tlv}, ${2:TagIn}) $3" -p50331 -tp50332 -a(S"'dec_ObservedEvent'/2" -p50333 -S"'dec_ObservedEvent'(${1:Tlv}, ${2:TagIn}) $3" -p50334 -tp50335 -a(S"'dec_ObservedEventsDescriptor'/2" -p50336 -S"'dec_ObservedEventsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p50337 -tp50338 -a(S"'dec_PackagesDescriptor'/2" -p50339 -S"'dec_PackagesDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p50340 -tp50341 -a(S"'dec_PackagesItem'/2" -p50342 -S"'dec_PackagesItem'(${1:Tlv}, ${2:TagIn}) $3" -p50343 -tp50344 -a(S"'dec_PathName'/2" -p50345 -S"'dec_PathName'(${1:Tlv}, ${2:TagIn}) $3" -p50346 -tp50347 -a(S"'dec_PkgdName'/2" -p50348 -S"'dec_PkgdName'(${1:Tlv}, ${2:TagIn}) $3" -p50349 -tp50350 -a(S"'dec_PropertyGroup'/2" -p50351 -S"'dec_PropertyGroup'(${1:Tlv}, ${2:TagIn}) $3" -p50352 -tp50353 -a(S"'dec_PropertyParm'/2" -p50354 -S"'dec_PropertyParm'(${1:Tlv}, ${2:TagIn}) $3" -p50355 -tp50356 -a(S"'dec_Relation'/2" -p50357 -S"'dec_Relation'(${1:Tlv}, ${2:TagIn}) $3" -p50358 -tp50359 -a(S"'dec_RequestID'/2" -p50360 -S"'dec_RequestID'(${1:Tlv}, ${2:TagIn}) $3" -p50361 -tp50362 -a(S"'dec_RequestedActions'/2" -p50363 -S"'dec_RequestedActions'(${1:Tlv}, ${2:TagIn}) $3" -p50364 -tp50365 -a(S"'dec_RequestedEvent'/2" -p50366 -S"'dec_RequestedEvent'(${1:Tlv}, ${2:TagIn}) $3" -p50367 -tp50368 -a(S"'dec_SecondEventsDescriptor'/2" -p50369 -S"'dec_SecondEventsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p50370 -tp50371 -a(S"'dec_SecondRequestedActions'/2" -p50372 -S"'dec_SecondRequestedActions'(${1:Tlv}, ${2:TagIn}) $3" -p50373 -tp50374 -a(S"'dec_SecondRequestedEvent'/2" -p50375 -S"'dec_SecondRequestedEvent'(${1:Tlv}, ${2:TagIn}) $3" -p50376 -tp50377 -a(S"'dec_SecurityParmIndex'/2" -p50378 -S"'dec_SecurityParmIndex'(${1:Tlv}, ${2:TagIn}) $3" -p50379 -tp50380 -a(S"'dec_SegmentNumber'/2" -p50381 -S"'dec_SegmentNumber'(${1:Tlv}, ${2:TagIn}) $3" -p50382 -tp50383 -a(S"'dec_SeqSigList'/2" -p50384 -S"'dec_SeqSigList'(${1:Tlv}, ${2:TagIn}) $3" -p50385 -tp50386 -a(S"'dec_SequenceNum'/2" -p50387 -S"'dec_SequenceNum'(${1:Tlv}, ${2:TagIn}) $3" -p50388 -tp50389 -a(S"'dec_ServiceChangeAddress'/2" -p50390 -S"'dec_ServiceChangeAddress'(${1:Tlv}, ${2:TagIn}) $3" -p50391 -tp50392 -a(S"'dec_ServiceChangeMethod'/2" -p50393 -S"'dec_ServiceChangeMethod'(${1:Tlv}, ${2:TagIn}) $3" -p50394 -tp50395 -a(S"'dec_ServiceChangeParm'/2" -p50396 -S"'dec_ServiceChangeParm'(${1:Tlv}, ${2:TagIn}) $3" -p50397 -tp50398 -a(S"'dec_ServiceChangeProfile'/2" -p50399 -S"'dec_ServiceChangeProfile'(${1:Tlv}, ${2:TagIn}) $3" -p50400 -tp50401 -a(S"'dec_ServiceChangeReply'/2" -p50402 -S"'dec_ServiceChangeReply'(${1:Tlv}, ${2:TagIn}) $3" -p50403 -tp50404 -a(S"'dec_ServiceChangeRequest'/2" -p50405 -S"'dec_ServiceChangeRequest'(${1:Tlv}, ${2:TagIn}) $3" -p50406 -tp50407 -a(S"'dec_ServiceChangeResParm'/2" -p50408 -S"'dec_ServiceChangeResParm'(${1:Tlv}, ${2:TagIn}) $3" -p50409 -tp50410 -a(S"'dec_ServiceChangeResult'/2" -p50411 -S"'dec_ServiceChangeResult'(${1:Tlv}, ${2:TagIn}) $3" -p50412 -tp50413 -a(S"'dec_ServiceState'/2" -p50414 -S"'dec_ServiceState'(${1:Tlv}, ${2:TagIn}) $3" -p50415 -tp50416 -a(S"'dec_SigParameter'/2" -p50417 -S"'dec_SigParameter'(${1:Tlv}, ${2:TagIn}) $3" -p50418 -tp50419 -a(S"'dec_Signal'/2" -p50420 -S"'dec_Signal'(${1:Tlv}, ${2:TagIn}) $3" -p50421 -tp50422 -a(S"'dec_SignalDirection'/2" -p50423 -S"'dec_SignalDirection'(${1:Tlv}, ${2:TagIn}) $3" -p50424 -tp50425 -a(S"'dec_SignalName'/2" -p50426 -S"'dec_SignalName'(${1:Tlv}, ${2:TagIn}) $3" -p50427 -tp50428 -a(S"'dec_SignalRequest'/2" -p50429 -S"'dec_SignalRequest'(${1:Tlv}, ${2:TagIn}) $3" -p50430 -tp50431 -a(S"'dec_SignalType'/2" -p50432 -S"'dec_SignalType'(${1:Tlv}, ${2:TagIn}) $3" -p50433 -tp50434 -a(S"'dec_SignalsDescriptor'/2" -p50435 -S"'dec_SignalsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p50436 -tp50437 -a(S"'dec_StatisticsDescriptor'/2" -p50438 -S"'dec_StatisticsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p50439 -tp50440 -a(S"'dec_StatisticsParameter'/2" -p50441 -S"'dec_StatisticsParameter'(${1:Tlv}, ${2:TagIn}) $3" -p50442 -tp50443 -a(S"'dec_StreamDescriptor'/2" -p50444 -S"'dec_StreamDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p50445 -tp50446 -a(S"'dec_StreamID'/2" -p50447 -S"'dec_StreamID'(${1:Tlv}, ${2:TagIn}) $3" -p50448 -tp50449 -a(S"'dec_StreamMode'/2" -p50450 -S"'dec_StreamMode'(${1:Tlv}, ${2:TagIn}) $3" -p50451 -tp50452 -a(S"'dec_StreamParms'/2" -p50453 -S"'dec_StreamParms'(${1:Tlv}, ${2:TagIn}) $3" -p50454 -tp50455 -a(S"'dec_SubtractRequest'/2" -p50456 -S"'dec_SubtractRequest'(${1:Tlv}, ${2:TagIn}) $3" -p50457 -tp50458 -a(S"'dec_TerminationAudit'/2" -p50459 -S"'dec_TerminationAudit'(${1:Tlv}, ${2:TagIn}) $3" -p50460 -tp50461 -a(S"'dec_TerminationID'/2" -p50462 -S"'dec_TerminationID'(${1:Tlv}, ${2:TagIn}) $3" -p50463 -tp50464 -a(S"'dec_TerminationIDList'/2" -p50465 -S"'dec_TerminationIDList'(${1:Tlv}, ${2:TagIn}) $3" -p50466 -tp50467 -a(S"'dec_TerminationStateDescriptor'/2" -p50468 -S"'dec_TerminationStateDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p50469 -tp50470 -a(S"'dec_TimeNotation'/2" -p50471 -S"'dec_TimeNotation'(${1:Tlv}, ${2:TagIn}) $3" -p50472 -tp50473 -a(S"'dec_TopologyRequest'/2" -p50474 -S"'dec_TopologyRequest'(${1:Tlv}, ${2:TagIn}) $3" -p50475 -tp50476 -a(S"'dec_Transaction'/2" -p50477 -S"'dec_Transaction'(${1:Tlv}, ${2:TagIn}) $3" -p50478 -tp50479 -a(S"'dec_TransactionAck'/2" -p50480 -S"'dec_TransactionAck'(${1:Tlv}, ${2:TagIn}) $3" -p50481 -tp50482 -a(S"'dec_TransactionId'/2" -p50483 -S"'dec_TransactionId'(${1:Tlv}, ${2:TagIn}) $3" -p50484 -tp50485 -a(S"'dec_TransactionPending'/2" -p50486 -S"'dec_TransactionPending'(${1:Tlv}, ${2:TagIn}) $3" -p50487 -tp50488 -a(S"'dec_TransactionReply'/2" -p50489 -S"'dec_TransactionReply'(${1:Tlv}, ${2:TagIn}) $3" -p50490 -tp50491 -a(S"'dec_TransactionRequest'/2" -p50492 -S"'dec_TransactionRequest'(${1:Tlv}, ${2:TagIn}) $3" -p50493 -tp50494 -a(S"'dec_TransactionResponseAck'/2" -p50495 -S"'dec_TransactionResponseAck'(${1:Tlv}, ${2:TagIn}) $3" -p50496 -tp50497 -a(S"'dec_Value'/2" -p50498 -S"'dec_Value'(${1:Tlv}, ${2:TagIn}) $3" -p50499 -tp50500 -a(S"'dec_WildcardField'/2" -p50501 -S"'dec_WildcardField'(${1:Tlv}, ${2:TagIn}) $3" -p50502 -tp50503 -a(S"'enc_ActionReply'/2" -p50504 -S"'enc_ActionReply'(${1:Val}, ${2:TagIn}) $3" -p50505 -tp50506 -a(S"'enc_ActionRequest'/2" -p50507 -S"'enc_ActionRequest'(${1:Val}, ${2:TagIn}) $3" -p50508 -tp50509 -a(S"'enc_AmmDescriptor'/2" -p50510 -S"'enc_AmmDescriptor'(${1:Val}, ${2:TagIn}) $3" -p50511 -tp50512 -a(S"'enc_AmmRequest'/2" -p50513 -S"'enc_AmmRequest'(${1:Val}, ${2:TagIn}) $3" -p50514 -tp50515 -a(S"'enc_AmmsReply'/2" -p50516 -S"'enc_AmmsReply'(${1:Val}, ${2:TagIn}) $3" -p50517 -tp50518 -a(S"'enc_AuditDescriptor'/2" -p50519 -S"'enc_AuditDescriptor'(${1:Val}, ${2:TagIn}) $3" -p50520 -tp50521 -a(S"'enc_AuditReply'/2" -p50522 -S"'enc_AuditReply'(${1:Val}, ${2:TagIn}) $3" -p50523 -tp50524 -a(S"'enc_AuditRequest'/2" -p50525 -S"'enc_AuditRequest'(${1:Val}, ${2:TagIn}) $3" -p50526 -tp50527 -a(S"'enc_AuditResult'/2" -p50528 -S"'enc_AuditResult'(${1:Val}, ${2:TagIn}) $3" -p50529 -tp50530 -a(S"'enc_AuditReturnParameter'/2" -p50531 -S"'enc_AuditReturnParameter'(${1:Val}, ${2:TagIn}) $3" -p50532 -tp50533 -a(S"'enc_AuthData'/2" -p50534 -S"'enc_AuthData'(${1:Val}, ${2:TagIn}) $3" -p50535 -tp50536 -a(S"'enc_AuthenticationHeader'/2" -p50537 -S"'enc_AuthenticationHeader'(${1:Val}, ${2:TagIn}) $3" -p50538 -tp50539 -a(S"'enc_Command'/2" -p50540 -S"'enc_Command'(${1:Val}, ${2:TagIn}) $3" -p50541 -tp50542 -a(S"'enc_CommandReply'/2" -p50543 -S"'enc_CommandReply'(${1:Val}, ${2:TagIn}) $3" -p50544 -tp50545 -a(S"'enc_CommandRequest'/2" -p50546 -S"'enc_CommandRequest'(${1:Val}, ${2:TagIn}) $3" -p50547 -tp50548 -a(S"'enc_ContextAttrAuditRequest'/2" -p50549 -S"'enc_ContextAttrAuditRequest'(${1:Val}, ${2:TagIn}) $3" -p50550 -tp50551 -a(S"'enc_ContextID'/2" -p50552 -S"'enc_ContextID'(${1:Val}, ${2:TagIn}) $3" -p50553 -tp50554 -a(S"'enc_ContextRequest'/2" -p50555 -S"'enc_ContextRequest'(${1:Val}, ${2:TagIn}) $3" -p50556 -tp50557 -a(S"'enc_DigitMapDescriptor'/2" -p50558 -S"'enc_DigitMapDescriptor'(${1:Val}, ${2:TagIn}) $3" -p50559 -tp50560 -a(S"'enc_DigitMapName'/2" -p50561 -S"'enc_DigitMapName'(${1:Val}, ${2:TagIn}) $3" -p50562 -tp50563 -a(S"'enc_DigitMapValue'/2" -p50564 -S"'enc_DigitMapValue'(${1:Val}, ${2:TagIn}) $3" -p50565 -tp50566 -a(S"'enc_DomainName'/2" -p50567 -S"'enc_DomainName'(${1:Val}, ${2:TagIn}) $3" -p50568 -tp50569 -a(S"'enc_ErrorCode'/2" -p50570 -S"'enc_ErrorCode'(${1:Val}, ${2:TagIn}) $3" -p50571 -tp50572 -a(S"'enc_ErrorDescriptor'/2" -p50573 -S"'enc_ErrorDescriptor'(${1:Val}, ${2:TagIn}) $3" -p50574 -tp50575 -a(S"'enc_ErrorText'/2" -p50576 -S"'enc_ErrorText'(${1:Val}, ${2:TagIn}) $3" -p50577 -tp50578 -a(S"'enc_EventBufferControl'/2" -p50579 -S"'enc_EventBufferControl'(${1:Val}, ${2:TagIn}) $3" -p50580 -tp50581 -a(S"'enc_EventBufferDescriptor'/2" -p50582 -S"'enc_EventBufferDescriptor'(${1:Val}, ${2:TagIn}) $3" -p50583 -tp50584 -a(S"'enc_EventDM'/2" -p50585 -S"'enc_EventDM'(${1:Val}, ${2:TagIn}) $3" -p50586 -tp50587 -a(S"'enc_EventName'/2" -p50588 -S"'enc_EventName'(${1:Val}, ${2:TagIn}) $3" -p50589 -tp50590 -a(S"'enc_EventParameter'/2" -p50591 -S"'enc_EventParameter'(${1:Val}, ${2:TagIn}) $3" -p50592 -tp50593 -a(S"'enc_EventSpec'/2" -p50594 -S"'enc_EventSpec'(${1:Val}, ${2:TagIn}) $3" -p50595 -tp50596 -a(S"'enc_EventsDescriptor'/2" -p50597 -S"'enc_EventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p50598 -tp50599 -a(S"'enc_H221NonStandard'/2" -p50600 -S"'enc_H221NonStandard'(${1:Val}, ${2:TagIn}) $3" -p50601 -tp50602 -a(S"'enc_IP4Address'/2" -p50603 -S"'enc_IP4Address'(${1:Val}, ${2:TagIn}) $3" -p50604 -tp50605 -a(S"'enc_IP6Address'/2" -p50606 -S"'enc_IP6Address'(${1:Val}, ${2:TagIn}) $3" -p50607 -tp50608 -a(S"'enc_IndAudDigitMapDescriptor'/2" -p50609 -S"'enc_IndAudDigitMapDescriptor'(${1:Val}, ${2:TagIn}) $3" -p50610 -tp50611 -a(S"'enc_IndAudEventBufferDescriptor'/2" -p50612 -S"'enc_IndAudEventBufferDescriptor'(${1:Val}, ${2:TagIn}) $3" -p50613 -tp50614 -a(S"'enc_IndAudEventsDescriptor'/2" -p50615 -S"'enc_IndAudEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p50616 -tp50617 -a(S"'enc_IndAudLocalControlDescriptor'/2" -p50618 -S"'enc_IndAudLocalControlDescriptor'(${1:Val}, ${2:TagIn}) $3" -p50619 -tp50620 -a(S"'enc_IndAudLocalRemoteDescriptor'/2" -p50621 -S"'enc_IndAudLocalRemoteDescriptor'(${1:Val}, ${2:TagIn}) $3" -p50622 -tp50623 -a(S"'enc_IndAudMediaDescriptor'/2" -p50624 -S"'enc_IndAudMediaDescriptor'(${1:Val}, ${2:TagIn}) $3" -p50625 -tp50626 -a(S"'enc_IndAudPackagesDescriptor'/2" -p50627 -S"'enc_IndAudPackagesDescriptor'(${1:Val}, ${2:TagIn}) $3" -p50628 -tp50629 -a(S"'enc_IndAudPropertyGroup'/2" -p50630 -S"'enc_IndAudPropertyGroup'(${1:Val}, ${2:TagIn}) $3" -p50631 -tp50632 -a(S"'enc_IndAudPropertyParm'/2" -p50633 -S"'enc_IndAudPropertyParm'(${1:Val}, ${2:TagIn}) $3" -p50634 -tp50635 -a(S"'enc_IndAudSeqSigList'/2" -p50636 -S"'enc_IndAudSeqSigList'(${1:Val}, ${2:TagIn}) $3" -p50637 -tp50638 -a(S"'enc_IndAudSignal'/2" -p50639 -S"'enc_IndAudSignal'(${1:Val}, ${2:TagIn}) $3" -p50640 -tp50641 -a(S"'enc_IndAudSignalsDescriptor'/2" -p50642 -S"'enc_IndAudSignalsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p50643 -tp50644 -a(S"'enc_IndAudStatisticsDescriptor'/2" -p50645 -S"'enc_IndAudStatisticsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p50646 -tp50647 -a(S"'enc_IndAudStreamDescriptor'/2" -p50648 -S"'enc_IndAudStreamDescriptor'(${1:Val}, ${2:TagIn}) $3" -p50649 -tp50650 -a(S"'enc_IndAudStreamParms'/2" -p50651 -S"'enc_IndAudStreamParms'(${1:Val}, ${2:TagIn}) $3" -p50652 -tp50653 -a(S"'enc_IndAudTerminationStateDescriptor'/2" -p50654 -S"'enc_IndAudTerminationStateDescriptor'(${1:Val}, ${2:TagIn}) $3" -p50655 -tp50656 -a(S"'enc_IndAuditParameter'/2" -p50657 -S"'enc_IndAuditParameter'(${1:Val}, ${2:TagIn}) $3" -p50658 -tp50659 -a(S"'enc_LocalControlDescriptor'/2" -p50660 -S"'enc_LocalControlDescriptor'(${1:Val}, ${2:TagIn}) $3" -p50661 -tp50662 -a(S"'enc_LocalRemoteDescriptor'/2" -p50663 -S"'enc_LocalRemoteDescriptor'(${1:Val}, ${2:TagIn}) $3" -p50664 -tp50665 -a(S"'enc_MId'/2" -p50666 -S"'enc_MId'(${1:Val}, ${2:TagIn}) $3" -p50667 -tp50668 -a(S"'enc_MediaDescriptor'/2" -p50669 -S"'enc_MediaDescriptor'(${1:Val}, ${2:TagIn}) $3" -p50670 -tp50671 -a(S"'enc_MegacoMessage'/2" -p50672 -S"'enc_MegacoMessage'(${1:Val}, ${2:TagIn}) $3" -p50673 -tp50674 -a(S"'enc_Message'/2" -p50675 -S"'enc_Message'(${1:Val}, ${2:TagIn}) $3" -p50676 -tp50677 -a(S"'enc_ModemDescriptor'/2" -p50678 -S"'enc_ModemDescriptor'(${1:Val}, ${2:TagIn}) $3" -p50679 -tp50680 -a(S"'enc_ModemType'/2" -p50681 -S"'enc_ModemType'(${1:Val}, ${2:TagIn}) $3" -p50682 -tp50683 -a(S"'enc_MuxDescriptor'/2" -p50684 -S"'enc_MuxDescriptor'(${1:Val}, ${2:TagIn}) $3" -p50685 -tp50686 -a(S"'enc_MuxType'/2" -p50687 -S"'enc_MuxType'(${1:Val}, ${2:TagIn}) $3" -p50688 -tp50689 -a(S"'enc_Name'/2" -p50690 -S"'enc_Name'(${1:Val}, ${2:TagIn}) $3" -p50691 -tp50692 -a(S"'enc_NonStandardData'/2" -p50693 -S"'enc_NonStandardData'(${1:Val}, ${2:TagIn}) $3" -p50694 -tp50695 -a(S"'enc_NonStandardIdentifier'/2" -p50696 -S"'enc_NonStandardIdentifier'(${1:Val}, ${2:TagIn}) $3" -p50697 -tp50698 -a(S"'enc_NotifyCompletion'/2" -p50699 -S"'enc_NotifyCompletion'(${1:Val}, ${2:TagIn}) $3" -p50700 -tp50701 -a(S"'enc_NotifyReply'/2" -p50702 -S"'enc_NotifyReply'(${1:Val}, ${2:TagIn}) $3" -p50703 -tp50704 -a(S"'enc_NotifyRequest'/2" -p50705 -S"'enc_NotifyRequest'(${1:Val}, ${2:TagIn}) $3" -p50706 -tp50707 -a(S"'enc_ObservedEvent'/2" -p50708 -S"'enc_ObservedEvent'(${1:Val}, ${2:TagIn}) $3" -p50709 -tp50710 -a(S"'enc_ObservedEventsDescriptor'/2" -p50711 -S"'enc_ObservedEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p50712 -tp50713 -a(S"'enc_PackagesDescriptor'/2" -p50714 -S"'enc_PackagesDescriptor'(${1:Val}, ${2:TagIn}) $3" -p50715 -tp50716 -a(S"'enc_PackagesItem'/2" -p50717 -S"'enc_PackagesItem'(${1:Val}, ${2:TagIn}) $3" -p50718 -tp50719 -a(S"'enc_PathName'/2" -p50720 -S"'enc_PathName'(${1:Val}, ${2:TagIn}) $3" -p50721 -tp50722 -a(S"'enc_PkgdName'/2" -p50723 -S"'enc_PkgdName'(${1:Val}, ${2:TagIn}) $3" -p50724 -tp50725 -a(S"'enc_PropertyGroup'/2" -p50726 -S"'enc_PropertyGroup'(${1:Val}, ${2:TagIn}) $3" -p50727 -tp50728 -a(S"'enc_PropertyParm'/2" -p50729 -S"'enc_PropertyParm'(${1:Val}, ${2:TagIn}) $3" -p50730 -tp50731 -a(S"'enc_Relation'/2" -p50732 -S"'enc_Relation'(${1:Val}, ${2:TagIn}) $3" -p50733 -tp50734 -a(S"'enc_RequestID'/2" -p50735 -S"'enc_RequestID'(${1:Val}, ${2:TagIn}) $3" -p50736 -tp50737 -a(S"'enc_RequestedActions'/2" -p50738 -S"'enc_RequestedActions'(${1:Val}, ${2:TagIn}) $3" -p50739 -tp50740 -a(S"'enc_RequestedEvent'/2" -p50741 -S"'enc_RequestedEvent'(${1:Val}, ${2:TagIn}) $3" -p50742 -tp50743 -a(S"'enc_SecondEventsDescriptor'/2" -p50744 -S"'enc_SecondEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p50745 -tp50746 -a(S"'enc_SecondRequestedActions'/2" -p50747 -S"'enc_SecondRequestedActions'(${1:Val}, ${2:TagIn}) $3" -p50748 -tp50749 -a(S"'enc_SecondRequestedEvent'/2" -p50750 -S"'enc_SecondRequestedEvent'(${1:Val}, ${2:TagIn}) $3" -p50751 -tp50752 -a(S"'enc_SecurityParmIndex'/2" -p50753 -S"'enc_SecurityParmIndex'(${1:Val}, ${2:TagIn}) $3" -p50754 -tp50755 -a(S"'enc_SegmentNumber'/2" -p50756 -S"'enc_SegmentNumber'(${1:Val}, ${2:TagIn}) $3" -p50757 -tp50758 -a(S"'enc_SeqSigList'/2" -p50759 -S"'enc_SeqSigList'(${1:Val}, ${2:TagIn}) $3" -p50760 -tp50761 -a(S"'enc_SequenceNum'/2" -p50762 -S"'enc_SequenceNum'(${1:Val}, ${2:TagIn}) $3" -p50763 -tp50764 -a(S"'enc_ServiceChangeAddress'/2" -p50765 -S"'enc_ServiceChangeAddress'(${1:Val}, ${2:TagIn}) $3" -p50766 -tp50767 -a(S"'enc_ServiceChangeMethod'/2" -p50768 -S"'enc_ServiceChangeMethod'(${1:Val}, ${2:TagIn}) $3" -p50769 -tp50770 -a(S"'enc_ServiceChangeParm'/2" -p50771 -S"'enc_ServiceChangeParm'(${1:Val}, ${2:TagIn}) $3" -p50772 -tp50773 -a(S"'enc_ServiceChangeProfile'/2" -p50774 -S"'enc_ServiceChangeProfile'(${1:Val}, ${2:TagIn}) $3" -p50775 -tp50776 -a(S"'enc_ServiceChangeReply'/2" -p50777 -S"'enc_ServiceChangeReply'(${1:Val}, ${2:TagIn}) $3" -p50778 -tp50779 -a(S"'enc_ServiceChangeRequest'/2" -p50780 -S"'enc_ServiceChangeRequest'(${1:Val}, ${2:TagIn}) $3" -p50781 -tp50782 -a(S"'enc_ServiceChangeResParm'/2" -p50783 -S"'enc_ServiceChangeResParm'(${1:Val}, ${2:TagIn}) $3" -p50784 -tp50785 -a(S"'enc_ServiceChangeResult'/2" -p50786 -S"'enc_ServiceChangeResult'(${1:Val}, ${2:TagIn}) $3" -p50787 -tp50788 -a(S"'enc_ServiceState'/2" -p50789 -S"'enc_ServiceState'(${1:Val}, ${2:TagIn}) $3" -p50790 -tp50791 -a(S"'enc_SigParameter'/2" -p50792 -S"'enc_SigParameter'(${1:Val}, ${2:TagIn}) $3" -p50793 -tp50794 -a(S"'enc_Signal'/2" -p50795 -S"'enc_Signal'(${1:Val}, ${2:TagIn}) $3" -p50796 -tp50797 -a(S"'enc_SignalDirection'/2" -p50798 -S"'enc_SignalDirection'(${1:Val}, ${2:TagIn}) $3" -p50799 -tp50800 -a(S"'enc_SignalName'/2" -p50801 -S"'enc_SignalName'(${1:Val}, ${2:TagIn}) $3" -p50802 -tp50803 -a(S"'enc_SignalRequest'/2" -p50804 -S"'enc_SignalRequest'(${1:Val}, ${2:TagIn}) $3" -p50805 -tp50806 -a(S"'enc_SignalType'/2" -p50807 -S"'enc_SignalType'(${1:Val}, ${2:TagIn}) $3" -p50808 -tp50809 -a(S"'enc_SignalsDescriptor'/2" -p50810 -S"'enc_SignalsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p50811 -tp50812 -a(S"'enc_StatisticsDescriptor'/2" -p50813 -S"'enc_StatisticsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p50814 -tp50815 -a(S"'enc_StatisticsParameter'/2" -p50816 -S"'enc_StatisticsParameter'(${1:Val}, ${2:TagIn}) $3" -p50817 -tp50818 -a(S"'enc_StreamDescriptor'/2" -p50819 -S"'enc_StreamDescriptor'(${1:Val}, ${2:TagIn}) $3" -p50820 -tp50821 -a(S"'enc_StreamID'/2" -p50822 -S"'enc_StreamID'(${1:Val}, ${2:TagIn}) $3" -p50823 -tp50824 -a(S"'enc_StreamMode'/2" -p50825 -S"'enc_StreamMode'(${1:Val}, ${2:TagIn}) $3" -p50826 -tp50827 -a(S"'enc_StreamParms'/2" -p50828 -S"'enc_StreamParms'(${1:Val}, ${2:TagIn}) $3" -p50829 -tp50830 -a(S"'enc_SubtractRequest'/2" -p50831 -S"'enc_SubtractRequest'(${1:Val}, ${2:TagIn}) $3" -p50832 -tp50833 -a(S"'enc_TerminationAudit'/2" -p50834 -S"'enc_TerminationAudit'(${1:Val}, ${2:TagIn}) $3" -p50835 -tp50836 -a(S"'enc_TerminationID'/2" -p50837 -S"'enc_TerminationID'(${1:Val}, ${2:TagIn}) $3" -p50838 -tp50839 -a(S"'enc_TerminationIDList'/2" -p50840 -S"'enc_TerminationIDList'(${1:Val}, ${2:TagIn}) $3" -p50841 -tp50842 -a(S"'enc_TerminationStateDescriptor'/2" -p50843 -S"'enc_TerminationStateDescriptor'(${1:Val}, ${2:TagIn}) $3" -p50844 -tp50845 -a(S"'enc_TimeNotation'/2" -p50846 -S"'enc_TimeNotation'(${1:Val}, ${2:TagIn}) $3" -p50847 -tp50848 -a(S"'enc_TopologyRequest'/2" -p50849 -S"'enc_TopologyRequest'(${1:Val}, ${2:TagIn}) $3" -p50850 -tp50851 -a(S"'enc_Transaction'/2" -p50852 -S"'enc_Transaction'(${1:Val}, ${2:TagIn}) $3" -p50853 -tp50854 -a(S"'enc_TransactionAck'/2" -p50855 -S"'enc_TransactionAck'(${1:Val}, ${2:TagIn}) $3" -p50856 -tp50857 -a(S"'enc_TransactionId'/2" -p50858 -S"'enc_TransactionId'(${1:Val}, ${2:TagIn}) $3" -p50859 -tp50860 -a(S"'enc_TransactionPending'/2" -p50861 -S"'enc_TransactionPending'(${1:Val}, ${2:TagIn}) $3" -p50862 -tp50863 -a(S"'enc_TransactionReply'/2" -p50864 -S"'enc_TransactionReply'(${1:Val}, ${2:TagIn}) $3" -p50865 -tp50866 -a(S"'enc_TransactionRequest'/2" -p50867 -S"'enc_TransactionRequest'(${1:Val}, ${2:TagIn}) $3" -p50868 -tp50869 -a(S"'enc_TransactionResponseAck'/2" -p50870 -S"'enc_TransactionResponseAck'(${1:Val}, ${2:TagIn}) $3" -p50871 -tp50872 -a(S"'enc_Value'/2" -p50873 -S"'enc_Value'(${1:Val}, ${2:TagIn}) $3" -p50874 -tp50875 -a(S"'enc_WildcardField'/2" -p50876 -S"'enc_WildcardField'(${1:Val}, ${2:TagIn}) $3" -p50877 -tp50878 -a(S'decode/2' -p50879 -S'decode(${1:Type}, ${2:Data}) $3' -p50880 -tp50881 -a(S'decode_disp/2' -p50882 -S'decode_disp(${1:Type}, ${2:Data}) $3' -p50883 -tp50884 -a(S'decode_message_acts_partial/1' -p50885 -S'decode_message_acts_partial(${1:Bytes}) $2' -p50886 -tp50887 -a(S'decode_message_mId/1' -p50888 -S'decode_message_mId(${1:Bytes}) $2' -p50889 -tp50890 -a(S'decode_message_trans_partial/1' -p50891 -S'decode_message_trans_partial(${1:Bytes}) $2' -p50892 -tp50893 -a(S'decode_message_version/1' -p50894 -S'decode_message_version(${1:Bytes}) $2' -p50895 -tp50896 -a(S'decode_part/2' -p50897 -S'decode_part(${1:Type}, ${2:Data0}) $3' -p50898 -tp50899 -a(S'encode/2' -p50900 -S'encode(${1:Type}, ${2:Data}) $3' -p50901 -tp50902 -a(S'encode_disp/2' -p50903 -S'encode_disp(${1:Type}, ${2:Data}) $3' -p50904 -tp50905 -a(S'encoding_rule/0' -p50906 -S'encoding_rule() $1' -p50907 -tp50908 -a(S'info/0' -p50909 -S'info() $1' -p50910 -tp50911 -asS'orber_objectkeys' -p50912 -(lp50913 -(S'check/1' -p50914 -S'check(${1:Objkey}) $2' -p50915 -tp50916 -a(S'code_change/3' -p50917 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p50918 -tp50919 -a(S'create_schema/1' -p50920 -S'create_schema(${1:Nodes}) $2' -p50921 -tp50922 -a(S'delete/1' -p50923 -S'delete(${1:Objkey}) $2' -p50924 -tp50925 -a(S'dump/0' -p50926 -S'dump() $1' -p50927 -tp50928 -a(S'gc/1' -p50929 -S'gc(${1:Sec}) $2' -p50930 -tp50931 -a(S'get_key_from_pid/1' -p50932 -S'get_key_from_pid(${1:Pid}) $2' -p50933 -tp50934 -a(S'get_pid/1' -p50935 -S'get_pid(${1:Objkey}) $2' -p50936 -tp50937 -a(S'handle_call/3' -p50938 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p50939 -tp50940 -a(S'handle_cast/2' -p50941 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p50942 -tp50943 -a(S'handle_info/2' -p50944 -S'handle_info(${1:Param1}, ${2:State}) $3' -p50945 -tp50946 -a(S'init/1' -p50947 -S'init(${1:Param1}) $2' -p50948 -tp50949 -a(S'install/2' -p50950 -S'install(${1:Timeout}, ${2:Options}) $3' -p50951 -tp50952 -a(S'is_persistent/1' -p50953 -S'is_persistent(${1:Pid}) $2' -p50954 -tp50955 -a(S'register/2' -p50956 -S'register(${1:Objkey}, ${2:Pid}) $3' -p50957 -tp50958 -a(S'register/3' -p50959 -S'register(${1:Objkey}, ${2:Pid}, ${3:Type}) $4' -p50960 -tp50961 -a(S'remove_old_keys/0' -p50962 -S'remove_old_keys() $1' -p50963 -tp50964 -a(S'start/1' -p50965 -S'start(${1:Opts}) $2' -p50966 -tp50967 -a(S'stop/0' -p50968 -S'stop() $1' -p50969 -tp50970 -a(S'stop_all/0' -p50971 -S'stop_all() $1' -p50972 -tp50973 -a(S'terminate/2' -p50974 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p50975 -tp50976 -asS'rb_format_supp' -p50977 -(lp50978 -(S'print/3' -p50979 -S'print(${1:Date}, ${2:Report}, ${3:Device}) $4' -p50980 -tp50981 -asS'dbg_istk' -p50982 -(lp50983 -(S'backtrace/2' -p50984 -S'backtrace(${1:HowMany}, ${2:Ieval}) $3' -p50985 -tp50986 -a(S'bindings/1' -p50987 -S'bindings(${1:SP}) $2' -p50988 -tp50989 -a(S'delayed_stacktrace/0' -p50990 -S'delayed_stacktrace() $1' -p50991 -tp50992 -a(S'delayed_stacktrace/2' -p50993 -S'delayed_stacktrace(${1:Param1}, ${2:Ieval}) $3' -p50994 -tp50995 -a(S'delayed_to_external/0' -p50996 -S'delayed_to_external() $1' -p50997 -tp50998 -a(S'from_external/1' -p50999 -S'from_external(${1:Param1}) $2' -p51000 -tp51001 -a(S'in_use_p/2' -p51002 -S'in_use_p(${1:Mod}, ${2:Mod}) $3' -p51003 -tp51004 -a(S'init/0' -p51005 -S'init() $1' -p51006 -tp51007 -a(S'pop/0' -p51008 -S'pop() $1' -p51009 -tp51010 -a(S'pop/1' -p51011 -S'pop(${1:Le}) $2' -p51012 -tp51013 -a(S'push/3' -p51014 -S'push() $1' -p51015 -tp51016 -a(S'stack_frame/2' -p51017 -S'stack_frame(${1:Param1}, ${2:SP}) $3' -p51018 -tp51019 -a(S'stack_level/0' -p51020 -S'stack_level() $1' -p51021 -tp51022 -asS'CosFileTransfer_FileIterator_impl' -p51023 -(lp51024 -(S'code_change/3' -p51025 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p51026 -tp51027 -a(S'destroy/2' -p51028 -S'destroy(${1:Param1}, ${2:State}) $3' -p51029 -tp51030 -a(S'handle_info/2' -p51031 -S'handle_info(${1:Info}, ${2:State}) $3' -p51032 -tp51033 -a(S'init/1' -p51034 -S'init(${1:Param1}) $2' -p51035 -tp51036 -a(S'next_n/3' -p51037 -S'next_n(${1:Param1}, ${2:FileWrapperList}, ${3:HowMany}) $4' -p51038 -tp51039 -a(S'next_one/2' -p51040 -S'next_one(${1:Param1}, ${2:Param2}) $3' -p51041 -tp51042 -a(S'terminate/2' -p51043 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p51044 -tp51045 -asS'tv_io_lib_pretty' -p51046 -(lp51047 -(S'pretty_print/4' -p51048 -S'pretty_print(${1:List}, ${2:Col}, ${3:Ll}, ${4:D}) $5' -p51049 -tp51050 -asS'snmpa_discovery_handler_default' -p51051 -(lp51052 -(S'stage1_finish/3' -p51053 -S'stage1_finish(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p51054 -tp51055 -asS'dialyzer_options' -p51056 -(lp51057 -(S'build/1' -p51058 -S'build(${1:Opts}) $2' -p51059 -tp51060 -asS'any' -p51061 -(lp51062 -(S'create/0' -p51063 -S'create() $1' -p51064 -tp51065 -a(S'create/2' -p51066 -S'create(${1:TC}, ${2:V}) $3' -p51067 -tp51068 -a(S'get_typecode/1' -p51069 -S'get_typecode(${1:Any}) $2' -p51070 -tp51071 -a(S'get_value/1' -p51072 -S'get_value(${1:Any}) $2' -p51073 -tp51074 -a(S'set_typecode/2' -p51075 -S'set_typecode(${1:Any}, ${2:TC}) $3' -p51076 -tp51077 -a(S'set_value/2' -p51078 -S'set_value(${1:Any}, ${2:V}) $3' -p51079 -tp51080 -asS'xmerl_xsd_type' -p51081 -(lp51082 -(S'add_duration2dateTime/2' -p51083 -S'add_duration2dateTime(${1:S}, ${2:D}) $3' -p51084 -tp51085 -a(S'check_simpleType/3' -p51086 -S'check_simpleType(${1:Name}, ${2:Value}, ${3:S}) $4' -p51087 -tp51088 -a(S'collapse_ws/1' -p51089 -S'collapse_ws(${1:Val}) $2' -p51090 -tp51091 -a(S'compare_dateTime/2' -p51092 -S'compare_dateTime(${1:P}, ${2:Q}) $3' -p51093 -tp51094 -a(S'compare_durations/2' -p51095 -S'compare_durations(${1:V1}, ${2:V2}) $3' -p51096 -tp51097 -a(S'compare_floats/2' -p51098 -S'compare_floats(${1:F1}, ${2:F1}) $3' -p51099 -tp51100 -a(S'dateTime_atoms/1' -p51101 -S'dateTime_atoms(${1:DT}) $2' -p51102 -tp51103 -a(S'duration_atoms/1' -p51104 -S'duration_atoms(${1:Dur}) $2' -p51105 -tp51106 -a(S'fQuotient/2' -p51107 -S'fQuotient(${1:A}, ${2:B}) $3' -p51108 -tp51109 -a(S'fQuotient/3' -p51110 -S'fQuotient(${1:A}, ${2:Low}, ${3:High}) $4' -p51111 -tp51112 -a(S'facet_fun/2' -p51113 -S'facet_fun(${1:Type}, ${2:F}) $3' -p51114 -tp51115 -a(S'maximumDayInMonthFor/2' -p51116 -S'maximumDayInMonthFor(${1:YearValue}, ${2:MonthValue}) $3' -p51117 -tp51118 -a(S'modulo/2' -p51119 -S'modulo(${1:A}, ${2:B}) $3' -p51120 -tp51121 -a(S'modulo/3' -p51122 -S'modulo(${1:A}, ${2:Low}, ${3:High}) $4' -p51123 -tp51124 -a(S'normalize_dateTime/1' -p51125 -S'normalize_dateTime(${1:DT}) $2' -p51126 -tp51127 -a(S'replace_ws/2' -p51128 -S'replace_ws(${1:Param1}, ${2:Acc}) $3' -p51129 -tp51130 -asS'etop_gui' -p51131 -(lp51132 -(S'formatmfa/1' -p51133 -S'formatmfa(${1:Param1}) $2' -p51134 -tp51135 -a(S'init/1' -p51136 -S'init(${1:Config}) $2' -p51137 -tp51138 -a(S'stop/1' -p51139 -S'stop(${1:Param1}) $2' -p51140 -tp51141 -a(S'to_list/1' -p51142 -S'to_list(${1:Name}) $2' -p51143 -tp51144 -asS'wxRadioBox' -p51145 -(lp51146 -(S'cacheBestSize/2' -p51147 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p51148 -tp51149 -a(S'captureMouse/1' -p51150 -S'captureMouse(${1:This}) $2' -p51151 -tp51152 -a(S'center/1' -p51153 -S'center(${1:This}) $2' -p51154 -tp51155 -a(S'center/2' -p51156 -S'center(${1:This}, ${2:Options}) $3' -p51157 -tp51158 -a(S'centerOnParent/1' -p51159 -S'centerOnParent(${1:This}) $2' -p51160 -tp51161 -a(S'centerOnParent/2' -p51162 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p51163 -tp51164 -a(S'centre/1' -p51165 -S'centre(${1:This}) $2' -p51166 -tp51167 -a(S'centre/2' -p51168 -S'centre(${1:This}, ${2:Options}) $3' -p51169 -tp51170 -a(S'centreOnParent/1' -p51171 -S'centreOnParent(${1:This}) $2' -p51172 -tp51173 -a(S'centreOnParent/2' -p51174 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p51175 -tp51176 -a(S'clearBackground/1' -p51177 -S'clearBackground(${1:This}) $2' -p51178 -tp51179 -a(S'clientToScreen/2' -p51180 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p51181 -tp51182 -a(S'clientToScreen/3' -p51183 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p51184 -tp51185 -a(S'close/1' -p51186 -S'close(${1:This}) $2' -p51187 -tp51188 -a(S'close/2' -p51189 -S'close(${1:This}, ${2:Options}) $3' -p51190 -tp51191 -a(S'connect/2' -p51192 -S'connect(${1:This}, ${2:EventType}) $3' -p51193 -tp51194 -a(S'connect/3' -p51195 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p51196 -tp51197 -a(S'convertDialogToPixels/2' -p51198 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p51199 -tp51200 -a(S'convertPixelsToDialog/2' -p51201 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p51202 -tp51203 -a(S'create/7' -p51204 -S'create(${1:This}, ${2:Parent}, ${3:Id}, ${4:Title}, ${5:Pos}, ${6:Size}, ${7:Choices}) $8' -p51205 -tp51206 -a(S'create/8' -p51207 -S'create(${1:This}, ${2:Parent}, ${3:Id}, ${4:Title}, ${5:Pos}, ${6:Size}, ${7:Choices}, ${8:Param8}) $9' -p51208 -tp51209 -a(S'destroy/1' -p51210 -S'destroy(${1:This}) $2' -p51211 -tp51212 -a(S'destroyChildren/1' -p51213 -S'destroyChildren(${1:This}) $2' -p51214 -tp51215 -a(S'disable/1' -p51216 -S'disable(${1:This}) $2' -p51217 -tp51218 -a(S'disconnect/1' -p51219 -S'disconnect(${1:This}) $2' -p51220 -tp51221 -a(S'disconnect/2' -p51222 -S'disconnect(${1:This}, ${2:EventType}) $3' -p51223 -tp51224 -a(S'disconnect/3' -p51225 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p51226 -tp51227 -a(S'enable/1' -p51228 -S'enable(${1:This}) $2' -p51229 -tp51230 -a(S'enable/2' -p51231 -S'enable(${1:This}, ${2:N}) $3' -p51232 -tp51233 -a(S'enable/3' -p51234 -S'enable(${1:This}, ${2:N}, ${3:Param3}) $4' -p51235 -tp51236 -a(S'findWindow/2' -p51237 -S'findWindow(${1:This}, ${2:Winid}) $3' -p51238 -tp51239 -a(S'fit/1' -p51240 -S'fit(${1:This}) $2' -p51241 -tp51242 -a(S'fitInside/1' -p51243 -S'fitInside(${1:This}) $2' -p51244 -tp51245 -a(S'freeze/1' -p51246 -S'freeze(${1:This}) $2' -p51247 -tp51248 -a(S'getAcceleratorTable/1' -p51249 -S'getAcceleratorTable(${1:This}) $2' -p51250 -tp51251 -a(S'getBackgroundColour/1' -p51252 -S'getBackgroundColour(${1:This}) $2' -p51253 -tp51254 -a(S'getBackgroundStyle/1' -p51255 -S'getBackgroundStyle(${1:This}) $2' -p51256 -tp51257 -a(S'getBestSize/1' -p51258 -S'getBestSize(${1:This}) $2' -p51259 -tp51260 -a(S'getCaret/1' -p51261 -S'getCaret(${1:This}) $2' -p51262 -tp51263 -a(S'getCharHeight/1' -p51264 -S'getCharHeight(${1:This}) $2' -p51265 -tp51266 -a(S'getCharWidth/1' -p51267 -S'getCharWidth(${1:This}) $2' -p51268 -tp51269 -a(S'getChildren/1' -p51270 -S'getChildren(${1:This}) $2' -p51271 -tp51272 -a(S'getClientSize/1' -p51273 -S'getClientSize(${1:This}) $2' -p51274 -tp51275 -a(S'getColumnCount/1' -p51276 -S'getColumnCount(${1:This}) $2' -p51277 -tp51278 -a(S'getContainingSizer/1' -p51279 -S'getContainingSizer(${1:This}) $2' -p51280 -tp51281 -a(S'getCursor/1' -p51282 -S'getCursor(${1:This}) $2' -p51283 -tp51284 -a(S'getDropTarget/1' -p51285 -S'getDropTarget(${1:This}) $2' -p51286 -tp51287 -a(S'getEventHandler/1' -p51288 -S'getEventHandler(${1:This}) $2' -p51289 -tp51290 -a(S'getExtraStyle/1' -p51291 -S'getExtraStyle(${1:This}) $2' -p51292 -tp51293 -a(S'getFont/1' -p51294 -S'getFont(${1:This}) $2' -p51295 -tp51296 -a(S'getForegroundColour/1' -p51297 -S'getForegroundColour(${1:This}) $2' -p51298 -tp51299 -a(S'getGrandParent/1' -p51300 -S'getGrandParent(${1:This}) $2' -p51301 -tp51302 -a(S'getHandle/1' -p51303 -S'getHandle(${1:This}) $2' -p51304 -tp51305 -a(S'getHelpText/1' -p51306 -S'getHelpText(${1:This}) $2' -p51307 -tp51308 -a(S'getId/1' -p51309 -S'getId(${1:This}) $2' -p51310 -tp51311 -a(S'getItemFromPoint/2' -p51312 -S'getItemFromPoint(${1:This}, ${2:Pt}) $3' -p51313 -tp51314 -a(S'getItemHelpText/2' -p51315 -S'getItemHelpText(${1:This}, ${2:N}) $3' -p51316 -tp51317 -a(S'getItemToolTip/2' -p51318 -S'getItemToolTip(${1:This}, ${2:Item}) $3' -p51319 -tp51320 -a(S'getLabel/1' -p51321 -S'getLabel(${1:This}) $2' -p51322 -tp51323 -a(S'getMaxSize/1' -p51324 -S'getMaxSize(${1:This}) $2' -p51325 -tp51326 -a(S'getMinSize/1' -p51327 -S'getMinSize(${1:This}) $2' -p51328 -tp51329 -a(S'getName/1' -p51330 -S'getName(${1:This}) $2' -p51331 -tp51332 -a(S'getParent/1' -p51333 -S'getParent(${1:This}) $2' -p51334 -tp51335 -a(S'getPosition/1' -p51336 -S'getPosition(${1:This}) $2' -p51337 -tp51338 -a(S'getRect/1' -p51339 -S'getRect(${1:This}) $2' -p51340 -tp51341 -a(S'getRowCount/1' -p51342 -S'getRowCount(${1:This}) $2' -p51343 -tp51344 -a(S'getScreenPosition/1' -p51345 -S'getScreenPosition(${1:This}) $2' -p51346 -tp51347 -a(S'getScreenRect/1' -p51348 -S'getScreenRect(${1:This}) $2' -p51349 -tp51350 -a(S'getScrollPos/2' -p51351 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p51352 -tp51353 -a(S'getScrollRange/2' -p51354 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p51355 -tp51356 -a(S'getScrollThumb/2' -p51357 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p51358 -tp51359 -a(S'getSelection/1' -p51360 -S'getSelection(${1:This}) $2' -p51361 -tp51362 -a(S'getSize/1' -p51363 -S'getSize(${1:This}) $2' -p51364 -tp51365 -a(S'getSizer/1' -p51366 -S'getSizer(${1:This}) $2' -p51367 -tp51368 -a(S'getString/2' -p51369 -S'getString(${1:This}, ${2:N}) $3' -p51370 -tp51371 -a(S'getTextExtent/2' -p51372 -S'getTextExtent(${1:This}, ${2:String}) $3' -p51373 -tp51374 -a(S'getTextExtent/3' -p51375 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p51376 -tp51377 -a(S'getToolTip/1' -p51378 -S'getToolTip(${1:This}) $2' -p51379 -tp51380 -a(S'getUpdateRegion/1' -p51381 -S'getUpdateRegion(${1:This}) $2' -p51382 -tp51383 -a(S'getVirtualSize/1' -p51384 -S'getVirtualSize(${1:This}) $2' -p51385 -tp51386 -a(S'getWindowStyleFlag/1' -p51387 -S'getWindowStyleFlag(${1:This}) $2' -p51388 -tp51389 -a(S'getWindowVariant/1' -p51390 -S'getWindowVariant(${1:This}) $2' -p51391 -tp51392 -a(S'hasCapture/1' -p51393 -S'hasCapture(${1:This}) $2' -p51394 -tp51395 -a(S'hasScrollbar/2' -p51396 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p51397 -tp51398 -a(S'hasTransparentBackground/1' -p51399 -S'hasTransparentBackground(${1:This}) $2' -p51400 -tp51401 -a(S'hide/1' -p51402 -S'hide(${1:This}) $2' -p51403 -tp51404 -a(S'inheritAttributes/1' -p51405 -S'inheritAttributes(${1:This}) $2' -p51406 -tp51407 -a(S'initDialog/1' -p51408 -S'initDialog(${1:This}) $2' -p51409 -tp51410 -a(S'invalidateBestSize/1' -p51411 -S'invalidateBestSize(${1:This}) $2' -p51412 -tp51413 -a(S'isEnabled/1' -p51414 -S'isEnabled(${1:This}) $2' -p51415 -tp51416 -a(S'isExposed/2' -p51417 -S'isExposed(${1:This}, ${2:Pt}) $3' -p51418 -tp51419 -a(S'isExposed/3' -p51420 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p51421 -tp51422 -a(S'isExposed/5' -p51423 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p51424 -tp51425 -a(S'isItemEnabled/2' -p51426 -S'isItemEnabled(${1:This}, ${2:N}) $3' -p51427 -tp51428 -a(S'isItemShown/2' -p51429 -S'isItemShown(${1:This}, ${2:N}) $3' -p51430 -tp51431 -a(S'isRetained/1' -p51432 -S'isRetained(${1:This}) $2' -p51433 -tp51434 -a(S'isShown/1' -p51435 -S'isShown(${1:This}) $2' -p51436 -tp51437 -a(S'isTopLevel/1' -p51438 -S'isTopLevel(${1:This}) $2' -p51439 -tp51440 -a(S'layout/1' -p51441 -S'layout(${1:This}) $2' -p51442 -tp51443 -a(S'lineDown/1' -p51444 -S'lineDown(${1:This}) $2' -p51445 -tp51446 -a(S'lineUp/1' -p51447 -S'lineUp(${1:This}) $2' -p51448 -tp51449 -a(S'lower/1' -p51450 -S'lower(${1:This}) $2' -p51451 -tp51452 -a(S'makeModal/1' -p51453 -S'makeModal(${1:This}) $2' -p51454 -tp51455 -a(S'makeModal/2' -p51456 -S'makeModal(${1:This}, ${2:Options}) $3' -p51457 -tp51458 -a(S'move/2' -p51459 -S'move(${1:This}, ${2:Pt}) $3' -p51460 -tp51461 -a(S'move/3' -p51462 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p51463 -tp51464 -a(S'move/4' -p51465 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p51466 -tp51467 -a(S'moveAfterInTabOrder/2' -p51468 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p51469 -tp51470 -a(S'moveBeforeInTabOrder/2' -p51471 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p51472 -tp51473 -a(S'navigate/1' -p51474 -S'navigate(${1:This}) $2' -p51475 -tp51476 -a(S'navigate/2' -p51477 -S'navigate(${1:This}, ${2:Options}) $3' -p51478 -tp51479 -a(S'new/6' -p51480 -S'new(${1:Parent}, ${2:Id}, ${3:Title}, ${4:Pos}, ${5:Size}, ${6:Choices}) $7' -p51481 -tp51482 -a(S'new/7' -p51483 -S'new(${1:Parent}, ${2:Id}, ${3:Title}, ${4:Pos}, ${5:Size}, ${6:Choices}, ${7:Param7}) $8' -p51484 -tp51485 -a(S'pageDown/1' -p51486 -S'pageDown(${1:This}) $2' -p51487 -tp51488 -a(S'pageUp/1' -p51489 -S'pageUp(${1:This}) $2' -p51490 -tp51491 -a(S'parent_class/1' -p51492 -S'parent_class(${1:Param1}) $2' -p51493 -tp51494 -a(S'popEventHandler/1' -p51495 -S'popEventHandler(${1:This}) $2' -p51496 -tp51497 -a(S'popEventHandler/2' -p51498 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p51499 -tp51500 -a(S'popupMenu/2' -p51501 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p51502 -tp51503 -a(S'popupMenu/3' -p51504 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p51505 -tp51506 -a(S'popupMenu/4' -p51507 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p51508 -tp51509 -a(S'raise/1' -p51510 -S'raise(${1:This}) $2' -p51511 -tp51512 -a(S'refresh/1' -p51513 -S'refresh(${1:This}) $2' -p51514 -tp51515 -a(S'refresh/2' -p51516 -S'refresh(${1:This}, ${2:Options}) $3' -p51517 -tp51518 -a(S'refreshRect/2' -p51519 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p51520 -tp51521 -a(S'refreshRect/3' -p51522 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p51523 -tp51524 -a(S'releaseMouse/1' -p51525 -S'releaseMouse(${1:This}) $2' -p51526 -tp51527 -a(S'removeChild/2' -p51528 -S'removeChild(${1:This}, ${2:Child}) $3' -p51529 -tp51530 -a(S'reparent/2' -p51531 -S'reparent(${1:This}, ${2:NewParent}) $3' -p51532 -tp51533 -a(S'screenToClient/1' -p51534 -S'screenToClient(${1:This}) $2' -p51535 -tp51536 -a(S'screenToClient/2' -p51537 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p51538 -tp51539 -a(S'scrollLines/2' -p51540 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p51541 -tp51542 -a(S'scrollPages/2' -p51543 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p51544 -tp51545 -a(S'scrollWindow/3' -p51546 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p51547 -tp51548 -a(S'scrollWindow/4' -p51549 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p51550 -tp51551 -a(S'setAcceleratorTable/2' -p51552 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p51553 -tp51554 -a(S'setAutoLayout/2' -p51555 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p51556 -tp51557 -a(S'setBackgroundColour/2' -p51558 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p51559 -tp51560 -a(S'setBackgroundStyle/2' -p51561 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p51562 -tp51563 -a(S'setCaret/2' -p51564 -S'setCaret(${1:This}, ${2:Caret}) $3' -p51565 -tp51566 -a(S'setClientSize/2' -p51567 -S'setClientSize(${1:This}, ${2:Size}) $3' -p51568 -tp51569 -a(S'setClientSize/3' -p51570 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p51571 -tp51572 -a(S'setContainingSizer/2' -p51573 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p51574 -tp51575 -a(S'setCursor/2' -p51576 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p51577 -tp51578 -a(S'setDropTarget/2' -p51579 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p51580 -tp51581 -a(S'setExtraStyle/2' -p51582 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p51583 -tp51584 -a(S'setFocus/1' -p51585 -S'setFocus(${1:This}) $2' -p51586 -tp51587 -a(S'setFocusFromKbd/1' -p51588 -S'setFocusFromKbd(${1:This}) $2' -p51589 -tp51590 -a(S'setFont/2' -p51591 -S'setFont(${1:This}, ${2:Font}) $3' -p51592 -tp51593 -a(S'setForegroundColour/2' -p51594 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p51595 -tp51596 -a(S'setHelpText/2' -p51597 -S'setHelpText(${1:This}, ${2:Text}) $3' -p51598 -tp51599 -a(S'setId/2' -p51600 -S'setId(${1:This}, ${2:Winid}) $3' -p51601 -tp51602 -a(S'setItemHelpText/3' -p51603 -S'setItemHelpText(${1:This}, ${2:N}, ${3:HelpText}) $4' -p51604 -tp51605 -a(S'setItemToolTip/3' -p51606 -S'setItemToolTip(${1:This}, ${2:Item}, ${3:Text}) $4' -p51607 -tp51608 -a(S'setLabel/2' -p51609 -S'setLabel(${1:This}, ${2:Label}) $3' -p51610 -tp51611 -a(S'setMaxSize/2' -p51612 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p51613 -tp51614 -a(S'setMinSize/2' -p51615 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p51616 -tp51617 -a(S'setName/2' -p51618 -S'setName(${1:This}, ${2:Name}) $3' -p51619 -tp51620 -a(S'setOwnBackgroundColour/2' -p51621 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p51622 -tp51623 -a(S'setOwnFont/2' -p51624 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p51625 -tp51626 -a(S'setOwnForegroundColour/2' -p51627 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p51628 -tp51629 -a(S'setPalette/2' -p51630 -S'setPalette(${1:This}, ${2:Pal}) $3' -p51631 -tp51632 -a(S'setScrollPos/3' -p51633 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p51634 -tp51635 -a(S'setScrollPos/4' -p51636 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p51637 -tp51638 -a(S'setScrollbar/5' -p51639 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p51640 -tp51641 -a(S'setScrollbar/6' -p51642 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p51643 -tp51644 -a(S'setSelection/2' -p51645 -S'setSelection(${1:This}, ${2:N}) $3' -p51646 -tp51647 -a(S'setSize/2' -p51648 -S'setSize(${1:This}, ${2:Rect}) $3' -p51649 -tp51650 -a(S'setSize/3' -p51651 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p51652 -tp51653 -a(S'setSize/5' -p51654 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p51655 -tp51656 -a(S'setSize/6' -p51657 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p51658 -tp51659 -a(S'setSizeHints/2' -p51660 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p51661 -tp51662 -a(S'setSizeHints/3' -p51663 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p51664 -tp51665 -a(S'setSizeHints/4' -p51666 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p51667 -tp51668 -a(S'setSizer/2' -p51669 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p51670 -tp51671 -a(S'setSizer/3' -p51672 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p51673 -tp51674 -a(S'setSizerAndFit/2' -p51675 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p51676 -tp51677 -a(S'setSizerAndFit/3' -p51678 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p51679 -tp51680 -a(S'setThemeEnabled/2' -p51681 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p51682 -tp51683 -a(S'setToolTip/2' -p51684 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p51685 -tp51686 -a(S'setVirtualSize/2' -p51687 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p51688 -tp51689 -a(S'setVirtualSize/3' -p51690 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p51691 -tp51692 -a(S'setVirtualSizeHints/2' -p51693 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p51694 -tp51695 -a(S'setVirtualSizeHints/3' -p51696 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p51697 -tp51698 -a(S'setVirtualSizeHints/4' -p51699 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p51700 -tp51701 -a(S'setWindowStyle/2' -p51702 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p51703 -tp51704 -a(S'setWindowStyleFlag/2' -p51705 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p51706 -tp51707 -a(S'setWindowVariant/2' -p51708 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p51709 -tp51710 -a(S'shouldInheritColours/1' -p51711 -S'shouldInheritColours(${1:This}) $2' -p51712 -tp51713 -a(S'show/1' -p51714 -S'show(${1:This}) $2' -p51715 -tp51716 -a(S'show/2' -p51717 -S'show(${1:This}, ${2:N}) $3' -p51718 -tp51719 -a(S'show/3' -p51720 -S'show(${1:This}, ${2:N}, ${3:Param3}) $4' -p51721 -tp51722 -a(S'thaw/1' -p51723 -S'thaw(${1:This}) $2' -p51724 -tp51725 -a(S'transferDataFromWindow/1' -p51726 -S'transferDataFromWindow(${1:This}) $2' -p51727 -tp51728 -a(S'transferDataToWindow/1' -p51729 -S'transferDataToWindow(${1:This}) $2' -p51730 -tp51731 -a(S'update/1' -p51732 -S'update(${1:This}) $2' -p51733 -tp51734 -a(S'updateWindowUI/1' -p51735 -S'updateWindowUI(${1:This}) $2' -p51736 -tp51737 -a(S'updateWindowUI/2' -p51738 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p51739 -tp51740 -a(S'validate/1' -p51741 -S'validate(${1:This}) $2' -p51742 -tp51743 -a(S'warpPointer/3' -p51744 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p51745 -tp51746 -asS'snmpa_network_interface' -p51747 -(lp51748 -(S'behaviour_info/1' -p51749 -S'behaviour_info(${1:Param1}) $2' -p51750 -tp51751 -asS'orber_exceptions' -p51752 -(lp51753 -(S"'BAD_CONTEXT'/1" -p51754 -S"'BAD_CONTEXT'(${1:Param1}) $2" -p51755 -tp51756 -a(S"'BAD_INV_ORDER'/1" -p51757 -S"'BAD_INV_ORDER'(${1:Param1}) $2" -p51758 -tp51759 -a(S"'BAD_OPERATION'/1" -p51760 -S"'BAD_OPERATION'(${1:Param1}) $2" -p51761 -tp51762 -a(S"'BAD_PARAM'/1" -p51763 -S"'BAD_PARAM'(${1:Param1}) $2" -p51764 -tp51765 -a(S"'BAD_QOS'/1" -p51766 -S"'BAD_QOS'(${1:Param1}) $2" -p51767 -tp51768 -a(S"'BAD_TYPECODE'/1" -p51769 -S"'BAD_TYPECODE'(${1:Param1}) $2" -p51770 -tp51771 -a(S"'CODESET_INCOMPATIBLE'/1" -p51772 -S"'CODESET_INCOMPATIBLE'(${1:Param1}) $2" -p51773 -tp51774 -a(S"'COMM_FAILURE'/1" -p51775 -S"'COMM_FAILURE'(${1:Param1}) $2" -p51776 -tp51777 -a(S"'DATA_CONVERSION'/1" -p51778 -S"'DATA_CONVERSION'(${1:Param1}) $2" -p51779 -tp51780 -a(S"'FREE_MEM'/1" -p51781 -S"'FREE_MEM'(${1:Param1}) $2" -p51782 -tp51783 -a(S"'IMP_LIMIT'/1" -p51784 -S"'IMP_LIMIT'(${1:Param1}) $2" -p51785 -tp51786 -a(S"'INITIALIZE'/1" -p51787 -S"'INITIALIZE'(${1:Param1}) $2" -p51788 -tp51789 -a(S"'INTERNAL'/1" -p51790 -S"'INTERNAL'(${1:Param1}) $2" -p51791 -tp51792 -a(S"'INTF_REPOS'/1" -p51793 -S"'INTF_REPOS'(${1:Param1}) $2" -p51794 -tp51795 -a(S"'INVALID_TRANSACTION'/1" -p51796 -S"'INVALID_TRANSACTION'(${1:Param1}) $2" -p51797 -tp51798 -a(S"'INV_FLAG'/1" -p51799 -S"'INV_FLAG'(${1:Param1}) $2" -p51800 -tp51801 -a(S"'INV_IDENT'/1" -p51802 -S"'INV_IDENT'(${1:Param1}) $2" -p51803 -tp51804 -a(S"'INV_OBJREF'/1" -p51805 -S"'INV_OBJREF'(${1:Param1}) $2" -p51806 -tp51807 -a(S"'INV_POLICY'/1" -p51808 -S"'INV_POLICY'(${1:Param1}) $2" -p51809 -tp51810 -a(S"'MARSHAL'/1" -p51811 -S"'MARSHAL'(${1:Param1}) $2" -p51812 -tp51813 -a(S"'NO_IMPLEMENT'/1" -p51814 -S"'NO_IMPLEMENT'(${1:Param1}) $2" -p51815 -tp51816 -a(S"'NO_MEMORY'/1" -p51817 -S"'NO_MEMORY'(${1:Param1}) $2" -p51818 -tp51819 -a(S"'NO_PERMISSION'/1" -p51820 -S"'NO_PERMISSION'(${1:Param1}) $2" -p51821 -tp51822 -a(S"'NO_RESOURCES'/1" -p51823 -S"'NO_RESOURCES'(${1:Param1}) $2" -p51824 -tp51825 -a(S"'NO_RESPONSE'/1" -p51826 -S"'NO_RESPONSE'(${1:Param1}) $2" -p51827 -tp51828 -a(S"'OBJECT_NOT_EXIST'/1" -p51829 -S"'OBJECT_NOT_EXIST'(${1:Param1}) $2" -p51830 -tp51831 -a(S"'OBJ_ADAPTER'/1" -p51832 -S"'OBJ_ADAPTER'(${1:Param1}) $2" -p51833 -tp51834 -a(S"'PERSIST_STORE'/1" -p51835 -S"'PERSIST_STORE'(${1:Param1}) $2" -p51836 -tp51837 -a(S"'REBIND'/1" -p51838 -S"'REBIND'(${1:Param1}) $2" -p51839 -tp51840 -a(S"'TIMEOUT'/1" -p51841 -S"'TIMEOUT'(${1:Param1}) $2" -p51842 -tp51843 -a(S"'TRANSACTION_MODE'/1" -p51844 -S"'TRANSACTION_MODE'(${1:Param1}) $2" -p51845 -tp51846 -a(S"'TRANSACTION_REQUIRED'/1" -p51847 -S"'TRANSACTION_REQUIRED'(${1:Param1}) $2" -p51848 -tp51849 -a(S"'TRANSACTION_ROLLEDBACK'/1" -p51850 -S"'TRANSACTION_ROLLEDBACK'(${1:Param1}) $2" -p51851 -tp51852 -a(S"'TRANSACTION_UNAVAILABLE'/1" -p51853 -S"'TRANSACTION_UNAVAILABLE'(${1:Param1}) $2" -p51854 -tp51855 -a(S"'TRANSIENT'/1" -p51856 -S"'TRANSIENT'(${1:Param1}) $2" -p51857 -tp51858 -a(S"'UNKNOWN'/1" -p51859 -S"'UNKNOWN'(${1:Param1}) $2" -p51860 -tp51861 -a(S'dissect/1' -p51862 -S'dissect(${1:Exception}) $2' -p51863 -tp51864 -a(S'get_def/1' -p51865 -S'get_def(${1:Exception}) $2' -p51866 -tp51867 -a(S'get_name/2' -p51868 -S'get_name(${1:TypeId}, ${2:Param2}) $3' -p51869 -tp51870 -a(S'is_system_exception/1' -p51871 -S'is_system_exception(${1:E}) $2' -p51872 -tp51873 -a(S'type/1' -p51874 -S'type(${1:Param1}) $2' -p51875 -tp51876 -asS'appmon_web' -p51877 -(lp51878 -(S'application_env/2' -p51879 -S'application_env(${1:Env}, ${2:Input}) $3' -p51880 -tp51881 -a(S'application_info/2' -p51882 -S'application_info(${1:Env}, ${2:Input}) $3' -p51883 -tp51884 -a(S'code_change/3' -p51885 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p51886 -tp51887 -a(S'configData/0' -p51888 -S'configData() $1' -p51889 -tp51890 -a(S'handle_call/3' -p51891 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p51892 -tp51893 -a(S'handle_cast/2' -p51894 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p51895 -tp51896 -a(S'handle_info/2' -p51897 -S'handle_info(${1:Param1}, ${2:State}) $3' -p51898 -tp51899 -a(S'init/1' -p51900 -S'init(${1:Param1}) $2' -p51901 -tp51902 -a(S'node_info/2' -p51903 -S'node_info(${1:Env}, ${2:Input}) $3' -p51904 -tp51905 -a(S'proc_info/2' -p51906 -S'proc_info(${1:Env}, ${2:Input}) $3' -p51907 -tp51908 -a(S'start/0' -p51909 -S'start() $1' -p51910 -tp51911 -a(S'start_link/0' -p51912 -S'start_link() $1' -p51913 -tp51914 -a(S'stop/0' -p51915 -S'stop() $1' -p51916 -tp51917 -a(S'terminate/2' -p51918 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p51919 -tp51920 -a(S'trace/2' -p51921 -S'trace(${1:Env}, ${2:Input}) $3' -p51922 -tp51923 -asS'wxGridCellAttr' -p51924 -(lp51925 -(S'getAlignment/1' -p51926 -S'getAlignment(${1:This}) $2' -p51927 -tp51928 -a(S'getBackgroundColour/1' -p51929 -S'getBackgroundColour(${1:This}) $2' -p51930 -tp51931 -a(S'getEditor/4' -p51932 -S'getEditor(${1:This}, ${2:Grid}, ${3:Row}, ${4:Col}) $5' -p51933 -tp51934 -a(S'getFont/1' -p51935 -S'getFont(${1:This}) $2' -p51936 -tp51937 -a(S'getRenderer/4' -p51938 -S'getRenderer(${1:This}, ${2:Grid}, ${3:Row}, ${4:Col}) $5' -p51939 -tp51940 -a(S'getTextColour/1' -p51941 -S'getTextColour(${1:This}) $2' -p51942 -tp51943 -a(S'hasAlignment/1' -p51944 -S'hasAlignment(${1:This}) $2' -p51945 -tp51946 -a(S'hasBackgroundColour/1' -p51947 -S'hasBackgroundColour(${1:This}) $2' -p51948 -tp51949 -a(S'hasEditor/1' -p51950 -S'hasEditor(${1:This}) $2' -p51951 -tp51952 -a(S'hasFont/1' -p51953 -S'hasFont(${1:This}) $2' -p51954 -tp51955 -a(S'hasRenderer/1' -p51956 -S'hasRenderer(${1:This}) $2' -p51957 -tp51958 -a(S'hasTextColour/1' -p51959 -S'hasTextColour(${1:This}) $2' -p51960 -tp51961 -a(S'isReadOnly/1' -p51962 -S'isReadOnly(${1:This}) $2' -p51963 -tp51964 -a(S'parent_class/1' -p51965 -S'parent_class(${1:Param1}) $2' -p51966 -tp51967 -a(S'setAlignment/3' -p51968 -S'setAlignment(${1:This}, ${2:HAlign}, ${3:VAlign}) $4' -p51969 -tp51970 -a(S'setBackgroundColour/2' -p51971 -S'setBackgroundColour(${1:This}, ${2:ColBack}) $3' -p51972 -tp51973 -a(S'setDefAttr/2' -p51974 -S'setDefAttr(${1:This}, ${2:DefAttr}) $3' -p51975 -tp51976 -a(S'setEditor/2' -p51977 -S'setEditor(${1:This}, ${2:Editor}) $3' -p51978 -tp51979 -a(S'setFont/2' -p51980 -S'setFont(${1:This}, ${2:Font}) $3' -p51981 -tp51982 -a(S'setReadOnly/1' -p51983 -S'setReadOnly(${1:This}) $2' -p51984 -tp51985 -a(S'setReadOnly/2' -p51986 -S'setReadOnly(${1:This}, ${2:Param2}) $3' -p51987 -tp51988 -a(S'setRenderer/2' -p51989 -S'setRenderer(${1:This}, ${2:Renderer}) $3' -p51990 -tp51991 -a(S'setTextColour/2' -p51992 -S'setTextColour(${1:This}, ${2:ColText}) $3' -p51993 -tp51994 -asS'net' -p51995 -(lp51996 -(S'broadcast/3' -p51997 -S'broadcast(${1:M}, ${2:F}, ${3:A}) $4' -p51998 -tp51999 -a(S'call/4' -p52000 -S'call(${1:N}, ${2:M}, ${3:F}, ${4:A}) $5' -p52001 -tp52002 -a(S'cast/4' -p52003 -S'cast(${1:N}, ${2:M}, ${3:F}, ${4:A}) $5' -p52004 -tp52005 -a(S'ping/1' -p52006 -S'ping(${1:Node}) $2' -p52007 -tp52008 -a(S'relay/1' -p52009 -S'relay(${1:X}) $2' -p52010 -tp52011 -a(S'sleep/1' -p52012 -S'sleep(${1:T}) $2' -p52013 -tp52014 -asS'xmerl_sax_parser' -p52015 -(lp52016 -(S'default_continuation_cb/1' -p52017 -S'default_continuation_cb(${1:IoDevice}) $2' -p52018 -tp52019 -a(S'file/2' -p52020 -S'file(${1:Name}, ${2:Options}) $3' -p52021 -tp52022 -a(S'stream/2' -p52023 -S'stream(${1:Xml}, ${2:Options}) $3' -p52024 -tp52025 -asS'tv_etsread' -p52026 -(lp52027 -(S'etsread/2' -p52028 -S'etsread(${1:MasterPid}, ${2:ErrorMsgMode}) $3' -p52029 -tp52030 -asS'snmpa_net_if_filter' -p52031 -(lp52032 -(S'accept_recv/2' -p52033 -S'accept_recv(${1:Param1}, ${2:Param2}) $3' -p52034 -tp52035 -a(S'accept_recv_pdu/3' -p52036 -S'accept_recv_pdu(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p52037 -tp52038 -a(S'accept_send/2' -p52039 -S'accept_send(${1:Param1}, ${2:Param2}) $3' -p52040 -tp52041 -a(S'accept_send_pdu/2' -p52042 -S'accept_send_pdu(${1:Param1}, ${2:Param2}) $3' -p52043 -tp52044 -asS'gen_event' -p52045 -(lp52046 -(S'add_handler/3' -p52047 -S'add_handler(${1:M}, ${2:Handler}, ${3:Args}) $4' -p52048 -tp52049 -a(S'add_sup_handler/3' -p52050 -S'add_sup_handler(${1:M}, ${2:Handler}, ${3:Args}) $4' -p52051 -tp52052 -a(S'call/3' -p52053 -S'call(${1:M}, ${2:Handler}, ${3:Query}) $4' -p52054 -tp52055 -a(S'call/4' -p52056 -S'call(${1:M}, ${2:Handler}, ${3:Query}, ${4:Timeout}) $5' -p52057 -tp52058 -a(S'delete_handler/3' -p52059 -S'delete_handler(${1:M}, ${2:Handler}, ${3:Args}) $4' -p52060 -tp52061 -a(S'format_status/2' -p52062 -S'format_status(${1:Opt}, ${2:StatusData}) $3' -p52063 -tp52064 -a(S'init_it/6' -p52065 -S'init_it(${1:Starter}, ${2:Parent}, ${3:Name}, ${4:Mod}, ${5:Args}, ${6:Options}) $7' -p52066 -tp52067 -a(S'notify/2' -p52068 -S'notify(${1:M}, ${2:Event}) $3' -p52069 -tp52070 -a(S'start/0' -p52071 -S'start() $1' -p52072 -tp52073 -a(S'start/1' -p52074 -S'start(${1:Name}) $2' -p52075 -tp52076 -a(S'start_link/0' -p52077 -S'start_link() $1' -p52078 -tp52079 -a(S'start_link/1' -p52080 -S'start_link(${1:Name}) $2' -p52081 -tp52082 -a(S'stop/1' -p52083 -S'stop(${1:M}) $2' -p52084 -tp52085 -a(S'swap_handler/3' -p52086 -S'swap_handler() $1' -p52087 -tp52088 -a(S'swap_sup_handler/3' -p52089 -S'swap_sup_handler() $1' -p52090 -tp52091 -a(S'sync_notify/2' -p52092 -S'sync_notify(${1:M}, ${2:Event}) $3' -p52093 -tp52094 -a(S'system_code_change/4' -p52095 -S'system_code_change(${1:Param1}, ${2:Module}, ${3:OldVsn}, ${4:Extra}) $5' -p52096 -tp52097 -a(S'system_continue/3' -p52098 -S'system_continue(${1:Parent}, ${2:Debug}, ${3:Param3}) $4' -p52099 -tp52100 -a(S'system_terminate/4' -p52101 -S'system_terminate(${1:Reason}, ${2:Parent}, ${3:Param3}, ${4:Param4}) $5' -p52102 -tp52103 -a(S'wake_hib/4' -p52104 -S'wake_hib(${1:Parent}, ${2:ServerName}, ${3:MSL}, ${4:Debug}) $5' -p52105 -tp52106 -a(S'which_handlers/1' -p52107 -S'which_handlers(${1:M}) $2' -p52108 -tp52109 -asS'inet_udp' -p52110 -(lp52111 -(S'close/1' -p52112 -S'close(${1:S}) $2' -p52113 -tp52114 -a(S'connect/3' -p52115 -S'connect(${1:S}, ${2:Param2}, ${3:P}) $4' -p52116 -tp52117 -a(S'controlling_process/2' -p52118 -S'controlling_process(${1:Socket}, ${2:NewOwner}) $3' -p52119 -tp52120 -a(S'fdopen/2' -p52121 -S'fdopen(${1:Fd}, ${2:Opts}) $3' -p52122 -tp52123 -a(S'getaddr/1' -p52124 -S'getaddr(${1:Address}) $2' -p52125 -tp52126 -a(S'getaddr/2' -p52127 -S'getaddr(${1:Address}, ${2:Timer}) $3' -p52128 -tp52129 -a(S'getserv/1' -p52130 -S'getserv(${1:Port}) $2' -p52131 -tp52132 -a(S'open/1' -p52133 -S'open(${1:Port}) $2' -p52134 -tp52135 -a(S'open/2' -p52136 -S'open(${1:Port}, ${2:Opts}) $3' -p52137 -tp52138 -a(S'recv/2' -p52139 -S'recv(${1:S}, ${2:Len}) $3' -p52140 -tp52141 -a(S'recv/3' -p52142 -S'recv(${1:S}, ${2:Len}, ${3:Time}) $4' -p52143 -tp52144 -a(S'send/2' -p52145 -S'send(${1:S}, ${2:Data}) $3' -p52146 -tp52147 -a(S'send/4' -p52148 -S'send(${1:S}, ${2:Param2}, ${3:P}, ${4:Data}) $5' -p52149 -tp52150 -asS'eunit_listener' -p52151 -(lp52152 -(S'behaviour_info/1' -p52153 -S'behaviour_info(${1:Param1}) $2' -p52154 -tp52155 -a(S'start/1' -p52156 -S'start(${1:Callback}) $2' -p52157 -tp52158 -a(S'start/2' -p52159 -S'start(${1:Callback}, ${2:Options}) $3' -p52160 -tp52161 -asS'dets_utils' -p52162 -(lp52163 -(S'all_allocated/1' -p52164 -S'all_allocated(${1:Head}) $2' -p52165 -tp52166 -a(S'all_allocated_as_list/1' -p52167 -S'all_allocated_as_list(${1:Head}) $2' -p52168 -tp52169 -a(S'all_free/1' -p52170 -S'all_free(${1:Head}) $2' -p52171 -tp52172 -a(S'alloc/2' -p52173 -S'alloc() $1' -p52174 -tp52175 -a(S'alloc_many/4' -p52176 -S'alloc_many(${1:Head}, ${2:Sz}, ${3:N}, ${4:A0}) $5' -p52177 -tp52178 -a(S'bad_object/2' -p52179 -S'bad_object(${1:Where}, ${2:Extra}) $3' -p52180 -tp52181 -a(S'cache_lookup/4' -p52182 -S'cache_lookup(${1:Type}, ${2:Param2}, ${3:CL}, ${4:LU}) $5' -p52183 -tp52184 -a(S'cache_size/1' -p52185 -S'cache_size(${1:C}) $2' -p52186 -tp52187 -a(S'cmp/2' -p52188 -S'cmp(${1:T}, ${2:T}) $3' -p52189 -tp52190 -a(S'code_to_type/1' -p52191 -S'code_to_type(${1:Param1}) $2' -p52192 -tp52193 -a(S'corrupt/2' -p52194 -S'corrupt(${1:Head}, ${2:Error}) $3' -p52195 -tp52196 -a(S'corrupt_file/2' -p52197 -S'corrupt_file(${1:Head}, ${2:Param2}) $3' -p52198 -tp52199 -a(S'corrupt_reason/2' -p52200 -S'corrupt_reason(${1:Head}, ${2:Reason0}) $3' -p52201 -tp52202 -a(S'debug_mode/0' -p52203 -S'debug_mode() $1' -p52204 -tp52205 -a(S'disk_map_segment/2' -p52206 -S'disk_map_segment(${1:P}, ${2:Segment}) $3' -p52207 -tp52208 -a(S'disk_map_segment_p/2' -p52209 -S'disk_map_segment_p(${1:Fd}, ${2:P}) $3' -p52210 -tp52211 -a(S'empty_free_lists/0' -p52212 -S'empty_free_lists() $1' -p52213 -tp52214 -a(S'family/1' -p52215 -S'family(${1:L}) $2' -p52216 -tp52217 -a(S'file_error/2' -p52218 -S'file_error(${1:FileName}, ${2:Param2}) $3' -p52219 -tp52220 -a(S'find_allocated/4' -p52221 -S'find_allocated(${1:Ftab}, ${2:Addr}, ${3:Length}, ${4:Base}) $5' -p52222 -tp52223 -a(S'find_next_allocated/3' -p52224 -S'find_next_allocated(${1:Ftab}, ${2:Addr}, ${3:Base}) $4' -p52225 -tp52226 -a(S'free/3' -p52227 -S'free(${1:Head}, ${2:Addr}, ${3:Sz}) $4' -p52228 -tp52229 -a(S'fwrite/3' -p52230 -S'fwrite(${1:Fd}, ${2:FileName}, ${3:B}) $4' -p52231 -tp52232 -a(S'get_freelists/1' -p52233 -S'get_freelists() $1' -p52234 -tp52235 -a(S'init_alloc/1' -p52236 -S'init_alloc(${1:Base}) $2' -p52237 -tp52238 -a(S'init_disk_map/1' -p52239 -S'init_disk_map(${1:Name}) $2' -p52240 -tp52241 -a(S'init_slots_from_old_file/2' -p52242 -S'init_slots_from_old_file(${1:Param1}, ${2:Ftab}) $3' -p52243 -tp52244 -a(S'ipread/3' -p52245 -S'ipread(${1:Head}, ${2:Pos1}, ${3:MaxSize}) $4' -p52246 -tp52247 -a(S'is_empty_cache/1' -p52248 -S'is_empty_cache(${1:Cache}) $2' -p52249 -tp52250 -a(S'list_to_tree/1' -p52251 -S'list_to_tree(${1:L}) $2' -p52252 -tp52253 -a(S'log2/1' -p52254 -S'log2() $1' -p52255 -tp52256 -a(S'make_zeros/1' -p52257 -S'make_zeros(${1:N}) $2' -p52258 -tp52259 -a(S'mkeysearch/3' -p52260 -S'mkeysearch(${1:Key}, ${2:I}, ${3:L}) $4' -p52261 -tp52262 -a(S'mkeysort/2' -p52263 -S'mkeysort(${1:I}, ${2:L}) $3' -p52264 -tp52265 -a(S'msort/1' -p52266 -S'msort(${1:L}) $2' -p52267 -tp52268 -a(S'new_cache/1' -p52269 -S'new_cache(${1:Param1}) $2' -p52270 -tp52271 -a(S'open/2' -p52272 -S'open(${1:FileSpec}, ${2:Args}) $3' -p52273 -tp52274 -a(S'position/2' -p52275 -S'position(${1:Head}, ${2:Pos}) $3' -p52276 -tp52277 -a(S'position/3' -p52278 -S'position(${1:Fd}, ${2:FileName}, ${3:Pos}) $4' -p52279 -tp52280 -a(S'position_close/3' -p52281 -S'position_close(${1:Fd}, ${2:FileName}, ${3:Pos}) $4' -p52282 -tp52283 -a(S'pread/2' -p52284 -S'pread(${1:Positions}, ${2:Head}) $3' -p52285 -tp52286 -a(S'pread/4' -p52287 -S'pread(${1:Head}, ${2:Pos}, ${3:Min}, ${4:Extra}) $5' -p52288 -tp52289 -a(S'pread_close/4' -p52290 -S'pread_close(${1:Fd}, ${2:FileName}, ${3:Pos}, ${4:Size}) $5' -p52291 -tp52292 -a(S'pread_n/3' -p52293 -S'pread_n(${1:Fd}, ${2:Position}, ${3:Max}) $4' -p52294 -tp52295 -a(S'pwrite/2' -p52296 -S'pwrite(${1:Head}, ${2:Bins}) $3' -p52297 -tp52298 -a(S'pwrite/3' -p52299 -S'pwrite(${1:Fd}, ${2:FileName}, ${3:Bins}) $4' -p52300 -tp52301 -a(S'pwrite/4' -p52302 -S'pwrite(${1:Fd}, ${2:FileName}, ${3:Position}, ${4:B}) $5' -p52303 -tp52304 -a(S'read_4/2' -p52305 -S'read_4(${1:Fd}, ${2:Position}) $3' -p52306 -tp52307 -a(S'read_n/2' -p52308 -S'read_n(${1:Fd}, ${2:Max}) $3' -p52309 -tp52310 -a(S'rename/2' -p52311 -S'rename(${1:From}, ${2:To}) $3' -p52312 -tp52313 -a(S'reset_cache/1' -p52314 -S'reset_cache(${1:C}) $2' -p52315 -tp52316 -a(S'stop_disk_map/0' -p52317 -S'stop_disk_map() $1' -p52318 -tp52319 -a(S'sync/1' -p52320 -S'sync(${1:Head}) $2' -p52321 -tp52322 -a(S'tree_to_bin/5' -p52323 -S'tree_to_bin(${1:T}, ${2:F}, ${3:Max}, ${4:Ws}, ${5:WsSz}) $6' -p52324 -tp52325 -a(S'truncate/2' -p52326 -S'truncate(${1:Head}, ${2:Pos}) $3' -p52327 -tp52328 -a(S'truncate/3' -p52329 -S'truncate(${1:Fd}, ${2:FileName}, ${3:Pos}) $4' -p52330 -tp52331 -a(S'type_to_code/1' -p52332 -S'type_to_code(${1:Param1}) $2' -p52333 -tp52334 -a(S'vformat/2' -p52335 -S'vformat(${1:F}, ${2:As}) $3' -p52336 -tp52337 -a(S'write/2' -p52338 -S'write(${1:Head}, ${2:Bins}) $3' -p52339 -tp52340 -a(S'write_file/2' -p52341 -S'write_file(${1:Head}, ${2:Bin}) $3' -p52342 -tp52343 -asS'megaco_per_bin_media_gateway_control_v1' -p52344 -(lp52345 -(S"'dec_ActionReply'/2" -p52346 -S"'dec_ActionReply'(${1:Bytes}, ${2:Param2}) $3" -p52347 -tp52348 -a(S"'dec_ActionRequest'/2" -p52349 -S"'dec_ActionRequest'(${1:Bytes}, ${2:Param2}) $3" -p52350 -tp52351 -a(S"'dec_AmmDescriptor'/2" -p52352 -S"'dec_AmmDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p52353 -tp52354 -a(S"'dec_AmmRequest'/2" -p52355 -S"'dec_AmmRequest'(${1:Bytes}, ${2:Param2}) $3" -p52356 -tp52357 -a(S"'dec_AmmsReply'/2" -p52358 -S"'dec_AmmsReply'(${1:Bytes}, ${2:Param2}) $3" -p52359 -tp52360 -a(S"'dec_AuditDescriptor'/2" -p52361 -S"'dec_AuditDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p52362 -tp52363 -a(S"'dec_AuditReply'/2" -p52364 -S"'dec_AuditReply'(${1:Bytes}, ${2:Param2}) $3" -p52365 -tp52366 -a(S"'dec_AuditRequest'/2" -p52367 -S"'dec_AuditRequest'(${1:Bytes}, ${2:Param2}) $3" -p52368 -tp52369 -a(S"'dec_AuditResult'/2" -p52370 -S"'dec_AuditResult'(${1:Bytes}, ${2:Param2}) $3" -p52371 -tp52372 -a(S"'dec_AuditReturnParameter'/2" -p52373 -S"'dec_AuditReturnParameter'(${1:Bytes}, ${2:Param2}) $3" -p52374 -tp52375 -a(S"'dec_AuthData'/2" -p52376 -S"'dec_AuthData'(${1:Bytes}, ${2:Param2}) $3" -p52377 -tp52378 -a(S"'dec_AuthenticationHeader'/2" -p52379 -S"'dec_AuthenticationHeader'(${1:Bytes}, ${2:Param2}) $3" -p52380 -tp52381 -a(S"'dec_Command'/2" -p52382 -S"'dec_Command'(${1:Bytes}, ${2:Param2}) $3" -p52383 -tp52384 -a(S"'dec_CommandReply'/2" -p52385 -S"'dec_CommandReply'(${1:Bytes}, ${2:Param2}) $3" -p52386 -tp52387 -a(S"'dec_CommandRequest'/2" -p52388 -S"'dec_CommandRequest'(${1:Bytes}, ${2:Param2}) $3" -p52389 -tp52390 -a(S"'dec_ContextAttrAuditRequest'/2" -p52391 -S"'dec_ContextAttrAuditRequest'(${1:Bytes}, ${2:Param2}) $3" -p52392 -tp52393 -a(S"'dec_ContextID'/2" -p52394 -S"'dec_ContextID'(${1:Bytes}, ${2:Param2}) $3" -p52395 -tp52396 -a(S"'dec_ContextRequest'/2" -p52397 -S"'dec_ContextRequest'(${1:Bytes}, ${2:Param2}) $3" -p52398 -tp52399 -a(S"'dec_DigitMapDescriptor'/2" -p52400 -S"'dec_DigitMapDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p52401 -tp52402 -a(S"'dec_DigitMapName'/2" -p52403 -S"'dec_DigitMapName'(${1:Bytes}, ${2:Param2}) $3" -p52404 -tp52405 -a(S"'dec_DigitMapValue'/2" -p52406 -S"'dec_DigitMapValue'(${1:Bytes}, ${2:Param2}) $3" -p52407 -tp52408 -a(S"'dec_DomainName'/2" -p52409 -S"'dec_DomainName'(${1:Bytes}, ${2:Param2}) $3" -p52410 -tp52411 -a(S"'dec_ErrorCode'/2" -p52412 -S"'dec_ErrorCode'(${1:Bytes}, ${2:Param2}) $3" -p52413 -tp52414 -a(S"'dec_ErrorDescriptor'/2" -p52415 -S"'dec_ErrorDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p52416 -tp52417 -a(S"'dec_ErrorText'/2" -p52418 -S"'dec_ErrorText'(${1:Bytes}, ${2:Param2}) $3" -p52419 -tp52420 -a(S"'dec_EventBufferControl'/2" -p52421 -S"'dec_EventBufferControl'(${1:Bytes}, ${2:Param2}) $3" -p52422 -tp52423 -a(S"'dec_EventBufferDescriptor'/2" -p52424 -S"'dec_EventBufferDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p52425 -tp52426 -a(S"'dec_EventDM'/2" -p52427 -S"'dec_EventDM'(${1:Bytes}, ${2:Param2}) $3" -p52428 -tp52429 -a(S"'dec_EventName'/2" -p52430 -S"'dec_EventName'(${1:Bytes}, ${2:Param2}) $3" -p52431 -tp52432 -a(S"'dec_EventParameter'/2" -p52433 -S"'dec_EventParameter'(${1:Bytes}, ${2:Param2}) $3" -p52434 -tp52435 -a(S"'dec_EventSpec'/2" -p52436 -S"'dec_EventSpec'(${1:Bytes}, ${2:Param2}) $3" -p52437 -tp52438 -a(S"'dec_EventsDescriptor'/2" -p52439 -S"'dec_EventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p52440 -tp52441 -a(S"'dec_H221NonStandard'/2" -p52442 -S"'dec_H221NonStandard'(${1:Bytes}, ${2:Param2}) $3" -p52443 -tp52444 -a(S"'dec_IP4Address'/2" -p52445 -S"'dec_IP4Address'(${1:Bytes}, ${2:Param2}) $3" -p52446 -tp52447 -a(S"'dec_IP6Address'/2" -p52448 -S"'dec_IP6Address'(${1:Bytes}, ${2:Param2}) $3" -p52449 -tp52450 -a(S"'dec_LocalControlDescriptor'/2" -p52451 -S"'dec_LocalControlDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p52452 -tp52453 -a(S"'dec_LocalRemoteDescriptor'/2" -p52454 -S"'dec_LocalRemoteDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p52455 -tp52456 -a(S"'dec_MId'/2" -p52457 -S"'dec_MId'(${1:Bytes}, ${2:Param2}) $3" -p52458 -tp52459 -a(S"'dec_MediaDescriptor'/2" -p52460 -S"'dec_MediaDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p52461 -tp52462 -a(S"'dec_MegacoMessage'/2" -p52463 -S"'dec_MegacoMessage'(${1:Bytes}, ${2:Param2}) $3" -p52464 -tp52465 -a(S"'dec_Message'/2" -p52466 -S"'dec_Message'(${1:Bytes}, ${2:Param2}) $3" -p52467 -tp52468 -a(S"'dec_ModemDescriptor'/2" -p52469 -S"'dec_ModemDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p52470 -tp52471 -a(S"'dec_ModemType'/2" -p52472 -S"'dec_ModemType'(${1:Bytes}, ${2:Param2}) $3" -p52473 -tp52474 -a(S"'dec_MuxDescriptor'/2" -p52475 -S"'dec_MuxDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p52476 -tp52477 -a(S"'dec_MuxType'/2" -p52478 -S"'dec_MuxType'(${1:Bytes}, ${2:Param2}) $3" -p52479 -tp52480 -a(S"'dec_Name'/2" -p52481 -S"'dec_Name'(${1:Bytes}, ${2:Param2}) $3" -p52482 -tp52483 -a(S"'dec_NonStandardData'/2" -p52484 -S"'dec_NonStandardData'(${1:Bytes}, ${2:Param2}) $3" -p52485 -tp52486 -a(S"'dec_NonStandardIdentifier'/2" -p52487 -S"'dec_NonStandardIdentifier'(${1:Bytes}, ${2:Param2}) $3" -p52488 -tp52489 -a(S"'dec_NotifyCompletion'/2" -p52490 -S"'dec_NotifyCompletion'(${1:Bytes}, ${2:Param2}) $3" -p52491 -tp52492 -a(S"'dec_NotifyReply'/2" -p52493 -S"'dec_NotifyReply'(${1:Bytes}, ${2:Param2}) $3" -p52494 -tp52495 -a(S"'dec_NotifyRequest'/2" -p52496 -S"'dec_NotifyRequest'(${1:Bytes}, ${2:Param2}) $3" -p52497 -tp52498 -a(S"'dec_ObservedEvent'/2" -p52499 -S"'dec_ObservedEvent'(${1:Bytes}, ${2:Param2}) $3" -p52500 -tp52501 -a(S"'dec_ObservedEventsDescriptor'/2" -p52502 -S"'dec_ObservedEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p52503 -tp52504 -a(S"'dec_PackagesDescriptor'/2" -p52505 -S"'dec_PackagesDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p52506 -tp52507 -a(S"'dec_PackagesItem'/2" -p52508 -S"'dec_PackagesItem'(${1:Bytes}, ${2:Param2}) $3" -p52509 -tp52510 -a(S"'dec_PathName'/2" -p52511 -S"'dec_PathName'(${1:Bytes}, ${2:Param2}) $3" -p52512 -tp52513 -a(S"'dec_PkgdName'/2" -p52514 -S"'dec_PkgdName'(${1:Bytes}, ${2:Param2}) $3" -p52515 -tp52516 -a(S"'dec_PropertyGroup'/2" -p52517 -S"'dec_PropertyGroup'(${1:Bytes}, ${2:Param2}) $3" -p52518 -tp52519 -a(S"'dec_PropertyParm'/2" -p52520 -S"'dec_PropertyParm'(${1:Bytes}, ${2:Param2}) $3" -p52521 -tp52522 -a(S"'dec_Relation'/2" -p52523 -S"'dec_Relation'(${1:Bytes}, ${2:Param2}) $3" -p52524 -tp52525 -a(S"'dec_RequestID'/2" -p52526 -S"'dec_RequestID'(${1:Bytes}, ${2:Param2}) $3" -p52527 -tp52528 -a(S"'dec_RequestedActions'/2" -p52529 -S"'dec_RequestedActions'(${1:Bytes}, ${2:Param2}) $3" -p52530 -tp52531 -a(S"'dec_RequestedEvent'/2" -p52532 -S"'dec_RequestedEvent'(${1:Bytes}, ${2:Param2}) $3" -p52533 -tp52534 -a(S"'dec_SecondEventsDescriptor'/2" -p52535 -S"'dec_SecondEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p52536 -tp52537 -a(S"'dec_SecondRequestedActions'/2" -p52538 -S"'dec_SecondRequestedActions'(${1:Bytes}, ${2:Param2}) $3" -p52539 -tp52540 -a(S"'dec_SecondRequestedEvent'/2" -p52541 -S"'dec_SecondRequestedEvent'(${1:Bytes}, ${2:Param2}) $3" -p52542 -tp52543 -a(S"'dec_SecurityParmIndex'/2" -p52544 -S"'dec_SecurityParmIndex'(${1:Bytes}, ${2:Param2}) $3" -p52545 -tp52546 -a(S"'dec_SeqSigList'/2" -p52547 -S"'dec_SeqSigList'(${1:Bytes}, ${2:Param2}) $3" -p52548 -tp52549 -a(S"'dec_SequenceNum'/2" -p52550 -S"'dec_SequenceNum'(${1:Bytes}, ${2:Param2}) $3" -p52551 -tp52552 -a(S"'dec_ServiceChangeAddress'/2" -p52553 -S"'dec_ServiceChangeAddress'(${1:Bytes}, ${2:Param2}) $3" -p52554 -tp52555 -a(S"'dec_ServiceChangeMethod'/2" -p52556 -S"'dec_ServiceChangeMethod'(${1:Bytes}, ${2:Param2}) $3" -p52557 -tp52558 -a(S"'dec_ServiceChangeParm'/2" -p52559 -S"'dec_ServiceChangeParm'(${1:Bytes}, ${2:Param2}) $3" -p52560 -tp52561 -a(S"'dec_ServiceChangeProfile'/2" -p52562 -S"'dec_ServiceChangeProfile'(${1:Bytes}, ${2:Param2}) $3" -p52563 -tp52564 -a(S"'dec_ServiceChangeReply'/2" -p52565 -S"'dec_ServiceChangeReply'(${1:Bytes}, ${2:Param2}) $3" -p52566 -tp52567 -a(S"'dec_ServiceChangeRequest'/2" -p52568 -S"'dec_ServiceChangeRequest'(${1:Bytes}, ${2:Param2}) $3" -p52569 -tp52570 -a(S"'dec_ServiceChangeResParm'/2" -p52571 -S"'dec_ServiceChangeResParm'(${1:Bytes}, ${2:Param2}) $3" -p52572 -tp52573 -a(S"'dec_ServiceChangeResult'/2" -p52574 -S"'dec_ServiceChangeResult'(${1:Bytes}, ${2:Param2}) $3" -p52575 -tp52576 -a(S"'dec_ServiceState'/2" -p52577 -S"'dec_ServiceState'(${1:Bytes}, ${2:Param2}) $3" -p52578 -tp52579 -a(S"'dec_SigParameter'/2" -p52580 -S"'dec_SigParameter'(${1:Bytes}, ${2:Param2}) $3" -p52581 -tp52582 -a(S"'dec_Signal'/2" -p52583 -S"'dec_Signal'(${1:Bytes}, ${2:Param2}) $3" -p52584 -tp52585 -a(S"'dec_SignalName'/2" -p52586 -S"'dec_SignalName'(${1:Bytes}, ${2:Param2}) $3" -p52587 -tp52588 -a(S"'dec_SignalRequest'/2" -p52589 -S"'dec_SignalRequest'(${1:Bytes}, ${2:Param2}) $3" -p52590 -tp52591 -a(S"'dec_SignalType'/2" -p52592 -S"'dec_SignalType'(${1:Bytes}, ${2:Param2}) $3" -p52593 -tp52594 -a(S"'dec_SignalsDescriptor'/2" -p52595 -S"'dec_SignalsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p52596 -tp52597 -a(S"'dec_StatisticsDescriptor'/2" -p52598 -S"'dec_StatisticsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p52599 -tp52600 -a(S"'dec_StatisticsParameter'/2" -p52601 -S"'dec_StatisticsParameter'(${1:Bytes}, ${2:Param2}) $3" -p52602 -tp52603 -a(S"'dec_StreamDescriptor'/2" -p52604 -S"'dec_StreamDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p52605 -tp52606 -a(S"'dec_StreamID'/2" -p52607 -S"'dec_StreamID'(${1:Bytes}, ${2:Param2}) $3" -p52608 -tp52609 -a(S"'dec_StreamMode'/2" -p52610 -S"'dec_StreamMode'(${1:Bytes}, ${2:Param2}) $3" -p52611 -tp52612 -a(S"'dec_StreamParms'/2" -p52613 -S"'dec_StreamParms'(${1:Bytes}, ${2:Param2}) $3" -p52614 -tp52615 -a(S"'dec_SubtractRequest'/2" -p52616 -S"'dec_SubtractRequest'(${1:Bytes}, ${2:Param2}) $3" -p52617 -tp52618 -a(S"'dec_TerminationAudit'/2" -p52619 -S"'dec_TerminationAudit'(${1:Bytes}, ${2:Param2}) $3" -p52620 -tp52621 -a(S"'dec_TerminationID'/2" -p52622 -S"'dec_TerminationID'(${1:Bytes}, ${2:Param2}) $3" -p52623 -tp52624 -a(S"'dec_TerminationIDList'/2" -p52625 -S"'dec_TerminationIDList'(${1:Bytes}, ${2:Param2}) $3" -p52626 -tp52627 -a(S"'dec_TerminationStateDescriptor'/2" -p52628 -S"'dec_TerminationStateDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p52629 -tp52630 -a(S"'dec_TimeNotation'/2" -p52631 -S"'dec_TimeNotation'(${1:Bytes}, ${2:Param2}) $3" -p52632 -tp52633 -a(S"'dec_TopologyRequest'/2" -p52634 -S"'dec_TopologyRequest'(${1:Bytes}, ${2:Param2}) $3" -p52635 -tp52636 -a(S"'dec_Transaction'/2" -p52637 -S"'dec_Transaction'(${1:Bytes}, ${2:Param2}) $3" -p52638 -tp52639 -a(S"'dec_TransactionAck'/2" -p52640 -S"'dec_TransactionAck'(${1:Bytes}, ${2:Param2}) $3" -p52641 -tp52642 -a(S"'dec_TransactionId'/2" -p52643 -S"'dec_TransactionId'(${1:Bytes}, ${2:Param2}) $3" -p52644 -tp52645 -a(S"'dec_TransactionPending'/2" -p52646 -S"'dec_TransactionPending'(${1:Bytes}, ${2:Param2}) $3" -p52647 -tp52648 -a(S"'dec_TransactionReply'/2" -p52649 -S"'dec_TransactionReply'(${1:Bytes}, ${2:Param2}) $3" -p52650 -tp52651 -a(S"'dec_TransactionRequest'/2" -p52652 -S"'dec_TransactionRequest'(${1:Bytes}, ${2:Param2}) $3" -p52653 -tp52654 -a(S"'dec_TransactionResponseAck'/2" -p52655 -S"'dec_TransactionResponseAck'(${1:Bytes}, ${2:Param2}) $3" -p52656 -tp52657 -a(S"'dec_Value'/2" -p52658 -S"'dec_Value'(${1:Bytes}, ${2:Param2}) $3" -p52659 -tp52660 -a(S"'dec_WildcardField'/2" -p52661 -S"'dec_WildcardField'(${1:Bytes}, ${2:Param2}) $3" -p52662 -tp52663 -a(S"'enc_ActionReply'/1" -p52664 -S"'enc_ActionReply'(${1:Val}) $2" -p52665 -tp52666 -a(S"'enc_ActionRequest'/1" -p52667 -S"'enc_ActionRequest'(${1:Val}) $2" -p52668 -tp52669 -a(S"'enc_AmmDescriptor'/1" -p52670 -S"'enc_AmmDescriptor'(${1:Val}) $2" -p52671 -tp52672 -a(S"'enc_AmmRequest'/1" -p52673 -S"'enc_AmmRequest'(${1:Val}) $2" -p52674 -tp52675 -a(S"'enc_AmmsReply'/1" -p52676 -S"'enc_AmmsReply'(${1:Val}) $2" -p52677 -tp52678 -a(S"'enc_AuditDescriptor'/1" -p52679 -S"'enc_AuditDescriptor'(${1:Val}) $2" -p52680 -tp52681 -a(S"'enc_AuditReply'/1" -p52682 -S"'enc_AuditReply'(${1:Val}) $2" -p52683 -tp52684 -a(S"'enc_AuditRequest'/1" -p52685 -S"'enc_AuditRequest'(${1:Val}) $2" -p52686 -tp52687 -a(S"'enc_AuditResult'/1" -p52688 -S"'enc_AuditResult'(${1:Val}) $2" -p52689 -tp52690 -a(S"'enc_AuditReturnParameter'/1" -p52691 -S"'enc_AuditReturnParameter'(${1:Val}) $2" -p52692 -tp52693 -a(S"'enc_AuthData'/1" -p52694 -S"'enc_AuthData'(${1:Val}) $2" -p52695 -tp52696 -a(S"'enc_AuthenticationHeader'/1" -p52697 -S"'enc_AuthenticationHeader'(${1:Val}) $2" -p52698 -tp52699 -a(S"'enc_Command'/1" -p52700 -S"'enc_Command'(${1:Val}) $2" -p52701 -tp52702 -a(S"'enc_CommandReply'/1" -p52703 -S"'enc_CommandReply'(${1:Val}) $2" -p52704 -tp52705 -a(S"'enc_CommandRequest'/1" -p52706 -S"'enc_CommandRequest'(${1:Val}) $2" -p52707 -tp52708 -a(S"'enc_ContextAttrAuditRequest'/1" -p52709 -S"'enc_ContextAttrAuditRequest'(${1:Val}) $2" -p52710 -tp52711 -a(S"'enc_ContextID'/1" -p52712 -S"'enc_ContextID'(${1:Val}) $2" -p52713 -tp52714 -a(S"'enc_ContextRequest'/1" -p52715 -S"'enc_ContextRequest'(${1:Val}) $2" -p52716 -tp52717 -a(S"'enc_DigitMapDescriptor'/1" -p52718 -S"'enc_DigitMapDescriptor'(${1:Val}) $2" -p52719 -tp52720 -a(S"'enc_DigitMapName'/1" -p52721 -S"'enc_DigitMapName'(${1:Val}) $2" -p52722 -tp52723 -a(S"'enc_DigitMapValue'/1" -p52724 -S"'enc_DigitMapValue'(${1:Val}) $2" -p52725 -tp52726 -a(S"'enc_DomainName'/1" -p52727 -S"'enc_DomainName'(${1:Val}) $2" -p52728 -tp52729 -a(S"'enc_ErrorCode'/1" -p52730 -S"'enc_ErrorCode'(${1:Val}) $2" -p52731 -tp52732 -a(S"'enc_ErrorDescriptor'/1" -p52733 -S"'enc_ErrorDescriptor'(${1:Val}) $2" -p52734 -tp52735 -a(S"'enc_ErrorText'/1" -p52736 -S"'enc_ErrorText'(${1:Val}) $2" -p52737 -tp52738 -a(S"'enc_EventBufferControl'/1" -p52739 -S"'enc_EventBufferControl'(${1:Val}) $2" -p52740 -tp52741 -a(S"'enc_EventBufferDescriptor'/1" -p52742 -S"'enc_EventBufferDescriptor'(${1:Val}) $2" -p52743 -tp52744 -a(S"'enc_EventDM'/1" -p52745 -S"'enc_EventDM'(${1:Val}) $2" -p52746 -tp52747 -a(S"'enc_EventName'/1" -p52748 -S"'enc_EventName'(${1:Val}) $2" -p52749 -tp52750 -a(S"'enc_EventParameter'/1" -p52751 -S"'enc_EventParameter'(${1:Val}) $2" -p52752 -tp52753 -a(S"'enc_EventSpec'/1" -p52754 -S"'enc_EventSpec'(${1:Val}) $2" -p52755 -tp52756 -a(S"'enc_EventsDescriptor'/1" -p52757 -S"'enc_EventsDescriptor'(${1:Val}) $2" -p52758 -tp52759 -a(S"'enc_H221NonStandard'/1" -p52760 -S"'enc_H221NonStandard'(${1:Val}) $2" -p52761 -tp52762 -a(S"'enc_IP4Address'/1" -p52763 -S"'enc_IP4Address'(${1:Val}) $2" -p52764 -tp52765 -a(S"'enc_IP6Address'/1" -p52766 -S"'enc_IP6Address'(${1:Val}) $2" -p52767 -tp52768 -a(S"'enc_LocalControlDescriptor'/1" -p52769 -S"'enc_LocalControlDescriptor'(${1:Val}) $2" -p52770 -tp52771 -a(S"'enc_LocalRemoteDescriptor'/1" -p52772 -S"'enc_LocalRemoteDescriptor'(${1:Val}) $2" -p52773 -tp52774 -a(S"'enc_MId'/1" -p52775 -S"'enc_MId'(${1:Val}) $2" -p52776 -tp52777 -a(S"'enc_MediaDescriptor'/1" -p52778 -S"'enc_MediaDescriptor'(${1:Val}) $2" -p52779 -tp52780 -a(S"'enc_MegacoMessage'/1" -p52781 -S"'enc_MegacoMessage'(${1:Val}) $2" -p52782 -tp52783 -a(S"'enc_Message'/1" -p52784 -S"'enc_Message'(${1:Val}) $2" -p52785 -tp52786 -a(S"'enc_ModemDescriptor'/1" -p52787 -S"'enc_ModemDescriptor'(${1:Val}) $2" -p52788 -tp52789 -a(S"'enc_ModemType'/1" -p52790 -S"'enc_ModemType'(${1:Val}) $2" -p52791 -tp52792 -a(S"'enc_MuxDescriptor'/1" -p52793 -S"'enc_MuxDescriptor'(${1:Val}) $2" -p52794 -tp52795 -a(S"'enc_MuxType'/1" -p52796 -S"'enc_MuxType'(${1:Val}) $2" -p52797 -tp52798 -a(S"'enc_Name'/1" -p52799 -S"'enc_Name'(${1:Val}) $2" -p52800 -tp52801 -a(S"'enc_NonStandardData'/1" -p52802 -S"'enc_NonStandardData'(${1:Val}) $2" -p52803 -tp52804 -a(S"'enc_NonStandardIdentifier'/1" -p52805 -S"'enc_NonStandardIdentifier'(${1:Val}) $2" -p52806 -tp52807 -a(S"'enc_NotifyCompletion'/1" -p52808 -S"'enc_NotifyCompletion'(${1:Val}) $2" -p52809 -tp52810 -a(S"'enc_NotifyReply'/1" -p52811 -S"'enc_NotifyReply'(${1:Val}) $2" -p52812 -tp52813 -a(S"'enc_NotifyRequest'/1" -p52814 -S"'enc_NotifyRequest'(${1:Val}) $2" -p52815 -tp52816 -a(S"'enc_ObservedEvent'/1" -p52817 -S"'enc_ObservedEvent'(${1:Val}) $2" -p52818 -tp52819 -a(S"'enc_ObservedEventsDescriptor'/1" -p52820 -S"'enc_ObservedEventsDescriptor'(${1:Val}) $2" -p52821 -tp52822 -a(S"'enc_PackagesDescriptor'/1" -p52823 -S"'enc_PackagesDescriptor'(${1:Val}) $2" -p52824 -tp52825 -a(S"'enc_PackagesItem'/1" -p52826 -S"'enc_PackagesItem'(${1:Val}) $2" -p52827 -tp52828 -a(S"'enc_PathName'/1" -p52829 -S"'enc_PathName'(${1:Val}) $2" -p52830 -tp52831 -a(S"'enc_PkgdName'/1" -p52832 -S"'enc_PkgdName'(${1:Val}) $2" -p52833 -tp52834 -a(S"'enc_PropertyGroup'/1" -p52835 -S"'enc_PropertyGroup'(${1:Val}) $2" -p52836 -tp52837 -a(S"'enc_PropertyParm'/1" -p52838 -S"'enc_PropertyParm'(${1:Val}) $2" -p52839 -tp52840 -a(S"'enc_Relation'/1" -p52841 -S"'enc_Relation'(${1:Val}) $2" -p52842 -tp52843 -a(S"'enc_RequestID'/1" -p52844 -S"'enc_RequestID'(${1:Val}) $2" -p52845 -tp52846 -a(S"'enc_RequestedActions'/1" -p52847 -S"'enc_RequestedActions'(${1:Val}) $2" -p52848 -tp52849 -a(S"'enc_RequestedEvent'/1" -p52850 -S"'enc_RequestedEvent'(${1:Val}) $2" -p52851 -tp52852 -a(S"'enc_SecondEventsDescriptor'/1" -p52853 -S"'enc_SecondEventsDescriptor'(${1:Val}) $2" -p52854 -tp52855 -a(S"'enc_SecondRequestedActions'/1" -p52856 -S"'enc_SecondRequestedActions'(${1:Val}) $2" -p52857 -tp52858 -a(S"'enc_SecondRequestedEvent'/1" -p52859 -S"'enc_SecondRequestedEvent'(${1:Val}) $2" -p52860 -tp52861 -a(S"'enc_SecurityParmIndex'/1" -p52862 -S"'enc_SecurityParmIndex'(${1:Val}) $2" -p52863 -tp52864 -a(S"'enc_SeqSigList'/1" -p52865 -S"'enc_SeqSigList'(${1:Val}) $2" -p52866 -tp52867 -a(S"'enc_SequenceNum'/1" -p52868 -S"'enc_SequenceNum'(${1:Val}) $2" -p52869 -tp52870 -a(S"'enc_ServiceChangeAddress'/1" -p52871 -S"'enc_ServiceChangeAddress'(${1:Val}) $2" -p52872 -tp52873 -a(S"'enc_ServiceChangeMethod'/1" -p52874 -S"'enc_ServiceChangeMethod'(${1:Val}) $2" -p52875 -tp52876 -a(S"'enc_ServiceChangeParm'/1" -p52877 -S"'enc_ServiceChangeParm'(${1:Val}) $2" -p52878 -tp52879 -a(S"'enc_ServiceChangeProfile'/1" -p52880 -S"'enc_ServiceChangeProfile'(${1:Val}) $2" -p52881 -tp52882 -a(S"'enc_ServiceChangeReply'/1" -p52883 -S"'enc_ServiceChangeReply'(${1:Val}) $2" -p52884 -tp52885 -a(S"'enc_ServiceChangeRequest'/1" -p52886 -S"'enc_ServiceChangeRequest'(${1:Val}) $2" -p52887 -tp52888 -a(S"'enc_ServiceChangeResParm'/1" -p52889 -S"'enc_ServiceChangeResParm'(${1:Val}) $2" -p52890 -tp52891 -a(S"'enc_ServiceChangeResult'/1" -p52892 -S"'enc_ServiceChangeResult'(${1:Val}) $2" -p52893 -tp52894 -a(S"'enc_ServiceState'/1" -p52895 -S"'enc_ServiceState'(${1:Val}) $2" -p52896 -tp52897 -a(S"'enc_SigParameter'/1" -p52898 -S"'enc_SigParameter'(${1:Val}) $2" -p52899 -tp52900 -a(S"'enc_Signal'/1" -p52901 -S"'enc_Signal'(${1:Val}) $2" -p52902 -tp52903 -a(S"'enc_SignalName'/1" -p52904 -S"'enc_SignalName'(${1:Val}) $2" -p52905 -tp52906 -a(S"'enc_SignalRequest'/1" -p52907 -S"'enc_SignalRequest'(${1:Val}) $2" -p52908 -tp52909 -a(S"'enc_SignalType'/1" -p52910 -S"'enc_SignalType'(${1:Val}) $2" -p52911 -tp52912 -a(S"'enc_SignalsDescriptor'/1" -p52913 -S"'enc_SignalsDescriptor'(${1:Val}) $2" -p52914 -tp52915 -a(S"'enc_StatisticsDescriptor'/1" -p52916 -S"'enc_StatisticsDescriptor'(${1:Val}) $2" -p52917 -tp52918 -a(S"'enc_StatisticsParameter'/1" -p52919 -S"'enc_StatisticsParameter'(${1:Val}) $2" -p52920 -tp52921 -a(S"'enc_StreamDescriptor'/1" -p52922 -S"'enc_StreamDescriptor'(${1:Val}) $2" -p52923 -tp52924 -a(S"'enc_StreamID'/1" -p52925 -S"'enc_StreamID'(${1:Val}) $2" -p52926 -tp52927 -a(S"'enc_StreamMode'/1" -p52928 -S"'enc_StreamMode'(${1:Val}) $2" -p52929 -tp52930 -a(S"'enc_StreamParms'/1" -p52931 -S"'enc_StreamParms'(${1:Val}) $2" -p52932 -tp52933 -a(S"'enc_SubtractRequest'/1" -p52934 -S"'enc_SubtractRequest'(${1:Val}) $2" -p52935 -tp52936 -a(S"'enc_TerminationAudit'/1" -p52937 -S"'enc_TerminationAudit'(${1:Val}) $2" -p52938 -tp52939 -a(S"'enc_TerminationID'/1" -p52940 -S"'enc_TerminationID'(${1:Val}) $2" -p52941 -tp52942 -a(S"'enc_TerminationIDList'/1" -p52943 -S"'enc_TerminationIDList'(${1:Val}) $2" -p52944 -tp52945 -a(S"'enc_TerminationStateDescriptor'/1" -p52946 -S"'enc_TerminationStateDescriptor'(${1:Val}) $2" -p52947 -tp52948 -a(S"'enc_TimeNotation'/1" -p52949 -S"'enc_TimeNotation'(${1:Val}) $2" -p52950 -tp52951 -a(S"'enc_TopologyRequest'/1" -p52952 -S"'enc_TopologyRequest'(${1:Val}) $2" -p52953 -tp52954 -a(S"'enc_Transaction'/1" -p52955 -S"'enc_Transaction'(${1:Val}) $2" -p52956 -tp52957 -a(S"'enc_TransactionAck'/1" -p52958 -S"'enc_TransactionAck'(${1:Val}) $2" -p52959 -tp52960 -a(S"'enc_TransactionId'/1" -p52961 -S"'enc_TransactionId'(${1:Val}) $2" -p52962 -tp52963 -a(S"'enc_TransactionPending'/1" -p52964 -S"'enc_TransactionPending'(${1:Val}) $2" -p52965 -tp52966 -a(S"'enc_TransactionReply'/1" -p52967 -S"'enc_TransactionReply'(${1:Val}) $2" -p52968 -tp52969 -a(S"'enc_TransactionRequest'/1" -p52970 -S"'enc_TransactionRequest'(${1:Val}) $2" -p52971 -tp52972 -a(S"'enc_TransactionResponseAck'/1" -p52973 -S"'enc_TransactionResponseAck'(${1:Val}) $2" -p52974 -tp52975 -a(S"'enc_Value'/1" -p52976 -S"'enc_Value'(${1:Val}) $2" -p52977 -tp52978 -a(S"'enc_WildcardField'/1" -p52979 -S"'enc_WildcardField'(${1:Val}) $2" -p52980 -tp52981 -a(S'decode/2' -p52982 -S'decode(${1:Type}, ${2:Data}) $3' -p52983 -tp52984 -a(S'decode_disp/2' -p52985 -S'decode_disp(${1:Type}, ${2:Data}) $3' -p52986 -tp52987 -a(S'encode/2' -p52988 -S'encode(${1:Type}, ${2:Data}) $3' -p52989 -tp52990 -a(S'encode_disp/2' -p52991 -S'encode_disp(${1:Type}, ${2:Data}) $3' -p52992 -tp52993 -a(S'encoding_rule/0' -p52994 -S'encoding_rule() $1' -p52995 -tp52996 -a(S'info/0' -p52997 -S'info() $1' -p52998 -tp52999 -asS'megaco_per_bin_media_gateway_control_v2' -p53000 -(lp53001 -(S"'dec_ActionReply'/2" -p53002 -S"'dec_ActionReply'(${1:Bytes}, ${2:Param2}) $3" -p53003 -tp53004 -a(S"'dec_ActionRequest'/2" -p53005 -S"'dec_ActionRequest'(${1:Bytes}, ${2:Param2}) $3" -p53006 -tp53007 -a(S"'dec_AmmDescriptor'/2" -p53008 -S"'dec_AmmDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53009 -tp53010 -a(S"'dec_AmmRequest'/2" -p53011 -S"'dec_AmmRequest'(${1:Bytes}, ${2:Param2}) $3" -p53012 -tp53013 -a(S"'dec_AmmsReply'/2" -p53014 -S"'dec_AmmsReply'(${1:Bytes}, ${2:Param2}) $3" -p53015 -tp53016 -a(S"'dec_AuditDescriptor'/2" -p53017 -S"'dec_AuditDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53018 -tp53019 -a(S"'dec_AuditReply'/2" -p53020 -S"'dec_AuditReply'(${1:Bytes}, ${2:Param2}) $3" -p53021 -tp53022 -a(S"'dec_AuditRequest'/2" -p53023 -S"'dec_AuditRequest'(${1:Bytes}, ${2:Param2}) $3" -p53024 -tp53025 -a(S"'dec_AuditResult'/2" -p53026 -S"'dec_AuditResult'(${1:Bytes}, ${2:Param2}) $3" -p53027 -tp53028 -a(S"'dec_AuditReturnParameter'/2" -p53029 -S"'dec_AuditReturnParameter'(${1:Bytes}, ${2:Param2}) $3" -p53030 -tp53031 -a(S"'dec_AuthData'/2" -p53032 -S"'dec_AuthData'(${1:Bytes}, ${2:Param2}) $3" -p53033 -tp53034 -a(S"'dec_AuthenticationHeader'/2" -p53035 -S"'dec_AuthenticationHeader'(${1:Bytes}, ${2:Param2}) $3" -p53036 -tp53037 -a(S"'dec_Command'/2" -p53038 -S"'dec_Command'(${1:Bytes}, ${2:Param2}) $3" -p53039 -tp53040 -a(S"'dec_CommandReply'/2" -p53041 -S"'dec_CommandReply'(${1:Bytes}, ${2:Param2}) $3" -p53042 -tp53043 -a(S"'dec_CommandRequest'/2" -p53044 -S"'dec_CommandRequest'(${1:Bytes}, ${2:Param2}) $3" -p53045 -tp53046 -a(S"'dec_ContextAttrAuditRequest'/2" -p53047 -S"'dec_ContextAttrAuditRequest'(${1:Bytes}, ${2:Param2}) $3" -p53048 -tp53049 -a(S"'dec_ContextID'/2" -p53050 -S"'dec_ContextID'(${1:Bytes}, ${2:Param2}) $3" -p53051 -tp53052 -a(S"'dec_ContextRequest'/2" -p53053 -S"'dec_ContextRequest'(${1:Bytes}, ${2:Param2}) $3" -p53054 -tp53055 -a(S"'dec_DigitMapDescriptor'/2" -p53056 -S"'dec_DigitMapDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53057 -tp53058 -a(S"'dec_DigitMapName'/2" -p53059 -S"'dec_DigitMapName'(${1:Bytes}, ${2:Param2}) $3" -p53060 -tp53061 -a(S"'dec_DigitMapValue'/2" -p53062 -S"'dec_DigitMapValue'(${1:Bytes}, ${2:Param2}) $3" -p53063 -tp53064 -a(S"'dec_DomainName'/2" -p53065 -S"'dec_DomainName'(${1:Bytes}, ${2:Param2}) $3" -p53066 -tp53067 -a(S"'dec_ErrorCode'/2" -p53068 -S"'dec_ErrorCode'(${1:Bytes}, ${2:Param2}) $3" -p53069 -tp53070 -a(S"'dec_ErrorDescriptor'/2" -p53071 -S"'dec_ErrorDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53072 -tp53073 -a(S"'dec_ErrorText'/2" -p53074 -S"'dec_ErrorText'(${1:Bytes}, ${2:Param2}) $3" -p53075 -tp53076 -a(S"'dec_EventBufferControl'/2" -p53077 -S"'dec_EventBufferControl'(${1:Bytes}, ${2:Param2}) $3" -p53078 -tp53079 -a(S"'dec_EventBufferDescriptor'/2" -p53080 -S"'dec_EventBufferDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53081 -tp53082 -a(S"'dec_EventDM'/2" -p53083 -S"'dec_EventDM'(${1:Bytes}, ${2:Param2}) $3" -p53084 -tp53085 -a(S"'dec_EventName'/2" -p53086 -S"'dec_EventName'(${1:Bytes}, ${2:Param2}) $3" -p53087 -tp53088 -a(S"'dec_EventParameter'/2" -p53089 -S"'dec_EventParameter'(${1:Bytes}, ${2:Param2}) $3" -p53090 -tp53091 -a(S"'dec_EventSpec'/2" -p53092 -S"'dec_EventSpec'(${1:Bytes}, ${2:Param2}) $3" -p53093 -tp53094 -a(S"'dec_EventsDescriptor'/2" -p53095 -S"'dec_EventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53096 -tp53097 -a(S"'dec_H221NonStandard'/2" -p53098 -S"'dec_H221NonStandard'(${1:Bytes}, ${2:Param2}) $3" -p53099 -tp53100 -a(S"'dec_IP4Address'/2" -p53101 -S"'dec_IP4Address'(${1:Bytes}, ${2:Param2}) $3" -p53102 -tp53103 -a(S"'dec_IP6Address'/2" -p53104 -S"'dec_IP6Address'(${1:Bytes}, ${2:Param2}) $3" -p53105 -tp53106 -a(S"'dec_IndAudDigitMapDescriptor'/2" -p53107 -S"'dec_IndAudDigitMapDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53108 -tp53109 -a(S"'dec_IndAudEventBufferDescriptor'/2" -p53110 -S"'dec_IndAudEventBufferDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53111 -tp53112 -a(S"'dec_IndAudEventsDescriptor'/2" -p53113 -S"'dec_IndAudEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53114 -tp53115 -a(S"'dec_IndAudLocalControlDescriptor'/2" -p53116 -S"'dec_IndAudLocalControlDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53117 -tp53118 -a(S"'dec_IndAudLocalRemoteDescriptor'/2" -p53119 -S"'dec_IndAudLocalRemoteDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53120 -tp53121 -a(S"'dec_IndAudMediaDescriptor'/2" -p53122 -S"'dec_IndAudMediaDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53123 -tp53124 -a(S"'dec_IndAudPackagesDescriptor'/2" -p53125 -S"'dec_IndAudPackagesDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53126 -tp53127 -a(S"'dec_IndAudPropertyGroup'/2" -p53128 -S"'dec_IndAudPropertyGroup'(${1:Bytes}, ${2:Param2}) $3" -p53129 -tp53130 -a(S"'dec_IndAudPropertyParm'/2" -p53131 -S"'dec_IndAudPropertyParm'(${1:Bytes}, ${2:Param2}) $3" -p53132 -tp53133 -a(S"'dec_IndAudSeqSigList'/2" -p53134 -S"'dec_IndAudSeqSigList'(${1:Bytes}, ${2:Param2}) $3" -p53135 -tp53136 -a(S"'dec_IndAudSignal'/2" -p53137 -S"'dec_IndAudSignal'(${1:Bytes}, ${2:Param2}) $3" -p53138 -tp53139 -a(S"'dec_IndAudSignalsDescriptor'/2" -p53140 -S"'dec_IndAudSignalsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53141 -tp53142 -a(S"'dec_IndAudStatisticsDescriptor'/2" -p53143 -S"'dec_IndAudStatisticsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53144 -tp53145 -a(S"'dec_IndAudStreamDescriptor'/2" -p53146 -S"'dec_IndAudStreamDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53147 -tp53148 -a(S"'dec_IndAudStreamParms'/2" -p53149 -S"'dec_IndAudStreamParms'(${1:Bytes}, ${2:Param2}) $3" -p53150 -tp53151 -a(S"'dec_IndAudTerminationStateDescriptor'/2" -p53152 -S"'dec_IndAudTerminationStateDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53153 -tp53154 -a(S"'dec_IndAuditParameter'/2" -p53155 -S"'dec_IndAuditParameter'(${1:Bytes}, ${2:Param2}) $3" -p53156 -tp53157 -a(S"'dec_LocalControlDescriptor'/2" -p53158 -S"'dec_LocalControlDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53159 -tp53160 -a(S"'dec_LocalRemoteDescriptor'/2" -p53161 -S"'dec_LocalRemoteDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53162 -tp53163 -a(S"'dec_MId'/2" -p53164 -S"'dec_MId'(${1:Bytes}, ${2:Param2}) $3" -p53165 -tp53166 -a(S"'dec_MediaDescriptor'/2" -p53167 -S"'dec_MediaDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53168 -tp53169 -a(S"'dec_MegacoMessage'/2" -p53170 -S"'dec_MegacoMessage'(${1:Bytes}, ${2:Param2}) $3" -p53171 -tp53172 -a(S"'dec_Message'/2" -p53173 -S"'dec_Message'(${1:Bytes}, ${2:Param2}) $3" -p53174 -tp53175 -a(S"'dec_ModemDescriptor'/2" -p53176 -S"'dec_ModemDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53177 -tp53178 -a(S"'dec_ModemType'/2" -p53179 -S"'dec_ModemType'(${1:Bytes}, ${2:Param2}) $3" -p53180 -tp53181 -a(S"'dec_MuxDescriptor'/2" -p53182 -S"'dec_MuxDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53183 -tp53184 -a(S"'dec_MuxType'/2" -p53185 -S"'dec_MuxType'(${1:Bytes}, ${2:Param2}) $3" -p53186 -tp53187 -a(S"'dec_Name'/2" -p53188 -S"'dec_Name'(${1:Bytes}, ${2:Param2}) $3" -p53189 -tp53190 -a(S"'dec_NonStandardData'/2" -p53191 -S"'dec_NonStandardData'(${1:Bytes}, ${2:Param2}) $3" -p53192 -tp53193 -a(S"'dec_NonStandardIdentifier'/2" -p53194 -S"'dec_NonStandardIdentifier'(${1:Bytes}, ${2:Param2}) $3" -p53195 -tp53196 -a(S"'dec_NotifyCompletion'/2" -p53197 -S"'dec_NotifyCompletion'(${1:Bytes}, ${2:Param2}) $3" -p53198 -tp53199 -a(S"'dec_NotifyReply'/2" -p53200 -S"'dec_NotifyReply'(${1:Bytes}, ${2:Param2}) $3" -p53201 -tp53202 -a(S"'dec_NotifyRequest'/2" -p53203 -S"'dec_NotifyRequest'(${1:Bytes}, ${2:Param2}) $3" -p53204 -tp53205 -a(S"'dec_ObservedEvent'/2" -p53206 -S"'dec_ObservedEvent'(${1:Bytes}, ${2:Param2}) $3" -p53207 -tp53208 -a(S"'dec_ObservedEventsDescriptor'/2" -p53209 -S"'dec_ObservedEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53210 -tp53211 -a(S"'dec_PackagesDescriptor'/2" -p53212 -S"'dec_PackagesDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53213 -tp53214 -a(S"'dec_PackagesItem'/2" -p53215 -S"'dec_PackagesItem'(${1:Bytes}, ${2:Param2}) $3" -p53216 -tp53217 -a(S"'dec_PathName'/2" -p53218 -S"'dec_PathName'(${1:Bytes}, ${2:Param2}) $3" -p53219 -tp53220 -a(S"'dec_PkgdName'/2" -p53221 -S"'dec_PkgdName'(${1:Bytes}, ${2:Param2}) $3" -p53222 -tp53223 -a(S"'dec_PropertyGroup'/2" -p53224 -S"'dec_PropertyGroup'(${1:Bytes}, ${2:Param2}) $3" -p53225 -tp53226 -a(S"'dec_PropertyParm'/2" -p53227 -S"'dec_PropertyParm'(${1:Bytes}, ${2:Param2}) $3" -p53228 -tp53229 -a(S"'dec_Relation'/2" -p53230 -S"'dec_Relation'(${1:Bytes}, ${2:Param2}) $3" -p53231 -tp53232 -a(S"'dec_RequestID'/2" -p53233 -S"'dec_RequestID'(${1:Bytes}, ${2:Param2}) $3" -p53234 -tp53235 -a(S"'dec_RequestedActions'/2" -p53236 -S"'dec_RequestedActions'(${1:Bytes}, ${2:Param2}) $3" -p53237 -tp53238 -a(S"'dec_RequestedEvent'/2" -p53239 -S"'dec_RequestedEvent'(${1:Bytes}, ${2:Param2}) $3" -p53240 -tp53241 -a(S"'dec_SecondEventsDescriptor'/2" -p53242 -S"'dec_SecondEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53243 -tp53244 -a(S"'dec_SecondRequestedActions'/2" -p53245 -S"'dec_SecondRequestedActions'(${1:Bytes}, ${2:Param2}) $3" -p53246 -tp53247 -a(S"'dec_SecondRequestedEvent'/2" -p53248 -S"'dec_SecondRequestedEvent'(${1:Bytes}, ${2:Param2}) $3" -p53249 -tp53250 -a(S"'dec_SecurityParmIndex'/2" -p53251 -S"'dec_SecurityParmIndex'(${1:Bytes}, ${2:Param2}) $3" -p53252 -tp53253 -a(S"'dec_SeqSigList'/2" -p53254 -S"'dec_SeqSigList'(${1:Bytes}, ${2:Param2}) $3" -p53255 -tp53256 -a(S"'dec_SequenceNum'/2" -p53257 -S"'dec_SequenceNum'(${1:Bytes}, ${2:Param2}) $3" -p53258 -tp53259 -a(S"'dec_ServiceChangeAddress'/2" -p53260 -S"'dec_ServiceChangeAddress'(${1:Bytes}, ${2:Param2}) $3" -p53261 -tp53262 -a(S"'dec_ServiceChangeMethod'/2" -p53263 -S"'dec_ServiceChangeMethod'(${1:Bytes}, ${2:Param2}) $3" -p53264 -tp53265 -a(S"'dec_ServiceChangeParm'/2" -p53266 -S"'dec_ServiceChangeParm'(${1:Bytes}, ${2:Param2}) $3" -p53267 -tp53268 -a(S"'dec_ServiceChangeProfile'/2" -p53269 -S"'dec_ServiceChangeProfile'(${1:Bytes}, ${2:Param2}) $3" -p53270 -tp53271 -a(S"'dec_ServiceChangeReply'/2" -p53272 -S"'dec_ServiceChangeReply'(${1:Bytes}, ${2:Param2}) $3" -p53273 -tp53274 -a(S"'dec_ServiceChangeRequest'/2" -p53275 -S"'dec_ServiceChangeRequest'(${1:Bytes}, ${2:Param2}) $3" -p53276 -tp53277 -a(S"'dec_ServiceChangeResParm'/2" -p53278 -S"'dec_ServiceChangeResParm'(${1:Bytes}, ${2:Param2}) $3" -p53279 -tp53280 -a(S"'dec_ServiceChangeResult'/2" -p53281 -S"'dec_ServiceChangeResult'(${1:Bytes}, ${2:Param2}) $3" -p53282 -tp53283 -a(S"'dec_ServiceState'/2" -p53284 -S"'dec_ServiceState'(${1:Bytes}, ${2:Param2}) $3" -p53285 -tp53286 -a(S"'dec_SigParameter'/2" -p53287 -S"'dec_SigParameter'(${1:Bytes}, ${2:Param2}) $3" -p53288 -tp53289 -a(S"'dec_Signal'/2" -p53290 -S"'dec_Signal'(${1:Bytes}, ${2:Param2}) $3" -p53291 -tp53292 -a(S"'dec_SignalName'/2" -p53293 -S"'dec_SignalName'(${1:Bytes}, ${2:Param2}) $3" -p53294 -tp53295 -a(S"'dec_SignalRequest'/2" -p53296 -S"'dec_SignalRequest'(${1:Bytes}, ${2:Param2}) $3" -p53297 -tp53298 -a(S"'dec_SignalType'/2" -p53299 -S"'dec_SignalType'(${1:Bytes}, ${2:Param2}) $3" -p53300 -tp53301 -a(S"'dec_SignalsDescriptor'/2" -p53302 -S"'dec_SignalsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53303 -tp53304 -a(S"'dec_StatisticsDescriptor'/2" -p53305 -S"'dec_StatisticsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53306 -tp53307 -a(S"'dec_StatisticsParameter'/2" -p53308 -S"'dec_StatisticsParameter'(${1:Bytes}, ${2:Param2}) $3" -p53309 -tp53310 -a(S"'dec_StreamDescriptor'/2" -p53311 -S"'dec_StreamDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53312 -tp53313 -a(S"'dec_StreamID'/2" -p53314 -S"'dec_StreamID'(${1:Bytes}, ${2:Param2}) $3" -p53315 -tp53316 -a(S"'dec_StreamMode'/2" -p53317 -S"'dec_StreamMode'(${1:Bytes}, ${2:Param2}) $3" -p53318 -tp53319 -a(S"'dec_StreamParms'/2" -p53320 -S"'dec_StreamParms'(${1:Bytes}, ${2:Param2}) $3" -p53321 -tp53322 -a(S"'dec_SubtractRequest'/2" -p53323 -S"'dec_SubtractRequest'(${1:Bytes}, ${2:Param2}) $3" -p53324 -tp53325 -a(S"'dec_TerminationAudit'/2" -p53326 -S"'dec_TerminationAudit'(${1:Bytes}, ${2:Param2}) $3" -p53327 -tp53328 -a(S"'dec_TerminationID'/2" -p53329 -S"'dec_TerminationID'(${1:Bytes}, ${2:Param2}) $3" -p53330 -tp53331 -a(S"'dec_TerminationIDList'/2" -p53332 -S"'dec_TerminationIDList'(${1:Bytes}, ${2:Param2}) $3" -p53333 -tp53334 -a(S"'dec_TerminationStateDescriptor'/2" -p53335 -S"'dec_TerminationStateDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53336 -tp53337 -a(S"'dec_TimeNotation'/2" -p53338 -S"'dec_TimeNotation'(${1:Bytes}, ${2:Param2}) $3" -p53339 -tp53340 -a(S"'dec_TopologyRequest'/2" -p53341 -S"'dec_TopologyRequest'(${1:Bytes}, ${2:Param2}) $3" -p53342 -tp53343 -a(S"'dec_Transaction'/2" -p53344 -S"'dec_Transaction'(${1:Bytes}, ${2:Param2}) $3" -p53345 -tp53346 -a(S"'dec_TransactionAck'/2" -p53347 -S"'dec_TransactionAck'(${1:Bytes}, ${2:Param2}) $3" -p53348 -tp53349 -a(S"'dec_TransactionId'/2" -p53350 -S"'dec_TransactionId'(${1:Bytes}, ${2:Param2}) $3" -p53351 -tp53352 -a(S"'dec_TransactionPending'/2" -p53353 -S"'dec_TransactionPending'(${1:Bytes}, ${2:Param2}) $3" -p53354 -tp53355 -a(S"'dec_TransactionReply'/2" -p53356 -S"'dec_TransactionReply'(${1:Bytes}, ${2:Param2}) $3" -p53357 -tp53358 -a(S"'dec_TransactionRequest'/2" -p53359 -S"'dec_TransactionRequest'(${1:Bytes}, ${2:Param2}) $3" -p53360 -tp53361 -a(S"'dec_TransactionResponseAck'/2" -p53362 -S"'dec_TransactionResponseAck'(${1:Bytes}, ${2:Param2}) $3" -p53363 -tp53364 -a(S"'dec_Value'/2" -p53365 -S"'dec_Value'(${1:Bytes}, ${2:Param2}) $3" -p53366 -tp53367 -a(S"'dec_WildcardField'/2" -p53368 -S"'dec_WildcardField'(${1:Bytes}, ${2:Param2}) $3" -p53369 -tp53370 -a(S"'enc_ActionReply'/1" -p53371 -S"'enc_ActionReply'(${1:Val}) $2" -p53372 -tp53373 -a(S"'enc_ActionRequest'/1" -p53374 -S"'enc_ActionRequest'(${1:Val}) $2" -p53375 -tp53376 -a(S"'enc_AmmDescriptor'/1" -p53377 -S"'enc_AmmDescriptor'(${1:Val}) $2" -p53378 -tp53379 -a(S"'enc_AmmRequest'/1" -p53380 -S"'enc_AmmRequest'(${1:Val}) $2" -p53381 -tp53382 -a(S"'enc_AmmsReply'/1" -p53383 -S"'enc_AmmsReply'(${1:Val}) $2" -p53384 -tp53385 -a(S"'enc_AuditDescriptor'/1" -p53386 -S"'enc_AuditDescriptor'(${1:Val}) $2" -p53387 -tp53388 -a(S"'enc_AuditReply'/1" -p53389 -S"'enc_AuditReply'(${1:Val}) $2" -p53390 -tp53391 -a(S"'enc_AuditRequest'/1" -p53392 -S"'enc_AuditRequest'(${1:Val}) $2" -p53393 -tp53394 -a(S"'enc_AuditResult'/1" -p53395 -S"'enc_AuditResult'(${1:Val}) $2" -p53396 -tp53397 -a(S"'enc_AuditReturnParameter'/1" -p53398 -S"'enc_AuditReturnParameter'(${1:Val}) $2" -p53399 -tp53400 -a(S"'enc_AuthData'/1" -p53401 -S"'enc_AuthData'(${1:Val}) $2" -p53402 -tp53403 -a(S"'enc_AuthenticationHeader'/1" -p53404 -S"'enc_AuthenticationHeader'(${1:Val}) $2" -p53405 -tp53406 -a(S"'enc_Command'/1" -p53407 -S"'enc_Command'(${1:Val}) $2" -p53408 -tp53409 -a(S"'enc_CommandReply'/1" -p53410 -S"'enc_CommandReply'(${1:Val}) $2" -p53411 -tp53412 -a(S"'enc_CommandRequest'/1" -p53413 -S"'enc_CommandRequest'(${1:Val}) $2" -p53414 -tp53415 -a(S"'enc_ContextAttrAuditRequest'/1" -p53416 -S"'enc_ContextAttrAuditRequest'(${1:Val}) $2" -p53417 -tp53418 -a(S"'enc_ContextID'/1" -p53419 -S"'enc_ContextID'(${1:Val}) $2" -p53420 -tp53421 -a(S"'enc_ContextRequest'/1" -p53422 -S"'enc_ContextRequest'(${1:Val}) $2" -p53423 -tp53424 -a(S"'enc_DigitMapDescriptor'/1" -p53425 -S"'enc_DigitMapDescriptor'(${1:Val}) $2" -p53426 -tp53427 -a(S"'enc_DigitMapName'/1" -p53428 -S"'enc_DigitMapName'(${1:Val}) $2" -p53429 -tp53430 -a(S"'enc_DigitMapValue'/1" -p53431 -S"'enc_DigitMapValue'(${1:Val}) $2" -p53432 -tp53433 -a(S"'enc_DomainName'/1" -p53434 -S"'enc_DomainName'(${1:Val}) $2" -p53435 -tp53436 -a(S"'enc_ErrorCode'/1" -p53437 -S"'enc_ErrorCode'(${1:Val}) $2" -p53438 -tp53439 -a(S"'enc_ErrorDescriptor'/1" -p53440 -S"'enc_ErrorDescriptor'(${1:Val}) $2" -p53441 -tp53442 -a(S"'enc_ErrorText'/1" -p53443 -S"'enc_ErrorText'(${1:Val}) $2" -p53444 -tp53445 -a(S"'enc_EventBufferControl'/1" -p53446 -S"'enc_EventBufferControl'(${1:Val}) $2" -p53447 -tp53448 -a(S"'enc_EventBufferDescriptor'/1" -p53449 -S"'enc_EventBufferDescriptor'(${1:Val}) $2" -p53450 -tp53451 -a(S"'enc_EventDM'/1" -p53452 -S"'enc_EventDM'(${1:Val}) $2" -p53453 -tp53454 -a(S"'enc_EventName'/1" -p53455 -S"'enc_EventName'(${1:Val}) $2" -p53456 -tp53457 -a(S"'enc_EventParameter'/1" -p53458 -S"'enc_EventParameter'(${1:Val}) $2" -p53459 -tp53460 -a(S"'enc_EventSpec'/1" -p53461 -S"'enc_EventSpec'(${1:Val}) $2" -p53462 -tp53463 -a(S"'enc_EventsDescriptor'/1" -p53464 -S"'enc_EventsDescriptor'(${1:Val}) $2" -p53465 -tp53466 -a(S"'enc_H221NonStandard'/1" -p53467 -S"'enc_H221NonStandard'(${1:Val}) $2" -p53468 -tp53469 -a(S"'enc_IP4Address'/1" -p53470 -S"'enc_IP4Address'(${1:Val}) $2" -p53471 -tp53472 -a(S"'enc_IP6Address'/1" -p53473 -S"'enc_IP6Address'(${1:Val}) $2" -p53474 -tp53475 -a(S"'enc_IndAudDigitMapDescriptor'/1" -p53476 -S"'enc_IndAudDigitMapDescriptor'(${1:Val}) $2" -p53477 -tp53478 -a(S"'enc_IndAudEventBufferDescriptor'/1" -p53479 -S"'enc_IndAudEventBufferDescriptor'(${1:Val}) $2" -p53480 -tp53481 -a(S"'enc_IndAudEventsDescriptor'/1" -p53482 -S"'enc_IndAudEventsDescriptor'(${1:Val}) $2" -p53483 -tp53484 -a(S"'enc_IndAudLocalControlDescriptor'/1" -p53485 -S"'enc_IndAudLocalControlDescriptor'(${1:Val}) $2" -p53486 -tp53487 -a(S"'enc_IndAudLocalRemoteDescriptor'/1" -p53488 -S"'enc_IndAudLocalRemoteDescriptor'(${1:Val}) $2" -p53489 -tp53490 -a(S"'enc_IndAudMediaDescriptor'/1" -p53491 -S"'enc_IndAudMediaDescriptor'(${1:Val}) $2" -p53492 -tp53493 -a(S"'enc_IndAudPackagesDescriptor'/1" -p53494 -S"'enc_IndAudPackagesDescriptor'(${1:Val}) $2" -p53495 -tp53496 -a(S"'enc_IndAudPropertyGroup'/1" -p53497 -S"'enc_IndAudPropertyGroup'(${1:Val}) $2" -p53498 -tp53499 -a(S"'enc_IndAudPropertyParm'/1" -p53500 -S"'enc_IndAudPropertyParm'(${1:Val}) $2" -p53501 -tp53502 -a(S"'enc_IndAudSeqSigList'/1" -p53503 -S"'enc_IndAudSeqSigList'(${1:Val}) $2" -p53504 -tp53505 -a(S"'enc_IndAudSignal'/1" -p53506 -S"'enc_IndAudSignal'(${1:Val}) $2" -p53507 -tp53508 -a(S"'enc_IndAudSignalsDescriptor'/1" -p53509 -S"'enc_IndAudSignalsDescriptor'(${1:Val}) $2" -p53510 -tp53511 -a(S"'enc_IndAudStatisticsDescriptor'/1" -p53512 -S"'enc_IndAudStatisticsDescriptor'(${1:Val}) $2" -p53513 -tp53514 -a(S"'enc_IndAudStreamDescriptor'/1" -p53515 -S"'enc_IndAudStreamDescriptor'(${1:Val}) $2" -p53516 -tp53517 -a(S"'enc_IndAudStreamParms'/1" -p53518 -S"'enc_IndAudStreamParms'(${1:Val}) $2" -p53519 -tp53520 -a(S"'enc_IndAudTerminationStateDescriptor'/1" -p53521 -S"'enc_IndAudTerminationStateDescriptor'(${1:Val}) $2" -p53522 -tp53523 -a(S"'enc_IndAuditParameter'/1" -p53524 -S"'enc_IndAuditParameter'(${1:Val}) $2" -p53525 -tp53526 -a(S"'enc_LocalControlDescriptor'/1" -p53527 -S"'enc_LocalControlDescriptor'(${1:Val}) $2" -p53528 -tp53529 -a(S"'enc_LocalRemoteDescriptor'/1" -p53530 -S"'enc_LocalRemoteDescriptor'(${1:Val}) $2" -p53531 -tp53532 -a(S"'enc_MId'/1" -p53533 -S"'enc_MId'(${1:Val}) $2" -p53534 -tp53535 -a(S"'enc_MediaDescriptor'/1" -p53536 -S"'enc_MediaDescriptor'(${1:Val}) $2" -p53537 -tp53538 -a(S"'enc_MegacoMessage'/1" -p53539 -S"'enc_MegacoMessage'(${1:Val}) $2" -p53540 -tp53541 -a(S"'enc_Message'/1" -p53542 -S"'enc_Message'(${1:Val}) $2" -p53543 -tp53544 -a(S"'enc_ModemDescriptor'/1" -p53545 -S"'enc_ModemDescriptor'(${1:Val}) $2" -p53546 -tp53547 -a(S"'enc_ModemType'/1" -p53548 -S"'enc_ModemType'(${1:Val}) $2" -p53549 -tp53550 -a(S"'enc_MuxDescriptor'/1" -p53551 -S"'enc_MuxDescriptor'(${1:Val}) $2" -p53552 -tp53553 -a(S"'enc_MuxType'/1" -p53554 -S"'enc_MuxType'(${1:Val}) $2" -p53555 -tp53556 -a(S"'enc_Name'/1" -p53557 -S"'enc_Name'(${1:Val}) $2" -p53558 -tp53559 -a(S"'enc_NonStandardData'/1" -p53560 -S"'enc_NonStandardData'(${1:Val}) $2" -p53561 -tp53562 -a(S"'enc_NonStandardIdentifier'/1" -p53563 -S"'enc_NonStandardIdentifier'(${1:Val}) $2" -p53564 -tp53565 -a(S"'enc_NotifyCompletion'/1" -p53566 -S"'enc_NotifyCompletion'(${1:Val}) $2" -p53567 -tp53568 -a(S"'enc_NotifyReply'/1" -p53569 -S"'enc_NotifyReply'(${1:Val}) $2" -p53570 -tp53571 -a(S"'enc_NotifyRequest'/1" -p53572 -S"'enc_NotifyRequest'(${1:Val}) $2" -p53573 -tp53574 -a(S"'enc_ObservedEvent'/1" -p53575 -S"'enc_ObservedEvent'(${1:Val}) $2" -p53576 -tp53577 -a(S"'enc_ObservedEventsDescriptor'/1" -p53578 -S"'enc_ObservedEventsDescriptor'(${1:Val}) $2" -p53579 -tp53580 -a(S"'enc_PackagesDescriptor'/1" -p53581 -S"'enc_PackagesDescriptor'(${1:Val}) $2" -p53582 -tp53583 -a(S"'enc_PackagesItem'/1" -p53584 -S"'enc_PackagesItem'(${1:Val}) $2" -p53585 -tp53586 -a(S"'enc_PathName'/1" -p53587 -S"'enc_PathName'(${1:Val}) $2" -p53588 -tp53589 -a(S"'enc_PkgdName'/1" -p53590 -S"'enc_PkgdName'(${1:Val}) $2" -p53591 -tp53592 -a(S"'enc_PropertyGroup'/1" -p53593 -S"'enc_PropertyGroup'(${1:Val}) $2" -p53594 -tp53595 -a(S"'enc_PropertyParm'/1" -p53596 -S"'enc_PropertyParm'(${1:Val}) $2" -p53597 -tp53598 -a(S"'enc_Relation'/1" -p53599 -S"'enc_Relation'(${1:Val}) $2" -p53600 -tp53601 -a(S"'enc_RequestID'/1" -p53602 -S"'enc_RequestID'(${1:Val}) $2" -p53603 -tp53604 -a(S"'enc_RequestedActions'/1" -p53605 -S"'enc_RequestedActions'(${1:Val}) $2" -p53606 -tp53607 -a(S"'enc_RequestedEvent'/1" -p53608 -S"'enc_RequestedEvent'(${1:Val}) $2" -p53609 -tp53610 -a(S"'enc_SecondEventsDescriptor'/1" -p53611 -S"'enc_SecondEventsDescriptor'(${1:Val}) $2" -p53612 -tp53613 -a(S"'enc_SecondRequestedActions'/1" -p53614 -S"'enc_SecondRequestedActions'(${1:Val}) $2" -p53615 -tp53616 -a(S"'enc_SecondRequestedEvent'/1" -p53617 -S"'enc_SecondRequestedEvent'(${1:Val}) $2" -p53618 -tp53619 -a(S"'enc_SecurityParmIndex'/1" -p53620 -S"'enc_SecurityParmIndex'(${1:Val}) $2" -p53621 -tp53622 -a(S"'enc_SeqSigList'/1" -p53623 -S"'enc_SeqSigList'(${1:Val}) $2" -p53624 -tp53625 -a(S"'enc_SequenceNum'/1" -p53626 -S"'enc_SequenceNum'(${1:Val}) $2" -p53627 -tp53628 -a(S"'enc_ServiceChangeAddress'/1" -p53629 -S"'enc_ServiceChangeAddress'(${1:Val}) $2" -p53630 -tp53631 -a(S"'enc_ServiceChangeMethod'/1" -p53632 -S"'enc_ServiceChangeMethod'(${1:Val}) $2" -p53633 -tp53634 -a(S"'enc_ServiceChangeParm'/1" -p53635 -S"'enc_ServiceChangeParm'(${1:Val}) $2" -p53636 -tp53637 -a(S"'enc_ServiceChangeProfile'/1" -p53638 -S"'enc_ServiceChangeProfile'(${1:Val}) $2" -p53639 -tp53640 -a(S"'enc_ServiceChangeReply'/1" -p53641 -S"'enc_ServiceChangeReply'(${1:Val}) $2" -p53642 -tp53643 -a(S"'enc_ServiceChangeRequest'/1" -p53644 -S"'enc_ServiceChangeRequest'(${1:Val}) $2" -p53645 -tp53646 -a(S"'enc_ServiceChangeResParm'/1" -p53647 -S"'enc_ServiceChangeResParm'(${1:Val}) $2" -p53648 -tp53649 -a(S"'enc_ServiceChangeResult'/1" -p53650 -S"'enc_ServiceChangeResult'(${1:Val}) $2" -p53651 -tp53652 -a(S"'enc_ServiceState'/1" -p53653 -S"'enc_ServiceState'(${1:Val}) $2" -p53654 -tp53655 -a(S"'enc_SigParameter'/1" -p53656 -S"'enc_SigParameter'(${1:Val}) $2" -p53657 -tp53658 -a(S"'enc_Signal'/1" -p53659 -S"'enc_Signal'(${1:Val}) $2" -p53660 -tp53661 -a(S"'enc_SignalName'/1" -p53662 -S"'enc_SignalName'(${1:Val}) $2" -p53663 -tp53664 -a(S"'enc_SignalRequest'/1" -p53665 -S"'enc_SignalRequest'(${1:Val}) $2" -p53666 -tp53667 -a(S"'enc_SignalType'/1" -p53668 -S"'enc_SignalType'(${1:Val}) $2" -p53669 -tp53670 -a(S"'enc_SignalsDescriptor'/1" -p53671 -S"'enc_SignalsDescriptor'(${1:Val}) $2" -p53672 -tp53673 -a(S"'enc_StatisticsDescriptor'/1" -p53674 -S"'enc_StatisticsDescriptor'(${1:Val}) $2" -p53675 -tp53676 -a(S"'enc_StatisticsParameter'/1" -p53677 -S"'enc_StatisticsParameter'(${1:Val}) $2" -p53678 -tp53679 -a(S"'enc_StreamDescriptor'/1" -p53680 -S"'enc_StreamDescriptor'(${1:Val}) $2" -p53681 -tp53682 -a(S"'enc_StreamID'/1" -p53683 -S"'enc_StreamID'(${1:Val}) $2" -p53684 -tp53685 -a(S"'enc_StreamMode'/1" -p53686 -S"'enc_StreamMode'(${1:Val}) $2" -p53687 -tp53688 -a(S"'enc_StreamParms'/1" -p53689 -S"'enc_StreamParms'(${1:Val}) $2" -p53690 -tp53691 -a(S"'enc_SubtractRequest'/1" -p53692 -S"'enc_SubtractRequest'(${1:Val}) $2" -p53693 -tp53694 -a(S"'enc_TerminationAudit'/1" -p53695 -S"'enc_TerminationAudit'(${1:Val}) $2" -p53696 -tp53697 -a(S"'enc_TerminationID'/1" -p53698 -S"'enc_TerminationID'(${1:Val}) $2" -p53699 -tp53700 -a(S"'enc_TerminationIDList'/1" -p53701 -S"'enc_TerminationIDList'(${1:Val}) $2" -p53702 -tp53703 -a(S"'enc_TerminationStateDescriptor'/1" -p53704 -S"'enc_TerminationStateDescriptor'(${1:Val}) $2" -p53705 -tp53706 -a(S"'enc_TimeNotation'/1" -p53707 -S"'enc_TimeNotation'(${1:Val}) $2" -p53708 -tp53709 -a(S"'enc_TopologyRequest'/1" -p53710 -S"'enc_TopologyRequest'(${1:Val}) $2" -p53711 -tp53712 -a(S"'enc_Transaction'/1" -p53713 -S"'enc_Transaction'(${1:Val}) $2" -p53714 -tp53715 -a(S"'enc_TransactionAck'/1" -p53716 -S"'enc_TransactionAck'(${1:Val}) $2" -p53717 -tp53718 -a(S"'enc_TransactionId'/1" -p53719 -S"'enc_TransactionId'(${1:Val}) $2" -p53720 -tp53721 -a(S"'enc_TransactionPending'/1" -p53722 -S"'enc_TransactionPending'(${1:Val}) $2" -p53723 -tp53724 -a(S"'enc_TransactionReply'/1" -p53725 -S"'enc_TransactionReply'(${1:Val}) $2" -p53726 -tp53727 -a(S"'enc_TransactionRequest'/1" -p53728 -S"'enc_TransactionRequest'(${1:Val}) $2" -p53729 -tp53730 -a(S"'enc_TransactionResponseAck'/1" -p53731 -S"'enc_TransactionResponseAck'(${1:Val}) $2" -p53732 -tp53733 -a(S"'enc_Value'/1" -p53734 -S"'enc_Value'(${1:Val}) $2" -p53735 -tp53736 -a(S"'enc_WildcardField'/1" -p53737 -S"'enc_WildcardField'(${1:Val}) $2" -p53738 -tp53739 -a(S'decode/2' -p53740 -S'decode(${1:Type}, ${2:Data}) $3' -p53741 -tp53742 -a(S'decode_disp/2' -p53743 -S'decode_disp(${1:Type}, ${2:Data}) $3' -p53744 -tp53745 -a(S'encode/2' -p53746 -S'encode(${1:Type}, ${2:Data}) $3' -p53747 -tp53748 -a(S'encode_disp/2' -p53749 -S'encode_disp(${1:Type}, ${2:Data}) $3' -p53750 -tp53751 -a(S'encoding_rule/0' -p53752 -S'encoding_rule() $1' -p53753 -tp53754 -a(S'info/0' -p53755 -S'info() $1' -p53756 -tp53757 -asS'megaco_per_bin_media_gateway_control_v3' -p53758 -(lp53759 -(S"'dec_ActionReply'/2" -p53760 -S"'dec_ActionReply'(${1:Bytes}, ${2:Param2}) $3" -p53761 -tp53762 -a(S"'dec_ActionRequest'/2" -p53763 -S"'dec_ActionRequest'(${1:Bytes}, ${2:Param2}) $3" -p53764 -tp53765 -a(S"'dec_AmmDescriptor'/2" -p53766 -S"'dec_AmmDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53767 -tp53768 -a(S"'dec_AmmRequest'/2" -p53769 -S"'dec_AmmRequest'(${1:Bytes}, ${2:Param2}) $3" -p53770 -tp53771 -a(S"'dec_AmmsReply'/2" -p53772 -S"'dec_AmmsReply'(${1:Bytes}, ${2:Param2}) $3" -p53773 -tp53774 -a(S"'dec_AuditDescriptor'/2" -p53775 -S"'dec_AuditDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53776 -tp53777 -a(S"'dec_AuditReply'/2" -p53778 -S"'dec_AuditReply'(${1:Bytes}, ${2:Param2}) $3" -p53779 -tp53780 -a(S"'dec_AuditRequest'/2" -p53781 -S"'dec_AuditRequest'(${1:Bytes}, ${2:Param2}) $3" -p53782 -tp53783 -a(S"'dec_AuditResult'/2" -p53784 -S"'dec_AuditResult'(${1:Bytes}, ${2:Param2}) $3" -p53785 -tp53786 -a(S"'dec_AuditReturnParameter'/2" -p53787 -S"'dec_AuditReturnParameter'(${1:Bytes}, ${2:Param2}) $3" -p53788 -tp53789 -a(S"'dec_AuthData'/2" -p53790 -S"'dec_AuthData'(${1:Bytes}, ${2:Param2}) $3" -p53791 -tp53792 -a(S"'dec_AuthenticationHeader'/2" -p53793 -S"'dec_AuthenticationHeader'(${1:Bytes}, ${2:Param2}) $3" -p53794 -tp53795 -a(S"'dec_Command'/2" -p53796 -S"'dec_Command'(${1:Bytes}, ${2:Param2}) $3" -p53797 -tp53798 -a(S"'dec_CommandReply'/2" -p53799 -S"'dec_CommandReply'(${1:Bytes}, ${2:Param2}) $3" -p53800 -tp53801 -a(S"'dec_CommandRequest'/2" -p53802 -S"'dec_CommandRequest'(${1:Bytes}, ${2:Param2}) $3" -p53803 -tp53804 -a(S"'dec_ContextAttrAuditRequest'/2" -p53805 -S"'dec_ContextAttrAuditRequest'(${1:Bytes}, ${2:Param2}) $3" -p53806 -tp53807 -a(S"'dec_ContextID'/2" -p53808 -S"'dec_ContextID'(${1:Bytes}, ${2:Param2}) $3" -p53809 -tp53810 -a(S"'dec_ContextRequest'/2" -p53811 -S"'dec_ContextRequest'(${1:Bytes}, ${2:Param2}) $3" -p53812 -tp53813 -a(S"'dec_DigitMapDescriptor'/2" -p53814 -S"'dec_DigitMapDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53815 -tp53816 -a(S"'dec_DigitMapName'/2" -p53817 -S"'dec_DigitMapName'(${1:Bytes}, ${2:Param2}) $3" -p53818 -tp53819 -a(S"'dec_DigitMapValue'/2" -p53820 -S"'dec_DigitMapValue'(${1:Bytes}, ${2:Param2}) $3" -p53821 -tp53822 -a(S"'dec_DomainName'/2" -p53823 -S"'dec_DomainName'(${1:Bytes}, ${2:Param2}) $3" -p53824 -tp53825 -a(S"'dec_ErrorCode'/2" -p53826 -S"'dec_ErrorCode'(${1:Bytes}, ${2:Param2}) $3" -p53827 -tp53828 -a(S"'dec_ErrorDescriptor'/2" -p53829 -S"'dec_ErrorDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53830 -tp53831 -a(S"'dec_ErrorText'/2" -p53832 -S"'dec_ErrorText'(${1:Bytes}, ${2:Param2}) $3" -p53833 -tp53834 -a(S"'dec_EventBufferControl'/2" -p53835 -S"'dec_EventBufferControl'(${1:Bytes}, ${2:Param2}) $3" -p53836 -tp53837 -a(S"'dec_EventBufferDescriptor'/2" -p53838 -S"'dec_EventBufferDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53839 -tp53840 -a(S"'dec_EventDM'/2" -p53841 -S"'dec_EventDM'(${1:Bytes}, ${2:Param2}) $3" -p53842 -tp53843 -a(S"'dec_EventName'/2" -p53844 -S"'dec_EventName'(${1:Bytes}, ${2:Param2}) $3" -p53845 -tp53846 -a(S"'dec_EventParameter'/2" -p53847 -S"'dec_EventParameter'(${1:Bytes}, ${2:Param2}) $3" -p53848 -tp53849 -a(S"'dec_EventSpec'/2" -p53850 -S"'dec_EventSpec'(${1:Bytes}, ${2:Param2}) $3" -p53851 -tp53852 -a(S"'dec_EventsDescriptor'/2" -p53853 -S"'dec_EventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53854 -tp53855 -a(S"'dec_H221NonStandard'/2" -p53856 -S"'dec_H221NonStandard'(${1:Bytes}, ${2:Param2}) $3" -p53857 -tp53858 -a(S"'dec_IP4Address'/2" -p53859 -S"'dec_IP4Address'(${1:Bytes}, ${2:Param2}) $3" -p53860 -tp53861 -a(S"'dec_IP6Address'/2" -p53862 -S"'dec_IP6Address'(${1:Bytes}, ${2:Param2}) $3" -p53863 -tp53864 -a(S"'dec_IndAudDigitMapDescriptor'/2" -p53865 -S"'dec_IndAudDigitMapDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53866 -tp53867 -a(S"'dec_IndAudEventBufferDescriptor'/2" -p53868 -S"'dec_IndAudEventBufferDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53869 -tp53870 -a(S"'dec_IndAudEventsDescriptor'/2" -p53871 -S"'dec_IndAudEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53872 -tp53873 -a(S"'dec_IndAudLocalControlDescriptor'/2" -p53874 -S"'dec_IndAudLocalControlDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53875 -tp53876 -a(S"'dec_IndAudLocalRemoteDescriptor'/2" -p53877 -S"'dec_IndAudLocalRemoteDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53878 -tp53879 -a(S"'dec_IndAudMediaDescriptor'/2" -p53880 -S"'dec_IndAudMediaDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53881 -tp53882 -a(S"'dec_IndAudPackagesDescriptor'/2" -p53883 -S"'dec_IndAudPackagesDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53884 -tp53885 -a(S"'dec_IndAudPropertyGroup'/2" -p53886 -S"'dec_IndAudPropertyGroup'(${1:Bytes}, ${2:Param2}) $3" -p53887 -tp53888 -a(S"'dec_IndAudPropertyParm'/2" -p53889 -S"'dec_IndAudPropertyParm'(${1:Bytes}, ${2:Param2}) $3" -p53890 -tp53891 -a(S"'dec_IndAudSeqSigList'/2" -p53892 -S"'dec_IndAudSeqSigList'(${1:Bytes}, ${2:Param2}) $3" -p53893 -tp53894 -a(S"'dec_IndAudSignal'/2" -p53895 -S"'dec_IndAudSignal'(${1:Bytes}, ${2:Param2}) $3" -p53896 -tp53897 -a(S"'dec_IndAudSignalsDescriptor'/2" -p53898 -S"'dec_IndAudSignalsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53899 -tp53900 -a(S"'dec_IndAudStatisticsDescriptor'/2" -p53901 -S"'dec_IndAudStatisticsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53902 -tp53903 -a(S"'dec_IndAudStreamDescriptor'/2" -p53904 -S"'dec_IndAudStreamDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53905 -tp53906 -a(S"'dec_IndAudStreamParms'/2" -p53907 -S"'dec_IndAudStreamParms'(${1:Bytes}, ${2:Param2}) $3" -p53908 -tp53909 -a(S"'dec_IndAudTerminationStateDescriptor'/2" -p53910 -S"'dec_IndAudTerminationStateDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53911 -tp53912 -a(S"'dec_IndAuditParameter'/2" -p53913 -S"'dec_IndAuditParameter'(${1:Bytes}, ${2:Param2}) $3" -p53914 -tp53915 -a(S"'dec_LocalControlDescriptor'/2" -p53916 -S"'dec_LocalControlDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53917 -tp53918 -a(S"'dec_LocalRemoteDescriptor'/2" -p53919 -S"'dec_LocalRemoteDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53920 -tp53921 -a(S"'dec_MId'/2" -p53922 -S"'dec_MId'(${1:Bytes}, ${2:Param2}) $3" -p53923 -tp53924 -a(S"'dec_MediaDescriptor'/2" -p53925 -S"'dec_MediaDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53926 -tp53927 -a(S"'dec_MegacoMessage'/2" -p53928 -S"'dec_MegacoMessage'(${1:Bytes}, ${2:Param2}) $3" -p53929 -tp53930 -a(S"'dec_Message'/2" -p53931 -S"'dec_Message'(${1:Bytes}, ${2:Param2}) $3" -p53932 -tp53933 -a(S"'dec_ModemDescriptor'/2" -p53934 -S"'dec_ModemDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53935 -tp53936 -a(S"'dec_ModemType'/2" -p53937 -S"'dec_ModemType'(${1:Bytes}, ${2:Param2}) $3" -p53938 -tp53939 -a(S"'dec_MuxDescriptor'/2" -p53940 -S"'dec_MuxDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53941 -tp53942 -a(S"'dec_MuxType'/2" -p53943 -S"'dec_MuxType'(${1:Bytes}, ${2:Param2}) $3" -p53944 -tp53945 -a(S"'dec_Name'/2" -p53946 -S"'dec_Name'(${1:Bytes}, ${2:Param2}) $3" -p53947 -tp53948 -a(S"'dec_NonStandardData'/2" -p53949 -S"'dec_NonStandardData'(${1:Bytes}, ${2:Param2}) $3" -p53950 -tp53951 -a(S"'dec_NonStandardIdentifier'/2" -p53952 -S"'dec_NonStandardIdentifier'(${1:Bytes}, ${2:Param2}) $3" -p53953 -tp53954 -a(S"'dec_NotifyBehaviour'/2" -p53955 -S"'dec_NotifyBehaviour'(${1:Bytes}, ${2:Param2}) $3" -p53956 -tp53957 -a(S"'dec_NotifyCompletion'/2" -p53958 -S"'dec_NotifyCompletion'(${1:Bytes}, ${2:Param2}) $3" -p53959 -tp53960 -a(S"'dec_NotifyReply'/2" -p53961 -S"'dec_NotifyReply'(${1:Bytes}, ${2:Param2}) $3" -p53962 -tp53963 -a(S"'dec_NotifyRequest'/2" -p53964 -S"'dec_NotifyRequest'(${1:Bytes}, ${2:Param2}) $3" -p53965 -tp53966 -a(S"'dec_ObservedEvent'/2" -p53967 -S"'dec_ObservedEvent'(${1:Bytes}, ${2:Param2}) $3" -p53968 -tp53969 -a(S"'dec_ObservedEventsDescriptor'/2" -p53970 -S"'dec_ObservedEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53971 -tp53972 -a(S"'dec_PackagesDescriptor'/2" -p53973 -S"'dec_PackagesDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53974 -tp53975 -a(S"'dec_PackagesItem'/2" -p53976 -S"'dec_PackagesItem'(${1:Bytes}, ${2:Param2}) $3" -p53977 -tp53978 -a(S"'dec_PathName'/2" -p53979 -S"'dec_PathName'(${1:Bytes}, ${2:Param2}) $3" -p53980 -tp53981 -a(S"'dec_PkgdName'/2" -p53982 -S"'dec_PkgdName'(${1:Bytes}, ${2:Param2}) $3" -p53983 -tp53984 -a(S"'dec_PropertyGroup'/2" -p53985 -S"'dec_PropertyGroup'(${1:Bytes}, ${2:Param2}) $3" -p53986 -tp53987 -a(S"'dec_PropertyParm'/2" -p53988 -S"'dec_PropertyParm'(${1:Bytes}, ${2:Param2}) $3" -p53989 -tp53990 -a(S"'dec_RegulatedEmbeddedDescriptor'/2" -p53991 -S"'dec_RegulatedEmbeddedDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p53992 -tp53993 -a(S"'dec_Relation'/2" -p53994 -S"'dec_Relation'(${1:Bytes}, ${2:Param2}) $3" -p53995 -tp53996 -a(S"'dec_RequestID'/2" -p53997 -S"'dec_RequestID'(${1:Bytes}, ${2:Param2}) $3" -p53998 -tp53999 -a(S"'dec_RequestedActions'/2" -p54000 -S"'dec_RequestedActions'(${1:Bytes}, ${2:Param2}) $3" -p54001 -tp54002 -a(S"'dec_RequestedEvent'/2" -p54003 -S"'dec_RequestedEvent'(${1:Bytes}, ${2:Param2}) $3" -p54004 -tp54005 -a(S"'dec_SecondEventsDescriptor'/2" -p54006 -S"'dec_SecondEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p54007 -tp54008 -a(S"'dec_SecondRequestedActions'/2" -p54009 -S"'dec_SecondRequestedActions'(${1:Bytes}, ${2:Param2}) $3" -p54010 -tp54011 -a(S"'dec_SecondRequestedEvent'/2" -p54012 -S"'dec_SecondRequestedEvent'(${1:Bytes}, ${2:Param2}) $3" -p54013 -tp54014 -a(S"'dec_SecurityParmIndex'/2" -p54015 -S"'dec_SecurityParmIndex'(${1:Bytes}, ${2:Param2}) $3" -p54016 -tp54017 -a(S"'dec_SegmentNumber'/2" -p54018 -S"'dec_SegmentNumber'(${1:Bytes}, ${2:Param2}) $3" -p54019 -tp54020 -a(S"'dec_SegmentReply'/2" -p54021 -S"'dec_SegmentReply'(${1:Bytes}, ${2:Param2}) $3" -p54022 -tp54023 -a(S"'dec_SelectLogic'/2" -p54024 -S"'dec_SelectLogic'(${1:Bytes}, ${2:Param2}) $3" -p54025 -tp54026 -a(S"'dec_SeqSigList'/2" -p54027 -S"'dec_SeqSigList'(${1:Bytes}, ${2:Param2}) $3" -p54028 -tp54029 -a(S"'dec_SequenceNum'/2" -p54030 -S"'dec_SequenceNum'(${1:Bytes}, ${2:Param2}) $3" -p54031 -tp54032 -a(S"'dec_ServiceChangeAddress'/2" -p54033 -S"'dec_ServiceChangeAddress'(${1:Bytes}, ${2:Param2}) $3" -p54034 -tp54035 -a(S"'dec_ServiceChangeMethod'/2" -p54036 -S"'dec_ServiceChangeMethod'(${1:Bytes}, ${2:Param2}) $3" -p54037 -tp54038 -a(S"'dec_ServiceChangeParm'/2" -p54039 -S"'dec_ServiceChangeParm'(${1:Bytes}, ${2:Param2}) $3" -p54040 -tp54041 -a(S"'dec_ServiceChangeProfile'/2" -p54042 -S"'dec_ServiceChangeProfile'(${1:Bytes}, ${2:Param2}) $3" -p54043 -tp54044 -a(S"'dec_ServiceChangeReply'/2" -p54045 -S"'dec_ServiceChangeReply'(${1:Bytes}, ${2:Param2}) $3" -p54046 -tp54047 -a(S"'dec_ServiceChangeRequest'/2" -p54048 -S"'dec_ServiceChangeRequest'(${1:Bytes}, ${2:Param2}) $3" -p54049 -tp54050 -a(S"'dec_ServiceChangeResParm'/2" -p54051 -S"'dec_ServiceChangeResParm'(${1:Bytes}, ${2:Param2}) $3" -p54052 -tp54053 -a(S"'dec_ServiceChangeResult'/2" -p54054 -S"'dec_ServiceChangeResult'(${1:Bytes}, ${2:Param2}) $3" -p54055 -tp54056 -a(S"'dec_ServiceState'/2" -p54057 -S"'dec_ServiceState'(${1:Bytes}, ${2:Param2}) $3" -p54058 -tp54059 -a(S"'dec_SigParameter'/2" -p54060 -S"'dec_SigParameter'(${1:Bytes}, ${2:Param2}) $3" -p54061 -tp54062 -a(S"'dec_Signal'/2" -p54063 -S"'dec_Signal'(${1:Bytes}, ${2:Param2}) $3" -p54064 -tp54065 -a(S"'dec_SignalDirection'/2" -p54066 -S"'dec_SignalDirection'(${1:Bytes}, ${2:Param2}) $3" -p54067 -tp54068 -a(S"'dec_SignalName'/2" -p54069 -S"'dec_SignalName'(${1:Bytes}, ${2:Param2}) $3" -p54070 -tp54071 -a(S"'dec_SignalRequest'/2" -p54072 -S"'dec_SignalRequest'(${1:Bytes}, ${2:Param2}) $3" -p54073 -tp54074 -a(S"'dec_SignalType'/2" -p54075 -S"'dec_SignalType'(${1:Bytes}, ${2:Param2}) $3" -p54076 -tp54077 -a(S"'dec_SignalsDescriptor'/2" -p54078 -S"'dec_SignalsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p54079 -tp54080 -a(S"'dec_StatisticsDescriptor'/2" -p54081 -S"'dec_StatisticsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p54082 -tp54083 -a(S"'dec_StatisticsParameter'/2" -p54084 -S"'dec_StatisticsParameter'(${1:Bytes}, ${2:Param2}) $3" -p54085 -tp54086 -a(S"'dec_StreamDescriptor'/2" -p54087 -S"'dec_StreamDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p54088 -tp54089 -a(S"'dec_StreamID'/2" -p54090 -S"'dec_StreamID'(${1:Bytes}, ${2:Param2}) $3" -p54091 -tp54092 -a(S"'dec_StreamMode'/2" -p54093 -S"'dec_StreamMode'(${1:Bytes}, ${2:Param2}) $3" -p54094 -tp54095 -a(S"'dec_StreamParms'/2" -p54096 -S"'dec_StreamParms'(${1:Bytes}, ${2:Param2}) $3" -p54097 -tp54098 -a(S"'dec_SubtractRequest'/2" -p54099 -S"'dec_SubtractRequest'(${1:Bytes}, ${2:Param2}) $3" -p54100 -tp54101 -a(S"'dec_TermListAuditResult'/2" -p54102 -S"'dec_TermListAuditResult'(${1:Bytes}, ${2:Param2}) $3" -p54103 -tp54104 -a(S"'dec_TerminationAudit'/2" -p54105 -S"'dec_TerminationAudit'(${1:Bytes}, ${2:Param2}) $3" -p54106 -tp54107 -a(S"'dec_TerminationID'/2" -p54108 -S"'dec_TerminationID'(${1:Bytes}, ${2:Param2}) $3" -p54109 -tp54110 -a(S"'dec_TerminationIDList'/2" -p54111 -S"'dec_TerminationIDList'(${1:Bytes}, ${2:Param2}) $3" -p54112 -tp54113 -a(S"'dec_TerminationStateDescriptor'/2" -p54114 -S"'dec_TerminationStateDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p54115 -tp54116 -a(S"'dec_TimeNotation'/2" -p54117 -S"'dec_TimeNotation'(${1:Bytes}, ${2:Param2}) $3" -p54118 -tp54119 -a(S"'dec_TopologyRequest'/2" -p54120 -S"'dec_TopologyRequest'(${1:Bytes}, ${2:Param2}) $3" -p54121 -tp54122 -a(S"'dec_Transaction'/2" -p54123 -S"'dec_Transaction'(${1:Bytes}, ${2:Param2}) $3" -p54124 -tp54125 -a(S"'dec_TransactionAck'/2" -p54126 -S"'dec_TransactionAck'(${1:Bytes}, ${2:Param2}) $3" -p54127 -tp54128 -a(S"'dec_TransactionId'/2" -p54129 -S"'dec_TransactionId'(${1:Bytes}, ${2:Param2}) $3" -p54130 -tp54131 -a(S"'dec_TransactionPending'/2" -p54132 -S"'dec_TransactionPending'(${1:Bytes}, ${2:Param2}) $3" -p54133 -tp54134 -a(S"'dec_TransactionReply'/2" -p54135 -S"'dec_TransactionReply'(${1:Bytes}, ${2:Param2}) $3" -p54136 -tp54137 -a(S"'dec_TransactionRequest'/2" -p54138 -S"'dec_TransactionRequest'(${1:Bytes}, ${2:Param2}) $3" -p54139 -tp54140 -a(S"'dec_TransactionResponseAck'/2" -p54141 -S"'dec_TransactionResponseAck'(${1:Bytes}, ${2:Param2}) $3" -p54142 -tp54143 -a(S"'dec_Value'/2" -p54144 -S"'dec_Value'(${1:Bytes}, ${2:Param2}) $3" -p54145 -tp54146 -a(S"'dec_WildcardField'/2" -p54147 -S"'dec_WildcardField'(${1:Bytes}, ${2:Param2}) $3" -p54148 -tp54149 -a(S"'enc_ActionReply'/1" -p54150 -S"'enc_ActionReply'(${1:Val}) $2" -p54151 -tp54152 -a(S"'enc_ActionRequest'/1" -p54153 -S"'enc_ActionRequest'(${1:Val}) $2" -p54154 -tp54155 -a(S"'enc_AmmDescriptor'/1" -p54156 -S"'enc_AmmDescriptor'(${1:Val}) $2" -p54157 -tp54158 -a(S"'enc_AmmRequest'/1" -p54159 -S"'enc_AmmRequest'(${1:Val}) $2" -p54160 -tp54161 -a(S"'enc_AmmsReply'/1" -p54162 -S"'enc_AmmsReply'(${1:Val}) $2" -p54163 -tp54164 -a(S"'enc_AuditDescriptor'/1" -p54165 -S"'enc_AuditDescriptor'(${1:Val}) $2" -p54166 -tp54167 -a(S"'enc_AuditReply'/1" -p54168 -S"'enc_AuditReply'(${1:Val}) $2" -p54169 -tp54170 -a(S"'enc_AuditRequest'/1" -p54171 -S"'enc_AuditRequest'(${1:Val}) $2" -p54172 -tp54173 -a(S"'enc_AuditResult'/1" -p54174 -S"'enc_AuditResult'(${1:Val}) $2" -p54175 -tp54176 -a(S"'enc_AuditReturnParameter'/1" -p54177 -S"'enc_AuditReturnParameter'(${1:Val}) $2" -p54178 -tp54179 -a(S"'enc_AuthData'/1" -p54180 -S"'enc_AuthData'(${1:Val}) $2" -p54181 -tp54182 -a(S"'enc_AuthenticationHeader'/1" -p54183 -S"'enc_AuthenticationHeader'(${1:Val}) $2" -p54184 -tp54185 -a(S"'enc_Command'/1" -p54186 -S"'enc_Command'(${1:Val}) $2" -p54187 -tp54188 -a(S"'enc_CommandReply'/1" -p54189 -S"'enc_CommandReply'(${1:Val}) $2" -p54190 -tp54191 -a(S"'enc_CommandRequest'/1" -p54192 -S"'enc_CommandRequest'(${1:Val}) $2" -p54193 -tp54194 -a(S"'enc_ContextAttrAuditRequest'/1" -p54195 -S"'enc_ContextAttrAuditRequest'(${1:Val}) $2" -p54196 -tp54197 -a(S"'enc_ContextID'/1" -p54198 -S"'enc_ContextID'(${1:Val}) $2" -p54199 -tp54200 -a(S"'enc_ContextRequest'/1" -p54201 -S"'enc_ContextRequest'(${1:Val}) $2" -p54202 -tp54203 -a(S"'enc_DigitMapDescriptor'/1" -p54204 -S"'enc_DigitMapDescriptor'(${1:Val}) $2" -p54205 -tp54206 -a(S"'enc_DigitMapName'/1" -p54207 -S"'enc_DigitMapName'(${1:Val}) $2" -p54208 -tp54209 -a(S"'enc_DigitMapValue'/1" -p54210 -S"'enc_DigitMapValue'(${1:Val}) $2" -p54211 -tp54212 -a(S"'enc_DomainName'/1" -p54213 -S"'enc_DomainName'(${1:Val}) $2" -p54214 -tp54215 -a(S"'enc_ErrorCode'/1" -p54216 -S"'enc_ErrorCode'(${1:Val}) $2" -p54217 -tp54218 -a(S"'enc_ErrorDescriptor'/1" -p54219 -S"'enc_ErrorDescriptor'(${1:Val}) $2" -p54220 -tp54221 -a(S"'enc_ErrorText'/1" -p54222 -S"'enc_ErrorText'(${1:Val}) $2" -p54223 -tp54224 -a(S"'enc_EventBufferControl'/1" -p54225 -S"'enc_EventBufferControl'(${1:Val}) $2" -p54226 -tp54227 -a(S"'enc_EventBufferDescriptor'/1" -p54228 -S"'enc_EventBufferDescriptor'(${1:Val}) $2" -p54229 -tp54230 -a(S"'enc_EventDM'/1" -p54231 -S"'enc_EventDM'(${1:Val}) $2" -p54232 -tp54233 -a(S"'enc_EventName'/1" -p54234 -S"'enc_EventName'(${1:Val}) $2" -p54235 -tp54236 -a(S"'enc_EventParameter'/1" -p54237 -S"'enc_EventParameter'(${1:Val}) $2" -p54238 -tp54239 -a(S"'enc_EventSpec'/1" -p54240 -S"'enc_EventSpec'(${1:Val}) $2" -p54241 -tp54242 -a(S"'enc_EventsDescriptor'/1" -p54243 -S"'enc_EventsDescriptor'(${1:Val}) $2" -p54244 -tp54245 -a(S"'enc_H221NonStandard'/1" -p54246 -S"'enc_H221NonStandard'(${1:Val}) $2" -p54247 -tp54248 -a(S"'enc_IP4Address'/1" -p54249 -S"'enc_IP4Address'(${1:Val}) $2" -p54250 -tp54251 -a(S"'enc_IP6Address'/1" -p54252 -S"'enc_IP6Address'(${1:Val}) $2" -p54253 -tp54254 -a(S"'enc_IndAudDigitMapDescriptor'/1" -p54255 -S"'enc_IndAudDigitMapDescriptor'(${1:Val}) $2" -p54256 -tp54257 -a(S"'enc_IndAudEventBufferDescriptor'/1" -p54258 -S"'enc_IndAudEventBufferDescriptor'(${1:Val}) $2" -p54259 -tp54260 -a(S"'enc_IndAudEventsDescriptor'/1" -p54261 -S"'enc_IndAudEventsDescriptor'(${1:Val}) $2" -p54262 -tp54263 -a(S"'enc_IndAudLocalControlDescriptor'/1" -p54264 -S"'enc_IndAudLocalControlDescriptor'(${1:Val}) $2" -p54265 -tp54266 -a(S"'enc_IndAudLocalRemoteDescriptor'/1" -p54267 -S"'enc_IndAudLocalRemoteDescriptor'(${1:Val}) $2" -p54268 -tp54269 -a(S"'enc_IndAudMediaDescriptor'/1" -p54270 -S"'enc_IndAudMediaDescriptor'(${1:Val}) $2" -p54271 -tp54272 -a(S"'enc_IndAudPackagesDescriptor'/1" -p54273 -S"'enc_IndAudPackagesDescriptor'(${1:Val}) $2" -p54274 -tp54275 -a(S"'enc_IndAudPropertyGroup'/1" -p54276 -S"'enc_IndAudPropertyGroup'(${1:Val}) $2" -p54277 -tp54278 -a(S"'enc_IndAudPropertyParm'/1" -p54279 -S"'enc_IndAudPropertyParm'(${1:Val}) $2" -p54280 -tp54281 -a(S"'enc_IndAudSeqSigList'/1" -p54282 -S"'enc_IndAudSeqSigList'(${1:Val}) $2" -p54283 -tp54284 -a(S"'enc_IndAudSignal'/1" -p54285 -S"'enc_IndAudSignal'(${1:Val}) $2" -p54286 -tp54287 -a(S"'enc_IndAudSignalsDescriptor'/1" -p54288 -S"'enc_IndAudSignalsDescriptor'(${1:Val}) $2" -p54289 -tp54290 -a(S"'enc_IndAudStatisticsDescriptor'/1" -p54291 -S"'enc_IndAudStatisticsDescriptor'(${1:Val}) $2" -p54292 -tp54293 -a(S"'enc_IndAudStreamDescriptor'/1" -p54294 -S"'enc_IndAudStreamDescriptor'(${1:Val}) $2" -p54295 -tp54296 -a(S"'enc_IndAudStreamParms'/1" -p54297 -S"'enc_IndAudStreamParms'(${1:Val}) $2" -p54298 -tp54299 -a(S"'enc_IndAudTerminationStateDescriptor'/1" -p54300 -S"'enc_IndAudTerminationStateDescriptor'(${1:Val}) $2" -p54301 -tp54302 -a(S"'enc_IndAuditParameter'/1" -p54303 -S"'enc_IndAuditParameter'(${1:Val}) $2" -p54304 -tp54305 -a(S"'enc_LocalControlDescriptor'/1" -p54306 -S"'enc_LocalControlDescriptor'(${1:Val}) $2" -p54307 -tp54308 -a(S"'enc_LocalRemoteDescriptor'/1" -p54309 -S"'enc_LocalRemoteDescriptor'(${1:Val}) $2" -p54310 -tp54311 -a(S"'enc_MId'/1" -p54312 -S"'enc_MId'(${1:Val}) $2" -p54313 -tp54314 -a(S"'enc_MediaDescriptor'/1" -p54315 -S"'enc_MediaDescriptor'(${1:Val}) $2" -p54316 -tp54317 -a(S"'enc_MegacoMessage'/1" -p54318 -S"'enc_MegacoMessage'(${1:Val}) $2" -p54319 -tp54320 -a(S"'enc_Message'/1" -p54321 -S"'enc_Message'(${1:Val}) $2" -p54322 -tp54323 -a(S"'enc_ModemDescriptor'/1" -p54324 -S"'enc_ModemDescriptor'(${1:Val}) $2" -p54325 -tp54326 -a(S"'enc_ModemType'/1" -p54327 -S"'enc_ModemType'(${1:Val}) $2" -p54328 -tp54329 -a(S"'enc_MuxDescriptor'/1" -p54330 -S"'enc_MuxDescriptor'(${1:Val}) $2" -p54331 -tp54332 -a(S"'enc_MuxType'/1" -p54333 -S"'enc_MuxType'(${1:Val}) $2" -p54334 -tp54335 -a(S"'enc_Name'/1" -p54336 -S"'enc_Name'(${1:Val}) $2" -p54337 -tp54338 -a(S"'enc_NonStandardData'/1" -p54339 -S"'enc_NonStandardData'(${1:Val}) $2" -p54340 -tp54341 -a(S"'enc_NonStandardIdentifier'/1" -p54342 -S"'enc_NonStandardIdentifier'(${1:Val}) $2" -p54343 -tp54344 -a(S"'enc_NotifyBehaviour'/1" -p54345 -S"'enc_NotifyBehaviour'(${1:Val}) $2" -p54346 -tp54347 -a(S"'enc_NotifyCompletion'/1" -p54348 -S"'enc_NotifyCompletion'(${1:Val}) $2" -p54349 -tp54350 -a(S"'enc_NotifyReply'/1" -p54351 -S"'enc_NotifyReply'(${1:Val}) $2" -p54352 -tp54353 -a(S"'enc_NotifyRequest'/1" -p54354 -S"'enc_NotifyRequest'(${1:Val}) $2" -p54355 -tp54356 -a(S"'enc_ObservedEvent'/1" -p54357 -S"'enc_ObservedEvent'(${1:Val}) $2" -p54358 -tp54359 -a(S"'enc_ObservedEventsDescriptor'/1" -p54360 -S"'enc_ObservedEventsDescriptor'(${1:Val}) $2" -p54361 -tp54362 -a(S"'enc_PackagesDescriptor'/1" -p54363 -S"'enc_PackagesDescriptor'(${1:Val}) $2" -p54364 -tp54365 -a(S"'enc_PackagesItem'/1" -p54366 -S"'enc_PackagesItem'(${1:Val}) $2" -p54367 -tp54368 -a(S"'enc_PathName'/1" -p54369 -S"'enc_PathName'(${1:Val}) $2" -p54370 -tp54371 -a(S"'enc_PkgdName'/1" -p54372 -S"'enc_PkgdName'(${1:Val}) $2" -p54373 -tp54374 -a(S"'enc_PropertyGroup'/1" -p54375 -S"'enc_PropertyGroup'(${1:Val}) $2" -p54376 -tp54377 -a(S"'enc_PropertyParm'/1" -p54378 -S"'enc_PropertyParm'(${1:Val}) $2" -p54379 -tp54380 -a(S"'enc_RegulatedEmbeddedDescriptor'/1" -p54381 -S"'enc_RegulatedEmbeddedDescriptor'(${1:Val}) $2" -p54382 -tp54383 -a(S"'enc_Relation'/1" -p54384 -S"'enc_Relation'(${1:Val}) $2" -p54385 -tp54386 -a(S"'enc_RequestID'/1" -p54387 -S"'enc_RequestID'(${1:Val}) $2" -p54388 -tp54389 -a(S"'enc_RequestedActions'/1" -p54390 -S"'enc_RequestedActions'(${1:Val}) $2" -p54391 -tp54392 -a(S"'enc_RequestedEvent'/1" -p54393 -S"'enc_RequestedEvent'(${1:Val}) $2" -p54394 -tp54395 -a(S"'enc_SecondEventsDescriptor'/1" -p54396 -S"'enc_SecondEventsDescriptor'(${1:Val}) $2" -p54397 -tp54398 -a(S"'enc_SecondRequestedActions'/1" -p54399 -S"'enc_SecondRequestedActions'(${1:Val}) $2" -p54400 -tp54401 -a(S"'enc_SecondRequestedEvent'/1" -p54402 -S"'enc_SecondRequestedEvent'(${1:Val}) $2" -p54403 -tp54404 -a(S"'enc_SecurityParmIndex'/1" -p54405 -S"'enc_SecurityParmIndex'(${1:Val}) $2" -p54406 -tp54407 -a(S"'enc_SegmentNumber'/1" -p54408 -S"'enc_SegmentNumber'(${1:Val}) $2" -p54409 -tp54410 -a(S"'enc_SegmentReply'/1" -p54411 -S"'enc_SegmentReply'(${1:Val}) $2" -p54412 -tp54413 -a(S"'enc_SelectLogic'/1" -p54414 -S"'enc_SelectLogic'(${1:Val}) $2" -p54415 -tp54416 -a(S"'enc_SeqSigList'/1" -p54417 -S"'enc_SeqSigList'(${1:Val}) $2" -p54418 -tp54419 -a(S"'enc_SequenceNum'/1" -p54420 -S"'enc_SequenceNum'(${1:Val}) $2" -p54421 -tp54422 -a(S"'enc_ServiceChangeAddress'/1" -p54423 -S"'enc_ServiceChangeAddress'(${1:Val}) $2" -p54424 -tp54425 -a(S"'enc_ServiceChangeMethod'/1" -p54426 -S"'enc_ServiceChangeMethod'(${1:Val}) $2" -p54427 -tp54428 -a(S"'enc_ServiceChangeParm'/1" -p54429 -S"'enc_ServiceChangeParm'(${1:Val}) $2" -p54430 -tp54431 -a(S"'enc_ServiceChangeProfile'/1" -p54432 -S"'enc_ServiceChangeProfile'(${1:Val}) $2" -p54433 -tp54434 -a(S"'enc_ServiceChangeReply'/1" -p54435 -S"'enc_ServiceChangeReply'(${1:Val}) $2" -p54436 -tp54437 -a(S"'enc_ServiceChangeRequest'/1" -p54438 -S"'enc_ServiceChangeRequest'(${1:Val}) $2" -p54439 -tp54440 -a(S"'enc_ServiceChangeResParm'/1" -p54441 -S"'enc_ServiceChangeResParm'(${1:Val}) $2" -p54442 -tp54443 -a(S"'enc_ServiceChangeResult'/1" -p54444 -S"'enc_ServiceChangeResult'(${1:Val}) $2" -p54445 -tp54446 -a(S"'enc_ServiceState'/1" -p54447 -S"'enc_ServiceState'(${1:Val}) $2" -p54448 -tp54449 -a(S"'enc_SigParameter'/1" -p54450 -S"'enc_SigParameter'(${1:Val}) $2" -p54451 -tp54452 -a(S"'enc_Signal'/1" -p54453 -S"'enc_Signal'(${1:Val}) $2" -p54454 -tp54455 -a(S"'enc_SignalDirection'/1" -p54456 -S"'enc_SignalDirection'(${1:Val}) $2" -p54457 -tp54458 -a(S"'enc_SignalName'/1" -p54459 -S"'enc_SignalName'(${1:Val}) $2" -p54460 -tp54461 -a(S"'enc_SignalRequest'/1" -p54462 -S"'enc_SignalRequest'(${1:Val}) $2" -p54463 -tp54464 -a(S"'enc_SignalType'/1" -p54465 -S"'enc_SignalType'(${1:Val}) $2" -p54466 -tp54467 -a(S"'enc_SignalsDescriptor'/1" -p54468 -S"'enc_SignalsDescriptor'(${1:Val}) $2" -p54469 -tp54470 -a(S"'enc_StatisticsDescriptor'/1" -p54471 -S"'enc_StatisticsDescriptor'(${1:Val}) $2" -p54472 -tp54473 -a(S"'enc_StatisticsParameter'/1" -p54474 -S"'enc_StatisticsParameter'(${1:Val}) $2" -p54475 -tp54476 -a(S"'enc_StreamDescriptor'/1" -p54477 -S"'enc_StreamDescriptor'(${1:Val}) $2" -p54478 -tp54479 -a(S"'enc_StreamID'/1" -p54480 -S"'enc_StreamID'(${1:Val}) $2" -p54481 -tp54482 -a(S"'enc_StreamMode'/1" -p54483 -S"'enc_StreamMode'(${1:Val}) $2" -p54484 -tp54485 -a(S"'enc_StreamParms'/1" -p54486 -S"'enc_StreamParms'(${1:Val}) $2" -p54487 -tp54488 -a(S"'enc_SubtractRequest'/1" -p54489 -S"'enc_SubtractRequest'(${1:Val}) $2" -p54490 -tp54491 -a(S"'enc_TermListAuditResult'/1" -p54492 -S"'enc_TermListAuditResult'(${1:Val}) $2" -p54493 -tp54494 -a(S"'enc_TerminationAudit'/1" -p54495 -S"'enc_TerminationAudit'(${1:Val}) $2" -p54496 -tp54497 -a(S"'enc_TerminationID'/1" -p54498 -S"'enc_TerminationID'(${1:Val}) $2" -p54499 -tp54500 -a(S"'enc_TerminationIDList'/1" -p54501 -S"'enc_TerminationIDList'(${1:Val}) $2" -p54502 -tp54503 -a(S"'enc_TerminationStateDescriptor'/1" -p54504 -S"'enc_TerminationStateDescriptor'(${1:Val}) $2" -p54505 -tp54506 -a(S"'enc_TimeNotation'/1" -p54507 -S"'enc_TimeNotation'(${1:Val}) $2" -p54508 -tp54509 -a(S"'enc_TopologyRequest'/1" -p54510 -S"'enc_TopologyRequest'(${1:Val}) $2" -p54511 -tp54512 -a(S"'enc_Transaction'/1" -p54513 -S"'enc_Transaction'(${1:Val}) $2" -p54514 -tp54515 -a(S"'enc_TransactionAck'/1" -p54516 -S"'enc_TransactionAck'(${1:Val}) $2" -p54517 -tp54518 -a(S"'enc_TransactionId'/1" -p54519 -S"'enc_TransactionId'(${1:Val}) $2" -p54520 -tp54521 -a(S"'enc_TransactionPending'/1" -p54522 -S"'enc_TransactionPending'(${1:Val}) $2" -p54523 -tp54524 -a(S"'enc_TransactionReply'/1" -p54525 -S"'enc_TransactionReply'(${1:Val}) $2" -p54526 -tp54527 -a(S"'enc_TransactionRequest'/1" -p54528 -S"'enc_TransactionRequest'(${1:Val}) $2" -p54529 -tp54530 -a(S"'enc_TransactionResponseAck'/1" -p54531 -S"'enc_TransactionResponseAck'(${1:Val}) $2" -p54532 -tp54533 -a(S"'enc_Value'/1" -p54534 -S"'enc_Value'(${1:Val}) $2" -p54535 -tp54536 -a(S"'enc_WildcardField'/1" -p54537 -S"'enc_WildcardField'(${1:Val}) $2" -p54538 -tp54539 -a(S'decode/2' -p54540 -S'decode(${1:Type}, ${2:Data}) $3' -p54541 -tp54542 -a(S'decode_disp/2' -p54543 -S'decode_disp(${1:Type}, ${2:Data}) $3' -p54544 -tp54545 -a(S'encode/2' -p54546 -S'encode(${1:Type}, ${2:Data}) $3' -p54547 -tp54548 -a(S'encode_disp/2' -p54549 -S'encode_disp(${1:Type}, ${2:Data}) $3' -p54550 -tp54551 -a(S'encoding_rule/0' -p54552 -S'encoding_rule() $1' -p54553 -tp54554 -a(S'info/0' -p54555 -S'info() $1' -p54556 -tp54557 -asS'CosTransactions_HeuristicRollback' -p54558 -(lp54559 -(S'id/0' -p54560 -S'id() $1' -p54561 -tp54562 -a(S'name/0' -p54563 -S'name() $1' -p54564 -tp54565 -a(S'tc/0' -p54566 -S'tc() $1' -p54567 -tp54568 -asS'snmpa_authentication_service' -p54569 -(lp54570 -(S'behaviour_info/1' -p54571 -S'behaviour_info(${1:Param1}) $2' -p54572 -tp54573 -asS'snmpa_error_report' -p54574 -(lp54575 -(S'behaviour_info/1' -p54576 -S'behaviour_info(${1:Param1}) $2' -p54577 -tp54578 -asS'wxAuiNotebook' -p54579 -(lp54580 -(S'addPage/3' -p54581 -S'addPage(${1:This}, ${2:Page}, ${3:Caption}) $4' -p54582 -tp54583 -a(S'addPage/4' -p54584 -S'addPage(${1:This}, ${2:Page}, ${3:Caption}, ${4:Param4}) $5' -p54585 -tp54586 -a(S'cacheBestSize/2' -p54587 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p54588 -tp54589 -a(S'captureMouse/1' -p54590 -S'captureMouse(${1:This}) $2' -p54591 -tp54592 -a(S'center/1' -p54593 -S'center(${1:This}) $2' -p54594 -tp54595 -a(S'center/2' -p54596 -S'center(${1:This}, ${2:Options}) $3' -p54597 -tp54598 -a(S'centerOnParent/1' -p54599 -S'centerOnParent(${1:This}) $2' -p54600 -tp54601 -a(S'centerOnParent/2' -p54602 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p54603 -tp54604 -a(S'centre/1' -p54605 -S'centre(${1:This}) $2' -p54606 -tp54607 -a(S'centre/2' -p54608 -S'centre(${1:This}, ${2:Options}) $3' -p54609 -tp54610 -a(S'centreOnParent/1' -p54611 -S'centreOnParent(${1:This}) $2' -p54612 -tp54613 -a(S'centreOnParent/2' -p54614 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p54615 -tp54616 -a(S'clearBackground/1' -p54617 -S'clearBackground(${1:This}) $2' -p54618 -tp54619 -a(S'clientToScreen/2' -p54620 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p54621 -tp54622 -a(S'clientToScreen/3' -p54623 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p54624 -tp54625 -a(S'close/1' -p54626 -S'close(${1:This}) $2' -p54627 -tp54628 -a(S'close/2' -p54629 -S'close(${1:This}, ${2:Options}) $3' -p54630 -tp54631 -a(S'connect/2' -p54632 -S'connect(${1:This}, ${2:EventType}) $3' -p54633 -tp54634 -a(S'connect/3' -p54635 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p54636 -tp54637 -a(S'convertDialogToPixels/2' -p54638 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p54639 -tp54640 -a(S'convertPixelsToDialog/2' -p54641 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p54642 -tp54643 -a(S'create/2' -p54644 -S'create(${1:This}, ${2:Parent}) $3' -p54645 -tp54646 -a(S'create/3' -p54647 -S'create(${1:This}, ${2:Parent}, ${3:Param3}) $4' -p54648 -tp54649 -a(S'deletePage/2' -p54650 -S'deletePage(${1:This}, ${2:Page}) $3' -p54651 -tp54652 -a(S'destroy/1' -p54653 -S'destroy(${1:This}) $2' -p54654 -tp54655 -a(S'destroyChildren/1' -p54656 -S'destroyChildren(${1:This}) $2' -p54657 -tp54658 -a(S'disable/1' -p54659 -S'disable(${1:This}) $2' -p54660 -tp54661 -a(S'disconnect/1' -p54662 -S'disconnect(${1:This}) $2' -p54663 -tp54664 -a(S'disconnect/2' -p54665 -S'disconnect(${1:This}, ${2:EventType}) $3' -p54666 -tp54667 -a(S'disconnect/3' -p54668 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p54669 -tp54670 -a(S'enable/1' -p54671 -S'enable(${1:This}) $2' -p54672 -tp54673 -a(S'enable/2' -p54674 -S'enable(${1:This}, ${2:Options}) $3' -p54675 -tp54676 -a(S'findWindow/2' -p54677 -S'findWindow(${1:This}, ${2:Winid}) $3' -p54678 -tp54679 -a(S'fit/1' -p54680 -S'fit(${1:This}) $2' -p54681 -tp54682 -a(S'fitInside/1' -p54683 -S'fitInside(${1:This}) $2' -p54684 -tp54685 -a(S'freeze/1' -p54686 -S'freeze(${1:This}) $2' -p54687 -tp54688 -a(S'getAcceleratorTable/1' -p54689 -S'getAcceleratorTable(${1:This}) $2' -p54690 -tp54691 -a(S'getArtProvider/1' -p54692 -S'getArtProvider(${1:This}) $2' -p54693 -tp54694 -a(S'getBackgroundColour/1' -p54695 -S'getBackgroundColour(${1:This}) $2' -p54696 -tp54697 -a(S'getBackgroundStyle/1' -p54698 -S'getBackgroundStyle(${1:This}) $2' -p54699 -tp54700 -a(S'getBestSize/1' -p54701 -S'getBestSize(${1:This}) $2' -p54702 -tp54703 -a(S'getCaret/1' -p54704 -S'getCaret(${1:This}) $2' -p54705 -tp54706 -a(S'getCharHeight/1' -p54707 -S'getCharHeight(${1:This}) $2' -p54708 -tp54709 -a(S'getCharWidth/1' -p54710 -S'getCharWidth(${1:This}) $2' -p54711 -tp54712 -a(S'getChildren/1' -p54713 -S'getChildren(${1:This}) $2' -p54714 -tp54715 -a(S'getClientSize/1' -p54716 -S'getClientSize(${1:This}) $2' -p54717 -tp54718 -a(S'getContainingSizer/1' -p54719 -S'getContainingSizer(${1:This}) $2' -p54720 -tp54721 -a(S'getCursor/1' -p54722 -S'getCursor(${1:This}) $2' -p54723 -tp54724 -a(S'getDropTarget/1' -p54725 -S'getDropTarget(${1:This}) $2' -p54726 -tp54727 -a(S'getEventHandler/1' -p54728 -S'getEventHandler(${1:This}) $2' -p54729 -tp54730 -a(S'getExtraStyle/1' -p54731 -S'getExtraStyle(${1:This}) $2' -p54732 -tp54733 -a(S'getFont/1' -p54734 -S'getFont(${1:This}) $2' -p54735 -tp54736 -a(S'getForegroundColour/1' -p54737 -S'getForegroundColour(${1:This}) $2' -p54738 -tp54739 -a(S'getGrandParent/1' -p54740 -S'getGrandParent(${1:This}) $2' -p54741 -tp54742 -a(S'getHandle/1' -p54743 -S'getHandle(${1:This}) $2' -p54744 -tp54745 -a(S'getHelpText/1' -p54746 -S'getHelpText(${1:This}) $2' -p54747 -tp54748 -a(S'getId/1' -p54749 -S'getId(${1:This}) $2' -p54750 -tp54751 -a(S'getLabel/1' -p54752 -S'getLabel(${1:This}) $2' -p54753 -tp54754 -a(S'getMaxSize/1' -p54755 -S'getMaxSize(${1:This}) $2' -p54756 -tp54757 -a(S'getMinSize/1' -p54758 -S'getMinSize(${1:This}) $2' -p54759 -tp54760 -a(S'getName/1' -p54761 -S'getName(${1:This}) $2' -p54762 -tp54763 -a(S'getPage/2' -p54764 -S'getPage(${1:This}, ${2:Page_idx}) $3' -p54765 -tp54766 -a(S'getPageBitmap/2' -p54767 -S'getPageBitmap(${1:This}, ${2:Page_idx}) $3' -p54768 -tp54769 -a(S'getPageCount/1' -p54770 -S'getPageCount(${1:This}) $2' -p54771 -tp54772 -a(S'getPageIndex/2' -p54773 -S'getPageIndex(${1:This}, ${2:Page_wnd}) $3' -p54774 -tp54775 -a(S'getPageText/2' -p54776 -S'getPageText(${1:This}, ${2:Page_idx}) $3' -p54777 -tp54778 -a(S'getParent/1' -p54779 -S'getParent(${1:This}) $2' -p54780 -tp54781 -a(S'getPosition/1' -p54782 -S'getPosition(${1:This}) $2' -p54783 -tp54784 -a(S'getRect/1' -p54785 -S'getRect(${1:This}) $2' -p54786 -tp54787 -a(S'getScreenPosition/1' -p54788 -S'getScreenPosition(${1:This}) $2' -p54789 -tp54790 -a(S'getScreenRect/1' -p54791 -S'getScreenRect(${1:This}) $2' -p54792 -tp54793 -a(S'getScrollPos/2' -p54794 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p54795 -tp54796 -a(S'getScrollRange/2' -p54797 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p54798 -tp54799 -a(S'getScrollThumb/2' -p54800 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p54801 -tp54802 -a(S'getSelection/1' -p54803 -S'getSelection(${1:This}) $2' -p54804 -tp54805 -a(S'getSize/1' -p54806 -S'getSize(${1:This}) $2' -p54807 -tp54808 -a(S'getSizer/1' -p54809 -S'getSizer(${1:This}) $2' -p54810 -tp54811 -a(S'getTextExtent/2' -p54812 -S'getTextExtent(${1:This}, ${2:String}) $3' -p54813 -tp54814 -a(S'getTextExtent/3' -p54815 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p54816 -tp54817 -a(S'getToolTip/1' -p54818 -S'getToolTip(${1:This}) $2' -p54819 -tp54820 -a(S'getUpdateRegion/1' -p54821 -S'getUpdateRegion(${1:This}) $2' -p54822 -tp54823 -a(S'getVirtualSize/1' -p54824 -S'getVirtualSize(${1:This}) $2' -p54825 -tp54826 -a(S'getWindowStyleFlag/1' -p54827 -S'getWindowStyleFlag(${1:This}) $2' -p54828 -tp54829 -a(S'getWindowVariant/1' -p54830 -S'getWindowVariant(${1:This}) $2' -p54831 -tp54832 -a(S'hasCapture/1' -p54833 -S'hasCapture(${1:This}) $2' -p54834 -tp54835 -a(S'hasScrollbar/2' -p54836 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p54837 -tp54838 -a(S'hasTransparentBackground/1' -p54839 -S'hasTransparentBackground(${1:This}) $2' -p54840 -tp54841 -a(S'hide/1' -p54842 -S'hide(${1:This}) $2' -p54843 -tp54844 -a(S'inheritAttributes/1' -p54845 -S'inheritAttributes(${1:This}) $2' -p54846 -tp54847 -a(S'initDialog/1' -p54848 -S'initDialog(${1:This}) $2' -p54849 -tp54850 -a(S'insertPage/4' -p54851 -S'insertPage(${1:This}, ${2:Page_idx}, ${3:Page}, ${4:Caption}) $5' -p54852 -tp54853 -a(S'insertPage/5' -p54854 -S'insertPage(${1:This}, ${2:Page_idx}, ${3:Page}, ${4:Caption}, ${5:Param5}) $6' -p54855 -tp54856 -a(S'invalidateBestSize/1' -p54857 -S'invalidateBestSize(${1:This}) $2' -p54858 -tp54859 -a(S'isEnabled/1' -p54860 -S'isEnabled(${1:This}) $2' -p54861 -tp54862 -a(S'isExposed/2' -p54863 -S'isExposed(${1:This}, ${2:Pt}) $3' -p54864 -tp54865 -a(S'isExposed/3' -p54866 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p54867 -tp54868 -a(S'isExposed/5' -p54869 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p54870 -tp54871 -a(S'isRetained/1' -p54872 -S'isRetained(${1:This}) $2' -p54873 -tp54874 -a(S'isShown/1' -p54875 -S'isShown(${1:This}) $2' -p54876 -tp54877 -a(S'isTopLevel/1' -p54878 -S'isTopLevel(${1:This}) $2' -p54879 -tp54880 -a(S'layout/1' -p54881 -S'layout(${1:This}) $2' -p54882 -tp54883 -a(S'lineDown/1' -p54884 -S'lineDown(${1:This}) $2' -p54885 -tp54886 -a(S'lineUp/1' -p54887 -S'lineUp(${1:This}) $2' -p54888 -tp54889 -a(S'lower/1' -p54890 -S'lower(${1:This}) $2' -p54891 -tp54892 -a(S'makeModal/1' -p54893 -S'makeModal(${1:This}) $2' -p54894 -tp54895 -a(S'makeModal/2' -p54896 -S'makeModal(${1:This}, ${2:Options}) $3' -p54897 -tp54898 -a(S'move/2' -p54899 -S'move(${1:This}, ${2:Pt}) $3' -p54900 -tp54901 -a(S'move/3' -p54902 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p54903 -tp54904 -a(S'move/4' -p54905 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p54906 -tp54907 -a(S'moveAfterInTabOrder/2' -p54908 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p54909 -tp54910 -a(S'moveBeforeInTabOrder/2' -p54911 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p54912 -tp54913 -a(S'navigate/1' -p54914 -S'navigate(${1:This}) $2' -p54915 -tp54916 -a(S'navigate/2' -p54917 -S'navigate(${1:This}, ${2:Options}) $3' -p54918 -tp54919 -a(S'new/0' -p54920 -S'new() $1' -p54921 -tp54922 -a(S'new/1' -p54923 -S'new(${1:Parent}) $2' -p54924 -tp54925 -a(S'new/2' -p54926 -S'new(${1:Parent}, ${2:Param2}) $3' -p54927 -tp54928 -a(S'pageDown/1' -p54929 -S'pageDown(${1:This}) $2' -p54930 -tp54931 -a(S'pageUp/1' -p54932 -S'pageUp(${1:This}) $2' -p54933 -tp54934 -a(S'parent_class/1' -p54935 -S'parent_class(${1:Param1}) $2' -p54936 -tp54937 -a(S'popEventHandler/1' -p54938 -S'popEventHandler(${1:This}) $2' -p54939 -tp54940 -a(S'popEventHandler/2' -p54941 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p54942 -tp54943 -a(S'popupMenu/2' -p54944 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p54945 -tp54946 -a(S'popupMenu/3' -p54947 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p54948 -tp54949 -a(S'popupMenu/4' -p54950 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p54951 -tp54952 -a(S'raise/1' -p54953 -S'raise(${1:This}) $2' -p54954 -tp54955 -a(S'refresh/1' -p54956 -S'refresh(${1:This}) $2' -p54957 -tp54958 -a(S'refresh/2' -p54959 -S'refresh(${1:This}, ${2:Options}) $3' -p54960 -tp54961 -a(S'refreshRect/2' -p54962 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p54963 -tp54964 -a(S'refreshRect/3' -p54965 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p54966 -tp54967 -a(S'releaseMouse/1' -p54968 -S'releaseMouse(${1:This}) $2' -p54969 -tp54970 -a(S'removeChild/2' -p54971 -S'removeChild(${1:This}, ${2:Child}) $3' -p54972 -tp54973 -a(S'removePage/2' -p54974 -S'removePage(${1:This}, ${2:Page}) $3' -p54975 -tp54976 -a(S'reparent/2' -p54977 -S'reparent(${1:This}, ${2:NewParent}) $3' -p54978 -tp54979 -a(S'screenToClient/1' -p54980 -S'screenToClient(${1:This}) $2' -p54981 -tp54982 -a(S'screenToClient/2' -p54983 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p54984 -tp54985 -a(S'scrollLines/2' -p54986 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p54987 -tp54988 -a(S'scrollPages/2' -p54989 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p54990 -tp54991 -a(S'scrollWindow/3' -p54992 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p54993 -tp54994 -a(S'scrollWindow/4' -p54995 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p54996 -tp54997 -a(S'setAcceleratorTable/2' -p54998 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p54999 -tp55000 -a(S'setArtProvider/2' -p55001 -S'setArtProvider(${1:This}, ${2:Art}) $3' -p55002 -tp55003 -a(S'setAutoLayout/2' -p55004 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p55005 -tp55006 -a(S'setBackgroundColour/2' -p55007 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p55008 -tp55009 -a(S'setBackgroundStyle/2' -p55010 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p55011 -tp55012 -a(S'setCaret/2' -p55013 -S'setCaret(${1:This}, ${2:Caret}) $3' -p55014 -tp55015 -a(S'setClientSize/2' -p55016 -S'setClientSize(${1:This}, ${2:Size}) $3' -p55017 -tp55018 -a(S'setClientSize/3' -p55019 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p55020 -tp55021 -a(S'setContainingSizer/2' -p55022 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p55023 -tp55024 -a(S'setCursor/2' -p55025 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p55026 -tp55027 -a(S'setDropTarget/2' -p55028 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p55029 -tp55030 -a(S'setExtraStyle/2' -p55031 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p55032 -tp55033 -a(S'setFocus/1' -p55034 -S'setFocus(${1:This}) $2' -p55035 -tp55036 -a(S'setFocusFromKbd/1' -p55037 -S'setFocusFromKbd(${1:This}) $2' -p55038 -tp55039 -a(S'setFont/2' -p55040 -S'setFont(${1:This}, ${2:Font}) $3' -p55041 -tp55042 -a(S'setForegroundColour/2' -p55043 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p55044 -tp55045 -a(S'setHelpText/2' -p55046 -S'setHelpText(${1:This}, ${2:Text}) $3' -p55047 -tp55048 -a(S'setId/2' -p55049 -S'setId(${1:This}, ${2:Winid}) $3' -p55050 -tp55051 -a(S'setLabel/2' -p55052 -S'setLabel(${1:This}, ${2:Label}) $3' -p55053 -tp55054 -a(S'setMaxSize/2' -p55055 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p55056 -tp55057 -a(S'setMinSize/2' -p55058 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p55059 -tp55060 -a(S'setName/2' -p55061 -S'setName(${1:This}, ${2:Name}) $3' -p55062 -tp55063 -a(S'setOwnBackgroundColour/2' -p55064 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p55065 -tp55066 -a(S'setOwnFont/2' -p55067 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p55068 -tp55069 -a(S'setOwnForegroundColour/2' -p55070 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p55071 -tp55072 -a(S'setPageBitmap/3' -p55073 -S'setPageBitmap(${1:This}, ${2:Page}, ${3:Bitmap}) $4' -p55074 -tp55075 -a(S'setPageText/3' -p55076 -S'setPageText(${1:This}, ${2:Page}, ${3:Text}) $4' -p55077 -tp55078 -a(S'setPalette/2' -p55079 -S'setPalette(${1:This}, ${2:Pal}) $3' -p55080 -tp55081 -a(S'setScrollPos/3' -p55082 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p55083 -tp55084 -a(S'setScrollPos/4' -p55085 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p55086 -tp55087 -a(S'setScrollbar/5' -p55088 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p55089 -tp55090 -a(S'setScrollbar/6' -p55091 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p55092 -tp55093 -a(S'setSelection/2' -p55094 -S'setSelection(${1:This}, ${2:New_page}) $3' -p55095 -tp55096 -a(S'setSize/2' -p55097 -S'setSize(${1:This}, ${2:Rect}) $3' -p55098 -tp55099 -a(S'setSize/3' -p55100 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p55101 -tp55102 -a(S'setSize/5' -p55103 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p55104 -tp55105 -a(S'setSize/6' -p55106 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p55107 -tp55108 -a(S'setSizeHints/2' -p55109 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p55110 -tp55111 -a(S'setSizeHints/3' -p55112 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p55113 -tp55114 -a(S'setSizeHints/4' -p55115 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p55116 -tp55117 -a(S'setSizer/2' -p55118 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p55119 -tp55120 -a(S'setSizer/3' -p55121 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p55122 -tp55123 -a(S'setSizerAndFit/2' -p55124 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p55125 -tp55126 -a(S'setSizerAndFit/3' -p55127 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p55128 -tp55129 -a(S'setTabCtrlHeight/2' -p55130 -S'setTabCtrlHeight(${1:This}, ${2:Height}) $3' -p55131 -tp55132 -a(S'setThemeEnabled/2' -p55133 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p55134 -tp55135 -a(S'setToolTip/2' -p55136 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p55137 -tp55138 -a(S'setUniformBitmapSize/2' -p55139 -S'setUniformBitmapSize(${1:This}, ${2:Size}) $3' -p55140 -tp55141 -a(S'setVirtualSize/2' -p55142 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p55143 -tp55144 -a(S'setVirtualSize/3' -p55145 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p55146 -tp55147 -a(S'setVirtualSizeHints/2' -p55148 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p55149 -tp55150 -a(S'setVirtualSizeHints/3' -p55151 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p55152 -tp55153 -a(S'setVirtualSizeHints/4' -p55154 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p55155 -tp55156 -a(S'setWindowStyle/2' -p55157 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p55158 -tp55159 -a(S'setWindowStyleFlag/2' -p55160 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p55161 -tp55162 -a(S'setWindowVariant/2' -p55163 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p55164 -tp55165 -a(S'shouldInheritColours/1' -p55166 -S'shouldInheritColours(${1:This}) $2' -p55167 -tp55168 -a(S'show/1' -p55169 -S'show(${1:This}) $2' -p55170 -tp55171 -a(S'show/2' -p55172 -S'show(${1:This}, ${2:Options}) $3' -p55173 -tp55174 -a(S'thaw/1' -p55175 -S'thaw(${1:This}) $2' -p55176 -tp55177 -a(S'transferDataFromWindow/1' -p55178 -S'transferDataFromWindow(${1:This}) $2' -p55179 -tp55180 -a(S'transferDataToWindow/1' -p55181 -S'transferDataToWindow(${1:This}) $2' -p55182 -tp55183 -a(S'update/1' -p55184 -S'update(${1:This}) $2' -p55185 -tp55186 -a(S'updateWindowUI/1' -p55187 -S'updateWindowUI(${1:This}) $2' -p55188 -tp55189 -a(S'updateWindowUI/2' -p55190 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p55191 -tp55192 -a(S'validate/1' -p55193 -S'validate(${1:This}) $2' -p55194 -tp55195 -a(S'warpPointer/3' -p55196 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p55197 -tp55198 -asS'mnesia_controller' -p55199 -(lp55200 -(S'add_active_replica/2' -p55201 -S'add_active_replica(${1:Tab}, ${2:Node}) $3' -p55202 -tp55203 -a(S'add_active_replica/3' -p55204 -S'add_active_replica(${1:Tab}, ${2:Node}, ${3:Param3}) $4' -p55205 -tp55206 -a(S'add_active_replica/4' -p55207 -S'add_active_replica(${1:Tab}, ${2:Node}, ${3:Storage}, ${4:AccessMode}) $5' -p55208 -tp55209 -a(S'async_dump_log/1' -p55210 -S'async_dump_log(${1:InitBy}) $2' -p55211 -tp55212 -a(S'block_controller/0' -p55213 -S'block_controller() $1' -p55214 -tp55215 -a(S'block_table/1' -p55216 -S'block_table(${1:Tab}) $2' -p55217 -tp55218 -a(S'call/1' -p55219 -S'call(${1:Msg}) $2' -p55220 -tp55221 -a(S'cast/1' -p55222 -S'cast(${1:Msg}) $2' -p55223 -tp55224 -a(S'change_table_access_mode/1' -p55225 -S'change_table_access_mode(${1:Cs}) $2' -p55226 -tp55227 -a(S'change_table_majority/1' -p55228 -S'change_table_majority(${1:Cs}) $2' -p55229 -tp55230 -a(S'code_change/3' -p55231 -S'code_change(${1:Param1}, ${2:State0}, ${3:Param3}) $4' -p55232 -tp55233 -a(S'connect_nodes/1' -p55234 -S'connect_nodes(${1:Ns}) $2' -p55235 -tp55236 -a(S'connect_nodes/2' -p55237 -S'connect_nodes(${1:Ns}, ${2:UserFun}) $3' -p55238 -tp55239 -a(S'connect_nodes2/3' -p55240 -S'connect_nodes2(${1:Father}, ${2:Ns}, ${3:UserFun}) $4' -p55241 -tp55242 -a(S'create_table/1' -p55243 -S'create_table(${1:Tab}) $2' -p55244 -tp55245 -a(S'del_active_replica/2' -p55246 -S'del_active_replica(${1:Tab}, ${2:Node}) $3' -p55247 -tp55248 -a(S'dump_and_reply/2' -p55249 -S'dump_and_reply(${1:ReplyTo}, ${2:Worker}) $3' -p55250 -tp55251 -a(S'force_load_table/1' -p55252 -S'force_load_table(${1:Tab}) $2' -p55253 -tp55254 -a(S'get_cstructs/0' -p55255 -S'get_cstructs() $1' -p55256 -tp55257 -a(S'get_disc_copy/1' -p55258 -S'get_disc_copy(${1:Tab}) $2' -p55259 -tp55260 -a(S'get_info/1' -p55261 -S'get_info(${1:Timeout}) $2' -p55262 -tp55263 -a(S'get_network_copy/2' -p55264 -S'get_network_copy(${1:Tab}, ${2:Cs}) $3' -p55265 -tp55266 -a(S'get_remote_cstructs/0' -p55267 -S'get_remote_cstructs() $1' -p55268 -tp55269 -a(S'get_workers/1' -p55270 -S'get_workers(${1:Timeout}) $2' -p55271 -tp55272 -a(S'handle_call/3' -p55273 -S'handle_call(${1:Msg}, ${2:From}, ${3:State}) $4' -p55274 -tp55275 -a(S'handle_cast/2' -p55276 -S'handle_cast(${1:Msg}, ${2:State}) $3' -p55277 -tp55278 -a(S'handle_info/2' -p55279 -S'handle_info(${1:Msg}, ${2:State}) $3' -p55280 -tp55281 -a(S'i_have_tab/1' -p55282 -S'i_have_tab(${1:Tab}) $2' -p55283 -tp55284 -a(S'info/0' -p55285 -S'info() $1' -p55286 -tp55287 -a(S'init/1' -p55288 -S'init(${1:Param1}) $2' -p55289 -tp55290 -a(S'load_and_reply/2' -p55291 -S'load_and_reply(${1:ReplyTo}, ${2:Worker}) $3' -p55292 -tp55293 -a(S'master_nodes_updated/2' -p55294 -S'master_nodes_updated(${1:Tab}, ${2:Masters}) $3' -p55295 -tp55296 -a(S'merge_schema/0' -p55297 -S'merge_schema() $1' -p55298 -tp55299 -a(S'mnesia_down/1' -p55300 -S'mnesia_down(${1:Node}) $2' -p55301 -tp55302 -a(S'release_schema_commit_lock/0' -p55303 -S'release_schema_commit_lock() $1' -p55304 -tp55305 -a(S'schedule_late_disc_load/2' -p55306 -S'schedule_late_disc_load(${1:Tabs}, ${2:Reason}) $3' -p55307 -tp55308 -a(S'send_and_reply/2' -p55309 -S'send_and_reply(${1:ReplyTo}, ${2:Worker}) $3' -p55310 -tp55311 -a(S'start/0' -p55312 -S'start() $1' -p55313 -tp55314 -a(S'start_remote_sender/4' -p55315 -S'start_remote_sender(${1:Node}, ${2:Tab}, ${3:Receiver}, ${4:Storage}) $5' -p55316 -tp55317 -a(S'sync_and_block_table_whereabouts/4' -p55318 -S'sync_and_block_table_whereabouts() $1' -p55319 -tp55320 -a(S'sync_del_table_copy_whereabouts/2' -p55321 -S'sync_del_table_copy_whereabouts() $1' -p55322 -tp55323 -a(S'sync_dump_log/1' -p55324 -S'sync_dump_log(${1:InitBy}) $2' -p55325 -tp55326 -a(S'terminate/2' -p55327 -S'terminate(${1:Reason}, ${2:State}) $3' -p55328 -tp55329 -a(S'unannounce_add_table_copy/2' -p55330 -S'unannounce_add_table_copy(${1:Tab}, ${2:To}) $3' -p55331 -tp55332 -a(S'unblock_controller/0' -p55333 -S'unblock_controller() $1' -p55334 -tp55335 -a(S'unblock_table/1' -p55336 -S'unblock_table(${1:Tab}) $2' -p55337 -tp55338 -a(S'update/1' -p55339 -S'update(${1:Fun}) $2' -p55340 -tp55341 -a(S'wait_for_schema_commit_lock/0' -p55342 -S'wait_for_schema_commit_lock() $1' -p55343 -tp55344 -a(S'wait_for_tables/2' -p55345 -S'wait_for_tables(${1:Tabs}, ${2:Timeout}) $3' -p55346 -tp55347 -a(S'wait_for_tables_init/2' -p55348 -S'wait_for_tables_init(${1:From}, ${2:Tabs}) $3' -p55349 -tp55350 -asS'dict' -p55351 -(lp55352 -(S'append/3' -p55353 -S'append(${1:Key}, ${2:Value}, ${3:Dict1}) $4' -p55354 -tp55355 -a(S'append_list/3' -p55356 -S'append_list(${1:Key}, ${2:ValList}, ${3:Dict1}) $4' -p55357 -tp55358 -a(S'erase/2' -p55359 -S'erase(${1:Key}, ${2:Dict1}) $3' -p55360 -tp55361 -a(S'fetch/2' -p55362 -S'fetch(${1:Key}, ${2:Dict}) $3' -p55363 -tp55364 -a(S'fetch_keys/1' -p55365 -S'fetch_keys(${1:Dict}) $2' -p55366 -tp55367 -a(S'filter/2' -p55368 -S'filter(${1:Pred}, ${2:Dict1}) $3' -p55369 -tp55370 -a(S'find/2' -p55371 -S'find(${1:Key}, ${2:Dict}) $3' -p55372 -tp55373 -a(S'fold/3' -p55374 -S'fold(${1:Fun}, ${2:Val}, ${3:List}) $4' -p55375 -tp55376 -a(S'from_list/1' -p55377 -S'from_list(${1:List}) $2' -p55378 -tp55379 -a(S'is_key/2' -p55380 -S'is_key(${1:Key}, ${2:Dict}) $3' -p55381 -tp55382 -a(S'map/2' -p55383 -S'map(${1:Fun}, ${2:Dict1}) $3' -p55384 -tp55385 -a(S'merge/3' -p55386 -S'merge(${1:Fun}, ${2:Dict1}, ${3:Dict2}) $4' -p55387 -tp55388 -a(S'new/0' -p55389 -S'new() $1' -p55390 -tp55391 -a(S'size/1' -p55392 -S'size(${1:Dict}) $2' -p55393 -tp55394 -a(S'store/3' -p55395 -S'store(${1:Key}, ${2:Value}, ${3:Dict1}) $4' -p55396 -tp55397 -a(S'to_list/1' -p55398 -S'to_list(${1:Dict}) $2' -p55399 -tp55400 -a(S'update/3' -p55401 -S'update(${1:Key}, ${2:Fun}, ${3:Dict1}) $4' -p55402 -tp55403 -a(S'update/4' -p55404 -S'update(${1:Key}, ${2:Fun}, ${3:Initial}, ${4:Dict1}) $5' -p55405 -tp55406 -a(S'update_counter/3' -p55407 -S'update_counter(${1:Key}, ${2:Increment}, ${3:Dict1}) $4' -p55408 -tp55409 -asS'snmpm_usm' -p55410 -(lp55411 -(S'generate_outgoing_msg/5' -p55412 -S'generate_outgoing_msg(${1:Message}, ${2:SecEngineID}, ${3:SecName}, ${4:SecData}, ${5:SecLevel}) $6' -p55413 -tp55414 -a(S'init/0' -p55415 -S'init() $1' -p55416 -tp55417 -a(S'process_incoming_msg/4' -p55418 -S'process_incoming_msg(${1:Packet}, ${2:Data}, ${3:SecParams}, ${4:SecLevel}) $5' -p55419 -tp55420 -a(S'reset/0' -p55421 -S'reset() $1' -p55422 -tp55423 -asS'tv_pd_scale' -p55424 -(lp55425 -(S'init_scale/2' -p55426 -S'init_scale(${1:FrameP}, ${2:ScaleP}) $3' -p55427 -tp55428 -a(S'resize_scale/2' -p55429 -S'resize_scale(${1:FrameP}, ${2:ScaleP}) $3' -p55430 -tp55431 -a(S'set_scale_pos/3' -p55432 -S'set_scale_pos(${1:Param1}, ${2:NewPos}, ${3:ScaleP}) $4' -p55433 -tp55434 -a(S'set_scale_range/3' -p55435 -S'set_scale_range(${1:Param1}, ${2:Range}, ${3:ScaleP}) $4' -p55436 -tp55437 -asS'ssl' -p55438 -(lp55439 -(S'cipher_suites/0' -p55440 -S'cipher_suites() $1' -p55441 -tp55442 -a(S'cipher_suites/1' -p55443 -S'cipher_suites(${1:Param1}) $2' -p55444 -tp55445 -a(S'close/1' -p55446 -S'close(${1:Param1}) $2' -p55447 -tp55448 -a(S'connect/2' -p55449 -S'connect(${1:Socket}, ${2:SslOptions}) $3' -p55450 -tp55451 -a(S'connect/3' -p55452 -S'connect(${1:Socket}, ${2:SslOptions0}, ${3:Timeout}) $4' -p55453 -tp55454 -a(S'connect/4' -p55455 -S'connect(${1:Host}, ${2:Port}, ${3:Options}, ${4:Timeout}) $5' -p55456 -tp55457 -a(S'connection_info/1' -p55458 -S'connection_info(${1:Param1}) $2' -p55459 -tp55460 -a(S'controlling_process/2' -p55461 -S'controlling_process(${1:Param1}, ${2:NewOwner}) $3' -p55462 -tp55463 -a(S'format_error/1' -p55464 -S'format_error(${1:Reason}) $2' -p55465 -tp55466 -a(S'getopts/2' -p55467 -S'getopts(${1:Param1}, ${2:OptionTags}) $3' -p55468 -tp55469 -a(S'listen/2' -p55470 -S'listen(${1:Port}, ${2:Options0}) $3' -p55471 -tp55472 -a(S'peercert/1' -p55473 -S'peercert(${1:Param1}) $2' -p55474 -tp55475 -a(S'peername/1' -p55476 -S'peername(${1:Param1}) $2' -p55477 -tp55478 -a(S'pid/1' -p55479 -S'pid(${1:Pid}) $2' -p55480 -tp55481 -a(S'prf/5' -p55482 -S'prf() $1' -p55483 -tp55484 -a(S'recv/2' -p55485 -S'recv(${1:Socket}, ${2:Length}) $3' -p55486 -tp55487 -a(S'recv/3' -p55488 -S'recv(${1:Param1}, ${2:Length}, ${3:Timeout}) $4' -p55489 -tp55490 -a(S'renegotiate/1' -p55491 -S'renegotiate(${1:Param1}) $2' -p55492 -tp55493 -a(S'send/2' -p55494 -S'send(${1:Param1}, ${2:Data}) $3' -p55495 -tp55496 -a(S'session_info/1' -p55497 -S'session_info(${1:Param1}) $2' -p55498 -tp55499 -a(S'setopts/2' -p55500 -S'setopts(${1:Param1}, ${2:Options0}) $3' -p55501 -tp55502 -a(S'shutdown/2' -p55503 -S'shutdown(${1:Param1}, ${2:How}) $3' -p55504 -tp55505 -a(S'sockname/1' -p55506 -S'sockname(${1:Param1}) $2' -p55507 -tp55508 -a(S'ssl_accept/1' -p55509 -S'ssl_accept(${1:ListenSocket}) $2' -p55510 -tp55511 -a(S'ssl_accept/2' -p55512 -S'ssl_accept(${1:Socket}, ${2:Timeout}) $3' -p55513 -tp55514 -a(S'ssl_accept/3' -p55515 -S'ssl_accept(${1:Socket}, ${2:SslOptions}, ${3:Timeout}) $4' -p55516 -tp55517 -a(S'start/0' -p55518 -S'start() $1' -p55519 -tp55520 -a(S'start/1' -p55521 -S'start(${1:Type}) $2' -p55522 -tp55523 -a(S'stop/0' -p55524 -S'stop() $1' -p55525 -tp55526 -a(S'transport_accept/1' -p55527 -S'transport_accept(${1:ListenSocket}) $2' -p55528 -tp55529 -a(S'transport_accept/2' -p55530 -S'transport_accept(${1:Param1}, ${2:Timeout}) $3' -p55531 -tp55532 -a(S'versions/0' -p55533 -S'versions() $1' -p55534 -tp55535 -asS'ssh' -p55536 -(lp55537 -(S'channel_info/3' -p55538 -S'channel_info(${1:ConnectionRef}, ${2:ChannelId}, ${3:Options}) $4' -p55539 -tp55540 -a(S'close/1' -p55541 -S'close(${1:ConnectionRef}) $2' -p55542 -tp55543 -a(S'connect/3' -p55544 -S'connect(${1:Host}, ${2:Port}, ${3:Options}) $4' -p55545 -tp55546 -a(S'connect/4' -p55547 -S'connect(${1:Host}, ${2:Port}, ${3:Options}, ${4:Timeout}) $5' -p55548 -tp55549 -a(S'connection_info/2' -p55550 -S'connection_info(${1:ConnectionRef}, ${2:Options}) $3' -p55551 -tp55552 -a(S'daemon/1' -p55553 -S'daemon(${1:Port}) $2' -p55554 -tp55555 -a(S'daemon/2' -p55556 -S'daemon(${1:Port}, ${2:Options}) $3' -p55557 -tp55558 -a(S'daemon/3' -p55559 -S'daemon(${1:HostAddr}, ${2:Port}, ${3:Options0}) $4' -p55560 -tp55561 -a(S'shell/1' -p55562 -S'shell(${1:Host}) $2' -p55563 -tp55564 -a(S'shell/2' -p55565 -S'shell(${1:Host}, ${2:Options}) $3' -p55566 -tp55567 -a(S'shell/3' -p55568 -S'shell(${1:Host}, ${2:Port}, ${3:Options}) $4' -p55569 -tp55570 -a(S'sign_data/2' -p55571 -S'sign_data(${1:Data}, ${2:Algorithm}) $3' -p55572 -tp55573 -a(S'start/0' -p55574 -S'start() $1' -p55575 -tp55576 -a(S'start/1' -p55577 -S'start(${1:Type}) $2' -p55578 -tp55579 -a(S'stop/0' -p55580 -S'stop() $1' -p55581 -tp55582 -a(S'stop_daemon/1' -p55583 -S'stop_daemon(${1:SysSup}) $2' -p55584 -tp55585 -a(S'stop_daemon/2' -p55586 -S'stop_daemon(${1:Address}, ${2:Port}) $3' -p55587 -tp55588 -a(S'stop_listener/1' -p55589 -S'stop_listener(${1:SysSup}) $2' -p55590 -tp55591 -a(S'stop_listener/2' -p55592 -S'stop_listener(${1:Address}, ${2:Port}) $3' -p55593 -tp55594 -a(S'verify_data/3' -p55595 -S'verify_data(${1:Data}, ${2:Signature}, ${3:Algorithm}) $4' -p55596 -tp55597 -asS'gen' -p55598 -(lp55599 -(S'call/3' -p55600 -S'call(${1:Process}, ${2:Label}, ${3:Request}) $4' -p55601 -tp55602 -a(S'call/4' -p55603 -S'call(${1:Process}, ${2:Label}, ${3:Request}, ${4:Timeout}) $5' -p55604 -tp55605 -a(S'debug_options/1' -p55606 -S'debug_options(${1:Opts}) $2' -p55607 -tp55608 -a(S'format_status_header/2' -p55609 -S'format_status_header(${1:TagLine}, ${2:Pid}) $3' -p55610 -tp55611 -a(S'init_it/6' -p55612 -S'init_it(${1:GenMod}, ${2:Starter}, ${3:Parent}, ${4:Mod}, ${5:Args}, ${6:Options}) $7' -p55613 -tp55614 -a(S'init_it/7' -p55615 -S'init_it(${1:GenMod}, ${2:Starter}, ${3:Parent}, ${4:Name}, ${5:Mod}, ${6:Args}, ${7:Options}) $8' -p55616 -tp55617 -a(S'reply/2' -p55618 -S'reply(${1:Param1}, ${2:Reply}) $3' -p55619 -tp55620 -a(S'start/5' -p55621 -S'start(${1:GenMod}, ${2:LinkP}, ${3:Mod}, ${4:Args}, ${5:Options}) $6' -p55622 -tp55623 -a(S'start/6' -p55624 -S'start(${1:GenMod}, ${2:LinkP}, ${3:Name}, ${4:Mod}, ${5:Args}, ${6:Options}) $7' -p55625 -tp55626 -asS'oe_CosNotification' -p55627 -(lp55628 -(S'oe_dependency/0' -p55629 -S'oe_dependency() $1' -p55630 -tp55631 -a(S'oe_get_module/5' -p55632 -S'oe_get_module(${1:OE_IFR}, ${2:OE_Parent}, ${3:ID}, ${4:Name}, ${5:Version}) $6' -p55633 -tp55634 -a(S'oe_register/0' -p55635 -S'oe_register() $1' -p55636 -tp55637 -a(S'oe_unregister/0' -p55638 -S'oe_unregister() $1' -p55639 -tp55640 -asS'httpc_sup' -p55641 -(lp55642 -(S'init/1' -p55643 -S'init(${1:Param1}) $2' -p55644 -tp55645 -a(S'start_link/1' -p55646 -S'start_link(${1:HttpcServices}) $2' -p55647 -tp55648 -asS'icparse' -p55649 -(lp55650 -(S'format_error/1' -p55651 -S'format_error(${1:Message}) $2' -p55652 -tp55653 -a(S'parse/1' -p55654 -S'parse(${1:Tokens}) $2' -p55655 -tp55656 -a(S'parse_and_scan/1' -p55657 -S'parse_and_scan(${1:Param1}) $2' -p55658 -tp55659 -asS'orber_iiop_insup' -p55660 -(lp55661 -(S'init/1' -p55662 -S'init(${1:Param1}) $2' -p55663 -tp55664 -a(S'start/2' -p55665 -S'start(${1:Param1}, ${2:Opts}) $3' -p55666 -tp55667 -a(S'start_connection/4' -p55668 -S'start_connection(${1:Type}, ${2:Socket}, ${3:Ref}, ${4:ProxyOptions}) $5' -p55669 -tp55670 -a(S'terminate/2' -p55671 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p55672 -tp55673 -asS'gen_tcp' -p55674 -(lp55675 -(S'accept/1' -p55676 -S'accept(${1:ListenSocket}) $2' -p55677 -tp55678 -a(S'accept/2' -p55679 -S'accept(${1:ListenSocket}, ${2:Timeout}) $3' -p55680 -tp55681 -a(S'close/1' -p55682 -S'close(${1:Socket}) $2' -p55683 -tp55684 -a(S'connect/3' -p55685 -S'connect(${1:Address}, ${2:Port}, ${3:Options}) $4' -p55686 -tp55687 -a(S'connect/4' -p55688 -S'connect(${1:Address}, ${2:Port}, ${3:Options}, ${4:Timeout}) $5' -p55689 -tp55690 -a(S'controlling_process/2' -p55691 -S'controlling_process(${1:Socket}, ${2:Pid}) $3' -p55692 -tp55693 -a(S'fdopen/2' -p55694 -S'fdopen(${1:Fd}, ${2:Opts}) $3' -p55695 -tp55696 -a(S'listen/2' -p55697 -S'listen(${1:Port}, ${2:Options}) $3' -p55698 -tp55699 -a(S'recv/2' -p55700 -S'recv(${1:Socket}, ${2:Length}) $3' -p55701 -tp55702 -a(S'recv/3' -p55703 -S'recv(${1:Socket}, ${2:Length}, ${3:Timeout}) $4' -p55704 -tp55705 -a(S'send/2' -p55706 -S'send(${1:Socket}, ${2:Packet}) $3' -p55707 -tp55708 -a(S'shutdown/2' -p55709 -S'shutdown(${1:Socket}, ${2:How}) $3' -p55710 -tp55711 -a(S'unrecv/2' -p55712 -S'unrecv(${1:S}, ${2:Data}) $3' -p55713 -tp55714 -asS'wxHtmlLinkEvent' -p55715 -(lp55716 -(S'getClientData/1' -p55717 -S'getClientData(${1:This}) $2' -p55718 -tp55719 -a(S'getExtraLong/1' -p55720 -S'getExtraLong(${1:This}) $2' -p55721 -tp55722 -a(S'getId/1' -p55723 -S'getId(${1:This}) $2' -p55724 -tp55725 -a(S'getInt/1' -p55726 -S'getInt(${1:This}) $2' -p55727 -tp55728 -a(S'getLinkInfo/1' -p55729 -S'getLinkInfo(${1:This}) $2' -p55730 -tp55731 -a(S'getSelection/1' -p55732 -S'getSelection(${1:This}) $2' -p55733 -tp55734 -a(S'getSkipped/1' -p55735 -S'getSkipped(${1:This}) $2' -p55736 -tp55737 -a(S'getString/1' -p55738 -S'getString(${1:This}) $2' -p55739 -tp55740 -a(S'getTimestamp/1' -p55741 -S'getTimestamp(${1:This}) $2' -p55742 -tp55743 -a(S'isChecked/1' -p55744 -S'isChecked(${1:This}) $2' -p55745 -tp55746 -a(S'isCommandEvent/1' -p55747 -S'isCommandEvent(${1:This}) $2' -p55748 -tp55749 -a(S'isSelection/1' -p55750 -S'isSelection(${1:This}) $2' -p55751 -tp55752 -a(S'parent_class/1' -p55753 -S'parent_class(${1:Param1}) $2' -p55754 -tp55755 -a(S'resumePropagation/2' -p55756 -S'resumePropagation(${1:This}, ${2:PropagationLevel}) $3' -p55757 -tp55758 -a(S'setInt/2' -p55759 -S'setInt(${1:This}, ${2:I}) $3' -p55760 -tp55761 -a(S'setString/2' -p55762 -S'setString(${1:This}, ${2:S}) $3' -p55763 -tp55764 -a(S'shouldPropagate/1' -p55765 -S'shouldPropagate(${1:This}) $2' -p55766 -tp55767 -a(S'skip/1' -p55768 -S'skip(${1:This}) $2' -p55769 -tp55770 -a(S'skip/2' -p55771 -S'skip(${1:This}, ${2:Options}) $3' -p55772 -tp55773 -a(S'stopPropagation/1' -p55774 -S'stopPropagation(${1:This}) $2' -p55775 -tp55776 -asS'CosNotification_PropertySeq' -p55777 -(lp55778 -(S'id/0' -p55779 -S'id() $1' -p55780 -tp55781 -a(S'name/0' -p55782 -S'name() $1' -p55783 -tp55784 -a(S'tc/0' -p55785 -S'tc() $1' -p55786 -tp55787 -asS'wxScrolledWindow' -p55788 -(lp55789 -(S'cacheBestSize/2' -p55790 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p55791 -tp55792 -a(S'calcScrolledPosition/2' -p55793 -S'calcScrolledPosition(${1:This}, ${2:Pt}) $3' -p55794 -tp55795 -a(S'calcScrolledPosition/3' -p55796 -S'calcScrolledPosition(${1:This}, ${2:X}, ${3:Y}) $4' -p55797 -tp55798 -a(S'calcUnscrolledPosition/2' -p55799 -S'calcUnscrolledPosition(${1:This}, ${2:Pt}) $3' -p55800 -tp55801 -a(S'calcUnscrolledPosition/3' -p55802 -S'calcUnscrolledPosition(${1:This}, ${2:X}, ${3:Y}) $4' -p55803 -tp55804 -a(S'captureMouse/1' -p55805 -S'captureMouse(${1:This}) $2' -p55806 -tp55807 -a(S'center/1' -p55808 -S'center(${1:This}) $2' -p55809 -tp55810 -a(S'center/2' -p55811 -S'center(${1:This}, ${2:Options}) $3' -p55812 -tp55813 -a(S'centerOnParent/1' -p55814 -S'centerOnParent(${1:This}) $2' -p55815 -tp55816 -a(S'centerOnParent/2' -p55817 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p55818 -tp55819 -a(S'centre/1' -p55820 -S'centre(${1:This}) $2' -p55821 -tp55822 -a(S'centre/2' -p55823 -S'centre(${1:This}, ${2:Options}) $3' -p55824 -tp55825 -a(S'centreOnParent/1' -p55826 -S'centreOnParent(${1:This}) $2' -p55827 -tp55828 -a(S'centreOnParent/2' -p55829 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p55830 -tp55831 -a(S'clearBackground/1' -p55832 -S'clearBackground(${1:This}) $2' -p55833 -tp55834 -a(S'clientToScreen/2' -p55835 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p55836 -tp55837 -a(S'clientToScreen/3' -p55838 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p55839 -tp55840 -a(S'close/1' -p55841 -S'close(${1:This}) $2' -p55842 -tp55843 -a(S'close/2' -p55844 -S'close(${1:This}, ${2:Options}) $3' -p55845 -tp55846 -a(S'connect/2' -p55847 -S'connect(${1:This}, ${2:EventType}) $3' -p55848 -tp55849 -a(S'connect/3' -p55850 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p55851 -tp55852 -a(S'convertDialogToPixels/2' -p55853 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p55854 -tp55855 -a(S'convertPixelsToDialog/2' -p55856 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p55857 -tp55858 -a(S'destroy/1' -p55859 -S'destroy(${1:This}) $2' -p55860 -tp55861 -a(S'destroyChildren/1' -p55862 -S'destroyChildren(${1:This}) $2' -p55863 -tp55864 -a(S'disable/1' -p55865 -S'disable(${1:This}) $2' -p55866 -tp55867 -a(S'disconnect/1' -p55868 -S'disconnect(${1:This}) $2' -p55869 -tp55870 -a(S'disconnect/2' -p55871 -S'disconnect(${1:This}, ${2:EventType}) $3' -p55872 -tp55873 -a(S'disconnect/3' -p55874 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p55875 -tp55876 -a(S'doPrepareDC/2' -p55877 -S'doPrepareDC(${1:This}, ${2:Dc}) $3' -p55878 -tp55879 -a(S'enable/1' -p55880 -S'enable(${1:This}) $2' -p55881 -tp55882 -a(S'enable/2' -p55883 -S'enable(${1:This}, ${2:Options}) $3' -p55884 -tp55885 -a(S'enableScrolling/3' -p55886 -S'enableScrolling(${1:This}, ${2:X_scrolling}, ${3:Y_scrolling}) $4' -p55887 -tp55888 -a(S'findWindow/2' -p55889 -S'findWindow(${1:This}, ${2:Winid}) $3' -p55890 -tp55891 -a(S'fit/1' -p55892 -S'fit(${1:This}) $2' -p55893 -tp55894 -a(S'fitInside/1' -p55895 -S'fitInside(${1:This}) $2' -p55896 -tp55897 -a(S'freeze/1' -p55898 -S'freeze(${1:This}) $2' -p55899 -tp55900 -a(S'getAcceleratorTable/1' -p55901 -S'getAcceleratorTable(${1:This}) $2' -p55902 -tp55903 -a(S'getBackgroundColour/1' -p55904 -S'getBackgroundColour(${1:This}) $2' -p55905 -tp55906 -a(S'getBackgroundStyle/1' -p55907 -S'getBackgroundStyle(${1:This}) $2' -p55908 -tp55909 -a(S'getBestSize/1' -p55910 -S'getBestSize(${1:This}) $2' -p55911 -tp55912 -a(S'getCaret/1' -p55913 -S'getCaret(${1:This}) $2' -p55914 -tp55915 -a(S'getCharHeight/1' -p55916 -S'getCharHeight(${1:This}) $2' -p55917 -tp55918 -a(S'getCharWidth/1' -p55919 -S'getCharWidth(${1:This}) $2' -p55920 -tp55921 -a(S'getChildren/1' -p55922 -S'getChildren(${1:This}) $2' -p55923 -tp55924 -a(S'getClientSize/1' -p55925 -S'getClientSize(${1:This}) $2' -p55926 -tp55927 -a(S'getContainingSizer/1' -p55928 -S'getContainingSizer(${1:This}) $2' -p55929 -tp55930 -a(S'getCursor/1' -p55931 -S'getCursor(${1:This}) $2' -p55932 -tp55933 -a(S'getDropTarget/1' -p55934 -S'getDropTarget(${1:This}) $2' -p55935 -tp55936 -a(S'getEventHandler/1' -p55937 -S'getEventHandler(${1:This}) $2' -p55938 -tp55939 -a(S'getExtraStyle/1' -p55940 -S'getExtraStyle(${1:This}) $2' -p55941 -tp55942 -a(S'getFont/1' -p55943 -S'getFont(${1:This}) $2' -p55944 -tp55945 -a(S'getForegroundColour/1' -p55946 -S'getForegroundColour(${1:This}) $2' -p55947 -tp55948 -a(S'getGrandParent/1' -p55949 -S'getGrandParent(${1:This}) $2' -p55950 -tp55951 -a(S'getHandle/1' -p55952 -S'getHandle(${1:This}) $2' -p55953 -tp55954 -a(S'getHelpText/1' -p55955 -S'getHelpText(${1:This}) $2' -p55956 -tp55957 -a(S'getId/1' -p55958 -S'getId(${1:This}) $2' -p55959 -tp55960 -a(S'getLabel/1' -p55961 -S'getLabel(${1:This}) $2' -p55962 -tp55963 -a(S'getMaxSize/1' -p55964 -S'getMaxSize(${1:This}) $2' -p55965 -tp55966 -a(S'getMinSize/1' -p55967 -S'getMinSize(${1:This}) $2' -p55968 -tp55969 -a(S'getName/1' -p55970 -S'getName(${1:This}) $2' -p55971 -tp55972 -a(S'getParent/1' -p55973 -S'getParent(${1:This}) $2' -p55974 -tp55975 -a(S'getPosition/1' -p55976 -S'getPosition(${1:This}) $2' -p55977 -tp55978 -a(S'getRect/1' -p55979 -S'getRect(${1:This}) $2' -p55980 -tp55981 -a(S'getScreenPosition/1' -p55982 -S'getScreenPosition(${1:This}) $2' -p55983 -tp55984 -a(S'getScreenRect/1' -p55985 -S'getScreenRect(${1:This}) $2' -p55986 -tp55987 -a(S'getScrollPixelsPerUnit/1' -p55988 -S'getScrollPixelsPerUnit(${1:This}) $2' -p55989 -tp55990 -a(S'getScrollPos/2' -p55991 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p55992 -tp55993 -a(S'getScrollRange/2' -p55994 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p55995 -tp55996 -a(S'getScrollThumb/2' -p55997 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p55998 -tp55999 -a(S'getSize/1' -p56000 -S'getSize(${1:This}) $2' -p56001 -tp56002 -a(S'getSizer/1' -p56003 -S'getSizer(${1:This}) $2' -p56004 -tp56005 -a(S'getTextExtent/2' -p56006 -S'getTextExtent(${1:This}, ${2:String}) $3' -p56007 -tp56008 -a(S'getTextExtent/3' -p56009 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p56010 -tp56011 -a(S'getToolTip/1' -p56012 -S'getToolTip(${1:This}) $2' -p56013 -tp56014 -a(S'getUpdateRegion/1' -p56015 -S'getUpdateRegion(${1:This}) $2' -p56016 -tp56017 -a(S'getViewStart/1' -p56018 -S'getViewStart(${1:This}) $2' -p56019 -tp56020 -a(S'getVirtualSize/1' -p56021 -S'getVirtualSize(${1:This}) $2' -p56022 -tp56023 -a(S'getWindowStyleFlag/1' -p56024 -S'getWindowStyleFlag(${1:This}) $2' -p56025 -tp56026 -a(S'getWindowVariant/1' -p56027 -S'getWindowVariant(${1:This}) $2' -p56028 -tp56029 -a(S'hasCapture/1' -p56030 -S'hasCapture(${1:This}) $2' -p56031 -tp56032 -a(S'hasScrollbar/2' -p56033 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p56034 -tp56035 -a(S'hasTransparentBackground/1' -p56036 -S'hasTransparentBackground(${1:This}) $2' -p56037 -tp56038 -a(S'hide/1' -p56039 -S'hide(${1:This}) $2' -p56040 -tp56041 -a(S'inheritAttributes/1' -p56042 -S'inheritAttributes(${1:This}) $2' -p56043 -tp56044 -a(S'initDialog/1' -p56045 -S'initDialog(${1:This}) $2' -p56046 -tp56047 -a(S'invalidateBestSize/1' -p56048 -S'invalidateBestSize(${1:This}) $2' -p56049 -tp56050 -a(S'isEnabled/1' -p56051 -S'isEnabled(${1:This}) $2' -p56052 -tp56053 -a(S'isExposed/2' -p56054 -S'isExposed(${1:This}, ${2:Pt}) $3' -p56055 -tp56056 -a(S'isExposed/3' -p56057 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p56058 -tp56059 -a(S'isExposed/5' -p56060 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p56061 -tp56062 -a(S'isRetained/1' -p56063 -S'isRetained(${1:This}) $2' -p56064 -tp56065 -a(S'isShown/1' -p56066 -S'isShown(${1:This}) $2' -p56067 -tp56068 -a(S'isTopLevel/1' -p56069 -S'isTopLevel(${1:This}) $2' -p56070 -tp56071 -a(S'layout/1' -p56072 -S'layout(${1:This}) $2' -p56073 -tp56074 -a(S'lineDown/1' -p56075 -S'lineDown(${1:This}) $2' -p56076 -tp56077 -a(S'lineUp/1' -p56078 -S'lineUp(${1:This}) $2' -p56079 -tp56080 -a(S'lower/1' -p56081 -S'lower(${1:This}) $2' -p56082 -tp56083 -a(S'makeModal/1' -p56084 -S'makeModal(${1:This}) $2' -p56085 -tp56086 -a(S'makeModal/2' -p56087 -S'makeModal(${1:This}, ${2:Options}) $3' -p56088 -tp56089 -a(S'move/2' -p56090 -S'move(${1:This}, ${2:Pt}) $3' -p56091 -tp56092 -a(S'move/3' -p56093 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p56094 -tp56095 -a(S'move/4' -p56096 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p56097 -tp56098 -a(S'moveAfterInTabOrder/2' -p56099 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p56100 -tp56101 -a(S'moveBeforeInTabOrder/2' -p56102 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p56103 -tp56104 -a(S'navigate/1' -p56105 -S'navigate(${1:This}) $2' -p56106 -tp56107 -a(S'navigate/2' -p56108 -S'navigate(${1:This}, ${2:Options}) $3' -p56109 -tp56110 -a(S'new/0' -p56111 -S'new() $1' -p56112 -tp56113 -a(S'new/1' -p56114 -S'new(${1:Parent}) $2' -p56115 -tp56116 -a(S'new/2' -p56117 -S'new(${1:Parent}, ${2:Param2}) $3' -p56118 -tp56119 -a(S'pageDown/1' -p56120 -S'pageDown(${1:This}) $2' -p56121 -tp56122 -a(S'pageUp/1' -p56123 -S'pageUp(${1:This}) $2' -p56124 -tp56125 -a(S'parent_class/1' -p56126 -S'parent_class(${1:Param1}) $2' -p56127 -tp56128 -a(S'popEventHandler/1' -p56129 -S'popEventHandler(${1:This}) $2' -p56130 -tp56131 -a(S'popEventHandler/2' -p56132 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p56133 -tp56134 -a(S'popupMenu/2' -p56135 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p56136 -tp56137 -a(S'popupMenu/3' -p56138 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p56139 -tp56140 -a(S'popupMenu/4' -p56141 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p56142 -tp56143 -a(S'prepareDC/2' -p56144 -S'prepareDC(${1:This}, ${2:Dc}) $3' -p56145 -tp56146 -a(S'raise/1' -p56147 -S'raise(${1:This}) $2' -p56148 -tp56149 -a(S'refresh/1' -p56150 -S'refresh(${1:This}) $2' -p56151 -tp56152 -a(S'refresh/2' -p56153 -S'refresh(${1:This}, ${2:Options}) $3' -p56154 -tp56155 -a(S'refreshRect/2' -p56156 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p56157 -tp56158 -a(S'refreshRect/3' -p56159 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p56160 -tp56161 -a(S'releaseMouse/1' -p56162 -S'releaseMouse(${1:This}) $2' -p56163 -tp56164 -a(S'removeChild/2' -p56165 -S'removeChild(${1:This}, ${2:Child}) $3' -p56166 -tp56167 -a(S'reparent/2' -p56168 -S'reparent(${1:This}, ${2:NewParent}) $3' -p56169 -tp56170 -a(S'screenToClient/1' -p56171 -S'screenToClient(${1:This}) $2' -p56172 -tp56173 -a(S'screenToClient/2' -p56174 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p56175 -tp56176 -a(S'scroll/3' -p56177 -S'scroll(${1:This}, ${2:X}, ${3:Y}) $4' -p56178 -tp56179 -a(S'scrollLines/2' -p56180 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p56181 -tp56182 -a(S'scrollPages/2' -p56183 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p56184 -tp56185 -a(S'scrollWindow/3' -p56186 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p56187 -tp56188 -a(S'scrollWindow/4' -p56189 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p56190 -tp56191 -a(S'setAcceleratorTable/2' -p56192 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p56193 -tp56194 -a(S'setAutoLayout/2' -p56195 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p56196 -tp56197 -a(S'setBackgroundColour/2' -p56198 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p56199 -tp56200 -a(S'setBackgroundStyle/2' -p56201 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p56202 -tp56203 -a(S'setCaret/2' -p56204 -S'setCaret(${1:This}, ${2:Caret}) $3' -p56205 -tp56206 -a(S'setClientSize/2' -p56207 -S'setClientSize(${1:This}, ${2:Size}) $3' -p56208 -tp56209 -a(S'setClientSize/3' -p56210 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p56211 -tp56212 -a(S'setContainingSizer/2' -p56213 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p56214 -tp56215 -a(S'setCursor/2' -p56216 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p56217 -tp56218 -a(S'setDropTarget/2' -p56219 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p56220 -tp56221 -a(S'setExtraStyle/2' -p56222 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p56223 -tp56224 -a(S'setFocus/1' -p56225 -S'setFocus(${1:This}) $2' -p56226 -tp56227 -a(S'setFocusFromKbd/1' -p56228 -S'setFocusFromKbd(${1:This}) $2' -p56229 -tp56230 -a(S'setFont/2' -p56231 -S'setFont(${1:This}, ${2:Font}) $3' -p56232 -tp56233 -a(S'setForegroundColour/2' -p56234 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p56235 -tp56236 -a(S'setHelpText/2' -p56237 -S'setHelpText(${1:This}, ${2:Text}) $3' -p56238 -tp56239 -a(S'setId/2' -p56240 -S'setId(${1:This}, ${2:Winid}) $3' -p56241 -tp56242 -a(S'setLabel/2' -p56243 -S'setLabel(${1:This}, ${2:Label}) $3' -p56244 -tp56245 -a(S'setMaxSize/2' -p56246 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p56247 -tp56248 -a(S'setMinSize/2' -p56249 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p56250 -tp56251 -a(S'setName/2' -p56252 -S'setName(${1:This}, ${2:Name}) $3' -p56253 -tp56254 -a(S'setOwnBackgroundColour/2' -p56255 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p56256 -tp56257 -a(S'setOwnFont/2' -p56258 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p56259 -tp56260 -a(S'setOwnForegroundColour/2' -p56261 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p56262 -tp56263 -a(S'setPalette/2' -p56264 -S'setPalette(${1:This}, ${2:Pal}) $3' -p56265 -tp56266 -a(S'setScrollPos/3' -p56267 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p56268 -tp56269 -a(S'setScrollPos/4' -p56270 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p56271 -tp56272 -a(S'setScrollRate/3' -p56273 -S'setScrollRate(${1:This}, ${2:Xstep}, ${3:Ystep}) $4' -p56274 -tp56275 -a(S'setScrollbar/5' -p56276 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p56277 -tp56278 -a(S'setScrollbar/6' -p56279 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p56280 -tp56281 -a(S'setScrollbars/5' -p56282 -S'setScrollbars(${1:This}, ${2:PixelsPerUnitX}, ${3:PixelsPerUnitY}, ${4:NoUnitsX}, ${5:NoUnitsY}) $6' -p56283 -tp56284 -a(S'setScrollbars/6' -p56285 -S'setScrollbars(${1:This}, ${2:PixelsPerUnitX}, ${3:PixelsPerUnitY}, ${4:NoUnitsX}, ${5:NoUnitsY}, ${6:Param6}) $7' -p56286 -tp56287 -a(S'setSize/2' -p56288 -S'setSize(${1:This}, ${2:Rect}) $3' -p56289 -tp56290 -a(S'setSize/3' -p56291 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p56292 -tp56293 -a(S'setSize/5' -p56294 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p56295 -tp56296 -a(S'setSize/6' -p56297 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p56298 -tp56299 -a(S'setSizeHints/2' -p56300 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p56301 -tp56302 -a(S'setSizeHints/3' -p56303 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p56304 -tp56305 -a(S'setSizeHints/4' -p56306 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p56307 -tp56308 -a(S'setSizer/2' -p56309 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p56310 -tp56311 -a(S'setSizer/3' -p56312 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p56313 -tp56314 -a(S'setSizerAndFit/2' -p56315 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p56316 -tp56317 -a(S'setSizerAndFit/3' -p56318 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p56319 -tp56320 -a(S'setTargetWindow/2' -p56321 -S'setTargetWindow(${1:This}, ${2:Target}) $3' -p56322 -tp56323 -a(S'setThemeEnabled/2' -p56324 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p56325 -tp56326 -a(S'setToolTip/2' -p56327 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p56328 -tp56329 -a(S'setVirtualSize/2' -p56330 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p56331 -tp56332 -a(S'setVirtualSize/3' -p56333 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p56334 -tp56335 -a(S'setVirtualSizeHints/2' -p56336 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p56337 -tp56338 -a(S'setVirtualSizeHints/3' -p56339 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p56340 -tp56341 -a(S'setVirtualSizeHints/4' -p56342 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p56343 -tp56344 -a(S'setWindowStyle/2' -p56345 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p56346 -tp56347 -a(S'setWindowStyleFlag/2' -p56348 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p56349 -tp56350 -a(S'setWindowVariant/2' -p56351 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p56352 -tp56353 -a(S'shouldInheritColours/1' -p56354 -S'shouldInheritColours(${1:This}) $2' -p56355 -tp56356 -a(S'show/1' -p56357 -S'show(${1:This}) $2' -p56358 -tp56359 -a(S'show/2' -p56360 -S'show(${1:This}, ${2:Options}) $3' -p56361 -tp56362 -a(S'thaw/1' -p56363 -S'thaw(${1:This}) $2' -p56364 -tp56365 -a(S'transferDataFromWindow/1' -p56366 -S'transferDataFromWindow(${1:This}) $2' -p56367 -tp56368 -a(S'transferDataToWindow/1' -p56369 -S'transferDataToWindow(${1:This}) $2' -p56370 -tp56371 -a(S'update/1' -p56372 -S'update(${1:This}) $2' -p56373 -tp56374 -a(S'updateWindowUI/1' -p56375 -S'updateWindowUI(${1:This}) $2' -p56376 -tp56377 -a(S'updateWindowUI/2' -p56378 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p56379 -tp56380 -a(S'validate/1' -p56381 -S'validate(${1:This}) $2' -p56382 -tp56383 -a(S'warpPointer/3' -p56384 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p56385 -tp56386 -asS'pman_options' -p56387 -(lp56388 -(S'dialog/3' -p56389 -S'dialog(${1:ParentWin}, ${2:Title}, ${3:Options}) $4' -p56390 -tp56391 -a(S'read_from_file/1' -p56392 -S'read_from_file(${1:File}) $2' -p56393 -tp56394 -a(S'save_to_file/2' -p56395 -S'save_to_file(${1:Options}, ${2:File}) $3' -p56396 -tp56397 -asS'calendar' -p56398 -(lp56399 -(S'date_to_gregorian_days/1' -p56400 -S'date_to_gregorian_days(${1:Date}) $2' -p56401 -tp56402 -a(S'date_to_gregorian_days/3' -p56403 -S'date_to_gregorian_days(${1:Year}, ${2:Month}, ${3:Day}) $4' -p56404 -tp56405 -a(S'datetime_to_gregorian_seconds/1' -p56406 -S'datetime_to_gregorian_seconds(${1:DateTime}) $2' -p56407 -tp56408 -a(S'day_of_the_week/1' -p56409 -S'day_of_the_week(${1:Date}) $2' -p56410 -tp56411 -a(S'day_of_the_week/3' -p56412 -S'day_of_the_week(${1:Year}, ${2:Month}, ${3:Day}) $4' -p56413 -tp56414 -a(S'gregorian_days_to_date/1' -p56415 -S'gregorian_days_to_date(${1:Days}) $2' -p56416 -tp56417 -a(S'gregorian_seconds_to_datetime/1' -p56418 -S'gregorian_seconds_to_datetime(${1:Seconds}) $2' -p56419 -tp56420 -a(S'is_leap_year/1' -p56421 -S'is_leap_year(${1:Year}) $2' -p56422 -tp56423 -a(S'iso_week_number/0' -p56424 -S'iso_week_number() $1' -p56425 -tp56426 -a(S'iso_week_number/1' -p56427 -S'iso_week_number(${1:Date}) $2' -p56428 -tp56429 -a(S'last_day_of_the_month/2' -p56430 -S'last_day_of_the_month(${1:Year}, ${2:Month}) $3' -p56431 -tp56432 -a(S'local_time/0' -p56433 -S'local_time() $1' -p56434 -tp56435 -a(S'local_time_to_universal_time/1' -p56436 -S'local_time_to_universal_time(${1:DateTime1}) $2' -p56437 -tp56438 -a(S'local_time_to_universal_time/2' -p56439 -S'local_time_to_universal_time(${1:DateTime}, ${2:IsDst}) $3' -p56440 -tp56441 -a(S'local_time_to_universal_time_dst/1' -p56442 -S'local_time_to_universal_time_dst(${1:DateTime1}) $2' -p56443 -tp56444 -a(S'now_to_datetime/1' -p56445 -S'now_to_datetime(${1:Now}) $2' -p56446 -tp56447 -a(S'now_to_local_time/1' -p56448 -S'now_to_local_time(${1:Now}) $2' -p56449 -tp56450 -a(S'now_to_universal_time/1' -p56451 -S'now_to_universal_time(${1:Now}) $2' -p56452 -tp56453 -a(S'seconds_to_daystime/1' -p56454 -S'seconds_to_daystime(${1:Seconds}) $2' -p56455 -tp56456 -a(S'seconds_to_time/1' -p56457 -S'seconds_to_time(${1:Seconds}) $2' -p56458 -tp56459 -a(S'time_difference/2' -p56460 -S'time_difference(${1:T1}, ${2:T2}) $3' -p56461 -tp56462 -a(S'time_to_seconds/1' -p56463 -S'time_to_seconds(${1:Time}) $2' -p56464 -tp56465 -a(S'universal_time/0' -p56466 -S'universal_time() $1' -p56467 -tp56468 -a(S'universal_time_to_local_time/1' -p56469 -S'universal_time_to_local_time(${1:DateTime}) $2' -p56470 -tp56471 -a(S'valid_date/1' -p56472 -S'valid_date(${1:Date}) $2' -p56473 -tp56474 -a(S'valid_date/3' -p56475 -S'valid_date(${1:Year}, ${2:Month}, ${3:Day}) $4' -p56476 -tp56477 -asS'dbg_wx_winman' -p56478 -(lp56479 -(S'clear_process/1' -p56480 -S'clear_process(${1:Title}) $2' -p56481 -tp56482 -a(S'code_change/3' -p56483 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p56484 -tp56485 -a(S'handle_call/3' -p56486 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p56487 -tp56488 -a(S'handle_cast/2' -p56489 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p56490 -tp56491 -a(S'handle_info/2' -p56492 -S'handle_info(${1:Param1}, ${2:State}) $3' -p56493 -tp56494 -a(S'init/1' -p56495 -S'init(${1:Param1}) $2' -p56496 -tp56497 -a(S'insert/2' -p56498 -S'insert(${1:Title}, ${2:Win}) $3' -p56499 -tp56500 -a(S'is_started/1' -p56501 -S'is_started(${1:Title}) $2' -p56502 -tp56503 -a(S'raise/1' -p56504 -S'raise(${1:Win}) $2' -p56505 -tp56506 -a(S'start/0' -p56507 -S'start() $1' -p56508 -tp56509 -a(S'terminate/2' -p56510 -S'terminate(${1:Param1}, ${2:State}) $3' -p56511 -tp56512 -a(S'update_windows_menu/2' -p56513 -S'update_windows_menu(${1:Win}, ${2:Param2}) $3' -p56514 -tp56515 -asS'beam_disasm' -p56516 -(lp56517 -(S'df/1' -p56518 -S'df(${1:Module}) $2' -p56519 -tp56520 -a(S'dfs/1' -p56521 -S'dfs(${1:Files}) $2' -p56522 -tp56523 -a(S'file/1' -p56524 -S'file(${1:File}) $2' -p56525 -tp56526 -a(S'files/1' -p56527 -S'files(${1:Files}) $2' -p56528 -tp56529 -a(S'format_error/1' -p56530 -S'format_error(${1:Param1}) $2' -p56531 -tp56532 -a(S'function__code/1' -p56533 -S'function__code(${1:Param1}) $2' -p56534 -tp56535 -a(S'pp/1' -p56536 -S'pp(${1:Disasm}) $2' -p56537 -tp56538 -a(S'pp/2' -p56539 -S'pp(${1:Stream}, ${2:Disasm}) $3' -p56540 -tp56541 -asS'wxSpinCtrl' -p56542 -(lp56543 -(S'cacheBestSize/2' -p56544 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p56545 -tp56546 -a(S'captureMouse/1' -p56547 -S'captureMouse(${1:This}) $2' -p56548 -tp56549 -a(S'center/1' -p56550 -S'center(${1:This}) $2' -p56551 -tp56552 -a(S'center/2' -p56553 -S'center(${1:This}, ${2:Options}) $3' -p56554 -tp56555 -a(S'centerOnParent/1' -p56556 -S'centerOnParent(${1:This}) $2' -p56557 -tp56558 -a(S'centerOnParent/2' -p56559 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p56560 -tp56561 -a(S'centre/1' -p56562 -S'centre(${1:This}) $2' -p56563 -tp56564 -a(S'centre/2' -p56565 -S'centre(${1:This}, ${2:Options}) $3' -p56566 -tp56567 -a(S'centreOnParent/1' -p56568 -S'centreOnParent(${1:This}) $2' -p56569 -tp56570 -a(S'centreOnParent/2' -p56571 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p56572 -tp56573 -a(S'clearBackground/1' -p56574 -S'clearBackground(${1:This}) $2' -p56575 -tp56576 -a(S'clientToScreen/2' -p56577 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p56578 -tp56579 -a(S'clientToScreen/3' -p56580 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p56581 -tp56582 -a(S'close/1' -p56583 -S'close(${1:This}) $2' -p56584 -tp56585 -a(S'close/2' -p56586 -S'close(${1:This}, ${2:Options}) $3' -p56587 -tp56588 -a(S'connect/2' -p56589 -S'connect(${1:This}, ${2:EventType}) $3' -p56590 -tp56591 -a(S'connect/3' -p56592 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p56593 -tp56594 -a(S'convertDialogToPixels/2' -p56595 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p56596 -tp56597 -a(S'convertPixelsToDialog/2' -p56598 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p56599 -tp56600 -a(S'create/2' -p56601 -S'create(${1:This}, ${2:Parent}) $3' -p56602 -tp56603 -a(S'create/3' -p56604 -S'create(${1:This}, ${2:Parent}, ${3:Param3}) $4' -p56605 -tp56606 -a(S'destroy/1' -p56607 -S'destroy(${1:This}) $2' -p56608 -tp56609 -a(S'destroyChildren/1' -p56610 -S'destroyChildren(${1:This}) $2' -p56611 -tp56612 -a(S'disable/1' -p56613 -S'disable(${1:This}) $2' -p56614 -tp56615 -a(S'disconnect/1' -p56616 -S'disconnect(${1:This}) $2' -p56617 -tp56618 -a(S'disconnect/2' -p56619 -S'disconnect(${1:This}, ${2:EventType}) $3' -p56620 -tp56621 -a(S'disconnect/3' -p56622 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p56623 -tp56624 -a(S'enable/1' -p56625 -S'enable(${1:This}) $2' -p56626 -tp56627 -a(S'enable/2' -p56628 -S'enable(${1:This}, ${2:Options}) $3' -p56629 -tp56630 -a(S'findWindow/2' -p56631 -S'findWindow(${1:This}, ${2:Winid}) $3' -p56632 -tp56633 -a(S'fit/1' -p56634 -S'fit(${1:This}) $2' -p56635 -tp56636 -a(S'fitInside/1' -p56637 -S'fitInside(${1:This}) $2' -p56638 -tp56639 -a(S'freeze/1' -p56640 -S'freeze(${1:This}) $2' -p56641 -tp56642 -a(S'getAcceleratorTable/1' -p56643 -S'getAcceleratorTable(${1:This}) $2' -p56644 -tp56645 -a(S'getBackgroundColour/1' -p56646 -S'getBackgroundColour(${1:This}) $2' -p56647 -tp56648 -a(S'getBackgroundStyle/1' -p56649 -S'getBackgroundStyle(${1:This}) $2' -p56650 -tp56651 -a(S'getBestSize/1' -p56652 -S'getBestSize(${1:This}) $2' -p56653 -tp56654 -a(S'getCaret/1' -p56655 -S'getCaret(${1:This}) $2' -p56656 -tp56657 -a(S'getCharHeight/1' -p56658 -S'getCharHeight(${1:This}) $2' -p56659 -tp56660 -a(S'getCharWidth/1' -p56661 -S'getCharWidth(${1:This}) $2' -p56662 -tp56663 -a(S'getChildren/1' -p56664 -S'getChildren(${1:This}) $2' -p56665 -tp56666 -a(S'getClientSize/1' -p56667 -S'getClientSize(${1:This}) $2' -p56668 -tp56669 -a(S'getContainingSizer/1' -p56670 -S'getContainingSizer(${1:This}) $2' -p56671 -tp56672 -a(S'getCursor/1' -p56673 -S'getCursor(${1:This}) $2' -p56674 -tp56675 -a(S'getDropTarget/1' -p56676 -S'getDropTarget(${1:This}) $2' -p56677 -tp56678 -a(S'getEventHandler/1' -p56679 -S'getEventHandler(${1:This}) $2' -p56680 -tp56681 -a(S'getExtraStyle/1' -p56682 -S'getExtraStyle(${1:This}) $2' -p56683 -tp56684 -a(S'getFont/1' -p56685 -S'getFont(${1:This}) $2' -p56686 -tp56687 -a(S'getForegroundColour/1' -p56688 -S'getForegroundColour(${1:This}) $2' -p56689 -tp56690 -a(S'getGrandParent/1' -p56691 -S'getGrandParent(${1:This}) $2' -p56692 -tp56693 -a(S'getHandle/1' -p56694 -S'getHandle(${1:This}) $2' -p56695 -tp56696 -a(S'getHelpText/1' -p56697 -S'getHelpText(${1:This}) $2' -p56698 -tp56699 -a(S'getId/1' -p56700 -S'getId(${1:This}) $2' -p56701 -tp56702 -a(S'getLabel/1' -p56703 -S'getLabel(${1:This}) $2' -p56704 -tp56705 -a(S'getMax/1' -p56706 -S'getMax(${1:This}) $2' -p56707 -tp56708 -a(S'getMaxSize/1' -p56709 -S'getMaxSize(${1:This}) $2' -p56710 -tp56711 -a(S'getMin/1' -p56712 -S'getMin(${1:This}) $2' -p56713 -tp56714 -a(S'getMinSize/1' -p56715 -S'getMinSize(${1:This}) $2' -p56716 -tp56717 -a(S'getName/1' -p56718 -S'getName(${1:This}) $2' -p56719 -tp56720 -a(S'getParent/1' -p56721 -S'getParent(${1:This}) $2' -p56722 -tp56723 -a(S'getPosition/1' -p56724 -S'getPosition(${1:This}) $2' -p56725 -tp56726 -a(S'getRect/1' -p56727 -S'getRect(${1:This}) $2' -p56728 -tp56729 -a(S'getScreenPosition/1' -p56730 -S'getScreenPosition(${1:This}) $2' -p56731 -tp56732 -a(S'getScreenRect/1' -p56733 -S'getScreenRect(${1:This}) $2' -p56734 -tp56735 -a(S'getScrollPos/2' -p56736 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p56737 -tp56738 -a(S'getScrollRange/2' -p56739 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p56740 -tp56741 -a(S'getScrollThumb/2' -p56742 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p56743 -tp56744 -a(S'getSize/1' -p56745 -S'getSize(${1:This}) $2' -p56746 -tp56747 -a(S'getSizer/1' -p56748 -S'getSizer(${1:This}) $2' -p56749 -tp56750 -a(S'getTextExtent/2' -p56751 -S'getTextExtent(${1:This}, ${2:String}) $3' -p56752 -tp56753 -a(S'getTextExtent/3' -p56754 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p56755 -tp56756 -a(S'getToolTip/1' -p56757 -S'getToolTip(${1:This}) $2' -p56758 -tp56759 -a(S'getUpdateRegion/1' -p56760 -S'getUpdateRegion(${1:This}) $2' -p56761 -tp56762 -a(S'getValue/1' -p56763 -S'getValue(${1:This}) $2' -p56764 -tp56765 -a(S'getVirtualSize/1' -p56766 -S'getVirtualSize(${1:This}) $2' -p56767 -tp56768 -a(S'getWindowStyleFlag/1' -p56769 -S'getWindowStyleFlag(${1:This}) $2' -p56770 -tp56771 -a(S'getWindowVariant/1' -p56772 -S'getWindowVariant(${1:This}) $2' -p56773 -tp56774 -a(S'hasCapture/1' -p56775 -S'hasCapture(${1:This}) $2' -p56776 -tp56777 -a(S'hasScrollbar/2' -p56778 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p56779 -tp56780 -a(S'hasTransparentBackground/1' -p56781 -S'hasTransparentBackground(${1:This}) $2' -p56782 -tp56783 -a(S'hide/1' -p56784 -S'hide(${1:This}) $2' -p56785 -tp56786 -a(S'inheritAttributes/1' -p56787 -S'inheritAttributes(${1:This}) $2' -p56788 -tp56789 -a(S'initDialog/1' -p56790 -S'initDialog(${1:This}) $2' -p56791 -tp56792 -a(S'invalidateBestSize/1' -p56793 -S'invalidateBestSize(${1:This}) $2' -p56794 -tp56795 -a(S'isEnabled/1' -p56796 -S'isEnabled(${1:This}) $2' -p56797 -tp56798 -a(S'isExposed/2' -p56799 -S'isExposed(${1:This}, ${2:Pt}) $3' -p56800 -tp56801 -a(S'isExposed/3' -p56802 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p56803 -tp56804 -a(S'isExposed/5' -p56805 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p56806 -tp56807 -a(S'isRetained/1' -p56808 -S'isRetained(${1:This}) $2' -p56809 -tp56810 -a(S'isShown/1' -p56811 -S'isShown(${1:This}) $2' -p56812 -tp56813 -a(S'isTopLevel/1' -p56814 -S'isTopLevel(${1:This}) $2' -p56815 -tp56816 -a(S'layout/1' -p56817 -S'layout(${1:This}) $2' -p56818 -tp56819 -a(S'lineDown/1' -p56820 -S'lineDown(${1:This}) $2' -p56821 -tp56822 -a(S'lineUp/1' -p56823 -S'lineUp(${1:This}) $2' -p56824 -tp56825 -a(S'lower/1' -p56826 -S'lower(${1:This}) $2' -p56827 -tp56828 -a(S'makeModal/1' -p56829 -S'makeModal(${1:This}) $2' -p56830 -tp56831 -a(S'makeModal/2' -p56832 -S'makeModal(${1:This}, ${2:Options}) $3' -p56833 -tp56834 -a(S'move/2' -p56835 -S'move(${1:This}, ${2:Pt}) $3' -p56836 -tp56837 -a(S'move/3' -p56838 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p56839 -tp56840 -a(S'move/4' -p56841 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p56842 -tp56843 -a(S'moveAfterInTabOrder/2' -p56844 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p56845 -tp56846 -a(S'moveBeforeInTabOrder/2' -p56847 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p56848 -tp56849 -a(S'navigate/1' -p56850 -S'navigate(${1:This}) $2' -p56851 -tp56852 -a(S'navigate/2' -p56853 -S'navigate(${1:This}, ${2:Options}) $3' -p56854 -tp56855 -a(S'new/0' -p56856 -S'new() $1' -p56857 -tp56858 -a(S'new/1' -p56859 -S'new(${1:Parent}) $2' -p56860 -tp56861 -a(S'new/2' -p56862 -S'new(${1:Parent}, ${2:Param2}) $3' -p56863 -tp56864 -a(S'pageDown/1' -p56865 -S'pageDown(${1:This}) $2' -p56866 -tp56867 -a(S'pageUp/1' -p56868 -S'pageUp(${1:This}) $2' -p56869 -tp56870 -a(S'parent_class/1' -p56871 -S'parent_class(${1:Param1}) $2' -p56872 -tp56873 -a(S'popEventHandler/1' -p56874 -S'popEventHandler(${1:This}) $2' -p56875 -tp56876 -a(S'popEventHandler/2' -p56877 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p56878 -tp56879 -a(S'popupMenu/2' -p56880 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p56881 -tp56882 -a(S'popupMenu/3' -p56883 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p56884 -tp56885 -a(S'popupMenu/4' -p56886 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p56887 -tp56888 -a(S'raise/1' -p56889 -S'raise(${1:This}) $2' -p56890 -tp56891 -a(S'refresh/1' -p56892 -S'refresh(${1:This}) $2' -p56893 -tp56894 -a(S'refresh/2' -p56895 -S'refresh(${1:This}, ${2:Options}) $3' -p56896 -tp56897 -a(S'refreshRect/2' -p56898 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p56899 -tp56900 -a(S'refreshRect/3' -p56901 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p56902 -tp56903 -a(S'releaseMouse/1' -p56904 -S'releaseMouse(${1:This}) $2' -p56905 -tp56906 -a(S'removeChild/2' -p56907 -S'removeChild(${1:This}, ${2:Child}) $3' -p56908 -tp56909 -a(S'reparent/2' -p56910 -S'reparent(${1:This}, ${2:NewParent}) $3' -p56911 -tp56912 -a(S'screenToClient/1' -p56913 -S'screenToClient(${1:This}) $2' -p56914 -tp56915 -a(S'screenToClient/2' -p56916 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p56917 -tp56918 -a(S'scrollLines/2' -p56919 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p56920 -tp56921 -a(S'scrollPages/2' -p56922 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p56923 -tp56924 -a(S'scrollWindow/3' -p56925 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p56926 -tp56927 -a(S'scrollWindow/4' -p56928 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p56929 -tp56930 -a(S'setAcceleratorTable/2' -p56931 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p56932 -tp56933 -a(S'setAutoLayout/2' -p56934 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p56935 -tp56936 -a(S'setBackgroundColour/2' -p56937 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p56938 -tp56939 -a(S'setBackgroundStyle/2' -p56940 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p56941 -tp56942 -a(S'setCaret/2' -p56943 -S'setCaret(${1:This}, ${2:Caret}) $3' -p56944 -tp56945 -a(S'setClientSize/2' -p56946 -S'setClientSize(${1:This}, ${2:Size}) $3' -p56947 -tp56948 -a(S'setClientSize/3' -p56949 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p56950 -tp56951 -a(S'setContainingSizer/2' -p56952 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p56953 -tp56954 -a(S'setCursor/2' -p56955 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p56956 -tp56957 -a(S'setDropTarget/2' -p56958 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p56959 -tp56960 -a(S'setExtraStyle/2' -p56961 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p56962 -tp56963 -a(S'setFocus/1' -p56964 -S'setFocus(${1:This}) $2' -p56965 -tp56966 -a(S'setFocusFromKbd/1' -p56967 -S'setFocusFromKbd(${1:This}) $2' -p56968 -tp56969 -a(S'setFont/2' -p56970 -S'setFont(${1:This}, ${2:Font}) $3' -p56971 -tp56972 -a(S'setForegroundColour/2' -p56973 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p56974 -tp56975 -a(S'setHelpText/2' -p56976 -S'setHelpText(${1:This}, ${2:Text}) $3' -p56977 -tp56978 -a(S'setId/2' -p56979 -S'setId(${1:This}, ${2:Winid}) $3' -p56980 -tp56981 -a(S'setLabel/2' -p56982 -S'setLabel(${1:This}, ${2:Label}) $3' -p56983 -tp56984 -a(S'setMaxSize/2' -p56985 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p56986 -tp56987 -a(S'setMinSize/2' -p56988 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p56989 -tp56990 -a(S'setName/2' -p56991 -S'setName(${1:This}, ${2:Name}) $3' -p56992 -tp56993 -a(S'setOwnBackgroundColour/2' -p56994 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p56995 -tp56996 -a(S'setOwnFont/2' -p56997 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p56998 -tp56999 -a(S'setOwnForegroundColour/2' -p57000 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p57001 -tp57002 -a(S'setPalette/2' -p57003 -S'setPalette(${1:This}, ${2:Pal}) $3' -p57004 -tp57005 -a(S'setRange/3' -p57006 -S'setRange(${1:This}, ${2:MinVal}, ${3:MaxVal}) $4' -p57007 -tp57008 -a(S'setScrollPos/3' -p57009 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p57010 -tp57011 -a(S'setScrollPos/4' -p57012 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p57013 -tp57014 -a(S'setScrollbar/5' -p57015 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p57016 -tp57017 -a(S'setScrollbar/6' -p57018 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p57019 -tp57020 -a(S'setSelection/3' -p57021 -S'setSelection(${1:This}, ${2:From}, ${3:To}) $4' -p57022 -tp57023 -a(S'setSize/2' -p57024 -S'setSize(${1:This}, ${2:Rect}) $3' -p57025 -tp57026 -a(S'setSize/3' -p57027 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p57028 -tp57029 -a(S'setSize/5' -p57030 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p57031 -tp57032 -a(S'setSize/6' -p57033 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p57034 -tp57035 -a(S'setSizeHints/2' -p57036 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p57037 -tp57038 -a(S'setSizeHints/3' -p57039 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p57040 -tp57041 -a(S'setSizeHints/4' -p57042 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p57043 -tp57044 -a(S'setSizer/2' -p57045 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p57046 -tp57047 -a(S'setSizer/3' -p57048 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p57049 -tp57050 -a(S'setSizerAndFit/2' -p57051 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p57052 -tp57053 -a(S'setSizerAndFit/3' -p57054 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p57055 -tp57056 -a(S'setThemeEnabled/2' -p57057 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p57058 -tp57059 -a(S'setToolTip/2' -p57060 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p57061 -tp57062 -a(S'setValue/2' -p57063 -S'setValue(${1:This}, ${2:Value}) $3' -p57064 -tp57065 -a(S'setVirtualSize/2' -p57066 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p57067 -tp57068 -a(S'setVirtualSize/3' -p57069 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p57070 -tp57071 -a(S'setVirtualSizeHints/2' -p57072 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p57073 -tp57074 -a(S'setVirtualSizeHints/3' -p57075 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p57076 -tp57077 -a(S'setVirtualSizeHints/4' -p57078 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p57079 -tp57080 -a(S'setWindowStyle/2' -p57081 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p57082 -tp57083 -a(S'setWindowStyleFlag/2' -p57084 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p57085 -tp57086 -a(S'setWindowVariant/2' -p57087 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p57088 -tp57089 -a(S'shouldInheritColours/1' -p57090 -S'shouldInheritColours(${1:This}) $2' -p57091 -tp57092 -a(S'show/1' -p57093 -S'show(${1:This}) $2' -p57094 -tp57095 -a(S'show/2' -p57096 -S'show(${1:This}, ${2:Options}) $3' -p57097 -tp57098 -a(S'thaw/1' -p57099 -S'thaw(${1:This}) $2' -p57100 -tp57101 -a(S'transferDataFromWindow/1' -p57102 -S'transferDataFromWindow(${1:This}) $2' -p57103 -tp57104 -a(S'transferDataToWindow/1' -p57105 -S'transferDataToWindow(${1:This}) $2' -p57106 -tp57107 -a(S'update/1' -p57108 -S'update(${1:This}) $2' -p57109 -tp57110 -a(S'updateWindowUI/1' -p57111 -S'updateWindowUI(${1:This}) $2' -p57112 -tp57113 -a(S'updateWindowUI/2' -p57114 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p57115 -tp57116 -a(S'validate/1' -p57117 -S'validate(${1:This}) $2' -p57118 -tp57119 -a(S'warpPointer/3' -p57120 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p57121 -tp57122 -asS'ic_pragma' -p57123 -(lp57124 -(S'add_inh_data/3' -p57125 -S'add_inh_data(${1:G}, ${2:InclScope}, ${3:X}) $4' -p57126 -tp57127 -a(S'defaultBrokerData/1' -p57128 -S'defaultBrokerData(${1:G}) $2' -p57129 -tp57130 -a(S'fetchLocalOperationNames/2' -p57131 -S'fetchLocalOperationNames(${1:G}, ${2:I}) $3' -p57132 -tp57133 -a(S'fetchRandomLocalType/1' -p57134 -S'fetchRandomLocalType(${1:G}) $2' -p57135 -tp57136 -a(S'getBrokerData/3' -p57137 -S'getBrokerData(${1:G}, ${2:X}, ${3:Scope}) $4' -p57138 -tp57139 -a(S'get_alias/2' -p57140 -S'get_alias(${1:G}, ${2:ScopedId}) $3' -p57141 -tp57142 -a(S'get_dependencies/1' -p57143 -S'get_dependencies(${1:G}) $2' -p57144 -tp57145 -a(S'get_incl_refs/1' -p57146 -S'get_incl_refs(${1:G}) $2' -p57147 -tp57148 -a(S'get_included_c_headers/1' -p57149 -S'get_included_c_headers(${1:G}) $2' -p57150 -tp57151 -a(S'get_local_c_headers/2' -p57152 -S'get_local_c_headers(${1:G}, ${2:X}) $3' -p57153 -tp57154 -a(S'get_local_refs/1' -p57155 -S'get_local_refs(${1:G}) $2' -p57156 -tp57157 -a(S'id2scope/2' -p57158 -S'id2scope(${1:G}, ${2:IfrId}) $3' -p57159 -tp57160 -a(S'is_inherited_by/3' -p57161 -S'is_inherited_by(${1:Interface1}, ${2:Interface2}, ${3:PragmaTab}) $4' -p57162 -tp57163 -a(S'is_local/2' -p57164 -S'is_local(${1:G}, ${2:ScopedId}) $3' -p57165 -tp57166 -a(S'is_short/1' -p57167 -S'is_short(${1:N_str}) $2' -p57168 -tp57169 -a(S'list_to_term/1' -p57170 -S'list_to_term(${1:List}) $2' -p57171 -tp57172 -a(S'mk_alias/3' -p57173 -S'mk_alias(${1:G}, ${2:PragmaId}, ${3:ScopedId}) $4' -p57174 -tp57175 -a(S'mk_ref/3' -p57176 -S'mk_ref(${1:G}, ${2:Name}, ${3:Type}) $4' -p57177 -tp57178 -a(S'mk_scope/1' -p57179 -S'mk_scope(${1:IfrId}) $2' -p57180 -tp57181 -a(S'no_doubles/1' -p57182 -S'no_doubles(${1:List}) $2' -p57183 -tp57184 -a(S'pragma_cover/3' -p57185 -S'pragma_cover(${1:G}, ${2:Scope}, ${3:Object}) $4' -p57186 -tp57187 -a(S'pragma_id/3' -p57188 -S'pragma_id(${1:G}, ${2:Scope}, ${3:Object}) $4' -p57189 -tp57190 -a(S'pragma_prefix/3' -p57191 -S'pragma_prefix(${1:G}, ${2:Scope}, ${3:Object}) $4' -p57192 -tp57193 -a(S'pragma_reg/2' -p57194 -S'pragma_reg(${1:G}, ${2:X}) $3' -p57195 -tp57196 -a(S'pragma_version/3' -p57197 -S'pragma_version(${1:G}, ${2:Scope}, ${3:Object}) $4' -p57198 -tp57199 -a(S'preproc/3' -p57200 -S'preproc(${1:G}, ${2:N}, ${3:Param3}) $4' -p57201 -tp57202 -a(S'print_tab/1' -p57203 -S'print_tab(${1:G}) $2' -p57204 -tp57205 -a(S'scope2id/2' -p57206 -S'scope2id(${1:G}, ${2:ScopedId}) $3' -p57207 -tp57208 -a(S'slashify/1' -p57209 -S'slashify() $1' -p57210 -tp57211 -asS'snmpa_local_db' -p57212 -(lp57213 -(S'backup/1' -p57214 -S'backup(${1:BackupDir}) $2' -p57215 -tp57216 -a(S'code_change/3' -p57217 -S'code_change(${1:Param1}, ${2:S1}, ${3:Param3}) $4' -p57218 -tp57219 -a(S'dump/0' -p57220 -S'dump() $1' -p57221 -tp57222 -a(S'get_elements/2' -p57223 -S'get_elements(${1:Cols}, ${2:Row}) $3' -p57224 -tp57225 -a(S'handle_call/3' -p57226 -S'handle_call(${1:Req}, ${2:From}, ${3:State}) $4' -p57227 -tp57228 -a(S'handle_cast/2' -p57229 -S'handle_cast(${1:Msg}, ${2:State}) $3' -p57230 -tp57231 -a(S'handle_info/2' -p57232 -S'handle_info(${1:Info}, ${2:S}) $3' -p57233 -tp57234 -a(S'info/0' -p57235 -S'info() $1' -p57236 -tp57237 -a(S'init/1' -p57238 -S'init(${1:Param1}) $2' -p57239 -tp57240 -a(S'match/2' -p57241 -S'match(${1:Name}, ${2:Pattern}) $3' -p57242 -tp57243 -a(S'print/0' -p57244 -S'print() $1' -p57245 -tp57246 -a(S'print/1' -p57247 -S'print(${1:Table}) $2' -p57248 -tp57249 -a(S'print/2' -p57250 -S'print(${1:Table}, ${2:Db}) $3' -p57251 -tp57252 -a(S'register_notify_client/2' -p57253 -S'register_notify_client(${1:Client}, ${2:Module}) $3' -p57254 -tp57255 -a(S'start_link/3' -p57256 -S'start_link(${1:Prio}, ${2:DbDir}, ${3:Opts}) $4' -p57257 -tp57258 -a(S'start_link/4' -p57259 -S'start_link(${1:Prio}, ${2:DbDir}, ${3:DbInitError}, ${4:Opts}) $5' -p57260 -tp57261 -a(S'stop/0' -p57262 -S'stop() $1' -p57263 -tp57264 -a(S'table_construct_row/4' -p57265 -S'table_construct_row(${1:Name}, ${2:RowIndex}, ${3:Status}, ${4:Cols}) $5' -p57266 -tp57267 -a(S'table_create/1' -p57268 -S'table_create(${1:Name}) $2' -p57269 -tp57270 -a(S'table_create_row/3' -p57271 -S'table_create_row(${1:Name}, ${2:RowIndex}, ${3:Row}) $4' -p57272 -tp57273 -a(S'table_create_row/4' -p57274 -S'table_create_row(${1:NameDb}, ${2:RowIndex}, ${3:Status}, ${4:Cols}) $5' -p57275 -tp57276 -a(S'table_delete/1' -p57277 -S'table_delete(${1:Name}) $2' -p57278 -tp57279 -a(S'table_delete_row/2' -p57280 -S'table_delete_row(${1:Name}, ${2:RowIndex}) $3' -p57281 -tp57282 -a(S'table_exists/1' -p57283 -S'table_exists(${1:Name}) $2' -p57284 -tp57285 -a(S'table_func/2' -p57286 -S'table_func(${1:Param1}, ${2:NameDb}) $3' -p57287 -tp57288 -a(S'table_func/4' -p57289 -S'table_func(${1:Param1}, ${2:RowIndex}, ${3:Cols}, ${4:NameDb}) $5' -p57290 -tp57291 -a(S'table_get/1' -p57292 -S'table_get(${1:Table}) $2' -p57293 -tp57294 -a(S'table_get_element/3' -p57295 -S'table_get_element(${1:Name}, ${2:RowIndex}, ${3:Col}) $4' -p57296 -tp57297 -a(S'table_get_elements/4' -p57298 -S'table_get_elements(${1:NameDb}, ${2:RowIndex}, ${3:Cols}, ${4:Param4}) $5' -p57299 -tp57300 -a(S'table_get_row/2' -p57301 -S'table_get_row(${1:Name}, ${2:RowIndex}) $3' -p57302 -tp57303 -a(S'table_max_col/2' -p57304 -S'table_max_col(${1:Name}, ${2:Col}) $3' -p57305 -tp57306 -a(S'table_next/2' -p57307 -S'table_next(${1:Name}, ${2:RestOid}) $3' -p57308 -tp57309 -a(S'table_set_elements/3' -p57310 -S'table_set_elements(${1:Name}, ${2:RowIndex}, ${3:Cols}) $4' -p57311 -tp57312 -a(S'table_set_status/7' -p57313 -S'table_set_status() $1' -p57314 -tp57315 -a(S'terminate/2' -p57316 -S'terminate(${1:Reason}, ${2:State}) $3' -p57317 -tp57318 -a(S'unregister_notify_client/1' -p57319 -S'unregister_notify_client(${1:Client}) $2' -p57320 -tp57321 -a(S'variable_delete/1' -p57322 -S'variable_delete(${1:Name}) $2' -p57323 -tp57324 -a(S'variable_get/1' -p57325 -S'variable_get(${1:Name}) $2' -p57326 -tp57327 -a(S'variable_inc/2' -p57328 -S'variable_inc(${1:Name}, ${2:N}) $3' -p57329 -tp57330 -a(S'variable_set/2' -p57331 -S'variable_set(${1:Name}, ${2:Val}) $3' -p57332 -tp57333 -a(S'verbosity/1' -p57334 -S'verbosity(${1:Verbosity}) $2' -p57335 -tp57336 -asS'asn1ct_gen_ber' -p57337 -(lp57338 -(S'add_removed_bytes/0' -p57339 -S'add_removed_bytes() $1' -p57340 -tp57341 -a(S'decode_class/1' -p57342 -S'decode_class(${1:Param1}) $2' -p57343 -tp57344 -a(S'decode_type/1' -p57345 -S'decode_type(${1:Else}) $2' -p57346 -tp57347 -a(S'extaddgroup2sequence/1' -p57348 -S'extaddgroup2sequence(${1:ExtList}) $2' -p57349 -tp57350 -a(S'gen_dec_prim/8' -p57351 -S'gen_dec_prim(${1:Erules}, ${2:Att}, ${3:BytesVar}, ${4:DoTag}, ${5:TagIn}, ${6:Length}, ${7:Form}, ${8:OptOrMand}) $9' -p57352 -tp57353 -a(S'gen_decode/2' -p57354 -S'gen_decode(${1:Erules}, ${2:Type}) $3' -p57355 -tp57356 -a(S'gen_decode/3' -p57357 -S'gen_decode(${1:Erules}, ${2:Tname}, ${3:Type}) $4' -p57358 -tp57359 -a(S'gen_encode/2' -p57360 -S'gen_encode(${1:Erules}, ${2:Type}) $3' -p57361 -tp57362 -a(S'gen_encode/3' -p57363 -S'gen_encode(${1:Erules}, ${2:Typename}, ${3:Type}) $4' -p57364 -tp57365 -a(S'gen_encode_prim/4' -p57366 -S'gen_encode_prim(${1:Erules}, ${2:D}, ${3:DoTag}, ${4:Value}) $5' -p57367 -tp57368 -a(S'gen_obj_code/3' -p57369 -S'gen_obj_code(${1:Erules}, ${2:Param2}, ${3:Obj}) $4' -p57370 -tp57371 -a(S'gen_objectset_code/2' -p57372 -S'gen_objectset_code(${1:Erules}, ${2:ObjSet}) $3' -p57373 -tp57374 -a(S'pgen/4' -p57375 -S'pgen(${1:OutFile}, ${2:Erules}, ${3:Module}, ${4:TypeOrVal}) $5' -p57376 -tp57377 -a(S're_wrap_erule/1' -p57378 -S're_wrap_erule(${1:Erule}) $2' -p57379 -tp57380 -a(S'unused_var/2' -p57381 -S'unused_var(${1:Var}, ${2:Param2}) $3' -p57382 -tp57383 -asS'wxIdleEvent' -p57384 -(lp57385 -(S'canSend/1' -p57386 -S'canSend(${1:Win}) $2' -p57387 -tp57388 -a(S'getId/1' -p57389 -S'getId(${1:This}) $2' -p57390 -tp57391 -a(S'getMode/0' -p57392 -S'getMode() $1' -p57393 -tp57394 -a(S'getSkipped/1' -p57395 -S'getSkipped(${1:This}) $2' -p57396 -tp57397 -a(S'getTimestamp/1' -p57398 -S'getTimestamp(${1:This}) $2' -p57399 -tp57400 -a(S'isCommandEvent/1' -p57401 -S'isCommandEvent(${1:This}) $2' -p57402 -tp57403 -a(S'moreRequested/1' -p57404 -S'moreRequested(${1:This}) $2' -p57405 -tp57406 -a(S'parent_class/1' -p57407 -S'parent_class(${1:Param1}) $2' -p57408 -tp57409 -a(S'requestMore/1' -p57410 -S'requestMore(${1:This}) $2' -p57411 -tp57412 -a(S'requestMore/2' -p57413 -S'requestMore(${1:This}, ${2:Param2}) $3' -p57414 -tp57415 -a(S'resumePropagation/2' -p57416 -S'resumePropagation(${1:This}, ${2:PropagationLevel}) $3' -p57417 -tp57418 -a(S'setMode/1' -p57419 -S'setMode(${1:Mode}) $2' -p57420 -tp57421 -a(S'shouldPropagate/1' -p57422 -S'shouldPropagate(${1:This}) $2' -p57423 -tp57424 -a(S'skip/1' -p57425 -S'skip(${1:This}) $2' -p57426 -tp57427 -a(S'skip/2' -p57428 -S'skip(${1:This}, ${2:Options}) $3' -p57429 -tp57430 -a(S'stopPropagation/1' -p57431 -S'stopPropagation(${1:This}) $2' -p57432 -tp57433 -asS'orber_ifr_typedef' -p57434 -(lp57435 -(S"'_get_absolute_name'/1" -p57436 -S"'_get_absolute_name'(${1:Param1}) $2" -p57437 -tp57438 -a(S"'_get_containing_repository'/1" -p57439 -S"'_get_containing_repository'(${1:Param1}) $2" -p57440 -tp57441 -a(S"'_get_def_kind'/1" -p57442 -S"'_get_def_kind'(${1:Param1}) $2" -p57443 -tp57444 -a(S"'_get_defined_in'/1" -p57445 -S"'_get_defined_in'(${1:Param1}) $2" -p57446 -tp57447 -a(S"'_get_id'/1" -p57448 -S"'_get_id'(${1:Param1}) $2" -p57449 -tp57450 -a(S"'_get_name'/1" -p57451 -S"'_get_name'(${1:Param1}) $2" -p57452 -tp57453 -a(S"'_get_type'/1" -p57454 -S"'_get_type'(${1:Param1}) $2" -p57455 -tp57456 -a(S"'_get_version'/1" -p57457 -S"'_get_version'(${1:Param1}) $2" -p57458 -tp57459 -a(S"'_set_id'/2" -p57460 -S"'_set_id'(${1:Param1}, ${2:EO_Value}) $3" -p57461 -tp57462 -a(S"'_set_name'/2" -p57463 -S"'_set_name'(${1:Param1}, ${2:EO_Value}) $3" -p57464 -tp57465 -a(S"'_set_version'/2" -p57466 -S"'_set_version'(${1:Param1}, ${2:EO_Value}) $3" -p57467 -tp57468 -a(S'cleanup_for_destroy/1' -p57469 -S'cleanup_for_destroy(${1:TypedefDef_objref}) $2' -p57470 -tp57471 -a(S'describe/1' -p57472 -S'describe(${1:Param1}) $2' -p57473 -tp57474 -a(S'destroy/1' -p57475 -S'destroy(${1:TypedefDef_objref}) $2' -p57476 -tp57477 -a(S'move/4' -p57478 -S'move(${1:Param1}, ${2:New_container}, ${3:New_name}, ${4:New_version}) $5' -p57479 -tp57480 -asS'asn1ct_gen_per' -p57481 -(lp57482 -(S'extaddgroup2sequence/1' -p57483 -S'extaddgroup2sequence(${1:ExtList}) $2' -p57484 -tp57485 -a(S'gen_dec_prim/3' -p57486 -S'gen_dec_prim(${1:Erules}, ${2:Att}, ${3:BytesVar}) $4' -p57487 -tp57488 -a(S'gen_decode/2' -p57489 -S'gen_decode(${1:Erules}, ${2:Type}) $3' -p57490 -tp57491 -a(S'gen_decode/3' -p57492 -S'gen_decode(${1:Erules}, ${2:Tname}, ${3:Type}) $4' -p57493 -tp57494 -a(S'gen_encode/2' -p57495 -S'gen_encode(${1:Erules}, ${2:Type}) $3' -p57496 -tp57497 -a(S'gen_encode/3' -p57498 -S'gen_encode(${1:Erules}, ${2:Typename}, ${3:Type}) $4' -p57499 -tp57500 -a(S'gen_encode_prim/4' -p57501 -S'gen_encode_prim(${1:Erules}, ${2:D}, ${3:DoTag}, ${4:Value}) $5' -p57502 -tp57503 -a(S'gen_obj_code/3' -p57504 -S'gen_obj_code(${1:Erules}, ${2:Param2}, ${3:Obj}) $4' -p57505 -tp57506 -a(S'gen_objectset_code/2' -p57507 -S'gen_objectset_code(${1:Erules}, ${2:ObjSet}) $3' -p57508 -tp57509 -a(S'get_class_fields/1' -p57510 -S'get_class_fields(${1:Param1}) $2' -p57511 -tp57512 -a(S'get_object_field/2' -p57513 -S'get_object_field(${1:Name}, ${2:ObjectFields}) $3' -p57514 -tp57515 -a(S'is_already_generated/2' -p57516 -S'is_already_generated(${1:Operation}, ${2:Name}) $3' -p57517 -tp57518 -a(S'more_genfields/1' -p57519 -S'more_genfields(${1:Param1}) $2' -p57520 -tp57521 -a(S'pgen/4' -p57522 -S'pgen(${1:OutFile}, ${2:Erules}, ${3:Module}, ${4:TypeOrVal}) $5' -p57523 -tp57524 -asS'mnesia_lib' -p57525 -(lp57526 -(S'activate_debug_fun/5' -p57527 -S'activate_debug_fun(${1:FunId}, ${2:Fun}, ${3:InitialContext}, ${4:File}, ${5:Line}) $6' -p57528 -tp57529 -a(S'active_tables/0' -p57530 -S'active_tables() $1' -p57531 -tp57532 -a(S'add/2' -p57533 -S'add(${1:Var}, ${2:Val}) $3' -p57534 -tp57535 -a(S'add_list/2' -p57536 -S'add_list(${1:Var}, ${2:List}) $3' -p57537 -tp57538 -a(S'add_lsort/2' -p57539 -S'add_lsort(${1:Var}, ${2:Val}) $3' -p57540 -tp57541 -a(S'all_nodes/0' -p57542 -S'all_nodes() $1' -p57543 -tp57544 -a(S'copy_file/2' -p57545 -S'copy_file(${1:From}, ${2:To}) $3' -p57546 -tp57547 -a(S'copy_holders/1' -p57548 -S'copy_holders(${1:Cs}) $2' -p57549 -tp57550 -a(S'core_file/0' -p57551 -S'core_file() $1' -p57552 -tp57553 -a(S'coredump/0' -p57554 -S'coredump() $1' -p57555 -tp57556 -a(S'coredump/1' -p57557 -S'coredump(${1:Ns}) $2' -p57558 -tp57559 -a(S'create_counter/1' -p57560 -S'create_counter(${1:Name}) $2' -p57561 -tp57562 -a(S'cs_to_nodes/1' -p57563 -S'cs_to_nodes(${1:Cs}) $2' -p57564 -tp57565 -a(S'cs_to_storage_type/2' -p57566 -S'cs_to_storage_type(${1:Node}, ${2:Cs}) $3' -p57567 -tp57568 -a(S'db_chunk/2' -p57569 -S'db_chunk(${1:Param1}, ${2:State}) $3' -p57570 -tp57571 -a(S'db_erase/2' -p57572 -S'db_erase(${1:Tab}, ${2:Key}) $3' -p57573 -tp57574 -a(S'db_erase/3' -p57575 -S'db_erase(${1:Param1}, ${2:Tab}, ${3:Key}) $4' -p57576 -tp57577 -a(S'db_erase_tab/1' -p57578 -S'db_erase_tab(${1:Tab}) $2' -p57579 -tp57580 -a(S'db_erase_tab/2' -p57581 -S'db_erase_tab(${1:Param1}, ${2:Tab}) $3' -p57582 -tp57583 -a(S'db_first/1' -p57584 -S'db_first(${1:Tab}) $2' -p57585 -tp57586 -a(S'db_first/2' -p57587 -S'db_first(${1:Param1}, ${2:Tab}) $3' -p57588 -tp57589 -a(S'db_fixtable/3' -p57590 -S'db_fixtable(${1:Param1}, ${2:Tab}, ${3:Bool}) $4' -p57591 -tp57592 -a(S'db_get/2' -p57593 -S'db_get(${1:Tab}, ${2:Key}) $3' -p57594 -tp57595 -a(S'db_get/3' -p57596 -S'db_get(${1:Param1}, ${2:Tab}, ${3:Key}) $4' -p57597 -tp57598 -a(S'db_init_chunk/1' -p57599 -S'db_init_chunk(${1:Tab}) $2' -p57600 -tp57601 -a(S'db_init_chunk/2' -p57602 -S'db_init_chunk(${1:Tab}, ${2:N}) $3' -p57603 -tp57604 -a(S'db_init_chunk/3' -p57605 -S'db_init_chunk(${1:Param1}, ${2:Tab}, ${3:N}) $4' -p57606 -tp57607 -a(S'db_last/1' -p57608 -S'db_last(${1:Tab}) $2' -p57609 -tp57610 -a(S'db_last/2' -p57611 -S'db_last(${1:Param1}, ${2:Tab}) $3' -p57612 -tp57613 -a(S'db_match_erase/2' -p57614 -S'db_match_erase(${1:Tab}, ${2:Pat}) $3' -p57615 -tp57616 -a(S'db_match_erase/3' -p57617 -S'db_match_erase(${1:Param1}, ${2:Tab}, ${3:Pat}) $4' -p57618 -tp57619 -a(S'db_match_object/2' -p57620 -S'db_match_object(${1:Tab}, ${2:Pat}) $3' -p57621 -tp57622 -a(S'db_match_object/3' -p57623 -S'db_match_object(${1:Storage}, ${2:Tab}, ${3:Pat}) $4' -p57624 -tp57625 -a(S'db_next_key/2' -p57626 -S'db_next_key(${1:Tab}, ${2:Key}) $3' -p57627 -tp57628 -a(S'db_next_key/3' -p57629 -S'db_next_key(${1:Param1}, ${2:Tab}, ${3:Key}) $4' -p57630 -tp57631 -a(S'db_prev_key/2' -p57632 -S'db_prev_key(${1:Tab}, ${2:Key}) $3' -p57633 -tp57634 -a(S'db_prev_key/3' -p57635 -S'db_prev_key(${1:Param1}, ${2:Tab}, ${3:Key}) $4' -p57636 -tp57637 -a(S'db_put/2' -p57638 -S'db_put(${1:Tab}, ${2:Val}) $3' -p57639 -tp57640 -a(S'db_put/3' -p57641 -S'db_put(${1:Param1}, ${2:Tab}, ${3:Val}) $4' -p57642 -tp57643 -a(S'db_select/2' -p57644 -S'db_select(${1:Tab}, ${2:Pat}) $3' -p57645 -tp57646 -a(S'db_select/3' -p57647 -S'db_select(${1:Storage}, ${2:Tab}, ${3:Pat}) $4' -p57648 -tp57649 -a(S'db_select_cont/3' -p57650 -S'db_select_cont(${1:Param1}, ${2:Cont0}, ${3:Ms}) $4' -p57651 -tp57652 -a(S'db_select_init/4' -p57653 -S'db_select_init(${1:Param1}, ${2:Tab}, ${3:Pat}, ${4:Limit}) $5' -p57654 -tp57655 -a(S'db_slot/2' -p57656 -S'db_slot(${1:Tab}, ${2:Pos}) $3' -p57657 -tp57658 -a(S'db_slot/3' -p57659 -S'db_slot(${1:Param1}, ${2:Tab}, ${3:Pos}) $4' -p57660 -tp57661 -a(S'db_update_counter/3' -p57662 -S'db_update_counter(${1:Tab}, ${2:C}, ${3:Val}) $4' -p57663 -tp57664 -a(S'db_update_counter/4' -p57665 -S'db_update_counter(${1:Param1}, ${2:Tab}, ${3:C}, ${4:Val}) $5' -p57666 -tp57667 -a(S'dbg_out/2' -p57668 -S'dbg_out(${1:Format}, ${2:Args}) $3' -p57669 -tp57670 -a(S'deactivate_debug_fun/3' -p57671 -S'deactivate_debug_fun(${1:FunId}, ${2:Param2}, ${3:Param3}) $4' -p57672 -tp57673 -a(S'del/2' -p57674 -S'del(${1:Var}, ${2:Val}) $3' -p57675 -tp57676 -a(S'dets_sync_close/1' -p57677 -S'dets_sync_close(${1:Tab}) $2' -p57678 -tp57679 -a(S'dets_sync_open/2' -p57680 -S'dets_sync_open(${1:Tab}, ${2:Args}) $3' -p57681 -tp57682 -a(S'dets_sync_open/3' -p57683 -S'dets_sync_open(${1:Tab}, ${2:Ref}, ${3:File}) $4' -p57684 -tp57685 -a(S'dets_to_ets/6' -p57686 -S'dets_to_ets(${1:Tabname}, ${2:Tab}, ${3:File}, ${4:Type}, ${5:Rep}, ${6:Lock}) $7' -p57687 -tp57688 -a(S'dir/0' -p57689 -S'dir() $1' -p57690 -tp57691 -a(S'dir/1' -p57692 -S'dir(${1:Fname}) $2' -p57693 -tp57694 -a(S'dir_info/0' -p57695 -S'dir_info() $1' -p57696 -tp57697 -a(S'dirty_rpc_error_tag/1' -p57698 -S'dirty_rpc_error_tag(${1:Reason}) $2' -p57699 -tp57700 -a(S'disk_type/1' -p57701 -S'disk_type(${1:Tab}) $2' -p57702 -tp57703 -a(S'disk_type/2' -p57704 -S'disk_type(${1:Param1}, ${2:Type}) $3' -p57705 -tp57706 -a(S'dist_coredump/0' -p57707 -S'dist_coredump() $1' -p57708 -tp57709 -a(S'elems/2' -p57710 -S'elems(${1:I}, ${2:Param2}) $3' -p57711 -tp57712 -a(S'ensure_loaded/1' -p57713 -S'ensure_loaded(${1:Appl}) $2' -p57714 -tp57715 -a(S'error/2' -p57716 -S'error(${1:Format}, ${2:Args}) $3' -p57717 -tp57718 -a(S'error_desc/1' -p57719 -S'error_desc(${1:Reason}) $2' -p57720 -tp57721 -a(S'etype/1' -p57722 -S'etype(${1:X}) $2' -p57723 -tp57724 -a(S'eval_debug_fun/4' -p57725 -S'eval_debug_fun(${1:FunId}, ${2:EvalContext}, ${3:EvalFile}, ${4:EvalLine}) $5' -p57726 -tp57727 -a(S'exists/1' -p57728 -S'exists(${1:Fname}) $2' -p57729 -tp57730 -a(S'fatal/2' -p57731 -S'fatal(${1:Format}, ${2:Args}) $3' -p57732 -tp57733 -a(S'fix_error/1' -p57734 -S'fix_error(${1:X}) $2' -p57735 -tp57736 -a(S'get_node_number/0' -p57737 -S'get_node_number() $1' -p57738 -tp57739 -a(S'have_majority/2' -p57740 -S'have_majority(${1:Tab}, ${2:HaveNodes}) $3' -p57741 -tp57742 -a(S'have_majority/3' -p57743 -S'have_majority(${1:Param1}, ${2:AllNodes}, ${3:HaveNodes}) $4' -p57744 -tp57745 -a(S'important/2' -p57746 -S'important(${1:Format}, ${2:Args}) $3' -p57747 -tp57748 -a(S'incr_counter/1' -p57749 -S'incr_counter(${1:Name}) $2' -p57750 -tp57751 -a(S'incr_counter/2' -p57752 -S'incr_counter(${1:Name}, ${2:I}) $3' -p57753 -tp57754 -a(S'intersect/2' -p57755 -S'intersect(${1:L1}, ${2:L2}) $3' -p57756 -tp57757 -a(S'is_debug_compiled/0' -p57758 -S'is_debug_compiled() $1' -p57759 -tp57760 -a(S'is_running/0' -p57761 -S'is_running() $1' -p57762 -tp57763 -a(S'is_running/1' -p57764 -S'is_running(${1:Node}) $2' -p57765 -tp57766 -a(S'is_running_remote/0' -p57767 -S'is_running_remote() $1' -p57768 -tp57769 -a(S'is_string/1' -p57770 -S'is_string(${1:Param1}) $2' -p57771 -tp57772 -a(S'key_search_all/3' -p57773 -S'key_search_all(${1:Key}, ${2:Pos}, ${3:TupleList}) $4' -p57774 -tp57775 -a(S'key_search_delete/3' -p57776 -S'key_search_delete(${1:Key}, ${2:Pos}, ${3:TupleList}) $4' -p57777 -tp57778 -a(S'last_error/0' -p57779 -S'last_error() $1' -p57780 -tp57781 -a(S'local_active_tables/0' -p57782 -S'local_active_tables() $1' -p57783 -tp57784 -a(S'lock_table/1' -p57785 -S'lock_table(${1:Tab}) $2' -p57786 -tp57787 -a(S'mkcore/1' -p57788 -S'mkcore(${1:CrashInfo}) $2' -p57789 -tp57790 -a(S'not_active_here/1' -p57791 -S'not_active_here(${1:Tab}) $2' -p57792 -tp57793 -a(S'other_val/2' -p57794 -S'other_val(${1:Var}, ${2:Other}) $3' -p57795 -tp57796 -a(S'overload_read/0' -p57797 -S'overload_read() $1' -p57798 -tp57799 -a(S'overload_read/1' -p57800 -S'overload_read(${1:T}) $2' -p57801 -tp57802 -a(S'overload_set/2' -p57803 -S'overload_set(${1:Type}, ${2:Bool}) $3' -p57804 -tp57805 -a(S'pad_name/3' -p57806 -S'pad_name(${1:Param1}, ${2:Len}, ${3:Tail}) $4' -p57807 -tp57808 -a(S'random_time/2' -p57809 -S'random_time(${1:Retries}, ${2:Param2}) $3' -p57810 -tp57811 -a(S'read_counter/1' -p57812 -S'read_counter(${1:Name}) $2' -p57813 -tp57814 -a(S'readable_indecies/1' -p57815 -S'readable_indecies(${1:Tab}) $2' -p57816 -tp57817 -a(S'remote_copy_holders/1' -p57818 -S'remote_copy_holders(${1:Cs}) $2' -p57819 -tp57820 -a(S'report_fatal/2' -p57821 -S'report_fatal(${1:Format}, ${2:Args}) $3' -p57822 -tp57823 -a(S'report_system_event/1' -p57824 -S'report_system_event(${1:Event0}) $2' -p57825 -tp57826 -a(S'running_nodes/0' -p57827 -S'running_nodes() $1' -p57828 -tp57829 -a(S'running_nodes/1' -p57830 -S'running_nodes(${1:Ns}) $2' -p57831 -tp57832 -a(S'schema_cs_to_storage_type/2' -p57833 -S'schema_cs_to_storage_type(${1:Node}, ${2:Cs}) $3' -p57834 -tp57835 -a(S'scratch_debug_fun/0' -p57836 -S'scratch_debug_fun() $1' -p57837 -tp57838 -a(S'search_delete/2' -p57839 -S'search_delete(${1:Obj}, ${2:List}) $3' -p57840 -tp57841 -a(S'set/2' -p57842 -S'set(${1:Var}, ${2:Val}) $3' -p57843 -tp57844 -a(S'set_counter/2' -p57845 -S'set_counter(${1:Name}, ${2:Val}) $3' -p57846 -tp57847 -a(S'set_local_content_whereabouts/1' -p57848 -S'set_local_content_whereabouts(${1:Tab}) $2' -p57849 -tp57850 -a(S'set_remote_where_to_read/1' -p57851 -S'set_remote_where_to_read(${1:Tab}) $2' -p57852 -tp57853 -a(S'set_remote_where_to_read/2' -p57854 -S'set_remote_where_to_read(${1:Tab}, ${2:Ignore}) $3' -p57855 -tp57856 -a(S'show/1' -p57857 -S'show(${1:X}) $2' -p57858 -tp57859 -a(S'show/2' -p57860 -S'show(${1:F}, ${2:A}) $3' -p57861 -tp57862 -a(S'sort_commit/1' -p57863 -S'sort_commit(${1:List}) $2' -p57864 -tp57865 -a(S'storage_type_at_node/2' -p57866 -S'storage_type_at_node(${1:Node}, ${2:Tab}) $3' -p57867 -tp57868 -a(S'tab2dat/1' -p57869 -S'tab2dat(${1:Tab}) $2' -p57870 -tp57871 -a(S'tab2dcd/1' -p57872 -S'tab2dcd(${1:Tab}) $2' -p57873 -tp57874 -a(S'tab2dcl/1' -p57875 -S'tab2dcl(${1:Tab}) $2' -p57876 -tp57877 -a(S'tab2dmp/1' -p57878 -S'tab2dmp(${1:Tab}) $2' -p57879 -tp57880 -a(S'tab2tmp/1' -p57881 -S'tab2tmp(${1:Tab}) $2' -p57882 -tp57883 -a(S'to_list/1' -p57884 -S'to_list(${1:X}) $2' -p57885 -tp57886 -a(S'union/2' -p57887 -S'union(${1:Param1}, ${2:L2}) $3' -p57888 -tp57889 -a(S'uniq/1' -p57890 -S'uniq(${1:List}) $2' -p57891 -tp57892 -a(S'unlock_table/1' -p57893 -S'unlock_table(${1:Tab}) $2' -p57894 -tp57895 -a(S'unset/1' -p57896 -S'unset(${1:Var}) $2' -p57897 -tp57898 -a(S'val/1' -p57899 -S'val(${1:Var}) $2' -p57900 -tp57901 -a(S'vcore/0' -p57902 -S'vcore() $1' -p57903 -tp57904 -a(S'vcore/1' -p57905 -S'vcore(${1:Bin}) $2' -p57906 -tp57907 -a(S'verbose/2' -p57908 -S'verbose(${1:Format}, ${2:Args}) $3' -p57909 -tp57910 -a(S'view/0' -p57911 -S'view() $1' -p57912 -tp57913 -a(S'view/1' -p57914 -S'view(${1:File}) $2' -p57915 -tp57916 -a(S'view/2' -p57917 -S'view(${1:File}, ${2:Param2}) $3' -p57918 -tp57919 -a(S'warning/2' -p57920 -S'warning(${1:Format}, ${2:Args}) $3' -p57921 -tp57922 -asS'cosEventApp' -p57923 -(lp57924 -(S'create_link/3' -p57925 -S'create_link(${1:Module}, ${2:Env}, ${3:ArgList}) $4' -p57926 -tp57927 -a(S'disconnect/3' -p57928 -S'disconnect(${1:Module}, ${2:Function}, ${3:Object}) $4' -p57929 -tp57930 -a(S'do_disconnect/3' -p57931 -S'do_disconnect(${1:Module}, ${2:Function}, ${3:Object}) $4' -p57932 -tp57933 -a(S'get_option/2' -p57934 -S'get_option(${1:Key}, ${2:OptionList}) $3' -p57935 -tp57936 -a(S'init/1' -p57937 -S'init(${1:Param1}) $2' -p57938 -tp57939 -a(S'install/0' -p57940 -S'install() $1' -p57941 -tp57942 -a(S'start/0' -p57943 -S'start() $1' -p57944 -tp57945 -a(S'start/2' -p57946 -S'start(${1:Param1}, ${2:Param2}) $3' -p57947 -tp57948 -a(S'start_channel/0' -p57949 -S'start_channel() $1' -p57950 -tp57951 -a(S'start_channel/1' -p57952 -S'start_channel(${1:Options}) $2' -p57953 -tp57954 -a(S'start_channel_link/0' -p57955 -S'start_channel_link() $1' -p57956 -tp57957 -a(S'start_channel_link/1' -p57958 -S'start_channel_link(${1:Options}) $2' -p57959 -tp57960 -a(S'stop/0' -p57961 -S'stop() $1' -p57962 -tp57963 -a(S'stop/1' -p57964 -S'stop(${1:Param1}) $2' -p57965 -tp57966 -a(S'stop_channel/1' -p57967 -S'stop_channel(${1:ChannelObj}) $2' -p57968 -tp57969 -a(S'type_check/3' -p57970 -S'type_check(${1:Obj}, ${2:Mod}, ${3:Param3}) $4' -p57971 -tp57972 -a(S'uninstall/0' -p57973 -S'uninstall() $1' -p57974 -tp57975 -asS'qlc_pt' -p57976 -(lp57977 -(S'parse_transform/2' -p57978 -S'parse_transform(${1:Forms}, ${2:Options}) $3' -p57979 -tp57980 -a(S'transform_expression/2' -p57981 -S'transform_expression(${1:LC}, ${2:Bs}) $3' -p57982 -tp57983 -a(S'transform_from_evaluator/2' -p57984 -S'transform_from_evaluator(${1:LC}, ${2:Bs}) $3' -p57985 -tp57986 -asS'megaco_text_parser_prev3a' -p57987 -(lp57988 -(S'format_error/1' -p57989 -S'format_error(${1:Message}) $2' -p57990 -tp57991 -a(S'parse/1' -p57992 -S'parse(${1:Tokens}) $2' -p57993 -tp57994 -a(S'parse_and_scan/1' -p57995 -S'parse_and_scan(${1:Param1}) $2' -p57996 -tp57997 -asS'megaco_text_parser_prev3b' -p57998 -(lp57999 -(S'format_error/1' -p58000 -S'format_error(${1:Message}) $2' -p58001 -tp58002 -a(S'parse/1' -p58003 -S'parse(${1:Tokens}) $2' -p58004 -tp58005 -a(S'parse_and_scan/1' -p58006 -S'parse_and_scan(${1:Param1}) $2' -p58007 -tp58008 -asS'megaco_text_parser_prev3c' -p58009 -(lp58010 -(S'format_error/1' -p58011 -S'format_error(${1:Message}) $2' -p58012 -tp58013 -a(S'parse/1' -p58014 -S'parse(${1:Tokens}) $2' -p58015 -tp58016 -a(S'parse_and_scan/1' -p58017 -S'parse_and_scan(${1:Param1}) $2' -p58018 -tp58019 -asS'wxAuiDockArt' -p58020 -(lp58021 -(S'parent_class/1' -p58022 -S'parent_class(${1:Param1}) $2' -p58023 -tp58024 -asS'inets_sup' -p58025 -(lp58026 -(S'init/1' -p58027 -S'init(${1:Param1}) $2' -p58028 -tp58029 -a(S'start_link/0' -p58030 -S'start_link() $1' -p58031 -tp58032 -asS'cosNotification_eventDB' -p58033 -(lp58034 -(S'add_and_get_event/2' -p58035 -S'add_and_get_event(${1:DBRef}, ${2:Event}) $3' -p58036 -tp58037 -a(S'add_and_get_event/3' -p58038 -S'add_and_get_event(${1:DBRef}, ${2:Event}, ${3:Delete}) $4' -p58039 -tp58040 -a(S'add_and_get_event/4' -p58041 -S'add_and_get_event(${1:DBRef}, ${2:Event}, ${3:LifeFilter}, ${4:PrioFilter}) $5' -p58042 -tp58043 -a(S'add_and_get_event/5' -p58044 -S'add_and_get_event(${1:DBRef}, ${2:Event}, ${3:LifeFilter}, ${4:PrioFilter}, ${5:Delete}) $6' -p58045 -tp58046 -a(S'add_event/2' -p58047 -S'add_event(${1:DBRef}, ${2:Event}) $3' -p58048 -tp58049 -a(S'add_event/4' -p58050 -S'add_event(${1:DBRef}, ${2:Event}, ${3:LifeFilter}, ${4:PrioFilter}) $5' -p58051 -tp58052 -a(S'create_db/4' -p58053 -S'create_db(${1:QoS}, ${2:GCTime}, ${3:GCLimit}, ${4:TimeRef}) $5' -p58054 -tp58055 -a(S'delete_events/1' -p58056 -S'delete_events(${1:Param1}) $2' -p58057 -tp58058 -a(S'destroy_db/1' -p58059 -S'destroy_db(${1:Param1}) $2' -p58060 -tp58061 -a(S'filter_events/2' -p58062 -S'filter_events(${1:Events}, ${2:Filters}) $3' -p58063 -tp58064 -a(S'filter_events/3' -p58065 -S'filter_events(${1:Events}, ${2:Filters}, ${3:Reversed}) $4' -p58066 -tp58067 -a(S'gc_events/2' -p58068 -S'gc_events(${1:DBRef}, ${2:Priority}) $3' -p58069 -tp58070 -a(S'gc_events_local/4' -p58071 -S'gc_events_local(${1:ORef}, ${2:DRef}, ${3:Param3}, ${4:Param4}) $5' -p58072 -tp58073 -a(S'gc_start/2' -p58074 -S'gc_start(${1:Param1}, ${2:Priority}) $3' -p58075 -tp58076 -a(S'get_event/1' -p58077 -S'get_event(${1:DBRef}) $2' -p58078 -tp58079 -a(S'get_event/2' -p58080 -S'get_event(${1:DBRef}, ${2:Delete}) $3' -p58081 -tp58082 -a(S'get_events/2' -p58083 -S'get_events(${1:Param1}, ${2:Max}) $3' -p58084 -tp58085 -a(S'get_events/3' -p58086 -S'get_events(${1:Param1}, ${2:Max}, ${3:Delete}) $4' -p58087 -tp58088 -a(S'status/2' -p58089 -S'status(${1:DBRef}, ${2:Param2}) $3' -p58090 -tp58091 -a(S'update/2' -p58092 -S'update(${1:DBRef}, ${2:QoS}) $3' -p58093 -tp58094 -a(S'update/4' -p58095 -S'update(${1:DBRef}, ${2:QoS}, ${3:LifeFilter}, ${4:PrioFilter}) $5' -p58096 -tp58097 -a(S'validate_event/5' -p58098 -S'validate_event(${1:Param1}, ${2:Events}, ${3:Filters}, ${4:DBRef}, ${5:Param5}) $6' -p58099 -tp58100 -asS'wxBufferedPaintDC' -p58101 -(lp58102 -(S'blit/5' -p58103 -S'blit(${1:This}, ${2:DestPt}, ${3:Sz}, ${4:Source}, ${5:SrcPt}) $6' -p58104 -tp58105 -a(S'blit/6' -p58106 -S'blit(${1:This}, ${2:DestPt}, ${3:Sz}, ${4:Source}, ${5:SrcPt}, ${6:Options}) $7' -p58107 -tp58108 -a(S'calcBoundingBox/3' -p58109 -S'calcBoundingBox(${1:This}, ${2:X}, ${3:Y}) $4' -p58110 -tp58111 -a(S'clear/1' -p58112 -S'clear(${1:This}) $2' -p58113 -tp58114 -a(S'computeScaleAndOrigin/1' -p58115 -S'computeScaleAndOrigin(${1:This}) $2' -p58116 -tp58117 -a(S'crossHair/2' -p58118 -S'crossHair(${1:This}, ${2:Pt}) $3' -p58119 -tp58120 -a(S'destroy/1' -p58121 -S'destroy(${1:This}) $2' -p58122 -tp58123 -a(S'destroyClippingRegion/1' -p58124 -S'destroyClippingRegion(${1:This}) $2' -p58125 -tp58126 -a(S'deviceToLogicalX/2' -p58127 -S'deviceToLogicalX(${1:This}, ${2:X}) $3' -p58128 -tp58129 -a(S'deviceToLogicalXRel/2' -p58130 -S'deviceToLogicalXRel(${1:This}, ${2:X}) $3' -p58131 -tp58132 -a(S'deviceToLogicalY/2' -p58133 -S'deviceToLogicalY(${1:This}, ${2:Y}) $3' -p58134 -tp58135 -a(S'deviceToLogicalYRel/2' -p58136 -S'deviceToLogicalYRel(${1:This}, ${2:Y}) $3' -p58137 -tp58138 -a(S'drawArc/4' -p58139 -S'drawArc(${1:This}, ${2:Pt1}, ${3:Pt2}, ${4:Centre}) $5' -p58140 -tp58141 -a(S'drawBitmap/3' -p58142 -S'drawBitmap(${1:This}, ${2:Bmp}, ${3:Pt}) $4' -p58143 -tp58144 -a(S'drawBitmap/4' -p58145 -S'drawBitmap(${1:This}, ${2:Bmp}, ${3:Pt}, ${4:Options}) $5' -p58146 -tp58147 -a(S'drawCheckMark/2' -p58148 -S'drawCheckMark(${1:This}, ${2:Rect}) $3' -p58149 -tp58150 -a(S'drawCircle/3' -p58151 -S'drawCircle(${1:This}, ${2:Pt}, ${3:Radius}) $4' -p58152 -tp58153 -a(S'drawEllipse/2' -p58154 -S'drawEllipse(${1:This}, ${2:Rect}) $3' -p58155 -tp58156 -a(S'drawEllipse/3' -p58157 -S'drawEllipse(${1:This}, ${2:Pt}, ${3:Sz}) $4' -p58158 -tp58159 -a(S'drawEllipticArc/5' -p58160 -S'drawEllipticArc(${1:This}, ${2:Pt}, ${3:Sz}, ${4:Sa}, ${5:Ea}) $6' -p58161 -tp58162 -a(S'drawIcon/3' -p58163 -S'drawIcon(${1:This}, ${2:Icon}, ${3:Pt}) $4' -p58164 -tp58165 -a(S'drawLabel/3' -p58166 -S'drawLabel(${1:This}, ${2:Text}, ${3:Rect}) $4' -p58167 -tp58168 -a(S'drawLabel/4' -p58169 -S'drawLabel(${1:This}, ${2:Text}, ${3:Rect}, ${4:Options}) $5' -p58170 -tp58171 -a(S'drawLine/3' -p58172 -S'drawLine(${1:This}, ${2:Pt1}, ${3:Pt2}) $4' -p58173 -tp58174 -a(S'drawLines/2' -p58175 -S'drawLines(${1:This}, ${2:Points}) $3' -p58176 -tp58177 -a(S'drawLines/3' -p58178 -S'drawLines(${1:This}, ${2:Points}, ${3:Options}) $4' -p58179 -tp58180 -a(S'drawPoint/2' -p58181 -S'drawPoint(${1:This}, ${2:Pt}) $3' -p58182 -tp58183 -a(S'drawPolygon/2' -p58184 -S'drawPolygon(${1:This}, ${2:Points}) $3' -p58185 -tp58186 -a(S'drawPolygon/3' -p58187 -S'drawPolygon(${1:This}, ${2:Points}, ${3:Options}) $4' -p58188 -tp58189 -a(S'drawRectangle/2' -p58190 -S'drawRectangle(${1:This}, ${2:Rect}) $3' -p58191 -tp58192 -a(S'drawRectangle/3' -p58193 -S'drawRectangle(${1:This}, ${2:Pt}, ${3:Sz}) $4' -p58194 -tp58195 -a(S'drawRotatedText/4' -p58196 -S'drawRotatedText(${1:This}, ${2:Text}, ${3:Pt}, ${4:Angle}) $5' -p58197 -tp58198 -a(S'drawRoundedRectangle/3' -p58199 -S'drawRoundedRectangle(${1:This}, ${2:R}, ${3:Radius}) $4' -p58200 -tp58201 -a(S'drawRoundedRectangle/4' -p58202 -S'drawRoundedRectangle(${1:This}, ${2:Pt}, ${3:Sz}, ${4:Radius}) $5' -p58203 -tp58204 -a(S'drawText/3' -p58205 -S'drawText(${1:This}, ${2:Text}, ${3:Pt}) $4' -p58206 -tp58207 -a(S'endDoc/1' -p58208 -S'endDoc(${1:This}) $2' -p58209 -tp58210 -a(S'endPage/1' -p58211 -S'endPage(${1:This}) $2' -p58212 -tp58213 -a(S'floodFill/3' -p58214 -S'floodFill(${1:This}, ${2:Pt}, ${3:Col}) $4' -p58215 -tp58216 -a(S'floodFill/4' -p58217 -S'floodFill(${1:This}, ${2:Pt}, ${3:Col}, ${4:Options}) $5' -p58218 -tp58219 -a(S'getBackground/1' -p58220 -S'getBackground(${1:This}) $2' -p58221 -tp58222 -a(S'getBackgroundMode/1' -p58223 -S'getBackgroundMode(${1:This}) $2' -p58224 -tp58225 -a(S'getBrush/1' -p58226 -S'getBrush(${1:This}) $2' -p58227 -tp58228 -a(S'getCharHeight/1' -p58229 -S'getCharHeight(${1:This}) $2' -p58230 -tp58231 -a(S'getCharWidth/1' -p58232 -S'getCharWidth(${1:This}) $2' -p58233 -tp58234 -a(S'getClippingBox/1' -p58235 -S'getClippingBox(${1:This}) $2' -p58236 -tp58237 -a(S'getFont/1' -p58238 -S'getFont(${1:This}) $2' -p58239 -tp58240 -a(S'getLayoutDirection/1' -p58241 -S'getLayoutDirection(${1:This}) $2' -p58242 -tp58243 -a(S'getLogicalFunction/1' -p58244 -S'getLogicalFunction(${1:This}) $2' -p58245 -tp58246 -a(S'getMapMode/1' -p58247 -S'getMapMode(${1:This}) $2' -p58248 -tp58249 -a(S'getMultiLineTextExtent/2' -p58250 -S'getMultiLineTextExtent(${1:This}, ${2:String}) $3' -p58251 -tp58252 -a(S'getMultiLineTextExtent/3' -p58253 -S'getMultiLineTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p58254 -tp58255 -a(S'getPPI/1' -p58256 -S'getPPI(${1:This}) $2' -p58257 -tp58258 -a(S'getPartialTextExtents/2' -p58259 -S'getPartialTextExtents(${1:This}, ${2:Text}) $3' -p58260 -tp58261 -a(S'getPen/1' -p58262 -S'getPen(${1:This}) $2' -p58263 -tp58264 -a(S'getPixel/2' -p58265 -S'getPixel(${1:This}, ${2:Pt}) $3' -p58266 -tp58267 -a(S'getSize/1' -p58268 -S'getSize(${1:This}) $2' -p58269 -tp58270 -a(S'getSizeMM/1' -p58271 -S'getSizeMM(${1:This}) $2' -p58272 -tp58273 -a(S'getTextBackground/1' -p58274 -S'getTextBackground(${1:This}) $2' -p58275 -tp58276 -a(S'getTextExtent/2' -p58277 -S'getTextExtent(${1:This}, ${2:String}) $3' -p58278 -tp58279 -a(S'getTextExtent/3' -p58280 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p58281 -tp58282 -a(S'getTextForeground/1' -p58283 -S'getTextForeground(${1:This}) $2' -p58284 -tp58285 -a(S'getUserScale/1' -p58286 -S'getUserScale(${1:This}) $2' -p58287 -tp58288 -a(S'gradientFillConcentric/4' -p58289 -S'gradientFillConcentric(${1:This}, ${2:Rect}, ${3:InitialColour}, ${4:DestColour}) $5' -p58290 -tp58291 -a(S'gradientFillConcentric/5' -p58292 -S'gradientFillConcentric(${1:This}, ${2:Rect}, ${3:InitialColour}, ${4:DestColour}, ${5:CircleCenter}) $6' -p58293 -tp58294 -a(S'gradientFillLinear/4' -p58295 -S'gradientFillLinear(${1:This}, ${2:Rect}, ${3:InitialColour}, ${4:DestColour}) $5' -p58296 -tp58297 -a(S'gradientFillLinear/5' -p58298 -S'gradientFillLinear(${1:This}, ${2:Rect}, ${3:InitialColour}, ${4:DestColour}, ${5:Options}) $6' -p58299 -tp58300 -a(S'init/2' -p58301 -S'init(${1:This}, ${2:Dc}) $3' -p58302 -tp58303 -a(S'init/3' -p58304 -S'init(${1:This}, ${2:Dc}, ${3:Area}) $4' -p58305 -tp58306 -a(S'init/4' -p58307 -S'init(${1:This}, ${2:Dc}, ${3:Area}, ${4:Options}) $5' -p58308 -tp58309 -a(S'isOk/1' -p58310 -S'isOk(${1:This}) $2' -p58311 -tp58312 -a(S'logicalToDeviceX/2' -p58313 -S'logicalToDeviceX(${1:This}, ${2:X}) $3' -p58314 -tp58315 -a(S'logicalToDeviceXRel/2' -p58316 -S'logicalToDeviceXRel(${1:This}, ${2:X}) $3' -p58317 -tp58318 -a(S'logicalToDeviceY/2' -p58319 -S'logicalToDeviceY(${1:This}, ${2:Y}) $3' -p58320 -tp58321 -a(S'logicalToDeviceYRel/2' -p58322 -S'logicalToDeviceYRel(${1:This}, ${2:Y}) $3' -p58323 -tp58324 -a(S'maxX/1' -p58325 -S'maxX(${1:This}) $2' -p58326 -tp58327 -a(S'maxY/1' -p58328 -S'maxY(${1:This}) $2' -p58329 -tp58330 -a(S'minX/1' -p58331 -S'minX(${1:This}) $2' -p58332 -tp58333 -a(S'minY/1' -p58334 -S'minY(${1:This}) $2' -p58335 -tp58336 -a(S'new/1' -p58337 -S'new(${1:Window}) $2' -p58338 -tp58339 -a(S'new/2' -p58340 -S'new(${1:Window}, ${2:Buffer}) $3' -p58341 -tp58342 -a(S'new/3' -p58343 -S'new(${1:Window}, ${2:Buffer}, ${3:Param3}) $4' -p58344 -tp58345 -a(S'parent_class/1' -p58346 -S'parent_class(${1:Param1}) $2' -p58347 -tp58348 -a(S'resetBoundingBox/1' -p58349 -S'resetBoundingBox(${1:This}) $2' -p58350 -tp58351 -a(S'selectObject/2' -p58352 -S'selectObject(${1:This}, ${2:Bmp}) $3' -p58353 -tp58354 -a(S'selectObjectAsSource/2' -p58355 -S'selectObjectAsSource(${1:This}, ${2:Bmp}) $3' -p58356 -tp58357 -a(S'setAxisOrientation/3' -p58358 -S'setAxisOrientation(${1:This}, ${2:XLeftRight}, ${3:YBottomUp}) $4' -p58359 -tp58360 -a(S'setBackground/2' -p58361 -S'setBackground(${1:This}, ${2:Brush}) $3' -p58362 -tp58363 -a(S'setBackgroundMode/2' -p58364 -S'setBackgroundMode(${1:This}, ${2:Mode}) $3' -p58365 -tp58366 -a(S'setBrush/2' -p58367 -S'setBrush(${1:This}, ${2:Brush}) $3' -p58368 -tp58369 -a(S'setClippingRegion/2' -p58370 -S'setClippingRegion(${1:This}, ${2:Region}) $3' -p58371 -tp58372 -a(S'setClippingRegion/3' -p58373 -S'setClippingRegion(${1:This}, ${2:Pt}, ${3:Sz}) $4' -p58374 -tp58375 -a(S'setDeviceOrigin/3' -p58376 -S'setDeviceOrigin(${1:This}, ${2:X}, ${3:Y}) $4' -p58377 -tp58378 -a(S'setFont/2' -p58379 -S'setFont(${1:This}, ${2:Font}) $3' -p58380 -tp58381 -a(S'setLayoutDirection/2' -p58382 -S'setLayoutDirection(${1:This}, ${2:Dir}) $3' -p58383 -tp58384 -a(S'setLogicalFunction/2' -p58385 -S'setLogicalFunction(${1:This}, ${2:Function}) $3' -p58386 -tp58387 -a(S'setMapMode/2' -p58388 -S'setMapMode(${1:This}, ${2:Mode}) $3' -p58389 -tp58390 -a(S'setPalette/2' -p58391 -S'setPalette(${1:This}, ${2:Palette}) $3' -p58392 -tp58393 -a(S'setPen/2' -p58394 -S'setPen(${1:This}, ${2:Pen}) $3' -p58395 -tp58396 -a(S'setTextBackground/2' -p58397 -S'setTextBackground(${1:This}, ${2:Colour}) $3' -p58398 -tp58399 -a(S'setTextForeground/2' -p58400 -S'setTextForeground(${1:This}, ${2:Colour}) $3' -p58401 -tp58402 -a(S'setUserScale/3' -p58403 -S'setUserScale(${1:This}, ${2:X}, ${3:Y}) $4' -p58404 -tp58405 -a(S'startDoc/2' -p58406 -S'startDoc(${1:This}, ${2:Message}) $3' -p58407 -tp58408 -a(S'startPage/1' -p58409 -S'startPage(${1:This}) $2' -p58410 -tp58411 -asS'cosEventDomainApp' -p58412 -(lp58413 -(S'create_id/0' -p58414 -S'create_id() $1' -p58415 -tp58416 -a(S'create_id/1' -p58417 -S'create_id(${1:OldID}) $2' -p58418 -tp58419 -a(S'create_link/3' -p58420 -S'create_link(${1:Module}, ${2:Env}, ${3:ArgList}) $4' -p58421 -tp58422 -a(S'create_name/1' -p58423 -S'create_name(${1:Type}) $2' -p58424 -tp58425 -a(S'create_name/2' -p58426 -S'create_name(${1:Name}, ${2:Type}) $3' -p58427 -tp58428 -a(S'get_admin/1' -p58429 -S'get_admin(${1:Properties}) $2' -p58430 -tp58431 -a(S'get_option/3' -p58432 -S'get_option(${1:Key}, ${2:OptionList}, ${3:DefaultList}) $4' -p58433 -tp58434 -a(S'get_qos/1' -p58435 -S'get_qos(${1:Properties}) $2' -p58436 -tp58437 -a(S'init/1' -p58438 -S'init(${1:Param1}) $2' -p58439 -tp58440 -a(S'install/0' -p58441 -S'install() $1' -p58442 -tp58443 -a(S'is_debug_compiled/0' -p58444 -S'is_debug_compiled() $1' -p58445 -tp58446 -a(S'start/0' -p58447 -S'start() $1' -p58448 -tp58449 -a(S'start/2' -p58450 -S'start(${1:Param1}, ${2:Param2}) $3' -p58451 -tp58452 -a(S'start_factory/0' -p58453 -S'start_factory() $1' -p58454 -tp58455 -a(S'start_factory/1' -p58456 -S'start_factory(${1:Options}) $2' -p58457 -tp58458 -a(S'start_factory_link/0' -p58459 -S'start_factory_link() $1' -p58460 -tp58461 -a(S'start_factory_link/1' -p58462 -S'start_factory_link(${1:Options}) $2' -p58463 -tp58464 -a(S'stop/0' -p58465 -S'stop() $1' -p58466 -tp58467 -a(S'stop/1' -p58468 -S'stop(${1:Param1}) $2' -p58469 -tp58470 -a(S'stop_factory/1' -p58471 -S'stop_factory(${1:ChannelObj}) $2' -p58472 -tp58473 -a(S'uninstall/0' -p58474 -S'uninstall() $1' -p58475 -tp58476 -asS'gstk_button' -p58477 -(lp58478 -(S'config/3' -p58479 -S'config(${1:DB}, ${2:Gstkid}, ${3:Opts}) $4' -p58480 -tp58481 -a(S'create/3' -p58482 -S'create(${1:DB}, ${2:GstkId}, ${3:Opts}) $4' -p58483 -tp58484 -a(S'delete/2' -p58485 -S'delete(${1:DB}, ${2:Gstkid}) $3' -p58486 -tp58487 -a(S'event/5' -p58488 -S'event(${1:DB}, ${2:Gstkid}, ${3:Etype}, ${4:Edata}, ${5:Args}) $6' -p58489 -tp58490 -a(S'option/5' -p58491 -S'option(${1:Option}, ${2:Gstkid}, ${3:TkW}, ${4:DB}, ${5:Param5}) $6' -p58492 -tp58493 -a(S'read/3' -p58494 -S'read(${1:DB}, ${2:Gstkid}, ${3:Opt}) $4' -p58495 -tp58496 -a(S'read_option/5' -p58497 -S'read_option(${1:Option}, ${2:Gstkid}, ${3:TkW}, ${4:DB}, ${5:Param5}) $6' -p58498 -tp58499 -asS'inets_service' -p58500 -(lp58501 -(S'behaviour_info/1' -p58502 -S'behaviour_info(${1:Param1}) $2' -p58503 -tp58504 -asS'snmpm_server' -p58505 -(lp58506 -(S'async_get/4' -p58507 -S'async_get(${1:UserId}, ${2:TargetName}, ${3:CtxName}, ${4:Oids}) $5' -p58508 -tp58509 -a(S'async_get/5' -p58510 -S'async_get(${1:UserId}, ${2:TargetName}, ${3:CtxName}, ${4:Oids}, ${5:Expire}) $6' -p58511 -tp58512 -a(S'async_get/6' -p58513 -S'async_get(${1:Pid}, ${2:UserId}, ${3:TargetName}, ${4:Oids}, ${5:SendOpts}, ${6:State}) $7' -p58514 -tp58515 -a(S'async_get2/4' -p58516 -S'async_get2(${1:UserId}, ${2:TargetName}, ${3:Oids}, ${4:SendOpts}) $5' -p58517 -tp58518 -a(S'async_get_bulk/6' -p58519 -S'async_get_bulk(${1:UserId}, ${2:TargetName}, ${3:NonRep}, ${4:MaxRep}, ${5:CtxName}, ${6:Oids}) $7' -p58520 -tp58521 -a(S'async_get_bulk/7' -p58522 -S'async_get_bulk(${1:UserId}, ${2:TargetName}, ${3:NonRep}, ${4:MaxRep}, ${5:CtxName}, ${6:Oids}, ${7:Expire}) $8' -p58523 -tp58524 -a(S'async_get_bulk/8' -p58525 -S'async_get_bulk() $1' -p58526 -tp58527 -a(S'async_get_bulk2/6' -p58528 -S'async_get_bulk2(${1:UserId}, ${2:TargetName}, ${3:NonRep}, ${4:MaxRep}, ${5:Oids}, ${6:SendOpts}) $7' -p58529 -tp58530 -a(S'async_get_next/4' -p58531 -S'async_get_next(${1:UserId}, ${2:TargetName}, ${3:CtxName}, ${4:Oids}) $5' -p58532 -tp58533 -a(S'async_get_next/5' -p58534 -S'async_get_next(${1:UserId}, ${2:TargetName}, ${3:CtxName}, ${4:Oids}, ${5:Expire}) $6' -p58535 -tp58536 -a(S'async_get_next/6' -p58537 -S'async_get_next(${1:Pid}, ${2:UserId}, ${3:TargetName}, ${4:Oids}, ${5:SendOpts}, ${6:State}) $7' -p58538 -tp58539 -a(S'async_get_next2/4' -p58540 -S'async_get_next2(${1:UserId}, ${2:TargetName}, ${3:Oids}, ${4:SendOpts}) $5' -p58541 -tp58542 -a(S'async_set/4' -p58543 -S'async_set(${1:UserId}, ${2:TargetName}, ${3:CtxName}, ${4:VarsAndVals}) $5' -p58544 -tp58545 -a(S'async_set/5' -p58546 -S'async_set(${1:UserId}, ${2:TargetName}, ${3:CtxName}, ${4:VarsAndVals}, ${5:Expire}) $6' -p58547 -tp58548 -a(S'async_set/6' -p58549 -S'async_set(${1:Pid}, ${2:UserId}, ${3:TargetName}, ${4:VarsAndVals}, ${5:SendOpts}, ${6:State}) $7' -p58550 -tp58551 -a(S'async_set2/4' -p58552 -S'async_set2(${1:UserId}, ${2:TargetName}, ${3:VarsAndVals}, ${4:SendOpts}) $5' -p58553 -tp58554 -a(S'cancel_async_request/2' -p58555 -S'cancel_async_request(${1:UserId}, ${2:ReqId}) $3' -p58556 -tp58557 -a(S'code_change/3' -p58558 -S'code_change(${1:Param1}, ${2:State0}, ${3:Param3}) $4' -p58559 -tp58560 -a(S'gct/2' -p58561 -S'gct(${1:State}, ${2:Timeout}) $3' -p58562 -tp58563 -a(S'gct_init/1' -p58564 -S'gct_init(${1:State}) $2' -p58565 -tp58566 -a(S'get_log_type/0' -p58567 -S'get_log_type() $1' -p58568 -tp58569 -a(S'handle_call/3' -p58570 -S'handle_call(${1:Req}, ${2:Param2}, ${3:State}) $4' -p58571 -tp58572 -a(S'handle_cast/2' -p58573 -S'handle_cast(${1:Msg}, ${2:State}) $3' -p58574 -tp58575 -a(S'handle_info/2' -p58576 -S'handle_info(${1:Info}, ${2:State}) $3' -p58577 -tp58578 -a(S'info/0' -p58579 -S'info() $1' -p58580 -tp58581 -a(S'init/1' -p58582 -S'init(${1:State}) $2' -p58583 -tp58584 -a(S'is_started/0' -p58585 -S'is_started() $1' -p58586 -tp58587 -a(S'load_mib/1' -p58588 -S'load_mib(${1:MibFile}) $2' -p58589 -tp58590 -a(S'reconfigure/0' -p58591 -S'reconfigure() $1' -p58592 -tp58593 -a(S'register_user/4' -p58594 -S'register_user(${1:UserId}, ${2:UserMod}, ${3:UserData}, ${4:DefaultAgentConfig}) $5' -p58595 -tp58596 -a(S'register_user_monitor/4' -p58597 -S'register_user_monitor(${1:Id}, ${2:Module}, ${3:Data}, ${4:DefaultAgentConfig}) $5' -p58598 -tp58599 -a(S'set_log_type/1' -p58600 -S'set_log_type(${1:NewType}) $2' -p58601 -tp58602 -a(S'start_link/0' -p58603 -S'start_link() $1' -p58604 -tp58605 -a(S'stop/0' -p58606 -S'stop() $1' -p58607 -tp58608 -a(S'sync_get/4' -p58609 -S'sync_get(${1:UserId}, ${2:TargetName}, ${3:CtxName}, ${4:Oids}) $5' -p58610 -tp58611 -a(S'sync_get/5' -p58612 -S'sync_get(${1:UserId}, ${2:TargetName}, ${3:CtxName}, ${4:Oids}, ${5:Timeout}) $6' -p58613 -tp58614 -a(S'sync_get/6' -p58615 -S'sync_get(${1:Pid}, ${2:UserId}, ${3:TargetName}, ${4:Oids}, ${5:SendOpts}, ${6:State}) $7' -p58616 -tp58617 -a(S'sync_get2/4' -p58618 -S'sync_get2(${1:UserId}, ${2:TargetName}, ${3:Oids}, ${4:Opts}) $5' -p58619 -tp58620 -a(S'sync_get_bulk/6' -p58621 -S'sync_get_bulk(${1:UserId}, ${2:TargetName}, ${3:NonRep}, ${4:MaxRep}, ${5:CtxName}, ${6:Oids}) $7' -p58622 -tp58623 -a(S'sync_get_bulk/7' -p58624 -S'sync_get_bulk(${1:UserId}, ${2:TargetName}, ${3:NonRep}, ${4:MaxRep}, ${5:CtxName}, ${6:Oids}, ${7:Timeout}) $8' -p58625 -tp58626 -a(S'sync_get_bulk/8' -p58627 -S'sync_get_bulk() $1' -p58628 -tp58629 -a(S'sync_get_bulk2/6' -p58630 -S'sync_get_bulk2(${1:UserId}, ${2:TargetName}, ${3:NonRep}, ${4:MaxRep}, ${5:Oids}, ${6:SendOpts}) $7' -p58631 -tp58632 -a(S'sync_get_next/4' -p58633 -S'sync_get_next(${1:UserId}, ${2:TargetName}, ${3:CtxName}, ${4:Oids}) $5' -p58634 -tp58635 -a(S'sync_get_next/5' -p58636 -S'sync_get_next(${1:UserId}, ${2:TargetName}, ${3:CtxName}, ${4:Oids}, ${5:Timeout}) $6' -p58637 -tp58638 -a(S'sync_get_next/6' -p58639 -S'sync_get_next(${1:Pid}, ${2:UserId}, ${3:TargetName}, ${4:Oids}, ${5:SendOpts}, ${6:State}) $7' -p58640 -tp58641 -a(S'sync_get_next2/4' -p58642 -S'sync_get_next2(${1:UserId}, ${2:TargetName}, ${3:Oids}, ${4:SendOpts}) $5' -p58643 -tp58644 -a(S'sync_set/4' -p58645 -S'sync_set(${1:UserId}, ${2:TargetName}, ${3:CtxName}, ${4:VarsAndVals}) $5' -p58646 -tp58647 -a(S'sync_set/5' -p58648 -S'sync_set(${1:UserId}, ${2:TargetName}, ${3:CtxName}, ${4:VarsAndVals}, ${5:Timeout}) $6' -p58649 -tp58650 -a(S'sync_set/6' -p58651 -S'sync_set(${1:Pid}, ${2:UserId}, ${3:TargetName}, ${4:VarsAndVals}, ${5:SendOpts}, ${6:State}) $7' -p58652 -tp58653 -a(S'sync_set2/4' -p58654 -S'sync_set2(${1:UserId}, ${2:TargetName}, ${3:VarsAndVals}, ${4:SendOpts}) $5' -p58655 -tp58656 -a(S'terminate/2' -p58657 -S'terminate(${1:Reason}, ${2:Param2}) $3' -p58658 -tp58659 -a(S'unload_mib/1' -p58660 -S'unload_mib(${1:Mib}) $2' -p58661 -tp58662 -a(S'unregister_user/1' -p58663 -S'unregister_user(${1:UserId}) $2' -p58664 -tp58665 -a(S'verbosity/1' -p58666 -S'verbosity(${1:Verbosity}) $2' -p58667 -tp58668 -a(S'verbosity/2' -p58669 -S'verbosity(${1:Ref}, ${2:Verbosity}) $3' -p58670 -tp58671 -asS'snmpa_error_io' -p58672 -(lp58673 -(S'config_err/2' -p58674 -S'config_err(${1:F}, ${2:A}) $3' -p58675 -tp58676 -a(S'user_err/2' -p58677 -S'user_err(${1:F}, ${2:A}) $3' -p58678 -tp58679 -asS'CosFileTransfer_FileNotFoundException' -p58680 -(lp58681 -(S'id/0' -p58682 -S'id() $1' -p58683 -tp58684 -a(S'name/0' -p58685 -S'name() $1' -p58686 -tp58687 -a(S'tc/0' -p58688 -S'tc() $1' -p58689 -tp58690 -asS'ic_fetch' -p58691 -(lp58692 -(S'fetchTk/3' -p58693 -S'fetchTk(${1:G}, ${2:N}, ${3:X}) $4' -p58694 -tp58695 -a(S'isArray/3' -p58696 -S'isArray(${1:Param1}, ${2:Param2}, ${3:T}) $4' -p58697 -tp58698 -a(S'isBasicType/1' -p58699 -S'isBasicType(${1:Type}) $2' -p58700 -tp58701 -a(S'isBasicType/2' -p58702 -S'isBasicType(${1:G}, ${2:Name}) $3' -p58703 -tp58704 -a(S'isBasicType/3' -p58705 -S'isBasicType(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p58706 -tp58707 -a(S'isBasicTypeOrEterm/3' -p58708 -S'isBasicTypeOrEterm(${1:G}, ${2:N}, ${3:S}) $4' -p58709 -tp58710 -a(S'isEterm/3' -p58711 -S'isEterm(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p58712 -tp58713 -a(S'isString/3' -p58714 -S'isString(${1:Param1}, ${2:Param2}, ${3:T}) $4' -p58715 -tp58716 -a(S'isStruct/3' -p58717 -S'isStruct(${1:Param1}, ${2:Param2}, ${3:T}) $4' -p58718 -tp58719 -a(S'isUnion/3' -p58720 -S'isUnion(${1:Param1}, ${2:Param2}, ${3:T}) $4' -p58721 -tp58722 -a(S'member2type/3' -p58723 -S'member2type(${1:G}, ${2:X}, ${3:I}) $4' -p58724 -tp58725 -a(S'name2type/2' -p58726 -S'name2type(${1:G}, ${2:Name}) $3' -p58727 -tp58728 -a(S'searchIncludedTk/2' -p58729 -S'searchIncludedTk(${1:TK}, ${2:IR_ID}) $3' -p58730 -tp58731 -a(S'searchInsideTks/2' -p58732 -S'searchInsideTks(${1:Param1}, ${2:IR_ID}) $3' -p58733 -tp58734 -a(S'searchTk/2' -p58735 -S'searchTk(${1:G}, ${2:IR_ID}) $3' -p58736 -tp58737 -a(S'searchTk/3' -p58738 -S'searchTk(${1:S}, ${2:IR_ID}, ${3:Type}) $4' -p58739 -tp58740 -asS'mnesia_schema' -p58741 -(lp58742 -(S'add_snmp/2' -p58743 -S'add_snmp(${1:Tab}, ${2:Ustruct}) $3' -p58744 -tp58745 -a(S'add_table_copy/3' -p58746 -S'add_table_copy(${1:Tab}, ${2:Node}, ${3:Storage}) $4' -p58747 -tp58748 -a(S'add_table_index/2' -p58749 -S'add_table_index(${1:Tab}, ${2:Pos}) $3' -p58750 -tp58751 -a(S'arrange_restore/3' -p58752 -S'arrange_restore(${1:R}, ${2:Fun}, ${3:Recs}) $4' -p58753 -tp58754 -a(S'attr_tab_to_pos/2' -p58755 -S'attr_tab_to_pos(${1:Tab}, ${2:Pos}) $3' -p58756 -tp58757 -a(S'attr_to_pos/2' -p58758 -S'attr_to_pos(${1:Pos}, ${2:Attrs}) $3' -p58759 -tp58760 -a(S'change_table_access_mode/2' -p58761 -S'change_table_access_mode(${1:Tab}, ${2:Mode}) $3' -p58762 -tp58763 -a(S'change_table_copy_type/3' -p58764 -S'change_table_copy_type(${1:Tab}, ${2:Node}, ${3:ToS}) $4' -p58765 -tp58766 -a(S'change_table_frag/2' -p58767 -S'change_table_frag(${1:Tab}, ${2:Change}) $3' -p58768 -tp58769 -a(S'change_table_load_order/2' -p58770 -S'change_table_load_order(${1:Tab}, ${2:LoadOrder}) $3' -p58771 -tp58772 -a(S'change_table_majority/2' -p58773 -S'change_table_majority(${1:Tab}, ${2:Majority}) $3' -p58774 -tp58775 -a(S'check_duplicates/2' -p58776 -S'check_duplicates(${1:Tab}, ${2:Keys}) $3' -p58777 -tp58778 -a(S'check_keys/3' -p58779 -S'check_keys(${1:Tab}, ${2:Arg}, ${3:Items}) $4' -p58780 -tp58781 -a(S'create_table/1' -p58782 -S'create_table(${1:TabDef}) $2' -p58783 -tp58784 -a(S'cs2list/1' -p58785 -S'cs2list(${1:Cs}) $2' -p58786 -tp58787 -a(S'del_snmp/1' -p58788 -S'del_snmp(${1:Tab}) $2' -p58789 -tp58790 -a(S'del_table_copy/2' -p58791 -S'del_table_copy(${1:Tab}, ${2:Node}) $3' -p58792 -tp58793 -a(S'del_table_index/2' -p58794 -S'del_table_index(${1:Tab}, ${2:Pos}) $3' -p58795 -tp58796 -a(S'delete_cstruct/2' -p58797 -S'delete_cstruct(${1:Tid}, ${2:Cs}) $3' -p58798 -tp58799 -a(S'delete_schema/1' -p58800 -S'delete_schema(${1:Ns}) $2' -p58801 -tp58802 -a(S'delete_schema2/0' -p58803 -S'delete_schema2() $1' -p58804 -tp58805 -a(S'delete_table/1' -p58806 -S'delete_table(${1:Tab}) $2' -p58807 -tp58808 -a(S'delete_table_property/2' -p58809 -S'delete_table_property(${1:Tab}, ${2:PropKey}) $3' -p58810 -tp58811 -a(S'do_create_table/1' -p58812 -S'do_create_table(${1:Cs}) $2' -p58813 -tp58814 -a(S'do_delete_table/1' -p58815 -S'do_delete_table(${1:Tab}) $2' -p58816 -tp58817 -a(S'do_delete_table_property/2' -p58818 -S'do_delete_table_property(${1:Tab}, ${2:PropKey}) $3' -p58819 -tp58820 -a(S'do_read_table_property/2' -p58821 -S'do_read_table_property(${1:Tab}, ${2:Key}) $3' -p58822 -tp58823 -a(S'do_write_table_property/2' -p58824 -S'do_write_table_property(${1:Tab}, ${2:Prop}) $3' -p58825 -tp58826 -a(S'dump_tables/1' -p58827 -S'dump_tables(${1:Tabs}) $2' -p58828 -tp58829 -a(S'ensure_active/1' -p58830 -S'ensure_active(${1:Cs}) $2' -p58831 -tp58832 -a(S'ensure_no_schema/1' -p58833 -S'ensure_no_schema(${1:Param1}) $2' -p58834 -tp58835 -a(S'get_create_list/1' -p58836 -S'get_create_list(${1:Tab}) $2' -p58837 -tp58838 -a(S'get_initial_schema/2' -p58839 -S'get_initial_schema(${1:SchemaStorage}, ${2:Nodes}) $3' -p58840 -tp58841 -a(S'get_table_properties/1' -p58842 -S'get_table_properties(${1:Tab}) $2' -p58843 -tp58844 -a(S'get_tid_ts_and_lock/2' -p58845 -S'get_tid_ts_and_lock(${1:Tab}, ${2:Intent}) $3' -p58846 -tp58847 -a(S'incr_version/1' -p58848 -S'incr_version(${1:Cs}) $2' -p58849 -tp58850 -a(S'info/0' -p58851 -S'info() $1' -p58852 -tp58853 -a(S'info/1' -p58854 -S'info(${1:Tab}) $2' -p58855 -tp58856 -a(S'init/1' -p58857 -S'init(${1:IgnoreFallback}) $2' -p58858 -tp58859 -a(S'insert_cstruct/3' -p58860 -S'insert_cstruct(${1:Tid}, ${2:Cs}, ${3:KeepWhereabouts}) $4' -p58861 -tp58862 -a(S'insert_schema_ops/2' -p58863 -S'insert_schema_ops(${1:Store}, ${2:SchemaIOps}) $3' -p58864 -tp58865 -a(S'is_remote_member/1' -p58866 -S'is_remote_member(${1:Key}) $2' -p58867 -tp58868 -a(S'list2cs/1' -p58869 -S'list2cs(${1:List}) $2' -p58870 -tp58871 -a(S'lock_schema/0' -p58872 -S'lock_schema() $1' -p58873 -tp58874 -a(S'make_create_table/1' -p58875 -S'make_create_table(${1:Cs}) $2' -p58876 -tp58877 -a(S'make_delete_table/2' -p58878 -S'make_delete_table(${1:Tab}, ${2:Mode}) $3' -p58879 -tp58880 -a(S'merge_schema/0' -p58881 -S'merge_schema() $1' -p58882 -tp58883 -a(S'merge_schema/1' -p58884 -S'merge_schema(${1:UserFun}) $2' -p58885 -tp58886 -a(S'move_table/3' -p58887 -S'move_table(${1:Tab}, ${2:FromNode}, ${3:ToNode}) $4' -p58888 -tp58889 -a(S'normalize_cs/2' -p58890 -S'normalize_cs(${1:Cstructs}, ${2:Node}) $3' -p58891 -tp58892 -a(S'opt_create_dir/2' -p58893 -S'opt_create_dir(${1:Param1}, ${2:Param2}) $3' -p58894 -tp58895 -a(S'pick/4' -p58896 -S'pick(${1:Tab}, ${2:Key}, ${3:List}, ${4:Default}) $5' -p58897 -tp58898 -a(S'prepare_commit/3' -p58899 -S'prepare_commit(${1:Tid}, ${2:Commit}, ${3:WaitFor}) $4' -p58900 -tp58901 -a(S'purge_dir/2' -p58902 -S'purge_dir(${1:Dir}, ${2:KeepFiles}) $3' -p58903 -tp58904 -a(S'purge_tmp_files/0' -p58905 -S'purge_tmp_files() $1' -p58906 -tp58907 -a(S'ram_delete_table/2' -p58908 -S'ram_delete_table(${1:Tab}, ${2:Storage}) $3' -p58909 -tp58910 -a(S'read_cstructs_from_disc/0' -p58911 -S'read_cstructs_from_disc() $1' -p58912 -tp58913 -a(S'read_nodes/0' -p58914 -S'read_nodes() $1' -p58915 -tp58916 -a(S'remote_read_schema/0' -p58917 -S'remote_read_schema() $1' -p58918 -tp58919 -a(S'restore/1' -p58920 -S'restore(${1:Opaque}) $2' -p58921 -tp58922 -a(S'restore/2' -p58923 -S'restore(${1:Opaque}, ${2:Args}) $3' -p58924 -tp58925 -a(S'restore/3' -p58926 -S'restore(${1:Opaque}, ${2:Args}, ${3:Module}) $4' -p58927 -tp58928 -a(S'schema_coordinator/3' -p58929 -S'schema_coordinator(${1:Client}, ${2:Fun}, ${3:Controller}) $4' -p58930 -tp58931 -a(S'schema_transaction/1' -p58932 -S'schema_transaction(${1:Fun}) $2' -p58933 -tp58934 -a(S'set_where_to_read/3' -p58935 -S'set_where_to_read(${1:Tab}, ${2:Node}, ${3:Cs}) $4' -p58936 -tp58937 -a(S'transform_table/4' -p58938 -S'transform_table(${1:Tab}, ${2:Fun}, ${3:NewAttrs}, ${4:NewRecName}) $5' -p58939 -tp58940 -a(S'undo_prepare_commit/2' -p58941 -S'undo_prepare_commit(${1:Tid}, ${2:Commit}) $3' -p58942 -tp58943 -a(S'unlock_schema/0' -p58944 -S'unlock_schema() $1' -p58945 -tp58946 -a(S'verify/3' -p58947 -S'verify(${1:Expected}, ${2:Fun}, ${3:Error}) $4' -p58948 -tp58949 -a(S'version/0' -p58950 -S'version() $1' -p58951 -tp58952 -a(S'vsn_cs2list/1' -p58953 -S'vsn_cs2list(${1:Cs}) $2' -p58954 -tp58955 -a(S'write_table_property/2' -p58956 -S'write_table_property(${1:Tab}, ${2:Prop}) $3' -p58957 -tp58958 -asS'sys_expand_pmod' -p58959 -(lp58960 -(S'forms/4' -p58961 -S'forms(${1:Fs0}, ${2:Ps}, ${3:Es0}, ${4:Ds0}) $5' -p58962 -tp58963 -asS'docgen_edoc_xml_cb' -p58964 -(lp58965 -(S'module/2' -p58966 -S'module(${1:Element}, ${2:Opts}) $3' -p58967 -tp58968 -a(S'overview/2' -p58969 -S'overview(${1:Element}, ${2:Param2}) $3' -p58970 -tp58971 -asS'os_mon_sysinfo' -p58972 -(lp58973 -(S'code_change/3' -p58974 -S'code_change(${1:Vsn}, ${2:PrevState}, ${3:Param3}) $4' -p58975 -tp58976 -a(S'get_disk_info/0' -p58977 -S'get_disk_info() $1' -p58978 -tp58979 -a(S'get_disk_info/1' -p58980 -S'get_disk_info(${1:DriveRoot}) $2' -p58981 -tp58982 -a(S'get_mem_info/0' -p58983 -S'get_mem_info() $1' -p58984 -tp58985 -a(S'handle_call/3' -p58986 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p58987 -tp58988 -a(S'handle_cast/2' -p58989 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p58990 -tp58991 -a(S'handle_info/2' -p58992 -S'handle_info(${1:Param1}, ${2:State}) $3' -p58993 -tp58994 -a(S'init/1' -p58995 -S'init(${1:Param1}) $2' -p58996 -tp58997 -a(S'start_link/0' -p58998 -S'start_link() $1' -p58999 -tp59000 -a(S'terminate/2' -p59001 -S'terminate(${1:Param1}, ${2:State}) $3' -p59002 -tp59003 -asS'CosTransactions_HeuristicCommit' -p59004 -(lp59005 -(S'id/0' -p59006 -S'id() $1' -p59007 -tp59008 -a(S'name/0' -p59009 -S'name() $1' -p59010 -tp59011 -a(S'tc/0' -p59012 -S'tc() $1' -p59013 -tp59014 -asS'edoc_types' -p59015 -(lp59016 -(S'arg_descs/1' -p59017 -S'arg_descs(${1:S}) $2' -p59018 -tp59019 -a(S'arg_names/1' -p59020 -S'arg_names(${1:S}) $2' -p59021 -tp59022 -a(S'is_new_predefined/2' -p59023 -S'is_new_predefined(${1:Param1}, ${2:Param2}) $3' -p59024 -tp59025 -a(S'is_predefined/2' -p59026 -S'is_predefined(${1:F}, ${2:A}) $3' -p59027 -tp59028 -a(S'is_predefined_otp_type/2' -p59029 -S'is_predefined_otp_type(${1:Param1}, ${2:Param2}) $3' -p59030 -tp59031 -a(S'range_desc/1' -p59032 -S'range_desc(${1:Param1}) $2' -p59033 -tp59034 -a(S'set_arg_names/2' -p59035 -S'set_arg_names(${1:S}, ${2:Ns}) $3' -p59036 -tp59037 -a(S'to_label/1' -p59038 -S'to_label(${1:N}) $2' -p59039 -tp59040 -a(S'to_ref/1' -p59041 -S'to_ref(${1:Param1}) $2' -p59042 -tp59043 -a(S'to_xml/2' -p59044 -S'to_xml(${1:Param1}, ${2:Env}) $3' -p59045 -tp59046 -asS'tftp_file' -p59047 -(lp59048 -(S'abort/3' -p59049 -S'abort(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p59050 -tp59051 -a(S'open/6' -p59052 -S'open(${1:Peer}, ${2:Access}, ${3:Filename}, ${4:Mode}, ${5:SuggestedOptions}, ${6:Initial}) $7' -p59053 -tp59054 -a(S'prepare/6' -p59055 -S'prepare(${1:Param1}, ${2:Access}, ${3:Filename}, ${4:Mode}, ${5:SuggestedOptions}, ${6:Initial}) $7' -p59056 -tp59057 -a(S'read/1' -p59058 -S'read(${1:State}) $2' -p59059 -tp59060 -a(S'write/2' -p59061 -S'write(${1:Bin}, ${2:State}) $3' -p59062 -tp59063 -asS'asn1ct_name' -p59064 -(lp59065 -(S'active/1' -p59066 -S'active(${1:V}) $2' -p59067 -tp59068 -a(S'all/1' -p59069 -S'all(${1:V}) $2' -p59070 -tp59071 -a(S'clear/0' -p59072 -S'clear() $1' -p59073 -tp59074 -a(S'curr/1' -p59075 -S'curr(${1:V}) $2' -p59076 -tp59077 -a(S'delete/1' -p59078 -S'delete(${1:V}) $2' -p59079 -tp59080 -a(S'new/1' -p59081 -S'new(${1:V}) $2' -p59082 -tp59083 -a(S'next/1' -p59084 -S'next(${1:V}) $2' -p59085 -tp59086 -a(S'pop/1' -p59087 -S'pop(${1:V}) $2' -p59088 -tp59089 -a(S'prev/1' -p59090 -S'prev(${1:V}) $2' -p59091 -tp59092 -a(S'push/1' -p59093 -S'push(${1:V}) $2' -p59094 -tp59095 -a(S'start/0' -p59096 -S'start() $1' -p59097 -tp59098 -a(S'stop/0' -p59099 -S'stop() $1' -p59100 -tp59101 -asS'snmpa_discovery_handler' -p59102 -(lp59103 -(S'behaviour_info/1' -p59104 -S'behaviour_info(${1:Param1}) $2' -p59105 -tp59106 -a(S'verify/1' -p59107 -S'verify(${1:Mod}) $2' -p59108 -tp59109 -asS'snmpm_user_old' -p59110 -(lp59111 -(S'behaviour_info/1' -p59112 -S'behaviour_info(${1:Param1}) $2' -p59113 -tp59114 -asS'gstk_listbox' -p59115 -(lp59116 -(S'config/3' -p59117 -S'config(${1:DB}, ${2:Gstkid}, ${3:Options}) $4' -p59118 -tp59119 -a(S'create/3' -p59120 -S'create(${1:DB}, ${2:GstkId}, ${3:Opts}) $4' -p59121 -tp59122 -a(S'delete/2' -p59123 -S'delete(${1:DB}, ${2:Gstkid}) $3' -p59124 -tp59125 -a(S'event/5' -p59126 -S'event(${1:DB}, ${2:Gstkid}, ${3:Etype}, ${4:Edata}, ${5:Args}) $6' -p59127 -tp59128 -a(S'option/5' -p59129 -S'option(${1:Option}, ${2:Gstkid}, ${3:MainW}, ${4:DB}, ${5:Listbox}) $6' -p59130 -tp59131 -a(S'read/3' -p59132 -S'read(${1:DB}, ${2:Gstkid}, ${3:Opt}) $4' -p59133 -tp59134 -a(S'read_option/5' -p59135 -S'read_option(${1:Option}, ${2:GstkId}, ${3:Param3}, ${4:DB}, ${5:Listbox}) $6' -p59136 -tp59137 -a(S'wid_event/5' -p59138 -S'wid_event(${1:DB}, ${2:Gstkid}, ${3:Etype}, ${4:Edata}, ${5:Param5}) $6' -p59139 -tp59140 -asS'edlin_expand' -p59141 -(lp59142 -(S'expand/1' -p59143 -S'expand(${1:Bef0}) $2' -p59144 -tp59145 -a(S'format_matches/1' -p59146 -S'format_matches(${1:L}) $2' -p59147 -tp59148 -asS'megaco' -p59149 -(lp59150 -(S'call/3' -p59151 -S'call(${1:ConnHandle}, ${2:ActionRequests}, ${3:Options}) $4' -p59152 -tp59153 -a(S'cancel/2' -p59154 -S'cancel(${1:ConnHandle}, ${2:Reason}) $3' -p59155 -tp59156 -a(S'cast/3' -p59157 -S'cast(${1:ConnHandle}, ${2:ActionRequests}, ${3:Options}) $4' -p59158 -tp59159 -a(S'conn_info/1' -p59160 -S'conn_info(${1:ConnHandle}) $2' -p59161 -tp59162 -a(S'conn_info/2' -p59163 -S'conn_info(${1:ConnHandle}, ${2:Item}) $3' -p59164 -tp59165 -a(S'connect/4' -p59166 -S'connect(${1:ReceiveHandle}, ${2:RemoteMid}, ${3:SendHandle}, ${4:ControlPid}) $5' -p59167 -tp59168 -a(S'connect/5' -p59169 -S'connect() $1' -p59170 -tp59171 -a(S'decode_binary_term_id/2' -p59172 -S'decode_binary_term_id(${1:Config}, ${2:TermId}) $3' -p59173 -tp59174 -a(S'decode_sdp/1' -p59175 -S'decode_sdp(${1:PP}) $2' -p59176 -tp59177 -a(S'disable_trace/0' -p59178 -S'disable_trace() $1' -p59179 -tp59180 -a(S'disconnect/2' -p59181 -S'disconnect(${1:ConnHandle}, ${2:Reason}) $3' -p59182 -tp59183 -a(S'enable_trace/2' -p59184 -S'enable_trace(${1:Level}, ${2:File}) $3' -p59185 -tp59186 -a(S'encode_actions/3' -p59187 -S'encode_actions(${1:ConnHandle}, ${2:ActionRequests}, ${3:Options}) $4' -p59188 -tp59189 -a(S'encode_binary_term_id/2' -p59190 -S'encode_binary_term_id(${1:Config}, ${2:TermId}) $3' -p59191 -tp59192 -a(S'encode_sdp/1' -p59193 -S'encode_sdp(${1:SDP}) $2' -p59194 -tp59195 -a(S'eval_digit_map/1' -p59196 -S'eval_digit_map(${1:DigitMap}) $2' -p59197 -tp59198 -a(S'eval_digit_map/2' -p59199 -S'eval_digit_map(${1:DigitMap}, ${2:Timers}) $3' -p59200 -tp59201 -a(S'format_timestamp/1' -p59202 -S'format_timestamp(${1:Now}) $2' -p59203 -tp59204 -a(S'format_versions/1' -p59205 -S'format_versions(${1:Versions}) $2' -p59206 -tp59207 -a(S'get_stats/0' -p59208 -S'get_stats() $1' -p59209 -tp59210 -a(S'get_stats/1' -p59211 -S'get_stats(${1:SendHandle}) $2' -p59212 -tp59213 -a(S'get_stats/2' -p59214 -S'get_stats(${1:SendHandle}, ${2:Counter}) $3' -p59215 -tp59216 -a(S'info/0' -p59217 -S'info() $1' -p59218 -tp59219 -a(S'ms/0' -p59220 -S'ms() $1' -p59221 -tp59222 -a(S'nc/0' -p59223 -S'nc() $1' -p59224 -tp59225 -a(S'nc/1' -p59226 -S'nc(${1:Mods}) $2' -p59227 -tp59228 -a(S'ni/0' -p59229 -S'ni() $1' -p59230 -tp59231 -a(S'ni/1' -p59232 -S'ni(${1:Mods}) $2' -p59233 -tp59234 -a(S'parse_digit_map/1' -p59235 -S'parse_digit_map(${1:DigitMapBody}) $2' -p59236 -tp59237 -a(S'print_version_info/0' -p59238 -S'print_version_info() $1' -p59239 -tp59240 -a(S'print_version_info/1' -p59241 -S'print_version_info(${1:Versions}) $2' -p59242 -tp59243 -a(S'process_received_message/4' -p59244 -S'process_received_message(${1:ReceiveHandle}, ${2:ControlPid}, ${3:SendHandle}, ${4:BinMsg}) $5' -p59245 -tp59246 -a(S'process_received_message/5' -p59247 -S'process_received_message(${1:ReceiveHandle}, ${2:ControlPid}, ${3:SendHandle}, ${4:BinMsg}, ${5:Extra}) $6' -p59248 -tp59249 -a(S'receive_message/4' -p59250 -S'receive_message(${1:ReceiveHandle}, ${2:ControlPid}, ${3:SendHandle}, ${4:BinMsg}) $5' -p59251 -tp59252 -a(S'receive_message/5' -p59253 -S'receive_message(${1:ReceiveHandle}, ${2:ControlPid}, ${3:SendHandle}, ${4:BinMsg}, ${5:Extra}) $6' -p59254 -tp59255 -a(S'report_digit_event/2' -p59256 -S'report_digit_event(${1:DigitMapEvalPid}, ${2:Event}) $3' -p59257 -tp59258 -a(S'report_event/4' -p59259 -S'report_event(${1:DetailLevel}, ${2:FromTo}, ${3:Label}, ${4:Contents}) $5' -p59260 -tp59261 -a(S'report_event/5' -p59262 -S'report_event(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}, ${5:Param5}) $6' -p59263 -tp59264 -a(S'reset_stats/0' -p59265 -S'reset_stats() $1' -p59266 -tp59267 -a(S'reset_stats/1' -p59268 -S'reset_stats(${1:SendHandle}) $2' -p59269 -tp59270 -a(S'set_trace/1' -p59271 -S'set_trace(${1:Level}) $2' -p59272 -tp59273 -a(S'start/0' -p59274 -S'start() $1' -p59275 -tp59276 -a(S'start_user/2' -p59277 -S'start_user(${1:UserMid}, ${2:Config}) $3' -p59278 -tp59279 -a(S'stop/0' -p59280 -S'stop() $1' -p59281 -tp59282 -a(S'stop_user/1' -p59283 -S'stop_user(${1:UserMid}) $2' -p59284 -tp59285 -a(S'system_info/0' -p59286 -S'system_info() $1' -p59287 -tp59288 -a(S'system_info/1' -p59289 -S'system_info(${1:Item}) $2' -p59290 -tp59291 -a(S'test_digit_event/2' -p59292 -S'test_digit_event(${1:DigitMap}, ${2:Events}) $3' -p59293 -tp59294 -a(S'test_reply/5' -p59295 -S'test_reply() $1' -p59296 -tp59297 -a(S'test_request/5' -p59298 -S'test_request() $1' -p59299 -tp59300 -a(S'token_tag2string/1' -p59301 -S'token_tag2string(${1:Tag}) $2' -p59302 -tp59303 -a(S'token_tag2string/2' -p59304 -S'token_tag2string(${1:Tag}, ${2:Mod}) $3' -p59305 -tp59306 -a(S'token_tag2string/3' -p59307 -S'token_tag2string(${1:Tag}, ${2:Mod}, ${3:V}) $4' -p59308 -tp59309 -a(S'update_conn_info/3' -p59310 -S'update_conn_info(${1:ConnHandle}, ${2:Item}, ${3:Value}) $4' -p59311 -tp59312 -a(S'update_user_info/3' -p59313 -S'update_user_info(${1:UserMid}, ${2:Item}, ${3:Value}) $4' -p59314 -tp59315 -a(S'user_info/1' -p59316 -S'user_info(${1:UserMid}) $2' -p59317 -tp59318 -a(S'user_info/2' -p59319 -S'user_info(${1:UserMid}, ${2:Item}) $3' -p59320 -tp59321 -a(S'versions1/0' -p59322 -S'versions1() $1' -p59323 -tp59324 -a(S'versions2/0' -p59325 -S'versions2() $1' -p59326 -tp59327 -asS'megaco_sup' -p59328 -(lp59329 -(S'init/1' -p59330 -S'init(${1:BadArg}) $2' -p59331 -tp59332 -a(S'start/0' -p59333 -S'start() $1' -p59334 -tp59335 -a(S'start/2' -p59336 -S'start(${1:Param1}, ${2:Args}) $3' -p59337 -tp59338 -a(S'start_sup_child/1' -p59339 -S'start_sup_child(${1:Name}) $2' -p59340 -tp59341 -a(S'stop/1' -p59342 -S'stop(${1:Param1}) $2' -p59343 -tp59344 -a(S'stop_sup_child/1' -p59345 -S'stop_sup_child(${1:Name}) $2' -p59346 -tp59347 -a(S'supervisor_timeout/1' -p59348 -S'supervisor_timeout(${1:KillAfter}) $2' -p59349 -tp59350 -asS'compile' -p59351 -(lp59352 -(S'compile/3' -p59353 -S'compile(${1:File0}, ${2:Param2}, ${3:Options}) $4' -p59354 -tp59355 -a(S'compile_asm/3' -p59356 -S'compile_asm(${1:File0}, ${2:Param2}, ${3:Opts}) $4' -p59357 -tp59358 -a(S'compile_beam/3' -p59359 -S'compile_beam(${1:File0}, ${2:Param2}, ${3:Opts}) $4' -p59360 -tp59361 -a(S'compile_core/3' -p59362 -S'compile_core(${1:File0}, ${2:Param2}, ${3:Opts}) $4' -p59363 -tp59364 -a(S'file/1' -p59365 -S'file(${1:File}) $2' -p59366 -tp59367 -a(S'file/2' -p59368 -S'file(${1:File}, ${2:Opts}) $3' -p59369 -tp59370 -a(S'format_error/1' -p59371 -S'format_error(${1:Param1}) $2' -p59372 -tp59373 -a(S'forms/1' -p59374 -S'forms(${1:File}) $2' -p59375 -tp59376 -a(S'forms/2' -p59377 -S'forms(${1:Forms}, ${2:Opts}) $3' -p59378 -tp59379 -a(S'iofile/1' -p59380 -S'iofile(${1:File}) $2' -p59381 -tp59382 -a(S'noenv_file/2' -p59383 -S'noenv_file(${1:File}, ${2:Opts}) $3' -p59384 -tp59385 -a(S'noenv_forms/2' -p59386 -S'noenv_forms(${1:Forms}, ${2:Opts}) $3' -p59387 -tp59388 -a(S'noenv_output_generated/1' -p59389 -S'noenv_output_generated(${1:Opts}) $2' -p59390 -tp59391 -a(S'options/0' -p59392 -S'options() $1' -p59393 -tp59394 -a(S'output_generated/1' -p59395 -S'output_generated(${1:Opts}) $2' -p59396 -tp59397 -asS'sys_core_inline' -p59398 -(lp59399 -(S'module/2' -p59400 -S'module(${1:Mod}, ${2:Opts}) $3' -p59401 -tp59402 -asS'core_scan' -p59403 -(lp59404 -(S'format_error/1' -p59405 -S'format_error(${1:Other}) $2' -p59406 -tp59407 -a(S'string/1' -p59408 -S'string(${1:Cs}) $2' -p59409 -tp59410 -a(S'string/2' -p59411 -S'string(${1:Cs}, ${2:Sp}) $3' -p59412 -tp59413 -asS'beam_flatten' -p59414 -(lp59415 -(S'module/2' -p59416 -S'module(${1:Param1}, ${2:Param2}) $3' -p59417 -tp59418 -asS'dialyzer_codeserver' -p59419 -(lp59420 -(S'delete/1' -p59421 -S'delete(${1:TablePid}) $2' -p59422 -tp59423 -a(S'finalize_contracts/3' -p59424 -S'finalize_contracts(${1:CnDict}, ${2:CbDict}, ${3:CS}) $4' -p59425 -tp59426 -a(S'finalize_exported_types/2' -p59427 -S'finalize_exported_types(${1:Set}, ${2:CS}) $3' -p59428 -tp59429 -a(S'finalize_records/2' -p59430 -S'finalize_records(${1:Dict}, ${2:CS}) $3' -p59431 -tp59432 -a(S'get_callbacks/1' -p59433 -S'get_callbacks(${1:Param1}) $2' -p59434 -tp59435 -a(S'get_contracts/1' -p59436 -S'get_contracts(${1:Param1}) $2' -p59437 -tp59438 -a(S'get_exported_types/1' -p59439 -S'get_exported_types(${1:Param1}) $2' -p59440 -tp59441 -a(S'get_exports/1' -p59442 -S'get_exports(${1:Param1}) $2' -p59443 -tp59444 -a(S'get_next_core_label/1' -p59445 -S'get_next_core_label(${1:Param1}) $2' -p59446 -tp59447 -a(S'get_records/1' -p59448 -S'get_records(${1:Param1}) $2' -p59449 -tp59450 -a(S'get_temp_contracts/1' -p59451 -S'get_temp_contracts(${1:Param1}) $2' -p59452 -tp59453 -a(S'get_temp_exported_types/1' -p59454 -S'get_temp_exported_types(${1:Param1}) $2' -p59455 -tp59456 -a(S'get_temp_records/1' -p59457 -S'get_temp_records(${1:Param1}) $2' -p59458 -tp59459 -a(S'insert/3' -p59460 -S'insert(${1:Mod}, ${2:ModCode}, ${3:CS}) $4' -p59461 -tp59462 -a(S'insert_exports/2' -p59463 -S'insert_exports(${1:List}, ${2:CS}) $3' -p59464 -tp59465 -a(S'insert_temp_exported_types/2' -p59466 -S'insert_temp_exported_types(${1:Set}, ${2:CS}) $3' -p59467 -tp59468 -a(S'is_exported/2' -p59469 -S'is_exported(${1:MFA}, ${2:Param2}) $3' -p59470 -tp59471 -a(S'lookup_mfa_code/2' -p59472 -S'lookup_mfa_code(${1:MFA}, ${2:CS}) $3' -p59473 -tp59474 -a(S'lookup_mfa_contract/2' -p59475 -S'lookup_mfa_contract(${1:Param1}, ${2:Param2}) $3' -p59476 -tp59477 -a(S'lookup_mod_code/2' -p59478 -S'lookup_mod_code(${1:Mod}, ${2:CS}) $3' -p59479 -tp59480 -a(S'lookup_mod_contracts/2' -p59481 -S'lookup_mod_contracts(${1:Param1}, ${2:Param2}) $3' -p59482 -tp59483 -a(S'lookup_mod_records/2' -p59484 -S'lookup_mod_records(${1:Param1}, ${2:Param2}) $3' -p59485 -tp59486 -a(S'new/0' -p59487 -S'new() $1' -p59488 -tp59489 -a(S'set_next_core_label/2' -p59490 -S'set_next_core_label(${1:NCL}, ${2:CS}) $3' -p59491 -tp59492 -a(S'set_temp_records/2' -p59493 -S'set_temp_records(${1:Dict}, ${2:CS}) $3' -p59494 -tp59495 -a(S'store_contracts/3' -p59496 -S'store_contracts(${1:Mod}, ${2:Dict}, ${3:CS}) $4' -p59497 -tp59498 -a(S'store_records/3' -p59499 -S'store_records(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p59500 -tp59501 -a(S'store_temp_contracts/4' -p59502 -S'store_temp_contracts(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p59503 -tp59504 -a(S'store_temp_records/3' -p59505 -S'store_temp_records(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p59506 -tp59507 -asS'dialyzer_explanation' -p59508 -(lp59509 -(S'expl_loop/3' -p59510 -S'expl_loop(${1:Parent}, ${2:CServer}, ${3:Plt}) $4' -p59511 -tp59512 -asS'wxGridCellFloatEditor' -p59513 -(lp59514 -(S'beginEdit/4' -p59515 -S'beginEdit(${1:This}, ${2:Row}, ${3:Col}, ${4:Grid}) $5' -p59516 -tp59517 -a(S'destroy/1' -p59518 -S'destroy(${1:This}) $2' -p59519 -tp59520 -a(S'endEdit/4' -p59521 -S'endEdit(${1:This}, ${2:Row}, ${3:Col}, ${4:Grid}) $5' -p59522 -tp59523 -a(S'handleReturn/2' -p59524 -S'handleReturn(${1:This}, ${2:Event}) $3' -p59525 -tp59526 -a(S'isCreated/1' -p59527 -S'isCreated(${1:This}) $2' -p59528 -tp59529 -a(S'new/0' -p59530 -S'new() $1' -p59531 -tp59532 -a(S'new/1' -p59533 -S'new(${1:Param1}) $2' -p59534 -tp59535 -a(S'paintBackground/3' -p59536 -S'paintBackground(${1:This}, ${2:RectCell}, ${3:Attr}) $4' -p59537 -tp59538 -a(S'parent_class/1' -p59539 -S'parent_class(${1:Param1}) $2' -p59540 -tp59541 -a(S'reset/1' -p59542 -S'reset(${1:This}) $2' -p59543 -tp59544 -a(S'setParameters/2' -p59545 -S'setParameters(${1:This}, ${2:Params}) $3' -p59546 -tp59547 -a(S'setSize/2' -p59548 -S'setSize(${1:This}, ${2:Rect}) $3' -p59549 -tp59550 -a(S'show/2' -p59551 -S'show(${1:This}, ${2:Show}) $3' -p59552 -tp59553 -a(S'show/3' -p59554 -S'show(${1:This}, ${2:Show}, ${3:Options}) $4' -p59555 -tp59556 -a(S'startingClick/1' -p59557 -S'startingClick(${1:This}) $2' -p59558 -tp59559 -a(S'startingKey/2' -p59560 -S'startingKey(${1:This}, ${2:Event}) $3' -p59561 -tp59562 -asS'CosNotification_UnsupportedQoS' -p59563 -(lp59564 -(S'id/0' -p59565 -S'id() $1' -p59566 -tp59567 -a(S'name/0' -p59568 -S'name() $1' -p59569 -tp59570 -a(S'tc/0' -p59571 -S'tc() $1' -p59572 -tp59573 -asS'CosNotifyFilter_ConstraintNotFound' -p59574 -(lp59575 -(S'id/0' -p59576 -S'id() $1' -p59577 -tp59578 -a(S'name/0' -p59579 -S'name() $1' -p59580 -tp59581 -a(S'tc/0' -p59582 -S'tc() $1' -p59583 -tp59584 -asS'snmp_mini_mib' -p59585 -(lp59586 -(S'aliasname/2' -p59587 -S'aliasname(${1:Param1}, ${2:Oid}) $3' -p59588 -tp59589 -a(S'create/1' -p59590 -S'create(${1:Mibs}) $2' -p59591 -tp59592 -a(S'delete/1' -p59593 -S'delete(${1:Param1}) $2' -p59594 -tp59595 -a(S'oid/2' -p59596 -S'oid(${1:Param1}, ${2:AliasName}) $3' -p59597 -tp59598 -a(S'type/2' -p59599 -S'type(${1:MiniMIB}, ${2:Oid}) $3' -p59600 -tp59601 -asS'mod_auth_server' -p59602 -(lp59603 -(S'add_group_member/6' -p59604 -S'add_group_member(${1:Addr}, ${2:Port}, ${3:Dir}, ${4:GroupName}, ${5:UserName}, ${6:Password}) $7' -p59605 -tp59606 -a(S'add_password/4' -p59607 -S'add_password(${1:Addr}, ${2:Port}, ${3:Dir}, ${4:Password}) $5' -p59608 -tp59609 -a(S'add_user/5' -p59610 -S'add_user(${1:Addr}, ${2:Port}, ${3:Dir}, ${4:User}, ${5:Password}) $6' -p59611 -tp59612 -a(S'code_change/3' -p59613 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p59614 -tp59615 -a(S'delete_group/5' -p59616 -S'delete_group(${1:Addr}, ${2:Port}, ${3:Dir}, ${4:GroupName}, ${5:Password}) $6' -p59617 -tp59618 -a(S'delete_group_member/6' -p59619 -S'delete_group_member(${1:Addr}, ${2:Port}, ${3:Dir}, ${4:GroupName}, ${5:UserName}, ${6:Password}) $7' -p59620 -tp59621 -a(S'delete_user/5' -p59622 -S'delete_user(${1:Addr}, ${2:Port}, ${3:Dir}, ${4:UserName}, ${5:Password}) $6' -p59623 -tp59624 -a(S'get_user/5' -p59625 -S'get_user(${1:Addr}, ${2:Port}, ${3:Dir}, ${4:UserName}, ${5:Password}) $6' -p59626 -tp59627 -a(S'handle_call/3' -p59628 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p59629 -tp59630 -a(S'handle_cast/2' -p59631 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p59632 -tp59633 -a(S'handle_info/2' -p59634 -S'handle_info(${1:Param1}, ${2:State}) $3' -p59635 -tp59636 -a(S'init/1' -p59637 -S'init(${1:Param1}) $2' -p59638 -tp59639 -a(S'list_group_members/5' -p59640 -S'list_group_members(${1:Addr}, ${2:Port}, ${3:Dir}, ${4:Group}, ${5:Password}) $6' -p59641 -tp59642 -a(S'list_groups/4' -p59643 -S'list_groups(${1:Addr}, ${2:Port}, ${3:Dir}, ${4:Password}) $5' -p59644 -tp59645 -a(S'list_users/4' -p59646 -S'list_users(${1:Addr}, ${2:Port}, ${3:Dir}, ${4:Password}) $5' -p59647 -tp59648 -a(S'start/2' -p59649 -S'start(${1:Addr}, ${2:Port}) $3' -p59650 -tp59651 -a(S'start_link/2' -p59652 -S'start_link(${1:Addr}, ${2:Port}) $3' -p59653 -tp59654 -a(S'stop/2' -p59655 -S'stop(${1:Addr}, ${2:Port}) $3' -p59656 -tp59657 -a(S'terminate/2' -p59658 -S'terminate(${1:Param1}, ${2:State}) $3' -p59659 -tp59660 -a(S'update_password/5' -p59661 -S'update_password(${1:Addr}, ${2:Port}, ${3:Dir}, ${4:Old}, ${5:New}) $6' -p59662 -tp59663 -asS'runtime_tools_sup' -p59664 -(lp59665 -(S'init/1' -p59666 -S'init(${1:AutoModArgs}) $2' -p59667 -tp59668 -asS'binary' -p59669 -(lp59670 -(S'replace/3' -p59671 -S'replace(${1:Subject}, ${2:Pattern}, ${3:Replacement}) $4' -p59672 -tp59673 -a(S'replace/4' -p59674 -S'replace(${1:Subject}, ${2:Pattern}, ${3:Replacement}, ${4:Options}) $5' -p59675 -tp59676 -a(S'split/2' -p59677 -S'split(${1:Subject}, ${2:Pattern}) $3' -p59678 -tp59679 -a(S'split/3' -p59680 -S'split(${1:Subject}, ${2:Pattern}, ${3:Options}) $4' -p59681 -tp59682 -asS'ic_util' -p59683 -(lp59684 -(S'adjustScopeToJava/2' -p59685 -S'adjustScopeToJava(${1:G}, ${2:ScopedId}) $3' -p59686 -tp59687 -a(S'chain/2' -p59688 -S'chain(${1:Param1}, ${2:T}) $3' -p59689 -tp59690 -a(S'eval_c/3' -p59691 -S'eval_c(${1:G}, ${2:N}, ${3:Arg}) $4' -p59692 -tp59693 -a(S'eval_java/3' -p59694 -S'eval_java(${1:G}, ${2:N}, ${3:Arg}) $4' -p59695 -tp59696 -a(S'join/2' -p59697 -S'join(${1:Param1}, ${2:S}) $3' -p59698 -tp59699 -a(S'mk_OE_name/2' -p59700 -S'mk_OE_name(${1:Param1}, ${2:Name}) $3' -p59701 -tp59702 -a(S'mk_align/1' -p59703 -S'mk_align(${1:String}) $2' -p59704 -tp59705 -a(S'mk_list/1' -p59706 -S'mk_list(${1:Param1}) $2' -p59707 -tp59708 -a(S'mk_name/2' -p59709 -S'mk_name(${1:Param1}, ${2:Name}) $3' -p59710 -tp59711 -a(S'mk_oe_name/2' -p59712 -S'mk_oe_name(${1:Param1}, ${2:Name}) $3' -p59713 -tp59714 -a(S'mk_var/1' -p59715 -S'mk_var() $1' -p59716 -tp59717 -a(S'to_atom/1' -p59718 -S'to_atom(${1:A}) $2' -p59719 -tp59720 -a(S'to_colon/1' -p59721 -S'to_colon(${1:L}) $2' -p59722 -tp59723 -a(S'to_dot/1' -p59724 -S'to_dot(${1:L}) $2' -p59725 -tp59726 -a(S'to_dot/2' -p59727 -S'to_dot(${1:G}, ${2:ScopedId}) $3' -p59728 -tp59729 -a(S'to_list/1' -p59730 -S'to_list(${1:A}) $2' -p59731 -tp59732 -a(S'to_undersc/1' -p59733 -S'to_undersc(${1:L}) $2' -p59734 -tp59735 -a(S'to_uppercase/1' -p59736 -S'to_uppercase(${1:Z}) $2' -p59737 -tp59738 -asS'tv_io_lib_format' -p59739 -(lp59740 -(S'fwrite/2' -p59741 -S'fwrite(${1:Format}, ${2:Args}) $3' -p59742 -tp59743 -a(S'fwrite_g/1' -p59744 -S'fwrite_g(${1:Fl}) $2' -p59745 -tp59746 -a(S'indentation/2' -p59747 -S'indentation(${1:Param1}, ${2:I}) $3' -p59748 -tp59749 -asS'wxListbook' -p59750 -(lp59751 -(S'addPage/3' -p59752 -S'addPage(${1:This}, ${2:Page}, ${3:Text}) $4' -p59753 -tp59754 -a(S'addPage/4' -p59755 -S'addPage(${1:This}, ${2:Page}, ${3:Text}, ${4:Param4}) $5' -p59756 -tp59757 -a(S'advanceSelection/1' -p59758 -S'advanceSelection(${1:This}) $2' -p59759 -tp59760 -a(S'advanceSelection/2' -p59761 -S'advanceSelection(${1:This}, ${2:Param2}) $3' -p59762 -tp59763 -a(S'assignImageList/2' -p59764 -S'assignImageList(${1:This}, ${2:ImageList}) $3' -p59765 -tp59766 -a(S'cacheBestSize/2' -p59767 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p59768 -tp59769 -a(S'captureMouse/1' -p59770 -S'captureMouse(${1:This}) $2' -p59771 -tp59772 -a(S'center/1' -p59773 -S'center(${1:This}) $2' -p59774 -tp59775 -a(S'center/2' -p59776 -S'center(${1:This}, ${2:Options}) $3' -p59777 -tp59778 -a(S'centerOnParent/1' -p59779 -S'centerOnParent(${1:This}) $2' -p59780 -tp59781 -a(S'centerOnParent/2' -p59782 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p59783 -tp59784 -a(S'centre/1' -p59785 -S'centre(${1:This}) $2' -p59786 -tp59787 -a(S'centre/2' -p59788 -S'centre(${1:This}, ${2:Options}) $3' -p59789 -tp59790 -a(S'centreOnParent/1' -p59791 -S'centreOnParent(${1:This}) $2' -p59792 -tp59793 -a(S'centreOnParent/2' -p59794 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p59795 -tp59796 -a(S'changeSelection/2' -p59797 -S'changeSelection(${1:This}, ${2:N}) $3' -p59798 -tp59799 -a(S'clearBackground/1' -p59800 -S'clearBackground(${1:This}) $2' -p59801 -tp59802 -a(S'clientToScreen/2' -p59803 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p59804 -tp59805 -a(S'clientToScreen/3' -p59806 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p59807 -tp59808 -a(S'close/1' -p59809 -S'close(${1:This}) $2' -p59810 -tp59811 -a(S'close/2' -p59812 -S'close(${1:This}, ${2:Options}) $3' -p59813 -tp59814 -a(S'connect/2' -p59815 -S'connect(${1:This}, ${2:EventType}) $3' -p59816 -tp59817 -a(S'connect/3' -p59818 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p59819 -tp59820 -a(S'convertDialogToPixels/2' -p59821 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p59822 -tp59823 -a(S'convertPixelsToDialog/2' -p59824 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p59825 -tp59826 -a(S'create/3' -p59827 -S'create(${1:This}, ${2:Parent}, ${3:Id}) $4' -p59828 -tp59829 -a(S'create/4' -p59830 -S'create(${1:This}, ${2:Parent}, ${3:Id}, ${4:Param4}) $5' -p59831 -tp59832 -a(S'deleteAllPages/1' -p59833 -S'deleteAllPages(${1:This}) $2' -p59834 -tp59835 -a(S'deletePage/2' -p59836 -S'deletePage(${1:This}, ${2:N}) $3' -p59837 -tp59838 -a(S'destroy/1' -p59839 -S'destroy(${1:This}) $2' -p59840 -tp59841 -a(S'destroyChildren/1' -p59842 -S'destroyChildren(${1:This}) $2' -p59843 -tp59844 -a(S'disable/1' -p59845 -S'disable(${1:This}) $2' -p59846 -tp59847 -a(S'disconnect/1' -p59848 -S'disconnect(${1:This}) $2' -p59849 -tp59850 -a(S'disconnect/2' -p59851 -S'disconnect(${1:This}, ${2:EventType}) $3' -p59852 -tp59853 -a(S'disconnect/3' -p59854 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p59855 -tp59856 -a(S'enable/1' -p59857 -S'enable(${1:This}) $2' -p59858 -tp59859 -a(S'enable/2' -p59860 -S'enable(${1:This}, ${2:Options}) $3' -p59861 -tp59862 -a(S'findWindow/2' -p59863 -S'findWindow(${1:This}, ${2:Winid}) $3' -p59864 -tp59865 -a(S'fit/1' -p59866 -S'fit(${1:This}) $2' -p59867 -tp59868 -a(S'fitInside/1' -p59869 -S'fitInside(${1:This}) $2' -p59870 -tp59871 -a(S'freeze/1' -p59872 -S'freeze(${1:This}) $2' -p59873 -tp59874 -a(S'getAcceleratorTable/1' -p59875 -S'getAcceleratorTable(${1:This}) $2' -p59876 -tp59877 -a(S'getBackgroundColour/1' -p59878 -S'getBackgroundColour(${1:This}) $2' -p59879 -tp59880 -a(S'getBackgroundStyle/1' -p59881 -S'getBackgroundStyle(${1:This}) $2' -p59882 -tp59883 -a(S'getBestSize/1' -p59884 -S'getBestSize(${1:This}) $2' -p59885 -tp59886 -a(S'getCaret/1' -p59887 -S'getCaret(${1:This}) $2' -p59888 -tp59889 -a(S'getCharHeight/1' -p59890 -S'getCharHeight(${1:This}) $2' -p59891 -tp59892 -a(S'getCharWidth/1' -p59893 -S'getCharWidth(${1:This}) $2' -p59894 -tp59895 -a(S'getChildren/1' -p59896 -S'getChildren(${1:This}) $2' -p59897 -tp59898 -a(S'getClientSize/1' -p59899 -S'getClientSize(${1:This}) $2' -p59900 -tp59901 -a(S'getContainingSizer/1' -p59902 -S'getContainingSizer(${1:This}) $2' -p59903 -tp59904 -a(S'getCurrentPage/1' -p59905 -S'getCurrentPage(${1:This}) $2' -p59906 -tp59907 -a(S'getCursor/1' -p59908 -S'getCursor(${1:This}) $2' -p59909 -tp59910 -a(S'getDropTarget/1' -p59911 -S'getDropTarget(${1:This}) $2' -p59912 -tp59913 -a(S'getEventHandler/1' -p59914 -S'getEventHandler(${1:This}) $2' -p59915 -tp59916 -a(S'getExtraStyle/1' -p59917 -S'getExtraStyle(${1:This}) $2' -p59918 -tp59919 -a(S'getFont/1' -p59920 -S'getFont(${1:This}) $2' -p59921 -tp59922 -a(S'getForegroundColour/1' -p59923 -S'getForegroundColour(${1:This}) $2' -p59924 -tp59925 -a(S'getGrandParent/1' -p59926 -S'getGrandParent(${1:This}) $2' -p59927 -tp59928 -a(S'getHandle/1' -p59929 -S'getHandle(${1:This}) $2' -p59930 -tp59931 -a(S'getHelpText/1' -p59932 -S'getHelpText(${1:This}) $2' -p59933 -tp59934 -a(S'getId/1' -p59935 -S'getId(${1:This}) $2' -p59936 -tp59937 -a(S'getImageList/1' -p59938 -S'getImageList(${1:This}) $2' -p59939 -tp59940 -a(S'getLabel/1' -p59941 -S'getLabel(${1:This}) $2' -p59942 -tp59943 -a(S'getMaxSize/1' -p59944 -S'getMaxSize(${1:This}) $2' -p59945 -tp59946 -a(S'getMinSize/1' -p59947 -S'getMinSize(${1:This}) $2' -p59948 -tp59949 -a(S'getName/1' -p59950 -S'getName(${1:This}) $2' -p59951 -tp59952 -a(S'getPage/2' -p59953 -S'getPage(${1:This}, ${2:N}) $3' -p59954 -tp59955 -a(S'getPageCount/1' -p59956 -S'getPageCount(${1:This}) $2' -p59957 -tp59958 -a(S'getPageImage/2' -p59959 -S'getPageImage(${1:This}, ${2:N}) $3' -p59960 -tp59961 -a(S'getPageText/2' -p59962 -S'getPageText(${1:This}, ${2:N}) $3' -p59963 -tp59964 -a(S'getParent/1' -p59965 -S'getParent(${1:This}) $2' -p59966 -tp59967 -a(S'getPosition/1' -p59968 -S'getPosition(${1:This}) $2' -p59969 -tp59970 -a(S'getRect/1' -p59971 -S'getRect(${1:This}) $2' -p59972 -tp59973 -a(S'getScreenPosition/1' -p59974 -S'getScreenPosition(${1:This}) $2' -p59975 -tp59976 -a(S'getScreenRect/1' -p59977 -S'getScreenRect(${1:This}) $2' -p59978 -tp59979 -a(S'getScrollPos/2' -p59980 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p59981 -tp59982 -a(S'getScrollRange/2' -p59983 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p59984 -tp59985 -a(S'getScrollThumb/2' -p59986 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p59987 -tp59988 -a(S'getSelection/1' -p59989 -S'getSelection(${1:This}) $2' -p59990 -tp59991 -a(S'getSize/1' -p59992 -S'getSize(${1:This}) $2' -p59993 -tp59994 -a(S'getSizer/1' -p59995 -S'getSizer(${1:This}) $2' -p59996 -tp59997 -a(S'getTextExtent/2' -p59998 -S'getTextExtent(${1:This}, ${2:String}) $3' -p59999 -tp60000 -a(S'getTextExtent/3' -p60001 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p60002 -tp60003 -a(S'getToolTip/1' -p60004 -S'getToolTip(${1:This}) $2' -p60005 -tp60006 -a(S'getUpdateRegion/1' -p60007 -S'getUpdateRegion(${1:This}) $2' -p60008 -tp60009 -a(S'getVirtualSize/1' -p60010 -S'getVirtualSize(${1:This}) $2' -p60011 -tp60012 -a(S'getWindowStyleFlag/1' -p60013 -S'getWindowStyleFlag(${1:This}) $2' -p60014 -tp60015 -a(S'getWindowVariant/1' -p60016 -S'getWindowVariant(${1:This}) $2' -p60017 -tp60018 -a(S'hasCapture/1' -p60019 -S'hasCapture(${1:This}) $2' -p60020 -tp60021 -a(S'hasScrollbar/2' -p60022 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p60023 -tp60024 -a(S'hasTransparentBackground/1' -p60025 -S'hasTransparentBackground(${1:This}) $2' -p60026 -tp60027 -a(S'hide/1' -p60028 -S'hide(${1:This}) $2' -p60029 -tp60030 -a(S'hitTest/2' -p60031 -S'hitTest(${1:This}, ${2:Pt}) $3' -p60032 -tp60033 -a(S'inheritAttributes/1' -p60034 -S'inheritAttributes(${1:This}) $2' -p60035 -tp60036 -a(S'initDialog/1' -p60037 -S'initDialog(${1:This}) $2' -p60038 -tp60039 -a(S'insertPage/4' -p60040 -S'insertPage(${1:This}, ${2:N}, ${3:Page}, ${4:Text}) $5' -p60041 -tp60042 -a(S'insertPage/5' -p60043 -S'insertPage(${1:This}, ${2:N}, ${3:Page}, ${4:Text}, ${5:Param5}) $6' -p60044 -tp60045 -a(S'invalidateBestSize/1' -p60046 -S'invalidateBestSize(${1:This}) $2' -p60047 -tp60048 -a(S'isEnabled/1' -p60049 -S'isEnabled(${1:This}) $2' -p60050 -tp60051 -a(S'isExposed/2' -p60052 -S'isExposed(${1:This}, ${2:Pt}) $3' -p60053 -tp60054 -a(S'isExposed/3' -p60055 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p60056 -tp60057 -a(S'isExposed/5' -p60058 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p60059 -tp60060 -a(S'isRetained/1' -p60061 -S'isRetained(${1:This}) $2' -p60062 -tp60063 -a(S'isShown/1' -p60064 -S'isShown(${1:This}) $2' -p60065 -tp60066 -a(S'isTopLevel/1' -p60067 -S'isTopLevel(${1:This}) $2' -p60068 -tp60069 -a(S'layout/1' -p60070 -S'layout(${1:This}) $2' -p60071 -tp60072 -a(S'lineDown/1' -p60073 -S'lineDown(${1:This}) $2' -p60074 -tp60075 -a(S'lineUp/1' -p60076 -S'lineUp(${1:This}) $2' -p60077 -tp60078 -a(S'lower/1' -p60079 -S'lower(${1:This}) $2' -p60080 -tp60081 -a(S'makeModal/1' -p60082 -S'makeModal(${1:This}) $2' -p60083 -tp60084 -a(S'makeModal/2' -p60085 -S'makeModal(${1:This}, ${2:Options}) $3' -p60086 -tp60087 -a(S'move/2' -p60088 -S'move(${1:This}, ${2:Pt}) $3' -p60089 -tp60090 -a(S'move/3' -p60091 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p60092 -tp60093 -a(S'move/4' -p60094 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p60095 -tp60096 -a(S'moveAfterInTabOrder/2' -p60097 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p60098 -tp60099 -a(S'moveBeforeInTabOrder/2' -p60100 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p60101 -tp60102 -a(S'navigate/1' -p60103 -S'navigate(${1:This}) $2' -p60104 -tp60105 -a(S'navigate/2' -p60106 -S'navigate(${1:This}, ${2:Options}) $3' -p60107 -tp60108 -a(S'new/0' -p60109 -S'new() $1' -p60110 -tp60111 -a(S'new/2' -p60112 -S'new(${1:Parent}, ${2:Id}) $3' -p60113 -tp60114 -a(S'new/3' -p60115 -S'new(${1:Parent}, ${2:Id}, ${3:Param3}) $4' -p60116 -tp60117 -a(S'pageDown/1' -p60118 -S'pageDown(${1:This}) $2' -p60119 -tp60120 -a(S'pageUp/1' -p60121 -S'pageUp(${1:This}) $2' -p60122 -tp60123 -a(S'parent_class/1' -p60124 -S'parent_class(${1:Param1}) $2' -p60125 -tp60126 -a(S'popEventHandler/1' -p60127 -S'popEventHandler(${1:This}) $2' -p60128 -tp60129 -a(S'popEventHandler/2' -p60130 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p60131 -tp60132 -a(S'popupMenu/2' -p60133 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p60134 -tp60135 -a(S'popupMenu/3' -p60136 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p60137 -tp60138 -a(S'popupMenu/4' -p60139 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p60140 -tp60141 -a(S'raise/1' -p60142 -S'raise(${1:This}) $2' -p60143 -tp60144 -a(S'refresh/1' -p60145 -S'refresh(${1:This}) $2' -p60146 -tp60147 -a(S'refresh/2' -p60148 -S'refresh(${1:This}, ${2:Options}) $3' -p60149 -tp60150 -a(S'refreshRect/2' -p60151 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p60152 -tp60153 -a(S'refreshRect/3' -p60154 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p60155 -tp60156 -a(S'releaseMouse/1' -p60157 -S'releaseMouse(${1:This}) $2' -p60158 -tp60159 -a(S'removeChild/2' -p60160 -S'removeChild(${1:This}, ${2:Child}) $3' -p60161 -tp60162 -a(S'removePage/2' -p60163 -S'removePage(${1:This}, ${2:N}) $3' -p60164 -tp60165 -a(S'reparent/2' -p60166 -S'reparent(${1:This}, ${2:NewParent}) $3' -p60167 -tp60168 -a(S'screenToClient/1' -p60169 -S'screenToClient(${1:This}) $2' -p60170 -tp60171 -a(S'screenToClient/2' -p60172 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p60173 -tp60174 -a(S'scrollLines/2' -p60175 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p60176 -tp60177 -a(S'scrollPages/2' -p60178 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p60179 -tp60180 -a(S'scrollWindow/3' -p60181 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p60182 -tp60183 -a(S'scrollWindow/4' -p60184 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p60185 -tp60186 -a(S'setAcceleratorTable/2' -p60187 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p60188 -tp60189 -a(S'setAutoLayout/2' -p60190 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p60191 -tp60192 -a(S'setBackgroundColour/2' -p60193 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p60194 -tp60195 -a(S'setBackgroundStyle/2' -p60196 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p60197 -tp60198 -a(S'setCaret/2' -p60199 -S'setCaret(${1:This}, ${2:Caret}) $3' -p60200 -tp60201 -a(S'setClientSize/2' -p60202 -S'setClientSize(${1:This}, ${2:Size}) $3' -p60203 -tp60204 -a(S'setClientSize/3' -p60205 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p60206 -tp60207 -a(S'setContainingSizer/2' -p60208 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p60209 -tp60210 -a(S'setCursor/2' -p60211 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p60212 -tp60213 -a(S'setDropTarget/2' -p60214 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p60215 -tp60216 -a(S'setExtraStyle/2' -p60217 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p60218 -tp60219 -a(S'setFocus/1' -p60220 -S'setFocus(${1:This}) $2' -p60221 -tp60222 -a(S'setFocusFromKbd/1' -p60223 -S'setFocusFromKbd(${1:This}) $2' -p60224 -tp60225 -a(S'setFont/2' -p60226 -S'setFont(${1:This}, ${2:Font}) $3' -p60227 -tp60228 -a(S'setForegroundColour/2' -p60229 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p60230 -tp60231 -a(S'setHelpText/2' -p60232 -S'setHelpText(${1:This}, ${2:Text}) $3' -p60233 -tp60234 -a(S'setId/2' -p60235 -S'setId(${1:This}, ${2:Winid}) $3' -p60236 -tp60237 -a(S'setImageList/2' -p60238 -S'setImageList(${1:This}, ${2:ImageList}) $3' -p60239 -tp60240 -a(S'setLabel/2' -p60241 -S'setLabel(${1:This}, ${2:Label}) $3' -p60242 -tp60243 -a(S'setMaxSize/2' -p60244 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p60245 -tp60246 -a(S'setMinSize/2' -p60247 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p60248 -tp60249 -a(S'setName/2' -p60250 -S'setName(${1:This}, ${2:Name}) $3' -p60251 -tp60252 -a(S'setOwnBackgroundColour/2' -p60253 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p60254 -tp60255 -a(S'setOwnFont/2' -p60256 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p60257 -tp60258 -a(S'setOwnForegroundColour/2' -p60259 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p60260 -tp60261 -a(S'setPageImage/3' -p60262 -S'setPageImage(${1:This}, ${2:N}, ${3:ImageId}) $4' -p60263 -tp60264 -a(S'setPageSize/2' -p60265 -S'setPageSize(${1:This}, ${2:Size}) $3' -p60266 -tp60267 -a(S'setPageText/3' -p60268 -S'setPageText(${1:This}, ${2:N}, ${3:StrText}) $4' -p60269 -tp60270 -a(S'setPalette/2' -p60271 -S'setPalette(${1:This}, ${2:Pal}) $3' -p60272 -tp60273 -a(S'setScrollPos/3' -p60274 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p60275 -tp60276 -a(S'setScrollPos/4' -p60277 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p60278 -tp60279 -a(S'setScrollbar/5' -p60280 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p60281 -tp60282 -a(S'setScrollbar/6' -p60283 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p60284 -tp60285 -a(S'setSelection/2' -p60286 -S'setSelection(${1:This}, ${2:N}) $3' -p60287 -tp60288 -a(S'setSize/2' -p60289 -S'setSize(${1:This}, ${2:Rect}) $3' -p60290 -tp60291 -a(S'setSize/3' -p60292 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p60293 -tp60294 -a(S'setSize/5' -p60295 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p60296 -tp60297 -a(S'setSize/6' -p60298 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p60299 -tp60300 -a(S'setSizeHints/2' -p60301 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p60302 -tp60303 -a(S'setSizeHints/3' -p60304 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p60305 -tp60306 -a(S'setSizeHints/4' -p60307 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p60308 -tp60309 -a(S'setSizer/2' -p60310 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p60311 -tp60312 -a(S'setSizer/3' -p60313 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p60314 -tp60315 -a(S'setSizerAndFit/2' -p60316 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p60317 -tp60318 -a(S'setSizerAndFit/3' -p60319 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p60320 -tp60321 -a(S'setThemeEnabled/2' -p60322 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p60323 -tp60324 -a(S'setToolTip/2' -p60325 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p60326 -tp60327 -a(S'setVirtualSize/2' -p60328 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p60329 -tp60330 -a(S'setVirtualSize/3' -p60331 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p60332 -tp60333 -a(S'setVirtualSizeHints/2' -p60334 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p60335 -tp60336 -a(S'setVirtualSizeHints/3' -p60337 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p60338 -tp60339 -a(S'setVirtualSizeHints/4' -p60340 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p60341 -tp60342 -a(S'setWindowStyle/2' -p60343 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p60344 -tp60345 -a(S'setWindowStyleFlag/2' -p60346 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p60347 -tp60348 -a(S'setWindowVariant/2' -p60349 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p60350 -tp60351 -a(S'shouldInheritColours/1' -p60352 -S'shouldInheritColours(${1:This}) $2' -p60353 -tp60354 -a(S'show/1' -p60355 -S'show(${1:This}) $2' -p60356 -tp60357 -a(S'show/2' -p60358 -S'show(${1:This}, ${2:Options}) $3' -p60359 -tp60360 -a(S'thaw/1' -p60361 -S'thaw(${1:This}) $2' -p60362 -tp60363 -a(S'transferDataFromWindow/1' -p60364 -S'transferDataFromWindow(${1:This}) $2' -p60365 -tp60366 -a(S'transferDataToWindow/1' -p60367 -S'transferDataToWindow(${1:This}) $2' -p60368 -tp60369 -a(S'update/1' -p60370 -S'update(${1:This}) $2' -p60371 -tp60372 -a(S'updateWindowUI/1' -p60373 -S'updateWindowUI(${1:This}) $2' -p60374 -tp60375 -a(S'updateWindowUI/2' -p60376 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p60377 -tp60378 -a(S'validate/1' -p60379 -S'validate(${1:This}) $2' -p60380 -tp60381 -a(S'warpPointer/3' -p60382 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p60383 -tp60384 -asS'inet6_tcp_dist' -p60385 -(lp60386 -(S'accept/1' -p60387 -S'accept(${1:Listen}) $2' -p60388 -tp60389 -a(S'accept_connection/5' -p60390 -S'accept_connection(${1:AcceptPid}, ${2:Socket}, ${3:MyNode}, ${4:Allowed}, ${5:SetupTime}) $6' -p60391 -tp60392 -a(S'accept_loop/2' -p60393 -S'accept_loop(${1:Kernel}, ${2:Listen}) $3' -p60394 -tp60395 -a(S'close/1' -p60396 -S'close(${1:Socket}) $2' -p60397 -tp60398 -a(S'do_accept/6' -p60399 -S'do_accept(${1:Kernel}, ${2:AcceptPid}, ${3:Socket}, ${4:MyNode}, ${5:Allowed}, ${6:SetupTime}) $7' -p60400 -tp60401 -a(S'do_setup/6' -p60402 -S'do_setup(${1:Kernel}, ${2:Node}, ${3:Type}, ${4:MyNode}, ${5:LongOrShortNames}, ${6:SetupTime}) $7' -p60403 -tp60404 -a(S'getstat/1' -p60405 -S'getstat(${1:Socket}) $2' -p60406 -tp60407 -a(S'is_node_name/1' -p60408 -S'is_node_name(${1:Node}) $2' -p60409 -tp60410 -a(S'listen/1' -p60411 -S'listen(${1:Name}) $2' -p60412 -tp60413 -a(S'select/1' -p60414 -S'select(${1:Node}) $2' -p60415 -tp60416 -a(S'setup/5' -p60417 -S'setup(${1:Node}, ${2:Type}, ${3:MyNode}, ${4:LongOrShortNames}, ${5:SetupTime}) $6' -p60418 -tp60419 -a(S'tick/1' -p60420 -S'tick(${1:Sock}) $2' -p60421 -tp60422 -asS'wxMenuItem' -p60423 -(lp60424 -(S'check/1' -p60425 -S'check(${1:This}) $2' -p60426 -tp60427 -a(S'check/2' -p60428 -S'check(${1:This}, ${2:Param2}) $3' -p60429 -tp60430 -a(S'destroy/1' -p60431 -S'destroy(${1:This}) $2' -p60432 -tp60433 -a(S'enable/1' -p60434 -S'enable(${1:This}) $2' -p60435 -tp60436 -a(S'enable/2' -p60437 -S'enable(${1:This}, ${2:Param2}) $3' -p60438 -tp60439 -a(S'getBitmap/1' -p60440 -S'getBitmap(${1:This}) $2' -p60441 -tp60442 -a(S'getHelp/1' -p60443 -S'getHelp(${1:This}) $2' -p60444 -tp60445 -a(S'getId/1' -p60446 -S'getId(${1:This}) $2' -p60447 -tp60448 -a(S'getKind/1' -p60449 -S'getKind(${1:This}) $2' -p60450 -tp60451 -a(S'getLabel/1' -p60452 -S'getLabel(${1:This}) $2' -p60453 -tp60454 -a(S'getLabelFromText/1' -p60455 -S'getLabelFromText(${1:Text}) $2' -p60456 -tp60457 -a(S'getMenu/1' -p60458 -S'getMenu(${1:This}) $2' -p60459 -tp60460 -a(S'getSubMenu/1' -p60461 -S'getSubMenu(${1:This}) $2' -p60462 -tp60463 -a(S'getText/1' -p60464 -S'getText(${1:This}) $2' -p60465 -tp60466 -a(S'isCheckable/1' -p60467 -S'isCheckable(${1:This}) $2' -p60468 -tp60469 -a(S'isChecked/1' -p60470 -S'isChecked(${1:This}) $2' -p60471 -tp60472 -a(S'isEnabled/1' -p60473 -S'isEnabled(${1:This}) $2' -p60474 -tp60475 -a(S'isSeparator/1' -p60476 -S'isSeparator(${1:This}) $2' -p60477 -tp60478 -a(S'isSubMenu/1' -p60479 -S'isSubMenu(${1:This}) $2' -p60480 -tp60481 -a(S'new/0' -p60482 -S'new() $1' -p60483 -tp60484 -a(S'new/1' -p60485 -S'new(${1:Param1}) $2' -p60486 -tp60487 -a(S'parent_class/1' -p60488 -S'parent_class(${1:Param1}) $2' -p60489 -tp60490 -a(S'setBitmap/2' -p60491 -S'setBitmap(${1:This}, ${2:Bitmap}) $3' -p60492 -tp60493 -a(S'setHelp/2' -p60494 -S'setHelp(${1:This}, ${2:Str}) $3' -p60495 -tp60496 -a(S'setMenu/2' -p60497 -S'setMenu(${1:This}, ${2:Menu}) $3' -p60498 -tp60499 -a(S'setSubMenu/2' -p60500 -S'setSubMenu(${1:This}, ${2:Menu}) $3' -p60501 -tp60502 -a(S'setText/2' -p60503 -S'setText(${1:This}, ${2:Str}) $3' -p60504 -tp60505 -asS'wxDateEvent' -p60506 -(lp60507 -(S'getClientData/1' -p60508 -S'getClientData(${1:This}) $2' -p60509 -tp60510 -a(S'getDate/1' -p60511 -S'getDate(${1:This}) $2' -p60512 -tp60513 -a(S'getExtraLong/1' -p60514 -S'getExtraLong(${1:This}) $2' -p60515 -tp60516 -a(S'getId/1' -p60517 -S'getId(${1:This}) $2' -p60518 -tp60519 -a(S'getInt/1' -p60520 -S'getInt(${1:This}) $2' -p60521 -tp60522 -a(S'getSelection/1' -p60523 -S'getSelection(${1:This}) $2' -p60524 -tp60525 -a(S'getSkipped/1' -p60526 -S'getSkipped(${1:This}) $2' -p60527 -tp60528 -a(S'getString/1' -p60529 -S'getString(${1:This}) $2' -p60530 -tp60531 -a(S'getTimestamp/1' -p60532 -S'getTimestamp(${1:This}) $2' -p60533 -tp60534 -a(S'isChecked/1' -p60535 -S'isChecked(${1:This}) $2' -p60536 -tp60537 -a(S'isCommandEvent/1' -p60538 -S'isCommandEvent(${1:This}) $2' -p60539 -tp60540 -a(S'isSelection/1' -p60541 -S'isSelection(${1:This}) $2' -p60542 -tp60543 -a(S'parent_class/1' -p60544 -S'parent_class(${1:Param1}) $2' -p60545 -tp60546 -a(S'resumePropagation/2' -p60547 -S'resumePropagation(${1:This}, ${2:PropagationLevel}) $3' -p60548 -tp60549 -a(S'setInt/2' -p60550 -S'setInt(${1:This}, ${2:I}) $3' -p60551 -tp60552 -a(S'setString/2' -p60553 -S'setString(${1:This}, ${2:S}) $3' -p60554 -tp60555 -a(S'shouldPropagate/1' -p60556 -S'shouldPropagate(${1:This}) $2' -p60557 -tp60558 -a(S'skip/1' -p60559 -S'skip(${1:This}) $2' -p60560 -tp60561 -a(S'skip/2' -p60562 -S'skip(${1:This}, ${2:Options}) $3' -p60563 -tp60564 -a(S'stopPropagation/1' -p60565 -S'stopPropagation(${1:This}) $2' -p60566 -tp60567 -asS'oe_CosEventChannelAdmin' -p60568 -(lp60569 -(S'oe_dependency/0' -p60570 -S'oe_dependency() $1' -p60571 -tp60572 -a(S'oe_get_module/5' -p60573 -S'oe_get_module(${1:OE_IFR}, ${2:OE_Parent}, ${3:ID}, ${4:Name}, ${5:Version}) $6' -p60574 -tp60575 -a(S'oe_register/0' -p60576 -S'oe_register() $1' -p60577 -tp60578 -a(S'oe_unregister/0' -p60579 -S'oe_unregister() $1' -p60580 -tp60581 -asS'erl_pp' -p60582 -(lp60583 -(S'attribute/1' -p60584 -S'attribute(${1:Attribute}) $2' -p60585 -tp60586 -a(S'attribute/2' -p60587 -S'attribute(${1:Attribute}, ${2:HookFunction}) $3' -p60588 -tp60589 -a(S'expr/1' -p60590 -S'expr(${1:Expression}) $2' -p60591 -tp60592 -a(S'expr/2' -p60593 -S'expr(${1:Expression}, ${2:HookFunction}) $3' -p60594 -tp60595 -a(S'expr/3' -p60596 -S'expr(${1:Expression}, ${2:Indent}, ${3:HookFunction}) $4' -p60597 -tp60598 -a(S'expr/4' -p60599 -S'expr(${1:Expression}, ${2:Indent}, ${3:Precedence}, ${4:HookFunction}) $5' -p60600 -tp60601 -a(S'exprs/1' -p60602 -S'exprs(${1:Expressions}) $2' -p60603 -tp60604 -a(S'exprs/2' -p60605 -S'exprs(${1:Expressions}, ${2:HookFunction}) $3' -p60606 -tp60607 -a(S'exprs/3' -p60608 -S'exprs(${1:Expressions}, ${2:Indent}, ${3:HookFunction}) $4' -p60609 -tp60610 -a(S'form/1' -p60611 -S'form(${1:Form}) $2' -p60612 -tp60613 -a(S'form/2' -p60614 -S'form(${1:Form}, ${2:HookFunction}) $3' -p60615 -tp60616 -a(S'function/1' -p60617 -S'function(${1:Function}) $2' -p60618 -tp60619 -a(S'function/2' -p60620 -S'function(${1:Function}, ${2:HookFunction}) $3' -p60621 -tp60622 -a(S'guard/1' -p60623 -S'guard(${1:Guard}) $2' -p60624 -tp60625 -a(S'guard/2' -p60626 -S'guard(${1:Guard}, ${2:HookFunction}) $3' -p60627 -tp60628 -a(S'rule/1' -p60629 -S'rule(${1:R}) $2' -p60630 -tp60631 -a(S'rule/2' -p60632 -S'rule(${1:R}, ${2:Hook}) $3' -p60633 -tp60634 -asS'asn1ct_constructed_per' -p60635 -(lp60636 -(S'gen_decode_choice/3' -p60637 -S'gen_decode_choice(${1:Erules}, ${2:Typename}, ${3:D}) $4' -p60638 -tp60639 -a(S'gen_decode_sequence/3' -p60640 -S'gen_decode_sequence(${1:Erules}, ${2:Typename}, ${3:D}) $4' -p60641 -tp60642 -a(S'gen_decode_set/3' -p60643 -S'gen_decode_set(${1:Erules}, ${2:Typename}, ${3:D}) $4' -p60644 -tp60645 -a(S'gen_decode_sof/4' -p60646 -S'gen_decode_sof(${1:Erules}, ${2:Typename}, ${3:SeqOrSetOf}, ${4:D}) $5' -p60647 -tp60648 -a(S'gen_encode_choice/3' -p60649 -S'gen_encode_choice(${1:Erule}, ${2:Typename}, ${3:D}) $4' -p60650 -tp60651 -a(S'gen_encode_sequence/3' -p60652 -S'gen_encode_sequence(${1:Erules}, ${2:TypeName}, ${3:D}) $4' -p60653 -tp60654 -a(S'gen_encode_set/3' -p60655 -S'gen_encode_set(${1:Erules}, ${2:TypeName}, ${3:D}) $4' -p60656 -tp60657 -a(S'gen_encode_sof/4' -p60658 -S'gen_encode_sof(${1:Erule}, ${2:Typename}, ${3:SeqOrSetOf}, ${4:D}) $5' -p60659 -tp60660 -asS'CosNotification_PropertyRange' -p60661 -(lp60662 -(S'id/0' -p60663 -S'id() $1' -p60664 -tp60665 -a(S'name/0' -p60666 -S'name() $1' -p60667 -tp60668 -a(S'tc/0' -p60669 -S'tc() $1' -p60670 -tp60671 -asS'beam_jump' -p60672 -(lp60673 -(S'is_exit_instruction/1' -p60674 -S'is_exit_instruction(${1:Param1}) $2' -p60675 -tp60676 -a(S'is_label_used_in/2' -p60677 -S'is_label_used_in(${1:Lbl}, ${2:Is}) $3' -p60678 -tp60679 -a(S'is_unreachable_after/1' -p60680 -S'is_unreachable_after(${1:I}) $2' -p60681 -tp60682 -a(S'module/2' -p60683 -S'module(${1:Param1}, ${2:Param2}) $3' -p60684 -tp60685 -a(S'module_labels/1' -p60686 -S'module_labels(${1:Param1}) $2' -p60687 -tp60688 -a(S'remove_unused_labels/1' -p60689 -S'remove_unused_labels(${1:Is}) $2' -p60690 -tp60691 -asS'megaco_per_bin_drv_media_gateway_control_prev3c' -p60692 -(lp60693 -(S"'dec_ActionReply'/2" -p60694 -S"'dec_ActionReply'(${1:Bytes}, ${2:Param2}) $3" -p60695 -tp60696 -a(S"'dec_ActionRequest'/2" -p60697 -S"'dec_ActionRequest'(${1:Bytes}, ${2:Param2}) $3" -p60698 -tp60699 -a(S"'dec_AmmDescriptor'/2" -p60700 -S"'dec_AmmDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p60701 -tp60702 -a(S"'dec_AmmRequest'/2" -p60703 -S"'dec_AmmRequest'(${1:Bytes}, ${2:Param2}) $3" -p60704 -tp60705 -a(S"'dec_AmmsReply'/2" -p60706 -S"'dec_AmmsReply'(${1:Bytes}, ${2:Param2}) $3" -p60707 -tp60708 -a(S"'dec_AuditDescriptor'/2" -p60709 -S"'dec_AuditDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p60710 -tp60711 -a(S"'dec_AuditReply'/2" -p60712 -S"'dec_AuditReply'(${1:Bytes}, ${2:Param2}) $3" -p60713 -tp60714 -a(S"'dec_AuditRequest'/2" -p60715 -S"'dec_AuditRequest'(${1:Bytes}, ${2:Param2}) $3" -p60716 -tp60717 -a(S"'dec_AuditResult'/2" -p60718 -S"'dec_AuditResult'(${1:Bytes}, ${2:Param2}) $3" -p60719 -tp60720 -a(S"'dec_AuditReturnParameter'/2" -p60721 -S"'dec_AuditReturnParameter'(${1:Bytes}, ${2:Param2}) $3" -p60722 -tp60723 -a(S"'dec_AuthData'/2" -p60724 -S"'dec_AuthData'(${1:Bytes}, ${2:Param2}) $3" -p60725 -tp60726 -a(S"'dec_AuthenticationHeader'/2" -p60727 -S"'dec_AuthenticationHeader'(${1:Bytes}, ${2:Param2}) $3" -p60728 -tp60729 -a(S"'dec_Command'/2" -p60730 -S"'dec_Command'(${1:Bytes}, ${2:Param2}) $3" -p60731 -tp60732 -a(S"'dec_CommandReply'/2" -p60733 -S"'dec_CommandReply'(${1:Bytes}, ${2:Param2}) $3" -p60734 -tp60735 -a(S"'dec_CommandRequest'/2" -p60736 -S"'dec_CommandRequest'(${1:Bytes}, ${2:Param2}) $3" -p60737 -tp60738 -a(S"'dec_ContextAttrAuditRequest'/2" -p60739 -S"'dec_ContextAttrAuditRequest'(${1:Bytes}, ${2:Param2}) $3" -p60740 -tp60741 -a(S"'dec_ContextID'/2" -p60742 -S"'dec_ContextID'(${1:Bytes}, ${2:Param2}) $3" -p60743 -tp60744 -a(S"'dec_ContextRequest'/2" -p60745 -S"'dec_ContextRequest'(${1:Bytes}, ${2:Param2}) $3" -p60746 -tp60747 -a(S"'dec_DigitMapDescriptor'/2" -p60748 -S"'dec_DigitMapDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p60749 -tp60750 -a(S"'dec_DigitMapName'/2" -p60751 -S"'dec_DigitMapName'(${1:Bytes}, ${2:Param2}) $3" -p60752 -tp60753 -a(S"'dec_DigitMapValue'/2" -p60754 -S"'dec_DigitMapValue'(${1:Bytes}, ${2:Param2}) $3" -p60755 -tp60756 -a(S"'dec_DomainName'/2" -p60757 -S"'dec_DomainName'(${1:Bytes}, ${2:Param2}) $3" -p60758 -tp60759 -a(S"'dec_ErrorCode'/2" -p60760 -S"'dec_ErrorCode'(${1:Bytes}, ${2:Param2}) $3" -p60761 -tp60762 -a(S"'dec_ErrorDescriptor'/2" -p60763 -S"'dec_ErrorDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p60764 -tp60765 -a(S"'dec_ErrorText'/2" -p60766 -S"'dec_ErrorText'(${1:Bytes}, ${2:Param2}) $3" -p60767 -tp60768 -a(S"'dec_EventBufferControl'/2" -p60769 -S"'dec_EventBufferControl'(${1:Bytes}, ${2:Param2}) $3" -p60770 -tp60771 -a(S"'dec_EventBufferDescriptor'/2" -p60772 -S"'dec_EventBufferDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p60773 -tp60774 -a(S"'dec_EventDM'/2" -p60775 -S"'dec_EventDM'(${1:Bytes}, ${2:Param2}) $3" -p60776 -tp60777 -a(S"'dec_EventName'/2" -p60778 -S"'dec_EventName'(${1:Bytes}, ${2:Param2}) $3" -p60779 -tp60780 -a(S"'dec_EventParameter'/2" -p60781 -S"'dec_EventParameter'(${1:Bytes}, ${2:Param2}) $3" -p60782 -tp60783 -a(S"'dec_EventSpec'/2" -p60784 -S"'dec_EventSpec'(${1:Bytes}, ${2:Param2}) $3" -p60785 -tp60786 -a(S"'dec_EventsDescriptor'/2" -p60787 -S"'dec_EventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p60788 -tp60789 -a(S"'dec_H221NonStandard'/2" -p60790 -S"'dec_H221NonStandard'(${1:Bytes}, ${2:Param2}) $3" -p60791 -tp60792 -a(S"'dec_IP4Address'/2" -p60793 -S"'dec_IP4Address'(${1:Bytes}, ${2:Param2}) $3" -p60794 -tp60795 -a(S"'dec_IP6Address'/2" -p60796 -S"'dec_IP6Address'(${1:Bytes}, ${2:Param2}) $3" -p60797 -tp60798 -a(S"'dec_IndAudDigitMapDescriptor'/2" -p60799 -S"'dec_IndAudDigitMapDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p60800 -tp60801 -a(S"'dec_IndAudEventBufferDescriptor'/2" -p60802 -S"'dec_IndAudEventBufferDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p60803 -tp60804 -a(S"'dec_IndAudEventsDescriptor'/2" -p60805 -S"'dec_IndAudEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p60806 -tp60807 -a(S"'dec_IndAudLocalControlDescriptor'/2" -p60808 -S"'dec_IndAudLocalControlDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p60809 -tp60810 -a(S"'dec_IndAudLocalRemoteDescriptor'/2" -p60811 -S"'dec_IndAudLocalRemoteDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p60812 -tp60813 -a(S"'dec_IndAudMediaDescriptor'/2" -p60814 -S"'dec_IndAudMediaDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p60815 -tp60816 -a(S"'dec_IndAudPackagesDescriptor'/2" -p60817 -S"'dec_IndAudPackagesDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p60818 -tp60819 -a(S"'dec_IndAudPropertyGroup'/2" -p60820 -S"'dec_IndAudPropertyGroup'(${1:Bytes}, ${2:Param2}) $3" -p60821 -tp60822 -a(S"'dec_IndAudPropertyParm'/2" -p60823 -S"'dec_IndAudPropertyParm'(${1:Bytes}, ${2:Param2}) $3" -p60824 -tp60825 -a(S"'dec_IndAudSeqSigList'/2" -p60826 -S"'dec_IndAudSeqSigList'(${1:Bytes}, ${2:Param2}) $3" -p60827 -tp60828 -a(S"'dec_IndAudSignal'/2" -p60829 -S"'dec_IndAudSignal'(${1:Bytes}, ${2:Param2}) $3" -p60830 -tp60831 -a(S"'dec_IndAudSignalsDescriptor'/2" -p60832 -S"'dec_IndAudSignalsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p60833 -tp60834 -a(S"'dec_IndAudStatisticsDescriptor'/2" -p60835 -S"'dec_IndAudStatisticsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p60836 -tp60837 -a(S"'dec_IndAudStreamDescriptor'/2" -p60838 -S"'dec_IndAudStreamDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p60839 -tp60840 -a(S"'dec_IndAudStreamParms'/2" -p60841 -S"'dec_IndAudStreamParms'(${1:Bytes}, ${2:Param2}) $3" -p60842 -tp60843 -a(S"'dec_IndAudTerminationStateDescriptor'/2" -p60844 -S"'dec_IndAudTerminationStateDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p60845 -tp60846 -a(S"'dec_IndAuditParameter'/2" -p60847 -S"'dec_IndAuditParameter'(${1:Bytes}, ${2:Param2}) $3" -p60848 -tp60849 -a(S"'dec_LocalControlDescriptor'/2" -p60850 -S"'dec_LocalControlDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p60851 -tp60852 -a(S"'dec_LocalRemoteDescriptor'/2" -p60853 -S"'dec_LocalRemoteDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p60854 -tp60855 -a(S"'dec_MId'/2" -p60856 -S"'dec_MId'(${1:Bytes}, ${2:Param2}) $3" -p60857 -tp60858 -a(S"'dec_MediaDescriptor'/2" -p60859 -S"'dec_MediaDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p60860 -tp60861 -a(S"'dec_MegacoMessage'/2" -p60862 -S"'dec_MegacoMessage'(${1:Bytes}, ${2:Param2}) $3" -p60863 -tp60864 -a(S"'dec_Message'/2" -p60865 -S"'dec_Message'(${1:Bytes}, ${2:Param2}) $3" -p60866 -tp60867 -a(S"'dec_ModemDescriptor'/2" -p60868 -S"'dec_ModemDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p60869 -tp60870 -a(S"'dec_ModemType'/2" -p60871 -S"'dec_ModemType'(${1:Bytes}, ${2:Param2}) $3" -p60872 -tp60873 -a(S"'dec_MuxDescriptor'/2" -p60874 -S"'dec_MuxDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p60875 -tp60876 -a(S"'dec_MuxType'/2" -p60877 -S"'dec_MuxType'(${1:Bytes}, ${2:Param2}) $3" -p60878 -tp60879 -a(S"'dec_Name'/2" -p60880 -S"'dec_Name'(${1:Bytes}, ${2:Param2}) $3" -p60881 -tp60882 -a(S"'dec_NonStandardData'/2" -p60883 -S"'dec_NonStandardData'(${1:Bytes}, ${2:Param2}) $3" -p60884 -tp60885 -a(S"'dec_NonStandardIdentifier'/2" -p60886 -S"'dec_NonStandardIdentifier'(${1:Bytes}, ${2:Param2}) $3" -p60887 -tp60888 -a(S"'dec_NotifyBehaviour'/2" -p60889 -S"'dec_NotifyBehaviour'(${1:Bytes}, ${2:Param2}) $3" -p60890 -tp60891 -a(S"'dec_NotifyCompletion'/2" -p60892 -S"'dec_NotifyCompletion'(${1:Bytes}, ${2:Param2}) $3" -p60893 -tp60894 -a(S"'dec_NotifyReply'/2" -p60895 -S"'dec_NotifyReply'(${1:Bytes}, ${2:Param2}) $3" -p60896 -tp60897 -a(S"'dec_NotifyRequest'/2" -p60898 -S"'dec_NotifyRequest'(${1:Bytes}, ${2:Param2}) $3" -p60899 -tp60900 -a(S"'dec_ObservedEvent'/2" -p60901 -S"'dec_ObservedEvent'(${1:Bytes}, ${2:Param2}) $3" -p60902 -tp60903 -a(S"'dec_ObservedEventsDescriptor'/2" -p60904 -S"'dec_ObservedEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p60905 -tp60906 -a(S"'dec_PackagesDescriptor'/2" -p60907 -S"'dec_PackagesDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p60908 -tp60909 -a(S"'dec_PackagesItem'/2" -p60910 -S"'dec_PackagesItem'(${1:Bytes}, ${2:Param2}) $3" -p60911 -tp60912 -a(S"'dec_PathName'/2" -p60913 -S"'dec_PathName'(${1:Bytes}, ${2:Param2}) $3" -p60914 -tp60915 -a(S"'dec_PkgdName'/2" -p60916 -S"'dec_PkgdName'(${1:Bytes}, ${2:Param2}) $3" -p60917 -tp60918 -a(S"'dec_PropertyGroup'/2" -p60919 -S"'dec_PropertyGroup'(${1:Bytes}, ${2:Param2}) $3" -p60920 -tp60921 -a(S"'dec_PropertyParm'/2" -p60922 -S"'dec_PropertyParm'(${1:Bytes}, ${2:Param2}) $3" -p60923 -tp60924 -a(S"'dec_RegulatedEmbeddedDescriptor'/2" -p60925 -S"'dec_RegulatedEmbeddedDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p60926 -tp60927 -a(S"'dec_Relation'/2" -p60928 -S"'dec_Relation'(${1:Bytes}, ${2:Param2}) $3" -p60929 -tp60930 -a(S"'dec_RequestID'/2" -p60931 -S"'dec_RequestID'(${1:Bytes}, ${2:Param2}) $3" -p60932 -tp60933 -a(S"'dec_RequestedActions'/2" -p60934 -S"'dec_RequestedActions'(${1:Bytes}, ${2:Param2}) $3" -p60935 -tp60936 -a(S"'dec_RequestedEvent'/2" -p60937 -S"'dec_RequestedEvent'(${1:Bytes}, ${2:Param2}) $3" -p60938 -tp60939 -a(S"'dec_SecondEventsDescriptor'/2" -p60940 -S"'dec_SecondEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p60941 -tp60942 -a(S"'dec_SecondRequestedActions'/2" -p60943 -S"'dec_SecondRequestedActions'(${1:Bytes}, ${2:Param2}) $3" -p60944 -tp60945 -a(S"'dec_SecondRequestedEvent'/2" -p60946 -S"'dec_SecondRequestedEvent'(${1:Bytes}, ${2:Param2}) $3" -p60947 -tp60948 -a(S"'dec_SecurityParmIndex'/2" -p60949 -S"'dec_SecurityParmIndex'(${1:Bytes}, ${2:Param2}) $3" -p60950 -tp60951 -a(S"'dec_SegmentNumber'/2" -p60952 -S"'dec_SegmentNumber'(${1:Bytes}, ${2:Param2}) $3" -p60953 -tp60954 -a(S"'dec_SelectLogic'/2" -p60955 -S"'dec_SelectLogic'(${1:Bytes}, ${2:Param2}) $3" -p60956 -tp60957 -a(S"'dec_SeqSigList'/2" -p60958 -S"'dec_SeqSigList'(${1:Bytes}, ${2:Param2}) $3" -p60959 -tp60960 -a(S"'dec_SequenceNum'/2" -p60961 -S"'dec_SequenceNum'(${1:Bytes}, ${2:Param2}) $3" -p60962 -tp60963 -a(S"'dec_ServiceChangeAddress'/2" -p60964 -S"'dec_ServiceChangeAddress'(${1:Bytes}, ${2:Param2}) $3" -p60965 -tp60966 -a(S"'dec_ServiceChangeMethod'/2" -p60967 -S"'dec_ServiceChangeMethod'(${1:Bytes}, ${2:Param2}) $3" -p60968 -tp60969 -a(S"'dec_ServiceChangeParm'/2" -p60970 -S"'dec_ServiceChangeParm'(${1:Bytes}, ${2:Param2}) $3" -p60971 -tp60972 -a(S"'dec_ServiceChangeProfile'/2" -p60973 -S"'dec_ServiceChangeProfile'(${1:Bytes}, ${2:Param2}) $3" -p60974 -tp60975 -a(S"'dec_ServiceChangeReply'/2" -p60976 -S"'dec_ServiceChangeReply'(${1:Bytes}, ${2:Param2}) $3" -p60977 -tp60978 -a(S"'dec_ServiceChangeRequest'/2" -p60979 -S"'dec_ServiceChangeRequest'(${1:Bytes}, ${2:Param2}) $3" -p60980 -tp60981 -a(S"'dec_ServiceChangeResParm'/2" -p60982 -S"'dec_ServiceChangeResParm'(${1:Bytes}, ${2:Param2}) $3" -p60983 -tp60984 -a(S"'dec_ServiceChangeResult'/2" -p60985 -S"'dec_ServiceChangeResult'(${1:Bytes}, ${2:Param2}) $3" -p60986 -tp60987 -a(S"'dec_ServiceState'/2" -p60988 -S"'dec_ServiceState'(${1:Bytes}, ${2:Param2}) $3" -p60989 -tp60990 -a(S"'dec_SigParameter'/2" -p60991 -S"'dec_SigParameter'(${1:Bytes}, ${2:Param2}) $3" -p60992 -tp60993 -a(S"'dec_Signal'/2" -p60994 -S"'dec_Signal'(${1:Bytes}, ${2:Param2}) $3" -p60995 -tp60996 -a(S"'dec_SignalDirection'/2" -p60997 -S"'dec_SignalDirection'(${1:Bytes}, ${2:Param2}) $3" -p60998 -tp60999 -a(S"'dec_SignalName'/2" -p61000 -S"'dec_SignalName'(${1:Bytes}, ${2:Param2}) $3" -p61001 -tp61002 -a(S"'dec_SignalRequest'/2" -p61003 -S"'dec_SignalRequest'(${1:Bytes}, ${2:Param2}) $3" -p61004 -tp61005 -a(S"'dec_SignalType'/2" -p61006 -S"'dec_SignalType'(${1:Bytes}, ${2:Param2}) $3" -p61007 -tp61008 -a(S"'dec_SignalsDescriptor'/2" -p61009 -S"'dec_SignalsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p61010 -tp61011 -a(S"'dec_StatisticsDescriptor'/2" -p61012 -S"'dec_StatisticsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p61013 -tp61014 -a(S"'dec_StatisticsParameter'/2" -p61015 -S"'dec_StatisticsParameter'(${1:Bytes}, ${2:Param2}) $3" -p61016 -tp61017 -a(S"'dec_StreamDescriptor'/2" -p61018 -S"'dec_StreamDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p61019 -tp61020 -a(S"'dec_StreamID'/2" -p61021 -S"'dec_StreamID'(${1:Bytes}, ${2:Param2}) $3" -p61022 -tp61023 -a(S"'dec_StreamMode'/2" -p61024 -S"'dec_StreamMode'(${1:Bytes}, ${2:Param2}) $3" -p61025 -tp61026 -a(S"'dec_StreamParms'/2" -p61027 -S"'dec_StreamParms'(${1:Bytes}, ${2:Param2}) $3" -p61028 -tp61029 -a(S"'dec_SubtractRequest'/2" -p61030 -S"'dec_SubtractRequest'(${1:Bytes}, ${2:Param2}) $3" -p61031 -tp61032 -a(S"'dec_TermListAuditResult'/2" -p61033 -S"'dec_TermListAuditResult'(${1:Bytes}, ${2:Param2}) $3" -p61034 -tp61035 -a(S"'dec_TerminationAudit'/2" -p61036 -S"'dec_TerminationAudit'(${1:Bytes}, ${2:Param2}) $3" -p61037 -tp61038 -a(S"'dec_TerminationID'/2" -p61039 -S"'dec_TerminationID'(${1:Bytes}, ${2:Param2}) $3" -p61040 -tp61041 -a(S"'dec_TerminationIDList'/2" -p61042 -S"'dec_TerminationIDList'(${1:Bytes}, ${2:Param2}) $3" -p61043 -tp61044 -a(S"'dec_TerminationStateDescriptor'/2" -p61045 -S"'dec_TerminationStateDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p61046 -tp61047 -a(S"'dec_TimeNotation'/2" -p61048 -S"'dec_TimeNotation'(${1:Bytes}, ${2:Param2}) $3" -p61049 -tp61050 -a(S"'dec_TopologyRequest'/2" -p61051 -S"'dec_TopologyRequest'(${1:Bytes}, ${2:Param2}) $3" -p61052 -tp61053 -a(S"'dec_Transaction'/2" -p61054 -S"'dec_Transaction'(${1:Bytes}, ${2:Param2}) $3" -p61055 -tp61056 -a(S"'dec_TransactionAck'/2" -p61057 -S"'dec_TransactionAck'(${1:Bytes}, ${2:Param2}) $3" -p61058 -tp61059 -a(S"'dec_TransactionId'/2" -p61060 -S"'dec_TransactionId'(${1:Bytes}, ${2:Param2}) $3" -p61061 -tp61062 -a(S"'dec_TransactionPending'/2" -p61063 -S"'dec_TransactionPending'(${1:Bytes}, ${2:Param2}) $3" -p61064 -tp61065 -a(S"'dec_TransactionReply'/2" -p61066 -S"'dec_TransactionReply'(${1:Bytes}, ${2:Param2}) $3" -p61067 -tp61068 -a(S"'dec_TransactionRequest'/2" -p61069 -S"'dec_TransactionRequest'(${1:Bytes}, ${2:Param2}) $3" -p61070 -tp61071 -a(S"'dec_TransactionResponseAck'/2" -p61072 -S"'dec_TransactionResponseAck'(${1:Bytes}, ${2:Param2}) $3" -p61073 -tp61074 -a(S"'dec_Value'/2" -p61075 -S"'dec_Value'(${1:Bytes}, ${2:Param2}) $3" -p61076 -tp61077 -a(S"'dec_WildcardField'/2" -p61078 -S"'dec_WildcardField'(${1:Bytes}, ${2:Param2}) $3" -p61079 -tp61080 -a(S"'enc_ActionReply'/1" -p61081 -S"'enc_ActionReply'(${1:Val}) $2" -p61082 -tp61083 -a(S"'enc_ActionRequest'/1" -p61084 -S"'enc_ActionRequest'(${1:Val}) $2" -p61085 -tp61086 -a(S"'enc_AmmDescriptor'/1" -p61087 -S"'enc_AmmDescriptor'(${1:Val}) $2" -p61088 -tp61089 -a(S"'enc_AmmRequest'/1" -p61090 -S"'enc_AmmRequest'(${1:Val}) $2" -p61091 -tp61092 -a(S"'enc_AmmsReply'/1" -p61093 -S"'enc_AmmsReply'(${1:Val}) $2" -p61094 -tp61095 -a(S"'enc_AuditDescriptor'/1" -p61096 -S"'enc_AuditDescriptor'(${1:Val}) $2" -p61097 -tp61098 -a(S"'enc_AuditReply'/1" -p61099 -S"'enc_AuditReply'(${1:Val}) $2" -p61100 -tp61101 -a(S"'enc_AuditRequest'/1" -p61102 -S"'enc_AuditRequest'(${1:Val}) $2" -p61103 -tp61104 -a(S"'enc_AuditResult'/1" -p61105 -S"'enc_AuditResult'(${1:Val}) $2" -p61106 -tp61107 -a(S"'enc_AuditReturnParameter'/1" -p61108 -S"'enc_AuditReturnParameter'(${1:Val}) $2" -p61109 -tp61110 -a(S"'enc_AuthData'/1" -p61111 -S"'enc_AuthData'(${1:Val}) $2" -p61112 -tp61113 -a(S"'enc_AuthenticationHeader'/1" -p61114 -S"'enc_AuthenticationHeader'(${1:Val}) $2" -p61115 -tp61116 -a(S"'enc_Command'/1" -p61117 -S"'enc_Command'(${1:Val}) $2" -p61118 -tp61119 -a(S"'enc_CommandReply'/1" -p61120 -S"'enc_CommandReply'(${1:Val}) $2" -p61121 -tp61122 -a(S"'enc_CommandRequest'/1" -p61123 -S"'enc_CommandRequest'(${1:Val}) $2" -p61124 -tp61125 -a(S"'enc_ContextAttrAuditRequest'/1" -p61126 -S"'enc_ContextAttrAuditRequest'(${1:Val}) $2" -p61127 -tp61128 -a(S"'enc_ContextID'/1" -p61129 -S"'enc_ContextID'(${1:Val}) $2" -p61130 -tp61131 -a(S"'enc_ContextRequest'/1" -p61132 -S"'enc_ContextRequest'(${1:Val}) $2" -p61133 -tp61134 -a(S"'enc_DigitMapDescriptor'/1" -p61135 -S"'enc_DigitMapDescriptor'(${1:Val}) $2" -p61136 -tp61137 -a(S"'enc_DigitMapName'/1" -p61138 -S"'enc_DigitMapName'(${1:Val}) $2" -p61139 -tp61140 -a(S"'enc_DigitMapValue'/1" -p61141 -S"'enc_DigitMapValue'(${1:Val}) $2" -p61142 -tp61143 -a(S"'enc_DomainName'/1" -p61144 -S"'enc_DomainName'(${1:Val}) $2" -p61145 -tp61146 -a(S"'enc_ErrorCode'/1" -p61147 -S"'enc_ErrorCode'(${1:Val}) $2" -p61148 -tp61149 -a(S"'enc_ErrorDescriptor'/1" -p61150 -S"'enc_ErrorDescriptor'(${1:Val}) $2" -p61151 -tp61152 -a(S"'enc_ErrorText'/1" -p61153 -S"'enc_ErrorText'(${1:Val}) $2" -p61154 -tp61155 -a(S"'enc_EventBufferControl'/1" -p61156 -S"'enc_EventBufferControl'(${1:Val}) $2" -p61157 -tp61158 -a(S"'enc_EventBufferDescriptor'/1" -p61159 -S"'enc_EventBufferDescriptor'(${1:Val}) $2" -p61160 -tp61161 -a(S"'enc_EventDM'/1" -p61162 -S"'enc_EventDM'(${1:Val}) $2" -p61163 -tp61164 -a(S"'enc_EventName'/1" -p61165 -S"'enc_EventName'(${1:Val}) $2" -p61166 -tp61167 -a(S"'enc_EventParameter'/1" -p61168 -S"'enc_EventParameter'(${1:Val}) $2" -p61169 -tp61170 -a(S"'enc_EventSpec'/1" -p61171 -S"'enc_EventSpec'(${1:Val}) $2" -p61172 -tp61173 -a(S"'enc_EventsDescriptor'/1" -p61174 -S"'enc_EventsDescriptor'(${1:Val}) $2" -p61175 -tp61176 -a(S"'enc_H221NonStandard'/1" -p61177 -S"'enc_H221NonStandard'(${1:Val}) $2" -p61178 -tp61179 -a(S"'enc_IP4Address'/1" -p61180 -S"'enc_IP4Address'(${1:Val}) $2" -p61181 -tp61182 -a(S"'enc_IP6Address'/1" -p61183 -S"'enc_IP6Address'(${1:Val}) $2" -p61184 -tp61185 -a(S"'enc_IndAudDigitMapDescriptor'/1" -p61186 -S"'enc_IndAudDigitMapDescriptor'(${1:Val}) $2" -p61187 -tp61188 -a(S"'enc_IndAudEventBufferDescriptor'/1" -p61189 -S"'enc_IndAudEventBufferDescriptor'(${1:Val}) $2" -p61190 -tp61191 -a(S"'enc_IndAudEventsDescriptor'/1" -p61192 -S"'enc_IndAudEventsDescriptor'(${1:Val}) $2" -p61193 -tp61194 -a(S"'enc_IndAudLocalControlDescriptor'/1" -p61195 -S"'enc_IndAudLocalControlDescriptor'(${1:Val}) $2" -p61196 -tp61197 -a(S"'enc_IndAudLocalRemoteDescriptor'/1" -p61198 -S"'enc_IndAudLocalRemoteDescriptor'(${1:Val}) $2" -p61199 -tp61200 -a(S"'enc_IndAudMediaDescriptor'/1" -p61201 -S"'enc_IndAudMediaDescriptor'(${1:Val}) $2" -p61202 -tp61203 -a(S"'enc_IndAudPackagesDescriptor'/1" -p61204 -S"'enc_IndAudPackagesDescriptor'(${1:Val}) $2" -p61205 -tp61206 -a(S"'enc_IndAudPropertyGroup'/1" -p61207 -S"'enc_IndAudPropertyGroup'(${1:Val}) $2" -p61208 -tp61209 -a(S"'enc_IndAudPropertyParm'/1" -p61210 -S"'enc_IndAudPropertyParm'(${1:Val}) $2" -p61211 -tp61212 -a(S"'enc_IndAudSeqSigList'/1" -p61213 -S"'enc_IndAudSeqSigList'(${1:Val}) $2" -p61214 -tp61215 -a(S"'enc_IndAudSignal'/1" -p61216 -S"'enc_IndAudSignal'(${1:Val}) $2" -p61217 -tp61218 -a(S"'enc_IndAudSignalsDescriptor'/1" -p61219 -S"'enc_IndAudSignalsDescriptor'(${1:Val}) $2" -p61220 -tp61221 -a(S"'enc_IndAudStatisticsDescriptor'/1" -p61222 -S"'enc_IndAudStatisticsDescriptor'(${1:Val}) $2" -p61223 -tp61224 -a(S"'enc_IndAudStreamDescriptor'/1" -p61225 -S"'enc_IndAudStreamDescriptor'(${1:Val}) $2" -p61226 -tp61227 -a(S"'enc_IndAudStreamParms'/1" -p61228 -S"'enc_IndAudStreamParms'(${1:Val}) $2" -p61229 -tp61230 -a(S"'enc_IndAudTerminationStateDescriptor'/1" -p61231 -S"'enc_IndAudTerminationStateDescriptor'(${1:Val}) $2" -p61232 -tp61233 -a(S"'enc_IndAuditParameter'/1" -p61234 -S"'enc_IndAuditParameter'(${1:Val}) $2" -p61235 -tp61236 -a(S"'enc_LocalControlDescriptor'/1" -p61237 -S"'enc_LocalControlDescriptor'(${1:Val}) $2" -p61238 -tp61239 -a(S"'enc_LocalRemoteDescriptor'/1" -p61240 -S"'enc_LocalRemoteDescriptor'(${1:Val}) $2" -p61241 -tp61242 -a(S"'enc_MId'/1" -p61243 -S"'enc_MId'(${1:Val}) $2" -p61244 -tp61245 -a(S"'enc_MediaDescriptor'/1" -p61246 -S"'enc_MediaDescriptor'(${1:Val}) $2" -p61247 -tp61248 -a(S"'enc_MegacoMessage'/1" -p61249 -S"'enc_MegacoMessage'(${1:Val}) $2" -p61250 -tp61251 -a(S"'enc_Message'/1" -p61252 -S"'enc_Message'(${1:Val}) $2" -p61253 -tp61254 -a(S"'enc_ModemDescriptor'/1" -p61255 -S"'enc_ModemDescriptor'(${1:Val}) $2" -p61256 -tp61257 -a(S"'enc_ModemType'/1" -p61258 -S"'enc_ModemType'(${1:Val}) $2" -p61259 -tp61260 -a(S"'enc_MuxDescriptor'/1" -p61261 -S"'enc_MuxDescriptor'(${1:Val}) $2" -p61262 -tp61263 -a(S"'enc_MuxType'/1" -p61264 -S"'enc_MuxType'(${1:Val}) $2" -p61265 -tp61266 -a(S"'enc_Name'/1" -p61267 -S"'enc_Name'(${1:Val}) $2" -p61268 -tp61269 -a(S"'enc_NonStandardData'/1" -p61270 -S"'enc_NonStandardData'(${1:Val}) $2" -p61271 -tp61272 -a(S"'enc_NonStandardIdentifier'/1" -p61273 -S"'enc_NonStandardIdentifier'(${1:Val}) $2" -p61274 -tp61275 -a(S"'enc_NotifyBehaviour'/1" -p61276 -S"'enc_NotifyBehaviour'(${1:Val}) $2" -p61277 -tp61278 -a(S"'enc_NotifyCompletion'/1" -p61279 -S"'enc_NotifyCompletion'(${1:Val}) $2" -p61280 -tp61281 -a(S"'enc_NotifyReply'/1" -p61282 -S"'enc_NotifyReply'(${1:Val}) $2" -p61283 -tp61284 -a(S"'enc_NotifyRequest'/1" -p61285 -S"'enc_NotifyRequest'(${1:Val}) $2" -p61286 -tp61287 -a(S"'enc_ObservedEvent'/1" -p61288 -S"'enc_ObservedEvent'(${1:Val}) $2" -p61289 -tp61290 -a(S"'enc_ObservedEventsDescriptor'/1" -p61291 -S"'enc_ObservedEventsDescriptor'(${1:Val}) $2" -p61292 -tp61293 -a(S"'enc_PackagesDescriptor'/1" -p61294 -S"'enc_PackagesDescriptor'(${1:Val}) $2" -p61295 -tp61296 -a(S"'enc_PackagesItem'/1" -p61297 -S"'enc_PackagesItem'(${1:Val}) $2" -p61298 -tp61299 -a(S"'enc_PathName'/1" -p61300 -S"'enc_PathName'(${1:Val}) $2" -p61301 -tp61302 -a(S"'enc_PkgdName'/1" -p61303 -S"'enc_PkgdName'(${1:Val}) $2" -p61304 -tp61305 -a(S"'enc_PropertyGroup'/1" -p61306 -S"'enc_PropertyGroup'(${1:Val}) $2" -p61307 -tp61308 -a(S"'enc_PropertyParm'/1" -p61309 -S"'enc_PropertyParm'(${1:Val}) $2" -p61310 -tp61311 -a(S"'enc_RegulatedEmbeddedDescriptor'/1" -p61312 -S"'enc_RegulatedEmbeddedDescriptor'(${1:Val}) $2" -p61313 -tp61314 -a(S"'enc_Relation'/1" -p61315 -S"'enc_Relation'(${1:Val}) $2" -p61316 -tp61317 -a(S"'enc_RequestID'/1" -p61318 -S"'enc_RequestID'(${1:Val}) $2" -p61319 -tp61320 -a(S"'enc_RequestedActions'/1" -p61321 -S"'enc_RequestedActions'(${1:Val}) $2" -p61322 -tp61323 -a(S"'enc_RequestedEvent'/1" -p61324 -S"'enc_RequestedEvent'(${1:Val}) $2" -p61325 -tp61326 -a(S"'enc_SecondEventsDescriptor'/1" -p61327 -S"'enc_SecondEventsDescriptor'(${1:Val}) $2" -p61328 -tp61329 -a(S"'enc_SecondRequestedActions'/1" -p61330 -S"'enc_SecondRequestedActions'(${1:Val}) $2" -p61331 -tp61332 -a(S"'enc_SecondRequestedEvent'/1" -p61333 -S"'enc_SecondRequestedEvent'(${1:Val}) $2" -p61334 -tp61335 -a(S"'enc_SecurityParmIndex'/1" -p61336 -S"'enc_SecurityParmIndex'(${1:Val}) $2" -p61337 -tp61338 -a(S"'enc_SegmentNumber'/1" -p61339 -S"'enc_SegmentNumber'(${1:Val}) $2" -p61340 -tp61341 -a(S"'enc_SelectLogic'/1" -p61342 -S"'enc_SelectLogic'(${1:Val}) $2" -p61343 -tp61344 -a(S"'enc_SeqSigList'/1" -p61345 -S"'enc_SeqSigList'(${1:Val}) $2" -p61346 -tp61347 -a(S"'enc_SequenceNum'/1" -p61348 -S"'enc_SequenceNum'(${1:Val}) $2" -p61349 -tp61350 -a(S"'enc_ServiceChangeAddress'/1" -p61351 -S"'enc_ServiceChangeAddress'(${1:Val}) $2" -p61352 -tp61353 -a(S"'enc_ServiceChangeMethod'/1" -p61354 -S"'enc_ServiceChangeMethod'(${1:Val}) $2" -p61355 -tp61356 -a(S"'enc_ServiceChangeParm'/1" -p61357 -S"'enc_ServiceChangeParm'(${1:Val}) $2" -p61358 -tp61359 -a(S"'enc_ServiceChangeProfile'/1" -p61360 -S"'enc_ServiceChangeProfile'(${1:Val}) $2" -p61361 -tp61362 -a(S"'enc_ServiceChangeReply'/1" -p61363 -S"'enc_ServiceChangeReply'(${1:Val}) $2" -p61364 -tp61365 -a(S"'enc_ServiceChangeRequest'/1" -p61366 -S"'enc_ServiceChangeRequest'(${1:Val}) $2" -p61367 -tp61368 -a(S"'enc_ServiceChangeResParm'/1" -p61369 -S"'enc_ServiceChangeResParm'(${1:Val}) $2" -p61370 -tp61371 -a(S"'enc_ServiceChangeResult'/1" -p61372 -S"'enc_ServiceChangeResult'(${1:Val}) $2" -p61373 -tp61374 -a(S"'enc_ServiceState'/1" -p61375 -S"'enc_ServiceState'(${1:Val}) $2" -p61376 -tp61377 -a(S"'enc_SigParameter'/1" -p61378 -S"'enc_SigParameter'(${1:Val}) $2" -p61379 -tp61380 -a(S"'enc_Signal'/1" -p61381 -S"'enc_Signal'(${1:Val}) $2" -p61382 -tp61383 -a(S"'enc_SignalDirection'/1" -p61384 -S"'enc_SignalDirection'(${1:Val}) $2" -p61385 -tp61386 -a(S"'enc_SignalName'/1" -p61387 -S"'enc_SignalName'(${1:Val}) $2" -p61388 -tp61389 -a(S"'enc_SignalRequest'/1" -p61390 -S"'enc_SignalRequest'(${1:Val}) $2" -p61391 -tp61392 -a(S"'enc_SignalType'/1" -p61393 -S"'enc_SignalType'(${1:Val}) $2" -p61394 -tp61395 -a(S"'enc_SignalsDescriptor'/1" -p61396 -S"'enc_SignalsDescriptor'(${1:Val}) $2" -p61397 -tp61398 -a(S"'enc_StatisticsDescriptor'/1" -p61399 -S"'enc_StatisticsDescriptor'(${1:Val}) $2" -p61400 -tp61401 -a(S"'enc_StatisticsParameter'/1" -p61402 -S"'enc_StatisticsParameter'(${1:Val}) $2" -p61403 -tp61404 -a(S"'enc_StreamDescriptor'/1" -p61405 -S"'enc_StreamDescriptor'(${1:Val}) $2" -p61406 -tp61407 -a(S"'enc_StreamID'/1" -p61408 -S"'enc_StreamID'(${1:Val}) $2" -p61409 -tp61410 -a(S"'enc_StreamMode'/1" -p61411 -S"'enc_StreamMode'(${1:Val}) $2" -p61412 -tp61413 -a(S"'enc_StreamParms'/1" -p61414 -S"'enc_StreamParms'(${1:Val}) $2" -p61415 -tp61416 -a(S"'enc_SubtractRequest'/1" -p61417 -S"'enc_SubtractRequest'(${1:Val}) $2" -p61418 -tp61419 -a(S"'enc_TermListAuditResult'/1" -p61420 -S"'enc_TermListAuditResult'(${1:Val}) $2" -p61421 -tp61422 -a(S"'enc_TerminationAudit'/1" -p61423 -S"'enc_TerminationAudit'(${1:Val}) $2" -p61424 -tp61425 -a(S"'enc_TerminationID'/1" -p61426 -S"'enc_TerminationID'(${1:Val}) $2" -p61427 -tp61428 -a(S"'enc_TerminationIDList'/1" -p61429 -S"'enc_TerminationIDList'(${1:Val}) $2" -p61430 -tp61431 -a(S"'enc_TerminationStateDescriptor'/1" -p61432 -S"'enc_TerminationStateDescriptor'(${1:Val}) $2" -p61433 -tp61434 -a(S"'enc_TimeNotation'/1" -p61435 -S"'enc_TimeNotation'(${1:Val}) $2" -p61436 -tp61437 -a(S"'enc_TopologyRequest'/1" -p61438 -S"'enc_TopologyRequest'(${1:Val}) $2" -p61439 -tp61440 -a(S"'enc_Transaction'/1" -p61441 -S"'enc_Transaction'(${1:Val}) $2" -p61442 -tp61443 -a(S"'enc_TransactionAck'/1" -p61444 -S"'enc_TransactionAck'(${1:Val}) $2" -p61445 -tp61446 -a(S"'enc_TransactionId'/1" -p61447 -S"'enc_TransactionId'(${1:Val}) $2" -p61448 -tp61449 -a(S"'enc_TransactionPending'/1" -p61450 -S"'enc_TransactionPending'(${1:Val}) $2" -p61451 -tp61452 -a(S"'enc_TransactionReply'/1" -p61453 -S"'enc_TransactionReply'(${1:Val}) $2" -p61454 -tp61455 -a(S"'enc_TransactionRequest'/1" -p61456 -S"'enc_TransactionRequest'(${1:Val}) $2" -p61457 -tp61458 -a(S"'enc_TransactionResponseAck'/1" -p61459 -S"'enc_TransactionResponseAck'(${1:Val}) $2" -p61460 -tp61461 -a(S"'enc_Value'/1" -p61462 -S"'enc_Value'(${1:Val}) $2" -p61463 -tp61464 -a(S"'enc_WildcardField'/1" -p61465 -S"'enc_WildcardField'(${1:Val}) $2" -p61466 -tp61467 -a(S'decode/2' -p61468 -S'decode(${1:Type}, ${2:Data}) $3' -p61469 -tp61470 -a(S'decode_disp/2' -p61471 -S'decode_disp(${1:Type}, ${2:Data}) $3' -p61472 -tp61473 -a(S'encode/2' -p61474 -S'encode(${1:Type}, ${2:Data}) $3' -p61475 -tp61476 -a(S'encode_disp/2' -p61477 -S'encode_disp(${1:Type}, ${2:Data}) $3' -p61478 -tp61479 -a(S'encoding_rule/0' -p61480 -S'encoding_rule() $1' -p61481 -tp61482 -a(S'info/0' -p61483 -S'info() $1' -p61484 -tp61485 -asS'megaco_per_bin_drv_media_gateway_control_prev3b' -p61486 -(lp61487 -(S"'dec_ActionReply'/2" -p61488 -S"'dec_ActionReply'(${1:Bytes}, ${2:Param2}) $3" -p61489 -tp61490 -a(S"'dec_ActionRequest'/2" -p61491 -S"'dec_ActionRequest'(${1:Bytes}, ${2:Param2}) $3" -p61492 -tp61493 -a(S"'dec_AmmDescriptor'/2" -p61494 -S"'dec_AmmDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p61495 -tp61496 -a(S"'dec_AmmRequest'/2" -p61497 -S"'dec_AmmRequest'(${1:Bytes}, ${2:Param2}) $3" -p61498 -tp61499 -a(S"'dec_AmmsReply'/2" -p61500 -S"'dec_AmmsReply'(${1:Bytes}, ${2:Param2}) $3" -p61501 -tp61502 -a(S"'dec_AuditDescriptor'/2" -p61503 -S"'dec_AuditDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p61504 -tp61505 -a(S"'dec_AuditReply'/2" -p61506 -S"'dec_AuditReply'(${1:Bytes}, ${2:Param2}) $3" -p61507 -tp61508 -a(S"'dec_AuditRequest'/2" -p61509 -S"'dec_AuditRequest'(${1:Bytes}, ${2:Param2}) $3" -p61510 -tp61511 -a(S"'dec_AuditResult'/2" -p61512 -S"'dec_AuditResult'(${1:Bytes}, ${2:Param2}) $3" -p61513 -tp61514 -a(S"'dec_AuditReturnParameter'/2" -p61515 -S"'dec_AuditReturnParameter'(${1:Bytes}, ${2:Param2}) $3" -p61516 -tp61517 -a(S"'dec_AuthData'/2" -p61518 -S"'dec_AuthData'(${1:Bytes}, ${2:Param2}) $3" -p61519 -tp61520 -a(S"'dec_AuthenticationHeader'/2" -p61521 -S"'dec_AuthenticationHeader'(${1:Bytes}, ${2:Param2}) $3" -p61522 -tp61523 -a(S"'dec_Command'/2" -p61524 -S"'dec_Command'(${1:Bytes}, ${2:Param2}) $3" -p61525 -tp61526 -a(S"'dec_CommandReply'/2" -p61527 -S"'dec_CommandReply'(${1:Bytes}, ${2:Param2}) $3" -p61528 -tp61529 -a(S"'dec_CommandRequest'/2" -p61530 -S"'dec_CommandRequest'(${1:Bytes}, ${2:Param2}) $3" -p61531 -tp61532 -a(S"'dec_ContextAttrAuditRequest'/2" -p61533 -S"'dec_ContextAttrAuditRequest'(${1:Bytes}, ${2:Param2}) $3" -p61534 -tp61535 -a(S"'dec_ContextID'/2" -p61536 -S"'dec_ContextID'(${1:Bytes}, ${2:Param2}) $3" -p61537 -tp61538 -a(S"'dec_ContextRequest'/2" -p61539 -S"'dec_ContextRequest'(${1:Bytes}, ${2:Param2}) $3" -p61540 -tp61541 -a(S"'dec_DigitMapDescriptor'/2" -p61542 -S"'dec_DigitMapDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p61543 -tp61544 -a(S"'dec_DigitMapName'/2" -p61545 -S"'dec_DigitMapName'(${1:Bytes}, ${2:Param2}) $3" -p61546 -tp61547 -a(S"'dec_DigitMapValue'/2" -p61548 -S"'dec_DigitMapValue'(${1:Bytes}, ${2:Param2}) $3" -p61549 -tp61550 -a(S"'dec_DomainName'/2" -p61551 -S"'dec_DomainName'(${1:Bytes}, ${2:Param2}) $3" -p61552 -tp61553 -a(S"'dec_ErrorCode'/2" -p61554 -S"'dec_ErrorCode'(${1:Bytes}, ${2:Param2}) $3" -p61555 -tp61556 -a(S"'dec_ErrorDescriptor'/2" -p61557 -S"'dec_ErrorDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p61558 -tp61559 -a(S"'dec_ErrorText'/2" -p61560 -S"'dec_ErrorText'(${1:Bytes}, ${2:Param2}) $3" -p61561 -tp61562 -a(S"'dec_EventBufferControl'/2" -p61563 -S"'dec_EventBufferControl'(${1:Bytes}, ${2:Param2}) $3" -p61564 -tp61565 -a(S"'dec_EventBufferDescriptor'/2" -p61566 -S"'dec_EventBufferDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p61567 -tp61568 -a(S"'dec_EventDM'/2" -p61569 -S"'dec_EventDM'(${1:Bytes}, ${2:Param2}) $3" -p61570 -tp61571 -a(S"'dec_EventName'/2" -p61572 -S"'dec_EventName'(${1:Bytes}, ${2:Param2}) $3" -p61573 -tp61574 -a(S"'dec_EventParameter'/2" -p61575 -S"'dec_EventParameter'(${1:Bytes}, ${2:Param2}) $3" -p61576 -tp61577 -a(S"'dec_EventSpec'/2" -p61578 -S"'dec_EventSpec'(${1:Bytes}, ${2:Param2}) $3" -p61579 -tp61580 -a(S"'dec_EventsDescriptor'/2" -p61581 -S"'dec_EventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p61582 -tp61583 -a(S"'dec_H221NonStandard'/2" -p61584 -S"'dec_H221NonStandard'(${1:Bytes}, ${2:Param2}) $3" -p61585 -tp61586 -a(S"'dec_IP4Address'/2" -p61587 -S"'dec_IP4Address'(${1:Bytes}, ${2:Param2}) $3" -p61588 -tp61589 -a(S"'dec_IP6Address'/2" -p61590 -S"'dec_IP6Address'(${1:Bytes}, ${2:Param2}) $3" -p61591 -tp61592 -a(S"'dec_IndAudDigitMapDescriptor'/2" -p61593 -S"'dec_IndAudDigitMapDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p61594 -tp61595 -a(S"'dec_IndAudEventBufferDescriptor'/2" -p61596 -S"'dec_IndAudEventBufferDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p61597 -tp61598 -a(S"'dec_IndAudEventsDescriptor'/2" -p61599 -S"'dec_IndAudEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p61600 -tp61601 -a(S"'dec_IndAudLocalControlDescriptor'/2" -p61602 -S"'dec_IndAudLocalControlDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p61603 -tp61604 -a(S"'dec_IndAudLocalRemoteDescriptor'/2" -p61605 -S"'dec_IndAudLocalRemoteDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p61606 -tp61607 -a(S"'dec_IndAudMediaDescriptor'/2" -p61608 -S"'dec_IndAudMediaDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p61609 -tp61610 -a(S"'dec_IndAudPackagesDescriptor'/2" -p61611 -S"'dec_IndAudPackagesDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p61612 -tp61613 -a(S"'dec_IndAudPropertyGroup'/2" -p61614 -S"'dec_IndAudPropertyGroup'(${1:Bytes}, ${2:Param2}) $3" -p61615 -tp61616 -a(S"'dec_IndAudPropertyParm'/2" -p61617 -S"'dec_IndAudPropertyParm'(${1:Bytes}, ${2:Param2}) $3" -p61618 -tp61619 -a(S"'dec_IndAudSeqSigList'/2" -p61620 -S"'dec_IndAudSeqSigList'(${1:Bytes}, ${2:Param2}) $3" -p61621 -tp61622 -a(S"'dec_IndAudSignal'/2" -p61623 -S"'dec_IndAudSignal'(${1:Bytes}, ${2:Param2}) $3" -p61624 -tp61625 -a(S"'dec_IndAudSignalsDescriptor'/2" -p61626 -S"'dec_IndAudSignalsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p61627 -tp61628 -a(S"'dec_IndAudStatisticsDescriptor'/2" -p61629 -S"'dec_IndAudStatisticsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p61630 -tp61631 -a(S"'dec_IndAudStreamDescriptor'/2" -p61632 -S"'dec_IndAudStreamDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p61633 -tp61634 -a(S"'dec_IndAudStreamParms'/2" -p61635 -S"'dec_IndAudStreamParms'(${1:Bytes}, ${2:Param2}) $3" -p61636 -tp61637 -a(S"'dec_IndAudTerminationStateDescriptor'/2" -p61638 -S"'dec_IndAudTerminationStateDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p61639 -tp61640 -a(S"'dec_IndAuditParameter'/2" -p61641 -S"'dec_IndAuditParameter'(${1:Bytes}, ${2:Param2}) $3" -p61642 -tp61643 -a(S"'dec_LocalControlDescriptor'/2" -p61644 -S"'dec_LocalControlDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p61645 -tp61646 -a(S"'dec_LocalRemoteDescriptor'/2" -p61647 -S"'dec_LocalRemoteDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p61648 -tp61649 -a(S"'dec_MId'/2" -p61650 -S"'dec_MId'(${1:Bytes}, ${2:Param2}) $3" -p61651 -tp61652 -a(S"'dec_MediaDescriptor'/2" -p61653 -S"'dec_MediaDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p61654 -tp61655 -a(S"'dec_MegacoMessage'/2" -p61656 -S"'dec_MegacoMessage'(${1:Bytes}, ${2:Param2}) $3" -p61657 -tp61658 -a(S"'dec_Message'/2" -p61659 -S"'dec_Message'(${1:Bytes}, ${2:Param2}) $3" -p61660 -tp61661 -a(S"'dec_ModemDescriptor'/2" -p61662 -S"'dec_ModemDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p61663 -tp61664 -a(S"'dec_ModemType'/2" -p61665 -S"'dec_ModemType'(${1:Bytes}, ${2:Param2}) $3" -p61666 -tp61667 -a(S"'dec_MuxDescriptor'/2" -p61668 -S"'dec_MuxDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p61669 -tp61670 -a(S"'dec_MuxType'/2" -p61671 -S"'dec_MuxType'(${1:Bytes}, ${2:Param2}) $3" -p61672 -tp61673 -a(S"'dec_Name'/2" -p61674 -S"'dec_Name'(${1:Bytes}, ${2:Param2}) $3" -p61675 -tp61676 -a(S"'dec_NonStandardData'/2" -p61677 -S"'dec_NonStandardData'(${1:Bytes}, ${2:Param2}) $3" -p61678 -tp61679 -a(S"'dec_NonStandardIdentifier'/2" -p61680 -S"'dec_NonStandardIdentifier'(${1:Bytes}, ${2:Param2}) $3" -p61681 -tp61682 -a(S"'dec_NotifyCompletion'/2" -p61683 -S"'dec_NotifyCompletion'(${1:Bytes}, ${2:Param2}) $3" -p61684 -tp61685 -a(S"'dec_NotifyReply'/2" -p61686 -S"'dec_NotifyReply'(${1:Bytes}, ${2:Param2}) $3" -p61687 -tp61688 -a(S"'dec_NotifyRequest'/2" -p61689 -S"'dec_NotifyRequest'(${1:Bytes}, ${2:Param2}) $3" -p61690 -tp61691 -a(S"'dec_ObservedEvent'/2" -p61692 -S"'dec_ObservedEvent'(${1:Bytes}, ${2:Param2}) $3" -p61693 -tp61694 -a(S"'dec_ObservedEventsDescriptor'/2" -p61695 -S"'dec_ObservedEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p61696 -tp61697 -a(S"'dec_PackagesDescriptor'/2" -p61698 -S"'dec_PackagesDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p61699 -tp61700 -a(S"'dec_PackagesItem'/2" -p61701 -S"'dec_PackagesItem'(${1:Bytes}, ${2:Param2}) $3" -p61702 -tp61703 -a(S"'dec_PathName'/2" -p61704 -S"'dec_PathName'(${1:Bytes}, ${2:Param2}) $3" -p61705 -tp61706 -a(S"'dec_PkgdName'/2" -p61707 -S"'dec_PkgdName'(${1:Bytes}, ${2:Param2}) $3" -p61708 -tp61709 -a(S"'dec_PropertyGroup'/2" -p61710 -S"'dec_PropertyGroup'(${1:Bytes}, ${2:Param2}) $3" -p61711 -tp61712 -a(S"'dec_PropertyParm'/2" -p61713 -S"'dec_PropertyParm'(${1:Bytes}, ${2:Param2}) $3" -p61714 -tp61715 -a(S"'dec_Relation'/2" -p61716 -S"'dec_Relation'(${1:Bytes}, ${2:Param2}) $3" -p61717 -tp61718 -a(S"'dec_RequestID'/2" -p61719 -S"'dec_RequestID'(${1:Bytes}, ${2:Param2}) $3" -p61720 -tp61721 -a(S"'dec_RequestedActions'/2" -p61722 -S"'dec_RequestedActions'(${1:Bytes}, ${2:Param2}) $3" -p61723 -tp61724 -a(S"'dec_RequestedEvent'/2" -p61725 -S"'dec_RequestedEvent'(${1:Bytes}, ${2:Param2}) $3" -p61726 -tp61727 -a(S"'dec_SecondEventsDescriptor'/2" -p61728 -S"'dec_SecondEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p61729 -tp61730 -a(S"'dec_SecondRequestedActions'/2" -p61731 -S"'dec_SecondRequestedActions'(${1:Bytes}, ${2:Param2}) $3" -p61732 -tp61733 -a(S"'dec_SecondRequestedEvent'/2" -p61734 -S"'dec_SecondRequestedEvent'(${1:Bytes}, ${2:Param2}) $3" -p61735 -tp61736 -a(S"'dec_SecurityParmIndex'/2" -p61737 -S"'dec_SecurityParmIndex'(${1:Bytes}, ${2:Param2}) $3" -p61738 -tp61739 -a(S"'dec_SegmentNumber'/2" -p61740 -S"'dec_SegmentNumber'(${1:Bytes}, ${2:Param2}) $3" -p61741 -tp61742 -a(S"'dec_SeqSigList'/2" -p61743 -S"'dec_SeqSigList'(${1:Bytes}, ${2:Param2}) $3" -p61744 -tp61745 -a(S"'dec_SequenceNum'/2" -p61746 -S"'dec_SequenceNum'(${1:Bytes}, ${2:Param2}) $3" -p61747 -tp61748 -a(S"'dec_ServiceChangeAddress'/2" -p61749 -S"'dec_ServiceChangeAddress'(${1:Bytes}, ${2:Param2}) $3" -p61750 -tp61751 -a(S"'dec_ServiceChangeMethod'/2" -p61752 -S"'dec_ServiceChangeMethod'(${1:Bytes}, ${2:Param2}) $3" -p61753 -tp61754 -a(S"'dec_ServiceChangeParm'/2" -p61755 -S"'dec_ServiceChangeParm'(${1:Bytes}, ${2:Param2}) $3" -p61756 -tp61757 -a(S"'dec_ServiceChangeProfile'/2" -p61758 -S"'dec_ServiceChangeProfile'(${1:Bytes}, ${2:Param2}) $3" -p61759 -tp61760 -a(S"'dec_ServiceChangeReply'/2" -p61761 -S"'dec_ServiceChangeReply'(${1:Bytes}, ${2:Param2}) $3" -p61762 -tp61763 -a(S"'dec_ServiceChangeRequest'/2" -p61764 -S"'dec_ServiceChangeRequest'(${1:Bytes}, ${2:Param2}) $3" -p61765 -tp61766 -a(S"'dec_ServiceChangeResParm'/2" -p61767 -S"'dec_ServiceChangeResParm'(${1:Bytes}, ${2:Param2}) $3" -p61768 -tp61769 -a(S"'dec_ServiceChangeResult'/2" -p61770 -S"'dec_ServiceChangeResult'(${1:Bytes}, ${2:Param2}) $3" -p61771 -tp61772 -a(S"'dec_ServiceState'/2" -p61773 -S"'dec_ServiceState'(${1:Bytes}, ${2:Param2}) $3" -p61774 -tp61775 -a(S"'dec_SigParameter'/2" -p61776 -S"'dec_SigParameter'(${1:Bytes}, ${2:Param2}) $3" -p61777 -tp61778 -a(S"'dec_Signal'/2" -p61779 -S"'dec_Signal'(${1:Bytes}, ${2:Param2}) $3" -p61780 -tp61781 -a(S"'dec_SignalDirection'/2" -p61782 -S"'dec_SignalDirection'(${1:Bytes}, ${2:Param2}) $3" -p61783 -tp61784 -a(S"'dec_SignalName'/2" -p61785 -S"'dec_SignalName'(${1:Bytes}, ${2:Param2}) $3" -p61786 -tp61787 -a(S"'dec_SignalRequest'/2" -p61788 -S"'dec_SignalRequest'(${1:Bytes}, ${2:Param2}) $3" -p61789 -tp61790 -a(S"'dec_SignalType'/2" -p61791 -S"'dec_SignalType'(${1:Bytes}, ${2:Param2}) $3" -p61792 -tp61793 -a(S"'dec_SignalsDescriptor'/2" -p61794 -S"'dec_SignalsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p61795 -tp61796 -a(S"'dec_StatisticsDescriptor'/2" -p61797 -S"'dec_StatisticsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p61798 -tp61799 -a(S"'dec_StatisticsParameter'/2" -p61800 -S"'dec_StatisticsParameter'(${1:Bytes}, ${2:Param2}) $3" -p61801 -tp61802 -a(S"'dec_StreamDescriptor'/2" -p61803 -S"'dec_StreamDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p61804 -tp61805 -a(S"'dec_StreamID'/2" -p61806 -S"'dec_StreamID'(${1:Bytes}, ${2:Param2}) $3" -p61807 -tp61808 -a(S"'dec_StreamMode'/2" -p61809 -S"'dec_StreamMode'(${1:Bytes}, ${2:Param2}) $3" -p61810 -tp61811 -a(S"'dec_StreamParms'/2" -p61812 -S"'dec_StreamParms'(${1:Bytes}, ${2:Param2}) $3" -p61813 -tp61814 -a(S"'dec_SubtractRequest'/2" -p61815 -S"'dec_SubtractRequest'(${1:Bytes}, ${2:Param2}) $3" -p61816 -tp61817 -a(S"'dec_TerminationAudit'/2" -p61818 -S"'dec_TerminationAudit'(${1:Bytes}, ${2:Param2}) $3" -p61819 -tp61820 -a(S"'dec_TerminationID'/2" -p61821 -S"'dec_TerminationID'(${1:Bytes}, ${2:Param2}) $3" -p61822 -tp61823 -a(S"'dec_TerminationIDList'/2" -p61824 -S"'dec_TerminationIDList'(${1:Bytes}, ${2:Param2}) $3" -p61825 -tp61826 -a(S"'dec_TerminationStateDescriptor'/2" -p61827 -S"'dec_TerminationStateDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p61828 -tp61829 -a(S"'dec_TimeNotation'/2" -p61830 -S"'dec_TimeNotation'(${1:Bytes}, ${2:Param2}) $3" -p61831 -tp61832 -a(S"'dec_TopologyRequest'/2" -p61833 -S"'dec_TopologyRequest'(${1:Bytes}, ${2:Param2}) $3" -p61834 -tp61835 -a(S"'dec_Transaction'/2" -p61836 -S"'dec_Transaction'(${1:Bytes}, ${2:Param2}) $3" -p61837 -tp61838 -a(S"'dec_TransactionAck'/2" -p61839 -S"'dec_TransactionAck'(${1:Bytes}, ${2:Param2}) $3" -p61840 -tp61841 -a(S"'dec_TransactionId'/2" -p61842 -S"'dec_TransactionId'(${1:Bytes}, ${2:Param2}) $3" -p61843 -tp61844 -a(S"'dec_TransactionPending'/2" -p61845 -S"'dec_TransactionPending'(${1:Bytes}, ${2:Param2}) $3" -p61846 -tp61847 -a(S"'dec_TransactionReply'/2" -p61848 -S"'dec_TransactionReply'(${1:Bytes}, ${2:Param2}) $3" -p61849 -tp61850 -a(S"'dec_TransactionRequest'/2" -p61851 -S"'dec_TransactionRequest'(${1:Bytes}, ${2:Param2}) $3" -p61852 -tp61853 -a(S"'dec_TransactionResponseAck'/2" -p61854 -S"'dec_TransactionResponseAck'(${1:Bytes}, ${2:Param2}) $3" -p61855 -tp61856 -a(S"'dec_Value'/2" -p61857 -S"'dec_Value'(${1:Bytes}, ${2:Param2}) $3" -p61858 -tp61859 -a(S"'dec_WildcardField'/2" -p61860 -S"'dec_WildcardField'(${1:Bytes}, ${2:Param2}) $3" -p61861 -tp61862 -a(S"'enc_ActionReply'/1" -p61863 -S"'enc_ActionReply'(${1:Val}) $2" -p61864 -tp61865 -a(S"'enc_ActionRequest'/1" -p61866 -S"'enc_ActionRequest'(${1:Val}) $2" -p61867 -tp61868 -a(S"'enc_AmmDescriptor'/1" -p61869 -S"'enc_AmmDescriptor'(${1:Val}) $2" -p61870 -tp61871 -a(S"'enc_AmmRequest'/1" -p61872 -S"'enc_AmmRequest'(${1:Val}) $2" -p61873 -tp61874 -a(S"'enc_AmmsReply'/1" -p61875 -S"'enc_AmmsReply'(${1:Val}) $2" -p61876 -tp61877 -a(S"'enc_AuditDescriptor'/1" -p61878 -S"'enc_AuditDescriptor'(${1:Val}) $2" -p61879 -tp61880 -a(S"'enc_AuditReply'/1" -p61881 -S"'enc_AuditReply'(${1:Val}) $2" -p61882 -tp61883 -a(S"'enc_AuditRequest'/1" -p61884 -S"'enc_AuditRequest'(${1:Val}) $2" -p61885 -tp61886 -a(S"'enc_AuditResult'/1" -p61887 -S"'enc_AuditResult'(${1:Val}) $2" -p61888 -tp61889 -a(S"'enc_AuditReturnParameter'/1" -p61890 -S"'enc_AuditReturnParameter'(${1:Val}) $2" -p61891 -tp61892 -a(S"'enc_AuthData'/1" -p61893 -S"'enc_AuthData'(${1:Val}) $2" -p61894 -tp61895 -a(S"'enc_AuthenticationHeader'/1" -p61896 -S"'enc_AuthenticationHeader'(${1:Val}) $2" -p61897 -tp61898 -a(S"'enc_Command'/1" -p61899 -S"'enc_Command'(${1:Val}) $2" -p61900 -tp61901 -a(S"'enc_CommandReply'/1" -p61902 -S"'enc_CommandReply'(${1:Val}) $2" -p61903 -tp61904 -a(S"'enc_CommandRequest'/1" -p61905 -S"'enc_CommandRequest'(${1:Val}) $2" -p61906 -tp61907 -a(S"'enc_ContextAttrAuditRequest'/1" -p61908 -S"'enc_ContextAttrAuditRequest'(${1:Val}) $2" -p61909 -tp61910 -a(S"'enc_ContextID'/1" -p61911 -S"'enc_ContextID'(${1:Val}) $2" -p61912 -tp61913 -a(S"'enc_ContextRequest'/1" -p61914 -S"'enc_ContextRequest'(${1:Val}) $2" -p61915 -tp61916 -a(S"'enc_DigitMapDescriptor'/1" -p61917 -S"'enc_DigitMapDescriptor'(${1:Val}) $2" -p61918 -tp61919 -a(S"'enc_DigitMapName'/1" -p61920 -S"'enc_DigitMapName'(${1:Val}) $2" -p61921 -tp61922 -a(S"'enc_DigitMapValue'/1" -p61923 -S"'enc_DigitMapValue'(${1:Val}) $2" -p61924 -tp61925 -a(S"'enc_DomainName'/1" -p61926 -S"'enc_DomainName'(${1:Val}) $2" -p61927 -tp61928 -a(S"'enc_ErrorCode'/1" -p61929 -S"'enc_ErrorCode'(${1:Val}) $2" -p61930 -tp61931 -a(S"'enc_ErrorDescriptor'/1" -p61932 -S"'enc_ErrorDescriptor'(${1:Val}) $2" -p61933 -tp61934 -a(S"'enc_ErrorText'/1" -p61935 -S"'enc_ErrorText'(${1:Val}) $2" -p61936 -tp61937 -a(S"'enc_EventBufferControl'/1" -p61938 -S"'enc_EventBufferControl'(${1:Val}) $2" -p61939 -tp61940 -a(S"'enc_EventBufferDescriptor'/1" -p61941 -S"'enc_EventBufferDescriptor'(${1:Val}) $2" -p61942 -tp61943 -a(S"'enc_EventDM'/1" -p61944 -S"'enc_EventDM'(${1:Val}) $2" -p61945 -tp61946 -a(S"'enc_EventName'/1" -p61947 -S"'enc_EventName'(${1:Val}) $2" -p61948 -tp61949 -a(S"'enc_EventParameter'/1" -p61950 -S"'enc_EventParameter'(${1:Val}) $2" -p61951 -tp61952 -a(S"'enc_EventSpec'/1" -p61953 -S"'enc_EventSpec'(${1:Val}) $2" -p61954 -tp61955 -a(S"'enc_EventsDescriptor'/1" -p61956 -S"'enc_EventsDescriptor'(${1:Val}) $2" -p61957 -tp61958 -a(S"'enc_H221NonStandard'/1" -p61959 -S"'enc_H221NonStandard'(${1:Val}) $2" -p61960 -tp61961 -a(S"'enc_IP4Address'/1" -p61962 -S"'enc_IP4Address'(${1:Val}) $2" -p61963 -tp61964 -a(S"'enc_IP6Address'/1" -p61965 -S"'enc_IP6Address'(${1:Val}) $2" -p61966 -tp61967 -a(S"'enc_IndAudDigitMapDescriptor'/1" -p61968 -S"'enc_IndAudDigitMapDescriptor'(${1:Val}) $2" -p61969 -tp61970 -a(S"'enc_IndAudEventBufferDescriptor'/1" -p61971 -S"'enc_IndAudEventBufferDescriptor'(${1:Val}) $2" -p61972 -tp61973 -a(S"'enc_IndAudEventsDescriptor'/1" -p61974 -S"'enc_IndAudEventsDescriptor'(${1:Val}) $2" -p61975 -tp61976 -a(S"'enc_IndAudLocalControlDescriptor'/1" -p61977 -S"'enc_IndAudLocalControlDescriptor'(${1:Val}) $2" -p61978 -tp61979 -a(S"'enc_IndAudLocalRemoteDescriptor'/1" -p61980 -S"'enc_IndAudLocalRemoteDescriptor'(${1:Val}) $2" -p61981 -tp61982 -a(S"'enc_IndAudMediaDescriptor'/1" -p61983 -S"'enc_IndAudMediaDescriptor'(${1:Val}) $2" -p61984 -tp61985 -a(S"'enc_IndAudPackagesDescriptor'/1" -p61986 -S"'enc_IndAudPackagesDescriptor'(${1:Val}) $2" -p61987 -tp61988 -a(S"'enc_IndAudPropertyGroup'/1" -p61989 -S"'enc_IndAudPropertyGroup'(${1:Val}) $2" -p61990 -tp61991 -a(S"'enc_IndAudPropertyParm'/1" -p61992 -S"'enc_IndAudPropertyParm'(${1:Val}) $2" -p61993 -tp61994 -a(S"'enc_IndAudSeqSigList'/1" -p61995 -S"'enc_IndAudSeqSigList'(${1:Val}) $2" -p61996 -tp61997 -a(S"'enc_IndAudSignal'/1" -p61998 -S"'enc_IndAudSignal'(${1:Val}) $2" -p61999 -tp62000 -a(S"'enc_IndAudSignalsDescriptor'/1" -p62001 -S"'enc_IndAudSignalsDescriptor'(${1:Val}) $2" -p62002 -tp62003 -a(S"'enc_IndAudStatisticsDescriptor'/1" -p62004 -S"'enc_IndAudStatisticsDescriptor'(${1:Val}) $2" -p62005 -tp62006 -a(S"'enc_IndAudStreamDescriptor'/1" -p62007 -S"'enc_IndAudStreamDescriptor'(${1:Val}) $2" -p62008 -tp62009 -a(S"'enc_IndAudStreamParms'/1" -p62010 -S"'enc_IndAudStreamParms'(${1:Val}) $2" -p62011 -tp62012 -a(S"'enc_IndAudTerminationStateDescriptor'/1" -p62013 -S"'enc_IndAudTerminationStateDescriptor'(${1:Val}) $2" -p62014 -tp62015 -a(S"'enc_IndAuditParameter'/1" -p62016 -S"'enc_IndAuditParameter'(${1:Val}) $2" -p62017 -tp62018 -a(S"'enc_LocalControlDescriptor'/1" -p62019 -S"'enc_LocalControlDescriptor'(${1:Val}) $2" -p62020 -tp62021 -a(S"'enc_LocalRemoteDescriptor'/1" -p62022 -S"'enc_LocalRemoteDescriptor'(${1:Val}) $2" -p62023 -tp62024 -a(S"'enc_MId'/1" -p62025 -S"'enc_MId'(${1:Val}) $2" -p62026 -tp62027 -a(S"'enc_MediaDescriptor'/1" -p62028 -S"'enc_MediaDescriptor'(${1:Val}) $2" -p62029 -tp62030 -a(S"'enc_MegacoMessage'/1" -p62031 -S"'enc_MegacoMessage'(${1:Val}) $2" -p62032 -tp62033 -a(S"'enc_Message'/1" -p62034 -S"'enc_Message'(${1:Val}) $2" -p62035 -tp62036 -a(S"'enc_ModemDescriptor'/1" -p62037 -S"'enc_ModemDescriptor'(${1:Val}) $2" -p62038 -tp62039 -a(S"'enc_ModemType'/1" -p62040 -S"'enc_ModemType'(${1:Val}) $2" -p62041 -tp62042 -a(S"'enc_MuxDescriptor'/1" -p62043 -S"'enc_MuxDescriptor'(${1:Val}) $2" -p62044 -tp62045 -a(S"'enc_MuxType'/1" -p62046 -S"'enc_MuxType'(${1:Val}) $2" -p62047 -tp62048 -a(S"'enc_Name'/1" -p62049 -S"'enc_Name'(${1:Val}) $2" -p62050 -tp62051 -a(S"'enc_NonStandardData'/1" -p62052 -S"'enc_NonStandardData'(${1:Val}) $2" -p62053 -tp62054 -a(S"'enc_NonStandardIdentifier'/1" -p62055 -S"'enc_NonStandardIdentifier'(${1:Val}) $2" -p62056 -tp62057 -a(S"'enc_NotifyCompletion'/1" -p62058 -S"'enc_NotifyCompletion'(${1:Val}) $2" -p62059 -tp62060 -a(S"'enc_NotifyReply'/1" -p62061 -S"'enc_NotifyReply'(${1:Val}) $2" -p62062 -tp62063 -a(S"'enc_NotifyRequest'/1" -p62064 -S"'enc_NotifyRequest'(${1:Val}) $2" -p62065 -tp62066 -a(S"'enc_ObservedEvent'/1" -p62067 -S"'enc_ObservedEvent'(${1:Val}) $2" -p62068 -tp62069 -a(S"'enc_ObservedEventsDescriptor'/1" -p62070 -S"'enc_ObservedEventsDescriptor'(${1:Val}) $2" -p62071 -tp62072 -a(S"'enc_PackagesDescriptor'/1" -p62073 -S"'enc_PackagesDescriptor'(${1:Val}) $2" -p62074 -tp62075 -a(S"'enc_PackagesItem'/1" -p62076 -S"'enc_PackagesItem'(${1:Val}) $2" -p62077 -tp62078 -a(S"'enc_PathName'/1" -p62079 -S"'enc_PathName'(${1:Val}) $2" -p62080 -tp62081 -a(S"'enc_PkgdName'/1" -p62082 -S"'enc_PkgdName'(${1:Val}) $2" -p62083 -tp62084 -a(S"'enc_PropertyGroup'/1" -p62085 -S"'enc_PropertyGroup'(${1:Val}) $2" -p62086 -tp62087 -a(S"'enc_PropertyParm'/1" -p62088 -S"'enc_PropertyParm'(${1:Val}) $2" -p62089 -tp62090 -a(S"'enc_Relation'/1" -p62091 -S"'enc_Relation'(${1:Val}) $2" -p62092 -tp62093 -a(S"'enc_RequestID'/1" -p62094 -S"'enc_RequestID'(${1:Val}) $2" -p62095 -tp62096 -a(S"'enc_RequestedActions'/1" -p62097 -S"'enc_RequestedActions'(${1:Val}) $2" -p62098 -tp62099 -a(S"'enc_RequestedEvent'/1" -p62100 -S"'enc_RequestedEvent'(${1:Val}) $2" -p62101 -tp62102 -a(S"'enc_SecondEventsDescriptor'/1" -p62103 -S"'enc_SecondEventsDescriptor'(${1:Val}) $2" -p62104 -tp62105 -a(S"'enc_SecondRequestedActions'/1" -p62106 -S"'enc_SecondRequestedActions'(${1:Val}) $2" -p62107 -tp62108 -a(S"'enc_SecondRequestedEvent'/1" -p62109 -S"'enc_SecondRequestedEvent'(${1:Val}) $2" -p62110 -tp62111 -a(S"'enc_SecurityParmIndex'/1" -p62112 -S"'enc_SecurityParmIndex'(${1:Val}) $2" -p62113 -tp62114 -a(S"'enc_SegmentNumber'/1" -p62115 -S"'enc_SegmentNumber'(${1:Val}) $2" -p62116 -tp62117 -a(S"'enc_SeqSigList'/1" -p62118 -S"'enc_SeqSigList'(${1:Val}) $2" -p62119 -tp62120 -a(S"'enc_SequenceNum'/1" -p62121 -S"'enc_SequenceNum'(${1:Val}) $2" -p62122 -tp62123 -a(S"'enc_ServiceChangeAddress'/1" -p62124 -S"'enc_ServiceChangeAddress'(${1:Val}) $2" -p62125 -tp62126 -a(S"'enc_ServiceChangeMethod'/1" -p62127 -S"'enc_ServiceChangeMethod'(${1:Val}) $2" -p62128 -tp62129 -a(S"'enc_ServiceChangeParm'/1" -p62130 -S"'enc_ServiceChangeParm'(${1:Val}) $2" -p62131 -tp62132 -a(S"'enc_ServiceChangeProfile'/1" -p62133 -S"'enc_ServiceChangeProfile'(${1:Val}) $2" -p62134 -tp62135 -a(S"'enc_ServiceChangeReply'/1" -p62136 -S"'enc_ServiceChangeReply'(${1:Val}) $2" -p62137 -tp62138 -a(S"'enc_ServiceChangeRequest'/1" -p62139 -S"'enc_ServiceChangeRequest'(${1:Val}) $2" -p62140 -tp62141 -a(S"'enc_ServiceChangeResParm'/1" -p62142 -S"'enc_ServiceChangeResParm'(${1:Val}) $2" -p62143 -tp62144 -a(S"'enc_ServiceChangeResult'/1" -p62145 -S"'enc_ServiceChangeResult'(${1:Val}) $2" -p62146 -tp62147 -a(S"'enc_ServiceState'/1" -p62148 -S"'enc_ServiceState'(${1:Val}) $2" -p62149 -tp62150 -a(S"'enc_SigParameter'/1" -p62151 -S"'enc_SigParameter'(${1:Val}) $2" -p62152 -tp62153 -a(S"'enc_Signal'/1" -p62154 -S"'enc_Signal'(${1:Val}) $2" -p62155 -tp62156 -a(S"'enc_SignalDirection'/1" -p62157 -S"'enc_SignalDirection'(${1:Val}) $2" -p62158 -tp62159 -a(S"'enc_SignalName'/1" -p62160 -S"'enc_SignalName'(${1:Val}) $2" -p62161 -tp62162 -a(S"'enc_SignalRequest'/1" -p62163 -S"'enc_SignalRequest'(${1:Val}) $2" -p62164 -tp62165 -a(S"'enc_SignalType'/1" -p62166 -S"'enc_SignalType'(${1:Val}) $2" -p62167 -tp62168 -a(S"'enc_SignalsDescriptor'/1" -p62169 -S"'enc_SignalsDescriptor'(${1:Val}) $2" -p62170 -tp62171 -a(S"'enc_StatisticsDescriptor'/1" -p62172 -S"'enc_StatisticsDescriptor'(${1:Val}) $2" -p62173 -tp62174 -a(S"'enc_StatisticsParameter'/1" -p62175 -S"'enc_StatisticsParameter'(${1:Val}) $2" -p62176 -tp62177 -a(S"'enc_StreamDescriptor'/1" -p62178 -S"'enc_StreamDescriptor'(${1:Val}) $2" -p62179 -tp62180 -a(S"'enc_StreamID'/1" -p62181 -S"'enc_StreamID'(${1:Val}) $2" -p62182 -tp62183 -a(S"'enc_StreamMode'/1" -p62184 -S"'enc_StreamMode'(${1:Val}) $2" -p62185 -tp62186 -a(S"'enc_StreamParms'/1" -p62187 -S"'enc_StreamParms'(${1:Val}) $2" -p62188 -tp62189 -a(S"'enc_SubtractRequest'/1" -p62190 -S"'enc_SubtractRequest'(${1:Val}) $2" -p62191 -tp62192 -a(S"'enc_TerminationAudit'/1" -p62193 -S"'enc_TerminationAudit'(${1:Val}) $2" -p62194 -tp62195 -a(S"'enc_TerminationID'/1" -p62196 -S"'enc_TerminationID'(${1:Val}) $2" -p62197 -tp62198 -a(S"'enc_TerminationIDList'/1" -p62199 -S"'enc_TerminationIDList'(${1:Val}) $2" -p62200 -tp62201 -a(S"'enc_TerminationStateDescriptor'/1" -p62202 -S"'enc_TerminationStateDescriptor'(${1:Val}) $2" -p62203 -tp62204 -a(S"'enc_TimeNotation'/1" -p62205 -S"'enc_TimeNotation'(${1:Val}) $2" -p62206 -tp62207 -a(S"'enc_TopologyRequest'/1" -p62208 -S"'enc_TopologyRequest'(${1:Val}) $2" -p62209 -tp62210 -a(S"'enc_Transaction'/1" -p62211 -S"'enc_Transaction'(${1:Val}) $2" -p62212 -tp62213 -a(S"'enc_TransactionAck'/1" -p62214 -S"'enc_TransactionAck'(${1:Val}) $2" -p62215 -tp62216 -a(S"'enc_TransactionId'/1" -p62217 -S"'enc_TransactionId'(${1:Val}) $2" -p62218 -tp62219 -a(S"'enc_TransactionPending'/1" -p62220 -S"'enc_TransactionPending'(${1:Val}) $2" -p62221 -tp62222 -a(S"'enc_TransactionReply'/1" -p62223 -S"'enc_TransactionReply'(${1:Val}) $2" -p62224 -tp62225 -a(S"'enc_TransactionRequest'/1" -p62226 -S"'enc_TransactionRequest'(${1:Val}) $2" -p62227 -tp62228 -a(S"'enc_TransactionResponseAck'/1" -p62229 -S"'enc_TransactionResponseAck'(${1:Val}) $2" -p62230 -tp62231 -a(S"'enc_Value'/1" -p62232 -S"'enc_Value'(${1:Val}) $2" -p62233 -tp62234 -a(S"'enc_WildcardField'/1" -p62235 -S"'enc_WildcardField'(${1:Val}) $2" -p62236 -tp62237 -a(S'decode/2' -p62238 -S'decode(${1:Type}, ${2:Data}) $3' -p62239 -tp62240 -a(S'decode_disp/2' -p62241 -S'decode_disp(${1:Type}, ${2:Data}) $3' -p62242 -tp62243 -a(S'encode/2' -p62244 -S'encode(${1:Type}, ${2:Data}) $3' -p62245 -tp62246 -a(S'encode_disp/2' -p62247 -S'encode_disp(${1:Type}, ${2:Data}) $3' -p62248 -tp62249 -a(S'encoding_rule/0' -p62250 -S'encoding_rule() $1' -p62251 -tp62252 -a(S'info/0' -p62253 -S'info() $1' -p62254 -tp62255 -asS'megaco_per_bin_drv_media_gateway_control_prev3a' -p62256 -(lp62257 -(S"'dec_ActionReply'/2" -p62258 -S"'dec_ActionReply'(${1:Bytes}, ${2:Param2}) $3" -p62259 -tp62260 -a(S"'dec_ActionRequest'/2" -p62261 -S"'dec_ActionRequest'(${1:Bytes}, ${2:Param2}) $3" -p62262 -tp62263 -a(S"'dec_AmmDescriptor'/2" -p62264 -S"'dec_AmmDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p62265 -tp62266 -a(S"'dec_AmmRequest'/2" -p62267 -S"'dec_AmmRequest'(${1:Bytes}, ${2:Param2}) $3" -p62268 -tp62269 -a(S"'dec_AmmsReply'/2" -p62270 -S"'dec_AmmsReply'(${1:Bytes}, ${2:Param2}) $3" -p62271 -tp62272 -a(S"'dec_AuditDescriptor'/2" -p62273 -S"'dec_AuditDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p62274 -tp62275 -a(S"'dec_AuditReply'/2" -p62276 -S"'dec_AuditReply'(${1:Bytes}, ${2:Param2}) $3" -p62277 -tp62278 -a(S"'dec_AuditRequest'/2" -p62279 -S"'dec_AuditRequest'(${1:Bytes}, ${2:Param2}) $3" -p62280 -tp62281 -a(S"'dec_AuditResult'/2" -p62282 -S"'dec_AuditResult'(${1:Bytes}, ${2:Param2}) $3" -p62283 -tp62284 -a(S"'dec_AuditReturnParameter'/2" -p62285 -S"'dec_AuditReturnParameter'(${1:Bytes}, ${2:Param2}) $3" -p62286 -tp62287 -a(S"'dec_AuthData'/2" -p62288 -S"'dec_AuthData'(${1:Bytes}, ${2:Param2}) $3" -p62289 -tp62290 -a(S"'dec_AuthenticationHeader'/2" -p62291 -S"'dec_AuthenticationHeader'(${1:Bytes}, ${2:Param2}) $3" -p62292 -tp62293 -a(S"'dec_Command'/2" -p62294 -S"'dec_Command'(${1:Bytes}, ${2:Param2}) $3" -p62295 -tp62296 -a(S"'dec_CommandReply'/2" -p62297 -S"'dec_CommandReply'(${1:Bytes}, ${2:Param2}) $3" -p62298 -tp62299 -a(S"'dec_CommandRequest'/2" -p62300 -S"'dec_CommandRequest'(${1:Bytes}, ${2:Param2}) $3" -p62301 -tp62302 -a(S"'dec_ContextAttrAuditRequest'/2" -p62303 -S"'dec_ContextAttrAuditRequest'(${1:Bytes}, ${2:Param2}) $3" -p62304 -tp62305 -a(S"'dec_ContextID'/2" -p62306 -S"'dec_ContextID'(${1:Bytes}, ${2:Param2}) $3" -p62307 -tp62308 -a(S"'dec_ContextRequest'/2" -p62309 -S"'dec_ContextRequest'(${1:Bytes}, ${2:Param2}) $3" -p62310 -tp62311 -a(S"'dec_DigitMapDescriptor'/2" -p62312 -S"'dec_DigitMapDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p62313 -tp62314 -a(S"'dec_DigitMapName'/2" -p62315 -S"'dec_DigitMapName'(${1:Bytes}, ${2:Param2}) $3" -p62316 -tp62317 -a(S"'dec_DigitMapValue'/2" -p62318 -S"'dec_DigitMapValue'(${1:Bytes}, ${2:Param2}) $3" -p62319 -tp62320 -a(S"'dec_DomainName'/2" -p62321 -S"'dec_DomainName'(${1:Bytes}, ${2:Param2}) $3" -p62322 -tp62323 -a(S"'dec_ErrorCode'/2" -p62324 -S"'dec_ErrorCode'(${1:Bytes}, ${2:Param2}) $3" -p62325 -tp62326 -a(S"'dec_ErrorDescriptor'/2" -p62327 -S"'dec_ErrorDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p62328 -tp62329 -a(S"'dec_ErrorText'/2" -p62330 -S"'dec_ErrorText'(${1:Bytes}, ${2:Param2}) $3" -p62331 -tp62332 -a(S"'dec_EventBufferControl'/2" -p62333 -S"'dec_EventBufferControl'(${1:Bytes}, ${2:Param2}) $3" -p62334 -tp62335 -a(S"'dec_EventBufferDescriptor'/2" -p62336 -S"'dec_EventBufferDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p62337 -tp62338 -a(S"'dec_EventDM'/2" -p62339 -S"'dec_EventDM'(${1:Bytes}, ${2:Param2}) $3" -p62340 -tp62341 -a(S"'dec_EventName'/2" -p62342 -S"'dec_EventName'(${1:Bytes}, ${2:Param2}) $3" -p62343 -tp62344 -a(S"'dec_EventParameter'/2" -p62345 -S"'dec_EventParameter'(${1:Bytes}, ${2:Param2}) $3" -p62346 -tp62347 -a(S"'dec_EventSpec'/2" -p62348 -S"'dec_EventSpec'(${1:Bytes}, ${2:Param2}) $3" -p62349 -tp62350 -a(S"'dec_EventsDescriptor'/2" -p62351 -S"'dec_EventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p62352 -tp62353 -a(S"'dec_H221NonStandard'/2" -p62354 -S"'dec_H221NonStandard'(${1:Bytes}, ${2:Param2}) $3" -p62355 -tp62356 -a(S"'dec_IP4Address'/2" -p62357 -S"'dec_IP4Address'(${1:Bytes}, ${2:Param2}) $3" -p62358 -tp62359 -a(S"'dec_IP6Address'/2" -p62360 -S"'dec_IP6Address'(${1:Bytes}, ${2:Param2}) $3" -p62361 -tp62362 -a(S"'dec_IndAudDigitMapDescriptor'/2" -p62363 -S"'dec_IndAudDigitMapDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p62364 -tp62365 -a(S"'dec_IndAudEventBufferDescriptor'/2" -p62366 -S"'dec_IndAudEventBufferDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p62367 -tp62368 -a(S"'dec_IndAudEventsDescriptor'/2" -p62369 -S"'dec_IndAudEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p62370 -tp62371 -a(S"'dec_IndAudLocalControlDescriptor'/2" -p62372 -S"'dec_IndAudLocalControlDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p62373 -tp62374 -a(S"'dec_IndAudLocalRemoteDescriptor'/2" -p62375 -S"'dec_IndAudLocalRemoteDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p62376 -tp62377 -a(S"'dec_IndAudMediaDescriptor'/2" -p62378 -S"'dec_IndAudMediaDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p62379 -tp62380 -a(S"'dec_IndAudPackagesDescriptor'/2" -p62381 -S"'dec_IndAudPackagesDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p62382 -tp62383 -a(S"'dec_IndAudPropertyGroup'/2" -p62384 -S"'dec_IndAudPropertyGroup'(${1:Bytes}, ${2:Param2}) $3" -p62385 -tp62386 -a(S"'dec_IndAudPropertyParm'/2" -p62387 -S"'dec_IndAudPropertyParm'(${1:Bytes}, ${2:Param2}) $3" -p62388 -tp62389 -a(S"'dec_IndAudSeqSigList'/2" -p62390 -S"'dec_IndAudSeqSigList'(${1:Bytes}, ${2:Param2}) $3" -p62391 -tp62392 -a(S"'dec_IndAudSignal'/2" -p62393 -S"'dec_IndAudSignal'(${1:Bytes}, ${2:Param2}) $3" -p62394 -tp62395 -a(S"'dec_IndAudSignalsDescriptor'/2" -p62396 -S"'dec_IndAudSignalsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p62397 -tp62398 -a(S"'dec_IndAudStatisticsDescriptor'/2" -p62399 -S"'dec_IndAudStatisticsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p62400 -tp62401 -a(S"'dec_IndAudStreamDescriptor'/2" -p62402 -S"'dec_IndAudStreamDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p62403 -tp62404 -a(S"'dec_IndAudStreamParms'/2" -p62405 -S"'dec_IndAudStreamParms'(${1:Bytes}, ${2:Param2}) $3" -p62406 -tp62407 -a(S"'dec_IndAudTerminationStateDescriptor'/2" -p62408 -S"'dec_IndAudTerminationStateDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p62409 -tp62410 -a(S"'dec_IndAuditParameter'/2" -p62411 -S"'dec_IndAuditParameter'(${1:Bytes}, ${2:Param2}) $3" -p62412 -tp62413 -a(S"'dec_LocalControlDescriptor'/2" -p62414 -S"'dec_LocalControlDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p62415 -tp62416 -a(S"'dec_LocalRemoteDescriptor'/2" -p62417 -S"'dec_LocalRemoteDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p62418 -tp62419 -a(S"'dec_MId'/2" -p62420 -S"'dec_MId'(${1:Bytes}, ${2:Param2}) $3" -p62421 -tp62422 -a(S"'dec_MediaDescriptor'/2" -p62423 -S"'dec_MediaDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p62424 -tp62425 -a(S"'dec_MegacoMessage'/2" -p62426 -S"'dec_MegacoMessage'(${1:Bytes}, ${2:Param2}) $3" -p62427 -tp62428 -a(S"'dec_Message'/2" -p62429 -S"'dec_Message'(${1:Bytes}, ${2:Param2}) $3" -p62430 -tp62431 -a(S"'dec_ModemDescriptor'/2" -p62432 -S"'dec_ModemDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p62433 -tp62434 -a(S"'dec_ModemType'/2" -p62435 -S"'dec_ModemType'(${1:Bytes}, ${2:Param2}) $3" -p62436 -tp62437 -a(S"'dec_MuxDescriptor'/2" -p62438 -S"'dec_MuxDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p62439 -tp62440 -a(S"'dec_MuxType'/2" -p62441 -S"'dec_MuxType'(${1:Bytes}, ${2:Param2}) $3" -p62442 -tp62443 -a(S"'dec_Name'/2" -p62444 -S"'dec_Name'(${1:Bytes}, ${2:Param2}) $3" -p62445 -tp62446 -a(S"'dec_NonStandardData'/2" -p62447 -S"'dec_NonStandardData'(${1:Bytes}, ${2:Param2}) $3" -p62448 -tp62449 -a(S"'dec_NonStandardIdentifier'/2" -p62450 -S"'dec_NonStandardIdentifier'(${1:Bytes}, ${2:Param2}) $3" -p62451 -tp62452 -a(S"'dec_NotifyCompletion'/2" -p62453 -S"'dec_NotifyCompletion'(${1:Bytes}, ${2:Param2}) $3" -p62454 -tp62455 -a(S"'dec_NotifyReply'/2" -p62456 -S"'dec_NotifyReply'(${1:Bytes}, ${2:Param2}) $3" -p62457 -tp62458 -a(S"'dec_NotifyRequest'/2" -p62459 -S"'dec_NotifyRequest'(${1:Bytes}, ${2:Param2}) $3" -p62460 -tp62461 -a(S"'dec_ObservedEvent'/2" -p62462 -S"'dec_ObservedEvent'(${1:Bytes}, ${2:Param2}) $3" -p62463 -tp62464 -a(S"'dec_ObservedEventsDescriptor'/2" -p62465 -S"'dec_ObservedEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p62466 -tp62467 -a(S"'dec_PackagesDescriptor'/2" -p62468 -S"'dec_PackagesDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p62469 -tp62470 -a(S"'dec_PackagesItem'/2" -p62471 -S"'dec_PackagesItem'(${1:Bytes}, ${2:Param2}) $3" -p62472 -tp62473 -a(S"'dec_PathName'/2" -p62474 -S"'dec_PathName'(${1:Bytes}, ${2:Param2}) $3" -p62475 -tp62476 -a(S"'dec_PkgdName'/2" -p62477 -S"'dec_PkgdName'(${1:Bytes}, ${2:Param2}) $3" -p62478 -tp62479 -a(S"'dec_PropertyGroup'/2" -p62480 -S"'dec_PropertyGroup'(${1:Bytes}, ${2:Param2}) $3" -p62481 -tp62482 -a(S"'dec_PropertyParm'/2" -p62483 -S"'dec_PropertyParm'(${1:Bytes}, ${2:Param2}) $3" -p62484 -tp62485 -a(S"'dec_Relation'/2" -p62486 -S"'dec_Relation'(${1:Bytes}, ${2:Param2}) $3" -p62487 -tp62488 -a(S"'dec_RequestID'/2" -p62489 -S"'dec_RequestID'(${1:Bytes}, ${2:Param2}) $3" -p62490 -tp62491 -a(S"'dec_RequestedActions'/2" -p62492 -S"'dec_RequestedActions'(${1:Bytes}, ${2:Param2}) $3" -p62493 -tp62494 -a(S"'dec_RequestedEvent'/2" -p62495 -S"'dec_RequestedEvent'(${1:Bytes}, ${2:Param2}) $3" -p62496 -tp62497 -a(S"'dec_SecondEventsDescriptor'/2" -p62498 -S"'dec_SecondEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p62499 -tp62500 -a(S"'dec_SecondRequestedActions'/2" -p62501 -S"'dec_SecondRequestedActions'(${1:Bytes}, ${2:Param2}) $3" -p62502 -tp62503 -a(S"'dec_SecondRequestedEvent'/2" -p62504 -S"'dec_SecondRequestedEvent'(${1:Bytes}, ${2:Param2}) $3" -p62505 -tp62506 -a(S"'dec_SecurityParmIndex'/2" -p62507 -S"'dec_SecurityParmIndex'(${1:Bytes}, ${2:Param2}) $3" -p62508 -tp62509 -a(S"'dec_SegmentNumber'/2" -p62510 -S"'dec_SegmentNumber'(${1:Bytes}, ${2:Param2}) $3" -p62511 -tp62512 -a(S"'dec_SeqSigList'/2" -p62513 -S"'dec_SeqSigList'(${1:Bytes}, ${2:Param2}) $3" -p62514 -tp62515 -a(S"'dec_SequenceNum'/2" -p62516 -S"'dec_SequenceNum'(${1:Bytes}, ${2:Param2}) $3" -p62517 -tp62518 -a(S"'dec_ServiceChangeAddress'/2" -p62519 -S"'dec_ServiceChangeAddress'(${1:Bytes}, ${2:Param2}) $3" -p62520 -tp62521 -a(S"'dec_ServiceChangeMethod'/2" -p62522 -S"'dec_ServiceChangeMethod'(${1:Bytes}, ${2:Param2}) $3" -p62523 -tp62524 -a(S"'dec_ServiceChangeParm'/2" -p62525 -S"'dec_ServiceChangeParm'(${1:Bytes}, ${2:Param2}) $3" -p62526 -tp62527 -a(S"'dec_ServiceChangeProfile'/2" -p62528 -S"'dec_ServiceChangeProfile'(${1:Bytes}, ${2:Param2}) $3" -p62529 -tp62530 -a(S"'dec_ServiceChangeReply'/2" -p62531 -S"'dec_ServiceChangeReply'(${1:Bytes}, ${2:Param2}) $3" -p62532 -tp62533 -a(S"'dec_ServiceChangeRequest'/2" -p62534 -S"'dec_ServiceChangeRequest'(${1:Bytes}, ${2:Param2}) $3" -p62535 -tp62536 -a(S"'dec_ServiceChangeResParm'/2" -p62537 -S"'dec_ServiceChangeResParm'(${1:Bytes}, ${2:Param2}) $3" -p62538 -tp62539 -a(S"'dec_ServiceChangeResult'/2" -p62540 -S"'dec_ServiceChangeResult'(${1:Bytes}, ${2:Param2}) $3" -p62541 -tp62542 -a(S"'dec_ServiceState'/2" -p62543 -S"'dec_ServiceState'(${1:Bytes}, ${2:Param2}) $3" -p62544 -tp62545 -a(S"'dec_SigParameter'/2" -p62546 -S"'dec_SigParameter'(${1:Bytes}, ${2:Param2}) $3" -p62547 -tp62548 -a(S"'dec_Signal'/2" -p62549 -S"'dec_Signal'(${1:Bytes}, ${2:Param2}) $3" -p62550 -tp62551 -a(S"'dec_SignalDirection'/2" -p62552 -S"'dec_SignalDirection'(${1:Bytes}, ${2:Param2}) $3" -p62553 -tp62554 -a(S"'dec_SignalName'/2" -p62555 -S"'dec_SignalName'(${1:Bytes}, ${2:Param2}) $3" -p62556 -tp62557 -a(S"'dec_SignalRequest'/2" -p62558 -S"'dec_SignalRequest'(${1:Bytes}, ${2:Param2}) $3" -p62559 -tp62560 -a(S"'dec_SignalType'/2" -p62561 -S"'dec_SignalType'(${1:Bytes}, ${2:Param2}) $3" -p62562 -tp62563 -a(S"'dec_SignalsDescriptor'/2" -p62564 -S"'dec_SignalsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p62565 -tp62566 -a(S"'dec_StatisticsDescriptor'/2" -p62567 -S"'dec_StatisticsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p62568 -tp62569 -a(S"'dec_StatisticsParameter'/2" -p62570 -S"'dec_StatisticsParameter'(${1:Bytes}, ${2:Param2}) $3" -p62571 -tp62572 -a(S"'dec_StreamDescriptor'/2" -p62573 -S"'dec_StreamDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p62574 -tp62575 -a(S"'dec_StreamID'/2" -p62576 -S"'dec_StreamID'(${1:Bytes}, ${2:Param2}) $3" -p62577 -tp62578 -a(S"'dec_StreamMode'/2" -p62579 -S"'dec_StreamMode'(${1:Bytes}, ${2:Param2}) $3" -p62580 -tp62581 -a(S"'dec_StreamParms'/2" -p62582 -S"'dec_StreamParms'(${1:Bytes}, ${2:Param2}) $3" -p62583 -tp62584 -a(S"'dec_SubtractRequest'/2" -p62585 -S"'dec_SubtractRequest'(${1:Bytes}, ${2:Param2}) $3" -p62586 -tp62587 -a(S"'dec_TerminationAudit'/2" -p62588 -S"'dec_TerminationAudit'(${1:Bytes}, ${2:Param2}) $3" -p62589 -tp62590 -a(S"'dec_TerminationID'/2" -p62591 -S"'dec_TerminationID'(${1:Bytes}, ${2:Param2}) $3" -p62592 -tp62593 -a(S"'dec_TerminationIDList'/2" -p62594 -S"'dec_TerminationIDList'(${1:Bytes}, ${2:Param2}) $3" -p62595 -tp62596 -a(S"'dec_TerminationStateDescriptor'/2" -p62597 -S"'dec_TerminationStateDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p62598 -tp62599 -a(S"'dec_TimeNotation'/2" -p62600 -S"'dec_TimeNotation'(${1:Bytes}, ${2:Param2}) $3" -p62601 -tp62602 -a(S"'dec_TopologyRequest'/2" -p62603 -S"'dec_TopologyRequest'(${1:Bytes}, ${2:Param2}) $3" -p62604 -tp62605 -a(S"'dec_Transaction'/2" -p62606 -S"'dec_Transaction'(${1:Bytes}, ${2:Param2}) $3" -p62607 -tp62608 -a(S"'dec_TransactionAck'/2" -p62609 -S"'dec_TransactionAck'(${1:Bytes}, ${2:Param2}) $3" -p62610 -tp62611 -a(S"'dec_TransactionId'/2" -p62612 -S"'dec_TransactionId'(${1:Bytes}, ${2:Param2}) $3" -p62613 -tp62614 -a(S"'dec_TransactionPending'/2" -p62615 -S"'dec_TransactionPending'(${1:Bytes}, ${2:Param2}) $3" -p62616 -tp62617 -a(S"'dec_TransactionReply'/2" -p62618 -S"'dec_TransactionReply'(${1:Bytes}, ${2:Param2}) $3" -p62619 -tp62620 -a(S"'dec_TransactionRequest'/2" -p62621 -S"'dec_TransactionRequest'(${1:Bytes}, ${2:Param2}) $3" -p62622 -tp62623 -a(S"'dec_TransactionResponseAck'/2" -p62624 -S"'dec_TransactionResponseAck'(${1:Bytes}, ${2:Param2}) $3" -p62625 -tp62626 -a(S"'dec_Value'/2" -p62627 -S"'dec_Value'(${1:Bytes}, ${2:Param2}) $3" -p62628 -tp62629 -a(S"'dec_WildcardField'/2" -p62630 -S"'dec_WildcardField'(${1:Bytes}, ${2:Param2}) $3" -p62631 -tp62632 -a(S"'enc_ActionReply'/1" -p62633 -S"'enc_ActionReply'(${1:Val}) $2" -p62634 -tp62635 -a(S"'enc_ActionRequest'/1" -p62636 -S"'enc_ActionRequest'(${1:Val}) $2" -p62637 -tp62638 -a(S"'enc_AmmDescriptor'/1" -p62639 -S"'enc_AmmDescriptor'(${1:Val}) $2" -p62640 -tp62641 -a(S"'enc_AmmRequest'/1" -p62642 -S"'enc_AmmRequest'(${1:Val}) $2" -p62643 -tp62644 -a(S"'enc_AmmsReply'/1" -p62645 -S"'enc_AmmsReply'(${1:Val}) $2" -p62646 -tp62647 -a(S"'enc_AuditDescriptor'/1" -p62648 -S"'enc_AuditDescriptor'(${1:Val}) $2" -p62649 -tp62650 -a(S"'enc_AuditReply'/1" -p62651 -S"'enc_AuditReply'(${1:Val}) $2" -p62652 -tp62653 -a(S"'enc_AuditRequest'/1" -p62654 -S"'enc_AuditRequest'(${1:Val}) $2" -p62655 -tp62656 -a(S"'enc_AuditResult'/1" -p62657 -S"'enc_AuditResult'(${1:Val}) $2" -p62658 -tp62659 -a(S"'enc_AuditReturnParameter'/1" -p62660 -S"'enc_AuditReturnParameter'(${1:Val}) $2" -p62661 -tp62662 -a(S"'enc_AuthData'/1" -p62663 -S"'enc_AuthData'(${1:Val}) $2" -p62664 -tp62665 -a(S"'enc_AuthenticationHeader'/1" -p62666 -S"'enc_AuthenticationHeader'(${1:Val}) $2" -p62667 -tp62668 -a(S"'enc_Command'/1" -p62669 -S"'enc_Command'(${1:Val}) $2" -p62670 -tp62671 -a(S"'enc_CommandReply'/1" -p62672 -S"'enc_CommandReply'(${1:Val}) $2" -p62673 -tp62674 -a(S"'enc_CommandRequest'/1" -p62675 -S"'enc_CommandRequest'(${1:Val}) $2" -p62676 -tp62677 -a(S"'enc_ContextAttrAuditRequest'/1" -p62678 -S"'enc_ContextAttrAuditRequest'(${1:Val}) $2" -p62679 -tp62680 -a(S"'enc_ContextID'/1" -p62681 -S"'enc_ContextID'(${1:Val}) $2" -p62682 -tp62683 -a(S"'enc_ContextRequest'/1" -p62684 -S"'enc_ContextRequest'(${1:Val}) $2" -p62685 -tp62686 -a(S"'enc_DigitMapDescriptor'/1" -p62687 -S"'enc_DigitMapDescriptor'(${1:Val}) $2" -p62688 -tp62689 -a(S"'enc_DigitMapName'/1" -p62690 -S"'enc_DigitMapName'(${1:Val}) $2" -p62691 -tp62692 -a(S"'enc_DigitMapValue'/1" -p62693 -S"'enc_DigitMapValue'(${1:Val}) $2" -p62694 -tp62695 -a(S"'enc_DomainName'/1" -p62696 -S"'enc_DomainName'(${1:Val}) $2" -p62697 -tp62698 -a(S"'enc_ErrorCode'/1" -p62699 -S"'enc_ErrorCode'(${1:Val}) $2" -p62700 -tp62701 -a(S"'enc_ErrorDescriptor'/1" -p62702 -S"'enc_ErrorDescriptor'(${1:Val}) $2" -p62703 -tp62704 -a(S"'enc_ErrorText'/1" -p62705 -S"'enc_ErrorText'(${1:Val}) $2" -p62706 -tp62707 -a(S"'enc_EventBufferControl'/1" -p62708 -S"'enc_EventBufferControl'(${1:Val}) $2" -p62709 -tp62710 -a(S"'enc_EventBufferDescriptor'/1" -p62711 -S"'enc_EventBufferDescriptor'(${1:Val}) $2" -p62712 -tp62713 -a(S"'enc_EventDM'/1" -p62714 -S"'enc_EventDM'(${1:Val}) $2" -p62715 -tp62716 -a(S"'enc_EventName'/1" -p62717 -S"'enc_EventName'(${1:Val}) $2" -p62718 -tp62719 -a(S"'enc_EventParameter'/1" -p62720 -S"'enc_EventParameter'(${1:Val}) $2" -p62721 -tp62722 -a(S"'enc_EventSpec'/1" -p62723 -S"'enc_EventSpec'(${1:Val}) $2" -p62724 -tp62725 -a(S"'enc_EventsDescriptor'/1" -p62726 -S"'enc_EventsDescriptor'(${1:Val}) $2" -p62727 -tp62728 -a(S"'enc_H221NonStandard'/1" -p62729 -S"'enc_H221NonStandard'(${1:Val}) $2" -p62730 -tp62731 -a(S"'enc_IP4Address'/1" -p62732 -S"'enc_IP4Address'(${1:Val}) $2" -p62733 -tp62734 -a(S"'enc_IP6Address'/1" -p62735 -S"'enc_IP6Address'(${1:Val}) $2" -p62736 -tp62737 -a(S"'enc_IndAudDigitMapDescriptor'/1" -p62738 -S"'enc_IndAudDigitMapDescriptor'(${1:Val}) $2" -p62739 -tp62740 -a(S"'enc_IndAudEventBufferDescriptor'/1" -p62741 -S"'enc_IndAudEventBufferDescriptor'(${1:Val}) $2" -p62742 -tp62743 -a(S"'enc_IndAudEventsDescriptor'/1" -p62744 -S"'enc_IndAudEventsDescriptor'(${1:Val}) $2" -p62745 -tp62746 -a(S"'enc_IndAudLocalControlDescriptor'/1" -p62747 -S"'enc_IndAudLocalControlDescriptor'(${1:Val}) $2" -p62748 -tp62749 -a(S"'enc_IndAudLocalRemoteDescriptor'/1" -p62750 -S"'enc_IndAudLocalRemoteDescriptor'(${1:Val}) $2" -p62751 -tp62752 -a(S"'enc_IndAudMediaDescriptor'/1" -p62753 -S"'enc_IndAudMediaDescriptor'(${1:Val}) $2" -p62754 -tp62755 -a(S"'enc_IndAudPackagesDescriptor'/1" -p62756 -S"'enc_IndAudPackagesDescriptor'(${1:Val}) $2" -p62757 -tp62758 -a(S"'enc_IndAudPropertyGroup'/1" -p62759 -S"'enc_IndAudPropertyGroup'(${1:Val}) $2" -p62760 -tp62761 -a(S"'enc_IndAudPropertyParm'/1" -p62762 -S"'enc_IndAudPropertyParm'(${1:Val}) $2" -p62763 -tp62764 -a(S"'enc_IndAudSeqSigList'/1" -p62765 -S"'enc_IndAudSeqSigList'(${1:Val}) $2" -p62766 -tp62767 -a(S"'enc_IndAudSignal'/1" -p62768 -S"'enc_IndAudSignal'(${1:Val}) $2" -p62769 -tp62770 -a(S"'enc_IndAudSignalsDescriptor'/1" -p62771 -S"'enc_IndAudSignalsDescriptor'(${1:Val}) $2" -p62772 -tp62773 -a(S"'enc_IndAudStatisticsDescriptor'/1" -p62774 -S"'enc_IndAudStatisticsDescriptor'(${1:Val}) $2" -p62775 -tp62776 -a(S"'enc_IndAudStreamDescriptor'/1" -p62777 -S"'enc_IndAudStreamDescriptor'(${1:Val}) $2" -p62778 -tp62779 -a(S"'enc_IndAudStreamParms'/1" -p62780 -S"'enc_IndAudStreamParms'(${1:Val}) $2" -p62781 -tp62782 -a(S"'enc_IndAudTerminationStateDescriptor'/1" -p62783 -S"'enc_IndAudTerminationStateDescriptor'(${1:Val}) $2" -p62784 -tp62785 -a(S"'enc_IndAuditParameter'/1" -p62786 -S"'enc_IndAuditParameter'(${1:Val}) $2" -p62787 -tp62788 -a(S"'enc_LocalControlDescriptor'/1" -p62789 -S"'enc_LocalControlDescriptor'(${1:Val}) $2" -p62790 -tp62791 -a(S"'enc_LocalRemoteDescriptor'/1" -p62792 -S"'enc_LocalRemoteDescriptor'(${1:Val}) $2" -p62793 -tp62794 -a(S"'enc_MId'/1" -p62795 -S"'enc_MId'(${1:Val}) $2" -p62796 -tp62797 -a(S"'enc_MediaDescriptor'/1" -p62798 -S"'enc_MediaDescriptor'(${1:Val}) $2" -p62799 -tp62800 -a(S"'enc_MegacoMessage'/1" -p62801 -S"'enc_MegacoMessage'(${1:Val}) $2" -p62802 -tp62803 -a(S"'enc_Message'/1" -p62804 -S"'enc_Message'(${1:Val}) $2" -p62805 -tp62806 -a(S"'enc_ModemDescriptor'/1" -p62807 -S"'enc_ModemDescriptor'(${1:Val}) $2" -p62808 -tp62809 -a(S"'enc_ModemType'/1" -p62810 -S"'enc_ModemType'(${1:Val}) $2" -p62811 -tp62812 -a(S"'enc_MuxDescriptor'/1" -p62813 -S"'enc_MuxDescriptor'(${1:Val}) $2" -p62814 -tp62815 -a(S"'enc_MuxType'/1" -p62816 -S"'enc_MuxType'(${1:Val}) $2" -p62817 -tp62818 -a(S"'enc_Name'/1" -p62819 -S"'enc_Name'(${1:Val}) $2" -p62820 -tp62821 -a(S"'enc_NonStandardData'/1" -p62822 -S"'enc_NonStandardData'(${1:Val}) $2" -p62823 -tp62824 -a(S"'enc_NonStandardIdentifier'/1" -p62825 -S"'enc_NonStandardIdentifier'(${1:Val}) $2" -p62826 -tp62827 -a(S"'enc_NotifyCompletion'/1" -p62828 -S"'enc_NotifyCompletion'(${1:Val}) $2" -p62829 -tp62830 -a(S"'enc_NotifyReply'/1" -p62831 -S"'enc_NotifyReply'(${1:Val}) $2" -p62832 -tp62833 -a(S"'enc_NotifyRequest'/1" -p62834 -S"'enc_NotifyRequest'(${1:Val}) $2" -p62835 -tp62836 -a(S"'enc_ObservedEvent'/1" -p62837 -S"'enc_ObservedEvent'(${1:Val}) $2" -p62838 -tp62839 -a(S"'enc_ObservedEventsDescriptor'/1" -p62840 -S"'enc_ObservedEventsDescriptor'(${1:Val}) $2" -p62841 -tp62842 -a(S"'enc_PackagesDescriptor'/1" -p62843 -S"'enc_PackagesDescriptor'(${1:Val}) $2" -p62844 -tp62845 -a(S"'enc_PackagesItem'/1" -p62846 -S"'enc_PackagesItem'(${1:Val}) $2" -p62847 -tp62848 -a(S"'enc_PathName'/1" -p62849 -S"'enc_PathName'(${1:Val}) $2" -p62850 -tp62851 -a(S"'enc_PkgdName'/1" -p62852 -S"'enc_PkgdName'(${1:Val}) $2" -p62853 -tp62854 -a(S"'enc_PropertyGroup'/1" -p62855 -S"'enc_PropertyGroup'(${1:Val}) $2" -p62856 -tp62857 -a(S"'enc_PropertyParm'/1" -p62858 -S"'enc_PropertyParm'(${1:Val}) $2" -p62859 -tp62860 -a(S"'enc_Relation'/1" -p62861 -S"'enc_Relation'(${1:Val}) $2" -p62862 -tp62863 -a(S"'enc_RequestID'/1" -p62864 -S"'enc_RequestID'(${1:Val}) $2" -p62865 -tp62866 -a(S"'enc_RequestedActions'/1" -p62867 -S"'enc_RequestedActions'(${1:Val}) $2" -p62868 -tp62869 -a(S"'enc_RequestedEvent'/1" -p62870 -S"'enc_RequestedEvent'(${1:Val}) $2" -p62871 -tp62872 -a(S"'enc_SecondEventsDescriptor'/1" -p62873 -S"'enc_SecondEventsDescriptor'(${1:Val}) $2" -p62874 -tp62875 -a(S"'enc_SecondRequestedActions'/1" -p62876 -S"'enc_SecondRequestedActions'(${1:Val}) $2" -p62877 -tp62878 -a(S"'enc_SecondRequestedEvent'/1" -p62879 -S"'enc_SecondRequestedEvent'(${1:Val}) $2" -p62880 -tp62881 -a(S"'enc_SecurityParmIndex'/1" -p62882 -S"'enc_SecurityParmIndex'(${1:Val}) $2" -p62883 -tp62884 -a(S"'enc_SegmentNumber'/1" -p62885 -S"'enc_SegmentNumber'(${1:Val}) $2" -p62886 -tp62887 -a(S"'enc_SeqSigList'/1" -p62888 -S"'enc_SeqSigList'(${1:Val}) $2" -p62889 -tp62890 -a(S"'enc_SequenceNum'/1" -p62891 -S"'enc_SequenceNum'(${1:Val}) $2" -p62892 -tp62893 -a(S"'enc_ServiceChangeAddress'/1" -p62894 -S"'enc_ServiceChangeAddress'(${1:Val}) $2" -p62895 -tp62896 -a(S"'enc_ServiceChangeMethod'/1" -p62897 -S"'enc_ServiceChangeMethod'(${1:Val}) $2" -p62898 -tp62899 -a(S"'enc_ServiceChangeParm'/1" -p62900 -S"'enc_ServiceChangeParm'(${1:Val}) $2" -p62901 -tp62902 -a(S"'enc_ServiceChangeProfile'/1" -p62903 -S"'enc_ServiceChangeProfile'(${1:Val}) $2" -p62904 -tp62905 -a(S"'enc_ServiceChangeReply'/1" -p62906 -S"'enc_ServiceChangeReply'(${1:Val}) $2" -p62907 -tp62908 -a(S"'enc_ServiceChangeRequest'/1" -p62909 -S"'enc_ServiceChangeRequest'(${1:Val}) $2" -p62910 -tp62911 -a(S"'enc_ServiceChangeResParm'/1" -p62912 -S"'enc_ServiceChangeResParm'(${1:Val}) $2" -p62913 -tp62914 -a(S"'enc_ServiceChangeResult'/1" -p62915 -S"'enc_ServiceChangeResult'(${1:Val}) $2" -p62916 -tp62917 -a(S"'enc_ServiceState'/1" -p62918 -S"'enc_ServiceState'(${1:Val}) $2" -p62919 -tp62920 -a(S"'enc_SigParameter'/1" -p62921 -S"'enc_SigParameter'(${1:Val}) $2" -p62922 -tp62923 -a(S"'enc_Signal'/1" -p62924 -S"'enc_Signal'(${1:Val}) $2" -p62925 -tp62926 -a(S"'enc_SignalDirection'/1" -p62927 -S"'enc_SignalDirection'(${1:Val}) $2" -p62928 -tp62929 -a(S"'enc_SignalName'/1" -p62930 -S"'enc_SignalName'(${1:Val}) $2" -p62931 -tp62932 -a(S"'enc_SignalRequest'/1" -p62933 -S"'enc_SignalRequest'(${1:Val}) $2" -p62934 -tp62935 -a(S"'enc_SignalType'/1" -p62936 -S"'enc_SignalType'(${1:Val}) $2" -p62937 -tp62938 -a(S"'enc_SignalsDescriptor'/1" -p62939 -S"'enc_SignalsDescriptor'(${1:Val}) $2" -p62940 -tp62941 -a(S"'enc_StatisticsDescriptor'/1" -p62942 -S"'enc_StatisticsDescriptor'(${1:Val}) $2" -p62943 -tp62944 -a(S"'enc_StatisticsParameter'/1" -p62945 -S"'enc_StatisticsParameter'(${1:Val}) $2" -p62946 -tp62947 -a(S"'enc_StreamDescriptor'/1" -p62948 -S"'enc_StreamDescriptor'(${1:Val}) $2" -p62949 -tp62950 -a(S"'enc_StreamID'/1" -p62951 -S"'enc_StreamID'(${1:Val}) $2" -p62952 -tp62953 -a(S"'enc_StreamMode'/1" -p62954 -S"'enc_StreamMode'(${1:Val}) $2" -p62955 -tp62956 -a(S"'enc_StreamParms'/1" -p62957 -S"'enc_StreamParms'(${1:Val}) $2" -p62958 -tp62959 -a(S"'enc_SubtractRequest'/1" -p62960 -S"'enc_SubtractRequest'(${1:Val}) $2" -p62961 -tp62962 -a(S"'enc_TerminationAudit'/1" -p62963 -S"'enc_TerminationAudit'(${1:Val}) $2" -p62964 -tp62965 -a(S"'enc_TerminationID'/1" -p62966 -S"'enc_TerminationID'(${1:Val}) $2" -p62967 -tp62968 -a(S"'enc_TerminationIDList'/1" -p62969 -S"'enc_TerminationIDList'(${1:Val}) $2" -p62970 -tp62971 -a(S"'enc_TerminationStateDescriptor'/1" -p62972 -S"'enc_TerminationStateDescriptor'(${1:Val}) $2" -p62973 -tp62974 -a(S"'enc_TimeNotation'/1" -p62975 -S"'enc_TimeNotation'(${1:Val}) $2" -p62976 -tp62977 -a(S"'enc_TopologyRequest'/1" -p62978 -S"'enc_TopologyRequest'(${1:Val}) $2" -p62979 -tp62980 -a(S"'enc_Transaction'/1" -p62981 -S"'enc_Transaction'(${1:Val}) $2" -p62982 -tp62983 -a(S"'enc_TransactionAck'/1" -p62984 -S"'enc_TransactionAck'(${1:Val}) $2" -p62985 -tp62986 -a(S"'enc_TransactionId'/1" -p62987 -S"'enc_TransactionId'(${1:Val}) $2" -p62988 -tp62989 -a(S"'enc_TransactionPending'/1" -p62990 -S"'enc_TransactionPending'(${1:Val}) $2" -p62991 -tp62992 -a(S"'enc_TransactionReply'/1" -p62993 -S"'enc_TransactionReply'(${1:Val}) $2" -p62994 -tp62995 -a(S"'enc_TransactionRequest'/1" -p62996 -S"'enc_TransactionRequest'(${1:Val}) $2" -p62997 -tp62998 -a(S"'enc_TransactionResponseAck'/1" -p62999 -S"'enc_TransactionResponseAck'(${1:Val}) $2" -p63000 -tp63001 -a(S"'enc_Value'/1" -p63002 -S"'enc_Value'(${1:Val}) $2" -p63003 -tp63004 -a(S"'enc_WildcardField'/1" -p63005 -S"'enc_WildcardField'(${1:Val}) $2" -p63006 -tp63007 -a(S'decode/2' -p63008 -S'decode(${1:Type}, ${2:Data}) $3' -p63009 -tp63010 -a(S'decode_disp/2' -p63011 -S'decode_disp(${1:Type}, ${2:Data}) $3' -p63012 -tp63013 -a(S'encode/2' -p63014 -S'encode(${1:Type}, ${2:Data}) $3' -p63015 -tp63016 -a(S'encode_disp/2' -p63017 -S'encode_disp(${1:Type}, ${2:Data}) $3' -p63018 -tp63019 -a(S'encoding_rule/0' -p63020 -S'encoding_rule() $1' -p63021 -tp63022 -a(S'info/0' -p63023 -S'info() $1' -p63024 -tp63025 -asS'CosEventDomainAdmin_ConnectionIDSeq' -p63026 -(lp63027 -(S'id/0' -p63028 -S'id() $1' -p63029 -tp63030 -a(S'name/0' -p63031 -S'name() $1' -p63032 -tp63033 -a(S'tc/0' -p63034 -S'tc() $1' -p63035 -tp63036 -asS'wxSashEvent' -p63037 -(lp63038 -(S'getClientData/1' -p63039 -S'getClientData(${1:This}) $2' -p63040 -tp63041 -a(S'getDragRect/1' -p63042 -S'getDragRect(${1:This}) $2' -p63043 -tp63044 -a(S'getDragStatus/1' -p63045 -S'getDragStatus(${1:This}) $2' -p63046 -tp63047 -a(S'getEdge/1' -p63048 -S'getEdge(${1:This}) $2' -p63049 -tp63050 -a(S'getExtraLong/1' -p63051 -S'getExtraLong(${1:This}) $2' -p63052 -tp63053 -a(S'getId/1' -p63054 -S'getId(${1:This}) $2' -p63055 -tp63056 -a(S'getInt/1' -p63057 -S'getInt(${1:This}) $2' -p63058 -tp63059 -a(S'getSelection/1' -p63060 -S'getSelection(${1:This}) $2' -p63061 -tp63062 -a(S'getSkipped/1' -p63063 -S'getSkipped(${1:This}) $2' -p63064 -tp63065 -a(S'getString/1' -p63066 -S'getString(${1:This}) $2' -p63067 -tp63068 -a(S'getTimestamp/1' -p63069 -S'getTimestamp(${1:This}) $2' -p63070 -tp63071 -a(S'isChecked/1' -p63072 -S'isChecked(${1:This}) $2' -p63073 -tp63074 -a(S'isCommandEvent/1' -p63075 -S'isCommandEvent(${1:This}) $2' -p63076 -tp63077 -a(S'isSelection/1' -p63078 -S'isSelection(${1:This}) $2' -p63079 -tp63080 -a(S'parent_class/1' -p63081 -S'parent_class(${1:Param1}) $2' -p63082 -tp63083 -a(S'resumePropagation/2' -p63084 -S'resumePropagation(${1:This}, ${2:PropagationLevel}) $3' -p63085 -tp63086 -a(S'setInt/2' -p63087 -S'setInt(${1:This}, ${2:I}) $3' -p63088 -tp63089 -a(S'setString/2' -p63090 -S'setString(${1:This}, ${2:S}) $3' -p63091 -tp63092 -a(S'shouldPropagate/1' -p63093 -S'shouldPropagate(${1:This}) $2' -p63094 -tp63095 -a(S'skip/1' -p63096 -S'skip(${1:This}) $2' -p63097 -tp63098 -a(S'skip/2' -p63099 -S'skip(${1:This}, ${2:Options}) $3' -p63100 -tp63101 -a(S'stopPropagation/1' -p63102 -S'stopPropagation(${1:This}) $2' -p63103 -tp63104 -asS'ssl_ssl3' -p63105 -(lp63106 -(S'certificate_verify/3' -p63107 -S'certificate_verify(${1:OID}, ${2:MasterSecret}, ${3:Param3}) $4' -p63108 -tp63109 -a(S'finished/3' -p63110 -S'finished(${1:Role}, ${2:MasterSecret}, ${3:Param3}) $4' -p63111 -tp63112 -a(S'mac_hash/6' -p63113 -S'mac_hash(${1:Method}, ${2:Mac_write_secret}, ${3:Seq_num}, ${4:Type}, ${5:Length}, ${6:Fragment}) $7' -p63114 -tp63115 -a(S'master_secret/3' -p63116 -S'master_secret(${1:PremasterSecret}, ${2:ClientRandom}, ${3:ServerRandom}) $4' -p63117 -tp63118 -a(S'setup_keys/7' -p63119 -S'setup_keys(${1:MasterSecret}, ${2:ServerRandom}, ${3:ClientRandom}, ${4:HS}, ${5:KML}, ${6:Param6}, ${7:IVS}) $8' -p63120 -tp63121 -a(S'suites/0' -p63122 -S'suites() $1' -p63123 -tp63124 -asS'ssl_ssl2' -p63125 -(lp63126 -(S'client_random/2' -p63127 -S'client_random(${1:ChallengeData}, ${2:N}) $3' -p63128 -tp63129 -asS'os_mon_mib' -p63130 -(lp63131 -(S'disk_table/1' -p63132 -S'disk_table(${1:Param1}) $2' -p63133 -tp63134 -a(S'disk_table/3' -p63135 -S'disk_table(${1:Op}, ${2:RowIndex}, ${3:Cols}) $4' -p63136 -tp63137 -a(S'disk_threshold/1' -p63138 -S'disk_threshold(${1:Param1}) $2' -p63139 -tp63140 -a(S'get_disks/1' -p63141 -S'get_disks(${1:NodeId}) $2' -p63142 -tp63143 -a(S'get_load/1' -p63144 -S'get_load(${1:Node}) $2' -p63145 -tp63146 -a(S'init/1' -p63147 -S'init(${1:Agent}) $2' -p63148 -tp63149 -a(S'load/1' -p63150 -S'load(${1:Agent}) $2' -p63151 -tp63152 -a(S'load_table/1' -p63153 -S'load_table(${1:Op}) $2' -p63154 -tp63155 -a(S'load_table/3' -p63156 -S'load_table(${1:Op}, ${2:RowIndex}, ${3:Cols}) $4' -p63157 -tp63158 -a(S'mem_proc_mark/1' -p63159 -S'mem_proc_mark(${1:Param1}) $2' -p63160 -tp63161 -a(S'mem_sys_mark/1' -p63162 -S'mem_sys_mark(${1:Param1}) $2' -p63163 -tp63164 -a(S'stop/1' -p63165 -S'stop(${1:Agent}) $2' -p63166 -tp63167 -a(S'unload/1' -p63168 -S'unload(${1:Agent}) $2' -p63169 -tp63170 -a(S'update_disk_table/0' -p63171 -S'update_disk_table() $1' -p63172 -tp63173 -a(S'update_load_table/0' -p63174 -S'update_load_table() $1' -p63175 -tp63176 -asS'ct_logs' -p63177 -(lp63178 -(S'add_external_logs/1' -p63179 -S'add_external_logs(${1:Logs}) $2' -p63180 -tp63181 -a(S'add_link/3' -p63182 -S'add_link(${1:Heading}, ${2:File}, ${3:Type}) $4' -p63183 -tp63184 -a(S'basic_html/0' -p63185 -S'basic_html() $1' -p63186 -tp63187 -a(S'clear_stylesheet/1' -p63188 -S'clear_stylesheet(${1:TC}) $2' -p63189 -tp63190 -a(S'close/2' -p63191 -S'close(${1:Info}, ${2:StartDir}) $3' -p63192 -tp63193 -a(S'cont_log/2' -p63194 -S'cont_log(${1:Format}, ${2:Args}) $3' -p63195 -tp63196 -a(S'ct_log/3' -p63197 -S'ct_log(${1:Category}, ${2:Format}, ${3:Args}) $4' -p63198 -tp63199 -a(S'end_log/0' -p63200 -S'end_log() $1' -p63201 -tp63202 -a(S'end_tc/1' -p63203 -S'end_tc(${1:TCPid}) $2' -p63204 -tp63205 -a(S'get_log_dir/0' -p63206 -S'get_log_dir() $1' -p63207 -tp63208 -a(S'get_log_dir/1' -p63209 -S'get_log_dir(${1:ReturnAbsName}) $2' -p63210 -tp63211 -a(S'get_ts_html_wrapper/3' -p63212 -S'get_ts_html_wrapper(${1:TestName}, ${2:PrintLabel}, ${3:Cwd}) $4' -p63213 -tp63214 -a(S'init/1' -p63215 -S'init(${1:Mode}) $2' -p63216 -tp63217 -a(S'init_tc/1' -p63218 -S'init_tc(${1:RefreshLog}) $2' -p63219 -tp63220 -a(S'locate_default_css_file/0' -p63221 -S'locate_default_css_file() $1' -p63222 -tp63223 -a(S'log/3' -p63224 -S'log(${1:Heading}, ${2:Format}, ${3:Args}) $4' -p63225 -tp63226 -a(S'make_all_runs_index/1' -p63227 -S'make_all_runs_index(${1:When}) $2' -p63228 -tp63229 -a(S'make_all_suites_index/1' -p63230 -S'make_all_suites_index(${1:When}) $2' -p63231 -tp63232 -a(S'make_last_run_index/0' -p63233 -S'make_last_run_index() $1' -p63234 -tp63235 -a(S'make_relative/1' -p63236 -S'make_relative(${1:AbsDir}) $2' -p63237 -tp63238 -a(S'set_stylesheet/2' -p63239 -S'set_stylesheet(${1:TC}, ${2:SSFile}) $3' -p63240 -tp63241 -a(S'simulate/0' -p63242 -S'simulate() $1' -p63243 -tp63244 -a(S'start_log/1' -p63245 -S'start_log(${1:Heading}) $2' -p63246 -tp63247 -a(S'tc_log/3' -p63248 -S'tc_log(${1:Category}, ${2:Format}, ${3:Args}) $4' -p63249 -tp63250 -a(S'tc_log/4' -p63251 -S'tc_log(${1:Category}, ${2:Printer}, ${3:Format}, ${4:Args}) $5' -p63252 -tp63253 -a(S'tc_log_async/3' -p63254 -S'tc_log_async(${1:Category}, ${2:Format}, ${3:Args}) $4' -p63255 -tp63256 -a(S'tc_pal/3' -p63257 -S'tc_pal(${1:Category}, ${2:Format}, ${3:Args}) $4' -p63258 -tp63259 -a(S'tc_print/3' -p63260 -S'tc_print(${1:Category}, ${2:Format}, ${3:Args}) $4' -p63261 -tp63262 -a(S'xhtml/2' -p63263 -S'xhtml(${1:HTML}, ${2:XHTML}) $3' -p63264 -tp63265 -asS'sys_core_fold' -p63266 -(lp63267 -(S'format_error/1' -p63268 -S'format_error(${1:Param1}) $2' -p63269 -tp63270 -a(S'module/2' -p63271 -S'module(${1:Mod}, ${2:Opts}) $3' -p63272 -tp63273 -asS'mod_esi' -p63274 -(lp63275 -(S'deliver/2' -p63276 -S'deliver(${1:SessionID}, ${2:Data}) $3' -p63277 -tp63278 -a(S'do/1' -p63279 -S'do(${1:ModData}) $2' -p63280 -tp63281 -a(S'load/2' -p63282 -S'load(${1:Param1}, ${2:Param2}) $3' -p63283 -tp63284 -a(S'store/2' -p63285 -S'store(${1:Param1}, ${2:Param2}) $3' -p63286 -tp63287 -asS'http_chunk' -p63288 -(lp63289 -(S'decode/3' -p63290 -S'decode(${1:ChunkedBody}, ${2:MaxBodySize}, ${3:MaxHeaderSize}) $4' -p63291 -tp63292 -a(S'decode/4' -p63293 -S'decode(${1:ChunkedBody}, ${2:MaxBodySize}, ${3:MaxHeaderSize}, ${4:Stream}) $5' -p63294 -tp63295 -a(S'decode_data/1' -p63296 -S'decode_data(${1:Param1}) $2' -p63297 -tp63298 -a(S'decode_size/1' -p63299 -S'decode_size(${1:Param1}) $2' -p63300 -tp63301 -a(S'decode_trailer/1' -p63302 -S'decode_trailer() $1' -p63303 -tp63304 -a(S'encode/1' -p63305 -S'encode(${1:Chunk}) $2' -p63306 -tp63307 -a(S'encode_last/0' -p63308 -S'encode_last() $1' -p63309 -tp63310 -a(S'handle_headers/2' -p63311 -S'handle_headers(${1:Param1}, ${2:ChunkedHeaders}) $3' -p63312 -tp63313 -a(S'ignore_extensions/1' -p63314 -S'ignore_extensions(${1:Param1}) $2' -p63315 -tp63316 -asS'wxFindReplaceData' -p63317 -(lp63318 -(S'destroy/1' -p63319 -S'destroy(${1:This}) $2' -p63320 -tp63321 -a(S'getFindString/1' -p63322 -S'getFindString(${1:This}) $2' -p63323 -tp63324 -a(S'getFlags/1' -p63325 -S'getFlags(${1:This}) $2' -p63326 -tp63327 -a(S'getReplaceString/1' -p63328 -S'getReplaceString(${1:This}) $2' -p63329 -tp63330 -a(S'new/0' -p63331 -S'new() $1' -p63332 -tp63333 -a(S'new/1' -p63334 -S'new(${1:Flags}) $2' -p63335 -tp63336 -a(S'parent_class/1' -p63337 -S'parent_class(${1:Param1}) $2' -p63338 -tp63339 -a(S'setFindString/2' -p63340 -S'setFindString(${1:This}, ${2:Str}) $3' -p63341 -tp63342 -a(S'setFlags/2' -p63343 -S'setFlags(${1:This}, ${2:Flags}) $3' -p63344 -tp63345 -a(S'setReplaceString/2' -p63346 -S'setReplaceString(${1:This}, ${2:Str}) $3' -p63347 -tp63348 -asS'unicode' -p63349 -(lp63350 -(S'bom_to_encoding/1' -p63351 -S'bom_to_encoding(${1:Bin}) $2' -p63352 -tp63353 -a(S'characters_to_binary/1' -p63354 -S'characters_to_binary(${1:Data}) $2' -p63355 -tp63356 -a(S'characters_to_binary/3' -p63357 -S'characters_to_binary(${1:Data}, ${2:InEncoding}, ${3:OutEncoding}) $4' -p63358 -tp63359 -a(S'characters_to_binary_int/2' -p63360 -S'characters_to_binary_int(${1:ML}, ${2:InEncoding}) $3' -p63361 -tp63362 -a(S'characters_to_list/1' -p63363 -S'characters_to_list(${1:Data}) $2' -p63364 -tp63365 -a(S'characters_to_list_int/2' -p63366 -S'characters_to_list_int(${1:ML}, ${2:Encoding}) $3' -p63367 -tp63368 -a(S'encoding_to_bom/1' -p63369 -S'encoding_to_bom(${1:InEncoding}) $2' -p63370 -tp63371 -asS'dialyzer_behaviours' -p63372 -(lp63373 -(S'check_callbacks/4' -p63374 -S'check_callbacks(${1:Module}, ${2:Attrs}, ${3:Plt}, ${4:Codeserver}) $5' -p63375 -tp63376 -a(S'get_behaviour_apis/1' -p63377 -S'get_behaviour_apis(${1:Behaviours}) $2' -p63378 -tp63379 -a(S'translatable_behaviours/1' -p63380 -S'translatable_behaviours(${1:Tree}) $2' -p63381 -tp63382 -a(S'translate_behaviour_api_call/5' -p63383 -S'translate_behaviour_api_call(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}, ${5:Param5}) $6' -p63384 -tp63385 -a(S'translate_callgraph/3' -p63386 -S'translate_callgraph(${1:Param1}, ${2:Module}, ${3:Callgraph}) $4' -p63387 -tp63388 -asS'dbg_ui_mon_win' -p63389 -(lp63390 -(S'add_break/3' -p63391 -S'add_break(${1:WinInfo}, ${2:Menu}, ${3:Param3}) $4' -p63392 -tp63393 -a(S'add_module/3' -p63394 -S'add_module(${1:WinInfo}, ${2:Menu}, ${3:Mod}) $4' -p63395 -tp63396 -a(S'add_process/6' -p63397 -S'add_process(${1:WinInfo}, ${2:Pid}, ${3:Name}, ${4:Param4}, ${5:Status}, ${6:Info}) $7' -p63398 -tp63399 -a(S'clear_breaks/1' -p63400 -S'clear_breaks(${1:WinInfo}) $2' -p63401 -tp63402 -a(S'clear_breaks/2' -p63403 -S'clear_breaks(${1:WinInfo}, ${2:Mod}) $3' -p63404 -tp63405 -a(S'clear_processes/1' -p63406 -S'clear_processes(${1:WinInfo}) $2' -p63407 -tp63408 -a(S'create_win/3' -p63409 -S'create_win(${1:GS}, ${2:Title}, ${3:Menus}) $4' -p63410 -tp63411 -a(S'delete_break/2' -p63412 -S'delete_break(${1:WinInfo}, ${2:Point}) $3' -p63413 -tp63414 -a(S'delete_module/2' -p63415 -S'delete_module(${1:WinInfo}, ${2:Mod}) $3' -p63416 -tp63417 -a(S'enable/2' -p63418 -S'enable(${1:MenuItems}, ${2:Bool}) $3' -p63419 -tp63420 -a(S'get_window/1' -p63421 -S'get_window(${1:WinInfo}) $2' -p63422 -tp63423 -a(S'handle_event/2' -p63424 -S'handle_event(${1:Param1}, ${2:WinInfo}) $3' -p63425 -tp63426 -a(S'init/0' -p63427 -S'init() $1' -p63428 -tp63429 -a(S'is_enabled/1' -p63430 -S'is_enabled(${1:MenuItem}) $2' -p63431 -tp63432 -a(S'select/2' -p63433 -S'select(${1:MenuItem}, ${2:Bool}) $3' -p63434 -tp63435 -a(S'show_option/3' -p63436 -S'show_option(${1:WinInfo}, ${2:Option}, ${3:Value}) $4' -p63437 -tp63438 -a(S'update_break/2' -p63439 -S'update_break(${1:WinInfo}, ${2:Param2}) $3' -p63440 -tp63441 -a(S'update_process/4' -p63442 -S'update_process(${1:WinInfo}, ${2:Pid}, ${3:Status}, ${4:Info}) $5' -p63443 -tp63444 -asS'instrument' -p63445 -(lp63446 -(S'allocator_descr/2' -p63447 -S'allocator_descr(${1:Param1}, ${2:TypeNo}) $3' -p63448 -tp63449 -a(S'block_header_size/1' -p63450 -S'block_header_size(${1:Param1}) $2' -p63451 -tp63452 -a(S'class_descr/2' -p63453 -S'class_descr(${1:Param1}, ${2:TypeNo}) $3' -p63454 -tp63455 -a(S'descr/1' -p63456 -S'descr(${1:ID}) $2' -p63457 -tp63458 -a(S'holes/1' -p63459 -S'holes(${1:Param1}) $2' -p63460 -tp63461 -a(S'mem_limits/1' -p63462 -S'mem_limits(${1:Param1}) $2' -p63463 -tp63464 -a(S'memory_data/0' -p63465 -S'memory_data() $1' -p63466 -tp63467 -a(S'memory_status/1' -p63468 -S'memory_status(${1:Type}) $2' -p63469 -tp63470 -a(S'read_memory_data/1' -p63471 -S'read_memory_data(${1:File}) $2' -p63472 -tp63473 -a(S'read_memory_status/1' -p63474 -S'read_memory_status(${1:File}) $2' -p63475 -tp63476 -a(S'sort/1' -p63477 -S'sort(${1:Param1}) $2' -p63478 -tp63479 -a(S'store_memory_data/1' -p63480 -S'store_memory_data(${1:File}) $2' -p63481 -tp63482 -a(S'store_memory_status/1' -p63483 -S'store_memory_status(${1:File}) $2' -p63484 -tp63485 -a(S'sum_blocks/1' -p63486 -S'sum_blocks(${1:Param1}) $2' -p63487 -tp63488 -a(S'type_descr/2' -p63489 -S'type_descr() $1' -p63490 -tp63491 -a(S'type_no_range/1' -p63492 -S'type_no_range(${1:Param1}) $2' -p63493 -tp63494 -asS'oe_cosEventApp' -p63495 -(lp63496 -(S'oe_dependency/0' -p63497 -S'oe_dependency() $1' -p63498 -tp63499 -a(S'oe_get_module/5' -p63500 -S'oe_get_module(${1:OE_IFR}, ${2:OE_Parent}, ${3:ID}, ${4:Name}, ${5:Version}) $6' -p63501 -tp63502 -a(S'oe_register/0' -p63503 -S'oe_register() $1' -p63504 -tp63505 -a(S'oe_unregister/0' -p63506 -S'oe_unregister() $1' -p63507 -tp63508 -asS'ic_code' -p63509 -(lp63510 -(S'codeDirective/2' -p63511 -S'codeDirective(${1:G}, ${2:X}) $3' -p63512 -tp63513 -a(S'gen_includes/3' -p63514 -S'gen_includes(${1:Fd}, ${2:G}, ${3:Type}) $4' -p63515 -tp63516 -a(S'gen_includes/4' -p63517 -S'gen_includes(${1:Fd}, ${2:G}, ${3:X}, ${4:Type}) $5' -p63518 -tp63519 -a(S'get_basetype/2' -p63520 -S'get_basetype(${1:G}, ${2:MyId}) $3' -p63521 -tp63522 -a(S'insert_typedef/3' -p63523 -S'insert_typedef(${1:G}, ${2:MyId}, ${3:DefinedAsId}) $4' -p63524 -tp63525 -a(S'mk_list/1' -p63526 -S'mk_list(${1:Param1}) $2' -p63527 -tp63528 -a(S'type_expand/7' -p63529 -S'type_expand(${1:G}, ${2:N}, ${3:X}, ${4:Fd}, ${5:Tabs}, ${6:Name}, ${7:Param7}) $8' -p63530 -tp63531 -a(S'type_expand_all/6' -p63532 -S'type_expand_all(${1:G}, ${2:N}, ${3:X}, ${4:Fd}, ${5:Tabs}, ${6:Param6}) $7' -p63533 -tp63534 -a(S'type_expand_any/3' -p63535 -S'type_expand_any(${1:Fd}, ${2:Tabs}, ${3:Name}) $4' -p63536 -tp63537 -a(S'type_expand_array/7' -p63538 -S'type_expand_array(${1:G}, ${2:N}, ${3:X}, ${4:Fd}, ${5:Tabs}, ${6:Name}, ${7:Param7}) $8' -p63539 -tp63540 -a(S'type_expand_boolean/3' -p63541 -S'type_expand_boolean(${1:Fd}, ${2:Tabs}, ${3:Name}) $4' -p63542 -tp63543 -a(S'type_expand_char/3' -p63544 -S'type_expand_char(${1:Fd}, ${2:Tabs}, ${3:Name}) $4' -p63545 -tp63546 -a(S'type_expand_double/3' -p63547 -S'type_expand_double(${1:Fd}, ${2:Tabs}, ${3:Name}) $4' -p63548 -tp63549 -a(S'type_expand_enum/4' -p63550 -S'type_expand_enum(${1:Fd}, ${2:Tabs}, ${3:Name}, ${4:Param4}) $5' -p63551 -tp63552 -a(S'type_expand_enum_elements/3' -p63553 -S'type_expand_enum_elements(${1:Fd}, ${2:Tabs}, ${3:Param3}) $4' -p63554 -tp63555 -a(S'type_expand_enum_rule/4' -p63556 -S'type_expand_enum_rule(${1:Fd}, ${2:Tabs}, ${3:Name}, ${4:ElList}) $5' -p63557 -tp63558 -a(S'type_expand_error/3' -p63559 -S'type_expand_error(${1:Fd}, ${2:Tabs}, ${3:Name}) $4' -p63560 -tp63561 -a(S'type_expand_exception/7' -p63562 -S'type_expand_exception(${1:G}, ${2:N}, ${3:X}, ${4:Fd}, ${5:Tabs}, ${6:Name}, ${7:Param7}) $8' -p63563 -tp63564 -a(S'type_expand_float/3' -p63565 -S'type_expand_float(${1:Fd}, ${2:Tabs}, ${3:Name}) $4' -p63566 -tp63567 -a(S'type_expand_handle_op/4' -p63568 -S'type_expand_handle_op(${1:G}, ${2:N}, ${3:X}, ${4:Fd}) $5' -p63569 -tp63570 -a(S'type_expand_long/3' -p63571 -S'type_expand_long(${1:Fd}, ${2:Tabs}, ${3:Name}) $4' -p63572 -tp63573 -a(S'type_expand_longdouble/3' -p63574 -S'type_expand_longdouble(${1:Fd}, ${2:Tabs}, ${3:Name}) $4' -p63575 -tp63576 -a(S'type_expand_longlong/3' -p63577 -S'type_expand_longlong(${1:Fd}, ${2:Tabs}, ${3:Name}) $4' -p63578 -tp63579 -a(S'type_expand_null/3' -p63580 -S'type_expand_null(${1:Fd}, ${2:Tabs}, ${3:Name}) $4' -p63581 -tp63582 -a(S'type_expand_object/3' -p63583 -S'type_expand_object(${1:Fd}, ${2:Tabs}, ${3:Name}) $4' -p63584 -tp63585 -a(S'type_expand_octet/3' -p63586 -S'type_expand_octet(${1:Fd}, ${2:Tabs}, ${3:Name}) $4' -p63587 -tp63588 -a(S'type_expand_op/4' -p63589 -S'type_expand_op(${1:G}, ${2:N}, ${3:X}, ${4:Fd}) $5' -p63590 -tp63591 -a(S'type_expand_op_exec/4' -p63592 -S'type_expand_op_exec(${1:G}, ${2:N}, ${3:X}, ${4:Fd}) $5' -p63593 -tp63594 -a(S'type_expand_principal/3' -p63595 -S'type_expand_principal(${1:Fd}, ${2:Tabs}, ${3:Name}) $4' -p63596 -tp63597 -a(S'type_expand_sequence/7' -p63598 -S'type_expand_sequence(${1:G}, ${2:N}, ${3:X}, ${4:Fd}, ${5:Tabs}, ${6:Name}, ${7:Param7}) $8' -p63599 -tp63600 -a(S'type_expand_short/3' -p63601 -S'type_expand_short(${1:Fd}, ${2:Tabs}, ${3:Name}) $4' -p63602 -tp63603 -a(S'type_expand_string/3' -p63604 -S'type_expand_string(${1:Fd}, ${2:Tabs}, ${3:Name}) $4' -p63605 -tp63606 -a(S'type_expand_struct/7' -p63607 -S'type_expand_struct(${1:G}, ${2:N}, ${3:X}, ${4:Fd}, ${5:Tabs}, ${6:Name}, ${7:Param7}) $8' -p63608 -tp63609 -a(S'type_expand_struct_rule/3' -p63610 -S'type_expand_struct_rule(${1:Fd}, ${2:Name}, ${3:TcList}) $4' -p63611 -tp63612 -a(S'type_expand_typecode/3' -p63613 -S'type_expand_typecode(${1:Fd}, ${2:Tabs}, ${3:Name}) $4' -p63614 -tp63615 -a(S'type_expand_ulong/3' -p63616 -S'type_expand_ulong(${1:Fd}, ${2:Tabs}, ${3:Name}) $4' -p63617 -tp63618 -a(S'type_expand_ulonglong/3' -p63619 -S'type_expand_ulonglong(${1:Fd}, ${2:Tabs}, ${3:Name}) $4' -p63620 -tp63621 -a(S'type_expand_union/7' -p63622 -S'type_expand_union(${1:G}, ${2:N}, ${3:X}, ${4:Fd}, ${5:Tabs}, ${6:Name}, ${7:Param7}) $8' -p63623 -tp63624 -a(S'type_expand_union_rule/2' -p63625 -S'type_expand_union_rule(${1:Fd}, ${2:Param2}) $3' -p63626 -tp63627 -a(S'type_expand_ushort/3' -p63628 -S'type_expand_ushort(${1:Fd}, ${2:Tabs}, ${3:Name}) $4' -p63629 -tp63630 -a(S'type_expand_void/3' -p63631 -S'type_expand_void(${1:Fd}, ${2:Tabs}, ${3:Name}) $4' -p63632 -tp63633 -a(S'type_expand_wchar/3' -p63634 -S'type_expand_wchar(${1:Fd}, ${2:Tabs}, ${3:Name}) $4' -p63635 -tp63636 -a(S'type_expand_wstring/3' -p63637 -S'type_expand_wstring(${1:Fd}, ${2:Tabs}, ${3:Name}) $4' -p63638 -tp63639 -asS'xmerl_xs' -p63640 -(lp63641 -(S'built_in_rules/2' -p63642 -S'built_in_rules(${1:Fun}, ${2:Param2}) $3' -p63643 -tp63644 -a(S'select/2' -p63645 -S'select(${1:Str}, ${2:E}) $3' -p63646 -tp63647 -a(S'value_of/1' -p63648 -S'value_of(${1:E}) $2' -p63649 -tp63650 -a(S'xslapply/2' -p63651 -S'xslapply(${1:Fun}, ${2:EList}) $3' -p63652 -tp63653 -asS'wxMenu' -p63654 -(lp63655 -(S"'Destroy'/2" -p63656 -S"'Destroy'(${1:This}, ${2:Itemid}) $3" -p63657 -tp63658 -a(S'append/2' -p63659 -S'append(${1:This}, ${2:Item}) $3' -p63660 -tp63661 -a(S'append/3' -p63662 -S'append(${1:This}, ${2:Itemid}, ${3:Text}) $4' -p63663 -tp63664 -a(S'append/4' -p63665 -S'append(${1:This}, ${2:Itemid}, ${3:Text}, ${4:Submenu}) $5' -p63666 -tp63667 -a(S'append/5' -p63668 -S'append(${1:This}, ${2:Itemid}, ${3:Text}, ${4:Help}, ${5:IsCheckable}) $6' -p63669 -tp63670 -a(S'appendCheckItem/3' -p63671 -S'appendCheckItem(${1:This}, ${2:Itemid}, ${3:Text}) $4' -p63672 -tp63673 -a(S'appendCheckItem/4' -p63674 -S'appendCheckItem(${1:This}, ${2:Itemid}, ${3:Text}, ${4:Param4}) $5' -p63675 -tp63676 -a(S'appendRadioItem/3' -p63677 -S'appendRadioItem(${1:This}, ${2:Itemid}, ${3:Text}) $4' -p63678 -tp63679 -a(S'appendRadioItem/4' -p63680 -S'appendRadioItem(${1:This}, ${2:Itemid}, ${3:Text}, ${4:Param4}) $5' -p63681 -tp63682 -a(S'appendSeparator/1' -p63683 -S'appendSeparator(${1:This}) $2' -p63684 -tp63685 -a(S'break/1' -p63686 -S'break(${1:This}) $2' -p63687 -tp63688 -a(S'check/3' -p63689 -S'check(${1:This}, ${2:Itemid}, ${3:Check}) $4' -p63690 -tp63691 -a(S'connect/2' -p63692 -S'connect(${1:This}, ${2:EventType}) $3' -p63693 -tp63694 -a(S'connect/3' -p63695 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p63696 -tp63697 -a(S'delete/2' -p63698 -S'delete(${1:This}, ${2:Itemid}) $3' -p63699 -tp63700 -a(S'destroy/1' -p63701 -S'destroy(${1:This}) $2' -p63702 -tp63703 -a(S'disconnect/1' -p63704 -S'disconnect(${1:This}) $2' -p63705 -tp63706 -a(S'disconnect/2' -p63707 -S'disconnect(${1:This}, ${2:EventType}) $3' -p63708 -tp63709 -a(S'disconnect/3' -p63710 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p63711 -tp63712 -a(S'enable/3' -p63713 -S'enable(${1:This}, ${2:Itemid}, ${3:Enable}) $4' -p63714 -tp63715 -a(S'findItem/2' -p63716 -S'findItem(${1:This}, ${2:Itemid}) $3' -p63717 -tp63718 -a(S'findItemByPosition/2' -p63719 -S'findItemByPosition(${1:This}, ${2:Position}) $3' -p63720 -tp63721 -a(S'getHelpString/2' -p63722 -S'getHelpString(${1:This}, ${2:Itemid}) $3' -p63723 -tp63724 -a(S'getLabel/2' -p63725 -S'getLabel(${1:This}, ${2:Itemid}) $3' -p63726 -tp63727 -a(S'getMenuItemCount/1' -p63728 -S'getMenuItemCount(${1:This}) $2' -p63729 -tp63730 -a(S'getMenuItems/1' -p63731 -S'getMenuItems(${1:This}) $2' -p63732 -tp63733 -a(S'getTitle/1' -p63734 -S'getTitle(${1:This}) $2' -p63735 -tp63736 -a(S'insert/3' -p63737 -S'insert(${1:This}, ${2:Pos}, ${3:Itemid}) $4' -p63738 -tp63739 -a(S'insert/4' -p63740 -S'insert(${1:This}, ${2:Pos}, ${3:Itemid}, ${4:Param4}) $5' -p63741 -tp63742 -a(S'insert/5' -p63743 -S'insert(${1:This}, ${2:Pos}, ${3:Itemid}, ${4:Text}, ${5:Submenu}) $6' -p63744 -tp63745 -a(S'insert/6' -p63746 -S'insert(${1:This}, ${2:Pos}, ${3:Itemid}, ${4:Text}, ${5:Help}, ${6:IsCheckable}) $7' -p63747 -tp63748 -a(S'insertCheckItem/4' -p63749 -S'insertCheckItem(${1:This}, ${2:Pos}, ${3:Itemid}, ${4:Text}) $5' -p63750 -tp63751 -a(S'insertCheckItem/5' -p63752 -S'insertCheckItem(${1:This}, ${2:Pos}, ${3:Itemid}, ${4:Text}, ${5:Param5}) $6' -p63753 -tp63754 -a(S'insertRadioItem/4' -p63755 -S'insertRadioItem(${1:This}, ${2:Pos}, ${3:Itemid}, ${4:Text}) $5' -p63756 -tp63757 -a(S'insertRadioItem/5' -p63758 -S'insertRadioItem(${1:This}, ${2:Pos}, ${3:Itemid}, ${4:Text}, ${5:Param5}) $6' -p63759 -tp63760 -a(S'insertSeparator/2' -p63761 -S'insertSeparator(${1:This}, ${2:Pos}) $3' -p63762 -tp63763 -a(S'isChecked/2' -p63764 -S'isChecked(${1:This}, ${2:Itemid}) $3' -p63765 -tp63766 -a(S'isEnabled/2' -p63767 -S'isEnabled(${1:This}, ${2:Itemid}) $3' -p63768 -tp63769 -a(S'new/0' -p63770 -S'new() $1' -p63771 -tp63772 -a(S'new/1' -p63773 -S'new(${1:Param1}) $2' -p63774 -tp63775 -a(S'new/2' -p63776 -S'new(${1:Title}, ${2:Param2}) $3' -p63777 -tp63778 -a(S'parent_class/1' -p63779 -S'parent_class(${1:Param1}) $2' -p63780 -tp63781 -a(S'prepend/2' -p63782 -S'prepend(${1:This}, ${2:Itemid}) $3' -p63783 -tp63784 -a(S'prepend/3' -p63785 -S'prepend(${1:This}, ${2:Itemid}, ${3:Param3}) $4' -p63786 -tp63787 -a(S'prepend/4' -p63788 -S'prepend(${1:This}, ${2:Itemid}, ${3:Text}, ${4:Submenu}) $5' -p63789 -tp63790 -a(S'prepend/5' -p63791 -S'prepend(${1:This}, ${2:Itemid}, ${3:Text}, ${4:Help}, ${5:IsCheckable}) $6' -p63792 -tp63793 -a(S'prependCheckItem/3' -p63794 -S'prependCheckItem(${1:This}, ${2:Itemid}, ${3:Text}) $4' -p63795 -tp63796 -a(S'prependCheckItem/4' -p63797 -S'prependCheckItem(${1:This}, ${2:Itemid}, ${3:Text}, ${4:Param4}) $5' -p63798 -tp63799 -a(S'prependRadioItem/3' -p63800 -S'prependRadioItem(${1:This}, ${2:Itemid}, ${3:Text}) $4' -p63801 -tp63802 -a(S'prependRadioItem/4' -p63803 -S'prependRadioItem(${1:This}, ${2:Itemid}, ${3:Text}, ${4:Param4}) $5' -p63804 -tp63805 -a(S'prependSeparator/1' -p63806 -S'prependSeparator(${1:This}) $2' -p63807 -tp63808 -a(S'remove/2' -p63809 -S'remove(${1:This}, ${2:Itemid}) $3' -p63810 -tp63811 -a(S'setHelpString/3' -p63812 -S'setHelpString(${1:This}, ${2:Itemid}, ${3:HelpString}) $4' -p63813 -tp63814 -a(S'setLabel/3' -p63815 -S'setLabel(${1:This}, ${2:Itemid}, ${3:Label}) $4' -p63816 -tp63817 -a(S'setTitle/2' -p63818 -S'setTitle(${1:This}, ${2:Title}) $3' -p63819 -tp63820 -asS'mod_disk_log' -p63821 -(lp63822 -(S'do/1' -p63823 -S'do(${1:Info}) $2' -p63824 -tp63825 -a(S'error_log/2' -p63826 -S'error_log(${1:Info}, ${2:Reason}) $3' -p63827 -tp63828 -a(S'load/2' -p63829 -S'load(${1:Param1}, ${2:Param2}) $3' -p63830 -tp63831 -a(S'remove/1' -p63832 -S'remove(${1:ConfigDB}) $2' -p63833 -tp63834 -a(S'report_error/2' -p63835 -S'report_error(${1:ConfigDB}, ${2:Error}) $3' -p63836 -tp63837 -a(S'security_log/2' -p63838 -S'security_log(${1:Info}, ${2:Event}) $3' -p63839 -tp63840 -a(S'store/2' -p63841 -S'store(${1:Param1}, ${2:ConfigList}) $3' -p63842 -tp63843 -asS'wxCheckListBox' -p63844 -(lp63845 -(S'append/2' -p63846 -S'append(${1:This}, ${2:Item}) $3' -p63847 -tp63848 -a(S'append/3' -p63849 -S'append(${1:This}, ${2:Item}, ${3:ClientData}) $4' -p63850 -tp63851 -a(S'appendStrings/2' -p63852 -S'appendStrings(${1:This}, ${2:Strings}) $3' -p63853 -tp63854 -a(S'cacheBestSize/2' -p63855 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p63856 -tp63857 -a(S'captureMouse/1' -p63858 -S'captureMouse(${1:This}) $2' -p63859 -tp63860 -a(S'center/1' -p63861 -S'center(${1:This}) $2' -p63862 -tp63863 -a(S'center/2' -p63864 -S'center(${1:This}, ${2:Options}) $3' -p63865 -tp63866 -a(S'centerOnParent/1' -p63867 -S'centerOnParent(${1:This}) $2' -p63868 -tp63869 -a(S'centerOnParent/2' -p63870 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p63871 -tp63872 -a(S'centre/1' -p63873 -S'centre(${1:This}) $2' -p63874 -tp63875 -a(S'centre/2' -p63876 -S'centre(${1:This}, ${2:Options}) $3' -p63877 -tp63878 -a(S'centreOnParent/1' -p63879 -S'centreOnParent(${1:This}) $2' -p63880 -tp63881 -a(S'centreOnParent/2' -p63882 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p63883 -tp63884 -a(S'check/2' -p63885 -S'check(${1:This}, ${2:Index}) $3' -p63886 -tp63887 -a(S'check/3' -p63888 -S'check(${1:This}, ${2:Index}, ${3:Param3}) $4' -p63889 -tp63890 -a(S'clear/1' -p63891 -S'clear(${1:This}) $2' -p63892 -tp63893 -a(S'clearBackground/1' -p63894 -S'clearBackground(${1:This}) $2' -p63895 -tp63896 -a(S'clientToScreen/2' -p63897 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p63898 -tp63899 -a(S'clientToScreen/3' -p63900 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p63901 -tp63902 -a(S'close/1' -p63903 -S'close(${1:This}) $2' -p63904 -tp63905 -a(S'close/2' -p63906 -S'close(${1:This}, ${2:Options}) $3' -p63907 -tp63908 -a(S'connect/2' -p63909 -S'connect(${1:This}, ${2:EventType}) $3' -p63910 -tp63911 -a(S'connect/3' -p63912 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p63913 -tp63914 -a(S'convertDialogToPixels/2' -p63915 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p63916 -tp63917 -a(S'convertPixelsToDialog/2' -p63918 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p63919 -tp63920 -a(S'delete/2' -p63921 -S'delete(${1:This}, ${2:N}) $3' -p63922 -tp63923 -a(S'deselect/2' -p63924 -S'deselect(${1:This}, ${2:N}) $3' -p63925 -tp63926 -a(S'destroy/1' -p63927 -S'destroy(${1:This}) $2' -p63928 -tp63929 -a(S'destroyChildren/1' -p63930 -S'destroyChildren(${1:This}) $2' -p63931 -tp63932 -a(S'disable/1' -p63933 -S'disable(${1:This}) $2' -p63934 -tp63935 -a(S'disconnect/1' -p63936 -S'disconnect(${1:This}) $2' -p63937 -tp63938 -a(S'disconnect/2' -p63939 -S'disconnect(${1:This}, ${2:EventType}) $3' -p63940 -tp63941 -a(S'disconnect/3' -p63942 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p63943 -tp63944 -a(S'enable/1' -p63945 -S'enable(${1:This}) $2' -p63946 -tp63947 -a(S'enable/2' -p63948 -S'enable(${1:This}, ${2:Options}) $3' -p63949 -tp63950 -a(S'findString/2' -p63951 -S'findString(${1:This}, ${2:S}) $3' -p63952 -tp63953 -a(S'findString/3' -p63954 -S'findString(${1:This}, ${2:S}, ${3:Options}) $4' -p63955 -tp63956 -a(S'findWindow/2' -p63957 -S'findWindow(${1:This}, ${2:Winid}) $3' -p63958 -tp63959 -a(S'fit/1' -p63960 -S'fit(${1:This}) $2' -p63961 -tp63962 -a(S'fitInside/1' -p63963 -S'fitInside(${1:This}) $2' -p63964 -tp63965 -a(S'freeze/1' -p63966 -S'freeze(${1:This}) $2' -p63967 -tp63968 -a(S'getAcceleratorTable/1' -p63969 -S'getAcceleratorTable(${1:This}) $2' -p63970 -tp63971 -a(S'getBackgroundColour/1' -p63972 -S'getBackgroundColour(${1:This}) $2' -p63973 -tp63974 -a(S'getBackgroundStyle/1' -p63975 -S'getBackgroundStyle(${1:This}) $2' -p63976 -tp63977 -a(S'getBestSize/1' -p63978 -S'getBestSize(${1:This}) $2' -p63979 -tp63980 -a(S'getCaret/1' -p63981 -S'getCaret(${1:This}) $2' -p63982 -tp63983 -a(S'getCharHeight/1' -p63984 -S'getCharHeight(${1:This}) $2' -p63985 -tp63986 -a(S'getCharWidth/1' -p63987 -S'getCharWidth(${1:This}) $2' -p63988 -tp63989 -a(S'getChildren/1' -p63990 -S'getChildren(${1:This}) $2' -p63991 -tp63992 -a(S'getClientData/2' -p63993 -S'getClientData(${1:This}, ${2:N}) $3' -p63994 -tp63995 -a(S'getClientSize/1' -p63996 -S'getClientSize(${1:This}) $2' -p63997 -tp63998 -a(S'getContainingSizer/1' -p63999 -S'getContainingSizer(${1:This}) $2' -p64000 -tp64001 -a(S'getCount/1' -p64002 -S'getCount(${1:This}) $2' -p64003 -tp64004 -a(S'getCursor/1' -p64005 -S'getCursor(${1:This}) $2' -p64006 -tp64007 -a(S'getDropTarget/1' -p64008 -S'getDropTarget(${1:This}) $2' -p64009 -tp64010 -a(S'getEventHandler/1' -p64011 -S'getEventHandler(${1:This}) $2' -p64012 -tp64013 -a(S'getExtraStyle/1' -p64014 -S'getExtraStyle(${1:This}) $2' -p64015 -tp64016 -a(S'getFont/1' -p64017 -S'getFont(${1:This}) $2' -p64018 -tp64019 -a(S'getForegroundColour/1' -p64020 -S'getForegroundColour(${1:This}) $2' -p64021 -tp64022 -a(S'getGrandParent/1' -p64023 -S'getGrandParent(${1:This}) $2' -p64024 -tp64025 -a(S'getHandle/1' -p64026 -S'getHandle(${1:This}) $2' -p64027 -tp64028 -a(S'getHelpText/1' -p64029 -S'getHelpText(${1:This}) $2' -p64030 -tp64031 -a(S'getId/1' -p64032 -S'getId(${1:This}) $2' -p64033 -tp64034 -a(S'getLabel/1' -p64035 -S'getLabel(${1:This}) $2' -p64036 -tp64037 -a(S'getMaxSize/1' -p64038 -S'getMaxSize(${1:This}) $2' -p64039 -tp64040 -a(S'getMinSize/1' -p64041 -S'getMinSize(${1:This}) $2' -p64042 -tp64043 -a(S'getName/1' -p64044 -S'getName(${1:This}) $2' -p64045 -tp64046 -a(S'getParent/1' -p64047 -S'getParent(${1:This}) $2' -p64048 -tp64049 -a(S'getPosition/1' -p64050 -S'getPosition(${1:This}) $2' -p64051 -tp64052 -a(S'getRect/1' -p64053 -S'getRect(${1:This}) $2' -p64054 -tp64055 -a(S'getScreenPosition/1' -p64056 -S'getScreenPosition(${1:This}) $2' -p64057 -tp64058 -a(S'getScreenRect/1' -p64059 -S'getScreenRect(${1:This}) $2' -p64060 -tp64061 -a(S'getScrollPos/2' -p64062 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p64063 -tp64064 -a(S'getScrollRange/2' -p64065 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p64066 -tp64067 -a(S'getScrollThumb/2' -p64068 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p64069 -tp64070 -a(S'getSelection/1' -p64071 -S'getSelection(${1:This}) $2' -p64072 -tp64073 -a(S'getSelections/1' -p64074 -S'getSelections(${1:This}) $2' -p64075 -tp64076 -a(S'getSize/1' -p64077 -S'getSize(${1:This}) $2' -p64078 -tp64079 -a(S'getSizer/1' -p64080 -S'getSizer(${1:This}) $2' -p64081 -tp64082 -a(S'getString/2' -p64083 -S'getString(${1:This}, ${2:N}) $3' -p64084 -tp64085 -a(S'getStringSelection/1' -p64086 -S'getStringSelection(${1:This}) $2' -p64087 -tp64088 -a(S'getTextExtent/2' -p64089 -S'getTextExtent(${1:This}, ${2:String}) $3' -p64090 -tp64091 -a(S'getTextExtent/3' -p64092 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p64093 -tp64094 -a(S'getToolTip/1' -p64095 -S'getToolTip(${1:This}) $2' -p64096 -tp64097 -a(S'getUpdateRegion/1' -p64098 -S'getUpdateRegion(${1:This}) $2' -p64099 -tp64100 -a(S'getVirtualSize/1' -p64101 -S'getVirtualSize(${1:This}) $2' -p64102 -tp64103 -a(S'getWindowStyleFlag/1' -p64104 -S'getWindowStyleFlag(${1:This}) $2' -p64105 -tp64106 -a(S'getWindowVariant/1' -p64107 -S'getWindowVariant(${1:This}) $2' -p64108 -tp64109 -a(S'hasCapture/1' -p64110 -S'hasCapture(${1:This}) $2' -p64111 -tp64112 -a(S'hasScrollbar/2' -p64113 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p64114 -tp64115 -a(S'hasTransparentBackground/1' -p64116 -S'hasTransparentBackground(${1:This}) $2' -p64117 -tp64118 -a(S'hide/1' -p64119 -S'hide(${1:This}) $2' -p64120 -tp64121 -a(S'hitTest/2' -p64122 -S'hitTest(${1:This}, ${2:Point}) $3' -p64123 -tp64124 -a(S'inheritAttributes/1' -p64125 -S'inheritAttributes(${1:This}) $2' -p64126 -tp64127 -a(S'initDialog/1' -p64128 -S'initDialog(${1:This}) $2' -p64129 -tp64130 -a(S'insert/3' -p64131 -S'insert(${1:This}, ${2:Item}, ${3:Pos}) $4' -p64132 -tp64133 -a(S'insert/4' -p64134 -S'insert(${1:This}, ${2:Item}, ${3:Pos}, ${4:ClientData}) $5' -p64135 -tp64136 -a(S'insertItems/3' -p64137 -S'insertItems(${1:This}, ${2:Items}, ${3:Pos}) $4' -p64138 -tp64139 -a(S'invalidateBestSize/1' -p64140 -S'invalidateBestSize(${1:This}) $2' -p64141 -tp64142 -a(S'isChecked/2' -p64143 -S'isChecked(${1:This}, ${2:Index}) $3' -p64144 -tp64145 -a(S'isEmpty/1' -p64146 -S'isEmpty(${1:This}) $2' -p64147 -tp64148 -a(S'isEnabled/1' -p64149 -S'isEnabled(${1:This}) $2' -p64150 -tp64151 -a(S'isExposed/2' -p64152 -S'isExposed(${1:This}, ${2:Pt}) $3' -p64153 -tp64154 -a(S'isExposed/3' -p64155 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p64156 -tp64157 -a(S'isExposed/5' -p64158 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p64159 -tp64160 -a(S'isRetained/1' -p64161 -S'isRetained(${1:This}) $2' -p64162 -tp64163 -a(S'isSelected/2' -p64164 -S'isSelected(${1:This}, ${2:N}) $3' -p64165 -tp64166 -a(S'isShown/1' -p64167 -S'isShown(${1:This}) $2' -p64168 -tp64169 -a(S'isTopLevel/1' -p64170 -S'isTopLevel(${1:This}) $2' -p64171 -tp64172 -a(S'layout/1' -p64173 -S'layout(${1:This}) $2' -p64174 -tp64175 -a(S'lineDown/1' -p64176 -S'lineDown(${1:This}) $2' -p64177 -tp64178 -a(S'lineUp/1' -p64179 -S'lineUp(${1:This}) $2' -p64180 -tp64181 -a(S'lower/1' -p64182 -S'lower(${1:This}) $2' -p64183 -tp64184 -a(S'makeModal/1' -p64185 -S'makeModal(${1:This}) $2' -p64186 -tp64187 -a(S'makeModal/2' -p64188 -S'makeModal(${1:This}, ${2:Options}) $3' -p64189 -tp64190 -a(S'move/2' -p64191 -S'move(${1:This}, ${2:Pt}) $3' -p64192 -tp64193 -a(S'move/3' -p64194 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p64195 -tp64196 -a(S'move/4' -p64197 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p64198 -tp64199 -a(S'moveAfterInTabOrder/2' -p64200 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p64201 -tp64202 -a(S'moveBeforeInTabOrder/2' -p64203 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p64204 -tp64205 -a(S'navigate/1' -p64206 -S'navigate(${1:This}) $2' -p64207 -tp64208 -a(S'navigate/2' -p64209 -S'navigate(${1:This}, ${2:Options}) $3' -p64210 -tp64211 -a(S'new/0' -p64212 -S'new() $1' -p64213 -tp64214 -a(S'new/2' -p64215 -S'new(${1:Parent}, ${2:Id}) $3' -p64216 -tp64217 -a(S'new/3' -p64218 -S'new(${1:Parent}, ${2:Id}, ${3:Param3}) $4' -p64219 -tp64220 -a(S'pageDown/1' -p64221 -S'pageDown(${1:This}) $2' -p64222 -tp64223 -a(S'pageUp/1' -p64224 -S'pageUp(${1:This}) $2' -p64225 -tp64226 -a(S'parent_class/1' -p64227 -S'parent_class(${1:Param1}) $2' -p64228 -tp64229 -a(S'popEventHandler/1' -p64230 -S'popEventHandler(${1:This}) $2' -p64231 -tp64232 -a(S'popEventHandler/2' -p64233 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p64234 -tp64235 -a(S'popupMenu/2' -p64236 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p64237 -tp64238 -a(S'popupMenu/3' -p64239 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p64240 -tp64241 -a(S'popupMenu/4' -p64242 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p64243 -tp64244 -a(S'raise/1' -p64245 -S'raise(${1:This}) $2' -p64246 -tp64247 -a(S'refresh/1' -p64248 -S'refresh(${1:This}) $2' -p64249 -tp64250 -a(S'refresh/2' -p64251 -S'refresh(${1:This}, ${2:Options}) $3' -p64252 -tp64253 -a(S'refreshRect/2' -p64254 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p64255 -tp64256 -a(S'refreshRect/3' -p64257 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p64258 -tp64259 -a(S'releaseMouse/1' -p64260 -S'releaseMouse(${1:This}) $2' -p64261 -tp64262 -a(S'removeChild/2' -p64263 -S'removeChild(${1:This}, ${2:Child}) $3' -p64264 -tp64265 -a(S'reparent/2' -p64266 -S'reparent(${1:This}, ${2:NewParent}) $3' -p64267 -tp64268 -a(S'screenToClient/1' -p64269 -S'screenToClient(${1:This}) $2' -p64270 -tp64271 -a(S'screenToClient/2' -p64272 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p64273 -tp64274 -a(S'scrollLines/2' -p64275 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p64276 -tp64277 -a(S'scrollPages/2' -p64278 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p64279 -tp64280 -a(S'scrollWindow/3' -p64281 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p64282 -tp64283 -a(S'scrollWindow/4' -p64284 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p64285 -tp64286 -a(S'select/2' -p64287 -S'select(${1:This}, ${2:N}) $3' -p64288 -tp64289 -a(S'set/2' -p64290 -S'set(${1:This}, ${2:Items}) $3' -p64291 -tp64292 -a(S'setAcceleratorTable/2' -p64293 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p64294 -tp64295 -a(S'setAutoLayout/2' -p64296 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p64297 -tp64298 -a(S'setBackgroundColour/2' -p64299 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p64300 -tp64301 -a(S'setBackgroundStyle/2' -p64302 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p64303 -tp64304 -a(S'setCaret/2' -p64305 -S'setCaret(${1:This}, ${2:Caret}) $3' -p64306 -tp64307 -a(S'setClientData/3' -p64308 -S'setClientData(${1:This}, ${2:N}, ${3:ClientData}) $4' -p64309 -tp64310 -a(S'setClientSize/2' -p64311 -S'setClientSize(${1:This}, ${2:Size}) $3' -p64312 -tp64313 -a(S'setClientSize/3' -p64314 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p64315 -tp64316 -a(S'setContainingSizer/2' -p64317 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p64318 -tp64319 -a(S'setCursor/2' -p64320 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p64321 -tp64322 -a(S'setDropTarget/2' -p64323 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p64324 -tp64325 -a(S'setExtraStyle/2' -p64326 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p64327 -tp64328 -a(S'setFirstItem/2' -p64329 -S'setFirstItem(${1:This}, ${2:N}) $3' -p64330 -tp64331 -a(S'setFocus/1' -p64332 -S'setFocus(${1:This}) $2' -p64333 -tp64334 -a(S'setFocusFromKbd/1' -p64335 -S'setFocusFromKbd(${1:This}) $2' -p64336 -tp64337 -a(S'setFont/2' -p64338 -S'setFont(${1:This}, ${2:Font}) $3' -p64339 -tp64340 -a(S'setForegroundColour/2' -p64341 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p64342 -tp64343 -a(S'setHelpText/2' -p64344 -S'setHelpText(${1:This}, ${2:Text}) $3' -p64345 -tp64346 -a(S'setId/2' -p64347 -S'setId(${1:This}, ${2:Winid}) $3' -p64348 -tp64349 -a(S'setLabel/2' -p64350 -S'setLabel(${1:This}, ${2:Label}) $3' -p64351 -tp64352 -a(S'setMaxSize/2' -p64353 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p64354 -tp64355 -a(S'setMinSize/2' -p64356 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p64357 -tp64358 -a(S'setName/2' -p64359 -S'setName(${1:This}, ${2:Name}) $3' -p64360 -tp64361 -a(S'setOwnBackgroundColour/2' -p64362 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p64363 -tp64364 -a(S'setOwnFont/2' -p64365 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p64366 -tp64367 -a(S'setOwnForegroundColour/2' -p64368 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p64369 -tp64370 -a(S'setPalette/2' -p64371 -S'setPalette(${1:This}, ${2:Pal}) $3' -p64372 -tp64373 -a(S'setScrollPos/3' -p64374 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p64375 -tp64376 -a(S'setScrollPos/4' -p64377 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p64378 -tp64379 -a(S'setScrollbar/5' -p64380 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p64381 -tp64382 -a(S'setScrollbar/6' -p64383 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p64384 -tp64385 -a(S'setSelection/2' -p64386 -S'setSelection(${1:This}, ${2:N}) $3' -p64387 -tp64388 -a(S'setSize/2' -p64389 -S'setSize(${1:This}, ${2:Rect}) $3' -p64390 -tp64391 -a(S'setSize/3' -p64392 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p64393 -tp64394 -a(S'setSize/5' -p64395 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p64396 -tp64397 -a(S'setSize/6' -p64398 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p64399 -tp64400 -a(S'setSizeHints/2' -p64401 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p64402 -tp64403 -a(S'setSizeHints/3' -p64404 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p64405 -tp64406 -a(S'setSizeHints/4' -p64407 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p64408 -tp64409 -a(S'setSizer/2' -p64410 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p64411 -tp64412 -a(S'setSizer/3' -p64413 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p64414 -tp64415 -a(S'setSizerAndFit/2' -p64416 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p64417 -tp64418 -a(S'setSizerAndFit/3' -p64419 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p64420 -tp64421 -a(S'setString/3' -p64422 -S'setString(${1:This}, ${2:N}, ${3:S}) $4' -p64423 -tp64424 -a(S'setStringSelection/2' -p64425 -S'setStringSelection(${1:This}, ${2:S}) $3' -p64426 -tp64427 -a(S'setThemeEnabled/2' -p64428 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p64429 -tp64430 -a(S'setToolTip/2' -p64431 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p64432 -tp64433 -a(S'setVirtualSize/2' -p64434 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p64435 -tp64436 -a(S'setVirtualSize/3' -p64437 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p64438 -tp64439 -a(S'setVirtualSizeHints/2' -p64440 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p64441 -tp64442 -a(S'setVirtualSizeHints/3' -p64443 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p64444 -tp64445 -a(S'setVirtualSizeHints/4' -p64446 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p64447 -tp64448 -a(S'setWindowStyle/2' -p64449 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p64450 -tp64451 -a(S'setWindowStyleFlag/2' -p64452 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p64453 -tp64454 -a(S'setWindowVariant/2' -p64455 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p64456 -tp64457 -a(S'shouldInheritColours/1' -p64458 -S'shouldInheritColours(${1:This}) $2' -p64459 -tp64460 -a(S'show/1' -p64461 -S'show(${1:This}) $2' -p64462 -tp64463 -a(S'show/2' -p64464 -S'show(${1:This}, ${2:Options}) $3' -p64465 -tp64466 -a(S'thaw/1' -p64467 -S'thaw(${1:This}) $2' -p64468 -tp64469 -a(S'transferDataFromWindow/1' -p64470 -S'transferDataFromWindow(${1:This}) $2' -p64471 -tp64472 -a(S'transferDataToWindow/1' -p64473 -S'transferDataToWindow(${1:This}) $2' -p64474 -tp64475 -a(S'update/1' -p64476 -S'update(${1:This}) $2' -p64477 -tp64478 -a(S'updateWindowUI/1' -p64479 -S'updateWindowUI(${1:This}) $2' -p64480 -tp64481 -a(S'updateWindowUI/2' -p64482 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p64483 -tp64484 -a(S'validate/1' -p64485 -S'validate(${1:This}) $2' -p64486 -tp64487 -a(S'warpPointer/3' -p64488 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p64489 -tp64490 -asS'mnesia_loader' -p64491 -(lp64492 -(S'disc_load_table/2' -p64493 -S'disc_load_table(${1:Tab}, ${2:Reason}) $3' -p64494 -tp64495 -a(S'net_load_table/4' -p64496 -S'net_load_table(${1:Tab}, ${2:Reason}, ${3:Ns}, ${4:Cs}) $5' -p64497 -tp64498 -a(S'send_table/3' -p64499 -S'send_table(${1:Pid}, ${2:Tab}, ${3:RemoteS}) $4' -p64500 -tp64501 -a(S'spawned_receiver/8' -p64502 -S'spawned_receiver(${1:ReplyTo}, ${2:Tab}, ${3:Storage}, ${4:Cs}, ${5:SenderPid}, ${6:TabSize}, ${7:DetsData}, ${8:Init}) $9' -p64503 -tp64504 -asS'cosNotification_Grammar' -p64505 -(lp64506 -(S'format_error/1' -p64507 -S'format_error(${1:Message}) $2' -p64508 -tp64509 -a(S'parse/1' -p64510 -S'parse(${1:Tokens}) $2' -p64511 -tp64512 -a(S'parse_and_scan/1' -p64513 -S'parse_and_scan(${1:Param1}) $2' -p64514 -tp64515 -asS'CosFileTransfer_FileTransferSession' -p64516 -(lp64517 -(S"'_get_protocols_supported'/1" -p64518 -S"'_get_protocols_supported'(${1:OE_THIS}) $2" -p64519 -tp64520 -a(S"'_get_protocols_supported'/2" -p64521 -S"'_get_protocols_supported'(${1:OE_THIS}, ${2:OE_Options}) $3" -p64522 -tp64523 -a(S'append/3' -p64524 -S'append(${1:OE_THIS}, ${2:Src}, ${3:Dest}) $4' -p64525 -tp64526 -a(S'append/4' -p64527 -S'append(${1:OE_THIS}, ${2:OE_Options}, ${3:Src}, ${4:Dest}) $5' -p64528 -tp64529 -a(S'code_change/3' -p64530 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p64531 -tp64532 -a(S'create_directory/2' -p64533 -S'create_directory(${1:OE_THIS}, ${2:Name}) $3' -p64534 -tp64535 -a(S'create_directory/3' -p64536 -S'create_directory(${1:OE_THIS}, ${2:OE_Options}, ${3:Name}) $4' -p64537 -tp64538 -a(S'create_file/2' -p64539 -S'create_file(${1:OE_THIS}, ${2:Name}) $3' -p64540 -tp64541 -a(S'create_file/3' -p64542 -S'create_file(${1:OE_THIS}, ${2:OE_Options}, ${3:Name}) $4' -p64543 -tp64544 -a(S'delete/2' -p64545 -S'delete(${1:OE_THIS}, ${2:File}) $3' -p64546 -tp64547 -a(S'delete/3' -p64548 -S'delete(${1:OE_THIS}, ${2:OE_Options}, ${3:File}) $4' -p64549 -tp64550 -a(S'get_file/2' -p64551 -S'get_file(${1:OE_THIS}, ${2:Complete_file_name}) $3' -p64552 -tp64553 -a(S'get_file/3' -p64554 -S'get_file(${1:OE_THIS}, ${2:OE_Options}, ${3:Complete_file_name}) $4' -p64555 -tp64556 -a(S'handle_call/3' -p64557 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p64558 -tp64559 -a(S'handle_cast/2' -p64560 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p64561 -tp64562 -a(S'handle_info/2' -p64563 -S'handle_info(${1:Info}, ${2:State}) $3' -p64564 -tp64565 -a(S'init/1' -p64566 -S'init(${1:Env}) $2' -p64567 -tp64568 -a(S'insert/4' -p64569 -S'insert(${1:OE_THIS}, ${2:Src}, ${3:Dest}, ${4:Offset}) $5' -p64570 -tp64571 -a(S'insert/5' -p64572 -S'insert(${1:OE_THIS}, ${2:OE_Options}, ${3:Src}, ${4:Dest}, ${5:Offset}) $6' -p64573 -tp64574 -a(S'logout/1' -p64575 -S'logout(${1:OE_THIS}) $2' -p64576 -tp64577 -a(S'logout/2' -p64578 -S'logout(${1:OE_THIS}, ${2:OE_Options}) $3' -p64579 -tp64580 -a(S'oe_create/0' -p64581 -S'oe_create() $1' -p64582 -tp64583 -a(S'oe_create/1' -p64584 -S'oe_create(${1:Env}) $2' -p64585 -tp64586 -a(S'oe_create/2' -p64587 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p64588 -tp64589 -a(S'oe_create_link/0' -p64590 -S'oe_create_link() $1' -p64591 -tp64592 -a(S'oe_create_link/1' -p64593 -S'oe_create_link(${1:Env}) $2' -p64594 -tp64595 -a(S'oe_create_link/2' -p64596 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p64597 -tp64598 -a(S'oe_get_interface/0' -p64599 -S'oe_get_interface() $1' -p64600 -tp64601 -a(S'oe_is_a/1' -p64602 -S'oe_is_a(${1:Param1}) $2' -p64603 -tp64604 -a(S'oe_orber_count_children/2' -p64605 -S'oe_orber_count_children(${1:OE_THIS}, ${2:Complete_file_name}) $3' -p64606 -tp64607 -a(S'oe_orber_count_children/3' -p64608 -S'oe_orber_count_children(${1:OE_THIS}, ${2:OE_Options}, ${3:Complete_file_name}) $4' -p64609 -tp64610 -a(S'oe_orber_create_directory_current/1' -p64611 -S'oe_orber_create_directory_current(${1:OE_THIS}) $2' -p64612 -tp64613 -a(S'oe_orber_create_directory_current/2' -p64614 -S'oe_orber_create_directory_current(${1:OE_THIS}, ${2:OE_Options}) $3' -p64615 -tp64616 -a(S'oe_orber_get_content/3' -p64617 -S'oe_orber_get_content(${1:OE_THIS}, ${2:Complete_file_name}, ${3:Parent}) $4' -p64618 -tp64619 -a(S'oe_orber_get_content/4' -p64620 -S'oe_orber_get_content(${1:OE_THIS}, ${2:OE_Options}, ${3:Complete_file_name}, ${4:Parent}) $5' -p64621 -tp64622 -a(S'oe_tc/1' -p64623 -S'oe_tc(${1:Param1}) $2' -p64624 -tp64625 -a(S'set_directory/2' -p64626 -S'set_directory(${1:OE_THIS}, ${2:New_directory}) $3' -p64627 -tp64628 -a(S'set_directory/3' -p64629 -S'set_directory(${1:OE_THIS}, ${2:OE_Options}, ${3:New_directory}) $4' -p64630 -tp64631 -a(S'terminate/2' -p64632 -S'terminate(${1:Reason}, ${2:State}) $3' -p64633 -tp64634 -a(S'transfer/3' -p64635 -S'transfer(${1:OE_THIS}, ${2:Src}, ${3:Dest}) $4' -p64636 -tp64637 -a(S'transfer/4' -p64638 -S'transfer(${1:OE_THIS}, ${2:OE_Options}, ${3:Src}, ${4:Dest}) $5' -p64639 -tp64640 -a(S'typeID/0' -p64641 -S'typeID() $1' -p64642 -tp64643 -asS'gen_server' -p64644 -(lp64645 -(S'abcast/2' -p64646 -S'abcast(${1:Name}, ${2:Request}) $3' -p64647 -tp64648 -a(S'abcast/3' -p64649 -S'abcast(${1:Nodes}, ${2:Name}, ${3:Request}) $4' -p64650 -tp64651 -a(S'call/2' -p64652 -S'call(${1:Name}, ${2:Request}) $3' -p64653 -tp64654 -a(S'call/3' -p64655 -S'call(${1:Name}, ${2:Request}, ${3:Timeout}) $4' -p64656 -tp64657 -a(S'cast/2' -p64658 -S'cast(${1:Dest}, ${2:Request}) $3' -p64659 -tp64660 -a(S'enter_loop/3' -p64661 -S'enter_loop(${1:Mod}, ${2:Options}, ${3:State}) $4' -p64662 -tp64663 -a(S'enter_loop/4' -p64664 -S'enter_loop(${1:Mod}, ${2:Options}, ${3:State}, ${4:Timeout}) $5' -p64665 -tp64666 -a(S'enter_loop/5' -p64667 -S'enter_loop(${1:Mod}, ${2:Options}, ${3:State}, ${4:ServerName}, ${5:Timeout}) $6' -p64668 -tp64669 -a(S'format_status/2' -p64670 -S'format_status(${1:Opt}, ${2:StatusData}) $3' -p64671 -tp64672 -a(S'init_it/6' -p64673 -S'init_it(${1:Starter}, ${2:Parent}, ${3:Name}, ${4:Mod}, ${5:Args}, ${6:Options}) $7' -p64674 -tp64675 -a(S'multi_call/2' -p64676 -S'multi_call() $1' -p64677 -tp64678 -a(S'multi_call/3' -p64679 -S'multi_call() $1' -p64680 -tp64681 -a(S'multi_call/4' -p64682 -S'multi_call(${1:Nodes}, ${2:Name}, ${3:Req}, ${4:Timeout}) $5' -p64683 -tp64684 -a(S'reply/2' -p64685 -S'reply(${1:Param1}, ${2:Reply}) $3' -p64686 -tp64687 -a(S'start/3' -p64688 -S'start(${1:Mod}, ${2:Args}, ${3:Options}) $4' -p64689 -tp64690 -a(S'start/4' -p64691 -S'start(${1:Name}, ${2:Mod}, ${3:Args}, ${4:Options}) $5' -p64692 -tp64693 -a(S'start_link/3' -p64694 -S'start_link(${1:Mod}, ${2:Args}, ${3:Options}) $4' -p64695 -tp64696 -a(S'start_link/4' -p64697 -S'start_link(${1:Name}, ${2:Mod}, ${3:Args}, ${4:Options}) $5' -p64698 -tp64699 -a(S'system_code_change/4' -p64700 -S'system_code_change(${1:Param1}, ${2:Param2}, ${3:OldVsn}, ${4:Extra}) $5' -p64701 -tp64702 -a(S'system_continue/3' -p64703 -S'system_continue(${1:Parent}, ${2:Debug}, ${3:Param3}) $4' -p64704 -tp64705 -a(S'system_terminate/4' -p64706 -S'system_terminate(${1:Reason}, ${2:Param2}, ${3:Debug}, ${4:Param4}) $5' -p64707 -tp64708 -a(S'wake_hib/5' -p64709 -S'wake_hib(${1:Parent}, ${2:Name}, ${3:State}, ${4:Mod}, ${5:Debug}) $6' -p64710 -tp64711 -asS'inets' -p64712 -(lp64713 -(S'disable_trace/0' -p64714 -S'disable_trace() $1' -p64715 -tp64716 -a(S'enable_trace/2' -p64717 -S'enable_trace(${1:Level}, ${2:Dest}) $3' -p64718 -tp64719 -a(S'enable_trace/3' -p64720 -S'enable_trace(${1:Level}, ${2:Dest}, ${3:Service}) $4' -p64721 -tp64722 -a(S'print_version_info/0' -p64723 -S'print_version_info() $1' -p64724 -tp64725 -a(S'print_version_info/1' -p64726 -S'print_version_info(${1:Versions}) $2' -p64727 -tp64728 -a(S'report_event/4' -p64729 -S'report_event(${1:Severity}, ${2:Label}, ${3:Service}, ${4:Content}) $5' -p64730 -tp64731 -a(S'service_names/0' -p64732 -S'service_names() $1' -p64733 -tp64734 -a(S'services/0' -p64735 -S'services() $1' -p64736 -tp64737 -a(S'services_info/0' -p64738 -S'services_info() $1' -p64739 -tp64740 -a(S'set_trace/1' -p64741 -S'set_trace(${1:Level}) $2' -p64742 -tp64743 -a(S'start/0' -p64744 -S'start() $1' -p64745 -tp64746 -a(S'start/1' -p64747 -S'start(${1:Type}) $2' -p64748 -tp64749 -a(S'start/2' -p64750 -S'start(${1:Service}, ${2:ServiceConfig}) $3' -p64751 -tp64752 -a(S'start/3' -p64753 -S'start(${1:Service}, ${2:ServiceConfig}, ${3:How}) $4' -p64754 -tp64755 -a(S'stop/0' -p64756 -S'stop() $1' -p64757 -tp64758 -a(S'stop/2' -p64759 -S'stop(${1:Service}, ${2:Pid}) $3' -p64760 -tp64761 -a(S'versions/0' -p64762 -S'versions() $1' -p64763 -tp64764 -asS'tv_table_owner' -p64765 -(lp64766 -(S'create/5' -p64767 -S'create(${1:Param1}, ${2:Node}, ${3:Param3}, ${4:TabName}, ${5:Options}) $6' -p64768 -tp64769 -a(S'init/0' -p64770 -S'init() $1' -p64771 -tp64772 -a(S'internal_create/3' -p64773 -S'internal_create(${1:Param1}, ${2:TabName}, ${3:Options}) $4' -p64774 -tp64775 -a(S'start/0' -p64776 -S'start() $1' -p64777 -tp64778 -asS'erl_prettypr' -p64779 -(lp64780 -(S'best/1' -p64781 -S'best(${1:Node}) $2' -p64782 -tp64783 -a(S'best/2' -p64784 -S'best(${1:Node}, ${2:Options}) $3' -p64785 -tp64786 -a(S'format/1' -p64787 -S'format(${1:Node}) $2' -p64788 -tp64789 -a(S'format/2' -p64790 -S'format(${1:Node}, ${2:Options}) $3' -p64791 -tp64792 -a(S'get_ctxt_hook/1' -p64793 -S'get_ctxt_hook(${1:Ctxt}) $2' -p64794 -tp64795 -a(S'get_ctxt_linewidth/1' -p64796 -S'get_ctxt_linewidth(${1:Ctxt}) $2' -p64797 -tp64798 -a(S'get_ctxt_paperwidth/1' -p64799 -S'get_ctxt_paperwidth(${1:Ctxt}) $2' -p64800 -tp64801 -a(S'get_ctxt_precedence/1' -p64802 -S'get_ctxt_precedence(${1:Ctxt}) $2' -p64803 -tp64804 -a(S'get_ctxt_user/1' -p64805 -S'get_ctxt_user(${1:Ctxt}) $2' -p64806 -tp64807 -a(S'layout/1' -p64808 -S'layout(${1:Node}) $2' -p64809 -tp64810 -a(S'layout/2' -p64811 -S'layout(${1:Node}, ${2:Options}) $3' -p64812 -tp64813 -a(S'set_ctxt_hook/2' -p64814 -S'set_ctxt_hook(${1:Ctxt}, ${2:Hook}) $3' -p64815 -tp64816 -a(S'set_ctxt_linewidth/2' -p64817 -S'set_ctxt_linewidth(${1:Ctxt}, ${2:W}) $3' -p64818 -tp64819 -a(S'set_ctxt_paperwidth/2' -p64820 -S'set_ctxt_paperwidth(${1:Ctxt}, ${2:W}) $3' -p64821 -tp64822 -a(S'set_ctxt_precedence/2' -p64823 -S'set_ctxt_precedence(${1:Ctxt}, ${2:Prec}) $3' -p64824 -tp64825 -a(S'set_ctxt_user/2' -p64826 -S'set_ctxt_user(${1:Ctxt}, ${2:X}) $3' -p64827 -tp64828 -asS'ic_genobj' -p64829 -(lp64830 -(S'auxtab/1' -p64831 -S'auxtab(${1:G}) $2' -p64832 -tp64833 -a(S'do_gen/1' -p64834 -S'do_gen(${1:G}) $2' -p64835 -tp64836 -a(S'free_table_space/1' -p64837 -S'free_table_space(${1:G}) $2' -p64838 -tp64839 -a(S'helperfiled/1' -p64840 -S'helperfiled(${1:G}) $2' -p64841 -tp64842 -a(S'holderfiled/1' -p64843 -S'holderfiled(${1:G}) $2' -p64844 -tp64845 -a(S'hrlfiled/1' -p64846 -S'hrlfiled(${1:G}) $2' -p64847 -tp64848 -a(S'idlfile/1' -p64849 -S'idlfile(${1:G}) $2' -p64850 -tp64851 -a(S'impl/1' -p64852 -S'impl(${1:G}) $2' -p64853 -tp64854 -a(S'include_file/1' -p64855 -S'include_file(${1:G}) $2' -p64856 -tp64857 -a(S'include_file_stack/1' -p64858 -S'include_file_stack(${1:G}) $2' -p64859 -tp64860 -a(S'includefiled/1' -p64861 -S'includefiled(${1:G}) $2' -p64862 -tp64863 -a(S'interfacefiled/1' -p64864 -S'interfacefiled(${1:G}) $2' -p64865 -tp64866 -a(S'is_hrlfile_open/1' -p64867 -S'is_hrlfile_open(${1:G}) $2' -p64868 -tp64869 -a(S'is_skelfile_open/1' -p64870 -S'is_skelfile_open(${1:G}) $2' -p64871 -tp64872 -a(S'is_stubfile_open/1' -p64873 -S'is_stubfile_open(${1:G}) $2' -p64874 -tp64875 -a(S'module/1' -p64876 -S'module(${1:G}) $2' -p64877 -tp64878 -a(S'new/1' -p64879 -S'new(${1:Opts}) $2' -p64880 -tp64881 -a(S'optiontab/1' -p64882 -S'optiontab(${1:G}) $2' -p64883 -tp64884 -a(S'pop_file/2' -p64885 -S'pop_file(${1:G}, ${2:Id}) $3' -p64886 -tp64887 -a(S'pragmatab/1' -p64888 -S'pragmatab(${1:G}) $2' -p64889 -tp64890 -a(S'process_space/0' -p64891 -S'process_space() $1' -p64892 -tp64893 -a(S'push_file/2' -p64894 -S'push_file(${1:G}, ${2:Id}) $3' -p64895 -tp64896 -a(S'set_idlfile/2' -p64897 -S'set_idlfile(${1:G}, ${2:X}) $3' -p64898 -tp64899 -a(S'set_module/2' -p64900 -S'set_module(${1:G}, ${2:X}) $3' -p64901 -tp64902 -a(S'skelfiled/1' -p64903 -S'skelfiled(${1:G}) $2' -p64904 -tp64905 -a(S'skelscope/1' -p64906 -S'skelscope(${1:G}) $2' -p64907 -tp64908 -a(S'stubfiled/1' -p64909 -S'stubfiled(${1:G}) $2' -p64910 -tp64911 -a(S'stubscope/1' -p64912 -S'stubscope(${1:G}) $2' -p64913 -tp64914 -a(S'symtab/1' -p64915 -S'symtab(${1:G}) $2' -p64916 -tp64917 -a(S'sys_file/2' -p64918 -S'sys_file(${1:G}, ${2:Param2}) $3' -p64919 -tp64920 -a(S'tktab/1' -p64921 -S'tktab(${1:G}) $2' -p64922 -tp64923 -a(S'typedeftab/1' -p64924 -S'typedeftab(${1:G}) $2' -p64925 -tp64926 -asS'PullerSupplier_impl' -p64927 -(lp64928 -(S"'_get_MyAdmin'/3" -p64929 -S"'_get_MyAdmin'(${1:Param1}, ${2:Param2}, ${3:State}) $4" -p64930 -tp64931 -a(S"'_get_MyType'/3" -p64932 -S"'_get_MyType'(${1:Param1}, ${2:Param2}, ${3:State}) $4" -p64933 -tp64934 -a(S"'_get_lifetime_filter'/3" -p64935 -S"'_get_lifetime_filter'(${1:Param1}, ${2:Param2}, ${3:State}) $4" -p64936 -tp64937 -a(S"'_get_priority_filter'/3" -p64938 -S"'_get_priority_filter'(${1:Param1}, ${2:Param2}, ${3:State}) $4" -p64939 -tp64940 -a(S"'_set_lifetime_filter'/4" -p64941 -S"'_set_lifetime_filter'(${1:Param1}, ${2:Param2}, ${3:State}, ${4:LifeTF}) $5" -p64942 -tp64943 -a(S"'_set_priority_filter'/4" -p64944 -S"'_set_priority_filter'(${1:Param1}, ${2:Param2}, ${3:State}, ${4:PrioF}) $5" -p64945 -tp64946 -a(S'add_filter/4' -p64947 -S'add_filter(${1:Param1}, ${2:Param2}, ${3:State}, ${4:Filter}) $5' -p64948 -tp64949 -a(S'callAny/5' -p64950 -S'callAny(${1:Param1}, ${2:OE_FROM}, ${3:State}, ${4:EventIn}, ${5:Status}) $6' -p64951 -tp64952 -a(S'callSeq/5' -p64953 -S'callSeq(${1:Param1}, ${2:OE_FROM}, ${3:State}, ${4:EventsIn}, ${5:Status}) $6' -p64954 -tp64955 -a(S'code_change/3' -p64956 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p64957 -tp64958 -a(S'connect_any_pull_consumer/4' -p64959 -S'connect_any_pull_consumer(${1:Param1}, ${2:Param2}, ${3:State}, ${4:Client}) $5' -p64960 -tp64961 -a(S'connect_pull_consumer/4' -p64962 -S'connect_pull_consumer(${1:OE_THIS}, ${2:OE_FROM}, ${3:State}, ${4:Client}) $5' -p64963 -tp64964 -a(S'connect_sequence_pull_consumer/4' -p64965 -S'connect_sequence_pull_consumer(${1:Param1}, ${2:Param2}, ${3:State}, ${4:Client}) $5' -p64966 -tp64967 -a(S'connect_structured_pull_consumer/4' -p64968 -S'connect_structured_pull_consumer(${1:Param1}, ${2:Param2}, ${3:State}, ${4:Client}) $5' -p64969 -tp64970 -a(S'disconnect_pull_supplier/3' -p64971 -S'disconnect_pull_supplier(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p64972 -tp64973 -a(S'disconnect_sequence_pull_supplier/3' -p64974 -S'disconnect_sequence_pull_supplier(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p64975 -tp64976 -a(S'disconnect_structured_pull_supplier/3' -p64977 -S'disconnect_structured_pull_supplier(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p64978 -tp64979 -a(S'get_all_filters/3' -p64980 -S'get_all_filters(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p64981 -tp64982 -a(S'get_filter/4' -p64983 -S'get_filter(${1:Param1}, ${2:Param2}, ${3:State}, ${4:FilterID}) $5' -p64984 -tp64985 -a(S'get_qos/3' -p64986 -S'get_qos(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p64987 -tp64988 -a(S'handle_info/2' -p64989 -S'handle_info(${1:Info}, ${2:State}) $3' -p64990 -tp64991 -a(S'init/1' -p64992 -S'init(${1:Param1}) $2' -p64993 -tp64994 -a(S'obtain_offered_types/4' -p64995 -S'obtain_offered_types(${1:Param1}, ${2:Param2}, ${3:State}, ${4:What}) $5' -p64996 -tp64997 -a(S'pull/3' -p64998 -S'pull(${1:Param1}, ${2:OE_FROM}, ${3:State}) $4' -p64999 -tp65000 -a(S'pull_structured_event/3' -p65001 -S'pull_structured_event(${1:Param1}, ${2:OE_FROM}, ${3:State}) $4' -p65002 -tp65003 -a(S'pull_structured_events/4' -p65004 -S'pull_structured_events(${1:Param1}, ${2:OE_FROM}, ${3:State}, ${4:Max}) $5' -p65005 -tp65006 -a(S'remove_all_filters/3' -p65007 -S'remove_all_filters(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p65008 -tp65009 -a(S'remove_filter/4' -p65010 -S'remove_filter(${1:Param1}, ${2:Param2}, ${3:State}, ${4:FilterID}) $5' -p65011 -tp65012 -a(S'set_qos/4' -p65013 -S'set_qos(${1:Param1}, ${2:Param2}, ${3:State}, ${4:QoS}) $5' -p65014 -tp65015 -a(S'subscription_change/5' -p65016 -S'subscription_change(${1:Param1}, ${2:Param2}, ${3:State}, ${4:Added}, ${5:Removed}) $6' -p65017 -tp65018 -a(S'terminate/2' -p65019 -S'terminate(${1:Param1}, ${2:State}) $3' -p65020 -tp65021 -a(S'try_pull/3' -p65022 -S'try_pull(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p65023 -tp65024 -a(S'try_pull_structured_event/3' -p65025 -S'try_pull_structured_event(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p65026 -tp65027 -a(S'try_pull_structured_events/4' -p65028 -S'try_pull_structured_events(${1:Param1}, ${2:Param2}, ${3:State}, ${4:Max}) $5' -p65029 -tp65030 -a(S'validate_event_qos/4' -p65031 -S'validate_event_qos(${1:Param1}, ${2:Param2}, ${3:State}, ${4:RequiredQoS}) $5' -p65032 -tp65033 -a(S'validate_qos/4' -p65034 -S'validate_qos(${1:Param1}, ${2:Param2}, ${3:State}, ${4:Required_qos}) $5' -p65035 -tp65036 -asS'diameter_lib' -p65037 -(lp65038 -(S'error_report/2' -p65039 -S'error_report(${1:Reason}, ${2:MFA}) $3' -p65040 -tp65041 -a(S'eval/1' -p65042 -S'eval(${1:F}) $2' -p65043 -tp65044 -a(S'fold_tuple/3' -p65045 -S'fold_tuple(${1:N}, ${2:T}, ${3:T1}) $4' -p65046 -tp65047 -a(S'info_report/2' -p65048 -S'info_report(${1:Reason}, ${2:MFA}) $3' -p65049 -tp65050 -a(S'ip4address/1' -p65051 -S'ip4address(${1:Addr}) $2' -p65052 -tp65053 -a(S'ip6address/1' -p65054 -S'ip6address(${1:Addr}) $2' -p65055 -tp65056 -a(S'ipaddr/1' -p65057 -S'ipaddr(${1:Addr}) $2' -p65058 -tp65059 -a(S'log/4' -p65060 -S'log(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p65061 -tp65062 -a(S'now_diff/1' -p65063 -S'now_diff(${1:Time}) $2' -p65064 -tp65065 -a(S'report/2' -p65066 -S'report(${1:Reason}, ${2:MFA}) $3' -p65067 -tp65068 -a(S'spawn_opts/2' -p65069 -S'spawn_opts(${1:Param1}, ${2:Opts}) $3' -p65070 -tp65071 -a(S'time/1' -p65072 -S'time(${1:Time}) $2' -p65073 -tp65074 -a(S'wait/1' -p65075 -S'wait(${1:L}) $2' -p65076 -tp65077 -a(S'warning_report/2' -p65078 -S'warning_report(${1:Reason}, ${2:MFA}) $3' -p65079 -tp65080 -asS'snmpc_mib_gram' -p65081 -(lp65082 -(S'format_error/1' -p65083 -S'format_error(${1:Message}) $2' -p65084 -tp65085 -a(S'parse/1' -p65086 -S'parse(${1:Tokens}) $2' -p65087 -tp65088 -a(S'parse_and_scan/1' -p65089 -S'parse_and_scan(${1:Param1}) $2' -p65090 -tp65091 -asS'eunit_data' -p65092 -(lp65093 -(S'enter_context/3' -p65094 -S'enter_context(${1:Param1}, ${2:I}, ${3:F}) $4' -p65095 -tp65096 -a(S'get_module_tests/1' -p65097 -S'get_module_tests(${1:M}) $2' -p65098 -tp65099 -a(S'iter_id/1' -p65100 -S'iter_id(${1:Param1}) $2' -p65101 -tp65102 -a(S'iter_init/2' -p65103 -S'iter_init(${1:Tests}, ${2:ParentID}) $3' -p65104 -tp65105 -a(S'iter_next/1' -p65106 -S'iter_next(${1:Param1}) $2' -p65107 -tp65108 -a(S'iter_prev/1' -p65109 -S'iter_prev(${1:I}) $2' -p65110 -tp65111 -asS'dets' -p65112 -(lp65113 -(S'add_user/3' -p65114 -S'add_user(${1:Pid}, ${2:Tab}, ${3:Args}) $4' -p65115 -tp65116 -a(S'all/0' -p65117 -S'all() $1' -p65118 -tp65119 -a(S'bchunk/2' -p65120 -S'bchunk(${1:Name}, ${2:Continuation}) $3' -p65121 -tp65122 -a(S'close/1' -p65123 -S'close(${1:Name}) $2' -p65124 -tp65125 -a(S'delete/2' -p65126 -S'delete(${1:Name}, ${2:Key}) $3' -p65127 -tp65128 -a(S'delete_all_objects/1' -p65129 -S'delete_all_objects(${1:Name}) $2' -p65130 -tp65131 -a(S'delete_object/2' -p65132 -S'delete_object(${1:Name}, ${2:Object}) $3' -p65133 -tp65134 -a(S'file_info/1' -p65135 -S'file_info(${1:FileName}) $2' -p65136 -tp65137 -a(S'first/1' -p65138 -S'first(${1:Name}) $2' -p65139 -tp65140 -a(S'foldl/3' -p65141 -S'foldl(${1:Function}, ${2:Acc0}, ${3:Name}) $4' -p65142 -tp65143 -a(S'foldr/3' -p65144 -S'foldr(${1:Function}, ${2:Acc0}, ${3:Name}) $4' -p65145 -tp65146 -a(S'from_ets/2' -p65147 -S'from_ets(${1:Name}, ${2:EtsTab}) $3' -p65148 -tp65149 -a(S'fsck/1' -p65150 -S'fsck(${1:Fname}) $2' -p65151 -tp65152 -a(S'fsck/2' -p65153 -S'fsck(${1:Fname}, ${2:Version}) $3' -p65154 -tp65155 -a(S'get_head_field/2' -p65156 -S'get_head_field(${1:Fd}, ${2:Field}) $3' -p65157 -tp65158 -a(S'info/1' -p65159 -S'info(${1:Name}) $2' -p65160 -tp65161 -a(S'info/2' -p65162 -S'info(${1:Name}, ${2:Item}) $3' -p65163 -tp65164 -a(S'init/2' -p65165 -S'init(${1:Parent}, ${2:Server}) $3' -p65166 -tp65167 -a(S'init_table/2' -p65168 -S'init_table(${1:Name}, ${2:InitFun}) $3' -p65169 -tp65170 -a(S'init_table/3' -p65171 -S'init_table(${1:Name}, ${2:InitFun}, ${3:Options}) $4' -p65172 -tp65173 -a(S'insert/2' -p65174 -S'insert(${1:Name}, ${2:Objects}) $3' -p65175 -tp65176 -a(S'insert_new/2' -p65177 -S'insert_new(${1:Name}, ${2:Objects}) $3' -p65178 -tp65179 -a(S'internal_close/1' -p65180 -S'internal_close(${1:Pid}) $2' -p65181 -tp65182 -a(S'internal_open/3' -p65183 -S'internal_open(${1:Pid}, ${2:Ref}, ${3:Args}) $4' -p65184 -tp65185 -a(S'is_compatible_bchunk_format/2' -p65186 -S'is_compatible_bchunk_format(${1:Name}, ${2:BchunkFormat}) $3' -p65187 -tp65188 -a(S'is_dets_file/1' -p65189 -S'is_dets_file(${1:Filename}) $2' -p65190 -tp65191 -a(S'istart_link/1' -p65192 -S'istart_link(${1:Server}) $2' -p65193 -tp65194 -a(S'lookup/2' -p65195 -S'lookup(${1:Name}, ${2:Key}) $3' -p65196 -tp65197 -a(S'lookup_keys/2' -p65198 -S'lookup_keys(${1:Tab}, ${2:Keys}) $3' -p65199 -tp65200 -a(S'match/1' -p65201 -S'match(${1:Continuation}) $2' -p65202 -tp65203 -a(S'match/2' -p65204 -S'match(${1:Name}, ${2:Pattern}) $3' -p65205 -tp65206 -a(S'match/3' -p65207 -S'match(${1:Name}, ${2:Pattern}, ${3:N}) $4' -p65208 -tp65209 -a(S'match_delete/2' -p65210 -S'match_delete(${1:Name}, ${2:Pattern}) $3' -p65211 -tp65212 -a(S'match_object/1' -p65213 -S'match_object(${1:Continuation}) $2' -p65214 -tp65215 -a(S'match_object/2' -p65216 -S'match_object(${1:Name}, ${2:Pattern}) $3' -p65217 -tp65218 -a(S'match_object/3' -p65219 -S'match_object(${1:Name}, ${2:Pattern}, ${3:N}) $4' -p65220 -tp65221 -a(S'member/2' -p65222 -S'member(${1:Name}, ${2:Key}) $3' -p65223 -tp65224 -a(S'next/2' -p65225 -S'next(${1:Name}, ${2:Key1}) $3' -p65226 -tp65227 -a(S'open_file/1' -p65228 -S'open_file(${1:Filename}) $2' -p65229 -tp65230 -a(S'open_file/2' -p65231 -S'open_file(${1:Name}, ${2:Args}) $3' -p65232 -tp65233 -a(S'pid2name/1' -p65234 -S'pid2name(${1:Pid}) $2' -p65235 -tp65236 -a(S'remove_user/2' -p65237 -S'remove_user(${1:Pid}, ${2:From}) $3' -p65238 -tp65239 -a(S'repair_continuation/2' -p65240 -S'repair_continuation(${1:Continuation}, ${2:MatchSpec}) $3' -p65241 -tp65242 -a(S'safe_fixtable/2' -p65243 -S'safe_fixtable(${1:Name}, ${2:Fix}) $3' -p65244 -tp65245 -a(S'select/1' -p65246 -S'select(${1:Continuation}) $2' -p65247 -tp65248 -a(S'select/2' -p65249 -S'select(${1:Name}, ${2:MatchSpec}) $3' -p65250 -tp65251 -a(S'select/3' -p65252 -S'select(${1:Name}, ${2:MatchSpec}, ${3:N}) $4' -p65253 -tp65254 -a(S'select_delete/2' -p65255 -S'select_delete(${1:Name}, ${2:MatchSpec}) $3' -p65256 -tp65257 -a(S'slot/2' -p65258 -S'slot(${1:Name}, ${2:I}) $3' -p65259 -tp65260 -a(S'start/0' -p65261 -S'start() $1' -p65262 -tp65263 -a(S'stop/0' -p65264 -S'stop() $1' -p65265 -tp65266 -a(S'sync/1' -p65267 -S'sync(${1:Name}) $2' -p65268 -tp65269 -a(S'system_code_change/4' -p65270 -S'system_code_change(${1:State}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p65271 -tp65272 -a(S'system_continue/3' -p65273 -S'system_continue(${1:Param1}, ${2:Param2}, ${3:Head}) $4' -p65274 -tp65275 -a(S'system_terminate/4' -p65276 -S'system_terminate(${1:Reason}, ${2:Param2}, ${3:Param3}, ${4:Head}) $5' -p65277 -tp65278 -a(S'table/1' -p65279 -S'table(${1:Name}) $2' -p65280 -tp65281 -a(S'table/2' -p65282 -S'table(${1:Name}, ${2:InitFun}) $3' -p65283 -tp65284 -a(S'to_ets/2' -p65285 -S'to_ets(${1:Name}, ${2:EtsTab}) $3' -p65286 -tp65287 -a(S'traverse/2' -p65288 -S'traverse(${1:Name}, ${2:Fun}) $3' -p65289 -tp65290 -a(S'update_counter/3' -p65291 -S'update_counter(${1:Name}, ${2:Key}, ${3:Increment}) $4' -p65292 -tp65293 -a(S'verbose/0' -p65294 -S'verbose() $1' -p65295 -tp65296 -a(S'verbose/1' -p65297 -S'verbose(${1:What}) $2' -p65298 -tp65299 -a(S'view/1' -p65300 -S'view(${1:FileName}) $2' -p65301 -tp65302 -a(S'where/2' -p65303 -S'where(${1:Tab}, ${2:Object}) $3' -p65304 -tp65305 -asS'snmpa_vacm' -p65306 -(lp65307 -(S'backup/1' -p65308 -S'backup(${1:BackupDir}) $2' -p65309 -tp65310 -a(S'cleanup/0' -p65311 -S'cleanup() $1' -p65312 -tp65313 -a(S'delete/1' -p65314 -S'delete(${1:Key}) $2' -p65315 -tp65316 -a(S'dump_table/0' -p65317 -S'dump_table() $1' -p65318 -tp65319 -a(S'get_mib_view/5' -p65320 -S'get_mib_view(${1:ViewType}, ${2:SecModel}, ${3:SecName}, ${4:SecLevel}, ${5:ContextName}) $6' -p65321 -tp65322 -a(S'get_next_row/1' -p65323 -S'get_next_row(${1:Key}) $2' -p65324 -tp65325 -a(S'get_row/1' -p65326 -S'get_row(${1:Key}) $2' -p65327 -tp65328 -a(S'init/1' -p65329 -S'init(${1:Dir}) $2' -p65330 -tp65331 -a(S'init/2' -p65332 -S'init(${1:Dir}, ${2:InitError}) $3' -p65333 -tp65334 -a(S'insert/1' -p65335 -S'insert(${1:Entries}) $2' -p65336 -tp65337 -a(S'insert/2' -p65338 -S'insert(${1:Entries}, ${2:Dump}) $3' -p65339 -tp65340 -asS'wxGridSizer' -p65341 -(lp65342 -(S'add/2' -p65343 -S'add(${1:This}, ${2:Window}) $3' -p65344 -tp65345 -a(S'add/3' -p65346 -S'add(${1:This}, ${2:Width}, ${3:Height}) $4' -p65347 -tp65348 -a(S'add/4' -p65349 -S'add(${1:This}, ${2:Width}, ${3:Height}, ${4:Options}) $5' -p65350 -tp65351 -a(S'addSpacer/2' -p65352 -S'addSpacer(${1:This}, ${2:Size}) $3' -p65353 -tp65354 -a(S'addStretchSpacer/1' -p65355 -S'addStretchSpacer(${1:This}) $2' -p65356 -tp65357 -a(S'addStretchSpacer/2' -p65358 -S'addStretchSpacer(${1:This}, ${2:Options}) $3' -p65359 -tp65360 -a(S'calcMin/1' -p65361 -S'calcMin(${1:This}) $2' -p65362 -tp65363 -a(S'clear/1' -p65364 -S'clear(${1:This}) $2' -p65365 -tp65366 -a(S'clear/2' -p65367 -S'clear(${1:This}, ${2:Options}) $3' -p65368 -tp65369 -a(S'destroy/1' -p65370 -S'destroy(${1:This}) $2' -p65371 -tp65372 -a(S'detach/2' -p65373 -S'detach(${1:This}, ${2:Index}) $3' -p65374 -tp65375 -a(S'fit/2' -p65376 -S'fit(${1:This}, ${2:Window}) $3' -p65377 -tp65378 -a(S'fitInside/2' -p65379 -S'fitInside(${1:This}, ${2:Window}) $3' -p65380 -tp65381 -a(S'getChildren/1' -p65382 -S'getChildren(${1:This}) $2' -p65383 -tp65384 -a(S'getCols/1' -p65385 -S'getCols(${1:This}) $2' -p65386 -tp65387 -a(S'getHGap/1' -p65388 -S'getHGap(${1:This}) $2' -p65389 -tp65390 -a(S'getItem/2' -p65391 -S'getItem(${1:This}, ${2:Window}) $3' -p65392 -tp65393 -a(S'getItem/3' -p65394 -S'getItem(${1:This}, ${2:Window}, ${3:Options}) $4' -p65395 -tp65396 -a(S'getMinSize/1' -p65397 -S'getMinSize(${1:This}) $2' -p65398 -tp65399 -a(S'getPosition/1' -p65400 -S'getPosition(${1:This}) $2' -p65401 -tp65402 -a(S'getRows/1' -p65403 -S'getRows(${1:This}) $2' -p65404 -tp65405 -a(S'getSize/1' -p65406 -S'getSize(${1:This}) $2' -p65407 -tp65408 -a(S'getVGap/1' -p65409 -S'getVGap(${1:This}) $2' -p65410 -tp65411 -a(S'hide/2' -p65412 -S'hide(${1:This}, ${2:Window}) $3' -p65413 -tp65414 -a(S'hide/3' -p65415 -S'hide(${1:This}, ${2:Window}, ${3:Options}) $4' -p65416 -tp65417 -a(S'insert/3' -p65418 -S'insert(${1:This}, ${2:Index}, ${3:Item}) $4' -p65419 -tp65420 -a(S'insert/4' -p65421 -S'insert(${1:This}, ${2:Index}, ${3:Width}, ${4:Height}) $5' -p65422 -tp65423 -a(S'insert/5' -p65424 -S'insert(${1:This}, ${2:Index}, ${3:Width}, ${4:Height}, ${5:Options}) $6' -p65425 -tp65426 -a(S'insertSpacer/3' -p65427 -S'insertSpacer(${1:This}, ${2:Index}, ${3:Size}) $4' -p65428 -tp65429 -a(S'insertStretchSpacer/2' -p65430 -S'insertStretchSpacer(${1:This}, ${2:Index}) $3' -p65431 -tp65432 -a(S'insertStretchSpacer/3' -p65433 -S'insertStretchSpacer(${1:This}, ${2:Index}, ${3:Options}) $4' -p65434 -tp65435 -a(S'isShown/2' -p65436 -S'isShown(${1:This}, ${2:Index}) $3' -p65437 -tp65438 -a(S'layout/1' -p65439 -S'layout(${1:This}) $2' -p65440 -tp65441 -a(S'new/1' -p65442 -S'new(${1:Cols}) $2' -p65443 -tp65444 -a(S'new/2' -p65445 -S'new(${1:Cols}, ${2:Param2}) $3' -p65446 -tp65447 -a(S'new/4' -p65448 -S'new(${1:Rows}, ${2:Cols}, ${3:Vgap}, ${4:Hgap}) $5' -p65449 -tp65450 -a(S'parent_class/1' -p65451 -S'parent_class(${1:Param1}) $2' -p65452 -tp65453 -a(S'prepend/2' -p65454 -S'prepend(${1:This}, ${2:Item}) $3' -p65455 -tp65456 -a(S'prepend/3' -p65457 -S'prepend(${1:This}, ${2:Width}, ${3:Height}) $4' -p65458 -tp65459 -a(S'prepend/4' -p65460 -S'prepend(${1:This}, ${2:Width}, ${3:Height}, ${4:Options}) $5' -p65461 -tp65462 -a(S'prependSpacer/2' -p65463 -S'prependSpacer(${1:This}, ${2:Size}) $3' -p65464 -tp65465 -a(S'prependStretchSpacer/1' -p65466 -S'prependStretchSpacer(${1:This}) $2' -p65467 -tp65468 -a(S'prependStretchSpacer/2' -p65469 -S'prependStretchSpacer(${1:This}, ${2:Options}) $3' -p65470 -tp65471 -a(S'recalcSizes/1' -p65472 -S'recalcSizes(${1:This}) $2' -p65473 -tp65474 -a(S'remove/2' -p65475 -S'remove(${1:This}, ${2:Index}) $3' -p65476 -tp65477 -a(S'replace/3' -p65478 -S'replace(${1:This}, ${2:Oldwin}, ${3:Newwin}) $4' -p65479 -tp65480 -a(S'replace/4' -p65481 -S'replace(${1:This}, ${2:Oldwin}, ${3:Newwin}, ${4:Options}) $5' -p65482 -tp65483 -a(S'setCols/2' -p65484 -S'setCols(${1:This}, ${2:Cols}) $3' -p65485 -tp65486 -a(S'setDimension/5' -p65487 -S'setDimension(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p65488 -tp65489 -a(S'setHGap/2' -p65490 -S'setHGap(${1:This}, ${2:Gap}) $3' -p65491 -tp65492 -a(S'setItemMinSize/3' -p65493 -S'setItemMinSize(${1:This}, ${2:Index}, ${3:Size}) $4' -p65494 -tp65495 -a(S'setItemMinSize/4' -p65496 -S'setItemMinSize(${1:This}, ${2:Index}, ${3:Width}, ${4:Height}) $5' -p65497 -tp65498 -a(S'setMinSize/2' -p65499 -S'setMinSize(${1:This}, ${2:Size}) $3' -p65500 -tp65501 -a(S'setMinSize/3' -p65502 -S'setMinSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p65503 -tp65504 -a(S'setRows/2' -p65505 -S'setRows(${1:This}, ${2:Rows}) $3' -p65506 -tp65507 -a(S'setSizeHints/2' -p65508 -S'setSizeHints(${1:This}, ${2:Window}) $3' -p65509 -tp65510 -a(S'setVGap/2' -p65511 -S'setVGap(${1:This}, ${2:Gap}) $3' -p65512 -tp65513 -a(S'setVirtualSizeHints/2' -p65514 -S'setVirtualSizeHints(${1:This}, ${2:Window}) $3' -p65515 -tp65516 -a(S'show/2' -p65517 -S'show(${1:This}, ${2:Index}) $3' -p65518 -tp65519 -a(S'show/3' -p65520 -S'show(${1:This}, ${2:Index}, ${3:Options}) $4' -p65521 -tp65522 -asS'megaco_config' -p65523 -(lp65524 -(S'autoconnect/4' -p65525 -S'autoconnect(${1:RH}, ${2:RemoteMid}, ${3:SendHandle}, ${4:ControlPid}) $5' -p65526 -tp65527 -a(S'code_change/3' -p65528 -S'code_change(${1:Param1}, ${2:S}, ${3:Param3}) $4' -p65529 -tp65530 -a(S'conn_info/2' -p65531 -S'conn_info(${1:Data}, ${2:Item}) $3' -p65532 -tp65533 -a(S'connect/4' -p65534 -S'connect(${1:RH}, ${2:RemoteMid}, ${3:SendHandle}, ${4:ControlPid}) $5' -p65535 -tp65536 -a(S'connect_remote/3' -p65537 -S'connect_remote(${1:ConnHandle}, ${2:UserNode}, ${3:Ref}) $4' -p65538 -tp65539 -a(S'cre_pending_counter/1' -p65540 -S'cre_pending_counter(${1:TransId}) $2' -p65541 -tp65542 -a(S'cre_pending_counter/3' -p65543 -S'cre_pending_counter(${1:Direction}, ${2:TransId}, ${3:Initial}) $4' -p65544 -tp65545 -a(S'cre_reply_counter/2' -p65546 -S'cre_reply_counter(${1:ConnHandle}, ${2:TransId}) $3' -p65547 -tp65548 -a(S'del_pending_counter/1' -p65549 -S'del_pending_counter(${1:TransId}) $2' -p65550 -tp65551 -a(S'del_pending_counter/2' -p65552 -S'del_pending_counter(${1:Direction}, ${2:TransId}) $3' -p65553 -tp65554 -a(S'del_reply_counter/2' -p65555 -S'del_reply_counter(${1:ConnHandle}, ${2:TransId}) $3' -p65556 -tp65557 -a(S'disconnect/1' -p65558 -S'disconnect(${1:ConnHandle}) $2' -p65559 -tp65560 -a(S'disconnect_remote/2' -p65561 -S'disconnect_remote(${1:ConnHandle}, ${2:UserNode}) $3' -p65562 -tp65563 -a(S'finish_connect/4' -p65564 -S'finish_connect(${1:ConnHandle}, ${2:SendHandle}, ${3:ControlPid}, ${4:MFA}) $5' -p65565 -tp65566 -a(S'get_pending_counter/1' -p65567 -S'get_pending_counter(${1:TransId}) $2' -p65568 -tp65569 -a(S'get_pending_counter/2' -p65570 -S'get_pending_counter(${1:Direction}, ${2:TransId}) $3' -p65571 -tp65572 -a(S'get_reply_counter/2' -p65573 -S'get_reply_counter(${1:ConnHandle}, ${2:TransId}) $3' -p65574 -tp65575 -a(S'handle_call/3' -p65576 -S'handle_call(${1:Req}, ${2:From}, ${3:S}) $4' -p65577 -tp65578 -a(S'handle_cast/2' -p65579 -S'handle_cast(${1:Msg}, ${2:S}) $3' -p65580 -tp65581 -a(S'handle_info/2' -p65582 -S'handle_info(${1:Info}, ${2:S}) $3' -p65583 -tp65584 -a(S'incr_pending_counter/1' -p65585 -S'incr_pending_counter(${1:TransId}) $2' -p65586 -tp65587 -a(S'incr_pending_counter/2' -p65588 -S'incr_pending_counter(${1:Direction}, ${2:TransId}) $3' -p65589 -tp65590 -a(S'incr_reply_counter/2' -p65591 -S'incr_reply_counter(${1:ConnHandle}, ${2:TransId}) $3' -p65592 -tp65593 -a(S'incr_trans_id_counter/1' -p65594 -S'incr_trans_id_counter(${1:ConnHandle}) $2' -p65595 -tp65596 -a(S'incr_trans_id_counter/2' -p65597 -S'incr_trans_id_counter() $1' -p65598 -tp65599 -a(S'init/1' -p65600 -S'init(${1:Param1}) $2' -p65601 -tp65602 -a(S'init_conn_data/4' -p65603 -S'init_conn_data(${1:RH}, ${2:RemoteMid}, ${3:SendHandle}, ${4:ControlPid}) $5' -p65604 -tp65605 -a(S'lookup_local_conn/1' -p65606 -S'lookup_local_conn(${1:Handle}) $2' -p65607 -tp65608 -a(S'start_link/0' -p65609 -S'start_link() $1' -p65610 -tp65611 -a(S'start_user/2' -p65612 -S'start_user(${1:UserMid}, ${2:Config}) $3' -p65613 -tp65614 -a(S'stop/0' -p65615 -S'stop() $1' -p65616 -tp65617 -a(S'stop_user/1' -p65618 -S'stop_user(${1:UserMid}) $2' -p65619 -tp65620 -a(S'system_info/1' -p65621 -S'system_info(${1:Item}) $2' -p65622 -tp65623 -a(S'terminate/2' -p65624 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p65625 -tp65626 -a(S'trans_sender_exit/2' -p65627 -S'trans_sender_exit(${1:Reason}, ${2:CH}) $3' -p65628 -tp65629 -a(S'update_conn_info/3' -p65630 -S'update_conn_info(${1:BadHandle}, ${2:Item}, ${3:Val}) $4' -p65631 -tp65632 -a(S'update_user_info/3' -p65633 -S'update_user_info(${1:UserMid}, ${2:Item}, ${3:Val}) $4' -p65634 -tp65635 -a(S'user_info/2' -p65636 -S'user_info(${1:UserMid}, ${2:Item}) $3' -p65637 -tp65638 -a(S'verify_val/2' -p65639 -S'verify_val(${1:Item}, ${2:Val}) $3' -p65640 -tp65641 -asS'ssl_app' -p65642 -(lp65643 -(S'start/2' -p65644 -S'start(${1:Param1}, ${2:Param2}) $3' -p65645 -tp65646 -a(S'stop/1' -p65647 -S'stop(${1:Param1}) $2' -p65648 -tp65649 -asS'reltool_utils' -p65650 -(lp65651 -(S'add_warning/3' -p65652 -S'add_warning(${1:Format}, ${2:Args}, ${3:Param3}) $4' -p65653 -tp65654 -a(S'app_dir_test/2' -p65655 -S'app_dir_test(${1:Dir1}, ${2:Dir2}) $3' -p65656 -tp65657 -a(S'assign_image_list/1' -p65658 -S'assign_image_list(${1:ListCtrl}) $2' -p65659 -tp65660 -a(S'call/2' -p65661 -S'call(${1:Name}, ${2:Msg}) $3' -p65662 -tp65663 -a(S'cast/2' -p65664 -S'cast(${1:Pid}, ${2:Msg}) $3' -p65665 -tp65666 -a(S'choose_default/3' -p65667 -S'choose_default(${1:Tag}, ${2:Param2}, ${3:Param3}) $4' -p65668 -tp65669 -a(S'copy_file/2' -p65670 -S'copy_file(${1:From}, ${2:To}) $3' -p65671 -tp65672 -a(S'create_dir/1' -p65673 -S'create_dir(${1:Dir}) $2' -p65674 -tp65675 -a(S'decode_regexps/3' -p65676 -S'decode_regexps(${1:Key}, ${2:Regexps}, ${3:Old}) $4' -p65677 -tp65678 -a(S'default_rels/0' -p65679 -S'default_rels() $1' -p65680 -tp65681 -a(S'default_val/2' -p65682 -S'default_val(${1:Val}, ${2:Default}) $3' -p65683 -tp65684 -a(S'delete/2' -p65685 -S'delete(${1:File}, ${2:Type}) $3' -p65686 -tp65687 -a(S'elem_to_index/2' -p65688 -S'elem_to_index(${1:Elem}, ${2:List}) $3' -p65689 -tp65690 -a(S'erl_libs/0' -p65691 -S'erl_libs() $1' -p65692 -tp65693 -a(S'escript_foldl/3' -p65694 -S'escript_foldl(${1:Fun}, ${2:Acc}, ${3:File}) $4' -p65695 -tp65696 -a(S'get_column_width/1' -p65697 -S'get_column_width(${1:ListCtrl}) $2' -p65698 -tp65699 -a(S'get_item/1' -p65700 -S'get_item(${1:ListCtrl}) $2' -p65701 -tp65702 -a(S'get_items/1' -p65703 -S'get_items(${1:ListCtrl}) $2' -p65704 -tp65705 -a(S'get_latest_resize/1' -p65706 -S'get_latest_resize(${1:Wx}) $2' -p65707 -tp65708 -a(S'get_selected_items/3' -p65709 -S'get_selected_items(${1:ListCtrl}, ${2:PrevItem}, ${3:Acc}) $4' -p65710 -tp65711 -a(S'incl_cond_to_index/1' -p65712 -S'incl_cond_to_index(${1:ModCond}) $2' -p65713 -tp65714 -a(S'incl_conds/0' -p65715 -S'incl_conds() $1' -p65716 -tp65717 -a(S'lib_dirs/1' -p65718 -S'lib_dirs(${1:Dir}) $2' -p65719 -tp65720 -a(S'list_dir/1' -p65721 -S'list_dir(${1:Dir}) $2' -p65722 -tp65723 -a(S'list_to_incl_cond/1' -p65724 -S'list_to_incl_cond(${1:List}) $2' -p65725 -tp65726 -a(S'list_to_mod_cond/1' -p65727 -S'list_to_mod_cond(${1:List}) $2' -p65728 -tp65729 -a(S'mod_cond_to_index/1' -p65730 -S'mod_cond_to_index(${1:ModCond}) $2' -p65731 -tp65732 -a(S'mod_conds/0' -p65733 -S'mod_conds() $1' -p65734 -tp65735 -a(S'normalize_dir/1' -p65736 -S'normalize_dir(${1:RelDir}) $2' -p65737 -tp65738 -a(S'prim_consult/1' -p65739 -S'prim_consult(${1:Bin}) $2' -p65740 -tp65741 -a(S'print/4' -p65742 -S'print(${1:X}, ${2:X}, ${3:Format}, ${4:Args}) $5' -p65743 -tp65744 -a(S'read_file/1' -p65745 -S'read_file(${1:File}) $2' -p65746 -tp65747 -a(S'read_file_info/1' -p65748 -S'read_file_info(${1:File}) $2' -p65749 -tp65750 -a(S'recursive_copy_file/2' -p65751 -S'recursive_copy_file(${1:From}, ${2:To}) $3' -p65752 -tp65753 -a(S'recursive_delete/1' -p65754 -S'recursive_delete(${1:Dir}) $2' -p65755 -tp65756 -a(S'reply/3' -p65757 -S'reply(${1:Pid}, ${2:Ref}, ${3:Msg}) $4' -p65758 -tp65759 -a(S'root_dir/0' -p65760 -S'root_dir() $1' -p65761 -tp65762 -a(S'safe_keysearch/5' -p65763 -S'safe_keysearch(${1:Key}, ${2:Pos}, ${3:List}, ${4:Mod}, ${5:Line}) $6' -p65764 -tp65765 -a(S'select_item/2' -p65766 -S'select_item(${1:ListCtrl}, ${2:Param2}) $3' -p65767 -tp65768 -a(S'select_items/3' -p65769 -S'select_items(${1:ListCtrl}, ${2:OldItems}, ${3:Items}) $4' -p65770 -tp65771 -a(S'split_app_dir/1' -p65772 -S'split_app_dir(${1:Dir}) $2' -p65773 -tp65774 -a(S'split_app_name/1' -p65775 -S'split_app_name(${1:Name}) $2' -p65776 -tp65777 -a(S'throw_error/2' -p65778 -S'throw_error(${1:Format}, ${2:Args}) $3' -p65779 -tp65780 -a(S'wait_for_stop_motion/2' -p65781 -S'wait_for_stop_motion(${1:ObjRef}, ${2:Pos}) $3' -p65782 -tp65783 -a(S'write_file/2' -p65784 -S'write_file(${1:File}, ${2:IoList}) $3' -p65785 -tp65786 -a(S'write_file_info/2' -p65787 -S'write_file_info(${1:File}, ${2:Info}) $3' -p65788 -tp65789 -asS'error_handler' -p65790 -(lp65791 -(S'breakpoint/3' -p65792 -S'breakpoint(${1:Module}, ${2:Func}, ${3:Args}) $4' -p65793 -tp65794 -a(S'stub_function/3' -p65795 -S'stub_function(${1:Mod}, ${2:Func}, ${3:Args}) $4' -p65796 -tp65797 -a(S'undefined_function/3' -p65798 -S'undefined_function(${1:Module}, ${2:Function}, ${3:Args}) $4' -p65799 -tp65800 -a(S'undefined_lambda/3' -p65801 -S'undefined_lambda(${1:Module}, ${2:Fun}, ${3:Args}) $4' -p65802 -tp65803 -asS'io_lib' -p65804 -(lp65805 -(S'char_list/1' -p65806 -S'char_list(${1:Term}) $2' -p65807 -tp65808 -a(S'collect_chars/3' -p65809 -S'collect_chars(${1:Tag}, ${2:Data}, ${3:N}) $4' -p65810 -tp65811 -a(S'collect_chars/4' -p65812 -S'collect_chars(${1:Param1}, ${2:Data}, ${3:Param3}, ${4:N}) $5' -p65813 -tp65814 -a(S'collect_line/2' -p65815 -S'collect_line(${1:Param1}, ${2:Chars}) $3' -p65816 -tp65817 -a(S'collect_line/3' -p65818 -S'collect_line(${1:Tag}, ${2:Data}, ${3:Any}) $4' -p65819 -tp65820 -a(S'collect_line/4' -p65821 -S'collect_line(${1:Stack}, ${2:Data}, ${3:Encoding}, ${4:Param4}) $5' -p65822 -tp65823 -a(S'deep_char_list/1' -p65824 -S'deep_char_list(${1:Term}) $2' -p65825 -tp65826 -a(S'deep_unicode_char_list/1' -p65827 -S'deep_unicode_char_list(${1:Cs}) $2' -p65828 -tp65829 -a(S'format/2' -p65830 -S'format(${1:Format}, ${2:Data}) $3' -p65831 -tp65832 -a(S'format_prompt/1' -p65833 -S'format_prompt(${1:Prompt}) $2' -p65834 -tp65835 -a(S'fread/2' -p65836 -S'fread(${1:Format}, ${2:String}) $3' -p65837 -tp65838 -a(S'fread/3' -p65839 -S'fread(${1:Continuation}, ${2:CharSpec}, ${3:Format}) $4' -p65840 -tp65841 -a(S'fwrite/2' -p65842 -S'fwrite(${1:Format}, ${2:Data}) $3' -p65843 -tp65844 -a(S'get_until/3' -p65845 -S'get_until(${1:Any}, ${2:Data}, ${3:Arg}) $4' -p65846 -tp65847 -a(S'get_until/4' -p65848 -S'get_until(${1:Cont}, ${2:Data}, ${3:Encoding}, ${4:XtraArg}) $5' -p65849 -tp65850 -a(S'indentation/2' -p65851 -S'indentation(${1:String}, ${2:StartIndent}) $3' -p65852 -tp65853 -a(S'nl/0' -p65854 -S'nl() $1' -p65855 -tp65856 -a(S'print/1' -p65857 -S'print(${1:Term}) $2' -p65858 -tp65859 -a(S'print/4' -p65860 -S'print(${1:Term}, ${2:Column}, ${3:LineLength}, ${4:Depth}) $5' -p65861 -tp65862 -a(S'printable_list/1' -p65863 -S'printable_list(${1:Term}) $2' -p65864 -tp65865 -a(S'printable_unicode_list/1' -p65866 -S'printable_unicode_list(${1:Param1}) $2' -p65867 -tp65868 -a(S'quote_atom/2' -p65869 -S'quote_atom(${1:Atom}, ${2:Cs0}) $3' -p65870 -tp65871 -a(S'unicode_char_list/1' -p65872 -S'unicode_char_list(${1:Cs}) $2' -p65873 -tp65874 -a(S'write/1' -p65875 -S'write(${1:Term}) $2' -p65876 -tp65877 -a(S'write/2' -p65878 -S'write(${1:Format}, ${2:Data}) $3' -p65879 -tp65880 -a(S'write/3' -p65881 -S'write(${1:Term}, ${2:D}, ${3:Param3}) $4' -p65882 -tp65883 -a(S'write_atom/1' -p65884 -S'write_atom(${1:Atom}) $2' -p65885 -tp65886 -a(S'write_char/1' -p65887 -S'write_char(${1:Char}) $2' -p65888 -tp65889 -a(S'write_string/1' -p65890 -S'write_string(${1:String}) $2' -p65891 -tp65892 -a(S'write_string/2' -p65893 -S'write_string(${1:S}, ${2:Q}) $3' -p65894 -tp65895 -a(S'write_unicode_char/1' -p65896 -S'write_unicode_char(${1:Uni}) $2' -p65897 -tp65898 -a(S'write_unicode_string/1' -p65899 -S'write_unicode_string(${1:S}) $2' -p65900 -tp65901 -a(S'write_unicode_string/2' -p65902 -S'write_unicode_string(${1:S}, ${2:Q}) $3' -p65903 -tp65904 -asS'CosEventDomainAdmin_Connection' -p65905 -(lp65906 -(S'id/0' -p65907 -S'id() $1' -p65908 -tp65909 -a(S'name/0' -p65910 -S'name() $1' -p65911 -tp65912 -a(S'tc/0' -p65913 -S'tc() $1' -p65914 -tp65915 -asS'v3_life' -p65916 -(lp65917 -(S'module/2' -p65918 -S'module(${1:Param1}, ${2:Param2}) $3' -p65919 -tp65920 -a(S'vdb_find/2' -p65921 -S'vdb_find(${1:V}, ${2:Vdb}) $3' -p65922 -tp65923 -asS'wxFileDataObject' -p65924 -(lp65925 -(S'addFile/2' -p65926 -S'addFile(${1:This}, ${2:Filename}) $3' -p65927 -tp65928 -a(S'destroy/1' -p65929 -S'destroy(${1:This}) $2' -p65930 -tp65931 -a(S'getFilenames/1' -p65932 -S'getFilenames(${1:This}) $2' -p65933 -tp65934 -a(S'new/0' -p65935 -S'new() $1' -p65936 -tp65937 -a(S'parent_class/1' -p65938 -S'parent_class(${1:Param1}) $2' -p65939 -tp65940 -asS'wxStyledTextCtrl' -p65941 -(lp65942 -(S'addStyledText/2' -p65943 -S'addStyledText(${1:This}, ${2:Data}) $3' -p65944 -tp65945 -a(S'addText/2' -p65946 -S'addText(${1:This}, ${2:Text}) $3' -p65947 -tp65948 -a(S'addTextRaw/2' -p65949 -S'addTextRaw(${1:This}, ${2:Text}) $3' -p65950 -tp65951 -a(S'allocate/2' -p65952 -S'allocate(${1:This}, ${2:Bytes}) $3' -p65953 -tp65954 -a(S'appendText/2' -p65955 -S'appendText(${1:This}, ${2:Text}) $3' -p65956 -tp65957 -a(S'appendTextRaw/2' -p65958 -S'appendTextRaw(${1:This}, ${2:Text}) $3' -p65959 -tp65960 -a(S'autoCompActive/1' -p65961 -S'autoCompActive(${1:This}) $2' -p65962 -tp65963 -a(S'autoCompCancel/1' -p65964 -S'autoCompCancel(${1:This}) $2' -p65965 -tp65966 -a(S'autoCompComplete/1' -p65967 -S'autoCompComplete(${1:This}) $2' -p65968 -tp65969 -a(S'autoCompGetAutoHide/1' -p65970 -S'autoCompGetAutoHide(${1:This}) $2' -p65971 -tp65972 -a(S'autoCompGetCancelAtStart/1' -p65973 -S'autoCompGetCancelAtStart(${1:This}) $2' -p65974 -tp65975 -a(S'autoCompGetChooseSingle/1' -p65976 -S'autoCompGetChooseSingle(${1:This}) $2' -p65977 -tp65978 -a(S'autoCompGetCurrent/1' -p65979 -S'autoCompGetCurrent(${1:This}) $2' -p65980 -tp65981 -a(S'autoCompGetDropRestOfWord/1' -p65982 -S'autoCompGetDropRestOfWord(${1:This}) $2' -p65983 -tp65984 -a(S'autoCompGetIgnoreCase/1' -p65985 -S'autoCompGetIgnoreCase(${1:This}) $2' -p65986 -tp65987 -a(S'autoCompGetMaxHeight/1' -p65988 -S'autoCompGetMaxHeight(${1:This}) $2' -p65989 -tp65990 -a(S'autoCompGetMaxWidth/1' -p65991 -S'autoCompGetMaxWidth(${1:This}) $2' -p65992 -tp65993 -a(S'autoCompGetSeparator/1' -p65994 -S'autoCompGetSeparator(${1:This}) $2' -p65995 -tp65996 -a(S'autoCompGetTypeSeparator/1' -p65997 -S'autoCompGetTypeSeparator(${1:This}) $2' -p65998 -tp65999 -a(S'autoCompPosStart/1' -p66000 -S'autoCompPosStart(${1:This}) $2' -p66001 -tp66002 -a(S'autoCompSelect/2' -p66003 -S'autoCompSelect(${1:This}, ${2:Text}) $3' -p66004 -tp66005 -a(S'autoCompSetAutoHide/2' -p66006 -S'autoCompSetAutoHide(${1:This}, ${2:AutoHide}) $3' -p66007 -tp66008 -a(S'autoCompSetCancelAtStart/2' -p66009 -S'autoCompSetCancelAtStart(${1:This}, ${2:Cancel}) $3' -p66010 -tp66011 -a(S'autoCompSetChooseSingle/2' -p66012 -S'autoCompSetChooseSingle(${1:This}, ${2:ChooseSingle}) $3' -p66013 -tp66014 -a(S'autoCompSetDropRestOfWord/2' -p66015 -S'autoCompSetDropRestOfWord(${1:This}, ${2:DropRestOfWord}) $3' -p66016 -tp66017 -a(S'autoCompSetFillUps/2' -p66018 -S'autoCompSetFillUps(${1:This}, ${2:CharacterSet}) $3' -p66019 -tp66020 -a(S'autoCompSetIgnoreCase/2' -p66021 -S'autoCompSetIgnoreCase(${1:This}, ${2:IgnoreCase}) $3' -p66022 -tp66023 -a(S'autoCompSetMaxHeight/2' -p66024 -S'autoCompSetMaxHeight(${1:This}, ${2:RowCount}) $3' -p66025 -tp66026 -a(S'autoCompSetMaxWidth/2' -p66027 -S'autoCompSetMaxWidth(${1:This}, ${2:CharacterCount}) $3' -p66028 -tp66029 -a(S'autoCompSetSeparator/2' -p66030 -S'autoCompSetSeparator(${1:This}, ${2:SeparatorCharacter}) $3' -p66031 -tp66032 -a(S'autoCompSetTypeSeparator/2' -p66033 -S'autoCompSetTypeSeparator(${1:This}, ${2:SeparatorCharacter}) $3' -p66034 -tp66035 -a(S'autoCompShow/3' -p66036 -S'autoCompShow(${1:This}, ${2:LenEntered}, ${3:ItemList}) $4' -p66037 -tp66038 -a(S'autoCompStops/2' -p66039 -S'autoCompStops(${1:This}, ${2:CharacterSet}) $3' -p66040 -tp66041 -a(S'backTab/1' -p66042 -S'backTab(${1:This}) $2' -p66043 -tp66044 -a(S'beginUndoAction/1' -p66045 -S'beginUndoAction(${1:This}) $2' -p66046 -tp66047 -a(S'braceBadLight/2' -p66048 -S'braceBadLight(${1:This}, ${2:Pos}) $3' -p66049 -tp66050 -a(S'braceHighlight/3' -p66051 -S'braceHighlight(${1:This}, ${2:Pos1}, ${3:Pos2}) $4' -p66052 -tp66053 -a(S'braceMatch/2' -p66054 -S'braceMatch(${1:This}, ${2:Pos}) $3' -p66055 -tp66056 -a(S'cacheBestSize/2' -p66057 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p66058 -tp66059 -a(S'callTipActive/1' -p66060 -S'callTipActive(${1:This}) $2' -p66061 -tp66062 -a(S'callTipCancel/1' -p66063 -S'callTipCancel(${1:This}) $2' -p66064 -tp66065 -a(S'callTipPosAtStart/1' -p66066 -S'callTipPosAtStart(${1:This}) $2' -p66067 -tp66068 -a(S'callTipSetBackground/2' -p66069 -S'callTipSetBackground(${1:This}, ${2:Back}) $3' -p66070 -tp66071 -a(S'callTipSetForeground/2' -p66072 -S'callTipSetForeground(${1:This}, ${2:Fore}) $3' -p66073 -tp66074 -a(S'callTipSetForegroundHighlight/2' -p66075 -S'callTipSetForegroundHighlight(${1:This}, ${2:Fore}) $3' -p66076 -tp66077 -a(S'callTipSetHighlight/3' -p66078 -S'callTipSetHighlight(${1:This}, ${2:Start}, ${3:End}) $4' -p66079 -tp66080 -a(S'callTipShow/3' -p66081 -S'callTipShow(${1:This}, ${2:Pos}, ${3:Definition}) $4' -p66082 -tp66083 -a(S'callTipUseStyle/2' -p66084 -S'callTipUseStyle(${1:This}, ${2:TabSize}) $3' -p66085 -tp66086 -a(S'canPaste/1' -p66087 -S'canPaste(${1:This}) $2' -p66088 -tp66089 -a(S'canRedo/1' -p66090 -S'canRedo(${1:This}) $2' -p66091 -tp66092 -a(S'canUndo/1' -p66093 -S'canUndo(${1:This}) $2' -p66094 -tp66095 -a(S'cancel/1' -p66096 -S'cancel(${1:This}) $2' -p66097 -tp66098 -a(S'captureMouse/1' -p66099 -S'captureMouse(${1:This}) $2' -p66100 -tp66101 -a(S'center/1' -p66102 -S'center(${1:This}) $2' -p66103 -tp66104 -a(S'center/2' -p66105 -S'center(${1:This}, ${2:Options}) $3' -p66106 -tp66107 -a(S'centerOnParent/1' -p66108 -S'centerOnParent(${1:This}) $2' -p66109 -tp66110 -a(S'centerOnParent/2' -p66111 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p66112 -tp66113 -a(S'centre/1' -p66114 -S'centre(${1:This}) $2' -p66115 -tp66116 -a(S'centre/2' -p66117 -S'centre(${1:This}, ${2:Options}) $3' -p66118 -tp66119 -a(S'centreOnParent/1' -p66120 -S'centreOnParent(${1:This}) $2' -p66121 -tp66122 -a(S'centreOnParent/2' -p66123 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p66124 -tp66125 -a(S'charLeft/1' -p66126 -S'charLeft(${1:This}) $2' -p66127 -tp66128 -a(S'charLeftExtend/1' -p66129 -S'charLeftExtend(${1:This}) $2' -p66130 -tp66131 -a(S'charLeftRectExtend/1' -p66132 -S'charLeftRectExtend(${1:This}) $2' -p66133 -tp66134 -a(S'charRight/1' -p66135 -S'charRight(${1:This}) $2' -p66136 -tp66137 -a(S'charRightExtend/1' -p66138 -S'charRightExtend(${1:This}) $2' -p66139 -tp66140 -a(S'charRightRectExtend/1' -p66141 -S'charRightRectExtend(${1:This}) $2' -p66142 -tp66143 -a(S'chooseCaretX/1' -p66144 -S'chooseCaretX(${1:This}) $2' -p66145 -tp66146 -a(S'clear/1' -p66147 -S'clear(${1:This}) $2' -p66148 -tp66149 -a(S'clearAll/1' -p66150 -S'clearAll(${1:This}) $2' -p66151 -tp66152 -a(S'clearBackground/1' -p66153 -S'clearBackground(${1:This}) $2' -p66154 -tp66155 -a(S'clearDocumentStyle/1' -p66156 -S'clearDocumentStyle(${1:This}) $2' -p66157 -tp66158 -a(S'clearRegisteredImages/1' -p66159 -S'clearRegisteredImages(${1:This}) $2' -p66160 -tp66161 -a(S'clientToScreen/2' -p66162 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p66163 -tp66164 -a(S'clientToScreen/3' -p66165 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p66166 -tp66167 -a(S'close/1' -p66168 -S'close(${1:This}) $2' -p66169 -tp66170 -a(S'close/2' -p66171 -S'close(${1:This}, ${2:Options}) $3' -p66172 -tp66173 -a(S'cmdKeyAssign/4' -p66174 -S'cmdKeyAssign(${1:This}, ${2:Key}, ${3:Modifiers}, ${4:Cmd}) $5' -p66175 -tp66176 -a(S'cmdKeyClear/3' -p66177 -S'cmdKeyClear(${1:This}, ${2:Key}, ${3:Modifiers}) $4' -p66178 -tp66179 -a(S'cmdKeyClearAll/1' -p66180 -S'cmdKeyClearAll(${1:This}) $2' -p66181 -tp66182 -a(S'cmdKeyExecute/2' -p66183 -S'cmdKeyExecute(${1:This}, ${2:Cmd}) $3' -p66184 -tp66185 -a(S'colourise/3' -p66186 -S'colourise(${1:This}, ${2:Start}, ${3:End}) $4' -p66187 -tp66188 -a(S'connect/2' -p66189 -S'connect(${1:This}, ${2:EventType}) $3' -p66190 -tp66191 -a(S'connect/3' -p66192 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p66193 -tp66194 -a(S'convertDialogToPixels/2' -p66195 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p66196 -tp66197 -a(S'convertEOLs/2' -p66198 -S'convertEOLs(${1:This}, ${2:EolMode}) $3' -p66199 -tp66200 -a(S'convertPixelsToDialog/2' -p66201 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p66202 -tp66203 -a(S'copy/1' -p66204 -S'copy(${1:This}) $2' -p66205 -tp66206 -a(S'copyRange/3' -p66207 -S'copyRange(${1:This}, ${2:Start}, ${3:End}) $4' -p66208 -tp66209 -a(S'copyText/3' -p66210 -S'copyText(${1:This}, ${2:Length}, ${3:Text}) $4' -p66211 -tp66212 -a(S'create/2' -p66213 -S'create(${1:This}, ${2:Parent}) $3' -p66214 -tp66215 -a(S'create/3' -p66216 -S'create(${1:This}, ${2:Parent}, ${3:Param3}) $4' -p66217 -tp66218 -a(S'cut/1' -p66219 -S'cut(${1:This}) $2' -p66220 -tp66221 -a(S'delLineLeft/1' -p66222 -S'delLineLeft(${1:This}) $2' -p66223 -tp66224 -a(S'delLineRight/1' -p66225 -S'delLineRight(${1:This}) $2' -p66226 -tp66227 -a(S'delWordLeft/1' -p66228 -S'delWordLeft(${1:This}) $2' -p66229 -tp66230 -a(S'delWordRight/1' -p66231 -S'delWordRight(${1:This}) $2' -p66232 -tp66233 -a(S'deleteBack/1' -p66234 -S'deleteBack(${1:This}) $2' -p66235 -tp66236 -a(S'deleteBackNotLine/1' -p66237 -S'deleteBackNotLine(${1:This}) $2' -p66238 -tp66239 -a(S'destroy/1' -p66240 -S'destroy(${1:This}) $2' -p66241 -tp66242 -a(S'destroyChildren/1' -p66243 -S'destroyChildren(${1:This}) $2' -p66244 -tp66245 -a(S'disable/1' -p66246 -S'disable(${1:This}) $2' -p66247 -tp66248 -a(S'disconnect/1' -p66249 -S'disconnect(${1:This}) $2' -p66250 -tp66251 -a(S'disconnect/2' -p66252 -S'disconnect(${1:This}, ${2:EventType}) $3' -p66253 -tp66254 -a(S'disconnect/3' -p66255 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p66256 -tp66257 -a(S'doDragOver/4' -p66258 -S'doDragOver(${1:This}, ${2:X}, ${3:Y}, ${4:Def}) $5' -p66259 -tp66260 -a(S'doDropText/4' -p66261 -S'doDropText(${1:This}, ${2:X}, ${3:Y}, ${4:Data}) $5' -p66262 -tp66263 -a(S'docLineFromVisible/2' -p66264 -S'docLineFromVisible(${1:This}, ${2:LineDisplay}) $3' -p66265 -tp66266 -a(S'documentEnd/1' -p66267 -S'documentEnd(${1:This}) $2' -p66268 -tp66269 -a(S'documentEndExtend/1' -p66270 -S'documentEndExtend(${1:This}) $2' -p66271 -tp66272 -a(S'documentStart/1' -p66273 -S'documentStart(${1:This}) $2' -p66274 -tp66275 -a(S'documentStartExtend/1' -p66276 -S'documentStartExtend(${1:This}) $2' -p66277 -tp66278 -a(S'editToggleOvertype/1' -p66279 -S'editToggleOvertype(${1:This}) $2' -p66280 -tp66281 -a(S'emptyUndoBuffer/1' -p66282 -S'emptyUndoBuffer(${1:This}) $2' -p66283 -tp66284 -a(S'enable/1' -p66285 -S'enable(${1:This}) $2' -p66286 -tp66287 -a(S'enable/2' -p66288 -S'enable(${1:This}, ${2:Options}) $3' -p66289 -tp66290 -a(S'endUndoAction/1' -p66291 -S'endUndoAction(${1:This}) $2' -p66292 -tp66293 -a(S'ensureCaretVisible/1' -p66294 -S'ensureCaretVisible(${1:This}) $2' -p66295 -tp66296 -a(S'ensureVisible/2' -p66297 -S'ensureVisible(${1:This}, ${2:Line}) $3' -p66298 -tp66299 -a(S'ensureVisibleEnforcePolicy/2' -p66300 -S'ensureVisibleEnforcePolicy(${1:This}, ${2:Line}) $3' -p66301 -tp66302 -a(S'findColumn/3' -p66303 -S'findColumn(${1:This}, ${2:Line}, ${3:Column}) $4' -p66304 -tp66305 -a(S'findText/4' -p66306 -S'findText(${1:This}, ${2:MinPos}, ${3:MaxPos}, ${4:Text}) $5' -p66307 -tp66308 -a(S'findText/5' -p66309 -S'findText(${1:This}, ${2:MinPos}, ${3:MaxPos}, ${4:Text}, ${5:Param5}) $6' -p66310 -tp66311 -a(S'findWindow/2' -p66312 -S'findWindow(${1:This}, ${2:Winid}) $3' -p66313 -tp66314 -a(S'fit/1' -p66315 -S'fit(${1:This}) $2' -p66316 -tp66317 -a(S'fitInside/1' -p66318 -S'fitInside(${1:This}) $2' -p66319 -tp66320 -a(S'formFeed/1' -p66321 -S'formFeed(${1:This}) $2' -p66322 -tp66323 -a(S'formatRange/8' -p66324 -S'formatRange(${1:This}, ${2:DoDraw}, ${3:StartPos}, ${4:EndPos}, ${5:Draw}, ${6:Target}, ${7:RenderRect}, ${8:PageRect}) $9' -p66325 -tp66326 -a(S'freeze/1' -p66327 -S'freeze(${1:This}) $2' -p66328 -tp66329 -a(S'getAcceleratorTable/1' -p66330 -S'getAcceleratorTable(${1:This}) $2' -p66331 -tp66332 -a(S'getAnchor/1' -p66333 -S'getAnchor(${1:This}) $2' -p66334 -tp66335 -a(S'getBackSpaceUnIndents/1' -p66336 -S'getBackSpaceUnIndents(${1:This}) $2' -p66337 -tp66338 -a(S'getBackgroundColour/1' -p66339 -S'getBackgroundColour(${1:This}) $2' -p66340 -tp66341 -a(S'getBackgroundStyle/1' -p66342 -S'getBackgroundStyle(${1:This}) $2' -p66343 -tp66344 -a(S'getBestSize/1' -p66345 -S'getBestSize(${1:This}) $2' -p66346 -tp66347 -a(S'getBufferedDraw/1' -p66348 -S'getBufferedDraw(${1:This}) $2' -p66349 -tp66350 -a(S'getCaret/1' -p66351 -S'getCaret(${1:This}) $2' -p66352 -tp66353 -a(S'getCaretForeground/1' -p66354 -S'getCaretForeground(${1:This}) $2' -p66355 -tp66356 -a(S'getCaretLineBackAlpha/1' -p66357 -S'getCaretLineBackAlpha(${1:This}) $2' -p66358 -tp66359 -a(S'getCaretLineBackground/1' -p66360 -S'getCaretLineBackground(${1:This}) $2' -p66361 -tp66362 -a(S'getCaretLineVisible/1' -p66363 -S'getCaretLineVisible(${1:This}) $2' -p66364 -tp66365 -a(S'getCaretPeriod/1' -p66366 -S'getCaretPeriod(${1:This}) $2' -p66367 -tp66368 -a(S'getCaretSticky/1' -p66369 -S'getCaretSticky(${1:This}) $2' -p66370 -tp66371 -a(S'getCaretWidth/1' -p66372 -S'getCaretWidth(${1:This}) $2' -p66373 -tp66374 -a(S'getCharAt/2' -p66375 -S'getCharAt(${1:This}, ${2:Pos}) $3' -p66376 -tp66377 -a(S'getCharHeight/1' -p66378 -S'getCharHeight(${1:This}) $2' -p66379 -tp66380 -a(S'getCharWidth/1' -p66381 -S'getCharWidth(${1:This}) $2' -p66382 -tp66383 -a(S'getChildren/1' -p66384 -S'getChildren(${1:This}) $2' -p66385 -tp66386 -a(S'getClientSize/1' -p66387 -S'getClientSize(${1:This}) $2' -p66388 -tp66389 -a(S'getCodePage/1' -p66390 -S'getCodePage(${1:This}) $2' -p66391 -tp66392 -a(S'getColumn/2' -p66393 -S'getColumn(${1:This}, ${2:Pos}) $3' -p66394 -tp66395 -a(S'getContainingSizer/1' -p66396 -S'getContainingSizer(${1:This}) $2' -p66397 -tp66398 -a(S'getControlCharSymbol/1' -p66399 -S'getControlCharSymbol(${1:This}) $2' -p66400 -tp66401 -a(S'getCurLine/1' -p66402 -S'getCurLine(${1:This}) $2' -p66403 -tp66404 -a(S'getCurLineRaw/1' -p66405 -S'getCurLineRaw(${1:This}) $2' -p66406 -tp66407 -a(S'getCurrentLine/1' -p66408 -S'getCurrentLine(${1:This}) $2' -p66409 -tp66410 -a(S'getCurrentPos/1' -p66411 -S'getCurrentPos(${1:This}) $2' -p66412 -tp66413 -a(S'getCursor/1' -p66414 -S'getCursor(${1:This}) $2' -p66415 -tp66416 -a(S'getDropTarget/1' -p66417 -S'getDropTarget(${1:This}) $2' -p66418 -tp66419 -a(S'getEOLMode/1' -p66420 -S'getEOLMode(${1:This}) $2' -p66421 -tp66422 -a(S'getEdgeColour/1' -p66423 -S'getEdgeColour(${1:This}) $2' -p66424 -tp66425 -a(S'getEdgeColumn/1' -p66426 -S'getEdgeColumn(${1:This}) $2' -p66427 -tp66428 -a(S'getEdgeMode/1' -p66429 -S'getEdgeMode(${1:This}) $2' -p66430 -tp66431 -a(S'getEndAtLastLine/1' -p66432 -S'getEndAtLastLine(${1:This}) $2' -p66433 -tp66434 -a(S'getEndStyled/1' -p66435 -S'getEndStyled(${1:This}) $2' -p66436 -tp66437 -a(S'getEventHandler/1' -p66438 -S'getEventHandler(${1:This}) $2' -p66439 -tp66440 -a(S'getExtraStyle/1' -p66441 -S'getExtraStyle(${1:This}) $2' -p66442 -tp66443 -a(S'getFirstVisibleLine/1' -p66444 -S'getFirstVisibleLine(${1:This}) $2' -p66445 -tp66446 -a(S'getFoldExpanded/2' -p66447 -S'getFoldExpanded(${1:This}, ${2:Line}) $3' -p66448 -tp66449 -a(S'getFoldLevel/2' -p66450 -S'getFoldLevel(${1:This}, ${2:Line}) $3' -p66451 -tp66452 -a(S'getFoldParent/2' -p66453 -S'getFoldParent(${1:This}, ${2:Line}) $3' -p66454 -tp66455 -a(S'getFont/1' -p66456 -S'getFont(${1:This}) $2' -p66457 -tp66458 -a(S'getForegroundColour/1' -p66459 -S'getForegroundColour(${1:This}) $2' -p66460 -tp66461 -a(S'getGrandParent/1' -p66462 -S'getGrandParent(${1:This}) $2' -p66463 -tp66464 -a(S'getHandle/1' -p66465 -S'getHandle(${1:This}) $2' -p66466 -tp66467 -a(S'getHelpText/1' -p66468 -S'getHelpText(${1:This}) $2' -p66469 -tp66470 -a(S'getHighlightGuide/1' -p66471 -S'getHighlightGuide(${1:This}) $2' -p66472 -tp66473 -a(S'getId/1' -p66474 -S'getId(${1:This}) $2' -p66475 -tp66476 -a(S'getIndent/1' -p66477 -S'getIndent(${1:This}) $2' -p66478 -tp66479 -a(S'getIndentationGuides/1' -p66480 -S'getIndentationGuides(${1:This}) $2' -p66481 -tp66482 -a(S'getLabel/1' -p66483 -S'getLabel(${1:This}) $2' -p66484 -tp66485 -a(S'getLastChild/3' -p66486 -S'getLastChild(${1:This}, ${2:Line}, ${3:Level}) $4' -p66487 -tp66488 -a(S'getLastKeydownProcessed/1' -p66489 -S'getLastKeydownProcessed(${1:This}) $2' -p66490 -tp66491 -a(S'getLayoutCache/1' -p66492 -S'getLayoutCache(${1:This}) $2' -p66493 -tp66494 -a(S'getLength/1' -p66495 -S'getLength(${1:This}) $2' -p66496 -tp66497 -a(S'getLexer/1' -p66498 -S'getLexer(${1:This}) $2' -p66499 -tp66500 -a(S'getLine/2' -p66501 -S'getLine(${1:This}, ${2:Line}) $3' -p66502 -tp66503 -a(S'getLineCount/1' -p66504 -S'getLineCount(${1:This}) $2' -p66505 -tp66506 -a(S'getLineEndPosition/2' -p66507 -S'getLineEndPosition(${1:This}, ${2:Line}) $3' -p66508 -tp66509 -a(S'getLineIndentPosition/2' -p66510 -S'getLineIndentPosition(${1:This}, ${2:Line}) $3' -p66511 -tp66512 -a(S'getLineIndentation/2' -p66513 -S'getLineIndentation(${1:This}, ${2:Line}) $3' -p66514 -tp66515 -a(S'getLineRaw/2' -p66516 -S'getLineRaw(${1:This}, ${2:Line}) $3' -p66517 -tp66518 -a(S'getLineState/2' -p66519 -S'getLineState(${1:This}, ${2:Line}) $3' -p66520 -tp66521 -a(S'getLineVisible/2' -p66522 -S'getLineVisible(${1:This}, ${2:Line}) $3' -p66523 -tp66524 -a(S'getMarginLeft/1' -p66525 -S'getMarginLeft(${1:This}) $2' -p66526 -tp66527 -a(S'getMarginMask/2' -p66528 -S'getMarginMask(${1:This}, ${2:Margin}) $3' -p66529 -tp66530 -a(S'getMarginRight/1' -p66531 -S'getMarginRight(${1:This}) $2' -p66532 -tp66533 -a(S'getMarginSensitive/2' -p66534 -S'getMarginSensitive(${1:This}, ${2:Margin}) $3' -p66535 -tp66536 -a(S'getMarginType/2' -p66537 -S'getMarginType(${1:This}, ${2:Margin}) $3' -p66538 -tp66539 -a(S'getMarginWidth/2' -p66540 -S'getMarginWidth(${1:This}, ${2:Margin}) $3' -p66541 -tp66542 -a(S'getMaxLineState/1' -p66543 -S'getMaxLineState(${1:This}) $2' -p66544 -tp66545 -a(S'getMaxSize/1' -p66546 -S'getMaxSize(${1:This}) $2' -p66547 -tp66548 -a(S'getMinSize/1' -p66549 -S'getMinSize(${1:This}) $2' -p66550 -tp66551 -a(S'getModEventMask/1' -p66552 -S'getModEventMask(${1:This}) $2' -p66553 -tp66554 -a(S'getModify/1' -p66555 -S'getModify(${1:This}) $2' -p66556 -tp66557 -a(S'getMouseDownCaptures/1' -p66558 -S'getMouseDownCaptures(${1:This}) $2' -p66559 -tp66560 -a(S'getMouseDwellTime/1' -p66561 -S'getMouseDwellTime(${1:This}) $2' -p66562 -tp66563 -a(S'getName/1' -p66564 -S'getName(${1:This}) $2' -p66565 -tp66566 -a(S'getOvertype/1' -p66567 -S'getOvertype(${1:This}) $2' -p66568 -tp66569 -a(S'getParent/1' -p66570 -S'getParent(${1:This}) $2' -p66571 -tp66572 -a(S'getPasteConvertEndings/1' -p66573 -S'getPasteConvertEndings(${1:This}) $2' -p66574 -tp66575 -a(S'getPosition/1' -p66576 -S'getPosition(${1:This}) $2' -p66577 -tp66578 -a(S'getPrintColourMode/1' -p66579 -S'getPrintColourMode(${1:This}) $2' -p66580 -tp66581 -a(S'getPrintMagnification/1' -p66582 -S'getPrintMagnification(${1:This}) $2' -p66583 -tp66584 -a(S'getPrintWrapMode/1' -p66585 -S'getPrintWrapMode(${1:This}) $2' -p66586 -tp66587 -a(S'getProperty/2' -p66588 -S'getProperty(${1:This}, ${2:Key}) $3' -p66589 -tp66590 -a(S'getReadOnly/1' -p66591 -S'getReadOnly(${1:This}) $2' -p66592 -tp66593 -a(S'getRect/1' -p66594 -S'getRect(${1:This}) $2' -p66595 -tp66596 -a(S'getSTCCursor/1' -p66597 -S'getSTCCursor(${1:This}) $2' -p66598 -tp66599 -a(S'getSTCFocus/1' -p66600 -S'getSTCFocus(${1:This}) $2' -p66601 -tp66602 -a(S'getScreenPosition/1' -p66603 -S'getScreenPosition(${1:This}) $2' -p66604 -tp66605 -a(S'getScreenRect/1' -p66606 -S'getScreenRect(${1:This}) $2' -p66607 -tp66608 -a(S'getScrollPos/2' -p66609 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p66610 -tp66611 -a(S'getScrollRange/2' -p66612 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p66613 -tp66614 -a(S'getScrollThumb/2' -p66615 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p66616 -tp66617 -a(S'getScrollWidth/1' -p66618 -S'getScrollWidth(${1:This}) $2' -p66619 -tp66620 -a(S'getSearchFlags/1' -p66621 -S'getSearchFlags(${1:This}) $2' -p66622 -tp66623 -a(S'getSelAlpha/1' -p66624 -S'getSelAlpha(${1:This}) $2' -p66625 -tp66626 -a(S'getSelectedText/1' -p66627 -S'getSelectedText(${1:This}) $2' -p66628 -tp66629 -a(S'getSelectedTextRaw/1' -p66630 -S'getSelectedTextRaw(${1:This}) $2' -p66631 -tp66632 -a(S'getSelection/1' -p66633 -S'getSelection(${1:This}) $2' -p66634 -tp66635 -a(S'getSelectionEnd/1' -p66636 -S'getSelectionEnd(${1:This}) $2' -p66637 -tp66638 -a(S'getSelectionMode/1' -p66639 -S'getSelectionMode(${1:This}) $2' -p66640 -tp66641 -a(S'getSelectionStart/1' -p66642 -S'getSelectionStart(${1:This}) $2' -p66643 -tp66644 -a(S'getSize/1' -p66645 -S'getSize(${1:This}) $2' -p66646 -tp66647 -a(S'getSizer/1' -p66648 -S'getSizer(${1:This}) $2' -p66649 -tp66650 -a(S'getStatus/1' -p66651 -S'getStatus(${1:This}) $2' -p66652 -tp66653 -a(S'getStyleAt/2' -p66654 -S'getStyleAt(${1:This}, ${2:Pos}) $3' -p66655 -tp66656 -a(S'getStyleBits/1' -p66657 -S'getStyleBits(${1:This}) $2' -p66658 -tp66659 -a(S'getStyleBitsNeeded/1' -p66660 -S'getStyleBitsNeeded(${1:This}) $2' -p66661 -tp66662 -a(S'getStyledText/3' -p66663 -S'getStyledText(${1:This}, ${2:StartPos}, ${3:EndPos}) $4' -p66664 -tp66665 -a(S'getTabIndents/1' -p66666 -S'getTabIndents(${1:This}) $2' -p66667 -tp66668 -a(S'getTabWidth/1' -p66669 -S'getTabWidth(${1:This}) $2' -p66670 -tp66671 -a(S'getTargetEnd/1' -p66672 -S'getTargetEnd(${1:This}) $2' -p66673 -tp66674 -a(S'getTargetStart/1' -p66675 -S'getTargetStart(${1:This}) $2' -p66676 -tp66677 -a(S'getText/1' -p66678 -S'getText(${1:This}) $2' -p66679 -tp66680 -a(S'getTextExtent/2' -p66681 -S'getTextExtent(${1:This}, ${2:String}) $3' -p66682 -tp66683 -a(S'getTextExtent/3' -p66684 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p66685 -tp66686 -a(S'getTextLength/1' -p66687 -S'getTextLength(${1:This}) $2' -p66688 -tp66689 -a(S'getTextRange/3' -p66690 -S'getTextRange(${1:This}, ${2:StartPos}, ${3:EndPos}) $4' -p66691 -tp66692 -a(S'getTextRangeRaw/3' -p66693 -S'getTextRangeRaw(${1:This}, ${2:StartPos}, ${3:EndPos}) $4' -p66694 -tp66695 -a(S'getTextRaw/1' -p66696 -S'getTextRaw(${1:This}) $2' -p66697 -tp66698 -a(S'getToolTip/1' -p66699 -S'getToolTip(${1:This}) $2' -p66700 -tp66701 -a(S'getTwoPhaseDraw/1' -p66702 -S'getTwoPhaseDraw(${1:This}) $2' -p66703 -tp66704 -a(S'getUndoCollection/1' -p66705 -S'getUndoCollection(${1:This}) $2' -p66706 -tp66707 -a(S'getUpdateRegion/1' -p66708 -S'getUpdateRegion(${1:This}) $2' -p66709 -tp66710 -a(S'getUseAntiAliasing/1' -p66711 -S'getUseAntiAliasing(${1:This}) $2' -p66712 -tp66713 -a(S'getUseHorizontalScrollBar/1' -p66714 -S'getUseHorizontalScrollBar(${1:This}) $2' -p66715 -tp66716 -a(S'getUseTabs/1' -p66717 -S'getUseTabs(${1:This}) $2' -p66718 -tp66719 -a(S'getUseVerticalScrollBar/1' -p66720 -S'getUseVerticalScrollBar(${1:This}) $2' -p66721 -tp66722 -a(S'getViewEOL/1' -p66723 -S'getViewEOL(${1:This}) $2' -p66724 -tp66725 -a(S'getViewWhiteSpace/1' -p66726 -S'getViewWhiteSpace(${1:This}) $2' -p66727 -tp66728 -a(S'getVirtualSize/1' -p66729 -S'getVirtualSize(${1:This}) $2' -p66730 -tp66731 -a(S'getWindowStyleFlag/1' -p66732 -S'getWindowStyleFlag(${1:This}) $2' -p66733 -tp66734 -a(S'getWindowVariant/1' -p66735 -S'getWindowVariant(${1:This}) $2' -p66736 -tp66737 -a(S'getWrapMode/1' -p66738 -S'getWrapMode(${1:This}) $2' -p66739 -tp66740 -a(S'getWrapStartIndent/1' -p66741 -S'getWrapStartIndent(${1:This}) $2' -p66742 -tp66743 -a(S'getWrapVisualFlags/1' -p66744 -S'getWrapVisualFlags(${1:This}) $2' -p66745 -tp66746 -a(S'getWrapVisualFlagsLocation/1' -p66747 -S'getWrapVisualFlagsLocation(${1:This}) $2' -p66748 -tp66749 -a(S'getXOffset/1' -p66750 -S'getXOffset(${1:This}) $2' -p66751 -tp66752 -a(S'getZoom/1' -p66753 -S'getZoom(${1:This}) $2' -p66754 -tp66755 -a(S'gotoLine/2' -p66756 -S'gotoLine(${1:This}, ${2:Line}) $3' -p66757 -tp66758 -a(S'gotoPos/2' -p66759 -S'gotoPos(${1:This}, ${2:Pos}) $3' -p66760 -tp66761 -a(S'hasCapture/1' -p66762 -S'hasCapture(${1:This}) $2' -p66763 -tp66764 -a(S'hasScrollbar/2' -p66765 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p66766 -tp66767 -a(S'hasTransparentBackground/1' -p66768 -S'hasTransparentBackground(${1:This}) $2' -p66769 -tp66770 -a(S'hide/1' -p66771 -S'hide(${1:This}) $2' -p66772 -tp66773 -a(S'hideLines/3' -p66774 -S'hideLines(${1:This}, ${2:LineStart}, ${3:LineEnd}) $4' -p66775 -tp66776 -a(S'hideSelection/2' -p66777 -S'hideSelection(${1:This}, ${2:Normal}) $3' -p66778 -tp66779 -a(S'home/1' -p66780 -S'home(${1:This}) $2' -p66781 -tp66782 -a(S'homeDisplay/1' -p66783 -S'homeDisplay(${1:This}) $2' -p66784 -tp66785 -a(S'homeDisplayExtend/1' -p66786 -S'homeDisplayExtend(${1:This}) $2' -p66787 -tp66788 -a(S'homeExtend/1' -p66789 -S'homeExtend(${1:This}) $2' -p66790 -tp66791 -a(S'homeRectExtend/1' -p66792 -S'homeRectExtend(${1:This}) $2' -p66793 -tp66794 -a(S'homeWrapExtend/1' -p66795 -S'homeWrapExtend(${1:This}) $2' -p66796 -tp66797 -a(S'indicatorGetForeground/2' -p66798 -S'indicatorGetForeground(${1:This}, ${2:Indic}) $3' -p66799 -tp66800 -a(S'indicatorGetStyle/2' -p66801 -S'indicatorGetStyle(${1:This}, ${2:Indic}) $3' -p66802 -tp66803 -a(S'indicatorSetForeground/3' -p66804 -S'indicatorSetForeground(${1:This}, ${2:Indic}, ${3:Fore}) $4' -p66805 -tp66806 -a(S'indicatorSetStyle/3' -p66807 -S'indicatorSetStyle(${1:This}, ${2:Indic}, ${3:Style}) $4' -p66808 -tp66809 -a(S'inheritAttributes/1' -p66810 -S'inheritAttributes(${1:This}) $2' -p66811 -tp66812 -a(S'initDialog/1' -p66813 -S'initDialog(${1:This}) $2' -p66814 -tp66815 -a(S'insertText/3' -p66816 -S'insertText(${1:This}, ${2:Pos}, ${3:Text}) $4' -p66817 -tp66818 -a(S'insertTextRaw/3' -p66819 -S'insertTextRaw(${1:This}, ${2:Pos}, ${3:Text}) $4' -p66820 -tp66821 -a(S'invalidateBestSize/1' -p66822 -S'invalidateBestSize(${1:This}) $2' -p66823 -tp66824 -a(S'isEnabled/1' -p66825 -S'isEnabled(${1:This}) $2' -p66826 -tp66827 -a(S'isExposed/2' -p66828 -S'isExposed(${1:This}, ${2:Pt}) $3' -p66829 -tp66830 -a(S'isExposed/3' -p66831 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p66832 -tp66833 -a(S'isExposed/5' -p66834 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p66835 -tp66836 -a(S'isRetained/1' -p66837 -S'isRetained(${1:This}) $2' -p66838 -tp66839 -a(S'isShown/1' -p66840 -S'isShown(${1:This}) $2' -p66841 -tp66842 -a(S'isTopLevel/1' -p66843 -S'isTopLevel(${1:This}) $2' -p66844 -tp66845 -a(S'layout/1' -p66846 -S'layout(${1:This}) $2' -p66847 -tp66848 -a(S'lineCopy/1' -p66849 -S'lineCopy(${1:This}) $2' -p66850 -tp66851 -a(S'lineCut/1' -p66852 -S'lineCut(${1:This}) $2' -p66853 -tp66854 -a(S'lineDelete/1' -p66855 -S'lineDelete(${1:This}) $2' -p66856 -tp66857 -a(S'lineDown/1' -p66858 -S'lineDown(${1:This}) $2' -p66859 -tp66860 -a(S'lineDownExtend/1' -p66861 -S'lineDownExtend(${1:This}) $2' -p66862 -tp66863 -a(S'lineDownRectExtend/1' -p66864 -S'lineDownRectExtend(${1:This}) $2' -p66865 -tp66866 -a(S'lineDuplicate/1' -p66867 -S'lineDuplicate(${1:This}) $2' -p66868 -tp66869 -a(S'lineEnd/1' -p66870 -S'lineEnd(${1:This}) $2' -p66871 -tp66872 -a(S'lineEndDisplay/1' -p66873 -S'lineEndDisplay(${1:This}) $2' -p66874 -tp66875 -a(S'lineEndDisplayExtend/1' -p66876 -S'lineEndDisplayExtend(${1:This}) $2' -p66877 -tp66878 -a(S'lineEndExtend/1' -p66879 -S'lineEndExtend(${1:This}) $2' -p66880 -tp66881 -a(S'lineEndRectExtend/1' -p66882 -S'lineEndRectExtend(${1:This}) $2' -p66883 -tp66884 -a(S'lineEndWrap/1' -p66885 -S'lineEndWrap(${1:This}) $2' -p66886 -tp66887 -a(S'lineEndWrapExtend/1' -p66888 -S'lineEndWrapExtend(${1:This}) $2' -p66889 -tp66890 -a(S'lineFromPosition/2' -p66891 -S'lineFromPosition(${1:This}, ${2:Pos}) $3' -p66892 -tp66893 -a(S'lineLength/2' -p66894 -S'lineLength(${1:This}, ${2:Line}) $3' -p66895 -tp66896 -a(S'lineScroll/3' -p66897 -S'lineScroll(${1:This}, ${2:Columns}, ${3:Lines}) $4' -p66898 -tp66899 -a(S'lineScrollDown/1' -p66900 -S'lineScrollDown(${1:This}) $2' -p66901 -tp66902 -a(S'lineScrollUp/1' -p66903 -S'lineScrollUp(${1:This}) $2' -p66904 -tp66905 -a(S'lineTranspose/1' -p66906 -S'lineTranspose(${1:This}) $2' -p66907 -tp66908 -a(S'lineUp/1' -p66909 -S'lineUp(${1:This}) $2' -p66910 -tp66911 -a(S'lineUpExtend/1' -p66912 -S'lineUpExtend(${1:This}) $2' -p66913 -tp66914 -a(S'lineUpRectExtend/1' -p66915 -S'lineUpRectExtend(${1:This}) $2' -p66916 -tp66917 -a(S'linesJoin/1' -p66918 -S'linesJoin(${1:This}) $2' -p66919 -tp66920 -a(S'linesOnScreen/1' -p66921 -S'linesOnScreen(${1:This}) $2' -p66922 -tp66923 -a(S'linesSplit/2' -p66924 -S'linesSplit(${1:This}, ${2:PixelWidth}) $3' -p66925 -tp66926 -a(S'loadFile/2' -p66927 -S'loadFile(${1:This}, ${2:Filename}) $3' -p66928 -tp66929 -a(S'lower/1' -p66930 -S'lower(${1:This}) $2' -p66931 -tp66932 -a(S'lowerCase/1' -p66933 -S'lowerCase(${1:This}) $2' -p66934 -tp66935 -a(S'makeModal/1' -p66936 -S'makeModal(${1:This}) $2' -p66937 -tp66938 -a(S'makeModal/2' -p66939 -S'makeModal(${1:This}, ${2:Options}) $3' -p66940 -tp66941 -a(S'markerAdd/3' -p66942 -S'markerAdd(${1:This}, ${2:Line}, ${3:MarkerNumber}) $4' -p66943 -tp66944 -a(S'markerAddSet/3' -p66945 -S'markerAddSet(${1:This}, ${2:Line}, ${3:Set}) $4' -p66946 -tp66947 -a(S'markerDefine/3' -p66948 -S'markerDefine(${1:This}, ${2:MarkerNumber}, ${3:MarkerSymbol}) $4' -p66949 -tp66950 -a(S'markerDefine/4' -p66951 -S'markerDefine(${1:This}, ${2:MarkerNumber}, ${3:MarkerSymbol}, ${4:Param4}) $5' -p66952 -tp66953 -a(S'markerDefineBitmap/3' -p66954 -S'markerDefineBitmap(${1:This}, ${2:MarkerNumber}, ${3:Bmp}) $4' -p66955 -tp66956 -a(S'markerDelete/3' -p66957 -S'markerDelete(${1:This}, ${2:Line}, ${3:MarkerNumber}) $4' -p66958 -tp66959 -a(S'markerDeleteAll/2' -p66960 -S'markerDeleteAll(${1:This}, ${2:MarkerNumber}) $3' -p66961 -tp66962 -a(S'markerDeleteHandle/2' -p66963 -S'markerDeleteHandle(${1:This}, ${2:Handle}) $3' -p66964 -tp66965 -a(S'markerGet/2' -p66966 -S'markerGet(${1:This}, ${2:Line}) $3' -p66967 -tp66968 -a(S'markerLineFromHandle/2' -p66969 -S'markerLineFromHandle(${1:This}, ${2:Handle}) $3' -p66970 -tp66971 -a(S'markerNext/3' -p66972 -S'markerNext(${1:This}, ${2:LineStart}, ${3:MarkerMask}) $4' -p66973 -tp66974 -a(S'markerPrevious/3' -p66975 -S'markerPrevious(${1:This}, ${2:LineStart}, ${3:MarkerMask}) $4' -p66976 -tp66977 -a(S'markerSetAlpha/3' -p66978 -S'markerSetAlpha(${1:This}, ${2:MarkerNumber}, ${3:Alpha}) $4' -p66979 -tp66980 -a(S'markerSetBackground/3' -p66981 -S'markerSetBackground(${1:This}, ${2:MarkerNumber}, ${3:Back}) $4' -p66982 -tp66983 -a(S'markerSetForeground/3' -p66984 -S'markerSetForeground(${1:This}, ${2:MarkerNumber}, ${3:Fore}) $4' -p66985 -tp66986 -a(S'move/2' -p66987 -S'move(${1:This}, ${2:Pt}) $3' -p66988 -tp66989 -a(S'move/3' -p66990 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p66991 -tp66992 -a(S'move/4' -p66993 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p66994 -tp66995 -a(S'moveAfterInTabOrder/2' -p66996 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p66997 -tp66998 -a(S'moveBeforeInTabOrder/2' -p66999 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p67000 -tp67001 -a(S'moveCaretInsideView/1' -p67002 -S'moveCaretInsideView(${1:This}) $2' -p67003 -tp67004 -a(S'navigate/1' -p67005 -S'navigate(${1:This}) $2' -p67006 -tp67007 -a(S'navigate/2' -p67008 -S'navigate(${1:This}, ${2:Options}) $3' -p67009 -tp67010 -a(S'new/0' -p67011 -S'new() $1' -p67012 -tp67013 -a(S'new/1' -p67014 -S'new(${1:Parent}) $2' -p67015 -tp67016 -a(S'new/2' -p67017 -S'new(${1:Parent}, ${2:Param2}) $3' -p67018 -tp67019 -a(S'newLine/1' -p67020 -S'newLine(${1:This}) $2' -p67021 -tp67022 -a(S'pageDown/1' -p67023 -S'pageDown(${1:This}) $2' -p67024 -tp67025 -a(S'pageDownExtend/1' -p67026 -S'pageDownExtend(${1:This}) $2' -p67027 -tp67028 -a(S'pageDownRectExtend/1' -p67029 -S'pageDownRectExtend(${1:This}) $2' -p67030 -tp67031 -a(S'pageUp/1' -p67032 -S'pageUp(${1:This}) $2' -p67033 -tp67034 -a(S'pageUpExtend/1' -p67035 -S'pageUpExtend(${1:This}) $2' -p67036 -tp67037 -a(S'pageUpRectExtend/1' -p67038 -S'pageUpRectExtend(${1:This}) $2' -p67039 -tp67040 -a(S'paraDownExtend/1' -p67041 -S'paraDownExtend(${1:This}) $2' -p67042 -tp67043 -a(S'paraUp/1' -p67044 -S'paraUp(${1:This}) $2' -p67045 -tp67046 -a(S'paraUpExtend/1' -p67047 -S'paraUpExtend(${1:This}) $2' -p67048 -tp67049 -a(S'parent_class/1' -p67050 -S'parent_class(${1:Param1}) $2' -p67051 -tp67052 -a(S'paste/1' -p67053 -S'paste(${1:This}) $2' -p67054 -tp67055 -a(S'pointFromPosition/2' -p67056 -S'pointFromPosition(${1:This}, ${2:Pos}) $3' -p67057 -tp67058 -a(S'popEventHandler/1' -p67059 -S'popEventHandler(${1:This}) $2' -p67060 -tp67061 -a(S'popEventHandler/2' -p67062 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p67063 -tp67064 -a(S'popupMenu/2' -p67065 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p67066 -tp67067 -a(S'popupMenu/3' -p67068 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p67069 -tp67070 -a(S'popupMenu/4' -p67071 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p67072 -tp67073 -a(S'positionAfter/2' -p67074 -S'positionAfter(${1:This}, ${2:Pos}) $3' -p67075 -tp67076 -a(S'positionBefore/2' -p67077 -S'positionBefore(${1:This}, ${2:Pos}) $3' -p67078 -tp67079 -a(S'positionFromLine/2' -p67080 -S'positionFromLine(${1:This}, ${2:Line}) $3' -p67081 -tp67082 -a(S'positionFromPoint/2' -p67083 -S'positionFromPoint(${1:This}, ${2:Pt}) $3' -p67084 -tp67085 -a(S'positionFromPointClose/3' -p67086 -S'positionFromPointClose(${1:This}, ${2:X}, ${3:Y}) $4' -p67087 -tp67088 -a(S'raise/1' -p67089 -S'raise(${1:This}) $2' -p67090 -tp67091 -a(S'redo/1' -p67092 -S'redo(${1:This}) $2' -p67093 -tp67094 -a(S'refresh/1' -p67095 -S'refresh(${1:This}) $2' -p67096 -tp67097 -a(S'refresh/2' -p67098 -S'refresh(${1:This}, ${2:Options}) $3' -p67099 -tp67100 -a(S'refreshRect/2' -p67101 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p67102 -tp67103 -a(S'refreshRect/3' -p67104 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p67105 -tp67106 -a(S'registerImage/3' -p67107 -S'registerImage(${1:This}, ${2:Type}, ${3:Bmp}) $4' -p67108 -tp67109 -a(S'releaseMouse/1' -p67110 -S'releaseMouse(${1:This}) $2' -p67111 -tp67112 -a(S'removeChild/2' -p67113 -S'removeChild(${1:This}, ${2:Child}) $3' -p67114 -tp67115 -a(S'reparent/2' -p67116 -S'reparent(${1:This}, ${2:NewParent}) $3' -p67117 -tp67118 -a(S'replaceSelection/2' -p67119 -S'replaceSelection(${1:This}, ${2:Text}) $3' -p67120 -tp67121 -a(S'replaceTarget/2' -p67122 -S'replaceTarget(${1:This}, ${2:Text}) $3' -p67123 -tp67124 -a(S'saveFile/2' -p67125 -S'saveFile(${1:This}, ${2:Filename}) $3' -p67126 -tp67127 -a(S'screenToClient/1' -p67128 -S'screenToClient(${1:This}) $2' -p67129 -tp67130 -a(S'screenToClient/2' -p67131 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p67132 -tp67133 -a(S'scrollLines/2' -p67134 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p67135 -tp67136 -a(S'scrollPages/2' -p67137 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p67138 -tp67139 -a(S'scrollToColumn/2' -p67140 -S'scrollToColumn(${1:This}, ${2:Column}) $3' -p67141 -tp67142 -a(S'scrollToLine/2' -p67143 -S'scrollToLine(${1:This}, ${2:Line}) $3' -p67144 -tp67145 -a(S'scrollWindow/3' -p67146 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p67147 -tp67148 -a(S'scrollWindow/4' -p67149 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p67150 -tp67151 -a(S'searchAnchor/1' -p67152 -S'searchAnchor(${1:This}) $2' -p67153 -tp67154 -a(S'searchInTarget/2' -p67155 -S'searchInTarget(${1:This}, ${2:Text}) $3' -p67156 -tp67157 -a(S'searchNext/3' -p67158 -S'searchNext(${1:This}, ${2:Flags}, ${3:Text}) $4' -p67159 -tp67160 -a(S'searchPrev/3' -p67161 -S'searchPrev(${1:This}, ${2:Flags}, ${3:Text}) $4' -p67162 -tp67163 -a(S'selectAll/1' -p67164 -S'selectAll(${1:This}) $2' -p67165 -tp67166 -a(S'selectionDuplicate/1' -p67167 -S'selectionDuplicate(${1:This}) $2' -p67168 -tp67169 -a(S'selectionIsRectangle/1' -p67170 -S'selectionIsRectangle(${1:This}) $2' -p67171 -tp67172 -a(S'sendMsg/2' -p67173 -S'sendMsg(${1:This}, ${2:Msg}) $3' -p67174 -tp67175 -a(S'sendMsg/3' -p67176 -S'sendMsg(${1:This}, ${2:Msg}, ${3:Param3}) $4' -p67177 -tp67178 -a(S'setAcceleratorTable/2' -p67179 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p67180 -tp67181 -a(S'setAnchor/2' -p67182 -S'setAnchor(${1:This}, ${2:PosAnchor}) $3' -p67183 -tp67184 -a(S'setAutoLayout/2' -p67185 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p67186 -tp67187 -a(S'setBackSpaceUnIndents/2' -p67188 -S'setBackSpaceUnIndents(${1:This}, ${2:BsUnIndents}) $3' -p67189 -tp67190 -a(S'setBackgroundColour/2' -p67191 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p67192 -tp67193 -a(S'setBackgroundStyle/2' -p67194 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p67195 -tp67196 -a(S'setBufferedDraw/2' -p67197 -S'setBufferedDraw(${1:This}, ${2:Buffered}) $3' -p67198 -tp67199 -a(S'setCaret/2' -p67200 -S'setCaret(${1:This}, ${2:Caret}) $3' -p67201 -tp67202 -a(S'setCaretForeground/2' -p67203 -S'setCaretForeground(${1:This}, ${2:Fore}) $3' -p67204 -tp67205 -a(S'setCaretLineBackAlpha/2' -p67206 -S'setCaretLineBackAlpha(${1:This}, ${2:Alpha}) $3' -p67207 -tp67208 -a(S'setCaretLineBackground/2' -p67209 -S'setCaretLineBackground(${1:This}, ${2:Back}) $3' -p67210 -tp67211 -a(S'setCaretLineVisible/2' -p67212 -S'setCaretLineVisible(${1:This}, ${2:Show}) $3' -p67213 -tp67214 -a(S'setCaretPeriod/2' -p67215 -S'setCaretPeriod(${1:This}, ${2:PeriodMilliseconds}) $3' -p67216 -tp67217 -a(S'setCaretSticky/2' -p67218 -S'setCaretSticky(${1:This}, ${2:UseCaretStickyBehaviour}) $3' -p67219 -tp67220 -a(S'setCaretWidth/2' -p67221 -S'setCaretWidth(${1:This}, ${2:PixelWidth}) $3' -p67222 -tp67223 -a(S'setCharsDefault/1' -p67224 -S'setCharsDefault(${1:This}) $2' -p67225 -tp67226 -a(S'setClientSize/2' -p67227 -S'setClientSize(${1:This}, ${2:Size}) $3' -p67228 -tp67229 -a(S'setClientSize/3' -p67230 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p67231 -tp67232 -a(S'setCodePage/2' -p67233 -S'setCodePage(${1:This}, ${2:CodePage}) $3' -p67234 -tp67235 -a(S'setContainingSizer/2' -p67236 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p67237 -tp67238 -a(S'setControlCharSymbol/2' -p67239 -S'setControlCharSymbol(${1:This}, ${2:Symbol}) $3' -p67240 -tp67241 -a(S'setCurrentPos/2' -p67242 -S'setCurrentPos(${1:This}, ${2:Pos}) $3' -p67243 -tp67244 -a(S'setCursor/2' -p67245 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p67246 -tp67247 -a(S'setDropTarget/2' -p67248 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p67249 -tp67250 -a(S'setEOLMode/2' -p67251 -S'setEOLMode(${1:This}, ${2:EolMode}) $3' -p67252 -tp67253 -a(S'setEdgeColour/2' -p67254 -S'setEdgeColour(${1:This}, ${2:EdgeColour}) $3' -p67255 -tp67256 -a(S'setEdgeColumn/2' -p67257 -S'setEdgeColumn(${1:This}, ${2:Column}) $3' -p67258 -tp67259 -a(S'setEdgeMode/2' -p67260 -S'setEdgeMode(${1:This}, ${2:Mode}) $3' -p67261 -tp67262 -a(S'setExtraStyle/2' -p67263 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p67264 -tp67265 -a(S'setFocus/1' -p67266 -S'setFocus(${1:This}) $2' -p67267 -tp67268 -a(S'setFocusFromKbd/1' -p67269 -S'setFocusFromKbd(${1:This}) $2' -p67270 -tp67271 -a(S'setFoldExpanded/3' -p67272 -S'setFoldExpanded(${1:This}, ${2:Line}, ${3:Expanded}) $4' -p67273 -tp67274 -a(S'setFoldFlags/2' -p67275 -S'setFoldFlags(${1:This}, ${2:Flags}) $3' -p67276 -tp67277 -a(S'setFoldLevel/3' -p67278 -S'setFoldLevel(${1:This}, ${2:Line}, ${3:Level}) $4' -p67279 -tp67280 -a(S'setFoldMarginColour/3' -p67281 -S'setFoldMarginColour(${1:This}, ${2:UseSetting}, ${3:Back}) $4' -p67282 -tp67283 -a(S'setFoldMarginHiColour/3' -p67284 -S'setFoldMarginHiColour(${1:This}, ${2:UseSetting}, ${3:Fore}) $4' -p67285 -tp67286 -a(S'setFont/2' -p67287 -S'setFont(${1:This}, ${2:Font}) $3' -p67288 -tp67289 -a(S'setForegroundColour/2' -p67290 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p67291 -tp67292 -a(S'setHScrollBar/2' -p67293 -S'setHScrollBar(${1:This}, ${2:Bar}) $3' -p67294 -tp67295 -a(S'setHelpText/2' -p67296 -S'setHelpText(${1:This}, ${2:Text}) $3' -p67297 -tp67298 -a(S'setHighlightGuide/2' -p67299 -S'setHighlightGuide(${1:This}, ${2:Column}) $3' -p67300 -tp67301 -a(S'setHotspotActiveBackground/3' -p67302 -S'setHotspotActiveBackground(${1:This}, ${2:UseSetting}, ${3:Back}) $4' -p67303 -tp67304 -a(S'setHotspotActiveForeground/3' -p67305 -S'setHotspotActiveForeground(${1:This}, ${2:UseSetting}, ${3:Fore}) $4' -p67306 -tp67307 -a(S'setHotspotActiveUnderline/2' -p67308 -S'setHotspotActiveUnderline(${1:This}, ${2:Underline}) $3' -p67309 -tp67310 -a(S'setHotspotSingleLine/2' -p67311 -S'setHotspotSingleLine(${1:This}, ${2:SingleLine}) $3' -p67312 -tp67313 -a(S'setId/2' -p67314 -S'setId(${1:This}, ${2:Winid}) $3' -p67315 -tp67316 -a(S'setIndent/2' -p67317 -S'setIndent(${1:This}, ${2:IndentSize}) $3' -p67318 -tp67319 -a(S'setIndentationGuides/2' -p67320 -S'setIndentationGuides(${1:This}, ${2:Show}) $3' -p67321 -tp67322 -a(S'setKeyWords/3' -p67323 -S'setKeyWords(${1:This}, ${2:KeywordSet}, ${3:KeyWords}) $4' -p67324 -tp67325 -a(S'setLabel/2' -p67326 -S'setLabel(${1:This}, ${2:Label}) $3' -p67327 -tp67328 -a(S'setLastKeydownProcessed/2' -p67329 -S'setLastKeydownProcessed(${1:This}, ${2:Val}) $3' -p67330 -tp67331 -a(S'setLayoutCache/2' -p67332 -S'setLayoutCache(${1:This}, ${2:Mode}) $3' -p67333 -tp67334 -a(S'setLexer/2' -p67335 -S'setLexer(${1:This}, ${2:Lexer}) $3' -p67336 -tp67337 -a(S'setLexerLanguage/2' -p67338 -S'setLexerLanguage(${1:This}, ${2:Language}) $3' -p67339 -tp67340 -a(S'setLineIndentation/3' -p67341 -S'setLineIndentation(${1:This}, ${2:Line}, ${3:IndentSize}) $4' -p67342 -tp67343 -a(S'setLineState/3' -p67344 -S'setLineState(${1:This}, ${2:Line}, ${3:State}) $4' -p67345 -tp67346 -a(S'setMarginLeft/2' -p67347 -S'setMarginLeft(${1:This}, ${2:PixelWidth}) $3' -p67348 -tp67349 -a(S'setMarginMask/3' -p67350 -S'setMarginMask(${1:This}, ${2:Margin}, ${3:Mask}) $4' -p67351 -tp67352 -a(S'setMarginRight/2' -p67353 -S'setMarginRight(${1:This}, ${2:PixelWidth}) $3' -p67354 -tp67355 -a(S'setMarginSensitive/3' -p67356 -S'setMarginSensitive(${1:This}, ${2:Margin}, ${3:Sensitive}) $4' -p67357 -tp67358 -a(S'setMarginType/3' -p67359 -S'setMarginType(${1:This}, ${2:Margin}, ${3:MarginType}) $4' -p67360 -tp67361 -a(S'setMarginWidth/3' -p67362 -S'setMarginWidth(${1:This}, ${2:Margin}, ${3:PixelWidth}) $4' -p67363 -tp67364 -a(S'setMargins/3' -p67365 -S'setMargins(${1:This}, ${2:Left}, ${3:Right}) $4' -p67366 -tp67367 -a(S'setMaxSize/2' -p67368 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p67369 -tp67370 -a(S'setMinSize/2' -p67371 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p67372 -tp67373 -a(S'setModEventMask/2' -p67374 -S'setModEventMask(${1:This}, ${2:Mask}) $3' -p67375 -tp67376 -a(S'setMouseDownCaptures/2' -p67377 -S'setMouseDownCaptures(${1:This}, ${2:Captures}) $3' -p67378 -tp67379 -a(S'setMouseDwellTime/2' -p67380 -S'setMouseDwellTime(${1:This}, ${2:PeriodMilliseconds}) $3' -p67381 -tp67382 -a(S'setName/2' -p67383 -S'setName(${1:This}, ${2:Name}) $3' -p67384 -tp67385 -a(S'setOwnBackgroundColour/2' -p67386 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p67387 -tp67388 -a(S'setOwnFont/2' -p67389 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p67390 -tp67391 -a(S'setOwnForegroundColour/2' -p67392 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p67393 -tp67394 -a(S'setPalette/2' -p67395 -S'setPalette(${1:This}, ${2:Pal}) $3' -p67396 -tp67397 -a(S'setPasteConvertEndings/2' -p67398 -S'setPasteConvertEndings(${1:This}, ${2:Convert}) $3' -p67399 -tp67400 -a(S'setPrintColourMode/2' -p67401 -S'setPrintColourMode(${1:This}, ${2:Mode}) $3' -p67402 -tp67403 -a(S'setPrintMagnification/2' -p67404 -S'setPrintMagnification(${1:This}, ${2:Magnification}) $3' -p67405 -tp67406 -a(S'setProperty/3' -p67407 -S'setProperty(${1:This}, ${2:Key}, ${3:Value}) $4' -p67408 -tp67409 -a(S'setReadOnly/2' -p67410 -S'setReadOnly(${1:This}, ${2:ReadOnly}) $3' -p67411 -tp67412 -a(S'setSTCCursor/2' -p67413 -S'setSTCCursor(${1:This}, ${2:CursorType}) $3' -p67414 -tp67415 -a(S'setSTCFocus/2' -p67416 -S'setSTCFocus(${1:This}, ${2:Focus}) $3' -p67417 -tp67418 -a(S'setSavePoint/1' -p67419 -S'setSavePoint(${1:This}) $2' -p67420 -tp67421 -a(S'setScrollPos/3' -p67422 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p67423 -tp67424 -a(S'setScrollPos/4' -p67425 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p67426 -tp67427 -a(S'setScrollWidth/2' -p67428 -S'setScrollWidth(${1:This}, ${2:PixelWidth}) $3' -p67429 -tp67430 -a(S'setScrollbar/5' -p67431 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p67432 -tp67433 -a(S'setScrollbar/6' -p67434 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p67435 -tp67436 -a(S'setSearchFlags/2' -p67437 -S'setSearchFlags(${1:This}, ${2:Flags}) $3' -p67438 -tp67439 -a(S'setSelAlpha/2' -p67440 -S'setSelAlpha(${1:This}, ${2:Alpha}) $3' -p67441 -tp67442 -a(S'setSelBackground/3' -p67443 -S'setSelBackground(${1:This}, ${2:UseSetting}, ${3:Back}) $4' -p67444 -tp67445 -a(S'setSelForeground/3' -p67446 -S'setSelForeground(${1:This}, ${2:UseSetting}, ${3:Fore}) $4' -p67447 -tp67448 -a(S'setSelection/3' -p67449 -S'setSelection(${1:This}, ${2:Start}, ${3:End}) $4' -p67450 -tp67451 -a(S'setSelectionEnd/2' -p67452 -S'setSelectionEnd(${1:This}, ${2:Pos}) $3' -p67453 -tp67454 -a(S'setSelectionMode/2' -p67455 -S'setSelectionMode(${1:This}, ${2:Mode}) $3' -p67456 -tp67457 -a(S'setSelectionStart/2' -p67458 -S'setSelectionStart(${1:This}, ${2:Pos}) $3' -p67459 -tp67460 -a(S'setSize/2' -p67461 -S'setSize(${1:This}, ${2:Rect}) $3' -p67462 -tp67463 -a(S'setSize/3' -p67464 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p67465 -tp67466 -a(S'setSize/5' -p67467 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p67468 -tp67469 -a(S'setSize/6' -p67470 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p67471 -tp67472 -a(S'setSizeHints/2' -p67473 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p67474 -tp67475 -a(S'setSizeHints/3' -p67476 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p67477 -tp67478 -a(S'setSizeHints/4' -p67479 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p67480 -tp67481 -a(S'setSizer/2' -p67482 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p67483 -tp67484 -a(S'setSizer/3' -p67485 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p67486 -tp67487 -a(S'setSizerAndFit/2' -p67488 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p67489 -tp67490 -a(S'setSizerAndFit/3' -p67491 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p67492 -tp67493 -a(S'setStatus/2' -p67494 -S'setStatus(${1:This}, ${2:StatusCode}) $3' -p67495 -tp67496 -a(S'setStyleBytes/2' -p67497 -S'setStyleBytes(${1:This}, ${2:Length}) $3' -p67498 -tp67499 -a(S'setStyling/3' -p67500 -S'setStyling(${1:This}, ${2:Length}, ${3:Style}) $4' -p67501 -tp67502 -a(S'setTabIndents/2' -p67503 -S'setTabIndents(${1:This}, ${2:TabIndents}) $3' -p67504 -tp67505 -a(S'setTabWidth/2' -p67506 -S'setTabWidth(${1:This}, ${2:TabWidth}) $3' -p67507 -tp67508 -a(S'setTargetEnd/2' -p67509 -S'setTargetEnd(${1:This}, ${2:Pos}) $3' -p67510 -tp67511 -a(S'setTargetStart/2' -p67512 -S'setTargetStart(${1:This}, ${2:Pos}) $3' -p67513 -tp67514 -a(S'setText/2' -p67515 -S'setText(${1:This}, ${2:Text}) $3' -p67516 -tp67517 -a(S'setTextRaw/2' -p67518 -S'setTextRaw(${1:This}, ${2:Text}) $3' -p67519 -tp67520 -a(S'setThemeEnabled/2' -p67521 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p67522 -tp67523 -a(S'setToolTip/2' -p67524 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p67525 -tp67526 -a(S'setTwoPhaseDraw/2' -p67527 -S'setTwoPhaseDraw(${1:This}, ${2:TwoPhase}) $3' -p67528 -tp67529 -a(S'setUndoCollection/2' -p67530 -S'setUndoCollection(${1:This}, ${2:CollectUndo}) $3' -p67531 -tp67532 -a(S'setUseHorizontalScrollBar/2' -p67533 -S'setUseHorizontalScrollBar(${1:This}, ${2:Show}) $3' -p67534 -tp67535 -a(S'setUseTabs/2' -p67536 -S'setUseTabs(${1:This}, ${2:UseTabs}) $3' -p67537 -tp67538 -a(S'setUseVerticalScrollBar/2' -p67539 -S'setUseVerticalScrollBar(${1:This}, ${2:Show}) $3' -p67540 -tp67541 -a(S'setVScrollBar/2' -p67542 -S'setVScrollBar(${1:This}, ${2:Bar}) $3' -p67543 -tp67544 -a(S'setViewEOL/2' -p67545 -S'setViewEOL(${1:This}, ${2:Visible}) $3' -p67546 -tp67547 -a(S'setViewWhiteSpace/2' -p67548 -S'setViewWhiteSpace(${1:This}, ${2:ViewWS}) $3' -p67549 -tp67550 -a(S'setVirtualSize/2' -p67551 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p67552 -tp67553 -a(S'setVirtualSize/3' -p67554 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p67555 -tp67556 -a(S'setVirtualSizeHints/2' -p67557 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p67558 -tp67559 -a(S'setVirtualSizeHints/3' -p67560 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p67561 -tp67562 -a(S'setVirtualSizeHints/4' -p67563 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p67564 -tp67565 -a(S'setVisiblePolicy/3' -p67566 -S'setVisiblePolicy(${1:This}, ${2:VisiblePolicy}, ${3:VisibleSlop}) $4' -p67567 -tp67568 -a(S'setWhitespaceBackground/3' -p67569 -S'setWhitespaceBackground(${1:This}, ${2:UseSetting}, ${3:Back}) $4' -p67570 -tp67571 -a(S'setWhitespaceChars/2' -p67572 -S'setWhitespaceChars(${1:This}, ${2:Characters}) $3' -p67573 -tp67574 -a(S'setWhitespaceForeground/3' -p67575 -S'setWhitespaceForeground(${1:This}, ${2:UseSetting}, ${3:Fore}) $4' -p67576 -tp67577 -a(S'setWindowStyle/2' -p67578 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p67579 -tp67580 -a(S'setWindowStyleFlag/2' -p67581 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p67582 -tp67583 -a(S'setWindowVariant/2' -p67584 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p67585 -tp67586 -a(S'setWordChars/2' -p67587 -S'setWordChars(${1:This}, ${2:Characters}) $3' -p67588 -tp67589 -a(S'setWrapMode/2' -p67590 -S'setWrapMode(${1:This}, ${2:Mode}) $3' -p67591 -tp67592 -a(S'setWrapStartIndent/2' -p67593 -S'setWrapStartIndent(${1:This}, ${2:Indent}) $3' -p67594 -tp67595 -a(S'setWrapVisualFlags/2' -p67596 -S'setWrapVisualFlags(${1:This}, ${2:WrapVisualFlags}) $3' -p67597 -tp67598 -a(S'setWrapVisualFlagsLocation/2' -p67599 -S'setWrapVisualFlagsLocation(${1:This}, ${2:WrapVisualFlagsLocation}) $3' -p67600 -tp67601 -a(S'setXCaretPolicy/3' -p67602 -S'setXCaretPolicy(${1:This}, ${2:CaretPolicy}, ${3:CaretSlop}) $4' -p67603 -tp67604 -a(S'setYCaretPolicy/3' -p67605 -S'setYCaretPolicy(${1:This}, ${2:CaretPolicy}, ${3:CaretSlop}) $4' -p67606 -tp67607 -a(S'setZoom/2' -p67608 -S'setZoom(${1:This}, ${2:Zoom}) $3' -p67609 -tp67610 -a(S'shouldInheritColours/1' -p67611 -S'shouldInheritColours(${1:This}) $2' -p67612 -tp67613 -a(S'show/1' -p67614 -S'show(${1:This}) $2' -p67615 -tp67616 -a(S'show/2' -p67617 -S'show(${1:This}, ${2:Options}) $3' -p67618 -tp67619 -a(S'showLines/3' -p67620 -S'showLines(${1:This}, ${2:LineStart}, ${3:LineEnd}) $4' -p67621 -tp67622 -a(S'startRecord/1' -p67623 -S'startRecord(${1:This}) $2' -p67624 -tp67625 -a(S'startStyling/3' -p67626 -S'startStyling(${1:This}, ${2:Pos}, ${3:Mask}) $4' -p67627 -tp67628 -a(S'stopRecord/1' -p67629 -S'stopRecord(${1:This}) $2' -p67630 -tp67631 -a(S'stutteredPageDown/1' -p67632 -S'stutteredPageDown(${1:This}) $2' -p67633 -tp67634 -a(S'stutteredPageDownExtend/1' -p67635 -S'stutteredPageDownExtend(${1:This}) $2' -p67636 -tp67637 -a(S'stutteredPageUp/1' -p67638 -S'stutteredPageUp(${1:This}) $2' -p67639 -tp67640 -a(S'stutteredPageUpExtend/1' -p67641 -S'stutteredPageUpExtend(${1:This}) $2' -p67642 -tp67643 -a(S'styleClearAll/1' -p67644 -S'styleClearAll(${1:This}) $2' -p67645 -tp67646 -a(S'styleResetDefault/1' -p67647 -S'styleResetDefault(${1:This}) $2' -p67648 -tp67649 -a(S'styleSetBackground/3' -p67650 -S'styleSetBackground(${1:This}, ${2:Style}, ${3:Back}) $4' -p67651 -tp67652 -a(S'styleSetBold/3' -p67653 -S'styleSetBold(${1:This}, ${2:Style}, ${3:Bold}) $4' -p67654 -tp67655 -a(S'styleSetCase/3' -p67656 -S'styleSetCase(${1:This}, ${2:Style}, ${3:CaseForce}) $4' -p67657 -tp67658 -a(S'styleSetCharacterSet/3' -p67659 -S'styleSetCharacterSet(${1:This}, ${2:Style}, ${3:CharacterSet}) $4' -p67660 -tp67661 -a(S'styleSetEOLFilled/3' -p67662 -S'styleSetEOLFilled(${1:This}, ${2:Style}, ${3:Filled}) $4' -p67663 -tp67664 -a(S'styleSetFaceName/3' -p67665 -S'styleSetFaceName(${1:This}, ${2:Style}, ${3:FontName}) $4' -p67666 -tp67667 -a(S'styleSetFont/3' -p67668 -S'styleSetFont(${1:This}, ${2:StyleNum}, ${3:Font}) $4' -p67669 -tp67670 -a(S'styleSetFontAttr/7' -p67671 -S'styleSetFontAttr(${1:This}, ${2:StyleNum}, ${3:Size}, ${4:FaceName}, ${5:Bold}, ${6:Italic}, ${7:Underline}) $8' -p67672 -tp67673 -a(S'styleSetFontAttr/8' -p67674 -S'styleSetFontAttr(${1:This}, ${2:StyleNum}, ${3:Size}, ${4:FaceName}, ${5:Bold}, ${6:Italic}, ${7:Underline}, ${8:Param8}) $9' -p67675 -tp67676 -a(S'styleSetFontEncoding/3' -p67677 -S'styleSetFontEncoding(${1:This}, ${2:Style}, ${3:Encoding}) $4' -p67678 -tp67679 -a(S'styleSetForeground/3' -p67680 -S'styleSetForeground(${1:This}, ${2:Style}, ${3:Fore}) $4' -p67681 -tp67682 -a(S'styleSetHotSpot/3' -p67683 -S'styleSetHotSpot(${1:This}, ${2:Style}, ${3:Hotspot}) $4' -p67684 -tp67685 -a(S'styleSetItalic/3' -p67686 -S'styleSetItalic(${1:This}, ${2:Style}, ${3:Italic}) $4' -p67687 -tp67688 -a(S'styleSetSize/3' -p67689 -S'styleSetSize(${1:This}, ${2:Style}, ${3:SizePoints}) $4' -p67690 -tp67691 -a(S'styleSetSpec/3' -p67692 -S'styleSetSpec(${1:This}, ${2:StyleNum}, ${3:Spec}) $4' -p67693 -tp67694 -a(S'styleSetUnderline/3' -p67695 -S'styleSetUnderline(${1:This}, ${2:Style}, ${3:Underline}) $4' -p67696 -tp67697 -a(S'styleSetVisible/3' -p67698 -S'styleSetVisible(${1:This}, ${2:Style}, ${3:Visible}) $4' -p67699 -tp67700 -a(S'tab/1' -p67701 -S'tab(${1:This}) $2' -p67702 -tp67703 -a(S'targetFromSelection/1' -p67704 -S'targetFromSelection(${1:This}) $2' -p67705 -tp67706 -a(S'textHeight/2' -p67707 -S'textHeight(${1:This}, ${2:Line}) $3' -p67708 -tp67709 -a(S'textWidth/3' -p67710 -S'textWidth(${1:This}, ${2:Style}, ${3:Text}) $4' -p67711 -tp67712 -a(S'thaw/1' -p67713 -S'thaw(${1:This}) $2' -p67714 -tp67715 -a(S'toggleCaretSticky/1' -p67716 -S'toggleCaretSticky(${1:This}) $2' -p67717 -tp67718 -a(S'toggleFold/2' -p67719 -S'toggleFold(${1:This}, ${2:Line}) $3' -p67720 -tp67721 -a(S'transferDataFromWindow/1' -p67722 -S'transferDataFromWindow(${1:This}) $2' -p67723 -tp67724 -a(S'transferDataToWindow/1' -p67725 -S'transferDataToWindow(${1:This}) $2' -p67726 -tp67727 -a(S'undo/1' -p67728 -S'undo(${1:This}) $2' -p67729 -tp67730 -a(S'update/1' -p67731 -S'update(${1:This}) $2' -p67732 -tp67733 -a(S'updateWindowUI/1' -p67734 -S'updateWindowUI(${1:This}) $2' -p67735 -tp67736 -a(S'updateWindowUI/2' -p67737 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p67738 -tp67739 -a(S'upperCase/1' -p67740 -S'upperCase(${1:This}) $2' -p67741 -tp67742 -a(S'usePopUp/2' -p67743 -S'usePopUp(${1:This}, ${2:AllowPopUp}) $3' -p67744 -tp67745 -a(S'userListShow/3' -p67746 -S'userListShow(${1:This}, ${2:ListType}, ${3:ItemList}) $4' -p67747 -tp67748 -a(S'vCHome/1' -p67749 -S'vCHome(${1:This}) $2' -p67750 -tp67751 -a(S'vCHomeExtend/1' -p67752 -S'vCHomeExtend(${1:This}) $2' -p67753 -tp67754 -a(S'vCHomeRectExtend/1' -p67755 -S'vCHomeRectExtend(${1:This}) $2' -p67756 -tp67757 -a(S'vCHomeWrap/1' -p67758 -S'vCHomeWrap(${1:This}) $2' -p67759 -tp67760 -a(S'vCHomeWrapExtend/1' -p67761 -S'vCHomeWrapExtend(${1:This}) $2' -p67762 -tp67763 -a(S'validate/1' -p67764 -S'validate(${1:This}) $2' -p67765 -tp67766 -a(S'visibleFromDocLine/2' -p67767 -S'visibleFromDocLine(${1:This}, ${2:Line}) $3' -p67768 -tp67769 -a(S'warpPointer/3' -p67770 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p67771 -tp67772 -a(S'wordEndPosition/3' -p67773 -S'wordEndPosition(${1:This}, ${2:Pos}, ${3:OnlyWordCharacters}) $4' -p67774 -tp67775 -a(S'wordLeft/1' -p67776 -S'wordLeft(${1:This}) $2' -p67777 -tp67778 -a(S'wordLeftEnd/1' -p67779 -S'wordLeftEnd(${1:This}) $2' -p67780 -tp67781 -a(S'wordLeftEndExtend/1' -p67782 -S'wordLeftEndExtend(${1:This}) $2' -p67783 -tp67784 -a(S'wordLeftExtend/1' -p67785 -S'wordLeftExtend(${1:This}) $2' -p67786 -tp67787 -a(S'wordPartLeft/1' -p67788 -S'wordPartLeft(${1:This}) $2' -p67789 -tp67790 -a(S'wordPartLeftExtend/1' -p67791 -S'wordPartLeftExtend(${1:This}) $2' -p67792 -tp67793 -a(S'wordPartRight/1' -p67794 -S'wordPartRight(${1:This}) $2' -p67795 -tp67796 -a(S'wordPartRightExtend/1' -p67797 -S'wordPartRightExtend(${1:This}) $2' -p67798 -tp67799 -a(S'wordRight/1' -p67800 -S'wordRight(${1:This}) $2' -p67801 -tp67802 -a(S'wordRightEnd/1' -p67803 -S'wordRightEnd(${1:This}) $2' -p67804 -tp67805 -a(S'wordRightEndExtend/1' -p67806 -S'wordRightEndExtend(${1:This}) $2' -p67807 -tp67808 -a(S'wordRightExtend/1' -p67809 -S'wordRightExtend(${1:This}) $2' -p67810 -tp67811 -a(S'wordStartPosition/3' -p67812 -S'wordStartPosition(${1:This}, ${2:Pos}, ${3:OnlyWordCharacters}) $4' -p67813 -tp67814 -a(S'wrapCount/2' -p67815 -S'wrapCount(${1:This}, ${2:Line}) $3' -p67816 -tp67817 -a(S'zoomIn/1' -p67818 -S'zoomIn(${1:This}) $2' -p67819 -tp67820 -a(S'zoomOut/1' -p67821 -S'zoomOut(${1:This}) $2' -p67822 -tp67823 -asS'CosNotifyFilter_ConstraintExpSeq' -p67824 -(lp67825 -(S'id/0' -p67826 -S'id() $1' -p67827 -tp67828 -a(S'name/0' -p67829 -S'name() $1' -p67830 -tp67831 -a(S'tc/0' -p67832 -S'tc() $1' -p67833 -tp67834 -asS'edlin' -p67835 -(lp67836 -(S'current_line/1' -p67837 -S'current_line(${1:Param1}) $2' -p67838 -tp67839 -a(S'edit_line/2' -p67840 -S'edit_line(${1:Cs}, ${2:Param2}) $3' -p67841 -tp67842 -a(S'edit_line1/2' -p67843 -S'edit_line1(${1:Cs}, ${2:Param2}) $3' -p67844 -tp67845 -a(S'erase_inp/1' -p67846 -S'erase_inp(${1:Param1}) $2' -p67847 -tp67848 -a(S'erase_line/1' -p67849 -S'erase_line(${1:Param1}) $2' -p67850 -tp67851 -a(S'init/0' -p67852 -S'init() $1' -p67853 -tp67854 -a(S'length_after/1' -p67855 -S'length_after(${1:Param1}) $2' -p67856 -tp67857 -a(S'length_before/1' -p67858 -S'length_before(${1:Param1}) $2' -p67859 -tp67860 -a(S'over_word/3' -p67861 -S'over_word(${1:Cs}, ${2:Stack}, ${3:N}) $4' -p67862 -tp67863 -a(S'prefix_arg/1' -p67864 -S'prefix_arg(${1:N}) $2' -p67865 -tp67866 -a(S'prompt/1' -p67867 -S'prompt(${1:Param1}) $2' -p67868 -tp67869 -a(S'redraw_line/1' -p67870 -S'redraw_line(${1:Param1}) $2' -p67871 -tp67872 -a(S'start/1' -p67873 -S'start(${1:Pbs}) $2' -p67874 -tp67875 -asS'gs_frontend' -p67876 -(lp67877 -(S'config/2' -p67878 -S'config(${1:GsPid}, ${2:Args}) $3' -p67879 -tp67880 -a(S'create/2' -p67881 -S'create(${1:GsPid}, ${2:Args}) $3' -p67882 -tp67883 -a(S'destroy/2' -p67884 -S'destroy(${1:GsPid}, ${2:IdOrName}) $3' -p67885 -tp67886 -a(S'event/3' -p67887 -S'event(${1:FrontEnd}, ${2:ToOwner}, ${3:EventMsg}) $4' -p67888 -tp67889 -a(S'info/1' -p67890 -S'info(${1:Option}) $2' -p67891 -tp67892 -a(S'init/1' -p67893 -S'init(${1:Param1}) $2' -p67894 -tp67895 -a(S'read/2' -p67896 -S'read(${1:GsPid}, ${2:Args}) $3' -p67897 -tp67898 -a(S'start/1' -p67899 -S'start(${1:Opts}) $2' -p67900 -tp67901 -a(S'stop/0' -p67902 -S'stop() $1' -p67903 -tp67904 -asS'wxEvtHandler' -p67905 -(lp67906 -(S'connect/2' -p67907 -S'connect(${1:This}, ${2:EventType}) $3' -p67908 -tp67909 -a(S'connect/3' -p67910 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p67911 -tp67912 -a(S'connect_impl/3' -p67913 -S'connect_impl() $1' -p67914 -tp67915 -a(S'destroy_evt_listener/1' -p67916 -S'destroy_evt_listener(${1:Param1}) $2' -p67917 -tp67918 -a(S'disconnect/1' -p67919 -S'disconnect(${1:This}) $2' -p67920 -tp67921 -a(S'disconnect/2' -p67922 -S'disconnect(${1:This}, ${2:EventType}) $3' -p67923 -tp67924 -a(S'disconnect/3' -p67925 -S'disconnect(${1:This}, ${2:EventType}, ${3:Opts}) $4' -p67926 -tp67927 -a(S'disconnect_impl/2' -p67928 -S'disconnect_impl(${1:Listener}, ${2:Object}) $3' -p67929 -tp67930 -a(S'disconnect_impl/3' -p67931 -S'disconnect_impl() $1' -p67932 -tp67933 -a(S'get_callback/1' -p67934 -S'get_callback(${1:Param1}) $2' -p67935 -tp67936 -a(S'new_evt_listener/0' -p67937 -S'new_evt_listener() $1' -p67938 -tp67939 -a(S'replace_fun_with_id/2' -p67940 -S'replace_fun_with_id(${1:Evh}, ${2:Id}) $3' -p67941 -tp67942 -asS'percept_analyzer' -p67943 -(lp67944 -(S'activities2count/2' -p67945 -S'activities2count(${1:Acts}, ${2:StartTs}) $3' -p67946 -tp67947 -a(S'activities2count/3' -p67948 -S'activities2count(${1:Acts}, ${2:StartTs}, ${3:Type}) $4' -p67949 -tp67950 -a(S'activities2count2/2' -p67951 -S'activities2count2(${1:Acts}, ${2:StartTs}) $3' -p67952 -tp67953 -a(S'analyze_activities/2' -p67954 -S'analyze_activities(${1:Threshold}, ${2:Activities}) $3' -p67955 -tp67956 -a(S'mean/1' -p67957 -S'mean(${1:List}) $2' -p67958 -tp67959 -a(S'minmax/1' -p67960 -S'minmax(${1:Data}) $2' -p67961 -tp67962 -a(S'minmax_activities/2' -p67963 -S'minmax_activities(${1:Activities}, ${2:Count}) $3' -p67964 -tp67965 -a(S'runnable_count/1' -p67966 -S'runnable_count(${1:Activities}) $2' -p67967 -tp67968 -a(S'runnable_count/2' -p67969 -S'runnable_count(${1:Activities}, ${2:StartCount}) $3' -p67970 -tp67971 -a(S'seconds2ts/2' -p67972 -S'seconds2ts(${1:Seconds}, ${2:Param2}) $3' -p67973 -tp67974 -a(S'waiting_activities/1' -p67975 -S'waiting_activities(${1:Activities}) $2' -p67976 -tp67977 -asS'diameter_app' -p67978 -(lp67979 -(S'start/2' -p67980 -S'start(${1:Param1}, ${2:Param2}) $3' -p67981 -tp67982 -a(S'stop/1' -p67983 -S'stop(${1:Param1}) $2' -p67984 -tp67985 -asS'diameter_sctp_sup' -p67986 -(lp67987 -(S'init/1' -p67988 -S'init(${1:Param1}) $2' -p67989 -tp67990 -a(S'start/0' -p67991 -S'start() $1' -p67992 -tp67993 -a(S'start_child/1' -p67994 -S'start_child(${1:T}) $2' -p67995 -tp67996 -a(S'start_link/1' -p67997 -S'start_link(${1:Name}) $2' -p67998 -tp67999 -asS'oe_CosNotifyFilter' -p68000 -(lp68001 -(S'oe_dependency/0' -p68002 -S'oe_dependency() $1' -p68003 -tp68004 -a(S'oe_get_module/5' -p68005 -S'oe_get_module(${1:OE_IFR}, ${2:OE_Parent}, ${3:ID}, ${4:Name}, ${5:Version}) $6' -p68006 -tp68007 -a(S'oe_register/0' -p68008 -S'oe_register() $1' -p68009 -tp68010 -a(S'oe_unregister/0' -p68011 -S'oe_unregister() $1' -p68012 -tp68013 -asS'toolbar_lib' -p68014 -(lp68015 -(S'error_string/1' -p68016 -S'error_string(${1:Param1}) $2' -p68017 -tp68018 -a(S'gs_contribs_dir/0' -p68019 -S'gs_contribs_dir() $1' -p68020 -tp68021 -a(S'help_file/0' -p68022 -S'help_file() $1' -p68023 -tp68024 -a(S'insert_newlines/1' -p68025 -S'insert_newlines(${1:Other}) $2' -p68026 -tp68027 -a(S'legal_file/1' -p68028 -S'legal_file(${1:File}) $2' -p68029 -tp68030 -a(S'otp_file/0' -p68031 -S'otp_file() $1' -p68032 -tp68033 -a(S'tool_info_syntax/2' -p68034 -S'tool_info_syntax(${1:Param1}, ${2:ToolInfo}) $3' -p68035 -tp68036 -asS'CosPropertyService_PropertyNamesIterator_impl' -p68037 -(lp68038 -(S'code_change/3' -p68039 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p68040 -tp68041 -a(S'destroy/1' -p68042 -S'destroy(${1:State}) $2' -p68043 -tp68044 -a(S'init/1' -p68045 -S'init(${1:Properties}) $2' -p68046 -tp68047 -a(S'next_n/2' -p68048 -S'next_n(${1:State}, ${2:N}) $3' -p68049 -tp68050 -a(S'next_one/1' -p68051 -S'next_one(${1:State}) $2' -p68052 -tp68053 -a(S'reset/1' -p68054 -S'reset(${1:State}) $2' -p68055 -tp68056 -a(S'terminate/2' -p68057 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p68058 -tp68059 -asS'snmp_note_store' -p68060 -(lp68061 -(S'code_change/3' -p68062 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p68063 -tp68064 -a(S'get_note/2' -p68065 -S'get_note(${1:Pid}, ${2:Key}) $3' -p68066 -tp68067 -a(S'handle_call/3' -p68068 -S'handle_call(${1:Req}, ${2:From}, ${3:State}) $4' -p68069 -tp68070 -a(S'handle_cast/2' -p68071 -S'handle_cast(${1:Msg}, ${2:State}) $3' -p68072 -tp68073 -a(S'handle_info/2' -p68074 -S'handle_info(${1:Info}, ${2:State}) $3' -p68075 -tp68076 -a(S'info/1' -p68077 -S'info(${1:Pid}) $2' -p68078 -tp68079 -a(S'init/1' -p68080 -S'init(${1:Param1}) $2' -p68081 -tp68082 -a(S'set_note/3' -p68083 -S'set_note(${1:Pid}, ${2:Key}, ${3:Value}) $4' -p68084 -tp68085 -a(S'set_note/4' -p68086 -S'set_note(${1:Pid}, ${2:Lifetime}, ${3:Key}, ${4:Value}) $5' -p68087 -tp68088 -a(S'start_link/3' -p68089 -S'start_link(${1:Prio}, ${2:Mod}, ${3:Opts}) $4' -p68090 -tp68091 -a(S'stop/1' -p68092 -S'stop(${1:Pid}) $2' -p68093 -tp68094 -a(S'terminate/2' -p68095 -S'terminate(${1:Reason}, ${2:Param2}) $3' -p68096 -tp68097 -a(S'timer/3' -p68098 -S'timer(${1:Pid}, ${2:Param2}, ${3:Timeout}) $4' -p68099 -tp68100 -a(S'verbosity/2' -p68101 -S'verbosity(${1:Pid}, ${2:Verbosity}) $3' -p68102 -tp68103 -asS'os' -p68104 -(lp68105 -(S'cmd/1' -p68106 -S'cmd(${1:Command}) $2' -p68107 -tp68108 -a(S'find_executable/1' -p68109 -S'find_executable(${1:Name}) $2' -p68110 -tp68111 -a(S'find_executable/2' -p68112 -S'find_executable(${1:Name}, ${2:Path}) $3' -p68113 -tp68114 -a(S'type/0' -p68115 -S'type() $1' -p68116 -tp68117 -a(S'version/0' -p68118 -S'version() $1' -p68119 -tp68120 -asS'wxArtProvider' -p68121 -(lp68122 -(S'getBitmap/1' -p68123 -S'getBitmap(${1:Id}) $2' -p68124 -tp68125 -a(S'getBitmap/2' -p68126 -S'getBitmap(${1:Id}, ${2:Param2}) $3' -p68127 -tp68128 -a(S'getIcon/1' -p68129 -S'getIcon(${1:Id}) $2' -p68130 -tp68131 -a(S'getIcon/2' -p68132 -S'getIcon(${1:Id}, ${2:Param2}) $3' -p68133 -tp68134 -a(S'parent_class/1' -p68135 -S'parent_class(${1:Param1}) $2' -p68136 -tp68137 -asS'ct_telnet_client' -p68138 -(lp68139 -(S'close/1' -p68140 -S'close(${1:Pid}) $2' -p68141 -tp68142 -a(S'get_data/1' -p68143 -S'get_data(${1:Pid}) $2' -p68144 -tp68145 -a(S'open/1' -p68146 -S'open(${1:Server}) $2' -p68147 -tp68148 -a(S'open/2' -p68149 -S'open(${1:Server}, ${2:Port}) $3' -p68150 -tp68151 -a(S'open/3' -p68152 -S'open(${1:Server}, ${2:Port}, ${3:Timeout}) $4' -p68153 -tp68154 -a(S'open/4' -p68155 -S'open(${1:Server}, ${2:Port}, ${3:Timeout}, ${4:KeepAlive}) $5' -p68156 -tp68157 -a(S'send_data/2' -p68158 -S'send_data(${1:Pid}, ${2:Data}) $3' -p68159 -tp68160 -asS'wxSystemOptions' -p68161 -(lp68162 -(S'getOption/1' -p68163 -S'getOption(${1:Name}) $2' -p68164 -tp68165 -a(S'getOptionInt/1' -p68166 -S'getOptionInt(${1:Name}) $2' -p68167 -tp68168 -a(S'hasOption/1' -p68169 -S'hasOption(${1:Name}) $2' -p68170 -tp68171 -a(S'isFalse/1' -p68172 -S'isFalse(${1:Name}) $2' -p68173 -tp68174 -a(S'parent_class/1' -p68175 -S'parent_class(${1:Param1}) $2' -p68176 -tp68177 -a(S'setOption/2' -p68178 -S'setOption(${1:Name}, ${2:Value}) $3' -p68179 -tp68180 -asS'beam_listing' -p68181 -(lp68182 -(S'module/2' -p68183 -S'module(${1:File}, ${2:Fs}) $3' -p68184 -tp68185 -asS'observer_perf_wx' -p68186 -(lp68187 -(S'code_change/3' -p68188 -S'code_change(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p68189 -tp68190 -a(S'drawRoundedRectangle/6' -p68191 -S'drawRoundedRectangle(${1:Param1}, ${2:X0}, ${3:Y0}, ${4:X1}, ${5:Y1}, ${6:R}) $7' -p68192 -tp68193 -a(S'drawText/4' -p68194 -S'drawText(${1:Param1}, ${2:Str}, ${3:X}, ${4:Y}) $5' -p68195 -tp68196 -a(S'getTextExtent/2' -p68197 -S'getTextExtent(${1:Param1}, ${2:Str}) $3' -p68198 -tp68199 -a(S'handle_call/3' -p68200 -S'handle_call(${1:Event}, ${2:From}, ${3:Param3}) $4' -p68201 -tp68202 -a(S'handle_cast/2' -p68203 -S'handle_cast(${1:Event}, ${2:Param2}) $3' -p68204 -tp68205 -a(S'handle_event/2' -p68206 -S'handle_event(${1:Event}, ${2:Param2}) $3' -p68207 -tp68208 -a(S'handle_info/2' -p68209 -S'handle_info(${1:Param1}, ${2:State}) $3' -p68210 -tp68211 -a(S'handle_sync_event/3' -p68212 -S'handle_sync_event() $1' -p68213 -tp68214 -a(S'haveGC/1' -p68215 -S'haveGC(${1:Win}) $2' -p68216 -tp68217 -a(S'init/1' -p68218 -S'init(${1:Param1}) $2' -p68219 -tp68220 -a(S'setBrush/2' -p68221 -S'setBrush(${1:Param1}, ${2:Brush}) $3' -p68222 -tp68223 -a(S'setFont/3' -p68224 -S'setFont(${1:Param1}, ${2:Font}, ${3:Color}) $4' -p68225 -tp68226 -a(S'setPen/2' -p68227 -S'setPen(${1:Param1}, ${2:Pen}) $3' -p68228 -tp68229 -a(S'start_link/2' -p68230 -S'start_link(${1:Notebook}, ${2:Parent}) $3' -p68231 -tp68232 -a(S'strokeLine/5' -p68233 -S'strokeLine(${1:Param1}, ${2:X0}, ${3:Y0}, ${4:X1}, ${5:Y1}) $6' -p68234 -tp68235 -a(S'strokeLines/2' -p68236 -S'strokeLines(${1:Param1}, ${2:Lines}) $3' -p68237 -tp68238 -a(S'terminate/2' -p68239 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p68240 -tp68241 -asS'erl_tidy' -p68242 -(lp68243 -(S'dir/0' -p68244 -S'dir() $1' -p68245 -tp68246 -a(S'dir/1' -p68247 -S'dir(${1:Dir}) $2' -p68248 -tp68249 -a(S'dir/2' -p68250 -S'dir(${1:Dir}, ${2:Opts}) $3' -p68251 -tp68252 -a(S'file/1' -p68253 -S'file(${1:Name}) $2' -p68254 -tp68255 -a(S'file/2' -p68256 -S'file(${1:Name}, ${2:Opts}) $3' -p68257 -tp68258 -a(S'module/1' -p68259 -S'module(${1:Forms}) $2' -p68260 -tp68261 -a(S'module/2' -p68262 -S'module(${1:Name}, ${2:Opts}) $3' -p68263 -tp68264 -asS'test_server_node' -p68265 -(lp68266 -(S'handle_debug/4' -p68267 -S'handle_debug(${1:Out}, ${2:Trace}, ${3:TI}, ${4:N}) $5' -p68268 -tp68269 -a(S'is_release_available/1' -p68270 -S'is_release_available(${1:Rel}) $2' -p68271 -tp68272 -a(S'kill_nodes/1' -p68273 -S'kill_nodes(${1:TI}) $2' -p68274 -tp68275 -a(S'node_started/1' -p68276 -S'node_started(${1:Param1}) $2' -p68277 -tp68278 -a(S'nodedown/2' -p68279 -S'nodedown(${1:Sock}, ${2:TI}) $3' -p68280 -tp68281 -a(S'start_node/5' -p68282 -S'start_node(${1:SlaveName}, ${2:Param2}, ${3:Options}, ${4:From}, ${5:TI}) $6' -p68283 -tp68284 -a(S'start_remote_main_target/1' -p68285 -S'start_remote_main_target(${1:Parameters}) $2' -p68286 -tp68287 -a(S'start_tracer_node/2' -p68288 -S'start_tracer_node(${1:TraceFile}, ${2:TI}) $3' -p68289 -tp68290 -a(S'stop/1' -p68291 -S'stop(${1:TI}) $2' -p68292 -tp68293 -a(S'stop_node/2' -p68294 -S'stop_node(${1:Name}, ${2:TI}) $3' -p68295 -tp68296 -a(S'stop_tracer_node/1' -p68297 -S'stop_tracer_node(${1:Sock}) $2' -p68298 -tp68299 -a(S'trace_nodes/2' -p68300 -S'trace_nodes(${1:Sock}, ${2:Nodes}) $3' -p68301 -tp68302 -a(S'trc/1' -p68303 -S'trc(${1:Param1}) $2' -p68304 -tp68305 -asS'tcl2erl' -p68306 -(lp68307 -(S'parse_event/1' -p68308 -S'parse_event(${1:Bytes}) $2' -p68309 -tp68310 -a(S'ret_atom/1' -p68311 -S'ret_atom(${1:Str}) $2' -p68312 -tp68313 -a(S'ret_bool/1' -p68314 -S'ret_bool(${1:Str}) $2' -p68315 -tp68316 -a(S'ret_color/1' -p68317 -S'ret_color(${1:Str}) $2' -p68318 -tp68319 -a(S'ret_enable/1' -p68320 -S'ret_enable(${1:Str}) $2' -p68321 -tp68322 -a(S'ret_file/1' -p68323 -S'ret_file(${1:Str}) $2' -p68324 -tp68325 -a(S'ret_focus/2' -p68326 -S'ret_focus(${1:W}, ${2:Str}) $3' -p68327 -tp68328 -a(S'ret_height/1' -p68329 -S'ret_height(${1:Str}) $2' -p68330 -tp68331 -a(S'ret_iconified/1' -p68332 -S'ret_iconified(${1:Str}) $2' -p68333 -tp68334 -a(S'ret_int/1' -p68335 -S'ret_int(${1:Str}) $2' -p68336 -tp68337 -a(S'ret_label/1' -p68338 -S'ret_label(${1:Str}) $2' -p68339 -tp68340 -a(S'ret_list/1' -p68341 -S'ret_list(${1:Str}) $2' -p68342 -tp68343 -a(S'ret_mapped/1' -p68344 -S'ret_mapped(${1:Str}) $2' -p68345 -tp68346 -a(S'ret_pack/2' -p68347 -S'ret_pack(${1:Key}, ${2:TkW}) $3' -p68348 -tp68349 -a(S'ret_place/2' -p68350 -S'ret_place(${1:Key}, ${2:TkW}) $3' -p68351 -tp68352 -a(S'ret_stipple/1' -p68353 -S'ret_stipple(${1:Str}) $2' -p68354 -tp68355 -a(S'ret_str/1' -p68356 -S'ret_str(${1:Str}) $2' -p68357 -tp68358 -a(S'ret_str_list/1' -p68359 -S'ret_str_list(${1:Str}) $2' -p68360 -tp68361 -a(S'ret_tuple/1' -p68362 -S'ret_tuple(${1:Str}) $2' -p68363 -tp68364 -a(S'ret_width/1' -p68365 -S'ret_width(${1:Str}) $2' -p68366 -tp68367 -a(S'ret_x/1' -p68368 -S'ret_x(${1:Str}) $2' -p68369 -tp68370 -a(S'ret_y/1' -p68371 -S'ret_y(${1:Str}) $2' -p68372 -tp68373 -asS'snmpa_notification_delivery_info_receiver' -p68374 -(lp68375 -(S'behaviour_info/1' -p68376 -S'behaviour_info(${1:Param1}) $2' -p68377 -tp68378 -a(S'verify/1' -p68379 -S'verify(${1:Module}) $2' -p68380 -tp68381 -asS'megaco_binary_term_id' -p68382 -(lp68383 -(S'decode/2' -p68384 -S'decode(${1:Config}, ${2:TermId}) $3' -p68385 -tp68386 -a(S'encode/2' -p68387 -S'encode(${1:Config}, ${2:TermId}) $3' -p68388 -tp68389 -asS'ssh_cli' -p68390 -(lp68391 -(S'handle_msg/2' -p68392 -S'handle_msg(${1:Param1}, ${2:State}) $3' -p68393 -tp68394 -a(S'handle_ssh_msg/2' -p68395 -S'handle_ssh_msg(${1:Param1}, ${2:State}) $3' -p68396 -tp68397 -a(S'init/1' -p68398 -S'init(${1:Param1}) $2' -p68399 -tp68400 -a(S'listen/1' -p68401 -S'listen(${1:Shell}) $2' -p68402 -tp68403 -a(S'listen/2' -p68404 -S'listen(${1:Shell}, ${2:Port}) $3' -p68405 -tp68406 -a(S'listen/3' -p68407 -S'listen(${1:Shell}, ${2:Port}, ${3:Opts}) $4' -p68408 -tp68409 -a(S'listen/4' -p68410 -S'listen(${1:Shell}, ${2:HostAddr}, ${3:Port}, ${4:Opts}) $5' -p68411 -tp68412 -a(S'stop/1' -p68413 -S'stop(${1:Pid}) $2' -p68414 -tp68415 -a(S'terminate/2' -p68416 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p68417 -tp68418 -asS'cosFileTransferApp' -p68419 -(lp68420 -(S'configure/2' -p68421 -S'configure(${1:Key}, ${2:Value}) $3' -p68422 -tp68423 -a(S'create_VFS/4' -p68424 -S'create_VFS(${1:Type}, ${2:Content}, ${3:Host}, ${4:Port}) $5' -p68425 -tp68426 -a(S'create_VFS/5' -p68427 -S'create_VFS(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}, ${5:Param5}) $6' -p68428 -tp68429 -a(S'create_dir/2' -p68430 -S'create_dir(${1:Session}, ${2:FileNameList}) $3' -p68431 -tp68432 -a(S'create_dir/3' -p68433 -S'create_dir(${1:Session}, ${2:FileNameList}, ${3:Parent}) $4' -p68434 -tp68435 -a(S'create_file/2' -p68436 -S'create_file(${1:Session}, ${2:FileNameList}) $3' -p68437 -tp68438 -a(S'create_file/3' -p68439 -S'create_file(${1:Session}, ${2:FileNameList}, ${3:Parent}) $4' -p68440 -tp68441 -a(S'create_link/3' -p68442 -S'create_link(${1:Module}, ${2:Env}, ${3:ArgList}) $4' -p68443 -tp68444 -a(S'create_name/1' -p68445 -S'create_name(${1:Type}) $2' -p68446 -tp68447 -a(S'get_buffert_size/0' -p68448 -S'get_buffert_size() $1' -p68449 -tp68450 -a(S'get_option/3' -p68451 -S'get_option(${1:Key}, ${2:OptionList}, ${3:DefaultList}) $4' -p68452 -tp68453 -a(S'init/1' -p68454 -S'init(${1:Param1}) $2' -p68455 -tp68456 -a(S'install/0' -p68457 -S'install() $1' -p68458 -tp68459 -a(S'split_paths/1' -p68460 -S'split_paths(${1:Listing}) $2' -p68461 -tp68462 -a(S'ssl_client_cacertfile/0' -p68463 -S'ssl_client_cacertfile() $1' -p68464 -tp68465 -a(S'ssl_client_certfile/0' -p68466 -S'ssl_client_certfile() $1' -p68467 -tp68468 -a(S'ssl_client_depth/0' -p68469 -S'ssl_client_depth() $1' -p68470 -tp68471 -a(S'ssl_client_verify/0' -p68472 -S'ssl_client_verify() $1' -p68473 -tp68474 -a(S'ssl_port/0' -p68475 -S'ssl_port() $1' -p68476 -tp68477 -a(S'ssl_server_cacertfile/0' -p68478 -S'ssl_server_cacertfile() $1' -p68479 -tp68480 -a(S'ssl_server_certfile/0' -p68481 -S'ssl_server_certfile() $1' -p68482 -tp68483 -a(S'ssl_server_depth/0' -p68484 -S'ssl_server_depth() $1' -p68485 -tp68486 -a(S'ssl_server_verify/0' -p68487 -S'ssl_server_verify() $1' -p68488 -tp68489 -a(S'start/0' -p68490 -S'start() $1' -p68491 -tp68492 -a(S'start/2' -p68493 -S'start(${1:Param1}, ${2:Param2}) $3' -p68494 -tp68495 -a(S'stop/0' -p68496 -S'stop() $1' -p68497 -tp68498 -a(S'stop/1' -p68499 -S'stop(${1:Param1}) $2' -p68500 -tp68501 -a(S'type_check/2' -p68502 -S'type_check(${1:Obj}, ${2:Mod}) $3' -p68503 -tp68504 -a(S'uninstall/0' -p68505 -S'uninstall() $1' -p68506 -tp68507 -asS'xmerl_b64Bin_scan' -p68508 -(lp68509 -(S'scan/1' -p68510 -S'scan(${1:Str}) $2' -p68511 -tp68512 -asS'user_drv' -p68513 -(lp68514 -(S'interfaces/1' -p68515 -S'interfaces(${1:UserDrv}) $2' -p68516 -tp68517 -a(S'server/2' -p68518 -S'server(${1:Pid}, ${2:Shell}) $3' -p68519 -tp68520 -a(S'server/3' -p68521 -S'server(${1:Iname}, ${2:Oname}, ${3:Shell}) $4' -p68522 -tp68523 -a(S'start/0' -p68524 -S'start() $1' -p68525 -tp68526 -a(S'start/1' -p68527 -S'start(${1:Pname}) $2' -p68528 -tp68529 -a(S'start/2' -p68530 -S'start(${1:Pname}, ${2:Shell}) $3' -p68531 -tp68532 -a(S'start/3' -p68533 -S'start(${1:Iname}, ${2:Oname}, ${3:Shell}) $4' -p68534 -tp68535 -asS'http_transport' -p68536 -(lp68537 -(S'accept/2' -p68538 -S'accept(${1:SocketType}, ${2:ListenSocket}) $3' -p68539 -tp68540 -a(S'accept/3' -p68541 -S'accept(${1:Param1}, ${2:ListenSocket}, ${3:Timeout}) $4' -p68542 -tp68543 -a(S'close/2' -p68544 -S'close(${1:Param1}, ${2:Socket}) $3' -p68545 -tp68546 -a(S'connect/3' -p68547 -S'connect(${1:SocketType}, ${2:Address}, ${3:Opts}) $4' -p68548 -tp68549 -a(S'connect/4' -p68550 -S'connect(${1:Param1}, ${2:Address}, ${3:Opts}, ${4:Timeout}) $5' -p68551 -tp68552 -a(S'controlling_process/3' -p68553 -S'controlling_process(${1:Param1}, ${2:Socket}, ${3:NewOwner}) $4' -p68554 -tp68555 -a(S'getopts/2' -p68556 -S'getopts(${1:SocketType}, ${2:Socket}) $3' -p68557 -tp68558 -a(S'getopts/3' -p68559 -S'getopts(${1:Param1}, ${2:Socket}, ${3:Options}) $4' -p68560 -tp68561 -a(S'getstat/2' -p68562 -S'getstat(${1:Param1}, ${2:Socket}) $3' -p68563 -tp68564 -a(S'ipv4_name/1' -p68565 -S'ipv4_name(${1:Param1}) $2' -p68566 -tp68567 -a(S'ipv6_name/1' -p68568 -S'ipv6_name(${1:Param1}) $2' -p68569 -tp68570 -a(S'listen/2' -p68571 -S'listen(${1:SocketType}, ${2:Port}) $3' -p68572 -tp68573 -a(S'listen/3' -p68574 -S'listen(${1:Param1}, ${2:Addr}, ${3:Port}) $4' -p68575 -tp68576 -a(S'listen/4' -p68577 -S'listen(${1:Param1}, ${2:Addr}, ${3:Port}, ${4:Fd}) $5' -p68578 -tp68579 -a(S'negotiate/3' -p68580 -S'negotiate(${1:Param1}, ${2:Socket}, ${3:Timeout}) $4' -p68581 -tp68582 -a(S'peername/2' -p68583 -S'peername(${1:Param1}, ${2:Socket}) $3' -p68584 -tp68585 -a(S'resolve/0' -p68586 -S'resolve() $1' -p68587 -tp68588 -a(S'send/3' -p68589 -S'send(${1:Param1}, ${2:Socket}, ${3:Message}) $4' -p68590 -tp68591 -a(S'setopts/3' -p68592 -S'setopts(${1:Param1}, ${2:Socket}, ${3:Options}) $4' -p68593 -tp68594 -a(S'sockname/2' -p68595 -S'sockname(${1:Param1}, ${2:Socket}) $3' -p68596 -tp68597 -a(S'start/1' -p68598 -S'start(${1:Param1}) $2' -p68599 -tp68600 -asS'megaco_binary_term_id_gen' -p68601 -(lp68602 -(S'decode_with_wildcards/3' -p68603 -S'decode_with_wildcards(${1:Wildcards}, ${2:IDs}, ${3:Lc}) $4' -p68604 -tp68605 -a(S'decode_without_wildcards/2' -p68606 -S'decode_without_wildcards(${1:IDs}, ${2:Lc}) $3' -p68607 -tp68608 -a(S'encode_with_wildcards/2' -p68609 -S'encode_with_wildcards(${1:IDs}, ${2:LevelConfig}) $3' -p68610 -tp68611 -a(S'encode_without_wildcards/2' -p68612 -S'encode_without_wildcards(${1:IDs}, ${2:LevelConfig}) $3' -p68613 -tp68614 -asS'snmpm_net_if' -p68615 -(lp68616 -(S'code_change/3' -p68617 -S'code_change(${1:Param1}, ${2:OldState}, ${3:Param3}) $4' -p68618 -tp68619 -a(S'filter_reset/1' -p68620 -S'filter_reset(${1:Pid}) $2' -p68621 -tp68622 -a(S'get_log_type/1' -p68623 -S'get_log_type(${1:Pid}) $2' -p68624 -tp68625 -a(S'handle_call/3' -p68626 -S'handle_call(${1:Req}, ${2:From}, ${3:State}) $4' -p68627 -tp68628 -a(S'handle_cast/2' -p68629 -S'handle_cast(${1:Msg}, ${2:State}) $3' -p68630 -tp68631 -a(S'handle_info/2' -p68632 -S'handle_info(${1:Info}, ${2:State}) $3' -p68633 -tp68634 -a(S'info/1' -p68635 -S'info(${1:Pid}) $2' -p68636 -tp68637 -a(S'inform_response/4' -p68638 -S'inform_response(${1:Pid}, ${2:Ref}, ${3:Addr}, ${4:Port}) $5' -p68639 -tp68640 -a(S'init/1' -p68641 -S'init(${1:Param1}) $2' -p68642 -tp68643 -a(S'note_store/2' -p68644 -S'note_store(${1:Pid}, ${2:NoteStore}) $3' -p68645 -tp68646 -a(S'send_pdu/6' -p68647 -S'send_pdu(${1:Pid}, ${2:Pdu}, ${3:Vsn}, ${4:MsgData}, ${5:Addr}, ${6:Port}) $7' -p68648 -tp68649 -a(S'send_pdu/7' -p68650 -S'send_pdu(${1:Pid}, ${2:Pdu}, ${3:Vsn}, ${4:MsgData}, ${5:Addr}, ${6:Port}, ${7:ExtraInfo}) $8' -p68651 -tp68652 -a(S'send_pdu/8' -p68653 -S'send_pdu() $1' -p68654 -tp68655 -a(S'set_log_type/2' -p68656 -S'set_log_type(${1:Pid}, ${2:NewType}) $3' -p68657 -tp68658 -a(S'start_link/2' -p68659 -S'start_link(${1:Server}, ${2:NoteStore}) $3' -p68660 -tp68661 -a(S'stop/1' -p68662 -S'stop(${1:Pid}) $2' -p68663 -tp68664 -a(S'terminate/2' -p68665 -S'terminate(${1:Reason}, ${2:Param2}) $3' -p68666 -tp68667 -a(S'verbosity/2' -p68668 -S'verbosity(${1:Pid}, ${2:V}) $3' -p68669 -tp68670 -asS'pman_relay' -p68671 -(lp68672 -(S'ok_to_trace/1' -p68673 -S'ok_to_trace(${1:Pid}) $2' -p68674 -tp68675 -a(S'start/1' -p68676 -S'start(${1:P}) $2' -p68677 -tp68678 -a(S'trac/3' -p68679 -S'trac(${1:Pid}, ${2:How}, ${3:Flag}) $4' -p68680 -tp68681 -asS'orber_ifr_contained' -p68682 -(lp68683 -(S"'_get_absolute_name'/1" -p68684 -S"'_get_absolute_name'(${1:Param1}) $2" -p68685 -tp68686 -a(S"'_get_containing_repository'/1" -p68687 -S"'_get_containing_repository'(${1:Param1}) $2" -p68688 -tp68689 -a(S"'_get_def_kind'/1" -p68690 -S"'_get_def_kind'(${1:Param1}) $2" -p68691 -tp68692 -a(S"'_get_defined_in'/1" -p68693 -S"'_get_defined_in'(${1:Param1}) $2" -p68694 -tp68695 -a(S"'_get_id'/1" -p68696 -S"'_get_id'(${1:Param1}) $2" -p68697 -tp68698 -a(S"'_get_name'/1" -p68699 -S"'_get_name'(${1:Param1}) $2" -p68700 -tp68701 -a(S"'_get_version'/1" -p68702 -S"'_get_version'(${1:Param1}) $2" -p68703 -tp68704 -a(S"'_set_id'/2" -p68705 -S"'_set_id'(${1:Param1}, ${2:EO_Value}) $3" -p68706 -tp68707 -a(S"'_set_name'/2" -p68708 -S"'_set_name'(${1:Param1}, ${2:EO_Value}) $3" -p68709 -tp68710 -a(S"'_set_version'/2" -p68711 -S"'_set_version'(${1:Param1}, ${2:EO_Value}) $3" -p68712 -tp68713 -a(S'cleanup_for_destroy/1' -p68714 -S'cleanup_for_destroy(${1:Contained_objref}) $2' -p68715 -tp68716 -a(S'describe/1' -p68717 -S'describe(${1:ObjRef}) $2' -p68718 -tp68719 -a(S'describe/2' -p68720 -S'describe(${1:Object}, ${2:Def_kind}) $3' -p68721 -tp68722 -a(S'destroy/1' -p68723 -S'destroy(${1:Contained_objref}) $2' -p68724 -tp68725 -a(S'move/4' -p68726 -S'move() $1' -p68727 -tp68728 -asS'CosNotifyFilter_CallbackIDSeq' -p68729 -(lp68730 -(S'id/0' -p68731 -S'id() $1' -p68732 -tp68733 -a(S'name/0' -p68734 -S'name() $1' -p68735 -tp68736 -a(S'tc/0' -p68737 -S'tc() $1' -p68738 -tp68739 -asS'snmpm_mpd' -p68740 -(lp68741 -(S'generate_msg/5' -p68742 -S'generate_msg(${1:Vsn}, ${2:Param2}, ${3:Pdu}, ${4:Param4}, ${5:Log}) $6' -p68743 -tp68744 -a(S'generate_response_msg/4' -p68745 -S'generate_response_msg(${1:Vsn}, ${2:Pdu}, ${3:Param3}, ${4:Log}) $5' -p68746 -tp68747 -a(S'inc/1' -p68748 -S'inc(${1:Name}) $2' -p68749 -tp68750 -a(S'init/1' -p68751 -S'init(${1:Vsns}) $2' -p68752 -tp68753 -a(S'next_msg_id/0' -p68754 -S'next_msg_id() $1' -p68755 -tp68756 -a(S'next_req_id/0' -p68757 -S'next_req_id() $1' -p68758 -tp68759 -a(S'process_msg/7' -p68760 -S'process_msg(${1:Msg}, ${2:Domain}, ${3:Addr}, ${4:Port}, ${5:State}, ${6:NoteStore}, ${7:Logger}) $8' -p68761 -tp68762 -a(S'reset/1' -p68763 -S'reset(${1:Param1}) $2' -p68764 -tp68765 -asS'wxGridCellBoolRenderer' -p68766 -(lp68767 -(S'destroy/1' -p68768 -S'destroy(${1:This}) $2' -p68769 -tp68770 -a(S'draw/8' -p68771 -S'draw(${1:This}, ${2:Grid}, ${3:Attr}, ${4:Dc}, ${5:Rect}, ${6:Row}, ${7:Col}, ${8:IsSelected}) $9' -p68772 -tp68773 -a(S'getBestSize/6' -p68774 -S'getBestSize(${1:This}, ${2:Grid}, ${3:Attr}, ${4:Dc}, ${5:Row}, ${6:Col}) $7' -p68775 -tp68776 -a(S'new/0' -p68777 -S'new() $1' -p68778 -tp68779 -a(S'parent_class/1' -p68780 -S'parent_class(${1:Param1}) $2' -p68781 -tp68782 -asS'wxGridEvent' -p68783 -(lp68784 -(S'allow/1' -p68785 -S'allow(${1:This}) $2' -p68786 -tp68787 -a(S'altDown/1' -p68788 -S'altDown(${1:This}) $2' -p68789 -tp68790 -a(S'controlDown/1' -p68791 -S'controlDown(${1:This}) $2' -p68792 -tp68793 -a(S'getClientData/1' -p68794 -S'getClientData(${1:This}) $2' -p68795 -tp68796 -a(S'getCol/1' -p68797 -S'getCol(${1:This}) $2' -p68798 -tp68799 -a(S'getExtraLong/1' -p68800 -S'getExtraLong(${1:This}) $2' -p68801 -tp68802 -a(S'getId/1' -p68803 -S'getId(${1:This}) $2' -p68804 -tp68805 -a(S'getInt/1' -p68806 -S'getInt(${1:This}) $2' -p68807 -tp68808 -a(S'getPosition/1' -p68809 -S'getPosition(${1:This}) $2' -p68810 -tp68811 -a(S'getRow/1' -p68812 -S'getRow(${1:This}) $2' -p68813 -tp68814 -a(S'getSelection/1' -p68815 -S'getSelection(${1:This}) $2' -p68816 -tp68817 -a(S'getSkipped/1' -p68818 -S'getSkipped(${1:This}) $2' -p68819 -tp68820 -a(S'getString/1' -p68821 -S'getString(${1:This}) $2' -p68822 -tp68823 -a(S'getTimestamp/1' -p68824 -S'getTimestamp(${1:This}) $2' -p68825 -tp68826 -a(S'isAllowed/1' -p68827 -S'isAllowed(${1:This}) $2' -p68828 -tp68829 -a(S'isChecked/1' -p68830 -S'isChecked(${1:This}) $2' -p68831 -tp68832 -a(S'isCommandEvent/1' -p68833 -S'isCommandEvent(${1:This}) $2' -p68834 -tp68835 -a(S'isSelection/1' -p68836 -S'isSelection(${1:This}) $2' -p68837 -tp68838 -a(S'metaDown/1' -p68839 -S'metaDown(${1:This}) $2' -p68840 -tp68841 -a(S'parent_class/1' -p68842 -S'parent_class(${1:Param1}) $2' -p68843 -tp68844 -a(S'resumePropagation/2' -p68845 -S'resumePropagation(${1:This}, ${2:PropagationLevel}) $3' -p68846 -tp68847 -a(S'selecting/1' -p68848 -S'selecting(${1:This}) $2' -p68849 -tp68850 -a(S'setInt/2' -p68851 -S'setInt(${1:This}, ${2:I}) $3' -p68852 -tp68853 -a(S'setString/2' -p68854 -S'setString(${1:This}, ${2:S}) $3' -p68855 -tp68856 -a(S'shiftDown/1' -p68857 -S'shiftDown(${1:This}) $2' -p68858 -tp68859 -a(S'shouldPropagate/1' -p68860 -S'shouldPropagate(${1:This}) $2' -p68861 -tp68862 -a(S'skip/1' -p68863 -S'skip(${1:This}) $2' -p68864 -tp68865 -a(S'skip/2' -p68866 -S'skip(${1:This}, ${2:Options}) $3' -p68867 -tp68868 -a(S'stopPropagation/1' -p68869 -S'stopPropagation(${1:This}) $2' -p68870 -tp68871 -a(S'veto/1' -p68872 -S'veto(${1:This}) $2' -p68873 -tp68874 -asS'wxClipboard' -p68875 -(lp68876 -(S'addData/2' -p68877 -S'addData(${1:This}, ${2:Data}) $3' -p68878 -tp68879 -a(S'clear/1' -p68880 -S'clear(${1:This}) $2' -p68881 -tp68882 -a(S'close/1' -p68883 -S'close(${1:This}) $2' -p68884 -tp68885 -a(S'destroy/1' -p68886 -S'destroy(${1:This}) $2' -p68887 -tp68888 -a(S'flush/1' -p68889 -S'flush(${1:This}) $2' -p68890 -tp68891 -a(S'get/0' -p68892 -S'get() $1' -p68893 -tp68894 -a(S'getData/2' -p68895 -S'getData(${1:This}, ${2:Data}) $3' -p68896 -tp68897 -a(S'isOpened/1' -p68898 -S'isOpened(${1:This}) $2' -p68899 -tp68900 -a(S'isSupported/2' -p68901 -S'isSupported(${1:This}, ${2:Format}) $3' -p68902 -tp68903 -a(S'new/0' -p68904 -S'new() $1' -p68905 -tp68906 -a(S'open/1' -p68907 -S'open(${1:This}) $2' -p68908 -tp68909 -a(S'parent_class/1' -p68910 -S'parent_class(${1:Param1}) $2' -p68911 -tp68912 -a(S'setData/2' -p68913 -S'setData(${1:This}, ${2:Data}) $3' -p68914 -tp68915 -a(S'usePrimarySelection/1' -p68916 -S'usePrimarySelection(${1:This}) $2' -p68917 -tp68918 -a(S'usePrimarySelection/2' -p68919 -S'usePrimarySelection(${1:This}, ${2:Param2}) $3' -p68920 -tp68921 -asS'wxStaticBox' -p68922 -(lp68923 -(S'cacheBestSize/2' -p68924 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p68925 -tp68926 -a(S'captureMouse/1' -p68927 -S'captureMouse(${1:This}) $2' -p68928 -tp68929 -a(S'center/1' -p68930 -S'center(${1:This}) $2' -p68931 -tp68932 -a(S'center/2' -p68933 -S'center(${1:This}, ${2:Options}) $3' -p68934 -tp68935 -a(S'centerOnParent/1' -p68936 -S'centerOnParent(${1:This}) $2' -p68937 -tp68938 -a(S'centerOnParent/2' -p68939 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p68940 -tp68941 -a(S'centre/1' -p68942 -S'centre(${1:This}) $2' -p68943 -tp68944 -a(S'centre/2' -p68945 -S'centre(${1:This}, ${2:Options}) $3' -p68946 -tp68947 -a(S'centreOnParent/1' -p68948 -S'centreOnParent(${1:This}) $2' -p68949 -tp68950 -a(S'centreOnParent/2' -p68951 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p68952 -tp68953 -a(S'clearBackground/1' -p68954 -S'clearBackground(${1:This}) $2' -p68955 -tp68956 -a(S'clientToScreen/2' -p68957 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p68958 -tp68959 -a(S'clientToScreen/3' -p68960 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p68961 -tp68962 -a(S'close/1' -p68963 -S'close(${1:This}) $2' -p68964 -tp68965 -a(S'close/2' -p68966 -S'close(${1:This}, ${2:Options}) $3' -p68967 -tp68968 -a(S'connect/2' -p68969 -S'connect(${1:This}, ${2:EventType}) $3' -p68970 -tp68971 -a(S'connect/3' -p68972 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p68973 -tp68974 -a(S'convertDialogToPixels/2' -p68975 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p68976 -tp68977 -a(S'convertPixelsToDialog/2' -p68978 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p68979 -tp68980 -a(S'create/4' -p68981 -S'create(${1:This}, ${2:Parent}, ${3:Id}, ${4:Label}) $5' -p68982 -tp68983 -a(S'create/5' -p68984 -S'create(${1:This}, ${2:Parent}, ${3:Id}, ${4:Label}, ${5:Param5}) $6' -p68985 -tp68986 -a(S'destroy/1' -p68987 -S'destroy(${1:This}) $2' -p68988 -tp68989 -a(S'destroyChildren/1' -p68990 -S'destroyChildren(${1:This}) $2' -p68991 -tp68992 -a(S'disable/1' -p68993 -S'disable(${1:This}) $2' -p68994 -tp68995 -a(S'disconnect/1' -p68996 -S'disconnect(${1:This}) $2' -p68997 -tp68998 -a(S'disconnect/2' -p68999 -S'disconnect(${1:This}, ${2:EventType}) $3' -p69000 -tp69001 -a(S'disconnect/3' -p69002 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p69003 -tp69004 -a(S'enable/1' -p69005 -S'enable(${1:This}) $2' -p69006 -tp69007 -a(S'enable/2' -p69008 -S'enable(${1:This}, ${2:Options}) $3' -p69009 -tp69010 -a(S'findWindow/2' -p69011 -S'findWindow(${1:This}, ${2:Winid}) $3' -p69012 -tp69013 -a(S'fit/1' -p69014 -S'fit(${1:This}) $2' -p69015 -tp69016 -a(S'fitInside/1' -p69017 -S'fitInside(${1:This}) $2' -p69018 -tp69019 -a(S'freeze/1' -p69020 -S'freeze(${1:This}) $2' -p69021 -tp69022 -a(S'getAcceleratorTable/1' -p69023 -S'getAcceleratorTable(${1:This}) $2' -p69024 -tp69025 -a(S'getBackgroundColour/1' -p69026 -S'getBackgroundColour(${1:This}) $2' -p69027 -tp69028 -a(S'getBackgroundStyle/1' -p69029 -S'getBackgroundStyle(${1:This}) $2' -p69030 -tp69031 -a(S'getBestSize/1' -p69032 -S'getBestSize(${1:This}) $2' -p69033 -tp69034 -a(S'getCaret/1' -p69035 -S'getCaret(${1:This}) $2' -p69036 -tp69037 -a(S'getCharHeight/1' -p69038 -S'getCharHeight(${1:This}) $2' -p69039 -tp69040 -a(S'getCharWidth/1' -p69041 -S'getCharWidth(${1:This}) $2' -p69042 -tp69043 -a(S'getChildren/1' -p69044 -S'getChildren(${1:This}) $2' -p69045 -tp69046 -a(S'getClientSize/1' -p69047 -S'getClientSize(${1:This}) $2' -p69048 -tp69049 -a(S'getContainingSizer/1' -p69050 -S'getContainingSizer(${1:This}) $2' -p69051 -tp69052 -a(S'getCursor/1' -p69053 -S'getCursor(${1:This}) $2' -p69054 -tp69055 -a(S'getDropTarget/1' -p69056 -S'getDropTarget(${1:This}) $2' -p69057 -tp69058 -a(S'getEventHandler/1' -p69059 -S'getEventHandler(${1:This}) $2' -p69060 -tp69061 -a(S'getExtraStyle/1' -p69062 -S'getExtraStyle(${1:This}) $2' -p69063 -tp69064 -a(S'getFont/1' -p69065 -S'getFont(${1:This}) $2' -p69066 -tp69067 -a(S'getForegroundColour/1' -p69068 -S'getForegroundColour(${1:This}) $2' -p69069 -tp69070 -a(S'getGrandParent/1' -p69071 -S'getGrandParent(${1:This}) $2' -p69072 -tp69073 -a(S'getHandle/1' -p69074 -S'getHandle(${1:This}) $2' -p69075 -tp69076 -a(S'getHelpText/1' -p69077 -S'getHelpText(${1:This}) $2' -p69078 -tp69079 -a(S'getId/1' -p69080 -S'getId(${1:This}) $2' -p69081 -tp69082 -a(S'getLabel/1' -p69083 -S'getLabel(${1:This}) $2' -p69084 -tp69085 -a(S'getMaxSize/1' -p69086 -S'getMaxSize(${1:This}) $2' -p69087 -tp69088 -a(S'getMinSize/1' -p69089 -S'getMinSize(${1:This}) $2' -p69090 -tp69091 -a(S'getName/1' -p69092 -S'getName(${1:This}) $2' -p69093 -tp69094 -a(S'getParent/1' -p69095 -S'getParent(${1:This}) $2' -p69096 -tp69097 -a(S'getPosition/1' -p69098 -S'getPosition(${1:This}) $2' -p69099 -tp69100 -a(S'getRect/1' -p69101 -S'getRect(${1:This}) $2' -p69102 -tp69103 -a(S'getScreenPosition/1' -p69104 -S'getScreenPosition(${1:This}) $2' -p69105 -tp69106 -a(S'getScreenRect/1' -p69107 -S'getScreenRect(${1:This}) $2' -p69108 -tp69109 -a(S'getScrollPos/2' -p69110 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p69111 -tp69112 -a(S'getScrollRange/2' -p69113 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p69114 -tp69115 -a(S'getScrollThumb/2' -p69116 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p69117 -tp69118 -a(S'getSize/1' -p69119 -S'getSize(${1:This}) $2' -p69120 -tp69121 -a(S'getSizer/1' -p69122 -S'getSizer(${1:This}) $2' -p69123 -tp69124 -a(S'getTextExtent/2' -p69125 -S'getTextExtent(${1:This}, ${2:String}) $3' -p69126 -tp69127 -a(S'getTextExtent/3' -p69128 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p69129 -tp69130 -a(S'getToolTip/1' -p69131 -S'getToolTip(${1:This}) $2' -p69132 -tp69133 -a(S'getUpdateRegion/1' -p69134 -S'getUpdateRegion(${1:This}) $2' -p69135 -tp69136 -a(S'getVirtualSize/1' -p69137 -S'getVirtualSize(${1:This}) $2' -p69138 -tp69139 -a(S'getWindowStyleFlag/1' -p69140 -S'getWindowStyleFlag(${1:This}) $2' -p69141 -tp69142 -a(S'getWindowVariant/1' -p69143 -S'getWindowVariant(${1:This}) $2' -p69144 -tp69145 -a(S'hasCapture/1' -p69146 -S'hasCapture(${1:This}) $2' -p69147 -tp69148 -a(S'hasScrollbar/2' -p69149 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p69150 -tp69151 -a(S'hasTransparentBackground/1' -p69152 -S'hasTransparentBackground(${1:This}) $2' -p69153 -tp69154 -a(S'hide/1' -p69155 -S'hide(${1:This}) $2' -p69156 -tp69157 -a(S'inheritAttributes/1' -p69158 -S'inheritAttributes(${1:This}) $2' -p69159 -tp69160 -a(S'initDialog/1' -p69161 -S'initDialog(${1:This}) $2' -p69162 -tp69163 -a(S'invalidateBestSize/1' -p69164 -S'invalidateBestSize(${1:This}) $2' -p69165 -tp69166 -a(S'isEnabled/1' -p69167 -S'isEnabled(${1:This}) $2' -p69168 -tp69169 -a(S'isExposed/2' -p69170 -S'isExposed(${1:This}, ${2:Pt}) $3' -p69171 -tp69172 -a(S'isExposed/3' -p69173 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p69174 -tp69175 -a(S'isExposed/5' -p69176 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p69177 -tp69178 -a(S'isRetained/1' -p69179 -S'isRetained(${1:This}) $2' -p69180 -tp69181 -a(S'isShown/1' -p69182 -S'isShown(${1:This}) $2' -p69183 -tp69184 -a(S'isTopLevel/1' -p69185 -S'isTopLevel(${1:This}) $2' -p69186 -tp69187 -a(S'layout/1' -p69188 -S'layout(${1:This}) $2' -p69189 -tp69190 -a(S'lineDown/1' -p69191 -S'lineDown(${1:This}) $2' -p69192 -tp69193 -a(S'lineUp/1' -p69194 -S'lineUp(${1:This}) $2' -p69195 -tp69196 -a(S'lower/1' -p69197 -S'lower(${1:This}) $2' -p69198 -tp69199 -a(S'makeModal/1' -p69200 -S'makeModal(${1:This}) $2' -p69201 -tp69202 -a(S'makeModal/2' -p69203 -S'makeModal(${1:This}, ${2:Options}) $3' -p69204 -tp69205 -a(S'move/2' -p69206 -S'move(${1:This}, ${2:Pt}) $3' -p69207 -tp69208 -a(S'move/3' -p69209 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p69210 -tp69211 -a(S'move/4' -p69212 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p69213 -tp69214 -a(S'moveAfterInTabOrder/2' -p69215 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p69216 -tp69217 -a(S'moveBeforeInTabOrder/2' -p69218 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p69219 -tp69220 -a(S'navigate/1' -p69221 -S'navigate(${1:This}) $2' -p69222 -tp69223 -a(S'navigate/2' -p69224 -S'navigate(${1:This}, ${2:Options}) $3' -p69225 -tp69226 -a(S'new/0' -p69227 -S'new() $1' -p69228 -tp69229 -a(S'new/3' -p69230 -S'new(${1:Parent}, ${2:Id}, ${3:Label}) $4' -p69231 -tp69232 -a(S'new/4' -p69233 -S'new(${1:Parent}, ${2:Id}, ${3:Label}, ${4:Param4}) $5' -p69234 -tp69235 -a(S'pageDown/1' -p69236 -S'pageDown(${1:This}) $2' -p69237 -tp69238 -a(S'pageUp/1' -p69239 -S'pageUp(${1:This}) $2' -p69240 -tp69241 -a(S'parent_class/1' -p69242 -S'parent_class(${1:Param1}) $2' -p69243 -tp69244 -a(S'popEventHandler/1' -p69245 -S'popEventHandler(${1:This}) $2' -p69246 -tp69247 -a(S'popEventHandler/2' -p69248 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p69249 -tp69250 -a(S'popupMenu/2' -p69251 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p69252 -tp69253 -a(S'popupMenu/3' -p69254 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p69255 -tp69256 -a(S'popupMenu/4' -p69257 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p69258 -tp69259 -a(S'raise/1' -p69260 -S'raise(${1:This}) $2' -p69261 -tp69262 -a(S'refresh/1' -p69263 -S'refresh(${1:This}) $2' -p69264 -tp69265 -a(S'refresh/2' -p69266 -S'refresh(${1:This}, ${2:Options}) $3' -p69267 -tp69268 -a(S'refreshRect/2' -p69269 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p69270 -tp69271 -a(S'refreshRect/3' -p69272 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p69273 -tp69274 -a(S'releaseMouse/1' -p69275 -S'releaseMouse(${1:This}) $2' -p69276 -tp69277 -a(S'removeChild/2' -p69278 -S'removeChild(${1:This}, ${2:Child}) $3' -p69279 -tp69280 -a(S'reparent/2' -p69281 -S'reparent(${1:This}, ${2:NewParent}) $3' -p69282 -tp69283 -a(S'screenToClient/1' -p69284 -S'screenToClient(${1:This}) $2' -p69285 -tp69286 -a(S'screenToClient/2' -p69287 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p69288 -tp69289 -a(S'scrollLines/2' -p69290 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p69291 -tp69292 -a(S'scrollPages/2' -p69293 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p69294 -tp69295 -a(S'scrollWindow/3' -p69296 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p69297 -tp69298 -a(S'scrollWindow/4' -p69299 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p69300 -tp69301 -a(S'setAcceleratorTable/2' -p69302 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p69303 -tp69304 -a(S'setAutoLayout/2' -p69305 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p69306 -tp69307 -a(S'setBackgroundColour/2' -p69308 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p69309 -tp69310 -a(S'setBackgroundStyle/2' -p69311 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p69312 -tp69313 -a(S'setCaret/2' -p69314 -S'setCaret(${1:This}, ${2:Caret}) $3' -p69315 -tp69316 -a(S'setClientSize/2' -p69317 -S'setClientSize(${1:This}, ${2:Size}) $3' -p69318 -tp69319 -a(S'setClientSize/3' -p69320 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p69321 -tp69322 -a(S'setContainingSizer/2' -p69323 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p69324 -tp69325 -a(S'setCursor/2' -p69326 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p69327 -tp69328 -a(S'setDropTarget/2' -p69329 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p69330 -tp69331 -a(S'setExtraStyle/2' -p69332 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p69333 -tp69334 -a(S'setFocus/1' -p69335 -S'setFocus(${1:This}) $2' -p69336 -tp69337 -a(S'setFocusFromKbd/1' -p69338 -S'setFocusFromKbd(${1:This}) $2' -p69339 -tp69340 -a(S'setFont/2' -p69341 -S'setFont(${1:This}, ${2:Font}) $3' -p69342 -tp69343 -a(S'setForegroundColour/2' -p69344 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p69345 -tp69346 -a(S'setHelpText/2' -p69347 -S'setHelpText(${1:This}, ${2:Text}) $3' -p69348 -tp69349 -a(S'setId/2' -p69350 -S'setId(${1:This}, ${2:Winid}) $3' -p69351 -tp69352 -a(S'setLabel/2' -p69353 -S'setLabel(${1:This}, ${2:Label}) $3' -p69354 -tp69355 -a(S'setMaxSize/2' -p69356 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p69357 -tp69358 -a(S'setMinSize/2' -p69359 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p69360 -tp69361 -a(S'setName/2' -p69362 -S'setName(${1:This}, ${2:Name}) $3' -p69363 -tp69364 -a(S'setOwnBackgroundColour/2' -p69365 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p69366 -tp69367 -a(S'setOwnFont/2' -p69368 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p69369 -tp69370 -a(S'setOwnForegroundColour/2' -p69371 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p69372 -tp69373 -a(S'setPalette/2' -p69374 -S'setPalette(${1:This}, ${2:Pal}) $3' -p69375 -tp69376 -a(S'setScrollPos/3' -p69377 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p69378 -tp69379 -a(S'setScrollPos/4' -p69380 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p69381 -tp69382 -a(S'setScrollbar/5' -p69383 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p69384 -tp69385 -a(S'setScrollbar/6' -p69386 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p69387 -tp69388 -a(S'setSize/2' -p69389 -S'setSize(${1:This}, ${2:Rect}) $3' -p69390 -tp69391 -a(S'setSize/3' -p69392 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p69393 -tp69394 -a(S'setSize/5' -p69395 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p69396 -tp69397 -a(S'setSize/6' -p69398 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p69399 -tp69400 -a(S'setSizeHints/2' -p69401 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p69402 -tp69403 -a(S'setSizeHints/3' -p69404 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p69405 -tp69406 -a(S'setSizeHints/4' -p69407 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p69408 -tp69409 -a(S'setSizer/2' -p69410 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p69411 -tp69412 -a(S'setSizer/3' -p69413 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p69414 -tp69415 -a(S'setSizerAndFit/2' -p69416 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p69417 -tp69418 -a(S'setSizerAndFit/3' -p69419 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p69420 -tp69421 -a(S'setThemeEnabled/2' -p69422 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p69423 -tp69424 -a(S'setToolTip/2' -p69425 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p69426 -tp69427 -a(S'setVirtualSize/2' -p69428 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p69429 -tp69430 -a(S'setVirtualSize/3' -p69431 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p69432 -tp69433 -a(S'setVirtualSizeHints/2' -p69434 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p69435 -tp69436 -a(S'setVirtualSizeHints/3' -p69437 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p69438 -tp69439 -a(S'setVirtualSizeHints/4' -p69440 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p69441 -tp69442 -a(S'setWindowStyle/2' -p69443 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p69444 -tp69445 -a(S'setWindowStyleFlag/2' -p69446 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p69447 -tp69448 -a(S'setWindowVariant/2' -p69449 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p69450 -tp69451 -a(S'shouldInheritColours/1' -p69452 -S'shouldInheritColours(${1:This}) $2' -p69453 -tp69454 -a(S'show/1' -p69455 -S'show(${1:This}) $2' -p69456 -tp69457 -a(S'show/2' -p69458 -S'show(${1:This}, ${2:Options}) $3' -p69459 -tp69460 -a(S'thaw/1' -p69461 -S'thaw(${1:This}) $2' -p69462 -tp69463 -a(S'transferDataFromWindow/1' -p69464 -S'transferDataFromWindow(${1:This}) $2' -p69465 -tp69466 -a(S'transferDataToWindow/1' -p69467 -S'transferDataToWindow(${1:This}) $2' -p69468 -tp69469 -a(S'update/1' -p69470 -S'update(${1:This}) $2' -p69471 -tp69472 -a(S'updateWindowUI/1' -p69473 -S'updateWindowUI(${1:This}) $2' -p69474 -tp69475 -a(S'updateWindowUI/2' -p69476 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p69477 -tp69478 -a(S'validate/1' -p69479 -S'validate(${1:This}) $2' -p69480 -tp69481 -a(S'warpPointer/3' -p69482 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p69483 -tp69484 -asS'beam_type' -p69485 -(lp69486 -(S'module/2' -p69487 -S'module(${1:Param1}, ${2:Param2}) $3' -p69488 -tp69489 -asS'file' -p69490 -(lp69491 -(S'advise/4' -p69492 -S'advise(${1:IoDevice}, ${2:Offset}, ${3:Length}, ${4:Advise}) $5' -p69493 -tp69494 -a(S'altname/1' -p69495 -S'altname(${1:Name}) $2' -p69496 -tp69497 -a(S'change_group/2' -p69498 -S'change_group(${1:Filename}, ${2:Gid}) $3' -p69499 -tp69500 -a(S'change_mode/2' -p69501 -S'change_mode(${1:Filename}, ${2:Mode}) $3' -p69502 -tp69503 -a(S'change_owner/2' -p69504 -S'change_owner(${1:Filename}, ${2:Uid}) $3' -p69505 -tp69506 -a(S'change_owner/3' -p69507 -S'change_owner(${1:Filename}, ${2:Uid}, ${3:Gid}) $4' -p69508 -tp69509 -a(S'change_time/2' -p69510 -S'change_time(${1:Filename}, ${2:Mtime}) $3' -p69511 -tp69512 -a(S'change_time/3' -p69513 -S'change_time(${1:Filename}, ${2:Atime}, ${3:Mtime}) $4' -p69514 -tp69515 -a(S'close/1' -p69516 -S'close(${1:IoDevice}) $2' -p69517 -tp69518 -a(S'consult/1' -p69519 -S'consult(${1:Filename}) $2' -p69520 -tp69521 -a(S'copy/2' -p69522 -S'copy(${1:Source}, ${2:Destination}) $3' -p69523 -tp69524 -a(S'copy/3' -p69525 -S'copy(${1:Source}, ${2:Destination}, ${3:ByteCount}) $4' -p69526 -tp69527 -a(S'copy_opened/3' -p69528 -S'copy_opened(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p69529 -tp69530 -a(S'datasync/1' -p69531 -S'datasync(${1:IoDevice}) $2' -p69532 -tp69533 -a(S'del_dir/1' -p69534 -S'del_dir(${1:Dir}) $2' -p69535 -tp69536 -a(S'delete/1' -p69537 -S'delete(${1:Filename}) $2' -p69538 -tp69539 -a(S'eval/1' -p69540 -S'eval(${1:Filename}) $2' -p69541 -tp69542 -a(S'eval/2' -p69543 -S'eval(${1:Filename}, ${2:Bindings}) $3' -p69544 -tp69545 -a(S'format_error/1' -p69546 -S'format_error(${1:Reason}) $2' -p69547 -tp69548 -a(S'get_cwd/0' -p69549 -S'get_cwd() $1' -p69550 -tp69551 -a(S'get_cwd/1' -p69552 -S'get_cwd(${1:Drive}) $2' -p69553 -tp69554 -a(S'ipread_s32bu_p32bu/3' -p69555 -S'ipread_s32bu_p32bu(${1:File}, ${2:Pos}, ${3:MaxSize}) $4' -p69556 -tp69557 -a(S'ipread_s32bu_p32bu_int/3' -p69558 -S'ipread_s32bu_p32bu_int(${1:File}, ${2:Pos}, ${3:Infinity}) $4' -p69559 -tp69560 -a(S'list_dir/1' -p69561 -S'list_dir(${1:Dir}) $2' -p69562 -tp69563 -a(S'make_dir/1' -p69564 -S'make_dir(${1:Dir}) $2' -p69565 -tp69566 -a(S'make_link/2' -p69567 -S'make_link(${1:Existing}, ${2:New}) $3' -p69568 -tp69569 -a(S'make_symlink/2' -p69570 -S'make_symlink(${1:Existing}, ${2:New}) $3' -p69571 -tp69572 -a(S'open/2' -p69573 -S'open(${1:Filename}, ${2:Modes}) $3' -p69574 -tp69575 -a(S'path_consult/2' -p69576 -S'path_consult(${1:Path}, ${2:Filename}) $3' -p69577 -tp69578 -a(S'path_eval/2' -p69579 -S'path_eval(${1:Path}, ${2:Filename}) $3' -p69580 -tp69581 -a(S'path_eval/3' -p69582 -S'path_eval(${1:Path}, ${2:Filename}, ${3:Bindings}) $4' -p69583 -tp69584 -a(S'path_open/3' -p69585 -S'path_open(${1:Path}, ${2:Filename}, ${3:Modes}) $4' -p69586 -tp69587 -a(S'path_script/2' -p69588 -S'path_script(${1:Path}, ${2:Filename}) $3' -p69589 -tp69590 -a(S'path_script/3' -p69591 -S'path_script(${1:Path}, ${2:Filename}, ${3:Bindings}) $4' -p69592 -tp69593 -a(S'pid2name/1' -p69594 -S'pid2name(${1:Pid}) $2' -p69595 -tp69596 -a(S'position/2' -p69597 -S'position(${1:IoDevice}, ${2:Location}) $3' -p69598 -tp69599 -a(S'pread/2' -p69600 -S'pread(${1:IoDevice}, ${2:LocNums}) $3' -p69601 -tp69602 -a(S'pread/3' -p69603 -S'pread(${1:IoDevice}, ${2:Location}, ${3:Number}) $4' -p69604 -tp69605 -a(S'pwrite/2' -p69606 -S'pwrite(${1:IoDevice}, ${2:LocBytes}) $3' -p69607 -tp69608 -a(S'pwrite/3' -p69609 -S'pwrite(${1:IoDevice}, ${2:Location}, ${3:Bytes}) $4' -p69610 -tp69611 -a(S'raw_read_file_info/1' -p69612 -S'raw_read_file_info(${1:Name}) $2' -p69613 -tp69614 -a(S'raw_write_file_info/2' -p69615 -S'raw_write_file_info(${1:Name}, ${2:Info}) $3' -p69616 -tp69617 -a(S'read/2' -p69618 -S'read(${1:IoDevice}, ${2:Number}) $3' -p69619 -tp69620 -a(S'read_file/1' -p69621 -S'read_file(${1:Filename}) $2' -p69622 -tp69623 -a(S'read_file_info/1' -p69624 -S'read_file_info(${1:Filename}) $2' -p69625 -tp69626 -a(S'read_file_info/2' -p69627 -S'read_file_info(${1:Filename}, ${2:Opts}) $3' -p69628 -tp69629 -a(S'read_line/1' -p69630 -S'read_line(${1:IoDevice}) $2' -p69631 -tp69632 -a(S'read_link/1' -p69633 -S'read_link(${1:Name}) $2' -p69634 -tp69635 -a(S'read_link_info/1' -p69636 -S'read_link_info(${1:Name}) $2' -p69637 -tp69638 -a(S'read_link_info/2' -p69639 -S'read_link_info(${1:Name}, ${2:Opts}) $3' -p69640 -tp69641 -a(S'rename/2' -p69642 -S'rename(${1:Source}, ${2:Destination}) $3' -p69643 -tp69644 -a(S'script/1' -p69645 -S'script(${1:Filename}) $2' -p69646 -tp69647 -a(S'script/2' -p69648 -S'script(${1:Filename}, ${2:Bindings}) $3' -p69649 -tp69650 -a(S'sendfile/2' -p69651 -S'sendfile(${1:Filename}, ${2:Socket}) $3' -p69652 -tp69653 -a(S'sendfile/5' -p69654 -S'sendfile(${1:RawFile}, ${2:Socket}, ${3:Offset}, ${4:Bytes}, ${5:Opts}) $6' -p69655 -tp69656 -a(S'set_cwd/1' -p69657 -S'set_cwd(${1:Dir}) $2' -p69658 -tp69659 -a(S'sync/1' -p69660 -S'sync(${1:IoDevice}) $2' -p69661 -tp69662 -a(S'truncate/1' -p69663 -S'truncate(${1:IoDevice}) $2' -p69664 -tp69665 -a(S'write/2' -p69666 -S'write(${1:IoDevice}, ${2:Bytes}) $3' -p69667 -tp69668 -a(S'write_file/2' -p69669 -S'write_file(${1:Filename}, ${2:Bytes}) $3' -p69670 -tp69671 -a(S'write_file/3' -p69672 -S'write_file(${1:Filename}, ${2:Bytes}, ${3:Modes}) $4' -p69673 -tp69674 -a(S'write_file_info/2' -p69675 -S'write_file_info(${1:Filename}, ${2:FileInfo}) $3' -p69676 -tp69677 -a(S'write_file_info/3' -p69678 -S'write_file_info(${1:Filename}, ${2:FileInfo}, ${3:Opts}) $4' -p69679 -tp69680 -asS'egd_png' -p69681 -(lp69682 -(S'binary/3' -p69683 -S'binary(${1:W}, ${2:H}, ${3:Bitmap}) $4' -p69684 -tp69685 -asS'wxTreebook' -p69686 -(lp69687 -(S'addPage/3' -p69688 -S'addPage(${1:This}, ${2:Page}, ${3:Text}) $4' -p69689 -tp69690 -a(S'addPage/4' -p69691 -S'addPage(${1:This}, ${2:Page}, ${3:Text}, ${4:Param4}) $5' -p69692 -tp69693 -a(S'advanceSelection/1' -p69694 -S'advanceSelection(${1:This}) $2' -p69695 -tp69696 -a(S'advanceSelection/2' -p69697 -S'advanceSelection(${1:This}, ${2:Param2}) $3' -p69698 -tp69699 -a(S'assignImageList/2' -p69700 -S'assignImageList(${1:This}, ${2:ImageList}) $3' -p69701 -tp69702 -a(S'cacheBestSize/2' -p69703 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p69704 -tp69705 -a(S'captureMouse/1' -p69706 -S'captureMouse(${1:This}) $2' -p69707 -tp69708 -a(S'center/1' -p69709 -S'center(${1:This}) $2' -p69710 -tp69711 -a(S'center/2' -p69712 -S'center(${1:This}, ${2:Options}) $3' -p69713 -tp69714 -a(S'centerOnParent/1' -p69715 -S'centerOnParent(${1:This}) $2' -p69716 -tp69717 -a(S'centerOnParent/2' -p69718 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p69719 -tp69720 -a(S'centre/1' -p69721 -S'centre(${1:This}) $2' -p69722 -tp69723 -a(S'centre/2' -p69724 -S'centre(${1:This}, ${2:Options}) $3' -p69725 -tp69726 -a(S'centreOnParent/1' -p69727 -S'centreOnParent(${1:This}) $2' -p69728 -tp69729 -a(S'centreOnParent/2' -p69730 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p69731 -tp69732 -a(S'changeSelection/2' -p69733 -S'changeSelection(${1:This}, ${2:N}) $3' -p69734 -tp69735 -a(S'clearBackground/1' -p69736 -S'clearBackground(${1:This}) $2' -p69737 -tp69738 -a(S'clientToScreen/2' -p69739 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p69740 -tp69741 -a(S'clientToScreen/3' -p69742 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p69743 -tp69744 -a(S'close/1' -p69745 -S'close(${1:This}) $2' -p69746 -tp69747 -a(S'close/2' -p69748 -S'close(${1:This}, ${2:Options}) $3' -p69749 -tp69750 -a(S'connect/2' -p69751 -S'connect(${1:This}, ${2:EventType}) $3' -p69752 -tp69753 -a(S'connect/3' -p69754 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p69755 -tp69756 -a(S'convertDialogToPixels/2' -p69757 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p69758 -tp69759 -a(S'convertPixelsToDialog/2' -p69760 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p69761 -tp69762 -a(S'create/3' -p69763 -S'create(${1:This}, ${2:Parent}, ${3:Id}) $4' -p69764 -tp69765 -a(S'create/4' -p69766 -S'create(${1:This}, ${2:Parent}, ${3:Id}, ${4:Param4}) $5' -p69767 -tp69768 -a(S'deleteAllPages/1' -p69769 -S'deleteAllPages(${1:This}) $2' -p69770 -tp69771 -a(S'deletePage/2' -p69772 -S'deletePage(${1:This}, ${2:Pos}) $3' -p69773 -tp69774 -a(S'destroy/1' -p69775 -S'destroy(${1:This}) $2' -p69776 -tp69777 -a(S'destroyChildren/1' -p69778 -S'destroyChildren(${1:This}) $2' -p69779 -tp69780 -a(S'disable/1' -p69781 -S'disable(${1:This}) $2' -p69782 -tp69783 -a(S'disconnect/1' -p69784 -S'disconnect(${1:This}) $2' -p69785 -tp69786 -a(S'disconnect/2' -p69787 -S'disconnect(${1:This}, ${2:EventType}) $3' -p69788 -tp69789 -a(S'disconnect/3' -p69790 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p69791 -tp69792 -a(S'enable/1' -p69793 -S'enable(${1:This}) $2' -p69794 -tp69795 -a(S'enable/2' -p69796 -S'enable(${1:This}, ${2:Options}) $3' -p69797 -tp69798 -a(S'expandNode/2' -p69799 -S'expandNode(${1:This}, ${2:Pos}) $3' -p69800 -tp69801 -a(S'expandNode/3' -p69802 -S'expandNode(${1:This}, ${2:Pos}, ${3:Param3}) $4' -p69803 -tp69804 -a(S'findWindow/2' -p69805 -S'findWindow(${1:This}, ${2:Winid}) $3' -p69806 -tp69807 -a(S'fit/1' -p69808 -S'fit(${1:This}) $2' -p69809 -tp69810 -a(S'fitInside/1' -p69811 -S'fitInside(${1:This}) $2' -p69812 -tp69813 -a(S'freeze/1' -p69814 -S'freeze(${1:This}) $2' -p69815 -tp69816 -a(S'getAcceleratorTable/1' -p69817 -S'getAcceleratorTable(${1:This}) $2' -p69818 -tp69819 -a(S'getBackgroundColour/1' -p69820 -S'getBackgroundColour(${1:This}) $2' -p69821 -tp69822 -a(S'getBackgroundStyle/1' -p69823 -S'getBackgroundStyle(${1:This}) $2' -p69824 -tp69825 -a(S'getBestSize/1' -p69826 -S'getBestSize(${1:This}) $2' -p69827 -tp69828 -a(S'getCaret/1' -p69829 -S'getCaret(${1:This}) $2' -p69830 -tp69831 -a(S'getCharHeight/1' -p69832 -S'getCharHeight(${1:This}) $2' -p69833 -tp69834 -a(S'getCharWidth/1' -p69835 -S'getCharWidth(${1:This}) $2' -p69836 -tp69837 -a(S'getChildren/1' -p69838 -S'getChildren(${1:This}) $2' -p69839 -tp69840 -a(S'getClientSize/1' -p69841 -S'getClientSize(${1:This}) $2' -p69842 -tp69843 -a(S'getContainingSizer/1' -p69844 -S'getContainingSizer(${1:This}) $2' -p69845 -tp69846 -a(S'getCurrentPage/1' -p69847 -S'getCurrentPage(${1:This}) $2' -p69848 -tp69849 -a(S'getCursor/1' -p69850 -S'getCursor(${1:This}) $2' -p69851 -tp69852 -a(S'getDropTarget/1' -p69853 -S'getDropTarget(${1:This}) $2' -p69854 -tp69855 -a(S'getEventHandler/1' -p69856 -S'getEventHandler(${1:This}) $2' -p69857 -tp69858 -a(S'getExtraStyle/1' -p69859 -S'getExtraStyle(${1:This}) $2' -p69860 -tp69861 -a(S'getFont/1' -p69862 -S'getFont(${1:This}) $2' -p69863 -tp69864 -a(S'getForegroundColour/1' -p69865 -S'getForegroundColour(${1:This}) $2' -p69866 -tp69867 -a(S'getGrandParent/1' -p69868 -S'getGrandParent(${1:This}) $2' -p69869 -tp69870 -a(S'getHandle/1' -p69871 -S'getHandle(${1:This}) $2' -p69872 -tp69873 -a(S'getHelpText/1' -p69874 -S'getHelpText(${1:This}) $2' -p69875 -tp69876 -a(S'getId/1' -p69877 -S'getId(${1:This}) $2' -p69878 -tp69879 -a(S'getImageList/1' -p69880 -S'getImageList(${1:This}) $2' -p69881 -tp69882 -a(S'getLabel/1' -p69883 -S'getLabel(${1:This}) $2' -p69884 -tp69885 -a(S'getMaxSize/1' -p69886 -S'getMaxSize(${1:This}) $2' -p69887 -tp69888 -a(S'getMinSize/1' -p69889 -S'getMinSize(${1:This}) $2' -p69890 -tp69891 -a(S'getName/1' -p69892 -S'getName(${1:This}) $2' -p69893 -tp69894 -a(S'getPage/2' -p69895 -S'getPage(${1:This}, ${2:N}) $3' -p69896 -tp69897 -a(S'getPageCount/1' -p69898 -S'getPageCount(${1:This}) $2' -p69899 -tp69900 -a(S'getPageImage/2' -p69901 -S'getPageImage(${1:This}, ${2:N}) $3' -p69902 -tp69903 -a(S'getPageText/2' -p69904 -S'getPageText(${1:This}, ${2:N}) $3' -p69905 -tp69906 -a(S'getParent/1' -p69907 -S'getParent(${1:This}) $2' -p69908 -tp69909 -a(S'getPosition/1' -p69910 -S'getPosition(${1:This}) $2' -p69911 -tp69912 -a(S'getRect/1' -p69913 -S'getRect(${1:This}) $2' -p69914 -tp69915 -a(S'getScreenPosition/1' -p69916 -S'getScreenPosition(${1:This}) $2' -p69917 -tp69918 -a(S'getScreenRect/1' -p69919 -S'getScreenRect(${1:This}) $2' -p69920 -tp69921 -a(S'getScrollPos/2' -p69922 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p69923 -tp69924 -a(S'getScrollRange/2' -p69925 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p69926 -tp69927 -a(S'getScrollThumb/2' -p69928 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p69929 -tp69930 -a(S'getSelection/1' -p69931 -S'getSelection(${1:This}) $2' -p69932 -tp69933 -a(S'getSize/1' -p69934 -S'getSize(${1:This}) $2' -p69935 -tp69936 -a(S'getSizer/1' -p69937 -S'getSizer(${1:This}) $2' -p69938 -tp69939 -a(S'getTextExtent/2' -p69940 -S'getTextExtent(${1:This}, ${2:String}) $3' -p69941 -tp69942 -a(S'getTextExtent/3' -p69943 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p69944 -tp69945 -a(S'getToolTip/1' -p69946 -S'getToolTip(${1:This}) $2' -p69947 -tp69948 -a(S'getUpdateRegion/1' -p69949 -S'getUpdateRegion(${1:This}) $2' -p69950 -tp69951 -a(S'getVirtualSize/1' -p69952 -S'getVirtualSize(${1:This}) $2' -p69953 -tp69954 -a(S'getWindowStyleFlag/1' -p69955 -S'getWindowStyleFlag(${1:This}) $2' -p69956 -tp69957 -a(S'getWindowVariant/1' -p69958 -S'getWindowVariant(${1:This}) $2' -p69959 -tp69960 -a(S'hasCapture/1' -p69961 -S'hasCapture(${1:This}) $2' -p69962 -tp69963 -a(S'hasScrollbar/2' -p69964 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p69965 -tp69966 -a(S'hasTransparentBackground/1' -p69967 -S'hasTransparentBackground(${1:This}) $2' -p69968 -tp69969 -a(S'hide/1' -p69970 -S'hide(${1:This}) $2' -p69971 -tp69972 -a(S'hitTest/2' -p69973 -S'hitTest(${1:This}, ${2:Pt}) $3' -p69974 -tp69975 -a(S'inheritAttributes/1' -p69976 -S'inheritAttributes(${1:This}) $2' -p69977 -tp69978 -a(S'initDialog/1' -p69979 -S'initDialog(${1:This}) $2' -p69980 -tp69981 -a(S'insertPage/4' -p69982 -S'insertPage(${1:This}, ${2:Pos}, ${3:Page}, ${4:Text}) $5' -p69983 -tp69984 -a(S'insertPage/5' -p69985 -S'insertPage(${1:This}, ${2:Pos}, ${3:Page}, ${4:Text}, ${5:Param5}) $6' -p69986 -tp69987 -a(S'insertSubPage/4' -p69988 -S'insertSubPage(${1:This}, ${2:Pos}, ${3:Page}, ${4:Text}) $5' -p69989 -tp69990 -a(S'insertSubPage/5' -p69991 -S'insertSubPage(${1:This}, ${2:Pos}, ${3:Page}, ${4:Text}, ${5:Param5}) $6' -p69992 -tp69993 -a(S'invalidateBestSize/1' -p69994 -S'invalidateBestSize(${1:This}) $2' -p69995 -tp69996 -a(S'isEnabled/1' -p69997 -S'isEnabled(${1:This}) $2' -p69998 -tp69999 -a(S'isExposed/2' -p70000 -S'isExposed(${1:This}, ${2:Pt}) $3' -p70001 -tp70002 -a(S'isExposed/3' -p70003 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p70004 -tp70005 -a(S'isExposed/5' -p70006 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p70007 -tp70008 -a(S'isNodeExpanded/2' -p70009 -S'isNodeExpanded(${1:This}, ${2:Pos}) $3' -p70010 -tp70011 -a(S'isRetained/1' -p70012 -S'isRetained(${1:This}) $2' -p70013 -tp70014 -a(S'isShown/1' -p70015 -S'isShown(${1:This}) $2' -p70016 -tp70017 -a(S'isTopLevel/1' -p70018 -S'isTopLevel(${1:This}) $2' -p70019 -tp70020 -a(S'layout/1' -p70021 -S'layout(${1:This}) $2' -p70022 -tp70023 -a(S'lineDown/1' -p70024 -S'lineDown(${1:This}) $2' -p70025 -tp70026 -a(S'lineUp/1' -p70027 -S'lineUp(${1:This}) $2' -p70028 -tp70029 -a(S'lower/1' -p70030 -S'lower(${1:This}) $2' -p70031 -tp70032 -a(S'makeModal/1' -p70033 -S'makeModal(${1:This}) $2' -p70034 -tp70035 -a(S'makeModal/2' -p70036 -S'makeModal(${1:This}, ${2:Options}) $3' -p70037 -tp70038 -a(S'move/2' -p70039 -S'move(${1:This}, ${2:Pt}) $3' -p70040 -tp70041 -a(S'move/3' -p70042 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p70043 -tp70044 -a(S'move/4' -p70045 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p70046 -tp70047 -a(S'moveAfterInTabOrder/2' -p70048 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p70049 -tp70050 -a(S'moveBeforeInTabOrder/2' -p70051 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p70052 -tp70053 -a(S'navigate/1' -p70054 -S'navigate(${1:This}) $2' -p70055 -tp70056 -a(S'navigate/2' -p70057 -S'navigate(${1:This}, ${2:Options}) $3' -p70058 -tp70059 -a(S'new/0' -p70060 -S'new() $1' -p70061 -tp70062 -a(S'new/2' -p70063 -S'new(${1:Parent}, ${2:Id}) $3' -p70064 -tp70065 -a(S'new/3' -p70066 -S'new(${1:Parent}, ${2:Id}, ${3:Param3}) $4' -p70067 -tp70068 -a(S'pageDown/1' -p70069 -S'pageDown(${1:This}) $2' -p70070 -tp70071 -a(S'pageUp/1' -p70072 -S'pageUp(${1:This}) $2' -p70073 -tp70074 -a(S'parent_class/1' -p70075 -S'parent_class(${1:Param1}) $2' -p70076 -tp70077 -a(S'popEventHandler/1' -p70078 -S'popEventHandler(${1:This}) $2' -p70079 -tp70080 -a(S'popEventHandler/2' -p70081 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p70082 -tp70083 -a(S'popupMenu/2' -p70084 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p70085 -tp70086 -a(S'popupMenu/3' -p70087 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p70088 -tp70089 -a(S'popupMenu/4' -p70090 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p70091 -tp70092 -a(S'raise/1' -p70093 -S'raise(${1:This}) $2' -p70094 -tp70095 -a(S'refresh/1' -p70096 -S'refresh(${1:This}) $2' -p70097 -tp70098 -a(S'refresh/2' -p70099 -S'refresh(${1:This}, ${2:Options}) $3' -p70100 -tp70101 -a(S'refreshRect/2' -p70102 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p70103 -tp70104 -a(S'refreshRect/3' -p70105 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p70106 -tp70107 -a(S'releaseMouse/1' -p70108 -S'releaseMouse(${1:This}) $2' -p70109 -tp70110 -a(S'removeChild/2' -p70111 -S'removeChild(${1:This}, ${2:Child}) $3' -p70112 -tp70113 -a(S'removePage/2' -p70114 -S'removePage(${1:This}, ${2:N}) $3' -p70115 -tp70116 -a(S'reparent/2' -p70117 -S'reparent(${1:This}, ${2:NewParent}) $3' -p70118 -tp70119 -a(S'screenToClient/1' -p70120 -S'screenToClient(${1:This}) $2' -p70121 -tp70122 -a(S'screenToClient/2' -p70123 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p70124 -tp70125 -a(S'scrollLines/2' -p70126 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p70127 -tp70128 -a(S'scrollPages/2' -p70129 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p70130 -tp70131 -a(S'scrollWindow/3' -p70132 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p70133 -tp70134 -a(S'scrollWindow/4' -p70135 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p70136 -tp70137 -a(S'setAcceleratorTable/2' -p70138 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p70139 -tp70140 -a(S'setAutoLayout/2' -p70141 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p70142 -tp70143 -a(S'setBackgroundColour/2' -p70144 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p70145 -tp70146 -a(S'setBackgroundStyle/2' -p70147 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p70148 -tp70149 -a(S'setCaret/2' -p70150 -S'setCaret(${1:This}, ${2:Caret}) $3' -p70151 -tp70152 -a(S'setClientSize/2' -p70153 -S'setClientSize(${1:This}, ${2:Size}) $3' -p70154 -tp70155 -a(S'setClientSize/3' -p70156 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p70157 -tp70158 -a(S'setContainingSizer/2' -p70159 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p70160 -tp70161 -a(S'setCursor/2' -p70162 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p70163 -tp70164 -a(S'setDropTarget/2' -p70165 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p70166 -tp70167 -a(S'setExtraStyle/2' -p70168 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p70169 -tp70170 -a(S'setFocus/1' -p70171 -S'setFocus(${1:This}) $2' -p70172 -tp70173 -a(S'setFocusFromKbd/1' -p70174 -S'setFocusFromKbd(${1:This}) $2' -p70175 -tp70176 -a(S'setFont/2' -p70177 -S'setFont(${1:This}, ${2:Font}) $3' -p70178 -tp70179 -a(S'setForegroundColour/2' -p70180 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p70181 -tp70182 -a(S'setHelpText/2' -p70183 -S'setHelpText(${1:This}, ${2:Text}) $3' -p70184 -tp70185 -a(S'setId/2' -p70186 -S'setId(${1:This}, ${2:Winid}) $3' -p70187 -tp70188 -a(S'setImageList/2' -p70189 -S'setImageList(${1:This}, ${2:ImageList}) $3' -p70190 -tp70191 -a(S'setLabel/2' -p70192 -S'setLabel(${1:This}, ${2:Label}) $3' -p70193 -tp70194 -a(S'setMaxSize/2' -p70195 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p70196 -tp70197 -a(S'setMinSize/2' -p70198 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p70199 -tp70200 -a(S'setName/2' -p70201 -S'setName(${1:This}, ${2:Name}) $3' -p70202 -tp70203 -a(S'setOwnBackgroundColour/2' -p70204 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p70205 -tp70206 -a(S'setOwnFont/2' -p70207 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p70208 -tp70209 -a(S'setOwnForegroundColour/2' -p70210 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p70211 -tp70212 -a(S'setPageImage/3' -p70213 -S'setPageImage(${1:This}, ${2:N}, ${3:ImageId}) $4' -p70214 -tp70215 -a(S'setPageSize/2' -p70216 -S'setPageSize(${1:This}, ${2:Size}) $3' -p70217 -tp70218 -a(S'setPageText/3' -p70219 -S'setPageText(${1:This}, ${2:N}, ${3:StrText}) $4' -p70220 -tp70221 -a(S'setPalette/2' -p70222 -S'setPalette(${1:This}, ${2:Pal}) $3' -p70223 -tp70224 -a(S'setScrollPos/3' -p70225 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p70226 -tp70227 -a(S'setScrollPos/4' -p70228 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p70229 -tp70230 -a(S'setScrollbar/5' -p70231 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p70232 -tp70233 -a(S'setScrollbar/6' -p70234 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p70235 -tp70236 -a(S'setSelection/2' -p70237 -S'setSelection(${1:This}, ${2:N}) $3' -p70238 -tp70239 -a(S'setSize/2' -p70240 -S'setSize(${1:This}, ${2:Rect}) $3' -p70241 -tp70242 -a(S'setSize/3' -p70243 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p70244 -tp70245 -a(S'setSize/5' -p70246 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p70247 -tp70248 -a(S'setSize/6' -p70249 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p70250 -tp70251 -a(S'setSizeHints/2' -p70252 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p70253 -tp70254 -a(S'setSizeHints/3' -p70255 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p70256 -tp70257 -a(S'setSizeHints/4' -p70258 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p70259 -tp70260 -a(S'setSizer/2' -p70261 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p70262 -tp70263 -a(S'setSizer/3' -p70264 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p70265 -tp70266 -a(S'setSizerAndFit/2' -p70267 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p70268 -tp70269 -a(S'setSizerAndFit/3' -p70270 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p70271 -tp70272 -a(S'setThemeEnabled/2' -p70273 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p70274 -tp70275 -a(S'setToolTip/2' -p70276 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p70277 -tp70278 -a(S'setVirtualSize/2' -p70279 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p70280 -tp70281 -a(S'setVirtualSize/3' -p70282 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p70283 -tp70284 -a(S'setVirtualSizeHints/2' -p70285 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p70286 -tp70287 -a(S'setVirtualSizeHints/3' -p70288 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p70289 -tp70290 -a(S'setVirtualSizeHints/4' -p70291 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p70292 -tp70293 -a(S'setWindowStyle/2' -p70294 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p70295 -tp70296 -a(S'setWindowStyleFlag/2' -p70297 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p70298 -tp70299 -a(S'setWindowVariant/2' -p70300 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p70301 -tp70302 -a(S'shouldInheritColours/1' -p70303 -S'shouldInheritColours(${1:This}) $2' -p70304 -tp70305 -a(S'show/1' -p70306 -S'show(${1:This}) $2' -p70307 -tp70308 -a(S'show/2' -p70309 -S'show(${1:This}, ${2:Options}) $3' -p70310 -tp70311 -a(S'thaw/1' -p70312 -S'thaw(${1:This}) $2' -p70313 -tp70314 -a(S'transferDataFromWindow/1' -p70315 -S'transferDataFromWindow(${1:This}) $2' -p70316 -tp70317 -a(S'transferDataToWindow/1' -p70318 -S'transferDataToWindow(${1:This}) $2' -p70319 -tp70320 -a(S'update/1' -p70321 -S'update(${1:This}) $2' -p70322 -tp70323 -a(S'updateWindowUI/1' -p70324 -S'updateWindowUI(${1:This}) $2' -p70325 -tp70326 -a(S'updateWindowUI/2' -p70327 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p70328 -tp70329 -a(S'validate/1' -p70330 -S'validate(${1:This}) $2' -p70331 -tp70332 -a(S'warpPointer/3' -p70333 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p70334 -tp70335 -asS'erl_epmd' -p70336 -(lp70337 -(S'code_change/3' -p70338 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p70339 -tp70340 -a(S'handle_call/3' -p70341 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p70342 -tp70343 -a(S'handle_cast/2' -p70344 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p70345 -tp70346 -a(S'handle_info/2' -p70347 -S'handle_info(${1:Param1}, ${2:State}) $3' -p70348 -tp70349 -a(S'init/1' -p70350 -S'init(${1:Param1}) $2' -p70351 -tp70352 -a(S'names/0' -p70353 -S'names() $1' -p70354 -tp70355 -a(S'names/1' -p70356 -S'names(${1:HostName}) $2' -p70357 -tp70358 -a(S'open/0' -p70359 -S'open() $1' -p70360 -tp70361 -a(S'open/1' -p70362 -S'open(${1:EpmdAddr}) $2' -p70363 -tp70364 -a(S'open/2' -p70365 -S'open(${1:EpmdAddr}, ${2:Timeout}) $3' -p70366 -tp70367 -a(S'port_please/2' -p70368 -S'port_please(${1:Node}, ${2:Host}) $3' -p70369 -tp70370 -a(S'port_please/3' -p70371 -S'port_please(${1:Node}, ${2:HostName}, ${3:Timeout}) $4' -p70372 -tp70373 -a(S'register_node/2' -p70374 -S'register_node(${1:Name}, ${2:PortNo}) $3' -p70375 -tp70376 -a(S'start/0' -p70377 -S'start() $1' -p70378 -tp70379 -a(S'start_link/0' -p70380 -S'start_link() $1' -p70381 -tp70382 -a(S'stop/0' -p70383 -S'stop() $1' -p70384 -tp70385 -a(S'terminate/2' -p70386 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p70387 -tp70388 -asS'inet6_tcp' -p70389 -(lp70390 -(S'accept/1' -p70391 -S'accept(${1:L}) $2' -p70392 -tp70393 -a(S'accept/2' -p70394 -S'accept(${1:L}, ${2:Timeout}) $3' -p70395 -tp70396 -a(S'close/1' -p70397 -S'close(${1:Socket}) $2' -p70398 -tp70399 -a(S'connect/3' -p70400 -S'connect(${1:Address}, ${2:Port}, ${3:Opts}) $4' -p70401 -tp70402 -a(S'connect/4' -p70403 -S'connect(${1:Address}, ${2:Port}, ${3:Opts}, ${4:Param4}) $5' -p70404 -tp70405 -a(S'controlling_process/2' -p70406 -S'controlling_process(${1:Socket}, ${2:NewOwner}) $3' -p70407 -tp70408 -a(S'fdopen/2' -p70409 -S'fdopen(${1:Fd}, ${2:Opts}) $3' -p70410 -tp70411 -a(S'getaddr/1' -p70412 -S'getaddr(${1:Address}) $2' -p70413 -tp70414 -a(S'getaddr/2' -p70415 -S'getaddr(${1:Address}, ${2:Timer}) $3' -p70416 -tp70417 -a(S'getaddrs/1' -p70418 -S'getaddrs(${1:Address}) $2' -p70419 -tp70420 -a(S'getaddrs/2' -p70421 -S'getaddrs(${1:Address}, ${2:Timer}) $3' -p70422 -tp70423 -a(S'getserv/1' -p70424 -S'getserv(${1:Port}) $2' -p70425 -tp70426 -a(S'listen/2' -p70427 -S'listen(${1:Port}, ${2:Opts}) $3' -p70428 -tp70429 -a(S'recv/2' -p70430 -S'recv(${1:Socket}, ${2:Length}) $3' -p70431 -tp70432 -a(S'recv/3' -p70433 -S'recv(${1:Socket}, ${2:Length}, ${3:Timeout}) $4' -p70434 -tp70435 -a(S'send/2' -p70436 -S'send(${1:Socket}, ${2:Packet}) $3' -p70437 -tp70438 -a(S'send/3' -p70439 -S'send(${1:Socket}, ${2:Packet}, ${3:Opts}) $4' -p70440 -tp70441 -a(S'shutdown/2' -p70442 -S'shutdown(${1:Socket}, ${2:How}) $3' -p70443 -tp70444 -a(S'unrecv/2' -p70445 -S'unrecv(${1:Socket}, ${2:Data}) $3' -p70446 -tp70447 -asS'xmerl_sax_parser_utf16le' -p70448 -(lp70449 -(S'cf/3' -p70450 -S'cf(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p70451 -tp70452 -a(S'cf/4' -p70453 -S'cf(${1:Param1}, ${2:State}, ${3:Param3}, ${4:Param4}) $5' -p70454 -tp70455 -a(S'cf/5' -p70456 -S'cf(${1:Param1}, ${2:State}, ${3:Param3}, ${4:Param4}, ${5:Param5}) $6' -p70457 -tp70458 -a(S'is_name_char/1' -p70459 -S'is_name_char(${1:C}) $2' -p70460 -tp70461 -a(S'is_name_start/1' -p70462 -S'is_name_start(${1:C}) $2' -p70463 -tp70464 -a(S'parse/2' -p70465 -S'parse(${1:Xml}, ${2:State}) $3' -p70466 -tp70467 -a(S'parse_dtd/2' -p70468 -S'parse_dtd(${1:Xml}, ${2:State}) $3' -p70469 -tp70470 -asS'rubber' -p70471 -(lp70472 -(S'init/0' -p70473 -S'init() $1' -p70474 -tp70475 -a(S'start/0' -p70476 -S'start() $1' -p70477 -tp70478 -asS'CosPropertyService_PropertiesIterator_impl' -p70479 -(lp70480 -(S'code_change/3' -p70481 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p70482 -tp70483 -a(S'destroy/1' -p70484 -S'destroy(${1:State}) $2' -p70485 -tp70486 -a(S'init/1' -p70487 -S'init(${1:Properties}) $2' -p70488 -tp70489 -a(S'next_n/2' -p70490 -S'next_n(${1:State}, ${2:N}) $3' -p70491 -tp70492 -a(S'next_one/1' -p70493 -S'next_one(${1:State}) $2' -p70494 -tp70495 -a(S'reset/1' -p70496 -S'reset(${1:State}) $2' -p70497 -tp70498 -a(S'terminate/2' -p70499 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p70500 -tp70501 -asS'mod_auth_dets' -p70502 -(lp70503 -(S'add_group_member/3' -p70504 -S'add_group_member(${1:DirData}, ${2:GroupName}, ${3:UserName}) $4' -p70505 -tp70506 -a(S'add_user/2' -p70507 -S'add_user(${1:DirData}, ${2:UStruct}) $3' -p70508 -tp70509 -a(S'delete_group/2' -p70510 -S'delete_group(${1:DirData}, ${2:GroupName}) $3' -p70511 -tp70512 -a(S'delete_group_member/3' -p70513 -S'delete_group_member(${1:DirData}, ${2:GroupName}, ${3:UserName}) $4' -p70514 -tp70515 -a(S'delete_user/2' -p70516 -S'delete_user(${1:DirData}, ${2:UserName}) $3' -p70517 -tp70518 -a(S'get_user/2' -p70519 -S'get_user(${1:DirData}, ${2:UserName}) $3' -p70520 -tp70521 -a(S'list_group_members/2' -p70522 -S'list_group_members(${1:DirData}, ${2:GroupName}) $3' -p70523 -tp70524 -a(S'list_groups/1' -p70525 -S'list_groups(${1:DirData}) $2' -p70526 -tp70527 -a(S'list_users/1' -p70528 -S'list_users(${1:DirData}) $2' -p70529 -tp70530 -a(S'remove/1' -p70531 -S'remove(${1:DirData}) $2' -p70532 -tp70533 -a(S'store_directory_data/3' -p70534 -S'store_directory_data(${1:Param1}, ${2:DirData}, ${3:Server_root}) $4' -p70535 -tp70536 -asS'orber_iiop_outsup' -p70537 -(lp70538 -(S'connect/7' -p70539 -S'connect(${1:Host}, ${2:Port}, ${3:SocketType}, ${4:SocketOptions}, ${5:Parent}, ${6:Key}, ${7:NewKey}) $8' -p70540 -tp70541 -a(S'init/1' -p70542 -S'init(${1:Param1}) $2' -p70543 -tp70544 -a(S'start/2' -p70545 -S'start(${1:Param1}, ${2:Opts}) $3' -p70546 -tp70547 -a(S'terminate/2' -p70548 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p70549 -tp70550 -asS'CosNotifyChannelAdmin_ConnectionAlreadyInactive' -p70551 -(lp70552 -(S'id/0' -p70553 -S'id() $1' -p70554 -tp70555 -a(S'name/0' -p70556 -S'name() $1' -p70557 -tp70558 -a(S'tc/0' -p70559 -S'tc() $1' -p70560 -tp70561 -asS'asn1rt_ber_bin' -p70562 -(lp70563 -(S'check_if_valid_tag/3' -p70564 -S'check_if_valid_tag(${1:Bytes}, ${2:ListOfTags}, ${3:OptOrMand}) $4' -p70565 -tp70566 -a(S'check_tags/3' -p70567 -S'check_tags(${1:Tags}, ${2:Buffer}, ${3:OptOrMand}) $4' -p70568 -tp70569 -a(S'cindex/3' -p70570 -S'cindex(${1:Ix}, ${2:Val}, ${3:Cname}) $4' -p70571 -tp70572 -a(S'decode/1' -p70573 -S'decode(${1:Bin}) $2' -p70574 -tp70575 -a(S'decode_BMP_string/5' -p70576 -S'decode_BMP_string(${1:Buffer}, ${2:Range}, ${3:Tags}, ${4:LenIn}, ${5:OptOrMand}) $6' -p70577 -tp70578 -a(S'decode_UTF8_string/3' -p70579 -S'decode_UTF8_string(${1:Buffer}, ${2:Tags}, ${3:OptOrMand}) $4' -p70580 -tp70581 -a(S'decode_bit_string/6' -p70582 -S'decode_bit_string(${1:Buffer}, ${2:Range}, ${3:NamedNumberList}, ${4:Tags}, ${5:LenIn}, ${6:OptOrMand}) $7' -p70583 -tp70584 -a(S'decode_boolean/3' -p70585 -S'decode_boolean(${1:Buffer}, ${2:Tags}, ${3:OptOrMand}) $4' -p70586 -tp70587 -a(S'decode_compact_bit_string/6' -p70588 -S'decode_compact_bit_string(${1:Buffer}, ${2:Range}, ${3:NamedNumberList}, ${4:Tags}, ${5:LenIn}, ${6:OptOrMand}) $7' -p70589 -tp70590 -a(S'decode_components/6' -p70591 -S'decode_components(${1:Rb}, ${2:Num}, ${3:Bytes}, ${4:Fun3}, ${5:TagIn}, ${6:Acc}) $7' -p70592 -tp70593 -a(S'decode_components/7' -p70594 -S'decode_components(${1:Rb}, ${2:Num}, ${3:Bytes}, ${4:Param4}, ${5:TagIn}, ${6:Param6}, ${7:Acc}) $8' -p70595 -tp70596 -a(S'decode_enumerated/5' -p70597 -S'decode_enumerated(${1:Buffer}, ${2:Range}, ${3:NamedNumberList}, ${4:Tags}, ${5:OptOrMand}) $6' -p70598 -tp70599 -a(S'decode_generalized_time/5' -p70600 -S'decode_generalized_time(${1:Buffer}, ${2:Range}, ${3:Tags}, ${4:TotalLen}, ${5:OptOrMand}) $6' -p70601 -tp70602 -a(S'decode_integer/4' -p70603 -S'decode_integer(${1:Buffer}, ${2:Range}, ${3:Tags}, ${4:OptOrMand}) $5' -p70604 -tp70605 -a(S'decode_integer/5' -p70606 -S'decode_integer(${1:Buffer}, ${2:Range}, ${3:NamedNumberList}, ${4:Tags}, ${5:OptOrMand}) $6' -p70607 -tp70608 -a(S'decode_length/1' -p70609 -S'decode_length(${1:Param1}) $2' -p70610 -tp70611 -a(S'decode_null/3' -p70612 -S'decode_null(${1:Buffer}, ${2:Tags}, ${3:OptOrMand}) $4' -p70613 -tp70614 -a(S'decode_object_identifier/3' -p70615 -S'decode_object_identifier(${1:Buffer}, ${2:Tags}, ${3:OptOrMand}) $4' -p70616 -tp70617 -a(S'decode_octet_string/5' -p70618 -S'decode_octet_string(${1:Buffer}, ${2:Range}, ${3:Tags}, ${4:TotalLen}, ${5:OptOrMand}) $6' -p70619 -tp70620 -a(S'decode_open_type/1' -p70621 -S'decode_open_type(${1:Bytes}) $2' -p70622 -tp70623 -a(S'decode_open_type/2' -p70624 -S'decode_open_type(${1:Bytes}, ${2:ExplTag}) $3' -p70625 -tp70626 -a(S'decode_open_type/3' -p70627 -S'decode_open_type(${1:Param1}, ${2:Bytes}, ${3:ExplTag}) $4' -p70628 -tp70629 -a(S'decode_real/2' -p70630 -S'decode_real(${1:Buffer}, ${2:Len}) $3' -p70631 -tp70632 -a(S'decode_real/4' -p70633 -S'decode_real(${1:Buffer}, ${2:C}, ${3:Tags}, ${4:OptOrMand}) $5' -p70634 -tp70635 -a(S'decode_relative_oid/3' -p70636 -S'decode_relative_oid(${1:Buffer}, ${2:Tags}, ${3:OptOrMand}) $4' -p70637 -tp70638 -a(S'decode_restricted_string/6' -p70639 -S'decode_restricted_string(${1:Buffer}, ${2:Range}, ${3:StringType}, ${4:Tags}, ${5:LenIn}, ${6:OptOrMand}) $7' -p70640 -tp70641 -a(S'decode_set/6' -p70642 -S'decode_set(${1:Rb}, ${2:Num}, ${3:Bytes}, ${4:OptOrMand}, ${5:Fun3}, ${6:Acc}) $7' -p70643 -tp70644 -a(S'decode_tag/1' -p70645 -S'decode_tag(${1:Param1}) $2' -p70646 -tp70647 -a(S'decode_tag_and_length/1' -p70648 -S'decode_tag_and_length(${1:Buffer}) $2' -p70649 -tp70650 -a(S'decode_universal_string/5' -p70651 -S'decode_universal_string(${1:Buffer}, ${2:Range}, ${3:Tags}, ${4:LenIn}, ${5:OptOrMand}) $6' -p70652 -tp70653 -a(S'decode_utc_time/5' -p70654 -S'decode_utc_time(${1:Buffer}, ${2:Range}, ${3:Tags}, ${4:TotalLen}, ${5:OptOrMand}) $6' -p70655 -tp70656 -a(S'encode_BMP_string/3' -p70657 -S'encode_BMP_string(${1:C}, ${2:BMPString}, ${3:DoTag}) $4' -p70658 -tp70659 -a(S'encode_UTF8_string/3' -p70660 -S'encode_UTF8_string(${1:Param1}, ${2:UTF8String}, ${3:DoTag}) $4' -p70661 -tp70662 -a(S'encode_bit_string/4' -p70663 -S'encode_bit_string(${1:C}, ${2:IntegerVal}, ${3:NamedBitList}, ${4:DoTag}) $5' -p70664 -tp70665 -a(S'encode_boolean/2' -p70666 -S'encode_boolean(${1:Val}, ${2:DoTag}) $3' -p70667 -tp70668 -a(S'encode_enumerated/2' -p70669 -S'encode_enumerated(${1:Val}, ${2:DoTag}) $3' -p70670 -tp70671 -a(S'encode_enumerated/4' -p70672 -S'encode_enumerated(${1:C}, ${2:Val}, ${3:NamedNumberList}, ${4:DoTag}) $5' -p70673 -tp70674 -a(S'encode_generalized_time/3' -p70675 -S'encode_generalized_time(${1:C}, ${2:OctetList}, ${3:DoTag}) $4' -p70676 -tp70677 -a(S'encode_integer/3' -p70678 -S'encode_integer(${1:C}, ${2:Val}, ${3:Tag}) $4' -p70679 -tp70680 -a(S'encode_integer/4' -p70681 -S'encode_integer(${1:C}, ${2:Val}, ${3:NamedNumberList}, ${4:Tag}) $5' -p70682 -tp70683 -a(S'encode_length/1' -p70684 -S'encode_length(${1:L}) $2' -p70685 -tp70686 -a(S'encode_null/2' -p70687 -S'encode_null(${1:Param1}, ${2:DoTag}) $3' -p70688 -tp70689 -a(S'encode_object_identifier/2' -p70690 -S'encode_object_identifier(${1:Val}, ${2:DoTag}) $3' -p70691 -tp70692 -a(S'encode_octet_string/3' -p70693 -S'encode_octet_string(${1:C}, ${2:OctetList}, ${3:DoTag}) $4' -p70694 -tp70695 -a(S'encode_open_type/1' -p70696 -S'encode_open_type(${1:Val}) $2' -p70697 -tp70698 -a(S'encode_open_type/2' -p70699 -S'encode_open_type(${1:Val}, ${2:Tag}) $3' -p70700 -tp70701 -a(S'encode_real/2' -p70702 -S'encode_real(${1:C}, ${2:Real}) $3' -p70703 -tp70704 -a(S'encode_real/3' -p70705 -S'encode_real(${1:C}, ${2:Val}, ${3:DoTag}) $4' -p70706 -tp70707 -a(S'encode_relative_oid/2' -p70708 -S'encode_relative_oid(${1:Val}, ${2:TagIn}) $3' -p70709 -tp70710 -a(S'encode_restricted_string/4' -p70711 -S'encode_restricted_string(${1:C}, ${2:Param2}, ${3:StringType}, ${4:DoTag}) $5' -p70712 -tp70713 -a(S'encode_tag_val/1' -p70714 -S'encode_tag_val(${1:Tag}) $2' -p70715 -tp70716 -a(S'encode_tags/3' -p70717 -S'encode_tags(${1:Tags}, ${2:BytesSoFar}, ${3:LenSoFar}) $4' -p70718 -tp70719 -a(S'encode_universal_string/3' -p70720 -S'encode_universal_string(${1:C}, ${2:Universal}, ${3:DoTag}) $4' -p70721 -tp70722 -a(S'encode_utc_time/3' -p70723 -S'encode_utc_time(${1:C}, ${2:OctetList}, ${3:DoTag}) $4' -p70724 -tp70725 -a(S'fixoptionals/2' -p70726 -S'fixoptionals(${1:OptList}, ${2:Val}) $3' -p70727 -tp70728 -a(S'list_to_record/2' -p70729 -S'list_to_record(${1:Name}, ${2:List}) $3' -p70730 -tp70731 -a(S'peek_tag/1' -p70732 -S'peek_tag(${1:Param1}) $2' -p70733 -tp70734 -a(S'restbytes2/3' -p70735 -S'restbytes2(${1:RemBytes}, ${2:RemBytes}, ${3:Param3}) $4' -p70736 -tp70737 -a(S'skip_ExtensionAdditions/2' -p70738 -S'skip_ExtensionAdditions(${1:Bytes}, ${2:Tags}) $3' -p70739 -tp70740 -a(S'skipvalue/1' -p70741 -S'skipvalue(${1:Bytes}) $2' -p70742 -tp70743 -a(S'skipvalue/2' -p70744 -S'skipvalue(${1:L}, ${2:Bytes}) $3' -p70745 -tp70746 -a(S'split_list/2' -p70747 -S'split_list(${1:List}, ${2:Len}) $3' -p70748 -tp70749 -asS'pool' -p70750 -(lp70751 -(S'attach/1' -p70752 -S'attach(${1:Node}) $2' -p70753 -tp70754 -a(S'do_spawn/4' -p70755 -S'do_spawn(${1:Gl}, ${2:M}, ${3:F}, ${4:A}) $5' -p70756 -tp70757 -a(S'get_node/0' -p70758 -S'get_node() $1' -p70759 -tp70760 -a(S'get_nodes/0' -p70761 -S'get_nodes() $1' -p70762 -tp70763 -a(S'get_nodes_and_load/0' -p70764 -S'get_nodes_and_load() $1' -p70765 -tp70766 -a(S'handle_call/3' -p70767 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:Nodes}) $4' -p70768 -tp70769 -a(S'handle_cast/2' -p70770 -S'handle_cast(${1:Param1}, ${2:Nodes}) $3' -p70771 -tp70772 -a(S'handle_info/2' -p70773 -S'handle_info(${1:Param1}, ${2:Nodes}) $3' -p70774 -tp70775 -a(S'init/1' -p70776 -S'init(${1:Param1}) $2' -p70777 -tp70778 -a(S'pspawn/3' -p70779 -S'pspawn(${1:Mod}, ${2:Fun}, ${3:Args}) $4' -p70780 -tp70781 -a(S'pspawn_link/3' -p70782 -S'pspawn_link(${1:Mod}, ${2:Fun}, ${3:Args}) $4' -p70783 -tp70784 -a(S'start/1' -p70785 -S'start(${1:Name}) $2' -p70786 -tp70787 -a(S'start/2' -p70788 -S'start(${1:Name}, ${2:Args}) $3' -p70789 -tp70790 -a(S'statistic_collector/0' -p70791 -S'statistic_collector() $1' -p70792 -tp70793 -a(S'stop/0' -p70794 -S'stop() $1' -p70795 -tp70796 -a(S'terminate/2' -p70797 -S'terminate(${1:Param1}, ${2:Nodes}) $3' -p70798 -tp70799 -asS'CosNotifyChannelAdmin_ProxyIDSeq' -p70800 -(lp70801 -(S'id/0' -p70802 -S'id() $1' -p70803 -tp70804 -a(S'name/0' -p70805 -S'name() $1' -p70806 -tp70807 -a(S'tc/0' -p70808 -S'tc() $1' -p70809 -tp70810 -asS'pman_buf' -p70811 -(lp70812 -(S'clear/3' -p70813 -S'clear(${1:Buff}, ${2:String}, ${3:FileName}) $4' -p70814 -tp70815 -a(S'start/2' -p70816 -S'start(${1:Editor}, ${2:FileName}) $3' -p70817 -tp70818 -asS'CosNotifyChannelAdmin_AdminLimit' -p70819 -(lp70820 -(S'id/0' -p70821 -S'id() $1' -p70822 -tp70823 -a(S'name/0' -p70824 -S'name() $1' -p70825 -tp70826 -a(S'tc/0' -p70827 -S'tc() $1' -p70828 -tp70829 -asS'ic_jbe' -p70830 -(lp70831 -(S'do_gen/3' -p70832 -S'do_gen(${1:G}, ${2:Param2}, ${3:Form}) $4' -p70833 -tp70834 -a(S'emit_type_function/4' -p70835 -S'emit_type_function(${1:G}, ${2:N}, ${3:X}, ${4:Fd}) $5' -p70836 -tp70837 -a(S'gen/3' -p70838 -S'gen(${1:G}, ${2:N}, ${3:Form}) $4' -p70839 -tp70840 -asS'wxBoxSizer' -p70841 -(lp70842 -(S'add/2' -p70843 -S'add(${1:This}, ${2:Window}) $3' -p70844 -tp70845 -a(S'add/3' -p70846 -S'add(${1:This}, ${2:Width}, ${3:Height}) $4' -p70847 -tp70848 -a(S'add/4' -p70849 -S'add(${1:This}, ${2:Width}, ${3:Height}, ${4:Options}) $5' -p70850 -tp70851 -a(S'addSpacer/2' -p70852 -S'addSpacer(${1:This}, ${2:Size}) $3' -p70853 -tp70854 -a(S'addStretchSpacer/1' -p70855 -S'addStretchSpacer(${1:This}) $2' -p70856 -tp70857 -a(S'addStretchSpacer/2' -p70858 -S'addStretchSpacer(${1:This}, ${2:Options}) $3' -p70859 -tp70860 -a(S'calcMin/1' -p70861 -S'calcMin(${1:This}) $2' -p70862 -tp70863 -a(S'clear/1' -p70864 -S'clear(${1:This}) $2' -p70865 -tp70866 -a(S'clear/2' -p70867 -S'clear(${1:This}, ${2:Options}) $3' -p70868 -tp70869 -a(S'destroy/1' -p70870 -S'destroy(${1:This}) $2' -p70871 -tp70872 -a(S'detach/2' -p70873 -S'detach(${1:This}, ${2:Index}) $3' -p70874 -tp70875 -a(S'fit/2' -p70876 -S'fit(${1:This}, ${2:Window}) $3' -p70877 -tp70878 -a(S'fitInside/2' -p70879 -S'fitInside(${1:This}, ${2:Window}) $3' -p70880 -tp70881 -a(S'getChildren/1' -p70882 -S'getChildren(${1:This}) $2' -p70883 -tp70884 -a(S'getItem/2' -p70885 -S'getItem(${1:This}, ${2:Window}) $3' -p70886 -tp70887 -a(S'getItem/3' -p70888 -S'getItem(${1:This}, ${2:Window}, ${3:Options}) $4' -p70889 -tp70890 -a(S'getMinSize/1' -p70891 -S'getMinSize(${1:This}) $2' -p70892 -tp70893 -a(S'getOrientation/1' -p70894 -S'getOrientation(${1:This}) $2' -p70895 -tp70896 -a(S'getPosition/1' -p70897 -S'getPosition(${1:This}) $2' -p70898 -tp70899 -a(S'getSize/1' -p70900 -S'getSize(${1:This}) $2' -p70901 -tp70902 -a(S'hide/2' -p70903 -S'hide(${1:This}, ${2:Window}) $3' -p70904 -tp70905 -a(S'hide/3' -p70906 -S'hide(${1:This}, ${2:Window}, ${3:Options}) $4' -p70907 -tp70908 -a(S'insert/3' -p70909 -S'insert(${1:This}, ${2:Index}, ${3:Item}) $4' -p70910 -tp70911 -a(S'insert/4' -p70912 -S'insert(${1:This}, ${2:Index}, ${3:Width}, ${4:Height}) $5' -p70913 -tp70914 -a(S'insert/5' -p70915 -S'insert(${1:This}, ${2:Index}, ${3:Width}, ${4:Height}, ${5:Options}) $6' -p70916 -tp70917 -a(S'insertSpacer/3' -p70918 -S'insertSpacer(${1:This}, ${2:Index}, ${3:Size}) $4' -p70919 -tp70920 -a(S'insertStretchSpacer/2' -p70921 -S'insertStretchSpacer(${1:This}, ${2:Index}) $3' -p70922 -tp70923 -a(S'insertStretchSpacer/3' -p70924 -S'insertStretchSpacer(${1:This}, ${2:Index}, ${3:Options}) $4' -p70925 -tp70926 -a(S'isShown/2' -p70927 -S'isShown(${1:This}, ${2:Index}) $3' -p70928 -tp70929 -a(S'layout/1' -p70930 -S'layout(${1:This}) $2' -p70931 -tp70932 -a(S'new/1' -p70933 -S'new(${1:Orient}) $2' -p70934 -tp70935 -a(S'parent_class/1' -p70936 -S'parent_class(${1:Param1}) $2' -p70937 -tp70938 -a(S'prepend/2' -p70939 -S'prepend(${1:This}, ${2:Item}) $3' -p70940 -tp70941 -a(S'prepend/3' -p70942 -S'prepend(${1:This}, ${2:Width}, ${3:Height}) $4' -p70943 -tp70944 -a(S'prepend/4' -p70945 -S'prepend(${1:This}, ${2:Width}, ${3:Height}, ${4:Options}) $5' -p70946 -tp70947 -a(S'prependSpacer/2' -p70948 -S'prependSpacer(${1:This}, ${2:Size}) $3' -p70949 -tp70950 -a(S'prependStretchSpacer/1' -p70951 -S'prependStretchSpacer(${1:This}) $2' -p70952 -tp70953 -a(S'prependStretchSpacer/2' -p70954 -S'prependStretchSpacer(${1:This}, ${2:Options}) $3' -p70955 -tp70956 -a(S'recalcSizes/1' -p70957 -S'recalcSizes(${1:This}) $2' -p70958 -tp70959 -a(S'remove/2' -p70960 -S'remove(${1:This}, ${2:Index}) $3' -p70961 -tp70962 -a(S'replace/3' -p70963 -S'replace(${1:This}, ${2:Oldwin}, ${3:Newwin}) $4' -p70964 -tp70965 -a(S'replace/4' -p70966 -S'replace(${1:This}, ${2:Oldwin}, ${3:Newwin}, ${4:Options}) $5' -p70967 -tp70968 -a(S'setDimension/5' -p70969 -S'setDimension(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p70970 -tp70971 -a(S'setItemMinSize/3' -p70972 -S'setItemMinSize(${1:This}, ${2:Index}, ${3:Size}) $4' -p70973 -tp70974 -a(S'setItemMinSize/4' -p70975 -S'setItemMinSize(${1:This}, ${2:Index}, ${3:Width}, ${4:Height}) $5' -p70976 -tp70977 -a(S'setMinSize/2' -p70978 -S'setMinSize(${1:This}, ${2:Size}) $3' -p70979 -tp70980 -a(S'setMinSize/3' -p70981 -S'setMinSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p70982 -tp70983 -a(S'setSizeHints/2' -p70984 -S'setSizeHints(${1:This}, ${2:Window}) $3' -p70985 -tp70986 -a(S'setVirtualSizeHints/2' -p70987 -S'setVirtualSizeHints(${1:This}, ${2:Window}) $3' -p70988 -tp70989 -a(S'show/2' -p70990 -S'show(${1:This}, ${2:Index}) $3' -p70991 -tp70992 -a(S'show/3' -p70993 -S'show(${1:This}, ${2:Index}, ${3:Options}) $4' -p70994 -tp70995 -asS'orber_ifr_sequencedef' -p70996 -(lp70997 -(S"'_get_bound'/1" -p70998 -S"'_get_bound'() $1" -p70999 -tp71000 -a(S"'_get_def_kind'/1" -p71001 -S"'_get_def_kind'() $1" -p71002 -tp71003 -a(S"'_get_element_type'/1" -p71004 -S"'_get_element_type'() $1" -p71005 -tp71006 -a(S"'_get_element_type_def'/1" -p71007 -S"'_get_element_type_def'() $1" -p71008 -tp71009 -a(S"'_get_type'/1" -p71010 -S"'_get_type'() $1" -p71011 -tp71012 -a(S"'_set_bound'/2" -p71013 -S"'_set_bound'() $1" -p71014 -tp71015 -a(S"'_set_element_type_def'/2" -p71016 -S"'_set_element_type_def'() $1" -p71017 -tp71018 -a(S'cleanup_for_destroy/1' -p71019 -S'cleanup_for_destroy() $1' -p71020 -tp71021 -a(S'destroy/1' -p71022 -S'destroy() $1' -p71023 -tp71024 -asS'erl_internal' -p71025 -(lp71026 -(S'arith_op/2' -p71027 -S'arith_op(${1:OpName}, ${2:Arity}) $3' -p71028 -tp71029 -a(S'bif/2' -p71030 -S'bif(${1:Name}, ${2:Arity}) $3' -p71031 -tp71032 -a(S'bif/3' -p71033 -S'bif(${1:Mod}, ${2:Name}, ${3:Arity}) $4' -p71034 -tp71035 -a(S'bool_op/2' -p71036 -S'bool_op(${1:OpName}, ${2:Arity}) $3' -p71037 -tp71038 -a(S'comp_op/2' -p71039 -S'comp_op(${1:OpName}, ${2:Arity}) $3' -p71040 -tp71041 -a(S'guard_bif/2' -p71042 -S'guard_bif(${1:Name}, ${2:Arity}) $3' -p71043 -tp71044 -a(S'list_op/2' -p71045 -S'list_op(${1:OpName}, ${2:Arity}) $3' -p71046 -tp71047 -a(S'new_type_test/2' -p71048 -S'new_type_test(${1:Name}, ${2:Arity}) $3' -p71049 -tp71050 -a(S'old_bif/2' -p71051 -S'old_bif(${1:Name}, ${2:Arity}) $3' -p71052 -tp71053 -a(S'old_type_test/2' -p71054 -S'old_type_test(${1:Name}, ${2:Arity}) $3' -p71055 -tp71056 -a(S'op_type/2' -p71057 -S'op_type(${1:OpName}, ${2:Arity}) $3' -p71058 -tp71059 -a(S'send_op/2' -p71060 -S'send_op(${1:OpName}, ${2:Arity}) $3' -p71061 -tp71062 -a(S'type_test/2' -p71063 -S'type_test(${1:Name}, ${2:Arity}) $3' -p71064 -tp71065 -asS'megaco_binary_name_resolver_v2' -p71066 -(lp71067 -(S'capabilities/0' -p71068 -S'capabilities() $1' -p71069 -tp71070 -a(S'capabilities/1' -p71071 -S'capabilities(${1:Package}) $2' -p71072 -tp71073 -a(S'decode_name/3' -p71074 -S'decode_name(${1:Config}, ${2:Scope}, ${3:TermId}) $4' -p71075 -tp71076 -a(S'encode_name/3' -p71077 -S'encode_name(${1:Config}, ${2:Scope}, ${3:TermId}) $4' -p71078 -tp71079 -a(S'packages/0' -p71080 -S'packages() $1' -p71081 -tp71082 -asS'megaco_binary_name_resolver_v3' -p71083 -(lp71084 -(S'capabilities/0' -p71085 -S'capabilities() $1' -p71086 -tp71087 -a(S'capabilities/1' -p71088 -S'capabilities(${1:Package}) $2' -p71089 -tp71090 -a(S'decode_name/3' -p71091 -S'decode_name(${1:Config}, ${2:Scope}, ${3:TermId}) $4' -p71092 -tp71093 -a(S'encode_name/3' -p71094 -S'encode_name(${1:Config}, ${2:Scope}, ${3:TermId}) $4' -p71095 -tp71096 -a(S'packages/0' -p71097 -S'packages() $1' -p71098 -tp71099 -asS'TimeBase_IntervalT' -p71100 -(lp71101 -(S'id/0' -p71102 -S'id() $1' -p71103 -tp71104 -a(S'name/0' -p71105 -S'name() $1' -p71106 -tp71107 -a(S'tc/0' -p71108 -S'tc() $1' -p71109 -tp71110 -asS'megaco_binary_name_resolver_v1' -p71111 -(lp71112 -(S'capabilities/0' -p71113 -S'capabilities() $1' -p71114 -tp71115 -a(S'capabilities/1' -p71116 -S'capabilities(${1:Package}) $2' -p71117 -tp71118 -a(S'decode_name/3' -p71119 -S'decode_name(${1:Config}, ${2:Scope}, ${3:TermId}) $4' -p71120 -tp71121 -a(S'encode_name/3' -p71122 -S'encode_name(${1:Config}, ${2:Scope}, ${3:TermId}) $4' -p71123 -tp71124 -a(S'packages/0' -p71125 -S'packages() $1' -p71126 -tp71127 -asS'megaco_per_media_gateway_control_prev3b' -p71128 -(lp71129 -(S"'dec_ActionReply'/2" -p71130 -S"'dec_ActionReply'(${1:Bytes}, ${2:Param2}) $3" -p71131 -tp71132 -a(S"'dec_ActionRequest'/2" -p71133 -S"'dec_ActionRequest'(${1:Bytes}, ${2:Param2}) $3" -p71134 -tp71135 -a(S"'dec_AmmDescriptor'/2" -p71136 -S"'dec_AmmDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p71137 -tp71138 -a(S"'dec_AmmRequest'/2" -p71139 -S"'dec_AmmRequest'(${1:Bytes}, ${2:Param2}) $3" -p71140 -tp71141 -a(S"'dec_AmmsReply'/2" -p71142 -S"'dec_AmmsReply'(${1:Bytes}, ${2:Param2}) $3" -p71143 -tp71144 -a(S"'dec_AuditDescriptor'/2" -p71145 -S"'dec_AuditDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p71146 -tp71147 -a(S"'dec_AuditReply'/2" -p71148 -S"'dec_AuditReply'(${1:Bytes}, ${2:Param2}) $3" -p71149 -tp71150 -a(S"'dec_AuditRequest'/2" -p71151 -S"'dec_AuditRequest'(${1:Bytes}, ${2:Param2}) $3" -p71152 -tp71153 -a(S"'dec_AuditResult'/2" -p71154 -S"'dec_AuditResult'(${1:Bytes}, ${2:Param2}) $3" -p71155 -tp71156 -a(S"'dec_AuditReturnParameter'/2" -p71157 -S"'dec_AuditReturnParameter'(${1:Bytes}, ${2:Param2}) $3" -p71158 -tp71159 -a(S"'dec_AuthData'/2" -p71160 -S"'dec_AuthData'(${1:Bytes}, ${2:Param2}) $3" -p71161 -tp71162 -a(S"'dec_AuthenticationHeader'/2" -p71163 -S"'dec_AuthenticationHeader'(${1:Bytes}, ${2:Param2}) $3" -p71164 -tp71165 -a(S"'dec_Command'/2" -p71166 -S"'dec_Command'(${1:Bytes}, ${2:Param2}) $3" -p71167 -tp71168 -a(S"'dec_CommandReply'/2" -p71169 -S"'dec_CommandReply'(${1:Bytes}, ${2:Param2}) $3" -p71170 -tp71171 -a(S"'dec_CommandRequest'/2" -p71172 -S"'dec_CommandRequest'(${1:Bytes}, ${2:Param2}) $3" -p71173 -tp71174 -a(S"'dec_ContextAttrAuditRequest'/2" -p71175 -S"'dec_ContextAttrAuditRequest'(${1:Bytes}, ${2:Param2}) $3" -p71176 -tp71177 -a(S"'dec_ContextID'/2" -p71178 -S"'dec_ContextID'(${1:Bytes}, ${2:Param2}) $3" -p71179 -tp71180 -a(S"'dec_ContextRequest'/2" -p71181 -S"'dec_ContextRequest'(${1:Bytes}, ${2:Param2}) $3" -p71182 -tp71183 -a(S"'dec_DigitMapDescriptor'/2" -p71184 -S"'dec_DigitMapDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p71185 -tp71186 -a(S"'dec_DigitMapName'/2" -p71187 -S"'dec_DigitMapName'(${1:Bytes}, ${2:Param2}) $3" -p71188 -tp71189 -a(S"'dec_DigitMapValue'/2" -p71190 -S"'dec_DigitMapValue'(${1:Bytes}, ${2:Param2}) $3" -p71191 -tp71192 -a(S"'dec_DomainName'/2" -p71193 -S"'dec_DomainName'(${1:Bytes}, ${2:Param2}) $3" -p71194 -tp71195 -a(S"'dec_ErrorCode'/2" -p71196 -S"'dec_ErrorCode'(${1:Bytes}, ${2:Param2}) $3" -p71197 -tp71198 -a(S"'dec_ErrorDescriptor'/2" -p71199 -S"'dec_ErrorDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p71200 -tp71201 -a(S"'dec_ErrorText'/2" -p71202 -S"'dec_ErrorText'(${1:Bytes}, ${2:Param2}) $3" -p71203 -tp71204 -a(S"'dec_EventBufferControl'/2" -p71205 -S"'dec_EventBufferControl'(${1:Bytes}, ${2:Param2}) $3" -p71206 -tp71207 -a(S"'dec_EventBufferDescriptor'/2" -p71208 -S"'dec_EventBufferDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p71209 -tp71210 -a(S"'dec_EventDM'/2" -p71211 -S"'dec_EventDM'(${1:Bytes}, ${2:Param2}) $3" -p71212 -tp71213 -a(S"'dec_EventName'/2" -p71214 -S"'dec_EventName'(${1:Bytes}, ${2:Param2}) $3" -p71215 -tp71216 -a(S"'dec_EventParameter'/2" -p71217 -S"'dec_EventParameter'(${1:Bytes}, ${2:Param2}) $3" -p71218 -tp71219 -a(S"'dec_EventSpec'/2" -p71220 -S"'dec_EventSpec'(${1:Bytes}, ${2:Param2}) $3" -p71221 -tp71222 -a(S"'dec_EventsDescriptor'/2" -p71223 -S"'dec_EventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p71224 -tp71225 -a(S"'dec_H221NonStandard'/2" -p71226 -S"'dec_H221NonStandard'(${1:Bytes}, ${2:Param2}) $3" -p71227 -tp71228 -a(S"'dec_IP4Address'/2" -p71229 -S"'dec_IP4Address'(${1:Bytes}, ${2:Param2}) $3" -p71230 -tp71231 -a(S"'dec_IP6Address'/2" -p71232 -S"'dec_IP6Address'(${1:Bytes}, ${2:Param2}) $3" -p71233 -tp71234 -a(S"'dec_IndAudDigitMapDescriptor'/2" -p71235 -S"'dec_IndAudDigitMapDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p71236 -tp71237 -a(S"'dec_IndAudEventBufferDescriptor'/2" -p71238 -S"'dec_IndAudEventBufferDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p71239 -tp71240 -a(S"'dec_IndAudEventsDescriptor'/2" -p71241 -S"'dec_IndAudEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p71242 -tp71243 -a(S"'dec_IndAudLocalControlDescriptor'/2" -p71244 -S"'dec_IndAudLocalControlDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p71245 -tp71246 -a(S"'dec_IndAudLocalRemoteDescriptor'/2" -p71247 -S"'dec_IndAudLocalRemoteDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p71248 -tp71249 -a(S"'dec_IndAudMediaDescriptor'/2" -p71250 -S"'dec_IndAudMediaDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p71251 -tp71252 -a(S"'dec_IndAudPackagesDescriptor'/2" -p71253 -S"'dec_IndAudPackagesDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p71254 -tp71255 -a(S"'dec_IndAudPropertyGroup'/2" -p71256 -S"'dec_IndAudPropertyGroup'(${1:Bytes}, ${2:Param2}) $3" -p71257 -tp71258 -a(S"'dec_IndAudPropertyParm'/2" -p71259 -S"'dec_IndAudPropertyParm'(${1:Bytes}, ${2:Param2}) $3" -p71260 -tp71261 -a(S"'dec_IndAudSeqSigList'/2" -p71262 -S"'dec_IndAudSeqSigList'(${1:Bytes}, ${2:Param2}) $3" -p71263 -tp71264 -a(S"'dec_IndAudSignal'/2" -p71265 -S"'dec_IndAudSignal'(${1:Bytes}, ${2:Param2}) $3" -p71266 -tp71267 -a(S"'dec_IndAudSignalsDescriptor'/2" -p71268 -S"'dec_IndAudSignalsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p71269 -tp71270 -a(S"'dec_IndAudStatisticsDescriptor'/2" -p71271 -S"'dec_IndAudStatisticsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p71272 -tp71273 -a(S"'dec_IndAudStreamDescriptor'/2" -p71274 -S"'dec_IndAudStreamDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p71275 -tp71276 -a(S"'dec_IndAudStreamParms'/2" -p71277 -S"'dec_IndAudStreamParms'(${1:Bytes}, ${2:Param2}) $3" -p71278 -tp71279 -a(S"'dec_IndAudTerminationStateDescriptor'/2" -p71280 -S"'dec_IndAudTerminationStateDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p71281 -tp71282 -a(S"'dec_IndAuditParameter'/2" -p71283 -S"'dec_IndAuditParameter'(${1:Bytes}, ${2:Param2}) $3" -p71284 -tp71285 -a(S"'dec_LocalControlDescriptor'/2" -p71286 -S"'dec_LocalControlDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p71287 -tp71288 -a(S"'dec_LocalRemoteDescriptor'/2" -p71289 -S"'dec_LocalRemoteDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p71290 -tp71291 -a(S"'dec_MId'/2" -p71292 -S"'dec_MId'(${1:Bytes}, ${2:Param2}) $3" -p71293 -tp71294 -a(S"'dec_MediaDescriptor'/2" -p71295 -S"'dec_MediaDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p71296 -tp71297 -a(S"'dec_MegacoMessage'/2" -p71298 -S"'dec_MegacoMessage'(${1:Bytes}, ${2:Param2}) $3" -p71299 -tp71300 -a(S"'dec_Message'/2" -p71301 -S"'dec_Message'(${1:Bytes}, ${2:Param2}) $3" -p71302 -tp71303 -a(S"'dec_ModemDescriptor'/2" -p71304 -S"'dec_ModemDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p71305 -tp71306 -a(S"'dec_ModemType'/2" -p71307 -S"'dec_ModemType'(${1:Bytes}, ${2:Param2}) $3" -p71308 -tp71309 -a(S"'dec_MuxDescriptor'/2" -p71310 -S"'dec_MuxDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p71311 -tp71312 -a(S"'dec_MuxType'/2" -p71313 -S"'dec_MuxType'(${1:Bytes}, ${2:Param2}) $3" -p71314 -tp71315 -a(S"'dec_Name'/2" -p71316 -S"'dec_Name'(${1:Bytes}, ${2:Param2}) $3" -p71317 -tp71318 -a(S"'dec_NonStandardData'/2" -p71319 -S"'dec_NonStandardData'(${1:Bytes}, ${2:Param2}) $3" -p71320 -tp71321 -a(S"'dec_NonStandardIdentifier'/2" -p71322 -S"'dec_NonStandardIdentifier'(${1:Bytes}, ${2:Param2}) $3" -p71323 -tp71324 -a(S"'dec_NotifyCompletion'/2" -p71325 -S"'dec_NotifyCompletion'(${1:Bytes}, ${2:Param2}) $3" -p71326 -tp71327 -a(S"'dec_NotifyReply'/2" -p71328 -S"'dec_NotifyReply'(${1:Bytes}, ${2:Param2}) $3" -p71329 -tp71330 -a(S"'dec_NotifyRequest'/2" -p71331 -S"'dec_NotifyRequest'(${1:Bytes}, ${2:Param2}) $3" -p71332 -tp71333 -a(S"'dec_ObservedEvent'/2" -p71334 -S"'dec_ObservedEvent'(${1:Bytes}, ${2:Param2}) $3" -p71335 -tp71336 -a(S"'dec_ObservedEventsDescriptor'/2" -p71337 -S"'dec_ObservedEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p71338 -tp71339 -a(S"'dec_PackagesDescriptor'/2" -p71340 -S"'dec_PackagesDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p71341 -tp71342 -a(S"'dec_PackagesItem'/2" -p71343 -S"'dec_PackagesItem'(${1:Bytes}, ${2:Param2}) $3" -p71344 -tp71345 -a(S"'dec_PathName'/2" -p71346 -S"'dec_PathName'(${1:Bytes}, ${2:Param2}) $3" -p71347 -tp71348 -a(S"'dec_PkgdName'/2" -p71349 -S"'dec_PkgdName'(${1:Bytes}, ${2:Param2}) $3" -p71350 -tp71351 -a(S"'dec_PropertyGroup'/2" -p71352 -S"'dec_PropertyGroup'(${1:Bytes}, ${2:Param2}) $3" -p71353 -tp71354 -a(S"'dec_PropertyParm'/2" -p71355 -S"'dec_PropertyParm'(${1:Bytes}, ${2:Param2}) $3" -p71356 -tp71357 -a(S"'dec_Relation'/2" -p71358 -S"'dec_Relation'(${1:Bytes}, ${2:Param2}) $3" -p71359 -tp71360 -a(S"'dec_RequestID'/2" -p71361 -S"'dec_RequestID'(${1:Bytes}, ${2:Param2}) $3" -p71362 -tp71363 -a(S"'dec_RequestedActions'/2" -p71364 -S"'dec_RequestedActions'(${1:Bytes}, ${2:Param2}) $3" -p71365 -tp71366 -a(S"'dec_RequestedEvent'/2" -p71367 -S"'dec_RequestedEvent'(${1:Bytes}, ${2:Param2}) $3" -p71368 -tp71369 -a(S"'dec_SecondEventsDescriptor'/2" -p71370 -S"'dec_SecondEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p71371 -tp71372 -a(S"'dec_SecondRequestedActions'/2" -p71373 -S"'dec_SecondRequestedActions'(${1:Bytes}, ${2:Param2}) $3" -p71374 -tp71375 -a(S"'dec_SecondRequestedEvent'/2" -p71376 -S"'dec_SecondRequestedEvent'(${1:Bytes}, ${2:Param2}) $3" -p71377 -tp71378 -a(S"'dec_SecurityParmIndex'/2" -p71379 -S"'dec_SecurityParmIndex'(${1:Bytes}, ${2:Param2}) $3" -p71380 -tp71381 -a(S"'dec_SegmentNumber'/2" -p71382 -S"'dec_SegmentNumber'(${1:Bytes}, ${2:Param2}) $3" -p71383 -tp71384 -a(S"'dec_SeqSigList'/2" -p71385 -S"'dec_SeqSigList'(${1:Bytes}, ${2:Param2}) $3" -p71386 -tp71387 -a(S"'dec_SequenceNum'/2" -p71388 -S"'dec_SequenceNum'(${1:Bytes}, ${2:Param2}) $3" -p71389 -tp71390 -a(S"'dec_ServiceChangeAddress'/2" -p71391 -S"'dec_ServiceChangeAddress'(${1:Bytes}, ${2:Param2}) $3" -p71392 -tp71393 -a(S"'dec_ServiceChangeMethod'/2" -p71394 -S"'dec_ServiceChangeMethod'(${1:Bytes}, ${2:Param2}) $3" -p71395 -tp71396 -a(S"'dec_ServiceChangeParm'/2" -p71397 -S"'dec_ServiceChangeParm'(${1:Bytes}, ${2:Param2}) $3" -p71398 -tp71399 -a(S"'dec_ServiceChangeProfile'/2" -p71400 -S"'dec_ServiceChangeProfile'(${1:Bytes}, ${2:Param2}) $3" -p71401 -tp71402 -a(S"'dec_ServiceChangeReply'/2" -p71403 -S"'dec_ServiceChangeReply'(${1:Bytes}, ${2:Param2}) $3" -p71404 -tp71405 -a(S"'dec_ServiceChangeRequest'/2" -p71406 -S"'dec_ServiceChangeRequest'(${1:Bytes}, ${2:Param2}) $3" -p71407 -tp71408 -a(S"'dec_ServiceChangeResParm'/2" -p71409 -S"'dec_ServiceChangeResParm'(${1:Bytes}, ${2:Param2}) $3" -p71410 -tp71411 -a(S"'dec_ServiceChangeResult'/2" -p71412 -S"'dec_ServiceChangeResult'(${1:Bytes}, ${2:Param2}) $3" -p71413 -tp71414 -a(S"'dec_ServiceState'/2" -p71415 -S"'dec_ServiceState'(${1:Bytes}, ${2:Param2}) $3" -p71416 -tp71417 -a(S"'dec_SigParameter'/2" -p71418 -S"'dec_SigParameter'(${1:Bytes}, ${2:Param2}) $3" -p71419 -tp71420 -a(S"'dec_Signal'/2" -p71421 -S"'dec_Signal'(${1:Bytes}, ${2:Param2}) $3" -p71422 -tp71423 -a(S"'dec_SignalDirection'/2" -p71424 -S"'dec_SignalDirection'(${1:Bytes}, ${2:Param2}) $3" -p71425 -tp71426 -a(S"'dec_SignalName'/2" -p71427 -S"'dec_SignalName'(${1:Bytes}, ${2:Param2}) $3" -p71428 -tp71429 -a(S"'dec_SignalRequest'/2" -p71430 -S"'dec_SignalRequest'(${1:Bytes}, ${2:Param2}) $3" -p71431 -tp71432 -a(S"'dec_SignalType'/2" -p71433 -S"'dec_SignalType'(${1:Bytes}, ${2:Param2}) $3" -p71434 -tp71435 -a(S"'dec_SignalsDescriptor'/2" -p71436 -S"'dec_SignalsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p71437 -tp71438 -a(S"'dec_StatisticsDescriptor'/2" -p71439 -S"'dec_StatisticsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p71440 -tp71441 -a(S"'dec_StatisticsParameter'/2" -p71442 -S"'dec_StatisticsParameter'(${1:Bytes}, ${2:Param2}) $3" -p71443 -tp71444 -a(S"'dec_StreamDescriptor'/2" -p71445 -S"'dec_StreamDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p71446 -tp71447 -a(S"'dec_StreamID'/2" -p71448 -S"'dec_StreamID'(${1:Bytes}, ${2:Param2}) $3" -p71449 -tp71450 -a(S"'dec_StreamMode'/2" -p71451 -S"'dec_StreamMode'(${1:Bytes}, ${2:Param2}) $3" -p71452 -tp71453 -a(S"'dec_StreamParms'/2" -p71454 -S"'dec_StreamParms'(${1:Bytes}, ${2:Param2}) $3" -p71455 -tp71456 -a(S"'dec_SubtractRequest'/2" -p71457 -S"'dec_SubtractRequest'(${1:Bytes}, ${2:Param2}) $3" -p71458 -tp71459 -a(S"'dec_TerminationAudit'/2" -p71460 -S"'dec_TerminationAudit'(${1:Bytes}, ${2:Param2}) $3" -p71461 -tp71462 -a(S"'dec_TerminationID'/2" -p71463 -S"'dec_TerminationID'(${1:Bytes}, ${2:Param2}) $3" -p71464 -tp71465 -a(S"'dec_TerminationIDList'/2" -p71466 -S"'dec_TerminationIDList'(${1:Bytes}, ${2:Param2}) $3" -p71467 -tp71468 -a(S"'dec_TerminationStateDescriptor'/2" -p71469 -S"'dec_TerminationStateDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p71470 -tp71471 -a(S"'dec_TimeNotation'/2" -p71472 -S"'dec_TimeNotation'(${1:Bytes}, ${2:Param2}) $3" -p71473 -tp71474 -a(S"'dec_TopologyRequest'/2" -p71475 -S"'dec_TopologyRequest'(${1:Bytes}, ${2:Param2}) $3" -p71476 -tp71477 -a(S"'dec_Transaction'/2" -p71478 -S"'dec_Transaction'(${1:Bytes}, ${2:Param2}) $3" -p71479 -tp71480 -a(S"'dec_TransactionAck'/2" -p71481 -S"'dec_TransactionAck'(${1:Bytes}, ${2:Param2}) $3" -p71482 -tp71483 -a(S"'dec_TransactionId'/2" -p71484 -S"'dec_TransactionId'(${1:Bytes}, ${2:Param2}) $3" -p71485 -tp71486 -a(S"'dec_TransactionPending'/2" -p71487 -S"'dec_TransactionPending'(${1:Bytes}, ${2:Param2}) $3" -p71488 -tp71489 -a(S"'dec_TransactionReply'/2" -p71490 -S"'dec_TransactionReply'(${1:Bytes}, ${2:Param2}) $3" -p71491 -tp71492 -a(S"'dec_TransactionRequest'/2" -p71493 -S"'dec_TransactionRequest'(${1:Bytes}, ${2:Param2}) $3" -p71494 -tp71495 -a(S"'dec_TransactionResponseAck'/2" -p71496 -S"'dec_TransactionResponseAck'(${1:Bytes}, ${2:Param2}) $3" -p71497 -tp71498 -a(S"'dec_Value'/2" -p71499 -S"'dec_Value'(${1:Bytes}, ${2:Param2}) $3" -p71500 -tp71501 -a(S"'dec_WildcardField'/2" -p71502 -S"'dec_WildcardField'(${1:Bytes}, ${2:Param2}) $3" -p71503 -tp71504 -a(S"'enc_ActionReply'/1" -p71505 -S"'enc_ActionReply'(${1:Val}) $2" -p71506 -tp71507 -a(S"'enc_ActionRequest'/1" -p71508 -S"'enc_ActionRequest'(${1:Val}) $2" -p71509 -tp71510 -a(S"'enc_AmmDescriptor'/1" -p71511 -S"'enc_AmmDescriptor'(${1:Val}) $2" -p71512 -tp71513 -a(S"'enc_AmmRequest'/1" -p71514 -S"'enc_AmmRequest'(${1:Val}) $2" -p71515 -tp71516 -a(S"'enc_AmmsReply'/1" -p71517 -S"'enc_AmmsReply'(${1:Val}) $2" -p71518 -tp71519 -a(S"'enc_AuditDescriptor'/1" -p71520 -S"'enc_AuditDescriptor'(${1:Val}) $2" -p71521 -tp71522 -a(S"'enc_AuditReply'/1" -p71523 -S"'enc_AuditReply'(${1:Val}) $2" -p71524 -tp71525 -a(S"'enc_AuditRequest'/1" -p71526 -S"'enc_AuditRequest'(${1:Val}) $2" -p71527 -tp71528 -a(S"'enc_AuditResult'/1" -p71529 -S"'enc_AuditResult'(${1:Val}) $2" -p71530 -tp71531 -a(S"'enc_AuditReturnParameter'/1" -p71532 -S"'enc_AuditReturnParameter'(${1:Val}) $2" -p71533 -tp71534 -a(S"'enc_AuthData'/1" -p71535 -S"'enc_AuthData'(${1:Val}) $2" -p71536 -tp71537 -a(S"'enc_AuthenticationHeader'/1" -p71538 -S"'enc_AuthenticationHeader'(${1:Val}) $2" -p71539 -tp71540 -a(S"'enc_Command'/1" -p71541 -S"'enc_Command'(${1:Val}) $2" -p71542 -tp71543 -a(S"'enc_CommandReply'/1" -p71544 -S"'enc_CommandReply'(${1:Val}) $2" -p71545 -tp71546 -a(S"'enc_CommandRequest'/1" -p71547 -S"'enc_CommandRequest'(${1:Val}) $2" -p71548 -tp71549 -a(S"'enc_ContextAttrAuditRequest'/1" -p71550 -S"'enc_ContextAttrAuditRequest'(${1:Val}) $2" -p71551 -tp71552 -a(S"'enc_ContextID'/1" -p71553 -S"'enc_ContextID'(${1:Val}) $2" -p71554 -tp71555 -a(S"'enc_ContextRequest'/1" -p71556 -S"'enc_ContextRequest'(${1:Val}) $2" -p71557 -tp71558 -a(S"'enc_DigitMapDescriptor'/1" -p71559 -S"'enc_DigitMapDescriptor'(${1:Val}) $2" -p71560 -tp71561 -a(S"'enc_DigitMapName'/1" -p71562 -S"'enc_DigitMapName'(${1:Val}) $2" -p71563 -tp71564 -a(S"'enc_DigitMapValue'/1" -p71565 -S"'enc_DigitMapValue'(${1:Val}) $2" -p71566 -tp71567 -a(S"'enc_DomainName'/1" -p71568 -S"'enc_DomainName'(${1:Val}) $2" -p71569 -tp71570 -a(S"'enc_ErrorCode'/1" -p71571 -S"'enc_ErrorCode'(${1:Val}) $2" -p71572 -tp71573 -a(S"'enc_ErrorDescriptor'/1" -p71574 -S"'enc_ErrorDescriptor'(${1:Val}) $2" -p71575 -tp71576 -a(S"'enc_ErrorText'/1" -p71577 -S"'enc_ErrorText'(${1:Val}) $2" -p71578 -tp71579 -a(S"'enc_EventBufferControl'/1" -p71580 -S"'enc_EventBufferControl'(${1:Val}) $2" -p71581 -tp71582 -a(S"'enc_EventBufferDescriptor'/1" -p71583 -S"'enc_EventBufferDescriptor'(${1:Val}) $2" -p71584 -tp71585 -a(S"'enc_EventDM'/1" -p71586 -S"'enc_EventDM'(${1:Val}) $2" -p71587 -tp71588 -a(S"'enc_EventName'/1" -p71589 -S"'enc_EventName'(${1:Val}) $2" -p71590 -tp71591 -a(S"'enc_EventParameter'/1" -p71592 -S"'enc_EventParameter'(${1:Val}) $2" -p71593 -tp71594 -a(S"'enc_EventSpec'/1" -p71595 -S"'enc_EventSpec'(${1:Val}) $2" -p71596 -tp71597 -a(S"'enc_EventsDescriptor'/1" -p71598 -S"'enc_EventsDescriptor'(${1:Val}) $2" -p71599 -tp71600 -a(S"'enc_H221NonStandard'/1" -p71601 -S"'enc_H221NonStandard'(${1:Val}) $2" -p71602 -tp71603 -a(S"'enc_IP4Address'/1" -p71604 -S"'enc_IP4Address'(${1:Val}) $2" -p71605 -tp71606 -a(S"'enc_IP6Address'/1" -p71607 -S"'enc_IP6Address'(${1:Val}) $2" -p71608 -tp71609 -a(S"'enc_IndAudDigitMapDescriptor'/1" -p71610 -S"'enc_IndAudDigitMapDescriptor'(${1:Val}) $2" -p71611 -tp71612 -a(S"'enc_IndAudEventBufferDescriptor'/1" -p71613 -S"'enc_IndAudEventBufferDescriptor'(${1:Val}) $2" -p71614 -tp71615 -a(S"'enc_IndAudEventsDescriptor'/1" -p71616 -S"'enc_IndAudEventsDescriptor'(${1:Val}) $2" -p71617 -tp71618 -a(S"'enc_IndAudLocalControlDescriptor'/1" -p71619 -S"'enc_IndAudLocalControlDescriptor'(${1:Val}) $2" -p71620 -tp71621 -a(S"'enc_IndAudLocalRemoteDescriptor'/1" -p71622 -S"'enc_IndAudLocalRemoteDescriptor'(${1:Val}) $2" -p71623 -tp71624 -a(S"'enc_IndAudMediaDescriptor'/1" -p71625 -S"'enc_IndAudMediaDescriptor'(${1:Val}) $2" -p71626 -tp71627 -a(S"'enc_IndAudPackagesDescriptor'/1" -p71628 -S"'enc_IndAudPackagesDescriptor'(${1:Val}) $2" -p71629 -tp71630 -a(S"'enc_IndAudPropertyGroup'/1" -p71631 -S"'enc_IndAudPropertyGroup'(${1:Val}) $2" -p71632 -tp71633 -a(S"'enc_IndAudPropertyParm'/1" -p71634 -S"'enc_IndAudPropertyParm'(${1:Val}) $2" -p71635 -tp71636 -a(S"'enc_IndAudSeqSigList'/1" -p71637 -S"'enc_IndAudSeqSigList'(${1:Val}) $2" -p71638 -tp71639 -a(S"'enc_IndAudSignal'/1" -p71640 -S"'enc_IndAudSignal'(${1:Val}) $2" -p71641 -tp71642 -a(S"'enc_IndAudSignalsDescriptor'/1" -p71643 -S"'enc_IndAudSignalsDescriptor'(${1:Val}) $2" -p71644 -tp71645 -a(S"'enc_IndAudStatisticsDescriptor'/1" -p71646 -S"'enc_IndAudStatisticsDescriptor'(${1:Val}) $2" -p71647 -tp71648 -a(S"'enc_IndAudStreamDescriptor'/1" -p71649 -S"'enc_IndAudStreamDescriptor'(${1:Val}) $2" -p71650 -tp71651 -a(S"'enc_IndAudStreamParms'/1" -p71652 -S"'enc_IndAudStreamParms'(${1:Val}) $2" -p71653 -tp71654 -a(S"'enc_IndAudTerminationStateDescriptor'/1" -p71655 -S"'enc_IndAudTerminationStateDescriptor'(${1:Val}) $2" -p71656 -tp71657 -a(S"'enc_IndAuditParameter'/1" -p71658 -S"'enc_IndAuditParameter'(${1:Val}) $2" -p71659 -tp71660 -a(S"'enc_LocalControlDescriptor'/1" -p71661 -S"'enc_LocalControlDescriptor'(${1:Val}) $2" -p71662 -tp71663 -a(S"'enc_LocalRemoteDescriptor'/1" -p71664 -S"'enc_LocalRemoteDescriptor'(${1:Val}) $2" -p71665 -tp71666 -a(S"'enc_MId'/1" -p71667 -S"'enc_MId'(${1:Val}) $2" -p71668 -tp71669 -a(S"'enc_MediaDescriptor'/1" -p71670 -S"'enc_MediaDescriptor'(${1:Val}) $2" -p71671 -tp71672 -a(S"'enc_MegacoMessage'/1" -p71673 -S"'enc_MegacoMessage'(${1:Val}) $2" -p71674 -tp71675 -a(S"'enc_Message'/1" -p71676 -S"'enc_Message'(${1:Val}) $2" -p71677 -tp71678 -a(S"'enc_ModemDescriptor'/1" -p71679 -S"'enc_ModemDescriptor'(${1:Val}) $2" -p71680 -tp71681 -a(S"'enc_ModemType'/1" -p71682 -S"'enc_ModemType'(${1:Val}) $2" -p71683 -tp71684 -a(S"'enc_MuxDescriptor'/1" -p71685 -S"'enc_MuxDescriptor'(${1:Val}) $2" -p71686 -tp71687 -a(S"'enc_MuxType'/1" -p71688 -S"'enc_MuxType'(${1:Val}) $2" -p71689 -tp71690 -a(S"'enc_Name'/1" -p71691 -S"'enc_Name'(${1:Val}) $2" -p71692 -tp71693 -a(S"'enc_NonStandardData'/1" -p71694 -S"'enc_NonStandardData'(${1:Val}) $2" -p71695 -tp71696 -a(S"'enc_NonStandardIdentifier'/1" -p71697 -S"'enc_NonStandardIdentifier'(${1:Val}) $2" -p71698 -tp71699 -a(S"'enc_NotifyCompletion'/1" -p71700 -S"'enc_NotifyCompletion'(${1:Val}) $2" -p71701 -tp71702 -a(S"'enc_NotifyReply'/1" -p71703 -S"'enc_NotifyReply'(${1:Val}) $2" -p71704 -tp71705 -a(S"'enc_NotifyRequest'/1" -p71706 -S"'enc_NotifyRequest'(${1:Val}) $2" -p71707 -tp71708 -a(S"'enc_ObservedEvent'/1" -p71709 -S"'enc_ObservedEvent'(${1:Val}) $2" -p71710 -tp71711 -a(S"'enc_ObservedEventsDescriptor'/1" -p71712 -S"'enc_ObservedEventsDescriptor'(${1:Val}) $2" -p71713 -tp71714 -a(S"'enc_PackagesDescriptor'/1" -p71715 -S"'enc_PackagesDescriptor'(${1:Val}) $2" -p71716 -tp71717 -a(S"'enc_PackagesItem'/1" -p71718 -S"'enc_PackagesItem'(${1:Val}) $2" -p71719 -tp71720 -a(S"'enc_PathName'/1" -p71721 -S"'enc_PathName'(${1:Val}) $2" -p71722 -tp71723 -a(S"'enc_PkgdName'/1" -p71724 -S"'enc_PkgdName'(${1:Val}) $2" -p71725 -tp71726 -a(S"'enc_PropertyGroup'/1" -p71727 -S"'enc_PropertyGroup'(${1:Val}) $2" -p71728 -tp71729 -a(S"'enc_PropertyParm'/1" -p71730 -S"'enc_PropertyParm'(${1:Val}) $2" -p71731 -tp71732 -a(S"'enc_Relation'/1" -p71733 -S"'enc_Relation'(${1:Val}) $2" -p71734 -tp71735 -a(S"'enc_RequestID'/1" -p71736 -S"'enc_RequestID'(${1:Val}) $2" -p71737 -tp71738 -a(S"'enc_RequestedActions'/1" -p71739 -S"'enc_RequestedActions'(${1:Val}) $2" -p71740 -tp71741 -a(S"'enc_RequestedEvent'/1" -p71742 -S"'enc_RequestedEvent'(${1:Val}) $2" -p71743 -tp71744 -a(S"'enc_SecondEventsDescriptor'/1" -p71745 -S"'enc_SecondEventsDescriptor'(${1:Val}) $2" -p71746 -tp71747 -a(S"'enc_SecondRequestedActions'/1" -p71748 -S"'enc_SecondRequestedActions'(${1:Val}) $2" -p71749 -tp71750 -a(S"'enc_SecondRequestedEvent'/1" -p71751 -S"'enc_SecondRequestedEvent'(${1:Val}) $2" -p71752 -tp71753 -a(S"'enc_SecurityParmIndex'/1" -p71754 -S"'enc_SecurityParmIndex'(${1:Val}) $2" -p71755 -tp71756 -a(S"'enc_SegmentNumber'/1" -p71757 -S"'enc_SegmentNumber'(${1:Val}) $2" -p71758 -tp71759 -a(S"'enc_SeqSigList'/1" -p71760 -S"'enc_SeqSigList'(${1:Val}) $2" -p71761 -tp71762 -a(S"'enc_SequenceNum'/1" -p71763 -S"'enc_SequenceNum'(${1:Val}) $2" -p71764 -tp71765 -a(S"'enc_ServiceChangeAddress'/1" -p71766 -S"'enc_ServiceChangeAddress'(${1:Val}) $2" -p71767 -tp71768 -a(S"'enc_ServiceChangeMethod'/1" -p71769 -S"'enc_ServiceChangeMethod'(${1:Val}) $2" -p71770 -tp71771 -a(S"'enc_ServiceChangeParm'/1" -p71772 -S"'enc_ServiceChangeParm'(${1:Val}) $2" -p71773 -tp71774 -a(S"'enc_ServiceChangeProfile'/1" -p71775 -S"'enc_ServiceChangeProfile'(${1:Val}) $2" -p71776 -tp71777 -a(S"'enc_ServiceChangeReply'/1" -p71778 -S"'enc_ServiceChangeReply'(${1:Val}) $2" -p71779 -tp71780 -a(S"'enc_ServiceChangeRequest'/1" -p71781 -S"'enc_ServiceChangeRequest'(${1:Val}) $2" -p71782 -tp71783 -a(S"'enc_ServiceChangeResParm'/1" -p71784 -S"'enc_ServiceChangeResParm'(${1:Val}) $2" -p71785 -tp71786 -a(S"'enc_ServiceChangeResult'/1" -p71787 -S"'enc_ServiceChangeResult'(${1:Val}) $2" -p71788 -tp71789 -a(S"'enc_ServiceState'/1" -p71790 -S"'enc_ServiceState'(${1:Val}) $2" -p71791 -tp71792 -a(S"'enc_SigParameter'/1" -p71793 -S"'enc_SigParameter'(${1:Val}) $2" -p71794 -tp71795 -a(S"'enc_Signal'/1" -p71796 -S"'enc_Signal'(${1:Val}) $2" -p71797 -tp71798 -a(S"'enc_SignalDirection'/1" -p71799 -S"'enc_SignalDirection'(${1:Val}) $2" -p71800 -tp71801 -a(S"'enc_SignalName'/1" -p71802 -S"'enc_SignalName'(${1:Val}) $2" -p71803 -tp71804 -a(S"'enc_SignalRequest'/1" -p71805 -S"'enc_SignalRequest'(${1:Val}) $2" -p71806 -tp71807 -a(S"'enc_SignalType'/1" -p71808 -S"'enc_SignalType'(${1:Val}) $2" -p71809 -tp71810 -a(S"'enc_SignalsDescriptor'/1" -p71811 -S"'enc_SignalsDescriptor'(${1:Val}) $2" -p71812 -tp71813 -a(S"'enc_StatisticsDescriptor'/1" -p71814 -S"'enc_StatisticsDescriptor'(${1:Val}) $2" -p71815 -tp71816 -a(S"'enc_StatisticsParameter'/1" -p71817 -S"'enc_StatisticsParameter'(${1:Val}) $2" -p71818 -tp71819 -a(S"'enc_StreamDescriptor'/1" -p71820 -S"'enc_StreamDescriptor'(${1:Val}) $2" -p71821 -tp71822 -a(S"'enc_StreamID'/1" -p71823 -S"'enc_StreamID'(${1:Val}) $2" -p71824 -tp71825 -a(S"'enc_StreamMode'/1" -p71826 -S"'enc_StreamMode'(${1:Val}) $2" -p71827 -tp71828 -a(S"'enc_StreamParms'/1" -p71829 -S"'enc_StreamParms'(${1:Val}) $2" -p71830 -tp71831 -a(S"'enc_SubtractRequest'/1" -p71832 -S"'enc_SubtractRequest'(${1:Val}) $2" -p71833 -tp71834 -a(S"'enc_TerminationAudit'/1" -p71835 -S"'enc_TerminationAudit'(${1:Val}) $2" -p71836 -tp71837 -a(S"'enc_TerminationID'/1" -p71838 -S"'enc_TerminationID'(${1:Val}) $2" -p71839 -tp71840 -a(S"'enc_TerminationIDList'/1" -p71841 -S"'enc_TerminationIDList'(${1:Val}) $2" -p71842 -tp71843 -a(S"'enc_TerminationStateDescriptor'/1" -p71844 -S"'enc_TerminationStateDescriptor'(${1:Val}) $2" -p71845 -tp71846 -a(S"'enc_TimeNotation'/1" -p71847 -S"'enc_TimeNotation'(${1:Val}) $2" -p71848 -tp71849 -a(S"'enc_TopologyRequest'/1" -p71850 -S"'enc_TopologyRequest'(${1:Val}) $2" -p71851 -tp71852 -a(S"'enc_Transaction'/1" -p71853 -S"'enc_Transaction'(${1:Val}) $2" -p71854 -tp71855 -a(S"'enc_TransactionAck'/1" -p71856 -S"'enc_TransactionAck'(${1:Val}) $2" -p71857 -tp71858 -a(S"'enc_TransactionId'/1" -p71859 -S"'enc_TransactionId'(${1:Val}) $2" -p71860 -tp71861 -a(S"'enc_TransactionPending'/1" -p71862 -S"'enc_TransactionPending'(${1:Val}) $2" -p71863 -tp71864 -a(S"'enc_TransactionReply'/1" -p71865 -S"'enc_TransactionReply'(${1:Val}) $2" -p71866 -tp71867 -a(S"'enc_TransactionRequest'/1" -p71868 -S"'enc_TransactionRequest'(${1:Val}) $2" -p71869 -tp71870 -a(S"'enc_TransactionResponseAck'/1" -p71871 -S"'enc_TransactionResponseAck'(${1:Val}) $2" -p71872 -tp71873 -a(S"'enc_Value'/1" -p71874 -S"'enc_Value'(${1:Val}) $2" -p71875 -tp71876 -a(S"'enc_WildcardField'/1" -p71877 -S"'enc_WildcardField'(${1:Val}) $2" -p71878 -tp71879 -a(S'decode/2' -p71880 -S'decode(${1:Type}, ${2:Data}) $3' -p71881 -tp71882 -a(S'decode_disp/2' -p71883 -S'decode_disp(${1:Type}, ${2:Data}) $3' -p71884 -tp71885 -a(S'encode/2' -p71886 -S'encode(${1:Type}, ${2:Data}) $3' -p71887 -tp71888 -a(S'encode_disp/2' -p71889 -S'encode_disp(${1:Type}, ${2:Data}) $3' -p71890 -tp71891 -a(S'encoding_rule/0' -p71892 -S'encoding_rule() $1' -p71893 -tp71894 -a(S'info/0' -p71895 -S'info() $1' -p71896 -tp71897 -asS'megaco_per_media_gateway_control_prev3c' -p71898 -(lp71899 -(S"'dec_ActionReply'/2" -p71900 -S"'dec_ActionReply'(${1:Bytes}, ${2:Param2}) $3" -p71901 -tp71902 -a(S"'dec_ActionRequest'/2" -p71903 -S"'dec_ActionRequest'(${1:Bytes}, ${2:Param2}) $3" -p71904 -tp71905 -a(S"'dec_AmmDescriptor'/2" -p71906 -S"'dec_AmmDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p71907 -tp71908 -a(S"'dec_AmmRequest'/2" -p71909 -S"'dec_AmmRequest'(${1:Bytes}, ${2:Param2}) $3" -p71910 -tp71911 -a(S"'dec_AmmsReply'/2" -p71912 -S"'dec_AmmsReply'(${1:Bytes}, ${2:Param2}) $3" -p71913 -tp71914 -a(S"'dec_AuditDescriptor'/2" -p71915 -S"'dec_AuditDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p71916 -tp71917 -a(S"'dec_AuditReply'/2" -p71918 -S"'dec_AuditReply'(${1:Bytes}, ${2:Param2}) $3" -p71919 -tp71920 -a(S"'dec_AuditRequest'/2" -p71921 -S"'dec_AuditRequest'(${1:Bytes}, ${2:Param2}) $3" -p71922 -tp71923 -a(S"'dec_AuditResult'/2" -p71924 -S"'dec_AuditResult'(${1:Bytes}, ${2:Param2}) $3" -p71925 -tp71926 -a(S"'dec_AuditReturnParameter'/2" -p71927 -S"'dec_AuditReturnParameter'(${1:Bytes}, ${2:Param2}) $3" -p71928 -tp71929 -a(S"'dec_AuthData'/2" -p71930 -S"'dec_AuthData'(${1:Bytes}, ${2:Param2}) $3" -p71931 -tp71932 -a(S"'dec_AuthenticationHeader'/2" -p71933 -S"'dec_AuthenticationHeader'(${1:Bytes}, ${2:Param2}) $3" -p71934 -tp71935 -a(S"'dec_Command'/2" -p71936 -S"'dec_Command'(${1:Bytes}, ${2:Param2}) $3" -p71937 -tp71938 -a(S"'dec_CommandReply'/2" -p71939 -S"'dec_CommandReply'(${1:Bytes}, ${2:Param2}) $3" -p71940 -tp71941 -a(S"'dec_CommandRequest'/2" -p71942 -S"'dec_CommandRequest'(${1:Bytes}, ${2:Param2}) $3" -p71943 -tp71944 -a(S"'dec_ContextAttrAuditRequest'/2" -p71945 -S"'dec_ContextAttrAuditRequest'(${1:Bytes}, ${2:Param2}) $3" -p71946 -tp71947 -a(S"'dec_ContextID'/2" -p71948 -S"'dec_ContextID'(${1:Bytes}, ${2:Param2}) $3" -p71949 -tp71950 -a(S"'dec_ContextRequest'/2" -p71951 -S"'dec_ContextRequest'(${1:Bytes}, ${2:Param2}) $3" -p71952 -tp71953 -a(S"'dec_DigitMapDescriptor'/2" -p71954 -S"'dec_DigitMapDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p71955 -tp71956 -a(S"'dec_DigitMapName'/2" -p71957 -S"'dec_DigitMapName'(${1:Bytes}, ${2:Param2}) $3" -p71958 -tp71959 -a(S"'dec_DigitMapValue'/2" -p71960 -S"'dec_DigitMapValue'(${1:Bytes}, ${2:Param2}) $3" -p71961 -tp71962 -a(S"'dec_DomainName'/2" -p71963 -S"'dec_DomainName'(${1:Bytes}, ${2:Param2}) $3" -p71964 -tp71965 -a(S"'dec_ErrorCode'/2" -p71966 -S"'dec_ErrorCode'(${1:Bytes}, ${2:Param2}) $3" -p71967 -tp71968 -a(S"'dec_ErrorDescriptor'/2" -p71969 -S"'dec_ErrorDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p71970 -tp71971 -a(S"'dec_ErrorText'/2" -p71972 -S"'dec_ErrorText'(${1:Bytes}, ${2:Param2}) $3" -p71973 -tp71974 -a(S"'dec_EventBufferControl'/2" -p71975 -S"'dec_EventBufferControl'(${1:Bytes}, ${2:Param2}) $3" -p71976 -tp71977 -a(S"'dec_EventBufferDescriptor'/2" -p71978 -S"'dec_EventBufferDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p71979 -tp71980 -a(S"'dec_EventDM'/2" -p71981 -S"'dec_EventDM'(${1:Bytes}, ${2:Param2}) $3" -p71982 -tp71983 -a(S"'dec_EventName'/2" -p71984 -S"'dec_EventName'(${1:Bytes}, ${2:Param2}) $3" -p71985 -tp71986 -a(S"'dec_EventParameter'/2" -p71987 -S"'dec_EventParameter'(${1:Bytes}, ${2:Param2}) $3" -p71988 -tp71989 -a(S"'dec_EventSpec'/2" -p71990 -S"'dec_EventSpec'(${1:Bytes}, ${2:Param2}) $3" -p71991 -tp71992 -a(S"'dec_EventsDescriptor'/2" -p71993 -S"'dec_EventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p71994 -tp71995 -a(S"'dec_H221NonStandard'/2" -p71996 -S"'dec_H221NonStandard'(${1:Bytes}, ${2:Param2}) $3" -p71997 -tp71998 -a(S"'dec_IP4Address'/2" -p71999 -S"'dec_IP4Address'(${1:Bytes}, ${2:Param2}) $3" -p72000 -tp72001 -a(S"'dec_IP6Address'/2" -p72002 -S"'dec_IP6Address'(${1:Bytes}, ${2:Param2}) $3" -p72003 -tp72004 -a(S"'dec_IndAudDigitMapDescriptor'/2" -p72005 -S"'dec_IndAudDigitMapDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p72006 -tp72007 -a(S"'dec_IndAudEventBufferDescriptor'/2" -p72008 -S"'dec_IndAudEventBufferDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p72009 -tp72010 -a(S"'dec_IndAudEventsDescriptor'/2" -p72011 -S"'dec_IndAudEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p72012 -tp72013 -a(S"'dec_IndAudLocalControlDescriptor'/2" -p72014 -S"'dec_IndAudLocalControlDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p72015 -tp72016 -a(S"'dec_IndAudLocalRemoteDescriptor'/2" -p72017 -S"'dec_IndAudLocalRemoteDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p72018 -tp72019 -a(S"'dec_IndAudMediaDescriptor'/2" -p72020 -S"'dec_IndAudMediaDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p72021 -tp72022 -a(S"'dec_IndAudPackagesDescriptor'/2" -p72023 -S"'dec_IndAudPackagesDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p72024 -tp72025 -a(S"'dec_IndAudPropertyGroup'/2" -p72026 -S"'dec_IndAudPropertyGroup'(${1:Bytes}, ${2:Param2}) $3" -p72027 -tp72028 -a(S"'dec_IndAudPropertyParm'/2" -p72029 -S"'dec_IndAudPropertyParm'(${1:Bytes}, ${2:Param2}) $3" -p72030 -tp72031 -a(S"'dec_IndAudSeqSigList'/2" -p72032 -S"'dec_IndAudSeqSigList'(${1:Bytes}, ${2:Param2}) $3" -p72033 -tp72034 -a(S"'dec_IndAudSignal'/2" -p72035 -S"'dec_IndAudSignal'(${1:Bytes}, ${2:Param2}) $3" -p72036 -tp72037 -a(S"'dec_IndAudSignalsDescriptor'/2" -p72038 -S"'dec_IndAudSignalsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p72039 -tp72040 -a(S"'dec_IndAudStatisticsDescriptor'/2" -p72041 -S"'dec_IndAudStatisticsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p72042 -tp72043 -a(S"'dec_IndAudStreamDescriptor'/2" -p72044 -S"'dec_IndAudStreamDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p72045 -tp72046 -a(S"'dec_IndAudStreamParms'/2" -p72047 -S"'dec_IndAudStreamParms'(${1:Bytes}, ${2:Param2}) $3" -p72048 -tp72049 -a(S"'dec_IndAudTerminationStateDescriptor'/2" -p72050 -S"'dec_IndAudTerminationStateDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p72051 -tp72052 -a(S"'dec_IndAuditParameter'/2" -p72053 -S"'dec_IndAuditParameter'(${1:Bytes}, ${2:Param2}) $3" -p72054 -tp72055 -a(S"'dec_LocalControlDescriptor'/2" -p72056 -S"'dec_LocalControlDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p72057 -tp72058 -a(S"'dec_LocalRemoteDescriptor'/2" -p72059 -S"'dec_LocalRemoteDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p72060 -tp72061 -a(S"'dec_MId'/2" -p72062 -S"'dec_MId'(${1:Bytes}, ${2:Param2}) $3" -p72063 -tp72064 -a(S"'dec_MediaDescriptor'/2" -p72065 -S"'dec_MediaDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p72066 -tp72067 -a(S"'dec_MegacoMessage'/2" -p72068 -S"'dec_MegacoMessage'(${1:Bytes}, ${2:Param2}) $3" -p72069 -tp72070 -a(S"'dec_Message'/2" -p72071 -S"'dec_Message'(${1:Bytes}, ${2:Param2}) $3" -p72072 -tp72073 -a(S"'dec_ModemDescriptor'/2" -p72074 -S"'dec_ModemDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p72075 -tp72076 -a(S"'dec_ModemType'/2" -p72077 -S"'dec_ModemType'(${1:Bytes}, ${2:Param2}) $3" -p72078 -tp72079 -a(S"'dec_MuxDescriptor'/2" -p72080 -S"'dec_MuxDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p72081 -tp72082 -a(S"'dec_MuxType'/2" -p72083 -S"'dec_MuxType'(${1:Bytes}, ${2:Param2}) $3" -p72084 -tp72085 -a(S"'dec_Name'/2" -p72086 -S"'dec_Name'(${1:Bytes}, ${2:Param2}) $3" -p72087 -tp72088 -a(S"'dec_NonStandardData'/2" -p72089 -S"'dec_NonStandardData'(${1:Bytes}, ${2:Param2}) $3" -p72090 -tp72091 -a(S"'dec_NonStandardIdentifier'/2" -p72092 -S"'dec_NonStandardIdentifier'(${1:Bytes}, ${2:Param2}) $3" -p72093 -tp72094 -a(S"'dec_NotifyBehaviour'/2" -p72095 -S"'dec_NotifyBehaviour'(${1:Bytes}, ${2:Param2}) $3" -p72096 -tp72097 -a(S"'dec_NotifyCompletion'/2" -p72098 -S"'dec_NotifyCompletion'(${1:Bytes}, ${2:Param2}) $3" -p72099 -tp72100 -a(S"'dec_NotifyReply'/2" -p72101 -S"'dec_NotifyReply'(${1:Bytes}, ${2:Param2}) $3" -p72102 -tp72103 -a(S"'dec_NotifyRequest'/2" -p72104 -S"'dec_NotifyRequest'(${1:Bytes}, ${2:Param2}) $3" -p72105 -tp72106 -a(S"'dec_ObservedEvent'/2" -p72107 -S"'dec_ObservedEvent'(${1:Bytes}, ${2:Param2}) $3" -p72108 -tp72109 -a(S"'dec_ObservedEventsDescriptor'/2" -p72110 -S"'dec_ObservedEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p72111 -tp72112 -a(S"'dec_PackagesDescriptor'/2" -p72113 -S"'dec_PackagesDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p72114 -tp72115 -a(S"'dec_PackagesItem'/2" -p72116 -S"'dec_PackagesItem'(${1:Bytes}, ${2:Param2}) $3" -p72117 -tp72118 -a(S"'dec_PathName'/2" -p72119 -S"'dec_PathName'(${1:Bytes}, ${2:Param2}) $3" -p72120 -tp72121 -a(S"'dec_PkgdName'/2" -p72122 -S"'dec_PkgdName'(${1:Bytes}, ${2:Param2}) $3" -p72123 -tp72124 -a(S"'dec_PropertyGroup'/2" -p72125 -S"'dec_PropertyGroup'(${1:Bytes}, ${2:Param2}) $3" -p72126 -tp72127 -a(S"'dec_PropertyParm'/2" -p72128 -S"'dec_PropertyParm'(${1:Bytes}, ${2:Param2}) $3" -p72129 -tp72130 -a(S"'dec_RegulatedEmbeddedDescriptor'/2" -p72131 -S"'dec_RegulatedEmbeddedDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p72132 -tp72133 -a(S"'dec_Relation'/2" -p72134 -S"'dec_Relation'(${1:Bytes}, ${2:Param2}) $3" -p72135 -tp72136 -a(S"'dec_RequestID'/2" -p72137 -S"'dec_RequestID'(${1:Bytes}, ${2:Param2}) $3" -p72138 -tp72139 -a(S"'dec_RequestedActions'/2" -p72140 -S"'dec_RequestedActions'(${1:Bytes}, ${2:Param2}) $3" -p72141 -tp72142 -a(S"'dec_RequestedEvent'/2" -p72143 -S"'dec_RequestedEvent'(${1:Bytes}, ${2:Param2}) $3" -p72144 -tp72145 -a(S"'dec_SecondEventsDescriptor'/2" -p72146 -S"'dec_SecondEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p72147 -tp72148 -a(S"'dec_SecondRequestedActions'/2" -p72149 -S"'dec_SecondRequestedActions'(${1:Bytes}, ${2:Param2}) $3" -p72150 -tp72151 -a(S"'dec_SecondRequestedEvent'/2" -p72152 -S"'dec_SecondRequestedEvent'(${1:Bytes}, ${2:Param2}) $3" -p72153 -tp72154 -a(S"'dec_SecurityParmIndex'/2" -p72155 -S"'dec_SecurityParmIndex'(${1:Bytes}, ${2:Param2}) $3" -p72156 -tp72157 -a(S"'dec_SegmentNumber'/2" -p72158 -S"'dec_SegmentNumber'(${1:Bytes}, ${2:Param2}) $3" -p72159 -tp72160 -a(S"'dec_SelectLogic'/2" -p72161 -S"'dec_SelectLogic'(${1:Bytes}, ${2:Param2}) $3" -p72162 -tp72163 -a(S"'dec_SeqSigList'/2" -p72164 -S"'dec_SeqSigList'(${1:Bytes}, ${2:Param2}) $3" -p72165 -tp72166 -a(S"'dec_SequenceNum'/2" -p72167 -S"'dec_SequenceNum'(${1:Bytes}, ${2:Param2}) $3" -p72168 -tp72169 -a(S"'dec_ServiceChangeAddress'/2" -p72170 -S"'dec_ServiceChangeAddress'(${1:Bytes}, ${2:Param2}) $3" -p72171 -tp72172 -a(S"'dec_ServiceChangeMethod'/2" -p72173 -S"'dec_ServiceChangeMethod'(${1:Bytes}, ${2:Param2}) $3" -p72174 -tp72175 -a(S"'dec_ServiceChangeParm'/2" -p72176 -S"'dec_ServiceChangeParm'(${1:Bytes}, ${2:Param2}) $3" -p72177 -tp72178 -a(S"'dec_ServiceChangeProfile'/2" -p72179 -S"'dec_ServiceChangeProfile'(${1:Bytes}, ${2:Param2}) $3" -p72180 -tp72181 -a(S"'dec_ServiceChangeReply'/2" -p72182 -S"'dec_ServiceChangeReply'(${1:Bytes}, ${2:Param2}) $3" -p72183 -tp72184 -a(S"'dec_ServiceChangeRequest'/2" -p72185 -S"'dec_ServiceChangeRequest'(${1:Bytes}, ${2:Param2}) $3" -p72186 -tp72187 -a(S"'dec_ServiceChangeResParm'/2" -p72188 -S"'dec_ServiceChangeResParm'(${1:Bytes}, ${2:Param2}) $3" -p72189 -tp72190 -a(S"'dec_ServiceChangeResult'/2" -p72191 -S"'dec_ServiceChangeResult'(${1:Bytes}, ${2:Param2}) $3" -p72192 -tp72193 -a(S"'dec_ServiceState'/2" -p72194 -S"'dec_ServiceState'(${1:Bytes}, ${2:Param2}) $3" -p72195 -tp72196 -a(S"'dec_SigParameter'/2" -p72197 -S"'dec_SigParameter'(${1:Bytes}, ${2:Param2}) $3" -p72198 -tp72199 -a(S"'dec_Signal'/2" -p72200 -S"'dec_Signal'(${1:Bytes}, ${2:Param2}) $3" -p72201 -tp72202 -a(S"'dec_SignalDirection'/2" -p72203 -S"'dec_SignalDirection'(${1:Bytes}, ${2:Param2}) $3" -p72204 -tp72205 -a(S"'dec_SignalName'/2" -p72206 -S"'dec_SignalName'(${1:Bytes}, ${2:Param2}) $3" -p72207 -tp72208 -a(S"'dec_SignalRequest'/2" -p72209 -S"'dec_SignalRequest'(${1:Bytes}, ${2:Param2}) $3" -p72210 -tp72211 -a(S"'dec_SignalType'/2" -p72212 -S"'dec_SignalType'(${1:Bytes}, ${2:Param2}) $3" -p72213 -tp72214 -a(S"'dec_SignalsDescriptor'/2" -p72215 -S"'dec_SignalsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p72216 -tp72217 -a(S"'dec_StatisticsDescriptor'/2" -p72218 -S"'dec_StatisticsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p72219 -tp72220 -a(S"'dec_StatisticsParameter'/2" -p72221 -S"'dec_StatisticsParameter'(${1:Bytes}, ${2:Param2}) $3" -p72222 -tp72223 -a(S"'dec_StreamDescriptor'/2" -p72224 -S"'dec_StreamDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p72225 -tp72226 -a(S"'dec_StreamID'/2" -p72227 -S"'dec_StreamID'(${1:Bytes}, ${2:Param2}) $3" -p72228 -tp72229 -a(S"'dec_StreamMode'/2" -p72230 -S"'dec_StreamMode'(${1:Bytes}, ${2:Param2}) $3" -p72231 -tp72232 -a(S"'dec_StreamParms'/2" -p72233 -S"'dec_StreamParms'(${1:Bytes}, ${2:Param2}) $3" -p72234 -tp72235 -a(S"'dec_SubtractRequest'/2" -p72236 -S"'dec_SubtractRequest'(${1:Bytes}, ${2:Param2}) $3" -p72237 -tp72238 -a(S"'dec_TermListAuditResult'/2" -p72239 -S"'dec_TermListAuditResult'(${1:Bytes}, ${2:Param2}) $3" -p72240 -tp72241 -a(S"'dec_TerminationAudit'/2" -p72242 -S"'dec_TerminationAudit'(${1:Bytes}, ${2:Param2}) $3" -p72243 -tp72244 -a(S"'dec_TerminationID'/2" -p72245 -S"'dec_TerminationID'(${1:Bytes}, ${2:Param2}) $3" -p72246 -tp72247 -a(S"'dec_TerminationIDList'/2" -p72248 -S"'dec_TerminationIDList'(${1:Bytes}, ${2:Param2}) $3" -p72249 -tp72250 -a(S"'dec_TerminationStateDescriptor'/2" -p72251 -S"'dec_TerminationStateDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p72252 -tp72253 -a(S"'dec_TimeNotation'/2" -p72254 -S"'dec_TimeNotation'(${1:Bytes}, ${2:Param2}) $3" -p72255 -tp72256 -a(S"'dec_TopologyRequest'/2" -p72257 -S"'dec_TopologyRequest'(${1:Bytes}, ${2:Param2}) $3" -p72258 -tp72259 -a(S"'dec_Transaction'/2" -p72260 -S"'dec_Transaction'(${1:Bytes}, ${2:Param2}) $3" -p72261 -tp72262 -a(S"'dec_TransactionAck'/2" -p72263 -S"'dec_TransactionAck'(${1:Bytes}, ${2:Param2}) $3" -p72264 -tp72265 -a(S"'dec_TransactionId'/2" -p72266 -S"'dec_TransactionId'(${1:Bytes}, ${2:Param2}) $3" -p72267 -tp72268 -a(S"'dec_TransactionPending'/2" -p72269 -S"'dec_TransactionPending'(${1:Bytes}, ${2:Param2}) $3" -p72270 -tp72271 -a(S"'dec_TransactionReply'/2" -p72272 -S"'dec_TransactionReply'(${1:Bytes}, ${2:Param2}) $3" -p72273 -tp72274 -a(S"'dec_TransactionRequest'/2" -p72275 -S"'dec_TransactionRequest'(${1:Bytes}, ${2:Param2}) $3" -p72276 -tp72277 -a(S"'dec_TransactionResponseAck'/2" -p72278 -S"'dec_TransactionResponseAck'(${1:Bytes}, ${2:Param2}) $3" -p72279 -tp72280 -a(S"'dec_Value'/2" -p72281 -S"'dec_Value'(${1:Bytes}, ${2:Param2}) $3" -p72282 -tp72283 -a(S"'dec_WildcardField'/2" -p72284 -S"'dec_WildcardField'(${1:Bytes}, ${2:Param2}) $3" -p72285 -tp72286 -a(S"'enc_ActionReply'/1" -p72287 -S"'enc_ActionReply'(${1:Val}) $2" -p72288 -tp72289 -a(S"'enc_ActionRequest'/1" -p72290 -S"'enc_ActionRequest'(${1:Val}) $2" -p72291 -tp72292 -a(S"'enc_AmmDescriptor'/1" -p72293 -S"'enc_AmmDescriptor'(${1:Val}) $2" -p72294 -tp72295 -a(S"'enc_AmmRequest'/1" -p72296 -S"'enc_AmmRequest'(${1:Val}) $2" -p72297 -tp72298 -a(S"'enc_AmmsReply'/1" -p72299 -S"'enc_AmmsReply'(${1:Val}) $2" -p72300 -tp72301 -a(S"'enc_AuditDescriptor'/1" -p72302 -S"'enc_AuditDescriptor'(${1:Val}) $2" -p72303 -tp72304 -a(S"'enc_AuditReply'/1" -p72305 -S"'enc_AuditReply'(${1:Val}) $2" -p72306 -tp72307 -a(S"'enc_AuditRequest'/1" -p72308 -S"'enc_AuditRequest'(${1:Val}) $2" -p72309 -tp72310 -a(S"'enc_AuditResult'/1" -p72311 -S"'enc_AuditResult'(${1:Val}) $2" -p72312 -tp72313 -a(S"'enc_AuditReturnParameter'/1" -p72314 -S"'enc_AuditReturnParameter'(${1:Val}) $2" -p72315 -tp72316 -a(S"'enc_AuthData'/1" -p72317 -S"'enc_AuthData'(${1:Val}) $2" -p72318 -tp72319 -a(S"'enc_AuthenticationHeader'/1" -p72320 -S"'enc_AuthenticationHeader'(${1:Val}) $2" -p72321 -tp72322 -a(S"'enc_Command'/1" -p72323 -S"'enc_Command'(${1:Val}) $2" -p72324 -tp72325 -a(S"'enc_CommandReply'/1" -p72326 -S"'enc_CommandReply'(${1:Val}) $2" -p72327 -tp72328 -a(S"'enc_CommandRequest'/1" -p72329 -S"'enc_CommandRequest'(${1:Val}) $2" -p72330 -tp72331 -a(S"'enc_ContextAttrAuditRequest'/1" -p72332 -S"'enc_ContextAttrAuditRequest'(${1:Val}) $2" -p72333 -tp72334 -a(S"'enc_ContextID'/1" -p72335 -S"'enc_ContextID'(${1:Val}) $2" -p72336 -tp72337 -a(S"'enc_ContextRequest'/1" -p72338 -S"'enc_ContextRequest'(${1:Val}) $2" -p72339 -tp72340 -a(S"'enc_DigitMapDescriptor'/1" -p72341 -S"'enc_DigitMapDescriptor'(${1:Val}) $2" -p72342 -tp72343 -a(S"'enc_DigitMapName'/1" -p72344 -S"'enc_DigitMapName'(${1:Val}) $2" -p72345 -tp72346 -a(S"'enc_DigitMapValue'/1" -p72347 -S"'enc_DigitMapValue'(${1:Val}) $2" -p72348 -tp72349 -a(S"'enc_DomainName'/1" -p72350 -S"'enc_DomainName'(${1:Val}) $2" -p72351 -tp72352 -a(S"'enc_ErrorCode'/1" -p72353 -S"'enc_ErrorCode'(${1:Val}) $2" -p72354 -tp72355 -a(S"'enc_ErrorDescriptor'/1" -p72356 -S"'enc_ErrorDescriptor'(${1:Val}) $2" -p72357 -tp72358 -a(S"'enc_ErrorText'/1" -p72359 -S"'enc_ErrorText'(${1:Val}) $2" -p72360 -tp72361 -a(S"'enc_EventBufferControl'/1" -p72362 -S"'enc_EventBufferControl'(${1:Val}) $2" -p72363 -tp72364 -a(S"'enc_EventBufferDescriptor'/1" -p72365 -S"'enc_EventBufferDescriptor'(${1:Val}) $2" -p72366 -tp72367 -a(S"'enc_EventDM'/1" -p72368 -S"'enc_EventDM'(${1:Val}) $2" -p72369 -tp72370 -a(S"'enc_EventName'/1" -p72371 -S"'enc_EventName'(${1:Val}) $2" -p72372 -tp72373 -a(S"'enc_EventParameter'/1" -p72374 -S"'enc_EventParameter'(${1:Val}) $2" -p72375 -tp72376 -a(S"'enc_EventSpec'/1" -p72377 -S"'enc_EventSpec'(${1:Val}) $2" -p72378 -tp72379 -a(S"'enc_EventsDescriptor'/1" -p72380 -S"'enc_EventsDescriptor'(${1:Val}) $2" -p72381 -tp72382 -a(S"'enc_H221NonStandard'/1" -p72383 -S"'enc_H221NonStandard'(${1:Val}) $2" -p72384 -tp72385 -a(S"'enc_IP4Address'/1" -p72386 -S"'enc_IP4Address'(${1:Val}) $2" -p72387 -tp72388 -a(S"'enc_IP6Address'/1" -p72389 -S"'enc_IP6Address'(${1:Val}) $2" -p72390 -tp72391 -a(S"'enc_IndAudDigitMapDescriptor'/1" -p72392 -S"'enc_IndAudDigitMapDescriptor'(${1:Val}) $2" -p72393 -tp72394 -a(S"'enc_IndAudEventBufferDescriptor'/1" -p72395 -S"'enc_IndAudEventBufferDescriptor'(${1:Val}) $2" -p72396 -tp72397 -a(S"'enc_IndAudEventsDescriptor'/1" -p72398 -S"'enc_IndAudEventsDescriptor'(${1:Val}) $2" -p72399 -tp72400 -a(S"'enc_IndAudLocalControlDescriptor'/1" -p72401 -S"'enc_IndAudLocalControlDescriptor'(${1:Val}) $2" -p72402 -tp72403 -a(S"'enc_IndAudLocalRemoteDescriptor'/1" -p72404 -S"'enc_IndAudLocalRemoteDescriptor'(${1:Val}) $2" -p72405 -tp72406 -a(S"'enc_IndAudMediaDescriptor'/1" -p72407 -S"'enc_IndAudMediaDescriptor'(${1:Val}) $2" -p72408 -tp72409 -a(S"'enc_IndAudPackagesDescriptor'/1" -p72410 -S"'enc_IndAudPackagesDescriptor'(${1:Val}) $2" -p72411 -tp72412 -a(S"'enc_IndAudPropertyGroup'/1" -p72413 -S"'enc_IndAudPropertyGroup'(${1:Val}) $2" -p72414 -tp72415 -a(S"'enc_IndAudPropertyParm'/1" -p72416 -S"'enc_IndAudPropertyParm'(${1:Val}) $2" -p72417 -tp72418 -a(S"'enc_IndAudSeqSigList'/1" -p72419 -S"'enc_IndAudSeqSigList'(${1:Val}) $2" -p72420 -tp72421 -a(S"'enc_IndAudSignal'/1" -p72422 -S"'enc_IndAudSignal'(${1:Val}) $2" -p72423 -tp72424 -a(S"'enc_IndAudSignalsDescriptor'/1" -p72425 -S"'enc_IndAudSignalsDescriptor'(${1:Val}) $2" -p72426 -tp72427 -a(S"'enc_IndAudStatisticsDescriptor'/1" -p72428 -S"'enc_IndAudStatisticsDescriptor'(${1:Val}) $2" -p72429 -tp72430 -a(S"'enc_IndAudStreamDescriptor'/1" -p72431 -S"'enc_IndAudStreamDescriptor'(${1:Val}) $2" -p72432 -tp72433 -a(S"'enc_IndAudStreamParms'/1" -p72434 -S"'enc_IndAudStreamParms'(${1:Val}) $2" -p72435 -tp72436 -a(S"'enc_IndAudTerminationStateDescriptor'/1" -p72437 -S"'enc_IndAudTerminationStateDescriptor'(${1:Val}) $2" -p72438 -tp72439 -a(S"'enc_IndAuditParameter'/1" -p72440 -S"'enc_IndAuditParameter'(${1:Val}) $2" -p72441 -tp72442 -a(S"'enc_LocalControlDescriptor'/1" -p72443 -S"'enc_LocalControlDescriptor'(${1:Val}) $2" -p72444 -tp72445 -a(S"'enc_LocalRemoteDescriptor'/1" -p72446 -S"'enc_LocalRemoteDescriptor'(${1:Val}) $2" -p72447 -tp72448 -a(S"'enc_MId'/1" -p72449 -S"'enc_MId'(${1:Val}) $2" -p72450 -tp72451 -a(S"'enc_MediaDescriptor'/1" -p72452 -S"'enc_MediaDescriptor'(${1:Val}) $2" -p72453 -tp72454 -a(S"'enc_MegacoMessage'/1" -p72455 -S"'enc_MegacoMessage'(${1:Val}) $2" -p72456 -tp72457 -a(S"'enc_Message'/1" -p72458 -S"'enc_Message'(${1:Val}) $2" -p72459 -tp72460 -a(S"'enc_ModemDescriptor'/1" -p72461 -S"'enc_ModemDescriptor'(${1:Val}) $2" -p72462 -tp72463 -a(S"'enc_ModemType'/1" -p72464 -S"'enc_ModemType'(${1:Val}) $2" -p72465 -tp72466 -a(S"'enc_MuxDescriptor'/1" -p72467 -S"'enc_MuxDescriptor'(${1:Val}) $2" -p72468 -tp72469 -a(S"'enc_MuxType'/1" -p72470 -S"'enc_MuxType'(${1:Val}) $2" -p72471 -tp72472 -a(S"'enc_Name'/1" -p72473 -S"'enc_Name'(${1:Val}) $2" -p72474 -tp72475 -a(S"'enc_NonStandardData'/1" -p72476 -S"'enc_NonStandardData'(${1:Val}) $2" -p72477 -tp72478 -a(S"'enc_NonStandardIdentifier'/1" -p72479 -S"'enc_NonStandardIdentifier'(${1:Val}) $2" -p72480 -tp72481 -a(S"'enc_NotifyBehaviour'/1" -p72482 -S"'enc_NotifyBehaviour'(${1:Val}) $2" -p72483 -tp72484 -a(S"'enc_NotifyCompletion'/1" -p72485 -S"'enc_NotifyCompletion'(${1:Val}) $2" -p72486 -tp72487 -a(S"'enc_NotifyReply'/1" -p72488 -S"'enc_NotifyReply'(${1:Val}) $2" -p72489 -tp72490 -a(S"'enc_NotifyRequest'/1" -p72491 -S"'enc_NotifyRequest'(${1:Val}) $2" -p72492 -tp72493 -a(S"'enc_ObservedEvent'/1" -p72494 -S"'enc_ObservedEvent'(${1:Val}) $2" -p72495 -tp72496 -a(S"'enc_ObservedEventsDescriptor'/1" -p72497 -S"'enc_ObservedEventsDescriptor'(${1:Val}) $2" -p72498 -tp72499 -a(S"'enc_PackagesDescriptor'/1" -p72500 -S"'enc_PackagesDescriptor'(${1:Val}) $2" -p72501 -tp72502 -a(S"'enc_PackagesItem'/1" -p72503 -S"'enc_PackagesItem'(${1:Val}) $2" -p72504 -tp72505 -a(S"'enc_PathName'/1" -p72506 -S"'enc_PathName'(${1:Val}) $2" -p72507 -tp72508 -a(S"'enc_PkgdName'/1" -p72509 -S"'enc_PkgdName'(${1:Val}) $2" -p72510 -tp72511 -a(S"'enc_PropertyGroup'/1" -p72512 -S"'enc_PropertyGroup'(${1:Val}) $2" -p72513 -tp72514 -a(S"'enc_PropertyParm'/1" -p72515 -S"'enc_PropertyParm'(${1:Val}) $2" -p72516 -tp72517 -a(S"'enc_RegulatedEmbeddedDescriptor'/1" -p72518 -S"'enc_RegulatedEmbeddedDescriptor'(${1:Val}) $2" -p72519 -tp72520 -a(S"'enc_Relation'/1" -p72521 -S"'enc_Relation'(${1:Val}) $2" -p72522 -tp72523 -a(S"'enc_RequestID'/1" -p72524 -S"'enc_RequestID'(${1:Val}) $2" -p72525 -tp72526 -a(S"'enc_RequestedActions'/1" -p72527 -S"'enc_RequestedActions'(${1:Val}) $2" -p72528 -tp72529 -a(S"'enc_RequestedEvent'/1" -p72530 -S"'enc_RequestedEvent'(${1:Val}) $2" -p72531 -tp72532 -a(S"'enc_SecondEventsDescriptor'/1" -p72533 -S"'enc_SecondEventsDescriptor'(${1:Val}) $2" -p72534 -tp72535 -a(S"'enc_SecondRequestedActions'/1" -p72536 -S"'enc_SecondRequestedActions'(${1:Val}) $2" -p72537 -tp72538 -a(S"'enc_SecondRequestedEvent'/1" -p72539 -S"'enc_SecondRequestedEvent'(${1:Val}) $2" -p72540 -tp72541 -a(S"'enc_SecurityParmIndex'/1" -p72542 -S"'enc_SecurityParmIndex'(${1:Val}) $2" -p72543 -tp72544 -a(S"'enc_SegmentNumber'/1" -p72545 -S"'enc_SegmentNumber'(${1:Val}) $2" -p72546 -tp72547 -a(S"'enc_SelectLogic'/1" -p72548 -S"'enc_SelectLogic'(${1:Val}) $2" -p72549 -tp72550 -a(S"'enc_SeqSigList'/1" -p72551 -S"'enc_SeqSigList'(${1:Val}) $2" -p72552 -tp72553 -a(S"'enc_SequenceNum'/1" -p72554 -S"'enc_SequenceNum'(${1:Val}) $2" -p72555 -tp72556 -a(S"'enc_ServiceChangeAddress'/1" -p72557 -S"'enc_ServiceChangeAddress'(${1:Val}) $2" -p72558 -tp72559 -a(S"'enc_ServiceChangeMethod'/1" -p72560 -S"'enc_ServiceChangeMethod'(${1:Val}) $2" -p72561 -tp72562 -a(S"'enc_ServiceChangeParm'/1" -p72563 -S"'enc_ServiceChangeParm'(${1:Val}) $2" -p72564 -tp72565 -a(S"'enc_ServiceChangeProfile'/1" -p72566 -S"'enc_ServiceChangeProfile'(${1:Val}) $2" -p72567 -tp72568 -a(S"'enc_ServiceChangeReply'/1" -p72569 -S"'enc_ServiceChangeReply'(${1:Val}) $2" -p72570 -tp72571 -a(S"'enc_ServiceChangeRequest'/1" -p72572 -S"'enc_ServiceChangeRequest'(${1:Val}) $2" -p72573 -tp72574 -a(S"'enc_ServiceChangeResParm'/1" -p72575 -S"'enc_ServiceChangeResParm'(${1:Val}) $2" -p72576 -tp72577 -a(S"'enc_ServiceChangeResult'/1" -p72578 -S"'enc_ServiceChangeResult'(${1:Val}) $2" -p72579 -tp72580 -a(S"'enc_ServiceState'/1" -p72581 -S"'enc_ServiceState'(${1:Val}) $2" -p72582 -tp72583 -a(S"'enc_SigParameter'/1" -p72584 -S"'enc_SigParameter'(${1:Val}) $2" -p72585 -tp72586 -a(S"'enc_Signal'/1" -p72587 -S"'enc_Signal'(${1:Val}) $2" -p72588 -tp72589 -a(S"'enc_SignalDirection'/1" -p72590 -S"'enc_SignalDirection'(${1:Val}) $2" -p72591 -tp72592 -a(S"'enc_SignalName'/1" -p72593 -S"'enc_SignalName'(${1:Val}) $2" -p72594 -tp72595 -a(S"'enc_SignalRequest'/1" -p72596 -S"'enc_SignalRequest'(${1:Val}) $2" -p72597 -tp72598 -a(S"'enc_SignalType'/1" -p72599 -S"'enc_SignalType'(${1:Val}) $2" -p72600 -tp72601 -a(S"'enc_SignalsDescriptor'/1" -p72602 -S"'enc_SignalsDescriptor'(${1:Val}) $2" -p72603 -tp72604 -a(S"'enc_StatisticsDescriptor'/1" -p72605 -S"'enc_StatisticsDescriptor'(${1:Val}) $2" -p72606 -tp72607 -a(S"'enc_StatisticsParameter'/1" -p72608 -S"'enc_StatisticsParameter'(${1:Val}) $2" -p72609 -tp72610 -a(S"'enc_StreamDescriptor'/1" -p72611 -S"'enc_StreamDescriptor'(${1:Val}) $2" -p72612 -tp72613 -a(S"'enc_StreamID'/1" -p72614 -S"'enc_StreamID'(${1:Val}) $2" -p72615 -tp72616 -a(S"'enc_StreamMode'/1" -p72617 -S"'enc_StreamMode'(${1:Val}) $2" -p72618 -tp72619 -a(S"'enc_StreamParms'/1" -p72620 -S"'enc_StreamParms'(${1:Val}) $2" -p72621 -tp72622 -a(S"'enc_SubtractRequest'/1" -p72623 -S"'enc_SubtractRequest'(${1:Val}) $2" -p72624 -tp72625 -a(S"'enc_TermListAuditResult'/1" -p72626 -S"'enc_TermListAuditResult'(${1:Val}) $2" -p72627 -tp72628 -a(S"'enc_TerminationAudit'/1" -p72629 -S"'enc_TerminationAudit'(${1:Val}) $2" -p72630 -tp72631 -a(S"'enc_TerminationID'/1" -p72632 -S"'enc_TerminationID'(${1:Val}) $2" -p72633 -tp72634 -a(S"'enc_TerminationIDList'/1" -p72635 -S"'enc_TerminationIDList'(${1:Val}) $2" -p72636 -tp72637 -a(S"'enc_TerminationStateDescriptor'/1" -p72638 -S"'enc_TerminationStateDescriptor'(${1:Val}) $2" -p72639 -tp72640 -a(S"'enc_TimeNotation'/1" -p72641 -S"'enc_TimeNotation'(${1:Val}) $2" -p72642 -tp72643 -a(S"'enc_TopologyRequest'/1" -p72644 -S"'enc_TopologyRequest'(${1:Val}) $2" -p72645 -tp72646 -a(S"'enc_Transaction'/1" -p72647 -S"'enc_Transaction'(${1:Val}) $2" -p72648 -tp72649 -a(S"'enc_TransactionAck'/1" -p72650 -S"'enc_TransactionAck'(${1:Val}) $2" -p72651 -tp72652 -a(S"'enc_TransactionId'/1" -p72653 -S"'enc_TransactionId'(${1:Val}) $2" -p72654 -tp72655 -a(S"'enc_TransactionPending'/1" -p72656 -S"'enc_TransactionPending'(${1:Val}) $2" -p72657 -tp72658 -a(S"'enc_TransactionReply'/1" -p72659 -S"'enc_TransactionReply'(${1:Val}) $2" -p72660 -tp72661 -a(S"'enc_TransactionRequest'/1" -p72662 -S"'enc_TransactionRequest'(${1:Val}) $2" -p72663 -tp72664 -a(S"'enc_TransactionResponseAck'/1" -p72665 -S"'enc_TransactionResponseAck'(${1:Val}) $2" -p72666 -tp72667 -a(S"'enc_Value'/1" -p72668 -S"'enc_Value'(${1:Val}) $2" -p72669 -tp72670 -a(S"'enc_WildcardField'/1" -p72671 -S"'enc_WildcardField'(${1:Val}) $2" -p72672 -tp72673 -a(S'decode/2' -p72674 -S'decode(${1:Type}, ${2:Data}) $3' -p72675 -tp72676 -a(S'decode_disp/2' -p72677 -S'decode_disp(${1:Type}, ${2:Data}) $3' -p72678 -tp72679 -a(S'encode/2' -p72680 -S'encode(${1:Type}, ${2:Data}) $3' -p72681 -tp72682 -a(S'encode_disp/2' -p72683 -S'encode_disp(${1:Type}, ${2:Data}) $3' -p72684 -tp72685 -a(S'encoding_rule/0' -p72686 -S'encoding_rule() $1' -p72687 -tp72688 -a(S'info/0' -p72689 -S'info() $1' -p72690 -tp72691 -asS'megaco_per_media_gateway_control_prev3a' -p72692 -(lp72693 -(S"'dec_ActionReply'/2" -p72694 -S"'dec_ActionReply'(${1:Bytes}, ${2:Param2}) $3" -p72695 -tp72696 -a(S"'dec_ActionRequest'/2" -p72697 -S"'dec_ActionRequest'(${1:Bytes}, ${2:Param2}) $3" -p72698 -tp72699 -a(S"'dec_AmmDescriptor'/2" -p72700 -S"'dec_AmmDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p72701 -tp72702 -a(S"'dec_AmmRequest'/2" -p72703 -S"'dec_AmmRequest'(${1:Bytes}, ${2:Param2}) $3" -p72704 -tp72705 -a(S"'dec_AmmsReply'/2" -p72706 -S"'dec_AmmsReply'(${1:Bytes}, ${2:Param2}) $3" -p72707 -tp72708 -a(S"'dec_AuditDescriptor'/2" -p72709 -S"'dec_AuditDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p72710 -tp72711 -a(S"'dec_AuditReply'/2" -p72712 -S"'dec_AuditReply'(${1:Bytes}, ${2:Param2}) $3" -p72713 -tp72714 -a(S"'dec_AuditRequest'/2" -p72715 -S"'dec_AuditRequest'(${1:Bytes}, ${2:Param2}) $3" -p72716 -tp72717 -a(S"'dec_AuditResult'/2" -p72718 -S"'dec_AuditResult'(${1:Bytes}, ${2:Param2}) $3" -p72719 -tp72720 -a(S"'dec_AuditReturnParameter'/2" -p72721 -S"'dec_AuditReturnParameter'(${1:Bytes}, ${2:Param2}) $3" -p72722 -tp72723 -a(S"'dec_AuthData'/2" -p72724 -S"'dec_AuthData'(${1:Bytes}, ${2:Param2}) $3" -p72725 -tp72726 -a(S"'dec_AuthenticationHeader'/2" -p72727 -S"'dec_AuthenticationHeader'(${1:Bytes}, ${2:Param2}) $3" -p72728 -tp72729 -a(S"'dec_Command'/2" -p72730 -S"'dec_Command'(${1:Bytes}, ${2:Param2}) $3" -p72731 -tp72732 -a(S"'dec_CommandReply'/2" -p72733 -S"'dec_CommandReply'(${1:Bytes}, ${2:Param2}) $3" -p72734 -tp72735 -a(S"'dec_CommandRequest'/2" -p72736 -S"'dec_CommandRequest'(${1:Bytes}, ${2:Param2}) $3" -p72737 -tp72738 -a(S"'dec_ContextAttrAuditRequest'/2" -p72739 -S"'dec_ContextAttrAuditRequest'(${1:Bytes}, ${2:Param2}) $3" -p72740 -tp72741 -a(S"'dec_ContextID'/2" -p72742 -S"'dec_ContextID'(${1:Bytes}, ${2:Param2}) $3" -p72743 -tp72744 -a(S"'dec_ContextRequest'/2" -p72745 -S"'dec_ContextRequest'(${1:Bytes}, ${2:Param2}) $3" -p72746 -tp72747 -a(S"'dec_DigitMapDescriptor'/2" -p72748 -S"'dec_DigitMapDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p72749 -tp72750 -a(S"'dec_DigitMapName'/2" -p72751 -S"'dec_DigitMapName'(${1:Bytes}, ${2:Param2}) $3" -p72752 -tp72753 -a(S"'dec_DigitMapValue'/2" -p72754 -S"'dec_DigitMapValue'(${1:Bytes}, ${2:Param2}) $3" -p72755 -tp72756 -a(S"'dec_DomainName'/2" -p72757 -S"'dec_DomainName'(${1:Bytes}, ${2:Param2}) $3" -p72758 -tp72759 -a(S"'dec_ErrorCode'/2" -p72760 -S"'dec_ErrorCode'(${1:Bytes}, ${2:Param2}) $3" -p72761 -tp72762 -a(S"'dec_ErrorDescriptor'/2" -p72763 -S"'dec_ErrorDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p72764 -tp72765 -a(S"'dec_ErrorText'/2" -p72766 -S"'dec_ErrorText'(${1:Bytes}, ${2:Param2}) $3" -p72767 -tp72768 -a(S"'dec_EventBufferControl'/2" -p72769 -S"'dec_EventBufferControl'(${1:Bytes}, ${2:Param2}) $3" -p72770 -tp72771 -a(S"'dec_EventBufferDescriptor'/2" -p72772 -S"'dec_EventBufferDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p72773 -tp72774 -a(S"'dec_EventDM'/2" -p72775 -S"'dec_EventDM'(${1:Bytes}, ${2:Param2}) $3" -p72776 -tp72777 -a(S"'dec_EventName'/2" -p72778 -S"'dec_EventName'(${1:Bytes}, ${2:Param2}) $3" -p72779 -tp72780 -a(S"'dec_EventParameter'/2" -p72781 -S"'dec_EventParameter'(${1:Bytes}, ${2:Param2}) $3" -p72782 -tp72783 -a(S"'dec_EventSpec'/2" -p72784 -S"'dec_EventSpec'(${1:Bytes}, ${2:Param2}) $3" -p72785 -tp72786 -a(S"'dec_EventsDescriptor'/2" -p72787 -S"'dec_EventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p72788 -tp72789 -a(S"'dec_H221NonStandard'/2" -p72790 -S"'dec_H221NonStandard'(${1:Bytes}, ${2:Param2}) $3" -p72791 -tp72792 -a(S"'dec_IP4Address'/2" -p72793 -S"'dec_IP4Address'(${1:Bytes}, ${2:Param2}) $3" -p72794 -tp72795 -a(S"'dec_IP6Address'/2" -p72796 -S"'dec_IP6Address'(${1:Bytes}, ${2:Param2}) $3" -p72797 -tp72798 -a(S"'dec_IndAudDigitMapDescriptor'/2" -p72799 -S"'dec_IndAudDigitMapDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p72800 -tp72801 -a(S"'dec_IndAudEventBufferDescriptor'/2" -p72802 -S"'dec_IndAudEventBufferDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p72803 -tp72804 -a(S"'dec_IndAudEventsDescriptor'/2" -p72805 -S"'dec_IndAudEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p72806 -tp72807 -a(S"'dec_IndAudLocalControlDescriptor'/2" -p72808 -S"'dec_IndAudLocalControlDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p72809 -tp72810 -a(S"'dec_IndAudLocalRemoteDescriptor'/2" -p72811 -S"'dec_IndAudLocalRemoteDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p72812 -tp72813 -a(S"'dec_IndAudMediaDescriptor'/2" -p72814 -S"'dec_IndAudMediaDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p72815 -tp72816 -a(S"'dec_IndAudPackagesDescriptor'/2" -p72817 -S"'dec_IndAudPackagesDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p72818 -tp72819 -a(S"'dec_IndAudPropertyGroup'/2" -p72820 -S"'dec_IndAudPropertyGroup'(${1:Bytes}, ${2:Param2}) $3" -p72821 -tp72822 -a(S"'dec_IndAudPropertyParm'/2" -p72823 -S"'dec_IndAudPropertyParm'(${1:Bytes}, ${2:Param2}) $3" -p72824 -tp72825 -a(S"'dec_IndAudSeqSigList'/2" -p72826 -S"'dec_IndAudSeqSigList'(${1:Bytes}, ${2:Param2}) $3" -p72827 -tp72828 -a(S"'dec_IndAudSignal'/2" -p72829 -S"'dec_IndAudSignal'(${1:Bytes}, ${2:Param2}) $3" -p72830 -tp72831 -a(S"'dec_IndAudSignalsDescriptor'/2" -p72832 -S"'dec_IndAudSignalsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p72833 -tp72834 -a(S"'dec_IndAudStatisticsDescriptor'/2" -p72835 -S"'dec_IndAudStatisticsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p72836 -tp72837 -a(S"'dec_IndAudStreamDescriptor'/2" -p72838 -S"'dec_IndAudStreamDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p72839 -tp72840 -a(S"'dec_IndAudStreamParms'/2" -p72841 -S"'dec_IndAudStreamParms'(${1:Bytes}, ${2:Param2}) $3" -p72842 -tp72843 -a(S"'dec_IndAudTerminationStateDescriptor'/2" -p72844 -S"'dec_IndAudTerminationStateDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p72845 -tp72846 -a(S"'dec_IndAuditParameter'/2" -p72847 -S"'dec_IndAuditParameter'(${1:Bytes}, ${2:Param2}) $3" -p72848 -tp72849 -a(S"'dec_LocalControlDescriptor'/2" -p72850 -S"'dec_LocalControlDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p72851 -tp72852 -a(S"'dec_LocalRemoteDescriptor'/2" -p72853 -S"'dec_LocalRemoteDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p72854 -tp72855 -a(S"'dec_MId'/2" -p72856 -S"'dec_MId'(${1:Bytes}, ${2:Param2}) $3" -p72857 -tp72858 -a(S"'dec_MediaDescriptor'/2" -p72859 -S"'dec_MediaDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p72860 -tp72861 -a(S"'dec_MegacoMessage'/2" -p72862 -S"'dec_MegacoMessage'(${1:Bytes}, ${2:Param2}) $3" -p72863 -tp72864 -a(S"'dec_Message'/2" -p72865 -S"'dec_Message'(${1:Bytes}, ${2:Param2}) $3" -p72866 -tp72867 -a(S"'dec_ModemDescriptor'/2" -p72868 -S"'dec_ModemDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p72869 -tp72870 -a(S"'dec_ModemType'/2" -p72871 -S"'dec_ModemType'(${1:Bytes}, ${2:Param2}) $3" -p72872 -tp72873 -a(S"'dec_MuxDescriptor'/2" -p72874 -S"'dec_MuxDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p72875 -tp72876 -a(S"'dec_MuxType'/2" -p72877 -S"'dec_MuxType'(${1:Bytes}, ${2:Param2}) $3" -p72878 -tp72879 -a(S"'dec_Name'/2" -p72880 -S"'dec_Name'(${1:Bytes}, ${2:Param2}) $3" -p72881 -tp72882 -a(S"'dec_NonStandardData'/2" -p72883 -S"'dec_NonStandardData'(${1:Bytes}, ${2:Param2}) $3" -p72884 -tp72885 -a(S"'dec_NonStandardIdentifier'/2" -p72886 -S"'dec_NonStandardIdentifier'(${1:Bytes}, ${2:Param2}) $3" -p72887 -tp72888 -a(S"'dec_NotifyCompletion'/2" -p72889 -S"'dec_NotifyCompletion'(${1:Bytes}, ${2:Param2}) $3" -p72890 -tp72891 -a(S"'dec_NotifyReply'/2" -p72892 -S"'dec_NotifyReply'(${1:Bytes}, ${2:Param2}) $3" -p72893 -tp72894 -a(S"'dec_NotifyRequest'/2" -p72895 -S"'dec_NotifyRequest'(${1:Bytes}, ${2:Param2}) $3" -p72896 -tp72897 -a(S"'dec_ObservedEvent'/2" -p72898 -S"'dec_ObservedEvent'(${1:Bytes}, ${2:Param2}) $3" -p72899 -tp72900 -a(S"'dec_ObservedEventsDescriptor'/2" -p72901 -S"'dec_ObservedEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p72902 -tp72903 -a(S"'dec_PackagesDescriptor'/2" -p72904 -S"'dec_PackagesDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p72905 -tp72906 -a(S"'dec_PackagesItem'/2" -p72907 -S"'dec_PackagesItem'(${1:Bytes}, ${2:Param2}) $3" -p72908 -tp72909 -a(S"'dec_PathName'/2" -p72910 -S"'dec_PathName'(${1:Bytes}, ${2:Param2}) $3" -p72911 -tp72912 -a(S"'dec_PkgdName'/2" -p72913 -S"'dec_PkgdName'(${1:Bytes}, ${2:Param2}) $3" -p72914 -tp72915 -a(S"'dec_PropertyGroup'/2" -p72916 -S"'dec_PropertyGroup'(${1:Bytes}, ${2:Param2}) $3" -p72917 -tp72918 -a(S"'dec_PropertyParm'/2" -p72919 -S"'dec_PropertyParm'(${1:Bytes}, ${2:Param2}) $3" -p72920 -tp72921 -a(S"'dec_Relation'/2" -p72922 -S"'dec_Relation'(${1:Bytes}, ${2:Param2}) $3" -p72923 -tp72924 -a(S"'dec_RequestID'/2" -p72925 -S"'dec_RequestID'(${1:Bytes}, ${2:Param2}) $3" -p72926 -tp72927 -a(S"'dec_RequestedActions'/2" -p72928 -S"'dec_RequestedActions'(${1:Bytes}, ${2:Param2}) $3" -p72929 -tp72930 -a(S"'dec_RequestedEvent'/2" -p72931 -S"'dec_RequestedEvent'(${1:Bytes}, ${2:Param2}) $3" -p72932 -tp72933 -a(S"'dec_SecondEventsDescriptor'/2" -p72934 -S"'dec_SecondEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p72935 -tp72936 -a(S"'dec_SecondRequestedActions'/2" -p72937 -S"'dec_SecondRequestedActions'(${1:Bytes}, ${2:Param2}) $3" -p72938 -tp72939 -a(S"'dec_SecondRequestedEvent'/2" -p72940 -S"'dec_SecondRequestedEvent'(${1:Bytes}, ${2:Param2}) $3" -p72941 -tp72942 -a(S"'dec_SecurityParmIndex'/2" -p72943 -S"'dec_SecurityParmIndex'(${1:Bytes}, ${2:Param2}) $3" -p72944 -tp72945 -a(S"'dec_SegmentNumber'/2" -p72946 -S"'dec_SegmentNumber'(${1:Bytes}, ${2:Param2}) $3" -p72947 -tp72948 -a(S"'dec_SeqSigList'/2" -p72949 -S"'dec_SeqSigList'(${1:Bytes}, ${2:Param2}) $3" -p72950 -tp72951 -a(S"'dec_SequenceNum'/2" -p72952 -S"'dec_SequenceNum'(${1:Bytes}, ${2:Param2}) $3" -p72953 -tp72954 -a(S"'dec_ServiceChangeAddress'/2" -p72955 -S"'dec_ServiceChangeAddress'(${1:Bytes}, ${2:Param2}) $3" -p72956 -tp72957 -a(S"'dec_ServiceChangeMethod'/2" -p72958 -S"'dec_ServiceChangeMethod'(${1:Bytes}, ${2:Param2}) $3" -p72959 -tp72960 -a(S"'dec_ServiceChangeParm'/2" -p72961 -S"'dec_ServiceChangeParm'(${1:Bytes}, ${2:Param2}) $3" -p72962 -tp72963 -a(S"'dec_ServiceChangeProfile'/2" -p72964 -S"'dec_ServiceChangeProfile'(${1:Bytes}, ${2:Param2}) $3" -p72965 -tp72966 -a(S"'dec_ServiceChangeReply'/2" -p72967 -S"'dec_ServiceChangeReply'(${1:Bytes}, ${2:Param2}) $3" -p72968 -tp72969 -a(S"'dec_ServiceChangeRequest'/2" -p72970 -S"'dec_ServiceChangeRequest'(${1:Bytes}, ${2:Param2}) $3" -p72971 -tp72972 -a(S"'dec_ServiceChangeResParm'/2" -p72973 -S"'dec_ServiceChangeResParm'(${1:Bytes}, ${2:Param2}) $3" -p72974 -tp72975 -a(S"'dec_ServiceChangeResult'/2" -p72976 -S"'dec_ServiceChangeResult'(${1:Bytes}, ${2:Param2}) $3" -p72977 -tp72978 -a(S"'dec_ServiceState'/2" -p72979 -S"'dec_ServiceState'(${1:Bytes}, ${2:Param2}) $3" -p72980 -tp72981 -a(S"'dec_SigParameter'/2" -p72982 -S"'dec_SigParameter'(${1:Bytes}, ${2:Param2}) $3" -p72983 -tp72984 -a(S"'dec_Signal'/2" -p72985 -S"'dec_Signal'(${1:Bytes}, ${2:Param2}) $3" -p72986 -tp72987 -a(S"'dec_SignalDirection'/2" -p72988 -S"'dec_SignalDirection'(${1:Bytes}, ${2:Param2}) $3" -p72989 -tp72990 -a(S"'dec_SignalName'/2" -p72991 -S"'dec_SignalName'(${1:Bytes}, ${2:Param2}) $3" -p72992 -tp72993 -a(S"'dec_SignalRequest'/2" -p72994 -S"'dec_SignalRequest'(${1:Bytes}, ${2:Param2}) $3" -p72995 -tp72996 -a(S"'dec_SignalType'/2" -p72997 -S"'dec_SignalType'(${1:Bytes}, ${2:Param2}) $3" -p72998 -tp72999 -a(S"'dec_SignalsDescriptor'/2" -p73000 -S"'dec_SignalsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p73001 -tp73002 -a(S"'dec_StatisticsDescriptor'/2" -p73003 -S"'dec_StatisticsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p73004 -tp73005 -a(S"'dec_StatisticsParameter'/2" -p73006 -S"'dec_StatisticsParameter'(${1:Bytes}, ${2:Param2}) $3" -p73007 -tp73008 -a(S"'dec_StreamDescriptor'/2" -p73009 -S"'dec_StreamDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p73010 -tp73011 -a(S"'dec_StreamID'/2" -p73012 -S"'dec_StreamID'(${1:Bytes}, ${2:Param2}) $3" -p73013 -tp73014 -a(S"'dec_StreamMode'/2" -p73015 -S"'dec_StreamMode'(${1:Bytes}, ${2:Param2}) $3" -p73016 -tp73017 -a(S"'dec_StreamParms'/2" -p73018 -S"'dec_StreamParms'(${1:Bytes}, ${2:Param2}) $3" -p73019 -tp73020 -a(S"'dec_SubtractRequest'/2" -p73021 -S"'dec_SubtractRequest'(${1:Bytes}, ${2:Param2}) $3" -p73022 -tp73023 -a(S"'dec_TerminationAudit'/2" -p73024 -S"'dec_TerminationAudit'(${1:Bytes}, ${2:Param2}) $3" -p73025 -tp73026 -a(S"'dec_TerminationID'/2" -p73027 -S"'dec_TerminationID'(${1:Bytes}, ${2:Param2}) $3" -p73028 -tp73029 -a(S"'dec_TerminationIDList'/2" -p73030 -S"'dec_TerminationIDList'(${1:Bytes}, ${2:Param2}) $3" -p73031 -tp73032 -a(S"'dec_TerminationStateDescriptor'/2" -p73033 -S"'dec_TerminationStateDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p73034 -tp73035 -a(S"'dec_TimeNotation'/2" -p73036 -S"'dec_TimeNotation'(${1:Bytes}, ${2:Param2}) $3" -p73037 -tp73038 -a(S"'dec_TopologyRequest'/2" -p73039 -S"'dec_TopologyRequest'(${1:Bytes}, ${2:Param2}) $3" -p73040 -tp73041 -a(S"'dec_Transaction'/2" -p73042 -S"'dec_Transaction'(${1:Bytes}, ${2:Param2}) $3" -p73043 -tp73044 -a(S"'dec_TransactionAck'/2" -p73045 -S"'dec_TransactionAck'(${1:Bytes}, ${2:Param2}) $3" -p73046 -tp73047 -a(S"'dec_TransactionId'/2" -p73048 -S"'dec_TransactionId'(${1:Bytes}, ${2:Param2}) $3" -p73049 -tp73050 -a(S"'dec_TransactionPending'/2" -p73051 -S"'dec_TransactionPending'(${1:Bytes}, ${2:Param2}) $3" -p73052 -tp73053 -a(S"'dec_TransactionReply'/2" -p73054 -S"'dec_TransactionReply'(${1:Bytes}, ${2:Param2}) $3" -p73055 -tp73056 -a(S"'dec_TransactionRequest'/2" -p73057 -S"'dec_TransactionRequest'(${1:Bytes}, ${2:Param2}) $3" -p73058 -tp73059 -a(S"'dec_TransactionResponseAck'/2" -p73060 -S"'dec_TransactionResponseAck'(${1:Bytes}, ${2:Param2}) $3" -p73061 -tp73062 -a(S"'dec_Value'/2" -p73063 -S"'dec_Value'(${1:Bytes}, ${2:Param2}) $3" -p73064 -tp73065 -a(S"'dec_WildcardField'/2" -p73066 -S"'dec_WildcardField'(${1:Bytes}, ${2:Param2}) $3" -p73067 -tp73068 -a(S"'enc_ActionReply'/1" -p73069 -S"'enc_ActionReply'(${1:Val}) $2" -p73070 -tp73071 -a(S"'enc_ActionRequest'/1" -p73072 -S"'enc_ActionRequest'(${1:Val}) $2" -p73073 -tp73074 -a(S"'enc_AmmDescriptor'/1" -p73075 -S"'enc_AmmDescriptor'(${1:Val}) $2" -p73076 -tp73077 -a(S"'enc_AmmRequest'/1" -p73078 -S"'enc_AmmRequest'(${1:Val}) $2" -p73079 -tp73080 -a(S"'enc_AmmsReply'/1" -p73081 -S"'enc_AmmsReply'(${1:Val}) $2" -p73082 -tp73083 -a(S"'enc_AuditDescriptor'/1" -p73084 -S"'enc_AuditDescriptor'(${1:Val}) $2" -p73085 -tp73086 -a(S"'enc_AuditReply'/1" -p73087 -S"'enc_AuditReply'(${1:Val}) $2" -p73088 -tp73089 -a(S"'enc_AuditRequest'/1" -p73090 -S"'enc_AuditRequest'(${1:Val}) $2" -p73091 -tp73092 -a(S"'enc_AuditResult'/1" -p73093 -S"'enc_AuditResult'(${1:Val}) $2" -p73094 -tp73095 -a(S"'enc_AuditReturnParameter'/1" -p73096 -S"'enc_AuditReturnParameter'(${1:Val}) $2" -p73097 -tp73098 -a(S"'enc_AuthData'/1" -p73099 -S"'enc_AuthData'(${1:Val}) $2" -p73100 -tp73101 -a(S"'enc_AuthenticationHeader'/1" -p73102 -S"'enc_AuthenticationHeader'(${1:Val}) $2" -p73103 -tp73104 -a(S"'enc_Command'/1" -p73105 -S"'enc_Command'(${1:Val}) $2" -p73106 -tp73107 -a(S"'enc_CommandReply'/1" -p73108 -S"'enc_CommandReply'(${1:Val}) $2" -p73109 -tp73110 -a(S"'enc_CommandRequest'/1" -p73111 -S"'enc_CommandRequest'(${1:Val}) $2" -p73112 -tp73113 -a(S"'enc_ContextAttrAuditRequest'/1" -p73114 -S"'enc_ContextAttrAuditRequest'(${1:Val}) $2" -p73115 -tp73116 -a(S"'enc_ContextID'/1" -p73117 -S"'enc_ContextID'(${1:Val}) $2" -p73118 -tp73119 -a(S"'enc_ContextRequest'/1" -p73120 -S"'enc_ContextRequest'(${1:Val}) $2" -p73121 -tp73122 -a(S"'enc_DigitMapDescriptor'/1" -p73123 -S"'enc_DigitMapDescriptor'(${1:Val}) $2" -p73124 -tp73125 -a(S"'enc_DigitMapName'/1" -p73126 -S"'enc_DigitMapName'(${1:Val}) $2" -p73127 -tp73128 -a(S"'enc_DigitMapValue'/1" -p73129 -S"'enc_DigitMapValue'(${1:Val}) $2" -p73130 -tp73131 -a(S"'enc_DomainName'/1" -p73132 -S"'enc_DomainName'(${1:Val}) $2" -p73133 -tp73134 -a(S"'enc_ErrorCode'/1" -p73135 -S"'enc_ErrorCode'(${1:Val}) $2" -p73136 -tp73137 -a(S"'enc_ErrorDescriptor'/1" -p73138 -S"'enc_ErrorDescriptor'(${1:Val}) $2" -p73139 -tp73140 -a(S"'enc_ErrorText'/1" -p73141 -S"'enc_ErrorText'(${1:Val}) $2" -p73142 -tp73143 -a(S"'enc_EventBufferControl'/1" -p73144 -S"'enc_EventBufferControl'(${1:Val}) $2" -p73145 -tp73146 -a(S"'enc_EventBufferDescriptor'/1" -p73147 -S"'enc_EventBufferDescriptor'(${1:Val}) $2" -p73148 -tp73149 -a(S"'enc_EventDM'/1" -p73150 -S"'enc_EventDM'(${1:Val}) $2" -p73151 -tp73152 -a(S"'enc_EventName'/1" -p73153 -S"'enc_EventName'(${1:Val}) $2" -p73154 -tp73155 -a(S"'enc_EventParameter'/1" -p73156 -S"'enc_EventParameter'(${1:Val}) $2" -p73157 -tp73158 -a(S"'enc_EventSpec'/1" -p73159 -S"'enc_EventSpec'(${1:Val}) $2" -p73160 -tp73161 -a(S"'enc_EventsDescriptor'/1" -p73162 -S"'enc_EventsDescriptor'(${1:Val}) $2" -p73163 -tp73164 -a(S"'enc_H221NonStandard'/1" -p73165 -S"'enc_H221NonStandard'(${1:Val}) $2" -p73166 -tp73167 -a(S"'enc_IP4Address'/1" -p73168 -S"'enc_IP4Address'(${1:Val}) $2" -p73169 -tp73170 -a(S"'enc_IP6Address'/1" -p73171 -S"'enc_IP6Address'(${1:Val}) $2" -p73172 -tp73173 -a(S"'enc_IndAudDigitMapDescriptor'/1" -p73174 -S"'enc_IndAudDigitMapDescriptor'(${1:Val}) $2" -p73175 -tp73176 -a(S"'enc_IndAudEventBufferDescriptor'/1" -p73177 -S"'enc_IndAudEventBufferDescriptor'(${1:Val}) $2" -p73178 -tp73179 -a(S"'enc_IndAudEventsDescriptor'/1" -p73180 -S"'enc_IndAudEventsDescriptor'(${1:Val}) $2" -p73181 -tp73182 -a(S"'enc_IndAudLocalControlDescriptor'/1" -p73183 -S"'enc_IndAudLocalControlDescriptor'(${1:Val}) $2" -p73184 -tp73185 -a(S"'enc_IndAudLocalRemoteDescriptor'/1" -p73186 -S"'enc_IndAudLocalRemoteDescriptor'(${1:Val}) $2" -p73187 -tp73188 -a(S"'enc_IndAudMediaDescriptor'/1" -p73189 -S"'enc_IndAudMediaDescriptor'(${1:Val}) $2" -p73190 -tp73191 -a(S"'enc_IndAudPackagesDescriptor'/1" -p73192 -S"'enc_IndAudPackagesDescriptor'(${1:Val}) $2" -p73193 -tp73194 -a(S"'enc_IndAudPropertyGroup'/1" -p73195 -S"'enc_IndAudPropertyGroup'(${1:Val}) $2" -p73196 -tp73197 -a(S"'enc_IndAudPropertyParm'/1" -p73198 -S"'enc_IndAudPropertyParm'(${1:Val}) $2" -p73199 -tp73200 -a(S"'enc_IndAudSeqSigList'/1" -p73201 -S"'enc_IndAudSeqSigList'(${1:Val}) $2" -p73202 -tp73203 -a(S"'enc_IndAudSignal'/1" -p73204 -S"'enc_IndAudSignal'(${1:Val}) $2" -p73205 -tp73206 -a(S"'enc_IndAudSignalsDescriptor'/1" -p73207 -S"'enc_IndAudSignalsDescriptor'(${1:Val}) $2" -p73208 -tp73209 -a(S"'enc_IndAudStatisticsDescriptor'/1" -p73210 -S"'enc_IndAudStatisticsDescriptor'(${1:Val}) $2" -p73211 -tp73212 -a(S"'enc_IndAudStreamDescriptor'/1" -p73213 -S"'enc_IndAudStreamDescriptor'(${1:Val}) $2" -p73214 -tp73215 -a(S"'enc_IndAudStreamParms'/1" -p73216 -S"'enc_IndAudStreamParms'(${1:Val}) $2" -p73217 -tp73218 -a(S"'enc_IndAudTerminationStateDescriptor'/1" -p73219 -S"'enc_IndAudTerminationStateDescriptor'(${1:Val}) $2" -p73220 -tp73221 -a(S"'enc_IndAuditParameter'/1" -p73222 -S"'enc_IndAuditParameter'(${1:Val}) $2" -p73223 -tp73224 -a(S"'enc_LocalControlDescriptor'/1" -p73225 -S"'enc_LocalControlDescriptor'(${1:Val}) $2" -p73226 -tp73227 -a(S"'enc_LocalRemoteDescriptor'/1" -p73228 -S"'enc_LocalRemoteDescriptor'(${1:Val}) $2" -p73229 -tp73230 -a(S"'enc_MId'/1" -p73231 -S"'enc_MId'(${1:Val}) $2" -p73232 -tp73233 -a(S"'enc_MediaDescriptor'/1" -p73234 -S"'enc_MediaDescriptor'(${1:Val}) $2" -p73235 -tp73236 -a(S"'enc_MegacoMessage'/1" -p73237 -S"'enc_MegacoMessage'(${1:Val}) $2" -p73238 -tp73239 -a(S"'enc_Message'/1" -p73240 -S"'enc_Message'(${1:Val}) $2" -p73241 -tp73242 -a(S"'enc_ModemDescriptor'/1" -p73243 -S"'enc_ModemDescriptor'(${1:Val}) $2" -p73244 -tp73245 -a(S"'enc_ModemType'/1" -p73246 -S"'enc_ModemType'(${1:Val}) $2" -p73247 -tp73248 -a(S"'enc_MuxDescriptor'/1" -p73249 -S"'enc_MuxDescriptor'(${1:Val}) $2" -p73250 -tp73251 -a(S"'enc_MuxType'/1" -p73252 -S"'enc_MuxType'(${1:Val}) $2" -p73253 -tp73254 -a(S"'enc_Name'/1" -p73255 -S"'enc_Name'(${1:Val}) $2" -p73256 -tp73257 -a(S"'enc_NonStandardData'/1" -p73258 -S"'enc_NonStandardData'(${1:Val}) $2" -p73259 -tp73260 -a(S"'enc_NonStandardIdentifier'/1" -p73261 -S"'enc_NonStandardIdentifier'(${1:Val}) $2" -p73262 -tp73263 -a(S"'enc_NotifyCompletion'/1" -p73264 -S"'enc_NotifyCompletion'(${1:Val}) $2" -p73265 -tp73266 -a(S"'enc_NotifyReply'/1" -p73267 -S"'enc_NotifyReply'(${1:Val}) $2" -p73268 -tp73269 -a(S"'enc_NotifyRequest'/1" -p73270 -S"'enc_NotifyRequest'(${1:Val}) $2" -p73271 -tp73272 -a(S"'enc_ObservedEvent'/1" -p73273 -S"'enc_ObservedEvent'(${1:Val}) $2" -p73274 -tp73275 -a(S"'enc_ObservedEventsDescriptor'/1" -p73276 -S"'enc_ObservedEventsDescriptor'(${1:Val}) $2" -p73277 -tp73278 -a(S"'enc_PackagesDescriptor'/1" -p73279 -S"'enc_PackagesDescriptor'(${1:Val}) $2" -p73280 -tp73281 -a(S"'enc_PackagesItem'/1" -p73282 -S"'enc_PackagesItem'(${1:Val}) $2" -p73283 -tp73284 -a(S"'enc_PathName'/1" -p73285 -S"'enc_PathName'(${1:Val}) $2" -p73286 -tp73287 -a(S"'enc_PkgdName'/1" -p73288 -S"'enc_PkgdName'(${1:Val}) $2" -p73289 -tp73290 -a(S"'enc_PropertyGroup'/1" -p73291 -S"'enc_PropertyGroup'(${1:Val}) $2" -p73292 -tp73293 -a(S"'enc_PropertyParm'/1" -p73294 -S"'enc_PropertyParm'(${1:Val}) $2" -p73295 -tp73296 -a(S"'enc_Relation'/1" -p73297 -S"'enc_Relation'(${1:Val}) $2" -p73298 -tp73299 -a(S"'enc_RequestID'/1" -p73300 -S"'enc_RequestID'(${1:Val}) $2" -p73301 -tp73302 -a(S"'enc_RequestedActions'/1" -p73303 -S"'enc_RequestedActions'(${1:Val}) $2" -p73304 -tp73305 -a(S"'enc_RequestedEvent'/1" -p73306 -S"'enc_RequestedEvent'(${1:Val}) $2" -p73307 -tp73308 -a(S"'enc_SecondEventsDescriptor'/1" -p73309 -S"'enc_SecondEventsDescriptor'(${1:Val}) $2" -p73310 -tp73311 -a(S"'enc_SecondRequestedActions'/1" -p73312 -S"'enc_SecondRequestedActions'(${1:Val}) $2" -p73313 -tp73314 -a(S"'enc_SecondRequestedEvent'/1" -p73315 -S"'enc_SecondRequestedEvent'(${1:Val}) $2" -p73316 -tp73317 -a(S"'enc_SecurityParmIndex'/1" -p73318 -S"'enc_SecurityParmIndex'(${1:Val}) $2" -p73319 -tp73320 -a(S"'enc_SegmentNumber'/1" -p73321 -S"'enc_SegmentNumber'(${1:Val}) $2" -p73322 -tp73323 -a(S"'enc_SeqSigList'/1" -p73324 -S"'enc_SeqSigList'(${1:Val}) $2" -p73325 -tp73326 -a(S"'enc_SequenceNum'/1" -p73327 -S"'enc_SequenceNum'(${1:Val}) $2" -p73328 -tp73329 -a(S"'enc_ServiceChangeAddress'/1" -p73330 -S"'enc_ServiceChangeAddress'(${1:Val}) $2" -p73331 -tp73332 -a(S"'enc_ServiceChangeMethod'/1" -p73333 -S"'enc_ServiceChangeMethod'(${1:Val}) $2" -p73334 -tp73335 -a(S"'enc_ServiceChangeParm'/1" -p73336 -S"'enc_ServiceChangeParm'(${1:Val}) $2" -p73337 -tp73338 -a(S"'enc_ServiceChangeProfile'/1" -p73339 -S"'enc_ServiceChangeProfile'(${1:Val}) $2" -p73340 -tp73341 -a(S"'enc_ServiceChangeReply'/1" -p73342 -S"'enc_ServiceChangeReply'(${1:Val}) $2" -p73343 -tp73344 -a(S"'enc_ServiceChangeRequest'/1" -p73345 -S"'enc_ServiceChangeRequest'(${1:Val}) $2" -p73346 -tp73347 -a(S"'enc_ServiceChangeResParm'/1" -p73348 -S"'enc_ServiceChangeResParm'(${1:Val}) $2" -p73349 -tp73350 -a(S"'enc_ServiceChangeResult'/1" -p73351 -S"'enc_ServiceChangeResult'(${1:Val}) $2" -p73352 -tp73353 -a(S"'enc_ServiceState'/1" -p73354 -S"'enc_ServiceState'(${1:Val}) $2" -p73355 -tp73356 -a(S"'enc_SigParameter'/1" -p73357 -S"'enc_SigParameter'(${1:Val}) $2" -p73358 -tp73359 -a(S"'enc_Signal'/1" -p73360 -S"'enc_Signal'(${1:Val}) $2" -p73361 -tp73362 -a(S"'enc_SignalDirection'/1" -p73363 -S"'enc_SignalDirection'(${1:Val}) $2" -p73364 -tp73365 -a(S"'enc_SignalName'/1" -p73366 -S"'enc_SignalName'(${1:Val}) $2" -p73367 -tp73368 -a(S"'enc_SignalRequest'/1" -p73369 -S"'enc_SignalRequest'(${1:Val}) $2" -p73370 -tp73371 -a(S"'enc_SignalType'/1" -p73372 -S"'enc_SignalType'(${1:Val}) $2" -p73373 -tp73374 -a(S"'enc_SignalsDescriptor'/1" -p73375 -S"'enc_SignalsDescriptor'(${1:Val}) $2" -p73376 -tp73377 -a(S"'enc_StatisticsDescriptor'/1" -p73378 -S"'enc_StatisticsDescriptor'(${1:Val}) $2" -p73379 -tp73380 -a(S"'enc_StatisticsParameter'/1" -p73381 -S"'enc_StatisticsParameter'(${1:Val}) $2" -p73382 -tp73383 -a(S"'enc_StreamDescriptor'/1" -p73384 -S"'enc_StreamDescriptor'(${1:Val}) $2" -p73385 -tp73386 -a(S"'enc_StreamID'/1" -p73387 -S"'enc_StreamID'(${1:Val}) $2" -p73388 -tp73389 -a(S"'enc_StreamMode'/1" -p73390 -S"'enc_StreamMode'(${1:Val}) $2" -p73391 -tp73392 -a(S"'enc_StreamParms'/1" -p73393 -S"'enc_StreamParms'(${1:Val}) $2" -p73394 -tp73395 -a(S"'enc_SubtractRequest'/1" -p73396 -S"'enc_SubtractRequest'(${1:Val}) $2" -p73397 -tp73398 -a(S"'enc_TerminationAudit'/1" -p73399 -S"'enc_TerminationAudit'(${1:Val}) $2" -p73400 -tp73401 -a(S"'enc_TerminationID'/1" -p73402 -S"'enc_TerminationID'(${1:Val}) $2" -p73403 -tp73404 -a(S"'enc_TerminationIDList'/1" -p73405 -S"'enc_TerminationIDList'(${1:Val}) $2" -p73406 -tp73407 -a(S"'enc_TerminationStateDescriptor'/1" -p73408 -S"'enc_TerminationStateDescriptor'(${1:Val}) $2" -p73409 -tp73410 -a(S"'enc_TimeNotation'/1" -p73411 -S"'enc_TimeNotation'(${1:Val}) $2" -p73412 -tp73413 -a(S"'enc_TopologyRequest'/1" -p73414 -S"'enc_TopologyRequest'(${1:Val}) $2" -p73415 -tp73416 -a(S"'enc_Transaction'/1" -p73417 -S"'enc_Transaction'(${1:Val}) $2" -p73418 -tp73419 -a(S"'enc_TransactionAck'/1" -p73420 -S"'enc_TransactionAck'(${1:Val}) $2" -p73421 -tp73422 -a(S"'enc_TransactionId'/1" -p73423 -S"'enc_TransactionId'(${1:Val}) $2" -p73424 -tp73425 -a(S"'enc_TransactionPending'/1" -p73426 -S"'enc_TransactionPending'(${1:Val}) $2" -p73427 -tp73428 -a(S"'enc_TransactionReply'/1" -p73429 -S"'enc_TransactionReply'(${1:Val}) $2" -p73430 -tp73431 -a(S"'enc_TransactionRequest'/1" -p73432 -S"'enc_TransactionRequest'(${1:Val}) $2" -p73433 -tp73434 -a(S"'enc_TransactionResponseAck'/1" -p73435 -S"'enc_TransactionResponseAck'(${1:Val}) $2" -p73436 -tp73437 -a(S"'enc_Value'/1" -p73438 -S"'enc_Value'(${1:Val}) $2" -p73439 -tp73440 -a(S"'enc_WildcardField'/1" -p73441 -S"'enc_WildcardField'(${1:Val}) $2" -p73442 -tp73443 -a(S'decode/2' -p73444 -S'decode(${1:Type}, ${2:Data}) $3' -p73445 -tp73446 -a(S'decode_disp/2' -p73447 -S'decode_disp(${1:Type}, ${2:Data}) $3' -p73448 -tp73449 -a(S'encode/2' -p73450 -S'encode(${1:Type}, ${2:Data}) $3' -p73451 -tp73452 -a(S'encode_disp/2' -p73453 -S'encode_disp(${1:Type}, ${2:Data}) $3' -p73454 -tp73455 -a(S'encoding_rule/0' -p73456 -S'encoding_rule() $1' -p73457 -tp73458 -a(S'info/0' -p73459 -S'info() $1' -p73460 -tp73461 -asS'wxNotebookEvent' -p73462 -(lp73463 -(S'allow/1' -p73464 -S'allow(${1:This}) $2' -p73465 -tp73466 -a(S'getClientData/1' -p73467 -S'getClientData(${1:This}) $2' -p73468 -tp73469 -a(S'getExtraLong/1' -p73470 -S'getExtraLong(${1:This}) $2' -p73471 -tp73472 -a(S'getId/1' -p73473 -S'getId(${1:This}) $2' -p73474 -tp73475 -a(S'getInt/1' -p73476 -S'getInt(${1:This}) $2' -p73477 -tp73478 -a(S'getOldSelection/1' -p73479 -S'getOldSelection(${1:This}) $2' -p73480 -tp73481 -a(S'getSelection/1' -p73482 -S'getSelection(${1:This}) $2' -p73483 -tp73484 -a(S'getSkipped/1' -p73485 -S'getSkipped(${1:This}) $2' -p73486 -tp73487 -a(S'getString/1' -p73488 -S'getString(${1:This}) $2' -p73489 -tp73490 -a(S'getTimestamp/1' -p73491 -S'getTimestamp(${1:This}) $2' -p73492 -tp73493 -a(S'isAllowed/1' -p73494 -S'isAllowed(${1:This}) $2' -p73495 -tp73496 -a(S'isChecked/1' -p73497 -S'isChecked(${1:This}) $2' -p73498 -tp73499 -a(S'isCommandEvent/1' -p73500 -S'isCommandEvent(${1:This}) $2' -p73501 -tp73502 -a(S'isSelection/1' -p73503 -S'isSelection(${1:This}) $2' -p73504 -tp73505 -a(S'parent_class/1' -p73506 -S'parent_class(${1:Param1}) $2' -p73507 -tp73508 -a(S'resumePropagation/2' -p73509 -S'resumePropagation(${1:This}, ${2:PropagationLevel}) $3' -p73510 -tp73511 -a(S'setInt/2' -p73512 -S'setInt(${1:This}, ${2:I}) $3' -p73513 -tp73514 -a(S'setOldSelection/2' -p73515 -S'setOldSelection(${1:This}, ${2:NOldSel}) $3' -p73516 -tp73517 -a(S'setSelection/2' -p73518 -S'setSelection(${1:This}, ${2:NSel}) $3' -p73519 -tp73520 -a(S'setString/2' -p73521 -S'setString(${1:This}, ${2:S}) $3' -p73522 -tp73523 -a(S'shouldPropagate/1' -p73524 -S'shouldPropagate(${1:This}) $2' -p73525 -tp73526 -a(S'skip/1' -p73527 -S'skip(${1:This}) $2' -p73528 -tp73529 -a(S'skip/2' -p73530 -S'skip(${1:This}, ${2:Options}) $3' -p73531 -tp73532 -a(S'stopPropagation/1' -p73533 -S'stopPropagation(${1:This}) $2' -p73534 -tp73535 -a(S'veto/1' -p73536 -S'veto(${1:This}) $2' -p73537 -tp73538 -asS'diameter_peer_fsm_sup' -p73539 -(lp73540 -(S'init/1' -p73541 -S'init(${1:Param1}) $2' -p73542 -tp73543 -a(S'start_child/1' -p73544 -S'start_child(${1:T}) $2' -p73545 -tp73546 -a(S'start_link/0' -p73547 -S'start_link() $1' -p73548 -tp73549 -asS'asn1rt_ber_bin_v2' -p73550 -(lp73551 -(S'cindex/3' -p73552 -S'cindex(${1:Ix}, ${2:Val}, ${3:Cname}) $4' -p73553 -tp73554 -a(S'decode/1' -p73555 -S'decode(${1:B}) $2' -p73556 -tp73557 -a(S'decode/2' -p73558 -S'decode(${1:B}, ${2:Param2}) $3' -p73559 -tp73560 -a(S'decode_BMP_string/3' -p73561 -S'decode_BMP_string(${1:Buffer}, ${2:Range}, ${3:Tags}) $4' -p73562 -tp73563 -a(S'decode_UTF8_string/2' -p73564 -S'decode_UTF8_string(${1:Tlv}, ${2:TagsIn}) $3' -p73565 -tp73566 -a(S'decode_bit_string/4' -p73567 -S'decode_bit_string(${1:Buffer}, ${2:Range}, ${3:NamedNumberList}, ${4:Tags}) $5' -p73568 -tp73569 -a(S'decode_boolean/2' -p73570 -S'decode_boolean(${1:Tlv}, ${2:TagIn}) $3' -p73571 -tp73572 -a(S'decode_compact_bit_string/4' -p73573 -S'decode_compact_bit_string(${1:Buffer}, ${2:Range}, ${3:NamedNumberList}, ${4:Tags}) $5' -p73574 -tp73575 -a(S'decode_enumerated/4' -p73576 -S'decode_enumerated(${1:Tlv}, ${2:Range}, ${3:NamedNumberList}, ${4:Tags}) $5' -p73577 -tp73578 -a(S'decode_generalized_time/3' -p73579 -S'decode_generalized_time(${1:Tlv}, ${2:Param2}, ${3:Tags}) $4' -p73580 -tp73581 -a(S'decode_integer/3' -p73582 -S'decode_integer(${1:Tlv}, ${2:Range}, ${3:TagIn}) $4' -p73583 -tp73584 -a(S'decode_integer/4' -p73585 -S'decode_integer(${1:Tlv}, ${2:Range}, ${3:NamedNumberList}, ${4:TagIn}) $5' -p73586 -tp73587 -a(S'decode_length/1' -p73588 -S'decode_length(${1:Param1}) $2' -p73589 -tp73590 -a(S'decode_null/2' -p73591 -S'decode_null(${1:Tlv}, ${2:Tags}) $3' -p73592 -tp73593 -a(S'decode_object_identifier/2' -p73594 -S'decode_object_identifier(${1:Tlv}, ${2:Tags}) $3' -p73595 -tp73596 -a(S'decode_octet_string/3' -p73597 -S'decode_octet_string(${1:Buffer}, ${2:Range}, ${3:Tags}) $4' -p73598 -tp73599 -a(S'decode_open_type/2' -p73600 -S'decode_open_type(${1:Tlv}, ${2:TagIn}) $3' -p73601 -tp73602 -a(S'decode_open_type/3' -p73603 -S'decode_open_type(${1:Tlv}, ${2:TagIn}, ${3:Method}) $4' -p73604 -tp73605 -a(S'decode_open_type_as_binary/2' -p73606 -S'decode_open_type_as_binary(${1:Tlv}, ${2:TagIn}) $3' -p73607 -tp73608 -a(S'decode_open_type_as_binary/3' -p73609 -S'decode_open_type_as_binary(${1:Tlv}, ${2:TagIn}, ${3:Method}) $4' -p73610 -tp73611 -a(S'decode_primitive_incomplete/2' -p73612 -S'decode_primitive_incomplete(${1:Param1}, ${2:Bin}) $3' -p73613 -tp73614 -a(S'decode_real/2' -p73615 -S'decode_real(${1:Tlv}, ${2:Tags}) $3' -p73616 -tp73617 -a(S'decode_relative_oid/2' -p73618 -S'decode_relative_oid(${1:Tlv}, ${2:Tags}) $3' -p73619 -tp73620 -a(S'decode_restricted_string/4' -p73621 -S'decode_restricted_string(${1:Buffer}, ${2:Range}, ${3:StringType}, ${4:Tags}) $5' -p73622 -tp73623 -a(S'decode_selective/2' -p73624 -S'decode_selective(${1:P}, ${2:Binary}) $3' -p73625 -tp73626 -a(S'decode_tag_and_length/1' -p73627 -S'decode_tag_and_length(${1:Param1}) $2' -p73628 -tp73629 -a(S'decode_universal_string/3' -p73630 -S'decode_universal_string(${1:Buffer}, ${2:Range}, ${3:Tags}) $4' -p73631 -tp73632 -a(S'decode_utc_time/3' -p73633 -S'decode_utc_time(${1:Tlv}, ${2:Param2}, ${3:Tags}) $4' -p73634 -tp73635 -a(S'encode/1' -p73636 -S'encode(${1:Tlv}) $2' -p73637 -tp73638 -a(S'encode/2' -p73639 -S'encode(${1:Tlv}, ${2:Method}) $3' -p73640 -tp73641 -a(S'encode_BMP_string/3' -p73642 -S'encode_BMP_string(${1:C}, ${2:BMPString}, ${3:TagIn}) $4' -p73643 -tp73644 -a(S'encode_UTF8_string/3' -p73645 -S'encode_UTF8_string(${1:Param1}, ${2:UTF8String}, ${3:TagIn}) $4' -p73646 -tp73647 -a(S'encode_bit_string/4' -p73648 -S'encode_bit_string(${1:C}, ${2:IntegerVal}, ${3:NamedBitList}, ${4:TagIn}) $5' -p73649 -tp73650 -a(S'encode_boolean/2' -p73651 -S'encode_boolean(${1:X}, ${2:TagIn}) $3' -p73652 -tp73653 -a(S'encode_enumerated/2' -p73654 -S'encode_enumerated(${1:Val}, ${2:TagIn}) $3' -p73655 -tp73656 -a(S'encode_enumerated/4' -p73657 -S'encode_enumerated(${1:C}, ${2:Val}, ${3:NamedNumberList}, ${4:TagIn}) $5' -p73658 -tp73659 -a(S'encode_generalized_time/3' -p73660 -S'encode_generalized_time(${1:C}, ${2:OctetList}, ${3:TagIn}) $4' -p73661 -tp73662 -a(S'encode_integer/3' -p73663 -S'encode_integer(${1:C}, ${2:Val}, ${3:Tag}) $4' -p73664 -tp73665 -a(S'encode_integer/4' -p73666 -S'encode_integer(${1:C}, ${2:Val}, ${3:NamedNumberList}, ${4:Tag}) $5' -p73667 -tp73668 -a(S'encode_length/1' -p73669 -S'encode_length(${1:L}) $2' -p73670 -tp73671 -a(S'encode_null/2' -p73672 -S'encode_null(${1:Param1}, ${2:TagIn}) $3' -p73673 -tp73674 -a(S'encode_object_identifier/2' -p73675 -S'encode_object_identifier(${1:Val}, ${2:TagIn}) $3' -p73676 -tp73677 -a(S'encode_octet_string/3' -p73678 -S'encode_octet_string(${1:C}, ${2:OctetList}, ${3:TagIn}) $4' -p73679 -tp73680 -a(S'encode_open_type/1' -p73681 -S'encode_open_type(${1:Val}) $2' -p73682 -tp73683 -a(S'encode_open_type/2' -p73684 -S'encode_open_type(${1:Val}, ${2:T}) $3' -p73685 -tp73686 -a(S'encode_real/3' -p73687 -S'encode_real(${1:C}, ${2:Val}, ${3:TagIn}) $4' -p73688 -tp73689 -a(S'encode_relative_oid/2' -p73690 -S'encode_relative_oid(${1:Val}, ${2:TagIn}) $3' -p73691 -tp73692 -a(S'encode_restricted_string/4' -p73693 -S'encode_restricted_string(${1:C}, ${2:Param2}, ${3:StringType}, ${4:TagIn}) $5' -p73694 -tp73695 -a(S'encode_tag_val/1' -p73696 -S'encode_tag_val(${1:Param1}) $2' -p73697 -tp73698 -a(S'encode_tags/3' -p73699 -S'encode_tags(${1:Param1}, ${2:BytesSoFar}, ${3:LenSoFar}) $4' -p73700 -tp73701 -a(S'encode_universal_string/3' -p73702 -S'encode_universal_string(${1:C}, ${2:Universal}, ${3:TagIn}) $4' -p73703 -tp73704 -a(S'encode_utc_time/3' -p73705 -S'encode_utc_time(${1:C}, ${2:OctetList}, ${3:TagIn}) $4' -p73706 -tp73707 -a(S'fixoptionals/2' -p73708 -S'fixoptionals(${1:OptList}, ${2:Val}) $3' -p73709 -tp73710 -a(S'is_nif_loadable/0' -p73711 -S'is_nif_loadable() $1' -p73712 -tp73713 -a(S'list_to_record/2' -p73714 -S'list_to_record(${1:Name}, ${2:List}) $3' -p73715 -tp73716 -a(S'match_tags/2' -p73717 -S'match_tags(${1:Tlv}, ${2:Param2}) $3' -p73718 -tp73719 -a(S'skip_ExtensionAdditions/2' -p73720 -S'skip_ExtensionAdditions(${1:Param1}, ${2:Tags}) $3' -p73721 -tp73722 -asS'tv' -p73723 -(lp73724 -(S'start/0' -p73725 -S'start() $1' -p73726 -tp73727 -a(S'start_browser/6' -p73728 -S'start_browser(${1:Node}, ${2:LocalNode}, ${3:TableId}, ${4:KindOfTable}, ${5:TableName}, ${6:ErrMsgMode}) $7' -p73729 -tp73730 -asS'megaco_per_bin_media_gateway_control_prev3a' -p73731 -(lp73732 -(S"'dec_ActionReply'/2" -p73733 -S"'dec_ActionReply'(${1:Bytes}, ${2:Param2}) $3" -p73734 -tp73735 -a(S"'dec_ActionRequest'/2" -p73736 -S"'dec_ActionRequest'(${1:Bytes}, ${2:Param2}) $3" -p73737 -tp73738 -a(S"'dec_AmmDescriptor'/2" -p73739 -S"'dec_AmmDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p73740 -tp73741 -a(S"'dec_AmmRequest'/2" -p73742 -S"'dec_AmmRequest'(${1:Bytes}, ${2:Param2}) $3" -p73743 -tp73744 -a(S"'dec_AmmsReply'/2" -p73745 -S"'dec_AmmsReply'(${1:Bytes}, ${2:Param2}) $3" -p73746 -tp73747 -a(S"'dec_AuditDescriptor'/2" -p73748 -S"'dec_AuditDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p73749 -tp73750 -a(S"'dec_AuditReply'/2" -p73751 -S"'dec_AuditReply'(${1:Bytes}, ${2:Param2}) $3" -p73752 -tp73753 -a(S"'dec_AuditRequest'/2" -p73754 -S"'dec_AuditRequest'(${1:Bytes}, ${2:Param2}) $3" -p73755 -tp73756 -a(S"'dec_AuditResult'/2" -p73757 -S"'dec_AuditResult'(${1:Bytes}, ${2:Param2}) $3" -p73758 -tp73759 -a(S"'dec_AuditReturnParameter'/2" -p73760 -S"'dec_AuditReturnParameter'(${1:Bytes}, ${2:Param2}) $3" -p73761 -tp73762 -a(S"'dec_AuthData'/2" -p73763 -S"'dec_AuthData'(${1:Bytes}, ${2:Param2}) $3" -p73764 -tp73765 -a(S"'dec_AuthenticationHeader'/2" -p73766 -S"'dec_AuthenticationHeader'(${1:Bytes}, ${2:Param2}) $3" -p73767 -tp73768 -a(S"'dec_Command'/2" -p73769 -S"'dec_Command'(${1:Bytes}, ${2:Param2}) $3" -p73770 -tp73771 -a(S"'dec_CommandReply'/2" -p73772 -S"'dec_CommandReply'(${1:Bytes}, ${2:Param2}) $3" -p73773 -tp73774 -a(S"'dec_CommandRequest'/2" -p73775 -S"'dec_CommandRequest'(${1:Bytes}, ${2:Param2}) $3" -p73776 -tp73777 -a(S"'dec_ContextAttrAuditRequest'/2" -p73778 -S"'dec_ContextAttrAuditRequest'(${1:Bytes}, ${2:Param2}) $3" -p73779 -tp73780 -a(S"'dec_ContextID'/2" -p73781 -S"'dec_ContextID'(${1:Bytes}, ${2:Param2}) $3" -p73782 -tp73783 -a(S"'dec_ContextRequest'/2" -p73784 -S"'dec_ContextRequest'(${1:Bytes}, ${2:Param2}) $3" -p73785 -tp73786 -a(S"'dec_DigitMapDescriptor'/2" -p73787 -S"'dec_DigitMapDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p73788 -tp73789 -a(S"'dec_DigitMapName'/2" -p73790 -S"'dec_DigitMapName'(${1:Bytes}, ${2:Param2}) $3" -p73791 -tp73792 -a(S"'dec_DigitMapValue'/2" -p73793 -S"'dec_DigitMapValue'(${1:Bytes}, ${2:Param2}) $3" -p73794 -tp73795 -a(S"'dec_DomainName'/2" -p73796 -S"'dec_DomainName'(${1:Bytes}, ${2:Param2}) $3" -p73797 -tp73798 -a(S"'dec_ErrorCode'/2" -p73799 -S"'dec_ErrorCode'(${1:Bytes}, ${2:Param2}) $3" -p73800 -tp73801 -a(S"'dec_ErrorDescriptor'/2" -p73802 -S"'dec_ErrorDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p73803 -tp73804 -a(S"'dec_ErrorText'/2" -p73805 -S"'dec_ErrorText'(${1:Bytes}, ${2:Param2}) $3" -p73806 -tp73807 -a(S"'dec_EventBufferControl'/2" -p73808 -S"'dec_EventBufferControl'(${1:Bytes}, ${2:Param2}) $3" -p73809 -tp73810 -a(S"'dec_EventBufferDescriptor'/2" -p73811 -S"'dec_EventBufferDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p73812 -tp73813 -a(S"'dec_EventDM'/2" -p73814 -S"'dec_EventDM'(${1:Bytes}, ${2:Param2}) $3" -p73815 -tp73816 -a(S"'dec_EventName'/2" -p73817 -S"'dec_EventName'(${1:Bytes}, ${2:Param2}) $3" -p73818 -tp73819 -a(S"'dec_EventParameter'/2" -p73820 -S"'dec_EventParameter'(${1:Bytes}, ${2:Param2}) $3" -p73821 -tp73822 -a(S"'dec_EventSpec'/2" -p73823 -S"'dec_EventSpec'(${1:Bytes}, ${2:Param2}) $3" -p73824 -tp73825 -a(S"'dec_EventsDescriptor'/2" -p73826 -S"'dec_EventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p73827 -tp73828 -a(S"'dec_H221NonStandard'/2" -p73829 -S"'dec_H221NonStandard'(${1:Bytes}, ${2:Param2}) $3" -p73830 -tp73831 -a(S"'dec_IP4Address'/2" -p73832 -S"'dec_IP4Address'(${1:Bytes}, ${2:Param2}) $3" -p73833 -tp73834 -a(S"'dec_IP6Address'/2" -p73835 -S"'dec_IP6Address'(${1:Bytes}, ${2:Param2}) $3" -p73836 -tp73837 -a(S"'dec_IndAudDigitMapDescriptor'/2" -p73838 -S"'dec_IndAudDigitMapDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p73839 -tp73840 -a(S"'dec_IndAudEventBufferDescriptor'/2" -p73841 -S"'dec_IndAudEventBufferDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p73842 -tp73843 -a(S"'dec_IndAudEventsDescriptor'/2" -p73844 -S"'dec_IndAudEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p73845 -tp73846 -a(S"'dec_IndAudLocalControlDescriptor'/2" -p73847 -S"'dec_IndAudLocalControlDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p73848 -tp73849 -a(S"'dec_IndAudLocalRemoteDescriptor'/2" -p73850 -S"'dec_IndAudLocalRemoteDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p73851 -tp73852 -a(S"'dec_IndAudMediaDescriptor'/2" -p73853 -S"'dec_IndAudMediaDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p73854 -tp73855 -a(S"'dec_IndAudPackagesDescriptor'/2" -p73856 -S"'dec_IndAudPackagesDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p73857 -tp73858 -a(S"'dec_IndAudPropertyGroup'/2" -p73859 -S"'dec_IndAudPropertyGroup'(${1:Bytes}, ${2:Param2}) $3" -p73860 -tp73861 -a(S"'dec_IndAudPropertyParm'/2" -p73862 -S"'dec_IndAudPropertyParm'(${1:Bytes}, ${2:Param2}) $3" -p73863 -tp73864 -a(S"'dec_IndAudSeqSigList'/2" -p73865 -S"'dec_IndAudSeqSigList'(${1:Bytes}, ${2:Param2}) $3" -p73866 -tp73867 -a(S"'dec_IndAudSignal'/2" -p73868 -S"'dec_IndAudSignal'(${1:Bytes}, ${2:Param2}) $3" -p73869 -tp73870 -a(S"'dec_IndAudSignalsDescriptor'/2" -p73871 -S"'dec_IndAudSignalsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p73872 -tp73873 -a(S"'dec_IndAudStatisticsDescriptor'/2" -p73874 -S"'dec_IndAudStatisticsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p73875 -tp73876 -a(S"'dec_IndAudStreamDescriptor'/2" -p73877 -S"'dec_IndAudStreamDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p73878 -tp73879 -a(S"'dec_IndAudStreamParms'/2" -p73880 -S"'dec_IndAudStreamParms'(${1:Bytes}, ${2:Param2}) $3" -p73881 -tp73882 -a(S"'dec_IndAudTerminationStateDescriptor'/2" -p73883 -S"'dec_IndAudTerminationStateDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p73884 -tp73885 -a(S"'dec_IndAuditParameter'/2" -p73886 -S"'dec_IndAuditParameter'(${1:Bytes}, ${2:Param2}) $3" -p73887 -tp73888 -a(S"'dec_LocalControlDescriptor'/2" -p73889 -S"'dec_LocalControlDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p73890 -tp73891 -a(S"'dec_LocalRemoteDescriptor'/2" -p73892 -S"'dec_LocalRemoteDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p73893 -tp73894 -a(S"'dec_MId'/2" -p73895 -S"'dec_MId'(${1:Bytes}, ${2:Param2}) $3" -p73896 -tp73897 -a(S"'dec_MediaDescriptor'/2" -p73898 -S"'dec_MediaDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p73899 -tp73900 -a(S"'dec_MegacoMessage'/2" -p73901 -S"'dec_MegacoMessage'(${1:Bytes}, ${2:Param2}) $3" -p73902 -tp73903 -a(S"'dec_Message'/2" -p73904 -S"'dec_Message'(${1:Bytes}, ${2:Param2}) $3" -p73905 -tp73906 -a(S"'dec_ModemDescriptor'/2" -p73907 -S"'dec_ModemDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p73908 -tp73909 -a(S"'dec_ModemType'/2" -p73910 -S"'dec_ModemType'(${1:Bytes}, ${2:Param2}) $3" -p73911 -tp73912 -a(S"'dec_MuxDescriptor'/2" -p73913 -S"'dec_MuxDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p73914 -tp73915 -a(S"'dec_MuxType'/2" -p73916 -S"'dec_MuxType'(${1:Bytes}, ${2:Param2}) $3" -p73917 -tp73918 -a(S"'dec_Name'/2" -p73919 -S"'dec_Name'(${1:Bytes}, ${2:Param2}) $3" -p73920 -tp73921 -a(S"'dec_NonStandardData'/2" -p73922 -S"'dec_NonStandardData'(${1:Bytes}, ${2:Param2}) $3" -p73923 -tp73924 -a(S"'dec_NonStandardIdentifier'/2" -p73925 -S"'dec_NonStandardIdentifier'(${1:Bytes}, ${2:Param2}) $3" -p73926 -tp73927 -a(S"'dec_NotifyCompletion'/2" -p73928 -S"'dec_NotifyCompletion'(${1:Bytes}, ${2:Param2}) $3" -p73929 -tp73930 -a(S"'dec_NotifyReply'/2" -p73931 -S"'dec_NotifyReply'(${1:Bytes}, ${2:Param2}) $3" -p73932 -tp73933 -a(S"'dec_NotifyRequest'/2" -p73934 -S"'dec_NotifyRequest'(${1:Bytes}, ${2:Param2}) $3" -p73935 -tp73936 -a(S"'dec_ObservedEvent'/2" -p73937 -S"'dec_ObservedEvent'(${1:Bytes}, ${2:Param2}) $3" -p73938 -tp73939 -a(S"'dec_ObservedEventsDescriptor'/2" -p73940 -S"'dec_ObservedEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p73941 -tp73942 -a(S"'dec_PackagesDescriptor'/2" -p73943 -S"'dec_PackagesDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p73944 -tp73945 -a(S"'dec_PackagesItem'/2" -p73946 -S"'dec_PackagesItem'(${1:Bytes}, ${2:Param2}) $3" -p73947 -tp73948 -a(S"'dec_PathName'/2" -p73949 -S"'dec_PathName'(${1:Bytes}, ${2:Param2}) $3" -p73950 -tp73951 -a(S"'dec_PkgdName'/2" -p73952 -S"'dec_PkgdName'(${1:Bytes}, ${2:Param2}) $3" -p73953 -tp73954 -a(S"'dec_PropertyGroup'/2" -p73955 -S"'dec_PropertyGroup'(${1:Bytes}, ${2:Param2}) $3" -p73956 -tp73957 -a(S"'dec_PropertyParm'/2" -p73958 -S"'dec_PropertyParm'(${1:Bytes}, ${2:Param2}) $3" -p73959 -tp73960 -a(S"'dec_Relation'/2" -p73961 -S"'dec_Relation'(${1:Bytes}, ${2:Param2}) $3" -p73962 -tp73963 -a(S"'dec_RequestID'/2" -p73964 -S"'dec_RequestID'(${1:Bytes}, ${2:Param2}) $3" -p73965 -tp73966 -a(S"'dec_RequestedActions'/2" -p73967 -S"'dec_RequestedActions'(${1:Bytes}, ${2:Param2}) $3" -p73968 -tp73969 -a(S"'dec_RequestedEvent'/2" -p73970 -S"'dec_RequestedEvent'(${1:Bytes}, ${2:Param2}) $3" -p73971 -tp73972 -a(S"'dec_SecondEventsDescriptor'/2" -p73973 -S"'dec_SecondEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p73974 -tp73975 -a(S"'dec_SecondRequestedActions'/2" -p73976 -S"'dec_SecondRequestedActions'(${1:Bytes}, ${2:Param2}) $3" -p73977 -tp73978 -a(S"'dec_SecondRequestedEvent'/2" -p73979 -S"'dec_SecondRequestedEvent'(${1:Bytes}, ${2:Param2}) $3" -p73980 -tp73981 -a(S"'dec_SecurityParmIndex'/2" -p73982 -S"'dec_SecurityParmIndex'(${1:Bytes}, ${2:Param2}) $3" -p73983 -tp73984 -a(S"'dec_SegmentNumber'/2" -p73985 -S"'dec_SegmentNumber'(${1:Bytes}, ${2:Param2}) $3" -p73986 -tp73987 -a(S"'dec_SeqSigList'/2" -p73988 -S"'dec_SeqSigList'(${1:Bytes}, ${2:Param2}) $3" -p73989 -tp73990 -a(S"'dec_SequenceNum'/2" -p73991 -S"'dec_SequenceNum'(${1:Bytes}, ${2:Param2}) $3" -p73992 -tp73993 -a(S"'dec_ServiceChangeAddress'/2" -p73994 -S"'dec_ServiceChangeAddress'(${1:Bytes}, ${2:Param2}) $3" -p73995 -tp73996 -a(S"'dec_ServiceChangeMethod'/2" -p73997 -S"'dec_ServiceChangeMethod'(${1:Bytes}, ${2:Param2}) $3" -p73998 -tp73999 -a(S"'dec_ServiceChangeParm'/2" -p74000 -S"'dec_ServiceChangeParm'(${1:Bytes}, ${2:Param2}) $3" -p74001 -tp74002 -a(S"'dec_ServiceChangeProfile'/2" -p74003 -S"'dec_ServiceChangeProfile'(${1:Bytes}, ${2:Param2}) $3" -p74004 -tp74005 -a(S"'dec_ServiceChangeReply'/2" -p74006 -S"'dec_ServiceChangeReply'(${1:Bytes}, ${2:Param2}) $3" -p74007 -tp74008 -a(S"'dec_ServiceChangeRequest'/2" -p74009 -S"'dec_ServiceChangeRequest'(${1:Bytes}, ${2:Param2}) $3" -p74010 -tp74011 -a(S"'dec_ServiceChangeResParm'/2" -p74012 -S"'dec_ServiceChangeResParm'(${1:Bytes}, ${2:Param2}) $3" -p74013 -tp74014 -a(S"'dec_ServiceChangeResult'/2" -p74015 -S"'dec_ServiceChangeResult'(${1:Bytes}, ${2:Param2}) $3" -p74016 -tp74017 -a(S"'dec_ServiceState'/2" -p74018 -S"'dec_ServiceState'(${1:Bytes}, ${2:Param2}) $3" -p74019 -tp74020 -a(S"'dec_SigParameter'/2" -p74021 -S"'dec_SigParameter'(${1:Bytes}, ${2:Param2}) $3" -p74022 -tp74023 -a(S"'dec_Signal'/2" -p74024 -S"'dec_Signal'(${1:Bytes}, ${2:Param2}) $3" -p74025 -tp74026 -a(S"'dec_SignalDirection'/2" -p74027 -S"'dec_SignalDirection'(${1:Bytes}, ${2:Param2}) $3" -p74028 -tp74029 -a(S"'dec_SignalName'/2" -p74030 -S"'dec_SignalName'(${1:Bytes}, ${2:Param2}) $3" -p74031 -tp74032 -a(S"'dec_SignalRequest'/2" -p74033 -S"'dec_SignalRequest'(${1:Bytes}, ${2:Param2}) $3" -p74034 -tp74035 -a(S"'dec_SignalType'/2" -p74036 -S"'dec_SignalType'(${1:Bytes}, ${2:Param2}) $3" -p74037 -tp74038 -a(S"'dec_SignalsDescriptor'/2" -p74039 -S"'dec_SignalsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p74040 -tp74041 -a(S"'dec_StatisticsDescriptor'/2" -p74042 -S"'dec_StatisticsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p74043 -tp74044 -a(S"'dec_StatisticsParameter'/2" -p74045 -S"'dec_StatisticsParameter'(${1:Bytes}, ${2:Param2}) $3" -p74046 -tp74047 -a(S"'dec_StreamDescriptor'/2" -p74048 -S"'dec_StreamDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p74049 -tp74050 -a(S"'dec_StreamID'/2" -p74051 -S"'dec_StreamID'(${1:Bytes}, ${2:Param2}) $3" -p74052 -tp74053 -a(S"'dec_StreamMode'/2" -p74054 -S"'dec_StreamMode'(${1:Bytes}, ${2:Param2}) $3" -p74055 -tp74056 -a(S"'dec_StreamParms'/2" -p74057 -S"'dec_StreamParms'(${1:Bytes}, ${2:Param2}) $3" -p74058 -tp74059 -a(S"'dec_SubtractRequest'/2" -p74060 -S"'dec_SubtractRequest'(${1:Bytes}, ${2:Param2}) $3" -p74061 -tp74062 -a(S"'dec_TerminationAudit'/2" -p74063 -S"'dec_TerminationAudit'(${1:Bytes}, ${2:Param2}) $3" -p74064 -tp74065 -a(S"'dec_TerminationID'/2" -p74066 -S"'dec_TerminationID'(${1:Bytes}, ${2:Param2}) $3" -p74067 -tp74068 -a(S"'dec_TerminationIDList'/2" -p74069 -S"'dec_TerminationIDList'(${1:Bytes}, ${2:Param2}) $3" -p74070 -tp74071 -a(S"'dec_TerminationStateDescriptor'/2" -p74072 -S"'dec_TerminationStateDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p74073 -tp74074 -a(S"'dec_TimeNotation'/2" -p74075 -S"'dec_TimeNotation'(${1:Bytes}, ${2:Param2}) $3" -p74076 -tp74077 -a(S"'dec_TopologyRequest'/2" -p74078 -S"'dec_TopologyRequest'(${1:Bytes}, ${2:Param2}) $3" -p74079 -tp74080 -a(S"'dec_Transaction'/2" -p74081 -S"'dec_Transaction'(${1:Bytes}, ${2:Param2}) $3" -p74082 -tp74083 -a(S"'dec_TransactionAck'/2" -p74084 -S"'dec_TransactionAck'(${1:Bytes}, ${2:Param2}) $3" -p74085 -tp74086 -a(S"'dec_TransactionId'/2" -p74087 -S"'dec_TransactionId'(${1:Bytes}, ${2:Param2}) $3" -p74088 -tp74089 -a(S"'dec_TransactionPending'/2" -p74090 -S"'dec_TransactionPending'(${1:Bytes}, ${2:Param2}) $3" -p74091 -tp74092 -a(S"'dec_TransactionReply'/2" -p74093 -S"'dec_TransactionReply'(${1:Bytes}, ${2:Param2}) $3" -p74094 -tp74095 -a(S"'dec_TransactionRequest'/2" -p74096 -S"'dec_TransactionRequest'(${1:Bytes}, ${2:Param2}) $3" -p74097 -tp74098 -a(S"'dec_TransactionResponseAck'/2" -p74099 -S"'dec_TransactionResponseAck'(${1:Bytes}, ${2:Param2}) $3" -p74100 -tp74101 -a(S"'dec_Value'/2" -p74102 -S"'dec_Value'(${1:Bytes}, ${2:Param2}) $3" -p74103 -tp74104 -a(S"'dec_WildcardField'/2" -p74105 -S"'dec_WildcardField'(${1:Bytes}, ${2:Param2}) $3" -p74106 -tp74107 -a(S"'enc_ActionReply'/1" -p74108 -S"'enc_ActionReply'(${1:Val}) $2" -p74109 -tp74110 -a(S"'enc_ActionRequest'/1" -p74111 -S"'enc_ActionRequest'(${1:Val}) $2" -p74112 -tp74113 -a(S"'enc_AmmDescriptor'/1" -p74114 -S"'enc_AmmDescriptor'(${1:Val}) $2" -p74115 -tp74116 -a(S"'enc_AmmRequest'/1" -p74117 -S"'enc_AmmRequest'(${1:Val}) $2" -p74118 -tp74119 -a(S"'enc_AmmsReply'/1" -p74120 -S"'enc_AmmsReply'(${1:Val}) $2" -p74121 -tp74122 -a(S"'enc_AuditDescriptor'/1" -p74123 -S"'enc_AuditDescriptor'(${1:Val}) $2" -p74124 -tp74125 -a(S"'enc_AuditReply'/1" -p74126 -S"'enc_AuditReply'(${1:Val}) $2" -p74127 -tp74128 -a(S"'enc_AuditRequest'/1" -p74129 -S"'enc_AuditRequest'(${1:Val}) $2" -p74130 -tp74131 -a(S"'enc_AuditResult'/1" -p74132 -S"'enc_AuditResult'(${1:Val}) $2" -p74133 -tp74134 -a(S"'enc_AuditReturnParameter'/1" -p74135 -S"'enc_AuditReturnParameter'(${1:Val}) $2" -p74136 -tp74137 -a(S"'enc_AuthData'/1" -p74138 -S"'enc_AuthData'(${1:Val}) $2" -p74139 -tp74140 -a(S"'enc_AuthenticationHeader'/1" -p74141 -S"'enc_AuthenticationHeader'(${1:Val}) $2" -p74142 -tp74143 -a(S"'enc_Command'/1" -p74144 -S"'enc_Command'(${1:Val}) $2" -p74145 -tp74146 -a(S"'enc_CommandReply'/1" -p74147 -S"'enc_CommandReply'(${1:Val}) $2" -p74148 -tp74149 -a(S"'enc_CommandRequest'/1" -p74150 -S"'enc_CommandRequest'(${1:Val}) $2" -p74151 -tp74152 -a(S"'enc_ContextAttrAuditRequest'/1" -p74153 -S"'enc_ContextAttrAuditRequest'(${1:Val}) $2" -p74154 -tp74155 -a(S"'enc_ContextID'/1" -p74156 -S"'enc_ContextID'(${1:Val}) $2" -p74157 -tp74158 -a(S"'enc_ContextRequest'/1" -p74159 -S"'enc_ContextRequest'(${1:Val}) $2" -p74160 -tp74161 -a(S"'enc_DigitMapDescriptor'/1" -p74162 -S"'enc_DigitMapDescriptor'(${1:Val}) $2" -p74163 -tp74164 -a(S"'enc_DigitMapName'/1" -p74165 -S"'enc_DigitMapName'(${1:Val}) $2" -p74166 -tp74167 -a(S"'enc_DigitMapValue'/1" -p74168 -S"'enc_DigitMapValue'(${1:Val}) $2" -p74169 -tp74170 -a(S"'enc_DomainName'/1" -p74171 -S"'enc_DomainName'(${1:Val}) $2" -p74172 -tp74173 -a(S"'enc_ErrorCode'/1" -p74174 -S"'enc_ErrorCode'(${1:Val}) $2" -p74175 -tp74176 -a(S"'enc_ErrorDescriptor'/1" -p74177 -S"'enc_ErrorDescriptor'(${1:Val}) $2" -p74178 -tp74179 -a(S"'enc_ErrorText'/1" -p74180 -S"'enc_ErrorText'(${1:Val}) $2" -p74181 -tp74182 -a(S"'enc_EventBufferControl'/1" -p74183 -S"'enc_EventBufferControl'(${1:Val}) $2" -p74184 -tp74185 -a(S"'enc_EventBufferDescriptor'/1" -p74186 -S"'enc_EventBufferDescriptor'(${1:Val}) $2" -p74187 -tp74188 -a(S"'enc_EventDM'/1" -p74189 -S"'enc_EventDM'(${1:Val}) $2" -p74190 -tp74191 -a(S"'enc_EventName'/1" -p74192 -S"'enc_EventName'(${1:Val}) $2" -p74193 -tp74194 -a(S"'enc_EventParameter'/1" -p74195 -S"'enc_EventParameter'(${1:Val}) $2" -p74196 -tp74197 -a(S"'enc_EventSpec'/1" -p74198 -S"'enc_EventSpec'(${1:Val}) $2" -p74199 -tp74200 -a(S"'enc_EventsDescriptor'/1" -p74201 -S"'enc_EventsDescriptor'(${1:Val}) $2" -p74202 -tp74203 -a(S"'enc_H221NonStandard'/1" -p74204 -S"'enc_H221NonStandard'(${1:Val}) $2" -p74205 -tp74206 -a(S"'enc_IP4Address'/1" -p74207 -S"'enc_IP4Address'(${1:Val}) $2" -p74208 -tp74209 -a(S"'enc_IP6Address'/1" -p74210 -S"'enc_IP6Address'(${1:Val}) $2" -p74211 -tp74212 -a(S"'enc_IndAudDigitMapDescriptor'/1" -p74213 -S"'enc_IndAudDigitMapDescriptor'(${1:Val}) $2" -p74214 -tp74215 -a(S"'enc_IndAudEventBufferDescriptor'/1" -p74216 -S"'enc_IndAudEventBufferDescriptor'(${1:Val}) $2" -p74217 -tp74218 -a(S"'enc_IndAudEventsDescriptor'/1" -p74219 -S"'enc_IndAudEventsDescriptor'(${1:Val}) $2" -p74220 -tp74221 -a(S"'enc_IndAudLocalControlDescriptor'/1" -p74222 -S"'enc_IndAudLocalControlDescriptor'(${1:Val}) $2" -p74223 -tp74224 -a(S"'enc_IndAudLocalRemoteDescriptor'/1" -p74225 -S"'enc_IndAudLocalRemoteDescriptor'(${1:Val}) $2" -p74226 -tp74227 -a(S"'enc_IndAudMediaDescriptor'/1" -p74228 -S"'enc_IndAudMediaDescriptor'(${1:Val}) $2" -p74229 -tp74230 -a(S"'enc_IndAudPackagesDescriptor'/1" -p74231 -S"'enc_IndAudPackagesDescriptor'(${1:Val}) $2" -p74232 -tp74233 -a(S"'enc_IndAudPropertyGroup'/1" -p74234 -S"'enc_IndAudPropertyGroup'(${1:Val}) $2" -p74235 -tp74236 -a(S"'enc_IndAudPropertyParm'/1" -p74237 -S"'enc_IndAudPropertyParm'(${1:Val}) $2" -p74238 -tp74239 -a(S"'enc_IndAudSeqSigList'/1" -p74240 -S"'enc_IndAudSeqSigList'(${1:Val}) $2" -p74241 -tp74242 -a(S"'enc_IndAudSignal'/1" -p74243 -S"'enc_IndAudSignal'(${1:Val}) $2" -p74244 -tp74245 -a(S"'enc_IndAudSignalsDescriptor'/1" -p74246 -S"'enc_IndAudSignalsDescriptor'(${1:Val}) $2" -p74247 -tp74248 -a(S"'enc_IndAudStatisticsDescriptor'/1" -p74249 -S"'enc_IndAudStatisticsDescriptor'(${1:Val}) $2" -p74250 -tp74251 -a(S"'enc_IndAudStreamDescriptor'/1" -p74252 -S"'enc_IndAudStreamDescriptor'(${1:Val}) $2" -p74253 -tp74254 -a(S"'enc_IndAudStreamParms'/1" -p74255 -S"'enc_IndAudStreamParms'(${1:Val}) $2" -p74256 -tp74257 -a(S"'enc_IndAudTerminationStateDescriptor'/1" -p74258 -S"'enc_IndAudTerminationStateDescriptor'(${1:Val}) $2" -p74259 -tp74260 -a(S"'enc_IndAuditParameter'/1" -p74261 -S"'enc_IndAuditParameter'(${1:Val}) $2" -p74262 -tp74263 -a(S"'enc_LocalControlDescriptor'/1" -p74264 -S"'enc_LocalControlDescriptor'(${1:Val}) $2" -p74265 -tp74266 -a(S"'enc_LocalRemoteDescriptor'/1" -p74267 -S"'enc_LocalRemoteDescriptor'(${1:Val}) $2" -p74268 -tp74269 -a(S"'enc_MId'/1" -p74270 -S"'enc_MId'(${1:Val}) $2" -p74271 -tp74272 -a(S"'enc_MediaDescriptor'/1" -p74273 -S"'enc_MediaDescriptor'(${1:Val}) $2" -p74274 -tp74275 -a(S"'enc_MegacoMessage'/1" -p74276 -S"'enc_MegacoMessage'(${1:Val}) $2" -p74277 -tp74278 -a(S"'enc_Message'/1" -p74279 -S"'enc_Message'(${1:Val}) $2" -p74280 -tp74281 -a(S"'enc_ModemDescriptor'/1" -p74282 -S"'enc_ModemDescriptor'(${1:Val}) $2" -p74283 -tp74284 -a(S"'enc_ModemType'/1" -p74285 -S"'enc_ModemType'(${1:Val}) $2" -p74286 -tp74287 -a(S"'enc_MuxDescriptor'/1" -p74288 -S"'enc_MuxDescriptor'(${1:Val}) $2" -p74289 -tp74290 -a(S"'enc_MuxType'/1" -p74291 -S"'enc_MuxType'(${1:Val}) $2" -p74292 -tp74293 -a(S"'enc_Name'/1" -p74294 -S"'enc_Name'(${1:Val}) $2" -p74295 -tp74296 -a(S"'enc_NonStandardData'/1" -p74297 -S"'enc_NonStandardData'(${1:Val}) $2" -p74298 -tp74299 -a(S"'enc_NonStandardIdentifier'/1" -p74300 -S"'enc_NonStandardIdentifier'(${1:Val}) $2" -p74301 -tp74302 -a(S"'enc_NotifyCompletion'/1" -p74303 -S"'enc_NotifyCompletion'(${1:Val}) $2" -p74304 -tp74305 -a(S"'enc_NotifyReply'/1" -p74306 -S"'enc_NotifyReply'(${1:Val}) $2" -p74307 -tp74308 -a(S"'enc_NotifyRequest'/1" -p74309 -S"'enc_NotifyRequest'(${1:Val}) $2" -p74310 -tp74311 -a(S"'enc_ObservedEvent'/1" -p74312 -S"'enc_ObservedEvent'(${1:Val}) $2" -p74313 -tp74314 -a(S"'enc_ObservedEventsDescriptor'/1" -p74315 -S"'enc_ObservedEventsDescriptor'(${1:Val}) $2" -p74316 -tp74317 -a(S"'enc_PackagesDescriptor'/1" -p74318 -S"'enc_PackagesDescriptor'(${1:Val}) $2" -p74319 -tp74320 -a(S"'enc_PackagesItem'/1" -p74321 -S"'enc_PackagesItem'(${1:Val}) $2" -p74322 -tp74323 -a(S"'enc_PathName'/1" -p74324 -S"'enc_PathName'(${1:Val}) $2" -p74325 -tp74326 -a(S"'enc_PkgdName'/1" -p74327 -S"'enc_PkgdName'(${1:Val}) $2" -p74328 -tp74329 -a(S"'enc_PropertyGroup'/1" -p74330 -S"'enc_PropertyGroup'(${1:Val}) $2" -p74331 -tp74332 -a(S"'enc_PropertyParm'/1" -p74333 -S"'enc_PropertyParm'(${1:Val}) $2" -p74334 -tp74335 -a(S"'enc_Relation'/1" -p74336 -S"'enc_Relation'(${1:Val}) $2" -p74337 -tp74338 -a(S"'enc_RequestID'/1" -p74339 -S"'enc_RequestID'(${1:Val}) $2" -p74340 -tp74341 -a(S"'enc_RequestedActions'/1" -p74342 -S"'enc_RequestedActions'(${1:Val}) $2" -p74343 -tp74344 -a(S"'enc_RequestedEvent'/1" -p74345 -S"'enc_RequestedEvent'(${1:Val}) $2" -p74346 -tp74347 -a(S"'enc_SecondEventsDescriptor'/1" -p74348 -S"'enc_SecondEventsDescriptor'(${1:Val}) $2" -p74349 -tp74350 -a(S"'enc_SecondRequestedActions'/1" -p74351 -S"'enc_SecondRequestedActions'(${1:Val}) $2" -p74352 -tp74353 -a(S"'enc_SecondRequestedEvent'/1" -p74354 -S"'enc_SecondRequestedEvent'(${1:Val}) $2" -p74355 -tp74356 -a(S"'enc_SecurityParmIndex'/1" -p74357 -S"'enc_SecurityParmIndex'(${1:Val}) $2" -p74358 -tp74359 -a(S"'enc_SegmentNumber'/1" -p74360 -S"'enc_SegmentNumber'(${1:Val}) $2" -p74361 -tp74362 -a(S"'enc_SeqSigList'/1" -p74363 -S"'enc_SeqSigList'(${1:Val}) $2" -p74364 -tp74365 -a(S"'enc_SequenceNum'/1" -p74366 -S"'enc_SequenceNum'(${1:Val}) $2" -p74367 -tp74368 -a(S"'enc_ServiceChangeAddress'/1" -p74369 -S"'enc_ServiceChangeAddress'(${1:Val}) $2" -p74370 -tp74371 -a(S"'enc_ServiceChangeMethod'/1" -p74372 -S"'enc_ServiceChangeMethod'(${1:Val}) $2" -p74373 -tp74374 -a(S"'enc_ServiceChangeParm'/1" -p74375 -S"'enc_ServiceChangeParm'(${1:Val}) $2" -p74376 -tp74377 -a(S"'enc_ServiceChangeProfile'/1" -p74378 -S"'enc_ServiceChangeProfile'(${1:Val}) $2" -p74379 -tp74380 -a(S"'enc_ServiceChangeReply'/1" -p74381 -S"'enc_ServiceChangeReply'(${1:Val}) $2" -p74382 -tp74383 -a(S"'enc_ServiceChangeRequest'/1" -p74384 -S"'enc_ServiceChangeRequest'(${1:Val}) $2" -p74385 -tp74386 -a(S"'enc_ServiceChangeResParm'/1" -p74387 -S"'enc_ServiceChangeResParm'(${1:Val}) $2" -p74388 -tp74389 -a(S"'enc_ServiceChangeResult'/1" -p74390 -S"'enc_ServiceChangeResult'(${1:Val}) $2" -p74391 -tp74392 -a(S"'enc_ServiceState'/1" -p74393 -S"'enc_ServiceState'(${1:Val}) $2" -p74394 -tp74395 -a(S"'enc_SigParameter'/1" -p74396 -S"'enc_SigParameter'(${1:Val}) $2" -p74397 -tp74398 -a(S"'enc_Signal'/1" -p74399 -S"'enc_Signal'(${1:Val}) $2" -p74400 -tp74401 -a(S"'enc_SignalDirection'/1" -p74402 -S"'enc_SignalDirection'(${1:Val}) $2" -p74403 -tp74404 -a(S"'enc_SignalName'/1" -p74405 -S"'enc_SignalName'(${1:Val}) $2" -p74406 -tp74407 -a(S"'enc_SignalRequest'/1" -p74408 -S"'enc_SignalRequest'(${1:Val}) $2" -p74409 -tp74410 -a(S"'enc_SignalType'/1" -p74411 -S"'enc_SignalType'(${1:Val}) $2" -p74412 -tp74413 -a(S"'enc_SignalsDescriptor'/1" -p74414 -S"'enc_SignalsDescriptor'(${1:Val}) $2" -p74415 -tp74416 -a(S"'enc_StatisticsDescriptor'/1" -p74417 -S"'enc_StatisticsDescriptor'(${1:Val}) $2" -p74418 -tp74419 -a(S"'enc_StatisticsParameter'/1" -p74420 -S"'enc_StatisticsParameter'(${1:Val}) $2" -p74421 -tp74422 -a(S"'enc_StreamDescriptor'/1" -p74423 -S"'enc_StreamDescriptor'(${1:Val}) $2" -p74424 -tp74425 -a(S"'enc_StreamID'/1" -p74426 -S"'enc_StreamID'(${1:Val}) $2" -p74427 -tp74428 -a(S"'enc_StreamMode'/1" -p74429 -S"'enc_StreamMode'(${1:Val}) $2" -p74430 -tp74431 -a(S"'enc_StreamParms'/1" -p74432 -S"'enc_StreamParms'(${1:Val}) $2" -p74433 -tp74434 -a(S"'enc_SubtractRequest'/1" -p74435 -S"'enc_SubtractRequest'(${1:Val}) $2" -p74436 -tp74437 -a(S"'enc_TerminationAudit'/1" -p74438 -S"'enc_TerminationAudit'(${1:Val}) $2" -p74439 -tp74440 -a(S"'enc_TerminationID'/1" -p74441 -S"'enc_TerminationID'(${1:Val}) $2" -p74442 -tp74443 -a(S"'enc_TerminationIDList'/1" -p74444 -S"'enc_TerminationIDList'(${1:Val}) $2" -p74445 -tp74446 -a(S"'enc_TerminationStateDescriptor'/1" -p74447 -S"'enc_TerminationStateDescriptor'(${1:Val}) $2" -p74448 -tp74449 -a(S"'enc_TimeNotation'/1" -p74450 -S"'enc_TimeNotation'(${1:Val}) $2" -p74451 -tp74452 -a(S"'enc_TopologyRequest'/1" -p74453 -S"'enc_TopologyRequest'(${1:Val}) $2" -p74454 -tp74455 -a(S"'enc_Transaction'/1" -p74456 -S"'enc_Transaction'(${1:Val}) $2" -p74457 -tp74458 -a(S"'enc_TransactionAck'/1" -p74459 -S"'enc_TransactionAck'(${1:Val}) $2" -p74460 -tp74461 -a(S"'enc_TransactionId'/1" -p74462 -S"'enc_TransactionId'(${1:Val}) $2" -p74463 -tp74464 -a(S"'enc_TransactionPending'/1" -p74465 -S"'enc_TransactionPending'(${1:Val}) $2" -p74466 -tp74467 -a(S"'enc_TransactionReply'/1" -p74468 -S"'enc_TransactionReply'(${1:Val}) $2" -p74469 -tp74470 -a(S"'enc_TransactionRequest'/1" -p74471 -S"'enc_TransactionRequest'(${1:Val}) $2" -p74472 -tp74473 -a(S"'enc_TransactionResponseAck'/1" -p74474 -S"'enc_TransactionResponseAck'(${1:Val}) $2" -p74475 -tp74476 -a(S"'enc_Value'/1" -p74477 -S"'enc_Value'(${1:Val}) $2" -p74478 -tp74479 -a(S"'enc_WildcardField'/1" -p74480 -S"'enc_WildcardField'(${1:Val}) $2" -p74481 -tp74482 -a(S'decode/2' -p74483 -S'decode(${1:Type}, ${2:Data}) $3' -p74484 -tp74485 -a(S'decode_disp/2' -p74486 -S'decode_disp(${1:Type}, ${2:Data}) $3' -p74487 -tp74488 -a(S'encode/2' -p74489 -S'encode(${1:Type}, ${2:Data}) $3' -p74490 -tp74491 -a(S'encode_disp/2' -p74492 -S'encode_disp(${1:Type}, ${2:Data}) $3' -p74493 -tp74494 -a(S'encoding_rule/0' -p74495 -S'encoding_rule() $1' -p74496 -tp74497 -a(S'info/0' -p74498 -S'info() $1' -p74499 -tp74500 -asS'megaco_per_bin_media_gateway_control_prev3b' -p74501 -(lp74502 -(S"'dec_ActionReply'/2" -p74503 -S"'dec_ActionReply'(${1:Bytes}, ${2:Param2}) $3" -p74504 -tp74505 -a(S"'dec_ActionRequest'/2" -p74506 -S"'dec_ActionRequest'(${1:Bytes}, ${2:Param2}) $3" -p74507 -tp74508 -a(S"'dec_AmmDescriptor'/2" -p74509 -S"'dec_AmmDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p74510 -tp74511 -a(S"'dec_AmmRequest'/2" -p74512 -S"'dec_AmmRequest'(${1:Bytes}, ${2:Param2}) $3" -p74513 -tp74514 -a(S"'dec_AmmsReply'/2" -p74515 -S"'dec_AmmsReply'(${1:Bytes}, ${2:Param2}) $3" -p74516 -tp74517 -a(S"'dec_AuditDescriptor'/2" -p74518 -S"'dec_AuditDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p74519 -tp74520 -a(S"'dec_AuditReply'/2" -p74521 -S"'dec_AuditReply'(${1:Bytes}, ${2:Param2}) $3" -p74522 -tp74523 -a(S"'dec_AuditRequest'/2" -p74524 -S"'dec_AuditRequest'(${1:Bytes}, ${2:Param2}) $3" -p74525 -tp74526 -a(S"'dec_AuditResult'/2" -p74527 -S"'dec_AuditResult'(${1:Bytes}, ${2:Param2}) $3" -p74528 -tp74529 -a(S"'dec_AuditReturnParameter'/2" -p74530 -S"'dec_AuditReturnParameter'(${1:Bytes}, ${2:Param2}) $3" -p74531 -tp74532 -a(S"'dec_AuthData'/2" -p74533 -S"'dec_AuthData'(${1:Bytes}, ${2:Param2}) $3" -p74534 -tp74535 -a(S"'dec_AuthenticationHeader'/2" -p74536 -S"'dec_AuthenticationHeader'(${1:Bytes}, ${2:Param2}) $3" -p74537 -tp74538 -a(S"'dec_Command'/2" -p74539 -S"'dec_Command'(${1:Bytes}, ${2:Param2}) $3" -p74540 -tp74541 -a(S"'dec_CommandReply'/2" -p74542 -S"'dec_CommandReply'(${1:Bytes}, ${2:Param2}) $3" -p74543 -tp74544 -a(S"'dec_CommandRequest'/2" -p74545 -S"'dec_CommandRequest'(${1:Bytes}, ${2:Param2}) $3" -p74546 -tp74547 -a(S"'dec_ContextAttrAuditRequest'/2" -p74548 -S"'dec_ContextAttrAuditRequest'(${1:Bytes}, ${2:Param2}) $3" -p74549 -tp74550 -a(S"'dec_ContextID'/2" -p74551 -S"'dec_ContextID'(${1:Bytes}, ${2:Param2}) $3" -p74552 -tp74553 -a(S"'dec_ContextRequest'/2" -p74554 -S"'dec_ContextRequest'(${1:Bytes}, ${2:Param2}) $3" -p74555 -tp74556 -a(S"'dec_DigitMapDescriptor'/2" -p74557 -S"'dec_DigitMapDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p74558 -tp74559 -a(S"'dec_DigitMapName'/2" -p74560 -S"'dec_DigitMapName'(${1:Bytes}, ${2:Param2}) $3" -p74561 -tp74562 -a(S"'dec_DigitMapValue'/2" -p74563 -S"'dec_DigitMapValue'(${1:Bytes}, ${2:Param2}) $3" -p74564 -tp74565 -a(S"'dec_DomainName'/2" -p74566 -S"'dec_DomainName'(${1:Bytes}, ${2:Param2}) $3" -p74567 -tp74568 -a(S"'dec_ErrorCode'/2" -p74569 -S"'dec_ErrorCode'(${1:Bytes}, ${2:Param2}) $3" -p74570 -tp74571 -a(S"'dec_ErrorDescriptor'/2" -p74572 -S"'dec_ErrorDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p74573 -tp74574 -a(S"'dec_ErrorText'/2" -p74575 -S"'dec_ErrorText'(${1:Bytes}, ${2:Param2}) $3" -p74576 -tp74577 -a(S"'dec_EventBufferControl'/2" -p74578 -S"'dec_EventBufferControl'(${1:Bytes}, ${2:Param2}) $3" -p74579 -tp74580 -a(S"'dec_EventBufferDescriptor'/2" -p74581 -S"'dec_EventBufferDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p74582 -tp74583 -a(S"'dec_EventDM'/2" -p74584 -S"'dec_EventDM'(${1:Bytes}, ${2:Param2}) $3" -p74585 -tp74586 -a(S"'dec_EventName'/2" -p74587 -S"'dec_EventName'(${1:Bytes}, ${2:Param2}) $3" -p74588 -tp74589 -a(S"'dec_EventParameter'/2" -p74590 -S"'dec_EventParameter'(${1:Bytes}, ${2:Param2}) $3" -p74591 -tp74592 -a(S"'dec_EventSpec'/2" -p74593 -S"'dec_EventSpec'(${1:Bytes}, ${2:Param2}) $3" -p74594 -tp74595 -a(S"'dec_EventsDescriptor'/2" -p74596 -S"'dec_EventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p74597 -tp74598 -a(S"'dec_H221NonStandard'/2" -p74599 -S"'dec_H221NonStandard'(${1:Bytes}, ${2:Param2}) $3" -p74600 -tp74601 -a(S"'dec_IP4Address'/2" -p74602 -S"'dec_IP4Address'(${1:Bytes}, ${2:Param2}) $3" -p74603 -tp74604 -a(S"'dec_IP6Address'/2" -p74605 -S"'dec_IP6Address'(${1:Bytes}, ${2:Param2}) $3" -p74606 -tp74607 -a(S"'dec_IndAudDigitMapDescriptor'/2" -p74608 -S"'dec_IndAudDigitMapDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p74609 -tp74610 -a(S"'dec_IndAudEventBufferDescriptor'/2" -p74611 -S"'dec_IndAudEventBufferDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p74612 -tp74613 -a(S"'dec_IndAudEventsDescriptor'/2" -p74614 -S"'dec_IndAudEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p74615 -tp74616 -a(S"'dec_IndAudLocalControlDescriptor'/2" -p74617 -S"'dec_IndAudLocalControlDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p74618 -tp74619 -a(S"'dec_IndAudLocalRemoteDescriptor'/2" -p74620 -S"'dec_IndAudLocalRemoteDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p74621 -tp74622 -a(S"'dec_IndAudMediaDescriptor'/2" -p74623 -S"'dec_IndAudMediaDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p74624 -tp74625 -a(S"'dec_IndAudPackagesDescriptor'/2" -p74626 -S"'dec_IndAudPackagesDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p74627 -tp74628 -a(S"'dec_IndAudPropertyGroup'/2" -p74629 -S"'dec_IndAudPropertyGroup'(${1:Bytes}, ${2:Param2}) $3" -p74630 -tp74631 -a(S"'dec_IndAudPropertyParm'/2" -p74632 -S"'dec_IndAudPropertyParm'(${1:Bytes}, ${2:Param2}) $3" -p74633 -tp74634 -a(S"'dec_IndAudSeqSigList'/2" -p74635 -S"'dec_IndAudSeqSigList'(${1:Bytes}, ${2:Param2}) $3" -p74636 -tp74637 -a(S"'dec_IndAudSignal'/2" -p74638 -S"'dec_IndAudSignal'(${1:Bytes}, ${2:Param2}) $3" -p74639 -tp74640 -a(S"'dec_IndAudSignalsDescriptor'/2" -p74641 -S"'dec_IndAudSignalsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p74642 -tp74643 -a(S"'dec_IndAudStatisticsDescriptor'/2" -p74644 -S"'dec_IndAudStatisticsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p74645 -tp74646 -a(S"'dec_IndAudStreamDescriptor'/2" -p74647 -S"'dec_IndAudStreamDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p74648 -tp74649 -a(S"'dec_IndAudStreamParms'/2" -p74650 -S"'dec_IndAudStreamParms'(${1:Bytes}, ${2:Param2}) $3" -p74651 -tp74652 -a(S"'dec_IndAudTerminationStateDescriptor'/2" -p74653 -S"'dec_IndAudTerminationStateDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p74654 -tp74655 -a(S"'dec_IndAuditParameter'/2" -p74656 -S"'dec_IndAuditParameter'(${1:Bytes}, ${2:Param2}) $3" -p74657 -tp74658 -a(S"'dec_LocalControlDescriptor'/2" -p74659 -S"'dec_LocalControlDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p74660 -tp74661 -a(S"'dec_LocalRemoteDescriptor'/2" -p74662 -S"'dec_LocalRemoteDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p74663 -tp74664 -a(S"'dec_MId'/2" -p74665 -S"'dec_MId'(${1:Bytes}, ${2:Param2}) $3" -p74666 -tp74667 -a(S"'dec_MediaDescriptor'/2" -p74668 -S"'dec_MediaDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p74669 -tp74670 -a(S"'dec_MegacoMessage'/2" -p74671 -S"'dec_MegacoMessage'(${1:Bytes}, ${2:Param2}) $3" -p74672 -tp74673 -a(S"'dec_Message'/2" -p74674 -S"'dec_Message'(${1:Bytes}, ${2:Param2}) $3" -p74675 -tp74676 -a(S"'dec_ModemDescriptor'/2" -p74677 -S"'dec_ModemDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p74678 -tp74679 -a(S"'dec_ModemType'/2" -p74680 -S"'dec_ModemType'(${1:Bytes}, ${2:Param2}) $3" -p74681 -tp74682 -a(S"'dec_MuxDescriptor'/2" -p74683 -S"'dec_MuxDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p74684 -tp74685 -a(S"'dec_MuxType'/2" -p74686 -S"'dec_MuxType'(${1:Bytes}, ${2:Param2}) $3" -p74687 -tp74688 -a(S"'dec_Name'/2" -p74689 -S"'dec_Name'(${1:Bytes}, ${2:Param2}) $3" -p74690 -tp74691 -a(S"'dec_NonStandardData'/2" -p74692 -S"'dec_NonStandardData'(${1:Bytes}, ${2:Param2}) $3" -p74693 -tp74694 -a(S"'dec_NonStandardIdentifier'/2" -p74695 -S"'dec_NonStandardIdentifier'(${1:Bytes}, ${2:Param2}) $3" -p74696 -tp74697 -a(S"'dec_NotifyCompletion'/2" -p74698 -S"'dec_NotifyCompletion'(${1:Bytes}, ${2:Param2}) $3" -p74699 -tp74700 -a(S"'dec_NotifyReply'/2" -p74701 -S"'dec_NotifyReply'(${1:Bytes}, ${2:Param2}) $3" -p74702 -tp74703 -a(S"'dec_NotifyRequest'/2" -p74704 -S"'dec_NotifyRequest'(${1:Bytes}, ${2:Param2}) $3" -p74705 -tp74706 -a(S"'dec_ObservedEvent'/2" -p74707 -S"'dec_ObservedEvent'(${1:Bytes}, ${2:Param2}) $3" -p74708 -tp74709 -a(S"'dec_ObservedEventsDescriptor'/2" -p74710 -S"'dec_ObservedEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p74711 -tp74712 -a(S"'dec_PackagesDescriptor'/2" -p74713 -S"'dec_PackagesDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p74714 -tp74715 -a(S"'dec_PackagesItem'/2" -p74716 -S"'dec_PackagesItem'(${1:Bytes}, ${2:Param2}) $3" -p74717 -tp74718 -a(S"'dec_PathName'/2" -p74719 -S"'dec_PathName'(${1:Bytes}, ${2:Param2}) $3" -p74720 -tp74721 -a(S"'dec_PkgdName'/2" -p74722 -S"'dec_PkgdName'(${1:Bytes}, ${2:Param2}) $3" -p74723 -tp74724 -a(S"'dec_PropertyGroup'/2" -p74725 -S"'dec_PropertyGroup'(${1:Bytes}, ${2:Param2}) $3" -p74726 -tp74727 -a(S"'dec_PropertyParm'/2" -p74728 -S"'dec_PropertyParm'(${1:Bytes}, ${2:Param2}) $3" -p74729 -tp74730 -a(S"'dec_Relation'/2" -p74731 -S"'dec_Relation'(${1:Bytes}, ${2:Param2}) $3" -p74732 -tp74733 -a(S"'dec_RequestID'/2" -p74734 -S"'dec_RequestID'(${1:Bytes}, ${2:Param2}) $3" -p74735 -tp74736 -a(S"'dec_RequestedActions'/2" -p74737 -S"'dec_RequestedActions'(${1:Bytes}, ${2:Param2}) $3" -p74738 -tp74739 -a(S"'dec_RequestedEvent'/2" -p74740 -S"'dec_RequestedEvent'(${1:Bytes}, ${2:Param2}) $3" -p74741 -tp74742 -a(S"'dec_SecondEventsDescriptor'/2" -p74743 -S"'dec_SecondEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p74744 -tp74745 -a(S"'dec_SecondRequestedActions'/2" -p74746 -S"'dec_SecondRequestedActions'(${1:Bytes}, ${2:Param2}) $3" -p74747 -tp74748 -a(S"'dec_SecondRequestedEvent'/2" -p74749 -S"'dec_SecondRequestedEvent'(${1:Bytes}, ${2:Param2}) $3" -p74750 -tp74751 -a(S"'dec_SecurityParmIndex'/2" -p74752 -S"'dec_SecurityParmIndex'(${1:Bytes}, ${2:Param2}) $3" -p74753 -tp74754 -a(S"'dec_SegmentNumber'/2" -p74755 -S"'dec_SegmentNumber'(${1:Bytes}, ${2:Param2}) $3" -p74756 -tp74757 -a(S"'dec_SeqSigList'/2" -p74758 -S"'dec_SeqSigList'(${1:Bytes}, ${2:Param2}) $3" -p74759 -tp74760 -a(S"'dec_SequenceNum'/2" -p74761 -S"'dec_SequenceNum'(${1:Bytes}, ${2:Param2}) $3" -p74762 -tp74763 -a(S"'dec_ServiceChangeAddress'/2" -p74764 -S"'dec_ServiceChangeAddress'(${1:Bytes}, ${2:Param2}) $3" -p74765 -tp74766 -a(S"'dec_ServiceChangeMethod'/2" -p74767 -S"'dec_ServiceChangeMethod'(${1:Bytes}, ${2:Param2}) $3" -p74768 -tp74769 -a(S"'dec_ServiceChangeParm'/2" -p74770 -S"'dec_ServiceChangeParm'(${1:Bytes}, ${2:Param2}) $3" -p74771 -tp74772 -a(S"'dec_ServiceChangeProfile'/2" -p74773 -S"'dec_ServiceChangeProfile'(${1:Bytes}, ${2:Param2}) $3" -p74774 -tp74775 -a(S"'dec_ServiceChangeReply'/2" -p74776 -S"'dec_ServiceChangeReply'(${1:Bytes}, ${2:Param2}) $3" -p74777 -tp74778 -a(S"'dec_ServiceChangeRequest'/2" -p74779 -S"'dec_ServiceChangeRequest'(${1:Bytes}, ${2:Param2}) $3" -p74780 -tp74781 -a(S"'dec_ServiceChangeResParm'/2" -p74782 -S"'dec_ServiceChangeResParm'(${1:Bytes}, ${2:Param2}) $3" -p74783 -tp74784 -a(S"'dec_ServiceChangeResult'/2" -p74785 -S"'dec_ServiceChangeResult'(${1:Bytes}, ${2:Param2}) $3" -p74786 -tp74787 -a(S"'dec_ServiceState'/2" -p74788 -S"'dec_ServiceState'(${1:Bytes}, ${2:Param2}) $3" -p74789 -tp74790 -a(S"'dec_SigParameter'/2" -p74791 -S"'dec_SigParameter'(${1:Bytes}, ${2:Param2}) $3" -p74792 -tp74793 -a(S"'dec_Signal'/2" -p74794 -S"'dec_Signal'(${1:Bytes}, ${2:Param2}) $3" -p74795 -tp74796 -a(S"'dec_SignalDirection'/2" -p74797 -S"'dec_SignalDirection'(${1:Bytes}, ${2:Param2}) $3" -p74798 -tp74799 -a(S"'dec_SignalName'/2" -p74800 -S"'dec_SignalName'(${1:Bytes}, ${2:Param2}) $3" -p74801 -tp74802 -a(S"'dec_SignalRequest'/2" -p74803 -S"'dec_SignalRequest'(${1:Bytes}, ${2:Param2}) $3" -p74804 -tp74805 -a(S"'dec_SignalType'/2" -p74806 -S"'dec_SignalType'(${1:Bytes}, ${2:Param2}) $3" -p74807 -tp74808 -a(S"'dec_SignalsDescriptor'/2" -p74809 -S"'dec_SignalsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p74810 -tp74811 -a(S"'dec_StatisticsDescriptor'/2" -p74812 -S"'dec_StatisticsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p74813 -tp74814 -a(S"'dec_StatisticsParameter'/2" -p74815 -S"'dec_StatisticsParameter'(${1:Bytes}, ${2:Param2}) $3" -p74816 -tp74817 -a(S"'dec_StreamDescriptor'/2" -p74818 -S"'dec_StreamDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p74819 -tp74820 -a(S"'dec_StreamID'/2" -p74821 -S"'dec_StreamID'(${1:Bytes}, ${2:Param2}) $3" -p74822 -tp74823 -a(S"'dec_StreamMode'/2" -p74824 -S"'dec_StreamMode'(${1:Bytes}, ${2:Param2}) $3" -p74825 -tp74826 -a(S"'dec_StreamParms'/2" -p74827 -S"'dec_StreamParms'(${1:Bytes}, ${2:Param2}) $3" -p74828 -tp74829 -a(S"'dec_SubtractRequest'/2" -p74830 -S"'dec_SubtractRequest'(${1:Bytes}, ${2:Param2}) $3" -p74831 -tp74832 -a(S"'dec_TerminationAudit'/2" -p74833 -S"'dec_TerminationAudit'(${1:Bytes}, ${2:Param2}) $3" -p74834 -tp74835 -a(S"'dec_TerminationID'/2" -p74836 -S"'dec_TerminationID'(${1:Bytes}, ${2:Param2}) $3" -p74837 -tp74838 -a(S"'dec_TerminationIDList'/2" -p74839 -S"'dec_TerminationIDList'(${1:Bytes}, ${2:Param2}) $3" -p74840 -tp74841 -a(S"'dec_TerminationStateDescriptor'/2" -p74842 -S"'dec_TerminationStateDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p74843 -tp74844 -a(S"'dec_TimeNotation'/2" -p74845 -S"'dec_TimeNotation'(${1:Bytes}, ${2:Param2}) $3" -p74846 -tp74847 -a(S"'dec_TopologyRequest'/2" -p74848 -S"'dec_TopologyRequest'(${1:Bytes}, ${2:Param2}) $3" -p74849 -tp74850 -a(S"'dec_Transaction'/2" -p74851 -S"'dec_Transaction'(${1:Bytes}, ${2:Param2}) $3" -p74852 -tp74853 -a(S"'dec_TransactionAck'/2" -p74854 -S"'dec_TransactionAck'(${1:Bytes}, ${2:Param2}) $3" -p74855 -tp74856 -a(S"'dec_TransactionId'/2" -p74857 -S"'dec_TransactionId'(${1:Bytes}, ${2:Param2}) $3" -p74858 -tp74859 -a(S"'dec_TransactionPending'/2" -p74860 -S"'dec_TransactionPending'(${1:Bytes}, ${2:Param2}) $3" -p74861 -tp74862 -a(S"'dec_TransactionReply'/2" -p74863 -S"'dec_TransactionReply'(${1:Bytes}, ${2:Param2}) $3" -p74864 -tp74865 -a(S"'dec_TransactionRequest'/2" -p74866 -S"'dec_TransactionRequest'(${1:Bytes}, ${2:Param2}) $3" -p74867 -tp74868 -a(S"'dec_TransactionResponseAck'/2" -p74869 -S"'dec_TransactionResponseAck'(${1:Bytes}, ${2:Param2}) $3" -p74870 -tp74871 -a(S"'dec_Value'/2" -p74872 -S"'dec_Value'(${1:Bytes}, ${2:Param2}) $3" -p74873 -tp74874 -a(S"'dec_WildcardField'/2" -p74875 -S"'dec_WildcardField'(${1:Bytes}, ${2:Param2}) $3" -p74876 -tp74877 -a(S"'enc_ActionReply'/1" -p74878 -S"'enc_ActionReply'(${1:Val}) $2" -p74879 -tp74880 -a(S"'enc_ActionRequest'/1" -p74881 -S"'enc_ActionRequest'(${1:Val}) $2" -p74882 -tp74883 -a(S"'enc_AmmDescriptor'/1" -p74884 -S"'enc_AmmDescriptor'(${1:Val}) $2" -p74885 -tp74886 -a(S"'enc_AmmRequest'/1" -p74887 -S"'enc_AmmRequest'(${1:Val}) $2" -p74888 -tp74889 -a(S"'enc_AmmsReply'/1" -p74890 -S"'enc_AmmsReply'(${1:Val}) $2" -p74891 -tp74892 -a(S"'enc_AuditDescriptor'/1" -p74893 -S"'enc_AuditDescriptor'(${1:Val}) $2" -p74894 -tp74895 -a(S"'enc_AuditReply'/1" -p74896 -S"'enc_AuditReply'(${1:Val}) $2" -p74897 -tp74898 -a(S"'enc_AuditRequest'/1" -p74899 -S"'enc_AuditRequest'(${1:Val}) $2" -p74900 -tp74901 -a(S"'enc_AuditResult'/1" -p74902 -S"'enc_AuditResult'(${1:Val}) $2" -p74903 -tp74904 -a(S"'enc_AuditReturnParameter'/1" -p74905 -S"'enc_AuditReturnParameter'(${1:Val}) $2" -p74906 -tp74907 -a(S"'enc_AuthData'/1" -p74908 -S"'enc_AuthData'(${1:Val}) $2" -p74909 -tp74910 -a(S"'enc_AuthenticationHeader'/1" -p74911 -S"'enc_AuthenticationHeader'(${1:Val}) $2" -p74912 -tp74913 -a(S"'enc_Command'/1" -p74914 -S"'enc_Command'(${1:Val}) $2" -p74915 -tp74916 -a(S"'enc_CommandReply'/1" -p74917 -S"'enc_CommandReply'(${1:Val}) $2" -p74918 -tp74919 -a(S"'enc_CommandRequest'/1" -p74920 -S"'enc_CommandRequest'(${1:Val}) $2" -p74921 -tp74922 -a(S"'enc_ContextAttrAuditRequest'/1" -p74923 -S"'enc_ContextAttrAuditRequest'(${1:Val}) $2" -p74924 -tp74925 -a(S"'enc_ContextID'/1" -p74926 -S"'enc_ContextID'(${1:Val}) $2" -p74927 -tp74928 -a(S"'enc_ContextRequest'/1" -p74929 -S"'enc_ContextRequest'(${1:Val}) $2" -p74930 -tp74931 -a(S"'enc_DigitMapDescriptor'/1" -p74932 -S"'enc_DigitMapDescriptor'(${1:Val}) $2" -p74933 -tp74934 -a(S"'enc_DigitMapName'/1" -p74935 -S"'enc_DigitMapName'(${1:Val}) $2" -p74936 -tp74937 -a(S"'enc_DigitMapValue'/1" -p74938 -S"'enc_DigitMapValue'(${1:Val}) $2" -p74939 -tp74940 -a(S"'enc_DomainName'/1" -p74941 -S"'enc_DomainName'(${1:Val}) $2" -p74942 -tp74943 -a(S"'enc_ErrorCode'/1" -p74944 -S"'enc_ErrorCode'(${1:Val}) $2" -p74945 -tp74946 -a(S"'enc_ErrorDescriptor'/1" -p74947 -S"'enc_ErrorDescriptor'(${1:Val}) $2" -p74948 -tp74949 -a(S"'enc_ErrorText'/1" -p74950 -S"'enc_ErrorText'(${1:Val}) $2" -p74951 -tp74952 -a(S"'enc_EventBufferControl'/1" -p74953 -S"'enc_EventBufferControl'(${1:Val}) $2" -p74954 -tp74955 -a(S"'enc_EventBufferDescriptor'/1" -p74956 -S"'enc_EventBufferDescriptor'(${1:Val}) $2" -p74957 -tp74958 -a(S"'enc_EventDM'/1" -p74959 -S"'enc_EventDM'(${1:Val}) $2" -p74960 -tp74961 -a(S"'enc_EventName'/1" -p74962 -S"'enc_EventName'(${1:Val}) $2" -p74963 -tp74964 -a(S"'enc_EventParameter'/1" -p74965 -S"'enc_EventParameter'(${1:Val}) $2" -p74966 -tp74967 -a(S"'enc_EventSpec'/1" -p74968 -S"'enc_EventSpec'(${1:Val}) $2" -p74969 -tp74970 -a(S"'enc_EventsDescriptor'/1" -p74971 -S"'enc_EventsDescriptor'(${1:Val}) $2" -p74972 -tp74973 -a(S"'enc_H221NonStandard'/1" -p74974 -S"'enc_H221NonStandard'(${1:Val}) $2" -p74975 -tp74976 -a(S"'enc_IP4Address'/1" -p74977 -S"'enc_IP4Address'(${1:Val}) $2" -p74978 -tp74979 -a(S"'enc_IP6Address'/1" -p74980 -S"'enc_IP6Address'(${1:Val}) $2" -p74981 -tp74982 -a(S"'enc_IndAudDigitMapDescriptor'/1" -p74983 -S"'enc_IndAudDigitMapDescriptor'(${1:Val}) $2" -p74984 -tp74985 -a(S"'enc_IndAudEventBufferDescriptor'/1" -p74986 -S"'enc_IndAudEventBufferDescriptor'(${1:Val}) $2" -p74987 -tp74988 -a(S"'enc_IndAudEventsDescriptor'/1" -p74989 -S"'enc_IndAudEventsDescriptor'(${1:Val}) $2" -p74990 -tp74991 -a(S"'enc_IndAudLocalControlDescriptor'/1" -p74992 -S"'enc_IndAudLocalControlDescriptor'(${1:Val}) $2" -p74993 -tp74994 -a(S"'enc_IndAudLocalRemoteDescriptor'/1" -p74995 -S"'enc_IndAudLocalRemoteDescriptor'(${1:Val}) $2" -p74996 -tp74997 -a(S"'enc_IndAudMediaDescriptor'/1" -p74998 -S"'enc_IndAudMediaDescriptor'(${1:Val}) $2" -p74999 -tp75000 -a(S"'enc_IndAudPackagesDescriptor'/1" -p75001 -S"'enc_IndAudPackagesDescriptor'(${1:Val}) $2" -p75002 -tp75003 -a(S"'enc_IndAudPropertyGroup'/1" -p75004 -S"'enc_IndAudPropertyGroup'(${1:Val}) $2" -p75005 -tp75006 -a(S"'enc_IndAudPropertyParm'/1" -p75007 -S"'enc_IndAudPropertyParm'(${1:Val}) $2" -p75008 -tp75009 -a(S"'enc_IndAudSeqSigList'/1" -p75010 -S"'enc_IndAudSeqSigList'(${1:Val}) $2" -p75011 -tp75012 -a(S"'enc_IndAudSignal'/1" -p75013 -S"'enc_IndAudSignal'(${1:Val}) $2" -p75014 -tp75015 -a(S"'enc_IndAudSignalsDescriptor'/1" -p75016 -S"'enc_IndAudSignalsDescriptor'(${1:Val}) $2" -p75017 -tp75018 -a(S"'enc_IndAudStatisticsDescriptor'/1" -p75019 -S"'enc_IndAudStatisticsDescriptor'(${1:Val}) $2" -p75020 -tp75021 -a(S"'enc_IndAudStreamDescriptor'/1" -p75022 -S"'enc_IndAudStreamDescriptor'(${1:Val}) $2" -p75023 -tp75024 -a(S"'enc_IndAudStreamParms'/1" -p75025 -S"'enc_IndAudStreamParms'(${1:Val}) $2" -p75026 -tp75027 -a(S"'enc_IndAudTerminationStateDescriptor'/1" -p75028 -S"'enc_IndAudTerminationStateDescriptor'(${1:Val}) $2" -p75029 -tp75030 -a(S"'enc_IndAuditParameter'/1" -p75031 -S"'enc_IndAuditParameter'(${1:Val}) $2" -p75032 -tp75033 -a(S"'enc_LocalControlDescriptor'/1" -p75034 -S"'enc_LocalControlDescriptor'(${1:Val}) $2" -p75035 -tp75036 -a(S"'enc_LocalRemoteDescriptor'/1" -p75037 -S"'enc_LocalRemoteDescriptor'(${1:Val}) $2" -p75038 -tp75039 -a(S"'enc_MId'/1" -p75040 -S"'enc_MId'(${1:Val}) $2" -p75041 -tp75042 -a(S"'enc_MediaDescriptor'/1" -p75043 -S"'enc_MediaDescriptor'(${1:Val}) $2" -p75044 -tp75045 -a(S"'enc_MegacoMessage'/1" -p75046 -S"'enc_MegacoMessage'(${1:Val}) $2" -p75047 -tp75048 -a(S"'enc_Message'/1" -p75049 -S"'enc_Message'(${1:Val}) $2" -p75050 -tp75051 -a(S"'enc_ModemDescriptor'/1" -p75052 -S"'enc_ModemDescriptor'(${1:Val}) $2" -p75053 -tp75054 -a(S"'enc_ModemType'/1" -p75055 -S"'enc_ModemType'(${1:Val}) $2" -p75056 -tp75057 -a(S"'enc_MuxDescriptor'/1" -p75058 -S"'enc_MuxDescriptor'(${1:Val}) $2" -p75059 -tp75060 -a(S"'enc_MuxType'/1" -p75061 -S"'enc_MuxType'(${1:Val}) $2" -p75062 -tp75063 -a(S"'enc_Name'/1" -p75064 -S"'enc_Name'(${1:Val}) $2" -p75065 -tp75066 -a(S"'enc_NonStandardData'/1" -p75067 -S"'enc_NonStandardData'(${1:Val}) $2" -p75068 -tp75069 -a(S"'enc_NonStandardIdentifier'/1" -p75070 -S"'enc_NonStandardIdentifier'(${1:Val}) $2" -p75071 -tp75072 -a(S"'enc_NotifyCompletion'/1" -p75073 -S"'enc_NotifyCompletion'(${1:Val}) $2" -p75074 -tp75075 -a(S"'enc_NotifyReply'/1" -p75076 -S"'enc_NotifyReply'(${1:Val}) $2" -p75077 -tp75078 -a(S"'enc_NotifyRequest'/1" -p75079 -S"'enc_NotifyRequest'(${1:Val}) $2" -p75080 -tp75081 -a(S"'enc_ObservedEvent'/1" -p75082 -S"'enc_ObservedEvent'(${1:Val}) $2" -p75083 -tp75084 -a(S"'enc_ObservedEventsDescriptor'/1" -p75085 -S"'enc_ObservedEventsDescriptor'(${1:Val}) $2" -p75086 -tp75087 -a(S"'enc_PackagesDescriptor'/1" -p75088 -S"'enc_PackagesDescriptor'(${1:Val}) $2" -p75089 -tp75090 -a(S"'enc_PackagesItem'/1" -p75091 -S"'enc_PackagesItem'(${1:Val}) $2" -p75092 -tp75093 -a(S"'enc_PathName'/1" -p75094 -S"'enc_PathName'(${1:Val}) $2" -p75095 -tp75096 -a(S"'enc_PkgdName'/1" -p75097 -S"'enc_PkgdName'(${1:Val}) $2" -p75098 -tp75099 -a(S"'enc_PropertyGroup'/1" -p75100 -S"'enc_PropertyGroup'(${1:Val}) $2" -p75101 -tp75102 -a(S"'enc_PropertyParm'/1" -p75103 -S"'enc_PropertyParm'(${1:Val}) $2" -p75104 -tp75105 -a(S"'enc_Relation'/1" -p75106 -S"'enc_Relation'(${1:Val}) $2" -p75107 -tp75108 -a(S"'enc_RequestID'/1" -p75109 -S"'enc_RequestID'(${1:Val}) $2" -p75110 -tp75111 -a(S"'enc_RequestedActions'/1" -p75112 -S"'enc_RequestedActions'(${1:Val}) $2" -p75113 -tp75114 -a(S"'enc_RequestedEvent'/1" -p75115 -S"'enc_RequestedEvent'(${1:Val}) $2" -p75116 -tp75117 -a(S"'enc_SecondEventsDescriptor'/1" -p75118 -S"'enc_SecondEventsDescriptor'(${1:Val}) $2" -p75119 -tp75120 -a(S"'enc_SecondRequestedActions'/1" -p75121 -S"'enc_SecondRequestedActions'(${1:Val}) $2" -p75122 -tp75123 -a(S"'enc_SecondRequestedEvent'/1" -p75124 -S"'enc_SecondRequestedEvent'(${1:Val}) $2" -p75125 -tp75126 -a(S"'enc_SecurityParmIndex'/1" -p75127 -S"'enc_SecurityParmIndex'(${1:Val}) $2" -p75128 -tp75129 -a(S"'enc_SegmentNumber'/1" -p75130 -S"'enc_SegmentNumber'(${1:Val}) $2" -p75131 -tp75132 -a(S"'enc_SeqSigList'/1" -p75133 -S"'enc_SeqSigList'(${1:Val}) $2" -p75134 -tp75135 -a(S"'enc_SequenceNum'/1" -p75136 -S"'enc_SequenceNum'(${1:Val}) $2" -p75137 -tp75138 -a(S"'enc_ServiceChangeAddress'/1" -p75139 -S"'enc_ServiceChangeAddress'(${1:Val}) $2" -p75140 -tp75141 -a(S"'enc_ServiceChangeMethod'/1" -p75142 -S"'enc_ServiceChangeMethod'(${1:Val}) $2" -p75143 -tp75144 -a(S"'enc_ServiceChangeParm'/1" -p75145 -S"'enc_ServiceChangeParm'(${1:Val}) $2" -p75146 -tp75147 -a(S"'enc_ServiceChangeProfile'/1" -p75148 -S"'enc_ServiceChangeProfile'(${1:Val}) $2" -p75149 -tp75150 -a(S"'enc_ServiceChangeReply'/1" -p75151 -S"'enc_ServiceChangeReply'(${1:Val}) $2" -p75152 -tp75153 -a(S"'enc_ServiceChangeRequest'/1" -p75154 -S"'enc_ServiceChangeRequest'(${1:Val}) $2" -p75155 -tp75156 -a(S"'enc_ServiceChangeResParm'/1" -p75157 -S"'enc_ServiceChangeResParm'(${1:Val}) $2" -p75158 -tp75159 -a(S"'enc_ServiceChangeResult'/1" -p75160 -S"'enc_ServiceChangeResult'(${1:Val}) $2" -p75161 -tp75162 -a(S"'enc_ServiceState'/1" -p75163 -S"'enc_ServiceState'(${1:Val}) $2" -p75164 -tp75165 -a(S"'enc_SigParameter'/1" -p75166 -S"'enc_SigParameter'(${1:Val}) $2" -p75167 -tp75168 -a(S"'enc_Signal'/1" -p75169 -S"'enc_Signal'(${1:Val}) $2" -p75170 -tp75171 -a(S"'enc_SignalDirection'/1" -p75172 -S"'enc_SignalDirection'(${1:Val}) $2" -p75173 -tp75174 -a(S"'enc_SignalName'/1" -p75175 -S"'enc_SignalName'(${1:Val}) $2" -p75176 -tp75177 -a(S"'enc_SignalRequest'/1" -p75178 -S"'enc_SignalRequest'(${1:Val}) $2" -p75179 -tp75180 -a(S"'enc_SignalType'/1" -p75181 -S"'enc_SignalType'(${1:Val}) $2" -p75182 -tp75183 -a(S"'enc_SignalsDescriptor'/1" -p75184 -S"'enc_SignalsDescriptor'(${1:Val}) $2" -p75185 -tp75186 -a(S"'enc_StatisticsDescriptor'/1" -p75187 -S"'enc_StatisticsDescriptor'(${1:Val}) $2" -p75188 -tp75189 -a(S"'enc_StatisticsParameter'/1" -p75190 -S"'enc_StatisticsParameter'(${1:Val}) $2" -p75191 -tp75192 -a(S"'enc_StreamDescriptor'/1" -p75193 -S"'enc_StreamDescriptor'(${1:Val}) $2" -p75194 -tp75195 -a(S"'enc_StreamID'/1" -p75196 -S"'enc_StreamID'(${1:Val}) $2" -p75197 -tp75198 -a(S"'enc_StreamMode'/1" -p75199 -S"'enc_StreamMode'(${1:Val}) $2" -p75200 -tp75201 -a(S"'enc_StreamParms'/1" -p75202 -S"'enc_StreamParms'(${1:Val}) $2" -p75203 -tp75204 -a(S"'enc_SubtractRequest'/1" -p75205 -S"'enc_SubtractRequest'(${1:Val}) $2" -p75206 -tp75207 -a(S"'enc_TerminationAudit'/1" -p75208 -S"'enc_TerminationAudit'(${1:Val}) $2" -p75209 -tp75210 -a(S"'enc_TerminationID'/1" -p75211 -S"'enc_TerminationID'(${1:Val}) $2" -p75212 -tp75213 -a(S"'enc_TerminationIDList'/1" -p75214 -S"'enc_TerminationIDList'(${1:Val}) $2" -p75215 -tp75216 -a(S"'enc_TerminationStateDescriptor'/1" -p75217 -S"'enc_TerminationStateDescriptor'(${1:Val}) $2" -p75218 -tp75219 -a(S"'enc_TimeNotation'/1" -p75220 -S"'enc_TimeNotation'(${1:Val}) $2" -p75221 -tp75222 -a(S"'enc_TopologyRequest'/1" -p75223 -S"'enc_TopologyRequest'(${1:Val}) $2" -p75224 -tp75225 -a(S"'enc_Transaction'/1" -p75226 -S"'enc_Transaction'(${1:Val}) $2" -p75227 -tp75228 -a(S"'enc_TransactionAck'/1" -p75229 -S"'enc_TransactionAck'(${1:Val}) $2" -p75230 -tp75231 -a(S"'enc_TransactionId'/1" -p75232 -S"'enc_TransactionId'(${1:Val}) $2" -p75233 -tp75234 -a(S"'enc_TransactionPending'/1" -p75235 -S"'enc_TransactionPending'(${1:Val}) $2" -p75236 -tp75237 -a(S"'enc_TransactionReply'/1" -p75238 -S"'enc_TransactionReply'(${1:Val}) $2" -p75239 -tp75240 -a(S"'enc_TransactionRequest'/1" -p75241 -S"'enc_TransactionRequest'(${1:Val}) $2" -p75242 -tp75243 -a(S"'enc_TransactionResponseAck'/1" -p75244 -S"'enc_TransactionResponseAck'(${1:Val}) $2" -p75245 -tp75246 -a(S"'enc_Value'/1" -p75247 -S"'enc_Value'(${1:Val}) $2" -p75248 -tp75249 -a(S"'enc_WildcardField'/1" -p75250 -S"'enc_WildcardField'(${1:Val}) $2" -p75251 -tp75252 -a(S'decode/2' -p75253 -S'decode(${1:Type}, ${2:Data}) $3' -p75254 -tp75255 -a(S'decode_disp/2' -p75256 -S'decode_disp(${1:Type}, ${2:Data}) $3' -p75257 -tp75258 -a(S'encode/2' -p75259 -S'encode(${1:Type}, ${2:Data}) $3' -p75260 -tp75261 -a(S'encode_disp/2' -p75262 -S'encode_disp(${1:Type}, ${2:Data}) $3' -p75263 -tp75264 -a(S'encoding_rule/0' -p75265 -S'encoding_rule() $1' -p75266 -tp75267 -a(S'info/0' -p75268 -S'info() $1' -p75269 -tp75270 -asS'megaco_per_bin_media_gateway_control_prev3c' -p75271 -(lp75272 -(S"'dec_ActionReply'/2" -p75273 -S"'dec_ActionReply'(${1:Bytes}, ${2:Param2}) $3" -p75274 -tp75275 -a(S"'dec_ActionRequest'/2" -p75276 -S"'dec_ActionRequest'(${1:Bytes}, ${2:Param2}) $3" -p75277 -tp75278 -a(S"'dec_AmmDescriptor'/2" -p75279 -S"'dec_AmmDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p75280 -tp75281 -a(S"'dec_AmmRequest'/2" -p75282 -S"'dec_AmmRequest'(${1:Bytes}, ${2:Param2}) $3" -p75283 -tp75284 -a(S"'dec_AmmsReply'/2" -p75285 -S"'dec_AmmsReply'(${1:Bytes}, ${2:Param2}) $3" -p75286 -tp75287 -a(S"'dec_AuditDescriptor'/2" -p75288 -S"'dec_AuditDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p75289 -tp75290 -a(S"'dec_AuditReply'/2" -p75291 -S"'dec_AuditReply'(${1:Bytes}, ${2:Param2}) $3" -p75292 -tp75293 -a(S"'dec_AuditRequest'/2" -p75294 -S"'dec_AuditRequest'(${1:Bytes}, ${2:Param2}) $3" -p75295 -tp75296 -a(S"'dec_AuditResult'/2" -p75297 -S"'dec_AuditResult'(${1:Bytes}, ${2:Param2}) $3" -p75298 -tp75299 -a(S"'dec_AuditReturnParameter'/2" -p75300 -S"'dec_AuditReturnParameter'(${1:Bytes}, ${2:Param2}) $3" -p75301 -tp75302 -a(S"'dec_AuthData'/2" -p75303 -S"'dec_AuthData'(${1:Bytes}, ${2:Param2}) $3" -p75304 -tp75305 -a(S"'dec_AuthenticationHeader'/2" -p75306 -S"'dec_AuthenticationHeader'(${1:Bytes}, ${2:Param2}) $3" -p75307 -tp75308 -a(S"'dec_Command'/2" -p75309 -S"'dec_Command'(${1:Bytes}, ${2:Param2}) $3" -p75310 -tp75311 -a(S"'dec_CommandReply'/2" -p75312 -S"'dec_CommandReply'(${1:Bytes}, ${2:Param2}) $3" -p75313 -tp75314 -a(S"'dec_CommandRequest'/2" -p75315 -S"'dec_CommandRequest'(${1:Bytes}, ${2:Param2}) $3" -p75316 -tp75317 -a(S"'dec_ContextAttrAuditRequest'/2" -p75318 -S"'dec_ContextAttrAuditRequest'(${1:Bytes}, ${2:Param2}) $3" -p75319 -tp75320 -a(S"'dec_ContextID'/2" -p75321 -S"'dec_ContextID'(${1:Bytes}, ${2:Param2}) $3" -p75322 -tp75323 -a(S"'dec_ContextRequest'/2" -p75324 -S"'dec_ContextRequest'(${1:Bytes}, ${2:Param2}) $3" -p75325 -tp75326 -a(S"'dec_DigitMapDescriptor'/2" -p75327 -S"'dec_DigitMapDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p75328 -tp75329 -a(S"'dec_DigitMapName'/2" -p75330 -S"'dec_DigitMapName'(${1:Bytes}, ${2:Param2}) $3" -p75331 -tp75332 -a(S"'dec_DigitMapValue'/2" -p75333 -S"'dec_DigitMapValue'(${1:Bytes}, ${2:Param2}) $3" -p75334 -tp75335 -a(S"'dec_DomainName'/2" -p75336 -S"'dec_DomainName'(${1:Bytes}, ${2:Param2}) $3" -p75337 -tp75338 -a(S"'dec_ErrorCode'/2" -p75339 -S"'dec_ErrorCode'(${1:Bytes}, ${2:Param2}) $3" -p75340 -tp75341 -a(S"'dec_ErrorDescriptor'/2" -p75342 -S"'dec_ErrorDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p75343 -tp75344 -a(S"'dec_ErrorText'/2" -p75345 -S"'dec_ErrorText'(${1:Bytes}, ${2:Param2}) $3" -p75346 -tp75347 -a(S"'dec_EventBufferControl'/2" -p75348 -S"'dec_EventBufferControl'(${1:Bytes}, ${2:Param2}) $3" -p75349 -tp75350 -a(S"'dec_EventBufferDescriptor'/2" -p75351 -S"'dec_EventBufferDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p75352 -tp75353 -a(S"'dec_EventDM'/2" -p75354 -S"'dec_EventDM'(${1:Bytes}, ${2:Param2}) $3" -p75355 -tp75356 -a(S"'dec_EventName'/2" -p75357 -S"'dec_EventName'(${1:Bytes}, ${2:Param2}) $3" -p75358 -tp75359 -a(S"'dec_EventParameter'/2" -p75360 -S"'dec_EventParameter'(${1:Bytes}, ${2:Param2}) $3" -p75361 -tp75362 -a(S"'dec_EventSpec'/2" -p75363 -S"'dec_EventSpec'(${1:Bytes}, ${2:Param2}) $3" -p75364 -tp75365 -a(S"'dec_EventsDescriptor'/2" -p75366 -S"'dec_EventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p75367 -tp75368 -a(S"'dec_H221NonStandard'/2" -p75369 -S"'dec_H221NonStandard'(${1:Bytes}, ${2:Param2}) $3" -p75370 -tp75371 -a(S"'dec_IP4Address'/2" -p75372 -S"'dec_IP4Address'(${1:Bytes}, ${2:Param2}) $3" -p75373 -tp75374 -a(S"'dec_IP6Address'/2" -p75375 -S"'dec_IP6Address'(${1:Bytes}, ${2:Param2}) $3" -p75376 -tp75377 -a(S"'dec_IndAudDigitMapDescriptor'/2" -p75378 -S"'dec_IndAudDigitMapDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p75379 -tp75380 -a(S"'dec_IndAudEventBufferDescriptor'/2" -p75381 -S"'dec_IndAudEventBufferDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p75382 -tp75383 -a(S"'dec_IndAudEventsDescriptor'/2" -p75384 -S"'dec_IndAudEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p75385 -tp75386 -a(S"'dec_IndAudLocalControlDescriptor'/2" -p75387 -S"'dec_IndAudLocalControlDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p75388 -tp75389 -a(S"'dec_IndAudLocalRemoteDescriptor'/2" -p75390 -S"'dec_IndAudLocalRemoteDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p75391 -tp75392 -a(S"'dec_IndAudMediaDescriptor'/2" -p75393 -S"'dec_IndAudMediaDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p75394 -tp75395 -a(S"'dec_IndAudPackagesDescriptor'/2" -p75396 -S"'dec_IndAudPackagesDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p75397 -tp75398 -a(S"'dec_IndAudPropertyGroup'/2" -p75399 -S"'dec_IndAudPropertyGroup'(${1:Bytes}, ${2:Param2}) $3" -p75400 -tp75401 -a(S"'dec_IndAudPropertyParm'/2" -p75402 -S"'dec_IndAudPropertyParm'(${1:Bytes}, ${2:Param2}) $3" -p75403 -tp75404 -a(S"'dec_IndAudSeqSigList'/2" -p75405 -S"'dec_IndAudSeqSigList'(${1:Bytes}, ${2:Param2}) $3" -p75406 -tp75407 -a(S"'dec_IndAudSignal'/2" -p75408 -S"'dec_IndAudSignal'(${1:Bytes}, ${2:Param2}) $3" -p75409 -tp75410 -a(S"'dec_IndAudSignalsDescriptor'/2" -p75411 -S"'dec_IndAudSignalsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p75412 -tp75413 -a(S"'dec_IndAudStatisticsDescriptor'/2" -p75414 -S"'dec_IndAudStatisticsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p75415 -tp75416 -a(S"'dec_IndAudStreamDescriptor'/2" -p75417 -S"'dec_IndAudStreamDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p75418 -tp75419 -a(S"'dec_IndAudStreamParms'/2" -p75420 -S"'dec_IndAudStreamParms'(${1:Bytes}, ${2:Param2}) $3" -p75421 -tp75422 -a(S"'dec_IndAudTerminationStateDescriptor'/2" -p75423 -S"'dec_IndAudTerminationStateDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p75424 -tp75425 -a(S"'dec_IndAuditParameter'/2" -p75426 -S"'dec_IndAuditParameter'(${1:Bytes}, ${2:Param2}) $3" -p75427 -tp75428 -a(S"'dec_LocalControlDescriptor'/2" -p75429 -S"'dec_LocalControlDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p75430 -tp75431 -a(S"'dec_LocalRemoteDescriptor'/2" -p75432 -S"'dec_LocalRemoteDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p75433 -tp75434 -a(S"'dec_MId'/2" -p75435 -S"'dec_MId'(${1:Bytes}, ${2:Param2}) $3" -p75436 -tp75437 -a(S"'dec_MediaDescriptor'/2" -p75438 -S"'dec_MediaDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p75439 -tp75440 -a(S"'dec_MegacoMessage'/2" -p75441 -S"'dec_MegacoMessage'(${1:Bytes}, ${2:Param2}) $3" -p75442 -tp75443 -a(S"'dec_Message'/2" -p75444 -S"'dec_Message'(${1:Bytes}, ${2:Param2}) $3" -p75445 -tp75446 -a(S"'dec_ModemDescriptor'/2" -p75447 -S"'dec_ModemDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p75448 -tp75449 -a(S"'dec_ModemType'/2" -p75450 -S"'dec_ModemType'(${1:Bytes}, ${2:Param2}) $3" -p75451 -tp75452 -a(S"'dec_MuxDescriptor'/2" -p75453 -S"'dec_MuxDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p75454 -tp75455 -a(S"'dec_MuxType'/2" -p75456 -S"'dec_MuxType'(${1:Bytes}, ${2:Param2}) $3" -p75457 -tp75458 -a(S"'dec_Name'/2" -p75459 -S"'dec_Name'(${1:Bytes}, ${2:Param2}) $3" -p75460 -tp75461 -a(S"'dec_NonStandardData'/2" -p75462 -S"'dec_NonStandardData'(${1:Bytes}, ${2:Param2}) $3" -p75463 -tp75464 -a(S"'dec_NonStandardIdentifier'/2" -p75465 -S"'dec_NonStandardIdentifier'(${1:Bytes}, ${2:Param2}) $3" -p75466 -tp75467 -a(S"'dec_NotifyBehaviour'/2" -p75468 -S"'dec_NotifyBehaviour'(${1:Bytes}, ${2:Param2}) $3" -p75469 -tp75470 -a(S"'dec_NotifyCompletion'/2" -p75471 -S"'dec_NotifyCompletion'(${1:Bytes}, ${2:Param2}) $3" -p75472 -tp75473 -a(S"'dec_NotifyReply'/2" -p75474 -S"'dec_NotifyReply'(${1:Bytes}, ${2:Param2}) $3" -p75475 -tp75476 -a(S"'dec_NotifyRequest'/2" -p75477 -S"'dec_NotifyRequest'(${1:Bytes}, ${2:Param2}) $3" -p75478 -tp75479 -a(S"'dec_ObservedEvent'/2" -p75480 -S"'dec_ObservedEvent'(${1:Bytes}, ${2:Param2}) $3" -p75481 -tp75482 -a(S"'dec_ObservedEventsDescriptor'/2" -p75483 -S"'dec_ObservedEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p75484 -tp75485 -a(S"'dec_PackagesDescriptor'/2" -p75486 -S"'dec_PackagesDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p75487 -tp75488 -a(S"'dec_PackagesItem'/2" -p75489 -S"'dec_PackagesItem'(${1:Bytes}, ${2:Param2}) $3" -p75490 -tp75491 -a(S"'dec_PathName'/2" -p75492 -S"'dec_PathName'(${1:Bytes}, ${2:Param2}) $3" -p75493 -tp75494 -a(S"'dec_PkgdName'/2" -p75495 -S"'dec_PkgdName'(${1:Bytes}, ${2:Param2}) $3" -p75496 -tp75497 -a(S"'dec_PropertyGroup'/2" -p75498 -S"'dec_PropertyGroup'(${1:Bytes}, ${2:Param2}) $3" -p75499 -tp75500 -a(S"'dec_PropertyParm'/2" -p75501 -S"'dec_PropertyParm'(${1:Bytes}, ${2:Param2}) $3" -p75502 -tp75503 -a(S"'dec_RegulatedEmbeddedDescriptor'/2" -p75504 -S"'dec_RegulatedEmbeddedDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p75505 -tp75506 -a(S"'dec_Relation'/2" -p75507 -S"'dec_Relation'(${1:Bytes}, ${2:Param2}) $3" -p75508 -tp75509 -a(S"'dec_RequestID'/2" -p75510 -S"'dec_RequestID'(${1:Bytes}, ${2:Param2}) $3" -p75511 -tp75512 -a(S"'dec_RequestedActions'/2" -p75513 -S"'dec_RequestedActions'(${1:Bytes}, ${2:Param2}) $3" -p75514 -tp75515 -a(S"'dec_RequestedEvent'/2" -p75516 -S"'dec_RequestedEvent'(${1:Bytes}, ${2:Param2}) $3" -p75517 -tp75518 -a(S"'dec_SecondEventsDescriptor'/2" -p75519 -S"'dec_SecondEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p75520 -tp75521 -a(S"'dec_SecondRequestedActions'/2" -p75522 -S"'dec_SecondRequestedActions'(${1:Bytes}, ${2:Param2}) $3" -p75523 -tp75524 -a(S"'dec_SecondRequestedEvent'/2" -p75525 -S"'dec_SecondRequestedEvent'(${1:Bytes}, ${2:Param2}) $3" -p75526 -tp75527 -a(S"'dec_SecurityParmIndex'/2" -p75528 -S"'dec_SecurityParmIndex'(${1:Bytes}, ${2:Param2}) $3" -p75529 -tp75530 -a(S"'dec_SegmentNumber'/2" -p75531 -S"'dec_SegmentNumber'(${1:Bytes}, ${2:Param2}) $3" -p75532 -tp75533 -a(S"'dec_SelectLogic'/2" -p75534 -S"'dec_SelectLogic'(${1:Bytes}, ${2:Param2}) $3" -p75535 -tp75536 -a(S"'dec_SeqSigList'/2" -p75537 -S"'dec_SeqSigList'(${1:Bytes}, ${2:Param2}) $3" -p75538 -tp75539 -a(S"'dec_SequenceNum'/2" -p75540 -S"'dec_SequenceNum'(${1:Bytes}, ${2:Param2}) $3" -p75541 -tp75542 -a(S"'dec_ServiceChangeAddress'/2" -p75543 -S"'dec_ServiceChangeAddress'(${1:Bytes}, ${2:Param2}) $3" -p75544 -tp75545 -a(S"'dec_ServiceChangeMethod'/2" -p75546 -S"'dec_ServiceChangeMethod'(${1:Bytes}, ${2:Param2}) $3" -p75547 -tp75548 -a(S"'dec_ServiceChangeParm'/2" -p75549 -S"'dec_ServiceChangeParm'(${1:Bytes}, ${2:Param2}) $3" -p75550 -tp75551 -a(S"'dec_ServiceChangeProfile'/2" -p75552 -S"'dec_ServiceChangeProfile'(${1:Bytes}, ${2:Param2}) $3" -p75553 -tp75554 -a(S"'dec_ServiceChangeReply'/2" -p75555 -S"'dec_ServiceChangeReply'(${1:Bytes}, ${2:Param2}) $3" -p75556 -tp75557 -a(S"'dec_ServiceChangeRequest'/2" -p75558 -S"'dec_ServiceChangeRequest'(${1:Bytes}, ${2:Param2}) $3" -p75559 -tp75560 -a(S"'dec_ServiceChangeResParm'/2" -p75561 -S"'dec_ServiceChangeResParm'(${1:Bytes}, ${2:Param2}) $3" -p75562 -tp75563 -a(S"'dec_ServiceChangeResult'/2" -p75564 -S"'dec_ServiceChangeResult'(${1:Bytes}, ${2:Param2}) $3" -p75565 -tp75566 -a(S"'dec_ServiceState'/2" -p75567 -S"'dec_ServiceState'(${1:Bytes}, ${2:Param2}) $3" -p75568 -tp75569 -a(S"'dec_SigParameter'/2" -p75570 -S"'dec_SigParameter'(${1:Bytes}, ${2:Param2}) $3" -p75571 -tp75572 -a(S"'dec_Signal'/2" -p75573 -S"'dec_Signal'(${1:Bytes}, ${2:Param2}) $3" -p75574 -tp75575 -a(S"'dec_SignalDirection'/2" -p75576 -S"'dec_SignalDirection'(${1:Bytes}, ${2:Param2}) $3" -p75577 -tp75578 -a(S"'dec_SignalName'/2" -p75579 -S"'dec_SignalName'(${1:Bytes}, ${2:Param2}) $3" -p75580 -tp75581 -a(S"'dec_SignalRequest'/2" -p75582 -S"'dec_SignalRequest'(${1:Bytes}, ${2:Param2}) $3" -p75583 -tp75584 -a(S"'dec_SignalType'/2" -p75585 -S"'dec_SignalType'(${1:Bytes}, ${2:Param2}) $3" -p75586 -tp75587 -a(S"'dec_SignalsDescriptor'/2" -p75588 -S"'dec_SignalsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p75589 -tp75590 -a(S"'dec_StatisticsDescriptor'/2" -p75591 -S"'dec_StatisticsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p75592 -tp75593 -a(S"'dec_StatisticsParameter'/2" -p75594 -S"'dec_StatisticsParameter'(${1:Bytes}, ${2:Param2}) $3" -p75595 -tp75596 -a(S"'dec_StreamDescriptor'/2" -p75597 -S"'dec_StreamDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p75598 -tp75599 -a(S"'dec_StreamID'/2" -p75600 -S"'dec_StreamID'(${1:Bytes}, ${2:Param2}) $3" -p75601 -tp75602 -a(S"'dec_StreamMode'/2" -p75603 -S"'dec_StreamMode'(${1:Bytes}, ${2:Param2}) $3" -p75604 -tp75605 -a(S"'dec_StreamParms'/2" -p75606 -S"'dec_StreamParms'(${1:Bytes}, ${2:Param2}) $3" -p75607 -tp75608 -a(S"'dec_SubtractRequest'/2" -p75609 -S"'dec_SubtractRequest'(${1:Bytes}, ${2:Param2}) $3" -p75610 -tp75611 -a(S"'dec_TermListAuditResult'/2" -p75612 -S"'dec_TermListAuditResult'(${1:Bytes}, ${2:Param2}) $3" -p75613 -tp75614 -a(S"'dec_TerminationAudit'/2" -p75615 -S"'dec_TerminationAudit'(${1:Bytes}, ${2:Param2}) $3" -p75616 -tp75617 -a(S"'dec_TerminationID'/2" -p75618 -S"'dec_TerminationID'(${1:Bytes}, ${2:Param2}) $3" -p75619 -tp75620 -a(S"'dec_TerminationIDList'/2" -p75621 -S"'dec_TerminationIDList'(${1:Bytes}, ${2:Param2}) $3" -p75622 -tp75623 -a(S"'dec_TerminationStateDescriptor'/2" -p75624 -S"'dec_TerminationStateDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p75625 -tp75626 -a(S"'dec_TimeNotation'/2" -p75627 -S"'dec_TimeNotation'(${1:Bytes}, ${2:Param2}) $3" -p75628 -tp75629 -a(S"'dec_TopologyRequest'/2" -p75630 -S"'dec_TopologyRequest'(${1:Bytes}, ${2:Param2}) $3" -p75631 -tp75632 -a(S"'dec_Transaction'/2" -p75633 -S"'dec_Transaction'(${1:Bytes}, ${2:Param2}) $3" -p75634 -tp75635 -a(S"'dec_TransactionAck'/2" -p75636 -S"'dec_TransactionAck'(${1:Bytes}, ${2:Param2}) $3" -p75637 -tp75638 -a(S"'dec_TransactionId'/2" -p75639 -S"'dec_TransactionId'(${1:Bytes}, ${2:Param2}) $3" -p75640 -tp75641 -a(S"'dec_TransactionPending'/2" -p75642 -S"'dec_TransactionPending'(${1:Bytes}, ${2:Param2}) $3" -p75643 -tp75644 -a(S"'dec_TransactionReply'/2" -p75645 -S"'dec_TransactionReply'(${1:Bytes}, ${2:Param2}) $3" -p75646 -tp75647 -a(S"'dec_TransactionRequest'/2" -p75648 -S"'dec_TransactionRequest'(${1:Bytes}, ${2:Param2}) $3" -p75649 -tp75650 -a(S"'dec_TransactionResponseAck'/2" -p75651 -S"'dec_TransactionResponseAck'(${1:Bytes}, ${2:Param2}) $3" -p75652 -tp75653 -a(S"'dec_Value'/2" -p75654 -S"'dec_Value'(${1:Bytes}, ${2:Param2}) $3" -p75655 -tp75656 -a(S"'dec_WildcardField'/2" -p75657 -S"'dec_WildcardField'(${1:Bytes}, ${2:Param2}) $3" -p75658 -tp75659 -a(S"'enc_ActionReply'/1" -p75660 -S"'enc_ActionReply'(${1:Val}) $2" -p75661 -tp75662 -a(S"'enc_ActionRequest'/1" -p75663 -S"'enc_ActionRequest'(${1:Val}) $2" -p75664 -tp75665 -a(S"'enc_AmmDescriptor'/1" -p75666 -S"'enc_AmmDescriptor'(${1:Val}) $2" -p75667 -tp75668 -a(S"'enc_AmmRequest'/1" -p75669 -S"'enc_AmmRequest'(${1:Val}) $2" -p75670 -tp75671 -a(S"'enc_AmmsReply'/1" -p75672 -S"'enc_AmmsReply'(${1:Val}) $2" -p75673 -tp75674 -a(S"'enc_AuditDescriptor'/1" -p75675 -S"'enc_AuditDescriptor'(${1:Val}) $2" -p75676 -tp75677 -a(S"'enc_AuditReply'/1" -p75678 -S"'enc_AuditReply'(${1:Val}) $2" -p75679 -tp75680 -a(S"'enc_AuditRequest'/1" -p75681 -S"'enc_AuditRequest'(${1:Val}) $2" -p75682 -tp75683 -a(S"'enc_AuditResult'/1" -p75684 -S"'enc_AuditResult'(${1:Val}) $2" -p75685 -tp75686 -a(S"'enc_AuditReturnParameter'/1" -p75687 -S"'enc_AuditReturnParameter'(${1:Val}) $2" -p75688 -tp75689 -a(S"'enc_AuthData'/1" -p75690 -S"'enc_AuthData'(${1:Val}) $2" -p75691 -tp75692 -a(S"'enc_AuthenticationHeader'/1" -p75693 -S"'enc_AuthenticationHeader'(${1:Val}) $2" -p75694 -tp75695 -a(S"'enc_Command'/1" -p75696 -S"'enc_Command'(${1:Val}) $2" -p75697 -tp75698 -a(S"'enc_CommandReply'/1" -p75699 -S"'enc_CommandReply'(${1:Val}) $2" -p75700 -tp75701 -a(S"'enc_CommandRequest'/1" -p75702 -S"'enc_CommandRequest'(${1:Val}) $2" -p75703 -tp75704 -a(S"'enc_ContextAttrAuditRequest'/1" -p75705 -S"'enc_ContextAttrAuditRequest'(${1:Val}) $2" -p75706 -tp75707 -a(S"'enc_ContextID'/1" -p75708 -S"'enc_ContextID'(${1:Val}) $2" -p75709 -tp75710 -a(S"'enc_ContextRequest'/1" -p75711 -S"'enc_ContextRequest'(${1:Val}) $2" -p75712 -tp75713 -a(S"'enc_DigitMapDescriptor'/1" -p75714 -S"'enc_DigitMapDescriptor'(${1:Val}) $2" -p75715 -tp75716 -a(S"'enc_DigitMapName'/1" -p75717 -S"'enc_DigitMapName'(${1:Val}) $2" -p75718 -tp75719 -a(S"'enc_DigitMapValue'/1" -p75720 -S"'enc_DigitMapValue'(${1:Val}) $2" -p75721 -tp75722 -a(S"'enc_DomainName'/1" -p75723 -S"'enc_DomainName'(${1:Val}) $2" -p75724 -tp75725 -a(S"'enc_ErrorCode'/1" -p75726 -S"'enc_ErrorCode'(${1:Val}) $2" -p75727 -tp75728 -a(S"'enc_ErrorDescriptor'/1" -p75729 -S"'enc_ErrorDescriptor'(${1:Val}) $2" -p75730 -tp75731 -a(S"'enc_ErrorText'/1" -p75732 -S"'enc_ErrorText'(${1:Val}) $2" -p75733 -tp75734 -a(S"'enc_EventBufferControl'/1" -p75735 -S"'enc_EventBufferControl'(${1:Val}) $2" -p75736 -tp75737 -a(S"'enc_EventBufferDescriptor'/1" -p75738 -S"'enc_EventBufferDescriptor'(${1:Val}) $2" -p75739 -tp75740 -a(S"'enc_EventDM'/1" -p75741 -S"'enc_EventDM'(${1:Val}) $2" -p75742 -tp75743 -a(S"'enc_EventName'/1" -p75744 -S"'enc_EventName'(${1:Val}) $2" -p75745 -tp75746 -a(S"'enc_EventParameter'/1" -p75747 -S"'enc_EventParameter'(${1:Val}) $2" -p75748 -tp75749 -a(S"'enc_EventSpec'/1" -p75750 -S"'enc_EventSpec'(${1:Val}) $2" -p75751 -tp75752 -a(S"'enc_EventsDescriptor'/1" -p75753 -S"'enc_EventsDescriptor'(${1:Val}) $2" -p75754 -tp75755 -a(S"'enc_H221NonStandard'/1" -p75756 -S"'enc_H221NonStandard'(${1:Val}) $2" -p75757 -tp75758 -a(S"'enc_IP4Address'/1" -p75759 -S"'enc_IP4Address'(${1:Val}) $2" -p75760 -tp75761 -a(S"'enc_IP6Address'/1" -p75762 -S"'enc_IP6Address'(${1:Val}) $2" -p75763 -tp75764 -a(S"'enc_IndAudDigitMapDescriptor'/1" -p75765 -S"'enc_IndAudDigitMapDescriptor'(${1:Val}) $2" -p75766 -tp75767 -a(S"'enc_IndAudEventBufferDescriptor'/1" -p75768 -S"'enc_IndAudEventBufferDescriptor'(${1:Val}) $2" -p75769 -tp75770 -a(S"'enc_IndAudEventsDescriptor'/1" -p75771 -S"'enc_IndAudEventsDescriptor'(${1:Val}) $2" -p75772 -tp75773 -a(S"'enc_IndAudLocalControlDescriptor'/1" -p75774 -S"'enc_IndAudLocalControlDescriptor'(${1:Val}) $2" -p75775 -tp75776 -a(S"'enc_IndAudLocalRemoteDescriptor'/1" -p75777 -S"'enc_IndAudLocalRemoteDescriptor'(${1:Val}) $2" -p75778 -tp75779 -a(S"'enc_IndAudMediaDescriptor'/1" -p75780 -S"'enc_IndAudMediaDescriptor'(${1:Val}) $2" -p75781 -tp75782 -a(S"'enc_IndAudPackagesDescriptor'/1" -p75783 -S"'enc_IndAudPackagesDescriptor'(${1:Val}) $2" -p75784 -tp75785 -a(S"'enc_IndAudPropertyGroup'/1" -p75786 -S"'enc_IndAudPropertyGroup'(${1:Val}) $2" -p75787 -tp75788 -a(S"'enc_IndAudPropertyParm'/1" -p75789 -S"'enc_IndAudPropertyParm'(${1:Val}) $2" -p75790 -tp75791 -a(S"'enc_IndAudSeqSigList'/1" -p75792 -S"'enc_IndAudSeqSigList'(${1:Val}) $2" -p75793 -tp75794 -a(S"'enc_IndAudSignal'/1" -p75795 -S"'enc_IndAudSignal'(${1:Val}) $2" -p75796 -tp75797 -a(S"'enc_IndAudSignalsDescriptor'/1" -p75798 -S"'enc_IndAudSignalsDescriptor'(${1:Val}) $2" -p75799 -tp75800 -a(S"'enc_IndAudStatisticsDescriptor'/1" -p75801 -S"'enc_IndAudStatisticsDescriptor'(${1:Val}) $2" -p75802 -tp75803 -a(S"'enc_IndAudStreamDescriptor'/1" -p75804 -S"'enc_IndAudStreamDescriptor'(${1:Val}) $2" -p75805 -tp75806 -a(S"'enc_IndAudStreamParms'/1" -p75807 -S"'enc_IndAudStreamParms'(${1:Val}) $2" -p75808 -tp75809 -a(S"'enc_IndAudTerminationStateDescriptor'/1" -p75810 -S"'enc_IndAudTerminationStateDescriptor'(${1:Val}) $2" -p75811 -tp75812 -a(S"'enc_IndAuditParameter'/1" -p75813 -S"'enc_IndAuditParameter'(${1:Val}) $2" -p75814 -tp75815 -a(S"'enc_LocalControlDescriptor'/1" -p75816 -S"'enc_LocalControlDescriptor'(${1:Val}) $2" -p75817 -tp75818 -a(S"'enc_LocalRemoteDescriptor'/1" -p75819 -S"'enc_LocalRemoteDescriptor'(${1:Val}) $2" -p75820 -tp75821 -a(S"'enc_MId'/1" -p75822 -S"'enc_MId'(${1:Val}) $2" -p75823 -tp75824 -a(S"'enc_MediaDescriptor'/1" -p75825 -S"'enc_MediaDescriptor'(${1:Val}) $2" -p75826 -tp75827 -a(S"'enc_MegacoMessage'/1" -p75828 -S"'enc_MegacoMessage'(${1:Val}) $2" -p75829 -tp75830 -a(S"'enc_Message'/1" -p75831 -S"'enc_Message'(${1:Val}) $2" -p75832 -tp75833 -a(S"'enc_ModemDescriptor'/1" -p75834 -S"'enc_ModemDescriptor'(${1:Val}) $2" -p75835 -tp75836 -a(S"'enc_ModemType'/1" -p75837 -S"'enc_ModemType'(${1:Val}) $2" -p75838 -tp75839 -a(S"'enc_MuxDescriptor'/1" -p75840 -S"'enc_MuxDescriptor'(${1:Val}) $2" -p75841 -tp75842 -a(S"'enc_MuxType'/1" -p75843 -S"'enc_MuxType'(${1:Val}) $2" -p75844 -tp75845 -a(S"'enc_Name'/1" -p75846 -S"'enc_Name'(${1:Val}) $2" -p75847 -tp75848 -a(S"'enc_NonStandardData'/1" -p75849 -S"'enc_NonStandardData'(${1:Val}) $2" -p75850 -tp75851 -a(S"'enc_NonStandardIdentifier'/1" -p75852 -S"'enc_NonStandardIdentifier'(${1:Val}) $2" -p75853 -tp75854 -a(S"'enc_NotifyBehaviour'/1" -p75855 -S"'enc_NotifyBehaviour'(${1:Val}) $2" -p75856 -tp75857 -a(S"'enc_NotifyCompletion'/1" -p75858 -S"'enc_NotifyCompletion'(${1:Val}) $2" -p75859 -tp75860 -a(S"'enc_NotifyReply'/1" -p75861 -S"'enc_NotifyReply'(${1:Val}) $2" -p75862 -tp75863 -a(S"'enc_NotifyRequest'/1" -p75864 -S"'enc_NotifyRequest'(${1:Val}) $2" -p75865 -tp75866 -a(S"'enc_ObservedEvent'/1" -p75867 -S"'enc_ObservedEvent'(${1:Val}) $2" -p75868 -tp75869 -a(S"'enc_ObservedEventsDescriptor'/1" -p75870 -S"'enc_ObservedEventsDescriptor'(${1:Val}) $2" -p75871 -tp75872 -a(S"'enc_PackagesDescriptor'/1" -p75873 -S"'enc_PackagesDescriptor'(${1:Val}) $2" -p75874 -tp75875 -a(S"'enc_PackagesItem'/1" -p75876 -S"'enc_PackagesItem'(${1:Val}) $2" -p75877 -tp75878 -a(S"'enc_PathName'/1" -p75879 -S"'enc_PathName'(${1:Val}) $2" -p75880 -tp75881 -a(S"'enc_PkgdName'/1" -p75882 -S"'enc_PkgdName'(${1:Val}) $2" -p75883 -tp75884 -a(S"'enc_PropertyGroup'/1" -p75885 -S"'enc_PropertyGroup'(${1:Val}) $2" -p75886 -tp75887 -a(S"'enc_PropertyParm'/1" -p75888 -S"'enc_PropertyParm'(${1:Val}) $2" -p75889 -tp75890 -a(S"'enc_RegulatedEmbeddedDescriptor'/1" -p75891 -S"'enc_RegulatedEmbeddedDescriptor'(${1:Val}) $2" -p75892 -tp75893 -a(S"'enc_Relation'/1" -p75894 -S"'enc_Relation'(${1:Val}) $2" -p75895 -tp75896 -a(S"'enc_RequestID'/1" -p75897 -S"'enc_RequestID'(${1:Val}) $2" -p75898 -tp75899 -a(S"'enc_RequestedActions'/1" -p75900 -S"'enc_RequestedActions'(${1:Val}) $2" -p75901 -tp75902 -a(S"'enc_RequestedEvent'/1" -p75903 -S"'enc_RequestedEvent'(${1:Val}) $2" -p75904 -tp75905 -a(S"'enc_SecondEventsDescriptor'/1" -p75906 -S"'enc_SecondEventsDescriptor'(${1:Val}) $2" -p75907 -tp75908 -a(S"'enc_SecondRequestedActions'/1" -p75909 -S"'enc_SecondRequestedActions'(${1:Val}) $2" -p75910 -tp75911 -a(S"'enc_SecondRequestedEvent'/1" -p75912 -S"'enc_SecondRequestedEvent'(${1:Val}) $2" -p75913 -tp75914 -a(S"'enc_SecurityParmIndex'/1" -p75915 -S"'enc_SecurityParmIndex'(${1:Val}) $2" -p75916 -tp75917 -a(S"'enc_SegmentNumber'/1" -p75918 -S"'enc_SegmentNumber'(${1:Val}) $2" -p75919 -tp75920 -a(S"'enc_SelectLogic'/1" -p75921 -S"'enc_SelectLogic'(${1:Val}) $2" -p75922 -tp75923 -a(S"'enc_SeqSigList'/1" -p75924 -S"'enc_SeqSigList'(${1:Val}) $2" -p75925 -tp75926 -a(S"'enc_SequenceNum'/1" -p75927 -S"'enc_SequenceNum'(${1:Val}) $2" -p75928 -tp75929 -a(S"'enc_ServiceChangeAddress'/1" -p75930 -S"'enc_ServiceChangeAddress'(${1:Val}) $2" -p75931 -tp75932 -a(S"'enc_ServiceChangeMethod'/1" -p75933 -S"'enc_ServiceChangeMethod'(${1:Val}) $2" -p75934 -tp75935 -a(S"'enc_ServiceChangeParm'/1" -p75936 -S"'enc_ServiceChangeParm'(${1:Val}) $2" -p75937 -tp75938 -a(S"'enc_ServiceChangeProfile'/1" -p75939 -S"'enc_ServiceChangeProfile'(${1:Val}) $2" -p75940 -tp75941 -a(S"'enc_ServiceChangeReply'/1" -p75942 -S"'enc_ServiceChangeReply'(${1:Val}) $2" -p75943 -tp75944 -a(S"'enc_ServiceChangeRequest'/1" -p75945 -S"'enc_ServiceChangeRequest'(${1:Val}) $2" -p75946 -tp75947 -a(S"'enc_ServiceChangeResParm'/1" -p75948 -S"'enc_ServiceChangeResParm'(${1:Val}) $2" -p75949 -tp75950 -a(S"'enc_ServiceChangeResult'/1" -p75951 -S"'enc_ServiceChangeResult'(${1:Val}) $2" -p75952 -tp75953 -a(S"'enc_ServiceState'/1" -p75954 -S"'enc_ServiceState'(${1:Val}) $2" -p75955 -tp75956 -a(S"'enc_SigParameter'/1" -p75957 -S"'enc_SigParameter'(${1:Val}) $2" -p75958 -tp75959 -a(S"'enc_Signal'/1" -p75960 -S"'enc_Signal'(${1:Val}) $2" -p75961 -tp75962 -a(S"'enc_SignalDirection'/1" -p75963 -S"'enc_SignalDirection'(${1:Val}) $2" -p75964 -tp75965 -a(S"'enc_SignalName'/1" -p75966 -S"'enc_SignalName'(${1:Val}) $2" -p75967 -tp75968 -a(S"'enc_SignalRequest'/1" -p75969 -S"'enc_SignalRequest'(${1:Val}) $2" -p75970 -tp75971 -a(S"'enc_SignalType'/1" -p75972 -S"'enc_SignalType'(${1:Val}) $2" -p75973 -tp75974 -a(S"'enc_SignalsDescriptor'/1" -p75975 -S"'enc_SignalsDescriptor'(${1:Val}) $2" -p75976 -tp75977 -a(S"'enc_StatisticsDescriptor'/1" -p75978 -S"'enc_StatisticsDescriptor'(${1:Val}) $2" -p75979 -tp75980 -a(S"'enc_StatisticsParameter'/1" -p75981 -S"'enc_StatisticsParameter'(${1:Val}) $2" -p75982 -tp75983 -a(S"'enc_StreamDescriptor'/1" -p75984 -S"'enc_StreamDescriptor'(${1:Val}) $2" -p75985 -tp75986 -a(S"'enc_StreamID'/1" -p75987 -S"'enc_StreamID'(${1:Val}) $2" -p75988 -tp75989 -a(S"'enc_StreamMode'/1" -p75990 -S"'enc_StreamMode'(${1:Val}) $2" -p75991 -tp75992 -a(S"'enc_StreamParms'/1" -p75993 -S"'enc_StreamParms'(${1:Val}) $2" -p75994 -tp75995 -a(S"'enc_SubtractRequest'/1" -p75996 -S"'enc_SubtractRequest'(${1:Val}) $2" -p75997 -tp75998 -a(S"'enc_TermListAuditResult'/1" -p75999 -S"'enc_TermListAuditResult'(${1:Val}) $2" -p76000 -tp76001 -a(S"'enc_TerminationAudit'/1" -p76002 -S"'enc_TerminationAudit'(${1:Val}) $2" -p76003 -tp76004 -a(S"'enc_TerminationID'/1" -p76005 -S"'enc_TerminationID'(${1:Val}) $2" -p76006 -tp76007 -a(S"'enc_TerminationIDList'/1" -p76008 -S"'enc_TerminationIDList'(${1:Val}) $2" -p76009 -tp76010 -a(S"'enc_TerminationStateDescriptor'/1" -p76011 -S"'enc_TerminationStateDescriptor'(${1:Val}) $2" -p76012 -tp76013 -a(S"'enc_TimeNotation'/1" -p76014 -S"'enc_TimeNotation'(${1:Val}) $2" -p76015 -tp76016 -a(S"'enc_TopologyRequest'/1" -p76017 -S"'enc_TopologyRequest'(${1:Val}) $2" -p76018 -tp76019 -a(S"'enc_Transaction'/1" -p76020 -S"'enc_Transaction'(${1:Val}) $2" -p76021 -tp76022 -a(S"'enc_TransactionAck'/1" -p76023 -S"'enc_TransactionAck'(${1:Val}) $2" -p76024 -tp76025 -a(S"'enc_TransactionId'/1" -p76026 -S"'enc_TransactionId'(${1:Val}) $2" -p76027 -tp76028 -a(S"'enc_TransactionPending'/1" -p76029 -S"'enc_TransactionPending'(${1:Val}) $2" -p76030 -tp76031 -a(S"'enc_TransactionReply'/1" -p76032 -S"'enc_TransactionReply'(${1:Val}) $2" -p76033 -tp76034 -a(S"'enc_TransactionRequest'/1" -p76035 -S"'enc_TransactionRequest'(${1:Val}) $2" -p76036 -tp76037 -a(S"'enc_TransactionResponseAck'/1" -p76038 -S"'enc_TransactionResponseAck'(${1:Val}) $2" -p76039 -tp76040 -a(S"'enc_Value'/1" -p76041 -S"'enc_Value'(${1:Val}) $2" -p76042 -tp76043 -a(S"'enc_WildcardField'/1" -p76044 -S"'enc_WildcardField'(${1:Val}) $2" -p76045 -tp76046 -a(S'decode/2' -p76047 -S'decode(${1:Type}, ${2:Data}) $3' -p76048 -tp76049 -a(S'decode_disp/2' -p76050 -S'decode_disp(${1:Type}, ${2:Data}) $3' -p76051 -tp76052 -a(S'encode/2' -p76053 -S'encode(${1:Type}, ${2:Data}) $3' -p76054 -tp76055 -a(S'encode_disp/2' -p76056 -S'encode_disp(${1:Type}, ${2:Data}) $3' -p76057 -tp76058 -a(S'encoding_rule/0' -p76059 -S'encoding_rule() $1' -p76060 -tp76061 -a(S'info/0' -p76062 -S'info() $1' -p76063 -tp76064 -asS'asn1rt_per_bin' -p76065 -(lp76066 -(S'cindex/3' -p76067 -S'cindex(${1:Ix}, ${2:Val}, ${3:Cname}) $4' -p76068 -tp76069 -a(S'complete/1' -p76070 -S'complete(${1:L}) $2' -p76071 -tp76072 -a(S'complete_bytes/1' -p76073 -S'complete_bytes(${1:Param1}) $2' -p76074 -tp76075 -a(S'dec_fixup/3' -p76076 -S'dec_fixup(${1:Terms}, ${2:Cnames}, ${3:RemBytes}) $4' -p76077 -tp76078 -a(S'decode_BMPString/2' -p76079 -S'decode_BMPString(${1:Bytes}, ${2:C}) $3' -p76080 -tp76081 -a(S'decode_GeneralString/2' -p76082 -S'decode_GeneralString(${1:Bytes}, ${2:Param2}) $3' -p76083 -tp76084 -a(S'decode_GraphicString/2' -p76085 -S'decode_GraphicString(${1:Bytes}, ${2:Param2}) $3' -p76086 -tp76087 -a(S'decode_IA5String/2' -p76088 -S'decode_IA5String(${1:Bytes}, ${2:C}) $3' -p76089 -tp76090 -a(S'decode_NumericString/2' -p76091 -S'decode_NumericString(${1:Bytes}, ${2:C}) $3' -p76092 -tp76093 -a(S'decode_ObjectDescriptor/1' -p76094 -S'decode_ObjectDescriptor(${1:Bytes}) $2' -p76095 -tp76096 -a(S'decode_PrintableString/2' -p76097 -S'decode_PrintableString(${1:Bytes}, ${2:C}) $3' -p76098 -tp76099 -a(S'decode_TeletexString/2' -p76100 -S'decode_TeletexString(${1:Bytes}, ${2:Param2}) $3' -p76101 -tp76102 -a(S'decode_UTF8String/1' -p76103 -S'decode_UTF8String(${1:Bytes}) $2' -p76104 -tp76105 -a(S'decode_UniversalString/2' -p76106 -S'decode_UniversalString(${1:Bytes}, ${2:C}) $3' -p76107 -tp76108 -a(S'decode_VideotexString/2' -p76109 -S'decode_VideotexString(${1:Bytes}, ${2:Param2}) $3' -p76110 -tp76111 -a(S'decode_VisibleString/2' -p76112 -S'decode_VisibleString(${1:Bytes}, ${2:C}) $3' -p76113 -tp76114 -a(S'decode_bit_string/3' -p76115 -S'decode_bit_string(${1:Buffer}, ${2:C}, ${3:NamedNumberList}) $4' -p76116 -tp76117 -a(S'decode_boolean/1' -p76118 -S'decode_boolean(${1:Buffer}) $2' -p76119 -tp76120 -a(S'decode_compact_bit_string/3' -p76121 -S'decode_compact_bit_string(${1:Buffer}, ${2:C}, ${3:NamedNumberList}) $4' -p76122 -tp76123 -a(S'decode_enumerated/3' -p76124 -S'decode_enumerated(${1:Buffer}, ${2:C}, ${3:NamedNumberTup}) $4' -p76125 -tp76126 -a(S'decode_integer/2' -p76127 -S'decode_integer(${1:Buffer}, ${2:C}) $3' -p76128 -tp76129 -a(S'decode_integer/3' -p76130 -S'decode_integer(${1:Buffer}, ${2:Range}, ${3:NamedNumberList}) $4' -p76131 -tp76132 -a(S'decode_length/1' -p76133 -S'decode_length(${1:Buffer}) $2' -p76134 -tp76135 -a(S'decode_length/2' -p76136 -S'decode_length(${1:Buffer}, ${2:SingleValue}) $3' -p76137 -tp76138 -a(S'decode_null/1' -p76139 -S'decode_null(${1:Bytes}) $2' -p76140 -tp76141 -a(S'decode_object_identifier/1' -p76142 -S'decode_object_identifier(${1:Bytes}) $2' -p76143 -tp76144 -a(S'decode_octet_string/2' -p76145 -S'decode_octet_string(${1:Bytes}, ${2:Range}) $3' -p76146 -tp76147 -a(S'decode_open_type/2' -p76148 -S'decode_open_type(${1:Bytes}, ${2:Param2}) $3' -p76149 -tp76150 -a(S'decode_real/1' -p76151 -S'decode_real(${1:Bytes}) $2' -p76152 -tp76153 -a(S'decode_relative_oid/1' -p76154 -S'decode_relative_oid(${1:Bytes}) $2' -p76155 -tp76156 -a(S'decode_small_length/1' -p76157 -S'decode_small_length(${1:Buffer}) $2' -p76158 -tp76159 -a(S'encode_BMPString/2' -p76160 -S'encode_BMPString(${1:C}, ${2:Val}) $3' -p76161 -tp76162 -a(S'encode_GeneralString/2' -p76163 -S'encode_GeneralString(${1:Param1}, ${2:Val}) $3' -p76164 -tp76165 -a(S'encode_GraphicString/2' -p76166 -S'encode_GraphicString(${1:Param1}, ${2:Val}) $3' -p76167 -tp76168 -a(S'encode_IA5String/2' -p76169 -S'encode_IA5String(${1:C}, ${2:Val}) $3' -p76170 -tp76171 -a(S'encode_NumericString/2' -p76172 -S'encode_NumericString(${1:C}, ${2:Val}) $3' -p76173 -tp76174 -a(S'encode_ObjectDescriptor/2' -p76175 -S'encode_ObjectDescriptor(${1:Param1}, ${2:Val}) $3' -p76176 -tp76177 -a(S'encode_PrintableString/2' -p76178 -S'encode_PrintableString(${1:C}, ${2:Val}) $3' -p76179 -tp76180 -a(S'encode_TeletexString/2' -p76181 -S'encode_TeletexString(${1:Param1}, ${2:Val}) $3' -p76182 -tp76183 -a(S'encode_UTF8String/1' -p76184 -S'encode_UTF8String(${1:Val}) $2' -p76185 -tp76186 -a(S'encode_UniversalString/2' -p76187 -S'encode_UniversalString(${1:C}, ${2:Val}) $3' -p76188 -tp76189 -a(S'encode_VideotexString/2' -p76190 -S'encode_VideotexString(${1:Param1}, ${2:Val}) $3' -p76191 -tp76192 -a(S'encode_VisibleString/2' -p76193 -S'encode_VisibleString(${1:C}, ${2:Val}) $3' -p76194 -tp76195 -a(S'encode_bit_string/3' -p76196 -S'encode_bit_string(${1:C}, ${2:BitListValue}, ${3:NamedBitList}) $4' -p76197 -tp76198 -a(S'encode_boolean/1' -p76199 -S'encode_boolean(${1:Val}) $2' -p76200 -tp76201 -a(S'encode_integer/2' -p76202 -S'encode_integer(${1:C}, ${2:Val}) $3' -p76203 -tp76204 -a(S'encode_integer/3' -p76205 -S'encode_integer(${1:C}, ${2:V}, ${3:NamedNumberList}) $4' -p76206 -tp76207 -a(S'encode_length/2' -p76208 -S'encode_length(${1:SingleValue}, ${2:Len}) $3' -p76209 -tp76210 -a(S'encode_null/1' -p76211 -S'encode_null(${1:Param1}) $2' -p76212 -tp76213 -a(S'encode_object_identifier/1' -p76214 -S'encode_object_identifier(${1:Val}) $2' -p76215 -tp76216 -a(S'encode_octet_string/2' -p76217 -S'encode_octet_string(${1:C}, ${2:Val}) $3' -p76218 -tp76219 -a(S'encode_open_type/2' -p76220 -S'encode_open_type(${1:Param1}, ${2:Val}) $3' -p76221 -tp76222 -a(S'encode_real/1' -p76223 -S'encode_real(${1:Real}) $2' -p76224 -tp76225 -a(S'encode_relative_oid/1' -p76226 -S'encode_relative_oid(${1:Val}) $2' -p76227 -tp76228 -a(S'encode_small_length/1' -p76229 -S'encode_small_length(${1:Len}) $2' -p76230 -tp76231 -a(S'encode_small_number/1' -p76232 -S'encode_small_number(${1:Val}) $2' -p76233 -tp76234 -a(S'fixextensions/2' -p76235 -S'fixextensions(${1:Param1}, ${2:Val}) $3' -p76236 -tp76237 -a(S'fixoptionals/2' -p76238 -S'fixoptionals(${1:OptList}, ${2:Val}) $3' -p76239 -tp76240 -a(S'fixoptionals/3' -p76241 -S'fixoptionals(${1:OptList}, ${2:OptLength}, ${3:Val}) $4' -p76242 -tp76243 -a(S'getbit/1' -p76244 -S'getbit(${1:Buffer}) $2' -p76245 -tp76246 -a(S'getbits/2' -p76247 -S'getbits(${1:Bin}, ${2:Num}) $3' -p76248 -tp76249 -a(S'getchoice/3' -p76250 -S'getchoice(${1:Bytes}, ${2:NumChoices}, ${3:Param3}) $4' -p76251 -tp76252 -a(S'getext/1' -p76253 -S'getext(${1:Bytes}) $2' -p76254 -tp76255 -a(S'getextension/2' -p76256 -S'getextension(${1:Param1}, ${2:Bytes}) $3' -p76257 -tp76258 -a(S'getoctets/2' -p76259 -S'getoctets(${1:Buffer}, ${2:Num}) $3' -p76260 -tp76261 -a(S'getoptionals/2' -p76262 -S'getoptionals(${1:Bytes}, ${2:NumOpt}) $3' -p76263 -tp76264 -a(S'getoptionals2/2' -p76265 -S'getoptionals2(${1:Bytes}, ${2:NumOpt}) $3' -p76266 -tp76267 -a(S'list_to_record/2' -p76268 -S'list_to_record(${1:Name}, ${2:Tuple}) $3' -p76269 -tp76270 -a(S'set_choice/3' -p76271 -S'set_choice(${1:Alt}, ${2:L}, ${3:Len}) $4' -p76272 -tp76273 -a(S'setchoiceext/1' -p76274 -S'setchoiceext(${1:Param1}) $2' -p76275 -tp76276 -a(S'setext/1' -p76277 -S'setext(${1:Param1}) $2' -p76278 -tp76279 -a(S'skipextensions/3' -p76280 -S'skipextensions(${1:Bytes}, ${2:Nr}, ${3:ExtensionBitPattern}) $4' -p76281 -tp76282 -asS'init' -p76283 -(lp76284 -(S'archive_extension/0' -p76285 -S'archive_extension() $1' -p76286 -tp76287 -a(S'boot/1' -p76288 -S'boot(${1:BootArgs}) $2' -p76289 -tp76290 -a(S'code_path_choice/0' -p76291 -S'code_path_choice() $1' -p76292 -tp76293 -a(S'ensure_loaded/1' -p76294 -S'ensure_loaded(${1:Module}) $2' -p76295 -tp76296 -a(S'fetch_loaded/0' -p76297 -S'fetch_loaded() $1' -p76298 -tp76299 -a(S'get_argument/1' -p76300 -S'get_argument(${1:Flag}) $2' -p76301 -tp76302 -a(S'get_arguments/0' -p76303 -S'get_arguments() $1' -p76304 -tp76305 -a(S'get_plain_arguments/0' -p76306 -S'get_plain_arguments() $1' -p76307 -tp76308 -a(S'get_status/0' -p76309 -S'get_status() $1' -p76310 -tp76311 -a(S'make_permanent/2' -p76312 -S'make_permanent(${1:Boot}, ${2:Config}) $3' -p76313 -tp76314 -a(S'notify_when_started/1' -p76315 -S'notify_when_started(${1:Pid}) $2' -p76316 -tp76317 -a(S'objfile_extension/0' -p76318 -S'objfile_extension() $1' -p76319 -tp76320 -a(S'reboot/0' -p76321 -S'reboot() $1' -p76322 -tp76323 -a(S'restart/0' -p76324 -S'restart() $1' -p76325 -tp76326 -a(S'run_on_load_handlers/0' -p76327 -S'run_on_load_handlers() $1' -p76328 -tp76329 -a(S'script_id/0' -p76330 -S'script_id() $1' -p76331 -tp76332 -a(S'stop/0' -p76333 -S'stop() $1' -p76334 -tp76335 -a(S'stop/1' -p76336 -S'stop(${1:Status}) $2' -p76337 -tp76338 -a(S'wait_until_started/0' -p76339 -S'wait_until_started() $1' -p76340 -tp76341 -asS'wxGraphicsPath' -p76342 -(lp76343 -(S'addArc/6' -p76344 -S'addArc(${1:This}, ${2:C}, ${3:R}, ${4:StartAngle}, ${5:EndAngle}, ${6:Clockwise}) $7' -p76345 -tp76346 -a(S'addArc/7' -p76347 -S'addArc(${1:This}, ${2:X}, ${3:Y}, ${4:R}, ${5:StartAngle}, ${6:EndAngle}, ${7:Clockwise}) $8' -p76348 -tp76349 -a(S'addArcToPoint/6' -p76350 -S'addArcToPoint(${1:This}, ${2:X1}, ${3:Y1}, ${4:X2}, ${5:Y2}, ${6:R}) $7' -p76351 -tp76352 -a(S'addCircle/4' -p76353 -S'addCircle(${1:This}, ${2:X}, ${3:Y}, ${4:R}) $5' -p76354 -tp76355 -a(S'addCurveToPoint/4' -p76356 -S'addCurveToPoint(${1:This}, ${2:C1}, ${3:C2}, ${4:E}) $5' -p76357 -tp76358 -a(S'addCurveToPoint/7' -p76359 -S'addCurveToPoint(${1:This}, ${2:Cx1}, ${3:Cy1}, ${4:Cx2}, ${5:Cy2}, ${6:X}, ${7:Y}) $8' -p76360 -tp76361 -a(S'addEllipse/5' -p76362 -S'addEllipse(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p76363 -tp76364 -a(S'addLineToPoint/2' -p76365 -S'addLineToPoint(${1:This}, ${2:P}) $3' -p76366 -tp76367 -a(S'addLineToPoint/3' -p76368 -S'addLineToPoint(${1:This}, ${2:X}, ${3:Y}) $4' -p76369 -tp76370 -a(S'addPath/2' -p76371 -S'addPath(${1:This}, ${2:Path}) $3' -p76372 -tp76373 -a(S'addQuadCurveToPoint/5' -p76374 -S'addQuadCurveToPoint(${1:This}, ${2:Cx}, ${3:Cy}, ${4:X}, ${5:Y}) $6' -p76375 -tp76376 -a(S'addRectangle/5' -p76377 -S'addRectangle(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p76378 -tp76379 -a(S'addRoundedRectangle/6' -p76380 -S'addRoundedRectangle(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}, ${6:Radius}) $7' -p76381 -tp76382 -a(S'closeSubpath/1' -p76383 -S'closeSubpath(${1:This}) $2' -p76384 -tp76385 -a(S'contains/2' -p76386 -S'contains(${1:This}, ${2:C}) $3' -p76387 -tp76388 -a(S'contains/3' -p76389 -S'contains(${1:This}, ${2:X}, ${3:Y}) $4' -p76390 -tp76391 -a(S'contains/4' -p76392 -S'contains(${1:This}, ${2:X}, ${3:Y}, ${4:Param4}) $5' -p76393 -tp76394 -a(S'getBox/1' -p76395 -S'getBox(${1:This}) $2' -p76396 -tp76397 -a(S'getCurrentPoint/1' -p76398 -S'getCurrentPoint(${1:This}) $2' -p76399 -tp76400 -a(S'getRenderer/1' -p76401 -S'getRenderer(${1:This}) $2' -p76402 -tp76403 -a(S'isNull/1' -p76404 -S'isNull(${1:This}) $2' -p76405 -tp76406 -a(S'moveToPoint/2' -p76407 -S'moveToPoint(${1:This}, ${2:P}) $3' -p76408 -tp76409 -a(S'moveToPoint/3' -p76410 -S'moveToPoint(${1:This}, ${2:X}, ${3:Y}) $4' -p76411 -tp76412 -a(S'parent_class/1' -p76413 -S'parent_class(${1:Param1}) $2' -p76414 -tp76415 -a(S'transform/2' -p76416 -S'transform(${1:This}, ${2:Matrix}) $3' -p76417 -tp76418 -asS'test_server_h' -p76419 -(lp76420 -(S'code_change/3' -p76421 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p76422 -tp76423 -a(S'handle_call/2' -p76424 -S'handle_call(${1:Param1}, ${2:State}) $3' -p76425 -tp76426 -a(S'handle_event/2' -p76427 -S'handle_event(${1:Event}, ${2:State}) $3' -p76428 -tp76429 -a(S'handle_info/2' -p76430 -S'handle_info(${1:Event}, ${2:State}) $3' -p76431 -tp76432 -a(S'init/1' -p76433 -S'init(${1:Param1}) $2' -p76434 -tp76435 -a(S'install/0' -p76436 -S'install() $1' -p76437 -tp76438 -a(S'restore/0' -p76439 -S'restore() $1' -p76440 -tp76441 -a(S'terminate/2' -p76442 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p76443 -tp76444 -a(S'testcase/1' -p76445 -S'testcase(${1:Testcase}) $2' -p76446 -tp76447 -asS'snmpa_mib_lib' -p76448 -(lp76449 -(S'gc_tab/3' -p76450 -S'gc_tab(${1:TabDb}, ${2:STC}, ${3:FOI}) $4' -p76451 -tp76452 -a(S'gc_tab/5' -p76453 -S'gc_tab(${1:TabDb}, ${2:STC}, ${3:FOI}, ${4:InvalidateRow}, ${5:UpdateRow}) $6' -p76454 -tp76455 -a(S'get_table/2' -p76456 -S'get_table(${1:NameDb}, ${2:FOI}) $3' -p76457 -tp76458 -a(S'print_table/3' -p76459 -S'print_table(${1:Table}, ${2:TableInfo}, ${3:PrintRow}) $4' -p76460 -tp76461 -a(S'print_table/4' -p76462 -S'print_table(${1:Table}, ${2:DB}, ${3:FOI}, ${4:PrintRow}) $5' -p76463 -tp76464 -a(S'print_tables/1' -p76465 -S'print_tables(${1:Tables}) $2' -p76466 -tp76467 -a(S'print_variables/1' -p76468 -S'print_variables(${1:Variables}) $2' -p76469 -tp76470 -a(S'table_cre_row/3' -p76471 -S'table_cre_row(${1:TabDb}, ${2:Key}, ${3:Row}) $4' -p76472 -tp76473 -a(S'table_del_row/2' -p76474 -S'table_del_row(${1:TabDb}, ${2:Key}) $3' -p76475 -tp76476 -asS'CosEventDomainAdmin_CycleCreationForbidden' -p76477 -(lp76478 -(S'id/0' -p76479 -S'id() $1' -p76480 -tp76481 -a(S'name/0' -p76482 -S'name() $1' -p76483 -tp76484 -a(S'tc/0' -p76485 -S'tc() $1' -p76486 -tp76487 -asS'wxGridCellFloatRenderer' -p76488 -(lp76489 -(S'destroy/1' -p76490 -S'destroy(${1:This}) $2' -p76491 -tp76492 -a(S'draw/8' -p76493 -S'draw(${1:This}, ${2:Grid}, ${3:Attr}, ${4:Dc}, ${5:Rect}, ${6:Row}, ${7:Col}, ${8:IsSelected}) $9' -p76494 -tp76495 -a(S'getBestSize/6' -p76496 -S'getBestSize(${1:This}, ${2:Grid}, ${3:Attr}, ${4:Dc}, ${5:Row}, ${6:Col}) $7' -p76497 -tp76498 -a(S'getPrecision/1' -p76499 -S'getPrecision(${1:This}) $2' -p76500 -tp76501 -a(S'getWidth/1' -p76502 -S'getWidth(${1:This}) $2' -p76503 -tp76504 -a(S'new/0' -p76505 -S'new() $1' -p76506 -tp76507 -a(S'new/1' -p76508 -S'new(${1:Param1}) $2' -p76509 -tp76510 -a(S'parent_class/1' -p76511 -S'parent_class(${1:Param1}) $2' -p76512 -tp76513 -a(S'setParameters/2' -p76514 -S'setParameters(${1:This}, ${2:Params}) $3' -p76515 -tp76516 -a(S'setPrecision/2' -p76517 -S'setPrecision(${1:This}, ${2:Precision}) $3' -p76518 -tp76519 -a(S'setWidth/2' -p76520 -S'setWidth(${1:This}, ${2:Width}) $3' -p76521 -tp76522 -asS'CosNotification_EventHeader' -p76523 -(lp76524 -(S'id/0' -p76525 -S'id() $1' -p76526 -tp76527 -a(S'name/0' -p76528 -S'name() $1' -p76529 -tp76530 -a(S'tc/0' -p76531 -S'tc() $1' -p76532 -tp76533 -asS'ssl_record' -p76534 -(lp76535 -(S'activate_pending_connection_state/2' -p76536 -S'activate_pending_connection_state(${1:Param1}, ${2:Param2}) $3' -p76537 -tp76538 -a(S'compressions/0' -p76539 -S'compressions() $1' -p76540 -tp76541 -a(S'current_connection_state/2' -p76542 -S'current_connection_state(${1:Param1}, ${2:Param2}) $3' -p76543 -tp76544 -a(S'decode_cipher_text/2' -p76545 -S'decode_cipher_text(${1:CipherText}, ${2:ConnnectionStates0}) $3' -p76546 -tp76547 -a(S'encode_alert_record/3' -p76548 -S'encode_alert_record() $1' -p76549 -tp76550 -a(S'encode_change_cipher_spec/2' -p76551 -S'encode_change_cipher_spec(${1:Version}, ${2:ConnectionStates}) $3' -p76552 -tp76553 -a(S'encode_data/3' -p76554 -S'encode_data(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p76555 -tp76556 -a(S'encode_handshake/3' -p76557 -S'encode_handshake(${1:Frag}, ${2:Version}, ${3:ConnectionStates}) $4' -p76558 -tp76559 -a(S'get_tls_records/2' -p76560 -S'get_tls_records(${1:Data}, ${2:Buffer}) $3' -p76561 -tp76562 -a(S'highest_protocol_version/1' -p76563 -S'highest_protocol_version(${1:Versions}) $2' -p76564 -tp76565 -a(S'init_connection_states/1' -p76566 -S'init_connection_states(${1:Role}) $2' -p76567 -tp76568 -a(S'is_acceptable_version/1' -p76569 -S'is_acceptable_version(${1:Param1}) $2' -p76570 -tp76571 -a(S'lowest_protocol_version/2' -p76572 -S'lowest_protocol_version(${1:Param1}, ${2:Version}) $3' -p76573 -tp76574 -a(S'pending_connection_state/2' -p76575 -S'pending_connection_state(${1:Param1}, ${2:Param2}) $3' -p76576 -tp76577 -a(S'protocol_version/1' -p76578 -S'protocol_version(${1:Versions}) $2' -p76579 -tp76580 -a(S'set_client_verify_data/3' -p76581 -S'set_client_verify_data() $1' -p76582 -tp76583 -a(S'set_mac_secret/4' -p76584 -S'set_mac_secret(${1:ClientWriteMacSecret}, ${2:ServerWriteMacSecret}, ${3:Param3}, ${4:States}) $5' -p76585 -tp76586 -a(S'set_master_secret/2' -p76587 -S'set_master_secret(${1:Param1}, ${2:Param2}) $3' -p76588 -tp76589 -a(S'set_pending_cipher_state/4' -p76590 -S'set_pending_cipher_state() $1' -p76591 -tp76592 -a(S'set_renegotiation_flag/2' -p76593 -S'set_renegotiation_flag(${1:Param1}, ${2:Param2}) $3' -p76594 -tp76595 -a(S'set_server_verify_data/3' -p76596 -S'set_server_verify_data() $1' -p76597 -tp76598 -a(S'supported_protocol_versions/0' -p76599 -S'supported_protocol_versions() $1' -p76600 -tp76601 -a(S'update_security_params/3' -p76602 -S'update_security_params() $1' -p76603 -tp76604 -asS'dbg_ui_view' -p76605 -(lp76606 -(S'start/2' -p76607 -S'start(${1:GS}, ${2:Mod}) $3' -p76608 -tp76609 -asS'diameter_types' -p76610 -(lp76611 -(S"'Address'/2" -p76612 -S"'Address'(${1:Param1}, ${2:T}) $3" -p76613 -tp76614 -a(S"'Address'/3" -p76615 -S"'Address'(${1:M}, ${2:Param2}, ${3:Data}) $4" -p76616 -tp76617 -a(S"'DiameterIdentity'/2" -p76618 -S"'DiameterIdentity'(${1:M}, ${2:X}) $3" -p76619 -tp76620 -a(S"'DiameterIdentity'/3" -p76621 -S"'DiameterIdentity'(${1:M}, ${2:Param2}, ${3:Data}) $4" -p76622 -tp76623 -a(S"'DiameterURI'/2" -p76624 -S"'DiameterURI'(${1:M}, ${2:Str}) $3" -p76625 -tp76626 -a(S"'DiameterURI'/3" -p76627 -S"'DiameterURI'(${1:M}, ${2:Param2}, ${3:Data}) $4" -p76628 -tp76629 -a(S"'Float32'/2" -p76630 -S"'Float32'(${1:M}, ${2:B}) $3" -p76631 -tp76632 -a(S"'Float32'/3" -p76633 -S"'Float32'(${1:M}, ${2:Param2}, ${3:Data}) $4" -p76634 -tp76635 -a(S"'Float64'/2" -p76636 -S"'Float64'(${1:M}, ${2:B}) $3" -p76637 -tp76638 -a(S"'Float64'/3" -p76639 -S"'Float64'(${1:M}, ${2:Param2}, ${3:Data}) $4" -p76640 -tp76641 -a(S"'IPFilterRule'/2" -p76642 -S"'IPFilterRule'(${1:M}, ${2:X}) $3" -p76643 -tp76644 -a(S"'IPFilterRule'/3" -p76645 -S"'IPFilterRule'(${1:M}, ${2:Param2}, ${3:Data}) $4" -p76646 -tp76647 -a(S"'Integer32'/2" -p76648 -S"'Integer32'(${1:M}, ${2:B}) $3" -p76649 -tp76650 -a(S"'Integer32'/3" -p76651 -S"'Integer32'(${1:M}, ${2:Param2}, ${3:Data}) $4" -p76652 -tp76653 -a(S"'Integer64'/2" -p76654 -S"'Integer64'(${1:M}, ${2:B}) $3" -p76655 -tp76656 -a(S"'Integer64'/3" -p76657 -S"'Integer64'(${1:M}, ${2:Param2}, ${3:Data}) $4" -p76658 -tp76659 -a(S"'OctetString'/2" -p76660 -S"'OctetString'(${1:M}, ${2:Str}) $3" -p76661 -tp76662 -a(S"'OctetString'/3" -p76663 -S"'OctetString'(${1:M}, ${2:Param2}, ${3:Data}) $4" -p76664 -tp76665 -a(S"'QoSFilterRule'/2" -p76666 -S"'QoSFilterRule'(${1:M}, ${2:X}) $3" -p76667 -tp76668 -a(S"'QoSFilterRule'/3" -p76669 -S"'QoSFilterRule'(${1:M}, ${2:Param2}, ${3:Data}) $4" -p76670 -tp76671 -a(S"'Time'/2" -p76672 -S"'Time'(${1:Param1}, ${2:B}) $3" -p76673 -tp76674 -a(S"'Time'/3" -p76675 -S"'Time'(${1:M}, ${2:Param2}, ${3:Data}) $4" -p76676 -tp76677 -a(S"'UTF8String'/2" -p76678 -S"'UTF8String'(${1:M}, ${2:Bin}) $3" -p76679 -tp76680 -a(S"'UTF8String'/3" -p76681 -S"'UTF8String'(${1:M}, ${2:Param2}, ${3:Data}) $4" -p76682 -tp76683 -a(S"'Unsigned32'/2" -p76684 -S"'Unsigned32'(${1:M}, ${2:B}) $3" -p76685 -tp76686 -a(S"'Unsigned32'/3" -p76687 -S"'Unsigned32'(${1:M}, ${2:Param2}, ${3:Data}) $4" -p76688 -tp76689 -a(S"'Unsigned64'/2" -p76690 -S"'Unsigned64'(${1:M}, ${2:B}) $3" -p76691 -tp76692 -a(S"'Unsigned64'/3" -p76693 -S"'Unsigned64'(${1:M}, ${2:Param2}, ${3:Data}) $4" -p76694 -tp76695 -asS'release_handler_1' -p76696 -(lp76697 -(S'check_old_processes/2' -p76698 -S'check_old_processes(${1:Script}, ${2:PrePurgeMethod}) $3' -p76699 -tp76700 -a(S'check_script/2' -p76701 -S'check_script(${1:Script}, ${2:LibDirs}) $3' -p76702 -tp76703 -a(S'eval_script/1' -p76704 -S'eval_script(${1:Script}) $2' -p76705 -tp76706 -a(S'eval_script/5' -p76707 -S'eval_script(${1:Script}, ${2:Apps}, ${3:LibDirs}, ${4:NewLibs}, ${5:Opts}) $6' -p76708 -tp76709 -a(S'get_current_vsn/1' -p76710 -S'get_current_vsn(${1:Mod}) $2' -p76711 -tp76712 -a(S'get_supervised_procs/0' -p76713 -S'get_supervised_procs() $1' -p76714 -tp76715 -asS'wxGridCellNumberEditor' -p76716 -(lp76717 -(S'beginEdit/4' -p76718 -S'beginEdit(${1:This}, ${2:Row}, ${3:Col}, ${4:Grid}) $5' -p76719 -tp76720 -a(S'destroy/1' -p76721 -S'destroy(${1:This}) $2' -p76722 -tp76723 -a(S'endEdit/4' -p76724 -S'endEdit(${1:This}, ${2:Row}, ${3:Col}, ${4:Grid}) $5' -p76725 -tp76726 -a(S'getValue/1' -p76727 -S'getValue(${1:This}) $2' -p76728 -tp76729 -a(S'handleReturn/2' -p76730 -S'handleReturn(${1:This}, ${2:Event}) $3' -p76731 -tp76732 -a(S'isCreated/1' -p76733 -S'isCreated(${1:This}) $2' -p76734 -tp76735 -a(S'new/0' -p76736 -S'new() $1' -p76737 -tp76738 -a(S'new/1' -p76739 -S'new(${1:Param1}) $2' -p76740 -tp76741 -a(S'paintBackground/3' -p76742 -S'paintBackground(${1:This}, ${2:RectCell}, ${3:Attr}) $4' -p76743 -tp76744 -a(S'parent_class/1' -p76745 -S'parent_class(${1:Param1}) $2' -p76746 -tp76747 -a(S'reset/1' -p76748 -S'reset(${1:This}) $2' -p76749 -tp76750 -a(S'setParameters/2' -p76751 -S'setParameters(${1:This}, ${2:Params}) $3' -p76752 -tp76753 -a(S'setSize/2' -p76754 -S'setSize(${1:This}, ${2:Rect}) $3' -p76755 -tp76756 -a(S'show/2' -p76757 -S'show(${1:This}, ${2:Show}) $3' -p76758 -tp76759 -a(S'show/3' -p76760 -S'show(${1:This}, ${2:Show}, ${3:Options}) $4' -p76761 -tp76762 -a(S'startingClick/1' -p76763 -S'startingClick(${1:This}) $2' -p76764 -tp76765 -a(S'startingKey/2' -p76766 -S'startingKey(${1:This}, ${2:Event}) $3' -p76767 -tp76768 -asS'inviso_rt_lib' -p76769 -(lp76770 -(S'debug/3' -p76771 -S'debug(${1:On}, ${2:What}, ${3:Description}) $4' -p76772 -tp76773 -a(S'expand_regexp/2' -p76774 -S'expand_regexp(${1:RegExpMod}, ${2:Opts}) $3' -p76775 -tp76776 -a(S'expand_regexp/3' -p76777 -S'expand_regexp(${1:NodesOrRegExpDir}, ${2:RegExpMod}, ${3:Opts}) $4' -p76778 -tp76779 -a(S'expand_regexp/4' -p76780 -S'expand_regexp(${1:Nodes}, ${2:RegExpDir}, ${3:RegExpMod}, ${4:Opts}) $5' -p76781 -tp76782 -a(S'is_tracerdata/1' -p76783 -S'is_tracerdata(${1:Param1}) $2' -p76784 -tp76785 -a(S'match_modules/2' -p76786 -S'match_modules(${1:RegExpMod}, ${2:Actions}) $3' -p76787 -tp76788 -a(S'match_modules/3' -p76789 -S'match_modules(${1:RegExpDir}, ${2:RegExpMod}, ${3:Actions}) $4' -p76790 -tp76791 -a(S'rpc/4' -p76792 -S'rpc(${1:Parent}, ${2:Node}, ${3:RegExpMod}, ${4:Opts}) $5' -p76793 -tp76794 -a(S'rpc/5' -p76795 -S'rpc(${1:Parent}, ${2:Node}, ${3:RegExpDir}, ${4:RegExpMod}, ${5:Opts}) $6' -p76796 -tp76797 -a(S'transform/2' -p76798 -S'transform(${1:Param1}, ${2:Translations}) $3' -p76799 -tp76800 -asS'CosNotification_FixedEventHeader' -p76801 -(lp76802 -(S'id/0' -p76803 -S'id() $1' -p76804 -tp76805 -a(S'name/0' -p76806 -S'name() $1' -p76807 -tp76808 -a(S'tc/0' -p76809 -S'tc() $1' -p76810 -tp76811 -asS'snmpa_general_db' -p76812 -(lp76813 -(S'backup/2' -p76814 -S'backup(${1:Param1}, ${2:BackupDir}) $3' -p76815 -tp76816 -a(S'close/1' -p76817 -S'close(${1:Param1}) $2' -p76818 -tp76819 -a(S'delete/1' -p76820 -S'delete(${1:Param1}) $2' -p76821 -tp76822 -a(S'delete/2' -p76823 -S'delete(${1:Param1}, ${2:Key}) $3' -p76824 -tp76825 -a(S'info/1' -p76826 -S'info(${1:Param1}) $2' -p76827 -tp76828 -a(S'info/2' -p76829 -S'info(${1:Param1}, ${2:Item}) $3' -p76830 -tp76831 -a(S'match_delete/2' -p76832 -S'match_delete(${1:Param1}, ${2:Pattern}) $3' -p76833 -tp76834 -a(S'match_object/2' -p76835 -S'match_object(${1:Param1}, ${2:Pattern}) $3' -p76836 -tp76837 -a(S'open/5' -p76838 -S'open(${1:Param1}, ${2:Name}, ${3:RecName}, ${4:Attr}, ${5:Type}) $6' -p76839 -tp76840 -a(S'read/2' -p76841 -S'read(${1:Param1}, ${2:Key}) $3' -p76842 -tp76843 -a(S'sync/1' -p76844 -S'sync(${1:Param1}) $2' -p76845 -tp76846 -a(S'tab2list/1' -p76847 -S'tab2list(${1:Param1}) $2' -p76848 -tp76849 -a(S'write/2' -p76850 -S'write(${1:Param1}, ${2:Rec}) $3' -p76851 -tp76852 -asS'CosFileTransfer_FileNameList' -p76853 -(lp76854 -(S'id/0' -p76855 -S'id() $1' -p76856 -tp76857 -a(S'name/0' -p76858 -S'name() $1' -p76859 -tp76860 -a(S'tc/0' -p76861 -S'tc() $1' -p76862 -tp76863 -asS'icstruct' -p76864 -(lp76865 -(S'create_c_array_coding_file/5' -p76866 -S'create_c_array_coding_file(${1:G}, ${2:N}, ${3:Param3}, ${4:Type}, ${5:TypeDefFlag}) $6' -p76867 -tp76868 -a(S'except_gen/4' -p76869 -S'except_gen(${1:G}, ${2:N}, ${3:X}, ${4:L}) $5' -p76870 -tp76871 -a(S'struct_gen/4' -p76872 -S'struct_gen(${1:G}, ${2:N}, ${3:X}, ${4:L}) $5' -p76873 -tp76874 -asS'ms_transform' -p76875 -(lp76876 -(S'format_error/1' -p76877 -S'format_error(${1:Error}) $2' -p76878 -tp76879 -a(S'parse_transform/2' -p76880 -S'parse_transform(${1:Forms}, ${2:Options}) $3' -p76881 -tp76882 -a(S'transform_from_shell/3' -p76883 -S'transform_from_shell(${1:Dialect}, ${2:Clauses}, ${3:BoundEnvironment}) $4' -p76884 -tp76885 -asS'disk_log' -p76886 -(lp76887 -(S'accessible_logs/0' -p76888 -S'accessible_logs() $1' -p76889 -tp76890 -a(S'alog/2' -p76891 -S'alog(${1:Log}, ${2:Term}) $3' -p76892 -tp76893 -a(S'alog_terms/2' -p76894 -S'alog_terms(${1:Log}, ${2:TermList}) $3' -p76895 -tp76896 -a(S'balog/2' -p76897 -S'balog(${1:Log}, ${2:Bytes}) $3' -p76898 -tp76899 -a(S'balog_terms/2' -p76900 -S'balog_terms(${1:Log}, ${2:ByteList}) $3' -p76901 -tp76902 -a(S'bchunk/2' -p76903 -S'bchunk(${1:Log}, ${2:Continuation}) $3' -p76904 -tp76905 -a(S'bchunk/3' -p76906 -S'bchunk(${1:Log}, ${2:Continuation}, ${3:N}) $4' -p76907 -tp76908 -a(S'block/1' -p76909 -S'block(${1:Log}) $2' -p76910 -tp76911 -a(S'block/2' -p76912 -S'block(${1:Log}, ${2:QueueLogRecords}) $3' -p76913 -tp76914 -a(S'blog/2' -p76915 -S'blog(${1:Log}, ${2:Bytes}) $3' -p76916 -tp76917 -a(S'blog_terms/2' -p76918 -S'blog_terms(${1:Log}, ${2:BytesList}) $3' -p76919 -tp76920 -a(S'breopen/3' -p76921 -S'breopen(${1:Log}, ${2:File}, ${3:BHead}) $4' -p76922 -tp76923 -a(S'btruncate/2' -p76924 -S'btruncate(${1:Log}, ${2:BHead}) $3' -p76925 -tp76926 -a(S'change_header/2' -p76927 -S'change_header(${1:Log}, ${2:Header}) $3' -p76928 -tp76929 -a(S'change_notify/3' -p76930 -S'change_notify(${1:Log}, ${2:Owner}, ${3:Notify}) $4' -p76931 -tp76932 -a(S'change_size/2' -p76933 -S'change_size(${1:Log}, ${2:Size}) $3' -p76934 -tp76935 -a(S'chunk/2' -p76936 -S'chunk(${1:Log}, ${2:Continuation}) $3' -p76937 -tp76938 -a(S'chunk/3' -p76939 -S'chunk(${1:Log}, ${2:Continuation}, ${3:N}) $4' -p76940 -tp76941 -a(S'chunk_info/1' -p76942 -S'chunk_info(${1:Continuation}) $2' -p76943 -tp76944 -a(S'chunk_step/3' -p76945 -S'chunk_step(${1:Log}, ${2:Continuation}, ${3:Step}) $4' -p76946 -tp76947 -a(S'close/1' -p76948 -S'close(${1:Log}) $2' -p76949 -tp76950 -a(S'do_info/2' -p76951 -S'do_info(${1:L}, ${2:Cnt}) $3' -p76952 -tp76953 -a(S'do_log/2' -p76954 -S'do_log(${1:Param1}, ${2:Param2}) $3' -p76955 -tp76956 -a(S'do_sync/1' -p76957 -S'do_sync(${1:Log}) $2' -p76958 -tp76959 -a(S'format_error/1' -p76960 -S'format_error(${1:Error}) $2' -p76961 -tp76962 -a(S'ichunk_end/2' -p76963 -S'ichunk_end(${1:R}, ${2:Log}) $3' -p76964 -tp76965 -a(S'inc_wrap_file/1' -p76966 -S'inc_wrap_file(${1:Log}) $2' -p76967 -tp76968 -a(S'info/1' -p76969 -S'info(${1:Log}) $2' -p76970 -tp76971 -a(S'init/2' -p76972 -S'init(${1:Parent}, ${2:Server}) $3' -p76973 -tp76974 -a(S'internal_open/2' -p76975 -S'internal_open(${1:Pid}, ${2:A}) $3' -p76976 -tp76977 -a(S'istart_link/1' -p76978 -S'istart_link(${1:Server}) $2' -p76979 -tp76980 -a(S'lclose/1' -p76981 -S'lclose(${1:Log}) $2' -p76982 -tp76983 -a(S'lclose/2' -p76984 -S'lclose(${1:Log}, ${2:Node}) $3' -p76985 -tp76986 -a(S'll_close/1' -p76987 -S'll_close(${1:Log}) $2' -p76988 -tp76989 -a(S'll_open/1' -p76990 -S'll_open(${1:A}) $2' -p76991 -tp76992 -a(S'log/2' -p76993 -S'log(${1:Log}, ${2:Term}) $3' -p76994 -tp76995 -a(S'log_terms/2' -p76996 -S'log_terms(${1:Log}, ${2:TermList}) $3' -p76997 -tp76998 -a(S'open/1' -p76999 -S'open(${1:ArgL}) $2' -p77000 -tp77001 -a(S'pid2name/1' -p77002 -S'pid2name(${1:Pid}) $2' -p77003 -tp77004 -a(S'reopen/2' -p77005 -S'reopen(${1:Log}, ${2:File}) $3' -p77006 -tp77007 -a(S'reopen/3' -p77008 -S'reopen(${1:Log}, ${2:File}, ${3:Head}) $4' -p77009 -tp77010 -a(S'start/0' -p77011 -S'start() $1' -p77012 -tp77013 -a(S'sync/1' -p77014 -S'sync(${1:Log}) $2' -p77015 -tp77016 -a(S'system_code_change/4' -p77017 -S'system_code_change(${1:State}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p77018 -tp77019 -a(S'system_continue/3' -p77020 -S'system_continue(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p77021 -tp77022 -a(S'system_terminate/4' -p77023 -S'system_terminate(${1:Reason}, ${2:Param2}, ${3:Param3}, ${4:State}) $5' -p77024 -tp77025 -a(S'truncate/1' -p77026 -S'truncate(${1:Log}) $2' -p77027 -tp77028 -a(S'truncate/2' -p77029 -S'truncate(${1:Log}, ${2:Head}) $3' -p77030 -tp77031 -a(S'unblock/1' -p77032 -S'unblock(${1:Log}) $2' -p77033 -tp77034 -asS'CosTransactions_Control' -p77035 -(lp77036 -(S'code_change/3' -p77037 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p77038 -tp77039 -a(S'get_coordinator/1' -p77040 -S'get_coordinator(${1:OE_THIS}) $2' -p77041 -tp77042 -a(S'get_coordinator/2' -p77043 -S'get_coordinator(${1:OE_THIS}, ${2:OE_Options}) $3' -p77044 -tp77045 -a(S'get_terminator/1' -p77046 -S'get_terminator(${1:OE_THIS}) $2' -p77047 -tp77048 -a(S'get_terminator/2' -p77049 -S'get_terminator(${1:OE_THIS}, ${2:OE_Options}) $3' -p77050 -tp77051 -a(S'handle_call/3' -p77052 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p77053 -tp77054 -a(S'handle_cast/2' -p77055 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p77056 -tp77057 -a(S'handle_info/2' -p77058 -S'handle_info(${1:Param1}, ${2:State}) $3' -p77059 -tp77060 -a(S'init/1' -p77061 -S'init(${1:Env}) $2' -p77062 -tp77063 -a(S'oe_create/0' -p77064 -S'oe_create() $1' -p77065 -tp77066 -a(S'oe_create/1' -p77067 -S'oe_create(${1:Env}) $2' -p77068 -tp77069 -a(S'oe_create/2' -p77070 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p77071 -tp77072 -a(S'oe_create_link/0' -p77073 -S'oe_create_link() $1' -p77074 -tp77075 -a(S'oe_create_link/1' -p77076 -S'oe_create_link(${1:Env}) $2' -p77077 -tp77078 -a(S'oe_create_link/2' -p77079 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p77080 -tp77081 -a(S'oe_get_interface/0' -p77082 -S'oe_get_interface() $1' -p77083 -tp77084 -a(S'oe_is_a/1' -p77085 -S'oe_is_a(${1:Param1}) $2' -p77086 -tp77087 -a(S'oe_tc/1' -p77088 -S'oe_tc(${1:Param1}) $2' -p77089 -tp77090 -a(S'terminate/2' -p77091 -S'terminate(${1:Reason}, ${2:State}) $3' -p77092 -tp77093 -a(S'typeID/0' -p77094 -S'typeID() $1' -p77095 -tp77096 -asS'megaco_monitor' -p77097 -(lp77098 -(S'apply_after/4' -p77099 -S'apply_after(${1:M}, ${2:F}, ${3:A}, ${4:Time}) $5' -p77100 -tp77101 -a(S'apply_after/5' -p77102 -S'apply_after() $1' -p77103 -tp77104 -a(S'apply_at_exit/4' -p77105 -S'apply_at_exit() $1' -p77106 -tp77107 -a(S'cancel_apply_after/1' -p77108 -S'cancel_apply_after(${1:BadRef}) $2' -p77109 -tp77110 -a(S'cancel_apply_at_exit/1' -p77111 -S'cancel_apply_at_exit(${1:BadRef}) $2' -p77112 -tp77113 -a(S'code_change/3' -p77114 -S'code_change(${1:Param1}, ${2:S}, ${3:Param3}) $4' -p77115 -tp77116 -a(S'delete_reply/1' -p77117 -S'delete_reply(${1:Key}) $2' -p77118 -tp77119 -a(S'delete_request/1' -p77120 -S'delete_request(${1:Key}) $2' -p77121 -tp77122 -a(S'handle_call/3' -p77123 -S'handle_call(${1:Req}, ${2:From}, ${3:S}) $4' -p77124 -tp77125 -a(S'handle_cast/2' -p77126 -S'handle_cast(${1:Msg}, ${2:S}) $3' -p77127 -tp77128 -a(S'handle_info/2' -p77129 -S'handle_info(${1:Info}, ${2:S}) $3' -p77130 -tp77131 -a(S'init/1' -p77132 -S'init(${1:Param1}) $2' -p77133 -tp77134 -a(S'insert_reply/1' -p77135 -S'insert_reply(${1:Rec}) $2' -p77136 -tp77137 -a(S'insert_reply_new/1' -p77138 -S'insert_reply_new(${1:Rec}) $2' -p77139 -tp77140 -a(S'insert_request/1' -p77141 -S'insert_request(${1:Rec}) $2' -p77142 -tp77143 -a(S'lookup_reply/1' -p77144 -S'lookup_reply(${1:Key}) $2' -p77145 -tp77146 -a(S'lookup_reply_field/2' -p77147 -S'lookup_reply_field(${1:Key}, ${2:Field}) $3' -p77148 -tp77149 -a(S'lookup_request/1' -p77150 -S'lookup_request(${1:Key}) $2' -p77151 -tp77152 -a(S'lookup_request_field/2' -p77153 -S'lookup_request_field(${1:Key}, ${2:Field}) $3' -p77154 -tp77155 -a(S'match_replies/1' -p77156 -S'match_replies(${1:Pat}) $2' -p77157 -tp77158 -a(S'match_requests/1' -p77159 -S'match_requests(${1:Pat}) $2' -p77160 -tp77161 -a(S'request_lockcnt_cre/1' -p77162 -S'request_lockcnt_cre(${1:TransId}) $2' -p77163 -tp77164 -a(S'request_lockcnt_dec/1' -p77165 -S'request_lockcnt_dec(${1:TransId}) $2' -p77166 -tp77167 -a(S'request_lockcnt_del/1' -p77168 -S'request_lockcnt_del(${1:TransId}) $2' -p77169 -tp77170 -a(S'request_lockcnt_inc/1' -p77171 -S'request_lockcnt_inc(${1:TransId}) $2' -p77172 -tp77173 -a(S'start_link/0' -p77174 -S'start_link() $1' -p77175 -tp77176 -a(S'stop/0' -p77177 -S'stop() $1' -p77178 -tp77179 -a(S'terminate/2' -p77180 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p77181 -tp77182 -a(S'update_reply_field/3' -p77183 -S'update_reply_field(${1:Key}, ${2:Field}, ${3:NewValue}) $4' -p77184 -tp77185 -a(S'update_reply_fields/2' -p77186 -S'update_reply_fields(${1:Key}, ${2:NewFields}) $3' -p77187 -tp77188 -a(S'update_request_field/3' -p77189 -S'update_request_field(${1:Key}, ${2:Field}, ${3:NewValue}) $4' -p77190 -tp77191 -a(S'update_request_fields/2' -p77192 -S'update_request_fields(${1:Key}, ${2:NewFields}) $3' -p77193 -tp77194 -a(S'which_replies/1' -p77195 -S'which_replies(${1:Pat}) $2' -p77196 -tp77197 -a(S'which_requests/1' -p77198 -S'which_requests(${1:Pat}) $2' -p77199 -tp77200 -asS'oe_CosEventComm_CAdmin_impl' -p77201 -(lp77202 -(S'code_change/3' -p77203 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p77204 -tp77205 -a(S'handle_info/2' -p77206 -S'handle_info(${1:Param1}, ${2:State}) $3' -p77207 -tp77208 -a(S'init/1' -p77209 -S'init(${1:Param1}) $2' -p77210 -tp77211 -a(S'obtain_pull_supplier/3' -p77212 -S'obtain_pull_supplier(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p77213 -tp77214 -a(S'obtain_push_supplier/3' -p77215 -S'obtain_push_supplier(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p77216 -tp77217 -a(S'send/3' -p77218 -S'send(${1:Param1}, ${2:State}, ${3:Any}) $4' -p77219 -tp77220 -a(S'send_sync/4' -p77221 -S'send_sync(${1:Param1}, ${2:OE_From}, ${3:State}, ${4:Any}) $5' -p77222 -tp77223 -a(S'terminate/2' -p77224 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p77225 -tp77226 -asS'CosNotifyComm_StructuredPushConsumer' -p77227 -(lp77228 -(S'code_change/3' -p77229 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p77230 -tp77231 -a(S'disconnect_structured_push_consumer/1' -p77232 -S'disconnect_structured_push_consumer(${1:OE_THIS}) $2' -p77233 -tp77234 -a(S'disconnect_structured_push_consumer/2' -p77235 -S'disconnect_structured_push_consumer(${1:OE_THIS}, ${2:OE_Options}) $3' -p77236 -tp77237 -a(S'handle_call/3' -p77238 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p77239 -tp77240 -a(S'handle_cast/2' -p77241 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p77242 -tp77243 -a(S'handle_info/2' -p77244 -S'handle_info(${1:Param1}, ${2:State}) $3' -p77245 -tp77246 -a(S'init/1' -p77247 -S'init(${1:Env}) $2' -p77248 -tp77249 -a(S'oe_create/0' -p77250 -S'oe_create() $1' -p77251 -tp77252 -a(S'oe_create/1' -p77253 -S'oe_create(${1:Env}) $2' -p77254 -tp77255 -a(S'oe_create/2' -p77256 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p77257 -tp77258 -a(S'oe_create_link/0' -p77259 -S'oe_create_link() $1' -p77260 -tp77261 -a(S'oe_create_link/1' -p77262 -S'oe_create_link(${1:Env}) $2' -p77263 -tp77264 -a(S'oe_create_link/2' -p77265 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p77266 -tp77267 -a(S'oe_get_interface/0' -p77268 -S'oe_get_interface() $1' -p77269 -tp77270 -a(S'oe_is_a/1' -p77271 -S'oe_is_a(${1:Param1}) $2' -p77272 -tp77273 -a(S'oe_tc/1' -p77274 -S'oe_tc(${1:Param1}) $2' -p77275 -tp77276 -a(S'offer_change/3' -p77277 -S'offer_change(${1:OE_THIS}, ${2:Added}, ${3:Removed}) $4' -p77278 -tp77279 -a(S'offer_change/4' -p77280 -S'offer_change(${1:OE_THIS}, ${2:OE_Options}, ${3:Added}, ${4:Removed}) $5' -p77281 -tp77282 -a(S'push_structured_event/2' -p77283 -S'push_structured_event(${1:OE_THIS}, ${2:Notification}) $3' -p77284 -tp77285 -a(S'push_structured_event/3' -p77286 -S'push_structured_event(${1:OE_THIS}, ${2:OE_Options}, ${3:Notification}) $4' -p77287 -tp77288 -a(S'terminate/2' -p77289 -S'terminate(${1:Reason}, ${2:State}) $3' -p77290 -tp77291 -a(S'typeID/0' -p77292 -S'typeID() $1' -p77293 -tp77294 -asS'CosTimerEvent_TimerEventHandler_impl' -p77295 -(lp77296 -(S"'_get_status'/2" -p77297 -S"'_get_status'(${1:Param1}, ${2:State}) $3" -p77298 -tp77299 -a(S'cancel_timer/2' -p77300 -S'cancel_timer(${1:Param1}, ${2:State}) $3' -p77301 -tp77302 -a(S'code_change/3' -p77303 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p77304 -tp77305 -a(S'handle_info/2' -p77306 -S'handle_info(${1:Info}, ${2:State}) $3' -p77307 -tp77308 -a(S'init/1' -p77309 -S'init(${1:Param1}) $2' -p77310 -tp77311 -a(S'set_data/3' -p77312 -S'set_data(${1:Param1}, ${2:State}, ${3:EventData}) $4' -p77313 -tp77314 -a(S'set_timer/4' -p77315 -S'set_timer(${1:Param1}, ${2:State}, ${3:Param3}, ${4:TriggerTime}) $5' -p77316 -tp77317 -a(S'terminate/2' -p77318 -S'terminate(${1:Param1}, ${2:State}) $3' -p77319 -tp77320 -a(S'time_set/2' -p77321 -S'time_set(${1:Param1}, ${2:State}) $3' -p77322 -tp77323 -asS'overload' -p77324 -(lp77325 -(S'format_status/2' -p77326 -S'format_status() $1' -p77327 -tp77328 -a(S'get_overload_info/0' -p77329 -S'get_overload_info() $1' -p77330 -tp77331 -a(S'handle_call/3' -p77332 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p77333 -tp77334 -a(S'handle_info/2' -p77335 -S'handle_info(${1:Param1}, ${2:State}) $3' -p77336 -tp77337 -a(S'init/1' -p77338 -S'init(${1:Param1}) $2' -p77339 -tp77340 -a(S'request/0' -p77341 -S'request() $1' -p77342 -tp77343 -a(S'set_config_data/2' -p77344 -S'set_config_data(${1:MaxIntensity}, ${2:Weight}) $3' -p77345 -tp77346 -a(S'start_link/0' -p77347 -S'start_link() $1' -p77348 -tp77349 -a(S'terminate/2' -p77350 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p77351 -tp77352 -asS'xmerl_b64Bin' -p77353 -(lp77354 -(S'format_error/1' -p77355 -S'format_error(${1:Message}) $2' -p77356 -tp77357 -a(S'parse/1' -p77358 -S'parse(${1:Tokens}) $2' -p77359 -tp77360 -a(S'parse_and_scan/1' -p77361 -S'parse_and_scan(${1:Param1}) $2' -p77362 -tp77363 -asS'asn1rt_uper_bin' -p77364 -(lp77365 -(S'cindex/3' -p77366 -S'cindex(${1:Ix}, ${2:Val}, ${3:Cname}) $4' -p77367 -tp77368 -a(S'complete/1' -p77369 -S'complete(${1:InList}) $2' -p77370 -tp77371 -a(S'complete_NFP/1' -p77372 -S'complete_NFP(${1:InList}) $2' -p77373 -tp77374 -a(S'decode_BMPString/2' -p77375 -S'decode_BMPString(${1:Bytes}, ${2:C}) $3' -p77376 -tp77377 -a(S'decode_GeneralString/2' -p77378 -S'decode_GeneralString(${1:Bytes}, ${2:Param2}) $3' -p77379 -tp77380 -a(S'decode_GraphicString/2' -p77381 -S'decode_GraphicString(${1:Bytes}, ${2:Param2}) $3' -p77382 -tp77383 -a(S'decode_IA5String/2' -p77384 -S'decode_IA5String(${1:Bytes}, ${2:C}) $3' -p77385 -tp77386 -a(S'decode_NumericString/2' -p77387 -S'decode_NumericString(${1:Bytes}, ${2:C}) $3' -p77388 -tp77389 -a(S'decode_ObjectDescriptor/1' -p77390 -S'decode_ObjectDescriptor(${1:Bytes}) $2' -p77391 -tp77392 -a(S'decode_PrintableString/2' -p77393 -S'decode_PrintableString(${1:Bytes}, ${2:C}) $3' -p77394 -tp77395 -a(S'decode_TeletexString/2' -p77396 -S'decode_TeletexString(${1:Bytes}, ${2:Param2}) $3' -p77397 -tp77398 -a(S'decode_UTF8String/1' -p77399 -S'decode_UTF8String(${1:Bytes}) $2' -p77400 -tp77401 -a(S'decode_UniversalString/2' -p77402 -S'decode_UniversalString(${1:Bytes}, ${2:C}) $3' -p77403 -tp77404 -a(S'decode_VideotexString/2' -p77405 -S'decode_VideotexString(${1:Bytes}, ${2:Param2}) $3' -p77406 -tp77407 -a(S'decode_VisibleString/2' -p77408 -S'decode_VisibleString(${1:Bytes}, ${2:C}) $3' -p77409 -tp77410 -a(S'decode_bit_string/3' -p77411 -S'decode_bit_string(${1:Buffer}, ${2:C}, ${3:NamedNumberList}) $4' -p77412 -tp77413 -a(S'decode_boolean/1' -p77414 -S'decode_boolean(${1:Buffer}) $2' -p77415 -tp77416 -a(S'decode_compact_bit_string/3' -p77417 -S'decode_compact_bit_string(${1:Buffer}, ${2:C}, ${3:NamedNumberList}) $4' -p77418 -tp77419 -a(S'decode_enumerated/3' -p77420 -S'decode_enumerated(${1:Buffer}, ${2:C}, ${3:NamedNumberTup}) $4' -p77421 -tp77422 -a(S'decode_integer/2' -p77423 -S'decode_integer(${1:Buffer}, ${2:C}) $3' -p77424 -tp77425 -a(S'decode_integer/3' -p77426 -S'decode_integer(${1:Buffer}, ${2:Range}, ${3:NamedNumberList}) $4' -p77427 -tp77428 -a(S'decode_length/1' -p77429 -S'decode_length(${1:Buffer}) $2' -p77430 -tp77431 -a(S'decode_length/2' -p77432 -S'decode_length(${1:Buffer}, ${2:SingleValue}) $3' -p77433 -tp77434 -a(S'decode_null/1' -p77435 -S'decode_null(${1:Bytes}) $2' -p77436 -tp77437 -a(S'decode_object_identifier/1' -p77438 -S'decode_object_identifier(${1:Bytes}) $2' -p77439 -tp77440 -a(S'decode_octet_string/2' -p77441 -S'decode_octet_string(${1:Bytes}, ${2:C}) $3' -p77442 -tp77443 -a(S'decode_open_type/2' -p77444 -S'decode_open_type(${1:Bytes}, ${2:Param2}) $3' -p77445 -tp77446 -a(S'decode_real/1' -p77447 -S'decode_real(${1:Bytes}) $2' -p77448 -tp77449 -a(S'decode_relative_oid/1' -p77450 -S'decode_relative_oid(${1:Bytes}) $2' -p77451 -tp77452 -a(S'decode_small_length/1' -p77453 -S'decode_small_length(${1:Buffer}) $2' -p77454 -tp77455 -a(S'encode_BMPString/2' -p77456 -S'encode_BMPString(${1:C}, ${2:Val}) $3' -p77457 -tp77458 -a(S'encode_GeneralString/2' -p77459 -S'encode_GeneralString(${1:Param1}, ${2:Val}) $3' -p77460 -tp77461 -a(S'encode_GraphicString/2' -p77462 -S'encode_GraphicString(${1:Param1}, ${2:Val}) $3' -p77463 -tp77464 -a(S'encode_IA5String/2' -p77465 -S'encode_IA5String(${1:C}, ${2:Val}) $3' -p77466 -tp77467 -a(S'encode_NumericString/2' -p77468 -S'encode_NumericString(${1:C}, ${2:Val}) $3' -p77469 -tp77470 -a(S'encode_ObjectDescriptor/2' -p77471 -S'encode_ObjectDescriptor(${1:Param1}, ${2:Val}) $3' -p77472 -tp77473 -a(S'encode_PrintableString/2' -p77474 -S'encode_PrintableString(${1:C}, ${2:Val}) $3' -p77475 -tp77476 -a(S'encode_TeletexString/2' -p77477 -S'encode_TeletexString(${1:Param1}, ${2:Val}) $3' -p77478 -tp77479 -a(S'encode_UTF8String/1' -p77480 -S'encode_UTF8String(${1:Val}) $2' -p77481 -tp77482 -a(S'encode_UniversalString/2' -p77483 -S'encode_UniversalString(${1:C}, ${2:Val}) $3' -p77484 -tp77485 -a(S'encode_VideotexString/2' -p77486 -S'encode_VideotexString(${1:Param1}, ${2:Val}) $3' -p77487 -tp77488 -a(S'encode_VisibleString/2' -p77489 -S'encode_VisibleString(${1:C}, ${2:Val}) $3' -p77490 -tp77491 -a(S'encode_bit_string/3' -p77492 -S'encode_bit_string(${1:C}, ${2:BitListVal}, ${3:NamedBitList}) $4' -p77493 -tp77494 -a(S'encode_boolean/1' -p77495 -S'encode_boolean(${1:Val}) $2' -p77496 -tp77497 -a(S'encode_integer/2' -p77498 -S'encode_integer(${1:C}, ${2:Val}) $3' -p77499 -tp77500 -a(S'encode_integer/3' -p77501 -S'encode_integer(${1:C}, ${2:V}, ${3:NamedNumberList}) $4' -p77502 -tp77503 -a(S'encode_length/2' -p77504 -S'encode_length(${1:SingleValue}, ${2:Len}) $3' -p77505 -tp77506 -a(S'encode_null/1' -p77507 -S'encode_null(${1:Param1}) $2' -p77508 -tp77509 -a(S'encode_object_identifier/1' -p77510 -S'encode_object_identifier(${1:Val}) $2' -p77511 -tp77512 -a(S'encode_octet_string/2' -p77513 -S'encode_octet_string(${1:C}, ${2:Val}) $3' -p77514 -tp77515 -a(S'encode_open_type/2' -p77516 -S'encode_open_type(${1:C}, ${2:Val}) $3' -p77517 -tp77518 -a(S'encode_real/1' -p77519 -S'encode_real(${1:Real}) $2' -p77520 -tp77521 -a(S'encode_relative_oid/1' -p77522 -S'encode_relative_oid(${1:Val}) $2' -p77523 -tp77524 -a(S'encode_small_length/1' -p77525 -S'encode_small_length(${1:Len}) $2' -p77526 -tp77527 -a(S'encode_small_number/1' -p77528 -S'encode_small_number(${1:Val}) $2' -p77529 -tp77530 -a(S'fixextensions/2' -p77531 -S'fixextensions(${1:Param1}, ${2:Val}) $3' -p77532 -tp77533 -a(S'fixoptionals/3' -p77534 -S'fixoptionals(${1:OptList}, ${2:OptLength}, ${3:Val}) $4' -p77535 -tp77536 -a(S'getbit/1' -p77537 -S'getbit(${1:Buffer}) $2' -p77538 -tp77539 -a(S'getchoice/3' -p77540 -S'getchoice(${1:Bytes}, ${2:NumChoices}, ${3:Param3}) $4' -p77541 -tp77542 -a(S'getext/1' -p77543 -S'getext(${1:Bytes}) $2' -p77544 -tp77545 -a(S'getextension/2' -p77546 -S'getextension(${1:Param1}, ${2:Bytes}) $3' -p77547 -tp77548 -a(S'getoptionals2/2' -p77549 -S'getoptionals2(${1:Bytes}, ${2:NumOpt}) $3' -p77550 -tp77551 -a(S'list_to_record/2' -p77552 -S'list_to_record(${1:Name}, ${2:Tuple}) $3' -p77553 -tp77554 -a(S'set_choice/3' -p77555 -S'set_choice(${1:Alt}, ${2:L}, ${3:Len}) $4' -p77556 -tp77557 -a(S'setext/1' -p77558 -S'setext(${1:Param1}) $2' -p77559 -tp77560 -a(S'skipextensions/3' -p77561 -S'skipextensions(${1:Bytes}, ${2:Nr}, ${3:ExtensionBitPattern}) $4' -p77562 -tp77563 -asS'snmpa_acm' -p77564 -(lp77565 -(S'error2status/1' -p77566 -S'error2status(${1:Param1}) $2' -p77567 -tp77568 -a(S'get_root_mib_view/0' -p77569 -S'get_root_mib_view() $1' -p77570 -tp77571 -a(S'init_check_access/2' -p77572 -S'init_check_access(${1:Pdu}, ${2:ACMData}) $3' -p77573 -tp77574 -a(S'invalidate_ca_cache/0' -p77575 -S'invalidate_ca_cache() $1' -p77576 -tp77577 -a(S'is_definitely_not_in_mib_view/2' -p77578 -S'is_definitely_not_in_mib_view(${1:Oid}, ${2:Param2}) $3' -p77579 -tp77580 -a(S'validate_all_mib_view/2' -p77581 -S'validate_all_mib_view(${1:Param1}, ${2:Param2}) $3' -p77582 -tp77583 -a(S'validate_mib_view/2' -p77584 -S'validate_mib_view(${1:Oid}, ${2:MibView}) $3' -p77585 -tp77586 -asS'wxGraphicsContext' -p77587 -(lp77588 -(S'clip/2' -p77589 -S'clip(${1:This}, ${2:Region}) $3' -p77590 -tp77591 -a(S'clip/5' -p77592 -S'clip(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p77593 -tp77594 -a(S'concatTransform/2' -p77595 -S'concatTransform(${1:This}, ${2:Matrix}) $3' -p77596 -tp77597 -a(S'create/0' -p77598 -S'create() $1' -p77599 -tp77600 -a(S'create/1' -p77601 -S'create(${1:Dc}) $2' -p77602 -tp77603 -a(S'createBrush/2' -p77604 -S'createBrush(${1:This}, ${2:Brush}) $3' -p77605 -tp77606 -a(S'createFont/2' -p77607 -S'createFont(${1:This}, ${2:Font}) $3' -p77608 -tp77609 -a(S'createFont/3' -p77610 -S'createFont(${1:This}, ${2:Font}, ${3:Param3}) $4' -p77611 -tp77612 -a(S'createLinearGradientBrush/7' -p77613 -S'createLinearGradientBrush(${1:This}, ${2:X1}, ${3:Y1}, ${4:X2}, ${5:Y2}, ${6:C1}, ${7:C2}) $8' -p77614 -tp77615 -a(S'createMatrix/1' -p77616 -S'createMatrix(${1:This}) $2' -p77617 -tp77618 -a(S'createMatrix/2' -p77619 -S'createMatrix(${1:This}, ${2:Param2}) $3' -p77620 -tp77621 -a(S'createPath/1' -p77622 -S'createPath(${1:This}) $2' -p77623 -tp77624 -a(S'createPen/2' -p77625 -S'createPen(${1:This}, ${2:Pen}) $3' -p77626 -tp77627 -a(S'createRadialGradientBrush/8' -p77628 -S'createRadialGradientBrush(${1:This}, ${2:Xo}, ${3:Yo}, ${4:Xc}, ${5:Yc}, ${6:Radius}, ${7:OColor}, ${8:CColor}) $9' -p77629 -tp77630 -a(S'destroy/1' -p77631 -S'destroy(${1:This}) $2' -p77632 -tp77633 -a(S'drawBitmap/6' -p77634 -S'drawBitmap(${1:This}, ${2:Bmp}, ${3:X}, ${4:Y}, ${5:W}, ${6:H}) $7' -p77635 -tp77636 -a(S'drawEllipse/5' -p77637 -S'drawEllipse(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p77638 -tp77639 -a(S'drawIcon/6' -p77640 -S'drawIcon(${1:This}, ${2:Icon}, ${3:X}, ${4:Y}, ${5:W}, ${6:H}) $7' -p77641 -tp77642 -a(S'drawLines/2' -p77643 -S'drawLines(${1:This}, ${2:Points}) $3' -p77644 -tp77645 -a(S'drawLines/3' -p77646 -S'drawLines(${1:This}, ${2:Points}, ${3:Param3}) $4' -p77647 -tp77648 -a(S'drawPath/2' -p77649 -S'drawPath(${1:This}, ${2:Path}) $3' -p77650 -tp77651 -a(S'drawPath/3' -p77652 -S'drawPath(${1:This}, ${2:Path}, ${3:Param3}) $4' -p77653 -tp77654 -a(S'drawRectangle/5' -p77655 -S'drawRectangle(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p77656 -tp77657 -a(S'drawRoundedRectangle/6' -p77658 -S'drawRoundedRectangle(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}, ${6:Radius}) $7' -p77659 -tp77660 -a(S'drawText/4' -p77661 -S'drawText(${1:This}, ${2:Str}, ${3:X}, ${4:Y}) $5' -p77662 -tp77663 -a(S'drawText/5' -p77664 -S'drawText(${1:This}, ${2:Str}, ${3:X}, ${4:Y}, ${5:Angle}) $6' -p77665 -tp77666 -a(S'drawText/6' -p77667 -S'drawText(${1:This}, ${2:Str}, ${3:X}, ${4:Y}, ${5:Angle}, ${6:BackgroundBrush}) $7' -p77668 -tp77669 -a(S'fillPath/2' -p77670 -S'fillPath(${1:This}, ${2:Path}) $3' -p77671 -tp77672 -a(S'fillPath/3' -p77673 -S'fillPath(${1:This}, ${2:Path}, ${3:Param3}) $4' -p77674 -tp77675 -a(S'getPartialTextExtents/2' -p77676 -S'getPartialTextExtents(${1:This}, ${2:Text}) $3' -p77677 -tp77678 -a(S'getRenderer/1' -p77679 -S'getRenderer(${1:This}) $2' -p77680 -tp77681 -a(S'getTextExtent/2' -p77682 -S'getTextExtent(${1:This}, ${2:Text}) $3' -p77683 -tp77684 -a(S'getTransform/1' -p77685 -S'getTransform(${1:This}) $2' -p77686 -tp77687 -a(S'isNull/1' -p77688 -S'isNull(${1:This}) $2' -p77689 -tp77690 -a(S'parent_class/1' -p77691 -S'parent_class(${1:Param1}) $2' -p77692 -tp77693 -a(S'resetClip/1' -p77694 -S'resetClip(${1:This}) $2' -p77695 -tp77696 -a(S'rotate/2' -p77697 -S'rotate(${1:This}, ${2:Angle}) $3' -p77698 -tp77699 -a(S'scale/3' -p77700 -S'scale(${1:This}, ${2:XScale}, ${3:YScale}) $4' -p77701 -tp77702 -a(S'setBrush/2' -p77703 -S'setBrush(${1:This}, ${2:Brush}) $3' -p77704 -tp77705 -a(S'setFont/2' -p77706 -S'setFont(${1:This}, ${2:Font}) $3' -p77707 -tp77708 -a(S'setFont/3' -p77709 -S'setFont(${1:This}, ${2:Font}, ${3:Colour}) $4' -p77710 -tp77711 -a(S'setPen/2' -p77712 -S'setPen(${1:This}, ${2:Pen}) $3' -p77713 -tp77714 -a(S'setTransform/2' -p77715 -S'setTransform(${1:This}, ${2:Matrix}) $3' -p77716 -tp77717 -a(S'strokeLine/5' -p77718 -S'strokeLine(${1:This}, ${2:X1}, ${3:Y1}, ${4:X2}, ${5:Y2}) $6' -p77719 -tp77720 -a(S'strokeLines/2' -p77721 -S'strokeLines(${1:This}, ${2:Points}) $3' -p77722 -tp77723 -a(S'strokePath/2' -p77724 -S'strokePath(${1:This}, ${2:Path}) $3' -p77725 -tp77726 -a(S'translate/3' -p77727 -S'translate(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p77728 -tp77729 -asS'tags' -p77730 -(lp77731 -(S'dir/1' -p77732 -S'dir(${1:Dir}) $2' -p77733 -tp77734 -a(S'dir/2' -p77735 -S'dir(${1:Dir}, ${2:Options}) $3' -p77736 -tp77737 -a(S'dirs/1' -p77738 -S'dirs(${1:Dirs}) $2' -p77739 -tp77740 -a(S'dirs/2' -p77741 -S'dirs(${1:Dirs}, ${2:Options}) $3' -p77742 -tp77743 -a(S'file/1' -p77744 -S'file(${1:Name}) $2' -p77745 -tp77746 -a(S'file/2' -p77747 -S'file(${1:Name}, ${2:Options}) $3' -p77748 -tp77749 -a(S'files/1' -p77750 -S'files(${1:Files}) $2' -p77751 -tp77752 -a(S'files/2' -p77753 -S'files(${1:Files}, ${2:Options}) $3' -p77754 -tp77755 -a(S'root/0' -p77756 -S'root() $1' -p77757 -tp77758 -a(S'root/1' -p77759 -S'root(${1:Options}) $2' -p77760 -tp77761 -a(S'subdir/1' -p77762 -S'subdir(${1:Dir}) $2' -p77763 -tp77764 -a(S'subdir/2' -p77765 -S'subdir(${1:Dir}, ${2:Options}) $3' -p77766 -tp77767 -a(S'subdirs/1' -p77768 -S'subdirs(${1:Dirs}) $2' -p77769 -tp77770 -a(S'subdirs/2' -p77771 -S'subdirs(${1:Dirs}, ${2:Options}) $3' -p77772 -tp77773 -asS'CosNotifyChannelAdmin_ProxyConsumer' -p77774 -(lp77775 -(S"'_get_MyAdmin'/1" -p77776 -S"'_get_MyAdmin'(${1:OE_THIS}) $2" -p77777 -tp77778 -a(S"'_get_MyAdmin'/2" -p77779 -S"'_get_MyAdmin'(${1:OE_THIS}, ${2:OE_Options}) $3" -p77780 -tp77781 -a(S"'_get_MyType'/1" -p77782 -S"'_get_MyType'(${1:OE_THIS}) $2" -p77783 -tp77784 -a(S"'_get_MyType'/2" -p77785 -S"'_get_MyType'(${1:OE_THIS}, ${2:OE_Options}) $3" -p77786 -tp77787 -a(S'add_filter/2' -p77788 -S'add_filter(${1:OE_THIS}, ${2:New_filter}) $3' -p77789 -tp77790 -a(S'add_filter/3' -p77791 -S'add_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:New_filter}) $4' -p77792 -tp77793 -a(S'code_change/3' -p77794 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p77795 -tp77796 -a(S'get_all_filters/1' -p77797 -S'get_all_filters(${1:OE_THIS}) $2' -p77798 -tp77799 -a(S'get_all_filters/2' -p77800 -S'get_all_filters(${1:OE_THIS}, ${2:OE_Options}) $3' -p77801 -tp77802 -a(S'get_filter/2' -p77803 -S'get_filter(${1:OE_THIS}, ${2:Filter}) $3' -p77804 -tp77805 -a(S'get_filter/3' -p77806 -S'get_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:Filter}) $4' -p77807 -tp77808 -a(S'get_qos/1' -p77809 -S'get_qos(${1:OE_THIS}) $2' -p77810 -tp77811 -a(S'get_qos/2' -p77812 -S'get_qos(${1:OE_THIS}, ${2:OE_Options}) $3' -p77813 -tp77814 -a(S'handle_call/3' -p77815 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p77816 -tp77817 -a(S'handle_cast/2' -p77818 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p77819 -tp77820 -a(S'handle_info/2' -p77821 -S'handle_info(${1:Param1}, ${2:State}) $3' -p77822 -tp77823 -a(S'init/1' -p77824 -S'init(${1:Env}) $2' -p77825 -tp77826 -a(S'obtain_subscription_types/2' -p77827 -S'obtain_subscription_types(${1:OE_THIS}, ${2:Mode}) $3' -p77828 -tp77829 -a(S'obtain_subscription_types/3' -p77830 -S'obtain_subscription_types(${1:OE_THIS}, ${2:OE_Options}, ${3:Mode}) $4' -p77831 -tp77832 -a(S'oe_create/0' -p77833 -S'oe_create() $1' -p77834 -tp77835 -a(S'oe_create/1' -p77836 -S'oe_create(${1:Env}) $2' -p77837 -tp77838 -a(S'oe_create/2' -p77839 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p77840 -tp77841 -a(S'oe_create_link/0' -p77842 -S'oe_create_link() $1' -p77843 -tp77844 -a(S'oe_create_link/1' -p77845 -S'oe_create_link(${1:Env}) $2' -p77846 -tp77847 -a(S'oe_create_link/2' -p77848 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p77849 -tp77850 -a(S'oe_get_interface/0' -p77851 -S'oe_get_interface() $1' -p77852 -tp77853 -a(S'oe_is_a/1' -p77854 -S'oe_is_a(${1:Param1}) $2' -p77855 -tp77856 -a(S'oe_tc/1' -p77857 -S'oe_tc(${1:Param1}) $2' -p77858 -tp77859 -a(S'remove_all_filters/1' -p77860 -S'remove_all_filters(${1:OE_THIS}) $2' -p77861 -tp77862 -a(S'remove_all_filters/2' -p77863 -S'remove_all_filters(${1:OE_THIS}, ${2:OE_Options}) $3' -p77864 -tp77865 -a(S'remove_filter/2' -p77866 -S'remove_filter(${1:OE_THIS}, ${2:Filter}) $3' -p77867 -tp77868 -a(S'remove_filter/3' -p77869 -S'remove_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:Filter}) $4' -p77870 -tp77871 -a(S'set_qos/2' -p77872 -S'set_qos(${1:OE_THIS}, ${2:Qos}) $3' -p77873 -tp77874 -a(S'set_qos/3' -p77875 -S'set_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Qos}) $4' -p77876 -tp77877 -a(S'terminate/2' -p77878 -S'terminate(${1:Reason}, ${2:State}) $3' -p77879 -tp77880 -a(S'typeID/0' -p77881 -S'typeID() $1' -p77882 -tp77883 -a(S'validate_event_qos/2' -p77884 -S'validate_event_qos(${1:OE_THIS}, ${2:Required_qos}) $3' -p77885 -tp77886 -a(S'validate_event_qos/3' -p77887 -S'validate_event_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Required_qos}) $4' -p77888 -tp77889 -a(S'validate_qos/2' -p77890 -S'validate_qos(${1:OE_THIS}, ${2:Required_qos}) $3' -p77891 -tp77892 -a(S'validate_qos/3' -p77893 -S'validate_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Required_qos}) $4' -p77894 -tp77895 -asS'wxTextAttr' -p77896 -(lp77897 -(S'destroy/1' -p77898 -S'destroy(${1:This}) $2' -p77899 -tp77900 -a(S'getAlignment/1' -p77901 -S'getAlignment(${1:This}) $2' -p77902 -tp77903 -a(S'getBackgroundColour/1' -p77904 -S'getBackgroundColour(${1:This}) $2' -p77905 -tp77906 -a(S'getFlags/1' -p77907 -S'getFlags(${1:This}) $2' -p77908 -tp77909 -a(S'getFont/1' -p77910 -S'getFont(${1:This}) $2' -p77911 -tp77912 -a(S'getLeftIndent/1' -p77913 -S'getLeftIndent(${1:This}) $2' -p77914 -tp77915 -a(S'getLeftSubIndent/1' -p77916 -S'getLeftSubIndent(${1:This}) $2' -p77917 -tp77918 -a(S'getRightIndent/1' -p77919 -S'getRightIndent(${1:This}) $2' -p77920 -tp77921 -a(S'getTabs/1' -p77922 -S'getTabs(${1:This}) $2' -p77923 -tp77924 -a(S'getTextColour/1' -p77925 -S'getTextColour(${1:This}) $2' -p77926 -tp77927 -a(S'hasBackgroundColour/1' -p77928 -S'hasBackgroundColour(${1:This}) $2' -p77929 -tp77930 -a(S'hasFont/1' -p77931 -S'hasFont(${1:This}) $2' -p77932 -tp77933 -a(S'hasTextColour/1' -p77934 -S'hasTextColour(${1:This}) $2' -p77935 -tp77936 -a(S'isDefault/1' -p77937 -S'isDefault(${1:This}) $2' -p77938 -tp77939 -a(S'new/0' -p77940 -S'new() $1' -p77941 -tp77942 -a(S'new/1' -p77943 -S'new(${1:ColText}) $2' -p77944 -tp77945 -a(S'new/2' -p77946 -S'new(${1:ColText}, ${2:Param2}) $3' -p77947 -tp77948 -a(S'parent_class/1' -p77949 -S'parent_class(${1:Param1}) $2' -p77950 -tp77951 -a(S'setAlignment/2' -p77952 -S'setAlignment(${1:This}, ${2:Alignment}) $3' -p77953 -tp77954 -a(S'setBackgroundColour/2' -p77955 -S'setBackgroundColour(${1:This}, ${2:ColBack}) $3' -p77956 -tp77957 -a(S'setFlags/2' -p77958 -S'setFlags(${1:This}, ${2:Flags}) $3' -p77959 -tp77960 -a(S'setFont/2' -p77961 -S'setFont(${1:This}, ${2:Font}) $3' -p77962 -tp77963 -a(S'setFont/3' -p77964 -S'setFont(${1:This}, ${2:Font}, ${3:Param3}) $4' -p77965 -tp77966 -a(S'setLeftIndent/2' -p77967 -S'setLeftIndent(${1:This}, ${2:Indent}) $3' -p77968 -tp77969 -a(S'setLeftIndent/3' -p77970 -S'setLeftIndent(${1:This}, ${2:Indent}, ${3:Param3}) $4' -p77971 -tp77972 -a(S'setRightIndent/2' -p77973 -S'setRightIndent(${1:This}, ${2:Indent}) $3' -p77974 -tp77975 -a(S'setTabs/2' -p77976 -S'setTabs(${1:This}, ${2:Tabs}) $3' -p77977 -tp77978 -a(S'setTextColour/2' -p77979 -S'setTextColour(${1:This}, ${2:ColText}) $3' -p77980 -tp77981 -asS'cdr_encode' -p77982 -(lp77983 -(S'enc_cancel_request/1' -p77984 -S'enc_cancel_request(${1:Env}) $2' -p77985 -tp77986 -a(S'enc_close_connection/1' -p77987 -S'enc_close_connection(${1:Env}) $2' -p77988 -tp77989 -a(S'enc_fragment/1' -p77990 -S'enc_fragment(${1:Env}) $2' -p77991 -tp77992 -a(S'enc_giop_message_header/5' -p77993 -S'enc_giop_message_header() $1' -p77994 -tp77995 -a(S'enc_giop_msg_type/1' -p77996 -S'enc_giop_msg_type(${1:Param1}) $2' -p77997 -tp77998 -a(S'enc_locate_reply/1' -p77999 -S'enc_locate_reply(${1:Env}) $2' -p78000 -tp78001 -a(S'enc_locate_request/1' -p78002 -S'enc_locate_request(${1:Env}) $2' -p78003 -tp78004 -a(S'enc_message_error/1' -p78005 -S'enc_message_error(${1:Env}) $2' -p78006 -tp78007 -a(S'enc_reply/1' -p78008 -S'enc_reply(${1:Env}) $2' -p78009 -tp78010 -a(S'enc_reply_split/1' -p78011 -S'enc_reply_split(${1:Env}) $2' -p78012 -tp78013 -a(S'enc_request/1' -p78014 -S'enc_request(${1:Env}) $2' -p78015 -tp78016 -a(S'enc_request_split/1' -p78017 -S'enc_request_split(${1:Env}) $2' -p78018 -tp78019 -a(S'enc_type/3' -p78020 -S'enc_type(${1:Env}, ${2:TypeCode}, ${3:Value}) $4' -p78021 -tp78022 -a(S'enc_type/5' -p78023 -S'enc_type(${1:Type}, ${2:Env}, ${3:Value}, ${4:Bytes}, ${5:Len}) $6' -p78024 -tp78025 -a(S'validate_reply_body/2' -p78026 -S'validate_reply_body(${1:Env}, ${2:Reply}) $3' -p78027 -tp78028 -a(S'validate_request_body/1' -p78029 -S'validate_request_body() $1' -p78030 -tp78031 -asS'CosEventDomainAdmin_DomainIDSeq' -p78032 -(lp78033 -(S'id/0' -p78034 -S'id() $1' -p78035 -tp78036 -a(S'name/0' -p78037 -S'name() $1' -p78038 -tp78039 -a(S'tc/0' -p78040 -S'tc() $1' -p78041 -tp78042 -asS'dbg_debugged' -p78043 -(lp78044 -(S'eval/3' -p78045 -S'eval(${1:Mod}, ${2:Func}, ${3:Args}) $4' -p78046 -tp78047 -asS'wxAcceleratorEntry' -p78048 -(lp78049 -(S'destroy/1' -p78050 -S'destroy(${1:This}) $2' -p78051 -tp78052 -a(S'getCommand/1' -p78053 -S'getCommand(${1:This}) $2' -p78054 -tp78055 -a(S'getFlags/1' -p78056 -S'getFlags(${1:This}) $2' -p78057 -tp78058 -a(S'getKeyCode/1' -p78059 -S'getKeyCode(${1:This}) $2' -p78060 -tp78061 -a(S'new/0' -p78062 -S'new() $1' -p78063 -tp78064 -a(S'new/1' -p78065 -S'new(${1:Param1}) $2' -p78066 -tp78067 -a(S'parent_class/1' -p78068 -S'parent_class(${1:Param1}) $2' -p78069 -tp78070 -a(S'set/4' -p78071 -S'set(${1:This}, ${2:Flags}, ${3:KeyCode}, ${4:Cmd}) $5' -p78072 -tp78073 -a(S'set/5' -p78074 -S'set(${1:This}, ${2:Flags}, ${3:KeyCode}, ${4:Cmd}, ${5:Param5}) $6' -p78075 -tp78076 -asS'httpd_cgi' -p78077 -(lp78078 -(S'handle_headers/1' -p78079 -S'handle_headers(${1:CGIHeaders}) $2' -p78080 -tp78081 -a(S'parse_headers/1' -p78082 -S'parse_headers(${1:Param1}) $2' -p78083 -tp78084 -asS'httpc_request' -p78085 -(lp78086 -(S'is_client_closing/1' -p78087 -S'is_client_closing(${1:Headers}) $2' -p78088 -tp78089 -a(S'is_idempotent/1' -p78090 -S'is_idempotent(${1:Param1}) $2' -p78091 -tp78092 -a(S'send/3' -p78093 -S'send(${1:SendAddr}, ${2:Param2}, ${3:Request}) $4' -p78094 -tp78095 -asS'ssh_sup' -p78096 -(lp78097 -(S'init/1' -p78098 -S'init(${1:Param1}) $2' -p78099 -tp78100 -asS'inets_app' -p78101 -(lp78102 -(S'start/2' -p78103 -S'start(${1:Param1}, ${2:Param2}) $3' -p78104 -tp78105 -a(S'stop/1' -p78106 -S'stop(${1:Param1}) $2' -p78107 -tp78108 -asS'gb_sets' -p78109 -(lp78110 -(S'add/2' -p78111 -S'add(${1:Element}, ${2:Set1}) $3' -p78112 -tp78113 -a(S'add_element/2' -p78114 -S'add_element(${1:Element}, ${2:Set1}) $3' -p78115 -tp78116 -a(S'balance/1' -p78117 -S'balance(${1:Set1}) $2' -p78118 -tp78119 -a(S'del_element/2' -p78120 -S'del_element(${1:Element}, ${2:Set1}) $3' -p78121 -tp78122 -a(S'delete/2' -p78123 -S'delete(${1:Element}, ${2:Set1}) $3' -p78124 -tp78125 -a(S'delete_any/2' -p78126 -S'delete_any(${1:Element}, ${2:Set1}) $3' -p78127 -tp78128 -a(S'difference/2' -p78129 -S'difference(${1:Set1}, ${2:Set2}) $3' -p78130 -tp78131 -a(S'empty/0' -p78132 -S'empty() $1' -p78133 -tp78134 -a(S'filter/2' -p78135 -S'filter(${1:Pred}, ${2:Set1}) $3' -p78136 -tp78137 -a(S'fold/3' -p78138 -S'fold(${1:Function}, ${2:Acc0}, ${3:Set}) $4' -p78139 -tp78140 -a(S'from_list/1' -p78141 -S'from_list(${1:List}) $2' -p78142 -tp78143 -a(S'from_ordset/1' -p78144 -S'from_ordset(${1:List}) $2' -p78145 -tp78146 -a(S'insert/2' -p78147 -S'insert(${1:Element}, ${2:Set1}) $3' -p78148 -tp78149 -a(S'intersection/1' -p78150 -S'intersection(${1:SetList}) $2' -p78151 -tp78152 -a(S'intersection/2' -p78153 -S'intersection(${1:Set1}, ${2:Set2}) $3' -p78154 -tp78155 -a(S'is_disjoint/2' -p78156 -S'is_disjoint(${1:Set1}, ${2:Set2}) $3' -p78157 -tp78158 -a(S'is_element/2' -p78159 -S'is_element(${1:Element}, ${2:Set}) $3' -p78160 -tp78161 -a(S'is_empty/1' -p78162 -S'is_empty(${1:Set}) $2' -p78163 -tp78164 -a(S'is_member/2' -p78165 -S'is_member(${1:Element}, ${2:Set}) $3' -p78166 -tp78167 -a(S'is_set/1' -p78168 -S'is_set(${1:Term}) $2' -p78169 -tp78170 -a(S'is_subset/2' -p78171 -S'is_subset(${1:Set1}, ${2:Set2}) $3' -p78172 -tp78173 -a(S'iterator/1' -p78174 -S'iterator(${1:Set}) $2' -p78175 -tp78176 -a(S'largest/1' -p78177 -S'largest(${1:Set1}) $2' -p78178 -tp78179 -a(S'new/0' -p78180 -S'new() $1' -p78181 -tp78182 -a(S'next/1' -p78183 -S'next(${1:Iter1}) $2' -p78184 -tp78185 -a(S'singleton/1' -p78186 -S'singleton(${1:Element}) $2' -p78187 -tp78188 -a(S'size/1' -p78189 -S'size(${1:Set}) $2' -p78190 -tp78191 -a(S'smallest/1' -p78192 -S'smallest(${1:Set1}) $2' -p78193 -tp78194 -a(S'subtract/2' -p78195 -S'subtract(${1:Set1}, ${2:Set2}) $3' -p78196 -tp78197 -a(S'take_largest/1' -p78198 -S'take_largest(${1:Set1}) $2' -p78199 -tp78200 -a(S'take_smallest/1' -p78201 -S'take_smallest(${1:Set1}) $2' -p78202 -tp78203 -a(S'to_list/1' -p78204 -S'to_list(${1:Set}) $2' -p78205 -tp78206 -a(S'union/1' -p78207 -S'union(${1:SetList}) $2' -p78208 -tp78209 -a(S'union/2' -p78210 -S'union(${1:Set1}, ${2:Set2}) $3' -p78211 -tp78212 -asS'pman_win' -p78213 -(lp78214 -(S'add_menu/3' -p78215 -S'add_menu(${1:Menu}, ${2:Names}, ${3:Tag}) $4' -p78216 -tp78217 -a(S'calc_columnwidths/1' -p78218 -S'calc_columnwidths(${1:Width}) $2' -p78219 -tp78220 -a(S'change_colour/3' -p78221 -S'change_colour(${1:Grid}, ${2:Row}, ${3:Row}) $4' -p78222 -tp78223 -a(S'configeditor/2' -p78224 -S'configeditor(${1:Editor}, ${2:Options}) $3' -p78225 -tp78226 -a(S'configwin/3' -p78227 -S'configwin(${1:Object}, ${2:W}, ${3:H}) $4' -p78228 -tp78229 -a(S'dialog_window/2' -p78230 -S'dialog_window(${1:GSParent}, ${2:Text}) $3' -p78231 -tp78232 -a(S'display/1' -p78233 -S'display(${1:Pid}) $2' -p78234 -tp78235 -a(S'font/0' -p78236 -S'font() $1' -p78237 -tp78238 -a(S'font/1' -p78239 -S'font(${1:GS}) $2' -p78240 -tp78241 -a(S'format/2' -p78242 -S'format(${1:Pad}, ${2:X}) $3' -p78243 -tp78244 -a(S'links_menus/1' -p78245 -S'links_menus(${1:Links}) $2' -p78246 -tp78247 -a(S'module_data/1' -p78248 -S'module_data(${1:ModuleName}) $2' -p78249 -tp78250 -a(S'msg_win/1' -p78251 -S'msg_win(${1:Text}) $2' -p78252 -tp78253 -a(S'pman_window/3' -p78254 -S'pman_window(${1:Size}, ${2:Param2}, ${3:Nodes}) $4' -p78255 -tp78256 -a(S'remove_menu/1' -p78257 -S'remove_menu(${1:List}) $2' -p78258 -tp78259 -a(S'title/1' -p78260 -S'title(${1:Sh}) $2' -p78261 -tp78262 -a(S'update/1' -p78263 -S'update(${1:NoOfHidden}) $2' -p78264 -tp78265 -a(S'update/3' -p78266 -S'update(${1:Grid}, ${2:ShowInfoR}, ${3:NoOfHidden}) $4' -p78267 -tp78268 -a(S'window/1' -p78269 -S'window(${1:Process}) $2' -p78270 -tp78271 -asS'snmp_log' -p78272 -(lp78273 -(S'change_size/2' -p78274 -S'change_size(${1:Log}, ${2:NewSize}) $3' -p78275 -tp78276 -a(S'close/1' -p78277 -S'close(${1:Log}) $2' -p78278 -tp78279 -a(S'create/4' -p78280 -S'create(${1:Name}, ${2:File}, ${3:Size}, ${4:Repair}) $5' -p78281 -tp78282 -a(S'create/5' -p78283 -S'create(${1:Name}, ${2:File}, ${3:SeqNoGen}, ${4:Size}, ${5:Repair}) $6' -p78284 -tp78285 -a(S'create/6' -p78286 -S'create(${1:Name}, ${2:File}, ${3:SeqNoGen}, ${4:Size}, ${5:Repair}, ${6:Notify}) $7' -p78287 -tp78288 -a(S'downgrade/1' -p78289 -S'downgrade(${1:Log}) $2' -p78290 -tp78291 -a(S'info/1' -p78292 -S'info(${1:Log}) $2' -p78293 -tp78294 -a(S'log/4' -p78295 -S'log(${1:Param1}, ${2:Packet}, ${3:Addr}, ${4:Port}) $5' -p78296 -tp78297 -a(S'log_to_io/4' -p78298 -S'log_to_io(${1:Log}, ${2:FileName}, ${3:Dir}, ${4:Mibs}) $5' -p78299 -tp78300 -a(S'log_to_io/5' -p78301 -S'log_to_io(${1:Log}, ${2:FileName}, ${3:Dir}, ${4:Mibs}, ${5:Start}) $6' -p78302 -tp78303 -a(S'log_to_io/6' -p78304 -S'log_to_io() $1' -p78305 -tp78306 -a(S'log_to_txt/5' -p78307 -S'log_to_txt(${1:Log}, ${2:FileName}, ${3:Dir}, ${4:Mibs}, ${5:TextFile}) $6' -p78308 -tp78309 -a(S'log_to_txt/6' -p78310 -S'log_to_txt(${1:Log}, ${2:FileName}, ${3:Dir}, ${4:Mibs}, ${5:TextFile}, ${6:Start}) $7' -p78311 -tp78312 -a(S'log_to_txt/7' -p78313 -S'log_to_txt() $1' -p78314 -tp78315 -a(S'open/1' -p78316 -S'open(${1:Name}) $2' -p78317 -tp78318 -a(S'open/2' -p78319 -S'open(${1:Name}, ${2:File}) $3' -p78320 -tp78321 -a(S'sync/1' -p78322 -S'sync(${1:Log}) $2' -p78323 -tp78324 -a(S'upgrade/1' -p78325 -S'upgrade(${1:Log}) $2' -p78326 -tp78327 -a(S'upgrade/2' -p78328 -S'upgrade(${1:Log}, ${2:SeqNoGen}) $3' -p78329 -tp78330 -a(S'validate/1' -p78331 -S'validate(${1:Log}) $2' -p78332 -tp78333 -a(S'validate/2' -p78334 -S'validate(${1:Param1}, ${2:SeqNoReq}) $3' -p78335 -tp78336 -asS'debugger' -p78337 -(lp78338 -(S'auto_attach/1' -p78339 -S'auto_attach(${1:Flags}) $2' -p78340 -tp78341 -a(S'quick/3' -p78342 -S'quick(${1:M}, ${2:F}, ${3:A}) $4' -p78343 -tp78344 -a(S'start/0' -p78345 -S'start() $1' -p78346 -tp78347 -a(S'start/1' -p78348 -S'start(${1:SFile}) $2' -p78349 -tp78350 -a(S'start/2' -p78351 -S'start(${1:Mode}, ${2:SFile}) $3' -p78352 -tp78353 -a(S'stop/0' -p78354 -S'stop() $1' -p78355 -tp78356 -asS'megaco_per_bin_encoder' -p78357 -(lp78358 -(S'decode_message/2' -p78359 -S'decode_message(${1:EC}, ${2:Binary}) $3' -p78360 -tp78361 -a(S'decode_message/3' -p78362 -S'decode_message(${1:EC}, ${2:Param2}, ${3:Binary}) $4' -p78363 -tp78364 -a(S'decode_mini_message/3' -p78365 -S'decode_mini_message(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p78366 -tp78367 -a(S'encode_action_reply/3' -p78368 -S'encode_action_reply(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p78369 -tp78370 -a(S'encode_action_request/3' -p78371 -S'encode_action_request(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p78372 -tp78373 -a(S'encode_action_requests/3' -p78374 -S'encode_action_requests(${1:Param1}, ${2:Param2}, ${3:ActReqs}) $4' -p78375 -tp78376 -a(S'encode_message/2' -p78377 -S'encode_message() $1' -p78378 -tp78379 -a(S'encode_message/3' -p78380 -S'encode_message(${1:EC}, ${2:Param2}, ${3:MegaMsg}) $4' -p78381 -tp78382 -a(S'encode_transaction/3' -p78383 -S'encode_transaction(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p78384 -tp78385 -a(S'version_of/2' -p78386 -S'version_of(${1:EC}, ${2:Binary}) $3' -p78387 -tp78388 -asS'dbg_ui_mon' -p78389 -(lp78390 -(S'start/2' -p78391 -S'start(${1:Mode}, ${2:SFile}) $3' -p78392 -tp78393 -a(S'stop/0' -p78394 -S'stop() $1' -p78395 -tp78396 -asS'erl_tar' -p78397 -(lp78398 -(S'add/3' -p78399 -S'add(${1:File}, ${2:Name}, ${3:Options}) $4' -p78400 -tp78401 -a(S'add/4' -p78402 -S'add(${1:Param1}, ${2:Name}, ${3:NameInArchive}, ${4:Options}) $5' -p78403 -tp78404 -a(S'close/1' -p78405 -S'close(${1:Param1}) $2' -p78406 -tp78407 -a(S'create/2' -p78408 -S'create(${1:Name}, ${2:Filenames}) $3' -p78409 -tp78410 -a(S'create/3' -p78411 -S'create(${1:Name}, ${2:FileList}, ${3:Options}) $4' -p78412 -tp78413 -a(S'extract/1' -p78414 -S'extract(${1:Name}) $2' -p78415 -tp78416 -a(S'extract/2' -p78417 -S'extract(${1:Name}, ${2:Opts}) $3' -p78418 -tp78419 -a(S'format_error/1' -p78420 -S'format_error(${1:Atom}) $2' -p78421 -tp78422 -a(S'open/2' -p78423 -S'open(${1:Name}, ${2:Mode}) $3' -p78424 -tp78425 -a(S't/1' -p78426 -S't(${1:Name}) $2' -p78427 -tp78428 -a(S'table/1' -p78429 -S'table(${1:Name}) $2' -p78430 -tp78431 -a(S'table/2' -p78432 -S'table(${1:Name}, ${2:Opts}) $3' -p78433 -tp78434 -a(S'tt/1' -p78435 -S'tt(${1:Name}) $2' -p78436 -tp78437 -asS'inviso' -p78438 -(lp78439 -(S'add_node/1' -p78440 -S'add_node(${1:Reference}) $2' -p78441 -tp78442 -a(S'add_node/2' -p78443 -S'add_node(${1:Reference}, ${2:Options}) $3' -p78444 -tp78445 -a(S'add_node_if_ref/1' -p78446 -S'add_node_if_ref(${1:Reference}) $2' -p78447 -tp78448 -a(S'add_node_if_ref/2' -p78449 -S'add_node_if_ref(${1:Reference}, ${2:Options}) $3' -p78450 -tp78451 -a(S'add_nodes/2' -p78452 -S'add_nodes(${1:Nodes}, ${2:Reference}) $3' -p78453 -tp78454 -a(S'add_nodes/3' -p78455 -S'add_nodes(${1:Nodes}, ${2:Reference}, ${3:Options}) $4' -p78456 -tp78457 -a(S'add_nodes_if_ref/2' -p78458 -S'add_nodes_if_ref(${1:Nodes}, ${2:Reference}) $3' -p78459 -tp78460 -a(S'add_nodes_if_ref/3' -p78461 -S'add_nodes_if_ref(${1:Nodes}, ${2:Reference}, ${3:Options}) $4' -p78462 -tp78463 -a(S'cancel_suspension/0' -p78464 -S'cancel_suspension() $1' -p78465 -tp78466 -a(S'cancel_suspension/1' -p78467 -S'cancel_suspension(${1:Nodes}) $2' -p78468 -tp78469 -a(S'change_options/1' -p78470 -S'change_options(${1:Options}) $2' -p78471 -tp78472 -a(S'change_options/2' -p78473 -S'change_options(${1:Nodes}, ${2:Options}) $3' -p78474 -tp78475 -a(S'clear/0' -p78476 -S'clear() $1' -p78477 -tp78478 -a(S'clear/1' -p78479 -S'clear(${1:Nodes}) $2' -p78480 -tp78481 -a(S'clear/2' -p78482 -S'clear(${1:Nodes}, ${2:Options}) $3' -p78483 -tp78484 -a(S'ctf/1' -p78485 -S'ctf(${1:TraceConfList}) $2' -p78486 -tp78487 -a(S'ctf/2' -p78488 -S'ctf(${1:Nodes}, ${2:TraceConfList}) $3' -p78489 -tp78490 -a(S'ctf/3' -p78491 -S'ctf(${1:Nodes}, ${2:PidSpec}, ${3:FlagList}) $4' -p78492 -tp78493 -a(S'ctf_all/0' -p78494 -S'ctf_all() $1' -p78495 -tp78496 -a(S'ctf_all/1' -p78497 -S'ctf_all(${1:Nodes}) $2' -p78498 -tp78499 -a(S'ctp/1' -p78500 -S'ctp(${1:PatternList}) $2' -p78501 -tp78502 -a(S'ctp/2' -p78503 -S'ctp(${1:Nodes}, ${2:PatternList}) $3' -p78504 -tp78505 -a(S'ctp/3' -p78506 -S'ctp(${1:Module}, ${2:Function}, ${3:Arity}) $4' -p78507 -tp78508 -a(S'ctp/4' -p78509 -S'ctp(${1:Nodes}, ${2:Module}, ${3:Function}, ${4:Arity}) $5' -p78510 -tp78511 -a(S'ctp_all/0' -p78512 -S'ctp_all() $1' -p78513 -tp78514 -a(S'ctp_all/1' -p78515 -S'ctp_all(${1:Nodes}) $2' -p78516 -tp78517 -a(S'ctpl/1' -p78518 -S'ctpl(${1:PatternList}) $2' -p78519 -tp78520 -a(S'ctpl/2' -p78521 -S'ctpl(${1:Nodes}, ${2:PatternList}) $3' -p78522 -tp78523 -a(S'ctpl/3' -p78524 -S'ctpl(${1:Module}, ${2:Function}, ${3:Arity}) $4' -p78525 -tp78526 -a(S'ctpl/4' -p78527 -S'ctpl(${1:Nodes}, ${2:Module}, ${3:Function}, ${4:Arity}) $5' -p78528 -tp78529 -a(S'ctpm/3' -p78530 -S'ctpm(${1:Mod}, ${2:Func}, ${3:Arity}) $4' -p78531 -tp78532 -a(S'ctpm/4' -p78533 -S'ctpm(${1:Nodes}, ${2:Mod}, ${3:Func}, ${4:Arity}) $5' -p78534 -tp78535 -a(S'ctpm_globalnames/0' -p78536 -S'ctpm_globalnames() $1' -p78537 -tp78538 -a(S'ctpm_globalnames/1' -p78539 -S'ctpm_globalnames(${1:Nodes}) $2' -p78540 -tp78541 -a(S'ctpm_localnames/0' -p78542 -S'ctpm_localnames() $1' -p78543 -tp78544 -a(S'ctpm_localnames/1' -p78545 -S'ctpm_localnames(${1:Nodes}) $2' -p78546 -tp78547 -a(S'ctpm_ms/4' -p78548 -S'ctpm_ms(${1:Mod}, ${2:Func}, ${3:Arity}, ${4:MSname}) $5' -p78549 -tp78550 -a(S'ctpm_ms/5' -p78551 -S'ctpm_ms(${1:Nodes}, ${2:Mod}, ${3:Func}, ${4:Arity}, ${5:MSname}) $6' -p78552 -tp78553 -a(S'delete_log/0' -p78554 -S'delete_log() $1' -p78555 -tp78556 -a(S'delete_log/1' -p78557 -S'delete_log(${1:What}) $2' -p78558 -tp78559 -a(S'delete_log/2' -p78560 -S'delete_log(${1:Nodes}, ${2:Spec}) $3' -p78561 -tp78562 -a(S'fetch_log/2' -p78563 -S'fetch_log(${1:DestDir}, ${2:Prefix}) $3' -p78564 -tp78565 -a(S'fetch_log/3' -p78566 -S'fetch_log(${1:ToNode}, ${2:DestDir}, ${3:Prefix}) $4' -p78567 -tp78568 -a(S'fetch_log/4' -p78569 -S'fetch_log() $1' -p78570 -tp78571 -a(S'flush/0' -p78572 -S'flush() $1' -p78573 -tp78574 -a(S'flush/1' -p78575 -S'flush(${1:Nodes}) $2' -p78576 -tp78577 -a(S'get_status/0' -p78578 -S'get_status() $1' -p78579 -tp78580 -a(S'get_status/1' -p78581 -S'get_status(${1:Nodes}) $2' -p78582 -tp78583 -a(S'get_tracerdata/0' -p78584 -S'get_tracerdata() $1' -p78585 -tp78586 -a(S'get_tracerdata/1' -p78587 -S'get_tracerdata(${1:Nodes}) $2' -p78588 -tp78589 -a(S'init_tpm/4' -p78590 -S'init_tpm(${1:Mod}, ${2:Func}, ${3:Arity}, ${4:CallFunc}) $5' -p78591 -tp78592 -a(S'init_tpm/5' -p78593 -S'init_tpm(${1:Nodes}, ${2:Mod}, ${3:Func}, ${4:Arity}, ${5:CallFunc}) $6' -p78594 -tp78595 -a(S'init_tpm/7' -p78596 -S'init_tpm(${1:Mod}, ${2:Func}, ${3:Arity}, ${4:InitFunc}, ${5:CallFunc}, ${6:ReturnFunc}, ${7:RemoveFunc}) $8' -p78597 -tp78598 -a(S'init_tpm/8' -p78599 -S'init_tpm(${1:Nodes}, ${2:Mod}, ${3:Func}, ${4:Arity}, ${5:InitFunc}, ${6:CallFunc}, ${7:ReturnFunc}, ${8:RemoveFunc}) $9' -p78600 -tp78601 -a(S'init_tracing/1' -p78602 -S'init_tracing(${1:TracerDataList}) $2' -p78603 -tp78604 -a(S'init_tracing/2' -p78605 -S'init_tracing(${1:Nodes}, ${2:TracerData}) $3' -p78606 -tp78607 -a(S'list_logs/0' -p78608 -S'list_logs() $1' -p78609 -tp78610 -a(S'list_logs/1' -p78611 -S'list_logs(${1:TracerDataOrNodesList}) $2' -p78612 -tp78613 -a(S'start/0' -p78614 -S'start() $1' -p78615 -tp78616 -a(S'start/1' -p78617 -S'start(${1:Options}) $2' -p78618 -tp78619 -a(S'state/0' -p78620 -S'state() $1' -p78621 -tp78622 -a(S'state/1' -p78623 -S'state(${1:Node}) $2' -p78624 -tp78625 -a(S'stop/0' -p78626 -S'stop() $1' -p78627 -tp78628 -a(S'stop_all/0' -p78629 -S'stop_all() $1' -p78630 -tp78631 -a(S'stop_nodes/0' -p78632 -S'stop_nodes() $1' -p78633 -tp78634 -a(S'stop_nodes/1' -p78635 -S'stop_nodes(${1:Nodes}) $2' -p78636 -tp78637 -a(S'stop_tracing/0' -p78638 -S'stop_tracing() $1' -p78639 -tp78640 -a(S'stop_tracing/1' -p78641 -S'stop_tracing(${1:Nodes}) $2' -p78642 -tp78643 -a(S'subscribe/0' -p78644 -S'subscribe() $1' -p78645 -tp78646 -a(S'subscribe/1' -p78647 -S'subscribe(${1:Pid}) $2' -p78648 -tp78649 -a(S'suspend/1' -p78650 -S'suspend(${1:Reason}) $2' -p78651 -tp78652 -a(S'suspend/2' -p78653 -S'suspend(${1:Nodes}, ${2:Reason}) $3' -p78654 -tp78655 -a(S'tf/1' -p78656 -S'tf(${1:ArgList}) $2' -p78657 -tp78658 -a(S'tf/2' -p78659 -S'tf(${1:Nodes}, ${2:TraceConfList}) $3' -p78660 -tp78661 -a(S'tf/3' -p78662 -S'tf(${1:Nodes}, ${2:PidSpec}, ${3:FlagList}) $4' -p78663 -tp78664 -a(S'tp/1' -p78665 -S'tp(${1:PatternList}) $2' -p78666 -tp78667 -a(S'tp/2' -p78668 -S'tp(${1:Nodes}, ${2:PatternList}) $3' -p78669 -tp78670 -a(S'tp/4' -p78671 -S'tp(${1:Module}, ${2:Function}, ${3:Arity}, ${4:MatchSpec}) $5' -p78672 -tp78673 -a(S'tp/5' -p78674 -S'tp(${1:Nodes}, ${2:Module}, ${3:Function}, ${4:Arity}, ${5:MatchSpec}) $6' -p78675 -tp78676 -a(S'tp/6' -p78677 -S'tp(${1:Nodes}, ${2:Module}, ${3:Function}, ${4:Arity}, ${5:MatchSpec}, ${6:Opts}) $7' -p78678 -tp78679 -a(S'tpl/1' -p78680 -S'tpl(${1:PatternList}) $2' -p78681 -tp78682 -a(S'tpl/2' -p78683 -S'tpl(${1:Nodes}, ${2:PatternList}) $3' -p78684 -tp78685 -a(S'tpl/4' -p78686 -S'tpl(${1:Module}, ${2:Function}, ${3:Arity}, ${4:MatchSpec}) $5' -p78687 -tp78688 -a(S'tpl/5' -p78689 -S'tpl(${1:Nodes}, ${2:Module}, ${3:Function}, ${4:Arity}, ${5:MatchSpec}) $6' -p78690 -tp78691 -a(S'tpl/6' -p78692 -S'tpl(${1:Nodes}, ${2:Module}, ${3:Function}, ${4:Arity}, ${5:MatchSpec}, ${6:Opts}) $7' -p78693 -tp78694 -a(S'tpm/4' -p78695 -S'tpm(${1:Mod}, ${2:Func}, ${3:Arity}, ${4:CallFunc}) $5' -p78696 -tp78697 -a(S'tpm/5' -p78698 -S'tpm(${1:Nodes}, ${2:Mod}, ${3:Func}, ${4:Arity}, ${5:CallFunc}) $6' -p78699 -tp78700 -a(S'tpm/6' -p78701 -S'tpm(${1:Nodes}, ${2:Mod}, ${3:Func}, ${4:Arity}, ${5:MS}, ${6:CallFunc}) $7' -p78702 -tp78703 -a(S'tpm/8' -p78704 -S'tpm(${1:Nodes}, ${2:Mod}, ${3:Func}, ${4:Arity}, ${5:InitFunc}, ${6:CallFunc}, ${7:ReturnFunc}, ${8:RemoveFunc}) $9' -p78705 -tp78706 -a(S'tpm/9' -p78707 -S'tpm(${1:Nodes}, ${2:Mod}, ${3:Func}, ${4:Arity}, ${5:MS}, ${6:InitFunc}, ${7:CallFunc}, ${8:ReturnFunc}, ${9:RemoveFunc}) $10' -p78708 -tp78709 -a(S'tpm_globalnames/0' -p78710 -S'tpm_globalnames() $1' -p78711 -tp78712 -a(S'tpm_globalnames/1' -p78713 -S'tpm_globalnames(${1:Nodes}) $2' -p78714 -tp78715 -a(S'tpm_localnames/0' -p78716 -S'tpm_localnames() $1' -p78717 -tp78718 -a(S'tpm_localnames/1' -p78719 -S'tpm_localnames(${1:Nodes}) $2' -p78720 -tp78721 -a(S'tpm_ms/5' -p78722 -S'tpm_ms(${1:Mod}, ${2:Func}, ${3:Arity}, ${4:MSname}, ${5:MS}) $6' -p78723 -tp78724 -a(S'tpm_ms/6' -p78725 -S'tpm_ms(${1:Nodes}, ${2:Mod}, ${3:Func}, ${4:Arity}, ${5:MSname}, ${6:MS}) $7' -p78726 -tp78727 -a(S'tpm_ms_tracer/5' -p78728 -S'tpm_ms_tracer(${1:Mod}, ${2:Func}, ${3:Arity}, ${4:MSname}, ${5:MS}) $6' -p78729 -tp78730 -a(S'tpm_ms_tracer/6' -p78731 -S'tpm_ms_tracer(${1:Nodes}, ${2:Mod}, ${3:Func}, ${4:Arity}, ${5:MSname}, ${6:MS}) $7' -p78732 -tp78733 -a(S'tpm_tracer/4' -p78734 -S'tpm_tracer(${1:Mod}, ${2:Func}, ${3:Arity}, ${4:MS}) $5' -p78735 -tp78736 -a(S'tpm_tracer/5' -p78737 -S'tpm_tracer(${1:Nodes}, ${2:Mod}, ${3:Func}, ${4:Arity}, ${5:MS}) $6' -p78738 -tp78739 -a(S'tpm_tracer/6' -p78740 -S'tpm_tracer(${1:Nodes}, ${2:Mod}, ${3:Func}, ${4:Arity}, ${5:MS}, ${6:CallFunc}) $7' -p78741 -tp78742 -a(S'tpm_tracer/8' -p78743 -S'tpm_tracer(${1:Mod}, ${2:Func}, ${3:Arity}, ${4:MS}, ${5:InitFunc}, ${6:CallFunc}, ${7:ReturnFunc}, ${8:RemoveFunc}) $9' -p78744 -tp78745 -a(S'tpm_tracer/9' -p78746 -S'tpm_tracer(${1:Nodes}, ${2:Mod}, ${3:Func}, ${4:Arity}, ${5:MS}, ${6:InitFunc}, ${7:CallFunc}, ${8:ReturnFunc}, ${9:RemoveFunc}) $10' -p78747 -tp78748 -a(S'unsubscribe/0' -p78749 -S'unsubscribe() $1' -p78750 -tp78751 -a(S'unsubscribe/1' -p78752 -S'unsubscribe(${1:Pid}) $2' -p78753 -tp78754 -asS'CosEventChannelAdmin_ProxyPullSupplier' -p78755 -(lp78756 -(S'code_change/3' -p78757 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p78758 -tp78759 -a(S'connect_pull_consumer/2' -p78760 -S'connect_pull_consumer(${1:OE_THIS}, ${2:Pull_consumer}) $3' -p78761 -tp78762 -a(S'connect_pull_consumer/3' -p78763 -S'connect_pull_consumer(${1:OE_THIS}, ${2:OE_Options}, ${3:Pull_consumer}) $4' -p78764 -tp78765 -a(S'disconnect_pull_supplier/1' -p78766 -S'disconnect_pull_supplier(${1:OE_THIS}) $2' -p78767 -tp78768 -a(S'disconnect_pull_supplier/2' -p78769 -S'disconnect_pull_supplier(${1:OE_THIS}, ${2:OE_Options}) $3' -p78770 -tp78771 -a(S'handle_call/3' -p78772 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p78773 -tp78774 -a(S'handle_cast/2' -p78775 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p78776 -tp78777 -a(S'handle_info/2' -p78778 -S'handle_info(${1:Param1}, ${2:State}) $3' -p78779 -tp78780 -a(S'init/1' -p78781 -S'init(${1:Env}) $2' -p78782 -tp78783 -a(S'oe_create/0' -p78784 -S'oe_create() $1' -p78785 -tp78786 -a(S'oe_create/1' -p78787 -S'oe_create(${1:Env}) $2' -p78788 -tp78789 -a(S'oe_create/2' -p78790 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p78791 -tp78792 -a(S'oe_create_link/0' -p78793 -S'oe_create_link() $1' -p78794 -tp78795 -a(S'oe_create_link/1' -p78796 -S'oe_create_link(${1:Env}) $2' -p78797 -tp78798 -a(S'oe_create_link/2' -p78799 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p78800 -tp78801 -a(S'oe_get_interface/0' -p78802 -S'oe_get_interface() $1' -p78803 -tp78804 -a(S'oe_is_a/1' -p78805 -S'oe_is_a(${1:Param1}) $2' -p78806 -tp78807 -a(S'oe_tc/1' -p78808 -S'oe_tc(${1:Param1}) $2' -p78809 -tp78810 -a(S'pull/1' -p78811 -S'pull(${1:OE_THIS}) $2' -p78812 -tp78813 -a(S'pull/2' -p78814 -S'pull(${1:OE_THIS}, ${2:OE_Options}) $3' -p78815 -tp78816 -a(S'terminate/2' -p78817 -S'terminate(${1:Reason}, ${2:State}) $3' -p78818 -tp78819 -a(S'try_pull/1' -p78820 -S'try_pull(${1:OE_THIS}) $2' -p78821 -tp78822 -a(S'try_pull/2' -p78823 -S'try_pull(${1:OE_THIS}, ${2:OE_Options}) $3' -p78824 -tp78825 -a(S'typeID/0' -p78826 -S'typeID() $1' -p78827 -tp78828 -asS'dbg_wx_src_view' -p78829 -(lp78830 -(S'code_area/2' -p78831 -S'code_area(${1:Parent}, ${2:Sizer}) $3' -p78832 -tp78833 -asS'cerl_inline' -p78834 -(lp78835 -(S'core_transform/2' -p78836 -S'core_transform(${1:Code}, ${2:Opts}) $3' -p78837 -tp78838 -a(S'transform/1' -p78839 -S'transform(${1:Tree}) $2' -p78840 -tp78841 -a(S'transform/2' -p78842 -S'transform(${1:Code}, ${2:Opts}) $3' -p78843 -tp78844 -asS'http_uri' -p78845 -(lp78846 -(S'decode/1' -p78847 -S'decode(${1:String}) $2' -p78848 -tp78849 -a(S'encode/1' -p78850 -S'encode(${1:URI}) $2' -p78851 -tp78852 -a(S'parse/1' -p78853 -S'parse(${1:AbsURI}) $2' -p78854 -tp78855 -a(S'parse/2' -p78856 -S'parse(${1:AbsURI}, ${2:Opts}) $3' -p78857 -tp78858 -a(S'scheme_defaults/0' -p78859 -S'scheme_defaults() $1' -p78860 -tp78861 -asS'edoc_doclet' -p78862 -(lp78863 -(S'run/2' -p78864 -S'run(${1:Cmd}, ${2:Ctxt}) $3' -p78865 -tp78866 -asS'CosNotifyChannelAdmin_AdminNotFound' -p78867 -(lp78868 -(S'id/0' -p78869 -S'id() $1' -p78870 -tp78871 -a(S'name/0' -p78872 -S'name() $1' -p78873 -tp78874 -a(S'tc/0' -p78875 -S'tc() $1' -p78876 -tp78877 -asS'mnesia_checkpoint_sup' -p78878 -(lp78879 -(S'init/1' -p78880 -S'init(${1:Param1}) $2' -p78881 -tp78882 -a(S'start/0' -p78883 -S'start() $1' -p78884 -tp78885 -asS'calc2' -p78886 -(lp78887 -(S'calc/0' -p78888 -S'calc() $1' -p78889 -tp78890 -a(S'start/0' -p78891 -S'start() $1' -p78892 -tp78893 -asS'gstk_entry' -p78894 -(lp78895 -(S'config/3' -p78896 -S'config(${1:DB}, ${2:Gstkid}, ${3:Opts}) $4' -p78897 -tp78898 -a(S'create/3' -p78899 -S'create(${1:DB}, ${2:GstkId}, ${3:Opts}) $4' -p78900 -tp78901 -a(S'delete/2' -p78902 -S'delete(${1:DB}, ${2:Gstkid}) $3' -p78903 -tp78904 -a(S'event/5' -p78905 -S'event(${1:DB}, ${2:Gstkid}, ${3:Etype}, ${4:Edata}, ${5:Args}) $6' -p78906 -tp78907 -a(S'option/5' -p78908 -S'option(${1:Option}, ${2:Gstkid}, ${3:TkW}, ${4:DB}, ${5:Param5}) $6' -p78909 -tp78910 -a(S'read/3' -p78911 -S'read(${1:DB}, ${2:Gstkid}, ${3:Opt}) $4' -p78912 -tp78913 -a(S'read_option/5' -p78914 -S'read_option(${1:Option}, ${2:Gstkid}, ${3:TkW}, ${4:DB}, ${5:Param5}) $6' -p78915 -tp78916 -asS'megaco_ber_bin_encoder' -p78917 -(lp78918 -(S'decode_message/2' -p78919 -S'decode_message(${1:EC}, ${2:Binary}) $3' -p78920 -tp78921 -a(S'decode_message/3' -p78922 -S'decode_message(${1:EC}, ${2:Param2}, ${3:Binary}) $4' -p78923 -tp78924 -a(S'decode_mini_message/3' -p78925 -S'decode_mini_message(${1:EC}, ${2:Param2}, ${3:Bin}) $4' -p78926 -tp78927 -a(S'encode_action_reply/3' -p78928 -S'encode_action_reply(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p78929 -tp78930 -a(S'encode_action_request/3' -p78931 -S'encode_action_request(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p78932 -tp78933 -a(S'encode_action_requests/3' -p78934 -S'encode_action_requests(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p78935 -tp78936 -a(S'encode_message/2' -p78937 -S'encode_message() $1' -p78938 -tp78939 -a(S'encode_message/3' -p78940 -S'encode_message(${1:EC}, ${2:Param2}, ${3:MegaMsg}) $4' -p78941 -tp78942 -a(S'encode_transaction/3' -p78943 -S'encode_transaction(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p78944 -tp78945 -a(S'version_of/2' -p78946 -S'version_of(${1:EC}, ${2:Binary}) $3' -p78947 -tp78948 -asS'orber_iiop_net_accept' -p78949 -(lp78950 -(S'net_accept/5' -p78951 -S'net_accept(${1:Type}, ${2:ListenFd}, ${3:Parent}, ${4:Ref}, ${5:ProxyOptions}) $6' -p78952 -tp78953 -a(S'start/4' -p78954 -S'start(${1:Type}, ${2:Listen}, ${3:Ref}, ${4:ProxyOptions}) $5' -p78955 -tp78956 -asS'color_demo' -p78957 -(lp78958 -(S'init/0' -p78959 -S'init() $1' -p78960 -tp78961 -a(S'start/0' -p78962 -S'start() $1' -p78963 -tp78964 -asS'ssh_sftpd' -p78965 -(lp78966 -(S'code_change/3' -p78967 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p78968 -tp78969 -a(S'handle_msg/2' -p78970 -S'handle_msg() $1' -p78971 -tp78972 -a(S'handle_ssh_msg/2' -p78973 -S'handle_ssh_msg(${1:Param1}, ${2:State}) $3' -p78974 -tp78975 -a(S'init/1' -p78976 -S'init(${1:Options}) $2' -p78977 -tp78978 -a(S'listen/1' -p78979 -S'listen(${1:Port}) $2' -p78980 -tp78981 -a(S'listen/2' -p78982 -S'listen(${1:Port}, ${2:Options}) $3' -p78983 -tp78984 -a(S'listen/3' -p78985 -S'listen(${1:Addr}, ${2:Port}, ${3:Options}) $4' -p78986 -tp78987 -a(S'stop/1' -p78988 -S'stop(${1:Pid}) $2' -p78989 -tp78990 -a(S'subsystem_spec/1' -p78991 -S'subsystem_spec(${1:Options}) $2' -p78992 -tp78993 -a(S'terminate/2' -p78994 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p78995 -tp78996 -asS'megaco_binary_transformer_prev3a' -p78997 -(lp78998 -(S'tr_message/3' -p78999 -S'tr_message(${1:MegaMsg}, ${2:Mode}, ${3:Config}) $4' -p79000 -tp79001 -a(S'tr_transaction/3' -p79002 -S'tr_transaction(${1:Trans}, ${2:Mode}, ${3:Config}) $4' -p79003 -tp79004 -asS'gstk_text' -p79005 -(lp79006 -(S'config/3' -p79007 -S'config(${1:DB}, ${2:Gstkid}, ${3:Opts}) $4' -p79008 -tp79009 -a(S'create/3' -p79010 -S'create(${1:DB}, ${2:Gstkid}, ${3:Opts}) $4' -p79011 -tp79012 -a(S'delete/2' -p79013 -S'delete(${1:DB}, ${2:Gstkid}) $3' -p79014 -tp79015 -a(S'destroy/3' -p79016 -S'destroy(${1:Param1}, ${2:Canvas}, ${3:Item}) $4' -p79017 -tp79018 -a(S'event/5' -p79019 -S'event(${1:DB}, ${2:Gstkid}, ${3:Etype}, ${4:Edata}, ${5:Args}) $6' -p79020 -tp79021 -a(S'option/5' -p79022 -S'option(${1:Option}, ${2:Gstkid}, ${3:Canvas}, ${4:DB}, ${5:AItem}) $6' -p79023 -tp79024 -a(S'read/3' -p79025 -S'read(${1:DB}, ${2:Gstkid}, ${3:Opt}) $4' -p79026 -tp79027 -a(S'read_option/5' -p79028 -S'read_option(${1:Option}, ${2:Gstkid}, ${3:Canvas}, ${4:DB}, ${5:AItem}) $6' -p79029 -tp79030 -asS'wxStdDialogButtonSizer' -p79031 -(lp79032 -(S'add/2' -p79033 -S'add(${1:This}, ${2:Window}) $3' -p79034 -tp79035 -a(S'add/3' -p79036 -S'add(${1:This}, ${2:Width}, ${3:Height}) $4' -p79037 -tp79038 -a(S'add/4' -p79039 -S'add(${1:This}, ${2:Width}, ${3:Height}, ${4:Options}) $5' -p79040 -tp79041 -a(S'addButton/2' -p79042 -S'addButton(${1:This}, ${2:Button}) $3' -p79043 -tp79044 -a(S'addSpacer/2' -p79045 -S'addSpacer(${1:This}, ${2:Size}) $3' -p79046 -tp79047 -a(S'addStretchSpacer/1' -p79048 -S'addStretchSpacer(${1:This}) $2' -p79049 -tp79050 -a(S'addStretchSpacer/2' -p79051 -S'addStretchSpacer(${1:This}, ${2:Options}) $3' -p79052 -tp79053 -a(S'calcMin/1' -p79054 -S'calcMin(${1:This}) $2' -p79055 -tp79056 -a(S'clear/1' -p79057 -S'clear(${1:This}) $2' -p79058 -tp79059 -a(S'clear/2' -p79060 -S'clear(${1:This}, ${2:Options}) $3' -p79061 -tp79062 -a(S'destroy/1' -p79063 -S'destroy(${1:This}) $2' -p79064 -tp79065 -a(S'detach/2' -p79066 -S'detach(${1:This}, ${2:Index}) $3' -p79067 -tp79068 -a(S'fit/2' -p79069 -S'fit(${1:This}, ${2:Window}) $3' -p79070 -tp79071 -a(S'fitInside/2' -p79072 -S'fitInside(${1:This}, ${2:Window}) $3' -p79073 -tp79074 -a(S'getChildren/1' -p79075 -S'getChildren(${1:This}) $2' -p79076 -tp79077 -a(S'getItem/2' -p79078 -S'getItem(${1:This}, ${2:Window}) $3' -p79079 -tp79080 -a(S'getItem/3' -p79081 -S'getItem(${1:This}, ${2:Window}, ${3:Options}) $4' -p79082 -tp79083 -a(S'getMinSize/1' -p79084 -S'getMinSize(${1:This}) $2' -p79085 -tp79086 -a(S'getOrientation/1' -p79087 -S'getOrientation(${1:This}) $2' -p79088 -tp79089 -a(S'getPosition/1' -p79090 -S'getPosition(${1:This}) $2' -p79091 -tp79092 -a(S'getSize/1' -p79093 -S'getSize(${1:This}) $2' -p79094 -tp79095 -a(S'hide/2' -p79096 -S'hide(${1:This}, ${2:Window}) $3' -p79097 -tp79098 -a(S'hide/3' -p79099 -S'hide(${1:This}, ${2:Window}, ${3:Options}) $4' -p79100 -tp79101 -a(S'insert/3' -p79102 -S'insert(${1:This}, ${2:Index}, ${3:Item}) $4' -p79103 -tp79104 -a(S'insert/4' -p79105 -S'insert(${1:This}, ${2:Index}, ${3:Width}, ${4:Height}) $5' -p79106 -tp79107 -a(S'insert/5' -p79108 -S'insert(${1:This}, ${2:Index}, ${3:Width}, ${4:Height}, ${5:Options}) $6' -p79109 -tp79110 -a(S'insertSpacer/3' -p79111 -S'insertSpacer(${1:This}, ${2:Index}, ${3:Size}) $4' -p79112 -tp79113 -a(S'insertStretchSpacer/2' -p79114 -S'insertStretchSpacer(${1:This}, ${2:Index}) $3' -p79115 -tp79116 -a(S'insertStretchSpacer/3' -p79117 -S'insertStretchSpacer(${1:This}, ${2:Index}, ${3:Options}) $4' -p79118 -tp79119 -a(S'isShown/2' -p79120 -S'isShown(${1:This}, ${2:Index}) $3' -p79121 -tp79122 -a(S'layout/1' -p79123 -S'layout(${1:This}) $2' -p79124 -tp79125 -a(S'new/0' -p79126 -S'new() $1' -p79127 -tp79128 -a(S'parent_class/1' -p79129 -S'parent_class(${1:Param1}) $2' -p79130 -tp79131 -a(S'prepend/2' -p79132 -S'prepend(${1:This}, ${2:Item}) $3' -p79133 -tp79134 -a(S'prepend/3' -p79135 -S'prepend(${1:This}, ${2:Width}, ${3:Height}) $4' -p79136 -tp79137 -a(S'prepend/4' -p79138 -S'prepend(${1:This}, ${2:Width}, ${3:Height}, ${4:Options}) $5' -p79139 -tp79140 -a(S'prependSpacer/2' -p79141 -S'prependSpacer(${1:This}, ${2:Size}) $3' -p79142 -tp79143 -a(S'prependStretchSpacer/1' -p79144 -S'prependStretchSpacer(${1:This}) $2' -p79145 -tp79146 -a(S'prependStretchSpacer/2' -p79147 -S'prependStretchSpacer(${1:This}, ${2:Options}) $3' -p79148 -tp79149 -a(S'realize/1' -p79150 -S'realize(${1:This}) $2' -p79151 -tp79152 -a(S'recalcSizes/1' -p79153 -S'recalcSizes(${1:This}) $2' -p79154 -tp79155 -a(S'remove/2' -p79156 -S'remove(${1:This}, ${2:Index}) $3' -p79157 -tp79158 -a(S'replace/3' -p79159 -S'replace(${1:This}, ${2:Oldwin}, ${3:Newwin}) $4' -p79160 -tp79161 -a(S'replace/4' -p79162 -S'replace(${1:This}, ${2:Oldwin}, ${3:Newwin}, ${4:Options}) $5' -p79163 -tp79164 -a(S'setAffirmativeButton/2' -p79165 -S'setAffirmativeButton(${1:This}, ${2:Button}) $3' -p79166 -tp79167 -a(S'setCancelButton/2' -p79168 -S'setCancelButton(${1:This}, ${2:Button}) $3' -p79169 -tp79170 -a(S'setDimension/5' -p79171 -S'setDimension(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p79172 -tp79173 -a(S'setItemMinSize/3' -p79174 -S'setItemMinSize(${1:This}, ${2:Index}, ${3:Size}) $4' -p79175 -tp79176 -a(S'setItemMinSize/4' -p79177 -S'setItemMinSize(${1:This}, ${2:Index}, ${3:Width}, ${4:Height}) $5' -p79178 -tp79179 -a(S'setMinSize/2' -p79180 -S'setMinSize(${1:This}, ${2:Size}) $3' -p79181 -tp79182 -a(S'setMinSize/3' -p79183 -S'setMinSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p79184 -tp79185 -a(S'setNegativeButton/2' -p79186 -S'setNegativeButton(${1:This}, ${2:Button}) $3' -p79187 -tp79188 -a(S'setSizeHints/2' -p79189 -S'setSizeHints(${1:This}, ${2:Window}) $3' -p79190 -tp79191 -a(S'setVirtualSizeHints/2' -p79192 -S'setVirtualSizeHints(${1:This}, ${2:Window}) $3' -p79193 -tp79194 -a(S'show/2' -p79195 -S'show(${1:This}, ${2:Index}) $3' -p79196 -tp79197 -a(S'show/3' -p79198 -S'show(${1:This}, ${2:Index}, ${3:Options}) $4' -p79199 -tp79200 -asS'edoc_extract' -p79201 -(lp79202 -(S'file/4' -p79203 -S'file(${1:File}, ${2:Context}, ${3:Env}, ${4:Opts}) $5' -p79204 -tp79205 -a(S'header/3' -p79206 -S'header(${1:File}, ${2:Env}, ${3:Opts}) $4' -p79207 -tp79208 -a(S'header/4' -p79209 -S'header(${1:Forms}, ${2:File}, ${3:Env}, ${4:Opts}) $5' -p79210 -tp79211 -a(S'header/5' -p79212 -S'header(${1:Forms}, ${2:Comments}, ${3:File}, ${4:Env}, ${5:Opts}) $6' -p79213 -tp79214 -a(S'source/3' -p79215 -S'source(${1:File}, ${2:Env}, ${3:Opts}) $4' -p79216 -tp79217 -a(S'source/4' -p79218 -S'source(${1:Forms}, ${2:File}, ${3:Env}, ${4:Opts}) $5' -p79219 -tp79220 -a(S'source/5' -p79221 -S'source(${1:Forms}, ${2:Comments}, ${3:File}, ${4:Env}, ${5:Opts}) $6' -p79222 -tp79223 -a(S'text/4' -p79224 -S'text(${1:Text}, ${2:Context}, ${3:Env}, ${4:Opts}) $5' -p79225 -tp79226 -asS'et_collector' -p79227 -(lp79228 -(S'change_pattern/2' -p79229 -S'change_pattern(${1:CollectorPid}, ${2:RawPattern}) $3' -p79230 -tp79231 -a(S'clear_table/1' -p79232 -S'clear_table(${1:CollectorPid}) $2' -p79233 -tp79234 -a(S'code_change/3' -p79235 -S'code_change(${1:Param1}, ${2:S}, ${3:Param3}) $4' -p79236 -tp79237 -a(S'dict_delete/2' -p79238 -S'dict_delete(${1:CollectorPid}, ${2:Key}) $3' -p79239 -tp79240 -a(S'dict_insert/3' -p79241 -S'dict_insert(${1:CollectorPid}, ${2:Key}, ${3:Fun}) $4' -p79242 -tp79243 -a(S'dict_lookup/2' -p79244 -S'dict_lookup(${1:CollectorPid}, ${2:Key}) $3' -p79245 -tp79246 -a(S'dict_match/2' -p79247 -S'dict_match(${1:CollectorPid}, ${2:Pattern}) $3' -p79248 -tp79249 -a(S'get_global_pid/0' -p79250 -S'get_global_pid() $1' -p79251 -tp79252 -a(S'get_table_size/1' -p79253 -S'get_table_size(${1:CollectorPid}) $2' -p79254 -tp79255 -a(S'handle_call/3' -p79256 -S'handle_call(${1:Request}, ${2:From}, ${3:S}) $4' -p79257 -tp79258 -a(S'handle_cast/2' -p79259 -S'handle_cast(${1:Msg}, ${2:S}) $3' -p79260 -tp79261 -a(S'handle_info/2' -p79262 -S'handle_info(${1:Info}, ${2:S}) $3' -p79263 -tp79264 -a(S'init/1' -p79265 -S'init(${1:Param1}) $2' -p79266 -tp79267 -a(S'iterate/3' -p79268 -S'iterate(${1:Handle}, ${2:Prev}, ${3:Limit}) $4' -p79269 -tp79270 -a(S'iterate/5' -p79271 -S'iterate(${1:CollectorPid}, ${2:Prev}, ${3:Limit}, ${4:Fun}, ${5:Acc}) $6' -p79272 -tp79273 -a(S'lookup/2' -p79274 -S'lookup(${1:CollectorPid}, ${2:Key}) $3' -p79275 -tp79276 -a(S'make_key/2' -p79277 -S'make_key(${1:TH}, ${2:Stuff}) $3' -p79278 -tp79279 -a(S'monitor_trace_port/2' -p79280 -S'monitor_trace_port(${1:CollectorPid}, ${2:Parameters}) $3' -p79281 -tp79282 -a(S'multicast/2' -p79283 -S'multicast(${1:CollectorPid}, ${2:Msg}) $3' -p79284 -tp79285 -a(S'report/2' -p79286 -S'report(${1:CollectorPid}, ${2:TraceOrEvent}) $3' -p79287 -tp79288 -a(S'report_event/5' -p79289 -S'report_event(${1:CollectorPid}, ${2:DetailLevel}, ${3:FromTo}, ${4:Label}, ${5:Contents}) $6' -p79290 -tp79291 -a(S'report_event/6' -p79292 -S'report_event() $1' -p79293 -tp79294 -a(S'save_event_file/3' -p79295 -S'save_event_file(${1:CollectorPid}, ${2:FileName}, ${3:Options}) $4' -p79296 -tp79297 -a(S'start_link/1' -p79298 -S'start_link(${1:Options}) $2' -p79299 -tp79300 -a(S'start_trace_client/3' -p79301 -S'start_trace_client(${1:CollectorPid}, ${2:Type}, ${3:Parameters}) $4' -p79302 -tp79303 -a(S'start_trace_port/1' -p79304 -S'start_trace_port(${1:Parameters}) $2' -p79305 -tp79306 -a(S'stop/1' -p79307 -S'stop(${1:CollectorPid}) $2' -p79308 -tp79309 -a(S'terminate/2' -p79310 -S'terminate(${1:Reason}, ${2:S}) $3' -p79311 -tp79312 -asS'toolbar_graphics' -p79313 -(lp79314 -(S'add_icon/2' -p79315 -S'add_icon(${1:Window}, ${2:ToolInfo}) $3' -p79316 -tp79317 -a(S'already_added/2' -p79318 -S'already_added(${1:Window}, ${2:ToolInfo}) $3' -p79319 -tp79320 -a(S'cursor/2' -p79321 -S'cursor(${1:Window}, ${2:Cursor}) $3' -p79322 -tp79323 -a(S'display_clear/1' -p79324 -S'display_clear(${1:Window}) $2' -p79325 -tp79326 -a(S'display_show/2' -p79327 -S'display_show(${1:Window}, ${2:Text}) $3' -p79328 -tp79329 -a(S'draw_window/1' -p79330 -S'draw_window(${1:S}) $2' -p79331 -tp79332 -a(S'event/4' -p79333 -S'event(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p79334 -tp79335 -a(S'get_window/1' -p79336 -S'get_window(${1:Window}) $2' -p79337 -tp79338 -a(S'listen_configure/1' -p79339 -S'listen_configure(${1:Window}) $2' -p79340 -tp79341 -a(S'redraw_window/2' -p79342 -S'redraw_window(${1:Window}, ${2:Param2}) $3' -p79343 -tp79344 -asS'CosNotifyChannelAdmin_ProxyPullSupplier' -p79345 -(lp79346 -(S"'_get_MyAdmin'/1" -p79347 -S"'_get_MyAdmin'(${1:OE_THIS}) $2" -p79348 -tp79349 -a(S"'_get_MyAdmin'/2" -p79350 -S"'_get_MyAdmin'(${1:OE_THIS}, ${2:OE_Options}) $3" -p79351 -tp79352 -a(S"'_get_MyType'/1" -p79353 -S"'_get_MyType'(${1:OE_THIS}) $2" -p79354 -tp79355 -a(S"'_get_MyType'/2" -p79356 -S"'_get_MyType'(${1:OE_THIS}, ${2:OE_Options}) $3" -p79357 -tp79358 -a(S"'_get_lifetime_filter'/1" -p79359 -S"'_get_lifetime_filter'(${1:OE_THIS}) $2" -p79360 -tp79361 -a(S"'_get_lifetime_filter'/2" -p79362 -S"'_get_lifetime_filter'(${1:OE_THIS}, ${2:OE_Options}) $3" -p79363 -tp79364 -a(S"'_get_priority_filter'/1" -p79365 -S"'_get_priority_filter'(${1:OE_THIS}) $2" -p79366 -tp79367 -a(S"'_get_priority_filter'/2" -p79368 -S"'_get_priority_filter'(${1:OE_THIS}, ${2:OE_Options}) $3" -p79369 -tp79370 -a(S"'_set_lifetime_filter'/2" -p79371 -S"'_set_lifetime_filter'(${1:OE_THIS}, ${2:OE_Value}) $3" -p79372 -tp79373 -a(S"'_set_lifetime_filter'/3" -p79374 -S"'_set_lifetime_filter'(${1:OE_THIS}, ${2:OE_Options}, ${3:OE_Value}) $4" -p79375 -tp79376 -a(S"'_set_priority_filter'/2" -p79377 -S"'_set_priority_filter'(${1:OE_THIS}, ${2:OE_Value}) $3" -p79378 -tp79379 -a(S"'_set_priority_filter'/3" -p79380 -S"'_set_priority_filter'(${1:OE_THIS}, ${2:OE_Options}, ${3:OE_Value}) $4" -p79381 -tp79382 -a(S'add_filter/2' -p79383 -S'add_filter(${1:OE_THIS}, ${2:New_filter}) $3' -p79384 -tp79385 -a(S'add_filter/3' -p79386 -S'add_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:New_filter}) $4' -p79387 -tp79388 -a(S'callAny/3' -p79389 -S'callAny(${1:OE_THIS}, ${2:Event}, ${3:Stat}) $4' -p79390 -tp79391 -a(S'callAny/4' -p79392 -S'callAny(${1:OE_THIS}, ${2:OE_Options}, ${3:Event}, ${4:Stat}) $5' -p79393 -tp79394 -a(S'callSeq/3' -p79395 -S'callSeq(${1:OE_THIS}, ${2:Events}, ${3:Stat}) $4' -p79396 -tp79397 -a(S'callSeq/4' -p79398 -S'callSeq(${1:OE_THIS}, ${2:OE_Options}, ${3:Events}, ${4:Stat}) $5' -p79399 -tp79400 -a(S'code_change/3' -p79401 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p79402 -tp79403 -a(S'connect_any_pull_consumer/2' -p79404 -S'connect_any_pull_consumer(${1:OE_THIS}, ${2:Pull_consumer}) $3' -p79405 -tp79406 -a(S'connect_any_pull_consumer/3' -p79407 -S'connect_any_pull_consumer(${1:OE_THIS}, ${2:OE_Options}, ${3:Pull_consumer}) $4' -p79408 -tp79409 -a(S'connect_pull_consumer/2' -p79410 -S'connect_pull_consumer(${1:OE_THIS}, ${2:Pull_consumer}) $3' -p79411 -tp79412 -a(S'connect_pull_consumer/3' -p79413 -S'connect_pull_consumer(${1:OE_THIS}, ${2:OE_Options}, ${3:Pull_consumer}) $4' -p79414 -tp79415 -a(S'disconnect_pull_supplier/1' -p79416 -S'disconnect_pull_supplier(${1:OE_THIS}) $2' -p79417 -tp79418 -a(S'disconnect_pull_supplier/2' -p79419 -S'disconnect_pull_supplier(${1:OE_THIS}, ${2:OE_Options}) $3' -p79420 -tp79421 -a(S'get_all_filters/1' -p79422 -S'get_all_filters(${1:OE_THIS}) $2' -p79423 -tp79424 -a(S'get_all_filters/2' -p79425 -S'get_all_filters(${1:OE_THIS}, ${2:OE_Options}) $3' -p79426 -tp79427 -a(S'get_filter/2' -p79428 -S'get_filter(${1:OE_THIS}, ${2:Filter}) $3' -p79429 -tp79430 -a(S'get_filter/3' -p79431 -S'get_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:Filter}) $4' -p79432 -tp79433 -a(S'get_qos/1' -p79434 -S'get_qos(${1:OE_THIS}) $2' -p79435 -tp79436 -a(S'get_qos/2' -p79437 -S'get_qos(${1:OE_THIS}, ${2:OE_Options}) $3' -p79438 -tp79439 -a(S'handle_call/3' -p79440 -S'handle_call(${1:Param1}, ${2:OE_From}, ${3:OE_State}) $4' -p79441 -tp79442 -a(S'handle_cast/2' -p79443 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p79444 -tp79445 -a(S'handle_info/2' -p79446 -S'handle_info(${1:Info}, ${2:State}) $3' -p79447 -tp79448 -a(S'init/1' -p79449 -S'init(${1:Env}) $2' -p79450 -tp79451 -a(S'obtain_offered_types/2' -p79452 -S'obtain_offered_types(${1:OE_THIS}, ${2:Mode}) $3' -p79453 -tp79454 -a(S'obtain_offered_types/3' -p79455 -S'obtain_offered_types(${1:OE_THIS}, ${2:OE_Options}, ${3:Mode}) $4' -p79456 -tp79457 -a(S'oe_create/0' -p79458 -S'oe_create() $1' -p79459 -tp79460 -a(S'oe_create/1' -p79461 -S'oe_create(${1:Env}) $2' -p79462 -tp79463 -a(S'oe_create/2' -p79464 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p79465 -tp79466 -a(S'oe_create_link/0' -p79467 -S'oe_create_link() $1' -p79468 -tp79469 -a(S'oe_create_link/1' -p79470 -S'oe_create_link(${1:Env}) $2' -p79471 -tp79472 -a(S'oe_create_link/2' -p79473 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p79474 -tp79475 -a(S'oe_get_interface/0' -p79476 -S'oe_get_interface() $1' -p79477 -tp79478 -a(S'oe_is_a/1' -p79479 -S'oe_is_a(${1:Param1}) $2' -p79480 -tp79481 -a(S'oe_tc/1' -p79482 -S'oe_tc(${1:Param1}) $2' -p79483 -tp79484 -a(S'pull/1' -p79485 -S'pull(${1:OE_THIS}) $2' -p79486 -tp79487 -a(S'pull/2' -p79488 -S'pull(${1:OE_THIS}, ${2:OE_Options}) $3' -p79489 -tp79490 -a(S'remove_all_filters/1' -p79491 -S'remove_all_filters(${1:OE_THIS}) $2' -p79492 -tp79493 -a(S'remove_all_filters/2' -p79494 -S'remove_all_filters(${1:OE_THIS}, ${2:OE_Options}) $3' -p79495 -tp79496 -a(S'remove_filter/2' -p79497 -S'remove_filter(${1:OE_THIS}, ${2:Filter}) $3' -p79498 -tp79499 -a(S'remove_filter/3' -p79500 -S'remove_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:Filter}) $4' -p79501 -tp79502 -a(S'set_qos/2' -p79503 -S'set_qos(${1:OE_THIS}, ${2:Qos}) $3' -p79504 -tp79505 -a(S'set_qos/3' -p79506 -S'set_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Qos}) $4' -p79507 -tp79508 -a(S'subscription_change/3' -p79509 -S'subscription_change(${1:OE_THIS}, ${2:Added}, ${3:Removed}) $4' -p79510 -tp79511 -a(S'subscription_change/4' -p79512 -S'subscription_change(${1:OE_THIS}, ${2:OE_Options}, ${3:Added}, ${4:Removed}) $5' -p79513 -tp79514 -a(S'terminate/2' -p79515 -S'terminate(${1:Reason}, ${2:State}) $3' -p79516 -tp79517 -a(S'try_pull/1' -p79518 -S'try_pull(${1:OE_THIS}) $2' -p79519 -tp79520 -a(S'try_pull/2' -p79521 -S'try_pull(${1:OE_THIS}, ${2:OE_Options}) $3' -p79522 -tp79523 -a(S'typeID/0' -p79524 -S'typeID() $1' -p79525 -tp79526 -a(S'validate_event_qos/2' -p79527 -S'validate_event_qos(${1:OE_THIS}, ${2:Required_qos}) $3' -p79528 -tp79529 -a(S'validate_event_qos/3' -p79530 -S'validate_event_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Required_qos}) $4' -p79531 -tp79532 -a(S'validate_qos/2' -p79533 -S'validate_qos(${1:OE_THIS}, ${2:Required_qos}) $3' -p79534 -tp79535 -a(S'validate_qos/3' -p79536 -S'validate_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Required_qos}) $4' -p79537 -tp79538 -asS'wxAuiManager' -p79539 -(lp79540 -(S'addPane/2' -p79541 -S'addPane(${1:This}, ${2:Window}) $3' -p79542 -tp79543 -a(S'addPane/3' -p79544 -S'addPane(${1:This}, ${2:Window}, ${3:Param3}) $4' -p79545 -tp79546 -a(S'addPane/4' -p79547 -S'addPane(${1:This}, ${2:Window}, ${3:Pane_info}, ${4:Drop_pos}) $5' -p79548 -tp79549 -a(S'connect/2' -p79550 -S'connect(${1:This}, ${2:EventType}) $3' -p79551 -tp79552 -a(S'connect/3' -p79553 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p79554 -tp79555 -a(S'destroy/1' -p79556 -S'destroy(${1:This}) $2' -p79557 -tp79558 -a(S'detachPane/2' -p79559 -S'detachPane(${1:This}, ${2:Window}) $3' -p79560 -tp79561 -a(S'disconnect/1' -p79562 -S'disconnect(${1:This}) $2' -p79563 -tp79564 -a(S'disconnect/2' -p79565 -S'disconnect(${1:This}, ${2:EventType}) $3' -p79566 -tp79567 -a(S'disconnect/3' -p79568 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p79569 -tp79570 -a(S'getAllPanes/1' -p79571 -S'getAllPanes(${1:This}) $2' -p79572 -tp79573 -a(S'getArtProvider/1' -p79574 -S'getArtProvider(${1:This}) $2' -p79575 -tp79576 -a(S'getDockSizeConstraint/1' -p79577 -S'getDockSizeConstraint(${1:This}) $2' -p79578 -tp79579 -a(S'getFlags/1' -p79580 -S'getFlags(${1:This}) $2' -p79581 -tp79582 -a(S'getManagedWindow/1' -p79583 -S'getManagedWindow(${1:This}) $2' -p79584 -tp79585 -a(S'getManager/1' -p79586 -S'getManager(${1:Window}) $2' -p79587 -tp79588 -a(S'getPane/2' -p79589 -S'getPane(${1:This}, ${2:Name}) $3' -p79590 -tp79591 -a(S'hideHint/1' -p79592 -S'hideHint(${1:This}) $2' -p79593 -tp79594 -a(S'insertPane/3' -p79595 -S'insertPane(${1:This}, ${2:Window}, ${3:Insert_location}) $4' -p79596 -tp79597 -a(S'insertPane/4' -p79598 -S'insertPane(${1:This}, ${2:Window}, ${3:Insert_location}, ${4:Param4}) $5' -p79599 -tp79600 -a(S'loadPaneInfo/3' -p79601 -S'loadPaneInfo(${1:This}, ${2:Pane_part}, ${3:Pane}) $4' -p79602 -tp79603 -a(S'loadPerspective/2' -p79604 -S'loadPerspective(${1:This}, ${2:Perspective}) $3' -p79605 -tp79606 -a(S'loadPerspective/3' -p79607 -S'loadPerspective(${1:This}, ${2:Perspective}, ${3:Param3}) $4' -p79608 -tp79609 -a(S'new/0' -p79610 -S'new() $1' -p79611 -tp79612 -a(S'new/1' -p79613 -S'new(${1:Param1}) $2' -p79614 -tp79615 -a(S'parent_class/1' -p79616 -S'parent_class(${1:Param1}) $2' -p79617 -tp79618 -a(S'savePaneInfo/2' -p79619 -S'savePaneInfo(${1:This}, ${2:Pane}) $3' -p79620 -tp79621 -a(S'savePerspective/1' -p79622 -S'savePerspective(${1:This}) $2' -p79623 -tp79624 -a(S'setArtProvider/2' -p79625 -S'setArtProvider(${1:This}, ${2:Art_provider}) $3' -p79626 -tp79627 -a(S'setDockSizeConstraint/3' -p79628 -S'setDockSizeConstraint(${1:This}, ${2:Width_pct}, ${3:Height_pct}) $4' -p79629 -tp79630 -a(S'setFlags/2' -p79631 -S'setFlags(${1:This}, ${2:Flags}) $3' -p79632 -tp79633 -a(S'setManagedWindow/2' -p79634 -S'setManagedWindow(${1:This}, ${2:Managed_wnd}) $3' -p79635 -tp79636 -a(S'showHint/2' -p79637 -S'showHint(${1:This}, ${2:Rect}) $3' -p79638 -tp79639 -a(S'unInit/1' -p79640 -S'unInit(${1:This}) $2' -p79641 -tp79642 -a(S'update/1' -p79643 -S'update(${1:This}) $2' -p79644 -tp79645 -asS'wxMenuBar' -p79646 -(lp79647 -(S'append/3' -p79648 -S'append(${1:This}, ${2:Menu}, ${3:Title}) $4' -p79649 -tp79650 -a(S'cacheBestSize/2' -p79651 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p79652 -tp79653 -a(S'captureMouse/1' -p79654 -S'captureMouse(${1:This}) $2' -p79655 -tp79656 -a(S'center/1' -p79657 -S'center(${1:This}) $2' -p79658 -tp79659 -a(S'center/2' -p79660 -S'center(${1:This}, ${2:Options}) $3' -p79661 -tp79662 -a(S'centerOnParent/1' -p79663 -S'centerOnParent(${1:This}) $2' -p79664 -tp79665 -a(S'centerOnParent/2' -p79666 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p79667 -tp79668 -a(S'centre/1' -p79669 -S'centre(${1:This}) $2' -p79670 -tp79671 -a(S'centre/2' -p79672 -S'centre(${1:This}, ${2:Options}) $3' -p79673 -tp79674 -a(S'centreOnParent/1' -p79675 -S'centreOnParent(${1:This}) $2' -p79676 -tp79677 -a(S'centreOnParent/2' -p79678 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p79679 -tp79680 -a(S'check/3' -p79681 -S'check(${1:This}, ${2:Itemid}, ${3:Check}) $4' -p79682 -tp79683 -a(S'clearBackground/1' -p79684 -S'clearBackground(${1:This}) $2' -p79685 -tp79686 -a(S'clientToScreen/2' -p79687 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p79688 -tp79689 -a(S'clientToScreen/3' -p79690 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p79691 -tp79692 -a(S'close/1' -p79693 -S'close(${1:This}) $2' -p79694 -tp79695 -a(S'close/2' -p79696 -S'close(${1:This}, ${2:Options}) $3' -p79697 -tp79698 -a(S'connect/2' -p79699 -S'connect(${1:This}, ${2:EventType}) $3' -p79700 -tp79701 -a(S'connect/3' -p79702 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p79703 -tp79704 -a(S'convertDialogToPixels/2' -p79705 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p79706 -tp79707 -a(S'convertPixelsToDialog/2' -p79708 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p79709 -tp79710 -a(S'destroy/1' -p79711 -S'destroy(${1:This}) $2' -p79712 -tp79713 -a(S'destroyChildren/1' -p79714 -S'destroyChildren(${1:This}) $2' -p79715 -tp79716 -a(S'disable/1' -p79717 -S'disable(${1:This}) $2' -p79718 -tp79719 -a(S'disconnect/1' -p79720 -S'disconnect(${1:This}) $2' -p79721 -tp79722 -a(S'disconnect/2' -p79723 -S'disconnect(${1:This}, ${2:EventType}) $3' -p79724 -tp79725 -a(S'disconnect/3' -p79726 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p79727 -tp79728 -a(S'enable/1' -p79729 -S'enable(${1:This}) $2' -p79730 -tp79731 -a(S'enable/2' -p79732 -S'enable(${1:This}, ${2:Param2}) $3' -p79733 -tp79734 -a(S'enable/3' -p79735 -S'enable(${1:This}, ${2:Itemid}, ${3:Enable}) $4' -p79736 -tp79737 -a(S'enableTop/3' -p79738 -S'enableTop(${1:This}, ${2:Pos}, ${3:Flag}) $4' -p79739 -tp79740 -a(S'findItem/2' -p79741 -S'findItem(${1:This}, ${2:Id}) $3' -p79742 -tp79743 -a(S'findMenu/2' -p79744 -S'findMenu(${1:This}, ${2:Title}) $3' -p79745 -tp79746 -a(S'findMenuItem/3' -p79747 -S'findMenuItem(${1:This}, ${2:MenuString}, ${3:ItemString}) $4' -p79748 -tp79749 -a(S'findWindow/2' -p79750 -S'findWindow(${1:This}, ${2:Winid}) $3' -p79751 -tp79752 -a(S'fit/1' -p79753 -S'fit(${1:This}) $2' -p79754 -tp79755 -a(S'fitInside/1' -p79756 -S'fitInside(${1:This}) $2' -p79757 -tp79758 -a(S'freeze/1' -p79759 -S'freeze(${1:This}) $2' -p79760 -tp79761 -a(S'getAcceleratorTable/1' -p79762 -S'getAcceleratorTable(${1:This}) $2' -p79763 -tp79764 -a(S'getBackgroundColour/1' -p79765 -S'getBackgroundColour(${1:This}) $2' -p79766 -tp79767 -a(S'getBackgroundStyle/1' -p79768 -S'getBackgroundStyle(${1:This}) $2' -p79769 -tp79770 -a(S'getBestSize/1' -p79771 -S'getBestSize(${1:This}) $2' -p79772 -tp79773 -a(S'getCaret/1' -p79774 -S'getCaret(${1:This}) $2' -p79775 -tp79776 -a(S'getCharHeight/1' -p79777 -S'getCharHeight(${1:This}) $2' -p79778 -tp79779 -a(S'getCharWidth/1' -p79780 -S'getCharWidth(${1:This}) $2' -p79781 -tp79782 -a(S'getChildren/1' -p79783 -S'getChildren(${1:This}) $2' -p79784 -tp79785 -a(S'getClientSize/1' -p79786 -S'getClientSize(${1:This}) $2' -p79787 -tp79788 -a(S'getContainingSizer/1' -p79789 -S'getContainingSizer(${1:This}) $2' -p79790 -tp79791 -a(S'getCursor/1' -p79792 -S'getCursor(${1:This}) $2' -p79793 -tp79794 -a(S'getDropTarget/1' -p79795 -S'getDropTarget(${1:This}) $2' -p79796 -tp79797 -a(S'getEventHandler/1' -p79798 -S'getEventHandler(${1:This}) $2' -p79799 -tp79800 -a(S'getExtraStyle/1' -p79801 -S'getExtraStyle(${1:This}) $2' -p79802 -tp79803 -a(S'getFont/1' -p79804 -S'getFont(${1:This}) $2' -p79805 -tp79806 -a(S'getForegroundColour/1' -p79807 -S'getForegroundColour(${1:This}) $2' -p79808 -tp79809 -a(S'getGrandParent/1' -p79810 -S'getGrandParent(${1:This}) $2' -p79811 -tp79812 -a(S'getHandle/1' -p79813 -S'getHandle(${1:This}) $2' -p79814 -tp79815 -a(S'getHelpString/2' -p79816 -S'getHelpString(${1:This}, ${2:Itemid}) $3' -p79817 -tp79818 -a(S'getHelpText/1' -p79819 -S'getHelpText(${1:This}) $2' -p79820 -tp79821 -a(S'getId/1' -p79822 -S'getId(${1:This}) $2' -p79823 -tp79824 -a(S'getLabel/1' -p79825 -S'getLabel(${1:This}) $2' -p79826 -tp79827 -a(S'getLabel/2' -p79828 -S'getLabel(${1:This}, ${2:Itemid}) $3' -p79829 -tp79830 -a(S'getLabelTop/2' -p79831 -S'getLabelTop(${1:This}, ${2:Pos}) $3' -p79832 -tp79833 -a(S'getMaxSize/1' -p79834 -S'getMaxSize(${1:This}) $2' -p79835 -tp79836 -a(S'getMenu/2' -p79837 -S'getMenu(${1:This}, ${2:Pos}) $3' -p79838 -tp79839 -a(S'getMenuCount/1' -p79840 -S'getMenuCount(${1:This}) $2' -p79841 -tp79842 -a(S'getMinSize/1' -p79843 -S'getMinSize(${1:This}) $2' -p79844 -tp79845 -a(S'getName/1' -p79846 -S'getName(${1:This}) $2' -p79847 -tp79848 -a(S'getParent/1' -p79849 -S'getParent(${1:This}) $2' -p79850 -tp79851 -a(S'getPosition/1' -p79852 -S'getPosition(${1:This}) $2' -p79853 -tp79854 -a(S'getRect/1' -p79855 -S'getRect(${1:This}) $2' -p79856 -tp79857 -a(S'getScreenPosition/1' -p79858 -S'getScreenPosition(${1:This}) $2' -p79859 -tp79860 -a(S'getScreenRect/1' -p79861 -S'getScreenRect(${1:This}) $2' -p79862 -tp79863 -a(S'getScrollPos/2' -p79864 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p79865 -tp79866 -a(S'getScrollRange/2' -p79867 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p79868 -tp79869 -a(S'getScrollThumb/2' -p79870 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p79871 -tp79872 -a(S'getSize/1' -p79873 -S'getSize(${1:This}) $2' -p79874 -tp79875 -a(S'getSizer/1' -p79876 -S'getSizer(${1:This}) $2' -p79877 -tp79878 -a(S'getTextExtent/2' -p79879 -S'getTextExtent(${1:This}, ${2:String}) $3' -p79880 -tp79881 -a(S'getTextExtent/3' -p79882 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p79883 -tp79884 -a(S'getToolTip/1' -p79885 -S'getToolTip(${1:This}) $2' -p79886 -tp79887 -a(S'getUpdateRegion/1' -p79888 -S'getUpdateRegion(${1:This}) $2' -p79889 -tp79890 -a(S'getVirtualSize/1' -p79891 -S'getVirtualSize(${1:This}) $2' -p79892 -tp79893 -a(S'getWindowStyleFlag/1' -p79894 -S'getWindowStyleFlag(${1:This}) $2' -p79895 -tp79896 -a(S'getWindowVariant/1' -p79897 -S'getWindowVariant(${1:This}) $2' -p79898 -tp79899 -a(S'hasCapture/1' -p79900 -S'hasCapture(${1:This}) $2' -p79901 -tp79902 -a(S'hasScrollbar/2' -p79903 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p79904 -tp79905 -a(S'hasTransparentBackground/1' -p79906 -S'hasTransparentBackground(${1:This}) $2' -p79907 -tp79908 -a(S'hide/1' -p79909 -S'hide(${1:This}) $2' -p79910 -tp79911 -a(S'inheritAttributes/1' -p79912 -S'inheritAttributes(${1:This}) $2' -p79913 -tp79914 -a(S'initDialog/1' -p79915 -S'initDialog(${1:This}) $2' -p79916 -tp79917 -a(S'insert/4' -p79918 -S'insert(${1:This}, ${2:Pos}, ${3:Menu}, ${4:Title}) $5' -p79919 -tp79920 -a(S'invalidateBestSize/1' -p79921 -S'invalidateBestSize(${1:This}) $2' -p79922 -tp79923 -a(S'isChecked/2' -p79924 -S'isChecked(${1:This}, ${2:Itemid}) $3' -p79925 -tp79926 -a(S'isEnabled/1' -p79927 -S'isEnabled(${1:This}) $2' -p79928 -tp79929 -a(S'isEnabled/2' -p79930 -S'isEnabled(${1:This}, ${2:Itemid}) $3' -p79931 -tp79932 -a(S'isExposed/2' -p79933 -S'isExposed(${1:This}, ${2:Pt}) $3' -p79934 -tp79935 -a(S'isExposed/3' -p79936 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p79937 -tp79938 -a(S'isExposed/5' -p79939 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p79940 -tp79941 -a(S'isRetained/1' -p79942 -S'isRetained(${1:This}) $2' -p79943 -tp79944 -a(S'isShown/1' -p79945 -S'isShown(${1:This}) $2' -p79946 -tp79947 -a(S'isTopLevel/1' -p79948 -S'isTopLevel(${1:This}) $2' -p79949 -tp79950 -a(S'layout/1' -p79951 -S'layout(${1:This}) $2' -p79952 -tp79953 -a(S'lineDown/1' -p79954 -S'lineDown(${1:This}) $2' -p79955 -tp79956 -a(S'lineUp/1' -p79957 -S'lineUp(${1:This}) $2' -p79958 -tp79959 -a(S'lower/1' -p79960 -S'lower(${1:This}) $2' -p79961 -tp79962 -a(S'makeModal/1' -p79963 -S'makeModal(${1:This}) $2' -p79964 -tp79965 -a(S'makeModal/2' -p79966 -S'makeModal(${1:This}, ${2:Options}) $3' -p79967 -tp79968 -a(S'move/2' -p79969 -S'move(${1:This}, ${2:Pos}) $3' -p79970 -tp79971 -a(S'move/3' -p79972 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p79973 -tp79974 -a(S'move/4' -p79975 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p79976 -tp79977 -a(S'moveAfterInTabOrder/2' -p79978 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p79979 -tp79980 -a(S'moveBeforeInTabOrder/2' -p79981 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p79982 -tp79983 -a(S'navigate/1' -p79984 -S'navigate(${1:This}) $2' -p79985 -tp79986 -a(S'navigate/2' -p79987 -S'navigate(${1:This}, ${2:Options}) $3' -p79988 -tp79989 -a(S'new/0' -p79990 -S'new() $1' -p79991 -tp79992 -a(S'new/1' -p79993 -S'new(${1:Style}) $2' -p79994 -tp79995 -a(S'pageDown/1' -p79996 -S'pageDown(${1:This}) $2' -p79997 -tp79998 -a(S'pageUp/1' -p79999 -S'pageUp(${1:This}) $2' -p80000 -tp80001 -a(S'parent_class/1' -p80002 -S'parent_class(${1:Param1}) $2' -p80003 -tp80004 -a(S'popEventHandler/1' -p80005 -S'popEventHandler(${1:This}) $2' -p80006 -tp80007 -a(S'popEventHandler/2' -p80008 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p80009 -tp80010 -a(S'popupMenu/2' -p80011 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p80012 -tp80013 -a(S'popupMenu/3' -p80014 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p80015 -tp80016 -a(S'popupMenu/4' -p80017 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p80018 -tp80019 -a(S'raise/1' -p80020 -S'raise(${1:This}) $2' -p80021 -tp80022 -a(S'refresh/1' -p80023 -S'refresh(${1:This}) $2' -p80024 -tp80025 -a(S'refresh/2' -p80026 -S'refresh(${1:This}, ${2:Options}) $3' -p80027 -tp80028 -a(S'refreshRect/2' -p80029 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p80030 -tp80031 -a(S'refreshRect/3' -p80032 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p80033 -tp80034 -a(S'releaseMouse/1' -p80035 -S'releaseMouse(${1:This}) $2' -p80036 -tp80037 -a(S'remove/2' -p80038 -S'remove(${1:This}, ${2:Pos}) $3' -p80039 -tp80040 -a(S'removeChild/2' -p80041 -S'removeChild(${1:This}, ${2:Child}) $3' -p80042 -tp80043 -a(S'reparent/2' -p80044 -S'reparent(${1:This}, ${2:NewParent}) $3' -p80045 -tp80046 -a(S'replace/4' -p80047 -S'replace(${1:This}, ${2:Pos}, ${3:Menu}, ${4:Title}) $5' -p80048 -tp80049 -a(S'screenToClient/1' -p80050 -S'screenToClient(${1:This}) $2' -p80051 -tp80052 -a(S'screenToClient/2' -p80053 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p80054 -tp80055 -a(S'scrollLines/2' -p80056 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p80057 -tp80058 -a(S'scrollPages/2' -p80059 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p80060 -tp80061 -a(S'scrollWindow/3' -p80062 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p80063 -tp80064 -a(S'scrollWindow/4' -p80065 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p80066 -tp80067 -a(S'setAcceleratorTable/2' -p80068 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p80069 -tp80070 -a(S'setAutoLayout/2' -p80071 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p80072 -tp80073 -a(S'setBackgroundColour/2' -p80074 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p80075 -tp80076 -a(S'setBackgroundStyle/2' -p80077 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p80078 -tp80079 -a(S'setCaret/2' -p80080 -S'setCaret(${1:This}, ${2:Caret}) $3' -p80081 -tp80082 -a(S'setClientSize/2' -p80083 -S'setClientSize(${1:This}, ${2:Size}) $3' -p80084 -tp80085 -a(S'setClientSize/3' -p80086 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p80087 -tp80088 -a(S'setContainingSizer/2' -p80089 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p80090 -tp80091 -a(S'setCursor/2' -p80092 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p80093 -tp80094 -a(S'setDropTarget/2' -p80095 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p80096 -tp80097 -a(S'setExtraStyle/2' -p80098 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p80099 -tp80100 -a(S'setFocus/1' -p80101 -S'setFocus(${1:This}) $2' -p80102 -tp80103 -a(S'setFocusFromKbd/1' -p80104 -S'setFocusFromKbd(${1:This}) $2' -p80105 -tp80106 -a(S'setFont/2' -p80107 -S'setFont(${1:This}, ${2:Font}) $3' -p80108 -tp80109 -a(S'setForegroundColour/2' -p80110 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p80111 -tp80112 -a(S'setHelpString/3' -p80113 -S'setHelpString(${1:This}, ${2:Itemid}, ${3:HelpString}) $4' -p80114 -tp80115 -a(S'setHelpText/2' -p80116 -S'setHelpText(${1:This}, ${2:Text}) $3' -p80117 -tp80118 -a(S'setId/2' -p80119 -S'setId(${1:This}, ${2:Winid}) $3' -p80120 -tp80121 -a(S'setLabel/2' -p80122 -S'setLabel(${1:This}, ${2:S}) $3' -p80123 -tp80124 -a(S'setLabel/3' -p80125 -S'setLabel(${1:This}, ${2:Itemid}, ${3:Label}) $4' -p80126 -tp80127 -a(S'setLabelTop/3' -p80128 -S'setLabelTop(${1:This}, ${2:Pos}, ${3:Label}) $4' -p80129 -tp80130 -a(S'setMaxSize/2' -p80131 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p80132 -tp80133 -a(S'setMinSize/2' -p80134 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p80135 -tp80136 -a(S'setName/2' -p80137 -S'setName(${1:This}, ${2:Name}) $3' -p80138 -tp80139 -a(S'setOwnBackgroundColour/2' -p80140 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p80141 -tp80142 -a(S'setOwnFont/2' -p80143 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p80144 -tp80145 -a(S'setOwnForegroundColour/2' -p80146 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p80147 -tp80148 -a(S'setPalette/2' -p80149 -S'setPalette(${1:This}, ${2:Pal}) $3' -p80150 -tp80151 -a(S'setScrollPos/3' -p80152 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p80153 -tp80154 -a(S'setScrollPos/4' -p80155 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p80156 -tp80157 -a(S'setScrollbar/5' -p80158 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p80159 -tp80160 -a(S'setScrollbar/6' -p80161 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p80162 -tp80163 -a(S'setSize/2' -p80164 -S'setSize(${1:This}, ${2:Rect}) $3' -p80165 -tp80166 -a(S'setSize/3' -p80167 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p80168 -tp80169 -a(S'setSize/5' -p80170 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p80171 -tp80172 -a(S'setSize/6' -p80173 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p80174 -tp80175 -a(S'setSizeHints/2' -p80176 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p80177 -tp80178 -a(S'setSizeHints/3' -p80179 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p80180 -tp80181 -a(S'setSizeHints/4' -p80182 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p80183 -tp80184 -a(S'setSizer/2' -p80185 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p80186 -tp80187 -a(S'setSizer/3' -p80188 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p80189 -tp80190 -a(S'setSizerAndFit/2' -p80191 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p80192 -tp80193 -a(S'setSizerAndFit/3' -p80194 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p80195 -tp80196 -a(S'setThemeEnabled/2' -p80197 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p80198 -tp80199 -a(S'setToolTip/2' -p80200 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p80201 -tp80202 -a(S'setVirtualSize/2' -p80203 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p80204 -tp80205 -a(S'setVirtualSize/3' -p80206 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p80207 -tp80208 -a(S'setVirtualSizeHints/2' -p80209 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p80210 -tp80211 -a(S'setVirtualSizeHints/3' -p80212 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p80213 -tp80214 -a(S'setVirtualSizeHints/4' -p80215 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p80216 -tp80217 -a(S'setWindowStyle/2' -p80218 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p80219 -tp80220 -a(S'setWindowStyleFlag/2' -p80221 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p80222 -tp80223 -a(S'setWindowVariant/2' -p80224 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p80225 -tp80226 -a(S'shouldInheritColours/1' -p80227 -S'shouldInheritColours(${1:This}) $2' -p80228 -tp80229 -a(S'show/1' -p80230 -S'show(${1:This}) $2' -p80231 -tp80232 -a(S'show/2' -p80233 -S'show(${1:This}, ${2:Options}) $3' -p80234 -tp80235 -a(S'thaw/1' -p80236 -S'thaw(${1:This}) $2' -p80237 -tp80238 -a(S'transferDataFromWindow/1' -p80239 -S'transferDataFromWindow(${1:This}) $2' -p80240 -tp80241 -a(S'transferDataToWindow/1' -p80242 -S'transferDataToWindow(${1:This}) $2' -p80243 -tp80244 -a(S'update/1' -p80245 -S'update(${1:This}) $2' -p80246 -tp80247 -a(S'updateWindowUI/1' -p80248 -S'updateWindowUI(${1:This}) $2' -p80249 -tp80250 -a(S'updateWindowUI/2' -p80251 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p80252 -tp80253 -a(S'validate/1' -p80254 -S'validate(${1:This}) $2' -p80255 -tp80256 -a(S'warpPointer/3' -p80257 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p80258 -tp80259 -asS'httpd_manager' -p80260 -(lp80261 -(S'block/2' -p80262 -S'block(${1:ServerRef}, ${2:FromA}) $3' -p80263 -tp80264 -a(S'block/3' -p80265 -S'block(${1:ServerRef}, ${2:Method}, ${3:Timeout}) $4' -p80266 -tp80267 -a(S'c/1' -p80268 -S'c(${1:Port}) $2' -p80269 -tp80270 -a(S'code_change/3' -p80271 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p80272 -tp80273 -a(S'config_lookup/2' -p80274 -S'config_lookup(${1:Port}, ${2:Query}) $3' -p80275 -tp80276 -a(S'config_lookup/3' -p80277 -S'config_lookup(${1:Addr}, ${2:Port}, ${3:Query}) $4' -p80278 -tp80279 -a(S'config_match/2' -p80280 -S'config_match(${1:Port}, ${2:Pattern}) $3' -p80281 -tp80282 -a(S'config_match/3' -p80283 -S'config_match(${1:Addr}, ${2:Port}, ${3:Pattern}) $4' -p80284 -tp80285 -a(S'config_multi_lookup/2' -p80286 -S'config_multi_lookup(${1:Port}, ${2:Query}) $3' -p80287 -tp80288 -a(S'config_multi_lookup/3' -p80289 -S'config_multi_lookup(${1:Addr}, ${2:Port}, ${3:Query}) $4' -p80290 -tp80291 -a(S'done_connection/1' -p80292 -S'done_connection(${1:Manager}) $2' -p80293 -tp80294 -a(S'get_admin_state/1' -p80295 -S'get_admin_state(${1:ServerRef}) $2' -p80296 -tp80297 -a(S'get_status/1' -p80298 -S'get_status(${1:ServerRef}) $2' -p80299 -tp80300 -a(S'get_status/2' -p80301 -S'get_status(${1:ServerRef}, ${2:Timeout}) $3' -p80302 -tp80303 -a(S'get_usage_state/1' -p80304 -S'get_usage_state(${1:ServerRef}) $2' -p80305 -tp80306 -a(S'handle_call/3' -p80307 -S'handle_call(${1:Request}, ${2:From}, ${3:State}) $4' -p80308 -tp80309 -a(S'handle_cast/2' -p80310 -S'handle_cast(${1:Message}, ${2:State}) $3' -p80311 -tp80312 -a(S'handle_info/2' -p80313 -S'handle_info(${1:Info}, ${2:State}) $3' -p80314 -tp80315 -a(S'init/1' -p80316 -S'init(${1:Param1}) $2' -p80317 -tp80318 -a(S'is_blocked/1' -p80319 -S'is_blocked(${1:ServerRef}) $2' -p80320 -tp80321 -a(S'is_busy/1' -p80322 -S'is_busy(${1:ServerRef}) $2' -p80323 -tp80324 -a(S'is_busy/2' -p80325 -S'is_busy(${1:ServerRef}, ${2:Timeout}) $3' -p80326 -tp80327 -a(S'is_busy_or_blocked/1' -p80328 -S'is_busy_or_blocked(${1:ServerRef}) $2' -p80329 -tp80330 -a(S'new_connection/1' -p80331 -S'new_connection(${1:Manager}) $2' -p80332 -tp80333 -a(S'reload/2' -p80334 -S'reload(${1:ServerRef}, ${2:Conf}) $3' -p80335 -tp80336 -a(S'start/2' -p80337 -S'start(${1:ConfigFile}, ${2:ConfigList}) $3' -p80338 -tp80339 -a(S'start_link/2' -p80340 -S'start_link(${1:ConfigFile}, ${2:ConfigList}) $3' -p80341 -tp80342 -a(S'start_link/3' -p80343 -S'start_link(${1:ConfigFile}, ${2:ConfigList}, ${3:AcceptTimeout}) $4' -p80344 -tp80345 -a(S'start_link/4' -p80346 -S'start_link(${1:ConfigFile}, ${2:ConfigList}, ${3:AcceptTimeout}, ${4:ListenSocket}) $5' -p80347 -tp80348 -a(S'stop/1' -p80349 -S'stop(${1:ServerRef}) $2' -p80350 -tp80351 -a(S'terminate/2' -p80352 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p80353 -tp80354 -a(S'unblock/1' -p80355 -S'unblock(${1:ServerRef}) $2' -p80356 -tp80357 -asS'orber_ifr_exceptiondef' -p80358 -(lp80359 -(S"'_get_absolute_name'/1" -p80360 -S"'_get_absolute_name'() $1" -p80361 -tp80362 -a(S"'_get_containing_repository'/1" -p80363 -S"'_get_containing_repository'() $1" -p80364 -tp80365 -a(S"'_get_def_kind'/1" -p80366 -S"'_get_def_kind'() $1" -p80367 -tp80368 -a(S"'_get_defined_in'/1" -p80369 -S"'_get_defined_in'() $1" -p80370 -tp80371 -a(S"'_get_id'/1" -p80372 -S"'_get_id'() $1" -p80373 -tp80374 -a(S"'_get_members'/1" -p80375 -S"'_get_members'() $1" -p80376 -tp80377 -a(S"'_get_name'/1" -p80378 -S"'_get_name'() $1" -p80379 -tp80380 -a(S"'_get_type'/1" -p80381 -S"'_get_type'() $1" -p80382 -tp80383 -a(S"'_get_version'/1" -p80384 -S"'_get_version'() $1" -p80385 -tp80386 -a(S"'_set_id'/2" -p80387 -S"'_set_id'() $1" -p80388 -tp80389 -a(S"'_set_members'/2" -p80390 -S"'_set_members'() $1" -p80391 -tp80392 -a(S"'_set_name'/2" -p80393 -S"'_set_name'() $1" -p80394 -tp80395 -a(S"'_set_version'/2" -p80396 -S"'_set_version'() $1" -p80397 -tp80398 -a(S'cleanup_for_destroy/1' -p80399 -S'cleanup_for_destroy() $1' -p80400 -tp80401 -a(S'describe/1' -p80402 -S'describe() $1' -p80403 -tp80404 -a(S'destroy/1' -p80405 -S'destroy() $1' -p80406 -tp80407 -a(S'move/4' -p80408 -S'move() $1' -p80409 -tp80410 -asS'diameter_etcp_sup' -p80411 -(lp80412 -(S'init/1' -p80413 -S'init(${1:Param1}) $2' -p80414 -tp80415 -a(S'start/0' -p80416 -S'start() $1' -p80417 -tp80418 -a(S'start_child/1' -p80419 -S'start_child(${1:T}) $2' -p80420 -tp80421 -a(S'start_link/1' -p80422 -S'start_link(${1:Param1}) $2' -p80423 -tp80424 -asS'ssh_connection_sup' -p80425 -(lp80426 -(S'connection_manager/1' -p80427 -S'connection_manager(${1:SupPid}) $2' -p80428 -tp80429 -a(S'init/1' -p80430 -S'init(${1:Param1}) $2' -p80431 -tp80432 -a(S'start_handler_child/2' -p80433 -S'start_handler_child(${1:Sup}, ${2:Args}) $3' -p80434 -tp80435 -a(S'start_link/1' -p80436 -S'start_link(${1:Args}) $2' -p80437 -tp80438 -a(S'start_manager_child/2' -p80439 -S'start_manager_child(${1:Sup}, ${2:Args}) $3' -p80440 -tp80441 -asS'gstk_image' -p80442 -(lp80443 -(S'config/3' -p80444 -S'config(${1:DB}, ${2:Gstkid}, ${3:Opts}) $4' -p80445 -tp80446 -a(S'create/3' -p80447 -S'create(${1:DB}, ${2:Gstkid}, ${3:Opts}) $4' -p80448 -tp80449 -a(S'delete/2' -p80450 -S'delete(${1:DB}, ${2:Gstkid}) $3' -p80451 -tp80452 -a(S'destroy/3' -p80453 -S'destroy(${1:Param1}, ${2:Canvas}, ${3:Item}) $4' -p80454 -tp80455 -a(S'event/5' -p80456 -S'event(${1:DB}, ${2:Gstkid}, ${3:Etype}, ${4:Edata}, ${5:Args}) $6' -p80457 -tp80458 -a(S'option/5' -p80459 -S'option(${1:Option}, ${2:Gstkid}, ${3:Canvas}, ${4:Param4}, ${5:AItem}) $6' -p80460 -tp80461 -a(S'read/3' -p80462 -S'read(${1:DB}, ${2:Gstkid}, ${3:Opt}) $4' -p80463 -tp80464 -a(S'read_option/5' -p80465 -S'read_option(${1:Option}, ${2:Gstkid}, ${3:Canvas}, ${4:Param4}, ${5:AItem}) $6' -p80466 -tp80467 -asS'edoc_macros' -p80468 -(lp80469 -(S'check_defs/1' -p80470 -S'check_defs(${1:Param1}) $2' -p80471 -tp80472 -a(S'expand_tags/3' -p80473 -S'expand_tags(${1:Ts}, ${2:Env}, ${3:Where}) $4' -p80474 -tp80475 -a(S'std_macros/1' -p80476 -S'std_macros(${1:Env}) $2' -p80477 -tp80478 -asS'canvasbutton' -p80479 -(lp80480 -(S'create/1' -p80481 -S'create(${1:Canvas}) $2' -p80482 -tp80483 -a(S'create/2' -p80484 -S'create(${1:Canvas}, ${2:OptionList}) $3' -p80485 -tp80486 -a(S'press/1' -p80487 -S'press(${1:Canvasbutton}) $2' -p80488 -tp80489 -a(S'read/2' -p80490 -S'read(${1:Canvasbutton}, ${2:Param2}) $3' -p80491 -tp80492 -a(S'release/1' -p80493 -S'release(${1:Canvasbutton}) $2' -p80494 -tp80495 -asS'orber_pi' -p80496 -(lp80497 -(S"'_get_adapter_id'/1" -p80498 -S"'_get_adapter_id'(${1:Param1}) $2" -p80499 -tp80500 -a(S"'_get_arguments'/1" -p80501 -S"'_get_arguments'(${1:Param1}) $2" -p80502 -tp80503 -a(S"'_get_contexts'/1" -p80504 -S"'_get_contexts'(${1:Param1}) $2" -p80505 -tp80506 -a(S"'_get_effective_profile'/1" -p80507 -S"'_get_effective_profile'(${1:Param1}) $2" -p80508 -tp80509 -a(S"'_get_effective_target'/1" -p80510 -S"'_get_effective_target'(${1:Param1}) $2" -p80511 -tp80512 -a(S"'_get_exceptions'/1" -p80513 -S"'_get_exceptions'(${1:Param1}) $2" -p80514 -tp80515 -a(S"'_get_forward_reference'/1" -p80516 -S"'_get_forward_reference'(${1:Param1}) $2" -p80517 -tp80518 -a(S"'_get_object_id'/1" -p80519 -S"'_get_object_id'(${1:Param1}) $2" -p80520 -tp80521 -a(S"'_get_operation'/1" -p80522 -S"'_get_operation'(${1:Param1}) $2" -p80523 -tp80524 -a(S"'_get_operation_context'/1" -p80525 -S"'_get_operation_context'(${1:Param1}) $2" -p80526 -tp80527 -a(S"'_get_received_exception'/1" -p80528 -S"'_get_received_exception'(${1:Param1}) $2" -p80529 -tp80530 -a(S"'_get_received_exception_id'/1" -p80531 -S"'_get_received_exception_id'(${1:Param1}) $2" -p80532 -tp80533 -a(S"'_get_reply_status'/1" -p80534 -S"'_get_reply_status'(${1:Param1}) $2" -p80535 -tp80536 -a(S"'_get_request_id'/1" -p80537 -S"'_get_request_id'(${1:Param1}) $2" -p80538 -tp80539 -a(S"'_get_response_expected'/1" -p80540 -S"'_get_response_expected'(${1:Param1}) $2" -p80541 -tp80542 -a(S"'_get_result'/1" -p80543 -S"'_get_result'(${1:Param1}) $2" -p80544 -tp80545 -a(S"'_get_sending_exception'/1" -p80546 -S"'_get_sending_exception'(${1:Param1}) $2" -p80547 -tp80548 -a(S"'_get_sync_scope'/1" -p80549 -S"'_get_sync_scope'(${1:Param1}) $2" -p80550 -tp80551 -a(S"'_get_target'/1" -p80552 -S"'_get_target'(${1:Param1}) $2" -p80553 -tp80554 -a(S"'_get_target_most_derived_interface'/1" -p80555 -S"'_get_target_most_derived_interface'() $1" -p80556 -tp80557 -a(S'add_reply_service_context/3' -p80558 -S'add_reply_service_context(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p80559 -tp80560 -a(S'add_request_service_policy/3' -p80561 -S'add_request_service_policy() $1' -p80562 -tp80563 -a(S'client_receive/2' -p80564 -S'client_receive(${1:CRI}, ${2:PIs}) $3' -p80565 -tp80566 -a(S'client_send/2' -p80567 -S'client_send(${1:CRI}, ${2:PIs}) $3' -p80568 -tp80569 -a(S'closed_in_connection/2' -p80570 -S'closed_in_connection(${1:PIs}, ${2:Ref}) $3' -p80571 -tp80572 -a(S'closed_out_connection/2' -p80573 -S'closed_out_connection(${1:PIs}, ${2:Ref}) $3' -p80574 -tp80575 -a(S'codec_decode/2' -p80576 -S'codec_decode(${1:Version}, ${2:Bytes}) $3' -p80577 -tp80578 -a(S'codec_decode_value/3' -p80579 -S'codec_decode_value(${1:Version}, ${2:Bytes}, ${3:TypeCode}) $4' -p80580 -tp80581 -a(S'codec_encode/2' -p80582 -S'codec_encode(${1:Version}, ${2:Any}) $3' -p80583 -tp80584 -a(S'codec_encode_value/2' -p80585 -S'codec_encode_value(${1:Version}, ${2:Param2}) $3' -p80586 -tp80587 -a(S'codefactory_create_codec/1' -p80588 -S'codefactory_create_codec(${1:Param1}) $2' -p80589 -tp80590 -a(S'get_effective_component/2' -p80591 -S'get_effective_component(${1:Param1}, ${2:Param2}) $3' -p80592 -tp80593 -a(S'get_effective_components/2' -p80594 -S'get_effective_components(${1:Param1}, ${2:Param2}) $3' -p80595 -tp80596 -a(S'get_reply_service_context/2' -p80597 -S'get_reply_service_context(${1:Param1}, ${2:Param2}) $3' -p80598 -tp80599 -a(S'get_request_policy/2' -p80600 -S'get_request_policy(${1:Param1}, ${2:Param2}) $3' -p80601 -tp80602 -a(S'get_request_service_context/2' -p80603 -S'get_request_service_context(${1:Param1}, ${2:Param2}) $3' -p80604 -tp80605 -a(S'get_server_policy/2' -p80606 -S'get_server_policy(${1:Param1}, ${2:Param2}) $3' -p80607 -tp80608 -a(S'get_slot/2' -p80609 -S'get_slot(${1:Param1}, ${2:Param2}) $3' -p80610 -tp80611 -a(S'in_reply/6' -p80612 -S'in_reply(${1:PIs}, ${2:ObjKey}, ${3:Ctx}, ${4:Op}, ${5:Ref}, ${6:Msg}) $7' -p80613 -tp80614 -a(S'in_reply_enc/6' -p80615 -S'in_reply_enc(${1:PIs}, ${2:ObjKey}, ${3:Ctx}, ${4:Op}, ${5:Ref}, ${6:Msg}) $7' -p80616 -tp80617 -a(S'in_request/4' -p80618 -S'in_request(${1:PIs}, ${2:ReqHdr}, ${3:Ref}, ${4:Msg}) $5' -p80619 -tp80620 -a(S'in_request_enc/4' -p80621 -S'in_request_enc(${1:PIs}, ${2:ReqHdr}, ${3:Ref}, ${4:Msg}) $5' -p80622 -tp80623 -a(S'new_in_connection/5' -p80624 -S'new_in_connection(${1:PIs}, ${2:Host}, ${3:Port}, ${4:SHost}, ${5:SPort}) $6' -p80625 -tp80626 -a(S'new_out_connection/5' -p80627 -S'new_out_connection(${1:PIs}, ${2:Host}, ${3:Port}, ${4:SHost}, ${5:SPort}) $6' -p80628 -tp80629 -a(S'out_reply/5' -p80630 -S'out_reply(${1:PIs}, ${2:ReqHdr}, ${3:Ref}, ${4:Msg}, ${5:Ctx}) $6' -p80631 -tp80632 -a(S'out_reply_enc/5' -p80633 -S'out_reply_enc(${1:PIs}, ${2:ReqHdr}, ${3:Ref}, ${4:Msg}, ${5:Ctx}) $6' -p80634 -tp80635 -a(S'out_request/6' -p80636 -S'out_request(${1:PIs}, ${2:ObjKey}, ${3:Ctx}, ${4:Op}, ${5:Ref}, ${6:Msg}) $7' -p80637 -tp80638 -a(S'out_request_enc/6' -p80639 -S'out_request_enc(${1:PIs}, ${2:ObjKey}, ${3:Ctx}, ${4:Op}, ${5:Ref}, ${6:Msg}) $7' -p80640 -tp80641 -a(S'server_start_receive/7' -p80642 -S'server_start_receive(${1:PIs}, ${2:Version}, ${3:ReqHdr}, ${4:Rest}, ${5:Len}, ${6:ByteOrder}, ${7:Msg}) $8' -p80643 -tp80644 -a(S'server_start_send/2' -p80645 -S'server_start_send(${1:PIs}, ${2:SRI}) $3' -p80646 -tp80647 -a(S'set_slot/3' -p80648 -S'set_slot(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p80649 -tp80650 -a(S'target_is_a/2' -p80651 -S'target_is_a(${1:Param1}, ${2:IFRId}) $3' -p80652 -tp80653 -asS'wxDirDialog' -p80654 -(lp80655 -(S'cacheBestSize/2' -p80656 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p80657 -tp80658 -a(S'captureMouse/1' -p80659 -S'captureMouse(${1:This}) $2' -p80660 -tp80661 -a(S'center/1' -p80662 -S'center(${1:This}) $2' -p80663 -tp80664 -a(S'center/2' -p80665 -S'center(${1:This}, ${2:Options}) $3' -p80666 -tp80667 -a(S'centerOnParent/1' -p80668 -S'centerOnParent(${1:This}) $2' -p80669 -tp80670 -a(S'centerOnParent/2' -p80671 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p80672 -tp80673 -a(S'centerOnScreen/1' -p80674 -S'centerOnScreen(${1:This}) $2' -p80675 -tp80676 -a(S'centerOnScreen/2' -p80677 -S'centerOnScreen(${1:This}, ${2:Options}) $3' -p80678 -tp80679 -a(S'centre/1' -p80680 -S'centre(${1:This}) $2' -p80681 -tp80682 -a(S'centre/2' -p80683 -S'centre(${1:This}, ${2:Options}) $3' -p80684 -tp80685 -a(S'centreOnParent/1' -p80686 -S'centreOnParent(${1:This}) $2' -p80687 -tp80688 -a(S'centreOnParent/2' -p80689 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p80690 -tp80691 -a(S'centreOnScreen/1' -p80692 -S'centreOnScreen(${1:This}) $2' -p80693 -tp80694 -a(S'centreOnScreen/2' -p80695 -S'centreOnScreen(${1:This}, ${2:Options}) $3' -p80696 -tp80697 -a(S'clearBackground/1' -p80698 -S'clearBackground(${1:This}) $2' -p80699 -tp80700 -a(S'clientToScreen/2' -p80701 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p80702 -tp80703 -a(S'clientToScreen/3' -p80704 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p80705 -tp80706 -a(S'close/1' -p80707 -S'close(${1:This}) $2' -p80708 -tp80709 -a(S'close/2' -p80710 -S'close(${1:This}, ${2:Options}) $3' -p80711 -tp80712 -a(S'connect/2' -p80713 -S'connect(${1:This}, ${2:EventType}) $3' -p80714 -tp80715 -a(S'connect/3' -p80716 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p80717 -tp80718 -a(S'convertDialogToPixels/2' -p80719 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p80720 -tp80721 -a(S'convertPixelsToDialog/2' -p80722 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p80723 -tp80724 -a(S'createButtonSizer/2' -p80725 -S'createButtonSizer(${1:This}, ${2:Flags}) $3' -p80726 -tp80727 -a(S'createStdDialogButtonSizer/2' -p80728 -S'createStdDialogButtonSizer(${1:This}, ${2:Flags}) $3' -p80729 -tp80730 -a(S'destroy/1' -p80731 -S'destroy(${1:This}) $2' -p80732 -tp80733 -a(S'destroyChildren/1' -p80734 -S'destroyChildren(${1:This}) $2' -p80735 -tp80736 -a(S'disable/1' -p80737 -S'disable(${1:This}) $2' -p80738 -tp80739 -a(S'disconnect/1' -p80740 -S'disconnect(${1:This}) $2' -p80741 -tp80742 -a(S'disconnect/2' -p80743 -S'disconnect(${1:This}, ${2:EventType}) $3' -p80744 -tp80745 -a(S'disconnect/3' -p80746 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p80747 -tp80748 -a(S'enable/1' -p80749 -S'enable(${1:This}) $2' -p80750 -tp80751 -a(S'enable/2' -p80752 -S'enable(${1:This}, ${2:Options}) $3' -p80753 -tp80754 -a(S'endModal/2' -p80755 -S'endModal(${1:This}, ${2:RetCode}) $3' -p80756 -tp80757 -a(S'findWindow/2' -p80758 -S'findWindow(${1:This}, ${2:Winid}) $3' -p80759 -tp80760 -a(S'fit/1' -p80761 -S'fit(${1:This}) $2' -p80762 -tp80763 -a(S'fitInside/1' -p80764 -S'fitInside(${1:This}) $2' -p80765 -tp80766 -a(S'freeze/1' -p80767 -S'freeze(${1:This}) $2' -p80768 -tp80769 -a(S'getAcceleratorTable/1' -p80770 -S'getAcceleratorTable(${1:This}) $2' -p80771 -tp80772 -a(S'getAffirmativeId/1' -p80773 -S'getAffirmativeId(${1:This}) $2' -p80774 -tp80775 -a(S'getBackgroundColour/1' -p80776 -S'getBackgroundColour(${1:This}) $2' -p80777 -tp80778 -a(S'getBackgroundStyle/1' -p80779 -S'getBackgroundStyle(${1:This}) $2' -p80780 -tp80781 -a(S'getBestSize/1' -p80782 -S'getBestSize(${1:This}) $2' -p80783 -tp80784 -a(S'getCaret/1' -p80785 -S'getCaret(${1:This}) $2' -p80786 -tp80787 -a(S'getCharHeight/1' -p80788 -S'getCharHeight(${1:This}) $2' -p80789 -tp80790 -a(S'getCharWidth/1' -p80791 -S'getCharWidth(${1:This}) $2' -p80792 -tp80793 -a(S'getChildren/1' -p80794 -S'getChildren(${1:This}) $2' -p80795 -tp80796 -a(S'getClientSize/1' -p80797 -S'getClientSize(${1:This}) $2' -p80798 -tp80799 -a(S'getContainingSizer/1' -p80800 -S'getContainingSizer(${1:This}) $2' -p80801 -tp80802 -a(S'getCursor/1' -p80803 -S'getCursor(${1:This}) $2' -p80804 -tp80805 -a(S'getDropTarget/1' -p80806 -S'getDropTarget(${1:This}) $2' -p80807 -tp80808 -a(S'getEventHandler/1' -p80809 -S'getEventHandler(${1:This}) $2' -p80810 -tp80811 -a(S'getExtraStyle/1' -p80812 -S'getExtraStyle(${1:This}) $2' -p80813 -tp80814 -a(S'getFont/1' -p80815 -S'getFont(${1:This}) $2' -p80816 -tp80817 -a(S'getForegroundColour/1' -p80818 -S'getForegroundColour(${1:This}) $2' -p80819 -tp80820 -a(S'getGrandParent/1' -p80821 -S'getGrandParent(${1:This}) $2' -p80822 -tp80823 -a(S'getHandle/1' -p80824 -S'getHandle(${1:This}) $2' -p80825 -tp80826 -a(S'getHelpText/1' -p80827 -S'getHelpText(${1:This}) $2' -p80828 -tp80829 -a(S'getIcon/1' -p80830 -S'getIcon(${1:This}) $2' -p80831 -tp80832 -a(S'getIcons/1' -p80833 -S'getIcons(${1:This}) $2' -p80834 -tp80835 -a(S'getId/1' -p80836 -S'getId(${1:This}) $2' -p80837 -tp80838 -a(S'getLabel/1' -p80839 -S'getLabel(${1:This}) $2' -p80840 -tp80841 -a(S'getMaxSize/1' -p80842 -S'getMaxSize(${1:This}) $2' -p80843 -tp80844 -a(S'getMessage/1' -p80845 -S'getMessage(${1:This}) $2' -p80846 -tp80847 -a(S'getMinSize/1' -p80848 -S'getMinSize(${1:This}) $2' -p80849 -tp80850 -a(S'getName/1' -p80851 -S'getName(${1:This}) $2' -p80852 -tp80853 -a(S'getParent/1' -p80854 -S'getParent(${1:This}) $2' -p80855 -tp80856 -a(S'getPath/1' -p80857 -S'getPath(${1:This}) $2' -p80858 -tp80859 -a(S'getPosition/1' -p80860 -S'getPosition(${1:This}) $2' -p80861 -tp80862 -a(S'getRect/1' -p80863 -S'getRect(${1:This}) $2' -p80864 -tp80865 -a(S'getReturnCode/1' -p80866 -S'getReturnCode(${1:This}) $2' -p80867 -tp80868 -a(S'getScreenPosition/1' -p80869 -S'getScreenPosition(${1:This}) $2' -p80870 -tp80871 -a(S'getScreenRect/1' -p80872 -S'getScreenRect(${1:This}) $2' -p80873 -tp80874 -a(S'getScrollPos/2' -p80875 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p80876 -tp80877 -a(S'getScrollRange/2' -p80878 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p80879 -tp80880 -a(S'getScrollThumb/2' -p80881 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p80882 -tp80883 -a(S'getSize/1' -p80884 -S'getSize(${1:This}) $2' -p80885 -tp80886 -a(S'getSizer/1' -p80887 -S'getSizer(${1:This}) $2' -p80888 -tp80889 -a(S'getTextExtent/2' -p80890 -S'getTextExtent(${1:This}, ${2:String}) $3' -p80891 -tp80892 -a(S'getTextExtent/3' -p80893 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p80894 -tp80895 -a(S'getTitle/1' -p80896 -S'getTitle(${1:This}) $2' -p80897 -tp80898 -a(S'getToolTip/1' -p80899 -S'getToolTip(${1:This}) $2' -p80900 -tp80901 -a(S'getUpdateRegion/1' -p80902 -S'getUpdateRegion(${1:This}) $2' -p80903 -tp80904 -a(S'getVirtualSize/1' -p80905 -S'getVirtualSize(${1:This}) $2' -p80906 -tp80907 -a(S'getWindowStyleFlag/1' -p80908 -S'getWindowStyleFlag(${1:This}) $2' -p80909 -tp80910 -a(S'getWindowVariant/1' -p80911 -S'getWindowVariant(${1:This}) $2' -p80912 -tp80913 -a(S'hasCapture/1' -p80914 -S'hasCapture(${1:This}) $2' -p80915 -tp80916 -a(S'hasScrollbar/2' -p80917 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p80918 -tp80919 -a(S'hasTransparentBackground/1' -p80920 -S'hasTransparentBackground(${1:This}) $2' -p80921 -tp80922 -a(S'hide/1' -p80923 -S'hide(${1:This}) $2' -p80924 -tp80925 -a(S'iconize/1' -p80926 -S'iconize(${1:This}) $2' -p80927 -tp80928 -a(S'iconize/2' -p80929 -S'iconize(${1:This}, ${2:Options}) $3' -p80930 -tp80931 -a(S'inheritAttributes/1' -p80932 -S'inheritAttributes(${1:This}) $2' -p80933 -tp80934 -a(S'initDialog/1' -p80935 -S'initDialog(${1:This}) $2' -p80936 -tp80937 -a(S'invalidateBestSize/1' -p80938 -S'invalidateBestSize(${1:This}) $2' -p80939 -tp80940 -a(S'isActive/1' -p80941 -S'isActive(${1:This}) $2' -p80942 -tp80943 -a(S'isEnabled/1' -p80944 -S'isEnabled(${1:This}) $2' -p80945 -tp80946 -a(S'isExposed/2' -p80947 -S'isExposed(${1:This}, ${2:Pt}) $3' -p80948 -tp80949 -a(S'isExposed/3' -p80950 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p80951 -tp80952 -a(S'isExposed/5' -p80953 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p80954 -tp80955 -a(S'isFullScreen/1' -p80956 -S'isFullScreen(${1:This}) $2' -p80957 -tp80958 -a(S'isIconized/1' -p80959 -S'isIconized(${1:This}) $2' -p80960 -tp80961 -a(S'isMaximized/1' -p80962 -S'isMaximized(${1:This}) $2' -p80963 -tp80964 -a(S'isModal/1' -p80965 -S'isModal(${1:This}) $2' -p80966 -tp80967 -a(S'isRetained/1' -p80968 -S'isRetained(${1:This}) $2' -p80969 -tp80970 -a(S'isShown/1' -p80971 -S'isShown(${1:This}) $2' -p80972 -tp80973 -a(S'isTopLevel/1' -p80974 -S'isTopLevel(${1:This}) $2' -p80975 -tp80976 -a(S'layout/1' -p80977 -S'layout(${1:This}) $2' -p80978 -tp80979 -a(S'lineDown/1' -p80980 -S'lineDown(${1:This}) $2' -p80981 -tp80982 -a(S'lineUp/1' -p80983 -S'lineUp(${1:This}) $2' -p80984 -tp80985 -a(S'lower/1' -p80986 -S'lower(${1:This}) $2' -p80987 -tp80988 -a(S'makeModal/1' -p80989 -S'makeModal(${1:This}) $2' -p80990 -tp80991 -a(S'makeModal/2' -p80992 -S'makeModal(${1:This}, ${2:Options}) $3' -p80993 -tp80994 -a(S'maximize/1' -p80995 -S'maximize(${1:This}) $2' -p80996 -tp80997 -a(S'maximize/2' -p80998 -S'maximize(${1:This}, ${2:Options}) $3' -p80999 -tp81000 -a(S'move/2' -p81001 -S'move(${1:This}, ${2:Pt}) $3' -p81002 -tp81003 -a(S'move/3' -p81004 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p81005 -tp81006 -a(S'move/4' -p81007 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p81008 -tp81009 -a(S'moveAfterInTabOrder/2' -p81010 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p81011 -tp81012 -a(S'moveBeforeInTabOrder/2' -p81013 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p81014 -tp81015 -a(S'navigate/1' -p81016 -S'navigate(${1:This}) $2' -p81017 -tp81018 -a(S'navigate/2' -p81019 -S'navigate(${1:This}, ${2:Options}) $3' -p81020 -tp81021 -a(S'new/1' -p81022 -S'new(${1:Parent}) $2' -p81023 -tp81024 -a(S'new/2' -p81025 -S'new(${1:Parent}, ${2:Param2}) $3' -p81026 -tp81027 -a(S'pageDown/1' -p81028 -S'pageDown(${1:This}) $2' -p81029 -tp81030 -a(S'pageUp/1' -p81031 -S'pageUp(${1:This}) $2' -p81032 -tp81033 -a(S'parent_class/1' -p81034 -S'parent_class(${1:Param1}) $2' -p81035 -tp81036 -a(S'popEventHandler/1' -p81037 -S'popEventHandler(${1:This}) $2' -p81038 -tp81039 -a(S'popEventHandler/2' -p81040 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p81041 -tp81042 -a(S'popupMenu/2' -p81043 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p81044 -tp81045 -a(S'popupMenu/3' -p81046 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p81047 -tp81048 -a(S'popupMenu/4' -p81049 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p81050 -tp81051 -a(S'raise/1' -p81052 -S'raise(${1:This}) $2' -p81053 -tp81054 -a(S'refresh/1' -p81055 -S'refresh(${1:This}) $2' -p81056 -tp81057 -a(S'refresh/2' -p81058 -S'refresh(${1:This}, ${2:Options}) $3' -p81059 -tp81060 -a(S'refreshRect/2' -p81061 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p81062 -tp81063 -a(S'refreshRect/3' -p81064 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p81065 -tp81066 -a(S'releaseMouse/1' -p81067 -S'releaseMouse(${1:This}) $2' -p81068 -tp81069 -a(S'removeChild/2' -p81070 -S'removeChild(${1:This}, ${2:Child}) $3' -p81071 -tp81072 -a(S'reparent/2' -p81073 -S'reparent(${1:This}, ${2:NewParent}) $3' -p81074 -tp81075 -a(S'requestUserAttention/1' -p81076 -S'requestUserAttention(${1:This}) $2' -p81077 -tp81078 -a(S'requestUserAttention/2' -p81079 -S'requestUserAttention(${1:This}, ${2:Options}) $3' -p81080 -tp81081 -a(S'screenToClient/1' -p81082 -S'screenToClient(${1:This}) $2' -p81083 -tp81084 -a(S'screenToClient/2' -p81085 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p81086 -tp81087 -a(S'scrollLines/2' -p81088 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p81089 -tp81090 -a(S'scrollPages/2' -p81091 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p81092 -tp81093 -a(S'scrollWindow/3' -p81094 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p81095 -tp81096 -a(S'scrollWindow/4' -p81097 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p81098 -tp81099 -a(S'setAcceleratorTable/2' -p81100 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p81101 -tp81102 -a(S'setAffirmativeId/2' -p81103 -S'setAffirmativeId(${1:This}, ${2:AffirmativeId}) $3' -p81104 -tp81105 -a(S'setAutoLayout/2' -p81106 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p81107 -tp81108 -a(S'setBackgroundColour/2' -p81109 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p81110 -tp81111 -a(S'setBackgroundStyle/2' -p81112 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p81113 -tp81114 -a(S'setCaret/2' -p81115 -S'setCaret(${1:This}, ${2:Caret}) $3' -p81116 -tp81117 -a(S'setClientSize/2' -p81118 -S'setClientSize(${1:This}, ${2:Size}) $3' -p81119 -tp81120 -a(S'setClientSize/3' -p81121 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p81122 -tp81123 -a(S'setContainingSizer/2' -p81124 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p81125 -tp81126 -a(S'setCursor/2' -p81127 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p81128 -tp81129 -a(S'setDropTarget/2' -p81130 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p81131 -tp81132 -a(S'setExtraStyle/2' -p81133 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p81134 -tp81135 -a(S'setFocus/1' -p81136 -S'setFocus(${1:This}) $2' -p81137 -tp81138 -a(S'setFocusFromKbd/1' -p81139 -S'setFocusFromKbd(${1:This}) $2' -p81140 -tp81141 -a(S'setFont/2' -p81142 -S'setFont(${1:This}, ${2:Font}) $3' -p81143 -tp81144 -a(S'setForegroundColour/2' -p81145 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p81146 -tp81147 -a(S'setHelpText/2' -p81148 -S'setHelpText(${1:This}, ${2:Text}) $3' -p81149 -tp81150 -a(S'setIcon/2' -p81151 -S'setIcon(${1:This}, ${2:Icon}) $3' -p81152 -tp81153 -a(S'setIcons/2' -p81154 -S'setIcons(${1:This}, ${2:Icons}) $3' -p81155 -tp81156 -a(S'setId/2' -p81157 -S'setId(${1:This}, ${2:Winid}) $3' -p81158 -tp81159 -a(S'setLabel/2' -p81160 -S'setLabel(${1:This}, ${2:Label}) $3' -p81161 -tp81162 -a(S'setMaxSize/2' -p81163 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p81164 -tp81165 -a(S'setMessage/2' -p81166 -S'setMessage(${1:This}, ${2:Message}) $3' -p81167 -tp81168 -a(S'setMinSize/2' -p81169 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p81170 -tp81171 -a(S'setName/2' -p81172 -S'setName(${1:This}, ${2:Name}) $3' -p81173 -tp81174 -a(S'setOwnBackgroundColour/2' -p81175 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p81176 -tp81177 -a(S'setOwnFont/2' -p81178 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p81179 -tp81180 -a(S'setOwnForegroundColour/2' -p81181 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p81182 -tp81183 -a(S'setPalette/2' -p81184 -S'setPalette(${1:This}, ${2:Pal}) $3' -p81185 -tp81186 -a(S'setPath/2' -p81187 -S'setPath(${1:This}, ${2:Path}) $3' -p81188 -tp81189 -a(S'setReturnCode/2' -p81190 -S'setReturnCode(${1:This}, ${2:ReturnCode}) $3' -p81191 -tp81192 -a(S'setScrollPos/3' -p81193 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p81194 -tp81195 -a(S'setScrollPos/4' -p81196 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p81197 -tp81198 -a(S'setScrollbar/5' -p81199 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p81200 -tp81201 -a(S'setScrollbar/6' -p81202 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p81203 -tp81204 -a(S'setShape/2' -p81205 -S'setShape(${1:This}, ${2:Region}) $3' -p81206 -tp81207 -a(S'setSize/2' -p81208 -S'setSize(${1:This}, ${2:Rect}) $3' -p81209 -tp81210 -a(S'setSize/3' -p81211 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p81212 -tp81213 -a(S'setSize/5' -p81214 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p81215 -tp81216 -a(S'setSize/6' -p81217 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p81218 -tp81219 -a(S'setSizeHints/2' -p81220 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p81221 -tp81222 -a(S'setSizeHints/3' -p81223 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p81224 -tp81225 -a(S'setSizeHints/4' -p81226 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p81227 -tp81228 -a(S'setSizer/2' -p81229 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p81230 -tp81231 -a(S'setSizer/3' -p81232 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p81233 -tp81234 -a(S'setSizerAndFit/2' -p81235 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p81236 -tp81237 -a(S'setSizerAndFit/3' -p81238 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p81239 -tp81240 -a(S'setThemeEnabled/2' -p81241 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p81242 -tp81243 -a(S'setTitle/2' -p81244 -S'setTitle(${1:This}, ${2:Title}) $3' -p81245 -tp81246 -a(S'setToolTip/2' -p81247 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p81248 -tp81249 -a(S'setVirtualSize/2' -p81250 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p81251 -tp81252 -a(S'setVirtualSize/3' -p81253 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p81254 -tp81255 -a(S'setVirtualSizeHints/2' -p81256 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p81257 -tp81258 -a(S'setVirtualSizeHints/3' -p81259 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p81260 -tp81261 -a(S'setVirtualSizeHints/4' -p81262 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p81263 -tp81264 -a(S'setWindowStyle/2' -p81265 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p81266 -tp81267 -a(S'setWindowStyleFlag/2' -p81268 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p81269 -tp81270 -a(S'setWindowVariant/2' -p81271 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p81272 -tp81273 -a(S'shouldInheritColours/1' -p81274 -S'shouldInheritColours(${1:This}) $2' -p81275 -tp81276 -a(S'show/1' -p81277 -S'show(${1:This}) $2' -p81278 -tp81279 -a(S'show/2' -p81280 -S'show(${1:This}, ${2:Options}) $3' -p81281 -tp81282 -a(S'showFullScreen/2' -p81283 -S'showFullScreen(${1:This}, ${2:Show}) $3' -p81284 -tp81285 -a(S'showFullScreen/3' -p81286 -S'showFullScreen(${1:This}, ${2:Show}, ${3:Options}) $4' -p81287 -tp81288 -a(S'showModal/1' -p81289 -S'showModal(${1:This}) $2' -p81290 -tp81291 -a(S'thaw/1' -p81292 -S'thaw(${1:This}) $2' -p81293 -tp81294 -a(S'transferDataFromWindow/1' -p81295 -S'transferDataFromWindow(${1:This}) $2' -p81296 -tp81297 -a(S'transferDataToWindow/1' -p81298 -S'transferDataToWindow(${1:This}) $2' -p81299 -tp81300 -a(S'update/1' -p81301 -S'update(${1:This}) $2' -p81302 -tp81303 -a(S'updateWindowUI/1' -p81304 -S'updateWindowUI(${1:This}) $2' -p81305 -tp81306 -a(S'updateWindowUI/2' -p81307 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p81308 -tp81309 -a(S'validate/1' -p81310 -S'validate(${1:This}) $2' -p81311 -tp81312 -a(S'warpPointer/3' -p81313 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p81314 -tp81315 -asS'megaco_ber_bin_drv_media_gateway_control_prev3c' -p81316 -(lp81317 -(S"'dec_ActionReply'/2" -p81318 -S"'dec_ActionReply'(${1:Tlv}, ${2:TagIn}) $3" -p81319 -tp81320 -a(S"'dec_ActionRequest'/2" -p81321 -S"'dec_ActionRequest'(${1:Tlv}, ${2:TagIn}) $3" -p81322 -tp81323 -a(S"'dec_AmmDescriptor'/2" -p81324 -S"'dec_AmmDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p81325 -tp81326 -a(S"'dec_AmmRequest'/2" -p81327 -S"'dec_AmmRequest'(${1:Tlv}, ${2:TagIn}) $3" -p81328 -tp81329 -a(S"'dec_AmmsReply'/2" -p81330 -S"'dec_AmmsReply'(${1:Tlv}, ${2:TagIn}) $3" -p81331 -tp81332 -a(S"'dec_AuditDescriptor'/2" -p81333 -S"'dec_AuditDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p81334 -tp81335 -a(S"'dec_AuditReply'/2" -p81336 -S"'dec_AuditReply'(${1:Tlv}, ${2:TagIn}) $3" -p81337 -tp81338 -a(S"'dec_AuditRequest'/2" -p81339 -S"'dec_AuditRequest'(${1:Tlv}, ${2:TagIn}) $3" -p81340 -tp81341 -a(S"'dec_AuditResult'/2" -p81342 -S"'dec_AuditResult'(${1:Tlv}, ${2:TagIn}) $3" -p81343 -tp81344 -a(S"'dec_AuditReturnParameter'/2" -p81345 -S"'dec_AuditReturnParameter'(${1:Tlv}, ${2:TagIn}) $3" -p81346 -tp81347 -a(S"'dec_AuthData'/2" -p81348 -S"'dec_AuthData'(${1:Tlv}, ${2:TagIn}) $3" -p81349 -tp81350 -a(S"'dec_AuthenticationHeader'/2" -p81351 -S"'dec_AuthenticationHeader'(${1:Tlv}, ${2:TagIn}) $3" -p81352 -tp81353 -a(S"'dec_Command'/2" -p81354 -S"'dec_Command'(${1:Tlv}, ${2:TagIn}) $3" -p81355 -tp81356 -a(S"'dec_CommandReply'/2" -p81357 -S"'dec_CommandReply'(${1:Tlv}, ${2:TagIn}) $3" -p81358 -tp81359 -a(S"'dec_CommandRequest'/2" -p81360 -S"'dec_CommandRequest'(${1:Tlv}, ${2:TagIn}) $3" -p81361 -tp81362 -a(S"'dec_ContextAttrAuditRequest'/2" -p81363 -S"'dec_ContextAttrAuditRequest'(${1:Tlv}, ${2:TagIn}) $3" -p81364 -tp81365 -a(S"'dec_ContextID'/2" -p81366 -S"'dec_ContextID'(${1:Tlv}, ${2:TagIn}) $3" -p81367 -tp81368 -a(S"'dec_ContextRequest'/2" -p81369 -S"'dec_ContextRequest'(${1:Tlv}, ${2:TagIn}) $3" -p81370 -tp81371 -a(S"'dec_DigitMapDescriptor'/2" -p81372 -S"'dec_DigitMapDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p81373 -tp81374 -a(S"'dec_DigitMapName'/2" -p81375 -S"'dec_DigitMapName'(${1:Tlv}, ${2:TagIn}) $3" -p81376 -tp81377 -a(S"'dec_DigitMapValue'/2" -p81378 -S"'dec_DigitMapValue'(${1:Tlv}, ${2:TagIn}) $3" -p81379 -tp81380 -a(S"'dec_DomainName'/2" -p81381 -S"'dec_DomainName'(${1:Tlv}, ${2:TagIn}) $3" -p81382 -tp81383 -a(S"'dec_ErrorCode'/2" -p81384 -S"'dec_ErrorCode'(${1:Tlv}, ${2:TagIn}) $3" -p81385 -tp81386 -a(S"'dec_ErrorDescriptor'/2" -p81387 -S"'dec_ErrorDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p81388 -tp81389 -a(S"'dec_ErrorText'/2" -p81390 -S"'dec_ErrorText'(${1:Tlv}, ${2:TagIn}) $3" -p81391 -tp81392 -a(S"'dec_EventBufferControl'/2" -p81393 -S"'dec_EventBufferControl'(${1:Tlv}, ${2:TagIn}) $3" -p81394 -tp81395 -a(S"'dec_EventBufferDescriptor'/2" -p81396 -S"'dec_EventBufferDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p81397 -tp81398 -a(S"'dec_EventDM'/2" -p81399 -S"'dec_EventDM'(${1:Tlv}, ${2:TagIn}) $3" -p81400 -tp81401 -a(S"'dec_EventName'/2" -p81402 -S"'dec_EventName'(${1:Tlv}, ${2:TagIn}) $3" -p81403 -tp81404 -a(S"'dec_EventParameter'/2" -p81405 -S"'dec_EventParameter'(${1:Tlv}, ${2:TagIn}) $3" -p81406 -tp81407 -a(S"'dec_EventSpec'/2" -p81408 -S"'dec_EventSpec'(${1:Tlv}, ${2:TagIn}) $3" -p81409 -tp81410 -a(S"'dec_EventsDescriptor'/2" -p81411 -S"'dec_EventsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p81412 -tp81413 -a(S"'dec_H221NonStandard'/2" -p81414 -S"'dec_H221NonStandard'(${1:Tlv}, ${2:TagIn}) $3" -p81415 -tp81416 -a(S"'dec_IP4Address'/2" -p81417 -S"'dec_IP4Address'(${1:Tlv}, ${2:TagIn}) $3" -p81418 -tp81419 -a(S"'dec_IP6Address'/2" -p81420 -S"'dec_IP6Address'(${1:Tlv}, ${2:TagIn}) $3" -p81421 -tp81422 -a(S"'dec_IndAudDigitMapDescriptor'/2" -p81423 -S"'dec_IndAudDigitMapDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p81424 -tp81425 -a(S"'dec_IndAudEventBufferDescriptor'/2" -p81426 -S"'dec_IndAudEventBufferDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p81427 -tp81428 -a(S"'dec_IndAudEventsDescriptor'/2" -p81429 -S"'dec_IndAudEventsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p81430 -tp81431 -a(S"'dec_IndAudLocalControlDescriptor'/2" -p81432 -S"'dec_IndAudLocalControlDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p81433 -tp81434 -a(S"'dec_IndAudLocalRemoteDescriptor'/2" -p81435 -S"'dec_IndAudLocalRemoteDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p81436 -tp81437 -a(S"'dec_IndAudMediaDescriptor'/2" -p81438 -S"'dec_IndAudMediaDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p81439 -tp81440 -a(S"'dec_IndAudPackagesDescriptor'/2" -p81441 -S"'dec_IndAudPackagesDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p81442 -tp81443 -a(S"'dec_IndAudPropertyGroup'/2" -p81444 -S"'dec_IndAudPropertyGroup'(${1:Tlv}, ${2:TagIn}) $3" -p81445 -tp81446 -a(S"'dec_IndAudPropertyParm'/2" -p81447 -S"'dec_IndAudPropertyParm'(${1:Tlv}, ${2:TagIn}) $3" -p81448 -tp81449 -a(S"'dec_IndAudSeqSigList'/2" -p81450 -S"'dec_IndAudSeqSigList'(${1:Tlv}, ${2:TagIn}) $3" -p81451 -tp81452 -a(S"'dec_IndAudSignal'/2" -p81453 -S"'dec_IndAudSignal'(${1:Tlv}, ${2:TagIn}) $3" -p81454 -tp81455 -a(S"'dec_IndAudSignalsDescriptor'/2" -p81456 -S"'dec_IndAudSignalsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p81457 -tp81458 -a(S"'dec_IndAudStatisticsDescriptor'/2" -p81459 -S"'dec_IndAudStatisticsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p81460 -tp81461 -a(S"'dec_IndAudStreamDescriptor'/2" -p81462 -S"'dec_IndAudStreamDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p81463 -tp81464 -a(S"'dec_IndAudStreamParms'/2" -p81465 -S"'dec_IndAudStreamParms'(${1:Tlv}, ${2:TagIn}) $3" -p81466 -tp81467 -a(S"'dec_IndAudTerminationStateDescriptor'/2" -p81468 -S"'dec_IndAudTerminationStateDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p81469 -tp81470 -a(S"'dec_IndAuditParameter'/2" -p81471 -S"'dec_IndAuditParameter'(${1:Tlv}, ${2:TagIn}) $3" -p81472 -tp81473 -a(S"'dec_LocalControlDescriptor'/2" -p81474 -S"'dec_LocalControlDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p81475 -tp81476 -a(S"'dec_LocalRemoteDescriptor'/2" -p81477 -S"'dec_LocalRemoteDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p81478 -tp81479 -a(S"'dec_MId'/2" -p81480 -S"'dec_MId'(${1:Tlv}, ${2:TagIn}) $3" -p81481 -tp81482 -a(S"'dec_MediaDescriptor'/2" -p81483 -S"'dec_MediaDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p81484 -tp81485 -a(S"'dec_MegacoMessage'/2" -p81486 -S"'dec_MegacoMessage'(${1:Tlv}, ${2:TagIn}) $3" -p81487 -tp81488 -a(S"'dec_Message'/2" -p81489 -S"'dec_Message'(${1:Tlv}, ${2:TagIn}) $3" -p81490 -tp81491 -a(S"'dec_ModemDescriptor'/2" -p81492 -S"'dec_ModemDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p81493 -tp81494 -a(S"'dec_ModemType'/2" -p81495 -S"'dec_ModemType'(${1:Tlv}, ${2:TagIn}) $3" -p81496 -tp81497 -a(S"'dec_MuxDescriptor'/2" -p81498 -S"'dec_MuxDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p81499 -tp81500 -a(S"'dec_MuxType'/2" -p81501 -S"'dec_MuxType'(${1:Tlv}, ${2:TagIn}) $3" -p81502 -tp81503 -a(S"'dec_Name'/2" -p81504 -S"'dec_Name'(${1:Tlv}, ${2:TagIn}) $3" -p81505 -tp81506 -a(S"'dec_NonStandardData'/2" -p81507 -S"'dec_NonStandardData'(${1:Tlv}, ${2:TagIn}) $3" -p81508 -tp81509 -a(S"'dec_NonStandardIdentifier'/2" -p81510 -S"'dec_NonStandardIdentifier'(${1:Tlv}, ${2:TagIn}) $3" -p81511 -tp81512 -a(S"'dec_NotifyBehaviour'/2" -p81513 -S"'dec_NotifyBehaviour'(${1:Tlv}, ${2:TagIn}) $3" -p81514 -tp81515 -a(S"'dec_NotifyCompletion'/2" -p81516 -S"'dec_NotifyCompletion'(${1:Tlv}, ${2:TagIn}) $3" -p81517 -tp81518 -a(S"'dec_NotifyReply'/2" -p81519 -S"'dec_NotifyReply'(${1:Tlv}, ${2:TagIn}) $3" -p81520 -tp81521 -a(S"'dec_NotifyRequest'/2" -p81522 -S"'dec_NotifyRequest'(${1:Tlv}, ${2:TagIn}) $3" -p81523 -tp81524 -a(S"'dec_ObservedEvent'/2" -p81525 -S"'dec_ObservedEvent'(${1:Tlv}, ${2:TagIn}) $3" -p81526 -tp81527 -a(S"'dec_ObservedEventsDescriptor'/2" -p81528 -S"'dec_ObservedEventsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p81529 -tp81530 -a(S"'dec_PackagesDescriptor'/2" -p81531 -S"'dec_PackagesDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p81532 -tp81533 -a(S"'dec_PackagesItem'/2" -p81534 -S"'dec_PackagesItem'(${1:Tlv}, ${2:TagIn}) $3" -p81535 -tp81536 -a(S"'dec_PathName'/2" -p81537 -S"'dec_PathName'(${1:Tlv}, ${2:TagIn}) $3" -p81538 -tp81539 -a(S"'dec_PkgdName'/2" -p81540 -S"'dec_PkgdName'(${1:Tlv}, ${2:TagIn}) $3" -p81541 -tp81542 -a(S"'dec_PropertyGroup'/2" -p81543 -S"'dec_PropertyGroup'(${1:Tlv}, ${2:TagIn}) $3" -p81544 -tp81545 -a(S"'dec_PropertyParm'/2" -p81546 -S"'dec_PropertyParm'(${1:Tlv}, ${2:TagIn}) $3" -p81547 -tp81548 -a(S"'dec_RegulatedEmbeddedDescriptor'/2" -p81549 -S"'dec_RegulatedEmbeddedDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p81550 -tp81551 -a(S"'dec_Relation'/2" -p81552 -S"'dec_Relation'(${1:Tlv}, ${2:TagIn}) $3" -p81553 -tp81554 -a(S"'dec_RequestID'/2" -p81555 -S"'dec_RequestID'(${1:Tlv}, ${2:TagIn}) $3" -p81556 -tp81557 -a(S"'dec_RequestedActions'/2" -p81558 -S"'dec_RequestedActions'(${1:Tlv}, ${2:TagIn}) $3" -p81559 -tp81560 -a(S"'dec_RequestedEvent'/2" -p81561 -S"'dec_RequestedEvent'(${1:Tlv}, ${2:TagIn}) $3" -p81562 -tp81563 -a(S"'dec_SecondEventsDescriptor'/2" -p81564 -S"'dec_SecondEventsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p81565 -tp81566 -a(S"'dec_SecondRequestedActions'/2" -p81567 -S"'dec_SecondRequestedActions'(${1:Tlv}, ${2:TagIn}) $3" -p81568 -tp81569 -a(S"'dec_SecondRequestedEvent'/2" -p81570 -S"'dec_SecondRequestedEvent'(${1:Tlv}, ${2:TagIn}) $3" -p81571 -tp81572 -a(S"'dec_SecurityParmIndex'/2" -p81573 -S"'dec_SecurityParmIndex'(${1:Tlv}, ${2:TagIn}) $3" -p81574 -tp81575 -a(S"'dec_SegmentNumber'/2" -p81576 -S"'dec_SegmentNumber'(${1:Tlv}, ${2:TagIn}) $3" -p81577 -tp81578 -a(S"'dec_SelectLogic'/2" -p81579 -S"'dec_SelectLogic'(${1:Tlv}, ${2:TagIn}) $3" -p81580 -tp81581 -a(S"'dec_SeqSigList'/2" -p81582 -S"'dec_SeqSigList'(${1:Tlv}, ${2:TagIn}) $3" -p81583 -tp81584 -a(S"'dec_SequenceNum'/2" -p81585 -S"'dec_SequenceNum'(${1:Tlv}, ${2:TagIn}) $3" -p81586 -tp81587 -a(S"'dec_ServiceChangeAddress'/2" -p81588 -S"'dec_ServiceChangeAddress'(${1:Tlv}, ${2:TagIn}) $3" -p81589 -tp81590 -a(S"'dec_ServiceChangeMethod'/2" -p81591 -S"'dec_ServiceChangeMethod'(${1:Tlv}, ${2:TagIn}) $3" -p81592 -tp81593 -a(S"'dec_ServiceChangeParm'/2" -p81594 -S"'dec_ServiceChangeParm'(${1:Tlv}, ${2:TagIn}) $3" -p81595 -tp81596 -a(S"'dec_ServiceChangeProfile'/2" -p81597 -S"'dec_ServiceChangeProfile'(${1:Tlv}, ${2:TagIn}) $3" -p81598 -tp81599 -a(S"'dec_ServiceChangeReply'/2" -p81600 -S"'dec_ServiceChangeReply'(${1:Tlv}, ${2:TagIn}) $3" -p81601 -tp81602 -a(S"'dec_ServiceChangeRequest'/2" -p81603 -S"'dec_ServiceChangeRequest'(${1:Tlv}, ${2:TagIn}) $3" -p81604 -tp81605 -a(S"'dec_ServiceChangeResParm'/2" -p81606 -S"'dec_ServiceChangeResParm'(${1:Tlv}, ${2:TagIn}) $3" -p81607 -tp81608 -a(S"'dec_ServiceChangeResult'/2" -p81609 -S"'dec_ServiceChangeResult'(${1:Tlv}, ${2:TagIn}) $3" -p81610 -tp81611 -a(S"'dec_ServiceState'/2" -p81612 -S"'dec_ServiceState'(${1:Tlv}, ${2:TagIn}) $3" -p81613 -tp81614 -a(S"'dec_SigParameter'/2" -p81615 -S"'dec_SigParameter'(${1:Tlv}, ${2:TagIn}) $3" -p81616 -tp81617 -a(S"'dec_Signal'/2" -p81618 -S"'dec_Signal'(${1:Tlv}, ${2:TagIn}) $3" -p81619 -tp81620 -a(S"'dec_SignalDirection'/2" -p81621 -S"'dec_SignalDirection'(${1:Tlv}, ${2:TagIn}) $3" -p81622 -tp81623 -a(S"'dec_SignalName'/2" -p81624 -S"'dec_SignalName'(${1:Tlv}, ${2:TagIn}) $3" -p81625 -tp81626 -a(S"'dec_SignalRequest'/2" -p81627 -S"'dec_SignalRequest'(${1:Tlv}, ${2:TagIn}) $3" -p81628 -tp81629 -a(S"'dec_SignalType'/2" -p81630 -S"'dec_SignalType'(${1:Tlv}, ${2:TagIn}) $3" -p81631 -tp81632 -a(S"'dec_SignalsDescriptor'/2" -p81633 -S"'dec_SignalsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p81634 -tp81635 -a(S"'dec_StatisticsDescriptor'/2" -p81636 -S"'dec_StatisticsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p81637 -tp81638 -a(S"'dec_StatisticsParameter'/2" -p81639 -S"'dec_StatisticsParameter'(${1:Tlv}, ${2:TagIn}) $3" -p81640 -tp81641 -a(S"'dec_StreamDescriptor'/2" -p81642 -S"'dec_StreamDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p81643 -tp81644 -a(S"'dec_StreamID'/2" -p81645 -S"'dec_StreamID'(${1:Tlv}, ${2:TagIn}) $3" -p81646 -tp81647 -a(S"'dec_StreamMode'/2" -p81648 -S"'dec_StreamMode'(${1:Tlv}, ${2:TagIn}) $3" -p81649 -tp81650 -a(S"'dec_StreamParms'/2" -p81651 -S"'dec_StreamParms'(${1:Tlv}, ${2:TagIn}) $3" -p81652 -tp81653 -a(S"'dec_SubtractRequest'/2" -p81654 -S"'dec_SubtractRequest'(${1:Tlv}, ${2:TagIn}) $3" -p81655 -tp81656 -a(S"'dec_TermListAuditResult'/2" -p81657 -S"'dec_TermListAuditResult'(${1:Tlv}, ${2:TagIn}) $3" -p81658 -tp81659 -a(S"'dec_TerminationAudit'/2" -p81660 -S"'dec_TerminationAudit'(${1:Tlv}, ${2:TagIn}) $3" -p81661 -tp81662 -a(S"'dec_TerminationID'/2" -p81663 -S"'dec_TerminationID'(${1:Tlv}, ${2:TagIn}) $3" -p81664 -tp81665 -a(S"'dec_TerminationIDList'/2" -p81666 -S"'dec_TerminationIDList'(${1:Tlv}, ${2:TagIn}) $3" -p81667 -tp81668 -a(S"'dec_TerminationStateDescriptor'/2" -p81669 -S"'dec_TerminationStateDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p81670 -tp81671 -a(S"'dec_TimeNotation'/2" -p81672 -S"'dec_TimeNotation'(${1:Tlv}, ${2:TagIn}) $3" -p81673 -tp81674 -a(S"'dec_TopologyRequest'/2" -p81675 -S"'dec_TopologyRequest'(${1:Tlv}, ${2:TagIn}) $3" -p81676 -tp81677 -a(S"'dec_Transaction'/2" -p81678 -S"'dec_Transaction'(${1:Tlv}, ${2:TagIn}) $3" -p81679 -tp81680 -a(S"'dec_TransactionAck'/2" -p81681 -S"'dec_TransactionAck'(${1:Tlv}, ${2:TagIn}) $3" -p81682 -tp81683 -a(S"'dec_TransactionId'/2" -p81684 -S"'dec_TransactionId'(${1:Tlv}, ${2:TagIn}) $3" -p81685 -tp81686 -a(S"'dec_TransactionPending'/2" -p81687 -S"'dec_TransactionPending'(${1:Tlv}, ${2:TagIn}) $3" -p81688 -tp81689 -a(S"'dec_TransactionReply'/2" -p81690 -S"'dec_TransactionReply'(${1:Tlv}, ${2:TagIn}) $3" -p81691 -tp81692 -a(S"'dec_TransactionRequest'/2" -p81693 -S"'dec_TransactionRequest'(${1:Tlv}, ${2:TagIn}) $3" -p81694 -tp81695 -a(S"'dec_TransactionResponseAck'/2" -p81696 -S"'dec_TransactionResponseAck'(${1:Tlv}, ${2:TagIn}) $3" -p81697 -tp81698 -a(S"'dec_Value'/2" -p81699 -S"'dec_Value'(${1:Tlv}, ${2:TagIn}) $3" -p81700 -tp81701 -a(S"'dec_WildcardField'/2" -p81702 -S"'dec_WildcardField'(${1:Tlv}, ${2:TagIn}) $3" -p81703 -tp81704 -a(S"'enc_ActionReply'/2" -p81705 -S"'enc_ActionReply'(${1:Val}, ${2:TagIn}) $3" -p81706 -tp81707 -a(S"'enc_ActionRequest'/2" -p81708 -S"'enc_ActionRequest'(${1:Val}, ${2:TagIn}) $3" -p81709 -tp81710 -a(S"'enc_AmmDescriptor'/2" -p81711 -S"'enc_AmmDescriptor'(${1:Val}, ${2:TagIn}) $3" -p81712 -tp81713 -a(S"'enc_AmmRequest'/2" -p81714 -S"'enc_AmmRequest'(${1:Val}, ${2:TagIn}) $3" -p81715 -tp81716 -a(S"'enc_AmmsReply'/2" -p81717 -S"'enc_AmmsReply'(${1:Val}, ${2:TagIn}) $3" -p81718 -tp81719 -a(S"'enc_AuditDescriptor'/2" -p81720 -S"'enc_AuditDescriptor'(${1:Val}, ${2:TagIn}) $3" -p81721 -tp81722 -a(S"'enc_AuditReply'/2" -p81723 -S"'enc_AuditReply'(${1:Val}, ${2:TagIn}) $3" -p81724 -tp81725 -a(S"'enc_AuditRequest'/2" -p81726 -S"'enc_AuditRequest'(${1:Val}, ${2:TagIn}) $3" -p81727 -tp81728 -a(S"'enc_AuditResult'/2" -p81729 -S"'enc_AuditResult'(${1:Val}, ${2:TagIn}) $3" -p81730 -tp81731 -a(S"'enc_AuditReturnParameter'/2" -p81732 -S"'enc_AuditReturnParameter'(${1:Val}, ${2:TagIn}) $3" -p81733 -tp81734 -a(S"'enc_AuthData'/2" -p81735 -S"'enc_AuthData'(${1:Val}, ${2:TagIn}) $3" -p81736 -tp81737 -a(S"'enc_AuthenticationHeader'/2" -p81738 -S"'enc_AuthenticationHeader'(${1:Val}, ${2:TagIn}) $3" -p81739 -tp81740 -a(S"'enc_Command'/2" -p81741 -S"'enc_Command'(${1:Val}, ${2:TagIn}) $3" -p81742 -tp81743 -a(S"'enc_CommandReply'/2" -p81744 -S"'enc_CommandReply'(${1:Val}, ${2:TagIn}) $3" -p81745 -tp81746 -a(S"'enc_CommandRequest'/2" -p81747 -S"'enc_CommandRequest'(${1:Val}, ${2:TagIn}) $3" -p81748 -tp81749 -a(S"'enc_ContextAttrAuditRequest'/2" -p81750 -S"'enc_ContextAttrAuditRequest'(${1:Val}, ${2:TagIn}) $3" -p81751 -tp81752 -a(S"'enc_ContextID'/2" -p81753 -S"'enc_ContextID'(${1:Val}, ${2:TagIn}) $3" -p81754 -tp81755 -a(S"'enc_ContextRequest'/2" -p81756 -S"'enc_ContextRequest'(${1:Val}, ${2:TagIn}) $3" -p81757 -tp81758 -a(S"'enc_DigitMapDescriptor'/2" -p81759 -S"'enc_DigitMapDescriptor'(${1:Val}, ${2:TagIn}) $3" -p81760 -tp81761 -a(S"'enc_DigitMapName'/2" -p81762 -S"'enc_DigitMapName'(${1:Val}, ${2:TagIn}) $3" -p81763 -tp81764 -a(S"'enc_DigitMapValue'/2" -p81765 -S"'enc_DigitMapValue'(${1:Val}, ${2:TagIn}) $3" -p81766 -tp81767 -a(S"'enc_DomainName'/2" -p81768 -S"'enc_DomainName'(${1:Val}, ${2:TagIn}) $3" -p81769 -tp81770 -a(S"'enc_ErrorCode'/2" -p81771 -S"'enc_ErrorCode'(${1:Val}, ${2:TagIn}) $3" -p81772 -tp81773 -a(S"'enc_ErrorDescriptor'/2" -p81774 -S"'enc_ErrorDescriptor'(${1:Val}, ${2:TagIn}) $3" -p81775 -tp81776 -a(S"'enc_ErrorText'/2" -p81777 -S"'enc_ErrorText'(${1:Val}, ${2:TagIn}) $3" -p81778 -tp81779 -a(S"'enc_EventBufferControl'/2" -p81780 -S"'enc_EventBufferControl'(${1:Val}, ${2:TagIn}) $3" -p81781 -tp81782 -a(S"'enc_EventBufferDescriptor'/2" -p81783 -S"'enc_EventBufferDescriptor'(${1:Val}, ${2:TagIn}) $3" -p81784 -tp81785 -a(S"'enc_EventDM'/2" -p81786 -S"'enc_EventDM'(${1:Val}, ${2:TagIn}) $3" -p81787 -tp81788 -a(S"'enc_EventName'/2" -p81789 -S"'enc_EventName'(${1:Val}, ${2:TagIn}) $3" -p81790 -tp81791 -a(S"'enc_EventParameter'/2" -p81792 -S"'enc_EventParameter'(${1:Val}, ${2:TagIn}) $3" -p81793 -tp81794 -a(S"'enc_EventSpec'/2" -p81795 -S"'enc_EventSpec'(${1:Val}, ${2:TagIn}) $3" -p81796 -tp81797 -a(S"'enc_EventsDescriptor'/2" -p81798 -S"'enc_EventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p81799 -tp81800 -a(S"'enc_H221NonStandard'/2" -p81801 -S"'enc_H221NonStandard'(${1:Val}, ${2:TagIn}) $3" -p81802 -tp81803 -a(S"'enc_IP4Address'/2" -p81804 -S"'enc_IP4Address'(${1:Val}, ${2:TagIn}) $3" -p81805 -tp81806 -a(S"'enc_IP6Address'/2" -p81807 -S"'enc_IP6Address'(${1:Val}, ${2:TagIn}) $3" -p81808 -tp81809 -a(S"'enc_IndAudDigitMapDescriptor'/2" -p81810 -S"'enc_IndAudDigitMapDescriptor'(${1:Val}, ${2:TagIn}) $3" -p81811 -tp81812 -a(S"'enc_IndAudEventBufferDescriptor'/2" -p81813 -S"'enc_IndAudEventBufferDescriptor'(${1:Val}, ${2:TagIn}) $3" -p81814 -tp81815 -a(S"'enc_IndAudEventsDescriptor'/2" -p81816 -S"'enc_IndAudEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p81817 -tp81818 -a(S"'enc_IndAudLocalControlDescriptor'/2" -p81819 -S"'enc_IndAudLocalControlDescriptor'(${1:Val}, ${2:TagIn}) $3" -p81820 -tp81821 -a(S"'enc_IndAudLocalRemoteDescriptor'/2" -p81822 -S"'enc_IndAudLocalRemoteDescriptor'(${1:Val}, ${2:TagIn}) $3" -p81823 -tp81824 -a(S"'enc_IndAudMediaDescriptor'/2" -p81825 -S"'enc_IndAudMediaDescriptor'(${1:Val}, ${2:TagIn}) $3" -p81826 -tp81827 -a(S"'enc_IndAudPackagesDescriptor'/2" -p81828 -S"'enc_IndAudPackagesDescriptor'(${1:Val}, ${2:TagIn}) $3" -p81829 -tp81830 -a(S"'enc_IndAudPropertyGroup'/2" -p81831 -S"'enc_IndAudPropertyGroup'(${1:Val}, ${2:TagIn}) $3" -p81832 -tp81833 -a(S"'enc_IndAudPropertyParm'/2" -p81834 -S"'enc_IndAudPropertyParm'(${1:Val}, ${2:TagIn}) $3" -p81835 -tp81836 -a(S"'enc_IndAudSeqSigList'/2" -p81837 -S"'enc_IndAudSeqSigList'(${1:Val}, ${2:TagIn}) $3" -p81838 -tp81839 -a(S"'enc_IndAudSignal'/2" -p81840 -S"'enc_IndAudSignal'(${1:Val}, ${2:TagIn}) $3" -p81841 -tp81842 -a(S"'enc_IndAudSignalsDescriptor'/2" -p81843 -S"'enc_IndAudSignalsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p81844 -tp81845 -a(S"'enc_IndAudStatisticsDescriptor'/2" -p81846 -S"'enc_IndAudStatisticsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p81847 -tp81848 -a(S"'enc_IndAudStreamDescriptor'/2" -p81849 -S"'enc_IndAudStreamDescriptor'(${1:Val}, ${2:TagIn}) $3" -p81850 -tp81851 -a(S"'enc_IndAudStreamParms'/2" -p81852 -S"'enc_IndAudStreamParms'(${1:Val}, ${2:TagIn}) $3" -p81853 -tp81854 -a(S"'enc_IndAudTerminationStateDescriptor'/2" -p81855 -S"'enc_IndAudTerminationStateDescriptor'(${1:Val}, ${2:TagIn}) $3" -p81856 -tp81857 -a(S"'enc_IndAuditParameter'/2" -p81858 -S"'enc_IndAuditParameter'(${1:Val}, ${2:TagIn}) $3" -p81859 -tp81860 -a(S"'enc_LocalControlDescriptor'/2" -p81861 -S"'enc_LocalControlDescriptor'(${1:Val}, ${2:TagIn}) $3" -p81862 -tp81863 -a(S"'enc_LocalRemoteDescriptor'/2" -p81864 -S"'enc_LocalRemoteDescriptor'(${1:Val}, ${2:TagIn}) $3" -p81865 -tp81866 -a(S"'enc_MId'/2" -p81867 -S"'enc_MId'(${1:Val}, ${2:TagIn}) $3" -p81868 -tp81869 -a(S"'enc_MediaDescriptor'/2" -p81870 -S"'enc_MediaDescriptor'(${1:Val}, ${2:TagIn}) $3" -p81871 -tp81872 -a(S"'enc_MegacoMessage'/2" -p81873 -S"'enc_MegacoMessage'(${1:Val}, ${2:TagIn}) $3" -p81874 -tp81875 -a(S"'enc_Message'/2" -p81876 -S"'enc_Message'(${1:Val}, ${2:TagIn}) $3" -p81877 -tp81878 -a(S"'enc_ModemDescriptor'/2" -p81879 -S"'enc_ModemDescriptor'(${1:Val}, ${2:TagIn}) $3" -p81880 -tp81881 -a(S"'enc_ModemType'/2" -p81882 -S"'enc_ModemType'(${1:Val}, ${2:TagIn}) $3" -p81883 -tp81884 -a(S"'enc_MuxDescriptor'/2" -p81885 -S"'enc_MuxDescriptor'(${1:Val}, ${2:TagIn}) $3" -p81886 -tp81887 -a(S"'enc_MuxType'/2" -p81888 -S"'enc_MuxType'(${1:Val}, ${2:TagIn}) $3" -p81889 -tp81890 -a(S"'enc_Name'/2" -p81891 -S"'enc_Name'(${1:Val}, ${2:TagIn}) $3" -p81892 -tp81893 -a(S"'enc_NonStandardData'/2" -p81894 -S"'enc_NonStandardData'(${1:Val}, ${2:TagIn}) $3" -p81895 -tp81896 -a(S"'enc_NonStandardIdentifier'/2" -p81897 -S"'enc_NonStandardIdentifier'(${1:Val}, ${2:TagIn}) $3" -p81898 -tp81899 -a(S"'enc_NotifyBehaviour'/2" -p81900 -S"'enc_NotifyBehaviour'(${1:Val}, ${2:TagIn}) $3" -p81901 -tp81902 -a(S"'enc_NotifyCompletion'/2" -p81903 -S"'enc_NotifyCompletion'(${1:Val}, ${2:TagIn}) $3" -p81904 -tp81905 -a(S"'enc_NotifyReply'/2" -p81906 -S"'enc_NotifyReply'(${1:Val}, ${2:TagIn}) $3" -p81907 -tp81908 -a(S"'enc_NotifyRequest'/2" -p81909 -S"'enc_NotifyRequest'(${1:Val}, ${2:TagIn}) $3" -p81910 -tp81911 -a(S"'enc_ObservedEvent'/2" -p81912 -S"'enc_ObservedEvent'(${1:Val}, ${2:TagIn}) $3" -p81913 -tp81914 -a(S"'enc_ObservedEventsDescriptor'/2" -p81915 -S"'enc_ObservedEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p81916 -tp81917 -a(S"'enc_PackagesDescriptor'/2" -p81918 -S"'enc_PackagesDescriptor'(${1:Val}, ${2:TagIn}) $3" -p81919 -tp81920 -a(S"'enc_PackagesItem'/2" -p81921 -S"'enc_PackagesItem'(${1:Val}, ${2:TagIn}) $3" -p81922 -tp81923 -a(S"'enc_PathName'/2" -p81924 -S"'enc_PathName'(${1:Val}, ${2:TagIn}) $3" -p81925 -tp81926 -a(S"'enc_PkgdName'/2" -p81927 -S"'enc_PkgdName'(${1:Val}, ${2:TagIn}) $3" -p81928 -tp81929 -a(S"'enc_PropertyGroup'/2" -p81930 -S"'enc_PropertyGroup'(${1:Val}, ${2:TagIn}) $3" -p81931 -tp81932 -a(S"'enc_PropertyParm'/2" -p81933 -S"'enc_PropertyParm'(${1:Val}, ${2:TagIn}) $3" -p81934 -tp81935 -a(S"'enc_RegulatedEmbeddedDescriptor'/2" -p81936 -S"'enc_RegulatedEmbeddedDescriptor'(${1:Val}, ${2:TagIn}) $3" -p81937 -tp81938 -a(S"'enc_Relation'/2" -p81939 -S"'enc_Relation'(${1:Val}, ${2:TagIn}) $3" -p81940 -tp81941 -a(S"'enc_RequestID'/2" -p81942 -S"'enc_RequestID'(${1:Val}, ${2:TagIn}) $3" -p81943 -tp81944 -a(S"'enc_RequestedActions'/2" -p81945 -S"'enc_RequestedActions'(${1:Val}, ${2:TagIn}) $3" -p81946 -tp81947 -a(S"'enc_RequestedEvent'/2" -p81948 -S"'enc_RequestedEvent'(${1:Val}, ${2:TagIn}) $3" -p81949 -tp81950 -a(S"'enc_SecondEventsDescriptor'/2" -p81951 -S"'enc_SecondEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p81952 -tp81953 -a(S"'enc_SecondRequestedActions'/2" -p81954 -S"'enc_SecondRequestedActions'(${1:Val}, ${2:TagIn}) $3" -p81955 -tp81956 -a(S"'enc_SecondRequestedEvent'/2" -p81957 -S"'enc_SecondRequestedEvent'(${1:Val}, ${2:TagIn}) $3" -p81958 -tp81959 -a(S"'enc_SecurityParmIndex'/2" -p81960 -S"'enc_SecurityParmIndex'(${1:Val}, ${2:TagIn}) $3" -p81961 -tp81962 -a(S"'enc_SegmentNumber'/2" -p81963 -S"'enc_SegmentNumber'(${1:Val}, ${2:TagIn}) $3" -p81964 -tp81965 -a(S"'enc_SelectLogic'/2" -p81966 -S"'enc_SelectLogic'(${1:Val}, ${2:TagIn}) $3" -p81967 -tp81968 -a(S"'enc_SeqSigList'/2" -p81969 -S"'enc_SeqSigList'(${1:Val}, ${2:TagIn}) $3" -p81970 -tp81971 -a(S"'enc_SequenceNum'/2" -p81972 -S"'enc_SequenceNum'(${1:Val}, ${2:TagIn}) $3" -p81973 -tp81974 -a(S"'enc_ServiceChangeAddress'/2" -p81975 -S"'enc_ServiceChangeAddress'(${1:Val}, ${2:TagIn}) $3" -p81976 -tp81977 -a(S"'enc_ServiceChangeMethod'/2" -p81978 -S"'enc_ServiceChangeMethod'(${1:Val}, ${2:TagIn}) $3" -p81979 -tp81980 -a(S"'enc_ServiceChangeParm'/2" -p81981 -S"'enc_ServiceChangeParm'(${1:Val}, ${2:TagIn}) $3" -p81982 -tp81983 -a(S"'enc_ServiceChangeProfile'/2" -p81984 -S"'enc_ServiceChangeProfile'(${1:Val}, ${2:TagIn}) $3" -p81985 -tp81986 -a(S"'enc_ServiceChangeReply'/2" -p81987 -S"'enc_ServiceChangeReply'(${1:Val}, ${2:TagIn}) $3" -p81988 -tp81989 -a(S"'enc_ServiceChangeRequest'/2" -p81990 -S"'enc_ServiceChangeRequest'(${1:Val}, ${2:TagIn}) $3" -p81991 -tp81992 -a(S"'enc_ServiceChangeResParm'/2" -p81993 -S"'enc_ServiceChangeResParm'(${1:Val}, ${2:TagIn}) $3" -p81994 -tp81995 -a(S"'enc_ServiceChangeResult'/2" -p81996 -S"'enc_ServiceChangeResult'(${1:Val}, ${2:TagIn}) $3" -p81997 -tp81998 -a(S"'enc_ServiceState'/2" -p81999 -S"'enc_ServiceState'(${1:Val}, ${2:TagIn}) $3" -p82000 -tp82001 -a(S"'enc_SigParameter'/2" -p82002 -S"'enc_SigParameter'(${1:Val}, ${2:TagIn}) $3" -p82003 -tp82004 -a(S"'enc_Signal'/2" -p82005 -S"'enc_Signal'(${1:Val}, ${2:TagIn}) $3" -p82006 -tp82007 -a(S"'enc_SignalDirection'/2" -p82008 -S"'enc_SignalDirection'(${1:Val}, ${2:TagIn}) $3" -p82009 -tp82010 -a(S"'enc_SignalName'/2" -p82011 -S"'enc_SignalName'(${1:Val}, ${2:TagIn}) $3" -p82012 -tp82013 -a(S"'enc_SignalRequest'/2" -p82014 -S"'enc_SignalRequest'(${1:Val}, ${2:TagIn}) $3" -p82015 -tp82016 -a(S"'enc_SignalType'/2" -p82017 -S"'enc_SignalType'(${1:Val}, ${2:TagIn}) $3" -p82018 -tp82019 -a(S"'enc_SignalsDescriptor'/2" -p82020 -S"'enc_SignalsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p82021 -tp82022 -a(S"'enc_StatisticsDescriptor'/2" -p82023 -S"'enc_StatisticsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p82024 -tp82025 -a(S"'enc_StatisticsParameter'/2" -p82026 -S"'enc_StatisticsParameter'(${1:Val}, ${2:TagIn}) $3" -p82027 -tp82028 -a(S"'enc_StreamDescriptor'/2" -p82029 -S"'enc_StreamDescriptor'(${1:Val}, ${2:TagIn}) $3" -p82030 -tp82031 -a(S"'enc_StreamID'/2" -p82032 -S"'enc_StreamID'(${1:Val}, ${2:TagIn}) $3" -p82033 -tp82034 -a(S"'enc_StreamMode'/2" -p82035 -S"'enc_StreamMode'(${1:Val}, ${2:TagIn}) $3" -p82036 -tp82037 -a(S"'enc_StreamParms'/2" -p82038 -S"'enc_StreamParms'(${1:Val}, ${2:TagIn}) $3" -p82039 -tp82040 -a(S"'enc_SubtractRequest'/2" -p82041 -S"'enc_SubtractRequest'(${1:Val}, ${2:TagIn}) $3" -p82042 -tp82043 -a(S"'enc_TermListAuditResult'/2" -p82044 -S"'enc_TermListAuditResult'(${1:Val}, ${2:TagIn}) $3" -p82045 -tp82046 -a(S"'enc_TerminationAudit'/2" -p82047 -S"'enc_TerminationAudit'(${1:Val}, ${2:TagIn}) $3" -p82048 -tp82049 -a(S"'enc_TerminationID'/2" -p82050 -S"'enc_TerminationID'(${1:Val}, ${2:TagIn}) $3" -p82051 -tp82052 -a(S"'enc_TerminationIDList'/2" -p82053 -S"'enc_TerminationIDList'(${1:Val}, ${2:TagIn}) $3" -p82054 -tp82055 -a(S"'enc_TerminationStateDescriptor'/2" -p82056 -S"'enc_TerminationStateDescriptor'(${1:Val}, ${2:TagIn}) $3" -p82057 -tp82058 -a(S"'enc_TimeNotation'/2" -p82059 -S"'enc_TimeNotation'(${1:Val}, ${2:TagIn}) $3" -p82060 -tp82061 -a(S"'enc_TopologyRequest'/2" -p82062 -S"'enc_TopologyRequest'(${1:Val}, ${2:TagIn}) $3" -p82063 -tp82064 -a(S"'enc_Transaction'/2" -p82065 -S"'enc_Transaction'(${1:Val}, ${2:TagIn}) $3" -p82066 -tp82067 -a(S"'enc_TransactionAck'/2" -p82068 -S"'enc_TransactionAck'(${1:Val}, ${2:TagIn}) $3" -p82069 -tp82070 -a(S"'enc_TransactionId'/2" -p82071 -S"'enc_TransactionId'(${1:Val}, ${2:TagIn}) $3" -p82072 -tp82073 -a(S"'enc_TransactionPending'/2" -p82074 -S"'enc_TransactionPending'(${1:Val}, ${2:TagIn}) $3" -p82075 -tp82076 -a(S"'enc_TransactionReply'/2" -p82077 -S"'enc_TransactionReply'(${1:Val}, ${2:TagIn}) $3" -p82078 -tp82079 -a(S"'enc_TransactionRequest'/2" -p82080 -S"'enc_TransactionRequest'(${1:Val}, ${2:TagIn}) $3" -p82081 -tp82082 -a(S"'enc_TransactionResponseAck'/2" -p82083 -S"'enc_TransactionResponseAck'(${1:Val}, ${2:TagIn}) $3" -p82084 -tp82085 -a(S"'enc_Value'/2" -p82086 -S"'enc_Value'(${1:Val}, ${2:TagIn}) $3" -p82087 -tp82088 -a(S"'enc_WildcardField'/2" -p82089 -S"'enc_WildcardField'(${1:Val}, ${2:TagIn}) $3" -p82090 -tp82091 -a(S'decode/2' -p82092 -S'decode(${1:Type}, ${2:Data}) $3' -p82093 -tp82094 -a(S'decode_disp/2' -p82095 -S'decode_disp(${1:Type}, ${2:Data}) $3' -p82096 -tp82097 -a(S'decode_message_acts_partial/1' -p82098 -S'decode_message_acts_partial(${1:Bytes}) $2' -p82099 -tp82100 -a(S'decode_message_mId/1' -p82101 -S'decode_message_mId(${1:Bytes}) $2' -p82102 -tp82103 -a(S'decode_message_trans_partial/1' -p82104 -S'decode_message_trans_partial(${1:Bytes}) $2' -p82105 -tp82106 -a(S'decode_message_version/1' -p82107 -S'decode_message_version(${1:Bytes}) $2' -p82108 -tp82109 -a(S'decode_part/2' -p82110 -S'decode_part(${1:Type}, ${2:Data0}) $3' -p82111 -tp82112 -a(S'encode/2' -p82113 -S'encode(${1:Type}, ${2:Data}) $3' -p82114 -tp82115 -a(S'encode_disp/2' -p82116 -S'encode_disp(${1:Type}, ${2:Data}) $3' -p82117 -tp82118 -a(S'encoding_rule/0' -p82119 -S'encoding_rule() $1' -p82120 -tp82121 -a(S'info/0' -p82122 -S'info() $1' -p82123 -tp82124 -asS'CosNotifyFilter_UnsupportedFilterableData' -p82125 -(lp82126 -(S'id/0' -p82127 -S'id() $1' -p82128 -tp82129 -a(S'name/0' -p82130 -S'name() $1' -p82131 -tp82132 -a(S'tc/0' -p82133 -S'tc() $1' -p82134 -tp82135 -asS'CosNotifyComm_SequencePullConsumer' -p82136 -(lp82137 -(S'code_change/3' -p82138 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p82139 -tp82140 -a(S'disconnect_sequence_pull_consumer/1' -p82141 -S'disconnect_sequence_pull_consumer(${1:OE_THIS}) $2' -p82142 -tp82143 -a(S'disconnect_sequence_pull_consumer/2' -p82144 -S'disconnect_sequence_pull_consumer(${1:OE_THIS}, ${2:OE_Options}) $3' -p82145 -tp82146 -a(S'handle_call/3' -p82147 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p82148 -tp82149 -a(S'handle_cast/2' -p82150 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p82151 -tp82152 -a(S'handle_info/2' -p82153 -S'handle_info(${1:Param1}, ${2:State}) $3' -p82154 -tp82155 -a(S'init/1' -p82156 -S'init(${1:Env}) $2' -p82157 -tp82158 -a(S'oe_create/0' -p82159 -S'oe_create() $1' -p82160 -tp82161 -a(S'oe_create/1' -p82162 -S'oe_create(${1:Env}) $2' -p82163 -tp82164 -a(S'oe_create/2' -p82165 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p82166 -tp82167 -a(S'oe_create_link/0' -p82168 -S'oe_create_link() $1' -p82169 -tp82170 -a(S'oe_create_link/1' -p82171 -S'oe_create_link(${1:Env}) $2' -p82172 -tp82173 -a(S'oe_create_link/2' -p82174 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p82175 -tp82176 -a(S'oe_get_interface/0' -p82177 -S'oe_get_interface() $1' -p82178 -tp82179 -a(S'oe_is_a/1' -p82180 -S'oe_is_a(${1:Param1}) $2' -p82181 -tp82182 -a(S'oe_tc/1' -p82183 -S'oe_tc(${1:Param1}) $2' -p82184 -tp82185 -a(S'offer_change/3' -p82186 -S'offer_change(${1:OE_THIS}, ${2:Added}, ${3:Removed}) $4' -p82187 -tp82188 -a(S'offer_change/4' -p82189 -S'offer_change(${1:OE_THIS}, ${2:OE_Options}, ${3:Added}, ${4:Removed}) $5' -p82190 -tp82191 -a(S'terminate/2' -p82192 -S'terminate(${1:Reason}, ${2:State}) $3' -p82193 -tp82194 -a(S'typeID/0' -p82195 -S'typeID() $1' -p82196 -tp82197 -asS'wxColourData' -p82198 -(lp82199 -(S'destroy/1' -p82200 -S'destroy(${1:This}) $2' -p82201 -tp82202 -a(S'getChooseFull/1' -p82203 -S'getChooseFull(${1:This}) $2' -p82204 -tp82205 -a(S'getColour/1' -p82206 -S'getColour(${1:This}) $2' -p82207 -tp82208 -a(S'getCustomColour/2' -p82209 -S'getCustomColour(${1:This}, ${2:I}) $3' -p82210 -tp82211 -a(S'new/0' -p82212 -S'new() $1' -p82213 -tp82214 -a(S'new/1' -p82215 -S'new(${1:Data}) $2' -p82216 -tp82217 -a(S'parent_class/1' -p82218 -S'parent_class(${1:Param1}) $2' -p82219 -tp82220 -a(S'setChooseFull/2' -p82221 -S'setChooseFull(${1:This}, ${2:Flag}) $3' -p82222 -tp82223 -a(S'setColour/2' -p82224 -S'setColour(${1:This}, ${2:Colour}) $3' -p82225 -tp82226 -a(S'setCustomColour/3' -p82227 -S'setCustomColour(${1:This}, ${2:I}, ${3:Colour}) $4' -p82228 -tp82229 -asS'egd' -p82230 -(lp82231 -(S'arc/4' -p82232 -S'arc(${1:Image}, ${2:P1}, ${3:P2}, ${4:Color}) $5' -p82233 -tp82234 -a(S'arc/5' -p82235 -S'arc(${1:Image}, ${2:P1}, ${3:P2}, ${4:D}, ${5:Color}) $6' -p82236 -tp82237 -a(S'color/1' -p82238 -S'color(${1:Color}) $2' -p82239 -tp82240 -a(S'color/2' -p82241 -S'color(${1:Param1}, ${2:Color}) $3' -p82242 -tp82243 -a(S'create/2' -p82244 -S'create(${1:Width}, ${2:Height}) $3' -p82245 -tp82246 -a(S'destroy/1' -p82247 -S'destroy(${1:Image}) $2' -p82248 -tp82249 -a(S'filledEllipse/4' -p82250 -S'filledEllipse(${1:Image}, ${2:P1}, ${3:P2}, ${4:Color}) $5' -p82251 -tp82252 -a(S'filledRectangle/4' -p82253 -S'filledRectangle(${1:Image}, ${2:P1}, ${3:P2}, ${4:Color}) $5' -p82254 -tp82255 -a(S'filledTriangle/5' -p82256 -S'filledTriangle(${1:Image}, ${2:P1}, ${3:P2}, ${4:P3}, ${5:Color}) $6' -p82257 -tp82258 -a(S'information/1' -p82259 -S'information(${1:Pid}) $2' -p82260 -tp82261 -a(S'line/4' -p82262 -S'line(${1:Image}, ${2:P1}, ${3:P2}, ${4:Color}) $5' -p82263 -tp82264 -a(S'polygon/3' -p82265 -S'polygon(${1:Image}, ${2:Pts}, ${3:Color}) $4' -p82266 -tp82267 -a(S'rectangle/4' -p82268 -S'rectangle(${1:Image}, ${2:P1}, ${3:P2}, ${4:Color}) $5' -p82269 -tp82270 -a(S'render/1' -p82271 -S'render(${1:Image}) $2' -p82272 -tp82273 -a(S'render/2' -p82274 -S'render(${1:Image}, ${2:Type}) $3' -p82275 -tp82276 -a(S'render/3' -p82277 -S'render(${1:Image}, ${2:Type}, ${3:Options}) $4' -p82278 -tp82279 -a(S'save/2' -p82280 -S'save(${1:Binary}, ${2:Filename}) $3' -p82281 -tp82282 -a(S'text/5' -p82283 -S'text(${1:Image}, ${2:P}, ${3:Font}, ${4:Text}, ${5:Color}) $6' -p82284 -tp82285 -asS'megaco_binary_encoder_lib' -p82286 -(lp82287 -(S'decode_message/5' -p82288 -S'decode_message(${1:EC}, ${2:Bin}, ${3:AsnMod}, ${4:TransMod}, ${5:Param5}) $6' -p82289 -tp82290 -a(S'decode_message_dynamic/4' -p82291 -S'decode_message_dynamic(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p82292 -tp82293 -a(S'decode_mini_message/4' -p82294 -S'decode_mini_message(${1:Param1}, ${2:Bin}, ${3:Mod}, ${4:Param4}) $5' -p82295 -tp82296 -a(S'decode_mini_message_dynamic/4' -p82297 -S'decode_mini_message_dynamic(${1:EC}, ${2:Bin}, ${3:Param3}, ${4:Form}) $5' -p82298 -tp82299 -a(S'encode_action_reply/5' -p82300 -S'encode_action_reply(${1:EC}, ${2:ARs}, ${3:AsnMod}, ${4:TransMod}, ${5:Param5}) $6' -p82301 -tp82302 -a(S'encode_action_request/5' -p82303 -S'encode_action_request(${1:EC}, ${2:AR}, ${3:AsnMod}, ${4:TransMod}, ${5:Param5}) $6' -p82304 -tp82305 -a(S'encode_action_requests/5' -p82306 -S'encode_action_requests(${1:EC}, ${2:ARs}, ${3:AsnMod}, ${4:TransMod}, ${5:Param5}) $6' -p82307 -tp82308 -a(S'encode_message/5' -p82309 -S'encode_message(${1:EC}, ${2:MegaMsg}, ${3:AsnMod}, ${4:TransMod}, ${5:Param5}) $6' -p82310 -tp82311 -a(S'encode_transaction/5' -p82312 -S'encode_transaction(${1:EC}, ${2:T}, ${3:AsnMod}, ${4:TransMod}, ${5:Param5}) $6' -p82313 -tp82314 -a(S'version_of/4' -p82315 -S'version_of() $1' -p82316 -tp82317 -asS'CosFileTransfer_FileList' -p82318 -(lp82319 -(S'id/0' -p82320 -S'id() $1' -p82321 -tp82322 -a(S'name/0' -p82323 -S'name() $1' -p82324 -tp82325 -a(S'tc/0' -p82326 -S'tc() $1' -p82327 -tp82328 -asS'etop' -p82329 -(lp82330 -(S'config/2' -p82331 -S'config(${1:Key}, ${2:Value}) $3' -p82332 -tp82333 -a(S'dump/1' -p82334 -S'dump(${1:File}) $2' -p82335 -tp82336 -a(S'getopt/2' -p82337 -S'getopt(${1:What}, ${2:Config}) $3' -p82338 -tp82339 -a(S'help/0' -p82340 -S'help() $1' -p82341 -tp82342 -a(S'loadinfo/1' -p82343 -S'loadinfo(${1:SysI}) $2' -p82344 -tp82345 -a(S'meminfo/2' -p82346 -S'meminfo(${1:MemI}, ${2:Param2}) $3' -p82347 -tp82348 -a(S'start/0' -p82349 -S'start() $1' -p82350 -tp82351 -a(S'start/1' -p82352 -S'start(${1:Opts}) $2' -p82353 -tp82354 -a(S'stop/0' -p82355 -S'stop() $1' -p82356 -tp82357 -a(S'update/1' -p82358 -S'update(${1:Opts}) $2' -p82359 -tp82360 -asS'mnesia_recover' -p82361 -(lp82362 -(S'allow_garb/0' -p82363 -S'allow_garb() $1' -p82364 -tp82365 -a(S'call/1' -p82366 -S'call(${1:Msg}) $2' -p82367 -tp82368 -a(S'code_change/3' -p82369 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p82370 -tp82371 -a(S'connect_nodes/1' -p82372 -S'connect_nodes(${1:Ns}) $2' -p82373 -tp82374 -a(S'disconnect/1' -p82375 -S'disconnect(${1:Node}) $2' -p82376 -tp82377 -a(S'dump_decision_tab/0' -p82378 -S'dump_decision_tab() $1' -p82379 -tp82380 -a(S'get_master_node_info/0' -p82381 -S'get_master_node_info() $1' -p82382 -tp82383 -a(S'get_master_node_tables/0' -p82384 -S'get_master_node_tables() $1' -p82385 -tp82386 -a(S'get_master_nodes/1' -p82387 -S'get_master_nodes(${1:Tab}) $2' -p82388 -tp82389 -a(S'get_mnesia_downs/0' -p82390 -S'get_mnesia_downs() $1' -p82391 -tp82392 -a(S'handle_call/3' -p82393 -S'handle_call(${1:Msg}, ${2:From}, ${3:State}) $4' -p82394 -tp82395 -a(S'handle_cast/2' -p82396 -S'handle_cast(${1:Msg}, ${2:State}) $3' -p82397 -tp82398 -a(S'handle_info/2' -p82399 -S'handle_info(${1:Msg}, ${2:State}) $3' -p82400 -tp82401 -a(S'has_mnesia_down/1' -p82402 -S'has_mnesia_down(${1:Node}) $2' -p82403 -tp82404 -a(S'incr_trans_tid_serial/0' -p82405 -S'incr_trans_tid_serial() $1' -p82406 -tp82407 -a(S'init/0' -p82408 -S'init() $1' -p82409 -tp82410 -a(S'init/1' -p82411 -S'init(${1:Param1}) $2' -p82412 -tp82413 -a(S'log_decision/1' -p82414 -S'log_decision(${1:D}) $2' -p82415 -tp82416 -a(S'log_dump_overload/1' -p82417 -S'log_dump_overload(${1:Flag}) $2' -p82418 -tp82419 -a(S'log_master_nodes/3' -p82420 -S'log_master_nodes(${1:Args}, ${2:UseDir}, ${3:IsRunning}) $4' -p82421 -tp82422 -a(S'log_mnesia_down/1' -p82423 -S'log_mnesia_down(${1:Node}) $2' -p82424 -tp82425 -a(S'log_mnesia_up/1' -p82426 -S'log_mnesia_up(${1:Node}) $2' -p82427 -tp82428 -a(S'mnesia_down/1' -p82429 -S'mnesia_down(${1:Node}) $2' -p82430 -tp82431 -a(S'note_decision/2' -p82432 -S'note_decision(${1:Tid}, ${2:Outcome}) $3' -p82433 -tp82434 -a(S'note_log_decision/2' -p82435 -S'note_log_decision(${1:NewD}, ${2:InitBy}) $3' -p82436 -tp82437 -a(S'outcome/2' -p82438 -S'outcome(${1:Tid}, ${2:Default}) $3' -p82439 -tp82440 -a(S'start/0' -p82441 -S'start() $1' -p82442 -tp82443 -a(S'start_garb/0' -p82444 -S'start_garb() $1' -p82445 -tp82446 -a(S'still_pending/1' -p82447 -S'still_pending(${1:Param1}) $2' -p82448 -tp82449 -a(S'sync/0' -p82450 -S'sync() $1' -p82451 -tp82452 -a(S'sync_trans_tid_serial/1' -p82453 -S'sync_trans_tid_serial(${1:ThatCounter}) $2' -p82454 -tp82455 -a(S'terminate/2' -p82456 -S'terminate(${1:Reason}, ${2:State}) $3' -p82457 -tp82458 -a(S'wait_for_decision/2' -p82459 -S'wait_for_decision(${1:Param1}, ${2:Param2}) $3' -p82460 -tp82461 -a(S'what_happened/3' -p82462 -S'what_happened(${1:Tid}, ${2:Protocol}, ${3:Nodes}) $4' -p82463 -tp82464 -asS'dbg_ui_winman' -p82465 -(lp82466 -(S'clear_process/1' -p82467 -S'clear_process(${1:Title}) $2' -p82468 -tp82469 -a(S'code_change/3' -p82470 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p82471 -tp82472 -a(S'handle_call/3' -p82473 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p82474 -tp82475 -a(S'handle_cast/2' -p82476 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p82477 -tp82478 -a(S'handle_info/2' -p82479 -S'handle_info(${1:Param1}, ${2:State}) $3' -p82480 -tp82481 -a(S'init/1' -p82482 -S'init(${1:Param1}) $2' -p82483 -tp82484 -a(S'insert/2' -p82485 -S'insert(${1:Title}, ${2:Win}) $3' -p82486 -tp82487 -a(S'is_started/1' -p82488 -S'is_started(${1:Title}) $2' -p82489 -tp82490 -a(S'raise/1' -p82491 -S'raise(${1:Win}) $2' -p82492 -tp82493 -a(S'start/0' -p82494 -S'start() $1' -p82495 -tp82496 -a(S'terminate/2' -p82497 -S'terminate(${1:Param1}, ${2:State}) $3' -p82498 -tp82499 -a(S'update_windows_menu/1' -p82500 -S'update_windows_menu(${1:Param1}) $2' -p82501 -tp82502 -a(S'windows_menu/1' -p82503 -S'windows_menu(${1:MenuBar}) $2' -p82504 -tp82505 -asS'CosEventChannelAdmin_EventChannel' -p82506 -(lp82507 -(S'code_change/3' -p82508 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p82509 -tp82510 -a(S'destroy/1' -p82511 -S'destroy(${1:OE_THIS}) $2' -p82512 -tp82513 -a(S'destroy/2' -p82514 -S'destroy(${1:OE_THIS}, ${2:OE_Options}) $3' -p82515 -tp82516 -a(S'for_consumers/1' -p82517 -S'for_consumers(${1:OE_THIS}) $2' -p82518 -tp82519 -a(S'for_consumers/2' -p82520 -S'for_consumers(${1:OE_THIS}, ${2:OE_Options}) $3' -p82521 -tp82522 -a(S'for_suppliers/1' -p82523 -S'for_suppliers(${1:OE_THIS}) $2' -p82524 -tp82525 -a(S'for_suppliers/2' -p82526 -S'for_suppliers(${1:OE_THIS}, ${2:OE_Options}) $3' -p82527 -tp82528 -a(S'handle_call/3' -p82529 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p82530 -tp82531 -a(S'handle_cast/2' -p82532 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p82533 -tp82534 -a(S'handle_info/2' -p82535 -S'handle_info(${1:Param1}, ${2:State}) $3' -p82536 -tp82537 -a(S'init/1' -p82538 -S'init(${1:Env}) $2' -p82539 -tp82540 -a(S'oe_create/0' -p82541 -S'oe_create() $1' -p82542 -tp82543 -a(S'oe_create/1' -p82544 -S'oe_create(${1:Env}) $2' -p82545 -tp82546 -a(S'oe_create/2' -p82547 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p82548 -tp82549 -a(S'oe_create_link/0' -p82550 -S'oe_create_link() $1' -p82551 -tp82552 -a(S'oe_create_link/1' -p82553 -S'oe_create_link(${1:Env}) $2' -p82554 -tp82555 -a(S'oe_create_link/2' -p82556 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p82557 -tp82558 -a(S'oe_get_interface/0' -p82559 -S'oe_get_interface() $1' -p82560 -tp82561 -a(S'oe_is_a/1' -p82562 -S'oe_is_a(${1:Param1}) $2' -p82563 -tp82564 -a(S'oe_tc/1' -p82565 -S'oe_tc(${1:Param1}) $2' -p82566 -tp82567 -a(S'terminate/2' -p82568 -S'terminate(${1:Reason}, ${2:State}) $3' -p82569 -tp82570 -a(S'typeID/0' -p82571 -S'typeID() $1' -p82572 -tp82573 -asS'appmon_place' -p82574 -(lp82575 -(S'place/2' -p82576 -S'place(${1:DG}, ${2:Root}) $3' -p82577 -tp82578 -asS'megaco_per_bin_drv_media_gateway_control_v3' -p82579 -(lp82580 -(S"'dec_ActionReply'/2" -p82581 -S"'dec_ActionReply'(${1:Bytes}, ${2:Param2}) $3" -p82582 -tp82583 -a(S"'dec_ActionRequest'/2" -p82584 -S"'dec_ActionRequest'(${1:Bytes}, ${2:Param2}) $3" -p82585 -tp82586 -a(S"'dec_AmmDescriptor'/2" -p82587 -S"'dec_AmmDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p82588 -tp82589 -a(S"'dec_AmmRequest'/2" -p82590 -S"'dec_AmmRequest'(${1:Bytes}, ${2:Param2}) $3" -p82591 -tp82592 -a(S"'dec_AmmsReply'/2" -p82593 -S"'dec_AmmsReply'(${1:Bytes}, ${2:Param2}) $3" -p82594 -tp82595 -a(S"'dec_AuditDescriptor'/2" -p82596 -S"'dec_AuditDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p82597 -tp82598 -a(S"'dec_AuditReply'/2" -p82599 -S"'dec_AuditReply'(${1:Bytes}, ${2:Param2}) $3" -p82600 -tp82601 -a(S"'dec_AuditRequest'/2" -p82602 -S"'dec_AuditRequest'(${1:Bytes}, ${2:Param2}) $3" -p82603 -tp82604 -a(S"'dec_AuditResult'/2" -p82605 -S"'dec_AuditResult'(${1:Bytes}, ${2:Param2}) $3" -p82606 -tp82607 -a(S"'dec_AuditReturnParameter'/2" -p82608 -S"'dec_AuditReturnParameter'(${1:Bytes}, ${2:Param2}) $3" -p82609 -tp82610 -a(S"'dec_AuthData'/2" -p82611 -S"'dec_AuthData'(${1:Bytes}, ${2:Param2}) $3" -p82612 -tp82613 -a(S"'dec_AuthenticationHeader'/2" -p82614 -S"'dec_AuthenticationHeader'(${1:Bytes}, ${2:Param2}) $3" -p82615 -tp82616 -a(S"'dec_Command'/2" -p82617 -S"'dec_Command'(${1:Bytes}, ${2:Param2}) $3" -p82618 -tp82619 -a(S"'dec_CommandReply'/2" -p82620 -S"'dec_CommandReply'(${1:Bytes}, ${2:Param2}) $3" -p82621 -tp82622 -a(S"'dec_CommandRequest'/2" -p82623 -S"'dec_CommandRequest'(${1:Bytes}, ${2:Param2}) $3" -p82624 -tp82625 -a(S"'dec_ContextAttrAuditRequest'/2" -p82626 -S"'dec_ContextAttrAuditRequest'(${1:Bytes}, ${2:Param2}) $3" -p82627 -tp82628 -a(S"'dec_ContextID'/2" -p82629 -S"'dec_ContextID'(${1:Bytes}, ${2:Param2}) $3" -p82630 -tp82631 -a(S"'dec_ContextRequest'/2" -p82632 -S"'dec_ContextRequest'(${1:Bytes}, ${2:Param2}) $3" -p82633 -tp82634 -a(S"'dec_DigitMapDescriptor'/2" -p82635 -S"'dec_DigitMapDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p82636 -tp82637 -a(S"'dec_DigitMapName'/2" -p82638 -S"'dec_DigitMapName'(${1:Bytes}, ${2:Param2}) $3" -p82639 -tp82640 -a(S"'dec_DigitMapValue'/2" -p82641 -S"'dec_DigitMapValue'(${1:Bytes}, ${2:Param2}) $3" -p82642 -tp82643 -a(S"'dec_DomainName'/2" -p82644 -S"'dec_DomainName'(${1:Bytes}, ${2:Param2}) $3" -p82645 -tp82646 -a(S"'dec_ErrorCode'/2" -p82647 -S"'dec_ErrorCode'(${1:Bytes}, ${2:Param2}) $3" -p82648 -tp82649 -a(S"'dec_ErrorDescriptor'/2" -p82650 -S"'dec_ErrorDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p82651 -tp82652 -a(S"'dec_ErrorText'/2" -p82653 -S"'dec_ErrorText'(${1:Bytes}, ${2:Param2}) $3" -p82654 -tp82655 -a(S"'dec_EventBufferControl'/2" -p82656 -S"'dec_EventBufferControl'(${1:Bytes}, ${2:Param2}) $3" -p82657 -tp82658 -a(S"'dec_EventBufferDescriptor'/2" -p82659 -S"'dec_EventBufferDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p82660 -tp82661 -a(S"'dec_EventDM'/2" -p82662 -S"'dec_EventDM'(${1:Bytes}, ${2:Param2}) $3" -p82663 -tp82664 -a(S"'dec_EventName'/2" -p82665 -S"'dec_EventName'(${1:Bytes}, ${2:Param2}) $3" -p82666 -tp82667 -a(S"'dec_EventParameter'/2" -p82668 -S"'dec_EventParameter'(${1:Bytes}, ${2:Param2}) $3" -p82669 -tp82670 -a(S"'dec_EventSpec'/2" -p82671 -S"'dec_EventSpec'(${1:Bytes}, ${2:Param2}) $3" -p82672 -tp82673 -a(S"'dec_EventsDescriptor'/2" -p82674 -S"'dec_EventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p82675 -tp82676 -a(S"'dec_H221NonStandard'/2" -p82677 -S"'dec_H221NonStandard'(${1:Bytes}, ${2:Param2}) $3" -p82678 -tp82679 -a(S"'dec_IP4Address'/2" -p82680 -S"'dec_IP4Address'(${1:Bytes}, ${2:Param2}) $3" -p82681 -tp82682 -a(S"'dec_IP6Address'/2" -p82683 -S"'dec_IP6Address'(${1:Bytes}, ${2:Param2}) $3" -p82684 -tp82685 -a(S"'dec_IndAudDigitMapDescriptor'/2" -p82686 -S"'dec_IndAudDigitMapDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p82687 -tp82688 -a(S"'dec_IndAudEventBufferDescriptor'/2" -p82689 -S"'dec_IndAudEventBufferDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p82690 -tp82691 -a(S"'dec_IndAudEventsDescriptor'/2" -p82692 -S"'dec_IndAudEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p82693 -tp82694 -a(S"'dec_IndAudLocalControlDescriptor'/2" -p82695 -S"'dec_IndAudLocalControlDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p82696 -tp82697 -a(S"'dec_IndAudLocalRemoteDescriptor'/2" -p82698 -S"'dec_IndAudLocalRemoteDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p82699 -tp82700 -a(S"'dec_IndAudMediaDescriptor'/2" -p82701 -S"'dec_IndAudMediaDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p82702 -tp82703 -a(S"'dec_IndAudPackagesDescriptor'/2" -p82704 -S"'dec_IndAudPackagesDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p82705 -tp82706 -a(S"'dec_IndAudPropertyGroup'/2" -p82707 -S"'dec_IndAudPropertyGroup'(${1:Bytes}, ${2:Param2}) $3" -p82708 -tp82709 -a(S"'dec_IndAudPropertyParm'/2" -p82710 -S"'dec_IndAudPropertyParm'(${1:Bytes}, ${2:Param2}) $3" -p82711 -tp82712 -a(S"'dec_IndAudSeqSigList'/2" -p82713 -S"'dec_IndAudSeqSigList'(${1:Bytes}, ${2:Param2}) $3" -p82714 -tp82715 -a(S"'dec_IndAudSignal'/2" -p82716 -S"'dec_IndAudSignal'(${1:Bytes}, ${2:Param2}) $3" -p82717 -tp82718 -a(S"'dec_IndAudSignalsDescriptor'/2" -p82719 -S"'dec_IndAudSignalsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p82720 -tp82721 -a(S"'dec_IndAudStatisticsDescriptor'/2" -p82722 -S"'dec_IndAudStatisticsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p82723 -tp82724 -a(S"'dec_IndAudStreamDescriptor'/2" -p82725 -S"'dec_IndAudStreamDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p82726 -tp82727 -a(S"'dec_IndAudStreamParms'/2" -p82728 -S"'dec_IndAudStreamParms'(${1:Bytes}, ${2:Param2}) $3" -p82729 -tp82730 -a(S"'dec_IndAudTerminationStateDescriptor'/2" -p82731 -S"'dec_IndAudTerminationStateDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p82732 -tp82733 -a(S"'dec_IndAuditParameter'/2" -p82734 -S"'dec_IndAuditParameter'(${1:Bytes}, ${2:Param2}) $3" -p82735 -tp82736 -a(S"'dec_LocalControlDescriptor'/2" -p82737 -S"'dec_LocalControlDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p82738 -tp82739 -a(S"'dec_LocalRemoteDescriptor'/2" -p82740 -S"'dec_LocalRemoteDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p82741 -tp82742 -a(S"'dec_MId'/2" -p82743 -S"'dec_MId'(${1:Bytes}, ${2:Param2}) $3" -p82744 -tp82745 -a(S"'dec_MediaDescriptor'/2" -p82746 -S"'dec_MediaDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p82747 -tp82748 -a(S"'dec_MegacoMessage'/2" -p82749 -S"'dec_MegacoMessage'(${1:Bytes}, ${2:Param2}) $3" -p82750 -tp82751 -a(S"'dec_Message'/2" -p82752 -S"'dec_Message'(${1:Bytes}, ${2:Param2}) $3" -p82753 -tp82754 -a(S"'dec_ModemDescriptor'/2" -p82755 -S"'dec_ModemDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p82756 -tp82757 -a(S"'dec_ModemType'/2" -p82758 -S"'dec_ModemType'(${1:Bytes}, ${2:Param2}) $3" -p82759 -tp82760 -a(S"'dec_MuxDescriptor'/2" -p82761 -S"'dec_MuxDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p82762 -tp82763 -a(S"'dec_MuxType'/2" -p82764 -S"'dec_MuxType'(${1:Bytes}, ${2:Param2}) $3" -p82765 -tp82766 -a(S"'dec_Name'/2" -p82767 -S"'dec_Name'(${1:Bytes}, ${2:Param2}) $3" -p82768 -tp82769 -a(S"'dec_NonStandardData'/2" -p82770 -S"'dec_NonStandardData'(${1:Bytes}, ${2:Param2}) $3" -p82771 -tp82772 -a(S"'dec_NonStandardIdentifier'/2" -p82773 -S"'dec_NonStandardIdentifier'(${1:Bytes}, ${2:Param2}) $3" -p82774 -tp82775 -a(S"'dec_NotifyBehaviour'/2" -p82776 -S"'dec_NotifyBehaviour'(${1:Bytes}, ${2:Param2}) $3" -p82777 -tp82778 -a(S"'dec_NotifyCompletion'/2" -p82779 -S"'dec_NotifyCompletion'(${1:Bytes}, ${2:Param2}) $3" -p82780 -tp82781 -a(S"'dec_NotifyReply'/2" -p82782 -S"'dec_NotifyReply'(${1:Bytes}, ${2:Param2}) $3" -p82783 -tp82784 -a(S"'dec_NotifyRequest'/2" -p82785 -S"'dec_NotifyRequest'(${1:Bytes}, ${2:Param2}) $3" -p82786 -tp82787 -a(S"'dec_ObservedEvent'/2" -p82788 -S"'dec_ObservedEvent'(${1:Bytes}, ${2:Param2}) $3" -p82789 -tp82790 -a(S"'dec_ObservedEventsDescriptor'/2" -p82791 -S"'dec_ObservedEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p82792 -tp82793 -a(S"'dec_PackagesDescriptor'/2" -p82794 -S"'dec_PackagesDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p82795 -tp82796 -a(S"'dec_PackagesItem'/2" -p82797 -S"'dec_PackagesItem'(${1:Bytes}, ${2:Param2}) $3" -p82798 -tp82799 -a(S"'dec_PathName'/2" -p82800 -S"'dec_PathName'(${1:Bytes}, ${2:Param2}) $3" -p82801 -tp82802 -a(S"'dec_PkgdName'/2" -p82803 -S"'dec_PkgdName'(${1:Bytes}, ${2:Param2}) $3" -p82804 -tp82805 -a(S"'dec_PropertyGroup'/2" -p82806 -S"'dec_PropertyGroup'(${1:Bytes}, ${2:Param2}) $3" -p82807 -tp82808 -a(S"'dec_PropertyParm'/2" -p82809 -S"'dec_PropertyParm'(${1:Bytes}, ${2:Param2}) $3" -p82810 -tp82811 -a(S"'dec_RegulatedEmbeddedDescriptor'/2" -p82812 -S"'dec_RegulatedEmbeddedDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p82813 -tp82814 -a(S"'dec_Relation'/2" -p82815 -S"'dec_Relation'(${1:Bytes}, ${2:Param2}) $3" -p82816 -tp82817 -a(S"'dec_RequestID'/2" -p82818 -S"'dec_RequestID'(${1:Bytes}, ${2:Param2}) $3" -p82819 -tp82820 -a(S"'dec_RequestedActions'/2" -p82821 -S"'dec_RequestedActions'(${1:Bytes}, ${2:Param2}) $3" -p82822 -tp82823 -a(S"'dec_RequestedEvent'/2" -p82824 -S"'dec_RequestedEvent'(${1:Bytes}, ${2:Param2}) $3" -p82825 -tp82826 -a(S"'dec_SecondEventsDescriptor'/2" -p82827 -S"'dec_SecondEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p82828 -tp82829 -a(S"'dec_SecondRequestedActions'/2" -p82830 -S"'dec_SecondRequestedActions'(${1:Bytes}, ${2:Param2}) $3" -p82831 -tp82832 -a(S"'dec_SecondRequestedEvent'/2" -p82833 -S"'dec_SecondRequestedEvent'(${1:Bytes}, ${2:Param2}) $3" -p82834 -tp82835 -a(S"'dec_SecurityParmIndex'/2" -p82836 -S"'dec_SecurityParmIndex'(${1:Bytes}, ${2:Param2}) $3" -p82837 -tp82838 -a(S"'dec_SegmentNumber'/2" -p82839 -S"'dec_SegmentNumber'(${1:Bytes}, ${2:Param2}) $3" -p82840 -tp82841 -a(S"'dec_SegmentReply'/2" -p82842 -S"'dec_SegmentReply'(${1:Bytes}, ${2:Param2}) $3" -p82843 -tp82844 -a(S"'dec_SelectLogic'/2" -p82845 -S"'dec_SelectLogic'(${1:Bytes}, ${2:Param2}) $3" -p82846 -tp82847 -a(S"'dec_SeqSigList'/2" -p82848 -S"'dec_SeqSigList'(${1:Bytes}, ${2:Param2}) $3" -p82849 -tp82850 -a(S"'dec_SequenceNum'/2" -p82851 -S"'dec_SequenceNum'(${1:Bytes}, ${2:Param2}) $3" -p82852 -tp82853 -a(S"'dec_ServiceChangeAddress'/2" -p82854 -S"'dec_ServiceChangeAddress'(${1:Bytes}, ${2:Param2}) $3" -p82855 -tp82856 -a(S"'dec_ServiceChangeMethod'/2" -p82857 -S"'dec_ServiceChangeMethod'(${1:Bytes}, ${2:Param2}) $3" -p82858 -tp82859 -a(S"'dec_ServiceChangeParm'/2" -p82860 -S"'dec_ServiceChangeParm'(${1:Bytes}, ${2:Param2}) $3" -p82861 -tp82862 -a(S"'dec_ServiceChangeProfile'/2" -p82863 -S"'dec_ServiceChangeProfile'(${1:Bytes}, ${2:Param2}) $3" -p82864 -tp82865 -a(S"'dec_ServiceChangeReply'/2" -p82866 -S"'dec_ServiceChangeReply'(${1:Bytes}, ${2:Param2}) $3" -p82867 -tp82868 -a(S"'dec_ServiceChangeRequest'/2" -p82869 -S"'dec_ServiceChangeRequest'(${1:Bytes}, ${2:Param2}) $3" -p82870 -tp82871 -a(S"'dec_ServiceChangeResParm'/2" -p82872 -S"'dec_ServiceChangeResParm'(${1:Bytes}, ${2:Param2}) $3" -p82873 -tp82874 -a(S"'dec_ServiceChangeResult'/2" -p82875 -S"'dec_ServiceChangeResult'(${1:Bytes}, ${2:Param2}) $3" -p82876 -tp82877 -a(S"'dec_ServiceState'/2" -p82878 -S"'dec_ServiceState'(${1:Bytes}, ${2:Param2}) $3" -p82879 -tp82880 -a(S"'dec_SigParameter'/2" -p82881 -S"'dec_SigParameter'(${1:Bytes}, ${2:Param2}) $3" -p82882 -tp82883 -a(S"'dec_Signal'/2" -p82884 -S"'dec_Signal'(${1:Bytes}, ${2:Param2}) $3" -p82885 -tp82886 -a(S"'dec_SignalDirection'/2" -p82887 -S"'dec_SignalDirection'(${1:Bytes}, ${2:Param2}) $3" -p82888 -tp82889 -a(S"'dec_SignalName'/2" -p82890 -S"'dec_SignalName'(${1:Bytes}, ${2:Param2}) $3" -p82891 -tp82892 -a(S"'dec_SignalRequest'/2" -p82893 -S"'dec_SignalRequest'(${1:Bytes}, ${2:Param2}) $3" -p82894 -tp82895 -a(S"'dec_SignalType'/2" -p82896 -S"'dec_SignalType'(${1:Bytes}, ${2:Param2}) $3" -p82897 -tp82898 -a(S"'dec_SignalsDescriptor'/2" -p82899 -S"'dec_SignalsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p82900 -tp82901 -a(S"'dec_StatisticsDescriptor'/2" -p82902 -S"'dec_StatisticsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p82903 -tp82904 -a(S"'dec_StatisticsParameter'/2" -p82905 -S"'dec_StatisticsParameter'(${1:Bytes}, ${2:Param2}) $3" -p82906 -tp82907 -a(S"'dec_StreamDescriptor'/2" -p82908 -S"'dec_StreamDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p82909 -tp82910 -a(S"'dec_StreamID'/2" -p82911 -S"'dec_StreamID'(${1:Bytes}, ${2:Param2}) $3" -p82912 -tp82913 -a(S"'dec_StreamMode'/2" -p82914 -S"'dec_StreamMode'(${1:Bytes}, ${2:Param2}) $3" -p82915 -tp82916 -a(S"'dec_StreamParms'/2" -p82917 -S"'dec_StreamParms'(${1:Bytes}, ${2:Param2}) $3" -p82918 -tp82919 -a(S"'dec_SubtractRequest'/2" -p82920 -S"'dec_SubtractRequest'(${1:Bytes}, ${2:Param2}) $3" -p82921 -tp82922 -a(S"'dec_TermListAuditResult'/2" -p82923 -S"'dec_TermListAuditResult'(${1:Bytes}, ${2:Param2}) $3" -p82924 -tp82925 -a(S"'dec_TerminationAudit'/2" -p82926 -S"'dec_TerminationAudit'(${1:Bytes}, ${2:Param2}) $3" -p82927 -tp82928 -a(S"'dec_TerminationID'/2" -p82929 -S"'dec_TerminationID'(${1:Bytes}, ${2:Param2}) $3" -p82930 -tp82931 -a(S"'dec_TerminationIDList'/2" -p82932 -S"'dec_TerminationIDList'(${1:Bytes}, ${2:Param2}) $3" -p82933 -tp82934 -a(S"'dec_TerminationStateDescriptor'/2" -p82935 -S"'dec_TerminationStateDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p82936 -tp82937 -a(S"'dec_TimeNotation'/2" -p82938 -S"'dec_TimeNotation'(${1:Bytes}, ${2:Param2}) $3" -p82939 -tp82940 -a(S"'dec_TopologyRequest'/2" -p82941 -S"'dec_TopologyRequest'(${1:Bytes}, ${2:Param2}) $3" -p82942 -tp82943 -a(S"'dec_Transaction'/2" -p82944 -S"'dec_Transaction'(${1:Bytes}, ${2:Param2}) $3" -p82945 -tp82946 -a(S"'dec_TransactionAck'/2" -p82947 -S"'dec_TransactionAck'(${1:Bytes}, ${2:Param2}) $3" -p82948 -tp82949 -a(S"'dec_TransactionId'/2" -p82950 -S"'dec_TransactionId'(${1:Bytes}, ${2:Param2}) $3" -p82951 -tp82952 -a(S"'dec_TransactionPending'/2" -p82953 -S"'dec_TransactionPending'(${1:Bytes}, ${2:Param2}) $3" -p82954 -tp82955 -a(S"'dec_TransactionReply'/2" -p82956 -S"'dec_TransactionReply'(${1:Bytes}, ${2:Param2}) $3" -p82957 -tp82958 -a(S"'dec_TransactionRequest'/2" -p82959 -S"'dec_TransactionRequest'(${1:Bytes}, ${2:Param2}) $3" -p82960 -tp82961 -a(S"'dec_TransactionResponseAck'/2" -p82962 -S"'dec_TransactionResponseAck'(${1:Bytes}, ${2:Param2}) $3" -p82963 -tp82964 -a(S"'dec_Value'/2" -p82965 -S"'dec_Value'(${1:Bytes}, ${2:Param2}) $3" -p82966 -tp82967 -a(S"'dec_WildcardField'/2" -p82968 -S"'dec_WildcardField'(${1:Bytes}, ${2:Param2}) $3" -p82969 -tp82970 -a(S"'enc_ActionReply'/1" -p82971 -S"'enc_ActionReply'(${1:Val}) $2" -p82972 -tp82973 -a(S"'enc_ActionRequest'/1" -p82974 -S"'enc_ActionRequest'(${1:Val}) $2" -p82975 -tp82976 -a(S"'enc_AmmDescriptor'/1" -p82977 -S"'enc_AmmDescriptor'(${1:Val}) $2" -p82978 -tp82979 -a(S"'enc_AmmRequest'/1" -p82980 -S"'enc_AmmRequest'(${1:Val}) $2" -p82981 -tp82982 -a(S"'enc_AmmsReply'/1" -p82983 -S"'enc_AmmsReply'(${1:Val}) $2" -p82984 -tp82985 -a(S"'enc_AuditDescriptor'/1" -p82986 -S"'enc_AuditDescriptor'(${1:Val}) $2" -p82987 -tp82988 -a(S"'enc_AuditReply'/1" -p82989 -S"'enc_AuditReply'(${1:Val}) $2" -p82990 -tp82991 -a(S"'enc_AuditRequest'/1" -p82992 -S"'enc_AuditRequest'(${1:Val}) $2" -p82993 -tp82994 -a(S"'enc_AuditResult'/1" -p82995 -S"'enc_AuditResult'(${1:Val}) $2" -p82996 -tp82997 -a(S"'enc_AuditReturnParameter'/1" -p82998 -S"'enc_AuditReturnParameter'(${1:Val}) $2" -p82999 -tp83000 -a(S"'enc_AuthData'/1" -p83001 -S"'enc_AuthData'(${1:Val}) $2" -p83002 -tp83003 -a(S"'enc_AuthenticationHeader'/1" -p83004 -S"'enc_AuthenticationHeader'(${1:Val}) $2" -p83005 -tp83006 -a(S"'enc_Command'/1" -p83007 -S"'enc_Command'(${1:Val}) $2" -p83008 -tp83009 -a(S"'enc_CommandReply'/1" -p83010 -S"'enc_CommandReply'(${1:Val}) $2" -p83011 -tp83012 -a(S"'enc_CommandRequest'/1" -p83013 -S"'enc_CommandRequest'(${1:Val}) $2" -p83014 -tp83015 -a(S"'enc_ContextAttrAuditRequest'/1" -p83016 -S"'enc_ContextAttrAuditRequest'(${1:Val}) $2" -p83017 -tp83018 -a(S"'enc_ContextID'/1" -p83019 -S"'enc_ContextID'(${1:Val}) $2" -p83020 -tp83021 -a(S"'enc_ContextRequest'/1" -p83022 -S"'enc_ContextRequest'(${1:Val}) $2" -p83023 -tp83024 -a(S"'enc_DigitMapDescriptor'/1" -p83025 -S"'enc_DigitMapDescriptor'(${1:Val}) $2" -p83026 -tp83027 -a(S"'enc_DigitMapName'/1" -p83028 -S"'enc_DigitMapName'(${1:Val}) $2" -p83029 -tp83030 -a(S"'enc_DigitMapValue'/1" -p83031 -S"'enc_DigitMapValue'(${1:Val}) $2" -p83032 -tp83033 -a(S"'enc_DomainName'/1" -p83034 -S"'enc_DomainName'(${1:Val}) $2" -p83035 -tp83036 -a(S"'enc_ErrorCode'/1" -p83037 -S"'enc_ErrorCode'(${1:Val}) $2" -p83038 -tp83039 -a(S"'enc_ErrorDescriptor'/1" -p83040 -S"'enc_ErrorDescriptor'(${1:Val}) $2" -p83041 -tp83042 -a(S"'enc_ErrorText'/1" -p83043 -S"'enc_ErrorText'(${1:Val}) $2" -p83044 -tp83045 -a(S"'enc_EventBufferControl'/1" -p83046 -S"'enc_EventBufferControl'(${1:Val}) $2" -p83047 -tp83048 -a(S"'enc_EventBufferDescriptor'/1" -p83049 -S"'enc_EventBufferDescriptor'(${1:Val}) $2" -p83050 -tp83051 -a(S"'enc_EventDM'/1" -p83052 -S"'enc_EventDM'(${1:Val}) $2" -p83053 -tp83054 -a(S"'enc_EventName'/1" -p83055 -S"'enc_EventName'(${1:Val}) $2" -p83056 -tp83057 -a(S"'enc_EventParameter'/1" -p83058 -S"'enc_EventParameter'(${1:Val}) $2" -p83059 -tp83060 -a(S"'enc_EventSpec'/1" -p83061 -S"'enc_EventSpec'(${1:Val}) $2" -p83062 -tp83063 -a(S"'enc_EventsDescriptor'/1" -p83064 -S"'enc_EventsDescriptor'(${1:Val}) $2" -p83065 -tp83066 -a(S"'enc_H221NonStandard'/1" -p83067 -S"'enc_H221NonStandard'(${1:Val}) $2" -p83068 -tp83069 -a(S"'enc_IP4Address'/1" -p83070 -S"'enc_IP4Address'(${1:Val}) $2" -p83071 -tp83072 -a(S"'enc_IP6Address'/1" -p83073 -S"'enc_IP6Address'(${1:Val}) $2" -p83074 -tp83075 -a(S"'enc_IndAudDigitMapDescriptor'/1" -p83076 -S"'enc_IndAudDigitMapDescriptor'(${1:Val}) $2" -p83077 -tp83078 -a(S"'enc_IndAudEventBufferDescriptor'/1" -p83079 -S"'enc_IndAudEventBufferDescriptor'(${1:Val}) $2" -p83080 -tp83081 -a(S"'enc_IndAudEventsDescriptor'/1" -p83082 -S"'enc_IndAudEventsDescriptor'(${1:Val}) $2" -p83083 -tp83084 -a(S"'enc_IndAudLocalControlDescriptor'/1" -p83085 -S"'enc_IndAudLocalControlDescriptor'(${1:Val}) $2" -p83086 -tp83087 -a(S"'enc_IndAudLocalRemoteDescriptor'/1" -p83088 -S"'enc_IndAudLocalRemoteDescriptor'(${1:Val}) $2" -p83089 -tp83090 -a(S"'enc_IndAudMediaDescriptor'/1" -p83091 -S"'enc_IndAudMediaDescriptor'(${1:Val}) $2" -p83092 -tp83093 -a(S"'enc_IndAudPackagesDescriptor'/1" -p83094 -S"'enc_IndAudPackagesDescriptor'(${1:Val}) $2" -p83095 -tp83096 -a(S"'enc_IndAudPropertyGroup'/1" -p83097 -S"'enc_IndAudPropertyGroup'(${1:Val}) $2" -p83098 -tp83099 -a(S"'enc_IndAudPropertyParm'/1" -p83100 -S"'enc_IndAudPropertyParm'(${1:Val}) $2" -p83101 -tp83102 -a(S"'enc_IndAudSeqSigList'/1" -p83103 -S"'enc_IndAudSeqSigList'(${1:Val}) $2" -p83104 -tp83105 -a(S"'enc_IndAudSignal'/1" -p83106 -S"'enc_IndAudSignal'(${1:Val}) $2" -p83107 -tp83108 -a(S"'enc_IndAudSignalsDescriptor'/1" -p83109 -S"'enc_IndAudSignalsDescriptor'(${1:Val}) $2" -p83110 -tp83111 -a(S"'enc_IndAudStatisticsDescriptor'/1" -p83112 -S"'enc_IndAudStatisticsDescriptor'(${1:Val}) $2" -p83113 -tp83114 -a(S"'enc_IndAudStreamDescriptor'/1" -p83115 -S"'enc_IndAudStreamDescriptor'(${1:Val}) $2" -p83116 -tp83117 -a(S"'enc_IndAudStreamParms'/1" -p83118 -S"'enc_IndAudStreamParms'(${1:Val}) $2" -p83119 -tp83120 -a(S"'enc_IndAudTerminationStateDescriptor'/1" -p83121 -S"'enc_IndAudTerminationStateDescriptor'(${1:Val}) $2" -p83122 -tp83123 -a(S"'enc_IndAuditParameter'/1" -p83124 -S"'enc_IndAuditParameter'(${1:Val}) $2" -p83125 -tp83126 -a(S"'enc_LocalControlDescriptor'/1" -p83127 -S"'enc_LocalControlDescriptor'(${1:Val}) $2" -p83128 -tp83129 -a(S"'enc_LocalRemoteDescriptor'/1" -p83130 -S"'enc_LocalRemoteDescriptor'(${1:Val}) $2" -p83131 -tp83132 -a(S"'enc_MId'/1" -p83133 -S"'enc_MId'(${1:Val}) $2" -p83134 -tp83135 -a(S"'enc_MediaDescriptor'/1" -p83136 -S"'enc_MediaDescriptor'(${1:Val}) $2" -p83137 -tp83138 -a(S"'enc_MegacoMessage'/1" -p83139 -S"'enc_MegacoMessage'(${1:Val}) $2" -p83140 -tp83141 -a(S"'enc_Message'/1" -p83142 -S"'enc_Message'(${1:Val}) $2" -p83143 -tp83144 -a(S"'enc_ModemDescriptor'/1" -p83145 -S"'enc_ModemDescriptor'(${1:Val}) $2" -p83146 -tp83147 -a(S"'enc_ModemType'/1" -p83148 -S"'enc_ModemType'(${1:Val}) $2" -p83149 -tp83150 -a(S"'enc_MuxDescriptor'/1" -p83151 -S"'enc_MuxDescriptor'(${1:Val}) $2" -p83152 -tp83153 -a(S"'enc_MuxType'/1" -p83154 -S"'enc_MuxType'(${1:Val}) $2" -p83155 -tp83156 -a(S"'enc_Name'/1" -p83157 -S"'enc_Name'(${1:Val}) $2" -p83158 -tp83159 -a(S"'enc_NonStandardData'/1" -p83160 -S"'enc_NonStandardData'(${1:Val}) $2" -p83161 -tp83162 -a(S"'enc_NonStandardIdentifier'/1" -p83163 -S"'enc_NonStandardIdentifier'(${1:Val}) $2" -p83164 -tp83165 -a(S"'enc_NotifyBehaviour'/1" -p83166 -S"'enc_NotifyBehaviour'(${1:Val}) $2" -p83167 -tp83168 -a(S"'enc_NotifyCompletion'/1" -p83169 -S"'enc_NotifyCompletion'(${1:Val}) $2" -p83170 -tp83171 -a(S"'enc_NotifyReply'/1" -p83172 -S"'enc_NotifyReply'(${1:Val}) $2" -p83173 -tp83174 -a(S"'enc_NotifyRequest'/1" -p83175 -S"'enc_NotifyRequest'(${1:Val}) $2" -p83176 -tp83177 -a(S"'enc_ObservedEvent'/1" -p83178 -S"'enc_ObservedEvent'(${1:Val}) $2" -p83179 -tp83180 -a(S"'enc_ObservedEventsDescriptor'/1" -p83181 -S"'enc_ObservedEventsDescriptor'(${1:Val}) $2" -p83182 -tp83183 -a(S"'enc_PackagesDescriptor'/1" -p83184 -S"'enc_PackagesDescriptor'(${1:Val}) $2" -p83185 -tp83186 -a(S"'enc_PackagesItem'/1" -p83187 -S"'enc_PackagesItem'(${1:Val}) $2" -p83188 -tp83189 -a(S"'enc_PathName'/1" -p83190 -S"'enc_PathName'(${1:Val}) $2" -p83191 -tp83192 -a(S"'enc_PkgdName'/1" -p83193 -S"'enc_PkgdName'(${1:Val}) $2" -p83194 -tp83195 -a(S"'enc_PropertyGroup'/1" -p83196 -S"'enc_PropertyGroup'(${1:Val}) $2" -p83197 -tp83198 -a(S"'enc_PropertyParm'/1" -p83199 -S"'enc_PropertyParm'(${1:Val}) $2" -p83200 -tp83201 -a(S"'enc_RegulatedEmbeddedDescriptor'/1" -p83202 -S"'enc_RegulatedEmbeddedDescriptor'(${1:Val}) $2" -p83203 -tp83204 -a(S"'enc_Relation'/1" -p83205 -S"'enc_Relation'(${1:Val}) $2" -p83206 -tp83207 -a(S"'enc_RequestID'/1" -p83208 -S"'enc_RequestID'(${1:Val}) $2" -p83209 -tp83210 -a(S"'enc_RequestedActions'/1" -p83211 -S"'enc_RequestedActions'(${1:Val}) $2" -p83212 -tp83213 -a(S"'enc_RequestedEvent'/1" -p83214 -S"'enc_RequestedEvent'(${1:Val}) $2" -p83215 -tp83216 -a(S"'enc_SecondEventsDescriptor'/1" -p83217 -S"'enc_SecondEventsDescriptor'(${1:Val}) $2" -p83218 -tp83219 -a(S"'enc_SecondRequestedActions'/1" -p83220 -S"'enc_SecondRequestedActions'(${1:Val}) $2" -p83221 -tp83222 -a(S"'enc_SecondRequestedEvent'/1" -p83223 -S"'enc_SecondRequestedEvent'(${1:Val}) $2" -p83224 -tp83225 -a(S"'enc_SecurityParmIndex'/1" -p83226 -S"'enc_SecurityParmIndex'(${1:Val}) $2" -p83227 -tp83228 -a(S"'enc_SegmentNumber'/1" -p83229 -S"'enc_SegmentNumber'(${1:Val}) $2" -p83230 -tp83231 -a(S"'enc_SegmentReply'/1" -p83232 -S"'enc_SegmentReply'(${1:Val}) $2" -p83233 -tp83234 -a(S"'enc_SelectLogic'/1" -p83235 -S"'enc_SelectLogic'(${1:Val}) $2" -p83236 -tp83237 -a(S"'enc_SeqSigList'/1" -p83238 -S"'enc_SeqSigList'(${1:Val}) $2" -p83239 -tp83240 -a(S"'enc_SequenceNum'/1" -p83241 -S"'enc_SequenceNum'(${1:Val}) $2" -p83242 -tp83243 -a(S"'enc_ServiceChangeAddress'/1" -p83244 -S"'enc_ServiceChangeAddress'(${1:Val}) $2" -p83245 -tp83246 -a(S"'enc_ServiceChangeMethod'/1" -p83247 -S"'enc_ServiceChangeMethod'(${1:Val}) $2" -p83248 -tp83249 -a(S"'enc_ServiceChangeParm'/1" -p83250 -S"'enc_ServiceChangeParm'(${1:Val}) $2" -p83251 -tp83252 -a(S"'enc_ServiceChangeProfile'/1" -p83253 -S"'enc_ServiceChangeProfile'(${1:Val}) $2" -p83254 -tp83255 -a(S"'enc_ServiceChangeReply'/1" -p83256 -S"'enc_ServiceChangeReply'(${1:Val}) $2" -p83257 -tp83258 -a(S"'enc_ServiceChangeRequest'/1" -p83259 -S"'enc_ServiceChangeRequest'(${1:Val}) $2" -p83260 -tp83261 -a(S"'enc_ServiceChangeResParm'/1" -p83262 -S"'enc_ServiceChangeResParm'(${1:Val}) $2" -p83263 -tp83264 -a(S"'enc_ServiceChangeResult'/1" -p83265 -S"'enc_ServiceChangeResult'(${1:Val}) $2" -p83266 -tp83267 -a(S"'enc_ServiceState'/1" -p83268 -S"'enc_ServiceState'(${1:Val}) $2" -p83269 -tp83270 -a(S"'enc_SigParameter'/1" -p83271 -S"'enc_SigParameter'(${1:Val}) $2" -p83272 -tp83273 -a(S"'enc_Signal'/1" -p83274 -S"'enc_Signal'(${1:Val}) $2" -p83275 -tp83276 -a(S"'enc_SignalDirection'/1" -p83277 -S"'enc_SignalDirection'(${1:Val}) $2" -p83278 -tp83279 -a(S"'enc_SignalName'/1" -p83280 -S"'enc_SignalName'(${1:Val}) $2" -p83281 -tp83282 -a(S"'enc_SignalRequest'/1" -p83283 -S"'enc_SignalRequest'(${1:Val}) $2" -p83284 -tp83285 -a(S"'enc_SignalType'/1" -p83286 -S"'enc_SignalType'(${1:Val}) $2" -p83287 -tp83288 -a(S"'enc_SignalsDescriptor'/1" -p83289 -S"'enc_SignalsDescriptor'(${1:Val}) $2" -p83290 -tp83291 -a(S"'enc_StatisticsDescriptor'/1" -p83292 -S"'enc_StatisticsDescriptor'(${1:Val}) $2" -p83293 -tp83294 -a(S"'enc_StatisticsParameter'/1" -p83295 -S"'enc_StatisticsParameter'(${1:Val}) $2" -p83296 -tp83297 -a(S"'enc_StreamDescriptor'/1" -p83298 -S"'enc_StreamDescriptor'(${1:Val}) $2" -p83299 -tp83300 -a(S"'enc_StreamID'/1" -p83301 -S"'enc_StreamID'(${1:Val}) $2" -p83302 -tp83303 -a(S"'enc_StreamMode'/1" -p83304 -S"'enc_StreamMode'(${1:Val}) $2" -p83305 -tp83306 -a(S"'enc_StreamParms'/1" -p83307 -S"'enc_StreamParms'(${1:Val}) $2" -p83308 -tp83309 -a(S"'enc_SubtractRequest'/1" -p83310 -S"'enc_SubtractRequest'(${1:Val}) $2" -p83311 -tp83312 -a(S"'enc_TermListAuditResult'/1" -p83313 -S"'enc_TermListAuditResult'(${1:Val}) $2" -p83314 -tp83315 -a(S"'enc_TerminationAudit'/1" -p83316 -S"'enc_TerminationAudit'(${1:Val}) $2" -p83317 -tp83318 -a(S"'enc_TerminationID'/1" -p83319 -S"'enc_TerminationID'(${1:Val}) $2" -p83320 -tp83321 -a(S"'enc_TerminationIDList'/1" -p83322 -S"'enc_TerminationIDList'(${1:Val}) $2" -p83323 -tp83324 -a(S"'enc_TerminationStateDescriptor'/1" -p83325 -S"'enc_TerminationStateDescriptor'(${1:Val}) $2" -p83326 -tp83327 -a(S"'enc_TimeNotation'/1" -p83328 -S"'enc_TimeNotation'(${1:Val}) $2" -p83329 -tp83330 -a(S"'enc_TopologyRequest'/1" -p83331 -S"'enc_TopologyRequest'(${1:Val}) $2" -p83332 -tp83333 -a(S"'enc_Transaction'/1" -p83334 -S"'enc_Transaction'(${1:Val}) $2" -p83335 -tp83336 -a(S"'enc_TransactionAck'/1" -p83337 -S"'enc_TransactionAck'(${1:Val}) $2" -p83338 -tp83339 -a(S"'enc_TransactionId'/1" -p83340 -S"'enc_TransactionId'(${1:Val}) $2" -p83341 -tp83342 -a(S"'enc_TransactionPending'/1" -p83343 -S"'enc_TransactionPending'(${1:Val}) $2" -p83344 -tp83345 -a(S"'enc_TransactionReply'/1" -p83346 -S"'enc_TransactionReply'(${1:Val}) $2" -p83347 -tp83348 -a(S"'enc_TransactionRequest'/1" -p83349 -S"'enc_TransactionRequest'(${1:Val}) $2" -p83350 -tp83351 -a(S"'enc_TransactionResponseAck'/1" -p83352 -S"'enc_TransactionResponseAck'(${1:Val}) $2" -p83353 -tp83354 -a(S"'enc_Value'/1" -p83355 -S"'enc_Value'(${1:Val}) $2" -p83356 -tp83357 -a(S"'enc_WildcardField'/1" -p83358 -S"'enc_WildcardField'(${1:Val}) $2" -p83359 -tp83360 -a(S'decode/2' -p83361 -S'decode(${1:Type}, ${2:Data}) $3' -p83362 -tp83363 -a(S'decode_disp/2' -p83364 -S'decode_disp(${1:Type}, ${2:Data}) $3' -p83365 -tp83366 -a(S'encode/2' -p83367 -S'encode(${1:Type}, ${2:Data}) $3' -p83368 -tp83369 -a(S'encode_disp/2' -p83370 -S'encode_disp(${1:Type}, ${2:Data}) $3' -p83371 -tp83372 -a(S'encoding_rule/0' -p83373 -S'encoding_rule() $1' -p83374 -tp83375 -a(S'info/0' -p83376 -S'info() $1' -p83377 -tp83378 -asS'megaco_per_bin_drv_media_gateway_control_v2' -p83379 -(lp83380 -(S"'dec_ActionReply'/2" -p83381 -S"'dec_ActionReply'(${1:Bytes}, ${2:Param2}) $3" -p83382 -tp83383 -a(S"'dec_ActionRequest'/2" -p83384 -S"'dec_ActionRequest'(${1:Bytes}, ${2:Param2}) $3" -p83385 -tp83386 -a(S"'dec_AmmDescriptor'/2" -p83387 -S"'dec_AmmDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p83388 -tp83389 -a(S"'dec_AmmRequest'/2" -p83390 -S"'dec_AmmRequest'(${1:Bytes}, ${2:Param2}) $3" -p83391 -tp83392 -a(S"'dec_AmmsReply'/2" -p83393 -S"'dec_AmmsReply'(${1:Bytes}, ${2:Param2}) $3" -p83394 -tp83395 -a(S"'dec_AuditDescriptor'/2" -p83396 -S"'dec_AuditDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p83397 -tp83398 -a(S"'dec_AuditReply'/2" -p83399 -S"'dec_AuditReply'(${1:Bytes}, ${2:Param2}) $3" -p83400 -tp83401 -a(S"'dec_AuditRequest'/2" -p83402 -S"'dec_AuditRequest'(${1:Bytes}, ${2:Param2}) $3" -p83403 -tp83404 -a(S"'dec_AuditResult'/2" -p83405 -S"'dec_AuditResult'(${1:Bytes}, ${2:Param2}) $3" -p83406 -tp83407 -a(S"'dec_AuditReturnParameter'/2" -p83408 -S"'dec_AuditReturnParameter'(${1:Bytes}, ${2:Param2}) $3" -p83409 -tp83410 -a(S"'dec_AuthData'/2" -p83411 -S"'dec_AuthData'(${1:Bytes}, ${2:Param2}) $3" -p83412 -tp83413 -a(S"'dec_AuthenticationHeader'/2" -p83414 -S"'dec_AuthenticationHeader'(${1:Bytes}, ${2:Param2}) $3" -p83415 -tp83416 -a(S"'dec_Command'/2" -p83417 -S"'dec_Command'(${1:Bytes}, ${2:Param2}) $3" -p83418 -tp83419 -a(S"'dec_CommandReply'/2" -p83420 -S"'dec_CommandReply'(${1:Bytes}, ${2:Param2}) $3" -p83421 -tp83422 -a(S"'dec_CommandRequest'/2" -p83423 -S"'dec_CommandRequest'(${1:Bytes}, ${2:Param2}) $3" -p83424 -tp83425 -a(S"'dec_ContextAttrAuditRequest'/2" -p83426 -S"'dec_ContextAttrAuditRequest'(${1:Bytes}, ${2:Param2}) $3" -p83427 -tp83428 -a(S"'dec_ContextID'/2" -p83429 -S"'dec_ContextID'(${1:Bytes}, ${2:Param2}) $3" -p83430 -tp83431 -a(S"'dec_ContextRequest'/2" -p83432 -S"'dec_ContextRequest'(${1:Bytes}, ${2:Param2}) $3" -p83433 -tp83434 -a(S"'dec_DigitMapDescriptor'/2" -p83435 -S"'dec_DigitMapDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p83436 -tp83437 -a(S"'dec_DigitMapName'/2" -p83438 -S"'dec_DigitMapName'(${1:Bytes}, ${2:Param2}) $3" -p83439 -tp83440 -a(S"'dec_DigitMapValue'/2" -p83441 -S"'dec_DigitMapValue'(${1:Bytes}, ${2:Param2}) $3" -p83442 -tp83443 -a(S"'dec_DomainName'/2" -p83444 -S"'dec_DomainName'(${1:Bytes}, ${2:Param2}) $3" -p83445 -tp83446 -a(S"'dec_ErrorCode'/2" -p83447 -S"'dec_ErrorCode'(${1:Bytes}, ${2:Param2}) $3" -p83448 -tp83449 -a(S"'dec_ErrorDescriptor'/2" -p83450 -S"'dec_ErrorDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p83451 -tp83452 -a(S"'dec_ErrorText'/2" -p83453 -S"'dec_ErrorText'(${1:Bytes}, ${2:Param2}) $3" -p83454 -tp83455 -a(S"'dec_EventBufferControl'/2" -p83456 -S"'dec_EventBufferControl'(${1:Bytes}, ${2:Param2}) $3" -p83457 -tp83458 -a(S"'dec_EventBufferDescriptor'/2" -p83459 -S"'dec_EventBufferDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p83460 -tp83461 -a(S"'dec_EventDM'/2" -p83462 -S"'dec_EventDM'(${1:Bytes}, ${2:Param2}) $3" -p83463 -tp83464 -a(S"'dec_EventName'/2" -p83465 -S"'dec_EventName'(${1:Bytes}, ${2:Param2}) $3" -p83466 -tp83467 -a(S"'dec_EventParameter'/2" -p83468 -S"'dec_EventParameter'(${1:Bytes}, ${2:Param2}) $3" -p83469 -tp83470 -a(S"'dec_EventSpec'/2" -p83471 -S"'dec_EventSpec'(${1:Bytes}, ${2:Param2}) $3" -p83472 -tp83473 -a(S"'dec_EventsDescriptor'/2" -p83474 -S"'dec_EventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p83475 -tp83476 -a(S"'dec_H221NonStandard'/2" -p83477 -S"'dec_H221NonStandard'(${1:Bytes}, ${2:Param2}) $3" -p83478 -tp83479 -a(S"'dec_IP4Address'/2" -p83480 -S"'dec_IP4Address'(${1:Bytes}, ${2:Param2}) $3" -p83481 -tp83482 -a(S"'dec_IP6Address'/2" -p83483 -S"'dec_IP6Address'(${1:Bytes}, ${2:Param2}) $3" -p83484 -tp83485 -a(S"'dec_IndAudDigitMapDescriptor'/2" -p83486 -S"'dec_IndAudDigitMapDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p83487 -tp83488 -a(S"'dec_IndAudEventBufferDescriptor'/2" -p83489 -S"'dec_IndAudEventBufferDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p83490 -tp83491 -a(S"'dec_IndAudEventsDescriptor'/2" -p83492 -S"'dec_IndAudEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p83493 -tp83494 -a(S"'dec_IndAudLocalControlDescriptor'/2" -p83495 -S"'dec_IndAudLocalControlDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p83496 -tp83497 -a(S"'dec_IndAudLocalRemoteDescriptor'/2" -p83498 -S"'dec_IndAudLocalRemoteDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p83499 -tp83500 -a(S"'dec_IndAudMediaDescriptor'/2" -p83501 -S"'dec_IndAudMediaDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p83502 -tp83503 -a(S"'dec_IndAudPackagesDescriptor'/2" -p83504 -S"'dec_IndAudPackagesDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p83505 -tp83506 -a(S"'dec_IndAudPropertyGroup'/2" -p83507 -S"'dec_IndAudPropertyGroup'(${1:Bytes}, ${2:Param2}) $3" -p83508 -tp83509 -a(S"'dec_IndAudPropertyParm'/2" -p83510 -S"'dec_IndAudPropertyParm'(${1:Bytes}, ${2:Param2}) $3" -p83511 -tp83512 -a(S"'dec_IndAudSeqSigList'/2" -p83513 -S"'dec_IndAudSeqSigList'(${1:Bytes}, ${2:Param2}) $3" -p83514 -tp83515 -a(S"'dec_IndAudSignal'/2" -p83516 -S"'dec_IndAudSignal'(${1:Bytes}, ${2:Param2}) $3" -p83517 -tp83518 -a(S"'dec_IndAudSignalsDescriptor'/2" -p83519 -S"'dec_IndAudSignalsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p83520 -tp83521 -a(S"'dec_IndAudStatisticsDescriptor'/2" -p83522 -S"'dec_IndAudStatisticsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p83523 -tp83524 -a(S"'dec_IndAudStreamDescriptor'/2" -p83525 -S"'dec_IndAudStreamDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p83526 -tp83527 -a(S"'dec_IndAudStreamParms'/2" -p83528 -S"'dec_IndAudStreamParms'(${1:Bytes}, ${2:Param2}) $3" -p83529 -tp83530 -a(S"'dec_IndAudTerminationStateDescriptor'/2" -p83531 -S"'dec_IndAudTerminationStateDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p83532 -tp83533 -a(S"'dec_IndAuditParameter'/2" -p83534 -S"'dec_IndAuditParameter'(${1:Bytes}, ${2:Param2}) $3" -p83535 -tp83536 -a(S"'dec_LocalControlDescriptor'/2" -p83537 -S"'dec_LocalControlDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p83538 -tp83539 -a(S"'dec_LocalRemoteDescriptor'/2" -p83540 -S"'dec_LocalRemoteDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p83541 -tp83542 -a(S"'dec_MId'/2" -p83543 -S"'dec_MId'(${1:Bytes}, ${2:Param2}) $3" -p83544 -tp83545 -a(S"'dec_MediaDescriptor'/2" -p83546 -S"'dec_MediaDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p83547 -tp83548 -a(S"'dec_MegacoMessage'/2" -p83549 -S"'dec_MegacoMessage'(${1:Bytes}, ${2:Param2}) $3" -p83550 -tp83551 -a(S"'dec_Message'/2" -p83552 -S"'dec_Message'(${1:Bytes}, ${2:Param2}) $3" -p83553 -tp83554 -a(S"'dec_ModemDescriptor'/2" -p83555 -S"'dec_ModemDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p83556 -tp83557 -a(S"'dec_ModemType'/2" -p83558 -S"'dec_ModemType'(${1:Bytes}, ${2:Param2}) $3" -p83559 -tp83560 -a(S"'dec_MuxDescriptor'/2" -p83561 -S"'dec_MuxDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p83562 -tp83563 -a(S"'dec_MuxType'/2" -p83564 -S"'dec_MuxType'(${1:Bytes}, ${2:Param2}) $3" -p83565 -tp83566 -a(S"'dec_Name'/2" -p83567 -S"'dec_Name'(${1:Bytes}, ${2:Param2}) $3" -p83568 -tp83569 -a(S"'dec_NonStandardData'/2" -p83570 -S"'dec_NonStandardData'(${1:Bytes}, ${2:Param2}) $3" -p83571 -tp83572 -a(S"'dec_NonStandardIdentifier'/2" -p83573 -S"'dec_NonStandardIdentifier'(${1:Bytes}, ${2:Param2}) $3" -p83574 -tp83575 -a(S"'dec_NotifyCompletion'/2" -p83576 -S"'dec_NotifyCompletion'(${1:Bytes}, ${2:Param2}) $3" -p83577 -tp83578 -a(S"'dec_NotifyReply'/2" -p83579 -S"'dec_NotifyReply'(${1:Bytes}, ${2:Param2}) $3" -p83580 -tp83581 -a(S"'dec_NotifyRequest'/2" -p83582 -S"'dec_NotifyRequest'(${1:Bytes}, ${2:Param2}) $3" -p83583 -tp83584 -a(S"'dec_ObservedEvent'/2" -p83585 -S"'dec_ObservedEvent'(${1:Bytes}, ${2:Param2}) $3" -p83586 -tp83587 -a(S"'dec_ObservedEventsDescriptor'/2" -p83588 -S"'dec_ObservedEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p83589 -tp83590 -a(S"'dec_PackagesDescriptor'/2" -p83591 -S"'dec_PackagesDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p83592 -tp83593 -a(S"'dec_PackagesItem'/2" -p83594 -S"'dec_PackagesItem'(${1:Bytes}, ${2:Param2}) $3" -p83595 -tp83596 -a(S"'dec_PathName'/2" -p83597 -S"'dec_PathName'(${1:Bytes}, ${2:Param2}) $3" -p83598 -tp83599 -a(S"'dec_PkgdName'/2" -p83600 -S"'dec_PkgdName'(${1:Bytes}, ${2:Param2}) $3" -p83601 -tp83602 -a(S"'dec_PropertyGroup'/2" -p83603 -S"'dec_PropertyGroup'(${1:Bytes}, ${2:Param2}) $3" -p83604 -tp83605 -a(S"'dec_PropertyParm'/2" -p83606 -S"'dec_PropertyParm'(${1:Bytes}, ${2:Param2}) $3" -p83607 -tp83608 -a(S"'dec_Relation'/2" -p83609 -S"'dec_Relation'(${1:Bytes}, ${2:Param2}) $3" -p83610 -tp83611 -a(S"'dec_RequestID'/2" -p83612 -S"'dec_RequestID'(${1:Bytes}, ${2:Param2}) $3" -p83613 -tp83614 -a(S"'dec_RequestedActions'/2" -p83615 -S"'dec_RequestedActions'(${1:Bytes}, ${2:Param2}) $3" -p83616 -tp83617 -a(S"'dec_RequestedEvent'/2" -p83618 -S"'dec_RequestedEvent'(${1:Bytes}, ${2:Param2}) $3" -p83619 -tp83620 -a(S"'dec_SecondEventsDescriptor'/2" -p83621 -S"'dec_SecondEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p83622 -tp83623 -a(S"'dec_SecondRequestedActions'/2" -p83624 -S"'dec_SecondRequestedActions'(${1:Bytes}, ${2:Param2}) $3" -p83625 -tp83626 -a(S"'dec_SecondRequestedEvent'/2" -p83627 -S"'dec_SecondRequestedEvent'(${1:Bytes}, ${2:Param2}) $3" -p83628 -tp83629 -a(S"'dec_SecurityParmIndex'/2" -p83630 -S"'dec_SecurityParmIndex'(${1:Bytes}, ${2:Param2}) $3" -p83631 -tp83632 -a(S"'dec_SeqSigList'/2" -p83633 -S"'dec_SeqSigList'(${1:Bytes}, ${2:Param2}) $3" -p83634 -tp83635 -a(S"'dec_SequenceNum'/2" -p83636 -S"'dec_SequenceNum'(${1:Bytes}, ${2:Param2}) $3" -p83637 -tp83638 -a(S"'dec_ServiceChangeAddress'/2" -p83639 -S"'dec_ServiceChangeAddress'(${1:Bytes}, ${2:Param2}) $3" -p83640 -tp83641 -a(S"'dec_ServiceChangeMethod'/2" -p83642 -S"'dec_ServiceChangeMethod'(${1:Bytes}, ${2:Param2}) $3" -p83643 -tp83644 -a(S"'dec_ServiceChangeParm'/2" -p83645 -S"'dec_ServiceChangeParm'(${1:Bytes}, ${2:Param2}) $3" -p83646 -tp83647 -a(S"'dec_ServiceChangeProfile'/2" -p83648 -S"'dec_ServiceChangeProfile'(${1:Bytes}, ${2:Param2}) $3" -p83649 -tp83650 -a(S"'dec_ServiceChangeReply'/2" -p83651 -S"'dec_ServiceChangeReply'(${1:Bytes}, ${2:Param2}) $3" -p83652 -tp83653 -a(S"'dec_ServiceChangeRequest'/2" -p83654 -S"'dec_ServiceChangeRequest'(${1:Bytes}, ${2:Param2}) $3" -p83655 -tp83656 -a(S"'dec_ServiceChangeResParm'/2" -p83657 -S"'dec_ServiceChangeResParm'(${1:Bytes}, ${2:Param2}) $3" -p83658 -tp83659 -a(S"'dec_ServiceChangeResult'/2" -p83660 -S"'dec_ServiceChangeResult'(${1:Bytes}, ${2:Param2}) $3" -p83661 -tp83662 -a(S"'dec_ServiceState'/2" -p83663 -S"'dec_ServiceState'(${1:Bytes}, ${2:Param2}) $3" -p83664 -tp83665 -a(S"'dec_SigParameter'/2" -p83666 -S"'dec_SigParameter'(${1:Bytes}, ${2:Param2}) $3" -p83667 -tp83668 -a(S"'dec_Signal'/2" -p83669 -S"'dec_Signal'(${1:Bytes}, ${2:Param2}) $3" -p83670 -tp83671 -a(S"'dec_SignalName'/2" -p83672 -S"'dec_SignalName'(${1:Bytes}, ${2:Param2}) $3" -p83673 -tp83674 -a(S"'dec_SignalRequest'/2" -p83675 -S"'dec_SignalRequest'(${1:Bytes}, ${2:Param2}) $3" -p83676 -tp83677 -a(S"'dec_SignalType'/2" -p83678 -S"'dec_SignalType'(${1:Bytes}, ${2:Param2}) $3" -p83679 -tp83680 -a(S"'dec_SignalsDescriptor'/2" -p83681 -S"'dec_SignalsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p83682 -tp83683 -a(S"'dec_StatisticsDescriptor'/2" -p83684 -S"'dec_StatisticsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p83685 -tp83686 -a(S"'dec_StatisticsParameter'/2" -p83687 -S"'dec_StatisticsParameter'(${1:Bytes}, ${2:Param2}) $3" -p83688 -tp83689 -a(S"'dec_StreamDescriptor'/2" -p83690 -S"'dec_StreamDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p83691 -tp83692 -a(S"'dec_StreamID'/2" -p83693 -S"'dec_StreamID'(${1:Bytes}, ${2:Param2}) $3" -p83694 -tp83695 -a(S"'dec_StreamMode'/2" -p83696 -S"'dec_StreamMode'(${1:Bytes}, ${2:Param2}) $3" -p83697 -tp83698 -a(S"'dec_StreamParms'/2" -p83699 -S"'dec_StreamParms'(${1:Bytes}, ${2:Param2}) $3" -p83700 -tp83701 -a(S"'dec_SubtractRequest'/2" -p83702 -S"'dec_SubtractRequest'(${1:Bytes}, ${2:Param2}) $3" -p83703 -tp83704 -a(S"'dec_TerminationAudit'/2" -p83705 -S"'dec_TerminationAudit'(${1:Bytes}, ${2:Param2}) $3" -p83706 -tp83707 -a(S"'dec_TerminationID'/2" -p83708 -S"'dec_TerminationID'(${1:Bytes}, ${2:Param2}) $3" -p83709 -tp83710 -a(S"'dec_TerminationIDList'/2" -p83711 -S"'dec_TerminationIDList'(${1:Bytes}, ${2:Param2}) $3" -p83712 -tp83713 -a(S"'dec_TerminationStateDescriptor'/2" -p83714 -S"'dec_TerminationStateDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p83715 -tp83716 -a(S"'dec_TimeNotation'/2" -p83717 -S"'dec_TimeNotation'(${1:Bytes}, ${2:Param2}) $3" -p83718 -tp83719 -a(S"'dec_TopologyRequest'/2" -p83720 -S"'dec_TopologyRequest'(${1:Bytes}, ${2:Param2}) $3" -p83721 -tp83722 -a(S"'dec_Transaction'/2" -p83723 -S"'dec_Transaction'(${1:Bytes}, ${2:Param2}) $3" -p83724 -tp83725 -a(S"'dec_TransactionAck'/2" -p83726 -S"'dec_TransactionAck'(${1:Bytes}, ${2:Param2}) $3" -p83727 -tp83728 -a(S"'dec_TransactionId'/2" -p83729 -S"'dec_TransactionId'(${1:Bytes}, ${2:Param2}) $3" -p83730 -tp83731 -a(S"'dec_TransactionPending'/2" -p83732 -S"'dec_TransactionPending'(${1:Bytes}, ${2:Param2}) $3" -p83733 -tp83734 -a(S"'dec_TransactionReply'/2" -p83735 -S"'dec_TransactionReply'(${1:Bytes}, ${2:Param2}) $3" -p83736 -tp83737 -a(S"'dec_TransactionRequest'/2" -p83738 -S"'dec_TransactionRequest'(${1:Bytes}, ${2:Param2}) $3" -p83739 -tp83740 -a(S"'dec_TransactionResponseAck'/2" -p83741 -S"'dec_TransactionResponseAck'(${1:Bytes}, ${2:Param2}) $3" -p83742 -tp83743 -a(S"'dec_Value'/2" -p83744 -S"'dec_Value'(${1:Bytes}, ${2:Param2}) $3" -p83745 -tp83746 -a(S"'dec_WildcardField'/2" -p83747 -S"'dec_WildcardField'(${1:Bytes}, ${2:Param2}) $3" -p83748 -tp83749 -a(S"'enc_ActionReply'/1" -p83750 -S"'enc_ActionReply'(${1:Val}) $2" -p83751 -tp83752 -a(S"'enc_ActionRequest'/1" -p83753 -S"'enc_ActionRequest'(${1:Val}) $2" -p83754 -tp83755 -a(S"'enc_AmmDescriptor'/1" -p83756 -S"'enc_AmmDescriptor'(${1:Val}) $2" -p83757 -tp83758 -a(S"'enc_AmmRequest'/1" -p83759 -S"'enc_AmmRequest'(${1:Val}) $2" -p83760 -tp83761 -a(S"'enc_AmmsReply'/1" -p83762 -S"'enc_AmmsReply'(${1:Val}) $2" -p83763 -tp83764 -a(S"'enc_AuditDescriptor'/1" -p83765 -S"'enc_AuditDescriptor'(${1:Val}) $2" -p83766 -tp83767 -a(S"'enc_AuditReply'/1" -p83768 -S"'enc_AuditReply'(${1:Val}) $2" -p83769 -tp83770 -a(S"'enc_AuditRequest'/1" -p83771 -S"'enc_AuditRequest'(${1:Val}) $2" -p83772 -tp83773 -a(S"'enc_AuditResult'/1" -p83774 -S"'enc_AuditResult'(${1:Val}) $2" -p83775 -tp83776 -a(S"'enc_AuditReturnParameter'/1" -p83777 -S"'enc_AuditReturnParameter'(${1:Val}) $2" -p83778 -tp83779 -a(S"'enc_AuthData'/1" -p83780 -S"'enc_AuthData'(${1:Val}) $2" -p83781 -tp83782 -a(S"'enc_AuthenticationHeader'/1" -p83783 -S"'enc_AuthenticationHeader'(${1:Val}) $2" -p83784 -tp83785 -a(S"'enc_Command'/1" -p83786 -S"'enc_Command'(${1:Val}) $2" -p83787 -tp83788 -a(S"'enc_CommandReply'/1" -p83789 -S"'enc_CommandReply'(${1:Val}) $2" -p83790 -tp83791 -a(S"'enc_CommandRequest'/1" -p83792 -S"'enc_CommandRequest'(${1:Val}) $2" -p83793 -tp83794 -a(S"'enc_ContextAttrAuditRequest'/1" -p83795 -S"'enc_ContextAttrAuditRequest'(${1:Val}) $2" -p83796 -tp83797 -a(S"'enc_ContextID'/1" -p83798 -S"'enc_ContextID'(${1:Val}) $2" -p83799 -tp83800 -a(S"'enc_ContextRequest'/1" -p83801 -S"'enc_ContextRequest'(${1:Val}) $2" -p83802 -tp83803 -a(S"'enc_DigitMapDescriptor'/1" -p83804 -S"'enc_DigitMapDescriptor'(${1:Val}) $2" -p83805 -tp83806 -a(S"'enc_DigitMapName'/1" -p83807 -S"'enc_DigitMapName'(${1:Val}) $2" -p83808 -tp83809 -a(S"'enc_DigitMapValue'/1" -p83810 -S"'enc_DigitMapValue'(${1:Val}) $2" -p83811 -tp83812 -a(S"'enc_DomainName'/1" -p83813 -S"'enc_DomainName'(${1:Val}) $2" -p83814 -tp83815 -a(S"'enc_ErrorCode'/1" -p83816 -S"'enc_ErrorCode'(${1:Val}) $2" -p83817 -tp83818 -a(S"'enc_ErrorDescriptor'/1" -p83819 -S"'enc_ErrorDescriptor'(${1:Val}) $2" -p83820 -tp83821 -a(S"'enc_ErrorText'/1" -p83822 -S"'enc_ErrorText'(${1:Val}) $2" -p83823 -tp83824 -a(S"'enc_EventBufferControl'/1" -p83825 -S"'enc_EventBufferControl'(${1:Val}) $2" -p83826 -tp83827 -a(S"'enc_EventBufferDescriptor'/1" -p83828 -S"'enc_EventBufferDescriptor'(${1:Val}) $2" -p83829 -tp83830 -a(S"'enc_EventDM'/1" -p83831 -S"'enc_EventDM'(${1:Val}) $2" -p83832 -tp83833 -a(S"'enc_EventName'/1" -p83834 -S"'enc_EventName'(${1:Val}) $2" -p83835 -tp83836 -a(S"'enc_EventParameter'/1" -p83837 -S"'enc_EventParameter'(${1:Val}) $2" -p83838 -tp83839 -a(S"'enc_EventSpec'/1" -p83840 -S"'enc_EventSpec'(${1:Val}) $2" -p83841 -tp83842 -a(S"'enc_EventsDescriptor'/1" -p83843 -S"'enc_EventsDescriptor'(${1:Val}) $2" -p83844 -tp83845 -a(S"'enc_H221NonStandard'/1" -p83846 -S"'enc_H221NonStandard'(${1:Val}) $2" -p83847 -tp83848 -a(S"'enc_IP4Address'/1" -p83849 -S"'enc_IP4Address'(${1:Val}) $2" -p83850 -tp83851 -a(S"'enc_IP6Address'/1" -p83852 -S"'enc_IP6Address'(${1:Val}) $2" -p83853 -tp83854 -a(S"'enc_IndAudDigitMapDescriptor'/1" -p83855 -S"'enc_IndAudDigitMapDescriptor'(${1:Val}) $2" -p83856 -tp83857 -a(S"'enc_IndAudEventBufferDescriptor'/1" -p83858 -S"'enc_IndAudEventBufferDescriptor'(${1:Val}) $2" -p83859 -tp83860 -a(S"'enc_IndAudEventsDescriptor'/1" -p83861 -S"'enc_IndAudEventsDescriptor'(${1:Val}) $2" -p83862 -tp83863 -a(S"'enc_IndAudLocalControlDescriptor'/1" -p83864 -S"'enc_IndAudLocalControlDescriptor'(${1:Val}) $2" -p83865 -tp83866 -a(S"'enc_IndAudLocalRemoteDescriptor'/1" -p83867 -S"'enc_IndAudLocalRemoteDescriptor'(${1:Val}) $2" -p83868 -tp83869 -a(S"'enc_IndAudMediaDescriptor'/1" -p83870 -S"'enc_IndAudMediaDescriptor'(${1:Val}) $2" -p83871 -tp83872 -a(S"'enc_IndAudPackagesDescriptor'/1" -p83873 -S"'enc_IndAudPackagesDescriptor'(${1:Val}) $2" -p83874 -tp83875 -a(S"'enc_IndAudPropertyGroup'/1" -p83876 -S"'enc_IndAudPropertyGroup'(${1:Val}) $2" -p83877 -tp83878 -a(S"'enc_IndAudPropertyParm'/1" -p83879 -S"'enc_IndAudPropertyParm'(${1:Val}) $2" -p83880 -tp83881 -a(S"'enc_IndAudSeqSigList'/1" -p83882 -S"'enc_IndAudSeqSigList'(${1:Val}) $2" -p83883 -tp83884 -a(S"'enc_IndAudSignal'/1" -p83885 -S"'enc_IndAudSignal'(${1:Val}) $2" -p83886 -tp83887 -a(S"'enc_IndAudSignalsDescriptor'/1" -p83888 -S"'enc_IndAudSignalsDescriptor'(${1:Val}) $2" -p83889 -tp83890 -a(S"'enc_IndAudStatisticsDescriptor'/1" -p83891 -S"'enc_IndAudStatisticsDescriptor'(${1:Val}) $2" -p83892 -tp83893 -a(S"'enc_IndAudStreamDescriptor'/1" -p83894 -S"'enc_IndAudStreamDescriptor'(${1:Val}) $2" -p83895 -tp83896 -a(S"'enc_IndAudStreamParms'/1" -p83897 -S"'enc_IndAudStreamParms'(${1:Val}) $2" -p83898 -tp83899 -a(S"'enc_IndAudTerminationStateDescriptor'/1" -p83900 -S"'enc_IndAudTerminationStateDescriptor'(${1:Val}) $2" -p83901 -tp83902 -a(S"'enc_IndAuditParameter'/1" -p83903 -S"'enc_IndAuditParameter'(${1:Val}) $2" -p83904 -tp83905 -a(S"'enc_LocalControlDescriptor'/1" -p83906 -S"'enc_LocalControlDescriptor'(${1:Val}) $2" -p83907 -tp83908 -a(S"'enc_LocalRemoteDescriptor'/1" -p83909 -S"'enc_LocalRemoteDescriptor'(${1:Val}) $2" -p83910 -tp83911 -a(S"'enc_MId'/1" -p83912 -S"'enc_MId'(${1:Val}) $2" -p83913 -tp83914 -a(S"'enc_MediaDescriptor'/1" -p83915 -S"'enc_MediaDescriptor'(${1:Val}) $2" -p83916 -tp83917 -a(S"'enc_MegacoMessage'/1" -p83918 -S"'enc_MegacoMessage'(${1:Val}) $2" -p83919 -tp83920 -a(S"'enc_Message'/1" -p83921 -S"'enc_Message'(${1:Val}) $2" -p83922 -tp83923 -a(S"'enc_ModemDescriptor'/1" -p83924 -S"'enc_ModemDescriptor'(${1:Val}) $2" -p83925 -tp83926 -a(S"'enc_ModemType'/1" -p83927 -S"'enc_ModemType'(${1:Val}) $2" -p83928 -tp83929 -a(S"'enc_MuxDescriptor'/1" -p83930 -S"'enc_MuxDescriptor'(${1:Val}) $2" -p83931 -tp83932 -a(S"'enc_MuxType'/1" -p83933 -S"'enc_MuxType'(${1:Val}) $2" -p83934 -tp83935 -a(S"'enc_Name'/1" -p83936 -S"'enc_Name'(${1:Val}) $2" -p83937 -tp83938 -a(S"'enc_NonStandardData'/1" -p83939 -S"'enc_NonStandardData'(${1:Val}) $2" -p83940 -tp83941 -a(S"'enc_NonStandardIdentifier'/1" -p83942 -S"'enc_NonStandardIdentifier'(${1:Val}) $2" -p83943 -tp83944 -a(S"'enc_NotifyCompletion'/1" -p83945 -S"'enc_NotifyCompletion'(${1:Val}) $2" -p83946 -tp83947 -a(S"'enc_NotifyReply'/1" -p83948 -S"'enc_NotifyReply'(${1:Val}) $2" -p83949 -tp83950 -a(S"'enc_NotifyRequest'/1" -p83951 -S"'enc_NotifyRequest'(${1:Val}) $2" -p83952 -tp83953 -a(S"'enc_ObservedEvent'/1" -p83954 -S"'enc_ObservedEvent'(${1:Val}) $2" -p83955 -tp83956 -a(S"'enc_ObservedEventsDescriptor'/1" -p83957 -S"'enc_ObservedEventsDescriptor'(${1:Val}) $2" -p83958 -tp83959 -a(S"'enc_PackagesDescriptor'/1" -p83960 -S"'enc_PackagesDescriptor'(${1:Val}) $2" -p83961 -tp83962 -a(S"'enc_PackagesItem'/1" -p83963 -S"'enc_PackagesItem'(${1:Val}) $2" -p83964 -tp83965 -a(S"'enc_PathName'/1" -p83966 -S"'enc_PathName'(${1:Val}) $2" -p83967 -tp83968 -a(S"'enc_PkgdName'/1" -p83969 -S"'enc_PkgdName'(${1:Val}) $2" -p83970 -tp83971 -a(S"'enc_PropertyGroup'/1" -p83972 -S"'enc_PropertyGroup'(${1:Val}) $2" -p83973 -tp83974 -a(S"'enc_PropertyParm'/1" -p83975 -S"'enc_PropertyParm'(${1:Val}) $2" -p83976 -tp83977 -a(S"'enc_Relation'/1" -p83978 -S"'enc_Relation'(${1:Val}) $2" -p83979 -tp83980 -a(S"'enc_RequestID'/1" -p83981 -S"'enc_RequestID'(${1:Val}) $2" -p83982 -tp83983 -a(S"'enc_RequestedActions'/1" -p83984 -S"'enc_RequestedActions'(${1:Val}) $2" -p83985 -tp83986 -a(S"'enc_RequestedEvent'/1" -p83987 -S"'enc_RequestedEvent'(${1:Val}) $2" -p83988 -tp83989 -a(S"'enc_SecondEventsDescriptor'/1" -p83990 -S"'enc_SecondEventsDescriptor'(${1:Val}) $2" -p83991 -tp83992 -a(S"'enc_SecondRequestedActions'/1" -p83993 -S"'enc_SecondRequestedActions'(${1:Val}) $2" -p83994 -tp83995 -a(S"'enc_SecondRequestedEvent'/1" -p83996 -S"'enc_SecondRequestedEvent'(${1:Val}) $2" -p83997 -tp83998 -a(S"'enc_SecurityParmIndex'/1" -p83999 -S"'enc_SecurityParmIndex'(${1:Val}) $2" -p84000 -tp84001 -a(S"'enc_SeqSigList'/1" -p84002 -S"'enc_SeqSigList'(${1:Val}) $2" -p84003 -tp84004 -a(S"'enc_SequenceNum'/1" -p84005 -S"'enc_SequenceNum'(${1:Val}) $2" -p84006 -tp84007 -a(S"'enc_ServiceChangeAddress'/1" -p84008 -S"'enc_ServiceChangeAddress'(${1:Val}) $2" -p84009 -tp84010 -a(S"'enc_ServiceChangeMethod'/1" -p84011 -S"'enc_ServiceChangeMethod'(${1:Val}) $2" -p84012 -tp84013 -a(S"'enc_ServiceChangeParm'/1" -p84014 -S"'enc_ServiceChangeParm'(${1:Val}) $2" -p84015 -tp84016 -a(S"'enc_ServiceChangeProfile'/1" -p84017 -S"'enc_ServiceChangeProfile'(${1:Val}) $2" -p84018 -tp84019 -a(S"'enc_ServiceChangeReply'/1" -p84020 -S"'enc_ServiceChangeReply'(${1:Val}) $2" -p84021 -tp84022 -a(S"'enc_ServiceChangeRequest'/1" -p84023 -S"'enc_ServiceChangeRequest'(${1:Val}) $2" -p84024 -tp84025 -a(S"'enc_ServiceChangeResParm'/1" -p84026 -S"'enc_ServiceChangeResParm'(${1:Val}) $2" -p84027 -tp84028 -a(S"'enc_ServiceChangeResult'/1" -p84029 -S"'enc_ServiceChangeResult'(${1:Val}) $2" -p84030 -tp84031 -a(S"'enc_ServiceState'/1" -p84032 -S"'enc_ServiceState'(${1:Val}) $2" -p84033 -tp84034 -a(S"'enc_SigParameter'/1" -p84035 -S"'enc_SigParameter'(${1:Val}) $2" -p84036 -tp84037 -a(S"'enc_Signal'/1" -p84038 -S"'enc_Signal'(${1:Val}) $2" -p84039 -tp84040 -a(S"'enc_SignalName'/1" -p84041 -S"'enc_SignalName'(${1:Val}) $2" -p84042 -tp84043 -a(S"'enc_SignalRequest'/1" -p84044 -S"'enc_SignalRequest'(${1:Val}) $2" -p84045 -tp84046 -a(S"'enc_SignalType'/1" -p84047 -S"'enc_SignalType'(${1:Val}) $2" -p84048 -tp84049 -a(S"'enc_SignalsDescriptor'/1" -p84050 -S"'enc_SignalsDescriptor'(${1:Val}) $2" -p84051 -tp84052 -a(S"'enc_StatisticsDescriptor'/1" -p84053 -S"'enc_StatisticsDescriptor'(${1:Val}) $2" -p84054 -tp84055 -a(S"'enc_StatisticsParameter'/1" -p84056 -S"'enc_StatisticsParameter'(${1:Val}) $2" -p84057 -tp84058 -a(S"'enc_StreamDescriptor'/1" -p84059 -S"'enc_StreamDescriptor'(${1:Val}) $2" -p84060 -tp84061 -a(S"'enc_StreamID'/1" -p84062 -S"'enc_StreamID'(${1:Val}) $2" -p84063 -tp84064 -a(S"'enc_StreamMode'/1" -p84065 -S"'enc_StreamMode'(${1:Val}) $2" -p84066 -tp84067 -a(S"'enc_StreamParms'/1" -p84068 -S"'enc_StreamParms'(${1:Val}) $2" -p84069 -tp84070 -a(S"'enc_SubtractRequest'/1" -p84071 -S"'enc_SubtractRequest'(${1:Val}) $2" -p84072 -tp84073 -a(S"'enc_TerminationAudit'/1" -p84074 -S"'enc_TerminationAudit'(${1:Val}) $2" -p84075 -tp84076 -a(S"'enc_TerminationID'/1" -p84077 -S"'enc_TerminationID'(${1:Val}) $2" -p84078 -tp84079 -a(S"'enc_TerminationIDList'/1" -p84080 -S"'enc_TerminationIDList'(${1:Val}) $2" -p84081 -tp84082 -a(S"'enc_TerminationStateDescriptor'/1" -p84083 -S"'enc_TerminationStateDescriptor'(${1:Val}) $2" -p84084 -tp84085 -a(S"'enc_TimeNotation'/1" -p84086 -S"'enc_TimeNotation'(${1:Val}) $2" -p84087 -tp84088 -a(S"'enc_TopologyRequest'/1" -p84089 -S"'enc_TopologyRequest'(${1:Val}) $2" -p84090 -tp84091 -a(S"'enc_Transaction'/1" -p84092 -S"'enc_Transaction'(${1:Val}) $2" -p84093 -tp84094 -a(S"'enc_TransactionAck'/1" -p84095 -S"'enc_TransactionAck'(${1:Val}) $2" -p84096 -tp84097 -a(S"'enc_TransactionId'/1" -p84098 -S"'enc_TransactionId'(${1:Val}) $2" -p84099 -tp84100 -a(S"'enc_TransactionPending'/1" -p84101 -S"'enc_TransactionPending'(${1:Val}) $2" -p84102 -tp84103 -a(S"'enc_TransactionReply'/1" -p84104 -S"'enc_TransactionReply'(${1:Val}) $2" -p84105 -tp84106 -a(S"'enc_TransactionRequest'/1" -p84107 -S"'enc_TransactionRequest'(${1:Val}) $2" -p84108 -tp84109 -a(S"'enc_TransactionResponseAck'/1" -p84110 -S"'enc_TransactionResponseAck'(${1:Val}) $2" -p84111 -tp84112 -a(S"'enc_Value'/1" -p84113 -S"'enc_Value'(${1:Val}) $2" -p84114 -tp84115 -a(S"'enc_WildcardField'/1" -p84116 -S"'enc_WildcardField'(${1:Val}) $2" -p84117 -tp84118 -a(S'decode/2' -p84119 -S'decode(${1:Type}, ${2:Data}) $3' -p84120 -tp84121 -a(S'decode_disp/2' -p84122 -S'decode_disp(${1:Type}, ${2:Data}) $3' -p84123 -tp84124 -a(S'encode/2' -p84125 -S'encode(${1:Type}, ${2:Data}) $3' -p84126 -tp84127 -a(S'encode_disp/2' -p84128 -S'encode_disp(${1:Type}, ${2:Data}) $3' -p84129 -tp84130 -a(S'encoding_rule/0' -p84131 -S'encoding_rule() $1' -p84132 -tp84133 -a(S'info/0' -p84134 -S'info() $1' -p84135 -tp84136 -asS'megaco_per_bin_drv_media_gateway_control_v1' -p84137 -(lp84138 -(S"'dec_ActionReply'/2" -p84139 -S"'dec_ActionReply'(${1:Bytes}, ${2:Param2}) $3" -p84140 -tp84141 -a(S"'dec_ActionRequest'/2" -p84142 -S"'dec_ActionRequest'(${1:Bytes}, ${2:Param2}) $3" -p84143 -tp84144 -a(S"'dec_AmmDescriptor'/2" -p84145 -S"'dec_AmmDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p84146 -tp84147 -a(S"'dec_AmmRequest'/2" -p84148 -S"'dec_AmmRequest'(${1:Bytes}, ${2:Param2}) $3" -p84149 -tp84150 -a(S"'dec_AmmsReply'/2" -p84151 -S"'dec_AmmsReply'(${1:Bytes}, ${2:Param2}) $3" -p84152 -tp84153 -a(S"'dec_AuditDescriptor'/2" -p84154 -S"'dec_AuditDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p84155 -tp84156 -a(S"'dec_AuditReply'/2" -p84157 -S"'dec_AuditReply'(${1:Bytes}, ${2:Param2}) $3" -p84158 -tp84159 -a(S"'dec_AuditRequest'/2" -p84160 -S"'dec_AuditRequest'(${1:Bytes}, ${2:Param2}) $3" -p84161 -tp84162 -a(S"'dec_AuditResult'/2" -p84163 -S"'dec_AuditResult'(${1:Bytes}, ${2:Param2}) $3" -p84164 -tp84165 -a(S"'dec_AuditReturnParameter'/2" -p84166 -S"'dec_AuditReturnParameter'(${1:Bytes}, ${2:Param2}) $3" -p84167 -tp84168 -a(S"'dec_AuthData'/2" -p84169 -S"'dec_AuthData'(${1:Bytes}, ${2:Param2}) $3" -p84170 -tp84171 -a(S"'dec_AuthenticationHeader'/2" -p84172 -S"'dec_AuthenticationHeader'(${1:Bytes}, ${2:Param2}) $3" -p84173 -tp84174 -a(S"'dec_Command'/2" -p84175 -S"'dec_Command'(${1:Bytes}, ${2:Param2}) $3" -p84176 -tp84177 -a(S"'dec_CommandReply'/2" -p84178 -S"'dec_CommandReply'(${1:Bytes}, ${2:Param2}) $3" -p84179 -tp84180 -a(S"'dec_CommandRequest'/2" -p84181 -S"'dec_CommandRequest'(${1:Bytes}, ${2:Param2}) $3" -p84182 -tp84183 -a(S"'dec_ContextAttrAuditRequest'/2" -p84184 -S"'dec_ContextAttrAuditRequest'(${1:Bytes}, ${2:Param2}) $3" -p84185 -tp84186 -a(S"'dec_ContextID'/2" -p84187 -S"'dec_ContextID'(${1:Bytes}, ${2:Param2}) $3" -p84188 -tp84189 -a(S"'dec_ContextRequest'/2" -p84190 -S"'dec_ContextRequest'(${1:Bytes}, ${2:Param2}) $3" -p84191 -tp84192 -a(S"'dec_DigitMapDescriptor'/2" -p84193 -S"'dec_DigitMapDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p84194 -tp84195 -a(S"'dec_DigitMapName'/2" -p84196 -S"'dec_DigitMapName'(${1:Bytes}, ${2:Param2}) $3" -p84197 -tp84198 -a(S"'dec_DigitMapValue'/2" -p84199 -S"'dec_DigitMapValue'(${1:Bytes}, ${2:Param2}) $3" -p84200 -tp84201 -a(S"'dec_DomainName'/2" -p84202 -S"'dec_DomainName'(${1:Bytes}, ${2:Param2}) $3" -p84203 -tp84204 -a(S"'dec_ErrorCode'/2" -p84205 -S"'dec_ErrorCode'(${1:Bytes}, ${2:Param2}) $3" -p84206 -tp84207 -a(S"'dec_ErrorDescriptor'/2" -p84208 -S"'dec_ErrorDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p84209 -tp84210 -a(S"'dec_ErrorText'/2" -p84211 -S"'dec_ErrorText'(${1:Bytes}, ${2:Param2}) $3" -p84212 -tp84213 -a(S"'dec_EventBufferControl'/2" -p84214 -S"'dec_EventBufferControl'(${1:Bytes}, ${2:Param2}) $3" -p84215 -tp84216 -a(S"'dec_EventBufferDescriptor'/2" -p84217 -S"'dec_EventBufferDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p84218 -tp84219 -a(S"'dec_EventDM'/2" -p84220 -S"'dec_EventDM'(${1:Bytes}, ${2:Param2}) $3" -p84221 -tp84222 -a(S"'dec_EventName'/2" -p84223 -S"'dec_EventName'(${1:Bytes}, ${2:Param2}) $3" -p84224 -tp84225 -a(S"'dec_EventParameter'/2" -p84226 -S"'dec_EventParameter'(${1:Bytes}, ${2:Param2}) $3" -p84227 -tp84228 -a(S"'dec_EventSpec'/2" -p84229 -S"'dec_EventSpec'(${1:Bytes}, ${2:Param2}) $3" -p84230 -tp84231 -a(S"'dec_EventsDescriptor'/2" -p84232 -S"'dec_EventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p84233 -tp84234 -a(S"'dec_H221NonStandard'/2" -p84235 -S"'dec_H221NonStandard'(${1:Bytes}, ${2:Param2}) $3" -p84236 -tp84237 -a(S"'dec_IP4Address'/2" -p84238 -S"'dec_IP4Address'(${1:Bytes}, ${2:Param2}) $3" -p84239 -tp84240 -a(S"'dec_IP6Address'/2" -p84241 -S"'dec_IP6Address'(${1:Bytes}, ${2:Param2}) $3" -p84242 -tp84243 -a(S"'dec_LocalControlDescriptor'/2" -p84244 -S"'dec_LocalControlDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p84245 -tp84246 -a(S"'dec_LocalRemoteDescriptor'/2" -p84247 -S"'dec_LocalRemoteDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p84248 -tp84249 -a(S"'dec_MId'/2" -p84250 -S"'dec_MId'(${1:Bytes}, ${2:Param2}) $3" -p84251 -tp84252 -a(S"'dec_MediaDescriptor'/2" -p84253 -S"'dec_MediaDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p84254 -tp84255 -a(S"'dec_MegacoMessage'/2" -p84256 -S"'dec_MegacoMessage'(${1:Bytes}, ${2:Param2}) $3" -p84257 -tp84258 -a(S"'dec_Message'/2" -p84259 -S"'dec_Message'(${1:Bytes}, ${2:Param2}) $3" -p84260 -tp84261 -a(S"'dec_ModemDescriptor'/2" -p84262 -S"'dec_ModemDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p84263 -tp84264 -a(S"'dec_ModemType'/2" -p84265 -S"'dec_ModemType'(${1:Bytes}, ${2:Param2}) $3" -p84266 -tp84267 -a(S"'dec_MuxDescriptor'/2" -p84268 -S"'dec_MuxDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p84269 -tp84270 -a(S"'dec_MuxType'/2" -p84271 -S"'dec_MuxType'(${1:Bytes}, ${2:Param2}) $3" -p84272 -tp84273 -a(S"'dec_Name'/2" -p84274 -S"'dec_Name'(${1:Bytes}, ${2:Param2}) $3" -p84275 -tp84276 -a(S"'dec_NonStandardData'/2" -p84277 -S"'dec_NonStandardData'(${1:Bytes}, ${2:Param2}) $3" -p84278 -tp84279 -a(S"'dec_NonStandardIdentifier'/2" -p84280 -S"'dec_NonStandardIdentifier'(${1:Bytes}, ${2:Param2}) $3" -p84281 -tp84282 -a(S"'dec_NotifyCompletion'/2" -p84283 -S"'dec_NotifyCompletion'(${1:Bytes}, ${2:Param2}) $3" -p84284 -tp84285 -a(S"'dec_NotifyReply'/2" -p84286 -S"'dec_NotifyReply'(${1:Bytes}, ${2:Param2}) $3" -p84287 -tp84288 -a(S"'dec_NotifyRequest'/2" -p84289 -S"'dec_NotifyRequest'(${1:Bytes}, ${2:Param2}) $3" -p84290 -tp84291 -a(S"'dec_ObservedEvent'/2" -p84292 -S"'dec_ObservedEvent'(${1:Bytes}, ${2:Param2}) $3" -p84293 -tp84294 -a(S"'dec_ObservedEventsDescriptor'/2" -p84295 -S"'dec_ObservedEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p84296 -tp84297 -a(S"'dec_PackagesDescriptor'/2" -p84298 -S"'dec_PackagesDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p84299 -tp84300 -a(S"'dec_PackagesItem'/2" -p84301 -S"'dec_PackagesItem'(${1:Bytes}, ${2:Param2}) $3" -p84302 -tp84303 -a(S"'dec_PathName'/2" -p84304 -S"'dec_PathName'(${1:Bytes}, ${2:Param2}) $3" -p84305 -tp84306 -a(S"'dec_PkgdName'/2" -p84307 -S"'dec_PkgdName'(${1:Bytes}, ${2:Param2}) $3" -p84308 -tp84309 -a(S"'dec_PropertyGroup'/2" -p84310 -S"'dec_PropertyGroup'(${1:Bytes}, ${2:Param2}) $3" -p84311 -tp84312 -a(S"'dec_PropertyParm'/2" -p84313 -S"'dec_PropertyParm'(${1:Bytes}, ${2:Param2}) $3" -p84314 -tp84315 -a(S"'dec_Relation'/2" -p84316 -S"'dec_Relation'(${1:Bytes}, ${2:Param2}) $3" -p84317 -tp84318 -a(S"'dec_RequestID'/2" -p84319 -S"'dec_RequestID'(${1:Bytes}, ${2:Param2}) $3" -p84320 -tp84321 -a(S"'dec_RequestedActions'/2" -p84322 -S"'dec_RequestedActions'(${1:Bytes}, ${2:Param2}) $3" -p84323 -tp84324 -a(S"'dec_RequestedEvent'/2" -p84325 -S"'dec_RequestedEvent'(${1:Bytes}, ${2:Param2}) $3" -p84326 -tp84327 -a(S"'dec_SecondEventsDescriptor'/2" -p84328 -S"'dec_SecondEventsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p84329 -tp84330 -a(S"'dec_SecondRequestedActions'/2" -p84331 -S"'dec_SecondRequestedActions'(${1:Bytes}, ${2:Param2}) $3" -p84332 -tp84333 -a(S"'dec_SecondRequestedEvent'/2" -p84334 -S"'dec_SecondRequestedEvent'(${1:Bytes}, ${2:Param2}) $3" -p84335 -tp84336 -a(S"'dec_SecurityParmIndex'/2" -p84337 -S"'dec_SecurityParmIndex'(${1:Bytes}, ${2:Param2}) $3" -p84338 -tp84339 -a(S"'dec_SeqSigList'/2" -p84340 -S"'dec_SeqSigList'(${1:Bytes}, ${2:Param2}) $3" -p84341 -tp84342 -a(S"'dec_SequenceNum'/2" -p84343 -S"'dec_SequenceNum'(${1:Bytes}, ${2:Param2}) $3" -p84344 -tp84345 -a(S"'dec_ServiceChangeAddress'/2" -p84346 -S"'dec_ServiceChangeAddress'(${1:Bytes}, ${2:Param2}) $3" -p84347 -tp84348 -a(S"'dec_ServiceChangeMethod'/2" -p84349 -S"'dec_ServiceChangeMethod'(${1:Bytes}, ${2:Param2}) $3" -p84350 -tp84351 -a(S"'dec_ServiceChangeParm'/2" -p84352 -S"'dec_ServiceChangeParm'(${1:Bytes}, ${2:Param2}) $3" -p84353 -tp84354 -a(S"'dec_ServiceChangeProfile'/2" -p84355 -S"'dec_ServiceChangeProfile'(${1:Bytes}, ${2:Param2}) $3" -p84356 -tp84357 -a(S"'dec_ServiceChangeReply'/2" -p84358 -S"'dec_ServiceChangeReply'(${1:Bytes}, ${2:Param2}) $3" -p84359 -tp84360 -a(S"'dec_ServiceChangeRequest'/2" -p84361 -S"'dec_ServiceChangeRequest'(${1:Bytes}, ${2:Param2}) $3" -p84362 -tp84363 -a(S"'dec_ServiceChangeResParm'/2" -p84364 -S"'dec_ServiceChangeResParm'(${1:Bytes}, ${2:Param2}) $3" -p84365 -tp84366 -a(S"'dec_ServiceChangeResult'/2" -p84367 -S"'dec_ServiceChangeResult'(${1:Bytes}, ${2:Param2}) $3" -p84368 -tp84369 -a(S"'dec_ServiceState'/2" -p84370 -S"'dec_ServiceState'(${1:Bytes}, ${2:Param2}) $3" -p84371 -tp84372 -a(S"'dec_SigParameter'/2" -p84373 -S"'dec_SigParameter'(${1:Bytes}, ${2:Param2}) $3" -p84374 -tp84375 -a(S"'dec_Signal'/2" -p84376 -S"'dec_Signal'(${1:Bytes}, ${2:Param2}) $3" -p84377 -tp84378 -a(S"'dec_SignalName'/2" -p84379 -S"'dec_SignalName'(${1:Bytes}, ${2:Param2}) $3" -p84380 -tp84381 -a(S"'dec_SignalRequest'/2" -p84382 -S"'dec_SignalRequest'(${1:Bytes}, ${2:Param2}) $3" -p84383 -tp84384 -a(S"'dec_SignalType'/2" -p84385 -S"'dec_SignalType'(${1:Bytes}, ${2:Param2}) $3" -p84386 -tp84387 -a(S"'dec_SignalsDescriptor'/2" -p84388 -S"'dec_SignalsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p84389 -tp84390 -a(S"'dec_StatisticsDescriptor'/2" -p84391 -S"'dec_StatisticsDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p84392 -tp84393 -a(S"'dec_StatisticsParameter'/2" -p84394 -S"'dec_StatisticsParameter'(${1:Bytes}, ${2:Param2}) $3" -p84395 -tp84396 -a(S"'dec_StreamDescriptor'/2" -p84397 -S"'dec_StreamDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p84398 -tp84399 -a(S"'dec_StreamID'/2" -p84400 -S"'dec_StreamID'(${1:Bytes}, ${2:Param2}) $3" -p84401 -tp84402 -a(S"'dec_StreamMode'/2" -p84403 -S"'dec_StreamMode'(${1:Bytes}, ${2:Param2}) $3" -p84404 -tp84405 -a(S"'dec_StreamParms'/2" -p84406 -S"'dec_StreamParms'(${1:Bytes}, ${2:Param2}) $3" -p84407 -tp84408 -a(S"'dec_SubtractRequest'/2" -p84409 -S"'dec_SubtractRequest'(${1:Bytes}, ${2:Param2}) $3" -p84410 -tp84411 -a(S"'dec_TerminationAudit'/2" -p84412 -S"'dec_TerminationAudit'(${1:Bytes}, ${2:Param2}) $3" -p84413 -tp84414 -a(S"'dec_TerminationID'/2" -p84415 -S"'dec_TerminationID'(${1:Bytes}, ${2:Param2}) $3" -p84416 -tp84417 -a(S"'dec_TerminationIDList'/2" -p84418 -S"'dec_TerminationIDList'(${1:Bytes}, ${2:Param2}) $3" -p84419 -tp84420 -a(S"'dec_TerminationStateDescriptor'/2" -p84421 -S"'dec_TerminationStateDescriptor'(${1:Bytes}, ${2:Param2}) $3" -p84422 -tp84423 -a(S"'dec_TimeNotation'/2" -p84424 -S"'dec_TimeNotation'(${1:Bytes}, ${2:Param2}) $3" -p84425 -tp84426 -a(S"'dec_TopologyRequest'/2" -p84427 -S"'dec_TopologyRequest'(${1:Bytes}, ${2:Param2}) $3" -p84428 -tp84429 -a(S"'dec_Transaction'/2" -p84430 -S"'dec_Transaction'(${1:Bytes}, ${2:Param2}) $3" -p84431 -tp84432 -a(S"'dec_TransactionAck'/2" -p84433 -S"'dec_TransactionAck'(${1:Bytes}, ${2:Param2}) $3" -p84434 -tp84435 -a(S"'dec_TransactionId'/2" -p84436 -S"'dec_TransactionId'(${1:Bytes}, ${2:Param2}) $3" -p84437 -tp84438 -a(S"'dec_TransactionPending'/2" -p84439 -S"'dec_TransactionPending'(${1:Bytes}, ${2:Param2}) $3" -p84440 -tp84441 -a(S"'dec_TransactionReply'/2" -p84442 -S"'dec_TransactionReply'(${1:Bytes}, ${2:Param2}) $3" -p84443 -tp84444 -a(S"'dec_TransactionRequest'/2" -p84445 -S"'dec_TransactionRequest'(${1:Bytes}, ${2:Param2}) $3" -p84446 -tp84447 -a(S"'dec_TransactionResponseAck'/2" -p84448 -S"'dec_TransactionResponseAck'(${1:Bytes}, ${2:Param2}) $3" -p84449 -tp84450 -a(S"'dec_Value'/2" -p84451 -S"'dec_Value'(${1:Bytes}, ${2:Param2}) $3" -p84452 -tp84453 -a(S"'dec_WildcardField'/2" -p84454 -S"'dec_WildcardField'(${1:Bytes}, ${2:Param2}) $3" -p84455 -tp84456 -a(S"'enc_ActionReply'/1" -p84457 -S"'enc_ActionReply'(${1:Val}) $2" -p84458 -tp84459 -a(S"'enc_ActionRequest'/1" -p84460 -S"'enc_ActionRequest'(${1:Val}) $2" -p84461 -tp84462 -a(S"'enc_AmmDescriptor'/1" -p84463 -S"'enc_AmmDescriptor'(${1:Val}) $2" -p84464 -tp84465 -a(S"'enc_AmmRequest'/1" -p84466 -S"'enc_AmmRequest'(${1:Val}) $2" -p84467 -tp84468 -a(S"'enc_AmmsReply'/1" -p84469 -S"'enc_AmmsReply'(${1:Val}) $2" -p84470 -tp84471 -a(S"'enc_AuditDescriptor'/1" -p84472 -S"'enc_AuditDescriptor'(${1:Val}) $2" -p84473 -tp84474 -a(S"'enc_AuditReply'/1" -p84475 -S"'enc_AuditReply'(${1:Val}) $2" -p84476 -tp84477 -a(S"'enc_AuditRequest'/1" -p84478 -S"'enc_AuditRequest'(${1:Val}) $2" -p84479 -tp84480 -a(S"'enc_AuditResult'/1" -p84481 -S"'enc_AuditResult'(${1:Val}) $2" -p84482 -tp84483 -a(S"'enc_AuditReturnParameter'/1" -p84484 -S"'enc_AuditReturnParameter'(${1:Val}) $2" -p84485 -tp84486 -a(S"'enc_AuthData'/1" -p84487 -S"'enc_AuthData'(${1:Val}) $2" -p84488 -tp84489 -a(S"'enc_AuthenticationHeader'/1" -p84490 -S"'enc_AuthenticationHeader'(${1:Val}) $2" -p84491 -tp84492 -a(S"'enc_Command'/1" -p84493 -S"'enc_Command'(${1:Val}) $2" -p84494 -tp84495 -a(S"'enc_CommandReply'/1" -p84496 -S"'enc_CommandReply'(${1:Val}) $2" -p84497 -tp84498 -a(S"'enc_CommandRequest'/1" -p84499 -S"'enc_CommandRequest'(${1:Val}) $2" -p84500 -tp84501 -a(S"'enc_ContextAttrAuditRequest'/1" -p84502 -S"'enc_ContextAttrAuditRequest'(${1:Val}) $2" -p84503 -tp84504 -a(S"'enc_ContextID'/1" -p84505 -S"'enc_ContextID'(${1:Val}) $2" -p84506 -tp84507 -a(S"'enc_ContextRequest'/1" -p84508 -S"'enc_ContextRequest'(${1:Val}) $2" -p84509 -tp84510 -a(S"'enc_DigitMapDescriptor'/1" -p84511 -S"'enc_DigitMapDescriptor'(${1:Val}) $2" -p84512 -tp84513 -a(S"'enc_DigitMapName'/1" -p84514 -S"'enc_DigitMapName'(${1:Val}) $2" -p84515 -tp84516 -a(S"'enc_DigitMapValue'/1" -p84517 -S"'enc_DigitMapValue'(${1:Val}) $2" -p84518 -tp84519 -a(S"'enc_DomainName'/1" -p84520 -S"'enc_DomainName'(${1:Val}) $2" -p84521 -tp84522 -a(S"'enc_ErrorCode'/1" -p84523 -S"'enc_ErrorCode'(${1:Val}) $2" -p84524 -tp84525 -a(S"'enc_ErrorDescriptor'/1" -p84526 -S"'enc_ErrorDescriptor'(${1:Val}) $2" -p84527 -tp84528 -a(S"'enc_ErrorText'/1" -p84529 -S"'enc_ErrorText'(${1:Val}) $2" -p84530 -tp84531 -a(S"'enc_EventBufferControl'/1" -p84532 -S"'enc_EventBufferControl'(${1:Val}) $2" -p84533 -tp84534 -a(S"'enc_EventBufferDescriptor'/1" -p84535 -S"'enc_EventBufferDescriptor'(${1:Val}) $2" -p84536 -tp84537 -a(S"'enc_EventDM'/1" -p84538 -S"'enc_EventDM'(${1:Val}) $2" -p84539 -tp84540 -a(S"'enc_EventName'/1" -p84541 -S"'enc_EventName'(${1:Val}) $2" -p84542 -tp84543 -a(S"'enc_EventParameter'/1" -p84544 -S"'enc_EventParameter'(${1:Val}) $2" -p84545 -tp84546 -a(S"'enc_EventSpec'/1" -p84547 -S"'enc_EventSpec'(${1:Val}) $2" -p84548 -tp84549 -a(S"'enc_EventsDescriptor'/1" -p84550 -S"'enc_EventsDescriptor'(${1:Val}) $2" -p84551 -tp84552 -a(S"'enc_H221NonStandard'/1" -p84553 -S"'enc_H221NonStandard'(${1:Val}) $2" -p84554 -tp84555 -a(S"'enc_IP4Address'/1" -p84556 -S"'enc_IP4Address'(${1:Val}) $2" -p84557 -tp84558 -a(S"'enc_IP6Address'/1" -p84559 -S"'enc_IP6Address'(${1:Val}) $2" -p84560 -tp84561 -a(S"'enc_LocalControlDescriptor'/1" -p84562 -S"'enc_LocalControlDescriptor'(${1:Val}) $2" -p84563 -tp84564 -a(S"'enc_LocalRemoteDescriptor'/1" -p84565 -S"'enc_LocalRemoteDescriptor'(${1:Val}) $2" -p84566 -tp84567 -a(S"'enc_MId'/1" -p84568 -S"'enc_MId'(${1:Val}) $2" -p84569 -tp84570 -a(S"'enc_MediaDescriptor'/1" -p84571 -S"'enc_MediaDescriptor'(${1:Val}) $2" -p84572 -tp84573 -a(S"'enc_MegacoMessage'/1" -p84574 -S"'enc_MegacoMessage'(${1:Val}) $2" -p84575 -tp84576 -a(S"'enc_Message'/1" -p84577 -S"'enc_Message'(${1:Val}) $2" -p84578 -tp84579 -a(S"'enc_ModemDescriptor'/1" -p84580 -S"'enc_ModemDescriptor'(${1:Val}) $2" -p84581 -tp84582 -a(S"'enc_ModemType'/1" -p84583 -S"'enc_ModemType'(${1:Val}) $2" -p84584 -tp84585 -a(S"'enc_MuxDescriptor'/1" -p84586 -S"'enc_MuxDescriptor'(${1:Val}) $2" -p84587 -tp84588 -a(S"'enc_MuxType'/1" -p84589 -S"'enc_MuxType'(${1:Val}) $2" -p84590 -tp84591 -a(S"'enc_Name'/1" -p84592 -S"'enc_Name'(${1:Val}) $2" -p84593 -tp84594 -a(S"'enc_NonStandardData'/1" -p84595 -S"'enc_NonStandardData'(${1:Val}) $2" -p84596 -tp84597 -a(S"'enc_NonStandardIdentifier'/1" -p84598 -S"'enc_NonStandardIdentifier'(${1:Val}) $2" -p84599 -tp84600 -a(S"'enc_NotifyCompletion'/1" -p84601 -S"'enc_NotifyCompletion'(${1:Val}) $2" -p84602 -tp84603 -a(S"'enc_NotifyReply'/1" -p84604 -S"'enc_NotifyReply'(${1:Val}) $2" -p84605 -tp84606 -a(S"'enc_NotifyRequest'/1" -p84607 -S"'enc_NotifyRequest'(${1:Val}) $2" -p84608 -tp84609 -a(S"'enc_ObservedEvent'/1" -p84610 -S"'enc_ObservedEvent'(${1:Val}) $2" -p84611 -tp84612 -a(S"'enc_ObservedEventsDescriptor'/1" -p84613 -S"'enc_ObservedEventsDescriptor'(${1:Val}) $2" -p84614 -tp84615 -a(S"'enc_PackagesDescriptor'/1" -p84616 -S"'enc_PackagesDescriptor'(${1:Val}) $2" -p84617 -tp84618 -a(S"'enc_PackagesItem'/1" -p84619 -S"'enc_PackagesItem'(${1:Val}) $2" -p84620 -tp84621 -a(S"'enc_PathName'/1" -p84622 -S"'enc_PathName'(${1:Val}) $2" -p84623 -tp84624 -a(S"'enc_PkgdName'/1" -p84625 -S"'enc_PkgdName'(${1:Val}) $2" -p84626 -tp84627 -a(S"'enc_PropertyGroup'/1" -p84628 -S"'enc_PropertyGroup'(${1:Val}) $2" -p84629 -tp84630 -a(S"'enc_PropertyParm'/1" -p84631 -S"'enc_PropertyParm'(${1:Val}) $2" -p84632 -tp84633 -a(S"'enc_Relation'/1" -p84634 -S"'enc_Relation'(${1:Val}) $2" -p84635 -tp84636 -a(S"'enc_RequestID'/1" -p84637 -S"'enc_RequestID'(${1:Val}) $2" -p84638 -tp84639 -a(S"'enc_RequestedActions'/1" -p84640 -S"'enc_RequestedActions'(${1:Val}) $2" -p84641 -tp84642 -a(S"'enc_RequestedEvent'/1" -p84643 -S"'enc_RequestedEvent'(${1:Val}) $2" -p84644 -tp84645 -a(S"'enc_SecondEventsDescriptor'/1" -p84646 -S"'enc_SecondEventsDescriptor'(${1:Val}) $2" -p84647 -tp84648 -a(S"'enc_SecondRequestedActions'/1" -p84649 -S"'enc_SecondRequestedActions'(${1:Val}) $2" -p84650 -tp84651 -a(S"'enc_SecondRequestedEvent'/1" -p84652 -S"'enc_SecondRequestedEvent'(${1:Val}) $2" -p84653 -tp84654 -a(S"'enc_SecurityParmIndex'/1" -p84655 -S"'enc_SecurityParmIndex'(${1:Val}) $2" -p84656 -tp84657 -a(S"'enc_SeqSigList'/1" -p84658 -S"'enc_SeqSigList'(${1:Val}) $2" -p84659 -tp84660 -a(S"'enc_SequenceNum'/1" -p84661 -S"'enc_SequenceNum'(${1:Val}) $2" -p84662 -tp84663 -a(S"'enc_ServiceChangeAddress'/1" -p84664 -S"'enc_ServiceChangeAddress'(${1:Val}) $2" -p84665 -tp84666 -a(S"'enc_ServiceChangeMethod'/1" -p84667 -S"'enc_ServiceChangeMethod'(${1:Val}) $2" -p84668 -tp84669 -a(S"'enc_ServiceChangeParm'/1" -p84670 -S"'enc_ServiceChangeParm'(${1:Val}) $2" -p84671 -tp84672 -a(S"'enc_ServiceChangeProfile'/1" -p84673 -S"'enc_ServiceChangeProfile'(${1:Val}) $2" -p84674 -tp84675 -a(S"'enc_ServiceChangeReply'/1" -p84676 -S"'enc_ServiceChangeReply'(${1:Val}) $2" -p84677 -tp84678 -a(S"'enc_ServiceChangeRequest'/1" -p84679 -S"'enc_ServiceChangeRequest'(${1:Val}) $2" -p84680 -tp84681 -a(S"'enc_ServiceChangeResParm'/1" -p84682 -S"'enc_ServiceChangeResParm'(${1:Val}) $2" -p84683 -tp84684 -a(S"'enc_ServiceChangeResult'/1" -p84685 -S"'enc_ServiceChangeResult'(${1:Val}) $2" -p84686 -tp84687 -a(S"'enc_ServiceState'/1" -p84688 -S"'enc_ServiceState'(${1:Val}) $2" -p84689 -tp84690 -a(S"'enc_SigParameter'/1" -p84691 -S"'enc_SigParameter'(${1:Val}) $2" -p84692 -tp84693 -a(S"'enc_Signal'/1" -p84694 -S"'enc_Signal'(${1:Val}) $2" -p84695 -tp84696 -a(S"'enc_SignalName'/1" -p84697 -S"'enc_SignalName'(${1:Val}) $2" -p84698 -tp84699 -a(S"'enc_SignalRequest'/1" -p84700 -S"'enc_SignalRequest'(${1:Val}) $2" -p84701 -tp84702 -a(S"'enc_SignalType'/1" -p84703 -S"'enc_SignalType'(${1:Val}) $2" -p84704 -tp84705 -a(S"'enc_SignalsDescriptor'/1" -p84706 -S"'enc_SignalsDescriptor'(${1:Val}) $2" -p84707 -tp84708 -a(S"'enc_StatisticsDescriptor'/1" -p84709 -S"'enc_StatisticsDescriptor'(${1:Val}) $2" -p84710 -tp84711 -a(S"'enc_StatisticsParameter'/1" -p84712 -S"'enc_StatisticsParameter'(${1:Val}) $2" -p84713 -tp84714 -a(S"'enc_StreamDescriptor'/1" -p84715 -S"'enc_StreamDescriptor'(${1:Val}) $2" -p84716 -tp84717 -a(S"'enc_StreamID'/1" -p84718 -S"'enc_StreamID'(${1:Val}) $2" -p84719 -tp84720 -a(S"'enc_StreamMode'/1" -p84721 -S"'enc_StreamMode'(${1:Val}) $2" -p84722 -tp84723 -a(S"'enc_StreamParms'/1" -p84724 -S"'enc_StreamParms'(${1:Val}) $2" -p84725 -tp84726 -a(S"'enc_SubtractRequest'/1" -p84727 -S"'enc_SubtractRequest'(${1:Val}) $2" -p84728 -tp84729 -a(S"'enc_TerminationAudit'/1" -p84730 -S"'enc_TerminationAudit'(${1:Val}) $2" -p84731 -tp84732 -a(S"'enc_TerminationID'/1" -p84733 -S"'enc_TerminationID'(${1:Val}) $2" -p84734 -tp84735 -a(S"'enc_TerminationIDList'/1" -p84736 -S"'enc_TerminationIDList'(${1:Val}) $2" -p84737 -tp84738 -a(S"'enc_TerminationStateDescriptor'/1" -p84739 -S"'enc_TerminationStateDescriptor'(${1:Val}) $2" -p84740 -tp84741 -a(S"'enc_TimeNotation'/1" -p84742 -S"'enc_TimeNotation'(${1:Val}) $2" -p84743 -tp84744 -a(S"'enc_TopologyRequest'/1" -p84745 -S"'enc_TopologyRequest'(${1:Val}) $2" -p84746 -tp84747 -a(S"'enc_Transaction'/1" -p84748 -S"'enc_Transaction'(${1:Val}) $2" -p84749 -tp84750 -a(S"'enc_TransactionAck'/1" -p84751 -S"'enc_TransactionAck'(${1:Val}) $2" -p84752 -tp84753 -a(S"'enc_TransactionId'/1" -p84754 -S"'enc_TransactionId'(${1:Val}) $2" -p84755 -tp84756 -a(S"'enc_TransactionPending'/1" -p84757 -S"'enc_TransactionPending'(${1:Val}) $2" -p84758 -tp84759 -a(S"'enc_TransactionReply'/1" -p84760 -S"'enc_TransactionReply'(${1:Val}) $2" -p84761 -tp84762 -a(S"'enc_TransactionRequest'/1" -p84763 -S"'enc_TransactionRequest'(${1:Val}) $2" -p84764 -tp84765 -a(S"'enc_TransactionResponseAck'/1" -p84766 -S"'enc_TransactionResponseAck'(${1:Val}) $2" -p84767 -tp84768 -a(S"'enc_Value'/1" -p84769 -S"'enc_Value'(${1:Val}) $2" -p84770 -tp84771 -a(S"'enc_WildcardField'/1" -p84772 -S"'enc_WildcardField'(${1:Val}) $2" -p84773 -tp84774 -a(S'decode/2' -p84775 -S'decode(${1:Type}, ${2:Data}) $3' -p84776 -tp84777 -a(S'decode_disp/2' -p84778 -S'decode_disp(${1:Type}, ${2:Data}) $3' -p84779 -tp84780 -a(S'encode/2' -p84781 -S'encode(${1:Type}, ${2:Data}) $3' -p84782 -tp84783 -a(S'encode_disp/2' -p84784 -S'encode_disp(${1:Type}, ${2:Data}) $3' -p84785 -tp84786 -a(S'encoding_rule/0' -p84787 -S'encoding_rule() $1' -p84788 -tp84789 -a(S'info/0' -p84790 -S'info() $1' -p84791 -tp84792 -asS'ic_noc' -p84793 -(lp84794 -(S'do_gen/3' -p84795 -S'do_gen(${1:G}, ${2:File}, ${3:Form}) $4' -p84796 -tp84797 -a(S'mk_attr_func_names/2' -p84798 -S'mk_attr_func_names(${1:Param1}, ${2:Name}) $3' -p84799 -tp84800 -a(S'unfold/1' -p84801 -S'unfold(${1:L}) $2' -p84802 -tp84803 -asS'wxPrinter' -p84804 -(lp84805 -(S'createAbortWindow/3' -p84806 -S'createAbortWindow(${1:This}, ${2:Parent}, ${3:Printout}) $4' -p84807 -tp84808 -a(S'destroy/1' -p84809 -S'destroy(${1:This}) $2' -p84810 -tp84811 -a(S'getAbort/1' -p84812 -S'getAbort(${1:This}) $2' -p84813 -tp84814 -a(S'getLastError/0' -p84815 -S'getLastError() $1' -p84816 -tp84817 -a(S'getPrintDialogData/1' -p84818 -S'getPrintDialogData(${1:This}) $2' -p84819 -tp84820 -a(S'new/0' -p84821 -S'new() $1' -p84822 -tp84823 -a(S'new/1' -p84824 -S'new(${1:Param1}) $2' -p84825 -tp84826 -a(S'parent_class/1' -p84827 -S'parent_class(${1:Param1}) $2' -p84828 -tp84829 -a(S'print/3' -p84830 -S'print(${1:This}, ${2:Parent}, ${3:Printout}) $4' -p84831 -tp84832 -a(S'print/4' -p84833 -S'print(${1:This}, ${2:Parent}, ${3:Printout}, ${4:Param4}) $5' -p84834 -tp84835 -a(S'printDialog/2' -p84836 -S'printDialog(${1:This}, ${2:Parent}) $3' -p84837 -tp84838 -a(S'reportError/4' -p84839 -S'reportError(${1:This}, ${2:Parent}, ${3:Printout}, ${4:Message}) $5' -p84840 -tp84841 -a(S'setup/2' -p84842 -S'setup(${1:This}, ${2:Parent}) $3' -p84843 -tp84844 -asS'oe_TimeBase' -p84845 -(lp84846 -(S'oe_dependency/0' -p84847 -S'oe_dependency() $1' -p84848 -tp84849 -a(S'oe_get_module/5' -p84850 -S'oe_get_module(${1:OE_IFR}, ${2:OE_Parent}, ${3:ID}, ${4:Name}, ${5:Version}) $6' -p84851 -tp84852 -a(S'oe_register/0' -p84853 -S'oe_register() $1' -p84854 -tp84855 -a(S'oe_unregister/0' -p84856 -S'oe_unregister() $1' -p84857 -tp84858 -asS'xmerl_sax_parser_list' -p84859 -(lp84860 -(S'cf/3' -p84861 -S'cf(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p84862 -tp84863 -a(S'cf/4' -p84864 -S'cf(${1:Param1}, ${2:State}, ${3:Param3}, ${4:Param4}) $5' -p84865 -tp84866 -a(S'cf/5' -p84867 -S'cf(${1:Param1}, ${2:State}, ${3:Param3}, ${4:Param4}, ${5:Param5}) $6' -p84868 -tp84869 -a(S'is_name_char/1' -p84870 -S'is_name_char(${1:C}) $2' -p84871 -tp84872 -a(S'is_name_start/1' -p84873 -S'is_name_start(${1:C}) $2' -p84874 -tp84875 -a(S'parse/2' -p84876 -S'parse(${1:Xml}, ${2:State}) $3' -p84877 -tp84878 -a(S'parse_dtd/2' -p84879 -S'parse_dtd(${1:Xml}, ${2:State}) $3' -p84880 -tp84881 -asS'oe_CosEventComm_PullerS' -p84882 -(lp84883 -(S'code_change/3' -p84884 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p84885 -tp84886 -a(S'connect_pull_consumer/2' -p84887 -S'connect_pull_consumer(${1:OE_THIS}, ${2:Pull_consumer}) $3' -p84888 -tp84889 -a(S'connect_pull_consumer/3' -p84890 -S'connect_pull_consumer(${1:OE_THIS}, ${2:OE_Options}, ${3:Pull_consumer}) $4' -p84891 -tp84892 -a(S'disconnect_pull_supplier/1' -p84893 -S'disconnect_pull_supplier(${1:OE_THIS}) $2' -p84894 -tp84895 -a(S'disconnect_pull_supplier/2' -p84896 -S'disconnect_pull_supplier(${1:OE_THIS}, ${2:OE_Options}) $3' -p84897 -tp84898 -a(S'handle_call/3' -p84899 -S'handle_call(${1:Param1}, ${2:OE_From}, ${3:OE_State}) $4' -p84900 -tp84901 -a(S'handle_cast/2' -p84902 -S'handle_cast(${1:Param1}, ${2:OE_State}) $3' -p84903 -tp84904 -a(S'handle_info/2' -p84905 -S'handle_info(${1:Info}, ${2:State}) $3' -p84906 -tp84907 -a(S'init/1' -p84908 -S'init(${1:Env}) $2' -p84909 -tp84910 -a(S'oe_create/0' -p84911 -S'oe_create() $1' -p84912 -tp84913 -a(S'oe_create/1' -p84914 -S'oe_create(${1:Env}) $2' -p84915 -tp84916 -a(S'oe_create/2' -p84917 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p84918 -tp84919 -a(S'oe_create_link/0' -p84920 -S'oe_create_link() $1' -p84921 -tp84922 -a(S'oe_create_link/1' -p84923 -S'oe_create_link(${1:Env}) $2' -p84924 -tp84925 -a(S'oe_create_link/2' -p84926 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p84927 -tp84928 -a(S'oe_get_interface/0' -p84929 -S'oe_get_interface() $1' -p84930 -tp84931 -a(S'oe_is_a/1' -p84932 -S'oe_is_a(${1:Param1}) $2' -p84933 -tp84934 -a(S'oe_tc/1' -p84935 -S'oe_tc(${1:Param1}) $2' -p84936 -tp84937 -a(S'pull/1' -p84938 -S'pull(${1:OE_THIS}) $2' -p84939 -tp84940 -a(S'pull/2' -p84941 -S'pull(${1:OE_THIS}, ${2:OE_Options}) $3' -p84942 -tp84943 -a(S'send/2' -p84944 -S'send(${1:OE_THIS}, ${2:Event}) $3' -p84945 -tp84946 -a(S'send/3' -p84947 -S'send(${1:OE_THIS}, ${2:OE_Options}, ${3:Event}) $4' -p84948 -tp84949 -a(S'send_sync/2' -p84950 -S'send_sync(${1:OE_THIS}, ${2:Event}) $3' -p84951 -tp84952 -a(S'send_sync/3' -p84953 -S'send_sync(${1:OE_THIS}, ${2:OE_Options}, ${3:Event}) $4' -p84954 -tp84955 -a(S'terminate/2' -p84956 -S'terminate(${1:Reason}, ${2:State}) $3' -p84957 -tp84958 -a(S'try_pull/1' -p84959 -S'try_pull(${1:OE_THIS}) $2' -p84960 -tp84961 -a(S'try_pull/2' -p84962 -S'try_pull(${1:OE_THIS}, ${2:OE_Options}) $3' -p84963 -tp84964 -a(S'typeID/0' -p84965 -S'typeID() $1' -p84966 -tp84967 -asS'orber_ifr_operationdef' -p84968 -(lp84969 -(S"'_get_absolute_name'/1" -p84970 -S"'_get_absolute_name'() $1" -p84971 -tp84972 -a(S"'_get_containing_repository'/1" -p84973 -S"'_get_containing_repository'() $1" -p84974 -tp84975 -a(S"'_get_contexts'/1" -p84976 -S"'_get_contexts'() $1" -p84977 -tp84978 -a(S"'_get_def_kind'/1" -p84979 -S"'_get_def_kind'() $1" -p84980 -tp84981 -a(S"'_get_defined_in'/1" -p84982 -S"'_get_defined_in'() $1" -p84983 -tp84984 -a(S"'_get_exceptions'/1" -p84985 -S"'_get_exceptions'() $1" -p84986 -tp84987 -a(S"'_get_id'/1" -p84988 -S"'_get_id'() $1" -p84989 -tp84990 -a(S"'_get_mode'/1" -p84991 -S"'_get_mode'() $1" -p84992 -tp84993 -a(S"'_get_name'/1" -p84994 -S"'_get_name'() $1" -p84995 -tp84996 -a(S"'_get_params'/1" -p84997 -S"'_get_params'() $1" -p84998 -tp84999 -a(S"'_get_result'/1" -p85000 -S"'_get_result'() $1" -p85001 -tp85002 -a(S"'_get_result_def'/1" -p85003 -S"'_get_result_def'() $1" -p85004 -tp85005 -a(S"'_get_version'/1" -p85006 -S"'_get_version'() $1" -p85007 -tp85008 -a(S"'_set_contexts'/2" -p85009 -S"'_set_contexts'() $1" -p85010 -tp85011 -a(S"'_set_exceptions'/2" -p85012 -S"'_set_exceptions'() $1" -p85013 -tp85014 -a(S"'_set_id'/2" -p85015 -S"'_set_id'() $1" -p85016 -tp85017 -a(S"'_set_mode'/2" -p85018 -S"'_set_mode'() $1" -p85019 -tp85020 -a(S"'_set_name'/2" -p85021 -S"'_set_name'() $1" -p85022 -tp85023 -a(S"'_set_params'/2" -p85024 -S"'_set_params'() $1" -p85025 -tp85026 -a(S"'_set_result_def'/2" -p85027 -S"'_set_result_def'() $1" -p85028 -tp85029 -a(S"'_set_version'/2" -p85030 -S"'_set_version'() $1" -p85031 -tp85032 -a(S'cleanup_for_destroy/1' -p85033 -S'cleanup_for_destroy() $1' -p85034 -tp85035 -a(S'describe/1' -p85036 -S'describe() $1' -p85037 -tp85038 -a(S'destroy/1' -p85039 -S'destroy() $1' -p85040 -tp85041 -a(S'move/4' -p85042 -S'move() $1' -p85043 -tp85044 -asS'CosNotifyChannelAdmin_ProxyPushSupplier' -p85045 -(lp85046 -(S"'_get_MyAdmin'/1" -p85047 -S"'_get_MyAdmin'(${1:OE_THIS}) $2" -p85048 -tp85049 -a(S"'_get_MyAdmin'/2" -p85050 -S"'_get_MyAdmin'(${1:OE_THIS}, ${2:OE_Options}) $3" -p85051 -tp85052 -a(S"'_get_MyType'/1" -p85053 -S"'_get_MyType'(${1:OE_THIS}) $2" -p85054 -tp85055 -a(S"'_get_MyType'/2" -p85056 -S"'_get_MyType'(${1:OE_THIS}, ${2:OE_Options}) $3" -p85057 -tp85058 -a(S"'_get_lifetime_filter'/1" -p85059 -S"'_get_lifetime_filter'(${1:OE_THIS}) $2" -p85060 -tp85061 -a(S"'_get_lifetime_filter'/2" -p85062 -S"'_get_lifetime_filter'(${1:OE_THIS}, ${2:OE_Options}) $3" -p85063 -tp85064 -a(S"'_get_priority_filter'/1" -p85065 -S"'_get_priority_filter'(${1:OE_THIS}) $2" -p85066 -tp85067 -a(S"'_get_priority_filter'/2" -p85068 -S"'_get_priority_filter'(${1:OE_THIS}, ${2:OE_Options}) $3" -p85069 -tp85070 -a(S"'_set_lifetime_filter'/2" -p85071 -S"'_set_lifetime_filter'(${1:OE_THIS}, ${2:OE_Value}) $3" -p85072 -tp85073 -a(S"'_set_lifetime_filter'/3" -p85074 -S"'_set_lifetime_filter'(${1:OE_THIS}, ${2:OE_Options}, ${3:OE_Value}) $4" -p85075 -tp85076 -a(S"'_set_priority_filter'/2" -p85077 -S"'_set_priority_filter'(${1:OE_THIS}, ${2:OE_Value}) $3" -p85078 -tp85079 -a(S"'_set_priority_filter'/3" -p85080 -S"'_set_priority_filter'(${1:OE_THIS}, ${2:OE_Options}, ${3:OE_Value}) $4" -p85081 -tp85082 -a(S'add_filter/2' -p85083 -S'add_filter(${1:OE_THIS}, ${2:New_filter}) $3' -p85084 -tp85085 -a(S'add_filter/3' -p85086 -S'add_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:New_filter}) $4' -p85087 -tp85088 -a(S'callAny/3' -p85089 -S'callAny(${1:OE_THIS}, ${2:Event}, ${3:Stat}) $4' -p85090 -tp85091 -a(S'callAny/4' -p85092 -S'callAny(${1:OE_THIS}, ${2:OE_Options}, ${3:Event}, ${4:Stat}) $5' -p85093 -tp85094 -a(S'callSeq/3' -p85095 -S'callSeq(${1:OE_THIS}, ${2:Events}, ${3:Stat}) $4' -p85096 -tp85097 -a(S'callSeq/4' -p85098 -S'callSeq(${1:OE_THIS}, ${2:OE_Options}, ${3:Events}, ${4:Stat}) $5' -p85099 -tp85100 -a(S'code_change/3' -p85101 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p85102 -tp85103 -a(S'connect_any_push_consumer/2' -p85104 -S'connect_any_push_consumer(${1:OE_THIS}, ${2:Push_consumer}) $3' -p85105 -tp85106 -a(S'connect_any_push_consumer/3' -p85107 -S'connect_any_push_consumer(${1:OE_THIS}, ${2:OE_Options}, ${3:Push_consumer}) $4' -p85108 -tp85109 -a(S'connect_push_consumer/2' -p85110 -S'connect_push_consumer(${1:OE_THIS}, ${2:Push_consumer}) $3' -p85111 -tp85112 -a(S'connect_push_consumer/3' -p85113 -S'connect_push_consumer(${1:OE_THIS}, ${2:OE_Options}, ${3:Push_consumer}) $4' -p85114 -tp85115 -a(S'disconnect_push_supplier/1' -p85116 -S'disconnect_push_supplier(${1:OE_THIS}) $2' -p85117 -tp85118 -a(S'disconnect_push_supplier/2' -p85119 -S'disconnect_push_supplier(${1:OE_THIS}, ${2:OE_Options}) $3' -p85120 -tp85121 -a(S'get_all_filters/1' -p85122 -S'get_all_filters(${1:OE_THIS}) $2' -p85123 -tp85124 -a(S'get_all_filters/2' -p85125 -S'get_all_filters(${1:OE_THIS}, ${2:OE_Options}) $3' -p85126 -tp85127 -a(S'get_filter/2' -p85128 -S'get_filter(${1:OE_THIS}, ${2:Filter}) $3' -p85129 -tp85130 -a(S'get_filter/3' -p85131 -S'get_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:Filter}) $4' -p85132 -tp85133 -a(S'get_qos/1' -p85134 -S'get_qos(${1:OE_THIS}) $2' -p85135 -tp85136 -a(S'get_qos/2' -p85137 -S'get_qos(${1:OE_THIS}, ${2:OE_Options}) $3' -p85138 -tp85139 -a(S'handle_call/3' -p85140 -S'handle_call(${1:Param1}, ${2:OE_From}, ${3:OE_State}) $4' -p85141 -tp85142 -a(S'handle_cast/2' -p85143 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p85144 -tp85145 -a(S'handle_info/2' -p85146 -S'handle_info(${1:Info}, ${2:State}) $3' -p85147 -tp85148 -a(S'init/1' -p85149 -S'init(${1:Env}) $2' -p85150 -tp85151 -a(S'obtain_offered_types/2' -p85152 -S'obtain_offered_types(${1:OE_THIS}, ${2:Mode}) $3' -p85153 -tp85154 -a(S'obtain_offered_types/3' -p85155 -S'obtain_offered_types(${1:OE_THIS}, ${2:OE_Options}, ${3:Mode}) $4' -p85156 -tp85157 -a(S'oe_create/0' -p85158 -S'oe_create() $1' -p85159 -tp85160 -a(S'oe_create/1' -p85161 -S'oe_create(${1:Env}) $2' -p85162 -tp85163 -a(S'oe_create/2' -p85164 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p85165 -tp85166 -a(S'oe_create_link/0' -p85167 -S'oe_create_link() $1' -p85168 -tp85169 -a(S'oe_create_link/1' -p85170 -S'oe_create_link(${1:Env}) $2' -p85171 -tp85172 -a(S'oe_create_link/2' -p85173 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p85174 -tp85175 -a(S'oe_get_interface/0' -p85176 -S'oe_get_interface() $1' -p85177 -tp85178 -a(S'oe_is_a/1' -p85179 -S'oe_is_a(${1:Param1}) $2' -p85180 -tp85181 -a(S'oe_tc/1' -p85182 -S'oe_tc(${1:Param1}) $2' -p85183 -tp85184 -a(S'remove_all_filters/1' -p85185 -S'remove_all_filters(${1:OE_THIS}) $2' -p85186 -tp85187 -a(S'remove_all_filters/2' -p85188 -S'remove_all_filters(${1:OE_THIS}, ${2:OE_Options}) $3' -p85189 -tp85190 -a(S'remove_filter/2' -p85191 -S'remove_filter(${1:OE_THIS}, ${2:Filter}) $3' -p85192 -tp85193 -a(S'remove_filter/3' -p85194 -S'remove_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:Filter}) $4' -p85195 -tp85196 -a(S'resume_connection/1' -p85197 -S'resume_connection(${1:OE_THIS}) $2' -p85198 -tp85199 -a(S'resume_connection/2' -p85200 -S'resume_connection(${1:OE_THIS}, ${2:OE_Options}) $3' -p85201 -tp85202 -a(S'set_qos/2' -p85203 -S'set_qos(${1:OE_THIS}, ${2:Qos}) $3' -p85204 -tp85205 -a(S'set_qos/3' -p85206 -S'set_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Qos}) $4' -p85207 -tp85208 -a(S'subscription_change/3' -p85209 -S'subscription_change(${1:OE_THIS}, ${2:Added}, ${3:Removed}) $4' -p85210 -tp85211 -a(S'subscription_change/4' -p85212 -S'subscription_change(${1:OE_THIS}, ${2:OE_Options}, ${3:Added}, ${4:Removed}) $5' -p85213 -tp85214 -a(S'suspend_connection/1' -p85215 -S'suspend_connection(${1:OE_THIS}) $2' -p85216 -tp85217 -a(S'suspend_connection/2' -p85218 -S'suspend_connection(${1:OE_THIS}, ${2:OE_Options}) $3' -p85219 -tp85220 -a(S'terminate/2' -p85221 -S'terminate(${1:Reason}, ${2:State}) $3' -p85222 -tp85223 -a(S'typeID/0' -p85224 -S'typeID() $1' -p85225 -tp85226 -a(S'validate_event_qos/2' -p85227 -S'validate_event_qos(${1:OE_THIS}, ${2:Required_qos}) $3' -p85228 -tp85229 -a(S'validate_event_qos/3' -p85230 -S'validate_event_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Required_qos}) $4' -p85231 -tp85232 -a(S'validate_qos/2' -p85233 -S'validate_qos(${1:OE_THIS}, ${2:Required_qos}) $3' -p85234 -tp85235 -a(S'validate_qos/3' -p85236 -S'validate_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Required_qos}) $4' -p85237 -tp85238 -asS'snmpa_notification_filter' -p85239 -(lp85240 -(S'behaviour_info/1' -p85241 -S'behaviour_info(${1:Param1}) $2' -p85242 -tp85243 -asS'CosNotifyChannelAdmin_AdminIDSeq' -p85244 -(lp85245 -(S'id/0' -p85246 -S'id() $1' -p85247 -tp85248 -a(S'name/0' -p85249 -S'name() $1' -p85250 -tp85251 -a(S'tc/0' -p85252 -S'tc() $1' -p85253 -tp85254 -asS'CosNotification_Common' -p85255 -(lp85256 -(S"'ConnectionReliability'/6" -p85257 -S"'ConnectionReliability'(${1:Req}, ${2:Param2}, ${3:Param3}, ${4:Parent}, ${5:Childs}, ${6:LQS}) $7" -p85258 -tp85259 -a(S"'DiscardPolicy'/6" -p85260 -S"'DiscardPolicy'(${1:Req}, ${2:Param2}, ${3:Param3}, ${4:Param4}, ${5:Param5}, ${6:LQS}) $7" -p85261 -tp85262 -a(S"'EventReliability'/6" -p85263 -S"'EventReliability'(${1:Req}, ${2:Param2}, ${3:Param3}, ${4:Param4}, ${5:Param5}, ${6:LQS}) $7" -p85264 -tp85265 -a(S"'MaxConsumers'/6" -p85266 -S"'MaxConsumers'(${1:Req}, ${2:Param2}, ${3:Param3}, ${4:Param4}, ${5:Param5}, ${6:Param6}) $7" -p85267 -tp85268 -a(S"'MaxEventsPerConsumer'/6" -p85269 -S"'MaxEventsPerConsumer'(${1:Req}, ${2:Param2}, ${3:Param3}, ${4:Param4}, ${5:Param5}, ${6:LQS}) $7" -p85270 -tp85271 -a(S"'MaxQueueLength'/6" -p85272 -S"'MaxQueueLength'(${1:Req}, ${2:Param2}, ${3:Param3}, ${4:Param4}, ${5:Param5}, ${6:Param6}) $7" -p85273 -tp85274 -a(S"'MaxSuppliers'/6" -p85275 -S"'MaxSuppliers'(${1:Req}, ${2:Param2}, ${3:Param3}, ${4:Param4}, ${5:Param5}, ${6:Param6}) $7" -p85276 -tp85277 -a(S"'MaximumBatchSize'/6" -p85278 -S"'MaximumBatchSize'(${1:Req}, ${2:Param2}, ${3:Param3}, ${4:Param4}, ${5:Param5}, ${6:LQS}) $7" -p85279 -tp85280 -a(S"'OrderPolicy'/6" -p85281 -S"'OrderPolicy'(${1:Req}, ${2:Param2}, ${3:Param3}, ${4:Param4}, ${5:Param5}, ${6:LQS}) $7" -p85282 -tp85283 -a(S"'PacingInterval'/6" -p85284 -S"'PacingInterval'(${1:Req}, ${2:Param2}, ${3:Param3}, ${4:Param4}, ${5:Param5}, ${6:LQS}) $7" -p85285 -tp85286 -a(S"'Priority'/6" -p85287 -S"'Priority'(${1:Req}, ${2:Param2}, ${3:Param3}, ${4:Param4}, ${5:Param5}, ${6:LQS}) $7" -p85288 -tp85289 -a(S"'StartTimeSupported'/6" -p85290 -S"'StartTimeSupported'(${1:Req}, ${2:Param2}, ${3:Param3}, ${4:Param4}, ${5:Param5}, ${6:LQS}) $7" -p85291 -tp85292 -a(S"'StopTimeSupported'/6" -p85293 -S"'StopTimeSupported'(${1:Req}, ${2:Param2}, ${3:Param3}, ${4:Param4}, ${5:Param5}, ${6:LQS}) $7" -p85294 -tp85295 -a(S"'Timeout'/6" -p85296 -S"'Timeout'(${1:Req}, ${2:Param2}, ${3:Param3}, ${4:Param4}, ${5:Param5}, ${6:LQS}) $7" -p85297 -tp85298 -a(S'create_id/0' -p85299 -S'create_id() $1' -p85300 -tp85301 -a(S'create_id/1' -p85302 -S'create_id(${1:OldID}) $2' -p85303 -tp85304 -a(S'create_link/3' -p85305 -S'create_link(${1:Module}, ${2:Env}, ${3:ArgList}) $4' -p85306 -tp85307 -a(S'create_name/1' -p85308 -S'create_name(${1:Type}) $2' -p85309 -tp85310 -a(S'create_name/2' -p85311 -S'create_name(${1:Name}, ${2:Type}) $3' -p85312 -tp85313 -a(S'disconnect/3' -p85314 -S'disconnect(${1:Module}, ${2:Function}, ${3:Object}) $4' -p85315 -tp85316 -a(S'do_disconnect/3' -p85317 -S'do_disconnect(${1:Module}, ${2:Function}, ${3:Object}) $4' -p85318 -tp85319 -a(S'get_option/3' -p85320 -S'get_option(${1:Key}, ${2:OptionList}, ${3:DefaultList}) $4' -p85321 -tp85322 -a(S'init_adm/1' -p85323 -S'init_adm(${1:Wanted}) $2' -p85324 -tp85325 -a(S'init_qos/1' -p85326 -S'init_qos(${1:Wanted}) $2' -p85327 -tp85328 -a(S'is_debug_compiled/0' -p85329 -S'is_debug_compiled() $1' -p85330 -tp85331 -a(S'notify/1' -p85332 -S'notify(${1:Items}) $2' -p85333 -tp85334 -a(S'send_stubborn/5' -p85335 -S'send_stubborn(${1:M}, ${2:F}, ${3:A}, ${4:MaxR}, ${5:Wait}) $6' -p85336 -tp85337 -a(S'set_adm/2' -p85338 -S'set_adm(${1:Wanted}, ${2:Current}) $3' -p85339 -tp85340 -a(S'set_qos/5' -p85341 -S'set_qos(${1:Wanted}, ${2:Param2}, ${3:Param3}, ${4:Parent}, ${5:Childs}) $6' -p85342 -tp85343 -a(S'type_check/2' -p85344 -S'type_check(${1:Obj}, ${2:Mod}) $3' -p85345 -tp85346 -a(S'validate_event_qos/2' -p85347 -S'validate_event_qos(${1:Wanted}, ${2:Curr}) $3' -p85348 -tp85349 -a(S'validate_qos/5' -p85350 -S'validate_qos(${1:Wanted}, ${2:Curr}, ${3:Type}, ${4:Parent}, ${5:Childs}) $6' -p85351 -tp85352 -asS'wx_object' -p85353 -(lp85354 -(S'call/2' -p85355 -S'call(${1:Name}, ${2:Request}) $3' -p85356 -tp85357 -a(S'call/3' -p85358 -S'call(${1:Name}, ${2:Request}, ${3:Timeout}) $4' -p85359 -tp85360 -a(S'cast/2' -p85361 -S'cast(${1:Name}, ${2:Request}) $3' -p85362 -tp85363 -a(S'format_status/2' -p85364 -S'format_status(${1:Opt}, ${2:StatusData}) $3' -p85365 -tp85366 -a(S'get_pid/1' -p85367 -S'get_pid(${1:Param1}) $2' -p85368 -tp85369 -a(S'init_it/6' -p85370 -S'init_it(${1:Starter}, ${2:Parent}, ${3:Name}, ${4:Mod}, ${5:Args}, ${6:Options}) $7' -p85371 -tp85372 -a(S'reply/2' -p85373 -S'reply(${1:Param1}, ${2:Reply}) $3' -p85374 -tp85375 -a(S'start/3' -p85376 -S'start(${1:Mod}, ${2:Args}, ${3:Options}) $4' -p85377 -tp85378 -a(S'start/4' -p85379 -S'start(${1:Name}, ${2:Mod}, ${3:Args}, ${4:Options}) $5' -p85380 -tp85381 -a(S'start_link/3' -p85382 -S'start_link(${1:Mod}, ${2:Args}, ${3:Options}) $4' -p85383 -tp85384 -a(S'start_link/4' -p85385 -S'start_link(${1:Name}, ${2:Mod}, ${3:Args}, ${4:Options}) $5' -p85386 -tp85387 -a(S'system_code_change/4' -p85388 -S'system_code_change(${1:Param1}, ${2:Param2}, ${3:OldVsn}, ${4:Extra}) $5' -p85389 -tp85390 -a(S'system_continue/3' -p85391 -S'system_continue(${1:Parent}, ${2:Debug}, ${3:Param3}) $4' -p85392 -tp85393 -a(S'system_terminate/4' -p85394 -S'system_terminate(${1:Reason}, ${2:Param2}, ${3:Debug}, ${4:Param4}) $5' -p85395 -tp85396 -asS'httpd_misc_sup' -p85397 -(lp85398 -(S'init/1' -p85399 -S'init(${1:Param1}) $2' -p85400 -tp85401 -a(S'start_auth_server/2' -p85402 -S'start_auth_server(${1:Addr}, ${2:Port}) $3' -p85403 -tp85404 -a(S'start_link/2' -p85405 -S'start_link(${1:Addr}, ${2:Port}) $3' -p85406 -tp85407 -a(S'start_sec_server/2' -p85408 -S'start_sec_server(${1:Addr}, ${2:Port}) $3' -p85409 -tp85410 -a(S'stop_auth_server/2' -p85411 -S'stop_auth_server(${1:Addr}, ${2:Port}) $3' -p85412 -tp85413 -a(S'stop_sec_server/2' -p85414 -S'stop_sec_server(${1:Addr}, ${2:Port}) $3' -p85415 -tp85416 -asS'CosTransactions_Resource' -p85417 -(lp85418 -(S'code_change/3' -p85419 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p85420 -tp85421 -a(S'commit/1' -p85422 -S'commit(${1:OE_THIS}) $2' -p85423 -tp85424 -a(S'commit/2' -p85425 -S'commit(${1:OE_THIS}, ${2:OE_Options}) $3' -p85426 -tp85427 -a(S'commit_one_phase/1' -p85428 -S'commit_one_phase(${1:OE_THIS}) $2' -p85429 -tp85430 -a(S'commit_one_phase/2' -p85431 -S'commit_one_phase(${1:OE_THIS}, ${2:OE_Options}) $3' -p85432 -tp85433 -a(S'forget/1' -p85434 -S'forget(${1:OE_THIS}) $2' -p85435 -tp85436 -a(S'forget/2' -p85437 -S'forget(${1:OE_THIS}, ${2:OE_Options}) $3' -p85438 -tp85439 -a(S'handle_call/3' -p85440 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p85441 -tp85442 -a(S'handle_cast/2' -p85443 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p85444 -tp85445 -a(S'handle_info/2' -p85446 -S'handle_info(${1:Param1}, ${2:State}) $3' -p85447 -tp85448 -a(S'init/1' -p85449 -S'init(${1:Env}) $2' -p85450 -tp85451 -a(S'oe_create/0' -p85452 -S'oe_create() $1' -p85453 -tp85454 -a(S'oe_create/1' -p85455 -S'oe_create(${1:Env}) $2' -p85456 -tp85457 -a(S'oe_create/2' -p85458 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p85459 -tp85460 -a(S'oe_create_link/0' -p85461 -S'oe_create_link() $1' -p85462 -tp85463 -a(S'oe_create_link/1' -p85464 -S'oe_create_link(${1:Env}) $2' -p85465 -tp85466 -a(S'oe_create_link/2' -p85467 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p85468 -tp85469 -a(S'oe_get_interface/0' -p85470 -S'oe_get_interface() $1' -p85471 -tp85472 -a(S'oe_is_a/1' -p85473 -S'oe_is_a(${1:Param1}) $2' -p85474 -tp85475 -a(S'oe_tc/1' -p85476 -S'oe_tc(${1:Param1}) $2' -p85477 -tp85478 -a(S'prepare/1' -p85479 -S'prepare(${1:OE_THIS}) $2' -p85480 -tp85481 -a(S'prepare/2' -p85482 -S'prepare(${1:OE_THIS}, ${2:OE_Options}) $3' -p85483 -tp85484 -a(S'rollback/1' -p85485 -S'rollback(${1:OE_THIS}) $2' -p85486 -tp85487 -a(S'rollback/2' -p85488 -S'rollback(${1:OE_THIS}, ${2:OE_Options}) $3' -p85489 -tp85490 -a(S'terminate/2' -p85491 -S'terminate(${1:Reason}, ${2:State}) $3' -p85492 -tp85493 -a(S'typeID/0' -p85494 -S'typeID() $1' -p85495 -tp85496 -asS'edoc_scanner' -p85497 -(lp85498 -(S'format_error/1' -p85499 -S'format_error(${1:Other}) $2' -p85500 -tp85501 -a(S'string/1' -p85502 -S'string(${1:Cs}) $2' -p85503 -tp85504 -a(S'string/2' -p85505 -S'string(${1:Cs}, ${2:StartPos}) $3' -p85506 -tp85507 -asS'ic_attribute_java' -p85508 -(lp85509 -(S'emit_atrribute_on_dictionary/5' -p85510 -S'emit_atrribute_on_dictionary(${1:G}, ${2:N}, ${3:X}, ${4:Fd}, ${5:C}) $6' -p85511 -tp85512 -a(S'emit_attribute_prototype/4' -p85513 -S'emit_attribute_prototype(${1:G}, ${2:N}, ${3:X}, ${4:Fd}) $5' -p85514 -tp85515 -a(S'emit_attribute_stub_code/4' -p85516 -S'emit_attribute_stub_code(${1:G}, ${2:N}, ${3:X}, ${4:Fd}) $5' -p85517 -tp85518 -a(S'emit_attribute_switch_case/5' -p85519 -S'emit_attribute_switch_case(${1:G}, ${2:N}, ${3:X}, ${4:Fd}, ${5:C}) $6' -p85520 -tp85521 -asS'inet_tcp_dist' -p85522 -(lp85523 -(S'accept/1' -p85524 -S'accept(${1:Listen}) $2' -p85525 -tp85526 -a(S'accept_connection/5' -p85527 -S'accept_connection(${1:AcceptPid}, ${2:Socket}, ${3:MyNode}, ${4:Allowed}, ${5:SetupTime}) $6' -p85528 -tp85529 -a(S'accept_loop/2' -p85530 -S'accept_loop(${1:Kernel}, ${2:Listen}) $3' -p85531 -tp85532 -a(S'close/1' -p85533 -S'close(${1:Socket}) $2' -p85534 -tp85535 -a(S'do_accept/6' -p85536 -S'do_accept(${1:Kernel}, ${2:AcceptPid}, ${3:Socket}, ${4:MyNode}, ${5:Allowed}, ${6:SetupTime}) $7' -p85537 -tp85538 -a(S'do_setup/6' -p85539 -S'do_setup(${1:Kernel}, ${2:Node}, ${3:Type}, ${4:MyNode}, ${5:LongOrShortNames}, ${6:SetupTime}) $7' -p85540 -tp85541 -a(S'getstat/1' -p85542 -S'getstat(${1:Socket}) $2' -p85543 -tp85544 -a(S'is_node_name/1' -p85545 -S'is_node_name(${1:Node}) $2' -p85546 -tp85547 -a(S'listen/1' -p85548 -S'listen(${1:Name}) $2' -p85549 -tp85550 -a(S'select/1' -p85551 -S'select(${1:Node}) $2' -p85552 -tp85553 -a(S'setup/5' -p85554 -S'setup(${1:Node}, ${2:Type}, ${3:MyNode}, ${4:LongOrShortNames}, ${5:SetupTime}) $6' -p85555 -tp85556 -a(S'tick/1' -p85557 -S'tick(${1:Sock}) $2' -p85558 -tp85559 -asS'os_sup' -p85560 -(lp85561 -(S'code_change/3' -p85562 -S'code_change(${1:Vsn}, ${2:PrevState}, ${3:Param3}) $4' -p85563 -tp85564 -a(S'disable/0' -p85565 -S'disable() $1' -p85566 -tp85567 -a(S'disable/2' -p85568 -S'disable(${1:Path}, ${2:Conf}) $3' -p85569 -tp85570 -a(S'enable/0' -p85571 -S'enable() $1' -p85572 -tp85573 -a(S'enable/2' -p85574 -S'enable(${1:Path}, ${2:Conf}) $3' -p85575 -tp85576 -a(S'error_report/2' -p85577 -S'error_report(${1:LogData}, ${2:Tag}) $3' -p85578 -tp85579 -a(S'handle_call/3' -p85580 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p85581 -tp85582 -a(S'handle_cast/2' -p85583 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p85584 -tp85585 -a(S'handle_info/2' -p85586 -S'handle_info(${1:Param1}, ${2:State}) $3' -p85587 -tp85588 -a(S'init/1' -p85589 -S'init(${1:Param1}) $2' -p85590 -tp85591 -a(S'param_default/1' -p85592 -S'param_default(${1:Param1}) $2' -p85593 -tp85594 -a(S'param_type/2' -p85595 -S'param_type(${1:Param1}, ${2:Val}) $3' -p85596 -tp85597 -a(S'start/0' -p85598 -S'start() $1' -p85599 -tp85600 -a(S'start_link/1' -p85601 -S'start_link(${1:Param1}) $2' -p85602 -tp85603 -a(S'stop/0' -p85604 -S'stop() $1' -p85605 -tp85606 -a(S'terminate/2' -p85607 -S'terminate(${1:Param1}, ${2:State}) $3' -p85608 -tp85609 -asS'gstk_font' -p85610 -(lp85611 -(S'choose/2' -p85612 -S'choose(${1:DB}, ${2:FontSpec}) $3' -p85613 -tp85614 -a(S'choose_ascii/2' -p85615 -S'choose_ascii(${1:DB}, ${2:Font}) $3' -p85616 -tp85617 -a(S'init/0' -p85618 -S'init() $1' -p85619 -tp85620 -a(S'width_height/3' -p85621 -S'width_height(${1:DB}, ${2:FontSpec}, ${3:Txt}) $4' -p85622 -tp85623 -asS'ftp' -p85624 -(lp85625 -(S'account/2' -p85626 -S'account(${1:Pid}, ${2:Acc}) $3' -p85627 -tp85628 -a(S'append/2' -p85629 -S'append(${1:Pid}, ${2:LocalFileName}) $3' -p85630 -tp85631 -a(S'append/3' -p85632 -S'append(${1:Pid}, ${2:LocalFileName}, ${3:RemotFileName}) $4' -p85633 -tp85634 -a(S'append_bin/3' -p85635 -S'append_bin(${1:Pid}, ${2:Bin}, ${3:RemoteFile}) $4' -p85636 -tp85637 -a(S'append_chunk/2' -p85638 -S'append_chunk(${1:Pid}, ${2:Bin}) $3' -p85639 -tp85640 -a(S'append_chunk_end/1' -p85641 -S'append_chunk_end(${1:Pid}) $2' -p85642 -tp85643 -a(S'append_chunk_start/2' -p85644 -S'append_chunk_start(${1:Pid}, ${2:RemoteFile}) $3' -p85645 -tp85646 -a(S'cd/2' -p85647 -S'cd(${1:Pid}, ${2:Dir}) $3' -p85648 -tp85649 -a(S'close/1' -p85650 -S'close(${1:Pid}) $2' -p85651 -tp85652 -a(S'code_change/3' -p85653 -S'code_change(${1:Param1}, ${2:State1}, ${3:Param3}) $4' -p85654 -tp85655 -a(S'delete/2' -p85656 -S'delete(${1:Pid}, ${2:File}) $3' -p85657 -tp85658 -a(S'formaterror/1' -p85659 -S'formaterror(${1:Tag}) $2' -p85660 -tp85661 -a(S'handle_call/3' -p85662 -S'handle_call(${1:Request}, ${2:From}, ${3:State}) $4' -p85663 -tp85664 -a(S'handle_cast/2' -p85665 -S'handle_cast(${1:Msg}, ${2:State}) $3' -p85666 -tp85667 -a(S'handle_info/2' -p85668 -S'handle_info(${1:Info}, ${2:State}) $3' -p85669 -tp85670 -a(S'info/1' -p85671 -S'info(${1:Pid}) $2' -p85672 -tp85673 -a(S'init/1' -p85674 -S'init(${1:Options}) $2' -p85675 -tp85676 -a(S'lcd/2' -p85677 -S'lcd(${1:Pid}, ${2:Dir}) $3' -p85678 -tp85679 -a(S'lpwd/1' -p85680 -S'lpwd(${1:Pid}) $2' -p85681 -tp85682 -a(S'ls/1' -p85683 -S'ls(${1:Pid}) $2' -p85684 -tp85685 -a(S'ls/2' -p85686 -S'ls(${1:Pid}, ${2:Dir}) $3' -p85687 -tp85688 -a(S'mkdir/2' -p85689 -S'mkdir(${1:Pid}, ${2:Dir}) $3' -p85690 -tp85691 -a(S'nlist/1' -p85692 -S'nlist(${1:Pid}) $2' -p85693 -tp85694 -a(S'nlist/2' -p85695 -S'nlist(${1:Pid}, ${2:Dir}) $3' -p85696 -tp85697 -a(S'open/1' -p85698 -S'open(${1:Host}) $2' -p85699 -tp85700 -a(S'open/2' -p85701 -S'open(${1:Host}, ${2:Port}) $3' -p85702 -tp85703 -a(S'pwd/1' -p85704 -S'pwd(${1:Pid}) $2' -p85705 -tp85706 -a(S'quote/2' -p85707 -S'quote(${1:Pid}, ${2:Cmd}) $3' -p85708 -tp85709 -a(S'recv/2' -p85710 -S'recv(${1:Pid}, ${2:RemotFileName}) $3' -p85711 -tp85712 -a(S'recv/3' -p85713 -S'recv(${1:Pid}, ${2:RemotFileName}, ${3:LocalFileName}) $4' -p85714 -tp85715 -a(S'recv_bin/2' -p85716 -S'recv_bin(${1:Pid}, ${2:RemoteFile}) $3' -p85717 -tp85718 -a(S'recv_chunk/1' -p85719 -S'recv_chunk(${1:Pid}) $2' -p85720 -tp85721 -a(S'recv_chunk_start/2' -p85722 -S'recv_chunk_start(${1:Pid}, ${2:RemoteFile}) $3' -p85723 -tp85724 -a(S'rename/3' -p85725 -S'rename(${1:Pid}, ${2:Old}, ${3:New}) $4' -p85726 -tp85727 -a(S'rmdir/2' -p85728 -S'rmdir(${1:Pid}, ${2:Dir}) $3' -p85729 -tp85730 -a(S'send/2' -p85731 -S'send(${1:Pid}, ${2:LocalFileName}) $3' -p85732 -tp85733 -a(S'send/3' -p85734 -S'send(${1:Pid}, ${2:LocalFileName}, ${3:RemotFileName}) $4' -p85735 -tp85736 -a(S'send_bin/3' -p85737 -S'send_bin(${1:Pid}, ${2:Bin}, ${3:RemoteFile}) $4' -p85738 -tp85739 -a(S'send_chunk/2' -p85740 -S'send_chunk(${1:Pid}, ${2:Bin}) $3' -p85741 -tp85742 -a(S'send_chunk_end/1' -p85743 -S'send_chunk_end(${1:Pid}) $2' -p85744 -tp85745 -a(S'send_chunk_start/2' -p85746 -S'send_chunk_start(${1:Pid}, ${2:RemoteFile}) $3' -p85747 -tp85748 -a(S'service_info/1' -p85749 -S'service_info(${1:Pid}) $2' -p85750 -tp85751 -a(S'services/0' -p85752 -S'services() $1' -p85753 -tp85754 -a(S'start_link/1' -p85755 -S'start_link(${1:Param1}) $2' -p85756 -tp85757 -a(S'start_link/2' -p85758 -S'start_link(${1:Opts}, ${2:GenServerOptions}) $3' -p85759 -tp85760 -a(S'start_service/1' -p85761 -S'start_service(${1:Options}) $2' -p85762 -tp85763 -a(S'start_standalone/1' -p85764 -S'start_standalone(${1:Options}) $2' -p85765 -tp85766 -a(S'stop_service/1' -p85767 -S'stop_service(${1:Pid}) $2' -p85768 -tp85769 -a(S'terminate/2' -p85770 -S'terminate(${1:Reason}, ${2:State}) $3' -p85771 -tp85772 -a(S'type/2' -p85773 -S'type(${1:Pid}, ${2:Type}) $3' -p85774 -tp85775 -a(S'user/3' -p85776 -S'user(${1:Pid}, ${2:User}, ${3:Pass}) $4' -p85777 -tp85778 -a(S'user/4' -p85779 -S'user(${1:Pid}, ${2:User}, ${3:Pass}, ${4:Acc}) $5' -p85780 -tp85781 -asS'snmpa_mib' -p85782 -(lp85783 -(S'backup/2' -p85784 -S'backup(${1:MibServer}, ${2:BackupDir}) $3' -p85785 -tp85786 -a(S'code_change/3' -p85787 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p85788 -tp85789 -a(S'disable_cache/1' -p85790 -S'disable_cache(${1:MibServer}) $2' -p85791 -tp85792 -a(S'disable_cache_autogc/1' -p85793 -S'disable_cache_autogc(${1:MibServer}) $2' -p85794 -tp85795 -a(S'dump/1' -p85796 -S'dump(${1:MibServer}) $2' -p85797 -tp85798 -a(S'dump/2' -p85799 -S'dump(${1:MibServer}, ${2:File}) $3' -p85800 -tp85801 -a(S'enable_cache/1' -p85802 -S'enable_cache(${1:MibServer}) $2' -p85803 -tp85804 -a(S'enable_cache_autogc/1' -p85805 -S'enable_cache_autogc(${1:MibServer}) $2' -p85806 -tp85807 -a(S'gc_cache/1' -p85808 -S'gc_cache(${1:MibServer}) $2' -p85809 -tp85810 -a(S'gc_cache/2' -p85811 -S'gc_cache(${1:MibServer}, ${2:Age}) $3' -p85812 -tp85813 -a(S'gc_cache/3' -p85814 -S'gc_cache(${1:MibServer}, ${2:Age}, ${3:GcLimit}) $4' -p85815 -tp85816 -a(S'handle_call/3' -p85817 -S'handle_call(${1:Req}, ${2:Param2}, ${3:State}) $4' -p85818 -tp85819 -a(S'handle_cast/2' -p85820 -S'handle_cast(${1:Msg}, ${2:State}) $3' -p85821 -tp85822 -a(S'handle_info/2' -p85823 -S'handle_info(${1:Info}, ${2:S}) $3' -p85824 -tp85825 -a(S'info/1' -p85826 -S'info(${1:MibServer}) $2' -p85827 -tp85828 -a(S'info/2' -p85829 -S'info(${1:MibServer}, ${2:Type}) $3' -p85830 -tp85831 -a(S'init/1' -p85832 -S'init(${1:Param1}) $2' -p85833 -tp85834 -a(S'invalidate_cache/1' -p85835 -S'invalidate_cache(${1:MibServer}) $2' -p85836 -tp85837 -a(S'load_mibs/2' -p85838 -S'load_mibs(${1:MibServer}, ${2:Mibs}) $3' -p85839 -tp85840 -a(S'lookup/2' -p85841 -S'lookup(${1:MibServer}, ${2:Oid}) $3' -p85842 -tp85843 -a(S'next/3' -p85844 -S'next(${1:MibServer}, ${2:Oid}, ${3:MibView}) $4' -p85845 -tp85846 -a(S'register_subagent/3' -p85847 -S'register_subagent(${1:MibServer}, ${2:Oid}, ${3:Pid}) $4' -p85848 -tp85849 -a(S'start_link/3' -p85850 -S'start_link(${1:Prio}, ${2:Mibs}, ${3:Opts}) $4' -p85851 -tp85852 -a(S'stop/1' -p85853 -S'stop(${1:MibServer}) $2' -p85854 -tp85855 -a(S'terminate/2' -p85856 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p85857 -tp85858 -a(S'unload_mibs/2' -p85859 -S'unload_mibs(${1:MibServer}, ${2:Mibs}) $3' -p85860 -tp85861 -a(S'unregister_subagent/2' -p85862 -S'unregister_subagent(${1:MibServer}, ${2:OidOrPid}) $3' -p85863 -tp85864 -a(S'update_cache_age/2' -p85865 -S'update_cache_age(${1:Param1}, ${2:BadAge}) $3' -p85866 -tp85867 -a(S'update_cache_gclimit/2' -p85868 -S'update_cache_gclimit(${1:Param1}, ${2:BadLimit}) $3' -p85869 -tp85870 -a(S'verbosity/2' -p85871 -S'verbosity(${1:MibServer}, ${2:Verbosity}) $3' -p85872 -tp85873 -a(S'whereis_mib/2' -p85874 -S'whereis_mib(${1:MibServer}, ${2:Mib}) $3' -p85875 -tp85876 -a(S'which_cache_size/1' -p85877 -S'which_cache_size(${1:MibServer}) $2' -p85878 -tp85879 -a(S'which_mib/2' -p85880 -S'which_mib(${1:MibServer}, ${2:Oid}) $3' -p85881 -tp85882 -a(S'which_mibs/1' -p85883 -S'which_mibs(${1:MibServer}) $2' -p85884 -tp85885 -asS'eunit_autoexport' -p85886 -(lp85887 -(S'parse_transform/2' -p85888 -S'parse_transform(${1:Forms}, ${2:Options}) $3' -p85889 -tp85890 -asS'crashdump_viewer' -p85891 -(lp85892 -(S'allocated_areas/2' -p85893 -S'allocated_areas(${1:Param1}, ${2:Param2}) $3' -p85894 -tp85895 -a(S'allocator_info/2' -p85896 -S'allocator_info(${1:Param1}, ${2:Param2}) $3' -p85897 -tp85898 -a(S'atoms/3' -p85899 -S'atoms(${1:SessionId}, ${2:Param2}, ${3:Param3}) $4' -p85900 -tp85901 -a(S'code_change/3' -p85902 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p85903 -tp85904 -a(S'configData/0' -p85905 -S'configData() $1' -p85906 -tp85907 -a(S'debug/1' -p85908 -S'debug(${1:F}) $2' -p85909 -tp85910 -a(S'dist_info/2' -p85911 -S'dist_info(${1:Param1}, ${2:Param2}) $3' -p85912 -tp85913 -a(S'ets_tables/3' -p85914 -S'ets_tables(${1:SessionId}, ${2:Param2}, ${3:Input}) $4' -p85915 -tp85916 -a(S'expand/2' -p85917 -S'expand(${1:Param1}, ${2:Input}) $3' -p85918 -tp85919 -a(S'expand_binary/2' -p85920 -S'expand_binary(${1:Param1}, ${2:Input}) $3' -p85921 -tp85922 -a(S'expand_memory/2' -p85923 -S'expand_memory(${1:Param1}, ${2:Input}) $3' -p85924 -tp85925 -a(S'filename_frame/2' -p85926 -S'filename_frame(${1:Param1}, ${2:Param2}) $3' -p85927 -tp85928 -a(S'fun_table/3' -p85929 -S'fun_table(${1:SessionId}, ${2:Param2}, ${3:Param3}) $4' -p85930 -tp85931 -a(S'general_info/2' -p85932 -S'general_info(${1:Fd}, ${2:GenInfo}) $3' -p85933 -tp85934 -a(S'handle_call/3' -p85935 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p85936 -tp85937 -a(S'handle_cast/2' -p85938 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p85939 -tp85940 -a(S'handle_info/2' -p85941 -S'handle_info(${1:Param1}, ${2:State}) $3' -p85942 -tp85943 -a(S'hash_tables/2' -p85944 -S'hash_tables(${1:Param1}, ${2:Param2}) $3' -p85945 -tp85946 -a(S'index_tables/2' -p85947 -S'index_tables(${1:Param1}, ${2:Param2}) $3' -p85948 -tp85949 -a(S'init/1' -p85950 -S'init(${1:Param1}) $2' -p85951 -tp85952 -a(S'initial_info_frame/2' -p85953 -S'initial_info_frame(${1:Param1}, ${2:Param2}) $3' -p85954 -tp85955 -a(S'internal_ets_tables/2' -p85956 -S'internal_ets_tables(${1:File}, ${2:WS}) $3' -p85957 -tp85958 -a(S'loaded_mod_details/2' -p85959 -S'loaded_mod_details(${1:File}, ${2:Input}) $3' -p85960 -tp85961 -a(S'loaded_modules/3' -p85962 -S'loaded_modules(${1:SessionId}, ${2:Param2}, ${3:Param3}) $4' -p85963 -tp85964 -a(S'memory/2' -p85965 -S'memory(${1:Param1}, ${2:Input}) $3' -p85966 -tp85967 -a(S'menu_frame/2' -p85968 -S'menu_frame(${1:Param1}, ${2:Param2}) $3' -p85969 -tp85970 -a(S'port/2' -p85971 -S'port(${1:File}, ${2:Input}) $3' -p85972 -tp85973 -a(S'ports/3' -p85974 -S'ports(${1:SessionId}, ${2:File}, ${3:TW}) $4' -p85975 -tp85976 -a(S'proc_details/2' -p85977 -S'proc_details(${1:File}, ${2:Input}) $3' -p85978 -tp85979 -a(S'processes/3' -p85980 -S'processes(${1:SessionId}, ${2:Param2}, ${3:Param3}) $4' -p85981 -tp85982 -a(S'read_file/2' -p85983 -S'read_file(${1:Param1}, ${2:Input}) $3' -p85984 -tp85985 -a(S'read_file_frame/2' -p85986 -S'read_file_frame(${1:Param1}, ${2:Param2}) $3' -p85987 -tp85988 -a(S'redirect/2' -p85989 -S'redirect(${1:Param1}, ${2:Param2}) $3' -p85990 -tp85991 -a(S'script_start/0' -p85992 -S'script_start() $1' -p85993 -tp85994 -a(S'script_start/1' -p85995 -S'script_start(${1:Param1}) $2' -p85996 -tp85997 -a(S'sort_procs/3' -p85998 -S'sort_procs(${1:SessionId}, ${2:Procs}, ${3:Input}) $4' -p85999 -tp86000 -a(S'start/0' -p86001 -S'start() $1' -p86002 -tp86003 -a(S'start_link/0' -p86004 -S'start_link() $1' -p86005 -tp86006 -a(S'start_page/2' -p86007 -S'start_page(${1:Param1}, ${2:Param2}) $3' -p86008 -tp86009 -a(S'stop/0' -p86010 -S'stop() $1' -p86011 -tp86012 -a(S'stop_debug/0' -p86013 -S'stop_debug() $1' -p86014 -tp86015 -a(S'terminate/2' -p86016 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p86017 -tp86018 -a(S'timers/3' -p86019 -S'timers(${1:SessionId}, ${2:Param2}, ${3:Input}) $4' -p86020 -tp86021 -a(S'toggle/2' -p86022 -S'toggle(${1:Param1}, ${2:Input}) $3' -p86023 -tp86024 -asS'orber_typedefs' -p86025 -(lp86026 -(S'get_op_def/2' -p86027 -S'get_op_def(${1:Objkey}, ${2:Op}) $3' -p86028 -tp86029 -asS'inet_parse' -p86030 -(lp86031 -(S'address/1' -p86032 -S'address(${1:Cs}) $2' -p86033 -tp86034 -a(S'domain/1' -p86035 -S'domain(${1:Param1}) $2' -p86036 -tp86037 -a(S'dots/1' -p86038 -S'dots(${1:Name}) $2' -p86039 -tp86040 -a(S'host_conf_bsdos/1' -p86041 -S'host_conf_bsdos(${1:File}) $2' -p86042 -tp86043 -a(S'host_conf_bsdos/2' -p86044 -S'host_conf_bsdos(${1:Fname}, ${2:File}) $3' -p86045 -tp86046 -a(S'host_conf_freebsd/1' -p86047 -S'host_conf_freebsd(${1:File}) $2' -p86048 -tp86049 -a(S'host_conf_freebsd/2' -p86050 -S'host_conf_freebsd(${1:Fname}, ${2:File}) $3' -p86051 -tp86052 -a(S'host_conf_linux/1' -p86053 -S'host_conf_linux(${1:File}) $2' -p86054 -tp86055 -a(S'host_conf_linux/2' -p86056 -S'host_conf_linux(${1:Fname}, ${2:File}) $3' -p86057 -tp86058 -a(S'hosts/1' -p86059 -S'hosts(${1:File}) $2' -p86060 -tp86061 -a(S'hosts/2' -p86062 -S'hosts(${1:Fname}, ${2:File}) $3' -p86063 -tp86064 -a(S'hosts_vxworks/1' -p86065 -S'hosts_vxworks(${1:Hosts}) $2' -p86066 -tp86067 -a(S'ipv4_address/1' -p86068 -S'ipv4_address(${1:Cs}) $2' -p86069 -tp86070 -a(S'ipv4strict_address/1' -p86071 -S'ipv4strict_address(${1:Cs}) $2' -p86072 -tp86073 -a(S'ipv6_address/1' -p86074 -S'ipv6_address(${1:Cs}) $2' -p86075 -tp86076 -a(S'ipv6strict_address/1' -p86077 -S'ipv6strict_address(${1:Cs}) $2' -p86078 -tp86079 -a(S'netmasks/1' -p86080 -S'netmasks(${1:File}) $2' -p86081 -tp86082 -a(S'netmasks/2' -p86083 -S'netmasks(${1:Fname}, ${2:File}) $3' -p86084 -tp86085 -a(S'networks/1' -p86086 -S'networks(${1:File}) $2' -p86087 -tp86088 -a(S'networks/2' -p86089 -S'networks(${1:Fname}, ${2:File}) $3' -p86090 -tp86091 -a(S'nsswitch_conf/1' -p86092 -S'nsswitch_conf(${1:File}) $2' -p86093 -tp86094 -a(S'nsswitch_conf/2' -p86095 -S'nsswitch_conf(${1:Fname}, ${2:File}) $3' -p86096 -tp86097 -a(S'ntoa/1' -p86098 -S'ntoa(${1:T}) $2' -p86099 -tp86100 -a(S'protocols/1' -p86101 -S'protocols(${1:File}) $2' -p86102 -tp86103 -a(S'protocols/2' -p86104 -S'protocols(${1:Fname}, ${2:File}) $3' -p86105 -tp86106 -a(S'resolv/1' -p86107 -S'resolv(${1:File}) $2' -p86108 -tp86109 -a(S'resolv/2' -p86110 -S'resolv(${1:Fname}, ${2:File}) $3' -p86111 -tp86112 -a(S'rpc/1' -p86113 -S'rpc(${1:File}) $2' -p86114 -tp86115 -a(S'rpc/2' -p86116 -S'rpc(${1:Fname}, ${2:File}) $3' -p86117 -tp86118 -a(S'services/1' -p86119 -S'services(${1:File}) $2' -p86120 -tp86121 -a(S'services/2' -p86122 -S'services(${1:Fname}, ${2:File}) $3' -p86123 -tp86124 -a(S'split_line/1' -p86125 -S'split_line(${1:Line}) $2' -p86126 -tp86127 -a(S'visible_string/1' -p86128 -S'visible_string(${1:Param1}) $2' -p86129 -tp86130 -asS'pman_relay_server' -p86131 -(lp86132 -(S'init/1' -p86133 -S'init(${1:P}) $2' -p86134 -tp86135 -asS'snmp_view_based_acm_mib' -p86136 -(lp86137 -(S'add_access/8' -p86138 -S'add_access(${1:GroupName}, ${2:Prefix}, ${3:SecModel}, ${4:SecLevel}, ${5:Match}, ${6:RV}, ${7:WV}, ${8:NV}) $9' -p86139 -tp86140 -a(S'add_sec2group/3' -p86141 -S'add_sec2group(${1:SecModel}, ${2:SecName}, ${3:GroupName}) $4' -p86142 -tp86143 -a(S'add_view_tree_fam/4' -p86144 -S'add_view_tree_fam(${1:ViewIndex}, ${2:SubTree}, ${3:Status}, ${4:Mask}) $5' -p86145 -tp86146 -a(S'check_vacm/1' -p86147 -S'check_vacm(${1:X}) $2' -p86148 -tp86149 -a(S'configure/1' -p86150 -S'configure(${1:Dir}) $2' -p86151 -tp86152 -a(S'delete_access/1' -p86153 -S'delete_access(${1:Key}) $2' -p86154 -tp86155 -a(S'delete_sec2group/1' -p86156 -S'delete_sec2group(${1:Key}) $2' -p86157 -tp86158 -a(S'delete_view_tree_fam/1' -p86159 -S'delete_view_tree_fam(${1:Key}) $2' -p86160 -tp86161 -a(S'get/3' -p86162 -S'get(${1:Name}, ${2:RowIndex}, ${3:Cols}) $4' -p86163 -tp86164 -a(S'reconfigure/1' -p86165 -S'reconfigure(${1:Dir}) $2' -p86166 -tp86167 -a(S'table_next/2' -p86168 -S'table_next(${1:Name}, ${2:RestOid}) $3' -p86169 -tp86170 -a(S'vacmAccessTable/1' -p86171 -S'vacmAccessTable(${1:Param1}) $2' -p86172 -tp86173 -a(S'vacmAccessTable/3' -p86174 -S'vacmAccessTable(${1:Param1}, ${2:RowIndex}, ${3:Cols}) $4' -p86175 -tp86176 -a(S'vacmContextTable/1' -p86177 -S'vacmContextTable(${1:Param1}) $2' -p86178 -tp86179 -a(S'vacmContextTable/3' -p86180 -S'vacmContextTable(${1:Op}, ${2:Arg1}, ${3:Arg2}) $4' -p86181 -tp86182 -a(S'vacmSecurityToGroupTable/1' -p86183 -S'vacmSecurityToGroupTable(${1:Op}) $2' -p86184 -tp86185 -a(S'vacmSecurityToGroupTable/3' -p86186 -S'vacmSecurityToGroupTable(${1:Op}, ${2:RowIndex}, ${3:Cols}) $4' -p86187 -tp86188 -a(S'vacmViewSpinLock/1' -p86189 -S'vacmViewSpinLock(${1:Param1}) $2' -p86190 -tp86191 -a(S'vacmViewSpinLock/2' -p86192 -S'vacmViewSpinLock(${1:Param1}, ${2:NewVal}) $3' -p86193 -tp86194 -a(S'vacmViewTreeFamilyTable/1' -p86195 -S'vacmViewTreeFamilyTable(${1:Op}) $2' -p86196 -tp86197 -a(S'vacmViewTreeFamilyTable/3' -p86198 -S'vacmViewTreeFamilyTable(${1:Op}, ${2:RowIndex}, ${3:Cols}) $4' -p86199 -tp86200 -asS'ct_make' -p86201 -(lp86202 -(S'all/0' -p86203 -S'all() $1' -p86204 -tp86205 -a(S'all/1' -p86206 -S'all(${1:Options}) $2' -p86207 -tp86208 -a(S'files/1' -p86209 -S'files(${1:Fs}) $2' -p86210 -tp86211 -a(S'files/2' -p86212 -S'files(${1:Fs0}, ${2:Options}) $3' -p86213 -tp86214 -asS'prettypr' -p86215 -(lp86216 -(S'above/2' -p86217 -S'above(${1:D1}, ${2:D2}) $3' -p86218 -tp86219 -a(S'beside/2' -p86220 -S'beside(${1:D1}, ${2:D2}) $3' -p86221 -tp86222 -a(S'best/3' -p86223 -S'best(${1:D}, ${2:W}, ${3:R}) $4' -p86224 -tp86225 -a(S'break/1' -p86226 -S'break(${1:D}) $2' -p86227 -tp86228 -a(S'empty/0' -p86229 -S'empty() $1' -p86230 -tp86231 -a(S'floating/1' -p86232 -S'floating(${1:D}) $2' -p86233 -tp86234 -a(S'floating/3' -p86235 -S'floating(${1:D}, ${2:H}, ${3:V}) $4' -p86236 -tp86237 -a(S'follow/2' -p86238 -S'follow(${1:D1}, ${2:D2}) $3' -p86239 -tp86240 -a(S'follow/3' -p86241 -S'follow(${1:D1}, ${2:D2}, ${3:N}) $4' -p86242 -tp86243 -a(S'format/1' -p86244 -S'format(${1:D}) $2' -p86245 -tp86246 -a(S'format/2' -p86247 -S'format(${1:D}, ${2:W}) $3' -p86248 -tp86249 -a(S'format/3' -p86250 -S'format(${1:D}, ${2:W}, ${3:R}) $4' -p86251 -tp86252 -a(S'nest/2' -p86253 -S'nest(${1:N}, ${2:D}) $3' -p86254 -tp86255 -a(S'null_text/1' -p86256 -S'null_text(${1:S}) $2' -p86257 -tp86258 -a(S'par/1' -p86259 -S'par(${1:S}) $2' -p86260 -tp86261 -a(S'par/2' -p86262 -S'par(${1:S}, ${2:N}) $3' -p86263 -tp86264 -a(S'sep/1' -p86265 -S'sep(${1:Ds}) $2' -p86266 -tp86267 -a(S'text/1' -p86268 -S'text(${1:S}) $2' -p86269 -tp86270 -a(S'text_par/1' -p86271 -S'text_par(${1:S}) $2' -p86272 -tp86273 -a(S'text_par/2' -p86274 -S'text_par(${1:S}, ${2:Param2}) $3' -p86275 -tp86276 -asS'reltool_app_win' -p86277 -(lp86278 -(S'init/5' -p86279 -S'init(${1:Parent}, ${2:WxEnv}, ${3:Xref}, ${4:C}, ${5:AppName}) $6' -p86280 -tp86281 -a(S'loop/1' -p86282 -S'loop(${1:S}) $2' -p86283 -tp86284 -a(S'open_mod/2' -p86285 -S'open_mod(${1:Pid}, ${2:ModName}) $3' -p86286 -tp86287 -a(S'raise/1' -p86288 -S'raise(${1:Pid}) $2' -p86289 -tp86290 -a(S'refresh/1' -p86291 -S'refresh(${1:Pid}) $2' -p86292 -tp86293 -a(S'start_link/4' -p86294 -S'start_link(${1:WxEnv}, ${2:Xref}, ${3:Common}, ${4:AppName}) $5' -p86295 -tp86296 -a(S'system_code_change/4' -p86297 -S'system_code_change(${1:S}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p86298 -tp86299 -a(S'system_continue/3' -p86300 -S'system_continue(${1:Param1}, ${2:Param2}, ${3:S}) $4' -p86301 -tp86302 -a(S'system_terminate/4' -p86303 -S'system_terminate(${1:Reason}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p86304 -tp86305 -asS'CosEventDomainAdmin' -p86306 -(lp86307 -(S"'AuthorizeCycles'/0" -p86308 -S"'AuthorizeCycles'() $1" -p86309 -tp86310 -a(S"'AuthorizeDiamonds'/0" -p86311 -S"'AuthorizeDiamonds'() $1" -p86312 -tp86313 -a(S"'CycleDetection'/0" -p86314 -S"'CycleDetection'() $1" -p86315 -tp86316 -a(S"'DiamondDetection'/0" -p86317 -S"'DiamondDetection'() $1" -p86318 -tp86319 -a(S"'ForbidCycles'/0" -p86320 -S"'ForbidCycles'() $1" -p86321 -tp86322 -a(S"'ForbidDiamonds'/0" -p86323 -S"'ForbidDiamonds'() $1" -p86324 -tp86325 -asS'ct_config_xml' -p86326 -(lp86327 -(S'check_parameter/1' -p86328 -S'check_parameter(${1:File}) $2' -p86329 -tp86330 -a(S'read_config/1' -p86331 -S'read_config(${1:ConfigFile}) $2' -p86332 -tp86333 -asS'edoc_parser' -p86334 -(lp86335 -(S'format_error/1' -p86336 -S'format_error(${1:Message}) $2' -p86337 -tp86338 -a(S'parse/1' -p86339 -S'parse(${1:Tokens}) $2' -p86340 -tp86341 -a(S'parse_and_scan/1' -p86342 -S'parse_and_scan(${1:Param1}) $2' -p86343 -tp86344 -a(S'parse_param/2' -p86345 -S'parse_param(${1:S}, ${2:L}) $3' -p86346 -tp86347 -a(S'parse_ref/2' -p86348 -S'parse_ref(${1:S}, ${2:L}) $3' -p86349 -tp86350 -a(S'parse_see/2' -p86351 -S'parse_see(${1:S}, ${2:L}) $3' -p86352 -tp86353 -a(S'parse_spec/2' -p86354 -S'parse_spec(${1:S}, ${2:L}) $3' -p86355 -tp86356 -a(S'parse_throws/2' -p86357 -S'parse_throws(${1:S}, ${2:L}) $3' -p86358 -tp86359 -a(S'parse_typedef/2' -p86360 -S'parse_typedef(${1:S}, ${2:L}) $3' -p86361 -tp86362 -asS'orber_iiop_pm' -p86363 -(lp86364 -(S'add_connection/3' -p86365 -S'add_connection(${1:Key}, ${2:Key}, ${3:SockData}) $4' -p86366 -tp86367 -a(S'close_connection/1' -p86368 -S'close_connection(${1:PeerData}) $2' -p86369 -tp86370 -a(S'close_connection/2' -p86371 -S'close_connection(${1:PeerData}, ${2:Interface}) $3' -p86372 -tp86373 -a(S'code_change/3' -p86374 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p86375 -tp86376 -a(S'connect/7' -p86377 -S'connect() $1' -p86378 -tp86379 -a(S'handle_call/3' -p86380 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p86381 -tp86382 -a(S'handle_cast/2' -p86383 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p86384 -tp86385 -a(S'handle_info/2' -p86386 -S'handle_info(${1:Param1}, ${2:State}) $3' -p86387 -tp86388 -a(S'init/1' -p86389 -S'init(${1:Param1}) $2' -p86390 -tp86391 -a(S'list_all_connections/0' -p86392 -S'list_all_connections() $1' -p86393 -tp86394 -a(S'list_existing_connections/0' -p86395 -S'list_existing_connections() $1' -p86396 -tp86397 -a(S'list_setup_connections/0' -p86398 -S'list_setup_connections() $1' -p86399 -tp86400 -a(S'peername2sockname/2' -p86401 -S'peername2sockname(${1:PeerHost}, ${2:PeerPort}) $3' -p86402 -tp86403 -a(S'reconfigure/1' -p86404 -S'reconfigure(${1:Options}) $2' -p86405 -tp86406 -a(S'reconfigure/3' -p86407 -S'reconfigure(${1:Options}, ${2:Host}, ${3:Port}) $4' -p86408 -tp86409 -a(S'reconfigure/4' -p86410 -S'reconfigure(${1:Options}, ${2:Host}, ${3:Port}, ${4:Interface}) $5' -p86411 -tp86412 -a(S'setup_connection/8' -p86413 -S'setup_connection(${1:PMPid}, ${2:Host}, ${3:Port}, ${4:SocketType}, ${5:SocketOptions}, ${6:Chars}, ${7:Wchars}, ${8:Key}) $9' -p86414 -tp86415 -a(S'sockname2peername/2' -p86416 -S'sockname2peername(${1:SockHost}, ${2:SockPort}) $3' -p86417 -tp86418 -a(S'start/0' -p86419 -S'start() $1' -p86420 -tp86421 -a(S'start/1' -p86422 -S'start(${1:Opts}) $2' -p86423 -tp86424 -a(S'stop/0' -p86425 -S'stop() $1' -p86426 -tp86427 -a(S'terminate/2' -p86428 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p86429 -tp86430 -asS'cosNotificationApp' -p86431 -(lp86432 -(S'create_structured_event/6' -p86433 -S'create_structured_event(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}, ${5:Param5}, ${6:Param6}) $7' -p86434 -tp86435 -a(S'init/1' -p86436 -S'init(${1:Param1}) $2' -p86437 -tp86438 -a(S'install/0' -p86439 -S'install() $1' -p86440 -tp86441 -a(S'install/1' -p86442 -S'install(${1:Time}) $2' -p86443 -tp86444 -a(S'install_event/0' -p86445 -S'install_event() $1' -p86446 -tp86447 -a(S'install_event/1' -p86448 -S'install_event(${1:Time}) $2' -p86449 -tp86450 -a(S'install_typed/0' -p86451 -S'install_typed() $1' -p86452 -tp86453 -a(S'install_typed/1' -p86454 -S'install_typed(${1:Time}) $2' -p86455 -tp86456 -a(S'interval_events/0' -p86457 -S'interval_events() $1' -p86458 -tp86459 -a(S'max_events/0' -p86460 -S'max_events() $1' -p86461 -tp86462 -a(S'notify/0' -p86463 -S'notify() $1' -p86464 -tp86465 -a(S'start/0' -p86466 -S'start() $1' -p86467 -tp86468 -a(S'start/2' -p86469 -S'start(${1:Param1}, ${2:Param2}) $3' -p86470 -tp86471 -a(S'start_factory/0' -p86472 -S'start_factory() $1' -p86473 -tp86474 -a(S'start_factory/1' -p86475 -S'start_factory(${1:Args}) $2' -p86476 -tp86477 -a(S'start_filter_factory/0' -p86478 -S'start_filter_factory() $1' -p86479 -tp86480 -a(S'start_filter_factory/1' -p86481 -S'start_filter_factory(${1:Args}) $2' -p86482 -tp86483 -a(S'start_global_factory/0' -p86484 -S'start_global_factory() $1' -p86485 -tp86486 -a(S'start_global_factory/1' -p86487 -S'start_global_factory(${1:Args}) $2' -p86488 -tp86489 -a(S'stop/0' -p86490 -S'stop() $1' -p86491 -tp86492 -a(S'stop/1' -p86493 -S'stop(${1:Param1}) $2' -p86494 -tp86495 -a(S'stop_factory/1' -p86496 -S'stop_factory(${1:Fac}) $2' -p86497 -tp86498 -a(S'stop_filter_factory/1' -p86499 -S'stop_filter_factory(${1:Fac}) $2' -p86500 -tp86501 -a(S'timeout_events/0' -p86502 -S'timeout_events() $1' -p86503 -tp86504 -a(S'type_check/0' -p86505 -S'type_check() $1' -p86506 -tp86507 -a(S'uninstall/0' -p86508 -S'uninstall() $1' -p86509 -tp86510 -a(S'uninstall/1' -p86511 -S'uninstall(${1:Time}) $2' -p86512 -tp86513 -a(S'uninstall_event/0' -p86514 -S'uninstall_event() $1' -p86515 -tp86516 -a(S'uninstall_event/1' -p86517 -S'uninstall_event(${1:Time}) $2' -p86518 -tp86519 -a(S'uninstall_typed/0' -p86520 -S'uninstall_typed() $1' -p86521 -tp86522 -a(S'uninstall_typed/1' -p86523 -S'uninstall_typed(${1:Time}) $2' -p86524 -tp86525 -asS'ic_symtab' -p86526 -(lp86527 -(S'get_full_scoped_name/3' -p86528 -S'get_full_scoped_name() $1' -p86529 -tp86530 -a(S'intf_resolv/3' -p86531 -S'intf_resolv(${1:G}, ${2:Scope}, ${3:Id}) $4' -p86532 -tp86533 -a(S'new/0' -p86534 -S'new() $1' -p86535 -tp86536 -a(S'retrieve/2' -p86537 -S'retrieve(${1:G}, ${2:Id}) $3' -p86538 -tp86539 -a(S'scoped_id_add/2' -p86540 -S'scoped_id_add(${1:S1}, ${2:S2}) $3' -p86541 -tp86542 -a(S'scoped_id_is_global/1' -p86543 -S'scoped_id_is_global(${1:Param1}) $2' -p86544 -tp86545 -a(S'scoped_id_new/1' -p86546 -S'scoped_id_new(${1:Id}) $2' -p86547 -tp86548 -a(S'scoped_id_new_global/1' -p86549 -S'scoped_id_new_global(${1:Id}) $2' -p86550 -tp86551 -a(S'scoped_id_strip/1' -p86552 -S'scoped_id_strip(${1:S}) $2' -p86553 -tp86554 -a(S'soft_retrieve/2' -p86555 -S'soft_retrieve(${1:G}, ${2:Id}) $3' -p86556 -tp86557 -a(S'store/3' -p86558 -S'store(${1:G}, ${2:N}, ${3:X}) $4' -p86559 -tp86560 -a(S'symtab_add_faked_included_types/1' -p86561 -S'symtab_add_faked_included_types(${1:G}) $2' -p86562 -tp86563 -asS'orber_ifr_primitivedef' -p86564 -(lp86565 -(S"'_get_def_kind'/1" -p86566 -S"'_get_def_kind'() $1" -p86567 -tp86568 -a(S"'_get_kind'/1" -p86569 -S"'_get_kind'() $1" -p86570 -tp86571 -a(S"'_get_type'/1" -p86572 -S"'_get_type'() $1" -p86573 -tp86574 -a(S'cleanup_for_destroy/1' -p86575 -S'cleanup_for_destroy() $1' -p86576 -tp86577 -a(S'destroy/1' -p86578 -S'destroy() $1' -p86579 -tp86580 -asS'snmpa_app' -p86581 -(lp86582 -(S'convert_config/0' -p86583 -S'convert_config() $1' -p86584 -tp86585 -a(S'convert_config/1' -p86586 -S'convert_config(${1:Opts}) $2' -p86587 -tp86588 -a(S'start/1' -p86589 -S'start(${1:Type}) $2' -p86590 -tp86591 -asS'wxGridBagSizer' -p86592 -(lp86593 -(S'add/2' -p86594 -S'add(${1:This}, ${2:Item}) $3' -p86595 -tp86596 -a(S'add/3' -p86597 -S'add(${1:This}, ${2:Width}, ${3:Height}) $4' -p86598 -tp86599 -a(S'add/4' -p86600 -S'add(${1:This}, ${2:Width}, ${3:Height}, ${4:Pos}) $5' -p86601 -tp86602 -a(S'add/5' -p86603 -S'add(${1:This}, ${2:Width}, ${3:Height}, ${4:Pos}, ${5:Param5}) $6' -p86604 -tp86605 -a(S'addGrowableCol/2' -p86606 -S'addGrowableCol(${1:This}, ${2:Idx}) $3' -p86607 -tp86608 -a(S'addGrowableCol/3' -p86609 -S'addGrowableCol(${1:This}, ${2:Idx}, ${3:Options}) $4' -p86610 -tp86611 -a(S'addGrowableRow/2' -p86612 -S'addGrowableRow(${1:This}, ${2:Idx}) $3' -p86613 -tp86614 -a(S'addGrowableRow/3' -p86615 -S'addGrowableRow(${1:This}, ${2:Idx}, ${3:Options}) $4' -p86616 -tp86617 -a(S'addSpacer/2' -p86618 -S'addSpacer(${1:This}, ${2:Size}) $3' -p86619 -tp86620 -a(S'addStretchSpacer/1' -p86621 -S'addStretchSpacer(${1:This}) $2' -p86622 -tp86623 -a(S'addStretchSpacer/2' -p86624 -S'addStretchSpacer(${1:This}, ${2:Options}) $3' -p86625 -tp86626 -a(S'calcMin/1' -p86627 -S'calcMin(${1:This}) $2' -p86628 -tp86629 -a(S'checkForIntersection/2' -p86630 -S'checkForIntersection(${1:This}, ${2:Item}) $3' -p86631 -tp86632 -a(S'checkForIntersection/3' -p86633 -S'checkForIntersection(${1:This}, ${2:Pos}, ${3:Span}) $4' -p86634 -tp86635 -a(S'checkForIntersection/4' -p86636 -S'checkForIntersection(${1:This}, ${2:Pos}, ${3:Span}, ${4:Param4}) $5' -p86637 -tp86638 -a(S'clear/1' -p86639 -S'clear(${1:This}) $2' -p86640 -tp86641 -a(S'clear/2' -p86642 -S'clear(${1:This}, ${2:Options}) $3' -p86643 -tp86644 -a(S'destroy/1' -p86645 -S'destroy(${1:This}) $2' -p86646 -tp86647 -a(S'detach/2' -p86648 -S'detach(${1:This}, ${2:Index}) $3' -p86649 -tp86650 -a(S'findItem/2' -p86651 -S'findItem(${1:This}, ${2:Window}) $3' -p86652 -tp86653 -a(S'findItemAtPoint/2' -p86654 -S'findItemAtPoint(${1:This}, ${2:Pt}) $3' -p86655 -tp86656 -a(S'findItemAtPosition/2' -p86657 -S'findItemAtPosition(${1:This}, ${2:Pos}) $3' -p86658 -tp86659 -a(S'findItemWithData/2' -p86660 -S'findItemWithData(${1:This}, ${2:UserData}) $3' -p86661 -tp86662 -a(S'fit/2' -p86663 -S'fit(${1:This}, ${2:Window}) $3' -p86664 -tp86665 -a(S'fitInside/2' -p86666 -S'fitInside(${1:This}, ${2:Window}) $3' -p86667 -tp86668 -a(S'getCellSize/3' -p86669 -S'getCellSize(${1:This}, ${2:Row}, ${3:Col}) $4' -p86670 -tp86671 -a(S'getChildren/1' -p86672 -S'getChildren(${1:This}) $2' -p86673 -tp86674 -a(S'getCols/1' -p86675 -S'getCols(${1:This}) $2' -p86676 -tp86677 -a(S'getEmptyCellSize/1' -p86678 -S'getEmptyCellSize(${1:This}) $2' -p86679 -tp86680 -a(S'getFlexibleDirection/1' -p86681 -S'getFlexibleDirection(${1:This}) $2' -p86682 -tp86683 -a(S'getHGap/1' -p86684 -S'getHGap(${1:This}) $2' -p86685 -tp86686 -a(S'getItem/2' -p86687 -S'getItem(${1:This}, ${2:Window}) $3' -p86688 -tp86689 -a(S'getItem/3' -p86690 -S'getItem(${1:This}, ${2:Window}, ${3:Options}) $4' -p86691 -tp86692 -a(S'getItemPosition/2' -p86693 -S'getItemPosition(${1:This}, ${2:Index}) $3' -p86694 -tp86695 -a(S'getItemSpan/2' -p86696 -S'getItemSpan(${1:This}, ${2:Index}) $3' -p86697 -tp86698 -a(S'getMinSize/1' -p86699 -S'getMinSize(${1:This}) $2' -p86700 -tp86701 -a(S'getNonFlexibleGrowMode/1' -p86702 -S'getNonFlexibleGrowMode(${1:This}) $2' -p86703 -tp86704 -a(S'getPosition/1' -p86705 -S'getPosition(${1:This}) $2' -p86706 -tp86707 -a(S'getRows/1' -p86708 -S'getRows(${1:This}) $2' -p86709 -tp86710 -a(S'getSize/1' -p86711 -S'getSize(${1:This}) $2' -p86712 -tp86713 -a(S'getVGap/1' -p86714 -S'getVGap(${1:This}) $2' -p86715 -tp86716 -a(S'hide/2' -p86717 -S'hide(${1:This}, ${2:Window}) $3' -p86718 -tp86719 -a(S'hide/3' -p86720 -S'hide(${1:This}, ${2:Window}, ${3:Options}) $4' -p86721 -tp86722 -a(S'insert/3' -p86723 -S'insert(${1:This}, ${2:Index}, ${3:Item}) $4' -p86724 -tp86725 -a(S'insert/4' -p86726 -S'insert(${1:This}, ${2:Index}, ${3:Width}, ${4:Height}) $5' -p86727 -tp86728 -a(S'insert/5' -p86729 -S'insert(${1:This}, ${2:Index}, ${3:Width}, ${4:Height}, ${5:Options}) $6' -p86730 -tp86731 -a(S'insertSpacer/3' -p86732 -S'insertSpacer(${1:This}, ${2:Index}, ${3:Size}) $4' -p86733 -tp86734 -a(S'insertStretchSpacer/2' -p86735 -S'insertStretchSpacer(${1:This}, ${2:Index}) $3' -p86736 -tp86737 -a(S'insertStretchSpacer/3' -p86738 -S'insertStretchSpacer(${1:This}, ${2:Index}, ${3:Options}) $4' -p86739 -tp86740 -a(S'isShown/2' -p86741 -S'isShown(${1:This}, ${2:Index}) $3' -p86742 -tp86743 -a(S'layout/1' -p86744 -S'layout(${1:This}) $2' -p86745 -tp86746 -a(S'new/0' -p86747 -S'new() $1' -p86748 -tp86749 -a(S'new/1' -p86750 -S'new(${1:Param1}) $2' -p86751 -tp86752 -a(S'parent_class/1' -p86753 -S'parent_class(${1:Param1}) $2' -p86754 -tp86755 -a(S'prepend/2' -p86756 -S'prepend(${1:This}, ${2:Item}) $3' -p86757 -tp86758 -a(S'prepend/3' -p86759 -S'prepend(${1:This}, ${2:Width}, ${3:Height}) $4' -p86760 -tp86761 -a(S'prepend/4' -p86762 -S'prepend(${1:This}, ${2:Width}, ${3:Height}, ${4:Options}) $5' -p86763 -tp86764 -a(S'prependSpacer/2' -p86765 -S'prependSpacer(${1:This}, ${2:Size}) $3' -p86766 -tp86767 -a(S'prependStretchSpacer/1' -p86768 -S'prependStretchSpacer(${1:This}) $2' -p86769 -tp86770 -a(S'prependStretchSpacer/2' -p86771 -S'prependStretchSpacer(${1:This}, ${2:Options}) $3' -p86772 -tp86773 -a(S'recalcSizes/1' -p86774 -S'recalcSizes(${1:This}) $2' -p86775 -tp86776 -a(S'remove/2' -p86777 -S'remove(${1:This}, ${2:Index}) $3' -p86778 -tp86779 -a(S'removeGrowableCol/2' -p86780 -S'removeGrowableCol(${1:This}, ${2:Idx}) $3' -p86781 -tp86782 -a(S'removeGrowableRow/2' -p86783 -S'removeGrowableRow(${1:This}, ${2:Idx}) $3' -p86784 -tp86785 -a(S'replace/3' -p86786 -S'replace(${1:This}, ${2:Oldwin}, ${3:Newwin}) $4' -p86787 -tp86788 -a(S'replace/4' -p86789 -S'replace(${1:This}, ${2:Oldwin}, ${3:Newwin}, ${4:Options}) $5' -p86790 -tp86791 -a(S'setCols/2' -p86792 -S'setCols(${1:This}, ${2:Cols}) $3' -p86793 -tp86794 -a(S'setDimension/5' -p86795 -S'setDimension(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p86796 -tp86797 -a(S'setEmptyCellSize/2' -p86798 -S'setEmptyCellSize(${1:This}, ${2:Sz}) $3' -p86799 -tp86800 -a(S'setFlexibleDirection/2' -p86801 -S'setFlexibleDirection(${1:This}, ${2:Direction}) $3' -p86802 -tp86803 -a(S'setHGap/2' -p86804 -S'setHGap(${1:This}, ${2:Gap}) $3' -p86805 -tp86806 -a(S'setItemMinSize/3' -p86807 -S'setItemMinSize(${1:This}, ${2:Index}, ${3:Size}) $4' -p86808 -tp86809 -a(S'setItemMinSize/4' -p86810 -S'setItemMinSize(${1:This}, ${2:Index}, ${3:Width}, ${4:Height}) $5' -p86811 -tp86812 -a(S'setItemPosition/3' -p86813 -S'setItemPosition(${1:This}, ${2:Index}, ${3:Pos}) $4' -p86814 -tp86815 -a(S'setItemSpan/3' -p86816 -S'setItemSpan(${1:This}, ${2:Index}, ${3:Span}) $4' -p86817 -tp86818 -a(S'setMinSize/2' -p86819 -S'setMinSize(${1:This}, ${2:Size}) $3' -p86820 -tp86821 -a(S'setMinSize/3' -p86822 -S'setMinSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p86823 -tp86824 -a(S'setNonFlexibleGrowMode/2' -p86825 -S'setNonFlexibleGrowMode(${1:This}, ${2:Mode}) $3' -p86826 -tp86827 -a(S'setRows/2' -p86828 -S'setRows(${1:This}, ${2:Rows}) $3' -p86829 -tp86830 -a(S'setSizeHints/2' -p86831 -S'setSizeHints(${1:This}, ${2:Window}) $3' -p86832 -tp86833 -a(S'setVGap/2' -p86834 -S'setVGap(${1:This}, ${2:Gap}) $3' -p86835 -tp86836 -a(S'setVirtualSizeHints/2' -p86837 -S'setVirtualSizeHints(${1:This}, ${2:Window}) $3' -p86838 -tp86839 -a(S'show/2' -p86840 -S'show(${1:This}, ${2:Index}) $3' -p86841 -tp86842 -a(S'show/3' -p86843 -S'show(${1:This}, ${2:Index}, ${3:Options}) $4' -p86844 -tp86845 -asS'ct_snmp' -p86846 -(lp86847 -(S'get_next_values/3' -p86848 -S'get_next_values(${1:Agent}, ${2:Oids}, ${3:MgrAgentConfName}) $4' -p86849 -tp86850 -a(S'get_values/3' -p86851 -S'get_values(${1:Agent}, ${2:Oids}, ${3:MgrAgentConfName}) $4' -p86852 -tp86853 -a(S'load_mibs/1' -p86854 -S'load_mibs(${1:Mibs}) $2' -p86855 -tp86856 -a(S'register_agents/2' -p86857 -S'register_agents(${1:MgrAgentConfName}, ${2:ManagedAgents}) $3' -p86858 -tp86859 -a(S'register_users/2' -p86860 -S'register_users(${1:MgrAgentConfName}, ${2:Users}) $3' -p86861 -tp86862 -a(S'register_usm_users/2' -p86863 -S'register_usm_users(${1:MgrAgentConfName}, ${2:UsmUsers}) $3' -p86864 -tp86865 -a(S'set_info/1' -p86866 -S'set_info(${1:Config}) $2' -p86867 -tp86868 -a(S'set_values/4' -p86869 -S'set_values(${1:Agent}, ${2:VarsAndVals}, ${3:MgrAgentConfName}, ${4:Config}) $5' -p86870 -tp86871 -a(S'start/2' -p86872 -S'start(${1:Config}, ${2:MgrAgentConfName}) $3' -p86873 -tp86874 -a(S'start/3' -p86875 -S'start(${1:Config}, ${2:MgrAgentConfName}, ${3:SnmpAppConfName}) $4' -p86876 -tp86877 -a(S'stop/1' -p86878 -S'stop(${1:Config}) $2' -p86879 -tp86880 -a(S'unregister_agents/1' -p86881 -S'unregister_agents(${1:MgrAgentConfName}) $2' -p86882 -tp86883 -a(S'unregister_users/1' -p86884 -S'unregister_users(${1:MgrAgentConfName}) $2' -p86885 -tp86886 -a(S'update_usm_users/2' -p86887 -S'update_usm_users(${1:MgrAgentConfName}, ${2:UsmUsers}) $3' -p86888 -tp86889 -asS'orber_ifr_repository' -p86890 -(lp86891 -(S"'_get_def_kind'/1" -p86892 -S"'_get_def_kind'() $1" -p86893 -tp86894 -a(S'contents/3' -p86895 -S'contents() $1' -p86896 -tp86897 -a(S'create_alias/5' -p86898 -S'create_alias() $1' -p86899 -tp86900 -a(S'create_array/3' -p86901 -S'create_array() $1' -p86902 -tp86903 -a(S'create_constant/6' -p86904 -S'create_constant() $1' -p86905 -tp86906 -a(S'create_enum/5' -p86907 -S'create_enum() $1' -p86908 -tp86909 -a(S'create_exception/5' -p86910 -S'create_exception() $1' -p86911 -tp86912 -a(S'create_fixed/3' -p86913 -S'create_fixed() $1' -p86914 -tp86915 -a(S'create_idltype/2' -p86916 -S'create_idltype(${1:LRef}, ${2:Param2}) $3' -p86917 -tp86918 -a(S'create_interface/5' -p86919 -S'create_interface() $1' -p86920 -tp86921 -a(S'create_module/4' -p86922 -S'create_module() $1' -p86923 -tp86924 -a(S'create_primitivedef/1' -p86925 -S'create_primitivedef(${1:Pkind}) $2' -p86926 -tp86927 -a(S'create_primitivedef/2' -p86928 -S'create_primitivedef(${1:Pkind}, ${2:Transaction}) $3' -p86929 -tp86930 -a(S'create_sequence/3' -p86931 -S'create_sequence() $1' -p86932 -tp86933 -a(S'create_string/2' -p86934 -S'create_string() $1' -p86935 -tp86936 -a(S'create_struct/5' -p86937 -S'create_struct() $1' -p86938 -tp86939 -a(S'create_union/6' -p86940 -S'create_union() $1' -p86941 -tp86942 -a(S'create_wstring/2' -p86943 -S'create_wstring() $1' -p86944 -tp86945 -a(S'describe_contents/4' -p86946 -S'describe_contents() $1' -p86947 -tp86948 -a(S'destroy/1' -p86949 -S'destroy() $1' -p86950 -tp86951 -a(S'get_primitive/2' -p86952 -S'get_primitive() $1' -p86953 -tp86954 -a(S'lookup/2' -p86955 -S'lookup() $1' -p86956 -tp86957 -a(S'lookup_id/2' -p86958 -S'lookup_id() $1' -p86959 -tp86960 -a(S'lookup_name/5' -p86961 -S'lookup_name() $1' -p86962 -tp86963 -asS'megaco_transport' -p86964 -(lp86965 -(S'behaviour_info/1' -p86966 -S'behaviour_info(${1:Param1}) $2' -p86967 -tp86968 -asS'alarm_handler' -p86969 -(lp86970 -(S'add_alarm_handler/1' -p86971 -S'add_alarm_handler(${1:Module}) $2' -p86972 -tp86973 -a(S'add_alarm_handler/2' -p86974 -S'add_alarm_handler(${1:Module}, ${2:Args}) $3' -p86975 -tp86976 -a(S'clear_alarm/1' -p86977 -S'clear_alarm(${1:AlarmId}) $2' -p86978 -tp86979 -a(S'delete_alarm_handler/1' -p86980 -S'delete_alarm_handler(${1:Module}) $2' -p86981 -tp86982 -a(S'get_alarms/0' -p86983 -S'get_alarms() $1' -p86984 -tp86985 -a(S'handle_call/2' -p86986 -S'handle_call(${1:Param1}, ${2:Alarms}) $3' -p86987 -tp86988 -a(S'handle_event/2' -p86989 -S'handle_event(${1:Param1}, ${2:Alarms}) $3' -p86990 -tp86991 -a(S'handle_info/2' -p86992 -S'handle_info(${1:Param1}, ${2:Alarms}) $3' -p86993 -tp86994 -a(S'init/1' -p86995 -S'init(${1:Param1}) $2' -p86996 -tp86997 -a(S'set_alarm/1' -p86998 -S'set_alarm(${1:Alarm}) $2' -p86999 -tp87000 -a(S'start_link/0' -p87001 -S'start_link() $1' -p87002 -tp87003 -a(S'terminate/2' -p87004 -S'terminate(${1:Param1}, ${2:Alarms}) $3' -p87005 -tp87006 -asS'wxPanel' -p87007 -(lp87008 -(S'cacheBestSize/2' -p87009 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p87010 -tp87011 -a(S'captureMouse/1' -p87012 -S'captureMouse(${1:This}) $2' -p87013 -tp87014 -a(S'center/1' -p87015 -S'center(${1:This}) $2' -p87016 -tp87017 -a(S'center/2' -p87018 -S'center(${1:This}, ${2:Options}) $3' -p87019 -tp87020 -a(S'centerOnParent/1' -p87021 -S'centerOnParent(${1:This}) $2' -p87022 -tp87023 -a(S'centerOnParent/2' -p87024 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p87025 -tp87026 -a(S'centre/1' -p87027 -S'centre(${1:This}) $2' -p87028 -tp87029 -a(S'centre/2' -p87030 -S'centre(${1:This}, ${2:Options}) $3' -p87031 -tp87032 -a(S'centreOnParent/1' -p87033 -S'centreOnParent(${1:This}) $2' -p87034 -tp87035 -a(S'centreOnParent/2' -p87036 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p87037 -tp87038 -a(S'clearBackground/1' -p87039 -S'clearBackground(${1:This}) $2' -p87040 -tp87041 -a(S'clientToScreen/2' -p87042 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p87043 -tp87044 -a(S'clientToScreen/3' -p87045 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p87046 -tp87047 -a(S'close/1' -p87048 -S'close(${1:This}) $2' -p87049 -tp87050 -a(S'close/2' -p87051 -S'close(${1:This}, ${2:Options}) $3' -p87052 -tp87053 -a(S'connect/2' -p87054 -S'connect(${1:This}, ${2:EventType}) $3' -p87055 -tp87056 -a(S'connect/3' -p87057 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p87058 -tp87059 -a(S'convertDialogToPixels/2' -p87060 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p87061 -tp87062 -a(S'convertPixelsToDialog/2' -p87063 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p87064 -tp87065 -a(S'destroy/1' -p87066 -S'destroy(${1:This}) $2' -p87067 -tp87068 -a(S'destroyChildren/1' -p87069 -S'destroyChildren(${1:This}) $2' -p87070 -tp87071 -a(S'disable/1' -p87072 -S'disable(${1:This}) $2' -p87073 -tp87074 -a(S'disconnect/1' -p87075 -S'disconnect(${1:This}) $2' -p87076 -tp87077 -a(S'disconnect/2' -p87078 -S'disconnect(${1:This}, ${2:EventType}) $3' -p87079 -tp87080 -a(S'disconnect/3' -p87081 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p87082 -tp87083 -a(S'enable/1' -p87084 -S'enable(${1:This}) $2' -p87085 -tp87086 -a(S'enable/2' -p87087 -S'enable(${1:This}, ${2:Options}) $3' -p87088 -tp87089 -a(S'findWindow/2' -p87090 -S'findWindow(${1:This}, ${2:Winid}) $3' -p87091 -tp87092 -a(S'fit/1' -p87093 -S'fit(${1:This}) $2' -p87094 -tp87095 -a(S'fitInside/1' -p87096 -S'fitInside(${1:This}) $2' -p87097 -tp87098 -a(S'freeze/1' -p87099 -S'freeze(${1:This}) $2' -p87100 -tp87101 -a(S'getAcceleratorTable/1' -p87102 -S'getAcceleratorTable(${1:This}) $2' -p87103 -tp87104 -a(S'getBackgroundColour/1' -p87105 -S'getBackgroundColour(${1:This}) $2' -p87106 -tp87107 -a(S'getBackgroundStyle/1' -p87108 -S'getBackgroundStyle(${1:This}) $2' -p87109 -tp87110 -a(S'getBestSize/1' -p87111 -S'getBestSize(${1:This}) $2' -p87112 -tp87113 -a(S'getCaret/1' -p87114 -S'getCaret(${1:This}) $2' -p87115 -tp87116 -a(S'getCharHeight/1' -p87117 -S'getCharHeight(${1:This}) $2' -p87118 -tp87119 -a(S'getCharWidth/1' -p87120 -S'getCharWidth(${1:This}) $2' -p87121 -tp87122 -a(S'getChildren/1' -p87123 -S'getChildren(${1:This}) $2' -p87124 -tp87125 -a(S'getClientSize/1' -p87126 -S'getClientSize(${1:This}) $2' -p87127 -tp87128 -a(S'getContainingSizer/1' -p87129 -S'getContainingSizer(${1:This}) $2' -p87130 -tp87131 -a(S'getCursor/1' -p87132 -S'getCursor(${1:This}) $2' -p87133 -tp87134 -a(S'getDropTarget/1' -p87135 -S'getDropTarget(${1:This}) $2' -p87136 -tp87137 -a(S'getEventHandler/1' -p87138 -S'getEventHandler(${1:This}) $2' -p87139 -tp87140 -a(S'getExtraStyle/1' -p87141 -S'getExtraStyle(${1:This}) $2' -p87142 -tp87143 -a(S'getFont/1' -p87144 -S'getFont(${1:This}) $2' -p87145 -tp87146 -a(S'getForegroundColour/1' -p87147 -S'getForegroundColour(${1:This}) $2' -p87148 -tp87149 -a(S'getGrandParent/1' -p87150 -S'getGrandParent(${1:This}) $2' -p87151 -tp87152 -a(S'getHandle/1' -p87153 -S'getHandle(${1:This}) $2' -p87154 -tp87155 -a(S'getHelpText/1' -p87156 -S'getHelpText(${1:This}) $2' -p87157 -tp87158 -a(S'getId/1' -p87159 -S'getId(${1:This}) $2' -p87160 -tp87161 -a(S'getLabel/1' -p87162 -S'getLabel(${1:This}) $2' -p87163 -tp87164 -a(S'getMaxSize/1' -p87165 -S'getMaxSize(${1:This}) $2' -p87166 -tp87167 -a(S'getMinSize/1' -p87168 -S'getMinSize(${1:This}) $2' -p87169 -tp87170 -a(S'getName/1' -p87171 -S'getName(${1:This}) $2' -p87172 -tp87173 -a(S'getParent/1' -p87174 -S'getParent(${1:This}) $2' -p87175 -tp87176 -a(S'getPosition/1' -p87177 -S'getPosition(${1:This}) $2' -p87178 -tp87179 -a(S'getRect/1' -p87180 -S'getRect(${1:This}) $2' -p87181 -tp87182 -a(S'getScreenPosition/1' -p87183 -S'getScreenPosition(${1:This}) $2' -p87184 -tp87185 -a(S'getScreenRect/1' -p87186 -S'getScreenRect(${1:This}) $2' -p87187 -tp87188 -a(S'getScrollPos/2' -p87189 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p87190 -tp87191 -a(S'getScrollRange/2' -p87192 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p87193 -tp87194 -a(S'getScrollThumb/2' -p87195 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p87196 -tp87197 -a(S'getSize/1' -p87198 -S'getSize(${1:This}) $2' -p87199 -tp87200 -a(S'getSizer/1' -p87201 -S'getSizer(${1:This}) $2' -p87202 -tp87203 -a(S'getTextExtent/2' -p87204 -S'getTextExtent(${1:This}, ${2:String}) $3' -p87205 -tp87206 -a(S'getTextExtent/3' -p87207 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p87208 -tp87209 -a(S'getToolTip/1' -p87210 -S'getToolTip(${1:This}) $2' -p87211 -tp87212 -a(S'getUpdateRegion/1' -p87213 -S'getUpdateRegion(${1:This}) $2' -p87214 -tp87215 -a(S'getVirtualSize/1' -p87216 -S'getVirtualSize(${1:This}) $2' -p87217 -tp87218 -a(S'getWindowStyleFlag/1' -p87219 -S'getWindowStyleFlag(${1:This}) $2' -p87220 -tp87221 -a(S'getWindowVariant/1' -p87222 -S'getWindowVariant(${1:This}) $2' -p87223 -tp87224 -a(S'hasCapture/1' -p87225 -S'hasCapture(${1:This}) $2' -p87226 -tp87227 -a(S'hasScrollbar/2' -p87228 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p87229 -tp87230 -a(S'hasTransparentBackground/1' -p87231 -S'hasTransparentBackground(${1:This}) $2' -p87232 -tp87233 -a(S'hide/1' -p87234 -S'hide(${1:This}) $2' -p87235 -tp87236 -a(S'inheritAttributes/1' -p87237 -S'inheritAttributes(${1:This}) $2' -p87238 -tp87239 -a(S'initDialog/1' -p87240 -S'initDialog(${1:This}) $2' -p87241 -tp87242 -a(S'invalidateBestSize/1' -p87243 -S'invalidateBestSize(${1:This}) $2' -p87244 -tp87245 -a(S'isEnabled/1' -p87246 -S'isEnabled(${1:This}) $2' -p87247 -tp87248 -a(S'isExposed/2' -p87249 -S'isExposed(${1:This}, ${2:Pt}) $3' -p87250 -tp87251 -a(S'isExposed/3' -p87252 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p87253 -tp87254 -a(S'isExposed/5' -p87255 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p87256 -tp87257 -a(S'isRetained/1' -p87258 -S'isRetained(${1:This}) $2' -p87259 -tp87260 -a(S'isShown/1' -p87261 -S'isShown(${1:This}) $2' -p87262 -tp87263 -a(S'isTopLevel/1' -p87264 -S'isTopLevel(${1:This}) $2' -p87265 -tp87266 -a(S'layout/1' -p87267 -S'layout(${1:This}) $2' -p87268 -tp87269 -a(S'lineDown/1' -p87270 -S'lineDown(${1:This}) $2' -p87271 -tp87272 -a(S'lineUp/1' -p87273 -S'lineUp(${1:This}) $2' -p87274 -tp87275 -a(S'lower/1' -p87276 -S'lower(${1:This}) $2' -p87277 -tp87278 -a(S'makeModal/1' -p87279 -S'makeModal(${1:This}) $2' -p87280 -tp87281 -a(S'makeModal/2' -p87282 -S'makeModal(${1:This}, ${2:Options}) $3' -p87283 -tp87284 -a(S'move/2' -p87285 -S'move(${1:This}, ${2:Pt}) $3' -p87286 -tp87287 -a(S'move/3' -p87288 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p87289 -tp87290 -a(S'move/4' -p87291 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p87292 -tp87293 -a(S'moveAfterInTabOrder/2' -p87294 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p87295 -tp87296 -a(S'moveBeforeInTabOrder/2' -p87297 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p87298 -tp87299 -a(S'navigate/1' -p87300 -S'navigate(${1:This}) $2' -p87301 -tp87302 -a(S'navigate/2' -p87303 -S'navigate(${1:This}, ${2:Options}) $3' -p87304 -tp87305 -a(S'new/0' -p87306 -S'new() $1' -p87307 -tp87308 -a(S'new/1' -p87309 -S'new(${1:Parent}) $2' -p87310 -tp87311 -a(S'new/2' -p87312 -S'new(${1:Parent}, ${2:Param2}) $3' -p87313 -tp87314 -a(S'new/5' -p87315 -S'new(${1:Parent}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p87316 -tp87317 -a(S'new/6' -p87318 -S'new(${1:Parent}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Param6}) $7' -p87319 -tp87320 -a(S'pageDown/1' -p87321 -S'pageDown(${1:This}) $2' -p87322 -tp87323 -a(S'pageUp/1' -p87324 -S'pageUp(${1:This}) $2' -p87325 -tp87326 -a(S'parent_class/1' -p87327 -S'parent_class(${1:Param1}) $2' -p87328 -tp87329 -a(S'popEventHandler/1' -p87330 -S'popEventHandler(${1:This}) $2' -p87331 -tp87332 -a(S'popEventHandler/2' -p87333 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p87334 -tp87335 -a(S'popupMenu/2' -p87336 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p87337 -tp87338 -a(S'popupMenu/3' -p87339 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p87340 -tp87341 -a(S'popupMenu/4' -p87342 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p87343 -tp87344 -a(S'raise/1' -p87345 -S'raise(${1:This}) $2' -p87346 -tp87347 -a(S'refresh/1' -p87348 -S'refresh(${1:This}) $2' -p87349 -tp87350 -a(S'refresh/2' -p87351 -S'refresh(${1:This}, ${2:Options}) $3' -p87352 -tp87353 -a(S'refreshRect/2' -p87354 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p87355 -tp87356 -a(S'refreshRect/3' -p87357 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p87358 -tp87359 -a(S'releaseMouse/1' -p87360 -S'releaseMouse(${1:This}) $2' -p87361 -tp87362 -a(S'removeChild/2' -p87363 -S'removeChild(${1:This}, ${2:Child}) $3' -p87364 -tp87365 -a(S'reparent/2' -p87366 -S'reparent(${1:This}, ${2:NewParent}) $3' -p87367 -tp87368 -a(S'screenToClient/1' -p87369 -S'screenToClient(${1:This}) $2' -p87370 -tp87371 -a(S'screenToClient/2' -p87372 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p87373 -tp87374 -a(S'scrollLines/2' -p87375 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p87376 -tp87377 -a(S'scrollPages/2' -p87378 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p87379 -tp87380 -a(S'scrollWindow/3' -p87381 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p87382 -tp87383 -a(S'scrollWindow/4' -p87384 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p87385 -tp87386 -a(S'setAcceleratorTable/2' -p87387 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p87388 -tp87389 -a(S'setAutoLayout/2' -p87390 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p87391 -tp87392 -a(S'setBackgroundColour/2' -p87393 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p87394 -tp87395 -a(S'setBackgroundStyle/2' -p87396 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p87397 -tp87398 -a(S'setCaret/2' -p87399 -S'setCaret(${1:This}, ${2:Caret}) $3' -p87400 -tp87401 -a(S'setClientSize/2' -p87402 -S'setClientSize(${1:This}, ${2:Size}) $3' -p87403 -tp87404 -a(S'setClientSize/3' -p87405 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p87406 -tp87407 -a(S'setContainingSizer/2' -p87408 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p87409 -tp87410 -a(S'setCursor/2' -p87411 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p87412 -tp87413 -a(S'setDropTarget/2' -p87414 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p87415 -tp87416 -a(S'setExtraStyle/2' -p87417 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p87418 -tp87419 -a(S'setFocus/1' -p87420 -S'setFocus(${1:This}) $2' -p87421 -tp87422 -a(S'setFocusFromKbd/1' -p87423 -S'setFocusFromKbd(${1:This}) $2' -p87424 -tp87425 -a(S'setFont/2' -p87426 -S'setFont(${1:This}, ${2:Font}) $3' -p87427 -tp87428 -a(S'setForegroundColour/2' -p87429 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p87430 -tp87431 -a(S'setHelpText/2' -p87432 -S'setHelpText(${1:This}, ${2:Text}) $3' -p87433 -tp87434 -a(S'setId/2' -p87435 -S'setId(${1:This}, ${2:Winid}) $3' -p87436 -tp87437 -a(S'setLabel/2' -p87438 -S'setLabel(${1:This}, ${2:Label}) $3' -p87439 -tp87440 -a(S'setMaxSize/2' -p87441 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p87442 -tp87443 -a(S'setMinSize/2' -p87444 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p87445 -tp87446 -a(S'setName/2' -p87447 -S'setName(${1:This}, ${2:Name}) $3' -p87448 -tp87449 -a(S'setOwnBackgroundColour/2' -p87450 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p87451 -tp87452 -a(S'setOwnFont/2' -p87453 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p87454 -tp87455 -a(S'setOwnForegroundColour/2' -p87456 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p87457 -tp87458 -a(S'setPalette/2' -p87459 -S'setPalette(${1:This}, ${2:Pal}) $3' -p87460 -tp87461 -a(S'setScrollPos/3' -p87462 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p87463 -tp87464 -a(S'setScrollPos/4' -p87465 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p87466 -tp87467 -a(S'setScrollbar/5' -p87468 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p87469 -tp87470 -a(S'setScrollbar/6' -p87471 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p87472 -tp87473 -a(S'setSize/2' -p87474 -S'setSize(${1:This}, ${2:Rect}) $3' -p87475 -tp87476 -a(S'setSize/3' -p87477 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p87478 -tp87479 -a(S'setSize/5' -p87480 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p87481 -tp87482 -a(S'setSize/6' -p87483 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p87484 -tp87485 -a(S'setSizeHints/2' -p87486 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p87487 -tp87488 -a(S'setSizeHints/3' -p87489 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p87490 -tp87491 -a(S'setSizeHints/4' -p87492 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p87493 -tp87494 -a(S'setSizer/2' -p87495 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p87496 -tp87497 -a(S'setSizer/3' -p87498 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p87499 -tp87500 -a(S'setSizerAndFit/2' -p87501 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p87502 -tp87503 -a(S'setSizerAndFit/3' -p87504 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p87505 -tp87506 -a(S'setThemeEnabled/2' -p87507 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p87508 -tp87509 -a(S'setToolTip/2' -p87510 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p87511 -tp87512 -a(S'setVirtualSize/2' -p87513 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p87514 -tp87515 -a(S'setVirtualSize/3' -p87516 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p87517 -tp87518 -a(S'setVirtualSizeHints/2' -p87519 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p87520 -tp87521 -a(S'setVirtualSizeHints/3' -p87522 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p87523 -tp87524 -a(S'setVirtualSizeHints/4' -p87525 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p87526 -tp87527 -a(S'setWindowStyle/2' -p87528 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p87529 -tp87530 -a(S'setWindowStyleFlag/2' -p87531 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p87532 -tp87533 -a(S'setWindowVariant/2' -p87534 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p87535 -tp87536 -a(S'shouldInheritColours/1' -p87537 -S'shouldInheritColours(${1:This}) $2' -p87538 -tp87539 -a(S'show/1' -p87540 -S'show(${1:This}) $2' -p87541 -tp87542 -a(S'show/2' -p87543 -S'show(${1:This}, ${2:Options}) $3' -p87544 -tp87545 -a(S'thaw/1' -p87546 -S'thaw(${1:This}) $2' -p87547 -tp87548 -a(S'transferDataFromWindow/1' -p87549 -S'transferDataFromWindow(${1:This}) $2' -p87550 -tp87551 -a(S'transferDataToWindow/1' -p87552 -S'transferDataToWindow(${1:This}) $2' -p87553 -tp87554 -a(S'update/1' -p87555 -S'update(${1:This}) $2' -p87556 -tp87557 -a(S'updateWindowUI/1' -p87558 -S'updateWindowUI(${1:This}) $2' -p87559 -tp87560 -a(S'updateWindowUI/2' -p87561 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p87562 -tp87563 -a(S'validate/1' -p87564 -S'validate(${1:This}) $2' -p87565 -tp87566 -a(S'warpPointer/3' -p87567 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p87568 -tp87569 -asS'beam_asm' -p87570 -(lp87571 -(S'encode/2' -p87572 -S'encode(${1:Tag}, ${2:N}) $3' -p87573 -tp87574 -a(S'module/4' -p87575 -S'module(${1:Code}, ${2:Abst}, ${3:SourceFile}, ${4:Opts}) $5' -p87576 -tp87577 -asS'wxPreviewFrame' -p87578 -(lp87579 -(S'cacheBestSize/2' -p87580 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p87581 -tp87582 -a(S'captureMouse/1' -p87583 -S'captureMouse(${1:This}) $2' -p87584 -tp87585 -a(S'center/1' -p87586 -S'center(${1:This}) $2' -p87587 -tp87588 -a(S'center/2' -p87589 -S'center(${1:This}, ${2:Options}) $3' -p87590 -tp87591 -a(S'centerOnParent/1' -p87592 -S'centerOnParent(${1:This}) $2' -p87593 -tp87594 -a(S'centerOnParent/2' -p87595 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p87596 -tp87597 -a(S'centerOnScreen/1' -p87598 -S'centerOnScreen(${1:This}) $2' -p87599 -tp87600 -a(S'centerOnScreen/2' -p87601 -S'centerOnScreen(${1:This}, ${2:Options}) $3' -p87602 -tp87603 -a(S'centre/1' -p87604 -S'centre(${1:This}) $2' -p87605 -tp87606 -a(S'centre/2' -p87607 -S'centre(${1:This}, ${2:Options}) $3' -p87608 -tp87609 -a(S'centreOnParent/1' -p87610 -S'centreOnParent(${1:This}) $2' -p87611 -tp87612 -a(S'centreOnParent/2' -p87613 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p87614 -tp87615 -a(S'centreOnScreen/1' -p87616 -S'centreOnScreen(${1:This}) $2' -p87617 -tp87618 -a(S'centreOnScreen/2' -p87619 -S'centreOnScreen(${1:This}, ${2:Options}) $3' -p87620 -tp87621 -a(S'clearBackground/1' -p87622 -S'clearBackground(${1:This}) $2' -p87623 -tp87624 -a(S'clientToScreen/2' -p87625 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p87626 -tp87627 -a(S'clientToScreen/3' -p87628 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p87629 -tp87630 -a(S'close/1' -p87631 -S'close(${1:This}) $2' -p87632 -tp87633 -a(S'close/2' -p87634 -S'close(${1:This}, ${2:Options}) $3' -p87635 -tp87636 -a(S'connect/2' -p87637 -S'connect(${1:This}, ${2:EventType}) $3' -p87638 -tp87639 -a(S'connect/3' -p87640 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p87641 -tp87642 -a(S'convertDialogToPixels/2' -p87643 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p87644 -tp87645 -a(S'convertPixelsToDialog/2' -p87646 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p87647 -tp87648 -a(S'createCanvas/1' -p87649 -S'createCanvas(${1:This}) $2' -p87650 -tp87651 -a(S'createControlBar/1' -p87652 -S'createControlBar(${1:This}) $2' -p87653 -tp87654 -a(S'createStatusBar/1' -p87655 -S'createStatusBar(${1:This}) $2' -p87656 -tp87657 -a(S'createStatusBar/2' -p87658 -S'createStatusBar(${1:This}, ${2:Options}) $3' -p87659 -tp87660 -a(S'createToolBar/1' -p87661 -S'createToolBar(${1:This}) $2' -p87662 -tp87663 -a(S'createToolBar/2' -p87664 -S'createToolBar(${1:This}, ${2:Options}) $3' -p87665 -tp87666 -a(S'destroy/1' -p87667 -S'destroy(${1:This}) $2' -p87668 -tp87669 -a(S'destroyChildren/1' -p87670 -S'destroyChildren(${1:This}) $2' -p87671 -tp87672 -a(S'disable/1' -p87673 -S'disable(${1:This}) $2' -p87674 -tp87675 -a(S'disconnect/1' -p87676 -S'disconnect(${1:This}) $2' -p87677 -tp87678 -a(S'disconnect/2' -p87679 -S'disconnect(${1:This}, ${2:EventType}) $3' -p87680 -tp87681 -a(S'disconnect/3' -p87682 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p87683 -tp87684 -a(S'enable/1' -p87685 -S'enable(${1:This}) $2' -p87686 -tp87687 -a(S'enable/2' -p87688 -S'enable(${1:This}, ${2:Options}) $3' -p87689 -tp87690 -a(S'findWindow/2' -p87691 -S'findWindow(${1:This}, ${2:Winid}) $3' -p87692 -tp87693 -a(S'fit/1' -p87694 -S'fit(${1:This}) $2' -p87695 -tp87696 -a(S'fitInside/1' -p87697 -S'fitInside(${1:This}) $2' -p87698 -tp87699 -a(S'freeze/1' -p87700 -S'freeze(${1:This}) $2' -p87701 -tp87702 -a(S'getAcceleratorTable/1' -p87703 -S'getAcceleratorTable(${1:This}) $2' -p87704 -tp87705 -a(S'getBackgroundColour/1' -p87706 -S'getBackgroundColour(${1:This}) $2' -p87707 -tp87708 -a(S'getBackgroundStyle/1' -p87709 -S'getBackgroundStyle(${1:This}) $2' -p87710 -tp87711 -a(S'getBestSize/1' -p87712 -S'getBestSize(${1:This}) $2' -p87713 -tp87714 -a(S'getCaret/1' -p87715 -S'getCaret(${1:This}) $2' -p87716 -tp87717 -a(S'getCharHeight/1' -p87718 -S'getCharHeight(${1:This}) $2' -p87719 -tp87720 -a(S'getCharWidth/1' -p87721 -S'getCharWidth(${1:This}) $2' -p87722 -tp87723 -a(S'getChildren/1' -p87724 -S'getChildren(${1:This}) $2' -p87725 -tp87726 -a(S'getClientAreaOrigin/1' -p87727 -S'getClientAreaOrigin(${1:This}) $2' -p87728 -tp87729 -a(S'getClientSize/1' -p87730 -S'getClientSize(${1:This}) $2' -p87731 -tp87732 -a(S'getContainingSizer/1' -p87733 -S'getContainingSizer(${1:This}) $2' -p87734 -tp87735 -a(S'getCursor/1' -p87736 -S'getCursor(${1:This}) $2' -p87737 -tp87738 -a(S'getDropTarget/1' -p87739 -S'getDropTarget(${1:This}) $2' -p87740 -tp87741 -a(S'getEventHandler/1' -p87742 -S'getEventHandler(${1:This}) $2' -p87743 -tp87744 -a(S'getExtraStyle/1' -p87745 -S'getExtraStyle(${1:This}) $2' -p87746 -tp87747 -a(S'getFont/1' -p87748 -S'getFont(${1:This}) $2' -p87749 -tp87750 -a(S'getForegroundColour/1' -p87751 -S'getForegroundColour(${1:This}) $2' -p87752 -tp87753 -a(S'getGrandParent/1' -p87754 -S'getGrandParent(${1:This}) $2' -p87755 -tp87756 -a(S'getHandle/1' -p87757 -S'getHandle(${1:This}) $2' -p87758 -tp87759 -a(S'getHelpText/1' -p87760 -S'getHelpText(${1:This}) $2' -p87761 -tp87762 -a(S'getIcon/1' -p87763 -S'getIcon(${1:This}) $2' -p87764 -tp87765 -a(S'getIcons/1' -p87766 -S'getIcons(${1:This}) $2' -p87767 -tp87768 -a(S'getId/1' -p87769 -S'getId(${1:This}) $2' -p87770 -tp87771 -a(S'getLabel/1' -p87772 -S'getLabel(${1:This}) $2' -p87773 -tp87774 -a(S'getMaxSize/1' -p87775 -S'getMaxSize(${1:This}) $2' -p87776 -tp87777 -a(S'getMenuBar/1' -p87778 -S'getMenuBar(${1:This}) $2' -p87779 -tp87780 -a(S'getMinSize/1' -p87781 -S'getMinSize(${1:This}) $2' -p87782 -tp87783 -a(S'getName/1' -p87784 -S'getName(${1:This}) $2' -p87785 -tp87786 -a(S'getParent/1' -p87787 -S'getParent(${1:This}) $2' -p87788 -tp87789 -a(S'getPosition/1' -p87790 -S'getPosition(${1:This}) $2' -p87791 -tp87792 -a(S'getRect/1' -p87793 -S'getRect(${1:This}) $2' -p87794 -tp87795 -a(S'getScreenPosition/1' -p87796 -S'getScreenPosition(${1:This}) $2' -p87797 -tp87798 -a(S'getScreenRect/1' -p87799 -S'getScreenRect(${1:This}) $2' -p87800 -tp87801 -a(S'getScrollPos/2' -p87802 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p87803 -tp87804 -a(S'getScrollRange/2' -p87805 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p87806 -tp87807 -a(S'getScrollThumb/2' -p87808 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p87809 -tp87810 -a(S'getSize/1' -p87811 -S'getSize(${1:This}) $2' -p87812 -tp87813 -a(S'getSizer/1' -p87814 -S'getSizer(${1:This}) $2' -p87815 -tp87816 -a(S'getStatusBar/1' -p87817 -S'getStatusBar(${1:This}) $2' -p87818 -tp87819 -a(S'getStatusBarPane/1' -p87820 -S'getStatusBarPane(${1:This}) $2' -p87821 -tp87822 -a(S'getTextExtent/2' -p87823 -S'getTextExtent(${1:This}, ${2:String}) $3' -p87824 -tp87825 -a(S'getTextExtent/3' -p87826 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p87827 -tp87828 -a(S'getTitle/1' -p87829 -S'getTitle(${1:This}) $2' -p87830 -tp87831 -a(S'getToolBar/1' -p87832 -S'getToolBar(${1:This}) $2' -p87833 -tp87834 -a(S'getToolTip/1' -p87835 -S'getToolTip(${1:This}) $2' -p87836 -tp87837 -a(S'getUpdateRegion/1' -p87838 -S'getUpdateRegion(${1:This}) $2' -p87839 -tp87840 -a(S'getVirtualSize/1' -p87841 -S'getVirtualSize(${1:This}) $2' -p87842 -tp87843 -a(S'getWindowStyleFlag/1' -p87844 -S'getWindowStyleFlag(${1:This}) $2' -p87845 -tp87846 -a(S'getWindowVariant/1' -p87847 -S'getWindowVariant(${1:This}) $2' -p87848 -tp87849 -a(S'hasCapture/1' -p87850 -S'hasCapture(${1:This}) $2' -p87851 -tp87852 -a(S'hasScrollbar/2' -p87853 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p87854 -tp87855 -a(S'hasTransparentBackground/1' -p87856 -S'hasTransparentBackground(${1:This}) $2' -p87857 -tp87858 -a(S'hide/1' -p87859 -S'hide(${1:This}) $2' -p87860 -tp87861 -a(S'iconize/1' -p87862 -S'iconize(${1:This}) $2' -p87863 -tp87864 -a(S'iconize/2' -p87865 -S'iconize(${1:This}, ${2:Options}) $3' -p87866 -tp87867 -a(S'inheritAttributes/1' -p87868 -S'inheritAttributes(${1:This}) $2' -p87869 -tp87870 -a(S'initDialog/1' -p87871 -S'initDialog(${1:This}) $2' -p87872 -tp87873 -a(S'initialize/1' -p87874 -S'initialize(${1:This}) $2' -p87875 -tp87876 -a(S'invalidateBestSize/1' -p87877 -S'invalidateBestSize(${1:This}) $2' -p87878 -tp87879 -a(S'isActive/1' -p87880 -S'isActive(${1:This}) $2' -p87881 -tp87882 -a(S'isEnabled/1' -p87883 -S'isEnabled(${1:This}) $2' -p87884 -tp87885 -a(S'isExposed/2' -p87886 -S'isExposed(${1:This}, ${2:Pt}) $3' -p87887 -tp87888 -a(S'isExposed/3' -p87889 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p87890 -tp87891 -a(S'isExposed/5' -p87892 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p87893 -tp87894 -a(S'isFullScreen/1' -p87895 -S'isFullScreen(${1:This}) $2' -p87896 -tp87897 -a(S'isIconized/1' -p87898 -S'isIconized(${1:This}) $2' -p87899 -tp87900 -a(S'isMaximized/1' -p87901 -S'isMaximized(${1:This}) $2' -p87902 -tp87903 -a(S'isRetained/1' -p87904 -S'isRetained(${1:This}) $2' -p87905 -tp87906 -a(S'isShown/1' -p87907 -S'isShown(${1:This}) $2' -p87908 -tp87909 -a(S'isTopLevel/1' -p87910 -S'isTopLevel(${1:This}) $2' -p87911 -tp87912 -a(S'layout/1' -p87913 -S'layout(${1:This}) $2' -p87914 -tp87915 -a(S'lineDown/1' -p87916 -S'lineDown(${1:This}) $2' -p87917 -tp87918 -a(S'lineUp/1' -p87919 -S'lineUp(${1:This}) $2' -p87920 -tp87921 -a(S'lower/1' -p87922 -S'lower(${1:This}) $2' -p87923 -tp87924 -a(S'makeModal/1' -p87925 -S'makeModal(${1:This}) $2' -p87926 -tp87927 -a(S'makeModal/2' -p87928 -S'makeModal(${1:This}, ${2:Options}) $3' -p87929 -tp87930 -a(S'maximize/1' -p87931 -S'maximize(${1:This}) $2' -p87932 -tp87933 -a(S'maximize/2' -p87934 -S'maximize(${1:This}, ${2:Options}) $3' -p87935 -tp87936 -a(S'move/2' -p87937 -S'move(${1:This}, ${2:Pt}) $3' -p87938 -tp87939 -a(S'move/3' -p87940 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p87941 -tp87942 -a(S'move/4' -p87943 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p87944 -tp87945 -a(S'moveAfterInTabOrder/2' -p87946 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p87947 -tp87948 -a(S'moveBeforeInTabOrder/2' -p87949 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p87950 -tp87951 -a(S'navigate/1' -p87952 -S'navigate(${1:This}) $2' -p87953 -tp87954 -a(S'navigate/2' -p87955 -S'navigate(${1:This}, ${2:Options}) $3' -p87956 -tp87957 -a(S'new/2' -p87958 -S'new(${1:Preview}, ${2:Parent}) $3' -p87959 -tp87960 -a(S'new/3' -p87961 -S'new(${1:Preview}, ${2:Parent}, ${3:Param3}) $4' -p87962 -tp87963 -a(S'onCloseWindow/2' -p87964 -S'onCloseWindow(${1:This}, ${2:Event}) $3' -p87965 -tp87966 -a(S'pageDown/1' -p87967 -S'pageDown(${1:This}) $2' -p87968 -tp87969 -a(S'pageUp/1' -p87970 -S'pageUp(${1:This}) $2' -p87971 -tp87972 -a(S'parent_class/1' -p87973 -S'parent_class(${1:Param1}) $2' -p87974 -tp87975 -a(S'popEventHandler/1' -p87976 -S'popEventHandler(${1:This}) $2' -p87977 -tp87978 -a(S'popEventHandler/2' -p87979 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p87980 -tp87981 -a(S'popupMenu/2' -p87982 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p87983 -tp87984 -a(S'popupMenu/3' -p87985 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p87986 -tp87987 -a(S'popupMenu/4' -p87988 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p87989 -tp87990 -a(S'processCommand/2' -p87991 -S'processCommand(${1:This}, ${2:Winid}) $3' -p87992 -tp87993 -a(S'raise/1' -p87994 -S'raise(${1:This}) $2' -p87995 -tp87996 -a(S'refresh/1' -p87997 -S'refresh(${1:This}) $2' -p87998 -tp87999 -a(S'refresh/2' -p88000 -S'refresh(${1:This}, ${2:Options}) $3' -p88001 -tp88002 -a(S'refreshRect/2' -p88003 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p88004 -tp88005 -a(S'refreshRect/3' -p88006 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p88007 -tp88008 -a(S'releaseMouse/1' -p88009 -S'releaseMouse(${1:This}) $2' -p88010 -tp88011 -a(S'removeChild/2' -p88012 -S'removeChild(${1:This}, ${2:Child}) $3' -p88013 -tp88014 -a(S'reparent/2' -p88015 -S'reparent(${1:This}, ${2:NewParent}) $3' -p88016 -tp88017 -a(S'requestUserAttention/1' -p88018 -S'requestUserAttention(${1:This}) $2' -p88019 -tp88020 -a(S'requestUserAttention/2' -p88021 -S'requestUserAttention(${1:This}, ${2:Options}) $3' -p88022 -tp88023 -a(S'screenToClient/1' -p88024 -S'screenToClient(${1:This}) $2' -p88025 -tp88026 -a(S'screenToClient/2' -p88027 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p88028 -tp88029 -a(S'scrollLines/2' -p88030 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p88031 -tp88032 -a(S'scrollPages/2' -p88033 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p88034 -tp88035 -a(S'scrollWindow/3' -p88036 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p88037 -tp88038 -a(S'scrollWindow/4' -p88039 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p88040 -tp88041 -a(S'sendSizeEvent/1' -p88042 -S'sendSizeEvent(${1:This}) $2' -p88043 -tp88044 -a(S'setAcceleratorTable/2' -p88045 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p88046 -tp88047 -a(S'setAutoLayout/2' -p88048 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p88049 -tp88050 -a(S'setBackgroundColour/2' -p88051 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p88052 -tp88053 -a(S'setBackgroundStyle/2' -p88054 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p88055 -tp88056 -a(S'setCaret/2' -p88057 -S'setCaret(${1:This}, ${2:Caret}) $3' -p88058 -tp88059 -a(S'setClientSize/2' -p88060 -S'setClientSize(${1:This}, ${2:Size}) $3' -p88061 -tp88062 -a(S'setClientSize/3' -p88063 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p88064 -tp88065 -a(S'setContainingSizer/2' -p88066 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p88067 -tp88068 -a(S'setCursor/2' -p88069 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p88070 -tp88071 -a(S'setDropTarget/2' -p88072 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p88073 -tp88074 -a(S'setExtraStyle/2' -p88075 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p88076 -tp88077 -a(S'setFocus/1' -p88078 -S'setFocus(${1:This}) $2' -p88079 -tp88080 -a(S'setFocusFromKbd/1' -p88081 -S'setFocusFromKbd(${1:This}) $2' -p88082 -tp88083 -a(S'setFont/2' -p88084 -S'setFont(${1:This}, ${2:Font}) $3' -p88085 -tp88086 -a(S'setForegroundColour/2' -p88087 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p88088 -tp88089 -a(S'setHelpText/2' -p88090 -S'setHelpText(${1:This}, ${2:Text}) $3' -p88091 -tp88092 -a(S'setIcon/2' -p88093 -S'setIcon(${1:This}, ${2:Icon}) $3' -p88094 -tp88095 -a(S'setIcons/2' -p88096 -S'setIcons(${1:This}, ${2:Icons}) $3' -p88097 -tp88098 -a(S'setId/2' -p88099 -S'setId(${1:This}, ${2:Winid}) $3' -p88100 -tp88101 -a(S'setLabel/2' -p88102 -S'setLabel(${1:This}, ${2:Label}) $3' -p88103 -tp88104 -a(S'setMaxSize/2' -p88105 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p88106 -tp88107 -a(S'setMenuBar/2' -p88108 -S'setMenuBar(${1:This}, ${2:Menubar}) $3' -p88109 -tp88110 -a(S'setMinSize/2' -p88111 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p88112 -tp88113 -a(S'setName/2' -p88114 -S'setName(${1:This}, ${2:Name}) $3' -p88115 -tp88116 -a(S'setOwnBackgroundColour/2' -p88117 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p88118 -tp88119 -a(S'setOwnFont/2' -p88120 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p88121 -tp88122 -a(S'setOwnForegroundColour/2' -p88123 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p88124 -tp88125 -a(S'setPalette/2' -p88126 -S'setPalette(${1:This}, ${2:Pal}) $3' -p88127 -tp88128 -a(S'setScrollPos/3' -p88129 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p88130 -tp88131 -a(S'setScrollPos/4' -p88132 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p88133 -tp88134 -a(S'setScrollbar/5' -p88135 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p88136 -tp88137 -a(S'setScrollbar/6' -p88138 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p88139 -tp88140 -a(S'setShape/2' -p88141 -S'setShape(${1:This}, ${2:Region}) $3' -p88142 -tp88143 -a(S'setSize/2' -p88144 -S'setSize(${1:This}, ${2:Rect}) $3' -p88145 -tp88146 -a(S'setSize/3' -p88147 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p88148 -tp88149 -a(S'setSize/5' -p88150 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p88151 -tp88152 -a(S'setSize/6' -p88153 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p88154 -tp88155 -a(S'setSizeHints/2' -p88156 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p88157 -tp88158 -a(S'setSizeHints/3' -p88159 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p88160 -tp88161 -a(S'setSizeHints/4' -p88162 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p88163 -tp88164 -a(S'setSizer/2' -p88165 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p88166 -tp88167 -a(S'setSizer/3' -p88168 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p88169 -tp88170 -a(S'setSizerAndFit/2' -p88171 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p88172 -tp88173 -a(S'setSizerAndFit/3' -p88174 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p88175 -tp88176 -a(S'setStatusBar/2' -p88177 -S'setStatusBar(${1:This}, ${2:Statbar}) $3' -p88178 -tp88179 -a(S'setStatusBarPane/2' -p88180 -S'setStatusBarPane(${1:This}, ${2:N}) $3' -p88181 -tp88182 -a(S'setStatusText/2' -p88183 -S'setStatusText(${1:This}, ${2:Text}) $3' -p88184 -tp88185 -a(S'setStatusText/3' -p88186 -S'setStatusText(${1:This}, ${2:Text}, ${3:Options}) $4' -p88187 -tp88188 -a(S'setStatusWidths/2' -p88189 -S'setStatusWidths(${1:This}, ${2:Widths_field}) $3' -p88190 -tp88191 -a(S'setThemeEnabled/2' -p88192 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p88193 -tp88194 -a(S'setTitle/2' -p88195 -S'setTitle(${1:This}, ${2:Title}) $3' -p88196 -tp88197 -a(S'setToolBar/2' -p88198 -S'setToolBar(${1:This}, ${2:Toolbar}) $3' -p88199 -tp88200 -a(S'setToolTip/2' -p88201 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p88202 -tp88203 -a(S'setVirtualSize/2' -p88204 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p88205 -tp88206 -a(S'setVirtualSize/3' -p88207 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p88208 -tp88209 -a(S'setVirtualSizeHints/2' -p88210 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p88211 -tp88212 -a(S'setVirtualSizeHints/3' -p88213 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p88214 -tp88215 -a(S'setVirtualSizeHints/4' -p88216 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p88217 -tp88218 -a(S'setWindowStyle/2' -p88219 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p88220 -tp88221 -a(S'setWindowStyleFlag/2' -p88222 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p88223 -tp88224 -a(S'setWindowVariant/2' -p88225 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p88226 -tp88227 -a(S'shouldInheritColours/1' -p88228 -S'shouldInheritColours(${1:This}) $2' -p88229 -tp88230 -a(S'show/1' -p88231 -S'show(${1:This}) $2' -p88232 -tp88233 -a(S'show/2' -p88234 -S'show(${1:This}, ${2:Options}) $3' -p88235 -tp88236 -a(S'showFullScreen/2' -p88237 -S'showFullScreen(${1:This}, ${2:Show}) $3' -p88238 -tp88239 -a(S'showFullScreen/3' -p88240 -S'showFullScreen(${1:This}, ${2:Show}, ${3:Options}) $4' -p88241 -tp88242 -a(S'thaw/1' -p88243 -S'thaw(${1:This}) $2' -p88244 -tp88245 -a(S'transferDataFromWindow/1' -p88246 -S'transferDataFromWindow(${1:This}) $2' -p88247 -tp88248 -a(S'transferDataToWindow/1' -p88249 -S'transferDataToWindow(${1:This}) $2' -p88250 -tp88251 -a(S'update/1' -p88252 -S'update(${1:This}) $2' -p88253 -tp88254 -a(S'updateWindowUI/1' -p88255 -S'updateWindowUI(${1:This}) $2' -p88256 -tp88257 -a(S'updateWindowUI/2' -p88258 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p88259 -tp88260 -a(S'validate/1' -p88261 -S'validate(${1:This}) $2' -p88262 -tp88263 -a(S'warpPointer/3' -p88264 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p88265 -tp88266 -asS'entry_demo' -p88267 -(lp88268 -(S'init/1' -p88269 -S'init(${1:Pid}) $2' -p88270 -tp88271 -a(S'start/0' -p88272 -S'start() $1' -p88273 -tp88274 -asS'ftp_progress' -p88275 -(lp88276 -(S'init/1' -p88277 -S'init(${1:Options}) $2' -p88278 -tp88279 -a(S'report/2' -p88280 -S'report(${1:Pid}, ${2:Report}) $3' -p88281 -tp88282 -a(S'start_link/1' -p88283 -S'start_link(${1:Options}) $2' -p88284 -tp88285 -a(S'stop/1' -p88286 -S'stop(${1:Pid}) $2' -p88287 -tp88288 -asS'appmon' -p88289 -(lp88290 -(S'code_change/3' -p88291 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p88292 -tp88293 -a(S'handle_call/3' -p88294 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p88295 -tp88296 -a(S'handle_cast/2' -p88297 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p88298 -tp88299 -a(S'handle_info/2' -p88300 -S'handle_info(${1:Param1}, ${2:State}) $3' -p88301 -tp88302 -a(S'init/1' -p88303 -S'init(${1:Param1}) $2' -p88304 -tp88305 -a(S'start/0' -p88306 -S'start() $1' -p88307 -tp88308 -a(S'stop/0' -p88309 -S'stop() $1' -p88310 -tp88311 -a(S'terminate/2' -p88312 -S'terminate(${1:Param1}, ${2:State}) $3' -p88313 -tp88314 -asS'CosTransactions_otid_t' -p88315 -(lp88316 -(S'id/0' -p88317 -S'id() $1' -p88318 -tp88319 -a(S'name/0' -p88320 -S'name() $1' -p88321 -tp88322 -a(S'tc/0' -p88323 -S'tc() $1' -p88324 -tp88325 -asS'inviso_lfm' -p88326 -(lp88327 -(S'format_argument_string/2' -p88328 -S'format_argument_string(${1:Param1}, ${2:Param2}) $3' -p88329 -tp88330 -a(S'format_arguments/3' -p88331 -S'format_arguments(${1:Param1}, ${2:FOpts}, ${3:Translators}) $4' -p88332 -tp88333 -a(S'init_receiver/7' -p88334 -S'init_receiver(${1:From}, ${2:Files}, ${3:BeginHandlerFun}, ${4:WorkHandlerFun}, ${5:EndHandlerFun}, ${6:HandlerData}, ${7:Dbg}) $8' -p88335 -tp88336 -a(S'merge/2' -p88337 -S'merge(${1:Files}, ${2:OutputFile}) $3' -p88338 -tp88339 -a(S'merge/3' -p88340 -S'merge(${1:Files}, ${2:WorkHandlerFun}, ${3:HandlerData}) $4' -p88341 -tp88342 -a(S'merge/4' -p88343 -S'merge(${1:Files}, ${2:WorkHandlerFun}, ${3:HandlerData}, ${4:Dbg}) $5' -p88344 -tp88345 -a(S'merge/5' -p88346 -S'merge(${1:Files}, ${2:BeginHandlerFun}, ${3:WorkHandlerFun}, ${4:EndHandlerFun}, ${5:HandlerData}) $6' -p88347 -tp88348 -a(S'merge/6' -p88349 -S'merge(${1:Files}, ${2:BeginHandlerFun}, ${3:WorkHandlerFun}, ${4:EndHandlerFun}, ${5:HandlerData}, ${6:Dbg}) $7' -p88350 -tp88351 -a(S'outfile_closer/1' -p88352 -S'outfile_closer(${1:FD}) $2' -p88353 -tp88354 -a(S'outfile_opener/1' -p88355 -S'outfile_opener(${1:FileName}) $2' -p88356 -tp88357 -a(S'outfile_writer/4' -p88358 -S'outfile_writer(${1:Node}, ${2:Term}, ${3:PidMappings}, ${4:FD}) $5' -p88359 -tp88360 -asS'CosEventChannelAdmin_ProxyPushConsumer' -p88361 -(lp88362 -(S'code_change/3' -p88363 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p88364 -tp88365 -a(S'connect_push_supplier/2' -p88366 -S'connect_push_supplier(${1:OE_THIS}, ${2:Push_supplier}) $3' -p88367 -tp88368 -a(S'connect_push_supplier/3' -p88369 -S'connect_push_supplier(${1:OE_THIS}, ${2:OE_Options}, ${3:Push_supplier}) $4' -p88370 -tp88371 -a(S'disconnect_push_consumer/1' -p88372 -S'disconnect_push_consumer(${1:OE_THIS}) $2' -p88373 -tp88374 -a(S'disconnect_push_consumer/2' -p88375 -S'disconnect_push_consumer(${1:OE_THIS}, ${2:OE_Options}) $3' -p88376 -tp88377 -a(S'handle_call/3' -p88378 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p88379 -tp88380 -a(S'handle_cast/2' -p88381 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p88382 -tp88383 -a(S'handle_info/2' -p88384 -S'handle_info(${1:Info}, ${2:State}) $3' -p88385 -tp88386 -a(S'init/1' -p88387 -S'init(${1:Env}) $2' -p88388 -tp88389 -a(S'oe_create/0' -p88390 -S'oe_create() $1' -p88391 -tp88392 -a(S'oe_create/1' -p88393 -S'oe_create(${1:Env}) $2' -p88394 -tp88395 -a(S'oe_create/2' -p88396 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p88397 -tp88398 -a(S'oe_create_link/0' -p88399 -S'oe_create_link() $1' -p88400 -tp88401 -a(S'oe_create_link/1' -p88402 -S'oe_create_link(${1:Env}) $2' -p88403 -tp88404 -a(S'oe_create_link/2' -p88405 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p88406 -tp88407 -a(S'oe_get_interface/0' -p88408 -S'oe_get_interface() $1' -p88409 -tp88410 -a(S'oe_is_a/1' -p88411 -S'oe_is_a(${1:Param1}) $2' -p88412 -tp88413 -a(S'oe_tc/1' -p88414 -S'oe_tc(${1:Param1}) $2' -p88415 -tp88416 -a(S'push/2' -p88417 -S'push(${1:OE_THIS}, ${2:Data}) $3' -p88418 -tp88419 -a(S'push/3' -p88420 -S'push(${1:OE_THIS}, ${2:OE_Options}, ${3:Data}) $4' -p88421 -tp88422 -a(S'terminate/2' -p88423 -S'terminate(${1:Reason}, ${2:State}) $3' -p88424 -tp88425 -a(S'typeID/0' -p88426 -S'typeID() $1' -p88427 -tp88428 -asS'diameter_etcp' -p88429 -(lp88430 -(S'accept/1' -p88431 -S'accept(${1:LPid}) $2' -p88432 -tp88433 -a(S'close/1' -p88434 -S'close(${1:Pid}) $2' -p88435 -tp88436 -a(S'code_change/3' -p88437 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p88438 -tp88439 -a(S'connect/3' -p88440 -S'connect(${1:RAddr}, ${2:RPort}, ${3:Param3}) $4' -p88441 -tp88442 -a(S'handle_call/3' -p88443 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p88444 -tp88445 -a(S'handle_cast/2' -p88446 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p88447 -tp88448 -a(S'handle_info/2' -p88449 -S'handle_info(${1:T}, ${2:S}) $3' -p88450 -tp88451 -a(S'init/1' -p88452 -S'init(${1:Param1}) $2' -p88453 -tp88454 -a(S'listen/2' -p88455 -S'listen(${1:LPort}, ${2:Opts}) $3' -p88456 -tp88457 -a(S'port/1' -p88458 -S'port(${1:Param1}) $2' -p88459 -tp88460 -a(S'send/2' -p88461 -S'send(${1:Pid}, ${2:Bin}) $3' -p88462 -tp88463 -a(S'setopts/2' -p88464 -S'setopts(${1:Param1}, ${2:Param2}) $3' -p88465 -tp88466 -a(S'start/3' -p88467 -S'start() $1' -p88468 -tp88469 -a(S'start_link/1' -p88470 -S'start_link(${1:T}) $2' -p88471 -tp88472 -a(S'terminate/2' -p88473 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p88474 -tp88475 -asS'qlc' -p88476 -(lp88477 -(S'all_selections/1' -p88478 -S'all_selections(${1:Param1}) $2' -p88479 -tp88480 -a(S'append/1' -p88481 -S'append(${1:QHL}) $2' -p88482 -tp88483 -a(S'append/2' -p88484 -S'append(${1:QH1}, ${2:QH2}) $3' -p88485 -tp88486 -a(S'aux_name/3' -p88487 -S'aux_name(${1:Name}, ${2:N}, ${3:AllNames}) $4' -p88488 -tp88489 -a(S'cursor/1' -p88490 -S'cursor(${1:QH}) $2' -p88491 -tp88492 -a(S'cursor/2' -p88493 -S'cursor(${1:QH}, ${2:Options}) $3' -p88494 -tp88495 -a(S'delete_cursor/1' -p88496 -S'delete_cursor(${1:QueryCursor}) $2' -p88497 -tp88498 -a(S'e/1' -p88499 -S'e(${1:L}) $2' -p88500 -tp88501 -a(S'e/2' -p88502 -S'e(${1:QH}, ${2:Options}) $3' -p88503 -tp88504 -a(S'eval/1' -p88505 -S'eval(${1:QH}) $2' -p88506 -tp88507 -a(S'eval/2' -p88508 -S'eval(${1:QH}, ${2:Options}) $3' -p88509 -tp88510 -a(S'fold/3' -p88511 -S'fold(${1:Function}, ${2:Acc0}, ${3:QH}) $4' -p88512 -tp88513 -a(S'fold/4' -p88514 -S'fold(${1:Function}, ${2:Acc0}, ${3:QH}, ${4:Options}) $5' -p88515 -tp88516 -a(S'format_error/1' -p88517 -S'format_error(${1:Error}) $2' -p88518 -tp88519 -a(S'info/1' -p88520 -S'info(${1:QH}) $2' -p88521 -tp88522 -a(S'info/2' -p88523 -S'info(${1:QH}, ${2:Options}) $3' -p88524 -tp88525 -a(S'keysort/2' -p88526 -S'keysort(${1:KeyPos}, ${2:QH1}) $3' -p88527 -tp88528 -a(S'keysort/3' -p88529 -S'keysort(${1:KeyPos}, ${2:QH1}, ${3:SortOptions}) $4' -p88530 -tp88531 -a(S'name_suffix/2' -p88532 -S'name_suffix(${1:A}, ${2:Suff}) $3' -p88533 -tp88534 -a(S'next_answers/1' -p88535 -S'next_answers(${1:QueryCursor}) $2' -p88536 -tp88537 -a(S'next_answers/2' -p88538 -S'next_answers(${1:QueryCursor}, ${2:NumberOfAnswers}) $3' -p88539 -tp88540 -a(S'parse_transform/2' -p88541 -S'parse_transform(${1:Forms}, ${2:Options}) $3' -p88542 -tp88543 -a(S'q/1' -p88544 -S'q(${1:QLC}) $2' -p88545 -tp88546 -a(S'q/2' -p88547 -S'q(${1:QLC}, ${2:Options}) $3' -p88548 -tp88549 -a(S'sort/1' -p88550 -S'sort(${1:QH1}) $2' -p88551 -tp88552 -a(S'sort/2' -p88553 -S'sort(${1:KeyPos}, ${2:QH1}) $3' -p88554 -tp88555 -a(S'string_to_handle/1' -p88556 -S'string_to_handle(${1:QueryString}) $2' -p88557 -tp88558 -a(S'string_to_handle/2' -p88559 -S'string_to_handle(${1:QueryString}, ${2:Options}) $3' -p88560 -tp88561 -a(S'string_to_handle/3' -p88562 -S'string_to_handle(${1:QueryString}, ${2:Options}, ${3:Bindings}) $4' -p88563 -tp88564 -a(S'table/2' -p88565 -S'table(${1:TraverseFun}, ${2:Options}) $3' -p88566 -tp88567 -a(S'template_state/0' -p88568 -S'template_state() $1' -p88569 -tp88570 -a(S'transform_from_evaluator/2' -p88571 -S'transform_from_evaluator(${1:LC}, ${2:Bs}) $3' -p88572 -tp88573 -a(S'var_fold/3' -p88574 -S'var_fold(${1:F}, ${2:A}, ${3:T}) $4' -p88575 -tp88576 -a(S'var_ufold/2' -p88577 -S'var_ufold(${1:F}, ${2:E}) $3' -p88578 -tp88579 -a(S'vars/1' -p88580 -S'vars(${1:E}) $2' -p88581 -tp88582 -asS'wxScreenDC' -p88583 -(lp88584 -(S'blit/5' -p88585 -S'blit(${1:This}, ${2:DestPt}, ${3:Sz}, ${4:Source}, ${5:SrcPt}) $6' -p88586 -tp88587 -a(S'blit/6' -p88588 -S'blit(${1:This}, ${2:DestPt}, ${3:Sz}, ${4:Source}, ${5:SrcPt}, ${6:Options}) $7' -p88589 -tp88590 -a(S'calcBoundingBox/3' -p88591 -S'calcBoundingBox(${1:This}, ${2:X}, ${3:Y}) $4' -p88592 -tp88593 -a(S'clear/1' -p88594 -S'clear(${1:This}) $2' -p88595 -tp88596 -a(S'computeScaleAndOrigin/1' -p88597 -S'computeScaleAndOrigin(${1:This}) $2' -p88598 -tp88599 -a(S'crossHair/2' -p88600 -S'crossHair(${1:This}, ${2:Pt}) $3' -p88601 -tp88602 -a(S'destroy/1' -p88603 -S'destroy(${1:This}) $2' -p88604 -tp88605 -a(S'destroyClippingRegion/1' -p88606 -S'destroyClippingRegion(${1:This}) $2' -p88607 -tp88608 -a(S'deviceToLogicalX/2' -p88609 -S'deviceToLogicalX(${1:This}, ${2:X}) $3' -p88610 -tp88611 -a(S'deviceToLogicalXRel/2' -p88612 -S'deviceToLogicalXRel(${1:This}, ${2:X}) $3' -p88613 -tp88614 -a(S'deviceToLogicalY/2' -p88615 -S'deviceToLogicalY(${1:This}, ${2:Y}) $3' -p88616 -tp88617 -a(S'deviceToLogicalYRel/2' -p88618 -S'deviceToLogicalYRel(${1:This}, ${2:Y}) $3' -p88619 -tp88620 -a(S'drawArc/4' -p88621 -S'drawArc(${1:This}, ${2:Pt1}, ${3:Pt2}, ${4:Centre}) $5' -p88622 -tp88623 -a(S'drawBitmap/3' -p88624 -S'drawBitmap(${1:This}, ${2:Bmp}, ${3:Pt}) $4' -p88625 -tp88626 -a(S'drawBitmap/4' -p88627 -S'drawBitmap(${1:This}, ${2:Bmp}, ${3:Pt}, ${4:Options}) $5' -p88628 -tp88629 -a(S'drawCheckMark/2' -p88630 -S'drawCheckMark(${1:This}, ${2:Rect}) $3' -p88631 -tp88632 -a(S'drawCircle/3' -p88633 -S'drawCircle(${1:This}, ${2:Pt}, ${3:Radius}) $4' -p88634 -tp88635 -a(S'drawEllipse/2' -p88636 -S'drawEllipse(${1:This}, ${2:Rect}) $3' -p88637 -tp88638 -a(S'drawEllipse/3' -p88639 -S'drawEllipse(${1:This}, ${2:Pt}, ${3:Sz}) $4' -p88640 -tp88641 -a(S'drawEllipticArc/5' -p88642 -S'drawEllipticArc(${1:This}, ${2:Pt}, ${3:Sz}, ${4:Sa}, ${5:Ea}) $6' -p88643 -tp88644 -a(S'drawIcon/3' -p88645 -S'drawIcon(${1:This}, ${2:Icon}, ${3:Pt}) $4' -p88646 -tp88647 -a(S'drawLabel/3' -p88648 -S'drawLabel(${1:This}, ${2:Text}, ${3:Rect}) $4' -p88649 -tp88650 -a(S'drawLabel/4' -p88651 -S'drawLabel(${1:This}, ${2:Text}, ${3:Rect}, ${4:Options}) $5' -p88652 -tp88653 -a(S'drawLine/3' -p88654 -S'drawLine(${1:This}, ${2:Pt1}, ${3:Pt2}) $4' -p88655 -tp88656 -a(S'drawLines/2' -p88657 -S'drawLines(${1:This}, ${2:Points}) $3' -p88658 -tp88659 -a(S'drawLines/3' -p88660 -S'drawLines(${1:This}, ${2:Points}, ${3:Options}) $4' -p88661 -tp88662 -a(S'drawPoint/2' -p88663 -S'drawPoint(${1:This}, ${2:Pt}) $3' -p88664 -tp88665 -a(S'drawPolygon/2' -p88666 -S'drawPolygon(${1:This}, ${2:Points}) $3' -p88667 -tp88668 -a(S'drawPolygon/3' -p88669 -S'drawPolygon(${1:This}, ${2:Points}, ${3:Options}) $4' -p88670 -tp88671 -a(S'drawRectangle/2' -p88672 -S'drawRectangle(${1:This}, ${2:Rect}) $3' -p88673 -tp88674 -a(S'drawRectangle/3' -p88675 -S'drawRectangle(${1:This}, ${2:Pt}, ${3:Sz}) $4' -p88676 -tp88677 -a(S'drawRotatedText/4' -p88678 -S'drawRotatedText(${1:This}, ${2:Text}, ${3:Pt}, ${4:Angle}) $5' -p88679 -tp88680 -a(S'drawRoundedRectangle/3' -p88681 -S'drawRoundedRectangle(${1:This}, ${2:R}, ${3:Radius}) $4' -p88682 -tp88683 -a(S'drawRoundedRectangle/4' -p88684 -S'drawRoundedRectangle(${1:This}, ${2:Pt}, ${3:Sz}, ${4:Radius}) $5' -p88685 -tp88686 -a(S'drawText/3' -p88687 -S'drawText(${1:This}, ${2:Text}, ${3:Pt}) $4' -p88688 -tp88689 -a(S'endDoc/1' -p88690 -S'endDoc(${1:This}) $2' -p88691 -tp88692 -a(S'endPage/1' -p88693 -S'endPage(${1:This}) $2' -p88694 -tp88695 -a(S'floodFill/3' -p88696 -S'floodFill(${1:This}, ${2:Pt}, ${3:Col}) $4' -p88697 -tp88698 -a(S'floodFill/4' -p88699 -S'floodFill(${1:This}, ${2:Pt}, ${3:Col}, ${4:Options}) $5' -p88700 -tp88701 -a(S'getBackground/1' -p88702 -S'getBackground(${1:This}) $2' -p88703 -tp88704 -a(S'getBackgroundMode/1' -p88705 -S'getBackgroundMode(${1:This}) $2' -p88706 -tp88707 -a(S'getBrush/1' -p88708 -S'getBrush(${1:This}) $2' -p88709 -tp88710 -a(S'getCharHeight/1' -p88711 -S'getCharHeight(${1:This}) $2' -p88712 -tp88713 -a(S'getCharWidth/1' -p88714 -S'getCharWidth(${1:This}) $2' -p88715 -tp88716 -a(S'getClippingBox/1' -p88717 -S'getClippingBox(${1:This}) $2' -p88718 -tp88719 -a(S'getFont/1' -p88720 -S'getFont(${1:This}) $2' -p88721 -tp88722 -a(S'getLayoutDirection/1' -p88723 -S'getLayoutDirection(${1:This}) $2' -p88724 -tp88725 -a(S'getLogicalFunction/1' -p88726 -S'getLogicalFunction(${1:This}) $2' -p88727 -tp88728 -a(S'getMapMode/1' -p88729 -S'getMapMode(${1:This}) $2' -p88730 -tp88731 -a(S'getMultiLineTextExtent/2' -p88732 -S'getMultiLineTextExtent(${1:This}, ${2:String}) $3' -p88733 -tp88734 -a(S'getMultiLineTextExtent/3' -p88735 -S'getMultiLineTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p88736 -tp88737 -a(S'getPPI/1' -p88738 -S'getPPI(${1:This}) $2' -p88739 -tp88740 -a(S'getPartialTextExtents/2' -p88741 -S'getPartialTextExtents(${1:This}, ${2:Text}) $3' -p88742 -tp88743 -a(S'getPen/1' -p88744 -S'getPen(${1:This}) $2' -p88745 -tp88746 -a(S'getPixel/2' -p88747 -S'getPixel(${1:This}, ${2:Pt}) $3' -p88748 -tp88749 -a(S'getSize/1' -p88750 -S'getSize(${1:This}) $2' -p88751 -tp88752 -a(S'getSizeMM/1' -p88753 -S'getSizeMM(${1:This}) $2' -p88754 -tp88755 -a(S'getTextBackground/1' -p88756 -S'getTextBackground(${1:This}) $2' -p88757 -tp88758 -a(S'getTextExtent/2' -p88759 -S'getTextExtent(${1:This}, ${2:String}) $3' -p88760 -tp88761 -a(S'getTextExtent/3' -p88762 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p88763 -tp88764 -a(S'getTextForeground/1' -p88765 -S'getTextForeground(${1:This}) $2' -p88766 -tp88767 -a(S'getUserScale/1' -p88768 -S'getUserScale(${1:This}) $2' -p88769 -tp88770 -a(S'gradientFillConcentric/4' -p88771 -S'gradientFillConcentric(${1:This}, ${2:Rect}, ${3:InitialColour}, ${4:DestColour}) $5' -p88772 -tp88773 -a(S'gradientFillConcentric/5' -p88774 -S'gradientFillConcentric(${1:This}, ${2:Rect}, ${3:InitialColour}, ${4:DestColour}, ${5:CircleCenter}) $6' -p88775 -tp88776 -a(S'gradientFillLinear/4' -p88777 -S'gradientFillLinear(${1:This}, ${2:Rect}, ${3:InitialColour}, ${4:DestColour}) $5' -p88778 -tp88779 -a(S'gradientFillLinear/5' -p88780 -S'gradientFillLinear(${1:This}, ${2:Rect}, ${3:InitialColour}, ${4:DestColour}, ${5:Options}) $6' -p88781 -tp88782 -a(S'isOk/1' -p88783 -S'isOk(${1:This}) $2' -p88784 -tp88785 -a(S'logicalToDeviceX/2' -p88786 -S'logicalToDeviceX(${1:This}, ${2:X}) $3' -p88787 -tp88788 -a(S'logicalToDeviceXRel/2' -p88789 -S'logicalToDeviceXRel(${1:This}, ${2:X}) $3' -p88790 -tp88791 -a(S'logicalToDeviceY/2' -p88792 -S'logicalToDeviceY(${1:This}, ${2:Y}) $3' -p88793 -tp88794 -a(S'logicalToDeviceYRel/2' -p88795 -S'logicalToDeviceYRel(${1:This}, ${2:Y}) $3' -p88796 -tp88797 -a(S'maxX/1' -p88798 -S'maxX(${1:This}) $2' -p88799 -tp88800 -a(S'maxY/1' -p88801 -S'maxY(${1:This}) $2' -p88802 -tp88803 -a(S'minX/1' -p88804 -S'minX(${1:This}) $2' -p88805 -tp88806 -a(S'minY/1' -p88807 -S'minY(${1:This}) $2' -p88808 -tp88809 -a(S'new/0' -p88810 -S'new() $1' -p88811 -tp88812 -a(S'parent_class/1' -p88813 -S'parent_class(${1:Param1}) $2' -p88814 -tp88815 -a(S'resetBoundingBox/1' -p88816 -S'resetBoundingBox(${1:This}) $2' -p88817 -tp88818 -a(S'setAxisOrientation/3' -p88819 -S'setAxisOrientation(${1:This}, ${2:XLeftRight}, ${3:YBottomUp}) $4' -p88820 -tp88821 -a(S'setBackground/2' -p88822 -S'setBackground(${1:This}, ${2:Brush}) $3' -p88823 -tp88824 -a(S'setBackgroundMode/2' -p88825 -S'setBackgroundMode(${1:This}, ${2:Mode}) $3' -p88826 -tp88827 -a(S'setBrush/2' -p88828 -S'setBrush(${1:This}, ${2:Brush}) $3' -p88829 -tp88830 -a(S'setClippingRegion/2' -p88831 -S'setClippingRegion(${1:This}, ${2:Region}) $3' -p88832 -tp88833 -a(S'setClippingRegion/3' -p88834 -S'setClippingRegion(${1:This}, ${2:Pt}, ${3:Sz}) $4' -p88835 -tp88836 -a(S'setDeviceOrigin/3' -p88837 -S'setDeviceOrigin(${1:This}, ${2:X}, ${3:Y}) $4' -p88838 -tp88839 -a(S'setFont/2' -p88840 -S'setFont(${1:This}, ${2:Font}) $3' -p88841 -tp88842 -a(S'setLayoutDirection/2' -p88843 -S'setLayoutDirection(${1:This}, ${2:Dir}) $3' -p88844 -tp88845 -a(S'setLogicalFunction/2' -p88846 -S'setLogicalFunction(${1:This}, ${2:Function}) $3' -p88847 -tp88848 -a(S'setMapMode/2' -p88849 -S'setMapMode(${1:This}, ${2:Mode}) $3' -p88850 -tp88851 -a(S'setPalette/2' -p88852 -S'setPalette(${1:This}, ${2:Palette}) $3' -p88853 -tp88854 -a(S'setPen/2' -p88855 -S'setPen(${1:This}, ${2:Pen}) $3' -p88856 -tp88857 -a(S'setTextBackground/2' -p88858 -S'setTextBackground(${1:This}, ${2:Colour}) $3' -p88859 -tp88860 -a(S'setTextForeground/2' -p88861 -S'setTextForeground(${1:This}, ${2:Colour}) $3' -p88862 -tp88863 -a(S'setUserScale/3' -p88864 -S'setUserScale(${1:This}, ${2:X}, ${3:Y}) $4' -p88865 -tp88866 -a(S'startDoc/2' -p88867 -S'startDoc(${1:This}, ${2:Message}) $3' -p88868 -tp88869 -a(S'startPage/1' -p88870 -S'startPage(${1:This}) $2' -p88871 -tp88872 -asS'erl_expand_records' -p88873 -(lp88874 -(S'module/2' -p88875 -S'module(${1:AbsForms}, ${2:CompileOptions}) $3' -p88876 -tp88877 -asS'wxPostScriptDC' -p88878 -(lp88879 -(S'blit/5' -p88880 -S'blit(${1:This}, ${2:DestPt}, ${3:Sz}, ${4:Source}, ${5:SrcPt}) $6' -p88881 -tp88882 -a(S'blit/6' -p88883 -S'blit(${1:This}, ${2:DestPt}, ${3:Sz}, ${4:Source}, ${5:SrcPt}, ${6:Options}) $7' -p88884 -tp88885 -a(S'calcBoundingBox/3' -p88886 -S'calcBoundingBox(${1:This}, ${2:X}, ${3:Y}) $4' -p88887 -tp88888 -a(S'clear/1' -p88889 -S'clear(${1:This}) $2' -p88890 -tp88891 -a(S'computeScaleAndOrigin/1' -p88892 -S'computeScaleAndOrigin(${1:This}) $2' -p88893 -tp88894 -a(S'crossHair/2' -p88895 -S'crossHair(${1:This}, ${2:Pt}) $3' -p88896 -tp88897 -a(S'destroy/1' -p88898 -S'destroy(${1:This}) $2' -p88899 -tp88900 -a(S'destroyClippingRegion/1' -p88901 -S'destroyClippingRegion(${1:This}) $2' -p88902 -tp88903 -a(S'deviceToLogicalX/2' -p88904 -S'deviceToLogicalX(${1:This}, ${2:X}) $3' -p88905 -tp88906 -a(S'deviceToLogicalXRel/2' -p88907 -S'deviceToLogicalXRel(${1:This}, ${2:X}) $3' -p88908 -tp88909 -a(S'deviceToLogicalY/2' -p88910 -S'deviceToLogicalY(${1:This}, ${2:Y}) $3' -p88911 -tp88912 -a(S'deviceToLogicalYRel/2' -p88913 -S'deviceToLogicalYRel(${1:This}, ${2:Y}) $3' -p88914 -tp88915 -a(S'drawArc/4' -p88916 -S'drawArc(${1:This}, ${2:Pt1}, ${3:Pt2}, ${4:Centre}) $5' -p88917 -tp88918 -a(S'drawBitmap/3' -p88919 -S'drawBitmap(${1:This}, ${2:Bmp}, ${3:Pt}) $4' -p88920 -tp88921 -a(S'drawBitmap/4' -p88922 -S'drawBitmap(${1:This}, ${2:Bmp}, ${3:Pt}, ${4:Options}) $5' -p88923 -tp88924 -a(S'drawCheckMark/2' -p88925 -S'drawCheckMark(${1:This}, ${2:Rect}) $3' -p88926 -tp88927 -a(S'drawCircle/3' -p88928 -S'drawCircle(${1:This}, ${2:Pt}, ${3:Radius}) $4' -p88929 -tp88930 -a(S'drawEllipse/2' -p88931 -S'drawEllipse(${1:This}, ${2:Rect}) $3' -p88932 -tp88933 -a(S'drawEllipse/3' -p88934 -S'drawEllipse(${1:This}, ${2:Pt}, ${3:Sz}) $4' -p88935 -tp88936 -a(S'drawEllipticArc/5' -p88937 -S'drawEllipticArc(${1:This}, ${2:Pt}, ${3:Sz}, ${4:Sa}, ${5:Ea}) $6' -p88938 -tp88939 -a(S'drawIcon/3' -p88940 -S'drawIcon(${1:This}, ${2:Icon}, ${3:Pt}) $4' -p88941 -tp88942 -a(S'drawLabel/3' -p88943 -S'drawLabel(${1:This}, ${2:Text}, ${3:Rect}) $4' -p88944 -tp88945 -a(S'drawLabel/4' -p88946 -S'drawLabel(${1:This}, ${2:Text}, ${3:Rect}, ${4:Options}) $5' -p88947 -tp88948 -a(S'drawLine/3' -p88949 -S'drawLine(${1:This}, ${2:Pt1}, ${3:Pt2}) $4' -p88950 -tp88951 -a(S'drawLines/2' -p88952 -S'drawLines(${1:This}, ${2:Points}) $3' -p88953 -tp88954 -a(S'drawLines/3' -p88955 -S'drawLines(${1:This}, ${2:Points}, ${3:Options}) $4' -p88956 -tp88957 -a(S'drawPoint/2' -p88958 -S'drawPoint(${1:This}, ${2:Pt}) $3' -p88959 -tp88960 -a(S'drawPolygon/2' -p88961 -S'drawPolygon(${1:This}, ${2:Points}) $3' -p88962 -tp88963 -a(S'drawPolygon/3' -p88964 -S'drawPolygon(${1:This}, ${2:Points}, ${3:Options}) $4' -p88965 -tp88966 -a(S'drawRectangle/2' -p88967 -S'drawRectangle(${1:This}, ${2:Rect}) $3' -p88968 -tp88969 -a(S'drawRectangle/3' -p88970 -S'drawRectangle(${1:This}, ${2:Pt}, ${3:Sz}) $4' -p88971 -tp88972 -a(S'drawRotatedText/4' -p88973 -S'drawRotatedText(${1:This}, ${2:Text}, ${3:Pt}, ${4:Angle}) $5' -p88974 -tp88975 -a(S'drawRoundedRectangle/3' -p88976 -S'drawRoundedRectangle(${1:This}, ${2:R}, ${3:Radius}) $4' -p88977 -tp88978 -a(S'drawRoundedRectangle/4' -p88979 -S'drawRoundedRectangle(${1:This}, ${2:Pt}, ${3:Sz}, ${4:Radius}) $5' -p88980 -tp88981 -a(S'drawText/3' -p88982 -S'drawText(${1:This}, ${2:Text}, ${3:Pt}) $4' -p88983 -tp88984 -a(S'endDoc/1' -p88985 -S'endDoc(${1:This}) $2' -p88986 -tp88987 -a(S'endPage/1' -p88988 -S'endPage(${1:This}) $2' -p88989 -tp88990 -a(S'floodFill/3' -p88991 -S'floodFill(${1:This}, ${2:Pt}, ${3:Col}) $4' -p88992 -tp88993 -a(S'floodFill/4' -p88994 -S'floodFill(${1:This}, ${2:Pt}, ${3:Col}, ${4:Options}) $5' -p88995 -tp88996 -a(S'getBackground/1' -p88997 -S'getBackground(${1:This}) $2' -p88998 -tp88999 -a(S'getBackgroundMode/1' -p89000 -S'getBackgroundMode(${1:This}) $2' -p89001 -tp89002 -a(S'getBrush/1' -p89003 -S'getBrush(${1:This}) $2' -p89004 -tp89005 -a(S'getCharHeight/1' -p89006 -S'getCharHeight(${1:This}) $2' -p89007 -tp89008 -a(S'getCharWidth/1' -p89009 -S'getCharWidth(${1:This}) $2' -p89010 -tp89011 -a(S'getClippingBox/1' -p89012 -S'getClippingBox(${1:This}) $2' -p89013 -tp89014 -a(S'getFont/1' -p89015 -S'getFont(${1:This}) $2' -p89016 -tp89017 -a(S'getLayoutDirection/1' -p89018 -S'getLayoutDirection(${1:This}) $2' -p89019 -tp89020 -a(S'getLogicalFunction/1' -p89021 -S'getLogicalFunction(${1:This}) $2' -p89022 -tp89023 -a(S'getMapMode/1' -p89024 -S'getMapMode(${1:This}) $2' -p89025 -tp89026 -a(S'getMultiLineTextExtent/2' -p89027 -S'getMultiLineTextExtent(${1:This}, ${2:String}) $3' -p89028 -tp89029 -a(S'getMultiLineTextExtent/3' -p89030 -S'getMultiLineTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p89031 -tp89032 -a(S'getPPI/1' -p89033 -S'getPPI(${1:This}) $2' -p89034 -tp89035 -a(S'getPartialTextExtents/2' -p89036 -S'getPartialTextExtents(${1:This}, ${2:Text}) $3' -p89037 -tp89038 -a(S'getPen/1' -p89039 -S'getPen(${1:This}) $2' -p89040 -tp89041 -a(S'getPixel/2' -p89042 -S'getPixel(${1:This}, ${2:Pt}) $3' -p89043 -tp89044 -a(S'getResolution/0' -p89045 -S'getResolution() $1' -p89046 -tp89047 -a(S'getSize/1' -p89048 -S'getSize(${1:This}) $2' -p89049 -tp89050 -a(S'getSizeMM/1' -p89051 -S'getSizeMM(${1:This}) $2' -p89052 -tp89053 -a(S'getTextBackground/1' -p89054 -S'getTextBackground(${1:This}) $2' -p89055 -tp89056 -a(S'getTextExtent/2' -p89057 -S'getTextExtent(${1:This}, ${2:String}) $3' -p89058 -tp89059 -a(S'getTextExtent/3' -p89060 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p89061 -tp89062 -a(S'getTextForeground/1' -p89063 -S'getTextForeground(${1:This}) $2' -p89064 -tp89065 -a(S'getUserScale/1' -p89066 -S'getUserScale(${1:This}) $2' -p89067 -tp89068 -a(S'gradientFillConcentric/4' -p89069 -S'gradientFillConcentric(${1:This}, ${2:Rect}, ${3:InitialColour}, ${4:DestColour}) $5' -p89070 -tp89071 -a(S'gradientFillConcentric/5' -p89072 -S'gradientFillConcentric(${1:This}, ${2:Rect}, ${3:InitialColour}, ${4:DestColour}, ${5:CircleCenter}) $6' -p89073 -tp89074 -a(S'gradientFillLinear/4' -p89075 -S'gradientFillLinear(${1:This}, ${2:Rect}, ${3:InitialColour}, ${4:DestColour}) $5' -p89076 -tp89077 -a(S'gradientFillLinear/5' -p89078 -S'gradientFillLinear(${1:This}, ${2:Rect}, ${3:InitialColour}, ${4:DestColour}, ${5:Options}) $6' -p89079 -tp89080 -a(S'isOk/1' -p89081 -S'isOk(${1:This}) $2' -p89082 -tp89083 -a(S'logicalToDeviceX/2' -p89084 -S'logicalToDeviceX(${1:This}, ${2:X}) $3' -p89085 -tp89086 -a(S'logicalToDeviceXRel/2' -p89087 -S'logicalToDeviceXRel(${1:This}, ${2:X}) $3' -p89088 -tp89089 -a(S'logicalToDeviceY/2' -p89090 -S'logicalToDeviceY(${1:This}, ${2:Y}) $3' -p89091 -tp89092 -a(S'logicalToDeviceYRel/2' -p89093 -S'logicalToDeviceYRel(${1:This}, ${2:Y}) $3' -p89094 -tp89095 -a(S'maxX/1' -p89096 -S'maxX(${1:This}) $2' -p89097 -tp89098 -a(S'maxY/1' -p89099 -S'maxY(${1:This}) $2' -p89100 -tp89101 -a(S'minX/1' -p89102 -S'minX(${1:This}) $2' -p89103 -tp89104 -a(S'minY/1' -p89105 -S'minY(${1:This}) $2' -p89106 -tp89107 -a(S'new/0' -p89108 -S'new() $1' -p89109 -tp89110 -a(S'new/1' -p89111 -S'new(${1:PrintData}) $2' -p89112 -tp89113 -a(S'parent_class/1' -p89114 -S'parent_class(${1:Param1}) $2' -p89115 -tp89116 -a(S'resetBoundingBox/1' -p89117 -S'resetBoundingBox(${1:This}) $2' -p89118 -tp89119 -a(S'setAxisOrientation/3' -p89120 -S'setAxisOrientation(${1:This}, ${2:XLeftRight}, ${3:YBottomUp}) $4' -p89121 -tp89122 -a(S'setBackground/2' -p89123 -S'setBackground(${1:This}, ${2:Brush}) $3' -p89124 -tp89125 -a(S'setBackgroundMode/2' -p89126 -S'setBackgroundMode(${1:This}, ${2:Mode}) $3' -p89127 -tp89128 -a(S'setBrush/2' -p89129 -S'setBrush(${1:This}, ${2:Brush}) $3' -p89130 -tp89131 -a(S'setClippingRegion/2' -p89132 -S'setClippingRegion(${1:This}, ${2:Region}) $3' -p89133 -tp89134 -a(S'setClippingRegion/3' -p89135 -S'setClippingRegion(${1:This}, ${2:Pt}, ${3:Sz}) $4' -p89136 -tp89137 -a(S'setDeviceOrigin/3' -p89138 -S'setDeviceOrigin(${1:This}, ${2:X}, ${3:Y}) $4' -p89139 -tp89140 -a(S'setFont/2' -p89141 -S'setFont(${1:This}, ${2:Font}) $3' -p89142 -tp89143 -a(S'setLayoutDirection/2' -p89144 -S'setLayoutDirection(${1:This}, ${2:Dir}) $3' -p89145 -tp89146 -a(S'setLogicalFunction/2' -p89147 -S'setLogicalFunction(${1:This}, ${2:Function}) $3' -p89148 -tp89149 -a(S'setMapMode/2' -p89150 -S'setMapMode(${1:This}, ${2:Mode}) $3' -p89151 -tp89152 -a(S'setPalette/2' -p89153 -S'setPalette(${1:This}, ${2:Palette}) $3' -p89154 -tp89155 -a(S'setPen/2' -p89156 -S'setPen(${1:This}, ${2:Pen}) $3' -p89157 -tp89158 -a(S'setResolution/1' -p89159 -S'setResolution(${1:Ppi}) $2' -p89160 -tp89161 -a(S'setTextBackground/2' -p89162 -S'setTextBackground(${1:This}, ${2:Colour}) $3' -p89163 -tp89164 -a(S'setTextForeground/2' -p89165 -S'setTextForeground(${1:This}, ${2:Colour}) $3' -p89166 -tp89167 -a(S'setUserScale/3' -p89168 -S'setUserScale(${1:This}, ${2:X}, ${3:Y}) $4' -p89169 -tp89170 -a(S'startDoc/2' -p89171 -S'startDoc(${1:This}, ${2:Message}) $3' -p89172 -tp89173 -a(S'startPage/1' -p89174 -S'startPage(${1:This}) $2' -p89175 -tp89176 -asS'tftp_engine' -p89177 -(lp89178 -(S'callback/4' -p89179 -S'callback(${1:Access}, ${2:Config}, ${3:Callback}, ${4:Req}) $5' -p89180 -tp89181 -a(S'change_config/2' -p89182 -S'change_config(${1:ToPid}, ${2:Options}) $3' -p89183 -tp89184 -a(S'client_init/2' -p89185 -S'client_init() $1' -p89186 -tp89187 -a(S'client_start/4' -p89188 -S'client_start(${1:Access}, ${2:RemoteFilename}, ${3:LocalFilename}, ${4:Options}) $5' -p89189 -tp89190 -a(S'common_loop/6' -p89191 -S'common_loop(${1:Config}, ${2:Callback}, ${3:Req}, ${4:TransferRes}, ${5:LocalAccess}, ${6:ExpectedBlockNo}) $7' -p89192 -tp89193 -a(S'daemon_init/1' -p89194 -S'daemon_init() $1' -p89195 -tp89196 -a(S'daemon_loop/1' -p89197 -S'daemon_loop(${1:State}) $2' -p89198 -tp89199 -a(S'daemon_loop/3' -p89200 -S'daemon_loop(${1:DaemonConfig}, ${2:N}, ${3:Servers}) $4' -p89201 -tp89202 -a(S'daemon_start/1' -p89203 -S'daemon_start(${1:Options}) $2' -p89204 -tp89205 -a(S'info/1' -p89206 -S'info(${1:ToPid}) $2' -p89207 -tp89208 -a(S'server_init/2' -p89209 -S'server_init(${1:Config}, ${2:Req}) $3' -p89210 -tp89211 -a(S'system_code_change/4' -p89212 -S'system_code_change(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p89213 -tp89214 -a(S'system_continue/3' -p89215 -S'system_continue(${1:Parent}, ${2:Debug}, ${3:Param3}) $4' -p89216 -tp89217 -a(S'system_terminate/4' -p89218 -S'system_terminate(${1:Reason}, ${2:Parent}, ${3:Debug}, ${4:Param4}) $5' -p89219 -tp89220 -a(S'wait_for_msg/3' -p89221 -S'wait_for_msg(${1:Config}, ${2:Callback}, ${3:Req}) $4' -p89222 -tp89223 -asS'dbg_ui_interpret' -p89224 -(lp89225 -(S'init/6' -p89226 -S'init(${1:Monitor}, ${2:GS}, ${3:Pos}, ${4:Title}, ${5:Dir}, ${6:Mode}) $7' -p89227 -tp89228 -a(S'start/4' -p89229 -S'start(${1:GS}, ${2:Pos}, ${3:Dir}, ${4:Mode}) $5' -p89230 -tp89231 -asS'snmp_generic_mnesia' -p89232 -(lp89233 -(S'table_delete_row/2' -p89234 -S'table_delete_row(${1:Name}, ${2:RowIndex}) $3' -p89235 -tp89236 -a(S'table_func/2' -p89237 -S'table_func(${1:Param1}, ${2:Param2}) $3' -p89238 -tp89239 -a(S'table_func/4' -p89240 -S'table_func(${1:Param1}, ${2:RowIndex}, ${3:Cols}, ${4:Name}) $5' -p89241 -tp89242 -a(S'table_get_elements/4' -p89243 -S'table_get_elements(${1:Name}, ${2:RowIndex}, ${3:Cols}, ${4:FirstOwnIndex}) $5' -p89244 -tp89245 -a(S'table_get_row/2' -p89246 -S'table_get_row(${1:Name}, ${2:RowIndex}) $3' -p89247 -tp89248 -a(S'table_get_row/3' -p89249 -S'table_get_row(${1:Name}, ${2:RowIndex}, ${3:FOI}) $4' -p89250 -tp89251 -a(S'table_next/2' -p89252 -S'table_next(${1:Name}, ${2:RestOid}) $3' -p89253 -tp89254 -a(S'table_set_cols/4' -p89255 -S'table_set_cols(${1:Name}, ${2:RowIndex}, ${3:Cols}, ${4:ConsFunc}) $5' -p89256 -tp89257 -a(S'table_set_element/4' -p89258 -S'table_set_element(${1:Name}, ${2:RowIndex}, ${3:Col}, ${4:NewVal}) $5' -p89259 -tp89260 -a(S'table_set_elements/3' -p89261 -S'table_set_elements(${1:Name}, ${2:RowIndex}, ${3:Cols}) $4' -p89262 -tp89263 -a(S'table_set_status/7' -p89264 -S'table_set_status() $1' -p89265 -tp89266 -a(S'table_try_make_consistent/2' -p89267 -S'table_try_make_consistent(${1:RowIndex}, ${2:NewDbRow}) $3' -p89268 -tp89269 -a(S'variable_get/1' -p89270 -S'variable_get(${1:Name}) $2' -p89271 -tp89272 -a(S'variable_inc/2' -p89273 -S'variable_inc(${1:Name}, ${2:N}) $3' -p89274 -tp89275 -a(S'variable_set/2' -p89276 -S'variable_set(${1:Name}, ${2:Val}) $3' -p89277 -tp89278 -asS'iop_ior' -p89279 -(lp89280 -(S'add_component/2' -p89281 -S'add_component(${1:Objref}, ${2:Component}) $3' -p89282 -tp89283 -a(S'check_nil/1' -p89284 -S'check_nil(${1:Param1}) $2' -p89285 -tp89286 -a(S'code/4' -p89287 -S'code(${1:IOR}, ${2:Host}, ${3:Port}, ${4:SSLPort}) $5' -p89288 -tp89289 -a(S'create/9' -p89290 -S'create(${1:Version}, ${2:TypeID}, ${3:Hosts}, ${4:IIOPPort}, ${5:SSLPort}, ${6:Objkey}, ${7:MC}, ${8:Flags}, ${9:EnvFlags}) $10' -p89291 -tp89292 -a(S'create_external/5' -p89293 -S'create_external(${1:Version}, ${2:TypeID}, ${3:Host}, ${4:IIOP_port}, ${5:Objkey}) $6' -p89294 -tp89295 -a(S'create_external/6' -p89296 -S'create_external(${1:Version}, ${2:TypeID}, ${3:Host}, ${4:IIOP_port}, ${5:Objkey}, ${6:Components}) $7' -p89297 -tp89298 -a(S'decode/4' -p89299 -S'decode(${1:Version}, ${2:IorByteSeq}, ${3:Len}, ${4:ByteOrder}) $5' -p89300 -tp89301 -a(S'get_alt_addr/1' -p89302 -S'get_alt_addr(${1:Param1}) $2' -p89303 -tp89304 -a(S'get_flagfield/1' -p89305 -S'get_flagfield(${1:Param1}) $2' -p89306 -tp89307 -a(S'get_key/1' -p89308 -S'get_key(${1:What}) $2' -p89309 -tp89310 -a(S'get_key/2' -p89311 -S'get_key(${1:What}, ${2:Exclude}) $3' -p89312 -tp89313 -a(S'get_objkey/1' -p89314 -S'get_objkey(${1:Param1}) $2' -p89315 -tp89316 -a(S'get_orbfield/1' -p89317 -S'get_orbfield(${1:Param1}) $2' -p89318 -tp89319 -a(S'get_peerdata/1' -p89320 -S'get_peerdata(${1:IOR}) $2' -p89321 -tp89322 -a(S'get_privfield/1' -p89323 -S'get_privfield(${1:Param1}) $2' -p89324 -tp89325 -a(S'get_typeID/1' -p89326 -S'get_typeID(${1:Param1}) $2' -p89327 -tp89328 -a(S'print/1' -p89329 -S'print(${1:Object}) $2' -p89330 -tp89331 -a(S'print/2' -p89332 -S'print(${1:IoDevice}, ${2:IORStr}) $3' -p89333 -tp89334 -a(S'set_flagfield/2' -p89335 -S'set_flagfield(${1:Param1}, ${2:Flags}) $3' -p89336 -tp89337 -a(S'set_orbfield/2' -p89338 -S'set_orbfield(${1:Param1}, ${2:OrberDef}) $3' -p89339 -tp89340 -a(S'set_privfield/2' -p89341 -S'set_privfield(${1:Param1}, ${2:UserData}) $3' -p89342 -tp89343 -a(S'string_code/1' -p89344 -S'string_code(${1:IOR}) $2' -p89345 -tp89346 -a(S'string_code/2' -p89347 -S'string_code(${1:IOR}, ${2:Host}) $3' -p89348 -tp89349 -a(S'string_code/3' -p89350 -S'string_code(${1:IOR}, ${2:Host}, ${3:Port}) $4' -p89351 -tp89352 -a(S'string_code/4' -p89353 -S'string_code(${1:IOR}, ${2:Host}, ${3:Port}, ${4:SSLPort}) $5' -p89354 -tp89355 -a(S'string_decode/1' -p89356 -S'string_decode(${1:What}) $2' -p89357 -tp89358 -asS'igor' -p89359 -(lp89360 -(S'create_stubs/2' -p89361 -S'create_stubs(${1:Stubs}, ${2:Opts}) $3' -p89362 -tp89363 -a(S'merge/2' -p89364 -S'merge(${1:Name}, ${2:Files}) $3' -p89365 -tp89366 -a(S'merge/3' -p89367 -S'merge(${1:Name}, ${2:Files}, ${3:Opts}) $4' -p89368 -tp89369 -a(S'merge_files/3' -p89370 -S'merge_files(${1:Name}, ${2:Files}, ${3:Options}) $4' -p89371 -tp89372 -a(S'merge_files/4' -p89373 -S'merge_files(${1:Name}, ${2:Trees}, ${3:Files}, ${4:Opts}) $5' -p89374 -tp89375 -a(S'merge_sources/3' -p89376 -S'merge_sources(${1:Name}, ${2:Sources}, ${3:Opts}) $4' -p89377 -tp89378 -a(S'parse_transform/2' -p89379 -S'parse_transform(${1:Forms}, ${2:Options}) $3' -p89380 -tp89381 -a(S'rename/2' -p89382 -S'rename(${1:Files}, ${2:Renamings}) $3' -p89383 -tp89384 -a(S'rename/3' -p89385 -S'rename(${1:Files}, ${2:Renamings}, ${3:Opts}) $4' -p89386 -tp89387 -asS'wxTextCtrl' -p89388 -(lp89389 -(S'appendText/2' -p89390 -S'appendText(${1:This}, ${2:Text}) $3' -p89391 -tp89392 -a(S'cacheBestSize/2' -p89393 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p89394 -tp89395 -a(S'canCopy/1' -p89396 -S'canCopy(${1:This}) $2' -p89397 -tp89398 -a(S'canCut/1' -p89399 -S'canCut(${1:This}) $2' -p89400 -tp89401 -a(S'canPaste/1' -p89402 -S'canPaste(${1:This}) $2' -p89403 -tp89404 -a(S'canRedo/1' -p89405 -S'canRedo(${1:This}) $2' -p89406 -tp89407 -a(S'canUndo/1' -p89408 -S'canUndo(${1:This}) $2' -p89409 -tp89410 -a(S'captureMouse/1' -p89411 -S'captureMouse(${1:This}) $2' -p89412 -tp89413 -a(S'center/1' -p89414 -S'center(${1:This}) $2' -p89415 -tp89416 -a(S'center/2' -p89417 -S'center(${1:This}, ${2:Options}) $3' -p89418 -tp89419 -a(S'centerOnParent/1' -p89420 -S'centerOnParent(${1:This}) $2' -p89421 -tp89422 -a(S'centerOnParent/2' -p89423 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p89424 -tp89425 -a(S'centre/1' -p89426 -S'centre(${1:This}) $2' -p89427 -tp89428 -a(S'centre/2' -p89429 -S'centre(${1:This}, ${2:Options}) $3' -p89430 -tp89431 -a(S'centreOnParent/1' -p89432 -S'centreOnParent(${1:This}) $2' -p89433 -tp89434 -a(S'centreOnParent/2' -p89435 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p89436 -tp89437 -a(S'clear/1' -p89438 -S'clear(${1:This}) $2' -p89439 -tp89440 -a(S'clearBackground/1' -p89441 -S'clearBackground(${1:This}) $2' -p89442 -tp89443 -a(S'clientToScreen/2' -p89444 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p89445 -tp89446 -a(S'clientToScreen/3' -p89447 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p89448 -tp89449 -a(S'close/1' -p89450 -S'close(${1:This}) $2' -p89451 -tp89452 -a(S'close/2' -p89453 -S'close(${1:This}, ${2:Options}) $3' -p89454 -tp89455 -a(S'connect/2' -p89456 -S'connect(${1:This}, ${2:EventType}) $3' -p89457 -tp89458 -a(S'connect/3' -p89459 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p89460 -tp89461 -a(S'convertDialogToPixels/2' -p89462 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p89463 -tp89464 -a(S'convertPixelsToDialog/2' -p89465 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p89466 -tp89467 -a(S'copy/1' -p89468 -S'copy(${1:This}) $2' -p89469 -tp89470 -a(S'create/3' -p89471 -S'create(${1:This}, ${2:Parent}, ${3:Id}) $4' -p89472 -tp89473 -a(S'create/4' -p89474 -S'create(${1:This}, ${2:Parent}, ${3:Id}, ${4:Param4}) $5' -p89475 -tp89476 -a(S'cut/1' -p89477 -S'cut(${1:This}) $2' -p89478 -tp89479 -a(S'destroy/1' -p89480 -S'destroy(${1:This}) $2' -p89481 -tp89482 -a(S'destroyChildren/1' -p89483 -S'destroyChildren(${1:This}) $2' -p89484 -tp89485 -a(S'disable/1' -p89486 -S'disable(${1:This}) $2' -p89487 -tp89488 -a(S'discardEdits/1' -p89489 -S'discardEdits(${1:This}) $2' -p89490 -tp89491 -a(S'disconnect/1' -p89492 -S'disconnect(${1:This}) $2' -p89493 -tp89494 -a(S'disconnect/2' -p89495 -S'disconnect(${1:This}, ${2:EventType}) $3' -p89496 -tp89497 -a(S'disconnect/3' -p89498 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p89499 -tp89500 -a(S'emulateKeyPress/2' -p89501 -S'emulateKeyPress(${1:This}, ${2:Event}) $3' -p89502 -tp89503 -a(S'enable/1' -p89504 -S'enable(${1:This}) $2' -p89505 -tp89506 -a(S'enable/2' -p89507 -S'enable(${1:This}, ${2:Options}) $3' -p89508 -tp89509 -a(S'findWindow/2' -p89510 -S'findWindow(${1:This}, ${2:Winid}) $3' -p89511 -tp89512 -a(S'fit/1' -p89513 -S'fit(${1:This}) $2' -p89514 -tp89515 -a(S'fitInside/1' -p89516 -S'fitInside(${1:This}) $2' -p89517 -tp89518 -a(S'freeze/1' -p89519 -S'freeze(${1:This}) $2' -p89520 -tp89521 -a(S'getAcceleratorTable/1' -p89522 -S'getAcceleratorTable(${1:This}) $2' -p89523 -tp89524 -a(S'getBackgroundColour/1' -p89525 -S'getBackgroundColour(${1:This}) $2' -p89526 -tp89527 -a(S'getBackgroundStyle/1' -p89528 -S'getBackgroundStyle(${1:This}) $2' -p89529 -tp89530 -a(S'getBestSize/1' -p89531 -S'getBestSize(${1:This}) $2' -p89532 -tp89533 -a(S'getCaret/1' -p89534 -S'getCaret(${1:This}) $2' -p89535 -tp89536 -a(S'getCharHeight/1' -p89537 -S'getCharHeight(${1:This}) $2' -p89538 -tp89539 -a(S'getCharWidth/1' -p89540 -S'getCharWidth(${1:This}) $2' -p89541 -tp89542 -a(S'getChildren/1' -p89543 -S'getChildren(${1:This}) $2' -p89544 -tp89545 -a(S'getClientSize/1' -p89546 -S'getClientSize(${1:This}) $2' -p89547 -tp89548 -a(S'getContainingSizer/1' -p89549 -S'getContainingSizer(${1:This}) $2' -p89550 -tp89551 -a(S'getCursor/1' -p89552 -S'getCursor(${1:This}) $2' -p89553 -tp89554 -a(S'getDefaultStyle/1' -p89555 -S'getDefaultStyle(${1:This}) $2' -p89556 -tp89557 -a(S'getDropTarget/1' -p89558 -S'getDropTarget(${1:This}) $2' -p89559 -tp89560 -a(S'getEventHandler/1' -p89561 -S'getEventHandler(${1:This}) $2' -p89562 -tp89563 -a(S'getExtraStyle/1' -p89564 -S'getExtraStyle(${1:This}) $2' -p89565 -tp89566 -a(S'getFont/1' -p89567 -S'getFont(${1:This}) $2' -p89568 -tp89569 -a(S'getForegroundColour/1' -p89570 -S'getForegroundColour(${1:This}) $2' -p89571 -tp89572 -a(S'getGrandParent/1' -p89573 -S'getGrandParent(${1:This}) $2' -p89574 -tp89575 -a(S'getHandle/1' -p89576 -S'getHandle(${1:This}) $2' -p89577 -tp89578 -a(S'getHelpText/1' -p89579 -S'getHelpText(${1:This}) $2' -p89580 -tp89581 -a(S'getId/1' -p89582 -S'getId(${1:This}) $2' -p89583 -tp89584 -a(S'getInsertionPoint/1' -p89585 -S'getInsertionPoint(${1:This}) $2' -p89586 -tp89587 -a(S'getLabel/1' -p89588 -S'getLabel(${1:This}) $2' -p89589 -tp89590 -a(S'getLastPosition/1' -p89591 -S'getLastPosition(${1:This}) $2' -p89592 -tp89593 -a(S'getLineLength/2' -p89594 -S'getLineLength(${1:This}, ${2:LineNo}) $3' -p89595 -tp89596 -a(S'getLineText/2' -p89597 -S'getLineText(${1:This}, ${2:LineNo}) $3' -p89598 -tp89599 -a(S'getMaxSize/1' -p89600 -S'getMaxSize(${1:This}) $2' -p89601 -tp89602 -a(S'getMinSize/1' -p89603 -S'getMinSize(${1:This}) $2' -p89604 -tp89605 -a(S'getName/1' -p89606 -S'getName(${1:This}) $2' -p89607 -tp89608 -a(S'getNumberOfLines/1' -p89609 -S'getNumberOfLines(${1:This}) $2' -p89610 -tp89611 -a(S'getParent/1' -p89612 -S'getParent(${1:This}) $2' -p89613 -tp89614 -a(S'getPosition/1' -p89615 -S'getPosition(${1:This}) $2' -p89616 -tp89617 -a(S'getRange/3' -p89618 -S'getRange(${1:This}, ${2:From}, ${3:To}) $4' -p89619 -tp89620 -a(S'getRect/1' -p89621 -S'getRect(${1:This}) $2' -p89622 -tp89623 -a(S'getScreenPosition/1' -p89624 -S'getScreenPosition(${1:This}) $2' -p89625 -tp89626 -a(S'getScreenRect/1' -p89627 -S'getScreenRect(${1:This}) $2' -p89628 -tp89629 -a(S'getScrollPos/2' -p89630 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p89631 -tp89632 -a(S'getScrollRange/2' -p89633 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p89634 -tp89635 -a(S'getScrollThumb/2' -p89636 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p89637 -tp89638 -a(S'getSelection/1' -p89639 -S'getSelection(${1:This}) $2' -p89640 -tp89641 -a(S'getSize/1' -p89642 -S'getSize(${1:This}) $2' -p89643 -tp89644 -a(S'getSizer/1' -p89645 -S'getSizer(${1:This}) $2' -p89646 -tp89647 -a(S'getStringSelection/1' -p89648 -S'getStringSelection(${1:This}) $2' -p89649 -tp89650 -a(S'getStyle/3' -p89651 -S'getStyle(${1:This}, ${2:Position}, ${3:Style}) $4' -p89652 -tp89653 -a(S'getTextExtent/2' -p89654 -S'getTextExtent(${1:This}, ${2:String}) $3' -p89655 -tp89656 -a(S'getTextExtent/3' -p89657 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p89658 -tp89659 -a(S'getToolTip/1' -p89660 -S'getToolTip(${1:This}) $2' -p89661 -tp89662 -a(S'getUpdateRegion/1' -p89663 -S'getUpdateRegion(${1:This}) $2' -p89664 -tp89665 -a(S'getValue/1' -p89666 -S'getValue(${1:This}) $2' -p89667 -tp89668 -a(S'getVirtualSize/1' -p89669 -S'getVirtualSize(${1:This}) $2' -p89670 -tp89671 -a(S'getWindowStyleFlag/1' -p89672 -S'getWindowStyleFlag(${1:This}) $2' -p89673 -tp89674 -a(S'getWindowVariant/1' -p89675 -S'getWindowVariant(${1:This}) $2' -p89676 -tp89677 -a(S'hasCapture/1' -p89678 -S'hasCapture(${1:This}) $2' -p89679 -tp89680 -a(S'hasScrollbar/2' -p89681 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p89682 -tp89683 -a(S'hasTransparentBackground/1' -p89684 -S'hasTransparentBackground(${1:This}) $2' -p89685 -tp89686 -a(S'hide/1' -p89687 -S'hide(${1:This}) $2' -p89688 -tp89689 -a(S'inheritAttributes/1' -p89690 -S'inheritAttributes(${1:This}) $2' -p89691 -tp89692 -a(S'initDialog/1' -p89693 -S'initDialog(${1:This}) $2' -p89694 -tp89695 -a(S'invalidateBestSize/1' -p89696 -S'invalidateBestSize(${1:This}) $2' -p89697 -tp89698 -a(S'isEditable/1' -p89699 -S'isEditable(${1:This}) $2' -p89700 -tp89701 -a(S'isEnabled/1' -p89702 -S'isEnabled(${1:This}) $2' -p89703 -tp89704 -a(S'isExposed/2' -p89705 -S'isExposed(${1:This}, ${2:Pt}) $3' -p89706 -tp89707 -a(S'isExposed/3' -p89708 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p89709 -tp89710 -a(S'isExposed/5' -p89711 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p89712 -tp89713 -a(S'isModified/1' -p89714 -S'isModified(${1:This}) $2' -p89715 -tp89716 -a(S'isMultiLine/1' -p89717 -S'isMultiLine(${1:This}) $2' -p89718 -tp89719 -a(S'isRetained/1' -p89720 -S'isRetained(${1:This}) $2' -p89721 -tp89722 -a(S'isShown/1' -p89723 -S'isShown(${1:This}) $2' -p89724 -tp89725 -a(S'isSingleLine/1' -p89726 -S'isSingleLine(${1:This}) $2' -p89727 -tp89728 -a(S'isTopLevel/1' -p89729 -S'isTopLevel(${1:This}) $2' -p89730 -tp89731 -a(S'layout/1' -p89732 -S'layout(${1:This}) $2' -p89733 -tp89734 -a(S'lineDown/1' -p89735 -S'lineDown(${1:This}) $2' -p89736 -tp89737 -a(S'lineUp/1' -p89738 -S'lineUp(${1:This}) $2' -p89739 -tp89740 -a(S'loadFile/2' -p89741 -S'loadFile(${1:This}, ${2:File}) $3' -p89742 -tp89743 -a(S'loadFile/3' -p89744 -S'loadFile(${1:This}, ${2:File}, ${3:Param3}) $4' -p89745 -tp89746 -a(S'lower/1' -p89747 -S'lower(${1:This}) $2' -p89748 -tp89749 -a(S'makeModal/1' -p89750 -S'makeModal(${1:This}) $2' -p89751 -tp89752 -a(S'makeModal/2' -p89753 -S'makeModal(${1:This}, ${2:Options}) $3' -p89754 -tp89755 -a(S'markDirty/1' -p89756 -S'markDirty(${1:This}) $2' -p89757 -tp89758 -a(S'move/2' -p89759 -S'move(${1:This}, ${2:Pt}) $3' -p89760 -tp89761 -a(S'move/3' -p89762 -S'move(${1:This}, ${2:From}, ${3:To}) $4' -p89763 -tp89764 -a(S'move/4' -p89765 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p89766 -tp89767 -a(S'moveAfterInTabOrder/2' -p89768 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p89769 -tp89770 -a(S'moveBeforeInTabOrder/2' -p89771 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p89772 -tp89773 -a(S'navigate/1' -p89774 -S'navigate(${1:This}) $2' -p89775 -tp89776 -a(S'navigate/2' -p89777 -S'navigate(${1:This}, ${2:Options}) $3' -p89778 -tp89779 -a(S'new/0' -p89780 -S'new() $1' -p89781 -tp89782 -a(S'new/2' -p89783 -S'new(${1:Parent}, ${2:Id}) $3' -p89784 -tp89785 -a(S'new/3' -p89786 -S'new(${1:Parent}, ${2:Id}, ${3:Param3}) $4' -p89787 -tp89788 -a(S'pageDown/1' -p89789 -S'pageDown(${1:This}) $2' -p89790 -tp89791 -a(S'pageUp/1' -p89792 -S'pageUp(${1:This}) $2' -p89793 -tp89794 -a(S'parent_class/1' -p89795 -S'parent_class(${1:Param1}) $2' -p89796 -tp89797 -a(S'paste/1' -p89798 -S'paste(${1:This}) $2' -p89799 -tp89800 -a(S'popEventHandler/1' -p89801 -S'popEventHandler(${1:This}) $2' -p89802 -tp89803 -a(S'popEventHandler/2' -p89804 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p89805 -tp89806 -a(S'popupMenu/2' -p89807 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p89808 -tp89809 -a(S'popupMenu/3' -p89810 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p89811 -tp89812 -a(S'popupMenu/4' -p89813 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p89814 -tp89815 -a(S'positionToXY/2' -p89816 -S'positionToXY(${1:This}, ${2:Pos}) $3' -p89817 -tp89818 -a(S'raise/1' -p89819 -S'raise(${1:This}) $2' -p89820 -tp89821 -a(S'redo/1' -p89822 -S'redo(${1:This}) $2' -p89823 -tp89824 -a(S'refresh/1' -p89825 -S'refresh(${1:This}) $2' -p89826 -tp89827 -a(S'refresh/2' -p89828 -S'refresh(${1:This}, ${2:Options}) $3' -p89829 -tp89830 -a(S'refreshRect/2' -p89831 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p89832 -tp89833 -a(S'refreshRect/3' -p89834 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p89835 -tp89836 -a(S'releaseMouse/1' -p89837 -S'releaseMouse(${1:This}) $2' -p89838 -tp89839 -a(S'remove/3' -p89840 -S'remove(${1:This}, ${2:From}, ${3:To}) $4' -p89841 -tp89842 -a(S'removeChild/2' -p89843 -S'removeChild(${1:This}, ${2:Child}) $3' -p89844 -tp89845 -a(S'reparent/2' -p89846 -S'reparent(${1:This}, ${2:NewParent}) $3' -p89847 -tp89848 -a(S'replace/4' -p89849 -S'replace(${1:This}, ${2:From}, ${3:To}, ${4:Value}) $5' -p89850 -tp89851 -a(S'saveFile/1' -p89852 -S'saveFile(${1:This}) $2' -p89853 -tp89854 -a(S'saveFile/2' -p89855 -S'saveFile(${1:This}, ${2:Param2}) $3' -p89856 -tp89857 -a(S'screenToClient/1' -p89858 -S'screenToClient(${1:This}) $2' -p89859 -tp89860 -a(S'screenToClient/2' -p89861 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p89862 -tp89863 -a(S'scrollLines/2' -p89864 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p89865 -tp89866 -a(S'scrollPages/2' -p89867 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p89868 -tp89869 -a(S'scrollWindow/3' -p89870 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p89871 -tp89872 -a(S'scrollWindow/4' -p89873 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p89874 -tp89875 -a(S'setAcceleratorTable/2' -p89876 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p89877 -tp89878 -a(S'setAutoLayout/2' -p89879 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p89880 -tp89881 -a(S'setBackgroundColour/2' -p89882 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p89883 -tp89884 -a(S'setBackgroundStyle/2' -p89885 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p89886 -tp89887 -a(S'setCaret/2' -p89888 -S'setCaret(${1:This}, ${2:Caret}) $3' -p89889 -tp89890 -a(S'setClientSize/2' -p89891 -S'setClientSize(${1:This}, ${2:Size}) $3' -p89892 -tp89893 -a(S'setClientSize/3' -p89894 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p89895 -tp89896 -a(S'setContainingSizer/2' -p89897 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p89898 -tp89899 -a(S'setCursor/2' -p89900 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p89901 -tp89902 -a(S'setDefaultStyle/2' -p89903 -S'setDefaultStyle(${1:This}, ${2:Style}) $3' -p89904 -tp89905 -a(S'setDropTarget/2' -p89906 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p89907 -tp89908 -a(S'setEditable/2' -p89909 -S'setEditable(${1:This}, ${2:Editable}) $3' -p89910 -tp89911 -a(S'setExtraStyle/2' -p89912 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p89913 -tp89914 -a(S'setFocus/1' -p89915 -S'setFocus(${1:This}) $2' -p89916 -tp89917 -a(S'setFocusFromKbd/1' -p89918 -S'setFocusFromKbd(${1:This}) $2' -p89919 -tp89920 -a(S'setFont/2' -p89921 -S'setFont(${1:This}, ${2:Font}) $3' -p89922 -tp89923 -a(S'setForegroundColour/2' -p89924 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p89925 -tp89926 -a(S'setHelpText/2' -p89927 -S'setHelpText(${1:This}, ${2:Text}) $3' -p89928 -tp89929 -a(S'setId/2' -p89930 -S'setId(${1:This}, ${2:Winid}) $3' -p89931 -tp89932 -a(S'setInsertionPoint/2' -p89933 -S'setInsertionPoint(${1:This}, ${2:Pos}) $3' -p89934 -tp89935 -a(S'setInsertionPointEnd/1' -p89936 -S'setInsertionPointEnd(${1:This}) $2' -p89937 -tp89938 -a(S'setLabel/2' -p89939 -S'setLabel(${1:This}, ${2:Label}) $3' -p89940 -tp89941 -a(S'setMaxLength/2' -p89942 -S'setMaxLength(${1:This}, ${2:Len}) $3' -p89943 -tp89944 -a(S'setMaxSize/2' -p89945 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p89946 -tp89947 -a(S'setMinSize/2' -p89948 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p89949 -tp89950 -a(S'setName/2' -p89951 -S'setName(${1:This}, ${2:Name}) $3' -p89952 -tp89953 -a(S'setOwnBackgroundColour/2' -p89954 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p89955 -tp89956 -a(S'setOwnFont/2' -p89957 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p89958 -tp89959 -a(S'setOwnForegroundColour/2' -p89960 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p89961 -tp89962 -a(S'setPalette/2' -p89963 -S'setPalette(${1:This}, ${2:Pal}) $3' -p89964 -tp89965 -a(S'setScrollPos/3' -p89966 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p89967 -tp89968 -a(S'setScrollPos/4' -p89969 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p89970 -tp89971 -a(S'setScrollbar/5' -p89972 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p89973 -tp89974 -a(S'setScrollbar/6' -p89975 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p89976 -tp89977 -a(S'setSelection/3' -p89978 -S'setSelection(${1:This}, ${2:From}, ${3:To}) $4' -p89979 -tp89980 -a(S'setSize/2' -p89981 -S'setSize(${1:This}, ${2:Rect}) $3' -p89982 -tp89983 -a(S'setSize/3' -p89984 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p89985 -tp89986 -a(S'setSize/5' -p89987 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p89988 -tp89989 -a(S'setSize/6' -p89990 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p89991 -tp89992 -a(S'setSizeHints/2' -p89993 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p89994 -tp89995 -a(S'setSizeHints/3' -p89996 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p89997 -tp89998 -a(S'setSizeHints/4' -p89999 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p90000 -tp90001 -a(S'setSizer/2' -p90002 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p90003 -tp90004 -a(S'setSizer/3' -p90005 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p90006 -tp90007 -a(S'setSizerAndFit/2' -p90008 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p90009 -tp90010 -a(S'setSizerAndFit/3' -p90011 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p90012 -tp90013 -a(S'setStyle/4' -p90014 -S'setStyle(${1:This}, ${2:Start}, ${3:End}, ${4:Style}) $5' -p90015 -tp90016 -a(S'setThemeEnabled/2' -p90017 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p90018 -tp90019 -a(S'setToolTip/2' -p90020 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p90021 -tp90022 -a(S'setValue/2' -p90023 -S'setValue(${1:This}, ${2:Value}) $3' -p90024 -tp90025 -a(S'setVirtualSize/2' -p90026 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p90027 -tp90028 -a(S'setVirtualSize/3' -p90029 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p90030 -tp90031 -a(S'setVirtualSizeHints/2' -p90032 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p90033 -tp90034 -a(S'setVirtualSizeHints/3' -p90035 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p90036 -tp90037 -a(S'setVirtualSizeHints/4' -p90038 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p90039 -tp90040 -a(S'setWindowStyle/2' -p90041 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p90042 -tp90043 -a(S'setWindowStyleFlag/2' -p90044 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p90045 -tp90046 -a(S'setWindowVariant/2' -p90047 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p90048 -tp90049 -a(S'shouldInheritColours/1' -p90050 -S'shouldInheritColours(${1:This}) $2' -p90051 -tp90052 -a(S'show/1' -p90053 -S'show(${1:This}) $2' -p90054 -tp90055 -a(S'show/2' -p90056 -S'show(${1:This}, ${2:Options}) $3' -p90057 -tp90058 -a(S'showPosition/2' -p90059 -S'showPosition(${1:This}, ${2:Pos}) $3' -p90060 -tp90061 -a(S'thaw/1' -p90062 -S'thaw(${1:This}) $2' -p90063 -tp90064 -a(S'transferDataFromWindow/1' -p90065 -S'transferDataFromWindow(${1:This}) $2' -p90066 -tp90067 -a(S'transferDataToWindow/1' -p90068 -S'transferDataToWindow(${1:This}) $2' -p90069 -tp90070 -a(S'undo/1' -p90071 -S'undo(${1:This}) $2' -p90072 -tp90073 -a(S'update/1' -p90074 -S'update(${1:This}) $2' -p90075 -tp90076 -a(S'updateWindowUI/1' -p90077 -S'updateWindowUI(${1:This}) $2' -p90078 -tp90079 -a(S'updateWindowUI/2' -p90080 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p90081 -tp90082 -a(S'validate/1' -p90083 -S'validate(${1:This}) $2' -p90084 -tp90085 -a(S'warpPointer/3' -p90086 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p90087 -tp90088 -a(S'writeText/2' -p90089 -S'writeText(${1:This}, ${2:Text}) $3' -p90090 -tp90091 -a(S'xYToPosition/3' -p90092 -S'xYToPosition(${1:This}, ${2:X}, ${3:Y}) $4' -p90093 -tp90094 -asS'wxLayoutAlgorithm' -p90095 -(lp90096 -(S'destroy/1' -p90097 -S'destroy(${1:This}) $2' -p90098 -tp90099 -a(S'layoutFrame/2' -p90100 -S'layoutFrame(${1:This}, ${2:Frame}) $3' -p90101 -tp90102 -a(S'layoutFrame/3' -p90103 -S'layoutFrame(${1:This}, ${2:Frame}, ${3:Param3}) $4' -p90104 -tp90105 -a(S'layoutMDIFrame/2' -p90106 -S'layoutMDIFrame(${1:This}, ${2:Frame}) $3' -p90107 -tp90108 -a(S'layoutMDIFrame/3' -p90109 -S'layoutMDIFrame(${1:This}, ${2:Frame}, ${3:Param3}) $4' -p90110 -tp90111 -a(S'layoutWindow/2' -p90112 -S'layoutWindow(${1:This}, ${2:Frame}) $3' -p90113 -tp90114 -a(S'layoutWindow/3' -p90115 -S'layoutWindow(${1:This}, ${2:Frame}, ${3:Param3}) $4' -p90116 -tp90117 -a(S'new/0' -p90118 -S'new() $1' -p90119 -tp90120 -a(S'parent_class/1' -p90121 -S'parent_class(${1:Param1}) $2' -p90122 -tp90123 -asS'tftp_sup' -p90124 -(lp90125 -(S'init/1' -p90126 -S'init(${1:Param1}) $2' -p90127 -tp90128 -a(S'start_child/1' -p90129 -S'start_child(${1:Options}) $2' -p90130 -tp90131 -a(S'start_link/1' -p90132 -S'start_link(${1:TftpServices}) $2' -p90133 -tp90134 -a(S'stop_child/1' -p90135 -S'stop_child(${1:Pid}) $2' -p90136 -tp90137 -a(S'which_children/0' -p90138 -S'which_children() $1' -p90139 -tp90140 -asS'appmon_a' -p90141 -(lp90142 -(S'code_change/3' -p90143 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p90144 -tp90145 -a(S'handle_call/3' -p90146 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p90147 -tp90148 -a(S'handle_cast/2' -p90149 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p90150 -tp90151 -a(S'handle_info/2' -p90152 -S'handle_info(${1:Param1}, ${2:State}) $3' -p90153 -tp90154 -a(S'init/1' -p90155 -S'init(${1:Param1}) $2' -p90156 -tp90157 -a(S'start/2' -p90158 -S'start(${1:NodeName}, ${2:AppName}) $3' -p90159 -tp90160 -a(S'start/3' -p90161 -S'start(${1:NodeName}, ${2:AppName}, ${3:AppId}) $4' -p90162 -tp90163 -a(S'stop/0' -p90164 -S'stop() $1' -p90165 -tp90166 -a(S'terminate/2' -p90167 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p90168 -tp90169 -asS'lib' -p90170 -(lp90171 -(S'error_message/2' -p90172 -S'error_message(${1:Format}, ${2:Args}) $3' -p90173 -tp90174 -a(S'eval_str/1' -p90175 -S'eval_str(${1:Str}) $2' -p90176 -tp90177 -a(S'flush_receive/0' -p90178 -S'flush_receive() $1' -p90179 -tp90180 -a(S'format_call/4' -p90181 -S'format_call() $1' -p90182 -tp90183 -a(S'format_exception/6' -p90184 -S'format_exception() $1' -p90185 -tp90186 -a(S'format_fun/1' -p90187 -S'format_fun(${1:Fun}) $2' -p90188 -tp90189 -a(S'format_stacktrace/4' -p90190 -S'format_stacktrace() $1' -p90191 -tp90192 -a(S'nonl/1' -p90193 -S'nonl(${1:String1}) $2' -p90194 -tp90195 -a(S'progname/0' -p90196 -S'progname() $1' -p90197 -tp90198 -a(S'send/2' -p90199 -S'send(${1:To}, ${2:Msg}) $3' -p90200 -tp90201 -a(S'sendw/2' -p90202 -S'sendw(${1:To}, ${2:Msg}) $3' -p90203 -tp90204 -asS'megaco_text_parser_v1' -p90205 -(lp90206 -(S'format_error/1' -p90207 -S'format_error(${1:Message}) $2' -p90208 -tp90209 -a(S'parse/1' -p90210 -S'parse(${1:Tokens}) $2' -p90211 -tp90212 -a(S'parse_and_scan/1' -p90213 -S'parse_and_scan(${1:Param1}) $2' -p90214 -tp90215 -asS'mnesia_snmp_sup' -p90216 -(lp90217 -(S'init/1' -p90218 -S'init(${1:Param1}) $2' -p90219 -tp90220 -a(S'start/0' -p90221 -S'start() $1' -p90222 -tp90223 -asS'dbg_ui_win' -p90224 -(lp90225 -(S'add_break/2' -p90226 -S'add_break(${1:Menu}, ${2:Point}) $3' -p90227 -tp90228 -a(S'create_menus/2' -p90229 -S'create_menus(${1:MenuBar}, ${2:Param2}) $3' -p90230 -tp90231 -a(S'delete_break/1' -p90232 -S'delete_break(${1:Break}) $2' -p90233 -tp90234 -a(S'font/1' -p90235 -S'font(${1:Style}) $2' -p90236 -tp90237 -a(S'init/0' -p90238 -S'init() $1' -p90239 -tp90240 -a(S'min_size/3' -p90241 -S'min_size(${1:Strings}, ${2:MinW}, ${3:MinH}) $4' -p90242 -tp90243 -a(S'min_size/4' -p90244 -S'min_size(${1:Font}, ${2:Strings}, ${3:MinW}, ${4:MinH}) $5' -p90245 -tp90246 -a(S'motion/2' -p90247 -S'motion(${1:X}, ${2:Y}) $3' -p90248 -tp90249 -a(S'select/2' -p90250 -S'select(${1:MenuItem}, ${2:Bool}) $3' -p90251 -tp90252 -a(S'selected/1' -p90253 -S'selected(${1:Menu}) $2' -p90254 -tp90255 -a(S'update_break/2' -p90256 -S'update_break(${1:Break}, ${2:Options}) $3' -p90257 -tp90258 -asS'snmpa_set_mechanism' -p90259 -(lp90260 -(S'behaviour_info/1' -p90261 -S'behaviour_info(${1:Param1}) $2' -p90262 -tp90263 -asS'ssl_debug' -p90264 -(lp90265 -(S'hex_data/2' -p90266 -S'hex_data(${1:Name}, ${2:Data}) $3' -p90267 -tp90268 -a(S'hex_data/4' -p90269 -S'hex_data(${1:Name}, ${2:Data}, ${3:Mod}, ${4:Line}) $5' -p90270 -tp90271 -a(S'hexd/1' -p90272 -S'hexd(${1:B}) $2' -p90273 -tp90274 -a(S'make_binary/1' -p90275 -S'make_binary(${1:Size}) $2' -p90276 -tp90277 -a(S'term_data/2' -p90278 -S'term_data(${1:Name}, ${2:Term}) $3' -p90279 -tp90280 -a(S'term_data/4' -p90281 -S'term_data(${1:Name}, ${2:Term}, ${3:Mod}, ${4:Line}) $5' -p90282 -tp90283 -a(S'unhex/1' -p90284 -S'unhex(${1:S}) $2' -p90285 -tp90286 -asS'diameter_dict_scanner' -p90287 -(lp90288 -(S'format_error/1' -p90289 -S'format_error(${1:Param1}) $2' -p90290 -tp90291 -a(S'is_name/1' -p90292 -S'is_name(${1:Param1}) $2' -p90293 -tp90294 -a(S'scan/1' -p90295 -S'scan(${1:S}) $2' -p90296 -tp90297 -asS'ssl_connection_sup' -p90298 -(lp90299 -(S'init/1' -p90300 -S'init(${1:Param1}) $2' -p90301 -tp90302 -a(S'start_child/1' -p90303 -S'start_child(${1:Args}) $2' -p90304 -tp90305 -a(S'start_child_dist/1' -p90306 -S'start_child_dist(${1:Args}) $2' -p90307 -tp90308 -a(S'start_link/0' -p90309 -S'start_link() $1' -p90310 -tp90311 -a(S'start_link_dist/0' -p90312 -S'start_link_dist() $1' -p90313 -tp90314 -asS'digraph_utils' -p90315 -(lp90316 -(S'arborescence_root/1' -p90317 -S'arborescence_root(${1:Digraph}) $2' -p90318 -tp90319 -a(S'components/1' -p90320 -S'components(${1:Digraph}) $2' -p90321 -tp90322 -a(S'condensation/1' -p90323 -S'condensation(${1:Digraph}) $2' -p90324 -tp90325 -a(S'cyclic_strong_components/1' -p90326 -S'cyclic_strong_components(${1:Digraph}) $2' -p90327 -tp90328 -a(S'is_acyclic/1' -p90329 -S'is_acyclic(${1:Digraph}) $2' -p90330 -tp90331 -a(S'is_arborescence/1' -p90332 -S'is_arborescence(${1:Digraph}) $2' -p90333 -tp90334 -a(S'is_tree/1' -p90335 -S'is_tree(${1:Digraph}) $2' -p90336 -tp90337 -a(S'loop_vertices/1' -p90338 -S'loop_vertices(${1:Digraph}) $2' -p90339 -tp90340 -a(S'postorder/1' -p90341 -S'postorder(${1:Digraph}) $2' -p90342 -tp90343 -a(S'preorder/1' -p90344 -S'preorder(${1:Digraph}) $2' -p90345 -tp90346 -a(S'reachable/2' -p90347 -S'reachable(${1:Vertices}, ${2:Digraph}) $3' -p90348 -tp90349 -a(S'reachable_neighbours/2' -p90350 -S'reachable_neighbours(${1:Vertices}, ${2:Digraph}) $3' -p90351 -tp90352 -a(S'reaching/2' -p90353 -S'reaching(${1:Vertices}, ${2:Digraph}) $3' -p90354 -tp90355 -a(S'reaching_neighbours/2' -p90356 -S'reaching_neighbours(${1:Vertices}, ${2:Digraph}) $3' -p90357 -tp90358 -a(S'strong_components/1' -p90359 -S'strong_components(${1:Digraph}) $2' -p90360 -tp90361 -a(S'subgraph/2' -p90362 -S'subgraph(${1:Digraph}, ${2:Vertices}) $3' -p90363 -tp90364 -a(S'subgraph/3' -p90365 -S'subgraph(${1:Digraph}, ${2:Vertices}, ${3:Options}) $4' -p90366 -tp90367 -a(S'topsort/1' -p90368 -S'topsort(${1:Digraph}) $2' -p90369 -tp90370 -asS'diameter_exprecs' -p90371 -(lp90372 -(S'parse_transform/2' -p90373 -S'parse_transform(${1:Forms}, ${2:Param2}) $3' -p90374 -tp90375 -asS'tv_pg_gridfcns' -p90376 -(lp90377 -(S'handle_list_info/2' -p90378 -S'handle_list_info(${1:ListAsStr}, ${2:ProcVars}) $3' -p90379 -tp90380 -a(S'init_grid/8' -p90381 -S'init_grid() $1' -p90382 -tp90383 -a(S'mark_cell_and_notify/4' -p90384 -S'mark_cell_and_notify(${1:CellId}, ${2:RealCol}, ${3:RealRow}, ${4:ProcVars}) $5' -p90385 -tp90386 -a(S'mark_col/2' -p90387 -S'mark_col(${1:VirtualCol}, ${2:ProcVars}) $3' -p90388 -tp90389 -a(S'mark_row/2' -p90390 -S'mark_row(${1:VirtualRow}, ${2:ProcVars}) $3' -p90391 -tp90392 -a(S'remove_marks/1' -p90393 -S'remove_marks(${1:ProcVars}) $2' -p90394 -tp90395 -a(S'resize_grid/3' -p90396 -S'resize_grid(${1:NewWidth}, ${2:NewHeight}, ${3:ProcVars}) $4' -p90397 -tp90398 -a(S'resize_grid_column/4' -p90399 -S'resize_grid_column(${1:RealCol}, ${2:VirtualCol}, ${3:Xdiff}, ${4:ProcVars}) $5' -p90400 -tp90401 -a(S'scroll_grid_horizontally/2' -p90402 -S'scroll_grid_horizontally(${1:NewFirstColShown}, ${2:ProcVars}) $3' -p90403 -tp90404 -a(S'update_grid_data/3' -p90405 -S'update_grid_data(${1:Data}, ${2:FirstRowShown}, ${3:ProcVars}) $4' -p90406 -tp90407 -asS'oe_CosEventComm_Channel_impl' -p90408 -(lp90409 -(S'code_change/3' -p90410 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p90411 -tp90412 -a(S'destroy/3' -p90413 -S'destroy(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p90414 -tp90415 -a(S'for_consumers/3' -p90416 -S'for_consumers(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p90417 -tp90418 -a(S'for_suppliers/3' -p90419 -S'for_suppliers(${1:OE_This}, ${2:Param2}, ${3:State}) $4' -p90420 -tp90421 -a(S'handle_info/2' -p90422 -S'handle_info(${1:Param1}, ${2:State}) $3' -p90423 -tp90424 -a(S'init/1' -p90425 -S'init(${1:Param1}) $2' -p90426 -tp90427 -a(S'send/3' -p90428 -S'send(${1:Param1}, ${2:State}, ${3:Any}) $4' -p90429 -tp90430 -a(S'send_sync/4' -p90431 -S'send_sync(${1:Param1}, ${2:OE_From}, ${3:State}, ${4:Any}) $5' -p90432 -tp90433 -a(S'terminate/2' -p90434 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p90435 -tp90436 -asS'eunit_striptests' -p90437 -(lp90438 -(S'parse_transform/2' -p90439 -S'parse_transform(${1:Forms}, ${2:Options}) $3' -p90440 -tp90441 -asS'cover' -p90442 -(lp90443 -(S'analyse/1' -p90444 -S'analyse(${1:Module}) $2' -p90445 -tp90446 -a(S'analyse/2' -p90447 -S'analyse() $1' -p90448 -tp90449 -a(S'analyse/3' -p90450 -S'analyse() $1' -p90451 -tp90452 -a(S'analyse_to_file/1' -p90453 -S'analyse_to_file(${1:Module}) $2' -p90454 -tp90455 -a(S'analyse_to_file/2' -p90456 -S'analyse_to_file(${1:Module}, ${2:OutFile}) $3' -p90457 -tp90458 -a(S'analyse_to_file/3' -p90459 -S'analyse_to_file(${1:Module}, ${2:OutFile}, ${3:Options}) $4' -p90460 -tp90461 -a(S'analyze/1' -p90462 -S'analyze(${1:Module}) $2' -p90463 -tp90464 -a(S'analyze/2' -p90465 -S'analyze(${1:Module}, ${2:Analysis}) $3' -p90466 -tp90467 -a(S'analyze/3' -p90468 -S'analyze(${1:Module}, ${2:Analysis}, ${3:Level}) $4' -p90469 -tp90470 -a(S'analyze_to_file/1' -p90471 -S'analyze_to_file(${1:Module}) $2' -p90472 -tp90473 -a(S'analyze_to_file/2' -p90474 -S'analyze_to_file(${1:Module}, ${2:OptOrOut}) $3' -p90475 -tp90476 -a(S'analyze_to_file/3' -p90477 -S'analyze_to_file(${1:Module}, ${2:OutFile}, ${3:Options}) $4' -p90478 -tp90479 -a(S'async_analyse_to_file/1' -p90480 -S'async_analyse_to_file(${1:Module}) $2' -p90481 -tp90482 -a(S'async_analyse_to_file/2' -p90483 -S'async_analyse_to_file(${1:Module}, ${2:OutFileOrOpts}) $3' -p90484 -tp90485 -a(S'async_analyse_to_file/3' -p90486 -S'async_analyse_to_file(${1:Module}, ${2:OutFile}, ${3:Options}) $4' -p90487 -tp90488 -a(S'async_analyze_to_file/1' -p90489 -S'async_analyze_to_file(${1:Module}) $2' -p90490 -tp90491 -a(S'async_analyze_to_file/2' -p90492 -S'async_analyze_to_file(${1:Module}, ${2:OutFileOrOpts}) $3' -p90493 -tp90494 -a(S'async_analyze_to_file/3' -p90495 -S'async_analyze_to_file(${1:Module}, ${2:OutFile}, ${3:Options}) $4' -p90496 -tp90497 -a(S'compile/1' -p90498 -S'compile(${1:ModFile}) $2' -p90499 -tp90500 -a(S'compile/2' -p90501 -S'compile(${1:ModFile}, ${2:Options}) $3' -p90502 -tp90503 -a(S'compile_beam/1' -p90504 -S'compile_beam(${1:Module}) $2' -p90505 -tp90506 -a(S'compile_beam_directory/0' -p90507 -S'compile_beam_directory() $1' -p90508 -tp90509 -a(S'compile_beam_directory/1' -p90510 -S'compile_beam_directory(${1:Dir}) $2' -p90511 -tp90512 -a(S'compile_directory/0' -p90513 -S'compile_directory() $1' -p90514 -tp90515 -a(S'compile_directory/1' -p90516 -S'compile_directory(${1:Dir}) $2' -p90517 -tp90518 -a(S'compile_directory/2' -p90519 -S'compile_directory(${1:Dir}, ${2:Options}) $3' -p90520 -tp90521 -a(S'compile_module/1' -p90522 -S'compile_module() $1' -p90523 -tp90524 -a(S'compile_module/2' -p90525 -S'compile_module(${1:Module}, ${2:Options}) $3' -p90526 -tp90527 -a(S'export/1' -p90528 -S'export(${1:File}) $2' -p90529 -tp90530 -a(S'export/2' -p90531 -S'export(${1:File}, ${2:Module}) $3' -p90532 -tp90533 -a(S'import/1' -p90534 -S'import(${1:File}) $2' -p90535 -tp90536 -a(S'imported/0' -p90537 -S'imported() $1' -p90538 -tp90539 -a(S'imported_modules/0' -p90540 -S'imported_modules() $1' -p90541 -tp90542 -a(S'is_compiled/1' -p90543 -S'is_compiled(${1:Module}) $2' -p90544 -tp90545 -a(S'modules/0' -p90546 -S'modules() $1' -p90547 -tp90548 -a(S'remote_start/1' -p90549 -S'remote_start(${1:MainNode}) $2' -p90550 -tp90551 -a(S'reset/0' -p90552 -S'reset() $1' -p90553 -tp90554 -a(S'reset/1' -p90555 -S'reset(${1:Module}) $2' -p90556 -tp90557 -a(S'start/0' -p90558 -S'start() $1' -p90559 -tp90560 -a(S'start/1' -p90561 -S'start(${1:Node}) $2' -p90562 -tp90563 -a(S'stop/0' -p90564 -S'stop() $1' -p90565 -tp90566 -a(S'stop/1' -p90567 -S'stop(${1:Node}) $2' -p90568 -tp90569 -a(S'transform/4' -p90570 -S'transform(${1:Param1}, ${2:Code}, ${3:Module}, ${4:Param4}) $5' -p90571 -tp90572 -a(S'which_nodes/0' -p90573 -S'which_nodes() $1' -p90574 -tp90575 -asS'CosNotifyFilter_MappingFilter_impl' -p90576 -(lp90577 -(S"'_get_constraint_grammar'/2" -p90578 -S"'_get_constraint_grammar'(${1:Param1}, ${2:State}) $3" -p90579 -tp90580 -a(S"'_get_default_value'/2" -p90581 -S"'_get_default_value'(${1:Param1}, ${2:State}) $3" -p90582 -tp90583 -a(S"'_get_value_type'/2" -p90584 -S"'_get_value_type'(${1:Param1}, ${2:State}) $3" -p90585 -tp90586 -a(S'add_mapping_constraints/3' -p90587 -S'add_mapping_constraints(${1:Param1}, ${2:State}, ${3:Pairs}) $4' -p90588 -tp90589 -a(S'code_change/3' -p90590 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p90591 -tp90592 -a(S'destroy/2' -p90593 -S'destroy(${1:Param1}, ${2:State}) $3' -p90594 -tp90595 -a(S'get_all_mapping_constraints/2' -p90596 -S'get_all_mapping_constraints(${1:Param1}, ${2:State}) $3' -p90597 -tp90598 -a(S'get_mapping_constraints/3' -p90599 -S'get_mapping_constraints(${1:Param1}, ${2:State}, ${3:IDs}) $4' -p90600 -tp90601 -a(S'handle_info/2' -p90602 -S'handle_info(${1:Info}, ${2:State}) $3' -p90603 -tp90604 -a(S'init/1' -p90605 -S'init(${1:Param1}) $2' -p90606 -tp90607 -a(S'match/3' -p90608 -S'match(${1:Param1}, ${2:State}, ${3:Event}) $4' -p90609 -tp90610 -a(S'match_structured/3' -p90611 -S'match_structured(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p90612 -tp90613 -a(S'match_typed/3' -p90614 -S'match_typed(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p90615 -tp90616 -a(S'modify_mapping_constraints/4' -p90617 -S'modify_mapping_constraints(${1:Param1}, ${2:State}, ${3:IDs}, ${4:InfoSeq}) $5' -p90618 -tp90619 -a(S'remove_all_mapping_constraints/2' -p90620 -S'remove_all_mapping_constraints(${1:Param1}, ${2:State}) $3' -p90621 -tp90622 -a(S'terminate/2' -p90623 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p90624 -tp90625 -asS'wxSlider' -p90626 -(lp90627 -(S'cacheBestSize/2' -p90628 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p90629 -tp90630 -a(S'captureMouse/1' -p90631 -S'captureMouse(${1:This}) $2' -p90632 -tp90633 -a(S'center/1' -p90634 -S'center(${1:This}) $2' -p90635 -tp90636 -a(S'center/2' -p90637 -S'center(${1:This}, ${2:Options}) $3' -p90638 -tp90639 -a(S'centerOnParent/1' -p90640 -S'centerOnParent(${1:This}) $2' -p90641 -tp90642 -a(S'centerOnParent/2' -p90643 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p90644 -tp90645 -a(S'centre/1' -p90646 -S'centre(${1:This}) $2' -p90647 -tp90648 -a(S'centre/2' -p90649 -S'centre(${1:This}, ${2:Options}) $3' -p90650 -tp90651 -a(S'centreOnParent/1' -p90652 -S'centreOnParent(${1:This}) $2' -p90653 -tp90654 -a(S'centreOnParent/2' -p90655 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p90656 -tp90657 -a(S'clearBackground/1' -p90658 -S'clearBackground(${1:This}) $2' -p90659 -tp90660 -a(S'clientToScreen/2' -p90661 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p90662 -tp90663 -a(S'clientToScreen/3' -p90664 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p90665 -tp90666 -a(S'close/1' -p90667 -S'close(${1:This}) $2' -p90668 -tp90669 -a(S'close/2' -p90670 -S'close(${1:This}, ${2:Options}) $3' -p90671 -tp90672 -a(S'connect/2' -p90673 -S'connect(${1:This}, ${2:EventType}) $3' -p90674 -tp90675 -a(S'connect/3' -p90676 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p90677 -tp90678 -a(S'convertDialogToPixels/2' -p90679 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p90680 -tp90681 -a(S'convertPixelsToDialog/2' -p90682 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p90683 -tp90684 -a(S'create/6' -p90685 -S'create(${1:This}, ${2:Parent}, ${3:Id}, ${4:Value}, ${5:MinValue}, ${6:MaxValue}) $7' -p90686 -tp90687 -a(S'create/7' -p90688 -S'create(${1:This}, ${2:Parent}, ${3:Id}, ${4:Value}, ${5:MinValue}, ${6:MaxValue}, ${7:Param7}) $8' -p90689 -tp90690 -a(S'destroy/1' -p90691 -S'destroy(${1:This}) $2' -p90692 -tp90693 -a(S'destroyChildren/1' -p90694 -S'destroyChildren(${1:This}) $2' -p90695 -tp90696 -a(S'disable/1' -p90697 -S'disable(${1:This}) $2' -p90698 -tp90699 -a(S'disconnect/1' -p90700 -S'disconnect(${1:This}) $2' -p90701 -tp90702 -a(S'disconnect/2' -p90703 -S'disconnect(${1:This}, ${2:EventType}) $3' -p90704 -tp90705 -a(S'disconnect/3' -p90706 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p90707 -tp90708 -a(S'enable/1' -p90709 -S'enable(${1:This}) $2' -p90710 -tp90711 -a(S'enable/2' -p90712 -S'enable(${1:This}, ${2:Options}) $3' -p90713 -tp90714 -a(S'findWindow/2' -p90715 -S'findWindow(${1:This}, ${2:Winid}) $3' -p90716 -tp90717 -a(S'fit/1' -p90718 -S'fit(${1:This}) $2' -p90719 -tp90720 -a(S'fitInside/1' -p90721 -S'fitInside(${1:This}) $2' -p90722 -tp90723 -a(S'freeze/1' -p90724 -S'freeze(${1:This}) $2' -p90725 -tp90726 -a(S'getAcceleratorTable/1' -p90727 -S'getAcceleratorTable(${1:This}) $2' -p90728 -tp90729 -a(S'getBackgroundColour/1' -p90730 -S'getBackgroundColour(${1:This}) $2' -p90731 -tp90732 -a(S'getBackgroundStyle/1' -p90733 -S'getBackgroundStyle(${1:This}) $2' -p90734 -tp90735 -a(S'getBestSize/1' -p90736 -S'getBestSize(${1:This}) $2' -p90737 -tp90738 -a(S'getCaret/1' -p90739 -S'getCaret(${1:This}) $2' -p90740 -tp90741 -a(S'getCharHeight/1' -p90742 -S'getCharHeight(${1:This}) $2' -p90743 -tp90744 -a(S'getCharWidth/1' -p90745 -S'getCharWidth(${1:This}) $2' -p90746 -tp90747 -a(S'getChildren/1' -p90748 -S'getChildren(${1:This}) $2' -p90749 -tp90750 -a(S'getClientSize/1' -p90751 -S'getClientSize(${1:This}) $2' -p90752 -tp90753 -a(S'getContainingSizer/1' -p90754 -S'getContainingSizer(${1:This}) $2' -p90755 -tp90756 -a(S'getCursor/1' -p90757 -S'getCursor(${1:This}) $2' -p90758 -tp90759 -a(S'getDropTarget/1' -p90760 -S'getDropTarget(${1:This}) $2' -p90761 -tp90762 -a(S'getEventHandler/1' -p90763 -S'getEventHandler(${1:This}) $2' -p90764 -tp90765 -a(S'getExtraStyle/1' -p90766 -S'getExtraStyle(${1:This}) $2' -p90767 -tp90768 -a(S'getFont/1' -p90769 -S'getFont(${1:This}) $2' -p90770 -tp90771 -a(S'getForegroundColour/1' -p90772 -S'getForegroundColour(${1:This}) $2' -p90773 -tp90774 -a(S'getGrandParent/1' -p90775 -S'getGrandParent(${1:This}) $2' -p90776 -tp90777 -a(S'getHandle/1' -p90778 -S'getHandle(${1:This}) $2' -p90779 -tp90780 -a(S'getHelpText/1' -p90781 -S'getHelpText(${1:This}) $2' -p90782 -tp90783 -a(S'getId/1' -p90784 -S'getId(${1:This}) $2' -p90785 -tp90786 -a(S'getLabel/1' -p90787 -S'getLabel(${1:This}) $2' -p90788 -tp90789 -a(S'getLineSize/1' -p90790 -S'getLineSize(${1:This}) $2' -p90791 -tp90792 -a(S'getMax/1' -p90793 -S'getMax(${1:This}) $2' -p90794 -tp90795 -a(S'getMaxSize/1' -p90796 -S'getMaxSize(${1:This}) $2' -p90797 -tp90798 -a(S'getMin/1' -p90799 -S'getMin(${1:This}) $2' -p90800 -tp90801 -a(S'getMinSize/1' -p90802 -S'getMinSize(${1:This}) $2' -p90803 -tp90804 -a(S'getName/1' -p90805 -S'getName(${1:This}) $2' -p90806 -tp90807 -a(S'getPageSize/1' -p90808 -S'getPageSize(${1:This}) $2' -p90809 -tp90810 -a(S'getParent/1' -p90811 -S'getParent(${1:This}) $2' -p90812 -tp90813 -a(S'getPosition/1' -p90814 -S'getPosition(${1:This}) $2' -p90815 -tp90816 -a(S'getRect/1' -p90817 -S'getRect(${1:This}) $2' -p90818 -tp90819 -a(S'getScreenPosition/1' -p90820 -S'getScreenPosition(${1:This}) $2' -p90821 -tp90822 -a(S'getScreenRect/1' -p90823 -S'getScreenRect(${1:This}) $2' -p90824 -tp90825 -a(S'getScrollPos/2' -p90826 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p90827 -tp90828 -a(S'getScrollRange/2' -p90829 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p90830 -tp90831 -a(S'getScrollThumb/2' -p90832 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p90833 -tp90834 -a(S'getSize/1' -p90835 -S'getSize(${1:This}) $2' -p90836 -tp90837 -a(S'getSizer/1' -p90838 -S'getSizer(${1:This}) $2' -p90839 -tp90840 -a(S'getTextExtent/2' -p90841 -S'getTextExtent(${1:This}, ${2:String}) $3' -p90842 -tp90843 -a(S'getTextExtent/3' -p90844 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p90845 -tp90846 -a(S'getThumbLength/1' -p90847 -S'getThumbLength(${1:This}) $2' -p90848 -tp90849 -a(S'getToolTip/1' -p90850 -S'getToolTip(${1:This}) $2' -p90851 -tp90852 -a(S'getUpdateRegion/1' -p90853 -S'getUpdateRegion(${1:This}) $2' -p90854 -tp90855 -a(S'getValue/1' -p90856 -S'getValue(${1:This}) $2' -p90857 -tp90858 -a(S'getVirtualSize/1' -p90859 -S'getVirtualSize(${1:This}) $2' -p90860 -tp90861 -a(S'getWindowStyleFlag/1' -p90862 -S'getWindowStyleFlag(${1:This}) $2' -p90863 -tp90864 -a(S'getWindowVariant/1' -p90865 -S'getWindowVariant(${1:This}) $2' -p90866 -tp90867 -a(S'hasCapture/1' -p90868 -S'hasCapture(${1:This}) $2' -p90869 -tp90870 -a(S'hasScrollbar/2' -p90871 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p90872 -tp90873 -a(S'hasTransparentBackground/1' -p90874 -S'hasTransparentBackground(${1:This}) $2' -p90875 -tp90876 -a(S'hide/1' -p90877 -S'hide(${1:This}) $2' -p90878 -tp90879 -a(S'inheritAttributes/1' -p90880 -S'inheritAttributes(${1:This}) $2' -p90881 -tp90882 -a(S'initDialog/1' -p90883 -S'initDialog(${1:This}) $2' -p90884 -tp90885 -a(S'invalidateBestSize/1' -p90886 -S'invalidateBestSize(${1:This}) $2' -p90887 -tp90888 -a(S'isEnabled/1' -p90889 -S'isEnabled(${1:This}) $2' -p90890 -tp90891 -a(S'isExposed/2' -p90892 -S'isExposed(${1:This}, ${2:Pt}) $3' -p90893 -tp90894 -a(S'isExposed/3' -p90895 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p90896 -tp90897 -a(S'isExposed/5' -p90898 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p90899 -tp90900 -a(S'isRetained/1' -p90901 -S'isRetained(${1:This}) $2' -p90902 -tp90903 -a(S'isShown/1' -p90904 -S'isShown(${1:This}) $2' -p90905 -tp90906 -a(S'isTopLevel/1' -p90907 -S'isTopLevel(${1:This}) $2' -p90908 -tp90909 -a(S'layout/1' -p90910 -S'layout(${1:This}) $2' -p90911 -tp90912 -a(S'lineDown/1' -p90913 -S'lineDown(${1:This}) $2' -p90914 -tp90915 -a(S'lineUp/1' -p90916 -S'lineUp(${1:This}) $2' -p90917 -tp90918 -a(S'lower/1' -p90919 -S'lower(${1:This}) $2' -p90920 -tp90921 -a(S'makeModal/1' -p90922 -S'makeModal(${1:This}) $2' -p90923 -tp90924 -a(S'makeModal/2' -p90925 -S'makeModal(${1:This}, ${2:Options}) $3' -p90926 -tp90927 -a(S'move/2' -p90928 -S'move(${1:This}, ${2:Pt}) $3' -p90929 -tp90930 -a(S'move/3' -p90931 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p90932 -tp90933 -a(S'move/4' -p90934 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p90935 -tp90936 -a(S'moveAfterInTabOrder/2' -p90937 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p90938 -tp90939 -a(S'moveBeforeInTabOrder/2' -p90940 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p90941 -tp90942 -a(S'navigate/1' -p90943 -S'navigate(${1:This}) $2' -p90944 -tp90945 -a(S'navigate/2' -p90946 -S'navigate(${1:This}, ${2:Options}) $3' -p90947 -tp90948 -a(S'new/0' -p90949 -S'new() $1' -p90950 -tp90951 -a(S'new/5' -p90952 -S'new(${1:Parent}, ${2:Id}, ${3:Value}, ${4:MinValue}, ${5:MaxValue}) $6' -p90953 -tp90954 -a(S'new/6' -p90955 -S'new(${1:Parent}, ${2:Id}, ${3:Value}, ${4:MinValue}, ${5:MaxValue}, ${6:Param6}) $7' -p90956 -tp90957 -a(S'pageDown/1' -p90958 -S'pageDown(${1:This}) $2' -p90959 -tp90960 -a(S'pageUp/1' -p90961 -S'pageUp(${1:This}) $2' -p90962 -tp90963 -a(S'parent_class/1' -p90964 -S'parent_class(${1:Param1}) $2' -p90965 -tp90966 -a(S'popEventHandler/1' -p90967 -S'popEventHandler(${1:This}) $2' -p90968 -tp90969 -a(S'popEventHandler/2' -p90970 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p90971 -tp90972 -a(S'popupMenu/2' -p90973 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p90974 -tp90975 -a(S'popupMenu/3' -p90976 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p90977 -tp90978 -a(S'popupMenu/4' -p90979 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p90980 -tp90981 -a(S'raise/1' -p90982 -S'raise(${1:This}) $2' -p90983 -tp90984 -a(S'refresh/1' -p90985 -S'refresh(${1:This}) $2' -p90986 -tp90987 -a(S'refresh/2' -p90988 -S'refresh(${1:This}, ${2:Options}) $3' -p90989 -tp90990 -a(S'refreshRect/2' -p90991 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p90992 -tp90993 -a(S'refreshRect/3' -p90994 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p90995 -tp90996 -a(S'releaseMouse/1' -p90997 -S'releaseMouse(${1:This}) $2' -p90998 -tp90999 -a(S'removeChild/2' -p91000 -S'removeChild(${1:This}, ${2:Child}) $3' -p91001 -tp91002 -a(S'reparent/2' -p91003 -S'reparent(${1:This}, ${2:NewParent}) $3' -p91004 -tp91005 -a(S'screenToClient/1' -p91006 -S'screenToClient(${1:This}) $2' -p91007 -tp91008 -a(S'screenToClient/2' -p91009 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p91010 -tp91011 -a(S'scrollLines/2' -p91012 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p91013 -tp91014 -a(S'scrollPages/2' -p91015 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p91016 -tp91017 -a(S'scrollWindow/3' -p91018 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p91019 -tp91020 -a(S'scrollWindow/4' -p91021 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p91022 -tp91023 -a(S'setAcceleratorTable/2' -p91024 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p91025 -tp91026 -a(S'setAutoLayout/2' -p91027 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p91028 -tp91029 -a(S'setBackgroundColour/2' -p91030 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p91031 -tp91032 -a(S'setBackgroundStyle/2' -p91033 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p91034 -tp91035 -a(S'setCaret/2' -p91036 -S'setCaret(${1:This}, ${2:Caret}) $3' -p91037 -tp91038 -a(S'setClientSize/2' -p91039 -S'setClientSize(${1:This}, ${2:Size}) $3' -p91040 -tp91041 -a(S'setClientSize/3' -p91042 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p91043 -tp91044 -a(S'setContainingSizer/2' -p91045 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p91046 -tp91047 -a(S'setCursor/2' -p91048 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p91049 -tp91050 -a(S'setDropTarget/2' -p91051 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p91052 -tp91053 -a(S'setExtraStyle/2' -p91054 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p91055 -tp91056 -a(S'setFocus/1' -p91057 -S'setFocus(${1:This}) $2' -p91058 -tp91059 -a(S'setFocusFromKbd/1' -p91060 -S'setFocusFromKbd(${1:This}) $2' -p91061 -tp91062 -a(S'setFont/2' -p91063 -S'setFont(${1:This}, ${2:Font}) $3' -p91064 -tp91065 -a(S'setForegroundColour/2' -p91066 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p91067 -tp91068 -a(S'setHelpText/2' -p91069 -S'setHelpText(${1:This}, ${2:Text}) $3' -p91070 -tp91071 -a(S'setId/2' -p91072 -S'setId(${1:This}, ${2:Winid}) $3' -p91073 -tp91074 -a(S'setLabel/2' -p91075 -S'setLabel(${1:This}, ${2:Label}) $3' -p91076 -tp91077 -a(S'setLineSize/2' -p91078 -S'setLineSize(${1:This}, ${2:LineSize}) $3' -p91079 -tp91080 -a(S'setMaxSize/2' -p91081 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p91082 -tp91083 -a(S'setMinSize/2' -p91084 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p91085 -tp91086 -a(S'setName/2' -p91087 -S'setName(${1:This}, ${2:Name}) $3' -p91088 -tp91089 -a(S'setOwnBackgroundColour/2' -p91090 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p91091 -tp91092 -a(S'setOwnFont/2' -p91093 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p91094 -tp91095 -a(S'setOwnForegroundColour/2' -p91096 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p91097 -tp91098 -a(S'setPageSize/2' -p91099 -S'setPageSize(${1:This}, ${2:PageSize}) $3' -p91100 -tp91101 -a(S'setPalette/2' -p91102 -S'setPalette(${1:This}, ${2:Pal}) $3' -p91103 -tp91104 -a(S'setRange/3' -p91105 -S'setRange(${1:This}, ${2:MinValue}, ${3:MaxValue}) $4' -p91106 -tp91107 -a(S'setScrollPos/3' -p91108 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p91109 -tp91110 -a(S'setScrollPos/4' -p91111 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p91112 -tp91113 -a(S'setScrollbar/5' -p91114 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p91115 -tp91116 -a(S'setScrollbar/6' -p91117 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p91118 -tp91119 -a(S'setSize/2' -p91120 -S'setSize(${1:This}, ${2:Rect}) $3' -p91121 -tp91122 -a(S'setSize/3' -p91123 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p91124 -tp91125 -a(S'setSize/5' -p91126 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p91127 -tp91128 -a(S'setSize/6' -p91129 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p91130 -tp91131 -a(S'setSizeHints/2' -p91132 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p91133 -tp91134 -a(S'setSizeHints/3' -p91135 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p91136 -tp91137 -a(S'setSizeHints/4' -p91138 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p91139 -tp91140 -a(S'setSizer/2' -p91141 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p91142 -tp91143 -a(S'setSizer/3' -p91144 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p91145 -tp91146 -a(S'setSizerAndFit/2' -p91147 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p91148 -tp91149 -a(S'setSizerAndFit/3' -p91150 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p91151 -tp91152 -a(S'setThemeEnabled/2' -p91153 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p91154 -tp91155 -a(S'setThumbLength/2' -p91156 -S'setThumbLength(${1:This}, ${2:LenPixels}) $3' -p91157 -tp91158 -a(S'setToolTip/2' -p91159 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p91160 -tp91161 -a(S'setValue/2' -p91162 -S'setValue(${1:This}, ${2:Value}) $3' -p91163 -tp91164 -a(S'setVirtualSize/2' -p91165 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p91166 -tp91167 -a(S'setVirtualSize/3' -p91168 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p91169 -tp91170 -a(S'setVirtualSizeHints/2' -p91171 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p91172 -tp91173 -a(S'setVirtualSizeHints/3' -p91174 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p91175 -tp91176 -a(S'setVirtualSizeHints/4' -p91177 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p91178 -tp91179 -a(S'setWindowStyle/2' -p91180 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p91181 -tp91182 -a(S'setWindowStyleFlag/2' -p91183 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p91184 -tp91185 -a(S'setWindowVariant/2' -p91186 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p91187 -tp91188 -a(S'shouldInheritColours/1' -p91189 -S'shouldInheritColours(${1:This}) $2' -p91190 -tp91191 -a(S'show/1' -p91192 -S'show(${1:This}) $2' -p91193 -tp91194 -a(S'show/2' -p91195 -S'show(${1:This}, ${2:Options}) $3' -p91196 -tp91197 -a(S'thaw/1' -p91198 -S'thaw(${1:This}) $2' -p91199 -tp91200 -a(S'transferDataFromWindow/1' -p91201 -S'transferDataFromWindow(${1:This}) $2' -p91202 -tp91203 -a(S'transferDataToWindow/1' -p91204 -S'transferDataToWindow(${1:This}) $2' -p91205 -tp91206 -a(S'update/1' -p91207 -S'update(${1:This}) $2' -p91208 -tp91209 -a(S'updateWindowUI/1' -p91210 -S'updateWindowUI(${1:This}) $2' -p91211 -tp91212 -a(S'updateWindowUI/2' -p91213 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p91214 -tp91215 -a(S'validate/1' -p91216 -S'validate(${1:This}) $2' -p91217 -tp91218 -a(S'warpPointer/3' -p91219 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p91220 -tp91221 -asS'CosTime_TimeService_impl' -p91222 -(lp91223 -(S'code_change/3' -p91224 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p91225 -tp91226 -a(S'handle_info/2' -p91227 -S'handle_info(${1:Param1}, ${2:State}) $3' -p91228 -tp91229 -a(S'init/1' -p91230 -S'init(${1:Param1}) $2' -p91231 -tp91232 -a(S'new_interval/4' -p91233 -S'new_interval(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p91234 -tp91235 -a(S'new_universal_time/5' -p91236 -S'new_universal_time(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}, ${5:Param5}) $6' -p91237 -tp91238 -a(S'secure_universal_time/2' -p91239 -S'secure_universal_time(${1:Param1}, ${2:Param2}) $3' -p91240 -tp91241 -a(S'terminate/2' -p91242 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p91243 -tp91244 -a(S'universal_time/2' -p91245 -S'universal_time(${1:OE_THIS}, ${2:State}) $3' -p91246 -tp91247 -a(S'uto_from_utc/3' -p91248 -S'uto_from_utc(${1:OE_THIS}, ${2:State}, ${3:Utc}) $4' -p91249 -tp91250 -asS'wxTextEntryDialog' -p91251 -(lp91252 -(S'cacheBestSize/2' -p91253 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p91254 -tp91255 -a(S'captureMouse/1' -p91256 -S'captureMouse(${1:This}) $2' -p91257 -tp91258 -a(S'center/1' -p91259 -S'center(${1:This}) $2' -p91260 -tp91261 -a(S'center/2' -p91262 -S'center(${1:This}, ${2:Options}) $3' -p91263 -tp91264 -a(S'centerOnParent/1' -p91265 -S'centerOnParent(${1:This}) $2' -p91266 -tp91267 -a(S'centerOnParent/2' -p91268 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p91269 -tp91270 -a(S'centerOnScreen/1' -p91271 -S'centerOnScreen(${1:This}) $2' -p91272 -tp91273 -a(S'centerOnScreen/2' -p91274 -S'centerOnScreen(${1:This}, ${2:Options}) $3' -p91275 -tp91276 -a(S'centre/1' -p91277 -S'centre(${1:This}) $2' -p91278 -tp91279 -a(S'centre/2' -p91280 -S'centre(${1:This}, ${2:Options}) $3' -p91281 -tp91282 -a(S'centreOnParent/1' -p91283 -S'centreOnParent(${1:This}) $2' -p91284 -tp91285 -a(S'centreOnParent/2' -p91286 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p91287 -tp91288 -a(S'centreOnScreen/1' -p91289 -S'centreOnScreen(${1:This}) $2' -p91290 -tp91291 -a(S'centreOnScreen/2' -p91292 -S'centreOnScreen(${1:This}, ${2:Options}) $3' -p91293 -tp91294 -a(S'clearBackground/1' -p91295 -S'clearBackground(${1:This}) $2' -p91296 -tp91297 -a(S'clientToScreen/2' -p91298 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p91299 -tp91300 -a(S'clientToScreen/3' -p91301 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p91302 -tp91303 -a(S'close/1' -p91304 -S'close(${1:This}) $2' -p91305 -tp91306 -a(S'close/2' -p91307 -S'close(${1:This}, ${2:Options}) $3' -p91308 -tp91309 -a(S'connect/2' -p91310 -S'connect(${1:This}, ${2:EventType}) $3' -p91311 -tp91312 -a(S'connect/3' -p91313 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p91314 -tp91315 -a(S'convertDialogToPixels/2' -p91316 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p91317 -tp91318 -a(S'convertPixelsToDialog/2' -p91319 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p91320 -tp91321 -a(S'createButtonSizer/2' -p91322 -S'createButtonSizer(${1:This}, ${2:Flags}) $3' -p91323 -tp91324 -a(S'createStdDialogButtonSizer/2' -p91325 -S'createStdDialogButtonSizer(${1:This}, ${2:Flags}) $3' -p91326 -tp91327 -a(S'destroy/1' -p91328 -S'destroy(${1:This}) $2' -p91329 -tp91330 -a(S'destroyChildren/1' -p91331 -S'destroyChildren(${1:This}) $2' -p91332 -tp91333 -a(S'disable/1' -p91334 -S'disable(${1:This}) $2' -p91335 -tp91336 -a(S'disconnect/1' -p91337 -S'disconnect(${1:This}) $2' -p91338 -tp91339 -a(S'disconnect/2' -p91340 -S'disconnect(${1:This}, ${2:EventType}) $3' -p91341 -tp91342 -a(S'disconnect/3' -p91343 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p91344 -tp91345 -a(S'enable/1' -p91346 -S'enable(${1:This}) $2' -p91347 -tp91348 -a(S'enable/2' -p91349 -S'enable(${1:This}, ${2:Options}) $3' -p91350 -tp91351 -a(S'endModal/2' -p91352 -S'endModal(${1:This}, ${2:RetCode}) $3' -p91353 -tp91354 -a(S'findWindow/2' -p91355 -S'findWindow(${1:This}, ${2:Winid}) $3' -p91356 -tp91357 -a(S'fit/1' -p91358 -S'fit(${1:This}) $2' -p91359 -tp91360 -a(S'fitInside/1' -p91361 -S'fitInside(${1:This}) $2' -p91362 -tp91363 -a(S'freeze/1' -p91364 -S'freeze(${1:This}) $2' -p91365 -tp91366 -a(S'getAcceleratorTable/1' -p91367 -S'getAcceleratorTable(${1:This}) $2' -p91368 -tp91369 -a(S'getAffirmativeId/1' -p91370 -S'getAffirmativeId(${1:This}) $2' -p91371 -tp91372 -a(S'getBackgroundColour/1' -p91373 -S'getBackgroundColour(${1:This}) $2' -p91374 -tp91375 -a(S'getBackgroundStyle/1' -p91376 -S'getBackgroundStyle(${1:This}) $2' -p91377 -tp91378 -a(S'getBestSize/1' -p91379 -S'getBestSize(${1:This}) $2' -p91380 -tp91381 -a(S'getCaret/1' -p91382 -S'getCaret(${1:This}) $2' -p91383 -tp91384 -a(S'getCharHeight/1' -p91385 -S'getCharHeight(${1:This}) $2' -p91386 -tp91387 -a(S'getCharWidth/1' -p91388 -S'getCharWidth(${1:This}) $2' -p91389 -tp91390 -a(S'getChildren/1' -p91391 -S'getChildren(${1:This}) $2' -p91392 -tp91393 -a(S'getClientSize/1' -p91394 -S'getClientSize(${1:This}) $2' -p91395 -tp91396 -a(S'getContainingSizer/1' -p91397 -S'getContainingSizer(${1:This}) $2' -p91398 -tp91399 -a(S'getCursor/1' -p91400 -S'getCursor(${1:This}) $2' -p91401 -tp91402 -a(S'getDropTarget/1' -p91403 -S'getDropTarget(${1:This}) $2' -p91404 -tp91405 -a(S'getEventHandler/1' -p91406 -S'getEventHandler(${1:This}) $2' -p91407 -tp91408 -a(S'getExtraStyle/1' -p91409 -S'getExtraStyle(${1:This}) $2' -p91410 -tp91411 -a(S'getFont/1' -p91412 -S'getFont(${1:This}) $2' -p91413 -tp91414 -a(S'getForegroundColour/1' -p91415 -S'getForegroundColour(${1:This}) $2' -p91416 -tp91417 -a(S'getGrandParent/1' -p91418 -S'getGrandParent(${1:This}) $2' -p91419 -tp91420 -a(S'getHandle/1' -p91421 -S'getHandle(${1:This}) $2' -p91422 -tp91423 -a(S'getHelpText/1' -p91424 -S'getHelpText(${1:This}) $2' -p91425 -tp91426 -a(S'getIcon/1' -p91427 -S'getIcon(${1:This}) $2' -p91428 -tp91429 -a(S'getIcons/1' -p91430 -S'getIcons(${1:This}) $2' -p91431 -tp91432 -a(S'getId/1' -p91433 -S'getId(${1:This}) $2' -p91434 -tp91435 -a(S'getLabel/1' -p91436 -S'getLabel(${1:This}) $2' -p91437 -tp91438 -a(S'getMaxSize/1' -p91439 -S'getMaxSize(${1:This}) $2' -p91440 -tp91441 -a(S'getMinSize/1' -p91442 -S'getMinSize(${1:This}) $2' -p91443 -tp91444 -a(S'getName/1' -p91445 -S'getName(${1:This}) $2' -p91446 -tp91447 -a(S'getParent/1' -p91448 -S'getParent(${1:This}) $2' -p91449 -tp91450 -a(S'getPosition/1' -p91451 -S'getPosition(${1:This}) $2' -p91452 -tp91453 -a(S'getRect/1' -p91454 -S'getRect(${1:This}) $2' -p91455 -tp91456 -a(S'getReturnCode/1' -p91457 -S'getReturnCode(${1:This}) $2' -p91458 -tp91459 -a(S'getScreenPosition/1' -p91460 -S'getScreenPosition(${1:This}) $2' -p91461 -tp91462 -a(S'getScreenRect/1' -p91463 -S'getScreenRect(${1:This}) $2' -p91464 -tp91465 -a(S'getScrollPos/2' -p91466 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p91467 -tp91468 -a(S'getScrollRange/2' -p91469 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p91470 -tp91471 -a(S'getScrollThumb/2' -p91472 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p91473 -tp91474 -a(S'getSize/1' -p91475 -S'getSize(${1:This}) $2' -p91476 -tp91477 -a(S'getSizer/1' -p91478 -S'getSizer(${1:This}) $2' -p91479 -tp91480 -a(S'getTextExtent/2' -p91481 -S'getTextExtent(${1:This}, ${2:String}) $3' -p91482 -tp91483 -a(S'getTextExtent/3' -p91484 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p91485 -tp91486 -a(S'getTitle/1' -p91487 -S'getTitle(${1:This}) $2' -p91488 -tp91489 -a(S'getToolTip/1' -p91490 -S'getToolTip(${1:This}) $2' -p91491 -tp91492 -a(S'getUpdateRegion/1' -p91493 -S'getUpdateRegion(${1:This}) $2' -p91494 -tp91495 -a(S'getValue/1' -p91496 -S'getValue(${1:This}) $2' -p91497 -tp91498 -a(S'getVirtualSize/1' -p91499 -S'getVirtualSize(${1:This}) $2' -p91500 -tp91501 -a(S'getWindowStyleFlag/1' -p91502 -S'getWindowStyleFlag(${1:This}) $2' -p91503 -tp91504 -a(S'getWindowVariant/1' -p91505 -S'getWindowVariant(${1:This}) $2' -p91506 -tp91507 -a(S'hasCapture/1' -p91508 -S'hasCapture(${1:This}) $2' -p91509 -tp91510 -a(S'hasScrollbar/2' -p91511 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p91512 -tp91513 -a(S'hasTransparentBackground/1' -p91514 -S'hasTransparentBackground(${1:This}) $2' -p91515 -tp91516 -a(S'hide/1' -p91517 -S'hide(${1:This}) $2' -p91518 -tp91519 -a(S'iconize/1' -p91520 -S'iconize(${1:This}) $2' -p91521 -tp91522 -a(S'iconize/2' -p91523 -S'iconize(${1:This}, ${2:Options}) $3' -p91524 -tp91525 -a(S'inheritAttributes/1' -p91526 -S'inheritAttributes(${1:This}) $2' -p91527 -tp91528 -a(S'initDialog/1' -p91529 -S'initDialog(${1:This}) $2' -p91530 -tp91531 -a(S'invalidateBestSize/1' -p91532 -S'invalidateBestSize(${1:This}) $2' -p91533 -tp91534 -a(S'isActive/1' -p91535 -S'isActive(${1:This}) $2' -p91536 -tp91537 -a(S'isEnabled/1' -p91538 -S'isEnabled(${1:This}) $2' -p91539 -tp91540 -a(S'isExposed/2' -p91541 -S'isExposed(${1:This}, ${2:Pt}) $3' -p91542 -tp91543 -a(S'isExposed/3' -p91544 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p91545 -tp91546 -a(S'isExposed/5' -p91547 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p91548 -tp91549 -a(S'isFullScreen/1' -p91550 -S'isFullScreen(${1:This}) $2' -p91551 -tp91552 -a(S'isIconized/1' -p91553 -S'isIconized(${1:This}) $2' -p91554 -tp91555 -a(S'isMaximized/1' -p91556 -S'isMaximized(${1:This}) $2' -p91557 -tp91558 -a(S'isModal/1' -p91559 -S'isModal(${1:This}) $2' -p91560 -tp91561 -a(S'isRetained/1' -p91562 -S'isRetained(${1:This}) $2' -p91563 -tp91564 -a(S'isShown/1' -p91565 -S'isShown(${1:This}) $2' -p91566 -tp91567 -a(S'isTopLevel/1' -p91568 -S'isTopLevel(${1:This}) $2' -p91569 -tp91570 -a(S'layout/1' -p91571 -S'layout(${1:This}) $2' -p91572 -tp91573 -a(S'lineDown/1' -p91574 -S'lineDown(${1:This}) $2' -p91575 -tp91576 -a(S'lineUp/1' -p91577 -S'lineUp(${1:This}) $2' -p91578 -tp91579 -a(S'lower/1' -p91580 -S'lower(${1:This}) $2' -p91581 -tp91582 -a(S'makeModal/1' -p91583 -S'makeModal(${1:This}) $2' -p91584 -tp91585 -a(S'makeModal/2' -p91586 -S'makeModal(${1:This}, ${2:Options}) $3' -p91587 -tp91588 -a(S'maximize/1' -p91589 -S'maximize(${1:This}) $2' -p91590 -tp91591 -a(S'maximize/2' -p91592 -S'maximize(${1:This}, ${2:Options}) $3' -p91593 -tp91594 -a(S'move/2' -p91595 -S'move(${1:This}, ${2:Pt}) $3' -p91596 -tp91597 -a(S'move/3' -p91598 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p91599 -tp91600 -a(S'move/4' -p91601 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p91602 -tp91603 -a(S'moveAfterInTabOrder/2' -p91604 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p91605 -tp91606 -a(S'moveBeforeInTabOrder/2' -p91607 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p91608 -tp91609 -a(S'navigate/1' -p91610 -S'navigate(${1:This}) $2' -p91611 -tp91612 -a(S'navigate/2' -p91613 -S'navigate(${1:This}, ${2:Options}) $3' -p91614 -tp91615 -a(S'new/2' -p91616 -S'new(${1:Parent}, ${2:Message}) $3' -p91617 -tp91618 -a(S'new/3' -p91619 -S'new(${1:Parent}, ${2:Message}, ${3:Param3}) $4' -p91620 -tp91621 -a(S'pageDown/1' -p91622 -S'pageDown(${1:This}) $2' -p91623 -tp91624 -a(S'pageUp/1' -p91625 -S'pageUp(${1:This}) $2' -p91626 -tp91627 -a(S'parent_class/1' -p91628 -S'parent_class(${1:Param1}) $2' -p91629 -tp91630 -a(S'popEventHandler/1' -p91631 -S'popEventHandler(${1:This}) $2' -p91632 -tp91633 -a(S'popEventHandler/2' -p91634 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p91635 -tp91636 -a(S'popupMenu/2' -p91637 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p91638 -tp91639 -a(S'popupMenu/3' -p91640 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p91641 -tp91642 -a(S'popupMenu/4' -p91643 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p91644 -tp91645 -a(S'raise/1' -p91646 -S'raise(${1:This}) $2' -p91647 -tp91648 -a(S'refresh/1' -p91649 -S'refresh(${1:This}) $2' -p91650 -tp91651 -a(S'refresh/2' -p91652 -S'refresh(${1:This}, ${2:Options}) $3' -p91653 -tp91654 -a(S'refreshRect/2' -p91655 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p91656 -tp91657 -a(S'refreshRect/3' -p91658 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p91659 -tp91660 -a(S'releaseMouse/1' -p91661 -S'releaseMouse(${1:This}) $2' -p91662 -tp91663 -a(S'removeChild/2' -p91664 -S'removeChild(${1:This}, ${2:Child}) $3' -p91665 -tp91666 -a(S'reparent/2' -p91667 -S'reparent(${1:This}, ${2:NewParent}) $3' -p91668 -tp91669 -a(S'requestUserAttention/1' -p91670 -S'requestUserAttention(${1:This}) $2' -p91671 -tp91672 -a(S'requestUserAttention/2' -p91673 -S'requestUserAttention(${1:This}, ${2:Options}) $3' -p91674 -tp91675 -a(S'screenToClient/1' -p91676 -S'screenToClient(${1:This}) $2' -p91677 -tp91678 -a(S'screenToClient/2' -p91679 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p91680 -tp91681 -a(S'scrollLines/2' -p91682 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p91683 -tp91684 -a(S'scrollPages/2' -p91685 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p91686 -tp91687 -a(S'scrollWindow/3' -p91688 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p91689 -tp91690 -a(S'scrollWindow/4' -p91691 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p91692 -tp91693 -a(S'setAcceleratorTable/2' -p91694 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p91695 -tp91696 -a(S'setAffirmativeId/2' -p91697 -S'setAffirmativeId(${1:This}, ${2:AffirmativeId}) $3' -p91698 -tp91699 -a(S'setAutoLayout/2' -p91700 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p91701 -tp91702 -a(S'setBackgroundColour/2' -p91703 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p91704 -tp91705 -a(S'setBackgroundStyle/2' -p91706 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p91707 -tp91708 -a(S'setCaret/2' -p91709 -S'setCaret(${1:This}, ${2:Caret}) $3' -p91710 -tp91711 -a(S'setClientSize/2' -p91712 -S'setClientSize(${1:This}, ${2:Size}) $3' -p91713 -tp91714 -a(S'setClientSize/3' -p91715 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p91716 -tp91717 -a(S'setContainingSizer/2' -p91718 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p91719 -tp91720 -a(S'setCursor/2' -p91721 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p91722 -tp91723 -a(S'setDropTarget/2' -p91724 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p91725 -tp91726 -a(S'setExtraStyle/2' -p91727 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p91728 -tp91729 -a(S'setFocus/1' -p91730 -S'setFocus(${1:This}) $2' -p91731 -tp91732 -a(S'setFocusFromKbd/1' -p91733 -S'setFocusFromKbd(${1:This}) $2' -p91734 -tp91735 -a(S'setFont/2' -p91736 -S'setFont(${1:This}, ${2:Font}) $3' -p91737 -tp91738 -a(S'setForegroundColour/2' -p91739 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p91740 -tp91741 -a(S'setHelpText/2' -p91742 -S'setHelpText(${1:This}, ${2:Text}) $3' -p91743 -tp91744 -a(S'setIcon/2' -p91745 -S'setIcon(${1:This}, ${2:Icon}) $3' -p91746 -tp91747 -a(S'setIcons/2' -p91748 -S'setIcons(${1:This}, ${2:Icons}) $3' -p91749 -tp91750 -a(S'setId/2' -p91751 -S'setId(${1:This}, ${2:Winid}) $3' -p91752 -tp91753 -a(S'setLabel/2' -p91754 -S'setLabel(${1:This}, ${2:Label}) $3' -p91755 -tp91756 -a(S'setMaxSize/2' -p91757 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p91758 -tp91759 -a(S'setMinSize/2' -p91760 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p91761 -tp91762 -a(S'setName/2' -p91763 -S'setName(${1:This}, ${2:Name}) $3' -p91764 -tp91765 -a(S'setOwnBackgroundColour/2' -p91766 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p91767 -tp91768 -a(S'setOwnFont/2' -p91769 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p91770 -tp91771 -a(S'setOwnForegroundColour/2' -p91772 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p91773 -tp91774 -a(S'setPalette/2' -p91775 -S'setPalette(${1:This}, ${2:Pal}) $3' -p91776 -tp91777 -a(S'setReturnCode/2' -p91778 -S'setReturnCode(${1:This}, ${2:ReturnCode}) $3' -p91779 -tp91780 -a(S'setScrollPos/3' -p91781 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p91782 -tp91783 -a(S'setScrollPos/4' -p91784 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p91785 -tp91786 -a(S'setScrollbar/5' -p91787 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p91788 -tp91789 -a(S'setScrollbar/6' -p91790 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p91791 -tp91792 -a(S'setShape/2' -p91793 -S'setShape(${1:This}, ${2:Region}) $3' -p91794 -tp91795 -a(S'setSize/2' -p91796 -S'setSize(${1:This}, ${2:Rect}) $3' -p91797 -tp91798 -a(S'setSize/3' -p91799 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p91800 -tp91801 -a(S'setSize/5' -p91802 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p91803 -tp91804 -a(S'setSize/6' -p91805 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p91806 -tp91807 -a(S'setSizeHints/2' -p91808 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p91809 -tp91810 -a(S'setSizeHints/3' -p91811 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p91812 -tp91813 -a(S'setSizeHints/4' -p91814 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p91815 -tp91816 -a(S'setSizer/2' -p91817 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p91818 -tp91819 -a(S'setSizer/3' -p91820 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p91821 -tp91822 -a(S'setSizerAndFit/2' -p91823 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p91824 -tp91825 -a(S'setSizerAndFit/3' -p91826 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p91827 -tp91828 -a(S'setThemeEnabled/2' -p91829 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p91830 -tp91831 -a(S'setTitle/2' -p91832 -S'setTitle(${1:This}, ${2:Title}) $3' -p91833 -tp91834 -a(S'setToolTip/2' -p91835 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p91836 -tp91837 -a(S'setValue/2' -p91838 -S'setValue(${1:This}, ${2:Val}) $3' -p91839 -tp91840 -a(S'setVirtualSize/2' -p91841 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p91842 -tp91843 -a(S'setVirtualSize/3' -p91844 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p91845 -tp91846 -a(S'setVirtualSizeHints/2' -p91847 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p91848 -tp91849 -a(S'setVirtualSizeHints/3' -p91850 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p91851 -tp91852 -a(S'setVirtualSizeHints/4' -p91853 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p91854 -tp91855 -a(S'setWindowStyle/2' -p91856 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p91857 -tp91858 -a(S'setWindowStyleFlag/2' -p91859 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p91860 -tp91861 -a(S'setWindowVariant/2' -p91862 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p91863 -tp91864 -a(S'shouldInheritColours/1' -p91865 -S'shouldInheritColours(${1:This}) $2' -p91866 -tp91867 -a(S'show/1' -p91868 -S'show(${1:This}) $2' -p91869 -tp91870 -a(S'show/2' -p91871 -S'show(${1:This}, ${2:Options}) $3' -p91872 -tp91873 -a(S'showFullScreen/2' -p91874 -S'showFullScreen(${1:This}, ${2:Show}) $3' -p91875 -tp91876 -a(S'showFullScreen/3' -p91877 -S'showFullScreen(${1:This}, ${2:Show}, ${3:Options}) $4' -p91878 -tp91879 -a(S'showModal/1' -p91880 -S'showModal(${1:This}) $2' -p91881 -tp91882 -a(S'thaw/1' -p91883 -S'thaw(${1:This}) $2' -p91884 -tp91885 -a(S'transferDataFromWindow/1' -p91886 -S'transferDataFromWindow(${1:This}) $2' -p91887 -tp91888 -a(S'transferDataToWindow/1' -p91889 -S'transferDataToWindow(${1:This}) $2' -p91890 -tp91891 -a(S'update/1' -p91892 -S'update(${1:This}) $2' -p91893 -tp91894 -a(S'updateWindowUI/1' -p91895 -S'updateWindowUI(${1:This}) $2' -p91896 -tp91897 -a(S'updateWindowUI/2' -p91898 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p91899 -tp91900 -a(S'validate/1' -p91901 -S'validate(${1:This}) $2' -p91902 -tp91903 -a(S'warpPointer/3' -p91904 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p91905 -tp91906 -asS'megaco_text_mini_parser' -p91907 -(lp91908 -(S'format_error/1' -p91909 -S'format_error(${1:Message}) $2' -p91910 -tp91911 -a(S'parse/1' -p91912 -S'parse(${1:Tokens}) $2' -p91913 -tp91914 -a(S'parse_and_scan/1' -p91915 -S'parse_and_scan(${1:Param1}) $2' -p91916 -tp91917 -asS'focus_demo' -p91918 -(lp91919 -(S'init/0' -p91920 -S'init() $1' -p91921 -tp91922 -a(S'start/0' -p91923 -S'start() $1' -p91924 -tp91925 -asS'mnesia_tm' -p91926 -(lp91927 -(S'block_tab/1' -p91928 -S'block_tab(${1:Tab}) $2' -p91929 -tp91930 -a(S'commit_participant/5' -p91931 -S'commit_participant(${1:Coord}, ${2:Tid}, ${3:Bin}, ${4:DiscNs}, ${5:RamNs}) $6' -p91932 -tp91933 -a(S'dirty/2' -p91934 -S'dirty(${1:Protocol}, ${2:Item}) $3' -p91935 -tp91936 -a(S'display_info/2' -p91937 -S'display_info(${1:Stream}, ${2:Param2}) $3' -p91938 -tp91939 -a(S'do_snmp/2' -p91940 -S'do_snmp(${1:Tid}, ${2:Param2}) $3' -p91941 -tp91942 -a(S'do_update_op/3' -p91943 -S'do_update_op(${1:Tid}, ${2:Storage}, ${3:Param3}) $4' -p91944 -tp91945 -a(S'fixtable/3' -p91946 -S'fixtable(${1:Tab}, ${2:Lock}, ${3:Me}) $4' -p91947 -tp91948 -a(S'get_info/1' -p91949 -S'get_info(${1:Timeout}) $2' -p91950 -tp91951 -a(S'get_transactions/0' -p91952 -S'get_transactions() $1' -p91953 -tp91954 -a(S'info/1' -p91955 -S'info(${1:Timeout}) $2' -p91956 -tp91957 -a(S'init/1' -p91958 -S'init(${1:Parent}) $2' -p91959 -tp91960 -a(S'mnesia_down/1' -p91961 -S'mnesia_down(${1:Node}) $2' -p91962 -tp91963 -a(S'non_transaction/5' -p91964 -S'non_transaction(${1:OldState}, ${2:Fun}, ${3:Args}, ${4:ActivityKind}, ${5:Mod}) $6' -p91965 -tp91966 -a(S'prepare_checkpoint/1' -p91967 -S'prepare_checkpoint(${1:Cp}) $2' -p91968 -tp91969 -a(S'prepare_checkpoint/2' -p91970 -S'prepare_checkpoint(${1:Nodes}, ${2:Cp}) $3' -p91971 -tp91972 -a(S'prepare_snmp/3' -p91973 -S'prepare_snmp(${1:Tab}, ${2:Key}, ${3:Items}) $4' -p91974 -tp91975 -a(S'put_activity_id/1' -p91976 -S'put_activity_id(${1:MTT}) $2' -p91977 -tp91978 -a(S'put_activity_id/2' -p91979 -S'put_activity_id(${1:SimpleState}, ${2:Fun}) $3' -p91980 -tp91981 -a(S'start/0' -p91982 -S'start() $1' -p91983 -tp91984 -a(S'system_code_change/4' -p91985 -S'system_code_change(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p91986 -tp91987 -a(S'system_continue/3' -p91988 -S'system_continue(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p91989 -tp91990 -a(S'system_terminate/4' -p91991 -S'system_terminate(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:State}) $5' -p91992 -tp91993 -a(S'transaction/6' -p91994 -S'transaction(${1:OldTidTs}, ${2:Fun}, ${3:Args}, ${4:Retries}, ${5:Mod}, ${6:Type}) $7' -p91995 -tp91996 -a(S'unblock_tab/1' -p91997 -S'unblock_tab(${1:Tab}) $2' -p91998 -tp91999 -asS'wxStaticText' -p92000 -(lp92001 -(S'cacheBestSize/2' -p92002 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p92003 -tp92004 -a(S'captureMouse/1' -p92005 -S'captureMouse(${1:This}) $2' -p92006 -tp92007 -a(S'center/1' -p92008 -S'center(${1:This}) $2' -p92009 -tp92010 -a(S'center/2' -p92011 -S'center(${1:This}, ${2:Options}) $3' -p92012 -tp92013 -a(S'centerOnParent/1' -p92014 -S'centerOnParent(${1:This}) $2' -p92015 -tp92016 -a(S'centerOnParent/2' -p92017 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p92018 -tp92019 -a(S'centre/1' -p92020 -S'centre(${1:This}) $2' -p92021 -tp92022 -a(S'centre/2' -p92023 -S'centre(${1:This}, ${2:Options}) $3' -p92024 -tp92025 -a(S'centreOnParent/1' -p92026 -S'centreOnParent(${1:This}) $2' -p92027 -tp92028 -a(S'centreOnParent/2' -p92029 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p92030 -tp92031 -a(S'clearBackground/1' -p92032 -S'clearBackground(${1:This}) $2' -p92033 -tp92034 -a(S'clientToScreen/2' -p92035 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p92036 -tp92037 -a(S'clientToScreen/3' -p92038 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p92039 -tp92040 -a(S'close/1' -p92041 -S'close(${1:This}) $2' -p92042 -tp92043 -a(S'close/2' -p92044 -S'close(${1:This}, ${2:Options}) $3' -p92045 -tp92046 -a(S'connect/2' -p92047 -S'connect(${1:This}, ${2:EventType}) $3' -p92048 -tp92049 -a(S'connect/3' -p92050 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p92051 -tp92052 -a(S'convertDialogToPixels/2' -p92053 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p92054 -tp92055 -a(S'convertPixelsToDialog/2' -p92056 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p92057 -tp92058 -a(S'create/4' -p92059 -S'create(${1:This}, ${2:Parent}, ${3:Id}, ${4:Label}) $5' -p92060 -tp92061 -a(S'create/5' -p92062 -S'create(${1:This}, ${2:Parent}, ${3:Id}, ${4:Label}, ${5:Param5}) $6' -p92063 -tp92064 -a(S'destroy/1' -p92065 -S'destroy(${1:This}) $2' -p92066 -tp92067 -a(S'destroyChildren/1' -p92068 -S'destroyChildren(${1:This}) $2' -p92069 -tp92070 -a(S'disable/1' -p92071 -S'disable(${1:This}) $2' -p92072 -tp92073 -a(S'disconnect/1' -p92074 -S'disconnect(${1:This}) $2' -p92075 -tp92076 -a(S'disconnect/2' -p92077 -S'disconnect(${1:This}, ${2:EventType}) $3' -p92078 -tp92079 -a(S'disconnect/3' -p92080 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p92081 -tp92082 -a(S'enable/1' -p92083 -S'enable(${1:This}) $2' -p92084 -tp92085 -a(S'enable/2' -p92086 -S'enable(${1:This}, ${2:Options}) $3' -p92087 -tp92088 -a(S'findWindow/2' -p92089 -S'findWindow(${1:This}, ${2:Winid}) $3' -p92090 -tp92091 -a(S'fit/1' -p92092 -S'fit(${1:This}) $2' -p92093 -tp92094 -a(S'fitInside/1' -p92095 -S'fitInside(${1:This}) $2' -p92096 -tp92097 -a(S'freeze/1' -p92098 -S'freeze(${1:This}) $2' -p92099 -tp92100 -a(S'getAcceleratorTable/1' -p92101 -S'getAcceleratorTable(${1:This}) $2' -p92102 -tp92103 -a(S'getBackgroundColour/1' -p92104 -S'getBackgroundColour(${1:This}) $2' -p92105 -tp92106 -a(S'getBackgroundStyle/1' -p92107 -S'getBackgroundStyle(${1:This}) $2' -p92108 -tp92109 -a(S'getBestSize/1' -p92110 -S'getBestSize(${1:This}) $2' -p92111 -tp92112 -a(S'getCaret/1' -p92113 -S'getCaret(${1:This}) $2' -p92114 -tp92115 -a(S'getCharHeight/1' -p92116 -S'getCharHeight(${1:This}) $2' -p92117 -tp92118 -a(S'getCharWidth/1' -p92119 -S'getCharWidth(${1:This}) $2' -p92120 -tp92121 -a(S'getChildren/1' -p92122 -S'getChildren(${1:This}) $2' -p92123 -tp92124 -a(S'getClientSize/1' -p92125 -S'getClientSize(${1:This}) $2' -p92126 -tp92127 -a(S'getContainingSizer/1' -p92128 -S'getContainingSizer(${1:This}) $2' -p92129 -tp92130 -a(S'getCursor/1' -p92131 -S'getCursor(${1:This}) $2' -p92132 -tp92133 -a(S'getDropTarget/1' -p92134 -S'getDropTarget(${1:This}) $2' -p92135 -tp92136 -a(S'getEventHandler/1' -p92137 -S'getEventHandler(${1:This}) $2' -p92138 -tp92139 -a(S'getExtraStyle/1' -p92140 -S'getExtraStyle(${1:This}) $2' -p92141 -tp92142 -a(S'getFont/1' -p92143 -S'getFont(${1:This}) $2' -p92144 -tp92145 -a(S'getForegroundColour/1' -p92146 -S'getForegroundColour(${1:This}) $2' -p92147 -tp92148 -a(S'getGrandParent/1' -p92149 -S'getGrandParent(${1:This}) $2' -p92150 -tp92151 -a(S'getHandle/1' -p92152 -S'getHandle(${1:This}) $2' -p92153 -tp92154 -a(S'getHelpText/1' -p92155 -S'getHelpText(${1:This}) $2' -p92156 -tp92157 -a(S'getId/1' -p92158 -S'getId(${1:This}) $2' -p92159 -tp92160 -a(S'getLabel/1' -p92161 -S'getLabel(${1:This}) $2' -p92162 -tp92163 -a(S'getMaxSize/1' -p92164 -S'getMaxSize(${1:This}) $2' -p92165 -tp92166 -a(S'getMinSize/1' -p92167 -S'getMinSize(${1:This}) $2' -p92168 -tp92169 -a(S'getName/1' -p92170 -S'getName(${1:This}) $2' -p92171 -tp92172 -a(S'getParent/1' -p92173 -S'getParent(${1:This}) $2' -p92174 -tp92175 -a(S'getPosition/1' -p92176 -S'getPosition(${1:This}) $2' -p92177 -tp92178 -a(S'getRect/1' -p92179 -S'getRect(${1:This}) $2' -p92180 -tp92181 -a(S'getScreenPosition/1' -p92182 -S'getScreenPosition(${1:This}) $2' -p92183 -tp92184 -a(S'getScreenRect/1' -p92185 -S'getScreenRect(${1:This}) $2' -p92186 -tp92187 -a(S'getScrollPos/2' -p92188 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p92189 -tp92190 -a(S'getScrollRange/2' -p92191 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p92192 -tp92193 -a(S'getScrollThumb/2' -p92194 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p92195 -tp92196 -a(S'getSize/1' -p92197 -S'getSize(${1:This}) $2' -p92198 -tp92199 -a(S'getSizer/1' -p92200 -S'getSizer(${1:This}) $2' -p92201 -tp92202 -a(S'getTextExtent/2' -p92203 -S'getTextExtent(${1:This}, ${2:String}) $3' -p92204 -tp92205 -a(S'getTextExtent/3' -p92206 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p92207 -tp92208 -a(S'getToolTip/1' -p92209 -S'getToolTip(${1:This}) $2' -p92210 -tp92211 -a(S'getUpdateRegion/1' -p92212 -S'getUpdateRegion(${1:This}) $2' -p92213 -tp92214 -a(S'getVirtualSize/1' -p92215 -S'getVirtualSize(${1:This}) $2' -p92216 -tp92217 -a(S'getWindowStyleFlag/1' -p92218 -S'getWindowStyleFlag(${1:This}) $2' -p92219 -tp92220 -a(S'getWindowVariant/1' -p92221 -S'getWindowVariant(${1:This}) $2' -p92222 -tp92223 -a(S'hasCapture/1' -p92224 -S'hasCapture(${1:This}) $2' -p92225 -tp92226 -a(S'hasScrollbar/2' -p92227 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p92228 -tp92229 -a(S'hasTransparentBackground/1' -p92230 -S'hasTransparentBackground(${1:This}) $2' -p92231 -tp92232 -a(S'hide/1' -p92233 -S'hide(${1:This}) $2' -p92234 -tp92235 -a(S'inheritAttributes/1' -p92236 -S'inheritAttributes(${1:This}) $2' -p92237 -tp92238 -a(S'initDialog/1' -p92239 -S'initDialog(${1:This}) $2' -p92240 -tp92241 -a(S'invalidateBestSize/1' -p92242 -S'invalidateBestSize(${1:This}) $2' -p92243 -tp92244 -a(S'isEnabled/1' -p92245 -S'isEnabled(${1:This}) $2' -p92246 -tp92247 -a(S'isExposed/2' -p92248 -S'isExposed(${1:This}, ${2:Pt}) $3' -p92249 -tp92250 -a(S'isExposed/3' -p92251 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p92252 -tp92253 -a(S'isExposed/5' -p92254 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p92255 -tp92256 -a(S'isRetained/1' -p92257 -S'isRetained(${1:This}) $2' -p92258 -tp92259 -a(S'isShown/1' -p92260 -S'isShown(${1:This}) $2' -p92261 -tp92262 -a(S'isTopLevel/1' -p92263 -S'isTopLevel(${1:This}) $2' -p92264 -tp92265 -a(S'layout/1' -p92266 -S'layout(${1:This}) $2' -p92267 -tp92268 -a(S'lineDown/1' -p92269 -S'lineDown(${1:This}) $2' -p92270 -tp92271 -a(S'lineUp/1' -p92272 -S'lineUp(${1:This}) $2' -p92273 -tp92274 -a(S'lower/1' -p92275 -S'lower(${1:This}) $2' -p92276 -tp92277 -a(S'makeModal/1' -p92278 -S'makeModal(${1:This}) $2' -p92279 -tp92280 -a(S'makeModal/2' -p92281 -S'makeModal(${1:This}, ${2:Options}) $3' -p92282 -tp92283 -a(S'move/2' -p92284 -S'move(${1:This}, ${2:Pt}) $3' -p92285 -tp92286 -a(S'move/3' -p92287 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p92288 -tp92289 -a(S'move/4' -p92290 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p92291 -tp92292 -a(S'moveAfterInTabOrder/2' -p92293 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p92294 -tp92295 -a(S'moveBeforeInTabOrder/2' -p92296 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p92297 -tp92298 -a(S'navigate/1' -p92299 -S'navigate(${1:This}) $2' -p92300 -tp92301 -a(S'navigate/2' -p92302 -S'navigate(${1:This}, ${2:Options}) $3' -p92303 -tp92304 -a(S'new/0' -p92305 -S'new() $1' -p92306 -tp92307 -a(S'new/3' -p92308 -S'new(${1:Parent}, ${2:Id}, ${3:Label}) $4' -p92309 -tp92310 -a(S'new/4' -p92311 -S'new(${1:Parent}, ${2:Id}, ${3:Label}, ${4:Param4}) $5' -p92312 -tp92313 -a(S'pageDown/1' -p92314 -S'pageDown(${1:This}) $2' -p92315 -tp92316 -a(S'pageUp/1' -p92317 -S'pageUp(${1:This}) $2' -p92318 -tp92319 -a(S'parent_class/1' -p92320 -S'parent_class(${1:Param1}) $2' -p92321 -tp92322 -a(S'popEventHandler/1' -p92323 -S'popEventHandler(${1:This}) $2' -p92324 -tp92325 -a(S'popEventHandler/2' -p92326 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p92327 -tp92328 -a(S'popupMenu/2' -p92329 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p92330 -tp92331 -a(S'popupMenu/3' -p92332 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p92333 -tp92334 -a(S'popupMenu/4' -p92335 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p92336 -tp92337 -a(S'raise/1' -p92338 -S'raise(${1:This}) $2' -p92339 -tp92340 -a(S'refresh/1' -p92341 -S'refresh(${1:This}) $2' -p92342 -tp92343 -a(S'refresh/2' -p92344 -S'refresh(${1:This}, ${2:Options}) $3' -p92345 -tp92346 -a(S'refreshRect/2' -p92347 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p92348 -tp92349 -a(S'refreshRect/3' -p92350 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p92351 -tp92352 -a(S'releaseMouse/1' -p92353 -S'releaseMouse(${1:This}) $2' -p92354 -tp92355 -a(S'removeChild/2' -p92356 -S'removeChild(${1:This}, ${2:Child}) $3' -p92357 -tp92358 -a(S'reparent/2' -p92359 -S'reparent(${1:This}, ${2:NewParent}) $3' -p92360 -tp92361 -a(S'screenToClient/1' -p92362 -S'screenToClient(${1:This}) $2' -p92363 -tp92364 -a(S'screenToClient/2' -p92365 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p92366 -tp92367 -a(S'scrollLines/2' -p92368 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p92369 -tp92370 -a(S'scrollPages/2' -p92371 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p92372 -tp92373 -a(S'scrollWindow/3' -p92374 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p92375 -tp92376 -a(S'scrollWindow/4' -p92377 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p92378 -tp92379 -a(S'setAcceleratorTable/2' -p92380 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p92381 -tp92382 -a(S'setAutoLayout/2' -p92383 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p92384 -tp92385 -a(S'setBackgroundColour/2' -p92386 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p92387 -tp92388 -a(S'setBackgroundStyle/2' -p92389 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p92390 -tp92391 -a(S'setCaret/2' -p92392 -S'setCaret(${1:This}, ${2:Caret}) $3' -p92393 -tp92394 -a(S'setClientSize/2' -p92395 -S'setClientSize(${1:This}, ${2:Size}) $3' -p92396 -tp92397 -a(S'setClientSize/3' -p92398 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p92399 -tp92400 -a(S'setContainingSizer/2' -p92401 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p92402 -tp92403 -a(S'setCursor/2' -p92404 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p92405 -tp92406 -a(S'setDropTarget/2' -p92407 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p92408 -tp92409 -a(S'setExtraStyle/2' -p92410 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p92411 -tp92412 -a(S'setFocus/1' -p92413 -S'setFocus(${1:This}) $2' -p92414 -tp92415 -a(S'setFocusFromKbd/1' -p92416 -S'setFocusFromKbd(${1:This}) $2' -p92417 -tp92418 -a(S'setFont/2' -p92419 -S'setFont(${1:This}, ${2:Font}) $3' -p92420 -tp92421 -a(S'setForegroundColour/2' -p92422 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p92423 -tp92424 -a(S'setHelpText/2' -p92425 -S'setHelpText(${1:This}, ${2:Text}) $3' -p92426 -tp92427 -a(S'setId/2' -p92428 -S'setId(${1:This}, ${2:Winid}) $3' -p92429 -tp92430 -a(S'setLabel/2' -p92431 -S'setLabel(${1:This}, ${2:Label}) $3' -p92432 -tp92433 -a(S'setMaxSize/2' -p92434 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p92435 -tp92436 -a(S'setMinSize/2' -p92437 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p92438 -tp92439 -a(S'setName/2' -p92440 -S'setName(${1:This}, ${2:Name}) $3' -p92441 -tp92442 -a(S'setOwnBackgroundColour/2' -p92443 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p92444 -tp92445 -a(S'setOwnFont/2' -p92446 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p92447 -tp92448 -a(S'setOwnForegroundColour/2' -p92449 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p92450 -tp92451 -a(S'setPalette/2' -p92452 -S'setPalette(${1:This}, ${2:Pal}) $3' -p92453 -tp92454 -a(S'setScrollPos/3' -p92455 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p92456 -tp92457 -a(S'setScrollPos/4' -p92458 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p92459 -tp92460 -a(S'setScrollbar/5' -p92461 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p92462 -tp92463 -a(S'setScrollbar/6' -p92464 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p92465 -tp92466 -a(S'setSize/2' -p92467 -S'setSize(${1:This}, ${2:Rect}) $3' -p92468 -tp92469 -a(S'setSize/3' -p92470 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p92471 -tp92472 -a(S'setSize/5' -p92473 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p92474 -tp92475 -a(S'setSize/6' -p92476 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p92477 -tp92478 -a(S'setSizeHints/2' -p92479 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p92480 -tp92481 -a(S'setSizeHints/3' -p92482 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p92483 -tp92484 -a(S'setSizeHints/4' -p92485 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p92486 -tp92487 -a(S'setSizer/2' -p92488 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p92489 -tp92490 -a(S'setSizer/3' -p92491 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p92492 -tp92493 -a(S'setSizerAndFit/2' -p92494 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p92495 -tp92496 -a(S'setSizerAndFit/3' -p92497 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p92498 -tp92499 -a(S'setThemeEnabled/2' -p92500 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p92501 -tp92502 -a(S'setToolTip/2' -p92503 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p92504 -tp92505 -a(S'setVirtualSize/2' -p92506 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p92507 -tp92508 -a(S'setVirtualSize/3' -p92509 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p92510 -tp92511 -a(S'setVirtualSizeHints/2' -p92512 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p92513 -tp92514 -a(S'setVirtualSizeHints/3' -p92515 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p92516 -tp92517 -a(S'setVirtualSizeHints/4' -p92518 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p92519 -tp92520 -a(S'setWindowStyle/2' -p92521 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p92522 -tp92523 -a(S'setWindowStyleFlag/2' -p92524 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p92525 -tp92526 -a(S'setWindowVariant/2' -p92527 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p92528 -tp92529 -a(S'shouldInheritColours/1' -p92530 -S'shouldInheritColours(${1:This}) $2' -p92531 -tp92532 -a(S'show/1' -p92533 -S'show(${1:This}) $2' -p92534 -tp92535 -a(S'show/2' -p92536 -S'show(${1:This}, ${2:Options}) $3' -p92537 -tp92538 -a(S'thaw/1' -p92539 -S'thaw(${1:This}) $2' -p92540 -tp92541 -a(S'transferDataFromWindow/1' -p92542 -S'transferDataFromWindow(${1:This}) $2' -p92543 -tp92544 -a(S'transferDataToWindow/1' -p92545 -S'transferDataToWindow(${1:This}) $2' -p92546 -tp92547 -a(S'update/1' -p92548 -S'update(${1:This}) $2' -p92549 -tp92550 -a(S'updateWindowUI/1' -p92551 -S'updateWindowUI(${1:This}) $2' -p92552 -tp92553 -a(S'updateWindowUI/2' -p92554 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p92555 -tp92556 -a(S'validate/1' -p92557 -S'validate(${1:This}) $2' -p92558 -tp92559 -a(S'warpPointer/3' -p92560 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p92561 -tp92562 -a(S'wrap/2' -p92563 -S'wrap(${1:This}, ${2:Width}) $3' -p92564 -tp92565 -asS'file_server' -p92566 -(lp92567 -(S'code_change/3' -p92568 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p92569 -tp92570 -a(S'format_error/1' -p92571 -S'format_error(${1:ErrorId}) $2' -p92572 -tp92573 -a(S'handle_call/3' -p92574 -S'handle_call(${1:Request}, ${2:From}, ${3:Handle}) $4' -p92575 -tp92576 -a(S'handle_cast/2' -p92577 -S'handle_cast(${1:Msg}, ${2:State}) $3' -p92578 -tp92579 -a(S'handle_info/2' -p92580 -S'handle_info(${1:Info}, ${2:Handle}) $3' -p92581 -tp92582 -a(S'init/1' -p92583 -S'init(${1:Param1}) $2' -p92584 -tp92585 -a(S'start/0' -p92586 -S'start() $1' -p92587 -tp92588 -a(S'start_link/0' -p92589 -S'start_link() $1' -p92590 -tp92591 -a(S'stop/0' -p92592 -S'stop() $1' -p92593 -tp92594 -a(S'terminate/2' -p92595 -S'terminate(${1:Param1}, ${2:Handle}) $3' -p92596 -tp92597 -asS'CosNotifyChannelAdmin_SupplierAdmin_impl' -p92598 -(lp92599 -(S"'_get_MyChannel'/3" -p92600 -S"'_get_MyChannel'(${1:Param1}, ${2:Param2}, ${3:State}) $4" -p92601 -tp92602 -a(S"'_get_MyID'/3" -p92603 -S"'_get_MyID'(${1:Param1}, ${2:Param2}, ${3:State}) $4" -p92604 -tp92605 -a(S"'_get_MyOperator'/3" -p92606 -S"'_get_MyOperator'(${1:Param1}, ${2:Param2}, ${3:State}) $4" -p92607 -tp92608 -a(S"'_get_pull_consumers'/3" -p92609 -S"'_get_pull_consumers'(${1:Param1}, ${2:Param2}, ${3:State}) $4" -p92610 -tp92611 -a(S"'_get_push_consumers'/3" -p92612 -S"'_get_push_consumers'(${1:Param1}, ${2:Param2}, ${3:State}) $4" -p92613 -tp92614 -a(S'add_filter/4' -p92615 -S'add_filter(${1:Param1}, ${2:Param2}, ${3:State}, ${4:Filter}) $5' -p92616 -tp92617 -a(S'callAny/5' -p92618 -S'callAny(${1:Param1}, ${2:OE_FROM}, ${3:State}, ${4:Event}, ${5:Param5}) $6' -p92619 -tp92620 -a(S'callSeq/5' -p92621 -S'callSeq(${1:Param1}, ${2:OE_FROM}, ${3:State}, ${4:Events}, ${5:Param5}) $6' -p92622 -tp92623 -a(S'code_change/3' -p92624 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p92625 -tp92626 -a(S'destroy/3' -p92627 -S'destroy(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p92628 -tp92629 -a(S'get_all_filters/3' -p92630 -S'get_all_filters(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p92631 -tp92632 -a(S'get_filter/4' -p92633 -S'get_filter(${1:Param1}, ${2:Param2}, ${3:State}, ${4:FilterID}) $5' -p92634 -tp92635 -a(S'get_proxy_consumer/4' -p92636 -S'get_proxy_consumer(${1:Param1}, ${2:Param2}, ${3:State}, ${4:ProxyId}) $5' -p92637 -tp92638 -a(S'get_qos/3' -p92639 -S'get_qos(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p92640 -tp92641 -a(S'handle_info/2' -p92642 -S'handle_info(${1:Info}, ${2:State}) $3' -p92643 -tp92644 -a(S'init/1' -p92645 -S'init(${1:Param1}) $2' -p92646 -tp92647 -a(S'obtain_notification_pull_consumer/4' -p92648 -S'obtain_notification_pull_consumer(${1:OE_THIS}, ${2:Param2}, ${3:State}, ${4:Ctype}) $5' -p92649 -tp92650 -a(S'obtain_notification_push_consumer/4' -p92651 -S'obtain_notification_push_consumer(${1:OE_THIS}, ${2:Param2}, ${3:State}, ${4:Ctype}) $5' -p92652 -tp92653 -a(S'obtain_pull_consumer/3' -p92654 -S'obtain_pull_consumer(${1:OE_THIS}, ${2:Param2}, ${3:State}) $4' -p92655 -tp92656 -a(S'obtain_push_consumer/3' -p92657 -S'obtain_push_consumer(${1:OE_THIS}, ${2:Param2}, ${3:State}) $4' -p92658 -tp92659 -a(S'offer_change/5' -p92660 -S'offer_change(${1:Param1}, ${2:Param2}, ${3:State}, ${4:Param4}, ${5:Param5}) $6' -p92661 -tp92662 -a(S'remove_all_filters/3' -p92663 -S'remove_all_filters(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p92664 -tp92665 -a(S'remove_filter/4' -p92666 -S'remove_filter(${1:Param1}, ${2:Param2}, ${3:State}, ${4:FilterID}) $5' -p92667 -tp92668 -a(S'set_qos/4' -p92669 -S'set_qos(${1:Param1}, ${2:Param2}, ${3:State}, ${4:QoS}) $5' -p92670 -tp92671 -a(S'terminate/2' -p92672 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p92673 -tp92674 -a(S'validate_qos/4' -p92675 -S'validate_qos(${1:Param1}, ${2:Param2}, ${3:State}, ${4:Required_qos}) $5' -p92676 -tp92677 -asS'orddict' -p92678 -(lp92679 -(S'append/3' -p92680 -S'append(${1:Key}, ${2:Value}, ${3:Orddict1}) $4' -p92681 -tp92682 -a(S'append_list/3' -p92683 -S'append_list(${1:Key}, ${2:ValList}, ${3:Orddict1}) $4' -p92684 -tp92685 -a(S'erase/2' -p92686 -S'erase(${1:Key}, ${2:Orddict1}) $3' -p92687 -tp92688 -a(S'fetch/2' -p92689 -S'fetch(${1:Key}, ${2:Orddict}) $3' -p92690 -tp92691 -a(S'fetch_keys/1' -p92692 -S'fetch_keys(${1:Orddict}) $2' -p92693 -tp92694 -a(S'filter/2' -p92695 -S'filter(${1:Pred}, ${2:Orddict1}) $3' -p92696 -tp92697 -a(S'find/2' -p92698 -S'find(${1:Key}, ${2:Orddict}) $3' -p92699 -tp92700 -a(S'fold/3' -p92701 -S'fold(${1:Fun}, ${2:Acc0}, ${3:Orddict}) $4' -p92702 -tp92703 -a(S'from_list/1' -p92704 -S'from_list(${1:List}) $2' -p92705 -tp92706 -a(S'is_key/2' -p92707 -S'is_key(${1:Key}, ${2:Orddict}) $3' -p92708 -tp92709 -a(S'map/2' -p92710 -S'map(${1:Fun}, ${2:Orddict1}) $3' -p92711 -tp92712 -a(S'merge/3' -p92713 -S'merge(${1:Fun}, ${2:Orddict1}, ${3:Orddict2}) $4' -p92714 -tp92715 -a(S'new/0' -p92716 -S'new() $1' -p92717 -tp92718 -a(S'size/1' -p92719 -S'size(${1:Orddict}) $2' -p92720 -tp92721 -a(S'store/3' -p92722 -S'store(${1:Key}, ${2:Value}, ${3:Orddict1}) $4' -p92723 -tp92724 -a(S'to_list/1' -p92725 -S'to_list(${1:Orddict}) $2' -p92726 -tp92727 -a(S'update/3' -p92728 -S'update(${1:Key}, ${2:Fun}, ${3:Orddict1}) $4' -p92729 -tp92730 -a(S'update/4' -p92731 -S'update(${1:Key}, ${2:Fun}, ${3:Initial}, ${4:Orddict1}) $5' -p92732 -tp92733 -a(S'update_counter/3' -p92734 -S'update_counter(${1:Key}, ${2:Increment}, ${3:Orddict1}) $4' -p92735 -tp92736 -asS'wxFontPickerEvent' -p92737 -(lp92738 -(S'getClientData/1' -p92739 -S'getClientData(${1:This}) $2' -p92740 -tp92741 -a(S'getExtraLong/1' -p92742 -S'getExtraLong(${1:This}) $2' -p92743 -tp92744 -a(S'getFont/1' -p92745 -S'getFont(${1:This}) $2' -p92746 -tp92747 -a(S'getId/1' -p92748 -S'getId(${1:This}) $2' -p92749 -tp92750 -a(S'getInt/1' -p92751 -S'getInt(${1:This}) $2' -p92752 -tp92753 -a(S'getSelection/1' -p92754 -S'getSelection(${1:This}) $2' -p92755 -tp92756 -a(S'getSkipped/1' -p92757 -S'getSkipped(${1:This}) $2' -p92758 -tp92759 -a(S'getString/1' -p92760 -S'getString(${1:This}) $2' -p92761 -tp92762 -a(S'getTimestamp/1' -p92763 -S'getTimestamp(${1:This}) $2' -p92764 -tp92765 -a(S'isChecked/1' -p92766 -S'isChecked(${1:This}) $2' -p92767 -tp92768 -a(S'isCommandEvent/1' -p92769 -S'isCommandEvent(${1:This}) $2' -p92770 -tp92771 -a(S'isSelection/1' -p92772 -S'isSelection(${1:This}) $2' -p92773 -tp92774 -a(S'parent_class/1' -p92775 -S'parent_class(${1:Param1}) $2' -p92776 -tp92777 -a(S'resumePropagation/2' -p92778 -S'resumePropagation(${1:This}, ${2:PropagationLevel}) $3' -p92779 -tp92780 -a(S'setInt/2' -p92781 -S'setInt(${1:This}, ${2:I}) $3' -p92782 -tp92783 -a(S'setString/2' -p92784 -S'setString(${1:This}, ${2:S}) $3' -p92785 -tp92786 -a(S'shouldPropagate/1' -p92787 -S'shouldPropagate(${1:This}) $2' -p92788 -tp92789 -a(S'skip/1' -p92790 -S'skip(${1:This}) $2' -p92791 -tp92792 -a(S'skip/2' -p92793 -S'skip(${1:This}, ${2:Options}) $3' -p92794 -tp92795 -a(S'stopPropagation/1' -p92796 -S'stopPropagation(${1:This}) $2' -p92797 -tp92798 -asS'CosPropertyService_ReadOnlyProperty' -p92799 -(lp92800 -(S'id/0' -p92801 -S'id() $1' -p92802 -tp92803 -a(S'name/0' -p92804 -S'name() $1' -p92805 -tp92806 -a(S'tc/0' -p92807 -S'tc() $1' -p92808 -tp92809 -asS'xmerl_sax_parser_utf16be' -p92810 -(lp92811 -(S'cf/3' -p92812 -S'cf(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p92813 -tp92814 -a(S'cf/4' -p92815 -S'cf(${1:Param1}, ${2:State}, ${3:Param3}, ${4:Param4}) $5' -p92816 -tp92817 -a(S'cf/5' -p92818 -S'cf(${1:Param1}, ${2:State}, ${3:Param3}, ${4:Param4}, ${5:Param5}) $6' -p92819 -tp92820 -a(S'is_name_char/1' -p92821 -S'is_name_char(${1:C}) $2' -p92822 -tp92823 -a(S'is_name_start/1' -p92824 -S'is_name_start(${1:C}) $2' -p92825 -tp92826 -a(S'parse/2' -p92827 -S'parse(${1:Xml}, ${2:State}) $3' -p92828 -tp92829 -a(S'parse_dtd/2' -p92830 -S'parse_dtd(${1:Xml}, ${2:State}) $3' -p92831 -tp92832 -asS'snmp_notification_mib' -p92833 -(lp92834 -(S'add_notify/3' -p92835 -S'add_notify(${1:Name}, ${2:Tag}, ${3:Type}) $4' -p92836 -tp92837 -a(S'check_notify/1' -p92838 -S'check_notify(${1:X}) $2' -p92839 -tp92840 -a(S'configure/1' -p92841 -S'configure(${1:Dir}) $2' -p92842 -tp92843 -a(S'delete_notify/1' -p92844 -S'delete_notify(${1:Key}) $2' -p92845 -tp92846 -a(S'get_targets/0' -p92847 -S'get_targets() $1' -p92848 -tp92849 -a(S'get_targets/1' -p92850 -S'get_targets(${1:NotifyName}) $2' -p92851 -tp92852 -a(S'invalidate_cache/0' -p92853 -S'invalidate_cache() $1' -p92854 -tp92855 -a(S'reconfigure/1' -p92856 -S'reconfigure(${1:Dir}) $2' -p92857 -tp92858 -a(S'snmpNotifyFilterProfileTable/3' -p92859 -S'snmpNotifyFilterProfileTable(${1:Param1}, ${2:Param2}, ${3:Cols}) $4' -p92860 -tp92861 -a(S'snmpNotifyFilterTable/3' -p92862 -S'snmpNotifyFilterTable(${1:Param1}, ${2:Param2}, ${3:Cols}) $4' -p92863 -tp92864 -a(S'snmpNotifyTable/1' -p92865 -S'snmpNotifyTable(${1:Op}) $2' -p92866 -tp92867 -a(S'snmpNotifyTable/3' -p92868 -S'snmpNotifyTable(${1:Op}, ${2:RowIndex}, ${3:Cols}) $4' -p92869 -tp92870 -asS'proplists' -p92871 -(lp92872 -(S'append_values/2' -p92873 -S'append_values(${1:Key}, ${2:List}) $3' -p92874 -tp92875 -a(S'compact/1' -p92876 -S'compact(${1:List}) $2' -p92877 -tp92878 -a(S'delete/2' -p92879 -S'delete(${1:Key}, ${2:List}) $3' -p92880 -tp92881 -a(S'expand/2' -p92882 -S'expand(${1:Expansions}, ${2:List}) $3' -p92883 -tp92884 -a(S'get_all_values/2' -p92885 -S'get_all_values(${1:Key}, ${2:List}) $3' -p92886 -tp92887 -a(S'get_bool/2' -p92888 -S'get_bool(${1:Key}, ${2:List}) $3' -p92889 -tp92890 -a(S'get_keys/1' -p92891 -S'get_keys(${1:List}) $2' -p92892 -tp92893 -a(S'get_value/2' -p92894 -S'get_value(${1:Key}, ${2:List}) $3' -p92895 -tp92896 -a(S'get_value/3' -p92897 -S'get_value(${1:Key}, ${2:List}, ${3:Default}) $4' -p92898 -tp92899 -a(S'is_defined/2' -p92900 -S'is_defined(${1:Key}, ${2:List}) $3' -p92901 -tp92902 -a(S'lookup/2' -p92903 -S'lookup(${1:Key}, ${2:List}) $3' -p92904 -tp92905 -a(S'lookup_all/2' -p92906 -S'lookup_all(${1:Key}, ${2:List}) $3' -p92907 -tp92908 -a(S'normalize/2' -p92909 -S'normalize(${1:List}, ${2:Stages}) $3' -p92910 -tp92911 -a(S'property/1' -p92912 -S'property(${1:Property}) $2' -p92913 -tp92914 -a(S'property/2' -p92915 -S'property(${1:Key}, ${2:Value}) $3' -p92916 -tp92917 -a(S'split/2' -p92918 -S'split(${1:List}, ${2:Keys}) $3' -p92919 -tp92920 -a(S'substitute_aliases/2' -p92921 -S'substitute_aliases(${1:Aliases}, ${2:List}) $3' -p92922 -tp92923 -a(S'substitute_negations/2' -p92924 -S'substitute_negations(${1:Negations}, ${2:List}) $3' -p92925 -tp92926 -a(S'unfold/1' -p92927 -S'unfold(${1:List}) $2' -p92928 -tp92929 -asS'CosTimerEvent_TimerEventT' -p92930 -(lp92931 -(S'id/0' -p92932 -S'id() $1' -p92933 -tp92934 -a(S'name/0' -p92935 -S'name() $1' -p92936 -tp92937 -a(S'tc/0' -p92938 -S'tc() $1' -p92939 -tp92940 -asS'CosFileTransfer_SupportedProtocolAddresses' -p92941 -(lp92942 -(S'id/0' -p92943 -S'id() $1' -p92944 -tp92945 -a(S'name/0' -p92946 -S'name() $1' -p92947 -tp92948 -a(S'tc/0' -p92949 -S'tc() $1' -p92950 -tp92951 -asS'CosFileTransfer' -p92952 -(lp92953 -(S"'FTAM_1'/0" -p92954 -S"'FTAM_1'() $1" -p92955 -tp92956 -a(S"'FTAM_2'/0" -p92957 -S"'FTAM_2'() $1" -p92958 -tp92959 -a(S"'FTAM_3'/0" -p92960 -S"'FTAM_3'() $1" -p92961 -tp92962 -a(S"'FTAM_4'/0" -p92963 -S"'FTAM_4'() $1" -p92964 -tp92965 -a(S"'FTAM_5'/0" -p92966 -S"'FTAM_5'() $1" -p92967 -tp92968 -a(S"'INTAP_1'/0" -p92969 -S"'INTAP_1'() $1" -p92970 -tp92971 -a(S"'NBS_9'/0" -p92972 -S"'NBS_9'() $1" -p92973 -tp92974 -asS'percept_html' -p92975 -(lp92976 -(S'codelocation_page/3' -p92977 -S'codelocation_page(${1:SessionID}, ${2:Env}, ${3:Input}) $4' -p92978 -tp92979 -a(S'concurrency_page/3' -p92980 -S'concurrency_page(${1:SessionID}, ${2:Env}, ${3:Input}) $4' -p92981 -tp92982 -a(S'databases_page/3' -p92983 -S'databases_page(${1:SessionID}, ${2:Param2}, ${3:Param3}) $4' -p92984 -tp92985 -a(S'get_option_value/2' -p92986 -S'get_option_value(${1:Option}, ${2:Options}) $3' -p92987 -tp92988 -a(S'join_strings_with/2' -p92989 -S'join_strings_with(${1:Param1}, ${2:S}) $3' -p92990 -tp92991 -a(S'load_database_page/3' -p92992 -S'load_database_page(${1:SessionID}, ${2:Env}, ${3:Input}) $4' -p92993 -tp92994 -a(S'page/3' -p92995 -S'page(${1:SessionID}, ${2:Env}, ${3:Input}) $4' -p92996 -tp92997 -a(S'pid2value/1' -p92998 -S'pid2value(${1:Pid}) $2' -p92999 -tp93000 -a(S'process_info_page/3' -p93001 -S'process_info_page(${1:SessionID}, ${2:Env}, ${3:Input}) $4' -p93002 -tp93003 -a(S'processes_page/3' -p93004 -S'processes_page(${1:SessionID}, ${2:Param2}, ${3:Param3}) $4' -p93005 -tp93006 -a(S'value2pid/1' -p93007 -S'value2pid(${1:Value}) $2' -p93008 -tp93009 -asS'CosPropertyService_Properties' -p93010 -(lp93011 -(S'id/0' -p93012 -S'id() $1' -p93013 -tp93014 -a(S'name/0' -p93015 -S'name() $1' -p93016 -tp93017 -a(S'tc/0' -p93018 -S'tc() $1' -p93019 -tp93020 -asS'et_viewer' -p93021 -(lp93022 -(S'file/1' -p93023 -S'file(${1:FileName}) $2' -p93024 -tp93025 -a(S'get_collector_pid/1' -p93026 -S'get_collector_pid(${1:ViewerPid}) $2' -p93027 -tp93028 -a(S'open_event/2' -p93029 -S'open_event(${1:ViewerPid}, ${2:N}) $3' -p93030 -tp93031 -a(S'start/0' -p93032 -S'start() $1' -p93033 -tp93034 -a(S'start/1' -p93035 -S'start(${1:Options}) $2' -p93036 -tp93037 -a(S'start/2' -p93038 -S'start(${1:Options}, ${2:GUI}) $3' -p93039 -tp93040 -a(S'start_link/1' -p93041 -S'start_link(${1:Options}) $2' -p93042 -tp93043 -a(S'start_link/2' -p93044 -S'start_link(${1:Options}, ${2:GUI}) $3' -p93045 -tp93046 -a(S'stop/1' -p93047 -S'stop(${1:ViewerPid}) $2' -p93048 -tp93049 -asS'tv_nodewin' -p93050 -(lp93051 -(S'init/3' -p93052 -S'init(${1:Pid}, ${2:CurrNode}, ${3:ErrMsgMode}) $4' -p93053 -tp93054 -a(S'start/2' -p93055 -S'start(${1:CurrNode}, ${2:ErrMsgMode}) $3' -p93056 -tp93057 -asS'ssl_certificate_db' -p93058 -(lp93059 -(S'add_trusted_certs/3' -p93060 -S'add_trusted_certs(${1:Pid}, ${2:File}, ${3:Param3}) $4' -p93061 -tp93062 -a(S'cache_pem_file/4' -p93063 -S'cache_pem_file(${1:Pid}, ${2:File}, ${3:Time}, ${4:Param4}) $5' -p93064 -tp93065 -a(S'create/0' -p93066 -S'create() $1' -p93067 -tp93068 -a(S'foldl/3' -p93069 -S'foldl(${1:Fun}, ${2:Acc0}, ${3:Cache}) $4' -p93070 -tp93071 -a(S'lookup/2' -p93072 -S'lookup(${1:Key}, ${2:Db}) $3' -p93073 -tp93074 -a(S'lookup_cached_certs/2' -p93075 -S'lookup_cached_certs(${1:DbHandle}, ${2:File}) $3' -p93076 -tp93077 -a(S'lookup_trusted_cert/4' -p93078 -S'lookup_trusted_cert(${1:DbHandle}, ${2:Ref}, ${3:SerialNumber}, ${4:Issuer}) $5' -p93079 -tp93080 -a(S'remove/1' -p93081 -S'remove(${1:Dbs}) $2' -p93082 -tp93083 -a(S'remove_trusted_certs/2' -p93084 -S'remove_trusted_certs(${1:Pid}, ${2:Param2}) $3' -p93085 -tp93086 -a(S'uncache_pem_file/2' -p93087 -S'uncache_pem_file(${1:File}, ${2:Param2}) $3' -p93088 -tp93089 -asS'mnesia' -p93090 -(lp93091 -(S'abort/1' -p93092 -S'abort(${1:Reason}) $2' -p93093 -tp93094 -a(S'activate_checkpoint/1' -p93095 -S'activate_checkpoint(${1:Args}) $2' -p93096 -tp93097 -a(S'activity/2' -p93098 -S'activity(${1:Kind}, ${2:Fun}) $3' -p93099 -tp93100 -a(S'activity/3' -p93101 -S'activity(${1:Kind}, ${2:Fun}, ${3:Args}) $4' -p93102 -tp93103 -a(S'activity/4' -p93104 -S'activity(${1:Kind}, ${2:Fun}, ${3:Args}, ${4:Mod}) $5' -p93105 -tp93106 -a(S'add_table_copy/3' -p93107 -S'add_table_copy(${1:Tab}, ${2:N}, ${3:S}) $4' -p93108 -tp93109 -a(S'add_table_index/2' -p93110 -S'add_table_index(${1:Tab}, ${2:Ix}) $3' -p93111 -tp93112 -a(S'all_keys/1' -p93113 -S'all_keys(${1:Tab}) $2' -p93114 -tp93115 -a(S'all_keys/4' -p93116 -S'all_keys(${1:Param1}, ${2:Param2}, ${3:Tab}, ${4:Param4}) $5' -p93117 -tp93118 -a(S'async_dirty/1' -p93119 -S'async_dirty(${1:Fun}) $2' -p93120 -tp93121 -a(S'async_dirty/2' -p93122 -S'async_dirty(${1:Fun}, ${2:Args}) $3' -p93123 -tp93124 -a(S'backup/1' -p93125 -S'backup(${1:Opaque}) $2' -p93126 -tp93127 -a(S'backup/2' -p93128 -S'backup(${1:Opaque}, ${2:Mod}) $3' -p93129 -tp93130 -a(S'backup_checkpoint/2' -p93131 -S'backup_checkpoint(${1:Name}, ${2:Opaque}) $3' -p93132 -tp93133 -a(S'backup_checkpoint/3' -p93134 -S'backup_checkpoint(${1:Name}, ${2:Opaque}, ${3:Mod}) $4' -p93135 -tp93136 -a(S'change_config/2' -p93137 -S'change_config(${1:BadKey}, ${2:Ns}) $3' -p93138 -tp93139 -a(S'change_table_access_mode/2' -p93140 -S'change_table_access_mode(${1:T}, ${2:Access}) $3' -p93141 -tp93142 -a(S'change_table_copy_type/3' -p93143 -S'change_table_copy_type(${1:T}, ${2:N}, ${3:S}) $4' -p93144 -tp93145 -a(S'change_table_frag/2' -p93146 -S'change_table_frag(${1:Tab}, ${2:FragProp}) $3' -p93147 -tp93148 -a(S'change_table_load_order/2' -p93149 -S'change_table_load_order(${1:T}, ${2:O}) $3' -p93150 -tp93151 -a(S'change_table_majority/2' -p93152 -S'change_table_majority(${1:T}, ${2:M}) $3' -p93153 -tp93154 -a(S'clear_table/1' -p93155 -S'clear_table(${1:Tab}) $2' -p93156 -tp93157 -a(S'clear_table/4' -p93158 -S'clear_table() $1' -p93159 -tp93160 -a(S'create_schema/1' -p93161 -S'create_schema(${1:Ns}) $2' -p93162 -tp93163 -a(S'create_table/1' -p93164 -S'create_table(${1:Arg}) $2' -p93165 -tp93166 -a(S'create_table/2' -p93167 -S'create_table(${1:Name}, ${2:Arg}) $3' -p93168 -tp93169 -a(S'deactivate_checkpoint/1' -p93170 -S'deactivate_checkpoint(${1:Name}) $2' -p93171 -tp93172 -a(S'del_table_copy/2' -p93173 -S'del_table_copy(${1:Tab}, ${2:N}) $3' -p93174 -tp93175 -a(S'del_table_index/2' -p93176 -S'del_table_index(${1:Tab}, ${2:Ix}) $3' -p93177 -tp93178 -a(S'delete/1' -p93179 -S'delete(${1:Oid}) $2' -p93180 -tp93181 -a(S'delete/3' -p93182 -S'delete(${1:Tab}, ${2:Key}, ${3:LockKind}) $4' -p93183 -tp93184 -a(S'delete/5' -p93185 -S'delete(${1:Param1}, ${2:Param2}, ${3:Tab}, ${4:Param4}, ${5:Param5}) $6' -p93186 -tp93187 -a(S'delete_object/1' -p93188 -S'delete_object(${1:Val}) $2' -p93189 -tp93190 -a(S'delete_object/3' -p93191 -S'delete_object(${1:Tab}, ${2:Val}, ${3:LockKind}) $4' -p93192 -tp93193 -a(S'delete_object/5' -p93194 -S'delete_object(${1:Tid}, ${2:Ts}, ${3:Tab}, ${4:Val}, ${5:LockKind}) $6' -p93195 -tp93196 -a(S'delete_schema/1' -p93197 -S'delete_schema(${1:Ns}) $2' -p93198 -tp93199 -a(S'delete_table/1' -p93200 -S'delete_table(${1:Tab}) $2' -p93201 -tp93202 -a(S'delete_table_property/2' -p93203 -S'delete_table_property(${1:Tab}, ${2:PropKey}) $3' -p93204 -tp93205 -a(S'dirty_all_keys/1' -p93206 -S'dirty_all_keys(${1:Tab}) $2' -p93207 -tp93208 -a(S'dirty_delete/1' -p93209 -S'dirty_delete(${1:Oid}) $2' -p93210 -tp93211 -a(S'dirty_delete/2' -p93212 -S'dirty_delete(${1:Tab}, ${2:Key}) $3' -p93213 -tp93214 -a(S'dirty_delete_object/1' -p93215 -S'dirty_delete_object(${1:Val}) $2' -p93216 -tp93217 -a(S'dirty_delete_object/2' -p93218 -S'dirty_delete_object(${1:Tab}, ${2:Val}) $3' -p93219 -tp93220 -a(S'dirty_first/1' -p93221 -S'dirty_first(${1:Tab}) $2' -p93222 -tp93223 -a(S'dirty_index_match_object/2' -p93224 -S'dirty_index_match_object(${1:Pat}, ${2:Param2}) $3' -p93225 -tp93226 -a(S'dirty_index_match_object/3' -p93227 -S'dirty_index_match_object(${1:Tab}, ${2:Pat}, ${3:Param3}) $4' -p93228 -tp93229 -a(S'dirty_index_read/3' -p93230 -S'dirty_index_read(${1:Tab}, ${2:Param2}, ${3:Param3}) $4' -p93231 -tp93232 -a(S'dirty_last/1' -p93233 -S'dirty_last(${1:Tab}) $2' -p93234 -tp93235 -a(S'dirty_match_object/1' -p93236 -S'dirty_match_object(${1:Pat}) $2' -p93237 -tp93238 -a(S'dirty_match_object/2' -p93239 -S'dirty_match_object(${1:Tab}, ${2:Pat}) $3' -p93240 -tp93241 -a(S'dirty_next/2' -p93242 -S'dirty_next(${1:Tab}, ${2:Param2}) $3' -p93243 -tp93244 -a(S'dirty_prev/2' -p93245 -S'dirty_prev(${1:Tab}, ${2:Param2}) $3' -p93246 -tp93247 -a(S'dirty_read/1' -p93248 -S'dirty_read(${1:Oid}) $2' -p93249 -tp93250 -a(S'dirty_read/2' -p93251 -S'dirty_read(${1:Tab}, ${2:Param2}) $3' -p93252 -tp93253 -a(S'dirty_rpc/4' -p93254 -S'dirty_rpc(${1:Tab}, ${2:M}, ${3:F}, ${4:Args}) $5' -p93255 -tp93256 -a(S'dirty_sel_init/5' -p93257 -S'dirty_sel_init(${1:Node}, ${2:Tab}, ${3:Spec}, ${4:NObjects}, ${5:Type}) $6' -p93258 -tp93259 -a(S'dirty_select/2' -p93260 -S'dirty_select(${1:Tab}, ${2:Spec}) $3' -p93261 -tp93262 -a(S'dirty_slot/2' -p93263 -S'dirty_slot(${1:Tab}, ${2:Slot}) $3' -p93264 -tp93265 -a(S'dirty_update_counter/2' -p93266 -S'dirty_update_counter(${1:Counter}, ${2:Incr}) $3' -p93267 -tp93268 -a(S'dirty_update_counter/3' -p93269 -S'dirty_update_counter(${1:Tab}, ${2:Key}, ${3:Incr}) $4' -p93270 -tp93271 -a(S'dirty_write/1' -p93272 -S'dirty_write(${1:Val}) $2' -p93273 -tp93274 -a(S'dirty_write/2' -p93275 -S'dirty_write(${1:Tab}, ${2:Val}) $3' -p93276 -tp93277 -a(S'dump_log/0' -p93278 -S'dump_log() $1' -p93279 -tp93280 -a(S'dump_tables/1' -p93281 -S'dump_tables(${1:Tabs}) $2' -p93282 -tp93283 -a(S'dump_to_textfile/1' -p93284 -S'dump_to_textfile(${1:F}) $2' -p93285 -tp93286 -a(S'error_description/1' -p93287 -S'error_description(${1:Err}) $2' -p93288 -tp93289 -a(S'ets/1' -p93290 -S'ets(${1:Fun}) $2' -p93291 -tp93292 -a(S'ets/2' -p93293 -S'ets(${1:Fun}, ${2:Args}) $3' -p93294 -tp93295 -a(S'first/1' -p93296 -S'first(${1:Tab}) $2' -p93297 -tp93298 -a(S'first/3' -p93299 -S'first(${1:Param1}, ${2:Param2}, ${3:Tab}) $4' -p93300 -tp93301 -a(S'foldl/3' -p93302 -S'foldl(${1:Fun}, ${2:Acc}, ${3:Tab}) $4' -p93303 -tp93304 -a(S'foldl/4' -p93305 -S'foldl(${1:Fun}, ${2:Acc}, ${3:Tab}, ${4:LockKind}) $5' -p93306 -tp93307 -a(S'foldl/6' -p93308 -S'foldl(${1:ActivityId}, ${2:Opaque}, ${3:Fun}, ${4:Acc}, ${5:Tab}, ${6:LockKind}) $7' -p93309 -tp93310 -a(S'foldr/3' -p93311 -S'foldr(${1:Fun}, ${2:Acc}, ${3:Tab}) $4' -p93312 -tp93313 -a(S'foldr/4' -p93314 -S'foldr(${1:Fun}, ${2:Acc}, ${3:Tab}, ${4:LockKind}) $5' -p93315 -tp93316 -a(S'foldr/6' -p93317 -S'foldr(${1:ActivityId}, ${2:Opaque}, ${3:Fun}, ${4:Acc}, ${5:Tab}, ${6:LockKind}) $7' -p93318 -tp93319 -a(S'force_load_table/1' -p93320 -S'force_load_table(${1:Tab}) $2' -p93321 -tp93322 -a(S'fun_select/10' -p93323 -S'fun_select(${1:Tid}, ${2:Ts}, ${3:Tab}, ${4:Spec}, ${5:LockKind}, ${6:TabPat}, ${7:Init}, ${8:NObjects}, ${9:Node}, ${10:Storage}) $11' -p93324 -tp93325 -a(S'fun_select/7' -p93326 -S'fun_select(${1:Tid}, ${2:Ts}, ${3:Tab}, ${4:Spec}, ${5:LockKind}, ${6:TabPat}, ${7:SelectFun}) $8' -p93327 -tp93328 -a(S'get_activity_id/0' -p93329 -S'get_activity_id() $1' -p93330 -tp93331 -a(S'has_var/1' -p93332 -S'has_var(${1:X}) $2' -p93333 -tp93334 -a(S'index_match_object/2' -p93335 -S'index_match_object(${1:Pat}, ${2:Param2}) $3' -p93336 -tp93337 -a(S'index_match_object/4' -p93338 -S'index_match_object(${1:Tab}, ${2:Pat}, ${3:Attr}, ${4:LockKind}) $5' -p93339 -tp93340 -a(S'index_match_object/6' -p93341 -S'index_match_object(${1:Param1}, ${2:Param2}, ${3:Tab}, ${4:Pat}, ${5:Param5}, ${6:Param6}) $7' -p93342 -tp93343 -a(S'index_read/3' -p93344 -S'index_read(${1:Tab}, ${2:Key}, ${3:Attr}) $4' -p93345 -tp93346 -a(S'index_read/6' -p93347 -S'index_read(${1:Param1}, ${2:Param2}, ${3:Tab}, ${4:Param4}, ${5:Param5}, ${6:Param6}) $7' -p93348 -tp93349 -a(S'info/0' -p93350 -S'info() $1' -p93351 -tp93352 -a(S'install_fallback/1' -p93353 -S'install_fallback(${1:Opaque}) $2' -p93354 -tp93355 -a(S'install_fallback/2' -p93356 -S'install_fallback(${1:Opaque}, ${2:Mod}) $3' -p93357 -tp93358 -a(S'is_transaction/0' -p93359 -S'is_transaction() $1' -p93360 -tp93361 -a(S'kill/0' -p93362 -S'kill() $1' -p93363 -tp93364 -a(S'last/1' -p93365 -S'last(${1:Tab}) $2' -p93366 -tp93367 -a(S'last/3' -p93368 -S'last(${1:Param1}, ${2:Param2}, ${3:Tab}) $4' -p93369 -tp93370 -a(S'lkill/0' -p93371 -S'lkill() $1' -p93372 -tp93373 -a(S'load_textfile/1' -p93374 -S'load_textfile(${1:F}) $2' -p93375 -tp93376 -a(S'lock/2' -p93377 -S'lock(${1:LockItem}, ${2:LockKind}) $3' -p93378 -tp93379 -a(S'lock/4' -p93380 -S'lock(${1:Tid}, ${2:Ts}, ${3:LockItem}, ${4:LockKind}) $5' -p93381 -tp93382 -a(S'lock_table/2' -p93383 -S'lock_table(${1:Tab}, ${2:LockKind}) $3' -p93384 -tp93385 -a(S'match_object/1' -p93386 -S'match_object(${1:Pat}) $2' -p93387 -tp93388 -a(S'match_object/3' -p93389 -S'match_object(${1:Tab}, ${2:Pat}, ${3:LockKind}) $4' -p93390 -tp93391 -a(S'match_object/5' -p93392 -S'match_object(${1:Param1}, ${2:Param2}, ${3:Tab}, ${4:Pat}, ${5:Param5}) $6' -p93393 -tp93394 -a(S'move_table_copy/3' -p93395 -S'move_table_copy(${1:Tab}, ${2:From}, ${3:To}) $4' -p93396 -tp93397 -a(S'ms/0' -p93398 -S'ms() $1' -p93399 -tp93400 -a(S'next/2' -p93401 -S'next(${1:Tab}, ${2:Key}) $3' -p93402 -tp93403 -a(S'next/4' -p93404 -S'next(${1:Param1}, ${2:Param2}, ${3:Tab}, ${4:Param4}) $5' -p93405 -tp93406 -a(S'prev/2' -p93407 -S'prev(${1:Tab}, ${2:Key}) $3' -p93408 -tp93409 -a(S'prev/4' -p93410 -S'prev(${1:Param1}, ${2:Param2}, ${3:Tab}, ${4:Param4}) $5' -p93411 -tp93412 -a(S'put_activity_id/1' -p93413 -S'put_activity_id(${1:Activity}) $2' -p93414 -tp93415 -a(S'raw_table_info/2' -p93416 -S'raw_table_info(${1:Tab}, ${2:Item}) $3' -p93417 -tp93418 -a(S'read/1' -p93419 -S'read(${1:Oid}) $2' -p93420 -tp93421 -a(S'read/2' -p93422 -S'read(${1:Tab}, ${2:Key}) $3' -p93423 -tp93424 -a(S'read/3' -p93425 -S'read(${1:Tab}, ${2:Key}, ${3:LockKind}) $4' -p93426 -tp93427 -a(S'read/5' -p93428 -S'read(${1:Param1}, ${2:Param2}, ${3:Tab}, ${4:Param4}, ${5:Param5}) $6' -p93429 -tp93430 -a(S'read_lock_table/1' -p93431 -S'read_lock_table(${1:Tab}) $2' -p93432 -tp93433 -a(S'read_table_property/2' -p93434 -S'read_table_property(${1:Tab}, ${2:PropKey}) $3' -p93435 -tp93436 -a(S'remote_dirty_match_object/2' -p93437 -S'remote_dirty_match_object(${1:Tab}, ${2:Pat}) $3' -p93438 -tp93439 -a(S'remote_dirty_select/2' -p93440 -S'remote_dirty_select(${1:Tab}, ${2:Spec}) $3' -p93441 -tp93442 -a(S'report_event/1' -p93443 -S'report_event(${1:Event}) $2' -p93444 -tp93445 -a(S'restore/2' -p93446 -S'restore(${1:Opaque}, ${2:Args}) $3' -p93447 -tp93448 -a(S's_delete/1' -p93449 -S's_delete(${1:Oid}) $2' -p93450 -tp93451 -a(S's_delete_object/1' -p93452 -S's_delete_object(${1:Val}) $2' -p93453 -tp93454 -a(S's_write/1' -p93455 -S's_write() $1' -p93456 -tp93457 -a(S'schema/0' -p93458 -S'schema() $1' -p93459 -tp93460 -a(S'schema/1' -p93461 -S'schema(${1:Tab}) $2' -p93462 -tp93463 -a(S'select/1' -p93464 -S'select(${1:Cont}) $2' -p93465 -tp93466 -a(S'select/2' -p93467 -S'select(${1:Tab}, ${2:Pat}) $3' -p93468 -tp93469 -a(S'select/3' -p93470 -S'select(${1:Tab}, ${2:Pat}, ${3:Param3}) $4' -p93471 -tp93472 -a(S'select/4' -p93473 -S'select(${1:Tab}, ${2:Pat}, ${3:NObjects}, ${4:Param4}) $5' -p93474 -tp93475 -a(S'select/5' -p93476 -S'select(${1:Tid}, ${2:Ts}, ${3:Tab}, ${4:Spec}, ${5:LockKind}) $6' -p93477 -tp93478 -a(S'select/6' -p93479 -S'select(${1:Tid}, ${2:Ts}, ${3:Tab}, ${4:Spec}, ${5:NObjects}, ${6:LockKind}) $7' -p93480 -tp93481 -a(S'select_cont/3' -p93482 -S'select_cont(${1:Tid}, ${2:Param2}, ${3:Cont}) $4' -p93483 -tp93484 -a(S'set_debug_level/1' -p93485 -S'set_debug_level(${1:Level}) $2' -p93486 -tp93487 -a(S'set_master_nodes/1' -p93488 -S'set_master_nodes(${1:Nodes}) $2' -p93489 -tp93490 -a(S'set_master_nodes/2' -p93491 -S'set_master_nodes(${1:Tab}, ${2:Nodes}) $3' -p93492 -tp93493 -a(S'snmp_close_table/1' -p93494 -S'snmp_close_table(${1:Tab}) $2' -p93495 -tp93496 -a(S'snmp_get_mnesia_key/2' -p93497 -S'snmp_get_mnesia_key(${1:Tab}, ${2:RowIndex}) $3' -p93498 -tp93499 -a(S'snmp_get_next_index/2' -p93500 -S'snmp_get_next_index(${1:Tab}, ${2:RowIndex}) $3' -p93501 -tp93502 -a(S'snmp_get_row/2' -p93503 -S'snmp_get_row(${1:Tab}, ${2:RowIndex}) $3' -p93504 -tp93505 -a(S'snmp_open_table/2' -p93506 -S'snmp_open_table(${1:Tab}, ${2:Us}) $3' -p93507 -tp93508 -a(S'start/0' -p93509 -S'start() $1' -p93510 -tp93511 -a(S'start/1' -p93512 -S'start(${1:ExtraEnv}) $2' -p93513 -tp93514 -a(S'stop/0' -p93515 -S'stop() $1' -p93516 -tp93517 -a(S'subscribe/1' -p93518 -S'subscribe(${1:What}) $2' -p93519 -tp93520 -a(S'sync_dirty/1' -p93521 -S'sync_dirty(${1:Fun}) $2' -p93522 -tp93523 -a(S'sync_dirty/2' -p93524 -S'sync_dirty(${1:Fun}, ${2:Args}) $3' -p93525 -tp93526 -a(S'sync_transaction/1' -p93527 -S'sync_transaction(${1:Fun}) $2' -p93528 -tp93529 -a(S'sync_transaction/2' -p93530 -S'sync_transaction(${1:Fun}, ${2:Args}) $3' -p93531 -tp93532 -a(S'sync_transaction/3' -p93533 -S'sync_transaction(${1:Fun}, ${2:Args}, ${3:Retries}) $4' -p93534 -tp93535 -a(S'system_info/0' -p93536 -S'system_info() $1' -p93537 -tp93538 -a(S'system_info/1' -p93539 -S'system_info(${1:Item}) $2' -p93540 -tp93541 -a(S'table/1' -p93542 -S'table(${1:Tab}) $2' -p93543 -tp93544 -a(S'table/2' -p93545 -S'table(${1:Tab}, ${2:LockKind}) $3' -p93546 -tp93547 -a(S'table_info/2' -p93548 -S'table_info(${1:Tab}, ${2:Item}) $3' -p93549 -tp93550 -a(S'table_info/4' -p93551 -S'table_info(${1:Param1}, ${2:Param2}, ${3:Tab}, ${4:Item}) $5' -p93552 -tp93553 -a(S'transaction/1' -p93554 -S'transaction(${1:Fun}) $2' -p93555 -tp93556 -a(S'transaction/2' -p93557 -S'transaction(${1:Fun}, ${2:Args}) $3' -p93558 -tp93559 -a(S'transaction/3' -p93560 -S'transaction(${1:Fun}, ${2:Args}, ${3:Retries}) $4' -p93561 -tp93562 -a(S'transform_table/3' -p93563 -S'transform_table(${1:Tab}, ${2:Fun}, ${3:NewA}) $4' -p93564 -tp93565 -a(S'transform_table/4' -p93566 -S'transform_table(${1:Tab}, ${2:Fun}, ${3:NewA}, ${4:NewRN}) $5' -p93567 -tp93568 -a(S'traverse_backup/4' -p93569 -S'traverse_backup(${1:S}, ${2:T}, ${3:Fun}, ${4:Acc}) $5' -p93570 -tp93571 -a(S'traverse_backup/6' -p93572 -S'traverse_backup(${1:S}, ${2:SM}, ${3:T}, ${4:TM}, ${5:F}, ${6:A}) $7' -p93573 -tp93574 -a(S'uninstall_fallback/0' -p93575 -S'uninstall_fallback() $1' -p93576 -tp93577 -a(S'uninstall_fallback/1' -p93578 -S'uninstall_fallback(${1:Args}) $2' -p93579 -tp93580 -a(S'unsubscribe/1' -p93581 -S'unsubscribe(${1:What}) $2' -p93582 -tp93583 -a(S'wait_for_tables/2' -p93584 -S'wait_for_tables(${1:Tabs}, ${2:Timeout}) $3' -p93585 -tp93586 -a(S'wread/1' -p93587 -S'wread(${1:Oid}) $2' -p93588 -tp93589 -a(S'write/1' -p93590 -S'write(${1:Val}) $2' -p93591 -tp93592 -a(S'write/3' -p93593 -S'write(${1:Tab}, ${2:Val}, ${3:LockKind}) $4' -p93594 -tp93595 -a(S'write/5' -p93596 -S'write(${1:Param1}, ${2:Param2}, ${3:Tab}, ${4:Val}, ${5:LockKind}) $6' -p93597 -tp93598 -a(S'write_lock_table/1' -p93599 -S'write_lock_table(${1:Tab}) $2' -p93600 -tp93601 -a(S'write_table_property/2' -p93602 -S'write_table_property(${1:Tab}, ${2:Prop}) $3' -p93603 -tp93604 -asS'inet_res' -p93605 -(lp93606 -(S'dns_msg/1' -p93607 -S'dns_msg(${1:Msg}) $2' -p93608 -tp93609 -a(S'getbyname/2' -p93610 -S'getbyname(${1:Name}, ${2:Type}) $3' -p93611 -tp93612 -a(S'getbyname/3' -p93613 -S'getbyname(${1:Name}, ${2:Type}, ${3:Timeout}) $4' -p93614 -tp93615 -a(S'getbyname_tm/3' -p93616 -S'getbyname_tm(${1:Name}, ${2:Type}, ${3:Timer}) $4' -p93617 -tp93618 -a(S'gethostbyaddr/1' -p93619 -S'gethostbyaddr(${1:Address}) $2' -p93620 -tp93621 -a(S'gethostbyaddr/2' -p93622 -S'gethostbyaddr(${1:Address}, ${2:Timeout}) $3' -p93623 -tp93624 -a(S'gethostbyaddr_tm/2' -p93625 -S'gethostbyaddr_tm(${1:IP}, ${2:Timer}) $3' -p93626 -tp93627 -a(S'gethostbyname/1' -p93628 -S'gethostbyname(${1:Name}) $2' -p93629 -tp93630 -a(S'gethostbyname/2' -p93631 -S'gethostbyname(${1:Name}, ${2:Family}) $3' -p93632 -tp93633 -a(S'gethostbyname/3' -p93634 -S'gethostbyname(${1:Name}, ${2:Family}, ${3:Timeout}) $4' -p93635 -tp93636 -a(S'gethostbyname_tm/3' -p93637 -S'gethostbyname_tm(${1:Name}, ${2:Param2}, ${3:Timer}) $4' -p93638 -tp93639 -a(S'lookup/3' -p93640 -S'lookup(${1:Name}, ${2:Class}, ${3:Type}) $4' -p93641 -tp93642 -a(S'lookup/4' -p93643 -S'lookup(${1:Name}, ${2:Class}, ${3:Type}, ${4:Opts}) $5' -p93644 -tp93645 -a(S'lookup/5' -p93646 -S'lookup(${1:Name}, ${2:Class}, ${3:Type}, ${4:Opts}, ${5:Timeout}) $6' -p93647 -tp93648 -a(S'nnslookup/4' -p93649 -S'nnslookup(${1:Name}, ${2:Class}, ${3:Type}, ${4:Nameservers}) $5' -p93650 -tp93651 -a(S'nnslookup/5' -p93652 -S'nnslookup(${1:Name}, ${2:Class}, ${3:Type}, ${4:Nameservers}, ${5:Timeout}) $6' -p93653 -tp93654 -a(S'nslookup/3' -p93655 -S'nslookup(${1:Name}, ${2:Class}, ${3:Type}) $4' -p93656 -tp93657 -a(S'nslookup/4' -p93658 -S'nslookup(${1:Name}, ${2:Class}, ${3:Type}, ${4:Timeout}) $5' -p93659 -tp93660 -a(S'resolve/3' -p93661 -S'resolve(${1:Name}, ${2:Class}, ${3:Type}) $4' -p93662 -tp93663 -a(S'resolve/4' -p93664 -S'resolve(${1:Name}, ${2:Class}, ${3:Type}, ${4:Opts}) $5' -p93665 -tp93666 -a(S'resolve/5' -p93667 -S'resolve(${1:Name}, ${2:Class}, ${3:Type}, ${4:Opts}, ${5:Timeout}) $6' -p93668 -tp93669 -asS'xmerl_xml' -p93670 -(lp93671 -(S"'#element#'/5" -p93672 -S"'#element#'(${1:Tag}, ${2:Data}, ${3:Attrs}, ${4:Param4}, ${5:Param5}) $6" -p93673 -tp93674 -a(S"'#root#'/4" -p93675 -S"'#root#'(${1:Data}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5" -p93676 -tp93677 -a(S"'#text#'/1" -p93678 -S"'#text#'(${1:Text}) $2" -p93679 -tp93680 -a(S"'#xml-inheritance#'/0" -p93681 -S"'#xml-inheritance#'() $1" -p93682 -tp93683 -asS'wxProgressDialog' -p93684 -(lp93685 -(S'cacheBestSize/2' -p93686 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p93687 -tp93688 -a(S'captureMouse/1' -p93689 -S'captureMouse(${1:This}) $2' -p93690 -tp93691 -a(S'center/1' -p93692 -S'center(${1:This}) $2' -p93693 -tp93694 -a(S'center/2' -p93695 -S'center(${1:This}, ${2:Options}) $3' -p93696 -tp93697 -a(S'centerOnParent/1' -p93698 -S'centerOnParent(${1:This}) $2' -p93699 -tp93700 -a(S'centerOnParent/2' -p93701 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p93702 -tp93703 -a(S'centerOnScreen/1' -p93704 -S'centerOnScreen(${1:This}) $2' -p93705 -tp93706 -a(S'centerOnScreen/2' -p93707 -S'centerOnScreen(${1:This}, ${2:Options}) $3' -p93708 -tp93709 -a(S'centre/1' -p93710 -S'centre(${1:This}) $2' -p93711 -tp93712 -a(S'centre/2' -p93713 -S'centre(${1:This}, ${2:Options}) $3' -p93714 -tp93715 -a(S'centreOnParent/1' -p93716 -S'centreOnParent(${1:This}) $2' -p93717 -tp93718 -a(S'centreOnParent/2' -p93719 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p93720 -tp93721 -a(S'centreOnScreen/1' -p93722 -S'centreOnScreen(${1:This}) $2' -p93723 -tp93724 -a(S'centreOnScreen/2' -p93725 -S'centreOnScreen(${1:This}, ${2:Options}) $3' -p93726 -tp93727 -a(S'clearBackground/1' -p93728 -S'clearBackground(${1:This}) $2' -p93729 -tp93730 -a(S'clientToScreen/2' -p93731 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p93732 -tp93733 -a(S'clientToScreen/3' -p93734 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p93735 -tp93736 -a(S'close/1' -p93737 -S'close(${1:This}) $2' -p93738 -tp93739 -a(S'close/2' -p93740 -S'close(${1:This}, ${2:Options}) $3' -p93741 -tp93742 -a(S'connect/2' -p93743 -S'connect(${1:This}, ${2:EventType}) $3' -p93744 -tp93745 -a(S'connect/3' -p93746 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p93747 -tp93748 -a(S'convertDialogToPixels/2' -p93749 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p93750 -tp93751 -a(S'convertPixelsToDialog/2' -p93752 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p93753 -tp93754 -a(S'createButtonSizer/2' -p93755 -S'createButtonSizer(${1:This}, ${2:Flags}) $3' -p93756 -tp93757 -a(S'createStdDialogButtonSizer/2' -p93758 -S'createStdDialogButtonSizer(${1:This}, ${2:Flags}) $3' -p93759 -tp93760 -a(S'destroy/1' -p93761 -S'destroy(${1:This}) $2' -p93762 -tp93763 -a(S'destroyChildren/1' -p93764 -S'destroyChildren(${1:This}) $2' -p93765 -tp93766 -a(S'disable/1' -p93767 -S'disable(${1:This}) $2' -p93768 -tp93769 -a(S'disconnect/1' -p93770 -S'disconnect(${1:This}) $2' -p93771 -tp93772 -a(S'disconnect/2' -p93773 -S'disconnect(${1:This}, ${2:EventType}) $3' -p93774 -tp93775 -a(S'disconnect/3' -p93776 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p93777 -tp93778 -a(S'enable/1' -p93779 -S'enable(${1:This}) $2' -p93780 -tp93781 -a(S'enable/2' -p93782 -S'enable(${1:This}, ${2:Options}) $3' -p93783 -tp93784 -a(S'endModal/2' -p93785 -S'endModal(${1:This}, ${2:RetCode}) $3' -p93786 -tp93787 -a(S'findWindow/2' -p93788 -S'findWindow(${1:This}, ${2:Winid}) $3' -p93789 -tp93790 -a(S'fit/1' -p93791 -S'fit(${1:This}) $2' -p93792 -tp93793 -a(S'fitInside/1' -p93794 -S'fitInside(${1:This}) $2' -p93795 -tp93796 -a(S'freeze/1' -p93797 -S'freeze(${1:This}) $2' -p93798 -tp93799 -a(S'getAcceleratorTable/1' -p93800 -S'getAcceleratorTable(${1:This}) $2' -p93801 -tp93802 -a(S'getAffirmativeId/1' -p93803 -S'getAffirmativeId(${1:This}) $2' -p93804 -tp93805 -a(S'getBackgroundColour/1' -p93806 -S'getBackgroundColour(${1:This}) $2' -p93807 -tp93808 -a(S'getBackgroundStyle/1' -p93809 -S'getBackgroundStyle(${1:This}) $2' -p93810 -tp93811 -a(S'getBestSize/1' -p93812 -S'getBestSize(${1:This}) $2' -p93813 -tp93814 -a(S'getCaret/1' -p93815 -S'getCaret(${1:This}) $2' -p93816 -tp93817 -a(S'getCharHeight/1' -p93818 -S'getCharHeight(${1:This}) $2' -p93819 -tp93820 -a(S'getCharWidth/1' -p93821 -S'getCharWidth(${1:This}) $2' -p93822 -tp93823 -a(S'getChildren/1' -p93824 -S'getChildren(${1:This}) $2' -p93825 -tp93826 -a(S'getClientSize/1' -p93827 -S'getClientSize(${1:This}) $2' -p93828 -tp93829 -a(S'getContainingSizer/1' -p93830 -S'getContainingSizer(${1:This}) $2' -p93831 -tp93832 -a(S'getCursor/1' -p93833 -S'getCursor(${1:This}) $2' -p93834 -tp93835 -a(S'getDropTarget/1' -p93836 -S'getDropTarget(${1:This}) $2' -p93837 -tp93838 -a(S'getEventHandler/1' -p93839 -S'getEventHandler(${1:This}) $2' -p93840 -tp93841 -a(S'getExtraStyle/1' -p93842 -S'getExtraStyle(${1:This}) $2' -p93843 -tp93844 -a(S'getFont/1' -p93845 -S'getFont(${1:This}) $2' -p93846 -tp93847 -a(S'getForegroundColour/1' -p93848 -S'getForegroundColour(${1:This}) $2' -p93849 -tp93850 -a(S'getGrandParent/1' -p93851 -S'getGrandParent(${1:This}) $2' -p93852 -tp93853 -a(S'getHandle/1' -p93854 -S'getHandle(${1:This}) $2' -p93855 -tp93856 -a(S'getHelpText/1' -p93857 -S'getHelpText(${1:This}) $2' -p93858 -tp93859 -a(S'getIcon/1' -p93860 -S'getIcon(${1:This}) $2' -p93861 -tp93862 -a(S'getIcons/1' -p93863 -S'getIcons(${1:This}) $2' -p93864 -tp93865 -a(S'getId/1' -p93866 -S'getId(${1:This}) $2' -p93867 -tp93868 -a(S'getLabel/1' -p93869 -S'getLabel(${1:This}) $2' -p93870 -tp93871 -a(S'getMaxSize/1' -p93872 -S'getMaxSize(${1:This}) $2' -p93873 -tp93874 -a(S'getMinSize/1' -p93875 -S'getMinSize(${1:This}) $2' -p93876 -tp93877 -a(S'getName/1' -p93878 -S'getName(${1:This}) $2' -p93879 -tp93880 -a(S'getParent/1' -p93881 -S'getParent(${1:This}) $2' -p93882 -tp93883 -a(S'getPosition/1' -p93884 -S'getPosition(${1:This}) $2' -p93885 -tp93886 -a(S'getRect/1' -p93887 -S'getRect(${1:This}) $2' -p93888 -tp93889 -a(S'getReturnCode/1' -p93890 -S'getReturnCode(${1:This}) $2' -p93891 -tp93892 -a(S'getScreenPosition/1' -p93893 -S'getScreenPosition(${1:This}) $2' -p93894 -tp93895 -a(S'getScreenRect/1' -p93896 -S'getScreenRect(${1:This}) $2' -p93897 -tp93898 -a(S'getScrollPos/2' -p93899 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p93900 -tp93901 -a(S'getScrollRange/2' -p93902 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p93903 -tp93904 -a(S'getScrollThumb/2' -p93905 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p93906 -tp93907 -a(S'getSize/1' -p93908 -S'getSize(${1:This}) $2' -p93909 -tp93910 -a(S'getSizer/1' -p93911 -S'getSizer(${1:This}) $2' -p93912 -tp93913 -a(S'getTextExtent/2' -p93914 -S'getTextExtent(${1:This}, ${2:String}) $3' -p93915 -tp93916 -a(S'getTextExtent/3' -p93917 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p93918 -tp93919 -a(S'getTitle/1' -p93920 -S'getTitle(${1:This}) $2' -p93921 -tp93922 -a(S'getToolTip/1' -p93923 -S'getToolTip(${1:This}) $2' -p93924 -tp93925 -a(S'getUpdateRegion/1' -p93926 -S'getUpdateRegion(${1:This}) $2' -p93927 -tp93928 -a(S'getVirtualSize/1' -p93929 -S'getVirtualSize(${1:This}) $2' -p93930 -tp93931 -a(S'getWindowStyleFlag/1' -p93932 -S'getWindowStyleFlag(${1:This}) $2' -p93933 -tp93934 -a(S'getWindowVariant/1' -p93935 -S'getWindowVariant(${1:This}) $2' -p93936 -tp93937 -a(S'hasCapture/1' -p93938 -S'hasCapture(${1:This}) $2' -p93939 -tp93940 -a(S'hasScrollbar/2' -p93941 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p93942 -tp93943 -a(S'hasTransparentBackground/1' -p93944 -S'hasTransparentBackground(${1:This}) $2' -p93945 -tp93946 -a(S'hide/1' -p93947 -S'hide(${1:This}) $2' -p93948 -tp93949 -a(S'iconize/1' -p93950 -S'iconize(${1:This}) $2' -p93951 -tp93952 -a(S'iconize/2' -p93953 -S'iconize(${1:This}, ${2:Options}) $3' -p93954 -tp93955 -a(S'inheritAttributes/1' -p93956 -S'inheritAttributes(${1:This}) $2' -p93957 -tp93958 -a(S'initDialog/1' -p93959 -S'initDialog(${1:This}) $2' -p93960 -tp93961 -a(S'invalidateBestSize/1' -p93962 -S'invalidateBestSize(${1:This}) $2' -p93963 -tp93964 -a(S'isActive/1' -p93965 -S'isActive(${1:This}) $2' -p93966 -tp93967 -a(S'isEnabled/1' -p93968 -S'isEnabled(${1:This}) $2' -p93969 -tp93970 -a(S'isExposed/2' -p93971 -S'isExposed(${1:This}, ${2:Pt}) $3' -p93972 -tp93973 -a(S'isExposed/3' -p93974 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p93975 -tp93976 -a(S'isExposed/5' -p93977 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p93978 -tp93979 -a(S'isFullScreen/1' -p93980 -S'isFullScreen(${1:This}) $2' -p93981 -tp93982 -a(S'isIconized/1' -p93983 -S'isIconized(${1:This}) $2' -p93984 -tp93985 -a(S'isMaximized/1' -p93986 -S'isMaximized(${1:This}) $2' -p93987 -tp93988 -a(S'isModal/1' -p93989 -S'isModal(${1:This}) $2' -p93990 -tp93991 -a(S'isRetained/1' -p93992 -S'isRetained(${1:This}) $2' -p93993 -tp93994 -a(S'isShown/1' -p93995 -S'isShown(${1:This}) $2' -p93996 -tp93997 -a(S'isTopLevel/1' -p93998 -S'isTopLevel(${1:This}) $2' -p93999 -tp94000 -a(S'layout/1' -p94001 -S'layout(${1:This}) $2' -p94002 -tp94003 -a(S'lineDown/1' -p94004 -S'lineDown(${1:This}) $2' -p94005 -tp94006 -a(S'lineUp/1' -p94007 -S'lineUp(${1:This}) $2' -p94008 -tp94009 -a(S'lower/1' -p94010 -S'lower(${1:This}) $2' -p94011 -tp94012 -a(S'makeModal/1' -p94013 -S'makeModal(${1:This}) $2' -p94014 -tp94015 -a(S'makeModal/2' -p94016 -S'makeModal(${1:This}, ${2:Options}) $3' -p94017 -tp94018 -a(S'maximize/1' -p94019 -S'maximize(${1:This}) $2' -p94020 -tp94021 -a(S'maximize/2' -p94022 -S'maximize(${1:This}, ${2:Options}) $3' -p94023 -tp94024 -a(S'move/2' -p94025 -S'move(${1:This}, ${2:Pt}) $3' -p94026 -tp94027 -a(S'move/3' -p94028 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p94029 -tp94030 -a(S'move/4' -p94031 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p94032 -tp94033 -a(S'moveAfterInTabOrder/2' -p94034 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p94035 -tp94036 -a(S'moveBeforeInTabOrder/2' -p94037 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p94038 -tp94039 -a(S'navigate/1' -p94040 -S'navigate(${1:This}) $2' -p94041 -tp94042 -a(S'navigate/2' -p94043 -S'navigate(${1:This}, ${2:Options}) $3' -p94044 -tp94045 -a(S'new/2' -p94046 -S'new(${1:Title}, ${2:Message}) $3' -p94047 -tp94048 -a(S'new/3' -p94049 -S'new(${1:Title}, ${2:Message}, ${3:Param3}) $4' -p94050 -tp94051 -a(S'pageDown/1' -p94052 -S'pageDown(${1:This}) $2' -p94053 -tp94054 -a(S'pageUp/1' -p94055 -S'pageUp(${1:This}) $2' -p94056 -tp94057 -a(S'parent_class/1' -p94058 -S'parent_class(${1:Param1}) $2' -p94059 -tp94060 -a(S'popEventHandler/1' -p94061 -S'popEventHandler(${1:This}) $2' -p94062 -tp94063 -a(S'popEventHandler/2' -p94064 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p94065 -tp94066 -a(S'popupMenu/2' -p94067 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p94068 -tp94069 -a(S'popupMenu/3' -p94070 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p94071 -tp94072 -a(S'popupMenu/4' -p94073 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p94074 -tp94075 -a(S'raise/1' -p94076 -S'raise(${1:This}) $2' -p94077 -tp94078 -a(S'refresh/1' -p94079 -S'refresh(${1:This}) $2' -p94080 -tp94081 -a(S'refresh/2' -p94082 -S'refresh(${1:This}, ${2:Options}) $3' -p94083 -tp94084 -a(S'refreshRect/2' -p94085 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p94086 -tp94087 -a(S'refreshRect/3' -p94088 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p94089 -tp94090 -a(S'releaseMouse/1' -p94091 -S'releaseMouse(${1:This}) $2' -p94092 -tp94093 -a(S'removeChild/2' -p94094 -S'removeChild(${1:This}, ${2:Child}) $3' -p94095 -tp94096 -a(S'reparent/2' -p94097 -S'reparent(${1:This}, ${2:NewParent}) $3' -p94098 -tp94099 -a(S'requestUserAttention/1' -p94100 -S'requestUserAttention(${1:This}) $2' -p94101 -tp94102 -a(S'requestUserAttention/2' -p94103 -S'requestUserAttention(${1:This}, ${2:Options}) $3' -p94104 -tp94105 -a(S'resume/1' -p94106 -S'resume(${1:This}) $2' -p94107 -tp94108 -a(S'screenToClient/1' -p94109 -S'screenToClient(${1:This}) $2' -p94110 -tp94111 -a(S'screenToClient/2' -p94112 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p94113 -tp94114 -a(S'scrollLines/2' -p94115 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p94116 -tp94117 -a(S'scrollPages/2' -p94118 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p94119 -tp94120 -a(S'scrollWindow/3' -p94121 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p94122 -tp94123 -a(S'scrollWindow/4' -p94124 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p94125 -tp94126 -a(S'setAcceleratorTable/2' -p94127 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p94128 -tp94129 -a(S'setAffirmativeId/2' -p94130 -S'setAffirmativeId(${1:This}, ${2:AffirmativeId}) $3' -p94131 -tp94132 -a(S'setAutoLayout/2' -p94133 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p94134 -tp94135 -a(S'setBackgroundColour/2' -p94136 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p94137 -tp94138 -a(S'setBackgroundStyle/2' -p94139 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p94140 -tp94141 -a(S'setCaret/2' -p94142 -S'setCaret(${1:This}, ${2:Caret}) $3' -p94143 -tp94144 -a(S'setClientSize/2' -p94145 -S'setClientSize(${1:This}, ${2:Size}) $3' -p94146 -tp94147 -a(S'setClientSize/3' -p94148 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p94149 -tp94150 -a(S'setContainingSizer/2' -p94151 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p94152 -tp94153 -a(S'setCursor/2' -p94154 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p94155 -tp94156 -a(S'setDropTarget/2' -p94157 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p94158 -tp94159 -a(S'setExtraStyle/2' -p94160 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p94161 -tp94162 -a(S'setFocus/1' -p94163 -S'setFocus(${1:This}) $2' -p94164 -tp94165 -a(S'setFocusFromKbd/1' -p94166 -S'setFocusFromKbd(${1:This}) $2' -p94167 -tp94168 -a(S'setFont/2' -p94169 -S'setFont(${1:This}, ${2:Font}) $3' -p94170 -tp94171 -a(S'setForegroundColour/2' -p94172 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p94173 -tp94174 -a(S'setHelpText/2' -p94175 -S'setHelpText(${1:This}, ${2:Text}) $3' -p94176 -tp94177 -a(S'setIcon/2' -p94178 -S'setIcon(${1:This}, ${2:Icon}) $3' -p94179 -tp94180 -a(S'setIcons/2' -p94181 -S'setIcons(${1:This}, ${2:Icons}) $3' -p94182 -tp94183 -a(S'setId/2' -p94184 -S'setId(${1:This}, ${2:Winid}) $3' -p94185 -tp94186 -a(S'setLabel/2' -p94187 -S'setLabel(${1:This}, ${2:Label}) $3' -p94188 -tp94189 -a(S'setMaxSize/2' -p94190 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p94191 -tp94192 -a(S'setMinSize/2' -p94193 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p94194 -tp94195 -a(S'setName/2' -p94196 -S'setName(${1:This}, ${2:Name}) $3' -p94197 -tp94198 -a(S'setOwnBackgroundColour/2' -p94199 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p94200 -tp94201 -a(S'setOwnFont/2' -p94202 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p94203 -tp94204 -a(S'setOwnForegroundColour/2' -p94205 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p94206 -tp94207 -a(S'setPalette/2' -p94208 -S'setPalette(${1:This}, ${2:Pal}) $3' -p94209 -tp94210 -a(S'setReturnCode/2' -p94211 -S'setReturnCode(${1:This}, ${2:ReturnCode}) $3' -p94212 -tp94213 -a(S'setScrollPos/3' -p94214 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p94215 -tp94216 -a(S'setScrollPos/4' -p94217 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p94218 -tp94219 -a(S'setScrollbar/5' -p94220 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p94221 -tp94222 -a(S'setScrollbar/6' -p94223 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p94224 -tp94225 -a(S'setShape/2' -p94226 -S'setShape(${1:This}, ${2:Region}) $3' -p94227 -tp94228 -a(S'setSize/2' -p94229 -S'setSize(${1:This}, ${2:Rect}) $3' -p94230 -tp94231 -a(S'setSize/3' -p94232 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p94233 -tp94234 -a(S'setSize/5' -p94235 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p94236 -tp94237 -a(S'setSize/6' -p94238 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p94239 -tp94240 -a(S'setSizeHints/2' -p94241 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p94242 -tp94243 -a(S'setSizeHints/3' -p94244 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p94245 -tp94246 -a(S'setSizeHints/4' -p94247 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p94248 -tp94249 -a(S'setSizer/2' -p94250 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p94251 -tp94252 -a(S'setSizer/3' -p94253 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p94254 -tp94255 -a(S'setSizerAndFit/2' -p94256 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p94257 -tp94258 -a(S'setSizerAndFit/3' -p94259 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p94260 -tp94261 -a(S'setThemeEnabled/2' -p94262 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p94263 -tp94264 -a(S'setTitle/2' -p94265 -S'setTitle(${1:This}, ${2:Title}) $3' -p94266 -tp94267 -a(S'setToolTip/2' -p94268 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p94269 -tp94270 -a(S'setVirtualSize/2' -p94271 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p94272 -tp94273 -a(S'setVirtualSize/3' -p94274 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p94275 -tp94276 -a(S'setVirtualSizeHints/2' -p94277 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p94278 -tp94279 -a(S'setVirtualSizeHints/3' -p94280 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p94281 -tp94282 -a(S'setVirtualSizeHints/4' -p94283 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p94284 -tp94285 -a(S'setWindowStyle/2' -p94286 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p94287 -tp94288 -a(S'setWindowStyleFlag/2' -p94289 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p94290 -tp94291 -a(S'setWindowVariant/2' -p94292 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p94293 -tp94294 -a(S'shouldInheritColours/1' -p94295 -S'shouldInheritColours(${1:This}) $2' -p94296 -tp94297 -a(S'show/1' -p94298 -S'show(${1:This}) $2' -p94299 -tp94300 -a(S'show/2' -p94301 -S'show(${1:This}, ${2:Options}) $3' -p94302 -tp94303 -a(S'showFullScreen/2' -p94304 -S'showFullScreen(${1:This}, ${2:Show}) $3' -p94305 -tp94306 -a(S'showFullScreen/3' -p94307 -S'showFullScreen(${1:This}, ${2:Show}, ${3:Options}) $4' -p94308 -tp94309 -a(S'showModal/1' -p94310 -S'showModal(${1:This}) $2' -p94311 -tp94312 -a(S'thaw/1' -p94313 -S'thaw(${1:This}) $2' -p94314 -tp94315 -a(S'transferDataFromWindow/1' -p94316 -S'transferDataFromWindow(${1:This}) $2' -p94317 -tp94318 -a(S'transferDataToWindow/1' -p94319 -S'transferDataToWindow(${1:This}) $2' -p94320 -tp94321 -a(S'update/1' -p94322 -S'update(${1:This}) $2' -p94323 -tp94324 -a(S'update/2' -p94325 -S'update(${1:This}, ${2:Value}) $3' -p94326 -tp94327 -a(S'update/3' -p94328 -S'update(${1:This}, ${2:Value}, ${3:Param3}) $4' -p94329 -tp94330 -a(S'updateWindowUI/1' -p94331 -S'updateWindowUI(${1:This}) $2' -p94332 -tp94333 -a(S'updateWindowUI/2' -p94334 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p94335 -tp94336 -a(S'validate/1' -p94337 -S'validate(${1:This}) $2' -p94338 -tp94339 -a(S'warpPointer/3' -p94340 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p94341 -tp94342 -asS'wxe_master' -p94343 -(lp94344 -(S'code_change/3' -p94345 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p94346 -tp94347 -a(S'handle_call/3' -p94348 -S'handle_call(${1:Param1}, ${2:From}, ${3:State}) $4' -p94349 -tp94350 -a(S'handle_cast/2' -p94351 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p94352 -tp94353 -a(S'handle_info/2' -p94354 -S'handle_info(${1:Param1}, ${2:State}) $3' -p94355 -tp94356 -a(S'init/1' -p94357 -S'init(${1:Param1}) $2' -p94358 -tp94359 -a(S'init_opengl/0' -p94360 -S'init_opengl() $1' -p94361 -tp94362 -a(S'init_port/0' -p94363 -S'init_port() $1' -p94364 -tp94365 -a(S'start/0' -p94366 -S'start() $1' -p94367 -tp94368 -a(S'terminate/2' -p94369 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p94370 -tp94371 -asS'CosNotifyComm_StructuredPushSupplier' -p94372 -(lp94373 -(S'code_change/3' -p94374 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p94375 -tp94376 -a(S'disconnect_structured_push_supplier/1' -p94377 -S'disconnect_structured_push_supplier(${1:OE_THIS}) $2' -p94378 -tp94379 -a(S'disconnect_structured_push_supplier/2' -p94380 -S'disconnect_structured_push_supplier(${1:OE_THIS}, ${2:OE_Options}) $3' -p94381 -tp94382 -a(S'handle_call/3' -p94383 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p94384 -tp94385 -a(S'handle_cast/2' -p94386 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p94387 -tp94388 -a(S'handle_info/2' -p94389 -S'handle_info(${1:Param1}, ${2:State}) $3' -p94390 -tp94391 -a(S'init/1' -p94392 -S'init(${1:Env}) $2' -p94393 -tp94394 -a(S'oe_create/0' -p94395 -S'oe_create() $1' -p94396 -tp94397 -a(S'oe_create/1' -p94398 -S'oe_create(${1:Env}) $2' -p94399 -tp94400 -a(S'oe_create/2' -p94401 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p94402 -tp94403 -a(S'oe_create_link/0' -p94404 -S'oe_create_link() $1' -p94405 -tp94406 -a(S'oe_create_link/1' -p94407 -S'oe_create_link(${1:Env}) $2' -p94408 -tp94409 -a(S'oe_create_link/2' -p94410 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p94411 -tp94412 -a(S'oe_get_interface/0' -p94413 -S'oe_get_interface() $1' -p94414 -tp94415 -a(S'oe_is_a/1' -p94416 -S'oe_is_a(${1:Param1}) $2' -p94417 -tp94418 -a(S'oe_tc/1' -p94419 -S'oe_tc(${1:Param1}) $2' -p94420 -tp94421 -a(S'subscription_change/3' -p94422 -S'subscription_change(${1:OE_THIS}, ${2:Added}, ${3:Removed}) $4' -p94423 -tp94424 -a(S'subscription_change/4' -p94425 -S'subscription_change(${1:OE_THIS}, ${2:OE_Options}, ${3:Added}, ${4:Removed}) $5' -p94426 -tp94427 -a(S'terminate/2' -p94428 -S'terminate(${1:Reason}, ${2:State}) $3' -p94429 -tp94430 -a(S'typeID/0' -p94431 -S'typeID() $1' -p94432 -tp94433 -asS'wxHtmlEasyPrinting' -p94434 -(lp94435 -(S'destroy/1' -p94436 -S'destroy(${1:This}) $2' -p94437 -tp94438 -a(S'getPageSetupData/1' -p94439 -S'getPageSetupData(${1:This}) $2' -p94440 -tp94441 -a(S'getPrintData/1' -p94442 -S'getPrintData(${1:This}) $2' -p94443 -tp94444 -a(S'new/0' -p94445 -S'new() $1' -p94446 -tp94447 -a(S'new/1' -p94448 -S'new(${1:Param1}) $2' -p94449 -tp94450 -a(S'pageSetup/1' -p94451 -S'pageSetup(${1:This}) $2' -p94452 -tp94453 -a(S'parent_class/1' -p94454 -S'parent_class(${1:Param1}) $2' -p94455 -tp94456 -a(S'previewFile/2' -p94457 -S'previewFile(${1:This}, ${2:Htmlfile}) $3' -p94458 -tp94459 -a(S'previewText/2' -p94460 -S'previewText(${1:This}, ${2:Htmltext}) $3' -p94461 -tp94462 -a(S'previewText/3' -p94463 -S'previewText(${1:This}, ${2:Htmltext}, ${3:Param3}) $4' -p94464 -tp94465 -a(S'printFile/2' -p94466 -S'printFile(${1:This}, ${2:Htmlfile}) $3' -p94467 -tp94468 -a(S'printText/2' -p94469 -S'printText(${1:This}, ${2:Htmltext}) $3' -p94470 -tp94471 -a(S'printText/3' -p94472 -S'printText(${1:This}, ${2:Htmltext}, ${3:Param3}) $4' -p94473 -tp94474 -a(S'setFonts/3' -p94475 -S'setFonts(${1:This}, ${2:Normal_face}, ${3:Fixed_face}) $4' -p94476 -tp94477 -a(S'setFonts/4' -p94478 -S'setFonts(${1:This}, ${2:Normal_face}, ${3:Fixed_face}, ${4:Param4}) $5' -p94479 -tp94480 -a(S'setFooter/2' -p94481 -S'setFooter(${1:This}, ${2:Footer}) $3' -p94482 -tp94483 -a(S'setFooter/3' -p94484 -S'setFooter(${1:This}, ${2:Footer}, ${3:Param3}) $4' -p94485 -tp94486 -a(S'setHeader/2' -p94487 -S'setHeader(${1:This}, ${2:Header}) $3' -p94488 -tp94489 -a(S'setHeader/3' -p94490 -S'setHeader(${1:This}, ${2:Header}, ${3:Param3}) $4' -p94491 -tp94492 -asS'megaco_messenger_misc' -p94493 -(lp94494 -(S'compose_message/3' -p94495 -S'compose_message() $1' -p94496 -tp94497 -a(S'encode_actions/3' -p94498 -S'encode_actions(${1:CD}, ${2:TraceLabel}, ${3:ARs}) $4' -p94499 -tp94500 -a(S'encode_body/3' -p94501 -S'encode_body() $1' -p94502 -tp94503 -a(S'encode_message/2' -p94504 -S'encode_message() $1' -p94505 -tp94506 -a(S'encode_trans_reply/2' -p94507 -S'encode_trans_reply(${1:CD}, ${2:TR}) $3' -p94508 -tp94509 -a(S'encode_trans_request/2' -p94510 -S'encode_trans_request(${1:CD}, ${2:TR}) $3' -p94511 -tp94512 -a(S'send_body/3' -p94513 -S'send_body(${1:ConnData}, ${2:TraceLabel}, ${3:Body}) $4' -p94514 -tp94515 -a(S'send_message/3' -p94516 -S'send_message(${1:ConnData}, ${2:Param2}, ${3:Bin}) $4' -p94517 -tp94518 -a(S'transform_transaction_reply/2' -p94519 -S'transform_transaction_reply(${1:Param1}, ${2:TR}) $3' -p94520 -tp94521 -asS'CosFileTransfer_SessionException' -p94522 -(lp94523 -(S'id/0' -p94524 -S'id() $1' -p94525 -tp94526 -a(S'name/0' -p94527 -S'name() $1' -p94528 -tp94529 -a(S'tc/0' -p94530 -S'tc() $1' -p94531 -tp94532 -asS'inet_hosts' -p94533 -(lp94534 -(S'gethostbyaddr/1' -p94535 -S'gethostbyaddr(${1:IP}) $2' -p94536 -tp94537 -a(S'gethostbyname/1' -p94538 -S'gethostbyname(${1:Name}) $2' -p94539 -tp94540 -a(S'gethostbyname/2' -p94541 -S'gethostbyname(${1:Name}, ${2:Type}) $3' -p94542 -tp94543 -asS'ssh_sftpd_file' -p94544 -(lp94545 -(S'close/2' -p94546 -S'close(${1:IoDevice}, ${2:State}) $3' -p94547 -tp94548 -a(S'del_dir/2' -p94549 -S'del_dir(${1:Path}, ${2:State}) $3' -p94550 -tp94551 -a(S'delete/2' -p94552 -S'delete(${1:Path}, ${2:State}) $3' -p94553 -tp94554 -a(S'get_cwd/1' -p94555 -S'get_cwd(${1:State}) $2' -p94556 -tp94557 -a(S'is_dir/2' -p94558 -S'is_dir(${1:AbsPath}, ${2:State}) $3' -p94559 -tp94560 -a(S'list_dir/2' -p94561 -S'list_dir(${1:AbsPath}, ${2:State}) $3' -p94562 -tp94563 -a(S'make_dir/2' -p94564 -S'make_dir(${1:Dir}, ${2:State}) $3' -p94565 -tp94566 -a(S'make_symlink/3' -p94567 -S'make_symlink(${1:Path2}, ${2:Path}, ${3:State}) $4' -p94568 -tp94569 -a(S'open/3' -p94570 -S'open(${1:Path}, ${2:Flags}, ${3:State}) $4' -p94571 -tp94572 -a(S'position/3' -p94573 -S'position(${1:IoDevice}, ${2:Offs}, ${3:State}) $4' -p94574 -tp94575 -a(S'read/3' -p94576 -S'read(${1:IoDevice}, ${2:Len}, ${3:State}) $4' -p94577 -tp94578 -a(S'read_file_info/2' -p94579 -S'read_file_info(${1:Path}, ${2:State}) $3' -p94580 -tp94581 -a(S'read_link/2' -p94582 -S'read_link(${1:Path}, ${2:State}) $3' -p94583 -tp94584 -a(S'read_link_info/2' -p94585 -S'read_link_info(${1:Path}, ${2:State}) $3' -p94586 -tp94587 -a(S'rename/3' -p94588 -S'rename(${1:Path}, ${2:Path2}, ${3:State}) $4' -p94589 -tp94590 -a(S'write/3' -p94591 -S'write(${1:IoDevice}, ${2:Data}, ${3:State}) $4' -p94592 -tp94593 -a(S'write_file_info/3' -p94594 -S'write_file_info(${1:Path}, ${2:Info}, ${3:State}) $4' -p94595 -tp94596 -asS'appmon_dg' -p94597 -(lp94598 -(S'add/4' -p94599 -S'add(${1:DG}, ${2:E}, ${3:D}, ${4:Ref}) $5' -p94600 -tp94601 -a(S'ae/3' -p94602 -S'ae(${1:DG}, ${2:Param2}, ${3:D}) $4' -p94603 -tp94604 -a(S'av/3' -p94605 -S'av(${1:DG}, ${2:V}, ${3:D}) $4' -p94606 -tp94607 -a(S'del/2' -p94608 -S'del(${1:DG}, ${2:E}) $3' -p94609 -tp94610 -a(S'eadd/4' -p94611 -S'eadd(${1:DG}, ${2:E}, ${3:D}, ${4:Ref}) $5' -p94612 -tp94613 -a(S'edel/2' -p94614 -S'edel(${1:DG}, ${2:E}) $3' -p94615 -tp94616 -a(S'eget/2' -p94617 -S'eget(${1:Param1}, ${2:DG}) $3' -p94618 -tp94619 -a(S'eget/3' -p94620 -S'eget(${1:Param1}, ${2:DG}, ${3:E}) $4' -p94621 -tp94622 -a(S'eset/4' -p94623 -S'eset(${1:Param1}, ${2:DG}, ${3:E}, ${4:Ref}) $5' -p94624 -tp94625 -a(S'get/2' -p94626 -S'get(${1:Param1}, ${2:DG}) $3' -p94627 -tp94628 -a(S'get/3' -p94629 -S'get(${1:Param1}, ${2:DG}, ${3:E}) $4' -p94630 -tp94631 -a(S'print_dg/1' -p94632 -S'print_dg(${1:DG}) $2' -p94633 -tp94634 -a(S'set/4' -p94635 -S'set(${1:Param1}, ${2:DG}, ${3:E}, ${4:Ref}) $5' -p94636 -tp94637 -a(S'visited/3' -p94638 -S'visited(${1:DG}, ${2:V}, ${3:Ref}) $4' -p94639 -tp94640 -asS'percept_db' -p94641 -(lp94642 -(S'consolidate/0' -p94643 -S'consolidate() $1' -p94644 -tp94645 -a(S'insert/1' -p94646 -S'insert(${1:Trace}) $2' -p94647 -tp94648 -a(S'select/1' -p94649 -S'select(${1:Query}) $2' -p94650 -tp94651 -a(S'select/2' -p94652 -S'select(${1:Table}, ${2:Options}) $3' -p94653 -tp94654 -a(S'start/0' -p94655 -S'start() $1' -p94656 -tp94657 -a(S'stop/0' -p94658 -S'stop() $1' -p94659 -tp94660 -asS'eunit_surefire' -p94661 -(lp94662 -(S'handle_begin/3' -p94663 -S'handle_begin() $1' -p94664 -tp94665 -a(S'handle_cancel/3' -p94666 -S'handle_cancel(${1:Param1}, ${2:Data}, ${3:St}) $4' -p94667 -tp94668 -a(S'handle_end/3' -p94669 -S'handle_end(${1:Param1}, ${2:Data}, ${3:St}) $4' -p94670 -tp94671 -a(S'init/1' -p94672 -S'init(${1:Options}) $2' -p94673 -tp94674 -a(S'start/0' -p94675 -S'start() $1' -p94676 -tp94677 -a(S'start/1' -p94678 -S'start(${1:Options}) $2' -p94679 -tp94680 -a(S'terminate/2' -p94681 -S'terminate(${1:Param1}, ${2:St}) $3' -p94682 -tp94683 -asS'systools' -p94684 -(lp94685 -(S'compile_rel/3' -p94686 -S'compile_rel(${1:Input}, ${2:Output}, ${3:Options}) $4' -p94687 -tp94688 -a(S'make_relup/3' -p94689 -S'make_relup(${1:ReleaseName}, ${2:UpNameList}, ${3:DownNameList}) $4' -p94690 -tp94691 -a(S'make_relup/4' -p94692 -S'make_relup(${1:ReleaseName}, ${2:UpNameList}, ${3:DownNameList}, ${4:Opts}) $5' -p94693 -tp94694 -a(S'make_script/1' -p94695 -S'make_script(${1:RelName}) $2' -p94696 -tp94697 -a(S'make_script/2' -p94698 -S'make_script(${1:RelName}, ${2:Opt}) $3' -p94699 -tp94700 -a(S'make_tar/1' -p94701 -S'make_tar(${1:RelName}) $2' -p94702 -tp94703 -a(S'make_tar/2' -p94704 -S'make_tar(${1:RelName}, ${2:Opt}) $3' -p94705 -tp94706 -a(S'script2boot/1' -p94707 -S'script2boot(${1:File}) $2' -p94708 -tp94709 -a(S'script2boot/3' -p94710 -S'script2boot(${1:File}, ${2:Output0}, ${3:Param3}) $4' -p94711 -tp94712 -asS'ct_config_plain' -p94713 -(lp94714 -(S'check_parameter/1' -p94715 -S'check_parameter(${1:File}) $2' -p94716 -tp94717 -a(S'read_config/1' -p94718 -S'read_config(${1:ConfigFile}) $2' -p94719 -tp94720 -asS'orber_ifr_structdef' -p94721 -(lp94722 -(S"'_get_absolute_name'/1" -p94723 -S"'_get_absolute_name'() $1" -p94724 -tp94725 -a(S"'_get_containing_repository'/1" -p94726 -S"'_get_containing_repository'() $1" -p94727 -tp94728 -a(S"'_get_def_kind'/1" -p94729 -S"'_get_def_kind'() $1" -p94730 -tp94731 -a(S"'_get_defined_in'/1" -p94732 -S"'_get_defined_in'() $1" -p94733 -tp94734 -a(S"'_get_id'/1" -p94735 -S"'_get_id'() $1" -p94736 -tp94737 -a(S"'_get_members'/1" -p94738 -S"'_get_members'() $1" -p94739 -tp94740 -a(S"'_get_name'/1" -p94741 -S"'_get_name'() $1" -p94742 -tp94743 -a(S"'_get_type'/1" -p94744 -S"'_get_type'() $1" -p94745 -tp94746 -a(S"'_get_version'/1" -p94747 -S"'_get_version'() $1" -p94748 -tp94749 -a(S"'_set_id'/2" -p94750 -S"'_set_id'() $1" -p94751 -tp94752 -a(S"'_set_members'/2" -p94753 -S"'_set_members'() $1" -p94754 -tp94755 -a(S"'_set_name'/2" -p94756 -S"'_set_name'() $1" -p94757 -tp94758 -a(S"'_set_version'/2" -p94759 -S"'_set_version'() $1" -p94760 -tp94761 -a(S'cleanup_for_destroy/1' -p94762 -S'cleanup_for_destroy() $1' -p94763 -tp94764 -a(S'describe/1' -p94765 -S'describe() $1' -p94766 -tp94767 -a(S'destroy/1' -p94768 -S'destroy() $1' -p94769 -tp94770 -a(S'move/4' -p94771 -S'move() $1' -p94772 -tp94773 -asS'megaco_compact_text_encoder_v2' -p94774 -(lp94775 -(S'encode_action_reply/2' -p94776 -S'encode_action_reply() $1' -p94777 -tp94778 -a(S'encode_action_request/2' -p94779 -S'encode_action_request() $1' -p94780 -tp94781 -a(S'encode_action_requests/2' -p94782 -S'encode_action_requests(${1:Param1}, ${2:ActReqs}) $3' -p94783 -tp94784 -a(S'encode_command_request/2' -p94785 -S'encode_command_request() $1' -p94786 -tp94787 -a(S'encode_message/2' -p94788 -S'encode_message(${1:Param1}, ${2:Param2}) $3' -p94789 -tp94790 -a(S'encode_transaction/2' -p94791 -S'encode_transaction(${1:Param1}, ${2:Trans}) $3' -p94792 -tp94793 -a(S'token_tag2string/1' -p94794 -S'token_tag2string(${1:Param1}) $2' -p94795 -tp94796 -asS'megaco_compact_text_encoder_v3' -p94797 -(lp94798 -(S'encode_action_reply/2' -p94799 -S'encode_action_reply() $1' -p94800 -tp94801 -a(S'encode_action_request/2' -p94802 -S'encode_action_request() $1' -p94803 -tp94804 -a(S'encode_action_requests/2' -p94805 -S'encode_action_requests(${1:Param1}, ${2:ActReqs}) $3' -p94806 -tp94807 -a(S'encode_command_request/2' -p94808 -S'encode_command_request() $1' -p94809 -tp94810 -a(S'encode_message/2' -p94811 -S'encode_message(${1:Param1}, ${2:Param2}) $3' -p94812 -tp94813 -a(S'encode_transaction/2' -p94814 -S'encode_transaction(${1:Param1}, ${2:Trans}) $3' -p94815 -tp94816 -a(S'token_tag2string/1' -p94817 -S'token_tag2string(${1:Param1}) $2' -p94818 -tp94819 -asS'etrap_logmgr' -p94820 -(lp94821 -(S'get_next/2' -p94822 -S'get_next(${1:LogName}, ${2:Cursor}) $3' -p94823 -tp94824 -a(S'log_lazy/2' -p94825 -S'log_lazy(${1:LogName}, ${2:LogRecord}) $3' -p94826 -tp94827 -a(S'log_safe/2' -p94828 -S'log_safe(${1:LogName}, ${2:LogRecord}) $3' -p94829 -tp94830 -a(S'start/1' -p94831 -S'start(${1:LogName}) $2' -p94832 -tp94833 -a(S'stop/1' -p94834 -S'stop(${1:LogName}) $2' -p94835 -tp94836 -asS'ssl_cipher' -p94837 -(lp94838 -(S'anonymous_suites/0' -p94839 -S'anonymous_suites() $1' -p94840 -tp94841 -a(S'cipher/4' -p94842 -S'cipher(${1:Param1}, ${2:CipherState}, ${3:Mac}, ${4:Fragment}) $5' -p94843 -tp94844 -a(S'decipher/5' -p94845 -S'decipher(${1:Param1}, ${2:HashSz}, ${3:CipherState}, ${4:Fragment}, ${5:Version}) $6' -p94846 -tp94847 -a(S'filter/2' -p94848 -S'filter(${1:DerCert}, ${2:Ciphers}) $3' -p94849 -tp94850 -a(S'openssl_suite/1' -p94851 -S'openssl_suite(${1:Param1}) $2' -p94852 -tp94853 -a(S'openssl_suite_name/1' -p94854 -S'openssl_suite_name(${1:Cipher}) $2' -p94855 -tp94856 -a(S'security_parameters/2' -p94857 -S'security_parameters(${1:CipherSuite}, ${2:SecParams}) $3' -p94858 -tp94859 -a(S'suite/1' -p94860 -S'suite(${1:Param1}) $2' -p94861 -tp94862 -a(S'suite_definition/1' -p94863 -S'suite_definition(${1:Param1}) $2' -p94864 -tp94865 -a(S'suites/1' -p94866 -S'suites(${1:Param1}) $2' -p94867 -tp94868 -asS'observer_lib' -p94869 -(lp94870 -(S'create_attrs/0' -p94871 -S'create_attrs() $1' -p94872 -tp94873 -a(S'create_menu_item/3' -p94874 -S'create_menu_item(${1:Param1}, ${2:Menu}, ${3:Index}) $4' -p94875 -tp94876 -a(S'create_menus/3' -p94877 -S'create_menus(${1:Menus}, ${2:MenuBar}, ${3:Type}) $4' -p94878 -tp94879 -a(S'display_info/2' -p94880 -S'display_info(${1:Frame}, ${2:Info}) $3' -p94881 -tp94882 -a(S'display_info_dialog/1' -p94883 -S'display_info_dialog(${1:Str}) $2' -p94884 -tp94885 -a(S'fill_info/2' -p94886 -S'fill_info(${1:Param1}, ${2:Data}) $3' -p94887 -tp94888 -a(S'get_wx_parent/1' -p94889 -S'get_wx_parent(${1:Window}) $2' -p94890 -tp94891 -a(S'interval_dialog/4' -p94892 -S'interval_dialog(${1:Parent0}, ${2:Param2}, ${3:Min}, ${4:Max}) $5' -p94893 -tp94894 -a(S'set_listctrl_col_size/2' -p94895 -S'set_listctrl_col_size(${1:LCtrl}, ${2:Total}) $3' -p94896 -tp94897 -a(S'start_timer/1' -p94898 -S'start_timer(${1:Intv}) $2' -p94899 -tp94900 -a(S'stop_timer/1' -p94901 -S'stop_timer(${1:Param1}) $2' -p94902 -tp94903 -a(S'to_str/1' -p94904 -S'to_str(${1:Value}) $2' -p94905 -tp94906 -a(S'update_info/2' -p94907 -S'update_info() $1' -p94908 -tp94909 -a(S'user_term/3' -p94910 -S'user_term(${1:Parent}, ${2:Title}, ${3:Default}) $4' -p94911 -tp94912 -asS'memsup' -p94913 -(lp94914 -(S'code_change/3' -p94915 -S'code_change(${1:Vsn}, ${2:PrevState}, ${3:Param3}) $4' -p94916 -tp94917 -a(S'dummy_reply/1' -p94918 -S'dummy_reply(${1:Param1}) $2' -p94919 -tp94920 -a(S'format_status/2' -p94921 -S'format_status() $1' -p94922 -tp94923 -a(S'get_check_interval/0' -p94924 -S'get_check_interval() $1' -p94925 -tp94926 -a(S'get_helper_timeout/0' -p94927 -S'get_helper_timeout() $1' -p94928 -tp94929 -a(S'get_memory_data/0' -p94930 -S'get_memory_data() $1' -p94931 -tp94932 -a(S'get_os_wordsize/0' -p94933 -S'get_os_wordsize() $1' -p94934 -tp94935 -a(S'get_procmem_high_watermark/0' -p94936 -S'get_procmem_high_watermark() $1' -p94937 -tp94938 -a(S'get_sysmem_high_watermark/0' -p94939 -S'get_sysmem_high_watermark() $1' -p94940 -tp94941 -a(S'get_system_memory_data/0' -p94942 -S'get_system_memory_data() $1' -p94943 -tp94944 -a(S'handle_call/3' -p94945 -S'handle_call(${1:Param1}, ${2:From}, ${3:State}) $4' -p94946 -tp94947 -a(S'handle_cast/2' -p94948 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p94949 -tp94950 -a(S'handle_info/2' -p94951 -S'handle_info(${1:Param1}, ${2:State}) $3' -p94952 -tp94953 -a(S'init/1' -p94954 -S'init(${1:Param1}) $2' -p94955 -tp94956 -a(S'param_default/1' -p94957 -S'param_default(${1:Param1}) $2' -p94958 -tp94959 -a(S'param_type/2' -p94960 -S'param_type(${1:Param1}, ${2:Param2}) $3' -p94961 -tp94962 -a(S'set_check_interval/1' -p94963 -S'set_check_interval(${1:Minutes}) $2' -p94964 -tp94965 -a(S'set_helper_timeout/1' -p94966 -S'set_helper_timeout(${1:Seconds}) $2' -p94967 -tp94968 -a(S'set_procmem_high_watermark/1' -p94969 -S'set_procmem_high_watermark(${1:Float}) $2' -p94970 -tp94971 -a(S'set_sysmem_high_watermark/1' -p94972 -S'set_sysmem_high_watermark(${1:Float}) $2' -p94973 -tp94974 -a(S'start_link/0' -p94975 -S'start_link() $1' -p94976 -tp94977 -a(S'terminate/2' -p94978 -S'terminate(${1:Param1}, ${2:State}) $3' -p94979 -tp94980 -asS'uds_server' -p94981 -(lp94982 -(S'code_change/3' -p94983 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p94984 -tp94985 -a(S'handle_call/3' -p94986 -S'handle_call(${1:Request}, ${2:From}, ${3:State}) $4' -p94987 -tp94988 -a(S'handle_cast/2' -p94989 -S'handle_cast(${1:Msg}, ${2:State}) $3' -p94990 -tp94991 -a(S'handle_info/2' -p94992 -S'handle_info(${1:Info}, ${2:State}) $3' -p94993 -tp94994 -a(S'init/1' -p94995 -S'init(${1:Param1}) $2' -p94996 -tp94997 -a(S'start_link/0' -p94998 -S'start_link() $1' -p94999 -tp95000 -a(S'terminate/2' -p95001 -S'terminate(${1:Reason}, ${2:State}) $3' -p95002 -tp95003 -asS'snmpm_misc_sup' -p95004 -(lp95005 -(S'init/1' -p95006 -S'init(${1:Param1}) $2' -p95007 -tp95008 -a(S'start_link/0' -p95009 -S'start_link() $1' -p95010 -tp95011 -a(S'start_net_if/2' -p95012 -S'start_net_if(${1:Mod}, ${2:NoteStore}) $3' -p95013 -tp95014 -a(S'start_note_store/2' -p95015 -S'start_note_store(${1:Prio}, ${2:Opts}) $3' -p95016 -tp95017 -a(S'stop_net_if/0' -p95018 -S'stop_net_if() $1' -p95019 -tp95020 -a(S'stop_note_store/0' -p95021 -S'stop_note_store() $1' -p95022 -tp95023 -asS'CosTimerEvent_TimerEventService_impl' -p95024 -(lp95025 -(S'code_change/3' -p95026 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p95027 -tp95028 -a(S'event_time/3' -p95029 -S'event_time(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p95030 -tp95031 -a(S'handle_info/2' -p95032 -S'handle_info(${1:Param1}, ${2:State}) $3' -p95033 -tp95034 -a(S'init/1' -p95035 -S'init(${1:Param1}) $2' -p95036 -tp95037 -a(S'register/4' -p95038 -S'register(${1:OE_THIS}, ${2:State}, ${3:EventInterface}, ${4:Data}) $5' -p95039 -tp95040 -a(S'terminate/2' -p95041 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p95042 -tp95043 -a(S'unregister/3' -p95044 -S'unregister(${1:Param1}, ${2:State}, ${3:TimerEventHandler}) $4' -p95045 -tp95046 -asS'snmp_verbosity' -p95047 -(lp95048 -(S'print/4' -p95049 -S'print(${1:Verbosity}, ${2:Severity}, ${3:Format}, ${4:Arguments}) $5' -p95050 -tp95051 -a(S'print/5' -p95052 -S'print(${1:Verbosity}, ${2:Severity}, ${3:Module}, ${4:Format}, ${5:Arguments}) $6' -p95053 -tp95054 -a(S'printc/4' -p95055 -S'printc(${1:Verbosity}, ${2:Severity}, ${3:Format}, ${4:Arguments}) $5' -p95056 -tp95057 -a(S'process_args/2' -p95058 -S'process_args(${1:Param1}, ${2:Acc}) $3' -p95059 -tp95060 -a(S'validate/1' -p95061 -S'validate(${1:Param1}) $2' -p95062 -tp95063 -asS'ram_file' -p95064 -(lp95065 -(S'advise/4' -p95066 -S'advise(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p95067 -tp95068 -a(S'close/1' -p95069 -S'close(${1:Port}) $2' -p95070 -tp95071 -a(S'compress/1' -p95072 -S'compress(${1:Param1}) $2' -p95073 -tp95074 -a(S'copy/3' -p95075 -S'copy() $1' -p95076 -tp95077 -a(S'datasync/1' -p95078 -S'datasync(${1:Param1}) $2' -p95079 -tp95080 -a(S'get_file/1' -p95081 -S'get_file(${1:Param1}) $2' -p95082 -tp95083 -a(S'get_file_close/1' -p95084 -S'get_file_close(${1:Param1}) $2' -p95085 -tp95086 -a(S'get_size/1' -p95087 -S'get_size(${1:Param1}) $2' -p95088 -tp95089 -a(S'ipread_s32bu_p32bu/3' -p95090 -S'ipread_s32bu_p32bu(${1:Handle}, ${2:Pos}, ${3:MaxSz}) $4' -p95091 -tp95092 -a(S'open/2' -p95093 -S'open(${1:Data}, ${2:ModeList}) $3' -p95094 -tp95095 -a(S'open_mode/1' -p95096 -S'open_mode(${1:List}) $2' -p95097 -tp95098 -a(S'position/2' -p95099 -S'position(${1:Param1}, ${2:Pos}) $3' -p95100 -tp95101 -a(S'pread/2' -p95102 -S'pread(${1:Param1}, ${2:L}) $3' -p95103 -tp95104 -a(S'pread/3' -p95105 -S'pread(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p95106 -tp95107 -a(S'pwrite/2' -p95108 -S'pwrite(${1:Param1}, ${2:L}) $3' -p95109 -tp95110 -a(S'pwrite/3' -p95111 -S'pwrite(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p95112 -tp95113 -a(S'read/2' -p95114 -S'read(${1:Param1}, ${2:L}) $3' -p95115 -tp95116 -a(S'set_file/2' -p95117 -S'set_file(${1:Param1}, ${2:Data}) $3' -p95118 -tp95119 -a(S'sync/1' -p95120 -S'sync(${1:Param1}) $2' -p95121 -tp95122 -a(S'truncate/1' -p95123 -S'truncate(${1:Param1}) $2' -p95124 -tp95125 -a(S'uncompress/1' -p95126 -S'uncompress(${1:Param1}) $2' -p95127 -tp95128 -a(S'uudecode/1' -p95129 -S'uudecode(${1:Param1}) $2' -p95130 -tp95131 -a(S'uuencode/1' -p95132 -S'uuencode(${1:Param1}) $2' -p95133 -tp95134 -a(S'write/2' -p95135 -S'write(${1:Param1}, ${2:Bytes}) $3' -p95136 -tp95137 -asS'CosPropertyService_PropertyModes' -p95138 -(lp95139 -(S'id/0' -p95140 -S'id() $1' -p95141 -tp95142 -a(S'name/0' -p95143 -S'name() $1' -p95144 -tp95145 -a(S'tc/0' -p95146 -S'tc() $1' -p95147 -tp95148 -asS'diameter_watchdog' -p95149 -(lp95150 -(S'code_change/3' -p95151 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p95152 -tp95153 -a(S'handle_call/3' -p95154 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p95155 -tp95156 -a(S'handle_cast/2' -p95157 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p95158 -tp95159 -a(S'handle_info/2' -p95160 -S'handle_info(${1:T}, ${2:State}) $3' -p95161 -tp95162 -a(S'init/1' -p95163 -S'init(${1:T}) $2' -p95164 -tp95165 -a(S'start/2' -p95166 -S'start(${1:Type}, ${2:T}) $3' -p95167 -tp95168 -a(S'start_link/1' -p95169 -S'start_link(${1:T}) $2' -p95170 -tp95171 -a(S'terminate/2' -p95172 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p95173 -tp95174 -asS'ssh_shell' -p95175 -(lp95176 -(S'handle_msg/2' -p95177 -S'handle_msg() $1' -p95178 -tp95179 -a(S'handle_ssh_msg/2' -p95180 -S'handle_ssh_msg(${1:Param1}, ${2:State}) $3' -p95181 -tp95182 -a(S'init/1' -p95183 -S'init(${1:Args}) $2' -p95184 -tp95185 -a(S'input_loop/2' -p95186 -S'input_loop(${1:Fd}, ${2:Pid}) $3' -p95187 -tp95188 -a(S'terminate/2' -p95189 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p95190 -tp95191 -asS'c' -p95192 -(lp95193 -(S'appcall/4' -p95194 -S'appcall(${1:App}, ${2:M}, ${3:F}, ${4:Args}) $5' -p95195 -tp95196 -a(S'bi/1' -p95197 -S'bi(${1:I}) $2' -p95198 -tp95199 -a(S'bt/1' -p95200 -S'bt(${1:Pid}) $2' -p95201 -tp95202 -a(S'c/1' -p95203 -S'c(${1:File}) $2' -p95204 -tp95205 -a(S'c/2' -p95206 -S'c(${1:File}, ${2:Options}) $3' -p95207 -tp95208 -a(S'cd/1' -p95209 -S'cd(${1:Dir}) $2' -p95210 -tp95211 -a(S'display_info/1' -p95212 -S'display_info(${1:Pid}) $2' -p95213 -tp95214 -a(S'erlangrc/0' -p95215 -S'erlangrc() $1' -p95216 -tp95217 -a(S'erlangrc/1' -p95218 -S'erlangrc(${1:Param1}) $2' -p95219 -tp95220 -a(S'flush/0' -p95221 -S'flush() $1' -p95222 -tp95223 -a(S'help/0' -p95224 -S'help() $1' -p95225 -tp95226 -a(S'i/0' -p95227 -S'i() $1' -p95228 -tp95229 -a(S'i/1' -p95230 -S'i(${1:Ps}) $2' -p95231 -tp95232 -a(S'i/3' -p95233 -S'i(${1:X}, ${2:Y}, ${3:Z}) $4' -p95234 -tp95235 -a(S'l/1' -p95236 -S'l(${1:Module}) $2' -p95237 -tp95238 -a(S'lc/1' -p95239 -S'lc(${1:Files}) $2' -p95240 -tp95241 -a(S'lc_batch/0' -p95242 -S'lc_batch() $1' -p95243 -tp95244 -a(S'lc_batch/1' -p95245 -S'lc_batch(${1:Args}) $2' -p95246 -tp95247 -a(S'ls/0' -p95248 -S'ls() $1' -p95249 -tp95250 -a(S'ls/1' -p95251 -S'ls(${1:Dir}) $2' -p95252 -tp95253 -a(S'm/0' -p95254 -S'm() $1' -p95255 -tp95256 -a(S'm/1' -p95257 -S'm(${1:Str}) $2' -p95258 -tp95259 -a(S'memory/0' -p95260 -S'memory() $1' -p95261 -tp95262 -a(S'memory/1' -p95263 -S'memory(${1:Type}) $2' -p95264 -tp95265 -a(S'nc/1' -p95266 -S'nc(${1:File}) $2' -p95267 -tp95268 -a(S'nc/2' -p95269 -S'nc(${1:File}, ${2:Options}) $3' -p95270 -tp95271 -a(S'ni/0' -p95272 -S'ni() $1' -p95273 -tp95274 -a(S'nl/1' -p95275 -S'nl(${1:Module}) $2' -p95276 -tp95277 -a(S'nregs/0' -p95278 -S'nregs() $1' -p95279 -tp95280 -a(S'pid/3' -p95281 -S'pid(${1:X}, ${2:Y}, ${3:Z}) $4' -p95282 -tp95283 -a(S'pwd/0' -p95284 -S'pwd() $1' -p95285 -tp95286 -a(S'q/0' -p95287 -S'q() $1' -p95288 -tp95289 -a(S'regs/0' -p95290 -S'regs() $1' -p95291 -tp95292 -a(S'xm/1' -p95293 -S'xm(${1:M}) $2' -p95294 -tp95295 -a(S'y/1' -p95296 -S'y(${1:X}) $2' -p95297 -tp95298 -a(S'y/2' -p95299 -S'y(${1:File}, ${2:Opts}) $3' -p95300 -tp95301 -asS'wxWindowDestroyEvent' -p95302 -(lp95303 -(S'getClientData/1' -p95304 -S'getClientData(${1:This}) $2' -p95305 -tp95306 -a(S'getExtraLong/1' -p95307 -S'getExtraLong(${1:This}) $2' -p95308 -tp95309 -a(S'getId/1' -p95310 -S'getId(${1:This}) $2' -p95311 -tp95312 -a(S'getInt/1' -p95313 -S'getInt(${1:This}) $2' -p95314 -tp95315 -a(S'getSelection/1' -p95316 -S'getSelection(${1:This}) $2' -p95317 -tp95318 -a(S'getSkipped/1' -p95319 -S'getSkipped(${1:This}) $2' -p95320 -tp95321 -a(S'getString/1' -p95322 -S'getString(${1:This}) $2' -p95323 -tp95324 -a(S'getTimestamp/1' -p95325 -S'getTimestamp(${1:This}) $2' -p95326 -tp95327 -a(S'isChecked/1' -p95328 -S'isChecked(${1:This}) $2' -p95329 -tp95330 -a(S'isCommandEvent/1' -p95331 -S'isCommandEvent(${1:This}) $2' -p95332 -tp95333 -a(S'isSelection/1' -p95334 -S'isSelection(${1:This}) $2' -p95335 -tp95336 -a(S'parent_class/1' -p95337 -S'parent_class(${1:Param1}) $2' -p95338 -tp95339 -a(S'resumePropagation/2' -p95340 -S'resumePropagation(${1:This}, ${2:PropagationLevel}) $3' -p95341 -tp95342 -a(S'setInt/2' -p95343 -S'setInt(${1:This}, ${2:I}) $3' -p95344 -tp95345 -a(S'setString/2' -p95346 -S'setString(${1:This}, ${2:S}) $3' -p95347 -tp95348 -a(S'shouldPropagate/1' -p95349 -S'shouldPropagate(${1:This}) $2' -p95350 -tp95351 -a(S'skip/1' -p95352 -S'skip(${1:This}) $2' -p95353 -tp95354 -a(S'skip/2' -p95355 -S'skip(${1:This}, ${2:Options}) $3' -p95356 -tp95357 -a(S'stopPropagation/1' -p95358 -S'stopPropagation(${1:This}) $2' -p95359 -tp95360 -asS'wxToolTip' -p95361 -(lp95362 -(S'destroy/1' -p95363 -S'destroy(${1:This}) $2' -p95364 -tp95365 -a(S'enable/1' -p95366 -S'enable(${1:Flag}) $2' -p95367 -tp95368 -a(S'getTip/1' -p95369 -S'getTip(${1:This}) $2' -p95370 -tp95371 -a(S'getWindow/1' -p95372 -S'getWindow(${1:This}) $2' -p95373 -tp95374 -a(S'new/1' -p95375 -S'new(${1:Tip}) $2' -p95376 -tp95377 -a(S'parent_class/1' -p95378 -S'parent_class(${1:Param1}) $2' -p95379 -tp95380 -a(S'setDelay/1' -p95381 -S'setDelay(${1:Msecs}) $2' -p95382 -tp95383 -a(S'setTip/2' -p95384 -S'setTip(${1:This}, ${2:Tip}) $3' -p95385 -tp95386 -asS'mod_auth_mnesia' -p95387 -(lp95388 -(S'add_group_member/3' -p95389 -S'add_group_member(${1:DirData}, ${2:GroupName}, ${3:User}) $4' -p95390 -tp95391 -a(S'add_user/2' -p95392 -S'add_user(${1:DirData}, ${2:UStruct}) $3' -p95393 -tp95394 -a(S'delete_group/2' -p95395 -S'delete_group(${1:DirData}, ${2:GroupName}) $3' -p95396 -tp95397 -a(S'delete_group_member/3' -p95398 -S'delete_group_member(${1:DirData}, ${2:GroupName}, ${3:UserName}) $4' -p95399 -tp95400 -a(S'delete_user/2' -p95401 -S'delete_user(${1:DirData}, ${2:UserName}) $3' -p95402 -tp95403 -a(S'get_user/2' -p95404 -S'get_user(${1:DirData}, ${2:UserName}) $3' -p95405 -tp95406 -a(S'list_group_members/2' -p95407 -S'list_group_members(${1:DirData}, ${2:GroupName}) $3' -p95408 -tp95409 -a(S'list_group_members/3' -p95410 -S'list_group_members(${1:GroupName}, ${2:Port}, ${3:Dir}) $4' -p95411 -tp95412 -a(S'list_group_members/4' -p95413 -S'list_group_members(${1:GroupName}, ${2:Addr}, ${3:Port}, ${4:Dir}) $5' -p95414 -tp95415 -a(S'list_groups/1' -p95416 -S'list_groups(${1:DirData}) $2' -p95417 -tp95418 -a(S'list_groups/2' -p95419 -S'list_groups(${1:Port}, ${2:Dir}) $3' -p95420 -tp95421 -a(S'list_groups/3' -p95422 -S'list_groups(${1:Addr}, ${2:Port}, ${3:Dir}) $4' -p95423 -tp95424 -a(S'list_users/1' -p95425 -S'list_users(${1:DirData}) $2' -p95426 -tp95427 -a(S'list_users/2' -p95428 -S'list_users(${1:Port}, ${2:Dir}) $3' -p95429 -tp95430 -a(S'list_users/3' -p95431 -S'list_users(${1:Addr}, ${2:Port}, ${3:Dir}) $4' -p95432 -tp95433 -a(S'remove_group/4' -p95434 -S'remove_group(${1:GroupName}, ${2:Port}, ${3:Dir}, ${4:Param4}) $5' -p95435 -tp95436 -a(S'remove_group/5' -p95437 -S'remove_group(${1:GroupName}, ${2:Addr}, ${3:Port}, ${4:Dir}, ${5:Param5}) $6' -p95438 -tp95439 -a(S'remove_group_member/5' -p95440 -S'remove_group_member(${1:GroupName}, ${2:UserName}, ${3:Port}, ${4:Dir}, ${5:Param5}) $6' -p95441 -tp95442 -a(S'remove_group_member/6' -p95443 -S'remove_group_member(${1:GroupName}, ${2:UserName}, ${3:Addr}, ${4:Port}, ${5:Dir}, ${6:Param6}) $7' -p95444 -tp95445 -a(S'remove_user/4' -p95446 -S'remove_user(${1:UserName}, ${2:Port}, ${3:Dir}, ${4:Param4}) $5' -p95447 -tp95448 -a(S'remove_user/5' -p95449 -S'remove_user(${1:UserName}, ${2:Addr}, ${3:Port}, ${4:Dir}, ${5:Param5}) $6' -p95450 -tp95451 -a(S'store_directory_data/3' -p95452 -S'store_directory_data(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p95453 -tp95454 -a(S'store_group_member/5' -p95455 -S'store_group_member(${1:GroupName}, ${2:UserName}, ${3:Port}, ${4:Dir}, ${5:Param5}) $6' -p95456 -tp95457 -a(S'store_group_member/6' -p95458 -S'store_group_member(${1:GroupName}, ${2:UserName}, ${3:Addr}, ${4:Port}, ${5:Dir}, ${6:Param6}) $7' -p95459 -tp95460 -a(S'store_user/5' -p95461 -S'store_user(${1:UserName}, ${2:Password}, ${3:Port}, ${4:Dir}, ${5:Param5}) $6' -p95462 -tp95463 -a(S'store_user/6' -p95464 -S'store_user(${1:UserName}, ${2:Password}, ${3:Addr}, ${4:Port}, ${5:Dir}, ${6:Param6}) $7' -p95465 -tp95466 -asS'wxRegion' -p95467 -(lp95468 -(S"'Xor'/2" -p95469 -S"'Xor'(${1:This}, ${2:Region}) $3" -p95470 -tp95471 -a(S"'Xor'/5" -p95472 -S"'Xor'(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6" -p95473 -tp95474 -a(S'clear/1' -p95475 -S'clear(${1:This}) $2' -p95476 -tp95477 -a(S'contains/2' -p95478 -S'contains(${1:This}, ${2:Pt}) $3' -p95479 -tp95480 -a(S'contains/3' -p95481 -S'contains(${1:This}, ${2:X}, ${3:Y}) $4' -p95482 -tp95483 -a(S'contains/5' -p95484 -S'contains(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p95485 -tp95486 -a(S'convertToBitmap/1' -p95487 -S'convertToBitmap(${1:This}) $2' -p95488 -tp95489 -a(S'destroy/1' -p95490 -S'destroy(${1:This}) $2' -p95491 -tp95492 -a(S'getBox/1' -p95493 -S'getBox(${1:This}) $2' -p95494 -tp95495 -a(S'intersect/2' -p95496 -S'intersect(${1:This}, ${2:Region}) $3' -p95497 -tp95498 -a(S'intersect/5' -p95499 -S'intersect(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p95500 -tp95501 -a(S'isEmpty/1' -p95502 -S'isEmpty(${1:This}) $2' -p95503 -tp95504 -a(S'new/0' -p95505 -S'new() $1' -p95506 -tp95507 -a(S'new/1' -p95508 -S'new(${1:Bmp}) $2' -p95509 -tp95510 -a(S'new/2' -p95511 -S'new(${1:TopLeft}, ${2:BottomRight}) $3' -p95512 -tp95513 -a(S'new/4' -p95514 -S'new(${1:X}, ${2:Y}, ${3:W}, ${4:H}) $5' -p95515 -tp95516 -a(S'offset/2' -p95517 -S'offset(${1:This}, ${2:Pt}) $3' -p95518 -tp95519 -a(S'offset/3' -p95520 -S'offset(${1:This}, ${2:X}, ${3:Y}) $4' -p95521 -tp95522 -a(S'parent_class/1' -p95523 -S'parent_class(${1:Param1}) $2' -p95524 -tp95525 -a(S'subtract/2' -p95526 -S'subtract(${1:This}, ${2:Region}) $3' -p95527 -tp95528 -a(S'subtract/5' -p95529 -S'subtract(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p95530 -tp95531 -a(S'union/2' -p95532 -S'union(${1:This}, ${2:Region}) $3' -p95533 -tp95534 -a(S'union/3' -p95535 -S'union(${1:This}, ${2:Bmp}, ${3:Transp}) $4' -p95536 -tp95537 -a(S'union/4' -p95538 -S'union(${1:This}, ${2:Bmp}, ${3:Transp}, ${4:Param4}) $5' -p95539 -tp95540 -a(S'union/5' -p95541 -S'union(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p95542 -tp95543 -asS'v3_codegen' -p95544 -(lp95545 -(S'module/2' -p95546 -S'module(${1:Param1}, ${2:Options}) $3' -p95547 -tp95548 -asS'megaco_tcp_accept' -p95549 -(lp95550 -(S'net_accept/4' -p95551 -S'net_accept(${1:TcpRec}, ${2:SupPid}, ${3:ListenFd}, ${4:Parent}) $5' -p95552 -tp95553 -a(S'start_link/1' -p95554 -S'start_link(${1:Param1}) $2' -p95555 -tp95556 -asS'cosNotification_Scanner' -p95557 -(lp95558 -(S'scan/1' -p95559 -S'scan(${1:Str}) $2' -p95560 -tp95561 -asS'snmpc_misc' -p95562 -(lp95563 -(S'assq/2' -p95564 -S'assq(${1:Key}, ${2:List}) $3' -p95565 -tp95566 -a(S'bits_to_int/2' -p95567 -S'bits_to_int(${1:Val}, ${2:Kibbles}) $3' -p95568 -tp95569 -a(S'ensure_trailing_dir_delimiter/1' -p95570 -S'ensure_trailing_dir_delimiter(${1:DirSuggestion}) $2' -p95571 -tp95572 -a(S'foreach/3' -p95573 -S'foreach(${1:Function}, ${2:ExtraArgs}, ${3:Param3}) $4' -p95574 -tp95575 -a(S'is_string/1' -p95576 -S'is_string(${1:Param1}) $2' -p95577 -tp95578 -a(S'read_mib/1' -p95579 -S'read_mib(${1:FileName}) $2' -p95580 -tp95581 -a(S'read_noexit/2' -p95582 -S'read_noexit(${1:File}, ${2:CheckFunc}) $3' -p95583 -tp95584 -a(S'strip_extension_from_filename/2' -p95585 -S'strip_extension_from_filename(${1:FileName}, ${2:Ext}) $3' -p95586 -tp95587 -a(S'to_upper/1' -p95588 -S'to_upper(${1:Param1}) $2' -p95589 -tp95590 -asS'dbg_ui_filedialog_win' -p95591 -(lp95592 -(S'create_win/6' -p95593 -S'create_win(${1:GS}, ${2:Title}, ${3:Param3}, ${4:Mode}, ${5:Filter}, ${6:Extra}) $7' -p95594 -tp95595 -a(S'create_win/7' -p95596 -S'create_win(${1:GS}, ${2:Title}, ${3:Param3}, ${4:Mode}, ${5:Filter}, ${6:Extra}, ${7:FileName}) $8' -p95597 -tp95598 -a(S'get_window/1' -p95599 -S'get_window(${1:WinInfo}) $2' -p95600 -tp95601 -a(S'handle_event/2' -p95602 -S'handle_event(${1:Param1}, ${2:WinInfo}) $3' -p95603 -tp95604 -a(S'tag/2' -p95605 -S'tag(${1:WinInfo}, ${2:File0}) $3' -p95606 -tp95607 -asS'megaco_tcp' -p95608 -(lp95609 -(S'block/1' -p95610 -S'block(${1:Socket}) $2' -p95611 -tp95612 -a(S'close/1' -p95613 -S'close(${1:Socket}) $2' -p95614 -tp95615 -a(S'code_change/3' -p95616 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p95617 -tp95618 -a(S'connect/2' -p95619 -S'connect(${1:SupPid}, ${2:Parameters}) $3' -p95620 -tp95621 -a(S'get_stats/0' -p95622 -S'get_stats() $1' -p95623 -tp95624 -a(S'get_stats/1' -p95625 -S'get_stats(${1:Socket}) $2' -p95626 -tp95627 -a(S'get_stats/2' -p95628 -S'get_stats(${1:Socket}, ${2:Counter}) $3' -p95629 -tp95630 -a(S'handle_call/3' -p95631 -S'handle_call(${1:Req}, ${2:From}, ${3:State}) $4' -p95632 -tp95633 -a(S'handle_cast/2' -p95634 -S'handle_cast(${1:Msg}, ${2:State}) $3' -p95635 -tp95636 -a(S'handle_info/2' -p95637 -S'handle_info(${1:Info}, ${2:State}) $3' -p95638 -tp95639 -a(S'init/1' -p95640 -S'init(${1:Param1}) $2' -p95641 -tp95642 -a(S'listen/2' -p95643 -S'listen(${1:SupPid}, ${2:Parameters}) $3' -p95644 -tp95645 -a(S'reset_stats/0' -p95646 -S'reset_stats() $1' -p95647 -tp95648 -a(S'reset_stats/1' -p95649 -S'reset_stats(${1:Socket}) $2' -p95650 -tp95651 -a(S'send_message/2' -p95652 -S'send_message(${1:Socket}, ${2:Data}) $3' -p95653 -tp95654 -a(S'socket/1' -p95655 -S'socket(${1:Socket}) $2' -p95656 -tp95657 -a(S'start_connection/2' -p95658 -S'start_connection(${1:SupPid}, ${2:TcpRec}) $3' -p95659 -tp95660 -a(S'start_link/1' -p95661 -S'start_link(${1:Args}) $2' -p95662 -tp95663 -a(S'start_transport/0' -p95664 -S'start_transport() $1' -p95665 -tp95666 -a(S'stop_transport/1' -p95667 -S'stop_transport(${1:Pid}) $2' -p95668 -tp95669 -a(S'terminate/2' -p95670 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p95671 -tp95672 -a(S'unblock/1' -p95673 -S'unblock(${1:Socket}) $2' -p95674 -tp95675 -a(S'upgrade_receive_handle/2' -p95676 -S'upgrade_receive_handle() $1' -p95677 -tp95678 -asS'ic_erl_template' -p95679 -(lp95680 -(S'do_gen/3' -p95681 -S'do_gen(${1:G}, ${2:Param2}, ${3:Form}) $4' -p95682 -tp95683 -a(S'emit_header/3' -p95684 -S'emit_header(${1:G}, ${2:Fd}, ${3:Name}) $4' -p95685 -tp95686 -asS'snmpa_error' -p95687 -(lp95688 -(S'config_err/2' -p95689 -S'config_err(${1:F}, ${2:A}) $3' -p95690 -tp95691 -a(S'user_err/2' -p95692 -S'user_err(${1:F}, ${2:A}) $3' -p95693 -tp95694 -asS'gstk_gridline' -p95695 -(lp95696 -(S'config/3' -p95697 -S'config(${1:DB}, ${2:Gstkid}, ${3:Opts}) $4' -p95698 -tp95699 -a(S'create/3' -p95700 -S'create(${1:DB}, ${2:Gstkid}, ${3:Options}) $4' -p95701 -tp95702 -a(S'delete/2' -p95703 -S'delete(${1:DB}, ${2:Gstkid}) $3' -p95704 -tp95705 -a(S'destroy/3' -p95706 -S'destroy(${1:DB}, ${2:Lgstkid}, ${3:Row}) $4' -p95707 -tp95708 -a(S'event/5' -p95709 -S'event(${1:DB}, ${2:GridGstkid}, ${3:Etype}, ${4:Param4}, ${5:Param5}) $6' -p95710 -tp95711 -a(S'option/5' -p95712 -S'option(${1:Option}, ${2:Gstkid}, ${3:TkW}, ${4:DB}, ${5:Pgstkid}) $6' -p95713 -tp95714 -a(S'read/3' -p95715 -S'read(${1:DB}, ${2:Gstkid}, ${3:Opt}) $4' -p95716 -tp95717 -a(S'read_option/5' -p95718 -S'read_option(${1:Option}, ${2:Gstkid}, ${3:TkW}, ${4:DB}, ${5:Pgstkid}) $6' -p95719 -tp95720 -asS'wxComboBox' -p95721 -(lp95722 -(S'append/2' -p95723 -S'append(${1:This}, ${2:Item}) $3' -p95724 -tp95725 -a(S'append/3' -p95726 -S'append(${1:This}, ${2:Item}, ${3:ClientData}) $4' -p95727 -tp95728 -a(S'appendStrings/2' -p95729 -S'appendStrings(${1:This}, ${2:Strings}) $3' -p95730 -tp95731 -a(S'cacheBestSize/2' -p95732 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p95733 -tp95734 -a(S'canCopy/1' -p95735 -S'canCopy(${1:This}) $2' -p95736 -tp95737 -a(S'canCut/1' -p95738 -S'canCut(${1:This}) $2' -p95739 -tp95740 -a(S'canPaste/1' -p95741 -S'canPaste(${1:This}) $2' -p95742 -tp95743 -a(S'canRedo/1' -p95744 -S'canRedo(${1:This}) $2' -p95745 -tp95746 -a(S'canUndo/1' -p95747 -S'canUndo(${1:This}) $2' -p95748 -tp95749 -a(S'captureMouse/1' -p95750 -S'captureMouse(${1:This}) $2' -p95751 -tp95752 -a(S'center/1' -p95753 -S'center(${1:This}) $2' -p95754 -tp95755 -a(S'center/2' -p95756 -S'center(${1:This}, ${2:Options}) $3' -p95757 -tp95758 -a(S'centerOnParent/1' -p95759 -S'centerOnParent(${1:This}) $2' -p95760 -tp95761 -a(S'centerOnParent/2' -p95762 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p95763 -tp95764 -a(S'centre/1' -p95765 -S'centre(${1:This}) $2' -p95766 -tp95767 -a(S'centre/2' -p95768 -S'centre(${1:This}, ${2:Options}) $3' -p95769 -tp95770 -a(S'centreOnParent/1' -p95771 -S'centreOnParent(${1:This}) $2' -p95772 -tp95773 -a(S'centreOnParent/2' -p95774 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p95775 -tp95776 -a(S'clear/1' -p95777 -S'clear(${1:This}) $2' -p95778 -tp95779 -a(S'clearBackground/1' -p95780 -S'clearBackground(${1:This}) $2' -p95781 -tp95782 -a(S'clientToScreen/2' -p95783 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p95784 -tp95785 -a(S'clientToScreen/3' -p95786 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p95787 -tp95788 -a(S'close/1' -p95789 -S'close(${1:This}) $2' -p95790 -tp95791 -a(S'close/2' -p95792 -S'close(${1:This}, ${2:Options}) $3' -p95793 -tp95794 -a(S'connect/2' -p95795 -S'connect(${1:This}, ${2:EventType}) $3' -p95796 -tp95797 -a(S'connect/3' -p95798 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p95799 -tp95800 -a(S'convertDialogToPixels/2' -p95801 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p95802 -tp95803 -a(S'convertPixelsToDialog/2' -p95804 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p95805 -tp95806 -a(S'copy/1' -p95807 -S'copy(${1:This}) $2' -p95808 -tp95809 -a(S'create/7' -p95810 -S'create(${1:This}, ${2:Parent}, ${3:Id}, ${4:Value}, ${5:Pos}, ${6:Size}, ${7:Choices}) $8' -p95811 -tp95812 -a(S'create/8' -p95813 -S'create(${1:This}, ${2:Parent}, ${3:Id}, ${4:Value}, ${5:Pos}, ${6:Size}, ${7:Choices}, ${8:Param8}) $9' -p95814 -tp95815 -a(S'cut/1' -p95816 -S'cut(${1:This}) $2' -p95817 -tp95818 -a(S'delete/2' -p95819 -S'delete(${1:This}, ${2:N}) $3' -p95820 -tp95821 -a(S'destroy/1' -p95822 -S'destroy(${1:This}) $2' -p95823 -tp95824 -a(S'destroyChildren/1' -p95825 -S'destroyChildren(${1:This}) $2' -p95826 -tp95827 -a(S'disable/1' -p95828 -S'disable(${1:This}) $2' -p95829 -tp95830 -a(S'disconnect/1' -p95831 -S'disconnect(${1:This}) $2' -p95832 -tp95833 -a(S'disconnect/2' -p95834 -S'disconnect(${1:This}, ${2:EventType}) $3' -p95835 -tp95836 -a(S'disconnect/3' -p95837 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p95838 -tp95839 -a(S'enable/1' -p95840 -S'enable(${1:This}) $2' -p95841 -tp95842 -a(S'enable/2' -p95843 -S'enable(${1:This}, ${2:Options}) $3' -p95844 -tp95845 -a(S'findString/2' -p95846 -S'findString(${1:This}, ${2:S}) $3' -p95847 -tp95848 -a(S'findString/3' -p95849 -S'findString(${1:This}, ${2:S}, ${3:Options}) $4' -p95850 -tp95851 -a(S'findWindow/2' -p95852 -S'findWindow(${1:This}, ${2:Winid}) $3' -p95853 -tp95854 -a(S'fit/1' -p95855 -S'fit(${1:This}) $2' -p95856 -tp95857 -a(S'fitInside/1' -p95858 -S'fitInside(${1:This}) $2' -p95859 -tp95860 -a(S'freeze/1' -p95861 -S'freeze(${1:This}) $2' -p95862 -tp95863 -a(S'getAcceleratorTable/1' -p95864 -S'getAcceleratorTable(${1:This}) $2' -p95865 -tp95866 -a(S'getBackgroundColour/1' -p95867 -S'getBackgroundColour(${1:This}) $2' -p95868 -tp95869 -a(S'getBackgroundStyle/1' -p95870 -S'getBackgroundStyle(${1:This}) $2' -p95871 -tp95872 -a(S'getBestSize/1' -p95873 -S'getBestSize(${1:This}) $2' -p95874 -tp95875 -a(S'getCaret/1' -p95876 -S'getCaret(${1:This}) $2' -p95877 -tp95878 -a(S'getCharHeight/1' -p95879 -S'getCharHeight(${1:This}) $2' -p95880 -tp95881 -a(S'getCharWidth/1' -p95882 -S'getCharWidth(${1:This}) $2' -p95883 -tp95884 -a(S'getChildren/1' -p95885 -S'getChildren(${1:This}) $2' -p95886 -tp95887 -a(S'getClientData/2' -p95888 -S'getClientData(${1:This}, ${2:N}) $3' -p95889 -tp95890 -a(S'getClientSize/1' -p95891 -S'getClientSize(${1:This}) $2' -p95892 -tp95893 -a(S'getContainingSizer/1' -p95894 -S'getContainingSizer(${1:This}) $2' -p95895 -tp95896 -a(S'getCount/1' -p95897 -S'getCount(${1:This}) $2' -p95898 -tp95899 -a(S'getCursor/1' -p95900 -S'getCursor(${1:This}) $2' -p95901 -tp95902 -a(S'getDropTarget/1' -p95903 -S'getDropTarget(${1:This}) $2' -p95904 -tp95905 -a(S'getEventHandler/1' -p95906 -S'getEventHandler(${1:This}) $2' -p95907 -tp95908 -a(S'getExtraStyle/1' -p95909 -S'getExtraStyle(${1:This}) $2' -p95910 -tp95911 -a(S'getFont/1' -p95912 -S'getFont(${1:This}) $2' -p95913 -tp95914 -a(S'getForegroundColour/1' -p95915 -S'getForegroundColour(${1:This}) $2' -p95916 -tp95917 -a(S'getGrandParent/1' -p95918 -S'getGrandParent(${1:This}) $2' -p95919 -tp95920 -a(S'getHandle/1' -p95921 -S'getHandle(${1:This}) $2' -p95922 -tp95923 -a(S'getHelpText/1' -p95924 -S'getHelpText(${1:This}) $2' -p95925 -tp95926 -a(S'getId/1' -p95927 -S'getId(${1:This}) $2' -p95928 -tp95929 -a(S'getInsertionPoint/1' -p95930 -S'getInsertionPoint(${1:This}) $2' -p95931 -tp95932 -a(S'getLabel/1' -p95933 -S'getLabel(${1:This}) $2' -p95934 -tp95935 -a(S'getLastPosition/1' -p95936 -S'getLastPosition(${1:This}) $2' -p95937 -tp95938 -a(S'getMaxSize/1' -p95939 -S'getMaxSize(${1:This}) $2' -p95940 -tp95941 -a(S'getMinSize/1' -p95942 -S'getMinSize(${1:This}) $2' -p95943 -tp95944 -a(S'getName/1' -p95945 -S'getName(${1:This}) $2' -p95946 -tp95947 -a(S'getParent/1' -p95948 -S'getParent(${1:This}) $2' -p95949 -tp95950 -a(S'getPosition/1' -p95951 -S'getPosition(${1:This}) $2' -p95952 -tp95953 -a(S'getRect/1' -p95954 -S'getRect(${1:This}) $2' -p95955 -tp95956 -a(S'getScreenPosition/1' -p95957 -S'getScreenPosition(${1:This}) $2' -p95958 -tp95959 -a(S'getScreenRect/1' -p95960 -S'getScreenRect(${1:This}) $2' -p95961 -tp95962 -a(S'getScrollPos/2' -p95963 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p95964 -tp95965 -a(S'getScrollRange/2' -p95966 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p95967 -tp95968 -a(S'getScrollThumb/2' -p95969 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p95970 -tp95971 -a(S'getSelection/1' -p95972 -S'getSelection(${1:This}) $2' -p95973 -tp95974 -a(S'getSize/1' -p95975 -S'getSize(${1:This}) $2' -p95976 -tp95977 -a(S'getSizer/1' -p95978 -S'getSizer(${1:This}) $2' -p95979 -tp95980 -a(S'getString/2' -p95981 -S'getString(${1:This}, ${2:N}) $3' -p95982 -tp95983 -a(S'getStringSelection/1' -p95984 -S'getStringSelection(${1:This}) $2' -p95985 -tp95986 -a(S'getTextExtent/2' -p95987 -S'getTextExtent(${1:This}, ${2:String}) $3' -p95988 -tp95989 -a(S'getTextExtent/3' -p95990 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p95991 -tp95992 -a(S'getToolTip/1' -p95993 -S'getToolTip(${1:This}) $2' -p95994 -tp95995 -a(S'getUpdateRegion/1' -p95996 -S'getUpdateRegion(${1:This}) $2' -p95997 -tp95998 -a(S'getValue/1' -p95999 -S'getValue(${1:This}) $2' -p96000 -tp96001 -a(S'getVirtualSize/1' -p96002 -S'getVirtualSize(${1:This}) $2' -p96003 -tp96004 -a(S'getWindowStyleFlag/1' -p96005 -S'getWindowStyleFlag(${1:This}) $2' -p96006 -tp96007 -a(S'getWindowVariant/1' -p96008 -S'getWindowVariant(${1:This}) $2' -p96009 -tp96010 -a(S'hasCapture/1' -p96011 -S'hasCapture(${1:This}) $2' -p96012 -tp96013 -a(S'hasScrollbar/2' -p96014 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p96015 -tp96016 -a(S'hasTransparentBackground/1' -p96017 -S'hasTransparentBackground(${1:This}) $2' -p96018 -tp96019 -a(S'hide/1' -p96020 -S'hide(${1:This}) $2' -p96021 -tp96022 -a(S'inheritAttributes/1' -p96023 -S'inheritAttributes(${1:This}) $2' -p96024 -tp96025 -a(S'initDialog/1' -p96026 -S'initDialog(${1:This}) $2' -p96027 -tp96028 -a(S'insert/3' -p96029 -S'insert(${1:This}, ${2:Item}, ${3:Pos}) $4' -p96030 -tp96031 -a(S'insert/4' -p96032 -S'insert(${1:This}, ${2:Item}, ${3:Pos}, ${4:ClientData}) $5' -p96033 -tp96034 -a(S'invalidateBestSize/1' -p96035 -S'invalidateBestSize(${1:This}) $2' -p96036 -tp96037 -a(S'isEmpty/1' -p96038 -S'isEmpty(${1:This}) $2' -p96039 -tp96040 -a(S'isEnabled/1' -p96041 -S'isEnabled(${1:This}) $2' -p96042 -tp96043 -a(S'isExposed/2' -p96044 -S'isExposed(${1:This}, ${2:Pt}) $3' -p96045 -tp96046 -a(S'isExposed/3' -p96047 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p96048 -tp96049 -a(S'isExposed/5' -p96050 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p96051 -tp96052 -a(S'isRetained/1' -p96053 -S'isRetained(${1:This}) $2' -p96054 -tp96055 -a(S'isShown/1' -p96056 -S'isShown(${1:This}) $2' -p96057 -tp96058 -a(S'isTopLevel/1' -p96059 -S'isTopLevel(${1:This}) $2' -p96060 -tp96061 -a(S'layout/1' -p96062 -S'layout(${1:This}) $2' -p96063 -tp96064 -a(S'lineDown/1' -p96065 -S'lineDown(${1:This}) $2' -p96066 -tp96067 -a(S'lineUp/1' -p96068 -S'lineUp(${1:This}) $2' -p96069 -tp96070 -a(S'lower/1' -p96071 -S'lower(${1:This}) $2' -p96072 -tp96073 -a(S'makeModal/1' -p96074 -S'makeModal(${1:This}) $2' -p96075 -tp96076 -a(S'makeModal/2' -p96077 -S'makeModal(${1:This}, ${2:Options}) $3' -p96078 -tp96079 -a(S'move/2' -p96080 -S'move(${1:This}, ${2:Pt}) $3' -p96081 -tp96082 -a(S'move/3' -p96083 -S'move(${1:This}, ${2:From}, ${3:To}) $4' -p96084 -tp96085 -a(S'move/4' -p96086 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p96087 -tp96088 -a(S'moveAfterInTabOrder/2' -p96089 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p96090 -tp96091 -a(S'moveBeforeInTabOrder/2' -p96092 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p96093 -tp96094 -a(S'navigate/1' -p96095 -S'navigate(${1:This}) $2' -p96096 -tp96097 -a(S'navigate/2' -p96098 -S'navigate(${1:This}, ${2:Options}) $3' -p96099 -tp96100 -a(S'new/0' -p96101 -S'new() $1' -p96102 -tp96103 -a(S'new/2' -p96104 -S'new(${1:Parent}, ${2:Id}) $3' -p96105 -tp96106 -a(S'new/3' -p96107 -S'new(${1:Parent}, ${2:Id}, ${3:Param3}) $4' -p96108 -tp96109 -a(S'pageDown/1' -p96110 -S'pageDown(${1:This}) $2' -p96111 -tp96112 -a(S'pageUp/1' -p96113 -S'pageUp(${1:This}) $2' -p96114 -tp96115 -a(S'parent_class/1' -p96116 -S'parent_class(${1:Param1}) $2' -p96117 -tp96118 -a(S'paste/1' -p96119 -S'paste(${1:This}) $2' -p96120 -tp96121 -a(S'popEventHandler/1' -p96122 -S'popEventHandler(${1:This}) $2' -p96123 -tp96124 -a(S'popEventHandler/2' -p96125 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p96126 -tp96127 -a(S'popupMenu/2' -p96128 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p96129 -tp96130 -a(S'popupMenu/3' -p96131 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p96132 -tp96133 -a(S'popupMenu/4' -p96134 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p96135 -tp96136 -a(S'raise/1' -p96137 -S'raise(${1:This}) $2' -p96138 -tp96139 -a(S'redo/1' -p96140 -S'redo(${1:This}) $2' -p96141 -tp96142 -a(S'refresh/1' -p96143 -S'refresh(${1:This}) $2' -p96144 -tp96145 -a(S'refresh/2' -p96146 -S'refresh(${1:This}, ${2:Options}) $3' -p96147 -tp96148 -a(S'refreshRect/2' -p96149 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p96150 -tp96151 -a(S'refreshRect/3' -p96152 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p96153 -tp96154 -a(S'releaseMouse/1' -p96155 -S'releaseMouse(${1:This}) $2' -p96156 -tp96157 -a(S'remove/3' -p96158 -S'remove(${1:This}, ${2:From}, ${3:To}) $4' -p96159 -tp96160 -a(S'removeChild/2' -p96161 -S'removeChild(${1:This}, ${2:Child}) $3' -p96162 -tp96163 -a(S'reparent/2' -p96164 -S'reparent(${1:This}, ${2:NewParent}) $3' -p96165 -tp96166 -a(S'replace/4' -p96167 -S'replace(${1:This}, ${2:From}, ${3:To}, ${4:Value}) $5' -p96168 -tp96169 -a(S'screenToClient/1' -p96170 -S'screenToClient(${1:This}) $2' -p96171 -tp96172 -a(S'screenToClient/2' -p96173 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p96174 -tp96175 -a(S'scrollLines/2' -p96176 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p96177 -tp96178 -a(S'scrollPages/2' -p96179 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p96180 -tp96181 -a(S'scrollWindow/3' -p96182 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p96183 -tp96184 -a(S'scrollWindow/4' -p96185 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p96186 -tp96187 -a(S'select/2' -p96188 -S'select(${1:This}, ${2:N}) $3' -p96189 -tp96190 -a(S'setAcceleratorTable/2' -p96191 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p96192 -tp96193 -a(S'setAutoLayout/2' -p96194 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p96195 -tp96196 -a(S'setBackgroundColour/2' -p96197 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p96198 -tp96199 -a(S'setBackgroundStyle/2' -p96200 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p96201 -tp96202 -a(S'setCaret/2' -p96203 -S'setCaret(${1:This}, ${2:Caret}) $3' -p96204 -tp96205 -a(S'setClientData/3' -p96206 -S'setClientData(${1:This}, ${2:N}, ${3:ClientData}) $4' -p96207 -tp96208 -a(S'setClientSize/2' -p96209 -S'setClientSize(${1:This}, ${2:Size}) $3' -p96210 -tp96211 -a(S'setClientSize/3' -p96212 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p96213 -tp96214 -a(S'setContainingSizer/2' -p96215 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p96216 -tp96217 -a(S'setCursor/2' -p96218 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p96219 -tp96220 -a(S'setDropTarget/2' -p96221 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p96222 -tp96223 -a(S'setExtraStyle/2' -p96224 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p96225 -tp96226 -a(S'setFocus/1' -p96227 -S'setFocus(${1:This}) $2' -p96228 -tp96229 -a(S'setFocusFromKbd/1' -p96230 -S'setFocusFromKbd(${1:This}) $2' -p96231 -tp96232 -a(S'setFont/2' -p96233 -S'setFont(${1:This}, ${2:Font}) $3' -p96234 -tp96235 -a(S'setForegroundColour/2' -p96236 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p96237 -tp96238 -a(S'setHelpText/2' -p96239 -S'setHelpText(${1:This}, ${2:Text}) $3' -p96240 -tp96241 -a(S'setId/2' -p96242 -S'setId(${1:This}, ${2:Winid}) $3' -p96243 -tp96244 -a(S'setInsertionPoint/2' -p96245 -S'setInsertionPoint(${1:This}, ${2:Pos}) $3' -p96246 -tp96247 -a(S'setInsertionPointEnd/1' -p96248 -S'setInsertionPointEnd(${1:This}) $2' -p96249 -tp96250 -a(S'setLabel/2' -p96251 -S'setLabel(${1:This}, ${2:Label}) $3' -p96252 -tp96253 -a(S'setMaxSize/2' -p96254 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p96255 -tp96256 -a(S'setMinSize/2' -p96257 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p96258 -tp96259 -a(S'setName/2' -p96260 -S'setName(${1:This}, ${2:Name}) $3' -p96261 -tp96262 -a(S'setOwnBackgroundColour/2' -p96263 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p96264 -tp96265 -a(S'setOwnFont/2' -p96266 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p96267 -tp96268 -a(S'setOwnForegroundColour/2' -p96269 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p96270 -tp96271 -a(S'setPalette/2' -p96272 -S'setPalette(${1:This}, ${2:Pal}) $3' -p96273 -tp96274 -a(S'setScrollPos/3' -p96275 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p96276 -tp96277 -a(S'setScrollPos/4' -p96278 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p96279 -tp96280 -a(S'setScrollbar/5' -p96281 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p96282 -tp96283 -a(S'setScrollbar/6' -p96284 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p96285 -tp96286 -a(S'setSelection/2' -p96287 -S'setSelection(${1:This}, ${2:N}) $3' -p96288 -tp96289 -a(S'setSelection/3' -p96290 -S'setSelection(${1:This}, ${2:From}, ${3:To}) $4' -p96291 -tp96292 -a(S'setSize/2' -p96293 -S'setSize(${1:This}, ${2:Rect}) $3' -p96294 -tp96295 -a(S'setSize/3' -p96296 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p96297 -tp96298 -a(S'setSize/5' -p96299 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p96300 -tp96301 -a(S'setSize/6' -p96302 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p96303 -tp96304 -a(S'setSizeHints/2' -p96305 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p96306 -tp96307 -a(S'setSizeHints/3' -p96308 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p96309 -tp96310 -a(S'setSizeHints/4' -p96311 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p96312 -tp96313 -a(S'setSizer/2' -p96314 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p96315 -tp96316 -a(S'setSizer/3' -p96317 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p96318 -tp96319 -a(S'setSizerAndFit/2' -p96320 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p96321 -tp96322 -a(S'setSizerAndFit/3' -p96323 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p96324 -tp96325 -a(S'setString/3' -p96326 -S'setString(${1:This}, ${2:N}, ${3:S}) $4' -p96327 -tp96328 -a(S'setStringSelection/2' -p96329 -S'setStringSelection(${1:This}, ${2:S}) $3' -p96330 -tp96331 -a(S'setThemeEnabled/2' -p96332 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p96333 -tp96334 -a(S'setToolTip/2' -p96335 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p96336 -tp96337 -a(S'setValue/2' -p96338 -S'setValue(${1:This}, ${2:Value}) $3' -p96339 -tp96340 -a(S'setVirtualSize/2' -p96341 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p96342 -tp96343 -a(S'setVirtualSize/3' -p96344 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p96345 -tp96346 -a(S'setVirtualSizeHints/2' -p96347 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p96348 -tp96349 -a(S'setVirtualSizeHints/3' -p96350 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p96351 -tp96352 -a(S'setVirtualSizeHints/4' -p96353 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p96354 -tp96355 -a(S'setWindowStyle/2' -p96356 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p96357 -tp96358 -a(S'setWindowStyleFlag/2' -p96359 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p96360 -tp96361 -a(S'setWindowVariant/2' -p96362 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p96363 -tp96364 -a(S'shouldInheritColours/1' -p96365 -S'shouldInheritColours(${1:This}) $2' -p96366 -tp96367 -a(S'show/1' -p96368 -S'show(${1:This}) $2' -p96369 -tp96370 -a(S'show/2' -p96371 -S'show(${1:This}, ${2:Options}) $3' -p96372 -tp96373 -a(S'thaw/1' -p96374 -S'thaw(${1:This}) $2' -p96375 -tp96376 -a(S'transferDataFromWindow/1' -p96377 -S'transferDataFromWindow(${1:This}) $2' -p96378 -tp96379 -a(S'transferDataToWindow/1' -p96380 -S'transferDataToWindow(${1:This}) $2' -p96381 -tp96382 -a(S'undo/1' -p96383 -S'undo(${1:This}) $2' -p96384 -tp96385 -a(S'update/1' -p96386 -S'update(${1:This}) $2' -p96387 -tp96388 -a(S'updateWindowUI/1' -p96389 -S'updateWindowUI(${1:This}) $2' -p96390 -tp96391 -a(S'updateWindowUI/2' -p96392 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p96393 -tp96394 -a(S'validate/1' -p96395 -S'validate(${1:This}) $2' -p96396 -tp96397 -a(S'warpPointer/3' -p96398 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p96399 -tp96400 -asS'tv_pc_menu_handling' -p96401 -(lp96402 -(S'create_menus/1' -p96403 -S'create_menus(${1:PwPid}) $2' -p96404 -tp96405 -a(S'delete_object/1' -p96406 -S'delete_object(${1:ProcVars}) $2' -p96407 -tp96408 -a(S'exit_button/1' -p96409 -S'exit_button(${1:Param1}) $2' -p96410 -tp96411 -a(S'get_window_title/4' -p96412 -S'get_window_title(${1:Param1}, ${2:Node}, ${3:TableId}, ${4:TableName}) $5' -p96413 -tp96414 -a(S'help_button/1' -p96415 -S'help_button(${1:ProcVars}) $2' -p96416 -tp96417 -a(S'insert_object/1' -p96418 -S'insert_object(${1:ProcVars}) $2' -p96419 -tp96420 -a(S'lists_as_lists/1' -p96421 -S'lists_as_lists(${1:ProcVars}) $2' -p96422 -tp96423 -a(S'lists_as_strings/1' -p96424 -S'lists_as_strings(${1:ProcVars}) $2' -p96425 -tp96426 -a(S'no_sorting/1' -p96427 -S'no_sorting(${1:ProcVars}) $2' -p96428 -tp96429 -a(S'open_table/7' -p96430 -S'open_table(${1:CurrNode}, ${2:LocalNode}, ${3:TableId}, ${4:TableType}, ${5:TableName}, ${6:Raise}, ${7:ProcVars}) $8' -p96431 -tp96432 -a(S'otp_help_button/1' -p96433 -S'otp_help_button(${1:ProcVars}) $2' -p96434 -tp96435 -a(S'poll_table/1' -p96436 -S'poll_table(${1:ProcVars}) $2' -p96437 -tp96438 -a(S'search_object/1' -p96439 -S'search_object(${1:ProcVars}) $2' -p96440 -tp96441 -a(S'set_poll_interval/1' -p96442 -S'set_poll_interval(${1:ProcVars}) $2' -p96443 -tp96444 -a(S'sort_falling_order/1' -p96445 -S'sort_falling_order(${1:ProcVars}) $2' -p96446 -tp96447 -a(S'sort_rising_order/1' -p96448 -S'sort_rising_order(${1:ProcVars}) $2' -p96449 -tp96450 -a(S'table_info/1' -p96451 -S'table_info(${1:ProcVars}) $2' -p96452 -tp96453 -asS'snmp_standard_mib' -p96454 -(lp96455 -(S'add_agent_caps/2' -p96456 -S'add_agent_caps(${1:Oid}, ${2:Descr}) $3' -p96457 -tp96458 -a(S'check_standard/1' -p96459 -S'check_standard(${1:X}) $2' -p96460 -tp96461 -a(S'configure/1' -p96462 -S'configure(${1:Dir}) $2' -p96463 -tp96464 -a(S'del_agent_caps/1' -p96465 -S'del_agent_caps(${1:Index}) $2' -p96466 -tp96467 -a(S'dummy/1' -p96468 -S'dummy(${1:Param1}) $2' -p96469 -tp96470 -a(S'get_agent_caps/0' -p96471 -S'get_agent_caps() $1' -p96472 -tp96473 -a(S'inc/1' -p96474 -S'inc(${1:Name}) $2' -p96475 -tp96476 -a(S'inc/2' -p96477 -S'inc(${1:Name}, ${2:N}) $3' -p96478 -tp96479 -a(S'reconfigure/1' -p96480 -S'reconfigure(${1:Dir}) $2' -p96481 -tp96482 -a(S'reset/0' -p96483 -S'reset() $1' -p96484 -tp96485 -a(S'snmpEnableAuthenTraps/1' -p96486 -S'snmpEnableAuthenTraps(${1:Param1}) $2' -p96487 -tp96488 -a(S'snmpInASNParseErrs/1' -p96489 -S'snmpInASNParseErrs(${1:Param1}) $2' -p96490 -tp96491 -a(S'snmpInBadCommunityNames/1' -p96492 -S'snmpInBadCommunityNames(${1:Param1}) $2' -p96493 -tp96494 -a(S'snmpInBadCommunityUses/1' -p96495 -S'snmpInBadCommunityUses(${1:Param1}) $2' -p96496 -tp96497 -a(S'snmpInBadValues/1' -p96498 -S'snmpInBadValues(${1:Param1}) $2' -p96499 -tp96500 -a(S'snmpInBadVersions/1' -p96501 -S'snmpInBadVersions(${1:Param1}) $2' -p96502 -tp96503 -a(S'snmpInGenErrs/1' -p96504 -S'snmpInGenErrs(${1:Param1}) $2' -p96505 -tp96506 -a(S'snmpInGetNexts/1' -p96507 -S'snmpInGetNexts(${1:Param1}) $2' -p96508 -tp96509 -a(S'snmpInGetRequests/1' -p96510 -S'snmpInGetRequests(${1:Param1}) $2' -p96511 -tp96512 -a(S'snmpInGetResponses/1' -p96513 -S'snmpInGetResponses(${1:Param1}) $2' -p96514 -tp96515 -a(S'snmpInNoSuchNames/1' -p96516 -S'snmpInNoSuchNames(${1:Param1}) $2' -p96517 -tp96518 -a(S'snmpInPkts/1' -p96519 -S'snmpInPkts(${1:Param1}) $2' -p96520 -tp96521 -a(S'snmpInReadOnlys/1' -p96522 -S'snmpInReadOnlys(${1:Param1}) $2' -p96523 -tp96524 -a(S'snmpInSetRequests/1' -p96525 -S'snmpInSetRequests(${1:Param1}) $2' -p96526 -tp96527 -a(S'snmpInTooBigs/1' -p96528 -S'snmpInTooBigs(${1:Param1}) $2' -p96529 -tp96530 -a(S'snmpInTotalReqVars/1' -p96531 -S'snmpInTotalReqVars(${1:Param1}) $2' -p96532 -tp96533 -a(S'snmpInTotalSetVars/1' -p96534 -S'snmpInTotalSetVars(${1:Param1}) $2' -p96535 -tp96536 -a(S'snmpInTraps/1' -p96537 -S'snmpInTraps(${1:Param1}) $2' -p96538 -tp96539 -a(S'snmpOutBadValues/1' -p96540 -S'snmpOutBadValues(${1:Param1}) $2' -p96541 -tp96542 -a(S'snmpOutGenErrs/1' -p96543 -S'snmpOutGenErrs(${1:Param1}) $2' -p96544 -tp96545 -a(S'snmpOutGetNexts/1' -p96546 -S'snmpOutGetNexts(${1:Param1}) $2' -p96547 -tp96548 -a(S'snmpOutGetRequests/1' -p96549 -S'snmpOutGetRequests(${1:Param1}) $2' -p96550 -tp96551 -a(S'snmpOutGetResponses/1' -p96552 -S'snmpOutGetResponses(${1:Param1}) $2' -p96553 -tp96554 -a(S'snmpOutNoSuchNames/1' -p96555 -S'snmpOutNoSuchNames(${1:Param1}) $2' -p96556 -tp96557 -a(S'snmpOutPkts/1' -p96558 -S'snmpOutPkts(${1:Param1}) $2' -p96559 -tp96560 -a(S'snmpOutSetRequests/1' -p96561 -S'snmpOutSetRequests(${1:Param1}) $2' -p96562 -tp96563 -a(S'snmpOutTooBigs/1' -p96564 -S'snmpOutTooBigs(${1:Param1}) $2' -p96565 -tp96566 -a(S'snmpOutTraps/1' -p96567 -S'snmpOutTraps(${1:Param1}) $2' -p96568 -tp96569 -a(S'snmp_enable_authen_traps/1' -p96570 -S'snmp_enable_authen_traps(${1:Param1}) $2' -p96571 -tp96572 -a(S'snmp_enable_authen_traps/2' -p96573 -S'snmp_enable_authen_traps(${1:Param1}, ${2:NewVal}) $3' -p96574 -tp96575 -a(S'snmp_set_serial_no/1' -p96576 -S'snmp_set_serial_no(${1:Param1}) $2' -p96577 -tp96578 -a(S'snmp_set_serial_no/2' -p96579 -S'snmp_set_serial_no(${1:Param1}, ${2:NewVal}) $3' -p96580 -tp96581 -a(S'sysContact/1' -p96582 -S'sysContact(${1:Param1}) $2' -p96583 -tp96584 -a(S'sysDescr/1' -p96585 -S'sysDescr(${1:Param1}) $2' -p96586 -tp96587 -a(S'sysLocation/1' -p96588 -S'sysLocation(${1:Param1}) $2' -p96589 -tp96590 -a(S'sysName/1' -p96591 -S'sysName(${1:Param1}) $2' -p96592 -tp96593 -a(S'sysObjectID/1' -p96594 -S'sysObjectID(${1:Param1}) $2' -p96595 -tp96596 -a(S'sysServices/1' -p96597 -S'sysServices(${1:Param1}) $2' -p96598 -tp96599 -a(S'sysUpTime/1' -p96600 -S'sysUpTime(${1:Param1}) $2' -p96601 -tp96602 -a(S'sys_object_id/1' -p96603 -S'sys_object_id(${1:Param1}) $2' -p96604 -tp96605 -a(S'sys_object_id/2' -p96606 -S'sys_object_id(${1:Param1}, ${2:NewVal}) $3' -p96607 -tp96608 -a(S'sys_or_table/3' -p96609 -S'sys_or_table(${1:Op}, ${2:RowIndex}, ${3:Cols}) $4' -p96610 -tp96611 -a(S'sys_up_time/0' -p96612 -S'sys_up_time() $1' -p96613 -tp96614 -a(S'sys_up_time/1' -p96615 -S'sys_up_time(${1:Param1}) $2' -p96616 -tp96617 -a(S'variable_func/1' -p96618 -S'variable_func(${1:Param1}) $2' -p96619 -tp96620 -a(S'variable_func/2' -p96621 -S'variable_func(${1:Param1}, ${2:Name}) $3' -p96622 -tp96623 -asS'percept_graph' -p96624 -(lp96625 -(S'activity/3' -p96626 -S'activity(${1:SessionID}, ${2:Env}, ${3:Input}) $4' -p96627 -tp96628 -a(S'graph/3' -p96629 -S'graph(${1:SessionID}, ${2:Env}, ${3:Input}) $4' -p96630 -tp96631 -a(S'percentage/3' -p96632 -S'percentage(${1:SessionID}, ${2:Env}, ${3:Input}) $4' -p96633 -tp96634 -a(S'proc_lifetime/3' -p96635 -S'proc_lifetime(${1:SessionID}, ${2:Env}, ${3:Input}) $4' -p96636 -tp96637 -a(S'scheduler_graph/3' -p96638 -S'scheduler_graph(${1:SessionID}, ${2:Env}, ${3:Input}) $4' -p96639 -tp96640 -asS'ssh_file' -p96641 -(lp96642 -(S'add_host_key/3' -p96643 -S'add_host_key(${1:Host}, ${2:Key}, ${3:Opts}) $4' -p96644 -tp96645 -a(S'host_key/2' -p96646 -S'host_key(${1:Algorithm}, ${2:Opts}) $3' -p96647 -tp96648 -a(S'is_auth_key/4' -p96649 -S'is_auth_key(${1:Key}, ${2:User}, ${3:Alg}, ${4:Opts}) $5' -p96650 -tp96651 -a(S'is_host_key/4' -p96652 -S'is_host_key(${1:Key}, ${2:PeerName}, ${3:Algorithm}, ${4:Opts}) $5' -p96653 -tp96654 -a(S'user_key/2' -p96655 -S'user_key(${1:Algorithm}, ${2:Opts}) $3' -p96656 -tp96657 -asS'diameter_stats' -p96658 -(lp96659 -(S'code_change/3' -p96660 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p96661 -tp96662 -a(S'flush/0' -p96663 -S'flush() $1' -p96664 -tp96665 -a(S'flush/1' -p96666 -S'flush(${1:Contrib}) $2' -p96667 -tp96668 -a(S'handle_call/3' -p96669 -S'handle_call(${1:Req}, ${2:From}, ${3:State}) $4' -p96670 -tp96671 -a(S'handle_cast/2' -p96672 -S'handle_cast(${1:Msg}, ${2:State}) $3' -p96673 -tp96674 -a(S'handle_info/2' -p96675 -S'handle_info(${1:Info}, ${2:State}) $3' -p96676 -tp96677 -a(S'incr/1' -p96678 -S'incr(${1:Ctr}) $2' -p96679 -tp96680 -a(S'incr/2' -p96681 -S'incr(${1:Ctr}, ${2:Contrib}) $3' -p96682 -tp96683 -a(S'incr/3' -p96684 -S'incr(${1:Ctr}, ${2:Contrib}, ${3:N}) $4' -p96685 -tp96686 -a(S'init/1' -p96687 -S'init(${1:Param1}) $2' -p96688 -tp96689 -a(S'read/1' -p96690 -S'read(${1:Contribs}) $2' -p96691 -tp96692 -a(S'reg/1' -p96693 -S'reg(${1:Ref}) $2' -p96694 -tp96695 -a(S'reg/2' -p96696 -S'reg(${1:Param1}, ${2:Param2}) $3' -p96697 -tp96698 -a(S'start_link/0' -p96699 -S'start_link() $1' -p96700 -tp96701 -a(S'state/0' -p96702 -S'state() $1' -p96703 -tp96704 -a(S'terminate/2' -p96705 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p96706 -tp96707 -a(S'uptime/0' -p96708 -S'uptime() $1' -p96709 -tp96710 -asS'pg' -p96711 -(lp96712 -(S'create/1' -p96713 -S'create(${1:PgName}) $2' -p96714 -tp96715 -a(S'create/2' -p96716 -S'create(${1:PgName}, ${2:Node}) $3' -p96717 -tp96718 -a(S'esend/2' -p96719 -S'esend(${1:PgName}, ${2:Msg}) $3' -p96720 -tp96721 -a(S'join/2' -p96722 -S'join(${1:PgName}, ${2:Pid}) $3' -p96723 -tp96724 -a(S'master/1' -p96725 -S'master(${1:PgName}) $2' -p96726 -tp96727 -a(S'members/1' -p96728 -S'members(${1:PgName}) $2' -p96729 -tp96730 -a(S'name_to_pid/1' -p96731 -S'name_to_pid(${1:PgName}) $2' -p96732 -tp96733 -a(S'send/2' -p96734 -S'send(${1:PgName}, ${2:Msg}) $3' -p96735 -tp96736 -a(S'standby/2' -p96737 -S'standby(${1:Param1}, ${2:Param2}) $3' -p96738 -tp96739 -asS'CosTransactions_SubtransactionsUnavailable' -p96740 -(lp96741 -(S'id/0' -p96742 -S'id() $1' -p96743 -tp96744 -a(S'name/0' -p96745 -S'name() $1' -p96746 -tp96747 -a(S'tc/0' -p96748 -S'tc() $1' -p96749 -tp96750 -asS'httpd_script_env' -p96751 -(lp96752 -(S'create_env/3' -p96753 -S'create_env(${1:ScriptType}, ${2:ModData}, ${3:ScriptElements}) $4' -p96754 -tp96755 -asS'file_sorter' -p96756 -(lp96757 -(S'check/1' -p96758 -S'check(${1:FileName}) $2' -p96759 -tp96760 -a(S'check/2' -p96761 -S'check(${1:FileNames}, ${2:Options}) $3' -p96762 -tp96763 -a(S'keycheck/2' -p96764 -S'keycheck(${1:KeyPos}, ${2:FileName}) $3' -p96765 -tp96766 -a(S'keycheck/3' -p96767 -S'keycheck(${1:KeyPos}, ${2:FileNames}, ${3:Options}) $4' -p96768 -tp96769 -a(S'keymerge/3' -p96770 -S'keymerge(${1:KeyPos}, ${2:FileNames}, ${3:Output}) $4' -p96771 -tp96772 -a(S'keymerge/4' -p96773 -S'keymerge(${1:KeyPos}, ${2:FileNames}, ${3:Output}, ${4:Options}) $5' -p96774 -tp96775 -a(S'keysort/2' -p96776 -S'keysort(${1:KeyPos}, ${2:FileName}) $3' -p96777 -tp96778 -a(S'keysort/3' -p96779 -S'keysort(${1:KeyPos}, ${2:Input}, ${3:Output}) $4' -p96780 -tp96781 -a(S'keysort/4' -p96782 -S'keysort(${1:KeyPos}, ${2:Input}, ${3:Output}, ${4:Options}) $5' -p96783 -tp96784 -a(S'merge/2' -p96785 -S'merge(${1:FileNames}, ${2:Output}) $3' -p96786 -tp96787 -a(S'merge/3' -p96788 -S'merge(${1:FileNames}, ${2:Output}, ${3:Options}) $4' -p96789 -tp96790 -a(S'sort/1' -p96791 -S'sort(${1:FileName}) $2' -p96792 -tp96793 -a(S'sort/2' -p96794 -S'sort(${1:Input}, ${2:Output}) $3' -p96795 -tp96796 -a(S'sort/3' -p96797 -S'sort(${1:Input}, ${2:Output}, ${3:Options}) $4' -p96798 -tp96799 -asS'ssh_subsystem_sup' -p96800 -(lp96801 -(S'channel_supervisor/1' -p96802 -S'channel_supervisor(${1:SupPid}) $2' -p96803 -tp96804 -a(S'connection_supervisor/1' -p96805 -S'connection_supervisor(${1:SupPid}) $2' -p96806 -tp96807 -a(S'init/1' -p96808 -S'init(${1:Param1}) $2' -p96809 -tp96810 -a(S'start_link/1' -p96811 -S'start_link(${1:Opts}) $2' -p96812 -tp96813 -asS'wxFlexGridSizer' -p96814 -(lp96815 -(S'add/2' -p96816 -S'add(${1:This}, ${2:Window}) $3' -p96817 -tp96818 -a(S'add/3' -p96819 -S'add(${1:This}, ${2:Width}, ${3:Height}) $4' -p96820 -tp96821 -a(S'add/4' -p96822 -S'add(${1:This}, ${2:Width}, ${3:Height}, ${4:Options}) $5' -p96823 -tp96824 -a(S'addGrowableCol/2' -p96825 -S'addGrowableCol(${1:This}, ${2:Idx}) $3' -p96826 -tp96827 -a(S'addGrowableCol/3' -p96828 -S'addGrowableCol(${1:This}, ${2:Idx}, ${3:Param3}) $4' -p96829 -tp96830 -a(S'addGrowableRow/2' -p96831 -S'addGrowableRow(${1:This}, ${2:Idx}) $3' -p96832 -tp96833 -a(S'addGrowableRow/3' -p96834 -S'addGrowableRow(${1:This}, ${2:Idx}, ${3:Param3}) $4' -p96835 -tp96836 -a(S'addSpacer/2' -p96837 -S'addSpacer(${1:This}, ${2:Size}) $3' -p96838 -tp96839 -a(S'addStretchSpacer/1' -p96840 -S'addStretchSpacer(${1:This}) $2' -p96841 -tp96842 -a(S'addStretchSpacer/2' -p96843 -S'addStretchSpacer(${1:This}, ${2:Options}) $3' -p96844 -tp96845 -a(S'calcMin/1' -p96846 -S'calcMin(${1:This}) $2' -p96847 -tp96848 -a(S'clear/1' -p96849 -S'clear(${1:This}) $2' -p96850 -tp96851 -a(S'clear/2' -p96852 -S'clear(${1:This}, ${2:Options}) $3' -p96853 -tp96854 -a(S'destroy/1' -p96855 -S'destroy(${1:This}) $2' -p96856 -tp96857 -a(S'detach/2' -p96858 -S'detach(${1:This}, ${2:Index}) $3' -p96859 -tp96860 -a(S'fit/2' -p96861 -S'fit(${1:This}, ${2:Window}) $3' -p96862 -tp96863 -a(S'fitInside/2' -p96864 -S'fitInside(${1:This}, ${2:Window}) $3' -p96865 -tp96866 -a(S'getChildren/1' -p96867 -S'getChildren(${1:This}) $2' -p96868 -tp96869 -a(S'getCols/1' -p96870 -S'getCols(${1:This}) $2' -p96871 -tp96872 -a(S'getFlexibleDirection/1' -p96873 -S'getFlexibleDirection(${1:This}) $2' -p96874 -tp96875 -a(S'getHGap/1' -p96876 -S'getHGap(${1:This}) $2' -p96877 -tp96878 -a(S'getItem/2' -p96879 -S'getItem(${1:This}, ${2:Window}) $3' -p96880 -tp96881 -a(S'getItem/3' -p96882 -S'getItem(${1:This}, ${2:Window}, ${3:Options}) $4' -p96883 -tp96884 -a(S'getMinSize/1' -p96885 -S'getMinSize(${1:This}) $2' -p96886 -tp96887 -a(S'getNonFlexibleGrowMode/1' -p96888 -S'getNonFlexibleGrowMode(${1:This}) $2' -p96889 -tp96890 -a(S'getPosition/1' -p96891 -S'getPosition(${1:This}) $2' -p96892 -tp96893 -a(S'getRows/1' -p96894 -S'getRows(${1:This}) $2' -p96895 -tp96896 -a(S'getSize/1' -p96897 -S'getSize(${1:This}) $2' -p96898 -tp96899 -a(S'getVGap/1' -p96900 -S'getVGap(${1:This}) $2' -p96901 -tp96902 -a(S'hide/2' -p96903 -S'hide(${1:This}, ${2:Window}) $3' -p96904 -tp96905 -a(S'hide/3' -p96906 -S'hide(${1:This}, ${2:Window}, ${3:Options}) $4' -p96907 -tp96908 -a(S'insert/3' -p96909 -S'insert(${1:This}, ${2:Index}, ${3:Item}) $4' -p96910 -tp96911 -a(S'insert/4' -p96912 -S'insert(${1:This}, ${2:Index}, ${3:Width}, ${4:Height}) $5' -p96913 -tp96914 -a(S'insert/5' -p96915 -S'insert(${1:This}, ${2:Index}, ${3:Width}, ${4:Height}, ${5:Options}) $6' -p96916 -tp96917 -a(S'insertSpacer/3' -p96918 -S'insertSpacer(${1:This}, ${2:Index}, ${3:Size}) $4' -p96919 -tp96920 -a(S'insertStretchSpacer/2' -p96921 -S'insertStretchSpacer(${1:This}, ${2:Index}) $3' -p96922 -tp96923 -a(S'insertStretchSpacer/3' -p96924 -S'insertStretchSpacer(${1:This}, ${2:Index}, ${3:Options}) $4' -p96925 -tp96926 -a(S'isShown/2' -p96927 -S'isShown(${1:This}, ${2:Index}) $3' -p96928 -tp96929 -a(S'layout/1' -p96930 -S'layout(${1:This}) $2' -p96931 -tp96932 -a(S'new/1' -p96933 -S'new(${1:Cols}) $2' -p96934 -tp96935 -a(S'new/2' -p96936 -S'new(${1:Cols}, ${2:Param2}) $3' -p96937 -tp96938 -a(S'new/4' -p96939 -S'new(${1:Rows}, ${2:Cols}, ${3:Vgap}, ${4:Hgap}) $5' -p96940 -tp96941 -a(S'parent_class/1' -p96942 -S'parent_class(${1:Param1}) $2' -p96943 -tp96944 -a(S'prepend/2' -p96945 -S'prepend(${1:This}, ${2:Item}) $3' -p96946 -tp96947 -a(S'prepend/3' -p96948 -S'prepend(${1:This}, ${2:Width}, ${3:Height}) $4' -p96949 -tp96950 -a(S'prepend/4' -p96951 -S'prepend(${1:This}, ${2:Width}, ${3:Height}, ${4:Options}) $5' -p96952 -tp96953 -a(S'prependSpacer/2' -p96954 -S'prependSpacer(${1:This}, ${2:Size}) $3' -p96955 -tp96956 -a(S'prependStretchSpacer/1' -p96957 -S'prependStretchSpacer(${1:This}) $2' -p96958 -tp96959 -a(S'prependStretchSpacer/2' -p96960 -S'prependStretchSpacer(${1:This}, ${2:Options}) $3' -p96961 -tp96962 -a(S'recalcSizes/1' -p96963 -S'recalcSizes(${1:This}) $2' -p96964 -tp96965 -a(S'remove/2' -p96966 -S'remove(${1:This}, ${2:Index}) $3' -p96967 -tp96968 -a(S'removeGrowableCol/2' -p96969 -S'removeGrowableCol(${1:This}, ${2:Idx}) $3' -p96970 -tp96971 -a(S'removeGrowableRow/2' -p96972 -S'removeGrowableRow(${1:This}, ${2:Idx}) $3' -p96973 -tp96974 -a(S'replace/3' -p96975 -S'replace(${1:This}, ${2:Oldwin}, ${3:Newwin}) $4' -p96976 -tp96977 -a(S'replace/4' -p96978 -S'replace(${1:This}, ${2:Oldwin}, ${3:Newwin}, ${4:Options}) $5' -p96979 -tp96980 -a(S'setCols/2' -p96981 -S'setCols(${1:This}, ${2:Cols}) $3' -p96982 -tp96983 -a(S'setDimension/5' -p96984 -S'setDimension(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p96985 -tp96986 -a(S'setFlexibleDirection/2' -p96987 -S'setFlexibleDirection(${1:This}, ${2:Direction}) $3' -p96988 -tp96989 -a(S'setHGap/2' -p96990 -S'setHGap(${1:This}, ${2:Gap}) $3' -p96991 -tp96992 -a(S'setItemMinSize/3' -p96993 -S'setItemMinSize(${1:This}, ${2:Index}, ${3:Size}) $4' -p96994 -tp96995 -a(S'setItemMinSize/4' -p96996 -S'setItemMinSize(${1:This}, ${2:Index}, ${3:Width}, ${4:Height}) $5' -p96997 -tp96998 -a(S'setMinSize/2' -p96999 -S'setMinSize(${1:This}, ${2:Size}) $3' -p97000 -tp97001 -a(S'setMinSize/3' -p97002 -S'setMinSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p97003 -tp97004 -a(S'setNonFlexibleGrowMode/2' -p97005 -S'setNonFlexibleGrowMode(${1:This}, ${2:Mode}) $3' -p97006 -tp97007 -a(S'setRows/2' -p97008 -S'setRows(${1:This}, ${2:Rows}) $3' -p97009 -tp97010 -a(S'setSizeHints/2' -p97011 -S'setSizeHints(${1:This}, ${2:Window}) $3' -p97012 -tp97013 -a(S'setVGap/2' -p97014 -S'setVGap(${1:This}, ${2:Gap}) $3' -p97015 -tp97016 -a(S'setVirtualSizeHints/2' -p97017 -S'setVirtualSizeHints(${1:This}, ${2:Window}) $3' -p97018 -tp97019 -a(S'show/2' -p97020 -S'show(${1:This}, ${2:Index}) $3' -p97021 -tp97022 -a(S'show/3' -p97023 -S'show(${1:This}, ${2:Index}, ${3:Options}) $4' -p97024 -tp97025 -asS'CosNotifyChannelAdmin_ChannelNotFound' -p97026 -(lp97027 -(S'id/0' -p97028 -S'id() $1' -p97029 -tp97030 -a(S'name/0' -p97031 -S'name() $1' -p97032 -tp97033 -a(S'tc/0' -p97034 -S'tc() $1' -p97035 -tp97036 -asS'oe_CosProperty' -p97037 -(lp97038 -(S'oe_dependency/0' -p97039 -S'oe_dependency() $1' -p97040 -tp97041 -a(S'oe_get_module/5' -p97042 -S'oe_get_module(${1:OE_IFR}, ${2:OE_Parent}, ${3:ID}, ${4:Name}, ${5:Version}) $6' -p97043 -tp97044 -a(S'oe_register/0' -p97045 -S'oe_register() $1' -p97046 -tp97047 -a(S'oe_unregister/0' -p97048 -S'oe_unregister() $1' -p97049 -tp97050 -asS'ssh_system_sup' -p97051 -(lp97052 -(S'acceptor_supervisor/1' -p97053 -S'acceptor_supervisor(${1:SystemSup}) $2' -p97054 -tp97055 -a(S'channel_supervisor/1' -p97056 -S'channel_supervisor(${1:SystemSup}) $2' -p97057 -tp97058 -a(S'connection_supervisor/1' -p97059 -S'connection_supervisor(${1:SystemSup}) $2' -p97060 -tp97061 -a(S'init/1' -p97062 -S'init(${1:Param1}) $2' -p97063 -tp97064 -a(S'restart_acceptor/2' -p97065 -S'restart_acceptor(${1:Address}, ${2:Port}) $3' -p97066 -tp97067 -a(S'restart_subsystem/2' -p97068 -S'restart_subsystem(${1:Address}, ${2:Port}) $3' -p97069 -tp97070 -a(S'start_link/1' -p97071 -S'start_link(${1:ServerOpts}) $2' -p97072 -tp97073 -a(S'start_subsystem/2' -p97074 -S'start_subsystem(${1:SystemSup}, ${2:Options}) $3' -p97075 -tp97076 -a(S'stop_listener/1' -p97077 -S'stop_listener(${1:SysSup}) $2' -p97078 -tp97079 -a(S'stop_listener/2' -p97080 -S'stop_listener(${1:Address}, ${2:Port}) $3' -p97081 -tp97082 -a(S'stop_subsystem/2' -p97083 -S'stop_subsystem(${1:SystemSup}, ${2:SubSys}) $3' -p97084 -tp97085 -a(S'stop_system/1' -p97086 -S'stop_system(${1:SysSup}) $2' -p97087 -tp97088 -a(S'stop_system/2' -p97089 -S'stop_system(${1:Address}, ${2:Port}) $3' -p97090 -tp97091 -a(S'subsystem_supervisor/1' -p97092 -S'subsystem_supervisor(${1:SystemSup}) $2' -p97093 -tp97094 -a(S'system_supervisor/2' -p97095 -S'system_supervisor(${1:Address}, ${2:Port}) $3' -p97096 -tp97097 -asS'wxPrintout' -p97098 -(lp97099 -(S'destroy/1' -p97100 -S'destroy(${1:This}) $2' -p97101 -tp97102 -a(S'fitThisSizeToPage/2' -p97103 -S'fitThisSizeToPage(${1:This}, ${2:ImageSize}) $3' -p97104 -tp97105 -a(S'fitThisSizeToPageMargins/3' -p97106 -S'fitThisSizeToPageMargins(${1:This}, ${2:ImageSize}, ${3:PageSetupData}) $4' -p97107 -tp97108 -a(S'fitThisSizeToPaper/2' -p97109 -S'fitThisSizeToPaper(${1:This}, ${2:ImageSize}) $3' -p97110 -tp97111 -a(S'getDC/1' -p97112 -S'getDC(${1:This}) $2' -p97113 -tp97114 -a(S'getLogicalPageMarginsRect/2' -p97115 -S'getLogicalPageMarginsRect(${1:This}, ${2:PageSetupData}) $3' -p97116 -tp97117 -a(S'getLogicalPageRect/1' -p97118 -S'getLogicalPageRect(${1:This}) $2' -p97119 -tp97120 -a(S'getLogicalPaperRect/1' -p97121 -S'getLogicalPaperRect(${1:This}) $2' -p97122 -tp97123 -a(S'getPPIPrinter/1' -p97124 -S'getPPIPrinter(${1:This}) $2' -p97125 -tp97126 -a(S'getPPIScreen/1' -p97127 -S'getPPIScreen(${1:This}) $2' -p97128 -tp97129 -a(S'getPageSizeMM/1' -p97130 -S'getPageSizeMM(${1:This}) $2' -p97131 -tp97132 -a(S'getPageSizePixels/1' -p97133 -S'getPageSizePixels(${1:This}) $2' -p97134 -tp97135 -a(S'getPaperRectPixels/1' -p97136 -S'getPaperRectPixels(${1:This}) $2' -p97137 -tp97138 -a(S'getTitle/1' -p97139 -S'getTitle(${1:This}) $2' -p97140 -tp97141 -a(S'isPreview/1' -p97142 -S'isPreview(${1:This}) $2' -p97143 -tp97144 -a(S'mapScreenSizeToDevice/1' -p97145 -S'mapScreenSizeToDevice(${1:This}) $2' -p97146 -tp97147 -a(S'mapScreenSizeToPage/1' -p97148 -S'mapScreenSizeToPage(${1:This}) $2' -p97149 -tp97150 -a(S'mapScreenSizeToPageMargins/2' -p97151 -S'mapScreenSizeToPageMargins(${1:This}, ${2:PageSetupData}) $3' -p97152 -tp97153 -a(S'mapScreenSizeToPaper/1' -p97154 -S'mapScreenSizeToPaper(${1:This}) $2' -p97155 -tp97156 -a(S'new/2' -p97157 -S'new(${1:Title}, ${2:OnPrintPage}) $3' -p97158 -tp97159 -a(S'new/3' -p97160 -S'new(${1:Title}, ${2:OnPrintPage}, ${3:Opts}) $4' -p97161 -tp97162 -a(S'offsetLogicalOrigin/3' -p97163 -S'offsetLogicalOrigin(${1:This}, ${2:Xoff}, ${3:Yoff}) $4' -p97164 -tp97165 -a(S'parent_class/1' -p97166 -S'parent_class(${1:Param1}) $2' -p97167 -tp97168 -a(S'setLogicalOrigin/3' -p97169 -S'setLogicalOrigin(${1:This}, ${2:X}, ${3:Y}) $4' -p97170 -tp97171 -asS'CosFileTransfer_Directory' -p97172 -(lp97173 -(S"'_get_associated_session'/1" -p97174 -S"'_get_associated_session'(${1:OE_THIS}) $2" -p97175 -tp97176 -a(S"'_get_associated_session'/2" -p97177 -S"'_get_associated_session'(${1:OE_THIS}, ${2:OE_Options}) $3" -p97178 -tp97179 -a(S"'_get_complete_file_name'/1" -p97180 -S"'_get_complete_file_name'(${1:OE_THIS}) $2" -p97181 -tp97182 -a(S"'_get_complete_file_name'/2" -p97183 -S"'_get_complete_file_name'(${1:OE_THIS}, ${2:OE_Options}) $3" -p97184 -tp97185 -a(S"'_get_name'/1" -p97186 -S"'_get_name'(${1:OE_THIS}) $2" -p97187 -tp97188 -a(S"'_get_name'/2" -p97189 -S"'_get_name'(${1:OE_THIS}, ${2:OE_Options}) $3" -p97190 -tp97191 -a(S"'_get_parent'/1" -p97192 -S"'_get_parent'(${1:OE_THIS}) $2" -p97193 -tp97194 -a(S"'_get_parent'/2" -p97195 -S"'_get_parent'(${1:OE_THIS}, ${2:OE_Options}) $3" -p97196 -tp97197 -a(S'code_change/3' -p97198 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p97199 -tp97200 -a(S'define_properties/2' -p97201 -S'define_properties(${1:OE_THIS}, ${2:Nproperties}) $3' -p97202 -tp97203 -a(S'define_properties/3' -p97204 -S'define_properties(${1:OE_THIS}, ${2:OE_Options}, ${3:Nproperties}) $4' -p97205 -tp97206 -a(S'define_properties_with_modes/2' -p97207 -S'define_properties_with_modes(${1:OE_THIS}, ${2:Property_defs}) $3' -p97208 -tp97209 -a(S'define_properties_with_modes/3' -p97210 -S'define_properties_with_modes(${1:OE_THIS}, ${2:OE_Options}, ${3:Property_defs}) $4' -p97211 -tp97212 -a(S'define_property/3' -p97213 -S'define_property(${1:OE_THIS}, ${2:Property_name}, ${3:Property_value}) $4' -p97214 -tp97215 -a(S'define_property/4' -p97216 -S'define_property(${1:OE_THIS}, ${2:OE_Options}, ${3:Property_name}, ${4:Property_value}) $5' -p97217 -tp97218 -a(S'define_property_with_mode/4' -p97219 -S'define_property_with_mode(${1:OE_THIS}, ${2:Property_name}, ${3:Property_value}, ${4:Property_mode}) $5' -p97220 -tp97221 -a(S'define_property_with_mode/5' -p97222 -S'define_property_with_mode(${1:OE_THIS}, ${2:OE_Options}, ${3:Property_name}, ${4:Property_value}, ${5:Property_mode}) $6' -p97223 -tp97224 -a(S'delete_all_properties/1' -p97225 -S'delete_all_properties(${1:OE_THIS}) $2' -p97226 -tp97227 -a(S'delete_all_properties/2' -p97228 -S'delete_all_properties(${1:OE_THIS}, ${2:OE_Options}) $3' -p97229 -tp97230 -a(S'delete_properties/2' -p97231 -S'delete_properties(${1:OE_THIS}, ${2:Property_names}) $3' -p97232 -tp97233 -a(S'delete_properties/3' -p97234 -S'delete_properties(${1:OE_THIS}, ${2:OE_Options}, ${3:Property_names}) $4' -p97235 -tp97236 -a(S'delete_property/2' -p97237 -S'delete_property(${1:OE_THIS}, ${2:Property_name}) $3' -p97238 -tp97239 -a(S'delete_property/3' -p97240 -S'delete_property(${1:OE_THIS}, ${2:OE_Options}, ${3:Property_name}) $4' -p97241 -tp97242 -a(S'get_all_properties/2' -p97243 -S'get_all_properties(${1:OE_THIS}, ${2:How_many}) $3' -p97244 -tp97245 -a(S'get_all_properties/3' -p97246 -S'get_all_properties(${1:OE_THIS}, ${2:OE_Options}, ${3:How_many}) $4' -p97247 -tp97248 -a(S'get_all_property_names/2' -p97249 -S'get_all_property_names(${1:OE_THIS}, ${2:How_many}) $3' -p97250 -tp97251 -a(S'get_all_property_names/3' -p97252 -S'get_all_property_names(${1:OE_THIS}, ${2:OE_Options}, ${3:How_many}) $4' -p97253 -tp97254 -a(S'get_allowed_properties/1' -p97255 -S'get_allowed_properties(${1:OE_THIS}) $2' -p97256 -tp97257 -a(S'get_allowed_properties/2' -p97258 -S'get_allowed_properties(${1:OE_THIS}, ${2:OE_Options}) $3' -p97259 -tp97260 -a(S'get_allowed_property_types/1' -p97261 -S'get_allowed_property_types(${1:OE_THIS}) $2' -p97262 -tp97263 -a(S'get_allowed_property_types/2' -p97264 -S'get_allowed_property_types(${1:OE_THIS}, ${2:OE_Options}) $3' -p97265 -tp97266 -a(S'get_number_of_properties/1' -p97267 -S'get_number_of_properties(${1:OE_THIS}) $2' -p97268 -tp97269 -a(S'get_number_of_properties/2' -p97270 -S'get_number_of_properties(${1:OE_THIS}, ${2:OE_Options}) $3' -p97271 -tp97272 -a(S'get_properties/2' -p97273 -S'get_properties(${1:OE_THIS}, ${2:Property_names}) $3' -p97274 -tp97275 -a(S'get_properties/3' -p97276 -S'get_properties(${1:OE_THIS}, ${2:OE_Options}, ${3:Property_names}) $4' -p97277 -tp97278 -a(S'get_property_mode/2' -p97279 -S'get_property_mode(${1:OE_THIS}, ${2:Property_name}) $3' -p97280 -tp97281 -a(S'get_property_mode/3' -p97282 -S'get_property_mode(${1:OE_THIS}, ${2:OE_Options}, ${3:Property_name}) $4' -p97283 -tp97284 -a(S'get_property_modes/2' -p97285 -S'get_property_modes(${1:OE_THIS}, ${2:Property_names}) $3' -p97286 -tp97287 -a(S'get_property_modes/3' -p97288 -S'get_property_modes(${1:OE_THIS}, ${2:OE_Options}, ${3:Property_names}) $4' -p97289 -tp97290 -a(S'get_property_value/2' -p97291 -S'get_property_value(${1:OE_THIS}, ${2:Property_name}) $3' -p97292 -tp97293 -a(S'get_property_value/3' -p97294 -S'get_property_value(${1:OE_THIS}, ${2:OE_Options}, ${3:Property_name}) $4' -p97295 -tp97296 -a(S'handle_call/3' -p97297 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p97298 -tp97299 -a(S'handle_cast/2' -p97300 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p97301 -tp97302 -a(S'handle_info/2' -p97303 -S'handle_info(${1:Info}, ${2:State}) $3' -p97304 -tp97305 -a(S'init/1' -p97306 -S'init(${1:Env}) $2' -p97307 -tp97308 -a(S'is_property_defined/2' -p97309 -S'is_property_defined(${1:OE_THIS}, ${2:Property_name}) $3' -p97310 -tp97311 -a(S'is_property_defined/3' -p97312 -S'is_property_defined(${1:OE_THIS}, ${2:OE_Options}, ${3:Property_name}) $4' -p97313 -tp97314 -a(S'list/2' -p97315 -S'list(${1:OE_THIS}, ${2:How_many}) $3' -p97316 -tp97317 -a(S'list/3' -p97318 -S'list(${1:OE_THIS}, ${2:OE_Options}, ${3:How_many}) $4' -p97319 -tp97320 -a(S'oe_create/0' -p97321 -S'oe_create() $1' -p97322 -tp97323 -a(S'oe_create/1' -p97324 -S'oe_create(${1:Env}) $2' -p97325 -tp97326 -a(S'oe_create/2' -p97327 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p97328 -tp97329 -a(S'oe_create_link/0' -p97330 -S'oe_create_link() $1' -p97331 -tp97332 -a(S'oe_create_link/1' -p97333 -S'oe_create_link(${1:Env}) $2' -p97334 -tp97335 -a(S'oe_create_link/2' -p97336 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p97337 -tp97338 -a(S'oe_get_interface/0' -p97339 -S'oe_get_interface() $1' -p97340 -tp97341 -a(S'oe_is_a/1' -p97342 -S'oe_is_a(${1:Param1}) $2' -p97343 -tp97344 -a(S'oe_tc/1' -p97345 -S'oe_tc(${1:Param1}) $2' -p97346 -tp97347 -a(S'set_property_mode/3' -p97348 -S'set_property_mode(${1:OE_THIS}, ${2:Property_name}, ${3:Property_mode}) $4' -p97349 -tp97350 -a(S'set_property_mode/4' -p97351 -S'set_property_mode(${1:OE_THIS}, ${2:OE_Options}, ${3:Property_name}, ${4:Property_mode}) $5' -p97352 -tp97353 -a(S'set_property_modes/2' -p97354 -S'set_property_modes(${1:OE_THIS}, ${2:Property_modes}) $3' -p97355 -tp97356 -a(S'set_property_modes/3' -p97357 -S'set_property_modes(${1:OE_THIS}, ${2:OE_Options}, ${3:Property_modes}) $4' -p97358 -tp97359 -a(S'terminate/2' -p97360 -S'terminate(${1:Reason}, ${2:State}) $3' -p97361 -tp97362 -a(S'typeID/0' -p97363 -S'typeID() $1' -p97364 -tp97365 -asS'CosEventChannelAdmin_ProxyPushConsumer_impl' -p97366 -(lp97367 -(S'code_change/3' -p97368 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p97369 -tp97370 -a(S'connect_push_supplier/3' -p97371 -S'connect_push_supplier(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p97372 -tp97373 -a(S'disconnect_push_consumer/2' -p97374 -S'disconnect_push_consumer(${1:Param1}, ${2:State}) $3' -p97375 -tp97376 -a(S'handle_info/2' -p97377 -S'handle_info(${1:Param1}, ${2:State}) $3' -p97378 -tp97379 -a(S'init/1' -p97380 -S'init(${1:Param1}) $2' -p97381 -tp97382 -a(S'push/3' -p97383 -S'push(${1:Param1}, ${2:State}, ${3:Any}) $4' -p97384 -tp97385 -a(S'terminate/2' -p97386 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p97387 -tp97388 -asS'ssl_session' -p97389 -(lp97390 -(S'id/4' -p97391 -S'id(${1:ClientInfo}, ${2:Cache}, ${3:CacheCb}, ${4:OwnCert}) $5' -p97392 -tp97393 -a(S'id/7' -p97394 -S'id(${1:Port}, ${2:Param2}, ${3:Param3}, ${4:Cache}, ${5:CacheCb}, ${6:Param6}, ${7:Param7}) $8' -p97395 -tp97396 -a(S'is_new/2' -p97397 -S'is_new(${1:SessionId}, ${2:SessionId}) $3' -p97398 -tp97399 -a(S'valid_session/2' -p97400 -S'valid_session(${1:Param1}, ${2:LifeTime}) $3' -p97401 -tp97402 -asS'orber_iiop_tracer' -p97403 -(lp97404 -(S'closed_in_connection/1' -p97405 -S'closed_in_connection(${1:Arg}) $2' -p97406 -tp97407 -a(S'closed_out_connection/1' -p97408 -S'closed_out_connection(${1:Arg}) $2' -p97409 -tp97410 -a(S'in_reply/6' -p97411 -S'in_reply(${1:Ref}, ${2:Param2}, ${3:Ctx}, ${4:Op}, ${5:Reply}, ${6:Args}) $7' -p97412 -tp97413 -a(S'in_reply_encoded/6' -p97414 -S'in_reply_encoded(${1:Ref}, ${2:Param2}, ${3:Ctx}, ${4:Op}, ${5:Bin}, ${6:Args}) $7' -p97415 -tp97416 -a(S'in_request/6' -p97417 -S'in_request(${1:Ref}, ${2:ObjKey}, ${3:Ctx}, ${4:Op}, ${5:Params}, ${6:Args}) $7' -p97418 -tp97419 -a(S'in_request_encoded/6' -p97420 -S'in_request_encoded(${1:Ref}, ${2:Param2}, ${3:Ctx}, ${4:Op}, ${5:Bin}, ${6:Args}) $7' -p97421 -tp97422 -a(S'new_in_connection/5' -p97423 -S'new_in_connection(${1:Param1}, ${2:PHost}, ${3:PPort}, ${4:SHost}, ${5:SPort}) $6' -p97424 -tp97425 -a(S'new_out_connection/5' -p97426 -S'new_out_connection(${1:Param1}, ${2:PHost}, ${3:PPort}, ${4:SHost}, ${5:SPort}) $6' -p97427 -tp97428 -a(S'out_reply/6' -p97429 -S'out_reply(${1:Ref}, ${2:ObjKey}, ${3:Ctx}, ${4:Op}, ${5:Reply}, ${6:Args}) $7' -p97430 -tp97431 -a(S'out_reply_encoded/6' -p97432 -S'out_reply_encoded(${1:Ref}, ${2:ObjKey}, ${3:Ctx}, ${4:Op}, ${5:Bin}, ${6:Args}) $7' -p97433 -tp97434 -a(S'out_request/6' -p97435 -S'out_request(${1:Ref}, ${2:Param2}, ${3:Ctx}, ${4:Op}, ${5:Params}, ${6:Args}) $7' -p97436 -tp97437 -a(S'out_request_encoded/6' -p97438 -S'out_request_encoded(${1:Ref}, ${2:Param2}, ${3:Ctx}, ${4:Op}, ${5:Bin}, ${6:Args}) $7' -p97439 -tp97440 -asS'etop_txt' -p97441 -(lp97442 -(S'do_update/3' -p97443 -S'do_update(${1:Fd}, ${2:Info}, ${3:Config}) $4' -p97444 -tp97445 -a(S'init/1' -p97446 -S'init(${1:Config}) $2' -p97447 -tp97448 -a(S'stop/1' -p97449 -S'stop(${1:Pid}) $2' -p97450 -tp97451 -asS'megaco_ber_encoder' -p97452 -(lp97453 -(S'decode_message/2' -p97454 -S'decode_message(${1:EC}, ${2:Binary}) $3' -p97455 -tp97456 -a(S'decode_message/3' -p97457 -S'decode_message(${1:EC}, ${2:Param2}, ${3:Binary}) $4' -p97458 -tp97459 -a(S'decode_mini_message/3' -p97460 -S'decode_mini_message(${1:EC}, ${2:Param2}, ${3:Bin}) $4' -p97461 -tp97462 -a(S'encode_action_reply/3' -p97463 -S'encode_action_reply(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p97464 -tp97465 -a(S'encode_action_request/3' -p97466 -S'encode_action_request(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p97467 -tp97468 -a(S'encode_action_requests/3' -p97469 -S'encode_action_requests(${1:Param1}, ${2:Param2}, ${3:ActReqs}) $4' -p97470 -tp97471 -a(S'encode_message/2' -p97472 -S'encode_message() $1' -p97473 -tp97474 -a(S'encode_message/3' -p97475 -S'encode_message(${1:EC}, ${2:Param2}, ${3:MegaMsg}) $4' -p97476 -tp97477 -a(S'encode_transaction/3' -p97478 -S'encode_transaction(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p97479 -tp97480 -a(S'version_of/2' -p97481 -S'version_of(${1:EC}, ${2:Binary}) $3' -p97482 -tp97483 -asS'diameter_peer' -p97484 -(lp97485 -(S'abort/1' -p97486 -S'abort(${1:Pid}) $2' -p97487 -tp97488 -a(S'close/1' -p97489 -S'close(${1:Pid}) $2' -p97490 -tp97491 -a(S'code_change/3' -p97492 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p97493 -tp97494 -a(S'handle_call/3' -p97495 -S'handle_call(${1:Req}, ${2:From}, ${3:State}) $4' -p97496 -tp97497 -a(S'handle_cast/2' -p97498 -S'handle_cast(${1:Msg}, ${2:State}) $3' -p97499 -tp97500 -a(S'handle_info/2' -p97501 -S'handle_info(${1:Info}, ${2:S}) $3' -p97502 -tp97503 -a(S'init/1' -p97504 -S'init(${1:Param1}) $2' -p97505 -tp97506 -a(S'notify/2' -p97507 -S'notify(${1:SvcName}, ${2:T}) $3' -p97508 -tp97509 -a(S'recv/2' -p97510 -S'recv(${1:Pid}, ${2:Pkt}) $3' -p97511 -tp97512 -a(S'send/2' -p97513 -S'send(${1:Pid}, ${2:Pkt}) $3' -p97514 -tp97515 -a(S'start/3' -p97516 -S'start(${1:T}, ${2:Opts}, ${3:Svc}) $4' -p97517 -tp97518 -a(S'start_link/0' -p97519 -S'start_link() $1' -p97520 -tp97521 -a(S'state/0' -p97522 -S'state() $1' -p97523 -tp97524 -a(S'terminate/2' -p97525 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p97526 -tp97527 -a(S'up/1' -p97528 -S'up(${1:Pid}) $2' -p97529 -tp97530 -a(S'up/2' -p97531 -S'up(${1:Pid}, ${2:Remote}) $3' -p97532 -tp97533 -a(S'uptime/0' -p97534 -S'uptime() $1' -p97535 -tp97536 -asS'snmpa_error_logger' -p97537 -(lp97538 -(S'config_err/2' -p97539 -S'config_err(${1:F}, ${2:A}) $3' -p97540 -tp97541 -a(S'user_err/2' -p97542 -S'user_err(${1:F}, ${2:A}) $3' -p97543 -tp97544 -asS'CosNotifyChannelAdmin_SequenceProxyPullConsumer' -p97545 -(lp97546 -(S"'_get_MyAdmin'/1" -p97547 -S"'_get_MyAdmin'(${1:OE_THIS}) $2" -p97548 -tp97549 -a(S"'_get_MyAdmin'/2" -p97550 -S"'_get_MyAdmin'(${1:OE_THIS}, ${2:OE_Options}) $3" -p97551 -tp97552 -a(S"'_get_MyType'/1" -p97553 -S"'_get_MyType'(${1:OE_THIS}) $2" -p97554 -tp97555 -a(S"'_get_MyType'/2" -p97556 -S"'_get_MyType'(${1:OE_THIS}, ${2:OE_Options}) $3" -p97557 -tp97558 -a(S'add_filter/2' -p97559 -S'add_filter(${1:OE_THIS}, ${2:New_filter}) $3' -p97560 -tp97561 -a(S'add_filter/3' -p97562 -S'add_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:New_filter}) $4' -p97563 -tp97564 -a(S'code_change/3' -p97565 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p97566 -tp97567 -a(S'connect_sequence_pull_supplier/2' -p97568 -S'connect_sequence_pull_supplier(${1:OE_THIS}, ${2:Pull_supplier}) $3' -p97569 -tp97570 -a(S'connect_sequence_pull_supplier/3' -p97571 -S'connect_sequence_pull_supplier(${1:OE_THIS}, ${2:OE_Options}, ${3:Pull_supplier}) $4' -p97572 -tp97573 -a(S'disconnect_sequence_pull_consumer/1' -p97574 -S'disconnect_sequence_pull_consumer(${1:OE_THIS}) $2' -p97575 -tp97576 -a(S'disconnect_sequence_pull_consumer/2' -p97577 -S'disconnect_sequence_pull_consumer(${1:OE_THIS}, ${2:OE_Options}) $3' -p97578 -tp97579 -a(S'get_all_filters/1' -p97580 -S'get_all_filters(${1:OE_THIS}) $2' -p97581 -tp97582 -a(S'get_all_filters/2' -p97583 -S'get_all_filters(${1:OE_THIS}, ${2:OE_Options}) $3' -p97584 -tp97585 -a(S'get_filter/2' -p97586 -S'get_filter(${1:OE_THIS}, ${2:Filter}) $3' -p97587 -tp97588 -a(S'get_filter/3' -p97589 -S'get_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:Filter}) $4' -p97590 -tp97591 -a(S'get_qos/1' -p97592 -S'get_qos(${1:OE_THIS}) $2' -p97593 -tp97594 -a(S'get_qos/2' -p97595 -S'get_qos(${1:OE_THIS}, ${2:OE_Options}) $3' -p97596 -tp97597 -a(S'handle_call/3' -p97598 -S'handle_call(${1:Param1}, ${2:OE_From}, ${3:OE_State}) $4' -p97599 -tp97600 -a(S'handle_cast/2' -p97601 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p97602 -tp97603 -a(S'handle_info/2' -p97604 -S'handle_info(${1:Info}, ${2:State}) $3' -p97605 -tp97606 -a(S'init/1' -p97607 -S'init(${1:Env}) $2' -p97608 -tp97609 -a(S'obtain_subscription_types/2' -p97610 -S'obtain_subscription_types(${1:OE_THIS}, ${2:Mode}) $3' -p97611 -tp97612 -a(S'obtain_subscription_types/3' -p97613 -S'obtain_subscription_types(${1:OE_THIS}, ${2:OE_Options}, ${3:Mode}) $4' -p97614 -tp97615 -a(S'oe_create/0' -p97616 -S'oe_create() $1' -p97617 -tp97618 -a(S'oe_create/1' -p97619 -S'oe_create(${1:Env}) $2' -p97620 -tp97621 -a(S'oe_create/2' -p97622 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p97623 -tp97624 -a(S'oe_create_link/0' -p97625 -S'oe_create_link() $1' -p97626 -tp97627 -a(S'oe_create_link/1' -p97628 -S'oe_create_link(${1:Env}) $2' -p97629 -tp97630 -a(S'oe_create_link/2' -p97631 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p97632 -tp97633 -a(S'oe_get_interface/0' -p97634 -S'oe_get_interface() $1' -p97635 -tp97636 -a(S'oe_is_a/1' -p97637 -S'oe_is_a(${1:Param1}) $2' -p97638 -tp97639 -a(S'oe_tc/1' -p97640 -S'oe_tc(${1:Param1}) $2' -p97641 -tp97642 -a(S'offer_change/3' -p97643 -S'offer_change(${1:OE_THIS}, ${2:Added}, ${3:Removed}) $4' -p97644 -tp97645 -a(S'offer_change/4' -p97646 -S'offer_change(${1:OE_THIS}, ${2:OE_Options}, ${3:Added}, ${4:Removed}) $5' -p97647 -tp97648 -a(S'remove_all_filters/1' -p97649 -S'remove_all_filters(${1:OE_THIS}) $2' -p97650 -tp97651 -a(S'remove_all_filters/2' -p97652 -S'remove_all_filters(${1:OE_THIS}, ${2:OE_Options}) $3' -p97653 -tp97654 -a(S'remove_filter/2' -p97655 -S'remove_filter(${1:OE_THIS}, ${2:Filter}) $3' -p97656 -tp97657 -a(S'remove_filter/3' -p97658 -S'remove_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:Filter}) $4' -p97659 -tp97660 -a(S'resume_connection/1' -p97661 -S'resume_connection(${1:OE_THIS}) $2' -p97662 -tp97663 -a(S'resume_connection/2' -p97664 -S'resume_connection(${1:OE_THIS}, ${2:OE_Options}) $3' -p97665 -tp97666 -a(S'set_qos/2' -p97667 -S'set_qos(${1:OE_THIS}, ${2:Qos}) $3' -p97668 -tp97669 -a(S'set_qos/3' -p97670 -S'set_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Qos}) $4' -p97671 -tp97672 -a(S'suspend_connection/1' -p97673 -S'suspend_connection(${1:OE_THIS}) $2' -p97674 -tp97675 -a(S'suspend_connection/2' -p97676 -S'suspend_connection(${1:OE_THIS}, ${2:OE_Options}) $3' -p97677 -tp97678 -a(S'terminate/2' -p97679 -S'terminate(${1:Reason}, ${2:State}) $3' -p97680 -tp97681 -a(S'typeID/0' -p97682 -S'typeID() $1' -p97683 -tp97684 -a(S'validate_event_qos/2' -p97685 -S'validate_event_qos(${1:OE_THIS}, ${2:Required_qos}) $3' -p97686 -tp97687 -a(S'validate_event_qos/3' -p97688 -S'validate_event_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Required_qos}) $4' -p97689 -tp97690 -a(S'validate_qos/2' -p97691 -S'validate_qos(${1:OE_THIS}, ${2:Required_qos}) $3' -p97692 -tp97693 -a(S'validate_qos/3' -p97694 -S'validate_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Required_qos}) $4' -p97695 -tp97696 -asS'sys' -p97697 -(lp97698 -(S'change_code/4' -p97699 -S'change_code(${1:Name}, ${2:Module}, ${3:OldVsn}, ${4:Extra}) $5' -p97700 -tp97701 -a(S'change_code/5' -p97702 -S'change_code(${1:Name}, ${2:Module}, ${3:OldVsn}, ${4:Extra}, ${5:Timeout}) $6' -p97703 -tp97704 -a(S'debug_options/1' -p97705 -S'debug_options(${1:Options}) $2' -p97706 -tp97707 -a(S'get_debug/3' -p97708 -S'get_debug(${1:Item}, ${2:Debug}, ${3:Default}) $4' -p97709 -tp97710 -a(S'get_status/1' -p97711 -S'get_status(${1:Name}) $2' -p97712 -tp97713 -a(S'get_status/2' -p97714 -S'get_status(${1:Name}, ${2:Timeout}) $3' -p97715 -tp97716 -a(S'handle_debug/4' -p97717 -S'handle_debug(${1:Debug}, ${2:FormFunc}, ${3:Extra}, ${4:Event}) $5' -p97718 -tp97719 -a(S'handle_system_msg/6' -p97720 -S'handle_system_msg(${1:Msg}, ${2:From}, ${3:Parent}, ${4:Module}, ${5:Debug}, ${6:Misc}) $7' -p97721 -tp97722 -a(S'handle_system_msg/7' -p97723 -S'handle_system_msg(${1:Msg}, ${2:From}, ${3:Parent}, ${4:Mod}, ${5:Debug}, ${6:Misc}, ${7:Hib}) $8' -p97724 -tp97725 -a(S'install/2' -p97726 -S'install(${1:Name}, ${2:FuncSpec}) $3' -p97727 -tp97728 -a(S'install/3' -p97729 -S'install(${1:Name}, ${2:FuncSpec}, ${3:Timeout}) $4' -p97730 -tp97731 -a(S'log/2' -p97732 -S'log(${1:Name}, ${2:Flag}) $3' -p97733 -tp97734 -a(S'log/3' -p97735 -S'log(${1:Name}, ${2:Flag}, ${3:Timeout}) $4' -p97736 -tp97737 -a(S'log_to_file/2' -p97738 -S'log_to_file(${1:Name}, ${2:Flag}) $3' -p97739 -tp97740 -a(S'log_to_file/3' -p97741 -S'log_to_file(${1:Name}, ${2:Flag}, ${3:Timeout}) $4' -p97742 -tp97743 -a(S'no_debug/1' -p97744 -S'no_debug(${1:Name}) $2' -p97745 -tp97746 -a(S'no_debug/2' -p97747 -S'no_debug(${1:Name}, ${2:Timeout}) $3' -p97748 -tp97749 -a(S'print_log/1' -p97750 -S'print_log(${1:Debug}) $2' -p97751 -tp97752 -a(S'remove/2' -p97753 -S'remove(${1:Name}, ${2:Func}) $3' -p97754 -tp97755 -a(S'remove/3' -p97756 -S'remove(${1:Name}, ${2:Func}, ${3:Timeout}) $4' -p97757 -tp97758 -a(S'resume/1' -p97759 -S'resume(${1:Name}) $2' -p97760 -tp97761 -a(S'resume/2' -p97762 -S'resume(${1:Name}, ${2:Timeout}) $3' -p97763 -tp97764 -a(S'statistics/2' -p97765 -S'statistics(${1:Name}, ${2:Flag}) $3' -p97766 -tp97767 -a(S'statistics/3' -p97768 -S'statistics(${1:Name}, ${2:Flag}, ${3:Timeout}) $4' -p97769 -tp97770 -a(S'suspend/1' -p97771 -S'suspend(${1:Name}) $2' -p97772 -tp97773 -a(S'suspend/2' -p97774 -S'suspend(${1:Name}, ${2:Timeout}) $3' -p97775 -tp97776 -a(S'suspend_loop_hib/6' -p97777 -S'suspend_loop_hib(${1:SysState}, ${2:Parent}, ${3:Mod}, ${4:Debug}, ${5:Misc}, ${6:Hib}) $7' -p97778 -tp97779 -a(S'trace/2' -p97780 -S'trace(${1:Name}, ${2:Flag}) $3' -p97781 -tp97782 -a(S'trace/3' -p97783 -S'trace(${1:Name}, ${2:Flag}, ${3:Timeout}) $4' -p97784 -tp97785 -asS'xref' -p97786 -(lp97787 -(S'add_application/2' -p97788 -S'add_application(${1:Name}, ${2:Dir}) $3' -p97789 -tp97790 -a(S'add_application/3' -p97791 -S'add_application(${1:Name}, ${2:Dir}, ${3:Options}) $4' -p97792 -tp97793 -a(S'add_directory/2' -p97794 -S'add_directory(${1:Name}, ${2:Dir}) $3' -p97795 -tp97796 -a(S'add_directory/3' -p97797 -S'add_directory(${1:Name}, ${2:Dir}, ${3:Options}) $4' -p97798 -tp97799 -a(S'add_module/2' -p97800 -S'add_module(${1:Name}, ${2:File}) $3' -p97801 -tp97802 -a(S'add_module/3' -p97803 -S'add_module(${1:Name}, ${2:File}, ${3:Options}) $4' -p97804 -tp97805 -a(S'add_release/2' -p97806 -S'add_release(${1:Name}, ${2:Dir}) $3' -p97807 -tp97808 -a(S'add_release/3' -p97809 -S'add_release(${1:Name}, ${2:Dir}, ${3:Options}) $4' -p97810 -tp97811 -a(S'analyse/2' -p97812 -S'analyse(${1:Name}, ${2:What}) $3' -p97813 -tp97814 -a(S'analyse/3' -p97815 -S'analyse(${1:Name}, ${2:What}, ${3:Options}) $4' -p97816 -tp97817 -a(S'analyze/2' -p97818 -S'analyze(${1:Name}, ${2:What}) $3' -p97819 -tp97820 -a(S'analyze/3' -p97821 -S'analyze(${1:Name}, ${2:What}, ${3:Options}) $4' -p97822 -tp97823 -a(S'code_change/3' -p97824 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p97825 -tp97826 -a(S'd/1' -p97827 -S'd(${1:Directory}) $2' -p97828 -tp97829 -a(S'forget/1' -p97830 -S'forget(${1:Name}) $2' -p97831 -tp97832 -a(S'forget/2' -p97833 -S'forget(${1:Name}, ${2:Variable}) $3' -p97834 -tp97835 -a(S'format_error/1' -p97836 -S'format_error(${1:E}) $2' -p97837 -tp97838 -a(S'get_default/1' -p97839 -S'get_default(${1:Name}) $2' -p97840 -tp97841 -a(S'get_default/2' -p97842 -S'get_default(${1:Name}, ${2:Option}) $3' -p97843 -tp97844 -a(S'get_library_path/1' -p97845 -S'get_library_path(${1:Name}) $2' -p97846 -tp97847 -a(S'handle_call/3' -p97848 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p97849 -tp97850 -a(S'handle_cast/2' -p97851 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p97852 -tp97853 -a(S'handle_info/2' -p97854 -S'handle_info(${1:Param1}, ${2:State}) $3' -p97855 -tp97856 -a(S'info/1' -p97857 -S'info(${1:Name}) $2' -p97858 -tp97859 -a(S'info/2' -p97860 -S'info(${1:Name}, ${2:What}) $3' -p97861 -tp97862 -a(S'info/3' -p97863 -S'info(${1:Name}, ${2:What}, ${3:Qual}) $4' -p97864 -tp97865 -a(S'init/1' -p97866 -S'init(${1:Args}) $2' -p97867 -tp97868 -a(S'm/1' -p97869 -S'm(${1:Module}) $2' -p97870 -tp97871 -a(S'q/2' -p97872 -S'q(${1:Name}, ${2:Q}) $3' -p97873 -tp97874 -a(S'q/3' -p97875 -S'q(${1:Name}, ${2:Q}, ${3:Options}) $4' -p97876 -tp97877 -a(S'remove_application/2' -p97878 -S'remove_application(${1:Name}, ${2:App}) $3' -p97879 -tp97880 -a(S'remove_module/2' -p97881 -S'remove_module(${1:Name}, ${2:Mod}) $3' -p97882 -tp97883 -a(S'remove_release/2' -p97884 -S'remove_release(${1:Name}, ${2:Rel}) $3' -p97885 -tp97886 -a(S'replace_application/3' -p97887 -S'replace_application(${1:Name}, ${2:App}, ${3:Dir}) $4' -p97888 -tp97889 -a(S'replace_application/4' -p97890 -S'replace_application(${1:Name}, ${2:App}, ${3:Dir}, ${4:Options}) $5' -p97891 -tp97892 -a(S'replace_module/3' -p97893 -S'replace_module(${1:Name}, ${2:Module}, ${3:File}) $4' -p97894 -tp97895 -a(S'replace_module/4' -p97896 -S'replace_module(${1:Name}, ${2:Module}, ${3:File}, ${4:Options}) $5' -p97897 -tp97898 -a(S'set_default/2' -p97899 -S'set_default(${1:Name}, ${2:OptionValues}) $3' -p97900 -tp97901 -a(S'set_default/3' -p97902 -S'set_default(${1:Name}, ${2:Option}, ${3:Value}) $4' -p97903 -tp97904 -a(S'set_library_path/2' -p97905 -S'set_library_path(${1:Name}, ${2:Path}) $3' -p97906 -tp97907 -a(S'set_library_path/3' -p97908 -S'set_library_path(${1:Name}, ${2:Path}, ${3:Options}) $4' -p97909 -tp97910 -a(S'start/1' -p97911 -S'start(${1:Name}) $2' -p97912 -tp97913 -a(S'start/2' -p97914 -S'start(${1:Name}, ${2:Opts0}) $3' -p97915 -tp97916 -a(S'stop/1' -p97917 -S'stop(${1:Name}) $2' -p97918 -tp97919 -a(S'terminate/2' -p97920 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p97921 -tp97922 -a(S'update/1' -p97923 -S'update(${1:Name}) $2' -p97924 -tp97925 -a(S'update/2' -p97926 -S'update(${1:Name}, ${2:Options}) $3' -p97927 -tp97928 -a(S'variables/1' -p97929 -S'variables(${1:Name}) $2' -p97930 -tp97931 -a(S'variables/2' -p97932 -S'variables(${1:Name}, ${2:Options}) $3' -p97933 -tp97934 -asS'user' -p97935 -(lp97936 -(S'interfaces/1' -p97937 -S'interfaces(${1:User}) $2' -p97938 -tp97939 -a(S'start/0' -p97940 -S'start() $1' -p97941 -tp97942 -a(S'start/1' -p97943 -S'start(${1:Param1}) $2' -p97944 -tp97945 -a(S'start_out/0' -p97946 -S'start_out() $1' -p97947 -tp97948 -asS'wxChildFocusEvent' -p97949 -(lp97950 -(S'getClientData/1' -p97951 -S'getClientData(${1:This}) $2' -p97952 -tp97953 -a(S'getExtraLong/1' -p97954 -S'getExtraLong(${1:This}) $2' -p97955 -tp97956 -a(S'getId/1' -p97957 -S'getId(${1:This}) $2' -p97958 -tp97959 -a(S'getInt/1' -p97960 -S'getInt(${1:This}) $2' -p97961 -tp97962 -a(S'getSelection/1' -p97963 -S'getSelection(${1:This}) $2' -p97964 -tp97965 -a(S'getSkipped/1' -p97966 -S'getSkipped(${1:This}) $2' -p97967 -tp97968 -a(S'getString/1' -p97969 -S'getString(${1:This}) $2' -p97970 -tp97971 -a(S'getTimestamp/1' -p97972 -S'getTimestamp(${1:This}) $2' -p97973 -tp97974 -a(S'getWindow/1' -p97975 -S'getWindow(${1:This}) $2' -p97976 -tp97977 -a(S'isChecked/1' -p97978 -S'isChecked(${1:This}) $2' -p97979 -tp97980 -a(S'isCommandEvent/1' -p97981 -S'isCommandEvent(${1:This}) $2' -p97982 -tp97983 -a(S'isSelection/1' -p97984 -S'isSelection(${1:This}) $2' -p97985 -tp97986 -a(S'parent_class/1' -p97987 -S'parent_class(${1:Param1}) $2' -p97988 -tp97989 -a(S'resumePropagation/2' -p97990 -S'resumePropagation(${1:This}, ${2:PropagationLevel}) $3' -p97991 -tp97992 -a(S'setInt/2' -p97993 -S'setInt(${1:This}, ${2:I}) $3' -p97994 -tp97995 -a(S'setString/2' -p97996 -S'setString(${1:This}, ${2:S}) $3' -p97997 -tp97998 -a(S'shouldPropagate/1' -p97999 -S'shouldPropagate(${1:This}) $2' -p98000 -tp98001 -a(S'skip/1' -p98002 -S'skip(${1:This}) $2' -p98003 -tp98004 -a(S'skip/2' -p98005 -S'skip(${1:This}, ${2:Options}) $3' -p98006 -tp98007 -a(S'stopPropagation/1' -p98008 -S'stopPropagation(${1:This}) $2' -p98009 -tp98010 -asS'wxCloseEvent' -p98011 -(lp98012 -(S'canVeto/1' -p98013 -S'canVeto(${1:This}) $2' -p98014 -tp98015 -a(S'getId/1' -p98016 -S'getId(${1:This}) $2' -p98017 -tp98018 -a(S'getLoggingOff/1' -p98019 -S'getLoggingOff(${1:This}) $2' -p98020 -tp98021 -a(S'getSkipped/1' -p98022 -S'getSkipped(${1:This}) $2' -p98023 -tp98024 -a(S'getTimestamp/1' -p98025 -S'getTimestamp(${1:This}) $2' -p98026 -tp98027 -a(S'isCommandEvent/1' -p98028 -S'isCommandEvent(${1:This}) $2' -p98029 -tp98030 -a(S'parent_class/1' -p98031 -S'parent_class(${1:Param1}) $2' -p98032 -tp98033 -a(S'resumePropagation/2' -p98034 -S'resumePropagation(${1:This}, ${2:PropagationLevel}) $3' -p98035 -tp98036 -a(S'setCanVeto/2' -p98037 -S'setCanVeto(${1:This}, ${2:CanVeto}) $3' -p98038 -tp98039 -a(S'setLoggingOff/2' -p98040 -S'setLoggingOff(${1:This}, ${2:LogOff}) $3' -p98041 -tp98042 -a(S'shouldPropagate/1' -p98043 -S'shouldPropagate(${1:This}) $2' -p98044 -tp98045 -a(S'skip/1' -p98046 -S'skip(${1:This}) $2' -p98047 -tp98048 -a(S'skip/2' -p98049 -S'skip(${1:This}, ${2:Options}) $3' -p98050 -tp98051 -a(S'stopPropagation/1' -p98052 -S'stopPropagation(${1:This}) $2' -p98053 -tp98054 -a(S'veto/1' -p98055 -S'veto(${1:This}) $2' -p98056 -tp98057 -a(S'veto/2' -p98058 -S'veto(${1:This}, ${2:Param2}) $3' -p98059 -tp98060 -asS'megaco_config_misc' -p98061 -(lp98062 -(S'verify_bool/1' -p98063 -S'verify_bool(${1:Param1}) $2' -p98064 -tp98065 -a(S'verify_int/1' -p98066 -S'verify_int(${1:Val}) $2' -p98067 -tp98068 -a(S'verify_int/2' -p98069 -S'verify_int(${1:Int}, ${2:Max}) $3' -p98070 -tp98071 -a(S'verify_int/3' -p98072 -S'verify_int(${1:Val}, ${2:Min}, ${3:Max}) $4' -p98073 -tp98074 -a(S'verify_strict_int/1' -p98075 -S'verify_strict_int(${1:Int}) $2' -p98076 -tp98077 -a(S'verify_strict_int/2' -p98078 -S'verify_strict_int(${1:Int}, ${2:Max}) $3' -p98079 -tp98080 -a(S'verify_strict_int/3' -p98081 -S'verify_strict_int(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p98082 -tp98083 -a(S'verify_strict_uint/1' -p98084 -S'verify_strict_uint(${1:Int}) $2' -p98085 -tp98086 -a(S'verify_strict_uint/2' -p98087 -S'verify_strict_uint(${1:Int}, ${2:Max}) $3' -p98088 -tp98089 -a(S'verify_uint/1' -p98090 -S'verify_uint(${1:Val}) $2' -p98091 -tp98092 -a(S'verify_uint/2' -p98093 -S'verify_uint(${1:Int}, ${2:Max}) $3' -p98094 -tp98095 -asS'erlsrv' -p98096 -(lp98097 -(S'disable_service/1' -p98098 -S'disable_service(${1:ServiceName}) $2' -p98099 -tp98100 -a(S'disable_service/2' -p98101 -S'disable_service(${1:EVer}, ${2:ServiceName}) $3' -p98102 -tp98103 -a(S'enable_service/1' -p98104 -S'enable_service(${1:ServiceName}) $2' -p98105 -tp98106 -a(S'enable_service/2' -p98107 -S'enable_service(${1:EVer}, ${2:ServiceName}) $3' -p98108 -tp98109 -a(S'erlsrv/1' -p98110 -S'erlsrv(${1:EVer}) $2' -p98111 -tp98112 -a(S'get_all_services/0' -p98113 -S'get_all_services() $1' -p98114 -tp98115 -a(S'get_service/1' -p98116 -S'get_service(${1:ServiceName}) $2' -p98117 -tp98118 -a(S'get_service/2' -p98119 -S'get_service(${1:EVer}, ${2:ServiceName}) $3' -p98120 -tp98121 -a(S'new_service/3' -p98122 -S'new_service(${1:NewServiceName}, ${2:OldService}, ${3:Data}) $4' -p98123 -tp98124 -a(S'new_service/4' -p98125 -S'new_service(${1:NewServiceName}, ${2:OldService}, ${3:Data}, ${4:RestartName}) $5' -p98126 -tp98127 -a(S'remove_service/1' -p98128 -S'remove_service(${1:ServiceName}) $2' -p98129 -tp98130 -a(S'rename_service/2' -p98131 -S'rename_service(${1:FromName}, ${2:ToName}) $3' -p98132 -tp98133 -a(S'rename_service/3' -p98134 -S'rename_service(${1:EVer}, ${2:FromName}, ${3:ToName}) $4' -p98135 -tp98136 -a(S'store_service/1' -p98137 -S'store_service(${1:Service}) $2' -p98138 -tp98139 -a(S'store_service/2' -p98140 -S'store_service(${1:EmulatorVersion}, ${2:Service}) $3' -p98141 -tp98142 -asS'CosEventDomainAdmin_EventDomain' -p98143 -(lp98144 -(S'add_channel/2' -p98145 -S'add_channel(${1:OE_THIS}, ${2:Channel}) $3' -p98146 -tp98147 -a(S'add_channel/3' -p98148 -S'add_channel(${1:OE_THIS}, ${2:OE_Options}, ${3:Channel}) $4' -p98149 -tp98150 -a(S'add_connection/2' -p98151 -S'add_connection(${1:OE_THIS}, ${2:Connection}) $3' -p98152 -tp98153 -a(S'add_connection/3' -p98154 -S'add_connection(${1:OE_THIS}, ${2:OE_Options}, ${3:Connection}) $4' -p98155 -tp98156 -a(S'code_change/3' -p98157 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p98158 -tp98159 -a(S'connect_pull_consumer/2' -p98160 -S'connect_pull_consumer(${1:OE_THIS}, ${2:Client}) $3' -p98161 -tp98162 -a(S'connect_pull_consumer/3' -p98163 -S'connect_pull_consumer(${1:OE_THIS}, ${2:OE_Options}, ${3:Client}) $4' -p98164 -tp98165 -a(S'connect_pull_consumer_with_id/3' -p98166 -S'connect_pull_consumer_with_id(${1:OE_THIS}, ${2:Client}, ${3:Channel}) $4' -p98167 -tp98168 -a(S'connect_pull_consumer_with_id/4' -p98169 -S'connect_pull_consumer_with_id(${1:OE_THIS}, ${2:OE_Options}, ${3:Client}, ${4:Channel}) $5' -p98170 -tp98171 -a(S'connect_pull_supplier/2' -p98172 -S'connect_pull_supplier(${1:OE_THIS}, ${2:Client}) $3' -p98173 -tp98174 -a(S'connect_pull_supplier/3' -p98175 -S'connect_pull_supplier(${1:OE_THIS}, ${2:OE_Options}, ${3:Client}) $4' -p98176 -tp98177 -a(S'connect_pull_supplier_with_id/3' -p98178 -S'connect_pull_supplier_with_id(${1:OE_THIS}, ${2:Client}, ${3:Channel}) $4' -p98179 -tp98180 -a(S'connect_pull_supplier_with_id/4' -p98181 -S'connect_pull_supplier_with_id(${1:OE_THIS}, ${2:OE_Options}, ${3:Client}, ${4:Channel}) $5' -p98182 -tp98183 -a(S'connect_push_consumer/2' -p98184 -S'connect_push_consumer(${1:OE_THIS}, ${2:Client}) $3' -p98185 -tp98186 -a(S'connect_push_consumer/3' -p98187 -S'connect_push_consumer(${1:OE_THIS}, ${2:OE_Options}, ${3:Client}) $4' -p98188 -tp98189 -a(S'connect_push_consumer_with_id/3' -p98190 -S'connect_push_consumer_with_id(${1:OE_THIS}, ${2:Client}, ${3:Channel}) $4' -p98191 -tp98192 -a(S'connect_push_consumer_with_id/4' -p98193 -S'connect_push_consumer_with_id(${1:OE_THIS}, ${2:OE_Options}, ${3:Client}, ${4:Channel}) $5' -p98194 -tp98195 -a(S'connect_push_supplier/2' -p98196 -S'connect_push_supplier(${1:OE_THIS}, ${2:Client}) $3' -p98197 -tp98198 -a(S'connect_push_supplier/3' -p98199 -S'connect_push_supplier(${1:OE_THIS}, ${2:OE_Options}, ${3:Client}) $4' -p98200 -tp98201 -a(S'connect_push_supplier_with_id/3' -p98202 -S'connect_push_supplier_with_id(${1:OE_THIS}, ${2:Client}, ${3:Channel}) $4' -p98203 -tp98204 -a(S'connect_push_supplier_with_id/4' -p98205 -S'connect_push_supplier_with_id(${1:OE_THIS}, ${2:OE_Options}, ${3:Client}, ${4:Channel}) $5' -p98206 -tp98207 -a(S'connect_sequence_pull_consumer/2' -p98208 -S'connect_sequence_pull_consumer(${1:OE_THIS}, ${2:Client}) $3' -p98209 -tp98210 -a(S'connect_sequence_pull_consumer/3' -p98211 -S'connect_sequence_pull_consumer(${1:OE_THIS}, ${2:OE_Options}, ${3:Client}) $4' -p98212 -tp98213 -a(S'connect_sequence_pull_consumer_with_id/3' -p98214 -S'connect_sequence_pull_consumer_with_id(${1:OE_THIS}, ${2:Client}, ${3:Channel}) $4' -p98215 -tp98216 -a(S'connect_sequence_pull_consumer_with_id/4' -p98217 -S'connect_sequence_pull_consumer_with_id(${1:OE_THIS}, ${2:OE_Options}, ${3:Client}, ${4:Channel}) $5' -p98218 -tp98219 -a(S'connect_sequence_pull_supplier/2' -p98220 -S'connect_sequence_pull_supplier(${1:OE_THIS}, ${2:Client}) $3' -p98221 -tp98222 -a(S'connect_sequence_pull_supplier/3' -p98223 -S'connect_sequence_pull_supplier(${1:OE_THIS}, ${2:OE_Options}, ${3:Client}) $4' -p98224 -tp98225 -a(S'connect_sequence_pull_supplier_with_id/3' -p98226 -S'connect_sequence_pull_supplier_with_id(${1:OE_THIS}, ${2:Client}, ${3:Channel}) $4' -p98227 -tp98228 -a(S'connect_sequence_pull_supplier_with_id/4' -p98229 -S'connect_sequence_pull_supplier_with_id(${1:OE_THIS}, ${2:OE_Options}, ${3:Client}, ${4:Channel}) $5' -p98230 -tp98231 -a(S'connect_sequence_push_consumer/2' -p98232 -S'connect_sequence_push_consumer(${1:OE_THIS}, ${2:Client}) $3' -p98233 -tp98234 -a(S'connect_sequence_push_consumer/3' -p98235 -S'connect_sequence_push_consumer(${1:OE_THIS}, ${2:OE_Options}, ${3:Client}) $4' -p98236 -tp98237 -a(S'connect_sequence_push_consumer_with_id/3' -p98238 -S'connect_sequence_push_consumer_with_id(${1:OE_THIS}, ${2:Client}, ${3:Channel}) $4' -p98239 -tp98240 -a(S'connect_sequence_push_consumer_with_id/4' -p98241 -S'connect_sequence_push_consumer_with_id(${1:OE_THIS}, ${2:OE_Options}, ${3:Client}, ${4:Channel}) $5' -p98242 -tp98243 -a(S'connect_sequence_push_supplier/2' -p98244 -S'connect_sequence_push_supplier(${1:OE_THIS}, ${2:Client}) $3' -p98245 -tp98246 -a(S'connect_sequence_push_supplier/3' -p98247 -S'connect_sequence_push_supplier(${1:OE_THIS}, ${2:OE_Options}, ${3:Client}) $4' -p98248 -tp98249 -a(S'connect_sequence_push_supplier_with_id/3' -p98250 -S'connect_sequence_push_supplier_with_id(${1:OE_THIS}, ${2:Client}, ${3:Channel}) $4' -p98251 -tp98252 -a(S'connect_sequence_push_supplier_with_id/4' -p98253 -S'connect_sequence_push_supplier_with_id(${1:OE_THIS}, ${2:OE_Options}, ${3:Client}, ${4:Channel}) $5' -p98254 -tp98255 -a(S'connect_structured_pull_consumer/2' -p98256 -S'connect_structured_pull_consumer(${1:OE_THIS}, ${2:Client}) $3' -p98257 -tp98258 -a(S'connect_structured_pull_consumer/3' -p98259 -S'connect_structured_pull_consumer(${1:OE_THIS}, ${2:OE_Options}, ${3:Client}) $4' -p98260 -tp98261 -a(S'connect_structured_pull_consumer_with_id/3' -p98262 -S'connect_structured_pull_consumer_with_id(${1:OE_THIS}, ${2:Client}, ${3:Channel}) $4' -p98263 -tp98264 -a(S'connect_structured_pull_consumer_with_id/4' -p98265 -S'connect_structured_pull_consumer_with_id(${1:OE_THIS}, ${2:OE_Options}, ${3:Client}, ${4:Channel}) $5' -p98266 -tp98267 -a(S'connect_structured_pull_supplier/2' -p98268 -S'connect_structured_pull_supplier(${1:OE_THIS}, ${2:Client}) $3' -p98269 -tp98270 -a(S'connect_structured_pull_supplier/3' -p98271 -S'connect_structured_pull_supplier(${1:OE_THIS}, ${2:OE_Options}, ${3:Client}) $4' -p98272 -tp98273 -a(S'connect_structured_pull_supplier_with_id/3' -p98274 -S'connect_structured_pull_supplier_with_id(${1:OE_THIS}, ${2:Client}, ${3:Channel}) $4' -p98275 -tp98276 -a(S'connect_structured_pull_supplier_with_id/4' -p98277 -S'connect_structured_pull_supplier_with_id(${1:OE_THIS}, ${2:OE_Options}, ${3:Client}, ${4:Channel}) $5' -p98278 -tp98279 -a(S'connect_structured_push_consumer/2' -p98280 -S'connect_structured_push_consumer(${1:OE_THIS}, ${2:Client}) $3' -p98281 -tp98282 -a(S'connect_structured_push_consumer/3' -p98283 -S'connect_structured_push_consumer(${1:OE_THIS}, ${2:OE_Options}, ${3:Client}) $4' -p98284 -tp98285 -a(S'connect_structured_push_consumer_with_id/3' -p98286 -S'connect_structured_push_consumer_with_id(${1:OE_THIS}, ${2:Client}, ${3:Channel}) $4' -p98287 -tp98288 -a(S'connect_structured_push_consumer_with_id/4' -p98289 -S'connect_structured_push_consumer_with_id(${1:OE_THIS}, ${2:OE_Options}, ${3:Client}, ${4:Channel}) $5' -p98290 -tp98291 -a(S'connect_structured_push_supplier/2' -p98292 -S'connect_structured_push_supplier(${1:OE_THIS}, ${2:Client}) $3' -p98293 -tp98294 -a(S'connect_structured_push_supplier/3' -p98295 -S'connect_structured_push_supplier(${1:OE_THIS}, ${2:OE_Options}, ${3:Client}) $4' -p98296 -tp98297 -a(S'connect_structured_push_supplier_with_id/3' -p98298 -S'connect_structured_push_supplier_with_id(${1:OE_THIS}, ${2:Client}, ${3:Channel}) $4' -p98299 -tp98300 -a(S'connect_structured_push_supplier_with_id/4' -p98301 -S'connect_structured_push_supplier_with_id(${1:OE_THIS}, ${2:OE_Options}, ${3:Client}, ${4:Channel}) $5' -p98302 -tp98303 -a(S'destroy/1' -p98304 -S'destroy(${1:OE_THIS}) $2' -p98305 -tp98306 -a(S'destroy/2' -p98307 -S'destroy(${1:OE_THIS}, ${2:OE_Options}) $3' -p98308 -tp98309 -a(S'get_admin/1' -p98310 -S'get_admin(${1:OE_THIS}) $2' -p98311 -tp98312 -a(S'get_admin/2' -p98313 -S'get_admin(${1:OE_THIS}, ${2:OE_Options}) $3' -p98314 -tp98315 -a(S'get_all_channels/1' -p98316 -S'get_all_channels(${1:OE_THIS}) $2' -p98317 -tp98318 -a(S'get_all_channels/2' -p98319 -S'get_all_channels(${1:OE_THIS}, ${2:OE_Options}) $3' -p98320 -tp98321 -a(S'get_all_connections/1' -p98322 -S'get_all_connections(${1:OE_THIS}) $2' -p98323 -tp98324 -a(S'get_all_connections/2' -p98325 -S'get_all_connections(${1:OE_THIS}, ${2:OE_Options}) $3' -p98326 -tp98327 -a(S'get_channel/2' -p98328 -S'get_channel(${1:OE_THIS}, ${2:Channel}) $3' -p98329 -tp98330 -a(S'get_channel/3' -p98331 -S'get_channel(${1:OE_THIS}, ${2:OE_Options}, ${3:Channel}) $4' -p98332 -tp98333 -a(S'get_connection/2' -p98334 -S'get_connection(${1:OE_THIS}, ${2:Connection}) $3' -p98335 -tp98336 -a(S'get_connection/3' -p98337 -S'get_connection(${1:OE_THIS}, ${2:OE_Options}, ${3:Connection}) $4' -p98338 -tp98339 -a(S'get_cycles/1' -p98340 -S'get_cycles(${1:OE_THIS}) $2' -p98341 -tp98342 -a(S'get_cycles/2' -p98343 -S'get_cycles(${1:OE_THIS}, ${2:OE_Options}) $3' -p98344 -tp98345 -a(S'get_diamonds/1' -p98346 -S'get_diamonds(${1:OE_THIS}) $2' -p98347 -tp98348 -a(S'get_diamonds/2' -p98349 -S'get_diamonds(${1:OE_THIS}, ${2:OE_Options}) $3' -p98350 -tp98351 -a(S'get_offer_channels/2' -p98352 -S'get_offer_channels(${1:OE_THIS}, ${2:Channel}) $3' -p98353 -tp98354 -a(S'get_offer_channels/3' -p98355 -S'get_offer_channels(${1:OE_THIS}, ${2:OE_Options}, ${3:Channel}) $4' -p98356 -tp98357 -a(S'get_qos/1' -p98358 -S'get_qos(${1:OE_THIS}) $2' -p98359 -tp98360 -a(S'get_qos/2' -p98361 -S'get_qos(${1:OE_THIS}, ${2:OE_Options}) $3' -p98362 -tp98363 -a(S'get_subscription_channels/2' -p98364 -S'get_subscription_channels(${1:OE_THIS}, ${2:Channel}) $3' -p98365 -tp98366 -a(S'get_subscription_channels/3' -p98367 -S'get_subscription_channels(${1:OE_THIS}, ${2:OE_Options}, ${3:Channel}) $4' -p98368 -tp98369 -a(S'handle_call/3' -p98370 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p98371 -tp98372 -a(S'handle_cast/2' -p98373 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p98374 -tp98375 -a(S'handle_info/2' -p98376 -S'handle_info(${1:Info}, ${2:State}) $3' -p98377 -tp98378 -a(S'init/1' -p98379 -S'init(${1:Env}) $2' -p98380 -tp98381 -a(S'oe_create/0' -p98382 -S'oe_create() $1' -p98383 -tp98384 -a(S'oe_create/1' -p98385 -S'oe_create(${1:Env}) $2' -p98386 -tp98387 -a(S'oe_create/2' -p98388 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p98389 -tp98390 -a(S'oe_create_link/0' -p98391 -S'oe_create_link() $1' -p98392 -tp98393 -a(S'oe_create_link/1' -p98394 -S'oe_create_link(${1:Env}) $2' -p98395 -tp98396 -a(S'oe_create_link/2' -p98397 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p98398 -tp98399 -a(S'oe_get_interface/0' -p98400 -S'oe_get_interface() $1' -p98401 -tp98402 -a(S'oe_is_a/1' -p98403 -S'oe_is_a(${1:Param1}) $2' -p98404 -tp98405 -a(S'oe_tc/1' -p98406 -S'oe_tc(${1:Param1}) $2' -p98407 -tp98408 -a(S'remove_channel/2' -p98409 -S'remove_channel(${1:OE_THIS}, ${2:Channel}) $3' -p98410 -tp98411 -a(S'remove_channel/3' -p98412 -S'remove_channel(${1:OE_THIS}, ${2:OE_Options}, ${3:Channel}) $4' -p98413 -tp98414 -a(S'remove_connection/2' -p98415 -S'remove_connection(${1:OE_THIS}, ${2:Connection}) $3' -p98416 -tp98417 -a(S'remove_connection/3' -p98418 -S'remove_connection(${1:OE_THIS}, ${2:OE_Options}, ${3:Connection}) $4' -p98419 -tp98420 -a(S'set_admin/2' -p98421 -S'set_admin(${1:OE_THIS}, ${2:Admin}) $3' -p98422 -tp98423 -a(S'set_admin/3' -p98424 -S'set_admin(${1:OE_THIS}, ${2:OE_Options}, ${3:Admin}) $4' -p98425 -tp98426 -a(S'set_default_consumer_channel/2' -p98427 -S'set_default_consumer_channel(${1:OE_THIS}, ${2:Channel}) $3' -p98428 -tp98429 -a(S'set_default_consumer_channel/3' -p98430 -S'set_default_consumer_channel(${1:OE_THIS}, ${2:OE_Options}, ${3:Channel}) $4' -p98431 -tp98432 -a(S'set_default_supplier_channel/2' -p98433 -S'set_default_supplier_channel(${1:OE_THIS}, ${2:Channel}) $3' -p98434 -tp98435 -a(S'set_default_supplier_channel/3' -p98436 -S'set_default_supplier_channel(${1:OE_THIS}, ${2:OE_Options}, ${3:Channel}) $4' -p98437 -tp98438 -a(S'set_qos/2' -p98439 -S'set_qos(${1:OE_THIS}, ${2:Qos}) $3' -p98440 -tp98441 -a(S'set_qos/3' -p98442 -S'set_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Qos}) $4' -p98443 -tp98444 -a(S'terminate/2' -p98445 -S'terminate(${1:Reason}, ${2:State}) $3' -p98446 -tp98447 -a(S'typeID/0' -p98448 -S'typeID() $1' -p98449 -tp98450 -a(S'validate_qos/2' -p98451 -S'validate_qos(${1:OE_THIS}, ${2:Required_qos}) $3' -p98452 -tp98453 -a(S'validate_qos/3' -p98454 -S'validate_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Required_qos}) $4' -p98455 -tp98456 -asS'CosFileTransfer_AccessLevel' -p98457 -(lp98458 -(S'id/0' -p98459 -S'id() $1' -p98460 -tp98461 -a(S'name/0' -p98462 -S'name() $1' -p98463 -tp98464 -a(S'tc/0' -p98465 -S'tc() $1' -p98466 -tp98467 -asS'gse' -p98468 -(lp98469 -(S'arc/2' -p98470 -S'arc(${1:Parent}, ${2:Options}) $3' -p98471 -tp98472 -a(S'button/2' -p98473 -S'button(${1:Parent}, ${2:Options}) $3' -p98474 -tp98475 -a(S'canvas/2' -p98476 -S'canvas(${1:Parent}, ${2:Options}) $3' -p98477 -tp98478 -a(S'checkbutton/2' -p98479 -S'checkbutton(${1:Parent}, ${2:Options}) $3' -p98480 -tp98481 -a(S'config/2' -p98482 -S'config(${1:Object}, ${2:Opts}) $3' -p98483 -tp98484 -a(S'create/3' -p98485 -S'create(${1:Objtype}, ${2:Parent}, ${3:Opts}) $4' -p98486 -tp98487 -a(S'create_named/4' -p98488 -S'create_named(${1:Name}, ${2:Objtype}, ${3:Parent}, ${4:Opts}) $5' -p98489 -tp98490 -a(S'create_tree/2' -p98491 -S'create_tree(${1:Parent}, ${2:Tree}) $3' -p98492 -tp98493 -a(S'deselect/1' -p98494 -S'deselect(${1:Object}) $2' -p98495 -tp98496 -a(S'destroy/1' -p98497 -S'destroy(${1:Object}) $2' -p98498 -tp98499 -a(S'disable/1' -p98500 -S'disable(${1:Object}) $2' -p98501 -tp98502 -a(S'editor/2' -p98503 -S'editor(${1:Parent}, ${2:Options}) $3' -p98504 -tp98505 -a(S'enable/1' -p98506 -S'enable(${1:Object}) $2' -p98507 -tp98508 -a(S'entry/2' -p98509 -S'entry(${1:Parent}, ${2:Options}) $3' -p98510 -tp98511 -a(S'frame/2' -p98512 -S'frame(${1:Parent}, ${2:Options}) $3' -p98513 -tp98514 -a(S'grid/2' -p98515 -S'grid(${1:Parent}, ${2:Options}) $3' -p98516 -tp98517 -a(S'gridline/2' -p98518 -S'gridline(${1:Parent}, ${2:Options}) $3' -p98519 -tp98520 -a(S'image/2' -p98521 -S'image(${1:Parent}, ${2:Options}) $3' -p98522 -tp98523 -a(S'label/2' -p98524 -S'label(${1:Parent}, ${2:Options}) $3' -p98525 -tp98526 -a(S'line/2' -p98527 -S'line(${1:Parent}, ${2:Options}) $3' -p98528 -tp98529 -a(S'listbox/2' -p98530 -S'listbox(${1:Parent}, ${2:Options}) $3' -p98531 -tp98532 -a(S'map/1' -p98533 -S'map(${1:Object}) $2' -p98534 -tp98535 -a(S'menu/2' -p98536 -S'menu(${1:Parent}, ${2:Options}) $3' -p98537 -tp98538 -a(S'menubar/2' -p98539 -S'menubar(${1:Parent}, ${2:Options}) $3' -p98540 -tp98541 -a(S'menubutton/2' -p98542 -S'menubutton(${1:Parent}, ${2:Options}) $3' -p98543 -tp98544 -a(S'menuitem/2' -p98545 -S'menuitem(${1:Parent}, ${2:Options}) $3' -p98546 -tp98547 -a(S'message/2' -p98548 -S'message(${1:Parent}, ${2:Options}) $3' -p98549 -tp98550 -a(S'name_occupied/1' -p98551 -S'name_occupied(${1:Name}) $2' -p98552 -tp98553 -a(S'named_arc/3' -p98554 -S'named_arc(${1:Name}, ${2:Parent}, ${3:Options}) $4' -p98555 -tp98556 -a(S'named_button/3' -p98557 -S'named_button(${1:Name}, ${2:Parent}, ${3:Options}) $4' -p98558 -tp98559 -a(S'named_canvas/3' -p98560 -S'named_canvas(${1:Name}, ${2:Parent}, ${3:Options}) $4' -p98561 -tp98562 -a(S'named_checkbutton/3' -p98563 -S'named_checkbutton(${1:Name}, ${2:Parent}, ${3:Options}) $4' -p98564 -tp98565 -a(S'named_editor/3' -p98566 -S'named_editor(${1:Name}, ${2:Parent}, ${3:Options}) $4' -p98567 -tp98568 -a(S'named_entry/3' -p98569 -S'named_entry(${1:Name}, ${2:Parent}, ${3:Options}) $4' -p98570 -tp98571 -a(S'named_frame/3' -p98572 -S'named_frame(${1:Name}, ${2:Parent}, ${3:Options}) $4' -p98573 -tp98574 -a(S'named_grid/3' -p98575 -S'named_grid(${1:Name}, ${2:Parent}, ${3:Options}) $4' -p98576 -tp98577 -a(S'named_gridline/3' -p98578 -S'named_gridline(${1:Name}, ${2:Parent}, ${3:Options}) $4' -p98579 -tp98580 -a(S'named_image/3' -p98581 -S'named_image(${1:Name}, ${2:Parent}, ${3:Options}) $4' -p98582 -tp98583 -a(S'named_label/3' -p98584 -S'named_label(${1:Name}, ${2:Parent}, ${3:Options}) $4' -p98585 -tp98586 -a(S'named_line/3' -p98587 -S'named_line(${1:Name}, ${2:Parent}, ${3:Options}) $4' -p98588 -tp98589 -a(S'named_listbox/3' -p98590 -S'named_listbox(${1:Name}, ${2:Parent}, ${3:Options}) $4' -p98591 -tp98592 -a(S'named_menu/3' -p98593 -S'named_menu(${1:Name}, ${2:Parent}, ${3:Options}) $4' -p98594 -tp98595 -a(S'named_menubar/3' -p98596 -S'named_menubar(${1:Name}, ${2:Parent}, ${3:Options}) $4' -p98597 -tp98598 -a(S'named_menubutton/3' -p98599 -S'named_menubutton(${1:Name}, ${2:Parent}, ${3:Options}) $4' -p98600 -tp98601 -a(S'named_menuitem/3' -p98602 -S'named_menuitem(${1:Name}, ${2:Parent}, ${3:Options}) $4' -p98603 -tp98604 -a(S'named_message/3' -p98605 -S'named_message(${1:Name}, ${2:Parent}, ${3:Options}) $4' -p98606 -tp98607 -a(S'named_oval/3' -p98608 -S'named_oval(${1:Name}, ${2:Parent}, ${3:Options}) $4' -p98609 -tp98610 -a(S'named_polygon/3' -p98611 -S'named_polygon(${1:Name}, ${2:Parent}, ${3:Options}) $4' -p98612 -tp98613 -a(S'named_prompter/3' -p98614 -S'named_prompter(${1:Name}, ${2:Parent}, ${3:Options}) $4' -p98615 -tp98616 -a(S'named_radiobutton/3' -p98617 -S'named_radiobutton(${1:Name}, ${2:Parent}, ${3:Options}) $4' -p98618 -tp98619 -a(S'named_rectangle/3' -p98620 -S'named_rectangle(${1:Name}, ${2:Parent}, ${3:Options}) $4' -p98621 -tp98622 -a(S'named_scale/3' -p98623 -S'named_scale(${1:Name}, ${2:Parent}, ${3:Options}) $4' -p98624 -tp98625 -a(S'named_scrollbar/3' -p98626 -S'named_scrollbar(${1:Name}, ${2:Parent}, ${3:Options}) $4' -p98627 -tp98628 -a(S'named_text/3' -p98629 -S'named_text(${1:Name}, ${2:Parent}, ${3:Options}) $4' -p98630 -tp98631 -a(S'named_window/3' -p98632 -S'named_window(${1:Name}, ${2:Parent}, ${3:Options}) $4' -p98633 -tp98634 -a(S'oval/2' -p98635 -S'oval(${1:Parent}, ${2:Options}) $3' -p98636 -tp98637 -a(S'polygon/2' -p98638 -S'polygon(${1:Parent}, ${2:Options}) $3' -p98639 -tp98640 -a(S'prompter/2' -p98641 -S'prompter(${1:Parent}, ${2:Options}) $3' -p98642 -tp98643 -a(S'radiobutton/2' -p98644 -S'radiobutton(${1:Parent}, ${2:Options}) $3' -p98645 -tp98646 -a(S'read/2' -p98647 -S'read(${1:Object}, ${2:OptionKey}) $3' -p98648 -tp98649 -a(S'rectangle/2' -p98650 -S'rectangle(${1:Parent}, ${2:Options}) $3' -p98651 -tp98652 -a(S'resize/3' -p98653 -S'resize(${1:Object}, ${2:Width}, ${3:Height}) $4' -p98654 -tp98655 -a(S'scale/2' -p98656 -S'scale(${1:Parent}, ${2:Options}) $3' -p98657 -tp98658 -a(S'scrollbar/2' -p98659 -S'scrollbar(${1:Parent}, ${2:Options}) $3' -p98660 -tp98661 -a(S'select/1' -p98662 -S'select(${1:Object}) $2' -p98663 -tp98664 -a(S'start/0' -p98665 -S'start() $1' -p98666 -tp98667 -a(S'start/1' -p98668 -S'start(${1:Opts}) $2' -p98669 -tp98670 -a(S'text/2' -p98671 -S'text(${1:Parent}, ${2:Options}) $3' -p98672 -tp98673 -a(S'unmap/1' -p98674 -S'unmap(${1:Object}) $2' -p98675 -tp98676 -a(S'window/2' -p98677 -S'window(${1:Parent}, ${2:Options}) $3' -p98678 -tp98679 -asS'observer_tv_wx' -p98680 -(lp98681 -(S'code_change/3' -p98682 -S'code_change(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p98683 -tp98684 -a(S'display_table_info/4' -p98685 -S'display_table_info(${1:Parent0}, ${2:Node}, ${3:Source}, ${4:Table}) $5' -p98686 -tp98687 -a(S'handle_call/3' -p98688 -S'handle_call(${1:Event}, ${2:From}, ${3:Param3}) $4' -p98689 -tp98690 -a(S'handle_cast/2' -p98691 -S'handle_cast(${1:Event}, ${2:Param2}) $3' -p98692 -tp98693 -a(S'handle_event/2' -p98694 -S'handle_event(${1:Event}, ${2:Param2}) $3' -p98695 -tp98696 -a(S'handle_info/2' -p98697 -S'handle_info(${1:Param1}, ${2:State}) $3' -p98698 -tp98699 -a(S'handle_sync_event/3' -p98700 -S'handle_sync_event(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p98701 -tp98702 -a(S'init/1' -p98703 -S'init(${1:Param1}) $2' -p98704 -tp98705 -a(S'start_link/2' -p98706 -S'start_link(${1:Notebook}, ${2:Parent}) $3' -p98707 -tp98708 -a(S'terminate/2' -p98709 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p98710 -tp98711 -asS'wxSingleChoiceDialog' -p98712 -(lp98713 -(S'cacheBestSize/2' -p98714 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p98715 -tp98716 -a(S'captureMouse/1' -p98717 -S'captureMouse(${1:This}) $2' -p98718 -tp98719 -a(S'center/1' -p98720 -S'center(${1:This}) $2' -p98721 -tp98722 -a(S'center/2' -p98723 -S'center(${1:This}, ${2:Options}) $3' -p98724 -tp98725 -a(S'centerOnParent/1' -p98726 -S'centerOnParent(${1:This}) $2' -p98727 -tp98728 -a(S'centerOnParent/2' -p98729 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p98730 -tp98731 -a(S'centerOnScreen/1' -p98732 -S'centerOnScreen(${1:This}) $2' -p98733 -tp98734 -a(S'centerOnScreen/2' -p98735 -S'centerOnScreen(${1:This}, ${2:Options}) $3' -p98736 -tp98737 -a(S'centre/1' -p98738 -S'centre(${1:This}) $2' -p98739 -tp98740 -a(S'centre/2' -p98741 -S'centre(${1:This}, ${2:Options}) $3' -p98742 -tp98743 -a(S'centreOnParent/1' -p98744 -S'centreOnParent(${1:This}) $2' -p98745 -tp98746 -a(S'centreOnParent/2' -p98747 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p98748 -tp98749 -a(S'centreOnScreen/1' -p98750 -S'centreOnScreen(${1:This}) $2' -p98751 -tp98752 -a(S'centreOnScreen/2' -p98753 -S'centreOnScreen(${1:This}, ${2:Options}) $3' -p98754 -tp98755 -a(S'clearBackground/1' -p98756 -S'clearBackground(${1:This}) $2' -p98757 -tp98758 -a(S'clientToScreen/2' -p98759 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p98760 -tp98761 -a(S'clientToScreen/3' -p98762 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p98763 -tp98764 -a(S'close/1' -p98765 -S'close(${1:This}) $2' -p98766 -tp98767 -a(S'close/2' -p98768 -S'close(${1:This}, ${2:Options}) $3' -p98769 -tp98770 -a(S'connect/2' -p98771 -S'connect(${1:This}, ${2:EventType}) $3' -p98772 -tp98773 -a(S'connect/3' -p98774 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p98775 -tp98776 -a(S'convertDialogToPixels/2' -p98777 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p98778 -tp98779 -a(S'convertPixelsToDialog/2' -p98780 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p98781 -tp98782 -a(S'createButtonSizer/2' -p98783 -S'createButtonSizer(${1:This}, ${2:Flags}) $3' -p98784 -tp98785 -a(S'createStdDialogButtonSizer/2' -p98786 -S'createStdDialogButtonSizer(${1:This}, ${2:Flags}) $3' -p98787 -tp98788 -a(S'destroy/1' -p98789 -S'destroy(${1:This}) $2' -p98790 -tp98791 -a(S'destroyChildren/1' -p98792 -S'destroyChildren(${1:This}) $2' -p98793 -tp98794 -a(S'disable/1' -p98795 -S'disable(${1:This}) $2' -p98796 -tp98797 -a(S'disconnect/1' -p98798 -S'disconnect(${1:This}) $2' -p98799 -tp98800 -a(S'disconnect/2' -p98801 -S'disconnect(${1:This}, ${2:EventType}) $3' -p98802 -tp98803 -a(S'disconnect/3' -p98804 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p98805 -tp98806 -a(S'enable/1' -p98807 -S'enable(${1:This}) $2' -p98808 -tp98809 -a(S'enable/2' -p98810 -S'enable(${1:This}, ${2:Options}) $3' -p98811 -tp98812 -a(S'endModal/2' -p98813 -S'endModal(${1:This}, ${2:RetCode}) $3' -p98814 -tp98815 -a(S'findWindow/2' -p98816 -S'findWindow(${1:This}, ${2:Winid}) $3' -p98817 -tp98818 -a(S'fit/1' -p98819 -S'fit(${1:This}) $2' -p98820 -tp98821 -a(S'fitInside/1' -p98822 -S'fitInside(${1:This}) $2' -p98823 -tp98824 -a(S'freeze/1' -p98825 -S'freeze(${1:This}) $2' -p98826 -tp98827 -a(S'getAcceleratorTable/1' -p98828 -S'getAcceleratorTable(${1:This}) $2' -p98829 -tp98830 -a(S'getAffirmativeId/1' -p98831 -S'getAffirmativeId(${1:This}) $2' -p98832 -tp98833 -a(S'getBackgroundColour/1' -p98834 -S'getBackgroundColour(${1:This}) $2' -p98835 -tp98836 -a(S'getBackgroundStyle/1' -p98837 -S'getBackgroundStyle(${1:This}) $2' -p98838 -tp98839 -a(S'getBestSize/1' -p98840 -S'getBestSize(${1:This}) $2' -p98841 -tp98842 -a(S'getCaret/1' -p98843 -S'getCaret(${1:This}) $2' -p98844 -tp98845 -a(S'getCharHeight/1' -p98846 -S'getCharHeight(${1:This}) $2' -p98847 -tp98848 -a(S'getCharWidth/1' -p98849 -S'getCharWidth(${1:This}) $2' -p98850 -tp98851 -a(S'getChildren/1' -p98852 -S'getChildren(${1:This}) $2' -p98853 -tp98854 -a(S'getClientSize/1' -p98855 -S'getClientSize(${1:This}) $2' -p98856 -tp98857 -a(S'getContainingSizer/1' -p98858 -S'getContainingSizer(${1:This}) $2' -p98859 -tp98860 -a(S'getCursor/1' -p98861 -S'getCursor(${1:This}) $2' -p98862 -tp98863 -a(S'getDropTarget/1' -p98864 -S'getDropTarget(${1:This}) $2' -p98865 -tp98866 -a(S'getEventHandler/1' -p98867 -S'getEventHandler(${1:This}) $2' -p98868 -tp98869 -a(S'getExtraStyle/1' -p98870 -S'getExtraStyle(${1:This}) $2' -p98871 -tp98872 -a(S'getFont/1' -p98873 -S'getFont(${1:This}) $2' -p98874 -tp98875 -a(S'getForegroundColour/1' -p98876 -S'getForegroundColour(${1:This}) $2' -p98877 -tp98878 -a(S'getGrandParent/1' -p98879 -S'getGrandParent(${1:This}) $2' -p98880 -tp98881 -a(S'getHandle/1' -p98882 -S'getHandle(${1:This}) $2' -p98883 -tp98884 -a(S'getHelpText/1' -p98885 -S'getHelpText(${1:This}) $2' -p98886 -tp98887 -a(S'getIcon/1' -p98888 -S'getIcon(${1:This}) $2' -p98889 -tp98890 -a(S'getIcons/1' -p98891 -S'getIcons(${1:This}) $2' -p98892 -tp98893 -a(S'getId/1' -p98894 -S'getId(${1:This}) $2' -p98895 -tp98896 -a(S'getLabel/1' -p98897 -S'getLabel(${1:This}) $2' -p98898 -tp98899 -a(S'getMaxSize/1' -p98900 -S'getMaxSize(${1:This}) $2' -p98901 -tp98902 -a(S'getMinSize/1' -p98903 -S'getMinSize(${1:This}) $2' -p98904 -tp98905 -a(S'getName/1' -p98906 -S'getName(${1:This}) $2' -p98907 -tp98908 -a(S'getParent/1' -p98909 -S'getParent(${1:This}) $2' -p98910 -tp98911 -a(S'getPosition/1' -p98912 -S'getPosition(${1:This}) $2' -p98913 -tp98914 -a(S'getRect/1' -p98915 -S'getRect(${1:This}) $2' -p98916 -tp98917 -a(S'getReturnCode/1' -p98918 -S'getReturnCode(${1:This}) $2' -p98919 -tp98920 -a(S'getScreenPosition/1' -p98921 -S'getScreenPosition(${1:This}) $2' -p98922 -tp98923 -a(S'getScreenRect/1' -p98924 -S'getScreenRect(${1:This}) $2' -p98925 -tp98926 -a(S'getScrollPos/2' -p98927 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p98928 -tp98929 -a(S'getScrollRange/2' -p98930 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p98931 -tp98932 -a(S'getScrollThumb/2' -p98933 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p98934 -tp98935 -a(S'getSelection/1' -p98936 -S'getSelection(${1:This}) $2' -p98937 -tp98938 -a(S'getSize/1' -p98939 -S'getSize(${1:This}) $2' -p98940 -tp98941 -a(S'getSizer/1' -p98942 -S'getSizer(${1:This}) $2' -p98943 -tp98944 -a(S'getStringSelection/1' -p98945 -S'getStringSelection(${1:This}) $2' -p98946 -tp98947 -a(S'getTextExtent/2' -p98948 -S'getTextExtent(${1:This}, ${2:String}) $3' -p98949 -tp98950 -a(S'getTextExtent/3' -p98951 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p98952 -tp98953 -a(S'getTitle/1' -p98954 -S'getTitle(${1:This}) $2' -p98955 -tp98956 -a(S'getToolTip/1' -p98957 -S'getToolTip(${1:This}) $2' -p98958 -tp98959 -a(S'getUpdateRegion/1' -p98960 -S'getUpdateRegion(${1:This}) $2' -p98961 -tp98962 -a(S'getVirtualSize/1' -p98963 -S'getVirtualSize(${1:This}) $2' -p98964 -tp98965 -a(S'getWindowStyleFlag/1' -p98966 -S'getWindowStyleFlag(${1:This}) $2' -p98967 -tp98968 -a(S'getWindowVariant/1' -p98969 -S'getWindowVariant(${1:This}) $2' -p98970 -tp98971 -a(S'hasCapture/1' -p98972 -S'hasCapture(${1:This}) $2' -p98973 -tp98974 -a(S'hasScrollbar/2' -p98975 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p98976 -tp98977 -a(S'hasTransparentBackground/1' -p98978 -S'hasTransparentBackground(${1:This}) $2' -p98979 -tp98980 -a(S'hide/1' -p98981 -S'hide(${1:This}) $2' -p98982 -tp98983 -a(S'iconize/1' -p98984 -S'iconize(${1:This}) $2' -p98985 -tp98986 -a(S'iconize/2' -p98987 -S'iconize(${1:This}, ${2:Options}) $3' -p98988 -tp98989 -a(S'inheritAttributes/1' -p98990 -S'inheritAttributes(${1:This}) $2' -p98991 -tp98992 -a(S'initDialog/1' -p98993 -S'initDialog(${1:This}) $2' -p98994 -tp98995 -a(S'invalidateBestSize/1' -p98996 -S'invalidateBestSize(${1:This}) $2' -p98997 -tp98998 -a(S'isActive/1' -p98999 -S'isActive(${1:This}) $2' -p99000 -tp99001 -a(S'isEnabled/1' -p99002 -S'isEnabled(${1:This}) $2' -p99003 -tp99004 -a(S'isExposed/2' -p99005 -S'isExposed(${1:This}, ${2:Pt}) $3' -p99006 -tp99007 -a(S'isExposed/3' -p99008 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p99009 -tp99010 -a(S'isExposed/5' -p99011 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p99012 -tp99013 -a(S'isFullScreen/1' -p99014 -S'isFullScreen(${1:This}) $2' -p99015 -tp99016 -a(S'isIconized/1' -p99017 -S'isIconized(${1:This}) $2' -p99018 -tp99019 -a(S'isMaximized/1' -p99020 -S'isMaximized(${1:This}) $2' -p99021 -tp99022 -a(S'isModal/1' -p99023 -S'isModal(${1:This}) $2' -p99024 -tp99025 -a(S'isRetained/1' -p99026 -S'isRetained(${1:This}) $2' -p99027 -tp99028 -a(S'isShown/1' -p99029 -S'isShown(${1:This}) $2' -p99030 -tp99031 -a(S'isTopLevel/1' -p99032 -S'isTopLevel(${1:This}) $2' -p99033 -tp99034 -a(S'layout/1' -p99035 -S'layout(${1:This}) $2' -p99036 -tp99037 -a(S'lineDown/1' -p99038 -S'lineDown(${1:This}) $2' -p99039 -tp99040 -a(S'lineUp/1' -p99041 -S'lineUp(${1:This}) $2' -p99042 -tp99043 -a(S'lower/1' -p99044 -S'lower(${1:This}) $2' -p99045 -tp99046 -a(S'makeModal/1' -p99047 -S'makeModal(${1:This}) $2' -p99048 -tp99049 -a(S'makeModal/2' -p99050 -S'makeModal(${1:This}, ${2:Options}) $3' -p99051 -tp99052 -a(S'maximize/1' -p99053 -S'maximize(${1:This}) $2' -p99054 -tp99055 -a(S'maximize/2' -p99056 -S'maximize(${1:This}, ${2:Options}) $3' -p99057 -tp99058 -a(S'move/2' -p99059 -S'move(${1:This}, ${2:Pt}) $3' -p99060 -tp99061 -a(S'move/3' -p99062 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p99063 -tp99064 -a(S'move/4' -p99065 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p99066 -tp99067 -a(S'moveAfterInTabOrder/2' -p99068 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p99069 -tp99070 -a(S'moveBeforeInTabOrder/2' -p99071 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p99072 -tp99073 -a(S'navigate/1' -p99074 -S'navigate(${1:This}) $2' -p99075 -tp99076 -a(S'navigate/2' -p99077 -S'navigate(${1:This}, ${2:Options}) $3' -p99078 -tp99079 -a(S'new/0' -p99080 -S'new() $1' -p99081 -tp99082 -a(S'new/4' -p99083 -S'new(${1:Parent}, ${2:Message}, ${3:Caption}, ${4:Choices}) $5' -p99084 -tp99085 -a(S'new/5' -p99086 -S'new(${1:Parent}, ${2:Message}, ${3:Caption}, ${4:Choices}, ${5:Param5}) $6' -p99087 -tp99088 -a(S'pageDown/1' -p99089 -S'pageDown(${1:This}) $2' -p99090 -tp99091 -a(S'pageUp/1' -p99092 -S'pageUp(${1:This}) $2' -p99093 -tp99094 -a(S'parent_class/1' -p99095 -S'parent_class(${1:Param1}) $2' -p99096 -tp99097 -a(S'popEventHandler/1' -p99098 -S'popEventHandler(${1:This}) $2' -p99099 -tp99100 -a(S'popEventHandler/2' -p99101 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p99102 -tp99103 -a(S'popupMenu/2' -p99104 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p99105 -tp99106 -a(S'popupMenu/3' -p99107 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p99108 -tp99109 -a(S'popupMenu/4' -p99110 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p99111 -tp99112 -a(S'raise/1' -p99113 -S'raise(${1:This}) $2' -p99114 -tp99115 -a(S'refresh/1' -p99116 -S'refresh(${1:This}) $2' -p99117 -tp99118 -a(S'refresh/2' -p99119 -S'refresh(${1:This}, ${2:Options}) $3' -p99120 -tp99121 -a(S'refreshRect/2' -p99122 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p99123 -tp99124 -a(S'refreshRect/3' -p99125 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p99126 -tp99127 -a(S'releaseMouse/1' -p99128 -S'releaseMouse(${1:This}) $2' -p99129 -tp99130 -a(S'removeChild/2' -p99131 -S'removeChild(${1:This}, ${2:Child}) $3' -p99132 -tp99133 -a(S'reparent/2' -p99134 -S'reparent(${1:This}, ${2:NewParent}) $3' -p99135 -tp99136 -a(S'requestUserAttention/1' -p99137 -S'requestUserAttention(${1:This}) $2' -p99138 -tp99139 -a(S'requestUserAttention/2' -p99140 -S'requestUserAttention(${1:This}, ${2:Options}) $3' -p99141 -tp99142 -a(S'screenToClient/1' -p99143 -S'screenToClient(${1:This}) $2' -p99144 -tp99145 -a(S'screenToClient/2' -p99146 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p99147 -tp99148 -a(S'scrollLines/2' -p99149 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p99150 -tp99151 -a(S'scrollPages/2' -p99152 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p99153 -tp99154 -a(S'scrollWindow/3' -p99155 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p99156 -tp99157 -a(S'scrollWindow/4' -p99158 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p99159 -tp99160 -a(S'setAcceleratorTable/2' -p99161 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p99162 -tp99163 -a(S'setAffirmativeId/2' -p99164 -S'setAffirmativeId(${1:This}, ${2:AffirmativeId}) $3' -p99165 -tp99166 -a(S'setAutoLayout/2' -p99167 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p99168 -tp99169 -a(S'setBackgroundColour/2' -p99170 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p99171 -tp99172 -a(S'setBackgroundStyle/2' -p99173 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p99174 -tp99175 -a(S'setCaret/2' -p99176 -S'setCaret(${1:This}, ${2:Caret}) $3' -p99177 -tp99178 -a(S'setClientSize/2' -p99179 -S'setClientSize(${1:This}, ${2:Size}) $3' -p99180 -tp99181 -a(S'setClientSize/3' -p99182 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p99183 -tp99184 -a(S'setContainingSizer/2' -p99185 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p99186 -tp99187 -a(S'setCursor/2' -p99188 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p99189 -tp99190 -a(S'setDropTarget/2' -p99191 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p99192 -tp99193 -a(S'setExtraStyle/2' -p99194 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p99195 -tp99196 -a(S'setFocus/1' -p99197 -S'setFocus(${1:This}) $2' -p99198 -tp99199 -a(S'setFocusFromKbd/1' -p99200 -S'setFocusFromKbd(${1:This}) $2' -p99201 -tp99202 -a(S'setFont/2' -p99203 -S'setFont(${1:This}, ${2:Font}) $3' -p99204 -tp99205 -a(S'setForegroundColour/2' -p99206 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p99207 -tp99208 -a(S'setHelpText/2' -p99209 -S'setHelpText(${1:This}, ${2:Text}) $3' -p99210 -tp99211 -a(S'setIcon/2' -p99212 -S'setIcon(${1:This}, ${2:Icon}) $3' -p99213 -tp99214 -a(S'setIcons/2' -p99215 -S'setIcons(${1:This}, ${2:Icons}) $3' -p99216 -tp99217 -a(S'setId/2' -p99218 -S'setId(${1:This}, ${2:Winid}) $3' -p99219 -tp99220 -a(S'setLabel/2' -p99221 -S'setLabel(${1:This}, ${2:Label}) $3' -p99222 -tp99223 -a(S'setMaxSize/2' -p99224 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p99225 -tp99226 -a(S'setMinSize/2' -p99227 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p99228 -tp99229 -a(S'setName/2' -p99230 -S'setName(${1:This}, ${2:Name}) $3' -p99231 -tp99232 -a(S'setOwnBackgroundColour/2' -p99233 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p99234 -tp99235 -a(S'setOwnFont/2' -p99236 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p99237 -tp99238 -a(S'setOwnForegroundColour/2' -p99239 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p99240 -tp99241 -a(S'setPalette/2' -p99242 -S'setPalette(${1:This}, ${2:Pal}) $3' -p99243 -tp99244 -a(S'setReturnCode/2' -p99245 -S'setReturnCode(${1:This}, ${2:ReturnCode}) $3' -p99246 -tp99247 -a(S'setScrollPos/3' -p99248 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p99249 -tp99250 -a(S'setScrollPos/4' -p99251 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p99252 -tp99253 -a(S'setScrollbar/5' -p99254 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p99255 -tp99256 -a(S'setScrollbar/6' -p99257 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p99258 -tp99259 -a(S'setSelection/2' -p99260 -S'setSelection(${1:This}, ${2:Sel}) $3' -p99261 -tp99262 -a(S'setShape/2' -p99263 -S'setShape(${1:This}, ${2:Region}) $3' -p99264 -tp99265 -a(S'setSize/2' -p99266 -S'setSize(${1:This}, ${2:Rect}) $3' -p99267 -tp99268 -a(S'setSize/3' -p99269 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p99270 -tp99271 -a(S'setSize/5' -p99272 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p99273 -tp99274 -a(S'setSize/6' -p99275 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p99276 -tp99277 -a(S'setSizeHints/2' -p99278 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p99279 -tp99280 -a(S'setSizeHints/3' -p99281 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p99282 -tp99283 -a(S'setSizeHints/4' -p99284 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p99285 -tp99286 -a(S'setSizer/2' -p99287 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p99288 -tp99289 -a(S'setSizer/3' -p99290 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p99291 -tp99292 -a(S'setSizerAndFit/2' -p99293 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p99294 -tp99295 -a(S'setSizerAndFit/3' -p99296 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p99297 -tp99298 -a(S'setThemeEnabled/2' -p99299 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p99300 -tp99301 -a(S'setTitle/2' -p99302 -S'setTitle(${1:This}, ${2:Title}) $3' -p99303 -tp99304 -a(S'setToolTip/2' -p99305 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p99306 -tp99307 -a(S'setVirtualSize/2' -p99308 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p99309 -tp99310 -a(S'setVirtualSize/3' -p99311 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p99312 -tp99313 -a(S'setVirtualSizeHints/2' -p99314 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p99315 -tp99316 -a(S'setVirtualSizeHints/3' -p99317 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p99318 -tp99319 -a(S'setVirtualSizeHints/4' -p99320 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p99321 -tp99322 -a(S'setWindowStyle/2' -p99323 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p99324 -tp99325 -a(S'setWindowStyleFlag/2' -p99326 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p99327 -tp99328 -a(S'setWindowVariant/2' -p99329 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p99330 -tp99331 -a(S'shouldInheritColours/1' -p99332 -S'shouldInheritColours(${1:This}) $2' -p99333 -tp99334 -a(S'show/1' -p99335 -S'show(${1:This}) $2' -p99336 -tp99337 -a(S'show/2' -p99338 -S'show(${1:This}, ${2:Options}) $3' -p99339 -tp99340 -a(S'showFullScreen/2' -p99341 -S'showFullScreen(${1:This}, ${2:Show}) $3' -p99342 -tp99343 -a(S'showFullScreen/3' -p99344 -S'showFullScreen(${1:This}, ${2:Show}, ${3:Options}) $4' -p99345 -tp99346 -a(S'showModal/1' -p99347 -S'showModal(${1:This}) $2' -p99348 -tp99349 -a(S'thaw/1' -p99350 -S'thaw(${1:This}) $2' -p99351 -tp99352 -a(S'transferDataFromWindow/1' -p99353 -S'transferDataFromWindow(${1:This}) $2' -p99354 -tp99355 -a(S'transferDataToWindow/1' -p99356 -S'transferDataToWindow(${1:This}) $2' -p99357 -tp99358 -a(S'update/1' -p99359 -S'update(${1:This}) $2' -p99360 -tp99361 -a(S'updateWindowUI/1' -p99362 -S'updateWindowUI(${1:This}) $2' -p99363 -tp99364 -a(S'updateWindowUI/2' -p99365 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p99366 -tp99367 -a(S'validate/1' -p99368 -S'validate(${1:This}) $2' -p99369 -tp99370 -a(S'warpPointer/3' -p99371 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p99372 -tp99373 -asS'corba_object' -p99374 -(lp99375 -(S'create_request/6' -p99376 -S'create_request(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}, ${5:NamedValueResult}, ${6:Param6}) $7' -p99377 -tp99378 -a(S'get_interface/1' -p99379 -S'get_interface(${1:Obj}) $2' -p99380 -tp99381 -a(S'hash/2' -p99382 -S'hash(${1:Obj}, ${2:Maximum}) $3' -p99383 -tp99384 -a(S'is_a/2' -p99385 -S'is_a(${1:Obj}, ${2:Logical_type_id}) $3' -p99386 -tp99387 -a(S'is_a/3' -p99388 -S'is_a(${1:Obj}, ${2:Logical_type_id}, ${3:Ctx}) $4' -p99389 -tp99390 -a(S'is_equivalent/2' -p99391 -S'is_equivalent(${1:Obj}, ${2:Obj}) $3' -p99392 -tp99393 -a(S'is_nil/1' -p99394 -S'is_nil(${1:Object}) $2' -p99395 -tp99396 -a(S'is_remote/1' -p99397 -S'is_remote(${1:Obj}) $2' -p99398 -tp99399 -a(S'non_existent/1' -p99400 -S'non_existent(${1:Obj}) $2' -p99401 -tp99402 -a(S'non_existent/2' -p99403 -S'non_existent(${1:Obj}, ${2:Ctx}) $3' -p99404 -tp99405 -a(S'not_existent/1' -p99406 -S'not_existent(${1:Obj}) $2' -p99407 -tp99408 -a(S'not_existent/2' -p99409 -S'not_existent(${1:Obj}, ${2:Ctx}) $3' -p99410 -tp99411 -asS'tool_file_dialog' -p99412 -(lp99413 -(S'start/1' -p99414 -S'start(${1:Opts0}) $2' -p99415 -tp99416 -asS'PusherConsumer_impl' -p99417 -(lp99418 -(S"'_get_MyAdmin'/3" -p99419 -S"'_get_MyAdmin'(${1:Param1}, ${2:Param2}, ${3:State}) $4" -p99420 -tp99421 -a(S"'_get_MyType'/3" -p99422 -S"'_get_MyType'(${1:Param1}, ${2:Param2}, ${3:State}) $4" -p99423 -tp99424 -a(S'add_filter/4' -p99425 -S'add_filter(${1:Param1}, ${2:Param2}, ${3:State}, ${4:Filter}) $5' -p99426 -tp99427 -a(S'code_change/3' -p99428 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p99429 -tp99430 -a(S'connect_any_push_supplier/4' -p99431 -S'connect_any_push_supplier(${1:Param1}, ${2:Param2}, ${3:State}, ${4:Client}) $5' -p99432 -tp99433 -a(S'connect_push_supplier/4' -p99434 -S'connect_push_supplier(${1:OE_THIS}, ${2:OE_FROM}, ${3:State}, ${4:Client}) $5' -p99435 -tp99436 -a(S'connect_sequence_push_supplier/4' -p99437 -S'connect_sequence_push_supplier(${1:Param1}, ${2:Param2}, ${3:State}, ${4:Client}) $5' -p99438 -tp99439 -a(S'connect_structured_push_supplier/4' -p99440 -S'connect_structured_push_supplier(${1:Param1}, ${2:Param2}, ${3:State}, ${4:Client}) $5' -p99441 -tp99442 -a(S'disconnect_push_consumer/3' -p99443 -S'disconnect_push_consumer(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p99444 -tp99445 -a(S'disconnect_sequence_push_consumer/3' -p99446 -S'disconnect_sequence_push_consumer(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p99447 -tp99448 -a(S'disconnect_structured_push_consumer/3' -p99449 -S'disconnect_structured_push_consumer(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p99450 -tp99451 -a(S'get_all_filters/3' -p99452 -S'get_all_filters(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p99453 -tp99454 -a(S'get_filter/4' -p99455 -S'get_filter(${1:Param1}, ${2:Param2}, ${3:State}, ${4:FilterID}) $5' -p99456 -tp99457 -a(S'get_qos/3' -p99458 -S'get_qos(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p99459 -tp99460 -a(S'handle_info/2' -p99461 -S'handle_info(${1:Info}, ${2:State}) $3' -p99462 -tp99463 -a(S'init/1' -p99464 -S'init(${1:Param1}) $2' -p99465 -tp99466 -a(S'obtain_subscription_types/4' -p99467 -S'obtain_subscription_types(${1:Param1}, ${2:Param2}, ${3:State}, ${4:What}) $5' -p99468 -tp99469 -a(S'offer_change/5' -p99470 -S'offer_change(${1:Param1}, ${2:Param2}, ${3:State}, ${4:Added}, ${5:Removed}) $6' -p99471 -tp99472 -a(S'push/4' -p99473 -S'push(${1:OE_THIS}, ${2:OE_FROM}, ${3:State}, ${4:Event}) $5' -p99474 -tp99475 -a(S'push_structured_event/4' -p99476 -S'push_structured_event(${1:OE_THIS}, ${2:OE_FROM}, ${3:State}, ${4:Event}) $5' -p99477 -tp99478 -a(S'push_structured_events/4' -p99479 -S'push_structured_events(${1:OE_THIS}, ${2:OE_FROM}, ${3:State}, ${4:Events}) $5' -p99480 -tp99481 -a(S'remove_all_filters/3' -p99482 -S'remove_all_filters(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p99483 -tp99484 -a(S'remove_filter/4' -p99485 -S'remove_filter(${1:Param1}, ${2:Param2}, ${3:State}, ${4:FilterID}) $5' -p99486 -tp99487 -a(S'set_qos/4' -p99488 -S'set_qos(${1:Param1}, ${2:Param2}, ${3:State}, ${4:QoS}) $5' -p99489 -tp99490 -a(S'terminate/2' -p99491 -S'terminate(${1:Param1}, ${2:State}) $3' -p99492 -tp99493 -a(S'validate_event_qos/4' -p99494 -S'validate_event_qos(${1:Param1}, ${2:Param2}, ${3:State}, ${4:RequiredQoS}) $5' -p99495 -tp99496 -a(S'validate_qos/4' -p99497 -S'validate_qos(${1:Param1}, ${2:Param2}, ${3:State}, ${4:Required_qos}) $5' -p99498 -tp99499 -asS'wxToolBar' -p99500 -(lp99501 -(S'addCheckTool/4' -p99502 -S'addCheckTool(${1:This}, ${2:Toolid}, ${3:Label}, ${4:Bitmap}) $5' -p99503 -tp99504 -a(S'addCheckTool/5' -p99505 -S'addCheckTool(${1:This}, ${2:Toolid}, ${3:Label}, ${4:Bitmap}, ${5:Param5}) $6' -p99506 -tp99507 -a(S'addControl/2' -p99508 -S'addControl(${1:This}, ${2:Control}) $3' -p99509 -tp99510 -a(S'addRadioTool/4' -p99511 -S'addRadioTool(${1:This}, ${2:Toolid}, ${3:Label}, ${4:Bitmap}) $5' -p99512 -tp99513 -a(S'addRadioTool/5' -p99514 -S'addRadioTool(${1:This}, ${2:Toolid}, ${3:Label}, ${4:Bitmap}, ${5:Param5}) $6' -p99515 -tp99516 -a(S'addSeparator/1' -p99517 -S'addSeparator(${1:This}) $2' -p99518 -tp99519 -a(S'addTool/2' -p99520 -S'addTool(${1:This}, ${2:Tool}) $3' -p99521 -tp99522 -a(S'addTool/3' -p99523 -S'addTool(${1:This}, ${2:Toolid}, ${3:Bitmap}) $4' -p99524 -tp99525 -a(S'addTool/4' -p99526 -S'addTool(${1:This}, ${2:Toolid}, ${3:Label}, ${4:Bitmap}) $5' -p99527 -tp99528 -a(S'addTool/5' -p99529 -S'addTool(${1:This}, ${2:Toolid}, ${3:Label}, ${4:Bitmap}, ${5:BmpDisabled}) $6' -p99530 -tp99531 -a(S'addTool/6' -p99532 -S'addTool(${1:This}, ${2:Toolid}, ${3:Bitmap}, ${4:BmpDisabled}, ${5:Toggle}, ${6:XPos}) $7' -p99533 -tp99534 -a(S'addTool/7' -p99535 -S'addTool(${1:This}, ${2:Toolid}, ${3:Bitmap}, ${4:BmpDisabled}, ${5:Toggle}, ${6:XPos}, ${7:Param7}) $8' -p99536 -tp99537 -a(S'cacheBestSize/2' -p99538 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p99539 -tp99540 -a(S'captureMouse/1' -p99541 -S'captureMouse(${1:This}) $2' -p99542 -tp99543 -a(S'center/1' -p99544 -S'center(${1:This}) $2' -p99545 -tp99546 -a(S'center/2' -p99547 -S'center(${1:This}, ${2:Options}) $3' -p99548 -tp99549 -a(S'centerOnParent/1' -p99550 -S'centerOnParent(${1:This}) $2' -p99551 -tp99552 -a(S'centerOnParent/2' -p99553 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p99554 -tp99555 -a(S'centre/1' -p99556 -S'centre(${1:This}) $2' -p99557 -tp99558 -a(S'centre/2' -p99559 -S'centre(${1:This}, ${2:Options}) $3' -p99560 -tp99561 -a(S'centreOnParent/1' -p99562 -S'centreOnParent(${1:This}) $2' -p99563 -tp99564 -a(S'centreOnParent/2' -p99565 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p99566 -tp99567 -a(S'clearBackground/1' -p99568 -S'clearBackground(${1:This}) $2' -p99569 -tp99570 -a(S'clientToScreen/2' -p99571 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p99572 -tp99573 -a(S'clientToScreen/3' -p99574 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p99575 -tp99576 -a(S'close/1' -p99577 -S'close(${1:This}) $2' -p99578 -tp99579 -a(S'close/2' -p99580 -S'close(${1:This}, ${2:Options}) $3' -p99581 -tp99582 -a(S'connect/2' -p99583 -S'connect(${1:This}, ${2:EventType}) $3' -p99584 -tp99585 -a(S'connect/3' -p99586 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p99587 -tp99588 -a(S'convertDialogToPixels/2' -p99589 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p99590 -tp99591 -a(S'convertPixelsToDialog/2' -p99592 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p99593 -tp99594 -a(S'deleteTool/2' -p99595 -S'deleteTool(${1:This}, ${2:Toolid}) $3' -p99596 -tp99597 -a(S'deleteToolByPos/2' -p99598 -S'deleteToolByPos(${1:This}, ${2:Pos}) $3' -p99599 -tp99600 -a(S'destroyChildren/1' -p99601 -S'destroyChildren(${1:This}) $2' -p99602 -tp99603 -a(S'disable/1' -p99604 -S'disable(${1:This}) $2' -p99605 -tp99606 -a(S'disconnect/1' -p99607 -S'disconnect(${1:This}) $2' -p99608 -tp99609 -a(S'disconnect/2' -p99610 -S'disconnect(${1:This}, ${2:EventType}) $3' -p99611 -tp99612 -a(S'disconnect/3' -p99613 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p99614 -tp99615 -a(S'enable/1' -p99616 -S'enable(${1:This}) $2' -p99617 -tp99618 -a(S'enable/2' -p99619 -S'enable(${1:This}, ${2:Options}) $3' -p99620 -tp99621 -a(S'enableTool/3' -p99622 -S'enableTool(${1:This}, ${2:Toolid}, ${3:Enable}) $4' -p99623 -tp99624 -a(S'findById/2' -p99625 -S'findById(${1:This}, ${2:Toolid}) $3' -p99626 -tp99627 -a(S'findControl/2' -p99628 -S'findControl(${1:This}, ${2:Toolid}) $3' -p99629 -tp99630 -a(S'findToolForPosition/3' -p99631 -S'findToolForPosition(${1:This}, ${2:X}, ${3:Y}) $4' -p99632 -tp99633 -a(S'findWindow/2' -p99634 -S'findWindow(${1:This}, ${2:Winid}) $3' -p99635 -tp99636 -a(S'fit/1' -p99637 -S'fit(${1:This}) $2' -p99638 -tp99639 -a(S'fitInside/1' -p99640 -S'fitInside(${1:This}) $2' -p99641 -tp99642 -a(S'freeze/1' -p99643 -S'freeze(${1:This}) $2' -p99644 -tp99645 -a(S'getAcceleratorTable/1' -p99646 -S'getAcceleratorTable(${1:This}) $2' -p99647 -tp99648 -a(S'getBackgroundColour/1' -p99649 -S'getBackgroundColour(${1:This}) $2' -p99650 -tp99651 -a(S'getBackgroundStyle/1' -p99652 -S'getBackgroundStyle(${1:This}) $2' -p99653 -tp99654 -a(S'getBestSize/1' -p99655 -S'getBestSize(${1:This}) $2' -p99656 -tp99657 -a(S'getCaret/1' -p99658 -S'getCaret(${1:This}) $2' -p99659 -tp99660 -a(S'getCharHeight/1' -p99661 -S'getCharHeight(${1:This}) $2' -p99662 -tp99663 -a(S'getCharWidth/1' -p99664 -S'getCharWidth(${1:This}) $2' -p99665 -tp99666 -a(S'getChildren/1' -p99667 -S'getChildren(${1:This}) $2' -p99668 -tp99669 -a(S'getClientSize/1' -p99670 -S'getClientSize(${1:This}) $2' -p99671 -tp99672 -a(S'getContainingSizer/1' -p99673 -S'getContainingSizer(${1:This}) $2' -p99674 -tp99675 -a(S'getCursor/1' -p99676 -S'getCursor(${1:This}) $2' -p99677 -tp99678 -a(S'getDropTarget/1' -p99679 -S'getDropTarget(${1:This}) $2' -p99680 -tp99681 -a(S'getEventHandler/1' -p99682 -S'getEventHandler(${1:This}) $2' -p99683 -tp99684 -a(S'getExtraStyle/1' -p99685 -S'getExtraStyle(${1:This}) $2' -p99686 -tp99687 -a(S'getFont/1' -p99688 -S'getFont(${1:This}) $2' -p99689 -tp99690 -a(S'getForegroundColour/1' -p99691 -S'getForegroundColour(${1:This}) $2' -p99692 -tp99693 -a(S'getGrandParent/1' -p99694 -S'getGrandParent(${1:This}) $2' -p99695 -tp99696 -a(S'getHandle/1' -p99697 -S'getHandle(${1:This}) $2' -p99698 -tp99699 -a(S'getHelpText/1' -p99700 -S'getHelpText(${1:This}) $2' -p99701 -tp99702 -a(S'getId/1' -p99703 -S'getId(${1:This}) $2' -p99704 -tp99705 -a(S'getLabel/1' -p99706 -S'getLabel(${1:This}) $2' -p99707 -tp99708 -a(S'getMargins/1' -p99709 -S'getMargins(${1:This}) $2' -p99710 -tp99711 -a(S'getMaxSize/1' -p99712 -S'getMaxSize(${1:This}) $2' -p99713 -tp99714 -a(S'getMinSize/1' -p99715 -S'getMinSize(${1:This}) $2' -p99716 -tp99717 -a(S'getName/1' -p99718 -S'getName(${1:This}) $2' -p99719 -tp99720 -a(S'getParent/1' -p99721 -S'getParent(${1:This}) $2' -p99722 -tp99723 -a(S'getPosition/1' -p99724 -S'getPosition(${1:This}) $2' -p99725 -tp99726 -a(S'getRect/1' -p99727 -S'getRect(${1:This}) $2' -p99728 -tp99729 -a(S'getScreenPosition/1' -p99730 -S'getScreenPosition(${1:This}) $2' -p99731 -tp99732 -a(S'getScreenRect/1' -p99733 -S'getScreenRect(${1:This}) $2' -p99734 -tp99735 -a(S'getScrollPos/2' -p99736 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p99737 -tp99738 -a(S'getScrollRange/2' -p99739 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p99740 -tp99741 -a(S'getScrollThumb/2' -p99742 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p99743 -tp99744 -a(S'getSize/1' -p99745 -S'getSize(${1:This}) $2' -p99746 -tp99747 -a(S'getSizer/1' -p99748 -S'getSizer(${1:This}) $2' -p99749 -tp99750 -a(S'getTextExtent/2' -p99751 -S'getTextExtent(${1:This}, ${2:String}) $3' -p99752 -tp99753 -a(S'getTextExtent/3' -p99754 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p99755 -tp99756 -a(S'getToolBitmapSize/1' -p99757 -S'getToolBitmapSize(${1:This}) $2' -p99758 -tp99759 -a(S'getToolEnabled/2' -p99760 -S'getToolEnabled(${1:This}, ${2:Toolid}) $3' -p99761 -tp99762 -a(S'getToolLongHelp/2' -p99763 -S'getToolLongHelp(${1:This}, ${2:Toolid}) $3' -p99764 -tp99765 -a(S'getToolPacking/1' -p99766 -S'getToolPacking(${1:This}) $2' -p99767 -tp99768 -a(S'getToolPos/2' -p99769 -S'getToolPos(${1:This}, ${2:Id}) $3' -p99770 -tp99771 -a(S'getToolSeparation/1' -p99772 -S'getToolSeparation(${1:This}) $2' -p99773 -tp99774 -a(S'getToolShortHelp/2' -p99775 -S'getToolShortHelp(${1:This}, ${2:Toolid}) $3' -p99776 -tp99777 -a(S'getToolSize/1' -p99778 -S'getToolSize(${1:This}) $2' -p99779 -tp99780 -a(S'getToolState/2' -p99781 -S'getToolState(${1:This}, ${2:Toolid}) $3' -p99782 -tp99783 -a(S'getToolTip/1' -p99784 -S'getToolTip(${1:This}) $2' -p99785 -tp99786 -a(S'getUpdateRegion/1' -p99787 -S'getUpdateRegion(${1:This}) $2' -p99788 -tp99789 -a(S'getVirtualSize/1' -p99790 -S'getVirtualSize(${1:This}) $2' -p99791 -tp99792 -a(S'getWindowStyleFlag/1' -p99793 -S'getWindowStyleFlag(${1:This}) $2' -p99794 -tp99795 -a(S'getWindowVariant/1' -p99796 -S'getWindowVariant(${1:This}) $2' -p99797 -tp99798 -a(S'hasCapture/1' -p99799 -S'hasCapture(${1:This}) $2' -p99800 -tp99801 -a(S'hasScrollbar/2' -p99802 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p99803 -tp99804 -a(S'hasTransparentBackground/1' -p99805 -S'hasTransparentBackground(${1:This}) $2' -p99806 -tp99807 -a(S'hide/1' -p99808 -S'hide(${1:This}) $2' -p99809 -tp99810 -a(S'inheritAttributes/1' -p99811 -S'inheritAttributes(${1:This}) $2' -p99812 -tp99813 -a(S'initDialog/1' -p99814 -S'initDialog(${1:This}) $2' -p99815 -tp99816 -a(S'insertControl/3' -p99817 -S'insertControl(${1:This}, ${2:Pos}, ${3:Control}) $4' -p99818 -tp99819 -a(S'insertSeparator/2' -p99820 -S'insertSeparator(${1:This}, ${2:Pos}) $3' -p99821 -tp99822 -a(S'insertTool/3' -p99823 -S'insertTool(${1:This}, ${2:Pos}, ${3:Tool}) $4' -p99824 -tp99825 -a(S'insertTool/4' -p99826 -S'insertTool(${1:This}, ${2:Pos}, ${3:Toolid}, ${4:Bitmap}) $5' -p99827 -tp99828 -a(S'insertTool/5' -p99829 -S'insertTool(${1:This}, ${2:Pos}, ${3:Toolid}, ${4:Label}, ${5:Bitmap}) $6' -p99830 -tp99831 -a(S'insertTool/6' -p99832 -S'insertTool(${1:This}, ${2:Pos}, ${3:Toolid}, ${4:Label}, ${5:Bitmap}, ${6:Param6}) $7' -p99833 -tp99834 -a(S'invalidateBestSize/1' -p99835 -S'invalidateBestSize(${1:This}) $2' -p99836 -tp99837 -a(S'isEnabled/1' -p99838 -S'isEnabled(${1:This}) $2' -p99839 -tp99840 -a(S'isExposed/2' -p99841 -S'isExposed(${1:This}, ${2:Pt}) $3' -p99842 -tp99843 -a(S'isExposed/3' -p99844 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p99845 -tp99846 -a(S'isExposed/5' -p99847 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p99848 -tp99849 -a(S'isRetained/1' -p99850 -S'isRetained(${1:This}) $2' -p99851 -tp99852 -a(S'isShown/1' -p99853 -S'isShown(${1:This}) $2' -p99854 -tp99855 -a(S'isTopLevel/1' -p99856 -S'isTopLevel(${1:This}) $2' -p99857 -tp99858 -a(S'layout/1' -p99859 -S'layout(${1:This}) $2' -p99860 -tp99861 -a(S'lineDown/1' -p99862 -S'lineDown(${1:This}) $2' -p99863 -tp99864 -a(S'lineUp/1' -p99865 -S'lineUp(${1:This}) $2' -p99866 -tp99867 -a(S'lower/1' -p99868 -S'lower(${1:This}) $2' -p99869 -tp99870 -a(S'makeModal/1' -p99871 -S'makeModal(${1:This}) $2' -p99872 -tp99873 -a(S'makeModal/2' -p99874 -S'makeModal(${1:This}, ${2:Options}) $3' -p99875 -tp99876 -a(S'move/2' -p99877 -S'move(${1:This}, ${2:Pt}) $3' -p99878 -tp99879 -a(S'move/3' -p99880 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p99881 -tp99882 -a(S'move/4' -p99883 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p99884 -tp99885 -a(S'moveAfterInTabOrder/2' -p99886 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p99887 -tp99888 -a(S'moveBeforeInTabOrder/2' -p99889 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p99890 -tp99891 -a(S'navigate/1' -p99892 -S'navigate(${1:This}) $2' -p99893 -tp99894 -a(S'navigate/2' -p99895 -S'navigate(${1:This}, ${2:Options}) $3' -p99896 -tp99897 -a(S'pageDown/1' -p99898 -S'pageDown(${1:This}) $2' -p99899 -tp99900 -a(S'pageUp/1' -p99901 -S'pageUp(${1:This}) $2' -p99902 -tp99903 -a(S'parent_class/1' -p99904 -S'parent_class(${1:Param1}) $2' -p99905 -tp99906 -a(S'popEventHandler/1' -p99907 -S'popEventHandler(${1:This}) $2' -p99908 -tp99909 -a(S'popEventHandler/2' -p99910 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p99911 -tp99912 -a(S'popupMenu/2' -p99913 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p99914 -tp99915 -a(S'popupMenu/3' -p99916 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p99917 -tp99918 -a(S'popupMenu/4' -p99919 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p99920 -tp99921 -a(S'raise/1' -p99922 -S'raise(${1:This}) $2' -p99923 -tp99924 -a(S'realize/1' -p99925 -S'realize(${1:This}) $2' -p99926 -tp99927 -a(S'refresh/1' -p99928 -S'refresh(${1:This}) $2' -p99929 -tp99930 -a(S'refresh/2' -p99931 -S'refresh(${1:This}, ${2:Options}) $3' -p99932 -tp99933 -a(S'refreshRect/2' -p99934 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p99935 -tp99936 -a(S'refreshRect/3' -p99937 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p99938 -tp99939 -a(S'releaseMouse/1' -p99940 -S'releaseMouse(${1:This}) $2' -p99941 -tp99942 -a(S'removeChild/2' -p99943 -S'removeChild(${1:This}, ${2:Child}) $3' -p99944 -tp99945 -a(S'removeTool/2' -p99946 -S'removeTool(${1:This}, ${2:Toolid}) $3' -p99947 -tp99948 -a(S'reparent/2' -p99949 -S'reparent(${1:This}, ${2:NewParent}) $3' -p99950 -tp99951 -a(S'screenToClient/1' -p99952 -S'screenToClient(${1:This}) $2' -p99953 -tp99954 -a(S'screenToClient/2' -p99955 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p99956 -tp99957 -a(S'scrollLines/2' -p99958 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p99959 -tp99960 -a(S'scrollPages/2' -p99961 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p99962 -tp99963 -a(S'scrollWindow/3' -p99964 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p99965 -tp99966 -a(S'scrollWindow/4' -p99967 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p99968 -tp99969 -a(S'setAcceleratorTable/2' -p99970 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p99971 -tp99972 -a(S'setAutoLayout/2' -p99973 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p99974 -tp99975 -a(S'setBackgroundColour/2' -p99976 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p99977 -tp99978 -a(S'setBackgroundStyle/2' -p99979 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p99980 -tp99981 -a(S'setCaret/2' -p99982 -S'setCaret(${1:This}, ${2:Caret}) $3' -p99983 -tp99984 -a(S'setClientSize/2' -p99985 -S'setClientSize(${1:This}, ${2:Size}) $3' -p99986 -tp99987 -a(S'setClientSize/3' -p99988 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p99989 -tp99990 -a(S'setContainingSizer/2' -p99991 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p99992 -tp99993 -a(S'setCursor/2' -p99994 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p99995 -tp99996 -a(S'setDropTarget/2' -p99997 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p99998 -tp99999 -a(S'setExtraStyle/2' -p100000 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p100001 -tp100002 -a(S'setFocus/1' -p100003 -S'setFocus(${1:This}) $2' -p100004 -tp100005 -a(S'setFocusFromKbd/1' -p100006 -S'setFocusFromKbd(${1:This}) $2' -p100007 -tp100008 -a(S'setFont/2' -p100009 -S'setFont(${1:This}, ${2:Font}) $3' -p100010 -tp100011 -a(S'setForegroundColour/2' -p100012 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p100013 -tp100014 -a(S'setHelpText/2' -p100015 -S'setHelpText(${1:This}, ${2:Text}) $3' -p100016 -tp100017 -a(S'setId/2' -p100018 -S'setId(${1:This}, ${2:Winid}) $3' -p100019 -tp100020 -a(S'setLabel/2' -p100021 -S'setLabel(${1:This}, ${2:Label}) $3' -p100022 -tp100023 -a(S'setMargins/3' -p100024 -S'setMargins(${1:This}, ${2:X}, ${3:Y}) $4' -p100025 -tp100026 -a(S'setMaxSize/2' -p100027 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p100028 -tp100029 -a(S'setMinSize/2' -p100030 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p100031 -tp100032 -a(S'setName/2' -p100033 -S'setName(${1:This}, ${2:Name}) $3' -p100034 -tp100035 -a(S'setOwnBackgroundColour/2' -p100036 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p100037 -tp100038 -a(S'setOwnFont/2' -p100039 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p100040 -tp100041 -a(S'setOwnForegroundColour/2' -p100042 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p100043 -tp100044 -a(S'setPalette/2' -p100045 -S'setPalette(${1:This}, ${2:Pal}) $3' -p100046 -tp100047 -a(S'setScrollPos/3' -p100048 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p100049 -tp100050 -a(S'setScrollPos/4' -p100051 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p100052 -tp100053 -a(S'setScrollbar/5' -p100054 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p100055 -tp100056 -a(S'setScrollbar/6' -p100057 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p100058 -tp100059 -a(S'setSize/2' -p100060 -S'setSize(${1:This}, ${2:Rect}) $3' -p100061 -tp100062 -a(S'setSize/3' -p100063 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p100064 -tp100065 -a(S'setSize/5' -p100066 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p100067 -tp100068 -a(S'setSize/6' -p100069 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p100070 -tp100071 -a(S'setSizeHints/2' -p100072 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p100073 -tp100074 -a(S'setSizeHints/3' -p100075 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p100076 -tp100077 -a(S'setSizeHints/4' -p100078 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p100079 -tp100080 -a(S'setSizer/2' -p100081 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p100082 -tp100083 -a(S'setSizer/3' -p100084 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p100085 -tp100086 -a(S'setSizerAndFit/2' -p100087 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p100088 -tp100089 -a(S'setSizerAndFit/3' -p100090 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p100091 -tp100092 -a(S'setThemeEnabled/2' -p100093 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p100094 -tp100095 -a(S'setToolBitmapSize/2' -p100096 -S'setToolBitmapSize(${1:This}, ${2:Size}) $3' -p100097 -tp100098 -a(S'setToolLongHelp/3' -p100099 -S'setToolLongHelp(${1:This}, ${2:Toolid}, ${3:HelpString}) $4' -p100100 -tp100101 -a(S'setToolPacking/2' -p100102 -S'setToolPacking(${1:This}, ${2:Packing}) $3' -p100103 -tp100104 -a(S'setToolSeparation/2' -p100105 -S'setToolSeparation(${1:This}, ${2:Separation}) $3' -p100106 -tp100107 -a(S'setToolShortHelp/3' -p100108 -S'setToolShortHelp(${1:This}, ${2:Id}, ${3:HelpString}) $4' -p100109 -tp100110 -a(S'setToolTip/2' -p100111 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p100112 -tp100113 -a(S'setVirtualSize/2' -p100114 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p100115 -tp100116 -a(S'setVirtualSize/3' -p100117 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p100118 -tp100119 -a(S'setVirtualSizeHints/2' -p100120 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p100121 -tp100122 -a(S'setVirtualSizeHints/3' -p100123 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p100124 -tp100125 -a(S'setVirtualSizeHints/4' -p100126 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p100127 -tp100128 -a(S'setWindowStyle/2' -p100129 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p100130 -tp100131 -a(S'setWindowStyleFlag/2' -p100132 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p100133 -tp100134 -a(S'setWindowVariant/2' -p100135 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p100136 -tp100137 -a(S'shouldInheritColours/1' -p100138 -S'shouldInheritColours(${1:This}) $2' -p100139 -tp100140 -a(S'show/1' -p100141 -S'show(${1:This}) $2' -p100142 -tp100143 -a(S'show/2' -p100144 -S'show(${1:This}, ${2:Options}) $3' -p100145 -tp100146 -a(S'thaw/1' -p100147 -S'thaw(${1:This}) $2' -p100148 -tp100149 -a(S'toggleTool/3' -p100150 -S'toggleTool(${1:This}, ${2:Toolid}, ${3:Toggle}) $4' -p100151 -tp100152 -a(S'transferDataFromWindow/1' -p100153 -S'transferDataFromWindow(${1:This}) $2' -p100154 -tp100155 -a(S'transferDataToWindow/1' -p100156 -S'transferDataToWindow(${1:This}) $2' -p100157 -tp100158 -a(S'update/1' -p100159 -S'update(${1:This}) $2' -p100160 -tp100161 -a(S'updateWindowUI/1' -p100162 -S'updateWindowUI(${1:This}) $2' -p100163 -tp100164 -a(S'updateWindowUI/2' -p100165 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p100166 -tp100167 -a(S'validate/1' -p100168 -S'validate(${1:This}) $2' -p100169 -tp100170 -a(S'warpPointer/3' -p100171 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p100172 -tp100173 -asS'snmp_conf' -p100174 -(lp100175 -(S'all_domains/0' -p100176 -S'all_domains() $1' -p100177 -tp100178 -a(S'all_integer/1' -p100179 -S'all_integer(${1:Param1}) $2' -p100180 -tp100181 -a(S'all_tdomains/0' -p100182 -S'all_tdomains() $1' -p100183 -tp100184 -a(S'check_atom/2' -p100185 -S'check_atom(${1:X}, ${2:Atoms}) $3' -p100186 -tp100187 -a(S'check_domain/1' -p100188 -S'check_domain(${1:Domain}) $2' -p100189 -tp100190 -a(S'check_integer/1' -p100191 -S'check_integer(${1:I}) $2' -p100192 -tp100193 -a(S'check_integer/2' -p100194 -S'check_integer(${1:I}, ${2:Param2}) $3' -p100195 -tp100196 -a(S'check_ip/1' -p100197 -S'check_ip(${1:X}) $2' -p100198 -tp100199 -a(S'check_ip/2' -p100200 -S'check_ip(${1:BadDomain}, ${2:X}) $3' -p100201 -tp100202 -a(S'check_mandatory/2' -p100203 -S'check_mandatory(${1:L}, ${2:Param2}) $3' -p100204 -tp100205 -a(S'check_mp_model/1' -p100206 -S'check_mp_model(${1:MPModel}) $2' -p100207 -tp100208 -a(S'check_oid/1' -p100209 -S'check_oid(${1:X}) $2' -p100210 -tp100211 -a(S'check_packet_size/1' -p100212 -S'check_packet_size(${1:S}) $2' -p100213 -tp100214 -a(S'check_sec_level/1' -p100215 -S'check_sec_level(${1:SecLevel}) $2' -p100216 -tp100217 -a(S'check_sec_model/1' -p100218 -S'check_sec_model(${1:SecModel}) $2' -p100219 -tp100220 -a(S'check_sec_model/2' -p100221 -S'check_sec_model(${1:SecModel}, ${2:Exclude}) $3' -p100222 -tp100223 -a(S'check_sec_model/3' -p100224 -S'check_sec_model(${1:M1}, ${2:SecModel}, ${3:Exclude}) $4' -p100225 -tp100226 -a(S'check_string/1' -p100227 -S'check_string(${1:X}) $2' -p100228 -tp100229 -a(S'check_string/2' -p100230 -S'check_string(${1:X}, ${2:Param2}) $3' -p100231 -tp100232 -a(S'check_taddress/1' -p100233 -S'check_taddress(${1:X}) $2' -p100234 -tp100235 -a(S'check_taddress/2' -p100236 -S'check_taddress(${1:BadDomain}, ${2:X}) $3' -p100237 -tp100238 -a(S'check_tdomain/1' -p100239 -S'check_tdomain(${1:TDomain}) $2' -p100240 -tp100241 -a(S'check_timer/1' -p100242 -S'check_timer(${1:T}) $2' -p100243 -tp100244 -a(S'mk_taddress/3' -p100245 -S'mk_taddress(${1:Domain}, ${2:Ip}, ${3:Port}) $4' -p100246 -tp100247 -a(S'mk_tdomain/1' -p100248 -S'mk_tdomain(${1:BadDomain}) $2' -p100249 -tp100250 -a(S'read/2' -p100251 -S'read(${1:File}, ${2:Check}) $3' -p100252 -tp100253 -a(S'read_files/2' -p100254 -S'read_files(${1:Dir}, ${2:Files}) $3' -p100255 -tp100256 -a(S'which_domain/1' -p100257 -S'which_domain(${1:Ip}) $2' -p100258 -tp100259 -asS'v3_core' -p100260 -(lp100261 -(S'format_error/1' -p100262 -S'format_error(${1:Param1}) $2' -p100263 -tp100264 -a(S'module/2' -p100265 -S'module(${1:Param1}, ${2:Opts}) $3' -p100266 -tp100267 -asS'error_logger_file_h' -p100268 -(lp100269 -(S'code_change/3' -p100270 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p100271 -tp100272 -a(S'handle_call/2' -p100273 -S'handle_call(${1:Param1}, ${2:State}) $3' -p100274 -tp100275 -a(S'handle_event/2' -p100276 -S'handle_event(${1:Event}, ${2:State}) $3' -p100277 -tp100278 -a(S'handle_info/2' -p100279 -S'handle_info(${1:Param1}, ${2:State}) $3' -p100280 -tp100281 -a(S'init/1' -p100282 -S'init(${1:File}) $2' -p100283 -tp100284 -a(S'terminate/2' -p100285 -S'terminate(${1:Param1}, ${2:State}) $3' -p100286 -tp100287 -asS'eunit' -p100288 -(lp100289 -(S'start/0' -p100290 -S'start() $1' -p100291 -tp100292 -a(S'start/1' -p100293 -S'start(${1:Server}) $2' -p100294 -tp100295 -a(S'stop/0' -p100296 -S'stop() $1' -p100297 -tp100298 -a(S'stop/1' -p100299 -S'stop(${1:Server}) $2' -p100300 -tp100301 -a(S'submit/1' -p100302 -S'submit(${1:T}) $2' -p100303 -tp100304 -a(S'submit/2' -p100305 -S'submit(${1:T}, ${2:Options}) $3' -p100306 -tp100307 -a(S'submit/3' -p100308 -S'submit(${1:Server}, ${2:T}, ${3:Options}) $4' -p100309 -tp100310 -a(S'test/1' -p100311 -S'test(${1:Tests}) $2' -p100312 -tp100313 -a(S'test/2' -p100314 -S'test(${1:Tests}, ${2:Options}) $3' -p100315 -tp100316 -a(S'test/3' -p100317 -S'test(${1:Server}, ${2:Tests}, ${3:Options}) $4' -p100318 -tp100319 -a(S'watch/1' -p100320 -S'watch(${1:Target}) $2' -p100321 -tp100322 -a(S'watch/2' -p100323 -S'watch(${1:Target}, ${2:Options}) $3' -p100324 -tp100325 -a(S'watch/3' -p100326 -S'watch(${1:Server}, ${2:Target}, ${3:Options}) $4' -p100327 -tp100328 -a(S'watch_app/1' -p100329 -S'watch_app(${1:Name}) $2' -p100330 -tp100331 -a(S'watch_app/2' -p100332 -S'watch_app(${1:Name}, ${2:Options}) $3' -p100333 -tp100334 -a(S'watch_app/3' -p100335 -S'watch_app(${1:Server}, ${2:Name}, ${3:Options}) $4' -p100336 -tp100337 -a(S'watch_path/1' -p100338 -S'watch_path(${1:Target}) $2' -p100339 -tp100340 -a(S'watch_path/2' -p100341 -S'watch_path(${1:Target}, ${2:Options}) $3' -p100342 -tp100343 -a(S'watch_path/3' -p100344 -S'watch_path(${1:Server}, ${2:Target}, ${3:Options}) $4' -p100345 -tp100346 -a(S'watch_regexp/1' -p100347 -S'watch_regexp(${1:Target}) $2' -p100348 -tp100349 -a(S'watch_regexp/2' -p100350 -S'watch_regexp(${1:Target}, ${2:Options}) $3' -p100351 -tp100352 -a(S'watch_regexp/3' -p100353 -S'watch_regexp(${1:Server}, ${2:Target}, ${3:Options}) $4' -p100354 -tp100355 -asS'xmerl_sax_simple_dom' -p100356 -(lp100357 -(S'event/3' -p100358 -S'event(${1:Event}, ${2:Param2}, ${3:State}) $4' -p100359 -tp100360 -a(S'get_dom/1' -p100361 -S'get_dom(${1:Param1}) $2' -p100362 -tp100363 -a(S'initial_state/0' -p100364 -S'initial_state() $1' -p100365 -tp100366 -asS'wxStatusBar' -p100367 -(lp100368 -(S'cacheBestSize/2' -p100369 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p100370 -tp100371 -a(S'captureMouse/1' -p100372 -S'captureMouse(${1:This}) $2' -p100373 -tp100374 -a(S'center/1' -p100375 -S'center(${1:This}) $2' -p100376 -tp100377 -a(S'center/2' -p100378 -S'center(${1:This}, ${2:Options}) $3' -p100379 -tp100380 -a(S'centerOnParent/1' -p100381 -S'centerOnParent(${1:This}) $2' -p100382 -tp100383 -a(S'centerOnParent/2' -p100384 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p100385 -tp100386 -a(S'centre/1' -p100387 -S'centre(${1:This}) $2' -p100388 -tp100389 -a(S'centre/2' -p100390 -S'centre(${1:This}, ${2:Options}) $3' -p100391 -tp100392 -a(S'centreOnParent/1' -p100393 -S'centreOnParent(${1:This}) $2' -p100394 -tp100395 -a(S'centreOnParent/2' -p100396 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p100397 -tp100398 -a(S'clearBackground/1' -p100399 -S'clearBackground(${1:This}) $2' -p100400 -tp100401 -a(S'clientToScreen/2' -p100402 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p100403 -tp100404 -a(S'clientToScreen/3' -p100405 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p100406 -tp100407 -a(S'close/1' -p100408 -S'close(${1:This}) $2' -p100409 -tp100410 -a(S'close/2' -p100411 -S'close(${1:This}, ${2:Options}) $3' -p100412 -tp100413 -a(S'connect/2' -p100414 -S'connect(${1:This}, ${2:EventType}) $3' -p100415 -tp100416 -a(S'connect/3' -p100417 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p100418 -tp100419 -a(S'convertDialogToPixels/2' -p100420 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p100421 -tp100422 -a(S'convertPixelsToDialog/2' -p100423 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p100424 -tp100425 -a(S'create/2' -p100426 -S'create(${1:This}, ${2:Parent}) $3' -p100427 -tp100428 -a(S'create/3' -p100429 -S'create(${1:This}, ${2:Parent}, ${3:Param3}) $4' -p100430 -tp100431 -a(S'destroy/1' -p100432 -S'destroy(${1:This}) $2' -p100433 -tp100434 -a(S'destroyChildren/1' -p100435 -S'destroyChildren(${1:This}) $2' -p100436 -tp100437 -a(S'disable/1' -p100438 -S'disable(${1:This}) $2' -p100439 -tp100440 -a(S'disconnect/1' -p100441 -S'disconnect(${1:This}) $2' -p100442 -tp100443 -a(S'disconnect/2' -p100444 -S'disconnect(${1:This}, ${2:EventType}) $3' -p100445 -tp100446 -a(S'disconnect/3' -p100447 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p100448 -tp100449 -a(S'enable/1' -p100450 -S'enable(${1:This}) $2' -p100451 -tp100452 -a(S'enable/2' -p100453 -S'enable(${1:This}, ${2:Options}) $3' -p100454 -tp100455 -a(S'findWindow/2' -p100456 -S'findWindow(${1:This}, ${2:Winid}) $3' -p100457 -tp100458 -a(S'fit/1' -p100459 -S'fit(${1:This}) $2' -p100460 -tp100461 -a(S'fitInside/1' -p100462 -S'fitInside(${1:This}) $2' -p100463 -tp100464 -a(S'freeze/1' -p100465 -S'freeze(${1:This}) $2' -p100466 -tp100467 -a(S'getAcceleratorTable/1' -p100468 -S'getAcceleratorTable(${1:This}) $2' -p100469 -tp100470 -a(S'getBackgroundColour/1' -p100471 -S'getBackgroundColour(${1:This}) $2' -p100472 -tp100473 -a(S'getBackgroundStyle/1' -p100474 -S'getBackgroundStyle(${1:This}) $2' -p100475 -tp100476 -a(S'getBestSize/1' -p100477 -S'getBestSize(${1:This}) $2' -p100478 -tp100479 -a(S'getCaret/1' -p100480 -S'getCaret(${1:This}) $2' -p100481 -tp100482 -a(S'getCharHeight/1' -p100483 -S'getCharHeight(${1:This}) $2' -p100484 -tp100485 -a(S'getCharWidth/1' -p100486 -S'getCharWidth(${1:This}) $2' -p100487 -tp100488 -a(S'getChildren/1' -p100489 -S'getChildren(${1:This}) $2' -p100490 -tp100491 -a(S'getClientSize/1' -p100492 -S'getClientSize(${1:This}) $2' -p100493 -tp100494 -a(S'getContainingSizer/1' -p100495 -S'getContainingSizer(${1:This}) $2' -p100496 -tp100497 -a(S'getCursor/1' -p100498 -S'getCursor(${1:This}) $2' -p100499 -tp100500 -a(S'getDropTarget/1' -p100501 -S'getDropTarget(${1:This}) $2' -p100502 -tp100503 -a(S'getEventHandler/1' -p100504 -S'getEventHandler(${1:This}) $2' -p100505 -tp100506 -a(S'getExtraStyle/1' -p100507 -S'getExtraStyle(${1:This}) $2' -p100508 -tp100509 -a(S'getFieldRect/3' -p100510 -S'getFieldRect(${1:This}, ${2:I}, ${3:Rect}) $4' -p100511 -tp100512 -a(S'getFieldsCount/1' -p100513 -S'getFieldsCount(${1:This}) $2' -p100514 -tp100515 -a(S'getFont/1' -p100516 -S'getFont(${1:This}) $2' -p100517 -tp100518 -a(S'getForegroundColour/1' -p100519 -S'getForegroundColour(${1:This}) $2' -p100520 -tp100521 -a(S'getGrandParent/1' -p100522 -S'getGrandParent(${1:This}) $2' -p100523 -tp100524 -a(S'getHandle/1' -p100525 -S'getHandle(${1:This}) $2' -p100526 -tp100527 -a(S'getHelpText/1' -p100528 -S'getHelpText(${1:This}) $2' -p100529 -tp100530 -a(S'getId/1' -p100531 -S'getId(${1:This}) $2' -p100532 -tp100533 -a(S'getLabel/1' -p100534 -S'getLabel(${1:This}) $2' -p100535 -tp100536 -a(S'getMaxSize/1' -p100537 -S'getMaxSize(${1:This}) $2' -p100538 -tp100539 -a(S'getMinSize/1' -p100540 -S'getMinSize(${1:This}) $2' -p100541 -tp100542 -a(S'getName/1' -p100543 -S'getName(${1:This}) $2' -p100544 -tp100545 -a(S'getParent/1' -p100546 -S'getParent(${1:This}) $2' -p100547 -tp100548 -a(S'getPosition/1' -p100549 -S'getPosition(${1:This}) $2' -p100550 -tp100551 -a(S'getRect/1' -p100552 -S'getRect(${1:This}) $2' -p100553 -tp100554 -a(S'getScreenPosition/1' -p100555 -S'getScreenPosition(${1:This}) $2' -p100556 -tp100557 -a(S'getScreenRect/1' -p100558 -S'getScreenRect(${1:This}) $2' -p100559 -tp100560 -a(S'getScrollPos/2' -p100561 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p100562 -tp100563 -a(S'getScrollRange/2' -p100564 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p100565 -tp100566 -a(S'getScrollThumb/2' -p100567 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p100568 -tp100569 -a(S'getSize/1' -p100570 -S'getSize(${1:This}) $2' -p100571 -tp100572 -a(S'getSizer/1' -p100573 -S'getSizer(${1:This}) $2' -p100574 -tp100575 -a(S'getStatusText/1' -p100576 -S'getStatusText(${1:This}) $2' -p100577 -tp100578 -a(S'getStatusText/2' -p100579 -S'getStatusText(${1:This}, ${2:Param2}) $3' -p100580 -tp100581 -a(S'getTextExtent/2' -p100582 -S'getTextExtent(${1:This}, ${2:String}) $3' -p100583 -tp100584 -a(S'getTextExtent/3' -p100585 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p100586 -tp100587 -a(S'getToolTip/1' -p100588 -S'getToolTip(${1:This}) $2' -p100589 -tp100590 -a(S'getUpdateRegion/1' -p100591 -S'getUpdateRegion(${1:This}) $2' -p100592 -tp100593 -a(S'getVirtualSize/1' -p100594 -S'getVirtualSize(${1:This}) $2' -p100595 -tp100596 -a(S'getWindowStyleFlag/1' -p100597 -S'getWindowStyleFlag(${1:This}) $2' -p100598 -tp100599 -a(S'getWindowVariant/1' -p100600 -S'getWindowVariant(${1:This}) $2' -p100601 -tp100602 -a(S'hasCapture/1' -p100603 -S'hasCapture(${1:This}) $2' -p100604 -tp100605 -a(S'hasScrollbar/2' -p100606 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p100607 -tp100608 -a(S'hasTransparentBackground/1' -p100609 -S'hasTransparentBackground(${1:This}) $2' -p100610 -tp100611 -a(S'hide/1' -p100612 -S'hide(${1:This}) $2' -p100613 -tp100614 -a(S'inheritAttributes/1' -p100615 -S'inheritAttributes(${1:This}) $2' -p100616 -tp100617 -a(S'initDialog/1' -p100618 -S'initDialog(${1:This}) $2' -p100619 -tp100620 -a(S'invalidateBestSize/1' -p100621 -S'invalidateBestSize(${1:This}) $2' -p100622 -tp100623 -a(S'isEnabled/1' -p100624 -S'isEnabled(${1:This}) $2' -p100625 -tp100626 -a(S'isExposed/2' -p100627 -S'isExposed(${1:This}, ${2:Pt}) $3' -p100628 -tp100629 -a(S'isExposed/3' -p100630 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p100631 -tp100632 -a(S'isExposed/5' -p100633 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p100634 -tp100635 -a(S'isRetained/1' -p100636 -S'isRetained(${1:This}) $2' -p100637 -tp100638 -a(S'isShown/1' -p100639 -S'isShown(${1:This}) $2' -p100640 -tp100641 -a(S'isTopLevel/1' -p100642 -S'isTopLevel(${1:This}) $2' -p100643 -tp100644 -a(S'layout/1' -p100645 -S'layout(${1:This}) $2' -p100646 -tp100647 -a(S'lineDown/1' -p100648 -S'lineDown(${1:This}) $2' -p100649 -tp100650 -a(S'lineUp/1' -p100651 -S'lineUp(${1:This}) $2' -p100652 -tp100653 -a(S'lower/1' -p100654 -S'lower(${1:This}) $2' -p100655 -tp100656 -a(S'makeModal/1' -p100657 -S'makeModal(${1:This}) $2' -p100658 -tp100659 -a(S'makeModal/2' -p100660 -S'makeModal(${1:This}, ${2:Options}) $3' -p100661 -tp100662 -a(S'move/2' -p100663 -S'move(${1:This}, ${2:Pt}) $3' -p100664 -tp100665 -a(S'move/3' -p100666 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p100667 -tp100668 -a(S'move/4' -p100669 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p100670 -tp100671 -a(S'moveAfterInTabOrder/2' -p100672 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p100673 -tp100674 -a(S'moveBeforeInTabOrder/2' -p100675 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p100676 -tp100677 -a(S'navigate/1' -p100678 -S'navigate(${1:This}) $2' -p100679 -tp100680 -a(S'navigate/2' -p100681 -S'navigate(${1:This}, ${2:Options}) $3' -p100682 -tp100683 -a(S'new/0' -p100684 -S'new() $1' -p100685 -tp100686 -a(S'new/1' -p100687 -S'new(${1:Parent}) $2' -p100688 -tp100689 -a(S'new/2' -p100690 -S'new(${1:Parent}, ${2:Param2}) $3' -p100691 -tp100692 -a(S'pageDown/1' -p100693 -S'pageDown(${1:This}) $2' -p100694 -tp100695 -a(S'pageUp/1' -p100696 -S'pageUp(${1:This}) $2' -p100697 -tp100698 -a(S'parent_class/1' -p100699 -S'parent_class(${1:Param1}) $2' -p100700 -tp100701 -a(S'popEventHandler/1' -p100702 -S'popEventHandler(${1:This}) $2' -p100703 -tp100704 -a(S'popEventHandler/2' -p100705 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p100706 -tp100707 -a(S'popStatusText/1' -p100708 -S'popStatusText(${1:This}) $2' -p100709 -tp100710 -a(S'popStatusText/2' -p100711 -S'popStatusText(${1:This}, ${2:Param2}) $3' -p100712 -tp100713 -a(S'popupMenu/2' -p100714 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p100715 -tp100716 -a(S'popupMenu/3' -p100717 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p100718 -tp100719 -a(S'popupMenu/4' -p100720 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p100721 -tp100722 -a(S'pushStatusText/2' -p100723 -S'pushStatusText(${1:This}, ${2:Text}) $3' -p100724 -tp100725 -a(S'pushStatusText/3' -p100726 -S'pushStatusText(${1:This}, ${2:Text}, ${3:Param3}) $4' -p100727 -tp100728 -a(S'raise/1' -p100729 -S'raise(${1:This}) $2' -p100730 -tp100731 -a(S'refresh/1' -p100732 -S'refresh(${1:This}) $2' -p100733 -tp100734 -a(S'refresh/2' -p100735 -S'refresh(${1:This}, ${2:Options}) $3' -p100736 -tp100737 -a(S'refreshRect/2' -p100738 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p100739 -tp100740 -a(S'refreshRect/3' -p100741 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p100742 -tp100743 -a(S'releaseMouse/1' -p100744 -S'releaseMouse(${1:This}) $2' -p100745 -tp100746 -a(S'removeChild/2' -p100747 -S'removeChild(${1:This}, ${2:Child}) $3' -p100748 -tp100749 -a(S'reparent/2' -p100750 -S'reparent(${1:This}, ${2:NewParent}) $3' -p100751 -tp100752 -a(S'screenToClient/1' -p100753 -S'screenToClient(${1:This}) $2' -p100754 -tp100755 -a(S'screenToClient/2' -p100756 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p100757 -tp100758 -a(S'scrollLines/2' -p100759 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p100760 -tp100761 -a(S'scrollPages/2' -p100762 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p100763 -tp100764 -a(S'scrollWindow/3' -p100765 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p100766 -tp100767 -a(S'scrollWindow/4' -p100768 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p100769 -tp100770 -a(S'setAcceleratorTable/2' -p100771 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p100772 -tp100773 -a(S'setAutoLayout/2' -p100774 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p100775 -tp100776 -a(S'setBackgroundColour/2' -p100777 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p100778 -tp100779 -a(S'setBackgroundStyle/2' -p100780 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p100781 -tp100782 -a(S'setCaret/2' -p100783 -S'setCaret(${1:This}, ${2:Caret}) $3' -p100784 -tp100785 -a(S'setClientSize/2' -p100786 -S'setClientSize(${1:This}, ${2:Size}) $3' -p100787 -tp100788 -a(S'setClientSize/3' -p100789 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p100790 -tp100791 -a(S'setContainingSizer/2' -p100792 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p100793 -tp100794 -a(S'setCursor/2' -p100795 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p100796 -tp100797 -a(S'setDropTarget/2' -p100798 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p100799 -tp100800 -a(S'setExtraStyle/2' -p100801 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p100802 -tp100803 -a(S'setFieldsCount/2' -p100804 -S'setFieldsCount(${1:This}, ${2:Number}) $3' -p100805 -tp100806 -a(S'setFieldsCount/3' -p100807 -S'setFieldsCount(${1:This}, ${2:Number}, ${3:Param3}) $4' -p100808 -tp100809 -a(S'setFocus/1' -p100810 -S'setFocus(${1:This}) $2' -p100811 -tp100812 -a(S'setFocusFromKbd/1' -p100813 -S'setFocusFromKbd(${1:This}) $2' -p100814 -tp100815 -a(S'setFont/2' -p100816 -S'setFont(${1:This}, ${2:Font}) $3' -p100817 -tp100818 -a(S'setForegroundColour/2' -p100819 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p100820 -tp100821 -a(S'setHelpText/2' -p100822 -S'setHelpText(${1:This}, ${2:Text}) $3' -p100823 -tp100824 -a(S'setId/2' -p100825 -S'setId(${1:This}, ${2:Winid}) $3' -p100826 -tp100827 -a(S'setLabel/2' -p100828 -S'setLabel(${1:This}, ${2:Label}) $3' -p100829 -tp100830 -a(S'setMaxSize/2' -p100831 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p100832 -tp100833 -a(S'setMinHeight/2' -p100834 -S'setMinHeight(${1:This}, ${2:Height}) $3' -p100835 -tp100836 -a(S'setMinSize/2' -p100837 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p100838 -tp100839 -a(S'setName/2' -p100840 -S'setName(${1:This}, ${2:Name}) $3' -p100841 -tp100842 -a(S'setOwnBackgroundColour/2' -p100843 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p100844 -tp100845 -a(S'setOwnFont/2' -p100846 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p100847 -tp100848 -a(S'setOwnForegroundColour/2' -p100849 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p100850 -tp100851 -a(S'setPalette/2' -p100852 -S'setPalette(${1:This}, ${2:Pal}) $3' -p100853 -tp100854 -a(S'setScrollPos/3' -p100855 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p100856 -tp100857 -a(S'setScrollPos/4' -p100858 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p100859 -tp100860 -a(S'setScrollbar/5' -p100861 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p100862 -tp100863 -a(S'setScrollbar/6' -p100864 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p100865 -tp100866 -a(S'setSize/2' -p100867 -S'setSize(${1:This}, ${2:Rect}) $3' -p100868 -tp100869 -a(S'setSize/3' -p100870 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p100871 -tp100872 -a(S'setSize/5' -p100873 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p100874 -tp100875 -a(S'setSize/6' -p100876 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p100877 -tp100878 -a(S'setSizeHints/2' -p100879 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p100880 -tp100881 -a(S'setSizeHints/3' -p100882 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p100883 -tp100884 -a(S'setSizeHints/4' -p100885 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p100886 -tp100887 -a(S'setSizer/2' -p100888 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p100889 -tp100890 -a(S'setSizer/3' -p100891 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p100892 -tp100893 -a(S'setSizerAndFit/2' -p100894 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p100895 -tp100896 -a(S'setSizerAndFit/3' -p100897 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p100898 -tp100899 -a(S'setStatusStyles/2' -p100900 -S'setStatusStyles(${1:This}, ${2:Styles}) $3' -p100901 -tp100902 -a(S'setStatusText/2' -p100903 -S'setStatusText(${1:This}, ${2:Text}) $3' -p100904 -tp100905 -a(S'setStatusText/3' -p100906 -S'setStatusText(${1:This}, ${2:Text}, ${3:Param3}) $4' -p100907 -tp100908 -a(S'setStatusWidths/2' -p100909 -S'setStatusWidths(${1:This}, ${2:Widths_field}) $3' -p100910 -tp100911 -a(S'setThemeEnabled/2' -p100912 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p100913 -tp100914 -a(S'setToolTip/2' -p100915 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p100916 -tp100917 -a(S'setVirtualSize/2' -p100918 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p100919 -tp100920 -a(S'setVirtualSize/3' -p100921 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p100922 -tp100923 -a(S'setVirtualSizeHints/2' -p100924 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p100925 -tp100926 -a(S'setVirtualSizeHints/3' -p100927 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p100928 -tp100929 -a(S'setVirtualSizeHints/4' -p100930 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p100931 -tp100932 -a(S'setWindowStyle/2' -p100933 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p100934 -tp100935 -a(S'setWindowStyleFlag/2' -p100936 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p100937 -tp100938 -a(S'setWindowVariant/2' -p100939 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p100940 -tp100941 -a(S'shouldInheritColours/1' -p100942 -S'shouldInheritColours(${1:This}) $2' -p100943 -tp100944 -a(S'show/1' -p100945 -S'show(${1:This}) $2' -p100946 -tp100947 -a(S'show/2' -p100948 -S'show(${1:This}, ${2:Options}) $3' -p100949 -tp100950 -a(S'thaw/1' -p100951 -S'thaw(${1:This}) $2' -p100952 -tp100953 -a(S'transferDataFromWindow/1' -p100954 -S'transferDataFromWindow(${1:This}) $2' -p100955 -tp100956 -a(S'transferDataToWindow/1' -p100957 -S'transferDataToWindow(${1:This}) $2' -p100958 -tp100959 -a(S'update/1' -p100960 -S'update(${1:This}) $2' -p100961 -tp100962 -a(S'updateWindowUI/1' -p100963 -S'updateWindowUI(${1:This}) $2' -p100964 -tp100965 -a(S'updateWindowUI/2' -p100966 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p100967 -tp100968 -a(S'validate/1' -p100969 -S'validate(${1:This}) $2' -p100970 -tp100971 -a(S'warpPointer/3' -p100972 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p100973 -tp100974 -asS'wxSizer' -p100975 -(lp100976 -(S'add/2' -p100977 -S'add(${1:This}, ${2:Window}) $3' -p100978 -tp100979 -a(S'add/3' -p100980 -S'add(${1:This}, ${2:Width}, ${3:Height}) $4' -p100981 -tp100982 -a(S'add/4' -p100983 -S'add(${1:This}, ${2:Width}, ${3:Height}, ${4:Param4}) $5' -p100984 -tp100985 -a(S'addSpacer/2' -p100986 -S'addSpacer(${1:This}, ${2:Size}) $3' -p100987 -tp100988 -a(S'addStretchSpacer/1' -p100989 -S'addStretchSpacer(${1:This}) $2' -p100990 -tp100991 -a(S'addStretchSpacer/2' -p100992 -S'addStretchSpacer(${1:This}, ${2:Param2}) $3' -p100993 -tp100994 -a(S'calcMin/1' -p100995 -S'calcMin(${1:This}) $2' -p100996 -tp100997 -a(S'clear/1' -p100998 -S'clear(${1:This}) $2' -p100999 -tp101000 -a(S'clear/2' -p101001 -S'clear(${1:This}, ${2:Param2}) $3' -p101002 -tp101003 -a(S'detach/2' -p101004 -S'detach(${1:This}, ${2:Index}) $3' -p101005 -tp101006 -a(S'fit/2' -p101007 -S'fit(${1:This}, ${2:Window}) $3' -p101008 -tp101009 -a(S'fitInside/2' -p101010 -S'fitInside(${1:This}, ${2:Window}) $3' -p101011 -tp101012 -a(S'getChildren/1' -p101013 -S'getChildren(${1:This}) $2' -p101014 -tp101015 -a(S'getItem/2' -p101016 -S'getItem(${1:This}, ${2:Window}) $3' -p101017 -tp101018 -a(S'getItem/3' -p101019 -S'getItem(${1:This}, ${2:Window}, ${3:Param3}) $4' -p101020 -tp101021 -a(S'getMinSize/1' -p101022 -S'getMinSize(${1:This}) $2' -p101023 -tp101024 -a(S'getPosition/1' -p101025 -S'getPosition(${1:This}) $2' -p101026 -tp101027 -a(S'getSize/1' -p101028 -S'getSize(${1:This}) $2' -p101029 -tp101030 -a(S'hide/2' -p101031 -S'hide(${1:This}, ${2:Window}) $3' -p101032 -tp101033 -a(S'hide/3' -p101034 -S'hide(${1:This}, ${2:Window}, ${3:Param3}) $4' -p101035 -tp101036 -a(S'insert/3' -p101037 -S'insert(${1:This}, ${2:Index}, ${3:Item}) $4' -p101038 -tp101039 -a(S'insert/4' -p101040 -S'insert(${1:This}, ${2:Index}, ${3:Width}, ${4:Height}) $5' -p101041 -tp101042 -a(S'insert/5' -p101043 -S'insert(${1:This}, ${2:Index}, ${3:Width}, ${4:Height}, ${5:Param5}) $6' -p101044 -tp101045 -a(S'insertSpacer/3' -p101046 -S'insertSpacer(${1:This}, ${2:Index}, ${3:Size}) $4' -p101047 -tp101048 -a(S'insertStretchSpacer/2' -p101049 -S'insertStretchSpacer(${1:This}, ${2:Index}) $3' -p101050 -tp101051 -a(S'insertStretchSpacer/3' -p101052 -S'insertStretchSpacer(${1:This}, ${2:Index}, ${3:Param3}) $4' -p101053 -tp101054 -a(S'isShown/2' -p101055 -S'isShown(${1:This}, ${2:Index}) $3' -p101056 -tp101057 -a(S'layout/1' -p101058 -S'layout(${1:This}) $2' -p101059 -tp101060 -a(S'parent_class/1' -p101061 -S'parent_class(${1:Param1}) $2' -p101062 -tp101063 -a(S'prepend/2' -p101064 -S'prepend(${1:This}, ${2:Item}) $3' -p101065 -tp101066 -a(S'prepend/3' -p101067 -S'prepend(${1:This}, ${2:Width}, ${3:Height}) $4' -p101068 -tp101069 -a(S'prepend/4' -p101070 -S'prepend(${1:This}, ${2:Width}, ${3:Height}, ${4:Param4}) $5' -p101071 -tp101072 -a(S'prependSpacer/2' -p101073 -S'prependSpacer(${1:This}, ${2:Size}) $3' -p101074 -tp101075 -a(S'prependStretchSpacer/1' -p101076 -S'prependStretchSpacer(${1:This}) $2' -p101077 -tp101078 -a(S'prependStretchSpacer/2' -p101079 -S'prependStretchSpacer(${1:This}, ${2:Param2}) $3' -p101080 -tp101081 -a(S'recalcSizes/1' -p101082 -S'recalcSizes(${1:This}) $2' -p101083 -tp101084 -a(S'remove/2' -p101085 -S'remove(${1:This}, ${2:Index}) $3' -p101086 -tp101087 -a(S'replace/3' -p101088 -S'replace(${1:This}, ${2:Oldwin}, ${3:Newwin}) $4' -p101089 -tp101090 -a(S'replace/4' -p101091 -S'replace(${1:This}, ${2:Oldwin}, ${3:Newwin}, ${4:Param4}) $5' -p101092 -tp101093 -a(S'setDimension/5' -p101094 -S'setDimension(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p101095 -tp101096 -a(S'setItemMinSize/3' -p101097 -S'setItemMinSize(${1:This}, ${2:Index}, ${3:Size}) $4' -p101098 -tp101099 -a(S'setItemMinSize/4' -p101100 -S'setItemMinSize(${1:This}, ${2:Index}, ${3:Width}, ${4:Height}) $5' -p101101 -tp101102 -a(S'setMinSize/2' -p101103 -S'setMinSize(${1:This}, ${2:Size}) $3' -p101104 -tp101105 -a(S'setMinSize/3' -p101106 -S'setMinSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p101107 -tp101108 -a(S'setSizeHints/2' -p101109 -S'setSizeHints(${1:This}, ${2:Window}) $3' -p101110 -tp101111 -a(S'setVirtualSizeHints/2' -p101112 -S'setVirtualSizeHints(${1:This}, ${2:Window}) $3' -p101113 -tp101114 -a(S'show/2' -p101115 -S'show(${1:This}, ${2:Index}) $3' -p101116 -tp101117 -a(S'show/3' -p101118 -S'show(${1:This}, ${2:Index}, ${3:Param3}) $4' -p101119 -tp101120 -asS'application_starter' -p101121 -(lp101122 -(S'start/3' -p101123 -S'start(${1:Param1}, ${2:Type}, ${3:Apps}) $4' -p101124 -tp101125 -asS'orber_iiop_inproxy' -p101126 -(lp101127 -(S'code_change/3' -p101128 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p101129 -tp101130 -a(S'handle_call/3' -p101131 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p101132 -tp101133 -a(S'handle_cast/2' -p101134 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p101135 -tp101136 -a(S'handle_info/2' -p101137 -S'handle_info(${1:Param1}, ${2:State}) $3' -p101138 -tp101139 -a(S'init/1' -p101140 -S'init(${1:Param1}) $2' -p101141 -tp101142 -a(S'post_accept/3' -p101143 -S'post_accept(${1:Pid}, ${2:Param2}, ${3:Socket}) $4' -p101144 -tp101145 -a(S'start/0' -p101146 -S'start() $1' -p101147 -tp101148 -a(S'start/1' -p101149 -S'start(${1:Opts}) $2' -p101150 -tp101151 -a(S'stop/1' -p101152 -S'stop(${1:Pid}) $2' -p101153 -tp101154 -a(S'terminate/2' -p101155 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p101156 -tp101157 -asS'mod_trace' -p101158 -(lp101159 -(S'do/1' -p101160 -S'do(${1:Info}) $2' -p101161 -tp101162 -asS'erl_lint' -p101163 -(lp101164 -(S'bool_option/4' -p101165 -S'bool_option(${1:On}, ${2:Off}, ${3:Default}, ${4:Opts}) $5' -p101166 -tp101167 -a(S'exprs/2' -p101168 -S'exprs(${1:Exprs}, ${2:BindingsList}) $3' -p101169 -tp101170 -a(S'exprs_opt/3' -p101171 -S'exprs_opt(${1:Exprs}, ${2:BindingsList}, ${3:Opts}) $4' -p101172 -tp101173 -a(S'format_error/1' -p101174 -S'format_error(${1:ErrorDescriptor}) $2' -p101175 -tp101176 -a(S'is_guard_expr/1' -p101177 -S'is_guard_expr(${1:E}) $2' -p101178 -tp101179 -a(S'is_guard_test/1' -p101180 -S'is_guard_test(${1:Expr}) $2' -p101181 -tp101182 -a(S'is_guard_test/2' -p101183 -S'is_guard_test(${1:Expression}, ${2:Forms}) $3' -p101184 -tp101185 -a(S'is_pattern_expr/1' -p101186 -S'is_pattern_expr(${1:Expr}) $2' -p101187 -tp101188 -a(S'modify_line/2' -p101189 -S'modify_line(${1:Expr}, ${2:F0}) $3' -p101190 -tp101191 -a(S'module/1' -p101192 -S'module(${1:AbsForms}) $2' -p101193 -tp101194 -a(S'module/2' -p101195 -S'module(${1:AbsForms}, ${2:FileName}) $3' -p101196 -tp101197 -a(S'module/3' -p101198 -S'module(${1:AbsForms}, ${2:FileName}, ${3:CompileOptions}) $4' -p101199 -tp101200 -a(S'used_vars/2' -p101201 -S'used_vars(${1:Exprs}, ${2:BindingsList}) $3' -p101202 -tp101203 -a(S'value_option/3' -p101204 -S'value_option(${1:Flag}, ${2:Default}, ${3:Opts}) $4' -p101205 -tp101206 -a(S'value_option/7' -p101207 -S'value_option(${1:Flag}, ${2:Default}, ${3:On}, ${4:OnVal}, ${5:Off}, ${6:OffVal}, ${7:Opts}) $8' -p101208 -tp101209 -asS'CosTime_TIO' -p101210 -(lp101211 -(S"'_get_time_interval'/1" -p101212 -S"'_get_time_interval'(${1:OE_THIS}) $2" -p101213 -tp101214 -a(S"'_get_time_interval'/2" -p101215 -S"'_get_time_interval'(${1:OE_THIS}, ${2:OE_Options}) $3" -p101216 -tp101217 -a(S'code_change/3' -p101218 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p101219 -tp101220 -a(S'handle_call/3' -p101221 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p101222 -tp101223 -a(S'handle_cast/2' -p101224 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p101225 -tp101226 -a(S'handle_info/2' -p101227 -S'handle_info(${1:Info}, ${2:State}) $3' -p101228 -tp101229 -a(S'init/1' -p101230 -S'init(${1:Env}) $2' -p101231 -tp101232 -a(S'oe_create/0' -p101233 -S'oe_create() $1' -p101234 -tp101235 -a(S'oe_create/1' -p101236 -S'oe_create(${1:Env}) $2' -p101237 -tp101238 -a(S'oe_create/2' -p101239 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p101240 -tp101241 -a(S'oe_create_link/0' -p101242 -S'oe_create_link() $1' -p101243 -tp101244 -a(S'oe_create_link/1' -p101245 -S'oe_create_link(${1:Env}) $2' -p101246 -tp101247 -a(S'oe_create_link/2' -p101248 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p101249 -tp101250 -a(S'oe_get_interface/0' -p101251 -S'oe_get_interface() $1' -p101252 -tp101253 -a(S'oe_is_a/1' -p101254 -S'oe_is_a(${1:Param1}) $2' -p101255 -tp101256 -a(S'oe_tc/1' -p101257 -S'oe_tc(${1:Param1}) $2' -p101258 -tp101259 -a(S'overlaps/2' -p101260 -S'overlaps(${1:OE_THIS}, ${2:Interval}) $3' -p101261 -tp101262 -a(S'overlaps/3' -p101263 -S'overlaps(${1:OE_THIS}, ${2:OE_Options}, ${3:Interval}) $4' -p101264 -tp101265 -a(S'spans/2' -p101266 -S'spans(${1:OE_THIS}, ${2:Time}) $3' -p101267 -tp101268 -a(S'spans/3' -p101269 -S'spans(${1:OE_THIS}, ${2:OE_Options}, ${3:Time}) $4' -p101270 -tp101271 -a(S'terminate/2' -p101272 -S'terminate(${1:Reason}, ${2:State}) $3' -p101273 -tp101274 -a(S'time/1' -p101275 -S'time(${1:OE_THIS}) $2' -p101276 -tp101277 -a(S'time/2' -p101278 -S'time(${1:OE_THIS}, ${2:OE_Options}) $3' -p101279 -tp101280 -a(S'typeID/0' -p101281 -S'typeID() $1' -p101282 -tp101283 -asS'CosNotifyComm_SequencePushConsumer' -p101284 -(lp101285 -(S'code_change/3' -p101286 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p101287 -tp101288 -a(S'disconnect_sequence_push_consumer/1' -p101289 -S'disconnect_sequence_push_consumer(${1:OE_THIS}) $2' -p101290 -tp101291 -a(S'disconnect_sequence_push_consumer/2' -p101292 -S'disconnect_sequence_push_consumer(${1:OE_THIS}, ${2:OE_Options}) $3' -p101293 -tp101294 -a(S'handle_call/3' -p101295 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p101296 -tp101297 -a(S'handle_cast/2' -p101298 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p101299 -tp101300 -a(S'handle_info/2' -p101301 -S'handle_info(${1:Param1}, ${2:State}) $3' -p101302 -tp101303 -a(S'init/1' -p101304 -S'init(${1:Env}) $2' -p101305 -tp101306 -a(S'oe_create/0' -p101307 -S'oe_create() $1' -p101308 -tp101309 -a(S'oe_create/1' -p101310 -S'oe_create(${1:Env}) $2' -p101311 -tp101312 -a(S'oe_create/2' -p101313 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p101314 -tp101315 -a(S'oe_create_link/0' -p101316 -S'oe_create_link() $1' -p101317 -tp101318 -a(S'oe_create_link/1' -p101319 -S'oe_create_link(${1:Env}) $2' -p101320 -tp101321 -a(S'oe_create_link/2' -p101322 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p101323 -tp101324 -a(S'oe_get_interface/0' -p101325 -S'oe_get_interface() $1' -p101326 -tp101327 -a(S'oe_is_a/1' -p101328 -S'oe_is_a(${1:Param1}) $2' -p101329 -tp101330 -a(S'oe_tc/1' -p101331 -S'oe_tc(${1:Param1}) $2' -p101332 -tp101333 -a(S'offer_change/3' -p101334 -S'offer_change(${1:OE_THIS}, ${2:Added}, ${3:Removed}) $4' -p101335 -tp101336 -a(S'offer_change/4' -p101337 -S'offer_change(${1:OE_THIS}, ${2:OE_Options}, ${3:Added}, ${4:Removed}) $5' -p101338 -tp101339 -a(S'push_structured_events/2' -p101340 -S'push_structured_events(${1:OE_THIS}, ${2:Notifications}) $3' -p101341 -tp101342 -a(S'push_structured_events/3' -p101343 -S'push_structured_events(${1:OE_THIS}, ${2:OE_Options}, ${3:Notifications}) $4' -p101344 -tp101345 -a(S'terminate/2' -p101346 -S'terminate(${1:Reason}, ${2:State}) $3' -p101347 -tp101348 -a(S'typeID/0' -p101349 -S'typeID() $1' -p101350 -tp101351 -asS'orber_web_server' -p101352 -(lp101353 -(S'add_ctx/2' -p101354 -S'add_ctx(${1:Env}, ${2:Input}) $3' -p101355 -tp101356 -a(S'code_change/3' -p101357 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p101358 -tp101359 -a(S'config_data/0' -p101360 -S'config_data() $1' -p101361 -tp101362 -a(S'configure/2' -p101363 -S'configure(${1:Env}, ${2:Input}) $3' -p101364 -tp101365 -a(S'create/2' -p101366 -S'create(${1:Env}, ${2:Input}) $3' -p101367 -tp101368 -a(S'default_selection/2' -p101369 -S'default_selection(${1:Env}, ${2:Input}) $3' -p101370 -tp101371 -a(S'delete_ctx/2' -p101372 -S'delete_ctx(${1:Env}, ${2:Input}) $3' -p101373 -tp101374 -a(S'delete_obj/2' -p101375 -S'delete_obj(${1:Env}, ${2:Input}) $3' -p101376 -tp101377 -a(S'flash_msg/2' -p101378 -S'flash_msg(${1:Env}, ${2:Input}) $3' -p101379 -tp101380 -a(S'handle_call/3' -p101381 -S'handle_call(${1:What}, ${2:Param2}, ${3:State}) $4' -p101382 -tp101383 -a(S'handle_cast/2' -p101384 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p101385 -tp101386 -a(S'handle_info/2' -p101387 -S'handle_info(${1:Param1}, ${2:State}) $3' -p101388 -tp101389 -a(S'ifr_data/2' -p101390 -S'ifr_data(${1:Env}, ${2:Input}) $3' -p101391 -tp101392 -a(S'ifr_select/2' -p101393 -S'ifr_select(${1:Env}, ${2:Input}) $3' -p101394 -tp101395 -a(S'info/2' -p101396 -S'info(${1:Env}, ${2:Input}) $3' -p101397 -tp101398 -a(S'init/1' -p101399 -S'init(${1:Param1}) $2' -p101400 -tp101401 -a(S'menu/2' -p101402 -S'menu(${1:Env}, ${2:Input}) $3' -p101403 -tp101404 -a(S'nameservice/2' -p101405 -S'nameservice(${1:Env}, ${2:Input}) $3' -p101406 -tp101407 -a(S'start/0' -p101408 -S'start() $1' -p101409 -tp101410 -a(S'start_link/0' -p101411 -S'start_link() $1' -p101412 -tp101413 -a(S'stop/0' -p101414 -S'stop() $1' -p101415 -tp101416 -a(S'terminate/2' -p101417 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p101418 -tp101419 -asS'sasl_report_file_h' -p101420 -(lp101421 -(S'handle_call/2' -p101422 -S'handle_call(${1:Param1}, ${2:Param2}) $3' -p101423 -tp101424 -a(S'handle_event/2' -p101425 -S'handle_event(${1:Event}, ${2:State}) $3' -p101426 -tp101427 -a(S'handle_info/2' -p101428 -S'handle_info(${1:Param1}, ${2:State}) $3' -p101429 -tp101430 -a(S'init/1' -p101431 -S'init(${1:Param1}) $2' -p101432 -tp101433 -a(S'terminate/2' -p101434 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p101435 -tp101436 -asS'beam_bsm' -p101437 -(lp101438 -(S'format_error/1' -p101439 -S'format_error(${1:Param1}) $2' -p101440 -tp101441 -a(S'module/2' -p101442 -S'module(${1:Param1}, ${2:Opts}) $3' -p101443 -tp101444 -asS'megaco_ber_bin_media_gateway_control_prev3b' -p101445 -(lp101446 -(S"'dec_ActionReply'/2" -p101447 -S"'dec_ActionReply'(${1:Tlv}, ${2:TagIn}) $3" -p101448 -tp101449 -a(S"'dec_ActionRequest'/2" -p101450 -S"'dec_ActionRequest'(${1:Tlv}, ${2:TagIn}) $3" -p101451 -tp101452 -a(S"'dec_AmmDescriptor'/2" -p101453 -S"'dec_AmmDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p101454 -tp101455 -a(S"'dec_AmmRequest'/2" -p101456 -S"'dec_AmmRequest'(${1:Tlv}, ${2:TagIn}) $3" -p101457 -tp101458 -a(S"'dec_AmmsReply'/2" -p101459 -S"'dec_AmmsReply'(${1:Tlv}, ${2:TagIn}) $3" -p101460 -tp101461 -a(S"'dec_AuditDescriptor'/2" -p101462 -S"'dec_AuditDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p101463 -tp101464 -a(S"'dec_AuditReply'/2" -p101465 -S"'dec_AuditReply'(${1:Tlv}, ${2:TagIn}) $3" -p101466 -tp101467 -a(S"'dec_AuditRequest'/2" -p101468 -S"'dec_AuditRequest'(${1:Tlv}, ${2:TagIn}) $3" -p101469 -tp101470 -a(S"'dec_AuditResult'/2" -p101471 -S"'dec_AuditResult'(${1:Tlv}, ${2:TagIn}) $3" -p101472 -tp101473 -a(S"'dec_AuditReturnParameter'/2" -p101474 -S"'dec_AuditReturnParameter'(${1:Tlv}, ${2:TagIn}) $3" -p101475 -tp101476 -a(S"'dec_AuthData'/2" -p101477 -S"'dec_AuthData'(${1:Tlv}, ${2:TagIn}) $3" -p101478 -tp101479 -a(S"'dec_AuthenticationHeader'/2" -p101480 -S"'dec_AuthenticationHeader'(${1:Tlv}, ${2:TagIn}) $3" -p101481 -tp101482 -a(S"'dec_Command'/2" -p101483 -S"'dec_Command'(${1:Tlv}, ${2:TagIn}) $3" -p101484 -tp101485 -a(S"'dec_CommandReply'/2" -p101486 -S"'dec_CommandReply'(${1:Tlv}, ${2:TagIn}) $3" -p101487 -tp101488 -a(S"'dec_CommandRequest'/2" -p101489 -S"'dec_CommandRequest'(${1:Tlv}, ${2:TagIn}) $3" -p101490 -tp101491 -a(S"'dec_ContextAttrAuditRequest'/2" -p101492 -S"'dec_ContextAttrAuditRequest'(${1:Tlv}, ${2:TagIn}) $3" -p101493 -tp101494 -a(S"'dec_ContextID'/2" -p101495 -S"'dec_ContextID'(${1:Tlv}, ${2:TagIn}) $3" -p101496 -tp101497 -a(S"'dec_ContextRequest'/2" -p101498 -S"'dec_ContextRequest'(${1:Tlv}, ${2:TagIn}) $3" -p101499 -tp101500 -a(S"'dec_DigitMapDescriptor'/2" -p101501 -S"'dec_DigitMapDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p101502 -tp101503 -a(S"'dec_DigitMapName'/2" -p101504 -S"'dec_DigitMapName'(${1:Tlv}, ${2:TagIn}) $3" -p101505 -tp101506 -a(S"'dec_DigitMapValue'/2" -p101507 -S"'dec_DigitMapValue'(${1:Tlv}, ${2:TagIn}) $3" -p101508 -tp101509 -a(S"'dec_DomainName'/2" -p101510 -S"'dec_DomainName'(${1:Tlv}, ${2:TagIn}) $3" -p101511 -tp101512 -a(S"'dec_ErrorCode'/2" -p101513 -S"'dec_ErrorCode'(${1:Tlv}, ${2:TagIn}) $3" -p101514 -tp101515 -a(S"'dec_ErrorDescriptor'/2" -p101516 -S"'dec_ErrorDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p101517 -tp101518 -a(S"'dec_ErrorText'/2" -p101519 -S"'dec_ErrorText'(${1:Tlv}, ${2:TagIn}) $3" -p101520 -tp101521 -a(S"'dec_EventBufferControl'/2" -p101522 -S"'dec_EventBufferControl'(${1:Tlv}, ${2:TagIn}) $3" -p101523 -tp101524 -a(S"'dec_EventBufferDescriptor'/2" -p101525 -S"'dec_EventBufferDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p101526 -tp101527 -a(S"'dec_EventDM'/2" -p101528 -S"'dec_EventDM'(${1:Tlv}, ${2:TagIn}) $3" -p101529 -tp101530 -a(S"'dec_EventName'/2" -p101531 -S"'dec_EventName'(${1:Tlv}, ${2:TagIn}) $3" -p101532 -tp101533 -a(S"'dec_EventParameter'/2" -p101534 -S"'dec_EventParameter'(${1:Tlv}, ${2:TagIn}) $3" -p101535 -tp101536 -a(S"'dec_EventSpec'/2" -p101537 -S"'dec_EventSpec'(${1:Tlv}, ${2:TagIn}) $3" -p101538 -tp101539 -a(S"'dec_EventsDescriptor'/2" -p101540 -S"'dec_EventsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p101541 -tp101542 -a(S"'dec_H221NonStandard'/2" -p101543 -S"'dec_H221NonStandard'(${1:Tlv}, ${2:TagIn}) $3" -p101544 -tp101545 -a(S"'dec_IP4Address'/2" -p101546 -S"'dec_IP4Address'(${1:Tlv}, ${2:TagIn}) $3" -p101547 -tp101548 -a(S"'dec_IP6Address'/2" -p101549 -S"'dec_IP6Address'(${1:Tlv}, ${2:TagIn}) $3" -p101550 -tp101551 -a(S"'dec_IndAudDigitMapDescriptor'/2" -p101552 -S"'dec_IndAudDigitMapDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p101553 -tp101554 -a(S"'dec_IndAudEventBufferDescriptor'/2" -p101555 -S"'dec_IndAudEventBufferDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p101556 -tp101557 -a(S"'dec_IndAudEventsDescriptor'/2" -p101558 -S"'dec_IndAudEventsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p101559 -tp101560 -a(S"'dec_IndAudLocalControlDescriptor'/2" -p101561 -S"'dec_IndAudLocalControlDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p101562 -tp101563 -a(S"'dec_IndAudLocalRemoteDescriptor'/2" -p101564 -S"'dec_IndAudLocalRemoteDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p101565 -tp101566 -a(S"'dec_IndAudMediaDescriptor'/2" -p101567 -S"'dec_IndAudMediaDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p101568 -tp101569 -a(S"'dec_IndAudPackagesDescriptor'/2" -p101570 -S"'dec_IndAudPackagesDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p101571 -tp101572 -a(S"'dec_IndAudPropertyGroup'/2" -p101573 -S"'dec_IndAudPropertyGroup'(${1:Tlv}, ${2:TagIn}) $3" -p101574 -tp101575 -a(S"'dec_IndAudPropertyParm'/2" -p101576 -S"'dec_IndAudPropertyParm'(${1:Tlv}, ${2:TagIn}) $3" -p101577 -tp101578 -a(S"'dec_IndAudSeqSigList'/2" -p101579 -S"'dec_IndAudSeqSigList'(${1:Tlv}, ${2:TagIn}) $3" -p101580 -tp101581 -a(S"'dec_IndAudSignal'/2" -p101582 -S"'dec_IndAudSignal'(${1:Tlv}, ${2:TagIn}) $3" -p101583 -tp101584 -a(S"'dec_IndAudSignalsDescriptor'/2" -p101585 -S"'dec_IndAudSignalsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p101586 -tp101587 -a(S"'dec_IndAudStatisticsDescriptor'/2" -p101588 -S"'dec_IndAudStatisticsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p101589 -tp101590 -a(S"'dec_IndAudStreamDescriptor'/2" -p101591 -S"'dec_IndAudStreamDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p101592 -tp101593 -a(S"'dec_IndAudStreamParms'/2" -p101594 -S"'dec_IndAudStreamParms'(${1:Tlv}, ${2:TagIn}) $3" -p101595 -tp101596 -a(S"'dec_IndAudTerminationStateDescriptor'/2" -p101597 -S"'dec_IndAudTerminationStateDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p101598 -tp101599 -a(S"'dec_IndAuditParameter'/2" -p101600 -S"'dec_IndAuditParameter'(${1:Tlv}, ${2:TagIn}) $3" -p101601 -tp101602 -a(S"'dec_LocalControlDescriptor'/2" -p101603 -S"'dec_LocalControlDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p101604 -tp101605 -a(S"'dec_LocalRemoteDescriptor'/2" -p101606 -S"'dec_LocalRemoteDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p101607 -tp101608 -a(S"'dec_MId'/2" -p101609 -S"'dec_MId'(${1:Tlv}, ${2:TagIn}) $3" -p101610 -tp101611 -a(S"'dec_MediaDescriptor'/2" -p101612 -S"'dec_MediaDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p101613 -tp101614 -a(S"'dec_MegacoMessage'/2" -p101615 -S"'dec_MegacoMessage'(${1:Tlv}, ${2:TagIn}) $3" -p101616 -tp101617 -a(S"'dec_Message'/2" -p101618 -S"'dec_Message'(${1:Tlv}, ${2:TagIn}) $3" -p101619 -tp101620 -a(S"'dec_ModemDescriptor'/2" -p101621 -S"'dec_ModemDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p101622 -tp101623 -a(S"'dec_ModemType'/2" -p101624 -S"'dec_ModemType'(${1:Tlv}, ${2:TagIn}) $3" -p101625 -tp101626 -a(S"'dec_MuxDescriptor'/2" -p101627 -S"'dec_MuxDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p101628 -tp101629 -a(S"'dec_MuxType'/2" -p101630 -S"'dec_MuxType'(${1:Tlv}, ${2:TagIn}) $3" -p101631 -tp101632 -a(S"'dec_Name'/2" -p101633 -S"'dec_Name'(${1:Tlv}, ${2:TagIn}) $3" -p101634 -tp101635 -a(S"'dec_NonStandardData'/2" -p101636 -S"'dec_NonStandardData'(${1:Tlv}, ${2:TagIn}) $3" -p101637 -tp101638 -a(S"'dec_NonStandardIdentifier'/2" -p101639 -S"'dec_NonStandardIdentifier'(${1:Tlv}, ${2:TagIn}) $3" -p101640 -tp101641 -a(S"'dec_NotifyCompletion'/2" -p101642 -S"'dec_NotifyCompletion'(${1:Tlv}, ${2:TagIn}) $3" -p101643 -tp101644 -a(S"'dec_NotifyReply'/2" -p101645 -S"'dec_NotifyReply'(${1:Tlv}, ${2:TagIn}) $3" -p101646 -tp101647 -a(S"'dec_NotifyRequest'/2" -p101648 -S"'dec_NotifyRequest'(${1:Tlv}, ${2:TagIn}) $3" -p101649 -tp101650 -a(S"'dec_ObservedEvent'/2" -p101651 -S"'dec_ObservedEvent'(${1:Tlv}, ${2:TagIn}) $3" -p101652 -tp101653 -a(S"'dec_ObservedEventsDescriptor'/2" -p101654 -S"'dec_ObservedEventsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p101655 -tp101656 -a(S"'dec_PackagesDescriptor'/2" -p101657 -S"'dec_PackagesDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p101658 -tp101659 -a(S"'dec_PackagesItem'/2" -p101660 -S"'dec_PackagesItem'(${1:Tlv}, ${2:TagIn}) $3" -p101661 -tp101662 -a(S"'dec_PathName'/2" -p101663 -S"'dec_PathName'(${1:Tlv}, ${2:TagIn}) $3" -p101664 -tp101665 -a(S"'dec_PkgdName'/2" -p101666 -S"'dec_PkgdName'(${1:Tlv}, ${2:TagIn}) $3" -p101667 -tp101668 -a(S"'dec_PropertyGroup'/2" -p101669 -S"'dec_PropertyGroup'(${1:Tlv}, ${2:TagIn}) $3" -p101670 -tp101671 -a(S"'dec_PropertyParm'/2" -p101672 -S"'dec_PropertyParm'(${1:Tlv}, ${2:TagIn}) $3" -p101673 -tp101674 -a(S"'dec_Relation'/2" -p101675 -S"'dec_Relation'(${1:Tlv}, ${2:TagIn}) $3" -p101676 -tp101677 -a(S"'dec_RequestID'/2" -p101678 -S"'dec_RequestID'(${1:Tlv}, ${2:TagIn}) $3" -p101679 -tp101680 -a(S"'dec_RequestedActions'/2" -p101681 -S"'dec_RequestedActions'(${1:Tlv}, ${2:TagIn}) $3" -p101682 -tp101683 -a(S"'dec_RequestedEvent'/2" -p101684 -S"'dec_RequestedEvent'(${1:Tlv}, ${2:TagIn}) $3" -p101685 -tp101686 -a(S"'dec_SecondEventsDescriptor'/2" -p101687 -S"'dec_SecondEventsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p101688 -tp101689 -a(S"'dec_SecondRequestedActions'/2" -p101690 -S"'dec_SecondRequestedActions'(${1:Tlv}, ${2:TagIn}) $3" -p101691 -tp101692 -a(S"'dec_SecondRequestedEvent'/2" -p101693 -S"'dec_SecondRequestedEvent'(${1:Tlv}, ${2:TagIn}) $3" -p101694 -tp101695 -a(S"'dec_SecurityParmIndex'/2" -p101696 -S"'dec_SecurityParmIndex'(${1:Tlv}, ${2:TagIn}) $3" -p101697 -tp101698 -a(S"'dec_SegmentNumber'/2" -p101699 -S"'dec_SegmentNumber'(${1:Tlv}, ${2:TagIn}) $3" -p101700 -tp101701 -a(S"'dec_SeqSigList'/2" -p101702 -S"'dec_SeqSigList'(${1:Tlv}, ${2:TagIn}) $3" -p101703 -tp101704 -a(S"'dec_SequenceNum'/2" -p101705 -S"'dec_SequenceNum'(${1:Tlv}, ${2:TagIn}) $3" -p101706 -tp101707 -a(S"'dec_ServiceChangeAddress'/2" -p101708 -S"'dec_ServiceChangeAddress'(${1:Tlv}, ${2:TagIn}) $3" -p101709 -tp101710 -a(S"'dec_ServiceChangeMethod'/2" -p101711 -S"'dec_ServiceChangeMethod'(${1:Tlv}, ${2:TagIn}) $3" -p101712 -tp101713 -a(S"'dec_ServiceChangeParm'/2" -p101714 -S"'dec_ServiceChangeParm'(${1:Tlv}, ${2:TagIn}) $3" -p101715 -tp101716 -a(S"'dec_ServiceChangeProfile'/2" -p101717 -S"'dec_ServiceChangeProfile'(${1:Tlv}, ${2:TagIn}) $3" -p101718 -tp101719 -a(S"'dec_ServiceChangeReply'/2" -p101720 -S"'dec_ServiceChangeReply'(${1:Tlv}, ${2:TagIn}) $3" -p101721 -tp101722 -a(S"'dec_ServiceChangeRequest'/2" -p101723 -S"'dec_ServiceChangeRequest'(${1:Tlv}, ${2:TagIn}) $3" -p101724 -tp101725 -a(S"'dec_ServiceChangeResParm'/2" -p101726 -S"'dec_ServiceChangeResParm'(${1:Tlv}, ${2:TagIn}) $3" -p101727 -tp101728 -a(S"'dec_ServiceChangeResult'/2" -p101729 -S"'dec_ServiceChangeResult'(${1:Tlv}, ${2:TagIn}) $3" -p101730 -tp101731 -a(S"'dec_ServiceState'/2" -p101732 -S"'dec_ServiceState'(${1:Tlv}, ${2:TagIn}) $3" -p101733 -tp101734 -a(S"'dec_SigParameter'/2" -p101735 -S"'dec_SigParameter'(${1:Tlv}, ${2:TagIn}) $3" -p101736 -tp101737 -a(S"'dec_Signal'/2" -p101738 -S"'dec_Signal'(${1:Tlv}, ${2:TagIn}) $3" -p101739 -tp101740 -a(S"'dec_SignalDirection'/2" -p101741 -S"'dec_SignalDirection'(${1:Tlv}, ${2:TagIn}) $3" -p101742 -tp101743 -a(S"'dec_SignalName'/2" -p101744 -S"'dec_SignalName'(${1:Tlv}, ${2:TagIn}) $3" -p101745 -tp101746 -a(S"'dec_SignalRequest'/2" -p101747 -S"'dec_SignalRequest'(${1:Tlv}, ${2:TagIn}) $3" -p101748 -tp101749 -a(S"'dec_SignalType'/2" -p101750 -S"'dec_SignalType'(${1:Tlv}, ${2:TagIn}) $3" -p101751 -tp101752 -a(S"'dec_SignalsDescriptor'/2" -p101753 -S"'dec_SignalsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p101754 -tp101755 -a(S"'dec_StatisticsDescriptor'/2" -p101756 -S"'dec_StatisticsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p101757 -tp101758 -a(S"'dec_StatisticsParameter'/2" -p101759 -S"'dec_StatisticsParameter'(${1:Tlv}, ${2:TagIn}) $3" -p101760 -tp101761 -a(S"'dec_StreamDescriptor'/2" -p101762 -S"'dec_StreamDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p101763 -tp101764 -a(S"'dec_StreamID'/2" -p101765 -S"'dec_StreamID'(${1:Tlv}, ${2:TagIn}) $3" -p101766 -tp101767 -a(S"'dec_StreamMode'/2" -p101768 -S"'dec_StreamMode'(${1:Tlv}, ${2:TagIn}) $3" -p101769 -tp101770 -a(S"'dec_StreamParms'/2" -p101771 -S"'dec_StreamParms'(${1:Tlv}, ${2:TagIn}) $3" -p101772 -tp101773 -a(S"'dec_SubtractRequest'/2" -p101774 -S"'dec_SubtractRequest'(${1:Tlv}, ${2:TagIn}) $3" -p101775 -tp101776 -a(S"'dec_TerminationAudit'/2" -p101777 -S"'dec_TerminationAudit'(${1:Tlv}, ${2:TagIn}) $3" -p101778 -tp101779 -a(S"'dec_TerminationID'/2" -p101780 -S"'dec_TerminationID'(${1:Tlv}, ${2:TagIn}) $3" -p101781 -tp101782 -a(S"'dec_TerminationIDList'/2" -p101783 -S"'dec_TerminationIDList'(${1:Tlv}, ${2:TagIn}) $3" -p101784 -tp101785 -a(S"'dec_TerminationStateDescriptor'/2" -p101786 -S"'dec_TerminationStateDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p101787 -tp101788 -a(S"'dec_TimeNotation'/2" -p101789 -S"'dec_TimeNotation'(${1:Tlv}, ${2:TagIn}) $3" -p101790 -tp101791 -a(S"'dec_TopologyRequest'/2" -p101792 -S"'dec_TopologyRequest'(${1:Tlv}, ${2:TagIn}) $3" -p101793 -tp101794 -a(S"'dec_Transaction'/2" -p101795 -S"'dec_Transaction'(${1:Tlv}, ${2:TagIn}) $3" -p101796 -tp101797 -a(S"'dec_TransactionAck'/2" -p101798 -S"'dec_TransactionAck'(${1:Tlv}, ${2:TagIn}) $3" -p101799 -tp101800 -a(S"'dec_TransactionId'/2" -p101801 -S"'dec_TransactionId'(${1:Tlv}, ${2:TagIn}) $3" -p101802 -tp101803 -a(S"'dec_TransactionPending'/2" -p101804 -S"'dec_TransactionPending'(${1:Tlv}, ${2:TagIn}) $3" -p101805 -tp101806 -a(S"'dec_TransactionReply'/2" -p101807 -S"'dec_TransactionReply'(${1:Tlv}, ${2:TagIn}) $3" -p101808 -tp101809 -a(S"'dec_TransactionRequest'/2" -p101810 -S"'dec_TransactionRequest'(${1:Tlv}, ${2:TagIn}) $3" -p101811 -tp101812 -a(S"'dec_TransactionResponseAck'/2" -p101813 -S"'dec_TransactionResponseAck'(${1:Tlv}, ${2:TagIn}) $3" -p101814 -tp101815 -a(S"'dec_Value'/2" -p101816 -S"'dec_Value'(${1:Tlv}, ${2:TagIn}) $3" -p101817 -tp101818 -a(S"'dec_WildcardField'/2" -p101819 -S"'dec_WildcardField'(${1:Tlv}, ${2:TagIn}) $3" -p101820 -tp101821 -a(S"'enc_ActionReply'/2" -p101822 -S"'enc_ActionReply'(${1:Val}, ${2:TagIn}) $3" -p101823 -tp101824 -a(S"'enc_ActionRequest'/2" -p101825 -S"'enc_ActionRequest'(${1:Val}, ${2:TagIn}) $3" -p101826 -tp101827 -a(S"'enc_AmmDescriptor'/2" -p101828 -S"'enc_AmmDescriptor'(${1:Val}, ${2:TagIn}) $3" -p101829 -tp101830 -a(S"'enc_AmmRequest'/2" -p101831 -S"'enc_AmmRequest'(${1:Val}, ${2:TagIn}) $3" -p101832 -tp101833 -a(S"'enc_AmmsReply'/2" -p101834 -S"'enc_AmmsReply'(${1:Val}, ${2:TagIn}) $3" -p101835 -tp101836 -a(S"'enc_AuditDescriptor'/2" -p101837 -S"'enc_AuditDescriptor'(${1:Val}, ${2:TagIn}) $3" -p101838 -tp101839 -a(S"'enc_AuditReply'/2" -p101840 -S"'enc_AuditReply'(${1:Val}, ${2:TagIn}) $3" -p101841 -tp101842 -a(S"'enc_AuditRequest'/2" -p101843 -S"'enc_AuditRequest'(${1:Val}, ${2:TagIn}) $3" -p101844 -tp101845 -a(S"'enc_AuditResult'/2" -p101846 -S"'enc_AuditResult'(${1:Val}, ${2:TagIn}) $3" -p101847 -tp101848 -a(S"'enc_AuditReturnParameter'/2" -p101849 -S"'enc_AuditReturnParameter'(${1:Val}, ${2:TagIn}) $3" -p101850 -tp101851 -a(S"'enc_AuthData'/2" -p101852 -S"'enc_AuthData'(${1:Val}, ${2:TagIn}) $3" -p101853 -tp101854 -a(S"'enc_AuthenticationHeader'/2" -p101855 -S"'enc_AuthenticationHeader'(${1:Val}, ${2:TagIn}) $3" -p101856 -tp101857 -a(S"'enc_Command'/2" -p101858 -S"'enc_Command'(${1:Val}, ${2:TagIn}) $3" -p101859 -tp101860 -a(S"'enc_CommandReply'/2" -p101861 -S"'enc_CommandReply'(${1:Val}, ${2:TagIn}) $3" -p101862 -tp101863 -a(S"'enc_CommandRequest'/2" -p101864 -S"'enc_CommandRequest'(${1:Val}, ${2:TagIn}) $3" -p101865 -tp101866 -a(S"'enc_ContextAttrAuditRequest'/2" -p101867 -S"'enc_ContextAttrAuditRequest'(${1:Val}, ${2:TagIn}) $3" -p101868 -tp101869 -a(S"'enc_ContextID'/2" -p101870 -S"'enc_ContextID'(${1:Val}, ${2:TagIn}) $3" -p101871 -tp101872 -a(S"'enc_ContextRequest'/2" -p101873 -S"'enc_ContextRequest'(${1:Val}, ${2:TagIn}) $3" -p101874 -tp101875 -a(S"'enc_DigitMapDescriptor'/2" -p101876 -S"'enc_DigitMapDescriptor'(${1:Val}, ${2:TagIn}) $3" -p101877 -tp101878 -a(S"'enc_DigitMapName'/2" -p101879 -S"'enc_DigitMapName'(${1:Val}, ${2:TagIn}) $3" -p101880 -tp101881 -a(S"'enc_DigitMapValue'/2" -p101882 -S"'enc_DigitMapValue'(${1:Val}, ${2:TagIn}) $3" -p101883 -tp101884 -a(S"'enc_DomainName'/2" -p101885 -S"'enc_DomainName'(${1:Val}, ${2:TagIn}) $3" -p101886 -tp101887 -a(S"'enc_ErrorCode'/2" -p101888 -S"'enc_ErrorCode'(${1:Val}, ${2:TagIn}) $3" -p101889 -tp101890 -a(S"'enc_ErrorDescriptor'/2" -p101891 -S"'enc_ErrorDescriptor'(${1:Val}, ${2:TagIn}) $3" -p101892 -tp101893 -a(S"'enc_ErrorText'/2" -p101894 -S"'enc_ErrorText'(${1:Val}, ${2:TagIn}) $3" -p101895 -tp101896 -a(S"'enc_EventBufferControl'/2" -p101897 -S"'enc_EventBufferControl'(${1:Val}, ${2:TagIn}) $3" -p101898 -tp101899 -a(S"'enc_EventBufferDescriptor'/2" -p101900 -S"'enc_EventBufferDescriptor'(${1:Val}, ${2:TagIn}) $3" -p101901 -tp101902 -a(S"'enc_EventDM'/2" -p101903 -S"'enc_EventDM'(${1:Val}, ${2:TagIn}) $3" -p101904 -tp101905 -a(S"'enc_EventName'/2" -p101906 -S"'enc_EventName'(${1:Val}, ${2:TagIn}) $3" -p101907 -tp101908 -a(S"'enc_EventParameter'/2" -p101909 -S"'enc_EventParameter'(${1:Val}, ${2:TagIn}) $3" -p101910 -tp101911 -a(S"'enc_EventSpec'/2" -p101912 -S"'enc_EventSpec'(${1:Val}, ${2:TagIn}) $3" -p101913 -tp101914 -a(S"'enc_EventsDescriptor'/2" -p101915 -S"'enc_EventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p101916 -tp101917 -a(S"'enc_H221NonStandard'/2" -p101918 -S"'enc_H221NonStandard'(${1:Val}, ${2:TagIn}) $3" -p101919 -tp101920 -a(S"'enc_IP4Address'/2" -p101921 -S"'enc_IP4Address'(${1:Val}, ${2:TagIn}) $3" -p101922 -tp101923 -a(S"'enc_IP6Address'/2" -p101924 -S"'enc_IP6Address'(${1:Val}, ${2:TagIn}) $3" -p101925 -tp101926 -a(S"'enc_IndAudDigitMapDescriptor'/2" -p101927 -S"'enc_IndAudDigitMapDescriptor'(${1:Val}, ${2:TagIn}) $3" -p101928 -tp101929 -a(S"'enc_IndAudEventBufferDescriptor'/2" -p101930 -S"'enc_IndAudEventBufferDescriptor'(${1:Val}, ${2:TagIn}) $3" -p101931 -tp101932 -a(S"'enc_IndAudEventsDescriptor'/2" -p101933 -S"'enc_IndAudEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p101934 -tp101935 -a(S"'enc_IndAudLocalControlDescriptor'/2" -p101936 -S"'enc_IndAudLocalControlDescriptor'(${1:Val}, ${2:TagIn}) $3" -p101937 -tp101938 -a(S"'enc_IndAudLocalRemoteDescriptor'/2" -p101939 -S"'enc_IndAudLocalRemoteDescriptor'(${1:Val}, ${2:TagIn}) $3" -p101940 -tp101941 -a(S"'enc_IndAudMediaDescriptor'/2" -p101942 -S"'enc_IndAudMediaDescriptor'(${1:Val}, ${2:TagIn}) $3" -p101943 -tp101944 -a(S"'enc_IndAudPackagesDescriptor'/2" -p101945 -S"'enc_IndAudPackagesDescriptor'(${1:Val}, ${2:TagIn}) $3" -p101946 -tp101947 -a(S"'enc_IndAudPropertyGroup'/2" -p101948 -S"'enc_IndAudPropertyGroup'(${1:Val}, ${2:TagIn}) $3" -p101949 -tp101950 -a(S"'enc_IndAudPropertyParm'/2" -p101951 -S"'enc_IndAudPropertyParm'(${1:Val}, ${2:TagIn}) $3" -p101952 -tp101953 -a(S"'enc_IndAudSeqSigList'/2" -p101954 -S"'enc_IndAudSeqSigList'(${1:Val}, ${2:TagIn}) $3" -p101955 -tp101956 -a(S"'enc_IndAudSignal'/2" -p101957 -S"'enc_IndAudSignal'(${1:Val}, ${2:TagIn}) $3" -p101958 -tp101959 -a(S"'enc_IndAudSignalsDescriptor'/2" -p101960 -S"'enc_IndAudSignalsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p101961 -tp101962 -a(S"'enc_IndAudStatisticsDescriptor'/2" -p101963 -S"'enc_IndAudStatisticsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p101964 -tp101965 -a(S"'enc_IndAudStreamDescriptor'/2" -p101966 -S"'enc_IndAudStreamDescriptor'(${1:Val}, ${2:TagIn}) $3" -p101967 -tp101968 -a(S"'enc_IndAudStreamParms'/2" -p101969 -S"'enc_IndAudStreamParms'(${1:Val}, ${2:TagIn}) $3" -p101970 -tp101971 -a(S"'enc_IndAudTerminationStateDescriptor'/2" -p101972 -S"'enc_IndAudTerminationStateDescriptor'(${1:Val}, ${2:TagIn}) $3" -p101973 -tp101974 -a(S"'enc_IndAuditParameter'/2" -p101975 -S"'enc_IndAuditParameter'(${1:Val}, ${2:TagIn}) $3" -p101976 -tp101977 -a(S"'enc_LocalControlDescriptor'/2" -p101978 -S"'enc_LocalControlDescriptor'(${1:Val}, ${2:TagIn}) $3" -p101979 -tp101980 -a(S"'enc_LocalRemoteDescriptor'/2" -p101981 -S"'enc_LocalRemoteDescriptor'(${1:Val}, ${2:TagIn}) $3" -p101982 -tp101983 -a(S"'enc_MId'/2" -p101984 -S"'enc_MId'(${1:Val}, ${2:TagIn}) $3" -p101985 -tp101986 -a(S"'enc_MediaDescriptor'/2" -p101987 -S"'enc_MediaDescriptor'(${1:Val}, ${2:TagIn}) $3" -p101988 -tp101989 -a(S"'enc_MegacoMessage'/2" -p101990 -S"'enc_MegacoMessage'(${1:Val}, ${2:TagIn}) $3" -p101991 -tp101992 -a(S"'enc_Message'/2" -p101993 -S"'enc_Message'(${1:Val}, ${2:TagIn}) $3" -p101994 -tp101995 -a(S"'enc_ModemDescriptor'/2" -p101996 -S"'enc_ModemDescriptor'(${1:Val}, ${2:TagIn}) $3" -p101997 -tp101998 -a(S"'enc_ModemType'/2" -p101999 -S"'enc_ModemType'(${1:Val}, ${2:TagIn}) $3" -p102000 -tp102001 -a(S"'enc_MuxDescriptor'/2" -p102002 -S"'enc_MuxDescriptor'(${1:Val}, ${2:TagIn}) $3" -p102003 -tp102004 -a(S"'enc_MuxType'/2" -p102005 -S"'enc_MuxType'(${1:Val}, ${2:TagIn}) $3" -p102006 -tp102007 -a(S"'enc_Name'/2" -p102008 -S"'enc_Name'(${1:Val}, ${2:TagIn}) $3" -p102009 -tp102010 -a(S"'enc_NonStandardData'/2" -p102011 -S"'enc_NonStandardData'(${1:Val}, ${2:TagIn}) $3" -p102012 -tp102013 -a(S"'enc_NonStandardIdentifier'/2" -p102014 -S"'enc_NonStandardIdentifier'(${1:Val}, ${2:TagIn}) $3" -p102015 -tp102016 -a(S"'enc_NotifyCompletion'/2" -p102017 -S"'enc_NotifyCompletion'(${1:Val}, ${2:TagIn}) $3" -p102018 -tp102019 -a(S"'enc_NotifyReply'/2" -p102020 -S"'enc_NotifyReply'(${1:Val}, ${2:TagIn}) $3" -p102021 -tp102022 -a(S"'enc_NotifyRequest'/2" -p102023 -S"'enc_NotifyRequest'(${1:Val}, ${2:TagIn}) $3" -p102024 -tp102025 -a(S"'enc_ObservedEvent'/2" -p102026 -S"'enc_ObservedEvent'(${1:Val}, ${2:TagIn}) $3" -p102027 -tp102028 -a(S"'enc_ObservedEventsDescriptor'/2" -p102029 -S"'enc_ObservedEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p102030 -tp102031 -a(S"'enc_PackagesDescriptor'/2" -p102032 -S"'enc_PackagesDescriptor'(${1:Val}, ${2:TagIn}) $3" -p102033 -tp102034 -a(S"'enc_PackagesItem'/2" -p102035 -S"'enc_PackagesItem'(${1:Val}, ${2:TagIn}) $3" -p102036 -tp102037 -a(S"'enc_PathName'/2" -p102038 -S"'enc_PathName'(${1:Val}, ${2:TagIn}) $3" -p102039 -tp102040 -a(S"'enc_PkgdName'/2" -p102041 -S"'enc_PkgdName'(${1:Val}, ${2:TagIn}) $3" -p102042 -tp102043 -a(S"'enc_PropertyGroup'/2" -p102044 -S"'enc_PropertyGroup'(${1:Val}, ${2:TagIn}) $3" -p102045 -tp102046 -a(S"'enc_PropertyParm'/2" -p102047 -S"'enc_PropertyParm'(${1:Val}, ${2:TagIn}) $3" -p102048 -tp102049 -a(S"'enc_Relation'/2" -p102050 -S"'enc_Relation'(${1:Val}, ${2:TagIn}) $3" -p102051 -tp102052 -a(S"'enc_RequestID'/2" -p102053 -S"'enc_RequestID'(${1:Val}, ${2:TagIn}) $3" -p102054 -tp102055 -a(S"'enc_RequestedActions'/2" -p102056 -S"'enc_RequestedActions'(${1:Val}, ${2:TagIn}) $3" -p102057 -tp102058 -a(S"'enc_RequestedEvent'/2" -p102059 -S"'enc_RequestedEvent'(${1:Val}, ${2:TagIn}) $3" -p102060 -tp102061 -a(S"'enc_SecondEventsDescriptor'/2" -p102062 -S"'enc_SecondEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p102063 -tp102064 -a(S"'enc_SecondRequestedActions'/2" -p102065 -S"'enc_SecondRequestedActions'(${1:Val}, ${2:TagIn}) $3" -p102066 -tp102067 -a(S"'enc_SecondRequestedEvent'/2" -p102068 -S"'enc_SecondRequestedEvent'(${1:Val}, ${2:TagIn}) $3" -p102069 -tp102070 -a(S"'enc_SecurityParmIndex'/2" -p102071 -S"'enc_SecurityParmIndex'(${1:Val}, ${2:TagIn}) $3" -p102072 -tp102073 -a(S"'enc_SegmentNumber'/2" -p102074 -S"'enc_SegmentNumber'(${1:Val}, ${2:TagIn}) $3" -p102075 -tp102076 -a(S"'enc_SeqSigList'/2" -p102077 -S"'enc_SeqSigList'(${1:Val}, ${2:TagIn}) $3" -p102078 -tp102079 -a(S"'enc_SequenceNum'/2" -p102080 -S"'enc_SequenceNum'(${1:Val}, ${2:TagIn}) $3" -p102081 -tp102082 -a(S"'enc_ServiceChangeAddress'/2" -p102083 -S"'enc_ServiceChangeAddress'(${1:Val}, ${2:TagIn}) $3" -p102084 -tp102085 -a(S"'enc_ServiceChangeMethod'/2" -p102086 -S"'enc_ServiceChangeMethod'(${1:Val}, ${2:TagIn}) $3" -p102087 -tp102088 -a(S"'enc_ServiceChangeParm'/2" -p102089 -S"'enc_ServiceChangeParm'(${1:Val}, ${2:TagIn}) $3" -p102090 -tp102091 -a(S"'enc_ServiceChangeProfile'/2" -p102092 -S"'enc_ServiceChangeProfile'(${1:Val}, ${2:TagIn}) $3" -p102093 -tp102094 -a(S"'enc_ServiceChangeReply'/2" -p102095 -S"'enc_ServiceChangeReply'(${1:Val}, ${2:TagIn}) $3" -p102096 -tp102097 -a(S"'enc_ServiceChangeRequest'/2" -p102098 -S"'enc_ServiceChangeRequest'(${1:Val}, ${2:TagIn}) $3" -p102099 -tp102100 -a(S"'enc_ServiceChangeResParm'/2" -p102101 -S"'enc_ServiceChangeResParm'(${1:Val}, ${2:TagIn}) $3" -p102102 -tp102103 -a(S"'enc_ServiceChangeResult'/2" -p102104 -S"'enc_ServiceChangeResult'(${1:Val}, ${2:TagIn}) $3" -p102105 -tp102106 -a(S"'enc_ServiceState'/2" -p102107 -S"'enc_ServiceState'(${1:Val}, ${2:TagIn}) $3" -p102108 -tp102109 -a(S"'enc_SigParameter'/2" -p102110 -S"'enc_SigParameter'(${1:Val}, ${2:TagIn}) $3" -p102111 -tp102112 -a(S"'enc_Signal'/2" -p102113 -S"'enc_Signal'(${1:Val}, ${2:TagIn}) $3" -p102114 -tp102115 -a(S"'enc_SignalDirection'/2" -p102116 -S"'enc_SignalDirection'(${1:Val}, ${2:TagIn}) $3" -p102117 -tp102118 -a(S"'enc_SignalName'/2" -p102119 -S"'enc_SignalName'(${1:Val}, ${2:TagIn}) $3" -p102120 -tp102121 -a(S"'enc_SignalRequest'/2" -p102122 -S"'enc_SignalRequest'(${1:Val}, ${2:TagIn}) $3" -p102123 -tp102124 -a(S"'enc_SignalType'/2" -p102125 -S"'enc_SignalType'(${1:Val}, ${2:TagIn}) $3" -p102126 -tp102127 -a(S"'enc_SignalsDescriptor'/2" -p102128 -S"'enc_SignalsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p102129 -tp102130 -a(S"'enc_StatisticsDescriptor'/2" -p102131 -S"'enc_StatisticsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p102132 -tp102133 -a(S"'enc_StatisticsParameter'/2" -p102134 -S"'enc_StatisticsParameter'(${1:Val}, ${2:TagIn}) $3" -p102135 -tp102136 -a(S"'enc_StreamDescriptor'/2" -p102137 -S"'enc_StreamDescriptor'(${1:Val}, ${2:TagIn}) $3" -p102138 -tp102139 -a(S"'enc_StreamID'/2" -p102140 -S"'enc_StreamID'(${1:Val}, ${2:TagIn}) $3" -p102141 -tp102142 -a(S"'enc_StreamMode'/2" -p102143 -S"'enc_StreamMode'(${1:Val}, ${2:TagIn}) $3" -p102144 -tp102145 -a(S"'enc_StreamParms'/2" -p102146 -S"'enc_StreamParms'(${1:Val}, ${2:TagIn}) $3" -p102147 -tp102148 -a(S"'enc_SubtractRequest'/2" -p102149 -S"'enc_SubtractRequest'(${1:Val}, ${2:TagIn}) $3" -p102150 -tp102151 -a(S"'enc_TerminationAudit'/2" -p102152 -S"'enc_TerminationAudit'(${1:Val}, ${2:TagIn}) $3" -p102153 -tp102154 -a(S"'enc_TerminationID'/2" -p102155 -S"'enc_TerminationID'(${1:Val}, ${2:TagIn}) $3" -p102156 -tp102157 -a(S"'enc_TerminationIDList'/2" -p102158 -S"'enc_TerminationIDList'(${1:Val}, ${2:TagIn}) $3" -p102159 -tp102160 -a(S"'enc_TerminationStateDescriptor'/2" -p102161 -S"'enc_TerminationStateDescriptor'(${1:Val}, ${2:TagIn}) $3" -p102162 -tp102163 -a(S"'enc_TimeNotation'/2" -p102164 -S"'enc_TimeNotation'(${1:Val}, ${2:TagIn}) $3" -p102165 -tp102166 -a(S"'enc_TopologyRequest'/2" -p102167 -S"'enc_TopologyRequest'(${1:Val}, ${2:TagIn}) $3" -p102168 -tp102169 -a(S"'enc_Transaction'/2" -p102170 -S"'enc_Transaction'(${1:Val}, ${2:TagIn}) $3" -p102171 -tp102172 -a(S"'enc_TransactionAck'/2" -p102173 -S"'enc_TransactionAck'(${1:Val}, ${2:TagIn}) $3" -p102174 -tp102175 -a(S"'enc_TransactionId'/2" -p102176 -S"'enc_TransactionId'(${1:Val}, ${2:TagIn}) $3" -p102177 -tp102178 -a(S"'enc_TransactionPending'/2" -p102179 -S"'enc_TransactionPending'(${1:Val}, ${2:TagIn}) $3" -p102180 -tp102181 -a(S"'enc_TransactionReply'/2" -p102182 -S"'enc_TransactionReply'(${1:Val}, ${2:TagIn}) $3" -p102183 -tp102184 -a(S"'enc_TransactionRequest'/2" -p102185 -S"'enc_TransactionRequest'(${1:Val}, ${2:TagIn}) $3" -p102186 -tp102187 -a(S"'enc_TransactionResponseAck'/2" -p102188 -S"'enc_TransactionResponseAck'(${1:Val}, ${2:TagIn}) $3" -p102189 -tp102190 -a(S"'enc_Value'/2" -p102191 -S"'enc_Value'(${1:Val}, ${2:TagIn}) $3" -p102192 -tp102193 -a(S"'enc_WildcardField'/2" -p102194 -S"'enc_WildcardField'(${1:Val}, ${2:TagIn}) $3" -p102195 -tp102196 -a(S'decode/2' -p102197 -S'decode(${1:Type}, ${2:Data}) $3' -p102198 -tp102199 -a(S'decode_disp/2' -p102200 -S'decode_disp(${1:Type}, ${2:Data}) $3' -p102201 -tp102202 -a(S'decode_message_acts_partial/1' -p102203 -S'decode_message_acts_partial(${1:Bytes}) $2' -p102204 -tp102205 -a(S'decode_message_mId/1' -p102206 -S'decode_message_mId(${1:Bytes}) $2' -p102207 -tp102208 -a(S'decode_message_trans_partial/1' -p102209 -S'decode_message_trans_partial(${1:Bytes}) $2' -p102210 -tp102211 -a(S'decode_message_version/1' -p102212 -S'decode_message_version(${1:Bytes}) $2' -p102213 -tp102214 -a(S'decode_part/2' -p102215 -S'decode_part(${1:Type}, ${2:Data0}) $3' -p102216 -tp102217 -a(S'encode/2' -p102218 -S'encode(${1:Type}, ${2:Data}) $3' -p102219 -tp102220 -a(S'encode_disp/2' -p102221 -S'encode_disp(${1:Type}, ${2:Data}) $3' -p102222 -tp102223 -a(S'encoding_rule/0' -p102224 -S'encoding_rule() $1' -p102225 -tp102226 -a(S'info/0' -p102227 -S'info() $1' -p102228 -tp102229 -asS'megaco_ber_bin_media_gateway_control_prev3c' -p102230 -(lp102231 -(S"'dec_ActionReply'/2" -p102232 -S"'dec_ActionReply'(${1:Tlv}, ${2:TagIn}) $3" -p102233 -tp102234 -a(S"'dec_ActionRequest'/2" -p102235 -S"'dec_ActionRequest'(${1:Tlv}, ${2:TagIn}) $3" -p102236 -tp102237 -a(S"'dec_AmmDescriptor'/2" -p102238 -S"'dec_AmmDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p102239 -tp102240 -a(S"'dec_AmmRequest'/2" -p102241 -S"'dec_AmmRequest'(${1:Tlv}, ${2:TagIn}) $3" -p102242 -tp102243 -a(S"'dec_AmmsReply'/2" -p102244 -S"'dec_AmmsReply'(${1:Tlv}, ${2:TagIn}) $3" -p102245 -tp102246 -a(S"'dec_AuditDescriptor'/2" -p102247 -S"'dec_AuditDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p102248 -tp102249 -a(S"'dec_AuditReply'/2" -p102250 -S"'dec_AuditReply'(${1:Tlv}, ${2:TagIn}) $3" -p102251 -tp102252 -a(S"'dec_AuditRequest'/2" -p102253 -S"'dec_AuditRequest'(${1:Tlv}, ${2:TagIn}) $3" -p102254 -tp102255 -a(S"'dec_AuditResult'/2" -p102256 -S"'dec_AuditResult'(${1:Tlv}, ${2:TagIn}) $3" -p102257 -tp102258 -a(S"'dec_AuditReturnParameter'/2" -p102259 -S"'dec_AuditReturnParameter'(${1:Tlv}, ${2:TagIn}) $3" -p102260 -tp102261 -a(S"'dec_AuthData'/2" -p102262 -S"'dec_AuthData'(${1:Tlv}, ${2:TagIn}) $3" -p102263 -tp102264 -a(S"'dec_AuthenticationHeader'/2" -p102265 -S"'dec_AuthenticationHeader'(${1:Tlv}, ${2:TagIn}) $3" -p102266 -tp102267 -a(S"'dec_Command'/2" -p102268 -S"'dec_Command'(${1:Tlv}, ${2:TagIn}) $3" -p102269 -tp102270 -a(S"'dec_CommandReply'/2" -p102271 -S"'dec_CommandReply'(${1:Tlv}, ${2:TagIn}) $3" -p102272 -tp102273 -a(S"'dec_CommandRequest'/2" -p102274 -S"'dec_CommandRequest'(${1:Tlv}, ${2:TagIn}) $3" -p102275 -tp102276 -a(S"'dec_ContextAttrAuditRequest'/2" -p102277 -S"'dec_ContextAttrAuditRequest'(${1:Tlv}, ${2:TagIn}) $3" -p102278 -tp102279 -a(S"'dec_ContextID'/2" -p102280 -S"'dec_ContextID'(${1:Tlv}, ${2:TagIn}) $3" -p102281 -tp102282 -a(S"'dec_ContextRequest'/2" -p102283 -S"'dec_ContextRequest'(${1:Tlv}, ${2:TagIn}) $3" -p102284 -tp102285 -a(S"'dec_DigitMapDescriptor'/2" -p102286 -S"'dec_DigitMapDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p102287 -tp102288 -a(S"'dec_DigitMapName'/2" -p102289 -S"'dec_DigitMapName'(${1:Tlv}, ${2:TagIn}) $3" -p102290 -tp102291 -a(S"'dec_DigitMapValue'/2" -p102292 -S"'dec_DigitMapValue'(${1:Tlv}, ${2:TagIn}) $3" -p102293 -tp102294 -a(S"'dec_DomainName'/2" -p102295 -S"'dec_DomainName'(${1:Tlv}, ${2:TagIn}) $3" -p102296 -tp102297 -a(S"'dec_ErrorCode'/2" -p102298 -S"'dec_ErrorCode'(${1:Tlv}, ${2:TagIn}) $3" -p102299 -tp102300 -a(S"'dec_ErrorDescriptor'/2" -p102301 -S"'dec_ErrorDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p102302 -tp102303 -a(S"'dec_ErrorText'/2" -p102304 -S"'dec_ErrorText'(${1:Tlv}, ${2:TagIn}) $3" -p102305 -tp102306 -a(S"'dec_EventBufferControl'/2" -p102307 -S"'dec_EventBufferControl'(${1:Tlv}, ${2:TagIn}) $3" -p102308 -tp102309 -a(S"'dec_EventBufferDescriptor'/2" -p102310 -S"'dec_EventBufferDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p102311 -tp102312 -a(S"'dec_EventDM'/2" -p102313 -S"'dec_EventDM'(${1:Tlv}, ${2:TagIn}) $3" -p102314 -tp102315 -a(S"'dec_EventName'/2" -p102316 -S"'dec_EventName'(${1:Tlv}, ${2:TagIn}) $3" -p102317 -tp102318 -a(S"'dec_EventParameter'/2" -p102319 -S"'dec_EventParameter'(${1:Tlv}, ${2:TagIn}) $3" -p102320 -tp102321 -a(S"'dec_EventSpec'/2" -p102322 -S"'dec_EventSpec'(${1:Tlv}, ${2:TagIn}) $3" -p102323 -tp102324 -a(S"'dec_EventsDescriptor'/2" -p102325 -S"'dec_EventsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p102326 -tp102327 -a(S"'dec_H221NonStandard'/2" -p102328 -S"'dec_H221NonStandard'(${1:Tlv}, ${2:TagIn}) $3" -p102329 -tp102330 -a(S"'dec_IP4Address'/2" -p102331 -S"'dec_IP4Address'(${1:Tlv}, ${2:TagIn}) $3" -p102332 -tp102333 -a(S"'dec_IP6Address'/2" -p102334 -S"'dec_IP6Address'(${1:Tlv}, ${2:TagIn}) $3" -p102335 -tp102336 -a(S"'dec_IndAudDigitMapDescriptor'/2" -p102337 -S"'dec_IndAudDigitMapDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p102338 -tp102339 -a(S"'dec_IndAudEventBufferDescriptor'/2" -p102340 -S"'dec_IndAudEventBufferDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p102341 -tp102342 -a(S"'dec_IndAudEventsDescriptor'/2" -p102343 -S"'dec_IndAudEventsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p102344 -tp102345 -a(S"'dec_IndAudLocalControlDescriptor'/2" -p102346 -S"'dec_IndAudLocalControlDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p102347 -tp102348 -a(S"'dec_IndAudLocalRemoteDescriptor'/2" -p102349 -S"'dec_IndAudLocalRemoteDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p102350 -tp102351 -a(S"'dec_IndAudMediaDescriptor'/2" -p102352 -S"'dec_IndAudMediaDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p102353 -tp102354 -a(S"'dec_IndAudPackagesDescriptor'/2" -p102355 -S"'dec_IndAudPackagesDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p102356 -tp102357 -a(S"'dec_IndAudPropertyGroup'/2" -p102358 -S"'dec_IndAudPropertyGroup'(${1:Tlv}, ${2:TagIn}) $3" -p102359 -tp102360 -a(S"'dec_IndAudPropertyParm'/2" -p102361 -S"'dec_IndAudPropertyParm'(${1:Tlv}, ${2:TagIn}) $3" -p102362 -tp102363 -a(S"'dec_IndAudSeqSigList'/2" -p102364 -S"'dec_IndAudSeqSigList'(${1:Tlv}, ${2:TagIn}) $3" -p102365 -tp102366 -a(S"'dec_IndAudSignal'/2" -p102367 -S"'dec_IndAudSignal'(${1:Tlv}, ${2:TagIn}) $3" -p102368 -tp102369 -a(S"'dec_IndAudSignalsDescriptor'/2" -p102370 -S"'dec_IndAudSignalsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p102371 -tp102372 -a(S"'dec_IndAudStatisticsDescriptor'/2" -p102373 -S"'dec_IndAudStatisticsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p102374 -tp102375 -a(S"'dec_IndAudStreamDescriptor'/2" -p102376 -S"'dec_IndAudStreamDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p102377 -tp102378 -a(S"'dec_IndAudStreamParms'/2" -p102379 -S"'dec_IndAudStreamParms'(${1:Tlv}, ${2:TagIn}) $3" -p102380 -tp102381 -a(S"'dec_IndAudTerminationStateDescriptor'/2" -p102382 -S"'dec_IndAudTerminationStateDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p102383 -tp102384 -a(S"'dec_IndAuditParameter'/2" -p102385 -S"'dec_IndAuditParameter'(${1:Tlv}, ${2:TagIn}) $3" -p102386 -tp102387 -a(S"'dec_LocalControlDescriptor'/2" -p102388 -S"'dec_LocalControlDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p102389 -tp102390 -a(S"'dec_LocalRemoteDescriptor'/2" -p102391 -S"'dec_LocalRemoteDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p102392 -tp102393 -a(S"'dec_MId'/2" -p102394 -S"'dec_MId'(${1:Tlv}, ${2:TagIn}) $3" -p102395 -tp102396 -a(S"'dec_MediaDescriptor'/2" -p102397 -S"'dec_MediaDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p102398 -tp102399 -a(S"'dec_MegacoMessage'/2" -p102400 -S"'dec_MegacoMessage'(${1:Tlv}, ${2:TagIn}) $3" -p102401 -tp102402 -a(S"'dec_Message'/2" -p102403 -S"'dec_Message'(${1:Tlv}, ${2:TagIn}) $3" -p102404 -tp102405 -a(S"'dec_ModemDescriptor'/2" -p102406 -S"'dec_ModemDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p102407 -tp102408 -a(S"'dec_ModemType'/2" -p102409 -S"'dec_ModemType'(${1:Tlv}, ${2:TagIn}) $3" -p102410 -tp102411 -a(S"'dec_MuxDescriptor'/2" -p102412 -S"'dec_MuxDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p102413 -tp102414 -a(S"'dec_MuxType'/2" -p102415 -S"'dec_MuxType'(${1:Tlv}, ${2:TagIn}) $3" -p102416 -tp102417 -a(S"'dec_Name'/2" -p102418 -S"'dec_Name'(${1:Tlv}, ${2:TagIn}) $3" -p102419 -tp102420 -a(S"'dec_NonStandardData'/2" -p102421 -S"'dec_NonStandardData'(${1:Tlv}, ${2:TagIn}) $3" -p102422 -tp102423 -a(S"'dec_NonStandardIdentifier'/2" -p102424 -S"'dec_NonStandardIdentifier'(${1:Tlv}, ${2:TagIn}) $3" -p102425 -tp102426 -a(S"'dec_NotifyBehaviour'/2" -p102427 -S"'dec_NotifyBehaviour'(${1:Tlv}, ${2:TagIn}) $3" -p102428 -tp102429 -a(S"'dec_NotifyCompletion'/2" -p102430 -S"'dec_NotifyCompletion'(${1:Tlv}, ${2:TagIn}) $3" -p102431 -tp102432 -a(S"'dec_NotifyReply'/2" -p102433 -S"'dec_NotifyReply'(${1:Tlv}, ${2:TagIn}) $3" -p102434 -tp102435 -a(S"'dec_NotifyRequest'/2" -p102436 -S"'dec_NotifyRequest'(${1:Tlv}, ${2:TagIn}) $3" -p102437 -tp102438 -a(S"'dec_ObservedEvent'/2" -p102439 -S"'dec_ObservedEvent'(${1:Tlv}, ${2:TagIn}) $3" -p102440 -tp102441 -a(S"'dec_ObservedEventsDescriptor'/2" -p102442 -S"'dec_ObservedEventsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p102443 -tp102444 -a(S"'dec_PackagesDescriptor'/2" -p102445 -S"'dec_PackagesDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p102446 -tp102447 -a(S"'dec_PackagesItem'/2" -p102448 -S"'dec_PackagesItem'(${1:Tlv}, ${2:TagIn}) $3" -p102449 -tp102450 -a(S"'dec_PathName'/2" -p102451 -S"'dec_PathName'(${1:Tlv}, ${2:TagIn}) $3" -p102452 -tp102453 -a(S"'dec_PkgdName'/2" -p102454 -S"'dec_PkgdName'(${1:Tlv}, ${2:TagIn}) $3" -p102455 -tp102456 -a(S"'dec_PropertyGroup'/2" -p102457 -S"'dec_PropertyGroup'(${1:Tlv}, ${2:TagIn}) $3" -p102458 -tp102459 -a(S"'dec_PropertyParm'/2" -p102460 -S"'dec_PropertyParm'(${1:Tlv}, ${2:TagIn}) $3" -p102461 -tp102462 -a(S"'dec_RegulatedEmbeddedDescriptor'/2" -p102463 -S"'dec_RegulatedEmbeddedDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p102464 -tp102465 -a(S"'dec_Relation'/2" -p102466 -S"'dec_Relation'(${1:Tlv}, ${2:TagIn}) $3" -p102467 -tp102468 -a(S"'dec_RequestID'/2" -p102469 -S"'dec_RequestID'(${1:Tlv}, ${2:TagIn}) $3" -p102470 -tp102471 -a(S"'dec_RequestedActions'/2" -p102472 -S"'dec_RequestedActions'(${1:Tlv}, ${2:TagIn}) $3" -p102473 -tp102474 -a(S"'dec_RequestedEvent'/2" -p102475 -S"'dec_RequestedEvent'(${1:Tlv}, ${2:TagIn}) $3" -p102476 -tp102477 -a(S"'dec_SecondEventsDescriptor'/2" -p102478 -S"'dec_SecondEventsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p102479 -tp102480 -a(S"'dec_SecondRequestedActions'/2" -p102481 -S"'dec_SecondRequestedActions'(${1:Tlv}, ${2:TagIn}) $3" -p102482 -tp102483 -a(S"'dec_SecondRequestedEvent'/2" -p102484 -S"'dec_SecondRequestedEvent'(${1:Tlv}, ${2:TagIn}) $3" -p102485 -tp102486 -a(S"'dec_SecurityParmIndex'/2" -p102487 -S"'dec_SecurityParmIndex'(${1:Tlv}, ${2:TagIn}) $3" -p102488 -tp102489 -a(S"'dec_SegmentNumber'/2" -p102490 -S"'dec_SegmentNumber'(${1:Tlv}, ${2:TagIn}) $3" -p102491 -tp102492 -a(S"'dec_SelectLogic'/2" -p102493 -S"'dec_SelectLogic'(${1:Tlv}, ${2:TagIn}) $3" -p102494 -tp102495 -a(S"'dec_SeqSigList'/2" -p102496 -S"'dec_SeqSigList'(${1:Tlv}, ${2:TagIn}) $3" -p102497 -tp102498 -a(S"'dec_SequenceNum'/2" -p102499 -S"'dec_SequenceNum'(${1:Tlv}, ${2:TagIn}) $3" -p102500 -tp102501 -a(S"'dec_ServiceChangeAddress'/2" -p102502 -S"'dec_ServiceChangeAddress'(${1:Tlv}, ${2:TagIn}) $3" -p102503 -tp102504 -a(S"'dec_ServiceChangeMethod'/2" -p102505 -S"'dec_ServiceChangeMethod'(${1:Tlv}, ${2:TagIn}) $3" -p102506 -tp102507 -a(S"'dec_ServiceChangeParm'/2" -p102508 -S"'dec_ServiceChangeParm'(${1:Tlv}, ${2:TagIn}) $3" -p102509 -tp102510 -a(S"'dec_ServiceChangeProfile'/2" -p102511 -S"'dec_ServiceChangeProfile'(${1:Tlv}, ${2:TagIn}) $3" -p102512 -tp102513 -a(S"'dec_ServiceChangeReply'/2" -p102514 -S"'dec_ServiceChangeReply'(${1:Tlv}, ${2:TagIn}) $3" -p102515 -tp102516 -a(S"'dec_ServiceChangeRequest'/2" -p102517 -S"'dec_ServiceChangeRequest'(${1:Tlv}, ${2:TagIn}) $3" -p102518 -tp102519 -a(S"'dec_ServiceChangeResParm'/2" -p102520 -S"'dec_ServiceChangeResParm'(${1:Tlv}, ${2:TagIn}) $3" -p102521 -tp102522 -a(S"'dec_ServiceChangeResult'/2" -p102523 -S"'dec_ServiceChangeResult'(${1:Tlv}, ${2:TagIn}) $3" -p102524 -tp102525 -a(S"'dec_ServiceState'/2" -p102526 -S"'dec_ServiceState'(${1:Tlv}, ${2:TagIn}) $3" -p102527 -tp102528 -a(S"'dec_SigParameter'/2" -p102529 -S"'dec_SigParameter'(${1:Tlv}, ${2:TagIn}) $3" -p102530 -tp102531 -a(S"'dec_Signal'/2" -p102532 -S"'dec_Signal'(${1:Tlv}, ${2:TagIn}) $3" -p102533 -tp102534 -a(S"'dec_SignalDirection'/2" -p102535 -S"'dec_SignalDirection'(${1:Tlv}, ${2:TagIn}) $3" -p102536 -tp102537 -a(S"'dec_SignalName'/2" -p102538 -S"'dec_SignalName'(${1:Tlv}, ${2:TagIn}) $3" -p102539 -tp102540 -a(S"'dec_SignalRequest'/2" -p102541 -S"'dec_SignalRequest'(${1:Tlv}, ${2:TagIn}) $3" -p102542 -tp102543 -a(S"'dec_SignalType'/2" -p102544 -S"'dec_SignalType'(${1:Tlv}, ${2:TagIn}) $3" -p102545 -tp102546 -a(S"'dec_SignalsDescriptor'/2" -p102547 -S"'dec_SignalsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p102548 -tp102549 -a(S"'dec_StatisticsDescriptor'/2" -p102550 -S"'dec_StatisticsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p102551 -tp102552 -a(S"'dec_StatisticsParameter'/2" -p102553 -S"'dec_StatisticsParameter'(${1:Tlv}, ${2:TagIn}) $3" -p102554 -tp102555 -a(S"'dec_StreamDescriptor'/2" -p102556 -S"'dec_StreamDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p102557 -tp102558 -a(S"'dec_StreamID'/2" -p102559 -S"'dec_StreamID'(${1:Tlv}, ${2:TagIn}) $3" -p102560 -tp102561 -a(S"'dec_StreamMode'/2" -p102562 -S"'dec_StreamMode'(${1:Tlv}, ${2:TagIn}) $3" -p102563 -tp102564 -a(S"'dec_StreamParms'/2" -p102565 -S"'dec_StreamParms'(${1:Tlv}, ${2:TagIn}) $3" -p102566 -tp102567 -a(S"'dec_SubtractRequest'/2" -p102568 -S"'dec_SubtractRequest'(${1:Tlv}, ${2:TagIn}) $3" -p102569 -tp102570 -a(S"'dec_TermListAuditResult'/2" -p102571 -S"'dec_TermListAuditResult'(${1:Tlv}, ${2:TagIn}) $3" -p102572 -tp102573 -a(S"'dec_TerminationAudit'/2" -p102574 -S"'dec_TerminationAudit'(${1:Tlv}, ${2:TagIn}) $3" -p102575 -tp102576 -a(S"'dec_TerminationID'/2" -p102577 -S"'dec_TerminationID'(${1:Tlv}, ${2:TagIn}) $3" -p102578 -tp102579 -a(S"'dec_TerminationIDList'/2" -p102580 -S"'dec_TerminationIDList'(${1:Tlv}, ${2:TagIn}) $3" -p102581 -tp102582 -a(S"'dec_TerminationStateDescriptor'/2" -p102583 -S"'dec_TerminationStateDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p102584 -tp102585 -a(S"'dec_TimeNotation'/2" -p102586 -S"'dec_TimeNotation'(${1:Tlv}, ${2:TagIn}) $3" -p102587 -tp102588 -a(S"'dec_TopologyRequest'/2" -p102589 -S"'dec_TopologyRequest'(${1:Tlv}, ${2:TagIn}) $3" -p102590 -tp102591 -a(S"'dec_Transaction'/2" -p102592 -S"'dec_Transaction'(${1:Tlv}, ${2:TagIn}) $3" -p102593 -tp102594 -a(S"'dec_TransactionAck'/2" -p102595 -S"'dec_TransactionAck'(${1:Tlv}, ${2:TagIn}) $3" -p102596 -tp102597 -a(S"'dec_TransactionId'/2" -p102598 -S"'dec_TransactionId'(${1:Tlv}, ${2:TagIn}) $3" -p102599 -tp102600 -a(S"'dec_TransactionPending'/2" -p102601 -S"'dec_TransactionPending'(${1:Tlv}, ${2:TagIn}) $3" -p102602 -tp102603 -a(S"'dec_TransactionReply'/2" -p102604 -S"'dec_TransactionReply'(${1:Tlv}, ${2:TagIn}) $3" -p102605 -tp102606 -a(S"'dec_TransactionRequest'/2" -p102607 -S"'dec_TransactionRequest'(${1:Tlv}, ${2:TagIn}) $3" -p102608 -tp102609 -a(S"'dec_TransactionResponseAck'/2" -p102610 -S"'dec_TransactionResponseAck'(${1:Tlv}, ${2:TagIn}) $3" -p102611 -tp102612 -a(S"'dec_Value'/2" -p102613 -S"'dec_Value'(${1:Tlv}, ${2:TagIn}) $3" -p102614 -tp102615 -a(S"'dec_WildcardField'/2" -p102616 -S"'dec_WildcardField'(${1:Tlv}, ${2:TagIn}) $3" -p102617 -tp102618 -a(S"'enc_ActionReply'/2" -p102619 -S"'enc_ActionReply'(${1:Val}, ${2:TagIn}) $3" -p102620 -tp102621 -a(S"'enc_ActionRequest'/2" -p102622 -S"'enc_ActionRequest'(${1:Val}, ${2:TagIn}) $3" -p102623 -tp102624 -a(S"'enc_AmmDescriptor'/2" -p102625 -S"'enc_AmmDescriptor'(${1:Val}, ${2:TagIn}) $3" -p102626 -tp102627 -a(S"'enc_AmmRequest'/2" -p102628 -S"'enc_AmmRequest'(${1:Val}, ${2:TagIn}) $3" -p102629 -tp102630 -a(S"'enc_AmmsReply'/2" -p102631 -S"'enc_AmmsReply'(${1:Val}, ${2:TagIn}) $3" -p102632 -tp102633 -a(S"'enc_AuditDescriptor'/2" -p102634 -S"'enc_AuditDescriptor'(${1:Val}, ${2:TagIn}) $3" -p102635 -tp102636 -a(S"'enc_AuditReply'/2" -p102637 -S"'enc_AuditReply'(${1:Val}, ${2:TagIn}) $3" -p102638 -tp102639 -a(S"'enc_AuditRequest'/2" -p102640 -S"'enc_AuditRequest'(${1:Val}, ${2:TagIn}) $3" -p102641 -tp102642 -a(S"'enc_AuditResult'/2" -p102643 -S"'enc_AuditResult'(${1:Val}, ${2:TagIn}) $3" -p102644 -tp102645 -a(S"'enc_AuditReturnParameter'/2" -p102646 -S"'enc_AuditReturnParameter'(${1:Val}, ${2:TagIn}) $3" -p102647 -tp102648 -a(S"'enc_AuthData'/2" -p102649 -S"'enc_AuthData'(${1:Val}, ${2:TagIn}) $3" -p102650 -tp102651 -a(S"'enc_AuthenticationHeader'/2" -p102652 -S"'enc_AuthenticationHeader'(${1:Val}, ${2:TagIn}) $3" -p102653 -tp102654 -a(S"'enc_Command'/2" -p102655 -S"'enc_Command'(${1:Val}, ${2:TagIn}) $3" -p102656 -tp102657 -a(S"'enc_CommandReply'/2" -p102658 -S"'enc_CommandReply'(${1:Val}, ${2:TagIn}) $3" -p102659 -tp102660 -a(S"'enc_CommandRequest'/2" -p102661 -S"'enc_CommandRequest'(${1:Val}, ${2:TagIn}) $3" -p102662 -tp102663 -a(S"'enc_ContextAttrAuditRequest'/2" -p102664 -S"'enc_ContextAttrAuditRequest'(${1:Val}, ${2:TagIn}) $3" -p102665 -tp102666 -a(S"'enc_ContextID'/2" -p102667 -S"'enc_ContextID'(${1:Val}, ${2:TagIn}) $3" -p102668 -tp102669 -a(S"'enc_ContextRequest'/2" -p102670 -S"'enc_ContextRequest'(${1:Val}, ${2:TagIn}) $3" -p102671 -tp102672 -a(S"'enc_DigitMapDescriptor'/2" -p102673 -S"'enc_DigitMapDescriptor'(${1:Val}, ${2:TagIn}) $3" -p102674 -tp102675 -a(S"'enc_DigitMapName'/2" -p102676 -S"'enc_DigitMapName'(${1:Val}, ${2:TagIn}) $3" -p102677 -tp102678 -a(S"'enc_DigitMapValue'/2" -p102679 -S"'enc_DigitMapValue'(${1:Val}, ${2:TagIn}) $3" -p102680 -tp102681 -a(S"'enc_DomainName'/2" -p102682 -S"'enc_DomainName'(${1:Val}, ${2:TagIn}) $3" -p102683 -tp102684 -a(S"'enc_ErrorCode'/2" -p102685 -S"'enc_ErrorCode'(${1:Val}, ${2:TagIn}) $3" -p102686 -tp102687 -a(S"'enc_ErrorDescriptor'/2" -p102688 -S"'enc_ErrorDescriptor'(${1:Val}, ${2:TagIn}) $3" -p102689 -tp102690 -a(S"'enc_ErrorText'/2" -p102691 -S"'enc_ErrorText'(${1:Val}, ${2:TagIn}) $3" -p102692 -tp102693 -a(S"'enc_EventBufferControl'/2" -p102694 -S"'enc_EventBufferControl'(${1:Val}, ${2:TagIn}) $3" -p102695 -tp102696 -a(S"'enc_EventBufferDescriptor'/2" -p102697 -S"'enc_EventBufferDescriptor'(${1:Val}, ${2:TagIn}) $3" -p102698 -tp102699 -a(S"'enc_EventDM'/2" -p102700 -S"'enc_EventDM'(${1:Val}, ${2:TagIn}) $3" -p102701 -tp102702 -a(S"'enc_EventName'/2" -p102703 -S"'enc_EventName'(${1:Val}, ${2:TagIn}) $3" -p102704 -tp102705 -a(S"'enc_EventParameter'/2" -p102706 -S"'enc_EventParameter'(${1:Val}, ${2:TagIn}) $3" -p102707 -tp102708 -a(S"'enc_EventSpec'/2" -p102709 -S"'enc_EventSpec'(${1:Val}, ${2:TagIn}) $3" -p102710 -tp102711 -a(S"'enc_EventsDescriptor'/2" -p102712 -S"'enc_EventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p102713 -tp102714 -a(S"'enc_H221NonStandard'/2" -p102715 -S"'enc_H221NonStandard'(${1:Val}, ${2:TagIn}) $3" -p102716 -tp102717 -a(S"'enc_IP4Address'/2" -p102718 -S"'enc_IP4Address'(${1:Val}, ${2:TagIn}) $3" -p102719 -tp102720 -a(S"'enc_IP6Address'/2" -p102721 -S"'enc_IP6Address'(${1:Val}, ${2:TagIn}) $3" -p102722 -tp102723 -a(S"'enc_IndAudDigitMapDescriptor'/2" -p102724 -S"'enc_IndAudDigitMapDescriptor'(${1:Val}, ${2:TagIn}) $3" -p102725 -tp102726 -a(S"'enc_IndAudEventBufferDescriptor'/2" -p102727 -S"'enc_IndAudEventBufferDescriptor'(${1:Val}, ${2:TagIn}) $3" -p102728 -tp102729 -a(S"'enc_IndAudEventsDescriptor'/2" -p102730 -S"'enc_IndAudEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p102731 -tp102732 -a(S"'enc_IndAudLocalControlDescriptor'/2" -p102733 -S"'enc_IndAudLocalControlDescriptor'(${1:Val}, ${2:TagIn}) $3" -p102734 -tp102735 -a(S"'enc_IndAudLocalRemoteDescriptor'/2" -p102736 -S"'enc_IndAudLocalRemoteDescriptor'(${1:Val}, ${2:TagIn}) $3" -p102737 -tp102738 -a(S"'enc_IndAudMediaDescriptor'/2" -p102739 -S"'enc_IndAudMediaDescriptor'(${1:Val}, ${2:TagIn}) $3" -p102740 -tp102741 -a(S"'enc_IndAudPackagesDescriptor'/2" -p102742 -S"'enc_IndAudPackagesDescriptor'(${1:Val}, ${2:TagIn}) $3" -p102743 -tp102744 -a(S"'enc_IndAudPropertyGroup'/2" -p102745 -S"'enc_IndAudPropertyGroup'(${1:Val}, ${2:TagIn}) $3" -p102746 -tp102747 -a(S"'enc_IndAudPropertyParm'/2" -p102748 -S"'enc_IndAudPropertyParm'(${1:Val}, ${2:TagIn}) $3" -p102749 -tp102750 -a(S"'enc_IndAudSeqSigList'/2" -p102751 -S"'enc_IndAudSeqSigList'(${1:Val}, ${2:TagIn}) $3" -p102752 -tp102753 -a(S"'enc_IndAudSignal'/2" -p102754 -S"'enc_IndAudSignal'(${1:Val}, ${2:TagIn}) $3" -p102755 -tp102756 -a(S"'enc_IndAudSignalsDescriptor'/2" -p102757 -S"'enc_IndAudSignalsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p102758 -tp102759 -a(S"'enc_IndAudStatisticsDescriptor'/2" -p102760 -S"'enc_IndAudStatisticsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p102761 -tp102762 -a(S"'enc_IndAudStreamDescriptor'/2" -p102763 -S"'enc_IndAudStreamDescriptor'(${1:Val}, ${2:TagIn}) $3" -p102764 -tp102765 -a(S"'enc_IndAudStreamParms'/2" -p102766 -S"'enc_IndAudStreamParms'(${1:Val}, ${2:TagIn}) $3" -p102767 -tp102768 -a(S"'enc_IndAudTerminationStateDescriptor'/2" -p102769 -S"'enc_IndAudTerminationStateDescriptor'(${1:Val}, ${2:TagIn}) $3" -p102770 -tp102771 -a(S"'enc_IndAuditParameter'/2" -p102772 -S"'enc_IndAuditParameter'(${1:Val}, ${2:TagIn}) $3" -p102773 -tp102774 -a(S"'enc_LocalControlDescriptor'/2" -p102775 -S"'enc_LocalControlDescriptor'(${1:Val}, ${2:TagIn}) $3" -p102776 -tp102777 -a(S"'enc_LocalRemoteDescriptor'/2" -p102778 -S"'enc_LocalRemoteDescriptor'(${1:Val}, ${2:TagIn}) $3" -p102779 -tp102780 -a(S"'enc_MId'/2" -p102781 -S"'enc_MId'(${1:Val}, ${2:TagIn}) $3" -p102782 -tp102783 -a(S"'enc_MediaDescriptor'/2" -p102784 -S"'enc_MediaDescriptor'(${1:Val}, ${2:TagIn}) $3" -p102785 -tp102786 -a(S"'enc_MegacoMessage'/2" -p102787 -S"'enc_MegacoMessage'(${1:Val}, ${2:TagIn}) $3" -p102788 -tp102789 -a(S"'enc_Message'/2" -p102790 -S"'enc_Message'(${1:Val}, ${2:TagIn}) $3" -p102791 -tp102792 -a(S"'enc_ModemDescriptor'/2" -p102793 -S"'enc_ModemDescriptor'(${1:Val}, ${2:TagIn}) $3" -p102794 -tp102795 -a(S"'enc_ModemType'/2" -p102796 -S"'enc_ModemType'(${1:Val}, ${2:TagIn}) $3" -p102797 -tp102798 -a(S"'enc_MuxDescriptor'/2" -p102799 -S"'enc_MuxDescriptor'(${1:Val}, ${2:TagIn}) $3" -p102800 -tp102801 -a(S"'enc_MuxType'/2" -p102802 -S"'enc_MuxType'(${1:Val}, ${2:TagIn}) $3" -p102803 -tp102804 -a(S"'enc_Name'/2" -p102805 -S"'enc_Name'(${1:Val}, ${2:TagIn}) $3" -p102806 -tp102807 -a(S"'enc_NonStandardData'/2" -p102808 -S"'enc_NonStandardData'(${1:Val}, ${2:TagIn}) $3" -p102809 -tp102810 -a(S"'enc_NonStandardIdentifier'/2" -p102811 -S"'enc_NonStandardIdentifier'(${1:Val}, ${2:TagIn}) $3" -p102812 -tp102813 -a(S"'enc_NotifyBehaviour'/2" -p102814 -S"'enc_NotifyBehaviour'(${1:Val}, ${2:TagIn}) $3" -p102815 -tp102816 -a(S"'enc_NotifyCompletion'/2" -p102817 -S"'enc_NotifyCompletion'(${1:Val}, ${2:TagIn}) $3" -p102818 -tp102819 -a(S"'enc_NotifyReply'/2" -p102820 -S"'enc_NotifyReply'(${1:Val}, ${2:TagIn}) $3" -p102821 -tp102822 -a(S"'enc_NotifyRequest'/2" -p102823 -S"'enc_NotifyRequest'(${1:Val}, ${2:TagIn}) $3" -p102824 -tp102825 -a(S"'enc_ObservedEvent'/2" -p102826 -S"'enc_ObservedEvent'(${1:Val}, ${2:TagIn}) $3" -p102827 -tp102828 -a(S"'enc_ObservedEventsDescriptor'/2" -p102829 -S"'enc_ObservedEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p102830 -tp102831 -a(S"'enc_PackagesDescriptor'/2" -p102832 -S"'enc_PackagesDescriptor'(${1:Val}, ${2:TagIn}) $3" -p102833 -tp102834 -a(S"'enc_PackagesItem'/2" -p102835 -S"'enc_PackagesItem'(${1:Val}, ${2:TagIn}) $3" -p102836 -tp102837 -a(S"'enc_PathName'/2" -p102838 -S"'enc_PathName'(${1:Val}, ${2:TagIn}) $3" -p102839 -tp102840 -a(S"'enc_PkgdName'/2" -p102841 -S"'enc_PkgdName'(${1:Val}, ${2:TagIn}) $3" -p102842 -tp102843 -a(S"'enc_PropertyGroup'/2" -p102844 -S"'enc_PropertyGroup'(${1:Val}, ${2:TagIn}) $3" -p102845 -tp102846 -a(S"'enc_PropertyParm'/2" -p102847 -S"'enc_PropertyParm'(${1:Val}, ${2:TagIn}) $3" -p102848 -tp102849 -a(S"'enc_RegulatedEmbeddedDescriptor'/2" -p102850 -S"'enc_RegulatedEmbeddedDescriptor'(${1:Val}, ${2:TagIn}) $3" -p102851 -tp102852 -a(S"'enc_Relation'/2" -p102853 -S"'enc_Relation'(${1:Val}, ${2:TagIn}) $3" -p102854 -tp102855 -a(S"'enc_RequestID'/2" -p102856 -S"'enc_RequestID'(${1:Val}, ${2:TagIn}) $3" -p102857 -tp102858 -a(S"'enc_RequestedActions'/2" -p102859 -S"'enc_RequestedActions'(${1:Val}, ${2:TagIn}) $3" -p102860 -tp102861 -a(S"'enc_RequestedEvent'/2" -p102862 -S"'enc_RequestedEvent'(${1:Val}, ${2:TagIn}) $3" -p102863 -tp102864 -a(S"'enc_SecondEventsDescriptor'/2" -p102865 -S"'enc_SecondEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p102866 -tp102867 -a(S"'enc_SecondRequestedActions'/2" -p102868 -S"'enc_SecondRequestedActions'(${1:Val}, ${2:TagIn}) $3" -p102869 -tp102870 -a(S"'enc_SecondRequestedEvent'/2" -p102871 -S"'enc_SecondRequestedEvent'(${1:Val}, ${2:TagIn}) $3" -p102872 -tp102873 -a(S"'enc_SecurityParmIndex'/2" -p102874 -S"'enc_SecurityParmIndex'(${1:Val}, ${2:TagIn}) $3" -p102875 -tp102876 -a(S"'enc_SegmentNumber'/2" -p102877 -S"'enc_SegmentNumber'(${1:Val}, ${2:TagIn}) $3" -p102878 -tp102879 -a(S"'enc_SelectLogic'/2" -p102880 -S"'enc_SelectLogic'(${1:Val}, ${2:TagIn}) $3" -p102881 -tp102882 -a(S"'enc_SeqSigList'/2" -p102883 -S"'enc_SeqSigList'(${1:Val}, ${2:TagIn}) $3" -p102884 -tp102885 -a(S"'enc_SequenceNum'/2" -p102886 -S"'enc_SequenceNum'(${1:Val}, ${2:TagIn}) $3" -p102887 -tp102888 -a(S"'enc_ServiceChangeAddress'/2" -p102889 -S"'enc_ServiceChangeAddress'(${1:Val}, ${2:TagIn}) $3" -p102890 -tp102891 -a(S"'enc_ServiceChangeMethod'/2" -p102892 -S"'enc_ServiceChangeMethod'(${1:Val}, ${2:TagIn}) $3" -p102893 -tp102894 -a(S"'enc_ServiceChangeParm'/2" -p102895 -S"'enc_ServiceChangeParm'(${1:Val}, ${2:TagIn}) $3" -p102896 -tp102897 -a(S"'enc_ServiceChangeProfile'/2" -p102898 -S"'enc_ServiceChangeProfile'(${1:Val}, ${2:TagIn}) $3" -p102899 -tp102900 -a(S"'enc_ServiceChangeReply'/2" -p102901 -S"'enc_ServiceChangeReply'(${1:Val}, ${2:TagIn}) $3" -p102902 -tp102903 -a(S"'enc_ServiceChangeRequest'/2" -p102904 -S"'enc_ServiceChangeRequest'(${1:Val}, ${2:TagIn}) $3" -p102905 -tp102906 -a(S"'enc_ServiceChangeResParm'/2" -p102907 -S"'enc_ServiceChangeResParm'(${1:Val}, ${2:TagIn}) $3" -p102908 -tp102909 -a(S"'enc_ServiceChangeResult'/2" -p102910 -S"'enc_ServiceChangeResult'(${1:Val}, ${2:TagIn}) $3" -p102911 -tp102912 -a(S"'enc_ServiceState'/2" -p102913 -S"'enc_ServiceState'(${1:Val}, ${2:TagIn}) $3" -p102914 -tp102915 -a(S"'enc_SigParameter'/2" -p102916 -S"'enc_SigParameter'(${1:Val}, ${2:TagIn}) $3" -p102917 -tp102918 -a(S"'enc_Signal'/2" -p102919 -S"'enc_Signal'(${1:Val}, ${2:TagIn}) $3" -p102920 -tp102921 -a(S"'enc_SignalDirection'/2" -p102922 -S"'enc_SignalDirection'(${1:Val}, ${2:TagIn}) $3" -p102923 -tp102924 -a(S"'enc_SignalName'/2" -p102925 -S"'enc_SignalName'(${1:Val}, ${2:TagIn}) $3" -p102926 -tp102927 -a(S"'enc_SignalRequest'/2" -p102928 -S"'enc_SignalRequest'(${1:Val}, ${2:TagIn}) $3" -p102929 -tp102930 -a(S"'enc_SignalType'/2" -p102931 -S"'enc_SignalType'(${1:Val}, ${2:TagIn}) $3" -p102932 -tp102933 -a(S"'enc_SignalsDescriptor'/2" -p102934 -S"'enc_SignalsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p102935 -tp102936 -a(S"'enc_StatisticsDescriptor'/2" -p102937 -S"'enc_StatisticsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p102938 -tp102939 -a(S"'enc_StatisticsParameter'/2" -p102940 -S"'enc_StatisticsParameter'(${1:Val}, ${2:TagIn}) $3" -p102941 -tp102942 -a(S"'enc_StreamDescriptor'/2" -p102943 -S"'enc_StreamDescriptor'(${1:Val}, ${2:TagIn}) $3" -p102944 -tp102945 -a(S"'enc_StreamID'/2" -p102946 -S"'enc_StreamID'(${1:Val}, ${2:TagIn}) $3" -p102947 -tp102948 -a(S"'enc_StreamMode'/2" -p102949 -S"'enc_StreamMode'(${1:Val}, ${2:TagIn}) $3" -p102950 -tp102951 -a(S"'enc_StreamParms'/2" -p102952 -S"'enc_StreamParms'(${1:Val}, ${2:TagIn}) $3" -p102953 -tp102954 -a(S"'enc_SubtractRequest'/2" -p102955 -S"'enc_SubtractRequest'(${1:Val}, ${2:TagIn}) $3" -p102956 -tp102957 -a(S"'enc_TermListAuditResult'/2" -p102958 -S"'enc_TermListAuditResult'(${1:Val}, ${2:TagIn}) $3" -p102959 -tp102960 -a(S"'enc_TerminationAudit'/2" -p102961 -S"'enc_TerminationAudit'(${1:Val}, ${2:TagIn}) $3" -p102962 -tp102963 -a(S"'enc_TerminationID'/2" -p102964 -S"'enc_TerminationID'(${1:Val}, ${2:TagIn}) $3" -p102965 -tp102966 -a(S"'enc_TerminationIDList'/2" -p102967 -S"'enc_TerminationIDList'(${1:Val}, ${2:TagIn}) $3" -p102968 -tp102969 -a(S"'enc_TerminationStateDescriptor'/2" -p102970 -S"'enc_TerminationStateDescriptor'(${1:Val}, ${2:TagIn}) $3" -p102971 -tp102972 -a(S"'enc_TimeNotation'/2" -p102973 -S"'enc_TimeNotation'(${1:Val}, ${2:TagIn}) $3" -p102974 -tp102975 -a(S"'enc_TopologyRequest'/2" -p102976 -S"'enc_TopologyRequest'(${1:Val}, ${2:TagIn}) $3" -p102977 -tp102978 -a(S"'enc_Transaction'/2" -p102979 -S"'enc_Transaction'(${1:Val}, ${2:TagIn}) $3" -p102980 -tp102981 -a(S"'enc_TransactionAck'/2" -p102982 -S"'enc_TransactionAck'(${1:Val}, ${2:TagIn}) $3" -p102983 -tp102984 -a(S"'enc_TransactionId'/2" -p102985 -S"'enc_TransactionId'(${1:Val}, ${2:TagIn}) $3" -p102986 -tp102987 -a(S"'enc_TransactionPending'/2" -p102988 -S"'enc_TransactionPending'(${1:Val}, ${2:TagIn}) $3" -p102989 -tp102990 -a(S"'enc_TransactionReply'/2" -p102991 -S"'enc_TransactionReply'(${1:Val}, ${2:TagIn}) $3" -p102992 -tp102993 -a(S"'enc_TransactionRequest'/2" -p102994 -S"'enc_TransactionRequest'(${1:Val}, ${2:TagIn}) $3" -p102995 -tp102996 -a(S"'enc_TransactionResponseAck'/2" -p102997 -S"'enc_TransactionResponseAck'(${1:Val}, ${2:TagIn}) $3" -p102998 -tp102999 -a(S"'enc_Value'/2" -p103000 -S"'enc_Value'(${1:Val}, ${2:TagIn}) $3" -p103001 -tp103002 -a(S"'enc_WildcardField'/2" -p103003 -S"'enc_WildcardField'(${1:Val}, ${2:TagIn}) $3" -p103004 -tp103005 -a(S'decode/2' -p103006 -S'decode(${1:Type}, ${2:Data}) $3' -p103007 -tp103008 -a(S'decode_disp/2' -p103009 -S'decode_disp(${1:Type}, ${2:Data}) $3' -p103010 -tp103011 -a(S'decode_message_acts_partial/1' -p103012 -S'decode_message_acts_partial(${1:Bytes}) $2' -p103013 -tp103014 -a(S'decode_message_mId/1' -p103015 -S'decode_message_mId(${1:Bytes}) $2' -p103016 -tp103017 -a(S'decode_message_trans_partial/1' -p103018 -S'decode_message_trans_partial(${1:Bytes}) $2' -p103019 -tp103020 -a(S'decode_message_version/1' -p103021 -S'decode_message_version(${1:Bytes}) $2' -p103022 -tp103023 -a(S'decode_part/2' -p103024 -S'decode_part(${1:Type}, ${2:Data0}) $3' -p103025 -tp103026 -a(S'encode/2' -p103027 -S'encode(${1:Type}, ${2:Data}) $3' -p103028 -tp103029 -a(S'encode_disp/2' -p103030 -S'encode_disp(${1:Type}, ${2:Data}) $3' -p103031 -tp103032 -a(S'encoding_rule/0' -p103033 -S'encoding_rule() $1' -p103034 -tp103035 -a(S'info/0' -p103036 -S'info() $1' -p103037 -tp103038 -asS'CosNotifyFilter_ConstraintInfoSeq' -p103039 -(lp103040 -(S'id/0' -p103041 -S'id() $1' -p103042 -tp103043 -a(S'name/0' -p103044 -S'name() $1' -p103045 -tp103046 -a(S'tc/0' -p103047 -S'tc() $1' -p103048 -tp103049 -asS'megaco_ber_bin_media_gateway_control_prev3a' -p103050 -(lp103051 -(S"'dec_ActionReply'/2" -p103052 -S"'dec_ActionReply'(${1:Tlv}, ${2:TagIn}) $3" -p103053 -tp103054 -a(S"'dec_ActionRequest'/2" -p103055 -S"'dec_ActionRequest'(${1:Tlv}, ${2:TagIn}) $3" -p103056 -tp103057 -a(S"'dec_AmmDescriptor'/2" -p103058 -S"'dec_AmmDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p103059 -tp103060 -a(S"'dec_AmmRequest'/2" -p103061 -S"'dec_AmmRequest'(${1:Tlv}, ${2:TagIn}) $3" -p103062 -tp103063 -a(S"'dec_AmmsReply'/2" -p103064 -S"'dec_AmmsReply'(${1:Tlv}, ${2:TagIn}) $3" -p103065 -tp103066 -a(S"'dec_AuditDescriptor'/2" -p103067 -S"'dec_AuditDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p103068 -tp103069 -a(S"'dec_AuditReply'/2" -p103070 -S"'dec_AuditReply'(${1:Tlv}, ${2:TagIn}) $3" -p103071 -tp103072 -a(S"'dec_AuditRequest'/2" -p103073 -S"'dec_AuditRequest'(${1:Tlv}, ${2:TagIn}) $3" -p103074 -tp103075 -a(S"'dec_AuditResult'/2" -p103076 -S"'dec_AuditResult'(${1:Tlv}, ${2:TagIn}) $3" -p103077 -tp103078 -a(S"'dec_AuditReturnParameter'/2" -p103079 -S"'dec_AuditReturnParameter'(${1:Tlv}, ${2:TagIn}) $3" -p103080 -tp103081 -a(S"'dec_AuthData'/2" -p103082 -S"'dec_AuthData'(${1:Tlv}, ${2:TagIn}) $3" -p103083 -tp103084 -a(S"'dec_AuthenticationHeader'/2" -p103085 -S"'dec_AuthenticationHeader'(${1:Tlv}, ${2:TagIn}) $3" -p103086 -tp103087 -a(S"'dec_Command'/2" -p103088 -S"'dec_Command'(${1:Tlv}, ${2:TagIn}) $3" -p103089 -tp103090 -a(S"'dec_CommandReply'/2" -p103091 -S"'dec_CommandReply'(${1:Tlv}, ${2:TagIn}) $3" -p103092 -tp103093 -a(S"'dec_CommandRequest'/2" -p103094 -S"'dec_CommandRequest'(${1:Tlv}, ${2:TagIn}) $3" -p103095 -tp103096 -a(S"'dec_ContextAttrAuditRequest'/2" -p103097 -S"'dec_ContextAttrAuditRequest'(${1:Tlv}, ${2:TagIn}) $3" -p103098 -tp103099 -a(S"'dec_ContextID'/2" -p103100 -S"'dec_ContextID'(${1:Tlv}, ${2:TagIn}) $3" -p103101 -tp103102 -a(S"'dec_ContextRequest'/2" -p103103 -S"'dec_ContextRequest'(${1:Tlv}, ${2:TagIn}) $3" -p103104 -tp103105 -a(S"'dec_DigitMapDescriptor'/2" -p103106 -S"'dec_DigitMapDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p103107 -tp103108 -a(S"'dec_DigitMapName'/2" -p103109 -S"'dec_DigitMapName'(${1:Tlv}, ${2:TagIn}) $3" -p103110 -tp103111 -a(S"'dec_DigitMapValue'/2" -p103112 -S"'dec_DigitMapValue'(${1:Tlv}, ${2:TagIn}) $3" -p103113 -tp103114 -a(S"'dec_DomainName'/2" -p103115 -S"'dec_DomainName'(${1:Tlv}, ${2:TagIn}) $3" -p103116 -tp103117 -a(S"'dec_ErrorCode'/2" -p103118 -S"'dec_ErrorCode'(${1:Tlv}, ${2:TagIn}) $3" -p103119 -tp103120 -a(S"'dec_ErrorDescriptor'/2" -p103121 -S"'dec_ErrorDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p103122 -tp103123 -a(S"'dec_ErrorText'/2" -p103124 -S"'dec_ErrorText'(${1:Tlv}, ${2:TagIn}) $3" -p103125 -tp103126 -a(S"'dec_EventBufferControl'/2" -p103127 -S"'dec_EventBufferControl'(${1:Tlv}, ${2:TagIn}) $3" -p103128 -tp103129 -a(S"'dec_EventBufferDescriptor'/2" -p103130 -S"'dec_EventBufferDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p103131 -tp103132 -a(S"'dec_EventDM'/2" -p103133 -S"'dec_EventDM'(${1:Tlv}, ${2:TagIn}) $3" -p103134 -tp103135 -a(S"'dec_EventName'/2" -p103136 -S"'dec_EventName'(${1:Tlv}, ${2:TagIn}) $3" -p103137 -tp103138 -a(S"'dec_EventParameter'/2" -p103139 -S"'dec_EventParameter'(${1:Tlv}, ${2:TagIn}) $3" -p103140 -tp103141 -a(S"'dec_EventSpec'/2" -p103142 -S"'dec_EventSpec'(${1:Tlv}, ${2:TagIn}) $3" -p103143 -tp103144 -a(S"'dec_EventsDescriptor'/2" -p103145 -S"'dec_EventsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p103146 -tp103147 -a(S"'dec_H221NonStandard'/2" -p103148 -S"'dec_H221NonStandard'(${1:Tlv}, ${2:TagIn}) $3" -p103149 -tp103150 -a(S"'dec_IP4Address'/2" -p103151 -S"'dec_IP4Address'(${1:Tlv}, ${2:TagIn}) $3" -p103152 -tp103153 -a(S"'dec_IP6Address'/2" -p103154 -S"'dec_IP6Address'(${1:Tlv}, ${2:TagIn}) $3" -p103155 -tp103156 -a(S"'dec_IndAudDigitMapDescriptor'/2" -p103157 -S"'dec_IndAudDigitMapDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p103158 -tp103159 -a(S"'dec_IndAudEventBufferDescriptor'/2" -p103160 -S"'dec_IndAudEventBufferDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p103161 -tp103162 -a(S"'dec_IndAudEventsDescriptor'/2" -p103163 -S"'dec_IndAudEventsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p103164 -tp103165 -a(S"'dec_IndAudLocalControlDescriptor'/2" -p103166 -S"'dec_IndAudLocalControlDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p103167 -tp103168 -a(S"'dec_IndAudLocalRemoteDescriptor'/2" -p103169 -S"'dec_IndAudLocalRemoteDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p103170 -tp103171 -a(S"'dec_IndAudMediaDescriptor'/2" -p103172 -S"'dec_IndAudMediaDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p103173 -tp103174 -a(S"'dec_IndAudPackagesDescriptor'/2" -p103175 -S"'dec_IndAudPackagesDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p103176 -tp103177 -a(S"'dec_IndAudPropertyGroup'/2" -p103178 -S"'dec_IndAudPropertyGroup'(${1:Tlv}, ${2:TagIn}) $3" -p103179 -tp103180 -a(S"'dec_IndAudPropertyParm'/2" -p103181 -S"'dec_IndAudPropertyParm'(${1:Tlv}, ${2:TagIn}) $3" -p103182 -tp103183 -a(S"'dec_IndAudSeqSigList'/2" -p103184 -S"'dec_IndAudSeqSigList'(${1:Tlv}, ${2:TagIn}) $3" -p103185 -tp103186 -a(S"'dec_IndAudSignal'/2" -p103187 -S"'dec_IndAudSignal'(${1:Tlv}, ${2:TagIn}) $3" -p103188 -tp103189 -a(S"'dec_IndAudSignalsDescriptor'/2" -p103190 -S"'dec_IndAudSignalsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p103191 -tp103192 -a(S"'dec_IndAudStatisticsDescriptor'/2" -p103193 -S"'dec_IndAudStatisticsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p103194 -tp103195 -a(S"'dec_IndAudStreamDescriptor'/2" -p103196 -S"'dec_IndAudStreamDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p103197 -tp103198 -a(S"'dec_IndAudStreamParms'/2" -p103199 -S"'dec_IndAudStreamParms'(${1:Tlv}, ${2:TagIn}) $3" -p103200 -tp103201 -a(S"'dec_IndAudTerminationStateDescriptor'/2" -p103202 -S"'dec_IndAudTerminationStateDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p103203 -tp103204 -a(S"'dec_IndAuditParameter'/2" -p103205 -S"'dec_IndAuditParameter'(${1:Tlv}, ${2:TagIn}) $3" -p103206 -tp103207 -a(S"'dec_LocalControlDescriptor'/2" -p103208 -S"'dec_LocalControlDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p103209 -tp103210 -a(S"'dec_LocalRemoteDescriptor'/2" -p103211 -S"'dec_LocalRemoteDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p103212 -tp103213 -a(S"'dec_MId'/2" -p103214 -S"'dec_MId'(${1:Tlv}, ${2:TagIn}) $3" -p103215 -tp103216 -a(S"'dec_MediaDescriptor'/2" -p103217 -S"'dec_MediaDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p103218 -tp103219 -a(S"'dec_MegacoMessage'/2" -p103220 -S"'dec_MegacoMessage'(${1:Tlv}, ${2:TagIn}) $3" -p103221 -tp103222 -a(S"'dec_Message'/2" -p103223 -S"'dec_Message'(${1:Tlv}, ${2:TagIn}) $3" -p103224 -tp103225 -a(S"'dec_ModemDescriptor'/2" -p103226 -S"'dec_ModemDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p103227 -tp103228 -a(S"'dec_ModemType'/2" -p103229 -S"'dec_ModemType'(${1:Tlv}, ${2:TagIn}) $3" -p103230 -tp103231 -a(S"'dec_MuxDescriptor'/2" -p103232 -S"'dec_MuxDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p103233 -tp103234 -a(S"'dec_MuxType'/2" -p103235 -S"'dec_MuxType'(${1:Tlv}, ${2:TagIn}) $3" -p103236 -tp103237 -a(S"'dec_Name'/2" -p103238 -S"'dec_Name'(${1:Tlv}, ${2:TagIn}) $3" -p103239 -tp103240 -a(S"'dec_NonStandardData'/2" -p103241 -S"'dec_NonStandardData'(${1:Tlv}, ${2:TagIn}) $3" -p103242 -tp103243 -a(S"'dec_NonStandardIdentifier'/2" -p103244 -S"'dec_NonStandardIdentifier'(${1:Tlv}, ${2:TagIn}) $3" -p103245 -tp103246 -a(S"'dec_NotifyCompletion'/2" -p103247 -S"'dec_NotifyCompletion'(${1:Tlv}, ${2:TagIn}) $3" -p103248 -tp103249 -a(S"'dec_NotifyReply'/2" -p103250 -S"'dec_NotifyReply'(${1:Tlv}, ${2:TagIn}) $3" -p103251 -tp103252 -a(S"'dec_NotifyRequest'/2" -p103253 -S"'dec_NotifyRequest'(${1:Tlv}, ${2:TagIn}) $3" -p103254 -tp103255 -a(S"'dec_ObservedEvent'/2" -p103256 -S"'dec_ObservedEvent'(${1:Tlv}, ${2:TagIn}) $3" -p103257 -tp103258 -a(S"'dec_ObservedEventsDescriptor'/2" -p103259 -S"'dec_ObservedEventsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p103260 -tp103261 -a(S"'dec_PackagesDescriptor'/2" -p103262 -S"'dec_PackagesDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p103263 -tp103264 -a(S"'dec_PackagesItem'/2" -p103265 -S"'dec_PackagesItem'(${1:Tlv}, ${2:TagIn}) $3" -p103266 -tp103267 -a(S"'dec_PathName'/2" -p103268 -S"'dec_PathName'(${1:Tlv}, ${2:TagIn}) $3" -p103269 -tp103270 -a(S"'dec_PkgdName'/2" -p103271 -S"'dec_PkgdName'(${1:Tlv}, ${2:TagIn}) $3" -p103272 -tp103273 -a(S"'dec_PropertyGroup'/2" -p103274 -S"'dec_PropertyGroup'(${1:Tlv}, ${2:TagIn}) $3" -p103275 -tp103276 -a(S"'dec_PropertyParm'/2" -p103277 -S"'dec_PropertyParm'(${1:Tlv}, ${2:TagIn}) $3" -p103278 -tp103279 -a(S"'dec_Relation'/2" -p103280 -S"'dec_Relation'(${1:Tlv}, ${2:TagIn}) $3" -p103281 -tp103282 -a(S"'dec_RequestID'/2" -p103283 -S"'dec_RequestID'(${1:Tlv}, ${2:TagIn}) $3" -p103284 -tp103285 -a(S"'dec_RequestedActions'/2" -p103286 -S"'dec_RequestedActions'(${1:Tlv}, ${2:TagIn}) $3" -p103287 -tp103288 -a(S"'dec_RequestedEvent'/2" -p103289 -S"'dec_RequestedEvent'(${1:Tlv}, ${2:TagIn}) $3" -p103290 -tp103291 -a(S"'dec_SecondEventsDescriptor'/2" -p103292 -S"'dec_SecondEventsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p103293 -tp103294 -a(S"'dec_SecondRequestedActions'/2" -p103295 -S"'dec_SecondRequestedActions'(${1:Tlv}, ${2:TagIn}) $3" -p103296 -tp103297 -a(S"'dec_SecondRequestedEvent'/2" -p103298 -S"'dec_SecondRequestedEvent'(${1:Tlv}, ${2:TagIn}) $3" -p103299 -tp103300 -a(S"'dec_SecurityParmIndex'/2" -p103301 -S"'dec_SecurityParmIndex'(${1:Tlv}, ${2:TagIn}) $3" -p103302 -tp103303 -a(S"'dec_SegmentNumber'/2" -p103304 -S"'dec_SegmentNumber'(${1:Tlv}, ${2:TagIn}) $3" -p103305 -tp103306 -a(S"'dec_SeqSigList'/2" -p103307 -S"'dec_SeqSigList'(${1:Tlv}, ${2:TagIn}) $3" -p103308 -tp103309 -a(S"'dec_SequenceNum'/2" -p103310 -S"'dec_SequenceNum'(${1:Tlv}, ${2:TagIn}) $3" -p103311 -tp103312 -a(S"'dec_ServiceChangeAddress'/2" -p103313 -S"'dec_ServiceChangeAddress'(${1:Tlv}, ${2:TagIn}) $3" -p103314 -tp103315 -a(S"'dec_ServiceChangeMethod'/2" -p103316 -S"'dec_ServiceChangeMethod'(${1:Tlv}, ${2:TagIn}) $3" -p103317 -tp103318 -a(S"'dec_ServiceChangeParm'/2" -p103319 -S"'dec_ServiceChangeParm'(${1:Tlv}, ${2:TagIn}) $3" -p103320 -tp103321 -a(S"'dec_ServiceChangeProfile'/2" -p103322 -S"'dec_ServiceChangeProfile'(${1:Tlv}, ${2:TagIn}) $3" -p103323 -tp103324 -a(S"'dec_ServiceChangeReply'/2" -p103325 -S"'dec_ServiceChangeReply'(${1:Tlv}, ${2:TagIn}) $3" -p103326 -tp103327 -a(S"'dec_ServiceChangeRequest'/2" -p103328 -S"'dec_ServiceChangeRequest'(${1:Tlv}, ${2:TagIn}) $3" -p103329 -tp103330 -a(S"'dec_ServiceChangeResParm'/2" -p103331 -S"'dec_ServiceChangeResParm'(${1:Tlv}, ${2:TagIn}) $3" -p103332 -tp103333 -a(S"'dec_ServiceChangeResult'/2" -p103334 -S"'dec_ServiceChangeResult'(${1:Tlv}, ${2:TagIn}) $3" -p103335 -tp103336 -a(S"'dec_ServiceState'/2" -p103337 -S"'dec_ServiceState'(${1:Tlv}, ${2:TagIn}) $3" -p103338 -tp103339 -a(S"'dec_SigParameter'/2" -p103340 -S"'dec_SigParameter'(${1:Tlv}, ${2:TagIn}) $3" -p103341 -tp103342 -a(S"'dec_Signal'/2" -p103343 -S"'dec_Signal'(${1:Tlv}, ${2:TagIn}) $3" -p103344 -tp103345 -a(S"'dec_SignalDirection'/2" -p103346 -S"'dec_SignalDirection'(${1:Tlv}, ${2:TagIn}) $3" -p103347 -tp103348 -a(S"'dec_SignalName'/2" -p103349 -S"'dec_SignalName'(${1:Tlv}, ${2:TagIn}) $3" -p103350 -tp103351 -a(S"'dec_SignalRequest'/2" -p103352 -S"'dec_SignalRequest'(${1:Tlv}, ${2:TagIn}) $3" -p103353 -tp103354 -a(S"'dec_SignalType'/2" -p103355 -S"'dec_SignalType'(${1:Tlv}, ${2:TagIn}) $3" -p103356 -tp103357 -a(S"'dec_SignalsDescriptor'/2" -p103358 -S"'dec_SignalsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p103359 -tp103360 -a(S"'dec_StatisticsDescriptor'/2" -p103361 -S"'dec_StatisticsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p103362 -tp103363 -a(S"'dec_StatisticsParameter'/2" -p103364 -S"'dec_StatisticsParameter'(${1:Tlv}, ${2:TagIn}) $3" -p103365 -tp103366 -a(S"'dec_StreamDescriptor'/2" -p103367 -S"'dec_StreamDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p103368 -tp103369 -a(S"'dec_StreamID'/2" -p103370 -S"'dec_StreamID'(${1:Tlv}, ${2:TagIn}) $3" -p103371 -tp103372 -a(S"'dec_StreamMode'/2" -p103373 -S"'dec_StreamMode'(${1:Tlv}, ${2:TagIn}) $3" -p103374 -tp103375 -a(S"'dec_StreamParms'/2" -p103376 -S"'dec_StreamParms'(${1:Tlv}, ${2:TagIn}) $3" -p103377 -tp103378 -a(S"'dec_SubtractRequest'/2" -p103379 -S"'dec_SubtractRequest'(${1:Tlv}, ${2:TagIn}) $3" -p103380 -tp103381 -a(S"'dec_TerminationAudit'/2" -p103382 -S"'dec_TerminationAudit'(${1:Tlv}, ${2:TagIn}) $3" -p103383 -tp103384 -a(S"'dec_TerminationID'/2" -p103385 -S"'dec_TerminationID'(${1:Tlv}, ${2:TagIn}) $3" -p103386 -tp103387 -a(S"'dec_TerminationIDList'/2" -p103388 -S"'dec_TerminationIDList'(${1:Tlv}, ${2:TagIn}) $3" -p103389 -tp103390 -a(S"'dec_TerminationStateDescriptor'/2" -p103391 -S"'dec_TerminationStateDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p103392 -tp103393 -a(S"'dec_TimeNotation'/2" -p103394 -S"'dec_TimeNotation'(${1:Tlv}, ${2:TagIn}) $3" -p103395 -tp103396 -a(S"'dec_TopologyRequest'/2" -p103397 -S"'dec_TopologyRequest'(${1:Tlv}, ${2:TagIn}) $3" -p103398 -tp103399 -a(S"'dec_Transaction'/2" -p103400 -S"'dec_Transaction'(${1:Tlv}, ${2:TagIn}) $3" -p103401 -tp103402 -a(S"'dec_TransactionAck'/2" -p103403 -S"'dec_TransactionAck'(${1:Tlv}, ${2:TagIn}) $3" -p103404 -tp103405 -a(S"'dec_TransactionId'/2" -p103406 -S"'dec_TransactionId'(${1:Tlv}, ${2:TagIn}) $3" -p103407 -tp103408 -a(S"'dec_TransactionPending'/2" -p103409 -S"'dec_TransactionPending'(${1:Tlv}, ${2:TagIn}) $3" -p103410 -tp103411 -a(S"'dec_TransactionReply'/2" -p103412 -S"'dec_TransactionReply'(${1:Tlv}, ${2:TagIn}) $3" -p103413 -tp103414 -a(S"'dec_TransactionRequest'/2" -p103415 -S"'dec_TransactionRequest'(${1:Tlv}, ${2:TagIn}) $3" -p103416 -tp103417 -a(S"'dec_TransactionResponseAck'/2" -p103418 -S"'dec_TransactionResponseAck'(${1:Tlv}, ${2:TagIn}) $3" -p103419 -tp103420 -a(S"'dec_Value'/2" -p103421 -S"'dec_Value'(${1:Tlv}, ${2:TagIn}) $3" -p103422 -tp103423 -a(S"'dec_WildcardField'/2" -p103424 -S"'dec_WildcardField'(${1:Tlv}, ${2:TagIn}) $3" -p103425 -tp103426 -a(S"'enc_ActionReply'/2" -p103427 -S"'enc_ActionReply'(${1:Val}, ${2:TagIn}) $3" -p103428 -tp103429 -a(S"'enc_ActionRequest'/2" -p103430 -S"'enc_ActionRequest'(${1:Val}, ${2:TagIn}) $3" -p103431 -tp103432 -a(S"'enc_AmmDescriptor'/2" -p103433 -S"'enc_AmmDescriptor'(${1:Val}, ${2:TagIn}) $3" -p103434 -tp103435 -a(S"'enc_AmmRequest'/2" -p103436 -S"'enc_AmmRequest'(${1:Val}, ${2:TagIn}) $3" -p103437 -tp103438 -a(S"'enc_AmmsReply'/2" -p103439 -S"'enc_AmmsReply'(${1:Val}, ${2:TagIn}) $3" -p103440 -tp103441 -a(S"'enc_AuditDescriptor'/2" -p103442 -S"'enc_AuditDescriptor'(${1:Val}, ${2:TagIn}) $3" -p103443 -tp103444 -a(S"'enc_AuditReply'/2" -p103445 -S"'enc_AuditReply'(${1:Val}, ${2:TagIn}) $3" -p103446 -tp103447 -a(S"'enc_AuditRequest'/2" -p103448 -S"'enc_AuditRequest'(${1:Val}, ${2:TagIn}) $3" -p103449 -tp103450 -a(S"'enc_AuditResult'/2" -p103451 -S"'enc_AuditResult'(${1:Val}, ${2:TagIn}) $3" -p103452 -tp103453 -a(S"'enc_AuditReturnParameter'/2" -p103454 -S"'enc_AuditReturnParameter'(${1:Val}, ${2:TagIn}) $3" -p103455 -tp103456 -a(S"'enc_AuthData'/2" -p103457 -S"'enc_AuthData'(${1:Val}, ${2:TagIn}) $3" -p103458 -tp103459 -a(S"'enc_AuthenticationHeader'/2" -p103460 -S"'enc_AuthenticationHeader'(${1:Val}, ${2:TagIn}) $3" -p103461 -tp103462 -a(S"'enc_Command'/2" -p103463 -S"'enc_Command'(${1:Val}, ${2:TagIn}) $3" -p103464 -tp103465 -a(S"'enc_CommandReply'/2" -p103466 -S"'enc_CommandReply'(${1:Val}, ${2:TagIn}) $3" -p103467 -tp103468 -a(S"'enc_CommandRequest'/2" -p103469 -S"'enc_CommandRequest'(${1:Val}, ${2:TagIn}) $3" -p103470 -tp103471 -a(S"'enc_ContextAttrAuditRequest'/2" -p103472 -S"'enc_ContextAttrAuditRequest'(${1:Val}, ${2:TagIn}) $3" -p103473 -tp103474 -a(S"'enc_ContextID'/2" -p103475 -S"'enc_ContextID'(${1:Val}, ${2:TagIn}) $3" -p103476 -tp103477 -a(S"'enc_ContextRequest'/2" -p103478 -S"'enc_ContextRequest'(${1:Val}, ${2:TagIn}) $3" -p103479 -tp103480 -a(S"'enc_DigitMapDescriptor'/2" -p103481 -S"'enc_DigitMapDescriptor'(${1:Val}, ${2:TagIn}) $3" -p103482 -tp103483 -a(S"'enc_DigitMapName'/2" -p103484 -S"'enc_DigitMapName'(${1:Val}, ${2:TagIn}) $3" -p103485 -tp103486 -a(S"'enc_DigitMapValue'/2" -p103487 -S"'enc_DigitMapValue'(${1:Val}, ${2:TagIn}) $3" -p103488 -tp103489 -a(S"'enc_DomainName'/2" -p103490 -S"'enc_DomainName'(${1:Val}, ${2:TagIn}) $3" -p103491 -tp103492 -a(S"'enc_ErrorCode'/2" -p103493 -S"'enc_ErrorCode'(${1:Val}, ${2:TagIn}) $3" -p103494 -tp103495 -a(S"'enc_ErrorDescriptor'/2" -p103496 -S"'enc_ErrorDescriptor'(${1:Val}, ${2:TagIn}) $3" -p103497 -tp103498 -a(S"'enc_ErrorText'/2" -p103499 -S"'enc_ErrorText'(${1:Val}, ${2:TagIn}) $3" -p103500 -tp103501 -a(S"'enc_EventBufferControl'/2" -p103502 -S"'enc_EventBufferControl'(${1:Val}, ${2:TagIn}) $3" -p103503 -tp103504 -a(S"'enc_EventBufferDescriptor'/2" -p103505 -S"'enc_EventBufferDescriptor'(${1:Val}, ${2:TagIn}) $3" -p103506 -tp103507 -a(S"'enc_EventDM'/2" -p103508 -S"'enc_EventDM'(${1:Val}, ${2:TagIn}) $3" -p103509 -tp103510 -a(S"'enc_EventName'/2" -p103511 -S"'enc_EventName'(${1:Val}, ${2:TagIn}) $3" -p103512 -tp103513 -a(S"'enc_EventParameter'/2" -p103514 -S"'enc_EventParameter'(${1:Val}, ${2:TagIn}) $3" -p103515 -tp103516 -a(S"'enc_EventSpec'/2" -p103517 -S"'enc_EventSpec'(${1:Val}, ${2:TagIn}) $3" -p103518 -tp103519 -a(S"'enc_EventsDescriptor'/2" -p103520 -S"'enc_EventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p103521 -tp103522 -a(S"'enc_H221NonStandard'/2" -p103523 -S"'enc_H221NonStandard'(${1:Val}, ${2:TagIn}) $3" -p103524 -tp103525 -a(S"'enc_IP4Address'/2" -p103526 -S"'enc_IP4Address'(${1:Val}, ${2:TagIn}) $3" -p103527 -tp103528 -a(S"'enc_IP6Address'/2" -p103529 -S"'enc_IP6Address'(${1:Val}, ${2:TagIn}) $3" -p103530 -tp103531 -a(S"'enc_IndAudDigitMapDescriptor'/2" -p103532 -S"'enc_IndAudDigitMapDescriptor'(${1:Val}, ${2:TagIn}) $3" -p103533 -tp103534 -a(S"'enc_IndAudEventBufferDescriptor'/2" -p103535 -S"'enc_IndAudEventBufferDescriptor'(${1:Val}, ${2:TagIn}) $3" -p103536 -tp103537 -a(S"'enc_IndAudEventsDescriptor'/2" -p103538 -S"'enc_IndAudEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p103539 -tp103540 -a(S"'enc_IndAudLocalControlDescriptor'/2" -p103541 -S"'enc_IndAudLocalControlDescriptor'(${1:Val}, ${2:TagIn}) $3" -p103542 -tp103543 -a(S"'enc_IndAudLocalRemoteDescriptor'/2" -p103544 -S"'enc_IndAudLocalRemoteDescriptor'(${1:Val}, ${2:TagIn}) $3" -p103545 -tp103546 -a(S"'enc_IndAudMediaDescriptor'/2" -p103547 -S"'enc_IndAudMediaDescriptor'(${1:Val}, ${2:TagIn}) $3" -p103548 -tp103549 -a(S"'enc_IndAudPackagesDescriptor'/2" -p103550 -S"'enc_IndAudPackagesDescriptor'(${1:Val}, ${2:TagIn}) $3" -p103551 -tp103552 -a(S"'enc_IndAudPropertyGroup'/2" -p103553 -S"'enc_IndAudPropertyGroup'(${1:Val}, ${2:TagIn}) $3" -p103554 -tp103555 -a(S"'enc_IndAudPropertyParm'/2" -p103556 -S"'enc_IndAudPropertyParm'(${1:Val}, ${2:TagIn}) $3" -p103557 -tp103558 -a(S"'enc_IndAudSeqSigList'/2" -p103559 -S"'enc_IndAudSeqSigList'(${1:Val}, ${2:TagIn}) $3" -p103560 -tp103561 -a(S"'enc_IndAudSignal'/2" -p103562 -S"'enc_IndAudSignal'(${1:Val}, ${2:TagIn}) $3" -p103563 -tp103564 -a(S"'enc_IndAudSignalsDescriptor'/2" -p103565 -S"'enc_IndAudSignalsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p103566 -tp103567 -a(S"'enc_IndAudStatisticsDescriptor'/2" -p103568 -S"'enc_IndAudStatisticsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p103569 -tp103570 -a(S"'enc_IndAudStreamDescriptor'/2" -p103571 -S"'enc_IndAudStreamDescriptor'(${1:Val}, ${2:TagIn}) $3" -p103572 -tp103573 -a(S"'enc_IndAudStreamParms'/2" -p103574 -S"'enc_IndAudStreamParms'(${1:Val}, ${2:TagIn}) $3" -p103575 -tp103576 -a(S"'enc_IndAudTerminationStateDescriptor'/2" -p103577 -S"'enc_IndAudTerminationStateDescriptor'(${1:Val}, ${2:TagIn}) $3" -p103578 -tp103579 -a(S"'enc_IndAuditParameter'/2" -p103580 -S"'enc_IndAuditParameter'(${1:Val}, ${2:TagIn}) $3" -p103581 -tp103582 -a(S"'enc_LocalControlDescriptor'/2" -p103583 -S"'enc_LocalControlDescriptor'(${1:Val}, ${2:TagIn}) $3" -p103584 -tp103585 -a(S"'enc_LocalRemoteDescriptor'/2" -p103586 -S"'enc_LocalRemoteDescriptor'(${1:Val}, ${2:TagIn}) $3" -p103587 -tp103588 -a(S"'enc_MId'/2" -p103589 -S"'enc_MId'(${1:Val}, ${2:TagIn}) $3" -p103590 -tp103591 -a(S"'enc_MediaDescriptor'/2" -p103592 -S"'enc_MediaDescriptor'(${1:Val}, ${2:TagIn}) $3" -p103593 -tp103594 -a(S"'enc_MegacoMessage'/2" -p103595 -S"'enc_MegacoMessage'(${1:Val}, ${2:TagIn}) $3" -p103596 -tp103597 -a(S"'enc_Message'/2" -p103598 -S"'enc_Message'(${1:Val}, ${2:TagIn}) $3" -p103599 -tp103600 -a(S"'enc_ModemDescriptor'/2" -p103601 -S"'enc_ModemDescriptor'(${1:Val}, ${2:TagIn}) $3" -p103602 -tp103603 -a(S"'enc_ModemType'/2" -p103604 -S"'enc_ModemType'(${1:Val}, ${2:TagIn}) $3" -p103605 -tp103606 -a(S"'enc_MuxDescriptor'/2" -p103607 -S"'enc_MuxDescriptor'(${1:Val}, ${2:TagIn}) $3" -p103608 -tp103609 -a(S"'enc_MuxType'/2" -p103610 -S"'enc_MuxType'(${1:Val}, ${2:TagIn}) $3" -p103611 -tp103612 -a(S"'enc_Name'/2" -p103613 -S"'enc_Name'(${1:Val}, ${2:TagIn}) $3" -p103614 -tp103615 -a(S"'enc_NonStandardData'/2" -p103616 -S"'enc_NonStandardData'(${1:Val}, ${2:TagIn}) $3" -p103617 -tp103618 -a(S"'enc_NonStandardIdentifier'/2" -p103619 -S"'enc_NonStandardIdentifier'(${1:Val}, ${2:TagIn}) $3" -p103620 -tp103621 -a(S"'enc_NotifyCompletion'/2" -p103622 -S"'enc_NotifyCompletion'(${1:Val}, ${2:TagIn}) $3" -p103623 -tp103624 -a(S"'enc_NotifyReply'/2" -p103625 -S"'enc_NotifyReply'(${1:Val}, ${2:TagIn}) $3" -p103626 -tp103627 -a(S"'enc_NotifyRequest'/2" -p103628 -S"'enc_NotifyRequest'(${1:Val}, ${2:TagIn}) $3" -p103629 -tp103630 -a(S"'enc_ObservedEvent'/2" -p103631 -S"'enc_ObservedEvent'(${1:Val}, ${2:TagIn}) $3" -p103632 -tp103633 -a(S"'enc_ObservedEventsDescriptor'/2" -p103634 -S"'enc_ObservedEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p103635 -tp103636 -a(S"'enc_PackagesDescriptor'/2" -p103637 -S"'enc_PackagesDescriptor'(${1:Val}, ${2:TagIn}) $3" -p103638 -tp103639 -a(S"'enc_PackagesItem'/2" -p103640 -S"'enc_PackagesItem'(${1:Val}, ${2:TagIn}) $3" -p103641 -tp103642 -a(S"'enc_PathName'/2" -p103643 -S"'enc_PathName'(${1:Val}, ${2:TagIn}) $3" -p103644 -tp103645 -a(S"'enc_PkgdName'/2" -p103646 -S"'enc_PkgdName'(${1:Val}, ${2:TagIn}) $3" -p103647 -tp103648 -a(S"'enc_PropertyGroup'/2" -p103649 -S"'enc_PropertyGroup'(${1:Val}, ${2:TagIn}) $3" -p103650 -tp103651 -a(S"'enc_PropertyParm'/2" -p103652 -S"'enc_PropertyParm'(${1:Val}, ${2:TagIn}) $3" -p103653 -tp103654 -a(S"'enc_Relation'/2" -p103655 -S"'enc_Relation'(${1:Val}, ${2:TagIn}) $3" -p103656 -tp103657 -a(S"'enc_RequestID'/2" -p103658 -S"'enc_RequestID'(${1:Val}, ${2:TagIn}) $3" -p103659 -tp103660 -a(S"'enc_RequestedActions'/2" -p103661 -S"'enc_RequestedActions'(${1:Val}, ${2:TagIn}) $3" -p103662 -tp103663 -a(S"'enc_RequestedEvent'/2" -p103664 -S"'enc_RequestedEvent'(${1:Val}, ${2:TagIn}) $3" -p103665 -tp103666 -a(S"'enc_SecondEventsDescriptor'/2" -p103667 -S"'enc_SecondEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p103668 -tp103669 -a(S"'enc_SecondRequestedActions'/2" -p103670 -S"'enc_SecondRequestedActions'(${1:Val}, ${2:TagIn}) $3" -p103671 -tp103672 -a(S"'enc_SecondRequestedEvent'/2" -p103673 -S"'enc_SecondRequestedEvent'(${1:Val}, ${2:TagIn}) $3" -p103674 -tp103675 -a(S"'enc_SecurityParmIndex'/2" -p103676 -S"'enc_SecurityParmIndex'(${1:Val}, ${2:TagIn}) $3" -p103677 -tp103678 -a(S"'enc_SegmentNumber'/2" -p103679 -S"'enc_SegmentNumber'(${1:Val}, ${2:TagIn}) $3" -p103680 -tp103681 -a(S"'enc_SeqSigList'/2" -p103682 -S"'enc_SeqSigList'(${1:Val}, ${2:TagIn}) $3" -p103683 -tp103684 -a(S"'enc_SequenceNum'/2" -p103685 -S"'enc_SequenceNum'(${1:Val}, ${2:TagIn}) $3" -p103686 -tp103687 -a(S"'enc_ServiceChangeAddress'/2" -p103688 -S"'enc_ServiceChangeAddress'(${1:Val}, ${2:TagIn}) $3" -p103689 -tp103690 -a(S"'enc_ServiceChangeMethod'/2" -p103691 -S"'enc_ServiceChangeMethod'(${1:Val}, ${2:TagIn}) $3" -p103692 -tp103693 -a(S"'enc_ServiceChangeParm'/2" -p103694 -S"'enc_ServiceChangeParm'(${1:Val}, ${2:TagIn}) $3" -p103695 -tp103696 -a(S"'enc_ServiceChangeProfile'/2" -p103697 -S"'enc_ServiceChangeProfile'(${1:Val}, ${2:TagIn}) $3" -p103698 -tp103699 -a(S"'enc_ServiceChangeReply'/2" -p103700 -S"'enc_ServiceChangeReply'(${1:Val}, ${2:TagIn}) $3" -p103701 -tp103702 -a(S"'enc_ServiceChangeRequest'/2" -p103703 -S"'enc_ServiceChangeRequest'(${1:Val}, ${2:TagIn}) $3" -p103704 -tp103705 -a(S"'enc_ServiceChangeResParm'/2" -p103706 -S"'enc_ServiceChangeResParm'(${1:Val}, ${2:TagIn}) $3" -p103707 -tp103708 -a(S"'enc_ServiceChangeResult'/2" -p103709 -S"'enc_ServiceChangeResult'(${1:Val}, ${2:TagIn}) $3" -p103710 -tp103711 -a(S"'enc_ServiceState'/2" -p103712 -S"'enc_ServiceState'(${1:Val}, ${2:TagIn}) $3" -p103713 -tp103714 -a(S"'enc_SigParameter'/2" -p103715 -S"'enc_SigParameter'(${1:Val}, ${2:TagIn}) $3" -p103716 -tp103717 -a(S"'enc_Signal'/2" -p103718 -S"'enc_Signal'(${1:Val}, ${2:TagIn}) $3" -p103719 -tp103720 -a(S"'enc_SignalDirection'/2" -p103721 -S"'enc_SignalDirection'(${1:Val}, ${2:TagIn}) $3" -p103722 -tp103723 -a(S"'enc_SignalName'/2" -p103724 -S"'enc_SignalName'(${1:Val}, ${2:TagIn}) $3" -p103725 -tp103726 -a(S"'enc_SignalRequest'/2" -p103727 -S"'enc_SignalRequest'(${1:Val}, ${2:TagIn}) $3" -p103728 -tp103729 -a(S"'enc_SignalType'/2" -p103730 -S"'enc_SignalType'(${1:Val}, ${2:TagIn}) $3" -p103731 -tp103732 -a(S"'enc_SignalsDescriptor'/2" -p103733 -S"'enc_SignalsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p103734 -tp103735 -a(S"'enc_StatisticsDescriptor'/2" -p103736 -S"'enc_StatisticsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p103737 -tp103738 -a(S"'enc_StatisticsParameter'/2" -p103739 -S"'enc_StatisticsParameter'(${1:Val}, ${2:TagIn}) $3" -p103740 -tp103741 -a(S"'enc_StreamDescriptor'/2" -p103742 -S"'enc_StreamDescriptor'(${1:Val}, ${2:TagIn}) $3" -p103743 -tp103744 -a(S"'enc_StreamID'/2" -p103745 -S"'enc_StreamID'(${1:Val}, ${2:TagIn}) $3" -p103746 -tp103747 -a(S"'enc_StreamMode'/2" -p103748 -S"'enc_StreamMode'(${1:Val}, ${2:TagIn}) $3" -p103749 -tp103750 -a(S"'enc_StreamParms'/2" -p103751 -S"'enc_StreamParms'(${1:Val}, ${2:TagIn}) $3" -p103752 -tp103753 -a(S"'enc_SubtractRequest'/2" -p103754 -S"'enc_SubtractRequest'(${1:Val}, ${2:TagIn}) $3" -p103755 -tp103756 -a(S"'enc_TerminationAudit'/2" -p103757 -S"'enc_TerminationAudit'(${1:Val}, ${2:TagIn}) $3" -p103758 -tp103759 -a(S"'enc_TerminationID'/2" -p103760 -S"'enc_TerminationID'(${1:Val}, ${2:TagIn}) $3" -p103761 -tp103762 -a(S"'enc_TerminationIDList'/2" -p103763 -S"'enc_TerminationIDList'(${1:Val}, ${2:TagIn}) $3" -p103764 -tp103765 -a(S"'enc_TerminationStateDescriptor'/2" -p103766 -S"'enc_TerminationStateDescriptor'(${1:Val}, ${2:TagIn}) $3" -p103767 -tp103768 -a(S"'enc_TimeNotation'/2" -p103769 -S"'enc_TimeNotation'(${1:Val}, ${2:TagIn}) $3" -p103770 -tp103771 -a(S"'enc_TopologyRequest'/2" -p103772 -S"'enc_TopologyRequest'(${1:Val}, ${2:TagIn}) $3" -p103773 -tp103774 -a(S"'enc_Transaction'/2" -p103775 -S"'enc_Transaction'(${1:Val}, ${2:TagIn}) $3" -p103776 -tp103777 -a(S"'enc_TransactionAck'/2" -p103778 -S"'enc_TransactionAck'(${1:Val}, ${2:TagIn}) $3" -p103779 -tp103780 -a(S"'enc_TransactionId'/2" -p103781 -S"'enc_TransactionId'(${1:Val}, ${2:TagIn}) $3" -p103782 -tp103783 -a(S"'enc_TransactionPending'/2" -p103784 -S"'enc_TransactionPending'(${1:Val}, ${2:TagIn}) $3" -p103785 -tp103786 -a(S"'enc_TransactionReply'/2" -p103787 -S"'enc_TransactionReply'(${1:Val}, ${2:TagIn}) $3" -p103788 -tp103789 -a(S"'enc_TransactionRequest'/2" -p103790 -S"'enc_TransactionRequest'(${1:Val}, ${2:TagIn}) $3" -p103791 -tp103792 -a(S"'enc_TransactionResponseAck'/2" -p103793 -S"'enc_TransactionResponseAck'(${1:Val}, ${2:TagIn}) $3" -p103794 -tp103795 -a(S"'enc_Value'/2" -p103796 -S"'enc_Value'(${1:Val}, ${2:TagIn}) $3" -p103797 -tp103798 -a(S"'enc_WildcardField'/2" -p103799 -S"'enc_WildcardField'(${1:Val}, ${2:TagIn}) $3" -p103800 -tp103801 -a(S'decode/2' -p103802 -S'decode(${1:Type}, ${2:Data}) $3' -p103803 -tp103804 -a(S'decode_disp/2' -p103805 -S'decode_disp(${1:Type}, ${2:Data}) $3' -p103806 -tp103807 -a(S'decode_message_acts_partial/1' -p103808 -S'decode_message_acts_partial(${1:Bytes}) $2' -p103809 -tp103810 -a(S'decode_message_mId/1' -p103811 -S'decode_message_mId(${1:Bytes}) $2' -p103812 -tp103813 -a(S'decode_message_trans_partial/1' -p103814 -S'decode_message_trans_partial(${1:Bytes}) $2' -p103815 -tp103816 -a(S'decode_message_version/1' -p103817 -S'decode_message_version(${1:Bytes}) $2' -p103818 -tp103819 -a(S'decode_part/2' -p103820 -S'decode_part(${1:Type}, ${2:Data0}) $3' -p103821 -tp103822 -a(S'encode/2' -p103823 -S'encode(${1:Type}, ${2:Data}) $3' -p103824 -tp103825 -a(S'encode_disp/2' -p103826 -S'encode_disp(${1:Type}, ${2:Data}) $3' -p103827 -tp103828 -a(S'encoding_rule/0' -p103829 -S'encoding_rule() $1' -p103830 -tp103831 -a(S'info/0' -p103832 -S'info() $1' -p103833 -tp103834 -asS'dbg_ui_trace_win' -p103835 -(lp103836 -(S'add_break/3' -p103837 -S'add_break(${1:WinInfo}, ${2:Menu}, ${3:Break}) $4' -p103838 -tp103839 -a(S'clear_breaks/1' -p103840 -S'clear_breaks(${1:WinInfo}) $2' -p103841 -tp103842 -a(S'clear_breaks/2' -p103843 -S'clear_breaks(${1:WinInfo}, ${2:Mod}) $3' -p103844 -tp103845 -a(S'configure/2' -p103846 -S'configure(${1:WinInfo}, ${2:TraceWin}) $3' -p103847 -tp103848 -a(S'create_win/4' -p103849 -S'create_win(${1:GS}, ${2:Title}, ${3:TraceWin}, ${4:Menus}) $5' -p103850 -tp103851 -a(S'delete_break/2' -p103852 -S'delete_break(${1:WinInfo}, ${2:Point}) $3' -p103853 -tp103854 -a(S'display/1' -p103855 -S'display(${1:Arg}) $2' -p103856 -tp103857 -a(S'enable/2' -p103858 -S'enable(${1:MenuItems}, ${2:Bool}) $3' -p103859 -tp103860 -a(S'eval_output/2' -p103861 -S'eval_output(${1:Text}, ${2:Face}) $3' -p103862 -tp103863 -a(S'get_window/1' -p103864 -S'get_window(${1:WinInfo}) $2' -p103865 -tp103866 -a(S'handle_event/2' -p103867 -S'handle_event(${1:Param1}, ${2:WinInfo}) $3' -p103868 -tp103869 -a(S'helpwin/4' -p103870 -S'helpwin(${1:Param1}, ${2:WinInfo}, ${3:GS}, ${4:Coords}) $5' -p103871 -tp103872 -a(S'helpwin/5' -p103873 -S'helpwin(${1:Type}, ${2:WinInfo}, ${3:GS}, ${4:Coords}, ${5:AttPid}) $6' -p103874 -tp103875 -a(S'init/0' -p103876 -S'init() $1' -p103877 -tp103878 -a(S'is_enabled/1' -p103879 -S'is_enabled(${1:MenuItem}) $2' -p103880 -tp103881 -a(S'is_shown/2' -p103882 -S'is_shown(${1:WinInfo}, ${2:Mod}) $3' -p103883 -tp103884 -a(S'mark_line/3' -p103885 -S'mark_line(${1:WinInfo}, ${2:Line}, ${3:How}) $4' -p103886 -tp103887 -a(S'remove_code/2' -p103888 -S'remove_code(${1:WinInfo}, ${2:Mod}) $3' -p103889 -tp103890 -a(S'select/2' -p103891 -S'select(${1:MenuItem}, ${2:Bool}) $3' -p103892 -tp103893 -a(S'select_line/2' -p103894 -S'select_line(${1:WinInfo}, ${2:Line}) $3' -p103895 -tp103896 -a(S'selected_line/1' -p103897 -S'selected_line(${1:WinInfo}) $2' -p103898 -tp103899 -a(S'show_code/3' -p103900 -S'show_code(${1:WinInfo}, ${2:Mod}, ${3:Contents}) $4' -p103901 -tp103902 -a(S'show_no_code/1' -p103903 -S'show_no_code(${1:WinInfo}) $2' -p103904 -tp103905 -a(S'trace_output/1' -p103906 -S'trace_output(${1:Str}) $2' -p103907 -tp103908 -a(S'unmark_line/1' -p103909 -S'unmark_line(${1:WinInfo}) $2' -p103910 -tp103911 -a(S'update_bindings/1' -p103912 -S'update_bindings(${1:Bs}) $2' -p103913 -tp103914 -a(S'update_break/2' -p103915 -S'update_break(${1:WinInfo}, ${2:Break}) $3' -p103916 -tp103917 -asS'wxGridCellNumberRenderer' -p103918 -(lp103919 -(S'destroy/1' -p103920 -S'destroy(${1:This}) $2' -p103921 -tp103922 -a(S'draw/8' -p103923 -S'draw(${1:This}, ${2:Grid}, ${3:Attr}, ${4:Dc}, ${5:Rect}, ${6:Row}, ${7:Col}, ${8:IsSelected}) $9' -p103924 -tp103925 -a(S'getBestSize/6' -p103926 -S'getBestSize(${1:This}, ${2:Grid}, ${3:Attr}, ${4:Dc}, ${5:Row}, ${6:Col}) $7' -p103927 -tp103928 -a(S'new/0' -p103929 -S'new() $1' -p103930 -tp103931 -a(S'parent_class/1' -p103932 -S'parent_class(${1:Param1}) $2' -p103933 -tp103934 -asS'observer_app_wx' -p103935 -(lp103936 -(S'code_change/3' -p103937 -S'code_change(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p103938 -tp103939 -a(S'handle_call/3' -p103940 -S'handle_call(${1:Event}, ${2:From}, ${3:Param3}) $4' -p103941 -tp103942 -a(S'handle_cast/2' -p103943 -S'handle_cast(${1:Event}, ${2:Param2}) $3' -p103944 -tp103945 -a(S'handle_event/2' -p103946 -S'handle_event(${1:Event}, ${2:Param2}) $3' -p103947 -tp103948 -a(S'handle_info/2' -p103949 -S'handle_info(${1:Param1}, ${2:State}) $3' -p103950 -tp103951 -a(S'handle_sync_event/3' -p103952 -S'handle_sync_event() $1' -p103953 -tp103954 -a(S'init/1' -p103955 -S'init(${1:Param1}) $2' -p103956 -tp103957 -a(S'start_link/2' -p103958 -S'start_link(${1:Notebook}, ${2:Parent}) $3' -p103959 -tp103960 -a(S'terminate/2' -p103961 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p103962 -tp103963 -asS'wxe_server' -p103964 -(lp103965 -(S'code_change/3' -p103966 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p103967 -tp103968 -a(S'handle_call/3' -p103969 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:State0}) $4' -p103970 -tp103971 -a(S'handle_cast/2' -p103972 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p103973 -tp103974 -a(S'handle_info/2' -p103975 -S'handle_info(${1:Param1}, ${2:State}) $3' -p103976 -tp103977 -a(S'init/1' -p103978 -S'init(${1:Param1}) $2' -p103979 -tp103980 -a(S'invoke_callback/1' -p103981 -S'invoke_callback(${1:Fun}) $2' -p103982 -tp103983 -a(S'register_me/1' -p103984 -S'register_me(${1:Pid}) $2' -p103985 -tp103986 -a(S'set_debug/2' -p103987 -S'set_debug(${1:Pid}, ${2:Level}) $3' -p103988 -tp103989 -a(S'start/0' -p103990 -S'start() $1' -p103991 -tp103992 -a(S'stop/0' -p103993 -S'stop() $1' -p103994 -tp103995 -a(S'terminate/2' -p103996 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p103997 -tp103998 -asS'mnesia_text' -p103999 -(lp104000 -(S'dump_to_textfile/1' -p104001 -S'dump_to_textfile(${1:File}) $2' -p104002 -tp104003 -a(S'file/1' -p104004 -S'file(${1:File}) $2' -p104005 -tp104006 -a(S'load_textfile/1' -p104007 -S'load_textfile(${1:File}) $2' -p104008 -tp104009 -a(S'parse/1' -p104010 -S'parse(${1:File}) $2' -p104011 -tp104012 -asS'megaco_trans_sender' -p104013 -(lp104014 -(S'ack_maxcount/2' -p104015 -S'ack_maxcount(${1:Pid}, ${2:Max}) $3' -p104016 -tp104017 -a(S'init/6' -p104018 -S'init(${1:Parent}, ${2:CH}, ${3:To}, ${4:MaxSzReqs}, ${5:MaxNoReqs}, ${6:MaxNoAcks}) $7' -p104019 -tp104020 -a(S'req_maxcount/2' -p104021 -S'req_maxcount(${1:Pid}, ${2:Max}) $3' -p104022 -tp104023 -a(S'req_maxsize/2' -p104024 -S'req_maxsize(${1:Pid}, ${2:Max}) $3' -p104025 -tp104026 -a(S'send_ack/2' -p104027 -S'send_ack(${1:Pid}, ${2:Serial}) $3' -p104028 -tp104029 -a(S'send_ack_now/2' -p104030 -S'send_ack_now(${1:Pid}, ${2:Serial}) $3' -p104031 -tp104032 -a(S'send_pending/2' -p104033 -S'send_pending(${1:Pid}, ${2:Serial}) $3' -p104034 -tp104035 -a(S'send_reply/2' -p104036 -S'send_reply(${1:Pid}, ${2:Reply}) $3' -p104037 -tp104038 -a(S'send_req/3' -p104039 -S'send_req(${1:Pid}, ${2:Tid}, ${3:Req}) $4' -p104040 -tp104041 -a(S'send_reqs/3' -p104042 -S'send_reqs() $1' -p104043 -tp104044 -a(S'start_link/5' -p104045 -S'start_link(${1:CH}, ${2:To}, ${3:MaxSzReqs}, ${4:MaxNoReqs}, ${5:MaxNoAcks}) $6' -p104046 -tp104047 -a(S'stop/1' -p104048 -S'stop(${1:Pid}) $2' -p104049 -tp104050 -a(S'system_code_change/4' -p104051 -S'system_code_change(${1:S}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p104052 -tp104053 -a(S'system_continue/3' -p104054 -S'system_continue(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p104055 -tp104056 -a(S'system_terminate/4' -p104057 -S'system_terminate(${1:Reason}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p104058 -tp104059 -a(S'timeout/2' -p104060 -S'timeout(${1:Pid}, ${2:Timeout}) $3' -p104061 -tp104062 -a(S'upgrade/2' -p104063 -S'upgrade(${1:Pid}, ${2:CH}) $3' -p104064 -tp104065 -asS'CosNotifyFilter_Filter_impl' -p104066 -(lp104067 -(S"'_get_constraint_grammar'/2" -p104068 -S"'_get_constraint_grammar'(${1:Param1}, ${2:State}) $3" -p104069 -tp104070 -a(S'add_constraints/3' -p104071 -S'add_constraints(${1:Param1}, ${2:State}, ${3:CL}) $4' -p104072 -tp104073 -a(S'attach_callback/3' -p104074 -S'attach_callback(${1:Param1}, ${2:State}, ${3:CB}) $4' -p104075 -tp104076 -a(S'code_change/3' -p104077 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p104078 -tp104079 -a(S'destroy/2' -p104080 -S'destroy(${1:Param1}, ${2:State}) $3' -p104081 -tp104082 -a(S'detach_callback/3' -p104083 -S'detach_callback(${1:Param1}, ${2:State}, ${3:ID}) $4' -p104084 -tp104085 -a(S'get_all_constraints/2' -p104086 -S'get_all_constraints(${1:Param1}, ${2:State}) $3' -p104087 -tp104088 -a(S'get_callbacks/2' -p104089 -S'get_callbacks(${1:Param1}, ${2:State}) $3' -p104090 -tp104091 -a(S'get_constraints/3' -p104092 -S'get_constraints(${1:Param1}, ${2:State}, ${3:IDs}) $4' -p104093 -tp104094 -a(S'handle_info/2' -p104095 -S'handle_info(${1:Info}, ${2:State}) $3' -p104096 -tp104097 -a(S'init/1' -p104098 -S'init(${1:Param1}) $2' -p104099 -tp104100 -a(S'match/3' -p104101 -S'match(${1:Param1}, ${2:State}, ${3:Event}) $4' -p104102 -tp104103 -a(S'match_structured/3' -p104104 -S'match_structured(${1:Param1}, ${2:Param2}, ${3:What}) $4' -p104105 -tp104106 -a(S'match_typed/3' -p104107 -S'match_typed(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p104108 -tp104109 -a(S'modify_constraints/4' -p104110 -S'modify_constraints(${1:Param1}, ${2:State}, ${3:IDs}, ${4:AddConstraintInfoSeq}) $5' -p104111 -tp104112 -a(S'remove_all_constraints/2' -p104113 -S'remove_all_constraints(${1:Param1}, ${2:State}) $3' -p104114 -tp104115 -a(S'terminate/2' -p104116 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p104117 -tp104118 -asS'erl_syntax' -p104119 -(lp104120 -(S'abstract/1' -p104121 -S'abstract(${1:L}) $2' -p104122 -tp104123 -a(S'add_ann/2' -p104124 -S'add_ann(${1:A}, ${2:Node}) $3' -p104125 -tp104126 -a(S'add_postcomments/2' -p104127 -S'add_postcomments(${1:Cs}, ${2:Node}) $3' -p104128 -tp104129 -a(S'add_precomments/2' -p104130 -S'add_precomments(${1:Cs}, ${2:Node}) $3' -p104131 -tp104132 -a(S'application/2' -p104133 -S'application(${1:Operator}, ${2:Arguments}) $3' -p104134 -tp104135 -a(S'application/3' -p104136 -S'application(${1:Module}, ${2:Name}, ${3:Arguments}) $4' -p104137 -tp104138 -a(S'application_arguments/1' -p104139 -S'application_arguments(${1:Node}) $2' -p104140 -tp104141 -a(S'application_operator/1' -p104142 -S'application_operator(${1:Node}) $2' -p104143 -tp104144 -a(S'arity_qualifier/2' -p104145 -S'arity_qualifier(${1:Body}, ${2:Arity}) $3' -p104146 -tp104147 -a(S'arity_qualifier_argument/1' -p104148 -S'arity_qualifier_argument(${1:Node}) $2' -p104149 -tp104150 -a(S'arity_qualifier_body/1' -p104151 -S'arity_qualifier_body(${1:Node}) $2' -p104152 -tp104153 -a(S'atom/1' -p104154 -S'atom(${1:Name}) $2' -p104155 -tp104156 -a(S'atom_literal/1' -p104157 -S'atom_literal(${1:Node}) $2' -p104158 -tp104159 -a(S'atom_name/1' -p104160 -S'atom_name(${1:Node}) $2' -p104161 -tp104162 -a(S'atom_value/1' -p104163 -S'atom_value(${1:Node}) $2' -p104164 -tp104165 -a(S'attribute/1' -p104166 -S'attribute(${1:Name}) $2' -p104167 -tp104168 -a(S'attribute/2' -p104169 -S'attribute(${1:Name}, ${2:Args}) $3' -p104170 -tp104171 -a(S'attribute_arguments/1' -p104172 -S'attribute_arguments(${1:Node}) $2' -p104173 -tp104174 -a(S'attribute_name/1' -p104175 -S'attribute_name(${1:Node}) $2' -p104176 -tp104177 -a(S'binary/1' -p104178 -S'binary(${1:List}) $2' -p104179 -tp104180 -a(S'binary_comp/2' -p104181 -S'binary_comp(${1:Template}, ${2:Body}) $3' -p104182 -tp104183 -a(S'binary_comp_body/1' -p104184 -S'binary_comp_body(${1:Node}) $2' -p104185 -tp104186 -a(S'binary_comp_template/1' -p104187 -S'binary_comp_template(${1:Node}) $2' -p104188 -tp104189 -a(S'binary_field/1' -p104190 -S'binary_field(${1:Body}) $2' -p104191 -tp104192 -a(S'binary_field/2' -p104193 -S'binary_field(${1:Body}, ${2:Types}) $3' -p104194 -tp104195 -a(S'binary_field/3' -p104196 -S'binary_field(${1:Body}, ${2:Size}, ${3:Types}) $4' -p104197 -tp104198 -a(S'binary_field_body/1' -p104199 -S'binary_field_body(${1:Node}) $2' -p104200 -tp104201 -a(S'binary_field_size/1' -p104202 -S'binary_field_size(${1:Node}) $2' -p104203 -tp104204 -a(S'binary_field_types/1' -p104205 -S'binary_field_types(${1:Node}) $2' -p104206 -tp104207 -a(S'binary_fields/1' -p104208 -S'binary_fields(${1:Node}) $2' -p104209 -tp104210 -a(S'binary_generator/2' -p104211 -S'binary_generator(${1:Pattern}, ${2:Body}) $3' -p104212 -tp104213 -a(S'binary_generator_body/1' -p104214 -S'binary_generator_body(${1:Node}) $2' -p104215 -tp104216 -a(S'binary_generator_pattern/1' -p104217 -S'binary_generator_pattern(${1:Node}) $2' -p104218 -tp104219 -a(S'block_expr/1' -p104220 -S'block_expr(${1:Body}) $2' -p104221 -tp104222 -a(S'block_expr_body/1' -p104223 -S'block_expr_body(${1:Node}) $2' -p104224 -tp104225 -a(S'case_expr/2' -p104226 -S'case_expr(${1:Argument}, ${2:Clauses}) $3' -p104227 -tp104228 -a(S'case_expr_argument/1' -p104229 -S'case_expr_argument(${1:Node}) $2' -p104230 -tp104231 -a(S'case_expr_clauses/1' -p104232 -S'case_expr_clauses(${1:Node}) $2' -p104233 -tp104234 -a(S'catch_expr/1' -p104235 -S'catch_expr(${1:Expr}) $2' -p104236 -tp104237 -a(S'catch_expr_body/1' -p104238 -S'catch_expr_body(${1:Node}) $2' -p104239 -tp104240 -a(S'char/1' -p104241 -S'char(${1:Char}) $2' -p104242 -tp104243 -a(S'char_literal/1' -p104244 -S'char_literal(${1:Node}) $2' -p104245 -tp104246 -a(S'char_value/1' -p104247 -S'char_value(${1:Node}) $2' -p104248 -tp104249 -a(S'class_qualifier/2' -p104250 -S'class_qualifier(${1:Class}, ${2:Body}) $3' -p104251 -tp104252 -a(S'class_qualifier_argument/1' -p104253 -S'class_qualifier_argument(${1:Node}) $2' -p104254 -tp104255 -a(S'class_qualifier_body/1' -p104256 -S'class_qualifier_body(${1:Node}) $2' -p104257 -tp104258 -a(S'clause/2' -p104259 -S'clause(${1:Guard}, ${2:Body}) $3' -p104260 -tp104261 -a(S'clause/3' -p104262 -S'clause(${1:Patterns}, ${2:Guard}, ${3:Body}) $4' -p104263 -tp104264 -a(S'clause_body/1' -p104265 -S'clause_body(${1:Node}) $2' -p104266 -tp104267 -a(S'clause_guard/1' -p104268 -S'clause_guard(${1:Node}) $2' -p104269 -tp104270 -a(S'clause_patterns/1' -p104271 -S'clause_patterns(${1:Node}) $2' -p104272 -tp104273 -a(S'comment/1' -p104274 -S'comment(${1:Strings}) $2' -p104275 -tp104276 -a(S'comment/2' -p104277 -S'comment(${1:Pad}, ${2:Strings}) $3' -p104278 -tp104279 -a(S'comment_padding/1' -p104280 -S'comment_padding(${1:Node}) $2' -p104281 -tp104282 -a(S'comment_text/1' -p104283 -S'comment_text(${1:Node}) $2' -p104284 -tp104285 -a(S'compact_list/1' -p104286 -S'compact_list(${1:Node}) $2' -p104287 -tp104288 -a(S'concrete/1' -p104289 -S'concrete(${1:Node}) $2' -p104290 -tp104291 -a(S'cond_expr/1' -p104292 -S'cond_expr(${1:Clauses}) $2' -p104293 -tp104294 -a(S'cond_expr_clauses/1' -p104295 -S'cond_expr_clauses(${1:Node}) $2' -p104296 -tp104297 -a(S'conjunction/1' -p104298 -S'conjunction(${1:Tests}) $2' -p104299 -tp104300 -a(S'conjunction_body/1' -p104301 -S'conjunction_body(${1:Node}) $2' -p104302 -tp104303 -a(S'cons/2' -p104304 -S'cons(${1:Head}, ${2:Tail}) $3' -p104305 -tp104306 -a(S'copy_ann/2' -p104307 -S'copy_ann(${1:Source}, ${2:Target}) $3' -p104308 -tp104309 -a(S'copy_attrs/2' -p104310 -S'copy_attrs(${1:S}, ${2:T}) $3' -p104311 -tp104312 -a(S'copy_comments/2' -p104313 -S'copy_comments(${1:Source}, ${2:Target}) $3' -p104314 -tp104315 -a(S'copy_pos/2' -p104316 -S'copy_pos(${1:Source}, ${2:Target}) $3' -p104317 -tp104318 -a(S'data/1' -p104319 -S'data(${1:T}) $2' -p104320 -tp104321 -a(S'disjunction/1' -p104322 -S'disjunction(${1:D}) $2' -p104323 -tp104324 -a(S'disjunction_body/1' -p104325 -S'disjunction_body(${1:Node}) $2' -p104326 -tp104327 -a(S'eof_marker/0' -p104328 -S'eof_marker() $1' -p104329 -tp104330 -a(S'error_marker/1' -p104331 -S'error_marker(${1:Error}) $2' -p104332 -tp104333 -a(S'error_marker_info/1' -p104334 -S'error_marker_info(${1:Node}) $2' -p104335 -tp104336 -a(S'flatten_form_list/1' -p104337 -S'flatten_form_list(${1:Node}) $2' -p104338 -tp104339 -a(S'float/1' -p104340 -S'float(${1:Value}) $2' -p104341 -tp104342 -a(S'float_literal/1' -p104343 -S'float_literal(${1:Node}) $2' -p104344 -tp104345 -a(S'float_value/1' -p104346 -S'float_value(${1:Node}) $2' -p104347 -tp104348 -a(S'form_list/1' -p104349 -S'form_list(${1:Forms}) $2' -p104350 -tp104351 -a(S'form_list_elements/1' -p104352 -S'form_list_elements(${1:Node}) $2' -p104353 -tp104354 -a(S'fun_expr/1' -p104355 -S'fun_expr(${1:Clauses}) $2' -p104356 -tp104357 -a(S'fun_expr_arity/1' -p104358 -S'fun_expr_arity(${1:Node}) $2' -p104359 -tp104360 -a(S'fun_expr_clauses/1' -p104361 -S'fun_expr_clauses(${1:Node}) $2' -p104362 -tp104363 -a(S'function/2' -p104364 -S'function(${1:Name}, ${2:Clauses}) $3' -p104365 -tp104366 -a(S'function_arity/1' -p104367 -S'function_arity(${1:Node}) $2' -p104368 -tp104369 -a(S'function_clauses/1' -p104370 -S'function_clauses(${1:Node}) $2' -p104371 -tp104372 -a(S'function_name/1' -p104373 -S'function_name(${1:Node}) $2' -p104374 -tp104375 -a(S'generator/2' -p104376 -S'generator(${1:Pattern}, ${2:Body}) $3' -p104377 -tp104378 -a(S'generator_body/1' -p104379 -S'generator_body(${1:Node}) $2' -p104380 -tp104381 -a(S'generator_pattern/1' -p104382 -S'generator_pattern(${1:Node}) $2' -p104383 -tp104384 -a(S'get_ann/1' -p104385 -S'get_ann(${1:Param1}) $2' -p104386 -tp104387 -a(S'get_attrs/1' -p104388 -S'get_attrs(${1:Node}) $2' -p104389 -tp104390 -a(S'get_pos/1' -p104391 -S'get_pos(${1:Node}) $2' -p104392 -tp104393 -a(S'get_postcomments/1' -p104394 -S'get_postcomments(${1:Param1}) $2' -p104395 -tp104396 -a(S'get_precomments/1' -p104397 -S'get_precomments(${1:Param1}) $2' -p104398 -tp104399 -a(S'has_comments/1' -p104400 -S'has_comments(${1:Param1}) $2' -p104401 -tp104402 -a(S'if_expr/1' -p104403 -S'if_expr(${1:Clauses}) $2' -p104404 -tp104405 -a(S'if_expr_clauses/1' -p104406 -S'if_expr_clauses(${1:Node}) $2' -p104407 -tp104408 -a(S'implicit_fun/1' -p104409 -S'implicit_fun(${1:Name}) $2' -p104410 -tp104411 -a(S'implicit_fun/2' -p104412 -S'implicit_fun(${1:Name}, ${2:Arity}) $3' -p104413 -tp104414 -a(S'implicit_fun/3' -p104415 -S'implicit_fun(${1:Module}, ${2:Name}, ${3:Arity}) $4' -p104416 -tp104417 -a(S'implicit_fun_name/1' -p104418 -S'implicit_fun_name(${1:Node}) $2' -p104419 -tp104420 -a(S'infix_expr/3' -p104421 -S'infix_expr(${1:Left}, ${2:Operator}, ${3:Right}) $4' -p104422 -tp104423 -a(S'infix_expr_left/1' -p104424 -S'infix_expr_left(${1:Node}) $2' -p104425 -tp104426 -a(S'infix_expr_operator/1' -p104427 -S'infix_expr_operator(${1:Node}) $2' -p104428 -tp104429 -a(S'infix_expr_right/1' -p104430 -S'infix_expr_right(${1:Node}) $2' -p104431 -tp104432 -a(S'integer/1' -p104433 -S'integer(${1:Value}) $2' -p104434 -tp104435 -a(S'integer_literal/1' -p104436 -S'integer_literal(${1:Node}) $2' -p104437 -tp104438 -a(S'integer_value/1' -p104439 -S'integer_value(${1:Node}) $2' -p104440 -tp104441 -a(S'is_atom/2' -p104442 -S'is_atom(${1:Node}, ${2:Value}) $3' -p104443 -tp104444 -a(S'is_char/2' -p104445 -S'is_char(${1:Node}, ${2:Value}) $3' -p104446 -tp104447 -a(S'is_form/1' -p104448 -S'is_form(${1:Node}) $2' -p104449 -tp104450 -a(S'is_integer/2' -p104451 -S'is_integer(${1:Node}, ${2:Value}) $3' -p104452 -tp104453 -a(S'is_leaf/1' -p104454 -S'is_leaf(${1:Node}) $2' -p104455 -tp104456 -a(S'is_list_skeleton/1' -p104457 -S'is_list_skeleton(${1:Node}) $2' -p104458 -tp104459 -a(S'is_literal/1' -p104460 -S'is_literal(${1:T}) $2' -p104461 -tp104462 -a(S'is_proper_list/1' -p104463 -S'is_proper_list(${1:Node}) $2' -p104464 -tp104465 -a(S'is_string/2' -p104466 -S'is_string(${1:Node}, ${2:Value}) $3' -p104467 -tp104468 -a(S'is_tree/1' -p104469 -S'is_tree(${1:Param1}) $2' -p104470 -tp104471 -a(S'join_comments/2' -p104472 -S'join_comments(${1:Source}, ${2:Target}) $3' -p104473 -tp104474 -a(S'list/1' -p104475 -S'list(${1:Forms}) $2' -p104476 -tp104477 -a(S'list/2' -p104478 -S'list(${1:Param1}, ${2:Param2}) $3' -p104479 -tp104480 -a(S'list_comp/2' -p104481 -S'list_comp(${1:Template}, ${2:Body}) $3' -p104482 -tp104483 -a(S'list_comp_body/1' -p104484 -S'list_comp_body(${1:Node}) $2' -p104485 -tp104486 -a(S'list_comp_template/1' -p104487 -S'list_comp_template(${1:Node}) $2' -p104488 -tp104489 -a(S'list_elements/1' -p104490 -S'list_elements(${1:Node}) $2' -p104491 -tp104492 -a(S'list_head/1' -p104493 -S'list_head(${1:Node}) $2' -p104494 -tp104495 -a(S'list_length/1' -p104496 -S'list_length(${1:Node}) $2' -p104497 -tp104498 -a(S'list_prefix/1' -p104499 -S'list_prefix(${1:Node}) $2' -p104500 -tp104501 -a(S'list_suffix/1' -p104502 -S'list_suffix(${1:Node}) $2' -p104503 -tp104504 -a(S'list_tail/1' -p104505 -S'list_tail(${1:Node}) $2' -p104506 -tp104507 -a(S'macro/1' -p104508 -S'macro(${1:Name}) $2' -p104509 -tp104510 -a(S'macro/2' -p104511 -S'macro(${1:Name}, ${2:Arguments}) $3' -p104512 -tp104513 -a(S'macro_arguments/1' -p104514 -S'macro_arguments(${1:Node}) $2' -p104515 -tp104516 -a(S'macro_name/1' -p104517 -S'macro_name(${1:Node}) $2' -p104518 -tp104519 -a(S'make_tree/2' -p104520 -S'make_tree(${1:Param1}, ${2:Param2}) $3' -p104521 -tp104522 -a(S'match_expr/2' -p104523 -S'match_expr(${1:Pattern}, ${2:Body}) $3' -p104524 -tp104525 -a(S'match_expr_body/1' -p104526 -S'match_expr_body(${1:Node}) $2' -p104527 -tp104528 -a(S'match_expr_pattern/1' -p104529 -S'match_expr_pattern(${1:Node}) $2' -p104530 -tp104531 -a(S'meta/1' -p104532 -S'meta(${1:T}) $2' -p104533 -tp104534 -a(S'module_qualifier/2' -p104535 -S'module_qualifier(${1:Module}, ${2:Body}) $3' -p104536 -tp104537 -a(S'module_qualifier_argument/1' -p104538 -S'module_qualifier_argument(${1:Node}) $2' -p104539 -tp104540 -a(S'module_qualifier_body/1' -p104541 -S'module_qualifier_body(${1:Node}) $2' -p104542 -tp104543 -a(S'nil/0' -p104544 -S'nil() $1' -p104545 -tp104546 -a(S'normalize_list/1' -p104547 -S'normalize_list(${1:Node}) $2' -p104548 -tp104549 -a(S'operator/1' -p104550 -S'operator(${1:Name}) $2' -p104551 -tp104552 -a(S'operator_literal/1' -p104553 -S'operator_literal(${1:Node}) $2' -p104554 -tp104555 -a(S'operator_name/1' -p104556 -S'operator_name(${1:Node}) $2' -p104557 -tp104558 -a(S'parentheses/1' -p104559 -S'parentheses(${1:Expr}) $2' -p104560 -tp104561 -a(S'parentheses_body/1' -p104562 -S'parentheses_body(${1:Node}) $2' -p104563 -tp104564 -a(S'prefix_expr/2' -p104565 -S'prefix_expr(${1:Operator}, ${2:Argument}) $3' -p104566 -tp104567 -a(S'prefix_expr_argument/1' -p104568 -S'prefix_expr_argument(${1:Node}) $2' -p104569 -tp104570 -a(S'prefix_expr_operator/1' -p104571 -S'prefix_expr_operator(${1:Node}) $2' -p104572 -tp104573 -a(S'qualified_name/1' -p104574 -S'qualified_name(${1:Segments}) $2' -p104575 -tp104576 -a(S'qualified_name_segments/1' -p104577 -S'qualified_name_segments(${1:Node}) $2' -p104578 -tp104579 -a(S'query_expr/1' -p104580 -S'query_expr(${1:Body}) $2' -p104581 -tp104582 -a(S'query_expr_body/1' -p104583 -S'query_expr_body(${1:Node}) $2' -p104584 -tp104585 -a(S'receive_expr/1' -p104586 -S'receive_expr(${1:Clauses}) $2' -p104587 -tp104588 -a(S'receive_expr/3' -p104589 -S'receive_expr(${1:Clauses}, ${2:Timeout}, ${3:Action}) $4' -p104590 -tp104591 -a(S'receive_expr_action/1' -p104592 -S'receive_expr_action(${1:Node}) $2' -p104593 -tp104594 -a(S'receive_expr_clauses/1' -p104595 -S'receive_expr_clauses(${1:Node}) $2' -p104596 -tp104597 -a(S'receive_expr_timeout/1' -p104598 -S'receive_expr_timeout(${1:Node}) $2' -p104599 -tp104600 -a(S'record_access/2' -p104601 -S'record_access(${1:Argument}, ${2:Field}) $3' -p104602 -tp104603 -a(S'record_access/3' -p104604 -S'record_access(${1:Argument}, ${2:Type}, ${3:Field}) $4' -p104605 -tp104606 -a(S'record_access_argument/1' -p104607 -S'record_access_argument(${1:Node}) $2' -p104608 -tp104609 -a(S'record_access_field/1' -p104610 -S'record_access_field(${1:Node}) $2' -p104611 -tp104612 -a(S'record_access_type/1' -p104613 -S'record_access_type(${1:Node}) $2' -p104614 -tp104615 -a(S'record_expr/2' -p104616 -S'record_expr(${1:Type}, ${2:Fields}) $3' -p104617 -tp104618 -a(S'record_expr/3' -p104619 -S'record_expr(${1:Argument}, ${2:Type}, ${3:Fields}) $4' -p104620 -tp104621 -a(S'record_expr_argument/1' -p104622 -S'record_expr_argument(${1:Node}) $2' -p104623 -tp104624 -a(S'record_expr_fields/1' -p104625 -S'record_expr_fields(${1:Node}) $2' -p104626 -tp104627 -a(S'record_expr_type/1' -p104628 -S'record_expr_type(${1:Node}) $2' -p104629 -tp104630 -a(S'record_field/1' -p104631 -S'record_field(${1:Name}) $2' -p104632 -tp104633 -a(S'record_field/2' -p104634 -S'record_field(${1:Name}, ${2:Value}) $3' -p104635 -tp104636 -a(S'record_field_name/1' -p104637 -S'record_field_name(${1:Node}) $2' -p104638 -tp104639 -a(S'record_field_value/1' -p104640 -S'record_field_value(${1:Node}) $2' -p104641 -tp104642 -a(S'record_index_expr/2' -p104643 -S'record_index_expr(${1:Type}, ${2:Field}) $3' -p104644 -tp104645 -a(S'record_index_expr_field/1' -p104646 -S'record_index_expr_field(${1:Node}) $2' -p104647 -tp104648 -a(S'record_index_expr_type/1' -p104649 -S'record_index_expr_type(${1:Node}) $2' -p104650 -tp104651 -a(S'remove_comments/1' -p104652 -S'remove_comments(${1:Node}) $2' -p104653 -tp104654 -a(S'revert/1' -p104655 -S'revert(${1:Node}) $2' -p104656 -tp104657 -a(S'revert_forms/1' -p104658 -S'revert_forms(${1:L}) $2' -p104659 -tp104660 -a(S'rule/2' -p104661 -S'rule(${1:Name}, ${2:Clauses}) $3' -p104662 -tp104663 -a(S'rule_arity/1' -p104664 -S'rule_arity(${1:Node}) $2' -p104665 -tp104666 -a(S'rule_clauses/1' -p104667 -S'rule_clauses(${1:Node}) $2' -p104668 -tp104669 -a(S'rule_name/1' -p104670 -S'rule_name(${1:Node}) $2' -p104671 -tp104672 -a(S'set_ann/2' -p104673 -S'set_ann(${1:Node}, ${2:As}) $3' -p104674 -tp104675 -a(S'set_attrs/2' -p104676 -S'set_attrs(${1:Node}, ${2:Attr}) $3' -p104677 -tp104678 -a(S'set_pos/2' -p104679 -S'set_pos(${1:Node}, ${2:Pos}) $3' -p104680 -tp104681 -a(S'set_postcomments/2' -p104682 -S'set_postcomments(${1:Node}, ${2:Cs}) $3' -p104683 -tp104684 -a(S'set_precomments/2' -p104685 -S'set_precomments(${1:Node}, ${2:Cs}) $3' -p104686 -tp104687 -a(S'size_qualifier/2' -p104688 -S'size_qualifier(${1:Body}, ${2:Size}) $3' -p104689 -tp104690 -a(S'size_qualifier_argument/1' -p104691 -S'size_qualifier_argument(${1:Node}) $2' -p104692 -tp104693 -a(S'size_qualifier_body/1' -p104694 -S'size_qualifier_body(${1:Node}) $2' -p104695 -tp104696 -a(S'string/1' -p104697 -S'string(${1:Node}) $2' -p104698 -tp104699 -a(S'string_literal/1' -p104700 -S'string_literal(${1:Node}) $2' -p104701 -tp104702 -a(S'string_value/1' -p104703 -S'string_value(${1:Node}) $2' -p104704 -tp104705 -a(S'subtrees/1' -p104706 -S'subtrees(${1:T}) $2' -p104707 -tp104708 -a(S'text/1' -p104709 -S'text(${1:Node}) $2' -p104710 -tp104711 -a(S'text_string/1' -p104712 -S'text_string(${1:Node}) $2' -p104713 -tp104714 -a(S'tree/1' -p104715 -S'tree(${1:Type}) $2' -p104716 -tp104717 -a(S'tree/2' -p104718 -S'tree(${1:Node}, ${2:Groups}) $3' -p104719 -tp104720 -a(S'try_after_expr/2' -p104721 -S'try_after_expr(${1:Body}, ${2:After}) $3' -p104722 -tp104723 -a(S'try_expr/2' -p104724 -S'try_expr(${1:Body}, ${2:Handlers}) $3' -p104725 -tp104726 -a(S'try_expr/3' -p104727 -S'try_expr(${1:Body}, ${2:Clauses}, ${3:Handlers}) $4' -p104728 -tp104729 -a(S'try_expr/4' -p104730 -S'try_expr(${1:Body}, ${2:Clauses}, ${3:Handlers}, ${4:After}) $5' -p104731 -tp104732 -a(S'try_expr_after/1' -p104733 -S'try_expr_after(${1:Node}) $2' -p104734 -tp104735 -a(S'try_expr_body/1' -p104736 -S'try_expr_body(${1:Node}) $2' -p104737 -tp104738 -a(S'try_expr_clauses/1' -p104739 -S'try_expr_clauses(${1:Node}) $2' -p104740 -tp104741 -a(S'try_expr_handlers/1' -p104742 -S'try_expr_handlers(${1:Node}) $2' -p104743 -tp104744 -a(S'tuple/1' -p104745 -S'tuple(${1:List}) $2' -p104746 -tp104747 -a(S'tuple_elements/1' -p104748 -S'tuple_elements(${1:Node}) $2' -p104749 -tp104750 -a(S'tuple_size/1' -p104751 -S'tuple_size(${1:Node}) $2' -p104752 -tp104753 -a(S'type/1' -p104754 -S'type(${1:Node}) $2' -p104755 -tp104756 -a(S'underscore/0' -p104757 -S'underscore() $1' -p104758 -tp104759 -a(S'update_tree/2' -p104760 -S'update_tree(${1:Node}, ${2:Groups}) $3' -p104761 -tp104762 -a(S'variable/1' -p104763 -S'variable(${1:Name}) $2' -p104764 -tp104765 -a(S'variable_literal/1' -p104766 -S'variable_literal(${1:Node}) $2' -p104767 -tp104768 -a(S'variable_name/1' -p104769 -S'variable_name(${1:Node}) $2' -p104770 -tp104771 -a(S'warning_marker/1' -p104772 -S'warning_marker(${1:Warning}) $2' -p104773 -tp104774 -a(S'warning_marker_info/1' -p104775 -S'warning_marker_info(${1:Node}) $2' -p104776 -tp104777 -asS'CosTimerEvent_TimerEventService' -p104778 -(lp104779 -(S'code_change/3' -p104780 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p104781 -tp104782 -a(S'event_time/2' -p104783 -S'event_time(${1:OE_THIS}, ${2:Timer_event}) $3' -p104784 -tp104785 -a(S'event_time/3' -p104786 -S'event_time(${1:OE_THIS}, ${2:OE_Options}, ${3:Timer_event}) $4' -p104787 -tp104788 -a(S'handle_call/3' -p104789 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p104790 -tp104791 -a(S'handle_cast/2' -p104792 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p104793 -tp104794 -a(S'handle_info/2' -p104795 -S'handle_info(${1:Info}, ${2:State}) $3' -p104796 -tp104797 -a(S'init/1' -p104798 -S'init(${1:Env}) $2' -p104799 -tp104800 -a(S'oe_create/0' -p104801 -S'oe_create() $1' -p104802 -tp104803 -a(S'oe_create/1' -p104804 -S'oe_create(${1:Env}) $2' -p104805 -tp104806 -a(S'oe_create/2' -p104807 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p104808 -tp104809 -a(S'oe_create_link/0' -p104810 -S'oe_create_link() $1' -p104811 -tp104812 -a(S'oe_create_link/1' -p104813 -S'oe_create_link(${1:Env}) $2' -p104814 -tp104815 -a(S'oe_create_link/2' -p104816 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p104817 -tp104818 -a(S'oe_get_interface/0' -p104819 -S'oe_get_interface() $1' -p104820 -tp104821 -a(S'oe_is_a/1' -p104822 -S'oe_is_a(${1:Param1}) $2' -p104823 -tp104824 -a(S'oe_tc/1' -p104825 -S'oe_tc(${1:Param1}) $2' -p104826 -tp104827 -a(S'register/3' -p104828 -S'register(${1:OE_THIS}, ${2:Event_interface}, ${3:Data}) $4' -p104829 -tp104830 -a(S'register/4' -p104831 -S'register(${1:OE_THIS}, ${2:OE_Options}, ${3:Event_interface}, ${4:Data}) $5' -p104832 -tp104833 -a(S'terminate/2' -p104834 -S'terminate(${1:Reason}, ${2:State}) $3' -p104835 -tp104836 -a(S'typeID/0' -p104837 -S'typeID() $1' -p104838 -tp104839 -a(S'unregister/2' -p104840 -S'unregister(${1:OE_THIS}, ${2:Timer_event_handler}) $3' -p104841 -tp104842 -a(S'unregister/3' -p104843 -S'unregister(${1:OE_THIS}, ${2:OE_Options}, ${3:Timer_event_handler}) $4' -p104844 -tp104845 -asS'mod_browser' -p104846 -(lp104847 -(S'do/1' -p104848 -S'do(${1:Info}) $2' -p104849 -tp104850 -a(S'getBrowser/1' -p104851 -S'getBrowser(${1:AgentString}) $2' -p104852 -tp104853 -a(S'test/0' -p104854 -S'test() $1' -p104855 -tp104856 -asS'megaco_binary_transformer_v2' -p104857 -(lp104858 -(S'tr_message/3' -p104859 -S'tr_message(${1:MegaMsg}, ${2:Mode}, ${3:Config}) $4' -p104860 -tp104861 -a(S'tr_transaction/3' -p104862 -S'tr_transaction(${1:Trans}, ${2:Mode}, ${3:Config}) $4' -p104863 -tp104864 -asS'mod_auth' -p104865 -(lp104866 -(S'add_group_member/3' -p104867 -S'add_group_member(${1:GroupName}, ${2:UserName}, ${3:Opt}) $4' -p104868 -tp104869 -a(S'add_group_member/4' -p104870 -S'add_group_member(${1:GroupName}, ${2:UserName}, ${3:Port}, ${4:Dir}) $5' -p104871 -tp104872 -a(S'add_group_member/5' -p104873 -S'add_group_member(${1:GroupName}, ${2:UserName}, ${3:Addr}, ${4:Port}, ${5:Dir}) $6' -p104874 -tp104875 -a(S'add_user/2' -p104876 -S'add_user(${1:UserName}, ${2:Opt}) $3' -p104877 -tp104878 -a(S'add_user/5' -p104879 -S'add_user(${1:UserName}, ${2:Password}, ${3:UserData}, ${4:Port}, ${5:Dir}) $6' -p104880 -tp104881 -a(S'add_user/6' -p104882 -S'add_user(${1:UserName}, ${2:Password}, ${3:UserData}, ${4:Addr}, ${5:Port}, ${6:Dir}) $7' -p104883 -tp104884 -a(S'delete_group/2' -p104885 -S'delete_group(${1:GroupName}, ${2:Opt}) $3' -p104886 -tp104887 -a(S'delete_group/3' -p104888 -S'delete_group(${1:GroupName}, ${2:Port}, ${3:Dir}) $4' -p104889 -tp104890 -a(S'delete_group/4' -p104891 -S'delete_group(${1:GroupName}, ${2:Addr}, ${3:Port}, ${4:Dir}) $5' -p104892 -tp104893 -a(S'delete_group_member/3' -p104894 -S'delete_group_member(${1:GroupName}, ${2:UserName}, ${3:Opt}) $4' -p104895 -tp104896 -a(S'delete_group_member/4' -p104897 -S'delete_group_member(${1:GroupName}, ${2:UserName}, ${3:Port}, ${4:Dir}) $5' -p104898 -tp104899 -a(S'delete_group_member/5' -p104900 -S'delete_group_member(${1:GroupName}, ${2:UserName}, ${3:Addr}, ${4:Port}, ${5:Dir}) $6' -p104901 -tp104902 -a(S'delete_user/2' -p104903 -S'delete_user(${1:UserName}, ${2:Opt}) $3' -p104904 -tp104905 -a(S'delete_user/3' -p104906 -S'delete_user(${1:UserName}, ${2:Port}, ${3:Dir}) $4' -p104907 -tp104908 -a(S'delete_user/4' -p104909 -S'delete_user(${1:UserName}, ${2:Addr}, ${3:Port}, ${4:Dir}) $5' -p104910 -tp104911 -a(S'do/1' -p104912 -S'do(${1:Info}) $2' -p104913 -tp104914 -a(S'get_user/2' -p104915 -S'get_user(${1:DirData}, ${2:User}) $3' -p104916 -tp104917 -a(S'get_user/3' -p104918 -S'get_user(${1:UserName}, ${2:Port}, ${3:Dir}) $4' -p104919 -tp104920 -a(S'get_user/4' -p104921 -S'get_user(${1:UserName}, ${2:Addr}, ${3:Port}, ${4:Dir}) $5' -p104922 -tp104923 -a(S'list_group_members/2' -p104924 -S'list_group_members(${1:GroupName}, ${2:Opt}) $3' -p104925 -tp104926 -a(S'list_group_members/3' -p104927 -S'list_group_members(${1:Group}, ${2:Port}, ${3:DirData}) $4' -p104928 -tp104929 -a(S'list_group_members/4' -p104930 -S'list_group_members(${1:GroupName}, ${2:Addr}, ${3:Port}, ${4:Dir}) $5' -p104931 -tp104932 -a(S'list_groups/1' -p104933 -S'list_groups(${1:Opt}) $2' -p104934 -tp104935 -a(S'list_groups/2' -p104936 -S'list_groups(${1:Port}, ${2:Dir}) $3' -p104937 -tp104938 -a(S'list_groups/3' -p104939 -S'list_groups(${1:Addr}, ${2:Port}, ${3:Dir}) $4' -p104940 -tp104941 -a(S'list_users/1' -p104942 -S'list_users(${1:Opt}) $2' -p104943 -tp104944 -a(S'list_users/2' -p104945 -S'list_users(${1:Port}, ${2:Dir}) $3' -p104946 -tp104947 -a(S'list_users/3' -p104948 -S'list_users(${1:Addr}, ${2:Port}, ${3:Dir}) $4' -p104949 -tp104950 -a(S'load/2' -p104951 -S'load(${1:Param1}, ${2:Param2}) $3' -p104952 -tp104953 -a(S'remove/1' -p104954 -S'remove(${1:ConfigDB}) $2' -p104955 -tp104956 -a(S'store/2' -p104957 -S'store(${1:Param1}, ${2:Param2}) $3' -p104958 -tp104959 -a(S'update_password/5' -p104960 -S'update_password(${1:Port}, ${2:Dir}, ${3:Old}, ${4:New}, ${5:New}) $6' -p104961 -tp104962 -a(S'update_password/6' -p104963 -S'update_password(${1:Addr}, ${2:Port}, ${3:Dir}, ${4:Old}, ${5:New}, ${6:New}) $7' -p104964 -tp104965 -asS'gstk_canvas' -p104966 -(lp104967 -(S'config/3' -p104968 -S'config(${1:DB}, ${2:Gstkid}, ${3:Options}) $4' -p104969 -tp104970 -a(S'coords/1' -p104971 -S'coords(${1:Param1}) $2' -p104972 -tp104973 -a(S'create/3' -p104974 -S'create(${1:DB}, ${2:Gstkid}, ${3:Opts}) $4' -p104975 -tp104976 -a(S'delete/2' -p104977 -S'delete(${1:DB}, ${2:Gstkid}) $3' -p104978 -tp104979 -a(S'event/5' -p104980 -S'event(${1:DB}, ${2:Gstkid}, ${3:Etype}, ${4:Edata}, ${5:Args}) $6' -p104981 -tp104982 -a(S'item_config/3' -p104983 -S'item_config(${1:DB}, ${2:Gstkid}, ${3:Opts}) $4' -p104984 -tp104985 -a(S'item_delete_impl/2' -p104986 -S'item_delete_impl(${1:DB}, ${2:Gstkid}) $3' -p104987 -tp104988 -a(S'make_command/5' -p104989 -S'make_command(${1:Options}, ${2:Gstkid}, ${3:Canvas}, ${4:MCmd}, ${5:DB}) $6' -p104990 -tp104991 -a(S'make_command/6' -p104992 -S'make_command(${1:Options}, ${2:Gstkid}, ${3:Canvas}, ${4:AItem}, ${5:SCmd}, ${6:DB}) $7' -p104993 -tp104994 -a(S'mk_cmd_and_call/5' -p104995 -S'mk_cmd_and_call(${1:Opts}, ${2:Gstkid}, ${3:CanvasTkW}, ${4:MCmd}, ${5:DB}) $6' -p104996 -tp104997 -a(S'mk_cmd_and_exec/6' -p104998 -S'mk_cmd_and_exec(${1:Options}, ${2:Gstkid}, ${3:Canvas}, ${4:AItem}, ${5:SCmd}, ${6:DB}) $7' -p104999 -tp105000 -a(S'mk_create_opts_for_child/4' -p105001 -S'mk_create_opts_for_child(${1:DB}, ${2:Cgstkid}, ${3:Pgstkid}, ${4:Opts}) $5' -p105002 -tp105003 -a(S'option/5' -p105004 -S'option(${1:Option}, ${2:Gstkid}, ${3:Param3}, ${4:DB}, ${5:Canvas}) $6' -p105005 -tp105006 -a(S'pickout_coords/4' -p105007 -S'pickout_coords(${1:Param1}, ${2:Opts}, ${3:ObjType}, ${4:NbrOfCoords}) $5' -p105008 -tp105009 -a(S'read/3' -p105010 -S'read(${1:DB}, ${2:Gstkid}, ${3:Opt}) $4' -p105011 -tp105012 -a(S'read_option/5' -p105013 -S'read_option(${1:Option}, ${2:Gstkid}, ${3:Param3}, ${4:DB}, ${5:Canvas}) $6' -p105014 -tp105015 -a(S'upd_gstkid/3' -p105016 -S'upd_gstkid(${1:DB}, ${2:Gstkid}, ${3:Opts}) $4' -p105017 -tp105018 -asS'dialyzer' -p105019 -(lp105020 -(S'format_warning/1' -p105021 -S'format_warning(${1:W}) $2' -p105022 -tp105023 -a(S'format_warning/2' -p105024 -S'format_warning(${1:Param1}, ${2:Param2}) $3' -p105025 -tp105026 -a(S'gui/0' -p105027 -S'gui() $1' -p105028 -tp105029 -a(S'gui/1' -p105030 -S'gui(${1:Opts}) $2' -p105031 -tp105032 -a(S'plain_cl/0' -p105033 -S'plain_cl() $1' -p105034 -tp105035 -a(S'plt_info/1' -p105036 -S'plt_info(${1:Opts}) $2' -p105037 -tp105038 -a(S'run/1' -p105039 -S'run(${1:Opts}) $2' -p105040 -tp105041 -asS'CosPropertyService_Property' -p105042 -(lp105043 -(S'id/0' -p105044 -S'id() $1' -p105045 -tp105046 -a(S'name/0' -p105047 -S'name() $1' -p105048 -tp105049 -a(S'tc/0' -p105050 -S'tc() $1' -p105051 -tp105052 -asS'CosNotifyFilter_InvalidGrammar' -p105053 -(lp105054 -(S'id/0' -p105055 -S'id() $1' -p105056 -tp105057 -a(S'name/0' -p105058 -S'name() $1' -p105059 -tp105060 -a(S'tc/0' -p105061 -S'tc() $1' -p105062 -tp105063 -asS'CosNotifyChannelAdmin_StructuredProxyPullSupplier' -p105064 -(lp105065 -(S"'_get_MyAdmin'/1" -p105066 -S"'_get_MyAdmin'(${1:OE_THIS}) $2" -p105067 -tp105068 -a(S"'_get_MyAdmin'/2" -p105069 -S"'_get_MyAdmin'(${1:OE_THIS}, ${2:OE_Options}) $3" -p105070 -tp105071 -a(S"'_get_MyType'/1" -p105072 -S"'_get_MyType'(${1:OE_THIS}) $2" -p105073 -tp105074 -a(S"'_get_MyType'/2" -p105075 -S"'_get_MyType'(${1:OE_THIS}, ${2:OE_Options}) $3" -p105076 -tp105077 -a(S"'_get_lifetime_filter'/1" -p105078 -S"'_get_lifetime_filter'(${1:OE_THIS}) $2" -p105079 -tp105080 -a(S"'_get_lifetime_filter'/2" -p105081 -S"'_get_lifetime_filter'(${1:OE_THIS}, ${2:OE_Options}) $3" -p105082 -tp105083 -a(S"'_get_priority_filter'/1" -p105084 -S"'_get_priority_filter'(${1:OE_THIS}) $2" -p105085 -tp105086 -a(S"'_get_priority_filter'/2" -p105087 -S"'_get_priority_filter'(${1:OE_THIS}, ${2:OE_Options}) $3" -p105088 -tp105089 -a(S"'_set_lifetime_filter'/2" -p105090 -S"'_set_lifetime_filter'(${1:OE_THIS}, ${2:OE_Value}) $3" -p105091 -tp105092 -a(S"'_set_lifetime_filter'/3" -p105093 -S"'_set_lifetime_filter'(${1:OE_THIS}, ${2:OE_Options}, ${3:OE_Value}) $4" -p105094 -tp105095 -a(S"'_set_priority_filter'/2" -p105096 -S"'_set_priority_filter'(${1:OE_THIS}, ${2:OE_Value}) $3" -p105097 -tp105098 -a(S"'_set_priority_filter'/3" -p105099 -S"'_set_priority_filter'(${1:OE_THIS}, ${2:OE_Options}, ${3:OE_Value}) $4" -p105100 -tp105101 -a(S'add_filter/2' -p105102 -S'add_filter(${1:OE_THIS}, ${2:New_filter}) $3' -p105103 -tp105104 -a(S'add_filter/3' -p105105 -S'add_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:New_filter}) $4' -p105106 -tp105107 -a(S'callAny/3' -p105108 -S'callAny(${1:OE_THIS}, ${2:Event}, ${3:Stat}) $4' -p105109 -tp105110 -a(S'callAny/4' -p105111 -S'callAny(${1:OE_THIS}, ${2:OE_Options}, ${3:Event}, ${4:Stat}) $5' -p105112 -tp105113 -a(S'callSeq/3' -p105114 -S'callSeq(${1:OE_THIS}, ${2:Events}, ${3:Stat}) $4' -p105115 -tp105116 -a(S'callSeq/4' -p105117 -S'callSeq(${1:OE_THIS}, ${2:OE_Options}, ${3:Events}, ${4:Stat}) $5' -p105118 -tp105119 -a(S'code_change/3' -p105120 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p105121 -tp105122 -a(S'connect_structured_pull_consumer/2' -p105123 -S'connect_structured_pull_consumer(${1:OE_THIS}, ${2:Pull_consumer}) $3' -p105124 -tp105125 -a(S'connect_structured_pull_consumer/3' -p105126 -S'connect_structured_pull_consumer(${1:OE_THIS}, ${2:OE_Options}, ${3:Pull_consumer}) $4' -p105127 -tp105128 -a(S'disconnect_structured_pull_supplier/1' -p105129 -S'disconnect_structured_pull_supplier(${1:OE_THIS}) $2' -p105130 -tp105131 -a(S'disconnect_structured_pull_supplier/2' -p105132 -S'disconnect_structured_pull_supplier(${1:OE_THIS}, ${2:OE_Options}) $3' -p105133 -tp105134 -a(S'get_all_filters/1' -p105135 -S'get_all_filters(${1:OE_THIS}) $2' -p105136 -tp105137 -a(S'get_all_filters/2' -p105138 -S'get_all_filters(${1:OE_THIS}, ${2:OE_Options}) $3' -p105139 -tp105140 -a(S'get_filter/2' -p105141 -S'get_filter(${1:OE_THIS}, ${2:Filter}) $3' -p105142 -tp105143 -a(S'get_filter/3' -p105144 -S'get_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:Filter}) $4' -p105145 -tp105146 -a(S'get_qos/1' -p105147 -S'get_qos(${1:OE_THIS}) $2' -p105148 -tp105149 -a(S'get_qos/2' -p105150 -S'get_qos(${1:OE_THIS}, ${2:OE_Options}) $3' -p105151 -tp105152 -a(S'handle_call/3' -p105153 -S'handle_call(${1:Param1}, ${2:OE_From}, ${3:OE_State}) $4' -p105154 -tp105155 -a(S'handle_cast/2' -p105156 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p105157 -tp105158 -a(S'handle_info/2' -p105159 -S'handle_info(${1:Info}, ${2:State}) $3' -p105160 -tp105161 -a(S'init/1' -p105162 -S'init(${1:Env}) $2' -p105163 -tp105164 -a(S'obtain_offered_types/2' -p105165 -S'obtain_offered_types(${1:OE_THIS}, ${2:Mode}) $3' -p105166 -tp105167 -a(S'obtain_offered_types/3' -p105168 -S'obtain_offered_types(${1:OE_THIS}, ${2:OE_Options}, ${3:Mode}) $4' -p105169 -tp105170 -a(S'oe_create/0' -p105171 -S'oe_create() $1' -p105172 -tp105173 -a(S'oe_create/1' -p105174 -S'oe_create(${1:Env}) $2' -p105175 -tp105176 -a(S'oe_create/2' -p105177 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p105178 -tp105179 -a(S'oe_create_link/0' -p105180 -S'oe_create_link() $1' -p105181 -tp105182 -a(S'oe_create_link/1' -p105183 -S'oe_create_link(${1:Env}) $2' -p105184 -tp105185 -a(S'oe_create_link/2' -p105186 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p105187 -tp105188 -a(S'oe_get_interface/0' -p105189 -S'oe_get_interface() $1' -p105190 -tp105191 -a(S'oe_is_a/1' -p105192 -S'oe_is_a(${1:Param1}) $2' -p105193 -tp105194 -a(S'oe_tc/1' -p105195 -S'oe_tc(${1:Param1}) $2' -p105196 -tp105197 -a(S'pull_structured_event/1' -p105198 -S'pull_structured_event(${1:OE_THIS}) $2' -p105199 -tp105200 -a(S'pull_structured_event/2' -p105201 -S'pull_structured_event(${1:OE_THIS}, ${2:OE_Options}) $3' -p105202 -tp105203 -a(S'remove_all_filters/1' -p105204 -S'remove_all_filters(${1:OE_THIS}) $2' -p105205 -tp105206 -a(S'remove_all_filters/2' -p105207 -S'remove_all_filters(${1:OE_THIS}, ${2:OE_Options}) $3' -p105208 -tp105209 -a(S'remove_filter/2' -p105210 -S'remove_filter(${1:OE_THIS}, ${2:Filter}) $3' -p105211 -tp105212 -a(S'remove_filter/3' -p105213 -S'remove_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:Filter}) $4' -p105214 -tp105215 -a(S'set_qos/2' -p105216 -S'set_qos(${1:OE_THIS}, ${2:Qos}) $3' -p105217 -tp105218 -a(S'set_qos/3' -p105219 -S'set_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Qos}) $4' -p105220 -tp105221 -a(S'subscription_change/3' -p105222 -S'subscription_change(${1:OE_THIS}, ${2:Added}, ${3:Removed}) $4' -p105223 -tp105224 -a(S'subscription_change/4' -p105225 -S'subscription_change(${1:OE_THIS}, ${2:OE_Options}, ${3:Added}, ${4:Removed}) $5' -p105226 -tp105227 -a(S'terminate/2' -p105228 -S'terminate(${1:Reason}, ${2:State}) $3' -p105229 -tp105230 -a(S'try_pull_structured_event/1' -p105231 -S'try_pull_structured_event(${1:OE_THIS}) $2' -p105232 -tp105233 -a(S'try_pull_structured_event/2' -p105234 -S'try_pull_structured_event(${1:OE_THIS}, ${2:OE_Options}) $3' -p105235 -tp105236 -a(S'typeID/0' -p105237 -S'typeID() $1' -p105238 -tp105239 -a(S'validate_event_qos/2' -p105240 -S'validate_event_qos(${1:OE_THIS}, ${2:Required_qos}) $3' -p105241 -tp105242 -a(S'validate_event_qos/3' -p105243 -S'validate_event_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Required_qos}) $4' -p105244 -tp105245 -a(S'validate_qos/2' -p105246 -S'validate_qos(${1:OE_THIS}, ${2:Required_qos}) $3' -p105247 -tp105248 -a(S'validate_qos/3' -p105249 -S'validate_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Required_qos}) $4' -p105250 -tp105251 -asS'mod_alias' -p105252 -(lp105253 -(S'default_index/2' -p105254 -S'default_index(${1:ConfigDB}, ${2:Path}) $3' -p105255 -tp105256 -a(S'do/1' -p105257 -S'do(${1:Info}) $2' -p105258 -tp105259 -a(S'load/2' -p105260 -S'load(${1:Param1}, ${2:Acc}) $3' -p105261 -tp105262 -a(S'path/3' -p105263 -S'path(${1:Data}, ${2:ConfigDB}, ${3:RequestURI}) $4' -p105264 -tp105265 -a(S'real_name/3' -p105266 -S'real_name(${1:ConfigDB}, ${2:RequestURI}, ${3:Param3}) $4' -p105267 -tp105268 -a(S'real_script_name/3' -p105269 -S'real_script_name(${1:ConfigDB}, ${2:RequestURI}, ${3:Param3}) $4' -p105270 -tp105271 -a(S'store/2' -p105272 -S'store(${1:Conf}, ${2:Param2}) $3' -p105273 -tp105274 -asS'diameter_watchdog_sup' -p105275 -(lp105276 -(S'init/1' -p105277 -S'init(${1:Param1}) $2' -p105278 -tp105279 -a(S'start_child/1' -p105280 -S'start_child(${1:T}) $2' -p105281 -tp105282 -a(S'start_link/0' -p105283 -S'start_link() $1' -p105284 -tp105285 -asS'etop_tr' -p105286 -(lp105287 -(S'reader/1' -p105288 -S'reader(${1:Config}) $2' -p105289 -tp105290 -a(S'setup_tracer/1' -p105291 -S'setup_tracer(${1:Config}) $2' -p105292 -tp105293 -a(S'stop_tracer/1' -p105294 -S'stop_tracer(${1:Param1}) $2' -p105295 -tp105296 -asS'beam_validator' -p105297 -(lp105298 -(S'file/1' -p105299 -S'file(${1:Name}) $2' -p105300 -tp105301 -a(S'files/1' -p105302 -S'files(${1:Param1}) $2' -p105303 -tp105304 -a(S'format_error/1' -p105305 -S'format_error(${1:Error}) $2' -p105306 -tp105307 -a(S'module/2' -p105308 -S'module() $1' -p105309 -tp105310 -asS'edoc_data' -p105311 -(lp105312 -(S'get_all_tags/1' -p105313 -S'get_all_tags(${1:Es}) $2' -p105314 -tp105315 -a(S'hidden_filter/2' -p105316 -S'hidden_filter(${1:Es}, ${2:Opts}) $3' -p105317 -tp105318 -a(S'module/4' -p105319 -S'module(${1:Module}, ${2:Entries}, ${3:Env}, ${4:Opts}) $5' -p105320 -tp105321 -a(S'overview/4' -p105322 -S'overview(${1:Title}, ${2:Tags}, ${3:Env}, ${4:Opts}) $5' -p105323 -tp105324 -a(S'package/4' -p105325 -S'package(${1:Package}, ${2:Tags}, ${3:Env}, ${4:Opts}) $5' -p105326 -tp105327 -a(S'type/2' -p105328 -S'type(${1:T}, ${2:Env}) $3' -p105329 -tp105330 -asS'gstk_menuitem' -p105331 -(lp105332 -(S'config/3' -p105333 -S'config(${1:DB}, ${2:Gstkid}, ${3:Options}) $4' -p105334 -tp105335 -a(S'create/3' -p105336 -S'create(${1:DB}, ${2:GstkId}, ${3:Opts}) $4' -p105337 -tp105338 -a(S'delete/2' -p105339 -S'delete(${1:DB}, ${2:Gstkid}) $3' -p105340 -tp105341 -a(S'destroy/3' -p105342 -S'destroy(${1:DB}, ${2:Id}, ${3:Parent}) $4' -p105343 -tp105344 -a(S'event/5' -p105345 -S'event(${1:DB}, ${2:Gstkid}, ${3:Etype}, ${4:Edata}, ${5:Args}) $6' -p105346 -tp105347 -a(S'mk_create_opts_for_child/4' -p105348 -S'mk_create_opts_for_child(${1:DB}, ${2:Cgstkid}, ${3:Pgstkid}, ${4:Opts}) $5' -p105349 -tp105350 -a(S'option/5' -p105351 -S'option(${1:Option}, ${2:Gstkid}, ${3:TkW}, ${4:DB}, ${5:Param5}) $6' -p105352 -tp105353 -a(S'read/3' -p105354 -S'read(${1:DB}, ${2:Gstkid}, ${3:Opt}) $4' -p105355 -tp105356 -a(S'read_option/5' -p105357 -S'read_option(${1:Option}, ${2:GstkId}, ${3:Param3}, ${4:DB}, ${5:Param5}) $6' -p105358 -tp105359 -asS'wxMemoryDC' -p105360 -(lp105361 -(S'blit/5' -p105362 -S'blit(${1:This}, ${2:DestPt}, ${3:Sz}, ${4:Source}, ${5:SrcPt}) $6' -p105363 -tp105364 -a(S'blit/6' -p105365 -S'blit(${1:This}, ${2:DestPt}, ${3:Sz}, ${4:Source}, ${5:SrcPt}, ${6:Options}) $7' -p105366 -tp105367 -a(S'calcBoundingBox/3' -p105368 -S'calcBoundingBox(${1:This}, ${2:X}, ${3:Y}) $4' -p105369 -tp105370 -a(S'clear/1' -p105371 -S'clear(${1:This}) $2' -p105372 -tp105373 -a(S'computeScaleAndOrigin/1' -p105374 -S'computeScaleAndOrigin(${1:This}) $2' -p105375 -tp105376 -a(S'crossHair/2' -p105377 -S'crossHair(${1:This}, ${2:Pt}) $3' -p105378 -tp105379 -a(S'destroy/1' -p105380 -S'destroy(${1:This}) $2' -p105381 -tp105382 -a(S'destroyClippingRegion/1' -p105383 -S'destroyClippingRegion(${1:This}) $2' -p105384 -tp105385 -a(S'deviceToLogicalX/2' -p105386 -S'deviceToLogicalX(${1:This}, ${2:X}) $3' -p105387 -tp105388 -a(S'deviceToLogicalXRel/2' -p105389 -S'deviceToLogicalXRel(${1:This}, ${2:X}) $3' -p105390 -tp105391 -a(S'deviceToLogicalY/2' -p105392 -S'deviceToLogicalY(${1:This}, ${2:Y}) $3' -p105393 -tp105394 -a(S'deviceToLogicalYRel/2' -p105395 -S'deviceToLogicalYRel(${1:This}, ${2:Y}) $3' -p105396 -tp105397 -a(S'drawArc/4' -p105398 -S'drawArc(${1:This}, ${2:Pt1}, ${3:Pt2}, ${4:Centre}) $5' -p105399 -tp105400 -a(S'drawBitmap/3' -p105401 -S'drawBitmap(${1:This}, ${2:Bmp}, ${3:Pt}) $4' -p105402 -tp105403 -a(S'drawBitmap/4' -p105404 -S'drawBitmap(${1:This}, ${2:Bmp}, ${3:Pt}, ${4:Options}) $5' -p105405 -tp105406 -a(S'drawCheckMark/2' -p105407 -S'drawCheckMark(${1:This}, ${2:Rect}) $3' -p105408 -tp105409 -a(S'drawCircle/3' -p105410 -S'drawCircle(${1:This}, ${2:Pt}, ${3:Radius}) $4' -p105411 -tp105412 -a(S'drawEllipse/2' -p105413 -S'drawEllipse(${1:This}, ${2:Rect}) $3' -p105414 -tp105415 -a(S'drawEllipse/3' -p105416 -S'drawEllipse(${1:This}, ${2:Pt}, ${3:Sz}) $4' -p105417 -tp105418 -a(S'drawEllipticArc/5' -p105419 -S'drawEllipticArc(${1:This}, ${2:Pt}, ${3:Sz}, ${4:Sa}, ${5:Ea}) $6' -p105420 -tp105421 -a(S'drawIcon/3' -p105422 -S'drawIcon(${1:This}, ${2:Icon}, ${3:Pt}) $4' -p105423 -tp105424 -a(S'drawLabel/3' -p105425 -S'drawLabel(${1:This}, ${2:Text}, ${3:Rect}) $4' -p105426 -tp105427 -a(S'drawLabel/4' -p105428 -S'drawLabel(${1:This}, ${2:Text}, ${3:Rect}, ${4:Options}) $5' -p105429 -tp105430 -a(S'drawLine/3' -p105431 -S'drawLine(${1:This}, ${2:Pt1}, ${3:Pt2}) $4' -p105432 -tp105433 -a(S'drawLines/2' -p105434 -S'drawLines(${1:This}, ${2:Points}) $3' -p105435 -tp105436 -a(S'drawLines/3' -p105437 -S'drawLines(${1:This}, ${2:Points}, ${3:Options}) $4' -p105438 -tp105439 -a(S'drawPoint/2' -p105440 -S'drawPoint(${1:This}, ${2:Pt}) $3' -p105441 -tp105442 -a(S'drawPolygon/2' -p105443 -S'drawPolygon(${1:This}, ${2:Points}) $3' -p105444 -tp105445 -a(S'drawPolygon/3' -p105446 -S'drawPolygon(${1:This}, ${2:Points}, ${3:Options}) $4' -p105447 -tp105448 -a(S'drawRectangle/2' -p105449 -S'drawRectangle(${1:This}, ${2:Rect}) $3' -p105450 -tp105451 -a(S'drawRectangle/3' -p105452 -S'drawRectangle(${1:This}, ${2:Pt}, ${3:Sz}) $4' -p105453 -tp105454 -a(S'drawRotatedText/4' -p105455 -S'drawRotatedText(${1:This}, ${2:Text}, ${3:Pt}, ${4:Angle}) $5' -p105456 -tp105457 -a(S'drawRoundedRectangle/3' -p105458 -S'drawRoundedRectangle(${1:This}, ${2:R}, ${3:Radius}) $4' -p105459 -tp105460 -a(S'drawRoundedRectangle/4' -p105461 -S'drawRoundedRectangle(${1:This}, ${2:Pt}, ${3:Sz}, ${4:Radius}) $5' -p105462 -tp105463 -a(S'drawText/3' -p105464 -S'drawText(${1:This}, ${2:Text}, ${3:Pt}) $4' -p105465 -tp105466 -a(S'endDoc/1' -p105467 -S'endDoc(${1:This}) $2' -p105468 -tp105469 -a(S'endPage/1' -p105470 -S'endPage(${1:This}) $2' -p105471 -tp105472 -a(S'floodFill/3' -p105473 -S'floodFill(${1:This}, ${2:Pt}, ${3:Col}) $4' -p105474 -tp105475 -a(S'floodFill/4' -p105476 -S'floodFill(${1:This}, ${2:Pt}, ${3:Col}, ${4:Options}) $5' -p105477 -tp105478 -a(S'getBackground/1' -p105479 -S'getBackground(${1:This}) $2' -p105480 -tp105481 -a(S'getBackgroundMode/1' -p105482 -S'getBackgroundMode(${1:This}) $2' -p105483 -tp105484 -a(S'getBrush/1' -p105485 -S'getBrush(${1:This}) $2' -p105486 -tp105487 -a(S'getCharHeight/1' -p105488 -S'getCharHeight(${1:This}) $2' -p105489 -tp105490 -a(S'getCharWidth/1' -p105491 -S'getCharWidth(${1:This}) $2' -p105492 -tp105493 -a(S'getClippingBox/1' -p105494 -S'getClippingBox(${1:This}) $2' -p105495 -tp105496 -a(S'getFont/1' -p105497 -S'getFont(${1:This}) $2' -p105498 -tp105499 -a(S'getLayoutDirection/1' -p105500 -S'getLayoutDirection(${1:This}) $2' -p105501 -tp105502 -a(S'getLogicalFunction/1' -p105503 -S'getLogicalFunction(${1:This}) $2' -p105504 -tp105505 -a(S'getMapMode/1' -p105506 -S'getMapMode(${1:This}) $2' -p105507 -tp105508 -a(S'getMultiLineTextExtent/2' -p105509 -S'getMultiLineTextExtent(${1:This}, ${2:String}) $3' -p105510 -tp105511 -a(S'getMultiLineTextExtent/3' -p105512 -S'getMultiLineTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p105513 -tp105514 -a(S'getPPI/1' -p105515 -S'getPPI(${1:This}) $2' -p105516 -tp105517 -a(S'getPartialTextExtents/2' -p105518 -S'getPartialTextExtents(${1:This}, ${2:Text}) $3' -p105519 -tp105520 -a(S'getPen/1' -p105521 -S'getPen(${1:This}) $2' -p105522 -tp105523 -a(S'getPixel/2' -p105524 -S'getPixel(${1:This}, ${2:Pt}) $3' -p105525 -tp105526 -a(S'getSize/1' -p105527 -S'getSize(${1:This}) $2' -p105528 -tp105529 -a(S'getSizeMM/1' -p105530 -S'getSizeMM(${1:This}) $2' -p105531 -tp105532 -a(S'getTextBackground/1' -p105533 -S'getTextBackground(${1:This}) $2' -p105534 -tp105535 -a(S'getTextExtent/2' -p105536 -S'getTextExtent(${1:This}, ${2:String}) $3' -p105537 -tp105538 -a(S'getTextExtent/3' -p105539 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p105540 -tp105541 -a(S'getTextForeground/1' -p105542 -S'getTextForeground(${1:This}) $2' -p105543 -tp105544 -a(S'getUserScale/1' -p105545 -S'getUserScale(${1:This}) $2' -p105546 -tp105547 -a(S'gradientFillConcentric/4' -p105548 -S'gradientFillConcentric(${1:This}, ${2:Rect}, ${3:InitialColour}, ${4:DestColour}) $5' -p105549 -tp105550 -a(S'gradientFillConcentric/5' -p105551 -S'gradientFillConcentric(${1:This}, ${2:Rect}, ${3:InitialColour}, ${4:DestColour}, ${5:CircleCenter}) $6' -p105552 -tp105553 -a(S'gradientFillLinear/4' -p105554 -S'gradientFillLinear(${1:This}, ${2:Rect}, ${3:InitialColour}, ${4:DestColour}) $5' -p105555 -tp105556 -a(S'gradientFillLinear/5' -p105557 -S'gradientFillLinear(${1:This}, ${2:Rect}, ${3:InitialColour}, ${4:DestColour}, ${5:Options}) $6' -p105558 -tp105559 -a(S'isOk/1' -p105560 -S'isOk(${1:This}) $2' -p105561 -tp105562 -a(S'logicalToDeviceX/2' -p105563 -S'logicalToDeviceX(${1:This}, ${2:X}) $3' -p105564 -tp105565 -a(S'logicalToDeviceXRel/2' -p105566 -S'logicalToDeviceXRel(${1:This}, ${2:X}) $3' -p105567 -tp105568 -a(S'logicalToDeviceY/2' -p105569 -S'logicalToDeviceY(${1:This}, ${2:Y}) $3' -p105570 -tp105571 -a(S'logicalToDeviceYRel/2' -p105572 -S'logicalToDeviceYRel(${1:This}, ${2:Y}) $3' -p105573 -tp105574 -a(S'maxX/1' -p105575 -S'maxX(${1:This}) $2' -p105576 -tp105577 -a(S'maxY/1' -p105578 -S'maxY(${1:This}) $2' -p105579 -tp105580 -a(S'minX/1' -p105581 -S'minX(${1:This}) $2' -p105582 -tp105583 -a(S'minY/1' -p105584 -S'minY(${1:This}) $2' -p105585 -tp105586 -a(S'new/0' -p105587 -S'new() $1' -p105588 -tp105589 -a(S'new/1' -p105590 -S'new(${1:Dc}) $2' -p105591 -tp105592 -a(S'parent_class/1' -p105593 -S'parent_class(${1:Param1}) $2' -p105594 -tp105595 -a(S'resetBoundingBox/1' -p105596 -S'resetBoundingBox(${1:This}) $2' -p105597 -tp105598 -a(S'selectObject/2' -p105599 -S'selectObject(${1:This}, ${2:Bmp}) $3' -p105600 -tp105601 -a(S'selectObjectAsSource/2' -p105602 -S'selectObjectAsSource(${1:This}, ${2:Bmp}) $3' -p105603 -tp105604 -a(S'setAxisOrientation/3' -p105605 -S'setAxisOrientation(${1:This}, ${2:XLeftRight}, ${3:YBottomUp}) $4' -p105606 -tp105607 -a(S'setBackground/2' -p105608 -S'setBackground(${1:This}, ${2:Brush}) $3' -p105609 -tp105610 -a(S'setBackgroundMode/2' -p105611 -S'setBackgroundMode(${1:This}, ${2:Mode}) $3' -p105612 -tp105613 -a(S'setBrush/2' -p105614 -S'setBrush(${1:This}, ${2:Brush}) $3' -p105615 -tp105616 -a(S'setClippingRegion/2' -p105617 -S'setClippingRegion(${1:This}, ${2:Region}) $3' -p105618 -tp105619 -a(S'setClippingRegion/3' -p105620 -S'setClippingRegion(${1:This}, ${2:Pt}, ${3:Sz}) $4' -p105621 -tp105622 -a(S'setDeviceOrigin/3' -p105623 -S'setDeviceOrigin(${1:This}, ${2:X}, ${3:Y}) $4' -p105624 -tp105625 -a(S'setFont/2' -p105626 -S'setFont(${1:This}, ${2:Font}) $3' -p105627 -tp105628 -a(S'setLayoutDirection/2' -p105629 -S'setLayoutDirection(${1:This}, ${2:Dir}) $3' -p105630 -tp105631 -a(S'setLogicalFunction/2' -p105632 -S'setLogicalFunction(${1:This}, ${2:Function}) $3' -p105633 -tp105634 -a(S'setMapMode/2' -p105635 -S'setMapMode(${1:This}, ${2:Mode}) $3' -p105636 -tp105637 -a(S'setPalette/2' -p105638 -S'setPalette(${1:This}, ${2:Palette}) $3' -p105639 -tp105640 -a(S'setPen/2' -p105641 -S'setPen(${1:This}, ${2:Pen}) $3' -p105642 -tp105643 -a(S'setTextBackground/2' -p105644 -S'setTextBackground(${1:This}, ${2:Colour}) $3' -p105645 -tp105646 -a(S'setTextForeground/2' -p105647 -S'setTextForeground(${1:This}, ${2:Colour}) $3' -p105648 -tp105649 -a(S'setUserScale/3' -p105650 -S'setUserScale(${1:This}, ${2:X}, ${3:Y}) $4' -p105651 -tp105652 -a(S'startDoc/2' -p105653 -S'startDoc(${1:This}, ${2:Message}) $3' -p105654 -tp105655 -a(S'startPage/1' -p105656 -S'startPage(${1:This}) $2' -p105657 -tp105658 -asS'ic_erlbe' -p105659 -(lp105660 -(S'do_gen/3' -p105661 -S'do_gen(${1:G}, ${2:File}, ${3:Form}) $4' -p105662 -tp105663 -a(S'mk_attr_func_names/2' -p105664 -S'mk_attr_func_names(${1:Param1}, ${2:Name}) $3' -p105665 -tp105666 -a(S'unfold/1' -p105667 -S'unfold(${1:L}) $2' -p105668 -tp105669 -asS'beam_trim' -p105670 -(lp105671 -(S'module/2' -p105672 -S'module(${1:Param1}, ${2:Param2}) $3' -p105673 -tp105674 -asS'gstk_port_handler' -p105675 -(lp105676 -(S'call/2' -p105677 -S'call(${1:PortHandler}, ${2:Cmd}) $3' -p105678 -tp105679 -a(S'exec/1' -p105680 -S'exec(${1:Cmd}) $2' -p105681 -tp105682 -a(S'init/2' -p105683 -S'init(${1:Gstk}, ${2:Mode}) $3' -p105684 -tp105685 -a(S'ping/1' -p105686 -S'ping(${1:PortHandler}) $2' -p105687 -tp105688 -a(S'start_link/1' -p105689 -S'start_link(${1:Gstk}) $2' -p105690 -tp105691 -a(S'stop/1' -p105692 -S'stop(${1:PortHandler}) $2' -p105693 -tp105694 -a(S'wait_for_connection/2' -p105695 -S'wait_for_connection(${1:CallerPid}, ${2:ListenSocket}) $3' -p105696 -tp105697 -asS'dbg_iload' -p105698 -(lp105699 -(S'load_mod/4' -p105700 -S'load_mod(${1:Mod}, ${2:File}, ${3:Binary}, ${4:Db}) $5' -p105701 -tp105702 -asS'wxPen' -p105703 -(lp105704 -(S'destroy/1' -p105705 -S'destroy(${1:This}) $2' -p105706 -tp105707 -a(S'getCap/1' -p105708 -S'getCap(${1:This}) $2' -p105709 -tp105710 -a(S'getColour/1' -p105711 -S'getColour(${1:This}) $2' -p105712 -tp105713 -a(S'getJoin/1' -p105714 -S'getJoin(${1:This}) $2' -p105715 -tp105716 -a(S'getStyle/1' -p105717 -S'getStyle(${1:This}) $2' -p105718 -tp105719 -a(S'getWidth/1' -p105720 -S'getWidth(${1:This}) $2' -p105721 -tp105722 -a(S'isOk/1' -p105723 -S'isOk(${1:This}) $2' -p105724 -tp105725 -a(S'new/0' -p105726 -S'new() $1' -p105727 -tp105728 -a(S'new/1' -p105729 -S'new(${1:Colour}) $2' -p105730 -tp105731 -a(S'new/2' -p105732 -S'new(${1:Colour}, ${2:Param2}) $3' -p105733 -tp105734 -a(S'parent_class/1' -p105735 -S'parent_class(${1:Param1}) $2' -p105736 -tp105737 -a(S'setCap/2' -p105738 -S'setCap(${1:This}, ${2:CapStyle}) $3' -p105739 -tp105740 -a(S'setColour/2' -p105741 -S'setColour(${1:This}, ${2:Colour}) $3' -p105742 -tp105743 -a(S'setColour/4' -p105744 -S'setColour(${1:This}, ${2:Red}, ${3:Green}, ${4:Blue}) $5' -p105745 -tp105746 -a(S'setJoin/2' -p105747 -S'setJoin(${1:This}, ${2:JoinStyle}) $3' -p105748 -tp105749 -a(S'setStyle/2' -p105750 -S'setStyle(${1:This}, ${2:Style}) $3' -p105751 -tp105752 -a(S'setWidth/2' -p105753 -S'setWidth(${1:This}, ${2:Width}) $3' -p105754 -tp105755 -asS'ssl_connection' -p105756 -(lp105757 -(S'abbreviated/2' -p105758 -S'abbreviated(${1:Msg}, ${2:State0}) $3' -p105759 -tp105760 -a(S'certify/2' -p105761 -S'certify(${1:Msg}, ${2:State0}) $3' -p105762 -tp105763 -a(S'cipher/2' -p105764 -S'cipher(${1:Msg}, ${2:State0}) $3' -p105765 -tp105766 -a(S'close/1' -p105767 -S'close(${1:ConnectionPid}) $2' -p105768 -tp105769 -a(S'code_change/4' -p105770 -S'code_change(${1:Param1}, ${2:StateName}, ${3:State}, ${4:Param4}) $5' -p105771 -tp105772 -a(S'connect/7' -p105773 -S'connect(${1:Host}, ${2:Port}, ${3:Socket}, ${4:Options}, ${5:User}, ${6:CbInfo}, ${7:Timeout}) $8' -p105774 -tp105775 -a(S'connection/2' -p105776 -S'connection(${1:Msg}, ${2:State}) $3' -p105777 -tp105778 -a(S'get_opts/2' -p105779 -S'get_opts(${1:ConnectionPid}, ${2:OptTags}) $3' -p105780 -tp105781 -a(S'handle_event/3' -p105782 -S'handle_event(${1:Param1}, ${2:StateName}, ${3:State}) $4' -p105783 -tp105784 -a(S'handle_info/3' -p105785 -S'handle_info(${1:Msg}, ${2:StateName}, ${3:State}) $4' -p105786 -tp105787 -a(S'handle_sync_event/4' -p105788 -S'handle_sync_event(${1:Param1}, ${2:From}, ${3:StateName}, ${4:State}) $5' -p105789 -tp105790 -a(S'handshake/2' -p105791 -S'handshake(${1:State}, ${2:Timeout}) $3' -p105792 -tp105793 -a(S'hello/2' -p105794 -S'hello(${1:Msg}, ${2:State0}) $3' -p105795 -tp105796 -a(S'info/1' -p105797 -S'info(${1:ConnectionPid}) $2' -p105798 -tp105799 -a(S'init/1' -p105800 -S'init() $1' -p105801 -tp105802 -a(S'new_user/2' -p105803 -S'new_user(${1:ConnectionPid}, ${2:User}) $3' -p105804 -tp105805 -a(S'peer_certificate/1' -p105806 -S'peer_certificate(${1:ConnectionPid}) $2' -p105807 -tp105808 -a(S'peername/1' -p105809 -S'peername(${1:ConnectionPid}) $2' -p105810 -tp105811 -a(S'prf/5' -p105812 -S'prf(${1:ConnectionPid}, ${2:Secret}, ${3:Label}, ${4:Seed}, ${5:WantedLength}) $6' -p105813 -tp105814 -a(S'recv/3' -p105815 -S'recv(${1:Pid}, ${2:Length}, ${3:Timeout}) $4' -p105816 -tp105817 -a(S'renegotiation/1' -p105818 -S'renegotiation(${1:ConnectionPid}) $2' -p105819 -tp105820 -a(S'send/2' -p105821 -S'send(${1:Pid}, ${2:Data}) $3' -p105822 -tp105823 -a(S'session_info/1' -p105824 -S'session_info(${1:ConnectionPid}) $2' -p105825 -tp105826 -a(S'set_opts/2' -p105827 -S'set_opts(${1:ConnectionPid}, ${2:Options}) $3' -p105828 -tp105829 -a(S'shutdown/2' -p105830 -S'shutdown(${1:ConnectionPid}, ${2:How}) $3' -p105831 -tp105832 -a(S'socket_control/3' -p105833 -S'socket_control(${1:Socket}, ${2:Pid}, ${3:CbModule}) $4' -p105834 -tp105835 -a(S'sockname/1' -p105836 -S'sockname(${1:ConnectionPid}) $2' -p105837 -tp105838 -a(S'ssl_accept/6' -p105839 -S'ssl_accept(${1:Port}, ${2:Socket}, ${3:Opts}, ${4:User}, ${5:CbInfo}, ${6:Timeout}) $7' -p105840 -tp105841 -a(S'start_link/7' -p105842 -S'start_link(${1:Role}, ${2:Host}, ${3:Port}, ${4:Socket}, ${5:Options}, ${6:User}, ${7:CbInfo}) $8' -p105843 -tp105844 -a(S'terminate/3' -p105845 -S'terminate(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p105846 -tp105847 -asS'digraph' -p105848 -(lp105849 -(S'add_edge/3' -p105850 -S'add_edge(${1:G}, ${2:V1}, ${3:V2}) $4' -p105851 -tp105852 -a(S'add_edge/4' -p105853 -S'add_edge(${1:G}, ${2:V1}, ${3:V2}, ${4:Label}) $5' -p105854 -tp105855 -a(S'add_edge/5' -p105856 -S'add_edge(${1:G}, ${2:E}, ${3:V1}, ${4:V2}, ${5:Label}) $6' -p105857 -tp105858 -a(S'add_vertex/1' -p105859 -S'add_vertex(${1:G}) $2' -p105860 -tp105861 -a(S'add_vertex/2' -p105862 -S'add_vertex(${1:G}, ${2:V}) $3' -p105863 -tp105864 -a(S'add_vertex/3' -p105865 -S'add_vertex(${1:G}, ${2:V}, ${3:Label}) $4' -p105866 -tp105867 -a(S'del_edge/2' -p105868 -S'del_edge(${1:G}, ${2:E}) $3' -p105869 -tp105870 -a(S'del_edges/2' -p105871 -S'del_edges(${1:G}, ${2:Edges}) $3' -p105872 -tp105873 -a(S'del_path/3' -p105874 -S'del_path(${1:G}, ${2:V1}, ${3:V2}) $4' -p105875 -tp105876 -a(S'del_vertex/2' -p105877 -S'del_vertex(${1:G}, ${2:V}) $3' -p105878 -tp105879 -a(S'del_vertices/2' -p105880 -S'del_vertices(${1:G}, ${2:Vertices}) $3' -p105881 -tp105882 -a(S'delete/1' -p105883 -S'delete(${1:G}) $2' -p105884 -tp105885 -a(S'edge/2' -p105886 -S'edge(${1:G}, ${2:E}) $3' -p105887 -tp105888 -a(S'edges/1' -p105889 -S'edges(${1:G}) $2' -p105890 -tp105891 -a(S'edges/2' -p105892 -S'edges(${1:G}, ${2:V}) $3' -p105893 -tp105894 -a(S'get_cycle/2' -p105895 -S'get_cycle(${1:G}, ${2:V}) $3' -p105896 -tp105897 -a(S'get_path/3' -p105898 -S'get_path(${1:G}, ${2:V1}, ${3:V2}) $4' -p105899 -tp105900 -a(S'get_short_cycle/2' -p105901 -S'get_short_cycle(${1:G}, ${2:V}) $3' -p105902 -tp105903 -a(S'get_short_path/3' -p105904 -S'get_short_path(${1:G}, ${2:V1}, ${3:V2}) $4' -p105905 -tp105906 -a(S'in_degree/2' -p105907 -S'in_degree(${1:G}, ${2:V}) $3' -p105908 -tp105909 -a(S'in_edges/2' -p105910 -S'in_edges(${1:G}, ${2:V}) $3' -p105911 -tp105912 -a(S'in_neighbours/2' -p105913 -S'in_neighbours(${1:G}, ${2:V}) $3' -p105914 -tp105915 -a(S'info/1' -p105916 -S'info(${1:G}) $2' -p105917 -tp105918 -a(S'new/0' -p105919 -S'new() $1' -p105920 -tp105921 -a(S'new/1' -p105922 -S'new(${1:Type}) $2' -p105923 -tp105924 -a(S'no_edges/1' -p105925 -S'no_edges(${1:G}) $2' -p105926 -tp105927 -a(S'no_vertices/1' -p105928 -S'no_vertices(${1:G}) $2' -p105929 -tp105930 -a(S'out_degree/2' -p105931 -S'out_degree(${1:G}, ${2:V}) $3' -p105932 -tp105933 -a(S'out_edges/2' -p105934 -S'out_edges(${1:G}, ${2:V}) $3' -p105935 -tp105936 -a(S'out_neighbours/2' -p105937 -S'out_neighbours(${1:G}, ${2:V}) $3' -p105938 -tp105939 -a(S'sink_vertices/1' -p105940 -S'sink_vertices(${1:G}) $2' -p105941 -tp105942 -a(S'source_vertices/1' -p105943 -S'source_vertices(${1:G}) $2' -p105944 -tp105945 -a(S'vertex/2' -p105946 -S'vertex(${1:G}, ${2:V}) $3' -p105947 -tp105948 -a(S'vertices/1' -p105949 -S'vertices(${1:G}) $2' -p105950 -tp105951 -asS'snmpa_agent_sup' -p105952 -(lp105953 -(S'init/1' -p105954 -S'init(${1:Param1}) $2' -p105955 -tp105956 -a(S'start_link/0' -p105957 -S'start_link() $1' -p105958 -tp105959 -a(S'start_link/1' -p105960 -S'start_link(${1:AgentSpec}) $2' -p105961 -tp105962 -a(S'start_subagent/3' -p105963 -S'start_subagent(${1:ParentAgent}, ${2:Subtree}, ${3:Mibs}) $4' -p105964 -tp105965 -a(S'stop_subagent/1' -p105966 -S'stop_subagent(${1:SubAgentPid}) $2' -p105967 -tp105968 -asS'snmpm' -p105969 -(lp105970 -(S'ag/3' -p105971 -S'ag(${1:UserId}, ${2:Addr}, ${3:Oids}) $4' -p105972 -tp105973 -a(S'ag/4' -p105974 -S'ag(${1:UserId}, ${2:Addr}, ${3:Port}, ${4:Oids}) $5' -p105975 -tp105976 -a(S'ag/5' -p105977 -S'ag() $1' -p105978 -tp105979 -a(S'ag/6' -p105980 -S'ag(${1:UserId}, ${2:Addr}, ${3:Port}, ${4:CtxName}, ${5:Oids}, ${6:Expire}) $7' -p105981 -tp105982 -a(S'ag/7' -p105983 -S'ag(${1:UserId}, ${2:Addr}, ${3:Port}, ${4:CtxName}, ${5:Oids}, ${6:Expire}, ${7:ExtraInfo}) $8' -p105984 -tp105985 -a(S'agb/5' -p105986 -S'agb(${1:UserId}, ${2:Addr}, ${3:NonRep}, ${4:MaxRep}, ${5:Oids}) $6' -p105987 -tp105988 -a(S'agb/6' -p105989 -S'agb() $1' -p105990 -tp105991 -a(S'agb/7' -p105992 -S'agb() $1' -p105993 -tp105994 -a(S'agb/8' -p105995 -S'agb(${1:UserId}, ${2:Addr}, ${3:Port}, ${4:NonRep}, ${5:MaxRep}, ${6:CtxName}, ${7:Oids}, ${8:Expire}) $9' -p105996 -tp105997 -a(S'agb/9' -p105998 -S'agb(${1:UserId}, ${2:Addr}, ${3:Port}, ${4:NonRep}, ${5:MaxRep}, ${6:CtxName}, ${7:Oids}, ${8:Expire}, ${9:ExtraInfo}) $10' -p105999 -tp106000 -a(S'agent_info/2' -p106001 -S'agent_info(${1:TargetName}, ${2:Item}) $3' -p106002 -tp106003 -a(S'agent_info/3' -p106004 -S'agent_info(${1:Addr}, ${2:Port}, ${3:Item}) $4' -p106005 -tp106006 -a(S'agn/3' -p106007 -S'agn(${1:UserId}, ${2:Addr}, ${3:Oids}) $4' -p106008 -tp106009 -a(S'agn/4' -p106010 -S'agn(${1:UserId}, ${2:Addr}, ${3:CtxName}, ${4:Oids}) $5' -p106011 -tp106012 -a(S'agn/5' -p106013 -S'agn() $1' -p106014 -tp106015 -a(S'agn/6' -p106016 -S'agn(${1:UserId}, ${2:Addr}, ${3:Port}, ${4:CtxName}, ${5:Oids}, ${6:Expire}) $7' -p106017 -tp106018 -a(S'agn/7' -p106019 -S'agn(${1:UserId}, ${2:Addr}, ${3:Port}, ${4:CtxName}, ${5:Oids}, ${6:Expire}, ${7:ExtraInfo}) $8' -p106020 -tp106021 -a(S'as/3' -p106022 -S'as(${1:UserId}, ${2:Addr}, ${3:VarsAndVals}) $4' -p106023 -tp106024 -a(S'as/4' -p106025 -S'as() $1' -p106026 -tp106027 -a(S'as/5' -p106028 -S'as() $1' -p106029 -tp106030 -a(S'as/6' -p106031 -S'as(${1:UserId}, ${2:Addr}, ${3:Port}, ${4:CtxName}, ${5:VarsAndVals}, ${6:Expire}) $7' -p106032 -tp106033 -a(S'as/7' -p106034 -S'as(${1:UserId}, ${2:Addr}, ${3:Port}, ${4:CtxName}, ${5:VarsAndVals}, ${6:Expire}, ${7:ExtraInfo}) $8' -p106035 -tp106036 -a(S'async_get/3' -p106037 -S'async_get(${1:UserId}, ${2:TargetName}, ${3:Oids}) $4' -p106038 -tp106039 -a(S'async_get/4' -p106040 -S'async_get(${1:UserId}, ${2:TargetName}, ${3:Oids}, ${4:Expire}) $5' -p106041 -tp106042 -a(S'async_get/5' -p106043 -S'async_get(${1:UserId}, ${2:TargetName}, ${3:Context}, ${4:Oids}, ${5:Expire}) $6' -p106044 -tp106045 -a(S'async_get/6' -p106046 -S'async_get(${1:UserId}, ${2:TargetName}, ${3:Context}, ${4:Oids}, ${5:Expire}, ${6:ExtraInfo}) $7' -p106047 -tp106048 -a(S'async_get2/3' -p106049 -S'async_get2(${1:UserId}, ${2:TargetName}, ${3:Oids}) $4' -p106050 -tp106051 -a(S'async_get2/4' -p106052 -S'async_get2() $1' -p106053 -tp106054 -a(S'async_get_bulk/5' -p106055 -S'async_get_bulk(${1:UserId}, ${2:TargetName}, ${3:NonRep}, ${4:MaxRep}, ${5:Oids}) $6' -p106056 -tp106057 -a(S'async_get_bulk/6' -p106058 -S'async_get_bulk() $1' -p106059 -tp106060 -a(S'async_get_bulk/7' -p106061 -S'async_get_bulk(${1:UserId}, ${2:TargetName}, ${3:NonRep}, ${4:MaxRep}, ${5:Context}, ${6:Oids}, ${7:Expire}) $8' -p106062 -tp106063 -a(S'async_get_bulk/8' -p106064 -S'async_get_bulk() $1' -p106065 -tp106066 -a(S'async_get_bulk2/5' -p106067 -S'async_get_bulk2(${1:UserId}, ${2:TargetName}, ${3:NonRep}, ${4:MaxRep}, ${5:Oids}) $6' -p106068 -tp106069 -a(S'async_get_bulk2/6' -p106070 -S'async_get_bulk2() $1' -p106071 -tp106072 -a(S'async_get_next/3' -p106073 -S'async_get_next(${1:UserId}, ${2:TargetName}, ${3:Oids}) $4' -p106074 -tp106075 -a(S'async_get_next/4' -p106076 -S'async_get_next() $1' -p106077 -tp106078 -a(S'async_get_next/5' -p106079 -S'async_get_next(${1:UserId}, ${2:TargetName}, ${3:Context}, ${4:Oids}, ${5:Expire}) $6' -p106080 -tp106081 -a(S'async_get_next/6' -p106082 -S'async_get_next(${1:UserId}, ${2:TargetName}, ${3:Context}, ${4:Oids}, ${5:Expire}, ${6:ExtraInfo}) $7' -p106083 -tp106084 -a(S'async_get_next2/3' -p106085 -S'async_get_next2(${1:UserId}, ${2:TargetName}, ${3:Oids}) $4' -p106086 -tp106087 -a(S'async_get_next2/4' -p106088 -S'async_get_next2() $1' -p106089 -tp106090 -a(S'async_set/3' -p106091 -S'async_set(${1:UserId}, ${2:TargetName}, ${3:VarsAndVals}) $4' -p106092 -tp106093 -a(S'async_set/4' -p106094 -S'async_set() $1' -p106095 -tp106096 -a(S'async_set/5' -p106097 -S'async_set(${1:UserId}, ${2:TargetName}, ${3:Context}, ${4:VarsAndVals}, ${5:Expire}) $6' -p106098 -tp106099 -a(S'async_set/6' -p106100 -S'async_set(${1:UserId}, ${2:TargetName}, ${3:Context}, ${4:VarsAndVals}, ${5:Expire}, ${6:ExtraInfo}) $7' -p106101 -tp106102 -a(S'async_set2/3' -p106103 -S'async_set2(${1:UserId}, ${2:TargetName}, ${3:VarsAndVals}) $4' -p106104 -tp106105 -a(S'async_set2/4' -p106106 -S'async_set2() $1' -p106107 -tp106108 -a(S'backup/1' -p106109 -S'backup(${1:BackupDir}) $2' -p106110 -tp106111 -a(S'cancel_async_request/2' -p106112 -S'cancel_async_request(${1:UserId}, ${2:ReqId}) $3' -p106113 -tp106114 -a(S'cancel_notify_started/1' -p106115 -S'cancel_notify_started(${1:Pid}) $2' -p106116 -tp106117 -a(S'change_log_size/1' -p106118 -S'change_log_size(${1:NewSize}) $2' -p106119 -tp106120 -a(S'demonitor/1' -p106121 -S'demonitor(${1:Ref}) $2' -p106122 -tp106123 -a(S'format_reason/1' -p106124 -S'format_reason(${1:Reason}) $2' -p106125 -tp106126 -a(S'format_reason/2' -p106127 -S'format_reason(${1:Prefix}, ${2:Reason}) $3' -p106128 -tp106129 -a(S'g/3' -p106130 -S'g(${1:UserId}, ${2:Addr}, ${3:Oids}) $4' -p106131 -tp106132 -a(S'g/4' -p106133 -S'g(${1:UserId}, ${2:Addr}, ${3:CtxName}, ${4:Oids}) $5' -p106134 -tp106135 -a(S'g/5' -p106136 -S'g() $1' -p106137 -tp106138 -a(S'g/6' -p106139 -S'g(${1:UserId}, ${2:Addr}, ${3:Port}, ${4:CtxName}, ${5:Oids}, ${6:Timeout}) $7' -p106140 -tp106141 -a(S'g/7' -p106142 -S'g(${1:UserId}, ${2:Addr}, ${3:Port}, ${4:CtxName}, ${5:Oids}, ${6:Timeout}, ${7:ExtraInfo}) $8' -p106143 -tp106144 -a(S'gb/5' -p106145 -S'gb(${1:UserId}, ${2:Addr}, ${3:NonRep}, ${4:MaxRep}, ${5:Oids}) $6' -p106146 -tp106147 -a(S'gb/6' -p106148 -S'gb() $1' -p106149 -tp106150 -a(S'gb/7' -p106151 -S'gb() $1' -p106152 -tp106153 -a(S'gb/8' -p106154 -S'gb(${1:UserId}, ${2:Addr}, ${3:Port}, ${4:NonRep}, ${5:MaxRep}, ${6:CtxName}, ${7:Oids}, ${8:Timeout}) $9' -p106155 -tp106156 -a(S'gb/9' -p106157 -S'gb(${1:UserId}, ${2:Addr}, ${3:Port}, ${4:NonRep}, ${5:MaxRep}, ${6:CtxName}, ${7:Oids}, ${8:Timeout}, ${9:ExtraInfo}) $10' -p106158 -tp106159 -a(S'get_log_type/0' -p106160 -S'get_log_type() $1' -p106161 -tp106162 -a(S'gn/3' -p106163 -S'gn(${1:UserId}, ${2:Addr}, ${3:Oids}) $4' -p106164 -tp106165 -a(S'gn/4' -p106166 -S'gn(${1:UserId}, ${2:Addr}, ${3:CtxName}, ${4:Oids}) $5' -p106167 -tp106168 -a(S'gn/5' -p106169 -S'gn() $1' -p106170 -tp106171 -a(S'gn/6' -p106172 -S'gn(${1:UserId}, ${2:Addr}, ${3:Port}, ${4:CtxName}, ${5:Oids}, ${6:Timeout}) $7' -p106173 -tp106174 -a(S'gn/7' -p106175 -S'gn(${1:UserId}, ${2:Addr}, ${3:Port}, ${4:CtxName}, ${5:Oids}, ${6:Timeout}, ${7:ExtraInfo}) $8' -p106176 -tp106177 -a(S'info/0' -p106178 -S'info() $1' -p106179 -tp106180 -a(S'load_mib/1' -p106181 -S'load_mib(${1:MibFile}) $2' -p106182 -tp106183 -a(S'log_to_io/1' -p106184 -S'log_to_io(${1:LogDir}) $2' -p106185 -tp106186 -a(S'log_to_io/2' -p106187 -S'log_to_io(${1:LogDir}, ${2:Mibs}) $3' -p106188 -tp106189 -a(S'log_to_io/3' -p106190 -S'log_to_io(${1:LogDir}, ${2:Mibs}, ${3:LogName}) $4' -p106191 -tp106192 -a(S'log_to_io/4' -p106193 -S'log_to_io(${1:LogDir}, ${2:Mibs}, ${3:LogName}, ${4:LogFile}) $5' -p106194 -tp106195 -a(S'log_to_io/5' -p106196 -S'log_to_io(${1:LogDir}, ${2:Mibs}, ${3:LogName}, ${4:LogFile}, ${5:Start}) $6' -p106197 -tp106198 -a(S'log_to_io/6' -p106199 -S'log_to_io(${1:LogDir}, ${2:Mibs}, ${3:LogName}, ${4:LogFile}, ${5:Start}, ${6:Stop}) $7' -p106200 -tp106201 -a(S'log_to_txt/1' -p106202 -S'log_to_txt(${1:LogDir}) $2' -p106203 -tp106204 -a(S'log_to_txt/2' -p106205 -S'log_to_txt(${1:LogDir}, ${2:Mibs}) $3' -p106206 -tp106207 -a(S'log_to_txt/3' -p106208 -S'log_to_txt(${1:LogDir}, ${2:Mibs}, ${3:OutFile}) $4' -p106209 -tp106210 -a(S'log_to_txt/4' -p106211 -S'log_to_txt(${1:LogDir}, ${2:Mibs}, ${3:OutFile}, ${4:LogName}) $5' -p106212 -tp106213 -a(S'log_to_txt/5' -p106214 -S'log_to_txt(${1:LogDir}, ${2:Mibs}, ${3:OutFile}, ${4:LogName}, ${5:LogFile}) $6' -p106215 -tp106216 -a(S'log_to_txt/6' -p106217 -S'log_to_txt(${1:LogDir}, ${2:Mibs}, ${3:OutFile}, ${4:LogName}, ${5:LogFile}, ${6:Start}) $7' -p106218 -tp106219 -a(S'log_to_txt/7' -p106220 -S'log_to_txt(${1:LogDir}, ${2:Mibs}, ${3:OutFile}, ${4:LogName}, ${5:LogFile}, ${6:Start}, ${7:Stop}) $8' -p106221 -tp106222 -a(S'monitor/0' -p106223 -S'monitor() $1' -p106224 -tp106225 -a(S'name_to_oid/1' -p106226 -S'name_to_oid(${1:Name}) $2' -p106227 -tp106228 -a(S'notify_started/1' -p106229 -S'notify_started(${1:To}) $2' -p106230 -tp106231 -a(S'oid_to_name/1' -p106232 -S'oid_to_name(${1:Oid}) $2' -p106233 -tp106234 -a(S'oid_to_type/1' -p106235 -S'oid_to_type(${1:Oid}) $2' -p106236 -tp106237 -a(S'reconfigure/0' -p106238 -S'reconfigure() $1' -p106239 -tp106240 -a(S'register_agent/2' -p106241 -S'register_agent(${1:UserId}, ${2:Addr}) $3' -p106242 -tp106243 -a(S'register_agent/3' -p106244 -S'register_agent(${1:UserId}, ${2:TargetName}, ${3:Config}) $4' -p106245 -tp106246 -a(S'register_agent/4' -p106247 -S'register_agent(${1:UserId}, ${2:Addr}, ${3:Port}, ${4:Config0}) $5' -p106248 -tp106249 -a(S'register_user/3' -p106250 -S'register_user(${1:Id}, ${2:Module}, ${3:Data}) $4' -p106251 -tp106252 -a(S'register_user/4' -p106253 -S'register_user(${1:Id}, ${2:Module}, ${3:Data}, ${4:DefaultAgentConfig}) $5' -p106254 -tp106255 -a(S'register_user_monitor/3' -p106256 -S'register_user_monitor(${1:Id}, ${2:Module}, ${3:Data}) $4' -p106257 -tp106258 -a(S'register_user_monitor/4' -p106259 -S'register_user_monitor(${1:Id}, ${2:Module}, ${3:Data}, ${4:DefaultAgentConfig}) $5' -p106260 -tp106261 -a(S'register_usm_user/3' -p106262 -S'register_usm_user() $1' -p106263 -tp106264 -a(S's/3' -p106265 -S's(${1:UserId}, ${2:Addr}, ${3:VarsAndVals}) $4' -p106266 -tp106267 -a(S's/4' -p106268 -S's() $1' -p106269 -tp106270 -a(S's/5' -p106271 -S's() $1' -p106272 -tp106273 -a(S's/6' -p106274 -S's(${1:UserId}, ${2:Addr}, ${3:Port}, ${4:CtxName}, ${5:VarsAndVals}, ${6:Timeout}) $7' -p106275 -tp106276 -a(S's/7' -p106277 -S's(${1:UserId}, ${2:Addr}, ${3:Port}, ${4:CtxName}, ${5:VarsAndVals}, ${6:Timeout}, ${7:ExtraInfo}) $8' -p106278 -tp106279 -a(S'set_log_type/1' -p106280 -S'set_log_type(${1:NewType}) $2' -p106281 -tp106282 -a(S'snmpm_start_verify/2' -p106283 -S'snmpm_start_verify(${1:Parent}, ${2:To}) $3' -p106284 -tp106285 -a(S'snmpm_start_verify/3' -p106286 -S'snmpm_start_verify(${1:Parent}, ${2:Ref}, ${3:To}) $4' -p106287 -tp106288 -a(S'start/0' -p106289 -S'start() $1' -p106290 -tp106291 -a(S'start/1' -p106292 -S'start(${1:Opts}) $2' -p106293 -tp106294 -a(S'start_link/0' -p106295 -S'start_link() $1' -p106296 -tp106297 -a(S'start_link/1' -p106298 -S'start_link(${1:Opts}) $2' -p106299 -tp106300 -a(S'start_link/3' -p106301 -S'start_link(${1:Opts}, ${2:Param2}, ${3:Param3}) $4' -p106302 -tp106303 -a(S'stop/0' -p106304 -S'stop() $1' -p106305 -tp106306 -a(S'sync_get/3' -p106307 -S'sync_get(${1:UserId}, ${2:TargetName}, ${3:Oids}) $4' -p106308 -tp106309 -a(S'sync_get/4' -p106310 -S'sync_get(${1:UserId}, ${2:TargetName}, ${3:Oids}, ${4:Expire}) $5' -p106311 -tp106312 -a(S'sync_get/5' -p106313 -S'sync_get(${1:UserId}, ${2:TargetName}, ${3:Context}, ${4:Oids}, ${5:Timeout}) $6' -p106314 -tp106315 -a(S'sync_get/6' -p106316 -S'sync_get(${1:UserId}, ${2:TargetName}, ${3:Context}, ${4:Oids}, ${5:Timeout}, ${6:ExtraInfo}) $7' -p106317 -tp106318 -a(S'sync_get2/3' -p106319 -S'sync_get2(${1:UserId}, ${2:TargetName}, ${3:Oids}) $4' -p106320 -tp106321 -a(S'sync_get2/4' -p106322 -S'sync_get2() $1' -p106323 -tp106324 -a(S'sync_get_bulk/5' -p106325 -S'sync_get_bulk(${1:UserId}, ${2:TargetName}, ${3:NonRep}, ${4:MaxRep}, ${5:Oids}) $6' -p106326 -tp106327 -a(S'sync_get_bulk/6' -p106328 -S'sync_get_bulk() $1' -p106329 -tp106330 -a(S'sync_get_bulk/7' -p106331 -S'sync_get_bulk(${1:UserId}, ${2:TargetName}, ${3:NonRep}, ${4:MaxRep}, ${5:Context}, ${6:Oids}, ${7:Timeout}) $8' -p106332 -tp106333 -a(S'sync_get_bulk/8' -p106334 -S'sync_get_bulk() $1' -p106335 -tp106336 -a(S'sync_get_bulk2/5' -p106337 -S'sync_get_bulk2(${1:UserId}, ${2:TargetName}, ${3:NonRep}, ${4:MaxRep}, ${5:Oids}) $6' -p106338 -tp106339 -a(S'sync_get_bulk2/6' -p106340 -S'sync_get_bulk2() $1' -p106341 -tp106342 -a(S'sync_get_next/3' -p106343 -S'sync_get_next(${1:UserId}, ${2:TargetName}, ${3:Oids}) $4' -p106344 -tp106345 -a(S'sync_get_next/4' -p106346 -S'sync_get_next() $1' -p106347 -tp106348 -a(S'sync_get_next/5' -p106349 -S'sync_get_next(${1:UserId}, ${2:TargetName}, ${3:Context}, ${4:Oids}, ${5:Timeout}) $6' -p106350 -tp106351 -a(S'sync_get_next/6' -p106352 -S'sync_get_next(${1:UserId}, ${2:TargetName}, ${3:Context}, ${4:Oids}, ${5:Timeout}, ${6:ExtraInfo}) $7' -p106353 -tp106354 -a(S'sync_get_next2/3' -p106355 -S'sync_get_next2(${1:UserId}, ${2:TargetName}, ${3:Oids}) $4' -p106356 -tp106357 -a(S'sync_get_next2/4' -p106358 -S'sync_get_next2() $1' -p106359 -tp106360 -a(S'sync_set/3' -p106361 -S'sync_set(${1:UserId}, ${2:TargetName}, ${3:VarsAndVals}) $4' -p106362 -tp106363 -a(S'sync_set/4' -p106364 -S'sync_set() $1' -p106365 -tp106366 -a(S'sync_set/5' -p106367 -S'sync_set(${1:UserId}, ${2:TargetName}, ${3:Context}, ${4:VarsAndVals}, ${5:Timeout}) $6' -p106368 -tp106369 -a(S'sync_set/6' -p106370 -S'sync_set(${1:UserId}, ${2:TargetName}, ${3:Context}, ${4:VarsAndVals}, ${5:Timeout}, ${6:ExtraInfo}) $7' -p106371 -tp106372 -a(S'sync_set2/3' -p106373 -S'sync_set2(${1:UserId}, ${2:TargetName}, ${3:VarsAndVals}) $4' -p106374 -tp106375 -a(S'sync_set2/4' -p106376 -S'sync_set2() $1' -p106377 -tp106378 -a(S'sys_up_time/0' -p106379 -S'sys_up_time() $1' -p106380 -tp106381 -a(S'system_start_time/0' -p106382 -S'system_start_time() $1' -p106383 -tp106384 -a(S'unload_mib/1' -p106385 -S'unload_mib(${1:Mib}) $2' -p106386 -tp106387 -a(S'unregister_agent/2' -p106388 -S'unregister_agent(${1:UserId}, ${2:TargetName}) $3' -p106389 -tp106390 -a(S'unregister_agent/3' -p106391 -S'unregister_agent(${1:UserId}, ${2:Addr}, ${3:Port}) $4' -p106392 -tp106393 -a(S'unregister_user/1' -p106394 -S'unregister_user(${1:Id}) $2' -p106395 -tp106396 -a(S'unregister_usm_user/2' -p106397 -S'unregister_usm_user() $1' -p106398 -tp106399 -a(S'update_agent_info/3' -p106400 -S'update_agent_info(${1:UserId}, ${2:TargetName}, ${3:Info}) $4' -p106401 -tp106402 -a(S'update_agent_info/4' -p106403 -S'update_agent_info(${1:UserId}, ${2:TargetName}, ${3:Item}, ${4:Val}) $5' -p106404 -tp106405 -a(S'update_agent_info/5' -p106406 -S'update_agent_info(${1:UserId}, ${2:Addr}, ${3:Port}, ${4:Item}, ${5:Val}) $6' -p106407 -tp106408 -a(S'update_usm_user_info/4' -p106409 -S'update_usm_user_info() $1' -p106410 -tp106411 -a(S'usm_user_info/3' -p106412 -S'usm_user_info() $1' -p106413 -tp106414 -a(S'verbosity/2' -p106415 -S'verbosity(${1:Param1}, ${2:V}) $3' -p106416 -tp106417 -a(S'which_agents/0' -p106418 -S'which_agents() $1' -p106419 -tp106420 -a(S'which_agents/1' -p106421 -S'which_agents(${1:UserId}) $2' -p106422 -tp106423 -a(S'which_mibs/0' -p106424 -S'which_mibs() $1' -p106425 -tp106426 -a(S'which_users/0' -p106427 -S'which_users() $1' -p106428 -tp106429 -a(S'which_usm_users/0' -p106430 -S'which_usm_users() $1' -p106431 -tp106432 -a(S'which_usm_users/1' -p106433 -S'which_usm_users(${1:EngineID}) $2' -p106434 -tp106435 -asS'wxListView' -p106436 -(lp106437 -(S'cacheBestSize/2' -p106438 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p106439 -tp106440 -a(S'captureMouse/1' -p106441 -S'captureMouse(${1:This}) $2' -p106442 -tp106443 -a(S'center/1' -p106444 -S'center(${1:This}) $2' -p106445 -tp106446 -a(S'center/2' -p106447 -S'center(${1:This}, ${2:Options}) $3' -p106448 -tp106449 -a(S'centerOnParent/1' -p106450 -S'centerOnParent(${1:This}) $2' -p106451 -tp106452 -a(S'centerOnParent/2' -p106453 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p106454 -tp106455 -a(S'centre/1' -p106456 -S'centre(${1:This}) $2' -p106457 -tp106458 -a(S'centre/2' -p106459 -S'centre(${1:This}, ${2:Options}) $3' -p106460 -tp106461 -a(S'centreOnParent/1' -p106462 -S'centreOnParent(${1:This}) $2' -p106463 -tp106464 -a(S'centreOnParent/2' -p106465 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p106466 -tp106467 -a(S'clearBackground/1' -p106468 -S'clearBackground(${1:This}) $2' -p106469 -tp106470 -a(S'clearColumnImage/2' -p106471 -S'clearColumnImage(${1:This}, ${2:Col}) $3' -p106472 -tp106473 -a(S'clientToScreen/2' -p106474 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p106475 -tp106476 -a(S'clientToScreen/3' -p106477 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p106478 -tp106479 -a(S'close/1' -p106480 -S'close(${1:This}) $2' -p106481 -tp106482 -a(S'close/2' -p106483 -S'close(${1:This}, ${2:Options}) $3' -p106484 -tp106485 -a(S'connect/2' -p106486 -S'connect(${1:This}, ${2:EventType}) $3' -p106487 -tp106488 -a(S'connect/3' -p106489 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p106490 -tp106491 -a(S'convertDialogToPixels/2' -p106492 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p106493 -tp106494 -a(S'convertPixelsToDialog/2' -p106495 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p106496 -tp106497 -a(S'destroyChildren/1' -p106498 -S'destroyChildren(${1:This}) $2' -p106499 -tp106500 -a(S'disable/1' -p106501 -S'disable(${1:This}) $2' -p106502 -tp106503 -a(S'disconnect/1' -p106504 -S'disconnect(${1:This}) $2' -p106505 -tp106506 -a(S'disconnect/2' -p106507 -S'disconnect(${1:This}, ${2:EventType}) $3' -p106508 -tp106509 -a(S'disconnect/3' -p106510 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p106511 -tp106512 -a(S'enable/1' -p106513 -S'enable(${1:This}) $2' -p106514 -tp106515 -a(S'enable/2' -p106516 -S'enable(${1:This}, ${2:Options}) $3' -p106517 -tp106518 -a(S'findWindow/2' -p106519 -S'findWindow(${1:This}, ${2:Winid}) $3' -p106520 -tp106521 -a(S'fit/1' -p106522 -S'fit(${1:This}) $2' -p106523 -tp106524 -a(S'fitInside/1' -p106525 -S'fitInside(${1:This}) $2' -p106526 -tp106527 -a(S'focus/2' -p106528 -S'focus(${1:This}, ${2:Index}) $3' -p106529 -tp106530 -a(S'freeze/1' -p106531 -S'freeze(${1:This}) $2' -p106532 -tp106533 -a(S'getAcceleratorTable/1' -p106534 -S'getAcceleratorTable(${1:This}) $2' -p106535 -tp106536 -a(S'getBackgroundColour/1' -p106537 -S'getBackgroundColour(${1:This}) $2' -p106538 -tp106539 -a(S'getBackgroundStyle/1' -p106540 -S'getBackgroundStyle(${1:This}) $2' -p106541 -tp106542 -a(S'getBestSize/1' -p106543 -S'getBestSize(${1:This}) $2' -p106544 -tp106545 -a(S'getCaret/1' -p106546 -S'getCaret(${1:This}) $2' -p106547 -tp106548 -a(S'getCharHeight/1' -p106549 -S'getCharHeight(${1:This}) $2' -p106550 -tp106551 -a(S'getCharWidth/1' -p106552 -S'getCharWidth(${1:This}) $2' -p106553 -tp106554 -a(S'getChildren/1' -p106555 -S'getChildren(${1:This}) $2' -p106556 -tp106557 -a(S'getClientSize/1' -p106558 -S'getClientSize(${1:This}) $2' -p106559 -tp106560 -a(S'getContainingSizer/1' -p106561 -S'getContainingSizer(${1:This}) $2' -p106562 -tp106563 -a(S'getCursor/1' -p106564 -S'getCursor(${1:This}) $2' -p106565 -tp106566 -a(S'getDropTarget/1' -p106567 -S'getDropTarget(${1:This}) $2' -p106568 -tp106569 -a(S'getEventHandler/1' -p106570 -S'getEventHandler(${1:This}) $2' -p106571 -tp106572 -a(S'getExtraStyle/1' -p106573 -S'getExtraStyle(${1:This}) $2' -p106574 -tp106575 -a(S'getFirstSelected/1' -p106576 -S'getFirstSelected(${1:This}) $2' -p106577 -tp106578 -a(S'getFocusedItem/1' -p106579 -S'getFocusedItem(${1:This}) $2' -p106580 -tp106581 -a(S'getFont/1' -p106582 -S'getFont(${1:This}) $2' -p106583 -tp106584 -a(S'getForegroundColour/1' -p106585 -S'getForegroundColour(${1:This}) $2' -p106586 -tp106587 -a(S'getGrandParent/1' -p106588 -S'getGrandParent(${1:This}) $2' -p106589 -tp106590 -a(S'getHandle/1' -p106591 -S'getHandle(${1:This}) $2' -p106592 -tp106593 -a(S'getHelpText/1' -p106594 -S'getHelpText(${1:This}) $2' -p106595 -tp106596 -a(S'getId/1' -p106597 -S'getId(${1:This}) $2' -p106598 -tp106599 -a(S'getLabel/1' -p106600 -S'getLabel(${1:This}) $2' -p106601 -tp106602 -a(S'getMaxSize/1' -p106603 -S'getMaxSize(${1:This}) $2' -p106604 -tp106605 -a(S'getMinSize/1' -p106606 -S'getMinSize(${1:This}) $2' -p106607 -tp106608 -a(S'getName/1' -p106609 -S'getName(${1:This}) $2' -p106610 -tp106611 -a(S'getNextSelected/2' -p106612 -S'getNextSelected(${1:This}, ${2:Item}) $3' -p106613 -tp106614 -a(S'getParent/1' -p106615 -S'getParent(${1:This}) $2' -p106616 -tp106617 -a(S'getPosition/1' -p106618 -S'getPosition(${1:This}) $2' -p106619 -tp106620 -a(S'getRect/1' -p106621 -S'getRect(${1:This}) $2' -p106622 -tp106623 -a(S'getScreenPosition/1' -p106624 -S'getScreenPosition(${1:This}) $2' -p106625 -tp106626 -a(S'getScreenRect/1' -p106627 -S'getScreenRect(${1:This}) $2' -p106628 -tp106629 -a(S'getScrollPos/2' -p106630 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p106631 -tp106632 -a(S'getScrollRange/2' -p106633 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p106634 -tp106635 -a(S'getScrollThumb/2' -p106636 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p106637 -tp106638 -a(S'getSize/1' -p106639 -S'getSize(${1:This}) $2' -p106640 -tp106641 -a(S'getSizer/1' -p106642 -S'getSizer(${1:This}) $2' -p106643 -tp106644 -a(S'getTextExtent/2' -p106645 -S'getTextExtent(${1:This}, ${2:String}) $3' -p106646 -tp106647 -a(S'getTextExtent/3' -p106648 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p106649 -tp106650 -a(S'getToolTip/1' -p106651 -S'getToolTip(${1:This}) $2' -p106652 -tp106653 -a(S'getUpdateRegion/1' -p106654 -S'getUpdateRegion(${1:This}) $2' -p106655 -tp106656 -a(S'getVirtualSize/1' -p106657 -S'getVirtualSize(${1:This}) $2' -p106658 -tp106659 -a(S'getWindowStyleFlag/1' -p106660 -S'getWindowStyleFlag(${1:This}) $2' -p106661 -tp106662 -a(S'getWindowVariant/1' -p106663 -S'getWindowVariant(${1:This}) $2' -p106664 -tp106665 -a(S'hasCapture/1' -p106666 -S'hasCapture(${1:This}) $2' -p106667 -tp106668 -a(S'hasScrollbar/2' -p106669 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p106670 -tp106671 -a(S'hasTransparentBackground/1' -p106672 -S'hasTransparentBackground(${1:This}) $2' -p106673 -tp106674 -a(S'hide/1' -p106675 -S'hide(${1:This}) $2' -p106676 -tp106677 -a(S'inheritAttributes/1' -p106678 -S'inheritAttributes(${1:This}) $2' -p106679 -tp106680 -a(S'initDialog/1' -p106681 -S'initDialog(${1:This}) $2' -p106682 -tp106683 -a(S'invalidateBestSize/1' -p106684 -S'invalidateBestSize(${1:This}) $2' -p106685 -tp106686 -a(S'isEnabled/1' -p106687 -S'isEnabled(${1:This}) $2' -p106688 -tp106689 -a(S'isExposed/2' -p106690 -S'isExposed(${1:This}, ${2:Pt}) $3' -p106691 -tp106692 -a(S'isExposed/3' -p106693 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p106694 -tp106695 -a(S'isExposed/5' -p106696 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p106697 -tp106698 -a(S'isRetained/1' -p106699 -S'isRetained(${1:This}) $2' -p106700 -tp106701 -a(S'isSelected/2' -p106702 -S'isSelected(${1:This}, ${2:Index}) $3' -p106703 -tp106704 -a(S'isShown/1' -p106705 -S'isShown(${1:This}) $2' -p106706 -tp106707 -a(S'isTopLevel/1' -p106708 -S'isTopLevel(${1:This}) $2' -p106709 -tp106710 -a(S'layout/1' -p106711 -S'layout(${1:This}) $2' -p106712 -tp106713 -a(S'lineDown/1' -p106714 -S'lineDown(${1:This}) $2' -p106715 -tp106716 -a(S'lineUp/1' -p106717 -S'lineUp(${1:This}) $2' -p106718 -tp106719 -a(S'lower/1' -p106720 -S'lower(${1:This}) $2' -p106721 -tp106722 -a(S'makeModal/1' -p106723 -S'makeModal(${1:This}) $2' -p106724 -tp106725 -a(S'makeModal/2' -p106726 -S'makeModal(${1:This}, ${2:Options}) $3' -p106727 -tp106728 -a(S'move/2' -p106729 -S'move(${1:This}, ${2:Pt}) $3' -p106730 -tp106731 -a(S'move/3' -p106732 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p106733 -tp106734 -a(S'move/4' -p106735 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p106736 -tp106737 -a(S'moveAfterInTabOrder/2' -p106738 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p106739 -tp106740 -a(S'moveBeforeInTabOrder/2' -p106741 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p106742 -tp106743 -a(S'navigate/1' -p106744 -S'navigate(${1:This}) $2' -p106745 -tp106746 -a(S'navigate/2' -p106747 -S'navigate(${1:This}, ${2:Options}) $3' -p106748 -tp106749 -a(S'pageDown/1' -p106750 -S'pageDown(${1:This}) $2' -p106751 -tp106752 -a(S'pageUp/1' -p106753 -S'pageUp(${1:This}) $2' -p106754 -tp106755 -a(S'parent_class/1' -p106756 -S'parent_class(${1:Param1}) $2' -p106757 -tp106758 -a(S'popEventHandler/1' -p106759 -S'popEventHandler(${1:This}) $2' -p106760 -tp106761 -a(S'popEventHandler/2' -p106762 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p106763 -tp106764 -a(S'popupMenu/2' -p106765 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p106766 -tp106767 -a(S'popupMenu/3' -p106768 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p106769 -tp106770 -a(S'popupMenu/4' -p106771 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p106772 -tp106773 -a(S'raise/1' -p106774 -S'raise(${1:This}) $2' -p106775 -tp106776 -a(S'refresh/1' -p106777 -S'refresh(${1:This}) $2' -p106778 -tp106779 -a(S'refresh/2' -p106780 -S'refresh(${1:This}, ${2:Options}) $3' -p106781 -tp106782 -a(S'refreshRect/2' -p106783 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p106784 -tp106785 -a(S'refreshRect/3' -p106786 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p106787 -tp106788 -a(S'releaseMouse/1' -p106789 -S'releaseMouse(${1:This}) $2' -p106790 -tp106791 -a(S'removeChild/2' -p106792 -S'removeChild(${1:This}, ${2:Child}) $3' -p106793 -tp106794 -a(S'reparent/2' -p106795 -S'reparent(${1:This}, ${2:NewParent}) $3' -p106796 -tp106797 -a(S'screenToClient/1' -p106798 -S'screenToClient(${1:This}) $2' -p106799 -tp106800 -a(S'screenToClient/2' -p106801 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p106802 -tp106803 -a(S'scrollLines/2' -p106804 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p106805 -tp106806 -a(S'scrollPages/2' -p106807 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p106808 -tp106809 -a(S'scrollWindow/3' -p106810 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p106811 -tp106812 -a(S'scrollWindow/4' -p106813 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p106814 -tp106815 -a(S'select/2' -p106816 -S'select(${1:This}, ${2:N}) $3' -p106817 -tp106818 -a(S'select/3' -p106819 -S'select(${1:This}, ${2:N}, ${3:Param3}) $4' -p106820 -tp106821 -a(S'setAcceleratorTable/2' -p106822 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p106823 -tp106824 -a(S'setAutoLayout/2' -p106825 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p106826 -tp106827 -a(S'setBackgroundColour/2' -p106828 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p106829 -tp106830 -a(S'setBackgroundStyle/2' -p106831 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p106832 -tp106833 -a(S'setCaret/2' -p106834 -S'setCaret(${1:This}, ${2:Caret}) $3' -p106835 -tp106836 -a(S'setClientSize/2' -p106837 -S'setClientSize(${1:This}, ${2:Size}) $3' -p106838 -tp106839 -a(S'setClientSize/3' -p106840 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p106841 -tp106842 -a(S'setColumnImage/3' -p106843 -S'setColumnImage(${1:This}, ${2:Col}, ${3:Image}) $4' -p106844 -tp106845 -a(S'setContainingSizer/2' -p106846 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p106847 -tp106848 -a(S'setCursor/2' -p106849 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p106850 -tp106851 -a(S'setDropTarget/2' -p106852 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p106853 -tp106854 -a(S'setExtraStyle/2' -p106855 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p106856 -tp106857 -a(S'setFocus/1' -p106858 -S'setFocus(${1:This}) $2' -p106859 -tp106860 -a(S'setFocusFromKbd/1' -p106861 -S'setFocusFromKbd(${1:This}) $2' -p106862 -tp106863 -a(S'setFont/2' -p106864 -S'setFont(${1:This}, ${2:Font}) $3' -p106865 -tp106866 -a(S'setForegroundColour/2' -p106867 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p106868 -tp106869 -a(S'setHelpText/2' -p106870 -S'setHelpText(${1:This}, ${2:Text}) $3' -p106871 -tp106872 -a(S'setId/2' -p106873 -S'setId(${1:This}, ${2:Winid}) $3' -p106874 -tp106875 -a(S'setLabel/2' -p106876 -S'setLabel(${1:This}, ${2:Label}) $3' -p106877 -tp106878 -a(S'setMaxSize/2' -p106879 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p106880 -tp106881 -a(S'setMinSize/2' -p106882 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p106883 -tp106884 -a(S'setName/2' -p106885 -S'setName(${1:This}, ${2:Name}) $3' -p106886 -tp106887 -a(S'setOwnBackgroundColour/2' -p106888 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p106889 -tp106890 -a(S'setOwnFont/2' -p106891 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p106892 -tp106893 -a(S'setOwnForegroundColour/2' -p106894 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p106895 -tp106896 -a(S'setPalette/2' -p106897 -S'setPalette(${1:This}, ${2:Pal}) $3' -p106898 -tp106899 -a(S'setScrollPos/3' -p106900 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p106901 -tp106902 -a(S'setScrollPos/4' -p106903 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p106904 -tp106905 -a(S'setScrollbar/5' -p106906 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p106907 -tp106908 -a(S'setScrollbar/6' -p106909 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p106910 -tp106911 -a(S'setSize/2' -p106912 -S'setSize(${1:This}, ${2:Rect}) $3' -p106913 -tp106914 -a(S'setSize/3' -p106915 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p106916 -tp106917 -a(S'setSize/5' -p106918 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p106919 -tp106920 -a(S'setSize/6' -p106921 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p106922 -tp106923 -a(S'setSizeHints/2' -p106924 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p106925 -tp106926 -a(S'setSizeHints/3' -p106927 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p106928 -tp106929 -a(S'setSizeHints/4' -p106930 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p106931 -tp106932 -a(S'setSizer/2' -p106933 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p106934 -tp106935 -a(S'setSizer/3' -p106936 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p106937 -tp106938 -a(S'setSizerAndFit/2' -p106939 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p106940 -tp106941 -a(S'setSizerAndFit/3' -p106942 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p106943 -tp106944 -a(S'setThemeEnabled/2' -p106945 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p106946 -tp106947 -a(S'setToolTip/2' -p106948 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p106949 -tp106950 -a(S'setVirtualSize/2' -p106951 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p106952 -tp106953 -a(S'setVirtualSize/3' -p106954 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p106955 -tp106956 -a(S'setVirtualSizeHints/2' -p106957 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p106958 -tp106959 -a(S'setVirtualSizeHints/3' -p106960 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p106961 -tp106962 -a(S'setVirtualSizeHints/4' -p106963 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p106964 -tp106965 -a(S'setWindowStyle/2' -p106966 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p106967 -tp106968 -a(S'setWindowStyleFlag/2' -p106969 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p106970 -tp106971 -a(S'setWindowVariant/2' -p106972 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p106973 -tp106974 -a(S'shouldInheritColours/1' -p106975 -S'shouldInheritColours(${1:This}) $2' -p106976 -tp106977 -a(S'show/1' -p106978 -S'show(${1:This}) $2' -p106979 -tp106980 -a(S'show/2' -p106981 -S'show(${1:This}, ${2:Options}) $3' -p106982 -tp106983 -a(S'thaw/1' -p106984 -S'thaw(${1:This}) $2' -p106985 -tp106986 -a(S'transferDataFromWindow/1' -p106987 -S'transferDataFromWindow(${1:This}) $2' -p106988 -tp106989 -a(S'transferDataToWindow/1' -p106990 -S'transferDataToWindow(${1:This}) $2' -p106991 -tp106992 -a(S'update/1' -p106993 -S'update(${1:This}) $2' -p106994 -tp106995 -a(S'updateWindowUI/1' -p106996 -S'updateWindowUI(${1:This}) $2' -p106997 -tp106998 -a(S'updateWindowUI/2' -p106999 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p107000 -tp107001 -a(S'validate/1' -p107002 -S'validate(${1:This}) $2' -p107003 -tp107004 -a(S'warpPointer/3' -p107005 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p107006 -tp107007 -asS'ssh_channel_sup' -p107008 -(lp107009 -(S'init/1' -p107010 -S'init(${1:Param1}) $2' -p107011 -tp107012 -a(S'start_child/2' -p107013 -S'start_child(${1:Sup}, ${2:ChildSpec}) $3' -p107014 -tp107015 -a(S'start_link/1' -p107016 -S'start_link(${1:Args}) $2' -p107017 -tp107018 -asS'snmpa' -p107019 -(lp107020 -(S'add_agent_caps/2' -p107021 -S'add_agent_caps(${1:Oid}, ${2:Descr}) $3' -p107022 -tp107023 -a(S'backup/1' -p107024 -S'backup(${1:BackupDir}) $2' -p107025 -tp107026 -a(S'backup/2' -p107027 -S'backup(${1:Agent}, ${2:BackupDir}) $3' -p107028 -tp107029 -a(S'change_log_size/1' -p107030 -S'change_log_size(${1:NewSize}) $2' -p107031 -tp107032 -a(S'change_log_type/1' -p107033 -S'change_log_type(${1:NewType}) $2' -p107034 -tp107035 -a(S'change_log_type/2' -p107036 -S'change_log_type(${1:Agent}, ${2:NewType}) $3' -p107037 -tp107038 -a(S'convert_config/1' -p107039 -S'convert_config(${1:Opts}) $2' -p107040 -tp107041 -a(S'current_address/0' -p107042 -S'current_address() $1' -p107043 -tp107044 -a(S'current_community/0' -p107045 -S'current_community() $1' -p107046 -tp107047 -a(S'current_context/0' -p107048 -S'current_context() $1' -p107049 -tp107050 -a(S'current_net_if_data/0' -p107051 -S'current_net_if_data() $1' -p107052 -tp107053 -a(S'current_request_id/0' -p107054 -S'current_request_id() $1' -p107055 -tp107056 -a(S'del_agent_caps/1' -p107057 -S'del_agent_caps(${1:Index}) $2' -p107058 -tp107059 -a(S'disable_mibs_cache/0' -p107060 -S'disable_mibs_cache() $1' -p107061 -tp107062 -a(S'disable_mibs_cache/1' -p107063 -S'disable_mibs_cache(${1:Agent}) $2' -p107064 -tp107065 -a(S'disable_mibs_cache_autogc/0' -p107066 -S'disable_mibs_cache_autogc() $1' -p107067 -tp107068 -a(S'disable_mibs_cache_autogc/1' -p107069 -S'disable_mibs_cache_autogc(${1:Agent}) $2' -p107070 -tp107071 -a(S'discovery/2' -p107072 -S'discovery(${1:TargetName}, ${2:Notification}) $3' -p107073 -tp107074 -a(S'discovery/3' -p107075 -S'discovery(${1:TargetName}, ${2:Notification}, ${3:Varbinds}) $4' -p107076 -tp107077 -a(S'discovery/4' -p107078 -S'discovery() $1' -p107079 -tp107080 -a(S'discovery/5' -p107081 -S'discovery(${1:TargetName}, ${2:Notification}, ${3:ContextName}, ${4:Varbinds}, ${5:DiscoHandler}) $6' -p107082 -tp107083 -a(S'discovery/6' -p107084 -S'discovery() $1' -p107085 -tp107086 -a(S'dump_mibs/0' -p107087 -S'dump_mibs() $1' -p107088 -tp107089 -a(S'dump_mibs/1' -p107090 -S'dump_mibs(${1:File}) $2' -p107091 -tp107092 -a(S'enable_mibs_cache/0' -p107093 -S'enable_mibs_cache() $1' -p107094 -tp107095 -a(S'enable_mibs_cache/1' -p107096 -S'enable_mibs_cache(${1:Agent}) $2' -p107097 -tp107098 -a(S'enable_mibs_cache_autogc/0' -p107099 -S'enable_mibs_cache_autogc() $1' -p107100 -tp107101 -a(S'enable_mibs_cache_autogc/1' -p107102 -S'enable_mibs_cache_autogc(${1:Agent}) $2' -p107103 -tp107104 -a(S'enum_to_int/2' -p107105 -S'enum_to_int(${1:Name}, ${2:Enum}) $3' -p107106 -tp107107 -a(S'enum_to_int/3' -p107108 -S'enum_to_int(${1:Db}, ${2:Name}, ${3:Enum}) $4' -p107109 -tp107110 -a(S'gc_mibs_cache/0' -p107111 -S'gc_mibs_cache() $1' -p107112 -tp107113 -a(S'gc_mibs_cache/1' -p107114 -S'gc_mibs_cache(${1:Agent}) $2' -p107115 -tp107116 -a(S'gc_mibs_cache/2' -p107117 -S'gc_mibs_cache(${1:Agent}, ${2:Age}) $3' -p107118 -tp107119 -a(S'gc_mibs_cache/3' -p107120 -S'gc_mibs_cache(${1:Agent}, ${2:Age}, ${3:GcLimit}) $4' -p107121 -tp107122 -a(S'get/2' -p107123 -S'get(${1:Agent}, ${2:Vars}) $3' -p107124 -tp107125 -a(S'get/3' -p107126 -S'get(${1:Agent}, ${2:Vars}, ${3:Context}) $4' -p107127 -tp107128 -a(S'get_agent_caps/0' -p107129 -S'get_agent_caps() $1' -p107130 -tp107131 -a(S'get_log_type/0' -p107132 -S'get_log_type() $1' -p107133 -tp107134 -a(S'get_log_type/1' -p107135 -S'get_log_type(${1:Agent}) $2' -p107136 -tp107137 -a(S'get_next/2' -p107138 -S'get_next(${1:Agent}, ${2:Vars}) $3' -p107139 -tp107140 -a(S'get_next/3' -p107141 -S'get_next(${1:Agent}, ${2:Vars}, ${3:Context}) $4' -p107142 -tp107143 -a(S'get_request_limit/0' -p107144 -S'get_request_limit() $1' -p107145 -tp107146 -a(S'get_request_limit/1' -p107147 -S'get_request_limit(${1:Agent}) $2' -p107148 -tp107149 -a(S'get_symbolic_store_db/0' -p107150 -S'get_symbolic_store_db() $1' -p107151 -tp107152 -a(S'info/0' -p107153 -S'info() $1' -p107154 -tp107155 -a(S'info/1' -p107156 -S'info(${1:Agent}) $2' -p107157 -tp107158 -a(S'int_to_enum/2' -p107159 -S'int_to_enum(${1:Name}, ${2:Int}) $3' -p107160 -tp107161 -a(S'int_to_enum/3' -p107162 -S'int_to_enum(${1:Db}, ${2:Name}, ${3:Int}) $4' -p107163 -tp107164 -a(S'invalidate_mibs_cache/0' -p107165 -S'invalidate_mibs_cache() $1' -p107166 -tp107167 -a(S'invalidate_mibs_cache/1' -p107168 -S'invalidate_mibs_cache(${1:Agent}) $2' -p107169 -tp107170 -a(S'load_mibs/1' -p107171 -S'load_mibs(${1:Mibs}) $2' -p107172 -tp107173 -a(S'load_mibs/2' -p107174 -S'load_mibs(${1:Agent}, ${2:Mibs}) $3' -p107175 -tp107176 -a(S'localize_key/3' -p107177 -S'localize_key(${1:Alg}, ${2:Key}, ${3:EngineID}) $4' -p107178 -tp107179 -a(S'log_info/0' -p107180 -S'log_info() $1' -p107181 -tp107182 -a(S'log_to_io/1' -p107183 -S'log_to_io(${1:LogDir}) $2' -p107184 -tp107185 -a(S'log_to_io/2' -p107186 -S'log_to_io(${1:LogDir}, ${2:Mibs}) $3' -p107187 -tp107188 -a(S'log_to_io/3' -p107189 -S'log_to_io(${1:LogDir}, ${2:Mibs}, ${3:LogName}) $4' -p107190 -tp107191 -a(S'log_to_io/4' -p107192 -S'log_to_io(${1:LogDir}, ${2:Mibs}, ${3:LogName}, ${4:LogFile}) $5' -p107193 -tp107194 -a(S'log_to_io/5' -p107195 -S'log_to_io(${1:LogDir}, ${2:Mibs}, ${3:LogName}, ${4:LogFile}, ${5:Start}) $6' -p107196 -tp107197 -a(S'log_to_io/6' -p107198 -S'log_to_io(${1:LogDir}, ${2:Mibs}, ${3:LogName}, ${4:LogFile}, ${5:Start}, ${6:Stop}) $7' -p107199 -tp107200 -a(S'log_to_txt/1' -p107201 -S'log_to_txt(${1:LogDir}) $2' -p107202 -tp107203 -a(S'log_to_txt/2' -p107204 -S'log_to_txt(${1:LogDir}, ${2:Mibs}) $3' -p107205 -tp107206 -a(S'log_to_txt/3' -p107207 -S'log_to_txt(${1:LogDir}, ${2:Mibs}, ${3:OutFile}) $4' -p107208 -tp107209 -a(S'log_to_txt/4' -p107210 -S'log_to_txt(${1:LogDir}, ${2:Mibs}, ${3:OutFile}, ${4:LogName}) $5' -p107211 -tp107212 -a(S'log_to_txt/5' -p107213 -S'log_to_txt(${1:LogDir}, ${2:Mibs}, ${3:OutFile}, ${4:LogName}, ${5:LogFile}) $6' -p107214 -tp107215 -a(S'log_to_txt/6' -p107216 -S'log_to_txt(${1:LogDir}, ${2:Mibs}, ${3:OutFile}, ${4:LogName}, ${5:LogFile}, ${6:Start}) $7' -p107217 -tp107218 -a(S'log_to_txt/7' -p107219 -S'log_to_txt(${1:LogDir}, ${2:Mibs}, ${3:OutFile}, ${4:LogName}, ${5:LogFile}, ${6:Start}, ${7:Stop}) $8' -p107220 -tp107221 -a(S'me_of/1' -p107222 -S'me_of(${1:Oid}) $2' -p107223 -tp107224 -a(S'me_of/2' -p107225 -S'me_of(${1:Agent}, ${2:Oid}) $3' -p107226 -tp107227 -a(S'mib_of/1' -p107228 -S'mib_of(${1:Oid}) $2' -p107229 -tp107230 -a(S'mib_of/2' -p107231 -S'mib_of(${1:Agent}, ${2:Oid}) $3' -p107232 -tp107233 -a(S'name_to_oid/1' -p107234 -S'name_to_oid(${1:Name}) $2' -p107235 -tp107236 -a(S'name_to_oid/2' -p107237 -S'name_to_oid(${1:Db}, ${2:Name}) $3' -p107238 -tp107239 -a(S'oid_to_name/1' -p107240 -S'oid_to_name(${1:OID}) $2' -p107241 -tp107242 -a(S'oid_to_name/2' -p107243 -S'oid_to_name(${1:Db}, ${2:OID}) $3' -p107244 -tp107245 -a(S'old_info_format/1' -p107246 -S'old_info_format(${1:Info}) $2' -p107247 -tp107248 -a(S'passwd2localized_key/3' -p107249 -S'passwd2localized_key(${1:Alg}, ${2:Passwd}, ${3:EngineID}) $4' -p107250 -tp107251 -a(S'print_mib_info/0' -p107252 -S'print_mib_info() $1' -p107253 -tp107254 -a(S'print_mib_tables/0' -p107255 -S'print_mib_tables() $1' -p107256 -tp107257 -a(S'print_mib_variables/0' -p107258 -S'print_mib_variables() $1' -p107259 -tp107260 -a(S'register_notification_filter/3' -p107261 -S'register_notification_filter(${1:Id}, ${2:Mod}, ${3:Data}) $4' -p107262 -tp107263 -a(S'register_notification_filter/4' -p107264 -S'register_notification_filter(${1:Id}, ${2:Mod}, ${3:Data}, ${4:Where}) $5' -p107265 -tp107266 -a(S'register_notification_filter/5' -p107267 -S'register_notification_filter(${1:Agent}, ${2:Id}, ${3:Mod}, ${4:Data}, ${5:Where}) $6' -p107268 -tp107269 -a(S'register_subagent/3' -p107270 -S'register_subagent(${1:Agent}, ${2:SubTree}, ${3:SubAgent}) $4' -p107271 -tp107272 -a(S'restart_set_worker/0' -p107273 -S'restart_set_worker() $1' -p107274 -tp107275 -a(S'restart_set_worker/1' -p107276 -S'restart_set_worker(${1:Agent}) $2' -p107277 -tp107278 -a(S'restart_worker/0' -p107279 -S'restart_worker() $1' -p107280 -tp107281 -a(S'restart_worker/1' -p107282 -S'restart_worker(${1:Agent}) $2' -p107283 -tp107284 -a(S'send_notification/3' -p107285 -S'send_notification(${1:Agent}, ${2:Notification}, ${3:Recv}) $4' -p107286 -tp107287 -a(S'send_notification/4' -p107288 -S'send_notification(${1:Agent}, ${2:Notification}, ${3:Recv}, ${4:Varbinds}) $5' -p107289 -tp107290 -a(S'send_notification/5' -p107291 -S'send_notification(${1:Agent}, ${2:Notification}, ${3:Recv}, ${4:NotifyName}, ${5:Varbinds}) $6' -p107292 -tp107293 -a(S'send_notification/6' -p107294 -S'send_notification() $1' -p107295 -tp107296 -a(S'send_notification/7' -p107297 -S'send_notification() $1' -p107298 -tp107299 -a(S'send_notification2/3' -p107300 -S'send_notification2(${1:Agent}, ${2:Notification}, ${3:SendOpts}) $4' -p107301 -tp107302 -a(S'send_trap/3' -p107303 -S'send_trap(${1:Agent}, ${2:Trap}, ${3:Community}) $4' -p107304 -tp107305 -a(S'send_trap/4' -p107306 -S'send_trap(${1:Agent}, ${2:Trap}, ${3:Community}, ${4:Varbinds}) $5' -p107307 -tp107308 -a(S'set_log_type/1' -p107309 -S'set_log_type(${1:NewType}) $2' -p107310 -tp107311 -a(S'set_log_type/2' -p107312 -S'set_log_type(${1:Agent}, ${2:NewType}) $3' -p107313 -tp107314 -a(S'set_request_limit/1' -p107315 -S'set_request_limit(${1:NewLimit}) $2' -p107316 -tp107317 -a(S'set_request_limit/2' -p107318 -S'set_request_limit(${1:Agent}, ${2:NewLimit}) $3' -p107319 -tp107320 -a(S'sys_up_time/0' -p107321 -S'sys_up_time() $1' -p107322 -tp107323 -a(S'system_start_time/0' -p107324 -S'system_start_time() $1' -p107325 -tp107326 -a(S'unload_mibs/1' -p107327 -S'unload_mibs(${1:Mibs}) $2' -p107328 -tp107329 -a(S'unload_mibs/2' -p107330 -S'unload_mibs(${1:Agent}, ${2:Mibs}) $3' -p107331 -tp107332 -a(S'unregister_notification_filter/1' -p107333 -S'unregister_notification_filter(${1:Id}) $2' -p107334 -tp107335 -a(S'unregister_notification_filter/2' -p107336 -S'unregister_notification_filter(${1:Agent}, ${2:Id}) $3' -p107337 -tp107338 -a(S'unregister_subagent/2' -p107339 -S'unregister_subagent(${1:Agent}, ${2:SubOidOrPid}) $3' -p107340 -tp107341 -a(S'update_mibs_cache_age/1' -p107342 -S'update_mibs_cache_age(${1:Age}) $2' -p107343 -tp107344 -a(S'update_mibs_cache_age/2' -p107345 -S'update_mibs_cache_age(${1:Agent}, ${2:Age}) $3' -p107346 -tp107347 -a(S'update_mibs_cache_gclimit/1' -p107348 -S'update_mibs_cache_gclimit(${1:GcLimit}) $2' -p107349 -tp107350 -a(S'update_mibs_cache_gclimit/2' -p107351 -S'update_mibs_cache_gclimit(${1:Agent}, ${2:GcLimit}) $3' -p107352 -tp107353 -a(S'verbosity/2' -p107354 -S'verbosity(${1:Agent}, ${2:Verbosity}) $3' -p107355 -tp107356 -a(S'whereis_mib/1' -p107357 -S'whereis_mib(${1:Mib}) $2' -p107358 -tp107359 -a(S'whereis_mib/2' -p107360 -S'whereis_mib(${1:Agent}, ${2:Mib}) $3' -p107361 -tp107362 -a(S'which_aliasnames/0' -p107363 -S'which_aliasnames() $1' -p107364 -tp107365 -a(S'which_mibs/0' -p107366 -S'which_mibs() $1' -p107367 -tp107368 -a(S'which_mibs/1' -p107369 -S'which_mibs(${1:Agent}) $2' -p107370 -tp107371 -a(S'which_mibs_cache_size/0' -p107372 -S'which_mibs_cache_size() $1' -p107373 -tp107374 -a(S'which_mibs_cache_size/1' -p107375 -S'which_mibs_cache_size(${1:Agent}) $2' -p107376 -tp107377 -a(S'which_notification_filter/0' -p107378 -S'which_notification_filter() $1' -p107379 -tp107380 -a(S'which_notification_filter/1' -p107381 -S'which_notification_filter(${1:Agent}) $2' -p107382 -tp107383 -a(S'which_notifications/0' -p107384 -S'which_notifications() $1' -p107385 -tp107386 -a(S'which_tables/0' -p107387 -S'which_tables() $1' -p107388 -tp107389 -a(S'which_variables/0' -p107390 -S'which_variables() $1' -p107391 -tp107392 -asS'snmpc' -p107393 -(lp107394 -(S'compile/1' -p107395 -S'compile(${1:FileName}) $2' -p107396 -tp107397 -a(S'compile/2' -p107398 -S'compile(${1:FileName}, ${2:Options}) $3' -p107399 -tp107400 -a(S'compile/3' -p107401 -S'compile(${1:Input}, ${2:Param2}, ${3:Options}) $4' -p107402 -tp107403 -a(S'init/3' -p107404 -S'init(${1:From}, ${2:MibFileName}, ${3:Options}) $4' -p107405 -tp107406 -a(S'is_consistent/1' -p107407 -S'is_consistent(${1:Filenames}) $2' -p107408 -tp107409 -a(S'look_at/1' -p107410 -S'look_at(${1:Mib}) $2' -p107411 -tp107412 -a(S'mib_to_hrl/1' -p107413 -S'mib_to_hrl(${1:MibName}) $2' -p107414 -tp107415 -a(S'mib_to_hrl/3' -p107416 -S'mib_to_hrl(${1:MibName}, ${2:HrlFile}, ${3:Opts}) $4' -p107417 -tp107418 -asS'dbg_ieval' -p107419 -(lp107420 -(S'check_exit_msg/3' -p107421 -S'check_exit_msg(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p107422 -tp107423 -a(S'eval/3' -p107424 -S'eval(${1:Mod}, ${2:Func}, ${3:Args}) $4' -p107425 -tp107426 -a(S'eval_expr/3' -p107427 -S'eval_expr(${1:Expr}, ${2:Bs}, ${3:Ieval}) $4' -p107428 -tp107429 -a(S'exception/4' -p107430 -S'exception(${1:Class}, ${2:Reason}, ${3:Bs}, ${4:Ieval}) $5' -p107431 -tp107432 -a(S'exit_info/5' -p107433 -S'exit_info(${1:Int}, ${2:AttPid}, ${3:OrigPid}, ${4:Reason}, ${5:ExitInfo}) $6' -p107434 -tp107435 -asS'snmpa_target_cache' -p107436 -(lp107437 -(S'code_change/3' -p107438 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p107439 -tp107440 -a(S'downgrade_lock/0' -p107441 -S'downgrade_lock() $1' -p107442 -tp107443 -a(S'handle_call/3' -p107444 -S'handle_call(${1:Req}, ${2:Param2}, ${3:State}) $4' -p107445 -tp107446 -a(S'handle_cast/2' -p107447 -S'handle_cast(${1:Msg}, ${2:State}) $3' -p107448 -tp107449 -a(S'handle_info/2' -p107450 -S'handle_info(${1:Info}, ${2:State}) $3' -p107451 -tp107452 -a(S'init/1' -p107453 -S'init(${1:Param1}) $2' -p107454 -tp107455 -a(S'invalidate/0' -p107456 -S'invalidate() $1' -p107457 -tp107458 -a(S'lock/1' -p107459 -S'lock(${1:Type}) $2' -p107460 -tp107461 -a(S'start_link/2' -p107462 -S'start_link(${1:Prio}, ${2:Opts}) $3' -p107463 -tp107464 -a(S'stop/0' -p107465 -S'stop() $1' -p107466 -tp107467 -a(S'targets/1' -p107468 -S'targets(${1:TargetsFun}) $2' -p107469 -tp107470 -a(S'targets/2' -p107471 -S'targets(${1:TargetsFun}, ${2:NotifyName}) $3' -p107472 -tp107473 -a(S'terminate/2' -p107474 -S'terminate(${1:Reason}, ${2:State}) $3' -p107475 -tp107476 -a(S'unlock/0' -p107477 -S'unlock() $1' -p107478 -tp107479 -a(S'upgrade_lock/0' -p107480 -S'upgrade_lock() $1' -p107481 -tp107482 -a(S'verbosity/1' -p107483 -S'verbosity(${1:V}) $2' -p107484 -tp107485 -asS'wxAuiTabArt' -p107486 -(lp107487 -(S'parent_class/1' -p107488 -S'parent_class(${1:Param1}) $2' -p107489 -tp107490 -asS'CosPropertyService_PropertySetFactory_impl' -p107491 -(lp107492 -(S'code_change/3' -p107493 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p107494 -tp107495 -a(S'create_constrained_propertyset/4' -p107496 -S'create_constrained_propertyset(${1:Param1}, ${2:State}, ${3:PropTypes}, ${4:Properties}) $5' -p107497 -tp107498 -a(S'create_initial_propertyset/3' -p107499 -S'create_initial_propertyset(${1:Param1}, ${2:State}, ${3:Properties}) $4' -p107500 -tp107501 -a(S'create_propertyset/2' -p107502 -S'create_propertyset(${1:Param1}, ${2:State}) $3' -p107503 -tp107504 -a(S'init/1' -p107505 -S'init(${1:Param1}) $2' -p107506 -tp107507 -a(S'terminate/2' -p107508 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p107509 -tp107510 -asS'beam_peep' -p107511 -(lp107512 -(S'module/2' -p107513 -S'module(${1:Param1}, ${2:Param2}) $3' -p107514 -tp107515 -asS'sshd_sup' -p107516 -(lp107517 -(S'init/1' -p107518 -S'init(${1:Param1}) $2' -p107519 -tp107520 -a(S'start_child/1' -p107521 -S'start_child(${1:ServerOpts}) $2' -p107522 -tp107523 -a(S'start_link/1' -p107524 -S'start_link(${1:Servers}) $2' -p107525 -tp107526 -a(S'stop_child/1' -p107527 -S'stop_child(${1:Name}) $2' -p107528 -tp107529 -a(S'stop_child/2' -p107530 -S'stop_child(${1:Address}, ${2:Port}) $3' -p107531 -tp107532 -a(S'system_name/1' -p107533 -S'system_name(${1:SysSup}) $2' -p107534 -tp107535 -asS'orber_web' -p107536 -(lp107537 -(S'add_ctx/2' -p107538 -S'add_ctx(${1:Param1}, ${2:Param2}) $3' -p107539 -tp107540 -a(S'configure/2' -p107541 -S'configure(${1:Param1}, ${2:Param2}) $3' -p107542 -tp107543 -a(S'create/2' -p107544 -S'create(${1:Param1}, ${2:Param2}) $3' -p107545 -tp107546 -a(S'delete_ctx/2' -p107547 -S'delete_ctx(${1:Param1}, ${2:Param2}) $3' -p107548 -tp107549 -a(S'delete_obj/2' -p107550 -S'delete_obj(${1:Param1}, ${2:Param2}) $3' -p107551 -tp107552 -a(S'ifr_data/2' -p107553 -S'ifr_data(${1:Param1}, ${2:Param2}) $3' -p107554 -tp107555 -a(S'ifr_select/2' -p107556 -S'ifr_select(${1:Param1}, ${2:Param2}) $3' -p107557 -tp107558 -a(S'info/2' -p107559 -S'info(${1:Param1}, ${2:Param2}) $3' -p107560 -tp107561 -a(S'menu/2' -p107562 -S'menu(${1:Param1}, ${2:Args}) $3' -p107563 -tp107564 -a(S'nameservice/2' -p107565 -S'nameservice(${1:Param1}, ${2:Param2}) $3' -p107566 -tp107567 -asS'color_demo2' -p107568 -(lp107569 -(S'init/0' -p107570 -S'init() $1' -p107571 -tp107572 -a(S'start/0' -p107573 -S'start() $1' -p107574 -tp107575 -asS'httpd_example' -p107576 -(lp107577 -(S'delay/1' -p107578 -S'delay(${1:Time}) $2' -p107579 -tp107580 -a(S'get/2' -p107581 -S'get(${1:Env}, ${2:Input}) $3' -p107582 -tp107583 -a(S'get_bin/2' -p107584 -S'get_bin(${1:Param1}, ${2:Param2}) $3' -p107585 -tp107586 -a(S'newformat/3' -p107587 -S'newformat(${1:SessionID}, ${2:Param2}, ${3:Param3}) $4' -p107588 -tp107589 -a(S'post/2' -p107590 -S'post(${1:Env}, ${2:Input}) $3' -p107591 -tp107592 -a(S'print/1' -p107593 -S'print(${1:String}) $2' -p107594 -tp107595 -a(S'test1/2' -p107596 -S'test1(${1:Env}, ${2:Param2}) $3' -p107597 -tp107598 -a(S'yahoo/2' -p107599 -S'yahoo(${1:Param1}, ${2:Param2}) $3' -p107600 -tp107601 -asS'CosNotifyComm_NotifySubscribe' -p107602 -(lp107603 -(S'code_change/3' -p107604 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p107605 -tp107606 -a(S'handle_call/3' -p107607 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p107608 -tp107609 -a(S'handle_cast/2' -p107610 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p107611 -tp107612 -a(S'handle_info/2' -p107613 -S'handle_info(${1:Param1}, ${2:State}) $3' -p107614 -tp107615 -a(S'init/1' -p107616 -S'init(${1:Env}) $2' -p107617 -tp107618 -a(S'oe_create/0' -p107619 -S'oe_create() $1' -p107620 -tp107621 -a(S'oe_create/1' -p107622 -S'oe_create(${1:Env}) $2' -p107623 -tp107624 -a(S'oe_create/2' -p107625 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p107626 -tp107627 -a(S'oe_create_link/0' -p107628 -S'oe_create_link() $1' -p107629 -tp107630 -a(S'oe_create_link/1' -p107631 -S'oe_create_link(${1:Env}) $2' -p107632 -tp107633 -a(S'oe_create_link/2' -p107634 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p107635 -tp107636 -a(S'oe_get_interface/0' -p107637 -S'oe_get_interface() $1' -p107638 -tp107639 -a(S'oe_is_a/1' -p107640 -S'oe_is_a(${1:Param1}) $2' -p107641 -tp107642 -a(S'oe_tc/1' -p107643 -S'oe_tc(${1:Param1}) $2' -p107644 -tp107645 -a(S'subscription_change/3' -p107646 -S'subscription_change(${1:OE_THIS}, ${2:Added}, ${3:Removed}) $4' -p107647 -tp107648 -a(S'subscription_change/4' -p107649 -S'subscription_change(${1:OE_THIS}, ${2:OE_Options}, ${3:Added}, ${4:Removed}) $5' -p107650 -tp107651 -a(S'terminate/2' -p107652 -S'terminate(${1:Reason}, ${2:State}) $3' -p107653 -tp107654 -a(S'typeID/0' -p107655 -S'typeID() $1' -p107656 -tp107657 -asS'wxGraphicsMatrix' -p107658 -(lp107659 -(S'concat/2' -p107660 -S'concat(${1:This}, ${2:T}) $3' -p107661 -tp107662 -a(S'get/1' -p107663 -S'get(${1:This}) $2' -p107664 -tp107665 -a(S'getRenderer/1' -p107666 -S'getRenderer(${1:This}) $2' -p107667 -tp107668 -a(S'invert/1' -p107669 -S'invert(${1:This}) $2' -p107670 -tp107671 -a(S'isEqual/2' -p107672 -S'isEqual(${1:This}, ${2:T}) $3' -p107673 -tp107674 -a(S'isIdentity/1' -p107675 -S'isIdentity(${1:This}) $2' -p107676 -tp107677 -a(S'isNull/1' -p107678 -S'isNull(${1:This}) $2' -p107679 -tp107680 -a(S'parent_class/1' -p107681 -S'parent_class(${1:Param1}) $2' -p107682 -tp107683 -a(S'rotate/2' -p107684 -S'rotate(${1:This}, ${2:Angle}) $3' -p107685 -tp107686 -a(S'scale/3' -p107687 -S'scale(${1:This}, ${2:XScale}, ${3:YScale}) $4' -p107688 -tp107689 -a(S'set/1' -p107690 -S'set(${1:This}) $2' -p107691 -tp107692 -a(S'set/2' -p107693 -S'set(${1:This}, ${2:Param2}) $3' -p107694 -tp107695 -a(S'transformDistance/1' -p107696 -S'transformDistance(${1:This}) $2' -p107697 -tp107698 -a(S'transformPoint/1' -p107699 -S'transformPoint(${1:This}) $2' -p107700 -tp107701 -a(S'translate/3' -p107702 -S'translate(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p107703 -tp107704 -asS'otp_mib' -p107705 -(lp107706 -(S'appl_table/1' -p107707 -S'appl_table(${1:Op}) $2' -p107708 -tp107709 -a(S'appl_table/3' -p107710 -S'appl_table(${1:Op}, ${2:RowIndex}, ${3:Cols}) $4' -p107711 -tp107712 -a(S'erl_node_table/1' -p107713 -S'erl_node_table(${1:Param1}) $2' -p107714 -tp107715 -a(S'erl_node_table/3' -p107716 -S'erl_node_table(${1:Op}, ${2:RowIndex}, ${3:Cols}) $4' -p107717 -tp107718 -a(S'get_appls/1' -p107719 -S'get_appls(${1:NodeId}) $2' -p107720 -tp107721 -a(S'get_erl_node/1' -p107722 -S'get_erl_node(${1:Id}) $2' -p107723 -tp107724 -a(S'load/1' -p107725 -S'load(${1:Agent}) $2' -p107726 -tp107727 -a(S'unload/1' -p107728 -S'unload(${1:Agent}) $2' -p107729 -tp107730 -a(S'update_appl_table/0' -p107731 -S'update_appl_table() $1' -p107732 -tp107733 -a(S'update_erl_node_table/0' -p107734 -S'update_erl_node_table() $1' -p107735 -tp107736 -asS'CosEventComm_PullSupplier' -p107737 -(lp107738 -(S'code_change/3' -p107739 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p107740 -tp107741 -a(S'disconnect_pull_supplier/1' -p107742 -S'disconnect_pull_supplier(${1:OE_THIS}) $2' -p107743 -tp107744 -a(S'disconnect_pull_supplier/2' -p107745 -S'disconnect_pull_supplier(${1:OE_THIS}, ${2:OE_Options}) $3' -p107746 -tp107747 -a(S'handle_call/3' -p107748 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p107749 -tp107750 -a(S'handle_cast/2' -p107751 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p107752 -tp107753 -a(S'handle_info/2' -p107754 -S'handle_info(${1:Param1}, ${2:State}) $3' -p107755 -tp107756 -a(S'init/1' -p107757 -S'init(${1:Env}) $2' -p107758 -tp107759 -a(S'oe_create/0' -p107760 -S'oe_create() $1' -p107761 -tp107762 -a(S'oe_create/1' -p107763 -S'oe_create(${1:Env}) $2' -p107764 -tp107765 -a(S'oe_create/2' -p107766 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p107767 -tp107768 -a(S'oe_create_link/0' -p107769 -S'oe_create_link() $1' -p107770 -tp107771 -a(S'oe_create_link/1' -p107772 -S'oe_create_link(${1:Env}) $2' -p107773 -tp107774 -a(S'oe_create_link/2' -p107775 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p107776 -tp107777 -a(S'oe_get_interface/0' -p107778 -S'oe_get_interface() $1' -p107779 -tp107780 -a(S'oe_is_a/1' -p107781 -S'oe_is_a(${1:Param1}) $2' -p107782 -tp107783 -a(S'oe_tc/1' -p107784 -S'oe_tc(${1:Param1}) $2' -p107785 -tp107786 -a(S'pull/1' -p107787 -S'pull(${1:OE_THIS}) $2' -p107788 -tp107789 -a(S'pull/2' -p107790 -S'pull(${1:OE_THIS}, ${2:OE_Options}) $3' -p107791 -tp107792 -a(S'terminate/2' -p107793 -S'terminate(${1:Reason}, ${2:State}) $3' -p107794 -tp107795 -a(S'try_pull/1' -p107796 -S'try_pull(${1:OE_THIS}) $2' -p107797 -tp107798 -a(S'try_pull/2' -p107799 -S'try_pull(${1:OE_THIS}, ${2:OE_Options}) $3' -p107800 -tp107801 -a(S'typeID/0' -p107802 -S'typeID() $1' -p107803 -tp107804 -asS'inet_gethost_native' -p107805 -(lp107806 -(S'control/1' -p107807 -S'control(${1:Param1}) $2' -p107808 -tp107809 -a(S'gethostbyaddr/1' -p107810 -S'gethostbyaddr(${1:Addr}) $2' -p107811 -tp107812 -a(S'gethostbyname/1' -p107813 -S'gethostbyname(${1:Name}) $2' -p107814 -tp107815 -a(S'gethostbyname/2' -p107816 -S'gethostbyname(${1:Name}, ${2:Type}) $3' -p107817 -tp107818 -a(S'init/1' -p107819 -S'init(${1:Param1}) $2' -p107820 -tp107821 -a(S'main_loop/1' -p107822 -S'main_loop(${1:State}) $2' -p107823 -tp107824 -a(S'run_once/0' -p107825 -S'run_once() $1' -p107826 -tp107827 -a(S'server_init/2' -p107828 -S'server_init(${1:Starter}, ${2:Ref}) $3' -p107829 -tp107830 -a(S'start_link/0' -p107831 -S'start_link() $1' -p107832 -tp107833 -a(S'start_raw/0' -p107834 -S'start_raw() $1' -p107835 -tp107836 -a(S'system_code_change/4' -p107837 -S'system_code_change(${1:State}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p107838 -tp107839 -a(S'system_continue/3' -p107840 -S'system_continue(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p107841 -tp107842 -a(S'system_terminate/4' -p107843 -S'system_terminate(${1:Reason}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p107844 -tp107845 -a(S'terminate/2' -p107846 -S'terminate(${1:Param1}, ${2:Pid}) $3' -p107847 -tp107848 -asS'CosTransactions_NotSubtransaction' -p107849 -(lp107850 -(S'id/0' -p107851 -S'id() $1' -p107852 -tp107853 -a(S'name/0' -p107854 -S'name() $1' -p107855 -tp107856 -a(S'tc/0' -p107857 -S'tc() $1' -p107858 -tp107859 -asS'inet' -p107860 -(lp107861 -(S'close/1' -p107862 -S'close(${1:Socket}) $2' -p107863 -tp107864 -a(S'connect_options/2' -p107865 -S'connect_options(${1:Opts}, ${2:Family}) $3' -p107866 -tp107867 -a(S'fdopen/6' -p107868 -S'fdopen(${1:Fd}, ${2:Opts}, ${3:Protocol}, ${4:Family}, ${5:Type}, ${6:Module}) $7' -p107869 -tp107870 -a(S'format_error/1' -p107871 -S'format_error(${1:Reason}) $2' -p107872 -tp107873 -a(S'get_rc/0' -p107874 -S'get_rc() $1' -p107875 -tp107876 -a(S'getaddr/2' -p107877 -S'getaddr(${1:Host}, ${2:Family}) $3' -p107878 -tp107879 -a(S'getaddr/3' -p107880 -S'getaddr(${1:Address}, ${2:Family}, ${3:Timeout}) $4' -p107881 -tp107882 -a(S'getaddr_tm/3' -p107883 -S'getaddr_tm(${1:Address}, ${2:Family}, ${3:Timer}) $4' -p107884 -tp107885 -a(S'getaddrs/2' -p107886 -S'getaddrs(${1:Host}, ${2:Family}) $3' -p107887 -tp107888 -a(S'getaddrs/3' -p107889 -S'getaddrs(${1:Address}, ${2:Family}, ${3:Timeout}) $4' -p107890 -tp107891 -a(S'getaddrs_tm/3' -p107892 -S'getaddrs_tm(${1:IP}, ${2:Fam}, ${3:Timer}) $4' -p107893 -tp107894 -a(S'getfd/1' -p107895 -S'getfd(${1:Socket}) $2' -p107896 -tp107897 -a(S'gethostbyaddr/1' -p107898 -S'gethostbyaddr(${1:Address}) $2' -p107899 -tp107900 -a(S'gethostbyaddr/2' -p107901 -S'gethostbyaddr(${1:Address}, ${2:Timeout}) $3' -p107902 -tp107903 -a(S'gethostbyaddr_tm/2' -p107904 -S'gethostbyaddr_tm(${1:Address}, ${2:Timer}) $3' -p107905 -tp107906 -a(S'gethostbyname/1' -p107907 -S'gethostbyname(${1:Hostname}) $2' -p107908 -tp107909 -a(S'gethostbyname/2' -p107910 -S'gethostbyname(${1:Hostname}, ${2:Family}) $3' -p107911 -tp107912 -a(S'gethostbyname/3' -p107913 -S'gethostbyname(${1:Name}, ${2:Family}, ${3:Timeout}) $4' -p107914 -tp107915 -a(S'gethostbyname_self/2' -p107916 -S'gethostbyname_self(${1:Name}, ${2:Type}) $3' -p107917 -tp107918 -a(S'gethostbyname_string/2' -p107919 -S'gethostbyname_string(${1:Name}, ${2:Type}) $3' -p107920 -tp107921 -a(S'gethostbyname_tm/3' -p107922 -S'gethostbyname_tm(${1:Name}, ${2:Family}, ${3:Timer}) $4' -p107923 -tp107924 -a(S'gethostname/0' -p107925 -S'gethostname() $1' -p107926 -tp107927 -a(S'gethostname/1' -p107928 -S'gethostname(${1:Socket}) $2' -p107929 -tp107930 -a(S'getif/0' -p107931 -S'getif() $1' -p107932 -tp107933 -a(S'getif/1' -p107934 -S'getif(${1:Socket}) $2' -p107935 -tp107936 -a(S'getifaddrs/0' -p107937 -S'getifaddrs() $1' -p107938 -tp107939 -a(S'getifaddrs/1' -p107940 -S'getifaddrs(${1:Socket}) $2' -p107941 -tp107942 -a(S'getiflist/0' -p107943 -S'getiflist() $1' -p107944 -tp107945 -a(S'getiflist/1' -p107946 -S'getiflist(${1:Socket}) $2' -p107947 -tp107948 -a(S'getll/1' -p107949 -S'getll(${1:Socket}) $2' -p107950 -tp107951 -a(S'getopts/2' -p107952 -S'getopts(${1:Socket}, ${2:Options}) $3' -p107953 -tp107954 -a(S'getservbyname/2' -p107955 -S'getservbyname(${1:Name}, ${2:Protocol}) $3' -p107956 -tp107957 -a(S'getservbyport/2' -p107958 -S'getservbyport(${1:Port}, ${2:Proto}) $3' -p107959 -tp107960 -a(S'getstat/1' -p107961 -S'getstat(${1:Socket}) $2' -p107962 -tp107963 -a(S'getstat/2' -p107964 -S'getstat(${1:Socket}, ${2:Options}) $3' -p107965 -tp107966 -a(S'i/0' -p107967 -S'i() $1' -p107968 -tp107969 -a(S'i/1' -p107970 -S'i(${1:Proto}) $2' -p107971 -tp107972 -a(S'i/2' -p107973 -S'i(${1:Param1}, ${2:Fs}) $3' -p107974 -tp107975 -a(S'ifget/2' -p107976 -S'ifget(${1:Name}, ${2:Opts}) $3' -p107977 -tp107978 -a(S'ifget/3' -p107979 -S'ifget(${1:Socket}, ${2:Name}, ${3:Opts}) $4' -p107980 -tp107981 -a(S'ifset/2' -p107982 -S'ifset(${1:Name}, ${2:Opts}) $3' -p107983 -tp107984 -a(S'ifset/3' -p107985 -S'ifset(${1:Socket}, ${2:Name}, ${3:Opts}) $4' -p107986 -tp107987 -a(S'ip/1' -p107988 -S'ip(${1:Name}) $2' -p107989 -tp107990 -a(S'listen_options/2' -p107991 -S'listen_options(${1:Opts}, ${2:Family}) $3' -p107992 -tp107993 -a(S'lock_socket/2' -p107994 -S'lock_socket(${1:S}, ${2:Val}) $3' -p107995 -tp107996 -a(S'open/8' -p107997 -S'open(${1:Fd}, ${2:Param2}, ${3:Param3}, ${4:Opts}, ${5:Protocol}, ${6:Family}, ${7:Type}, ${8:Module}) $9' -p107998 -tp107999 -a(S'options/0' -p108000 -S'options() $1' -p108001 -tp108002 -a(S'peername/1' -p108003 -S'peername(${1:Socket}) $2' -p108004 -tp108005 -a(S'popf/1' -p108006 -S'popf(${1:Param1}) $2' -p108007 -tp108008 -a(S'port/1' -p108009 -S'port(${1:Socket}) $2' -p108010 -tp108011 -a(S'pushf/3' -p108012 -S'pushf(${1:Param1}, ${2:Fun}, ${3:Param3}) $4' -p108013 -tp108014 -a(S'sctp_options/2' -p108015 -S'sctp_options(${1:Opts}, ${2:Mod}) $3' -p108016 -tp108017 -a(S'send/2' -p108018 -S'send(${1:Socket}, ${2:Packet}) $3' -p108019 -tp108020 -a(S'setopts/2' -p108021 -S'setopts(${1:Socket}, ${2:Options}) $3' -p108022 -tp108023 -a(S'setpeername/2' -p108024 -S'setpeername(${1:Socket}, ${2:Param2}) $3' -p108025 -tp108026 -a(S'setsockname/2' -p108027 -S'setsockname(${1:Socket}, ${2:Param2}) $3' -p108028 -tp108029 -a(S'sockname/1' -p108030 -S'sockname(${1:Socket}) $2' -p108031 -tp108032 -a(S'start_timer/1' -p108033 -S'start_timer(${1:Timeout}) $2' -p108034 -tp108035 -a(S'stats/0' -p108036 -S'stats() $1' -p108037 -tp108038 -a(S'stop_timer/1' -p108039 -S'stop_timer(${1:Timer}) $2' -p108040 -tp108041 -a(S'tcp_close/1' -p108042 -S'tcp_close(${1:S}) $2' -p108043 -tp108044 -a(S'tcp_controlling_process/2' -p108045 -S'tcp_controlling_process(${1:S}, ${2:NewOwner}) $3' -p108046 -tp108047 -a(S'timeout/1' -p108048 -S'timeout(${1:Timer}) $2' -p108049 -tp108050 -a(S'timeout/2' -p108051 -S'timeout(${1:Time}, ${2:Timer}) $3' -p108052 -tp108053 -a(S'translate_ip/2' -p108054 -S'translate_ip(${1:IP}, ${2:Param2}) $3' -p108055 -tp108056 -a(S'udp_close/1' -p108057 -S'udp_close(${1:S}) $2' -p108058 -tp108059 -a(S'udp_controlling_process/2' -p108060 -S'udp_controlling_process(${1:S}, ${2:NewOwner}) $3' -p108061 -tp108062 -a(S'udp_options/2' -p108063 -S'udp_options(${1:Opts}, ${2:Family}) $3' -p108064 -tp108065 -asS'snmpm_user' -p108066 -(lp108067 -(S'behaviour_info/1' -p108068 -S'behaviour_info(${1:Param1}) $2' -p108069 -tp108070 -asS'gstk_oval' -p108071 -(lp108072 -(S'config/3' -p108073 -S'config(${1:DB}, ${2:Gstkid}, ${3:Opts}) $4' -p108074 -tp108075 -a(S'create/3' -p108076 -S'create(${1:DB}, ${2:Gstkid}, ${3:Opts}) $4' -p108077 -tp108078 -a(S'delete/2' -p108079 -S'delete(${1:DB}, ${2:Gstkid}) $3' -p108080 -tp108081 -a(S'destroy/3' -p108082 -S'destroy(${1:Param1}, ${2:Canvas}, ${3:Item}) $4' -p108083 -tp108084 -a(S'event/5' -p108085 -S'event(${1:DB}, ${2:Gstkid}, ${3:Etype}, ${4:Edata}, ${5:Args}) $6' -p108086 -tp108087 -a(S'option/5' -p108088 -S'option(${1:Option}, ${2:Gstkid}, ${3:Canvas}, ${4:Param4}, ${5:AItem}) $6' -p108089 -tp108090 -a(S'read/3' -p108091 -S'read(${1:DB}, ${2:Gstkid}, ${3:Opt}) $4' -p108092 -tp108093 -a(S'read_option/5' -p108094 -S'read_option(${1:Option}, ${2:Gstkid}, ${3:Canvas}, ${4:Param4}, ${5:AItem}) $6' -p108095 -tp108096 -asS'supervisor' -p108097 -(lp108098 -(S'check_childspecs/1' -p108099 -S'check_childspecs(${1:ChildSpecs}) $2' -p108100 -tp108101 -a(S'code_change/3' -p108102 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p108103 -tp108104 -a(S'count_children/1' -p108105 -S'count_children(${1:SupRef}) $2' -p108106 -tp108107 -a(S'delete_child/2' -p108108 -S'delete_child(${1:SupRef}, ${2:Id}) $3' -p108109 -tp108110 -a(S'handle_call/3' -p108111 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p108112 -tp108113 -a(S'handle_cast/2' -p108114 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p108115 -tp108116 -a(S'handle_info/2' -p108117 -S'handle_info(${1:Msg}, ${2:State}) $3' -p108118 -tp108119 -a(S'init/1' -p108120 -S'init(${1:Param1}) $2' -p108121 -tp108122 -a(S'restart_child/2' -p108123 -S'restart_child(${1:SupRef}, ${2:Id}) $3' -p108124 -tp108125 -a(S'start_child/2' -p108126 -S'start_child(${1:SupRef}, ${2:ChildSpec}) $3' -p108127 -tp108128 -a(S'start_link/2' -p108129 -S'start_link(${1:Module}, ${2:Args}) $3' -p108130 -tp108131 -a(S'start_link/3' -p108132 -S'start_link(${1:SupName}, ${2:Module}, ${3:Args}) $4' -p108133 -tp108134 -a(S'terminate/2' -p108135 -S'terminate(${1:Child}, ${2:State}) $3' -p108136 -tp108137 -a(S'terminate_child/2' -p108138 -S'terminate_child(${1:SupRef}, ${2:Id}) $3' -p108139 -tp108140 -a(S'try_again_restart/2' -p108141 -S'try_again_restart(${1:SupRef}, ${2:Child}) $3' -p108142 -tp108143 -a(S'which_children/1' -p108144 -S'which_children(${1:SupRef}) $2' -p108145 -tp108146 -asS'docgen_xmerl_xml_cb' -p108147 -(lp108148 -(S"'#element#'/5" -p108149 -S"'#element#'(${1:Tag}, ${2:Data}, ${3:Attrs}, ${4:Param4}, ${5:Param5}) $6" -p108150 -tp108151 -a(S"'#root#'/4" -p108152 -S"'#root#'(${1:Data}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5" -p108153 -tp108154 -a(S"'#text#'/1" -p108155 -S"'#text#'(${1:Text}) $2" -p108156 -tp108157 -a(S"'#xml-inheritance#'/0" -p108158 -S"'#xml-inheritance#'() $1" -p108159 -tp108160 -asS'gstk_window' -p108161 -(lp108162 -(S'config/3' -p108163 -S'config(${1:DB}, ${2:Gstkid}, ${3:Opts}) $4' -p108164 -tp108165 -a(S'create/3' -p108166 -S'create(${1:DB}, ${2:Gstkid}, ${3:Opts}) $4' -p108167 -tp108168 -a(S'delete/2' -p108169 -S'delete(${1:DB}, ${2:Gstkid}) $3' -p108170 -tp108171 -a(S'destroy_win/1' -p108172 -S'destroy_win(${1:ID}) $2' -p108173 -tp108174 -a(S'event/5' -p108175 -S'event(${1:DB}, ${2:Gstkid}, ${3:Etype}, ${4:Edata}, ${5:Args}) $6' -p108176 -tp108177 -a(S'mk_create_opts_for_child/4' -p108178 -S'mk_create_opts_for_child(${1:DB}, ${2:Cgstkid}, ${3:Pgstkid}, ${4:Opts}) $5' -p108179 -tp108180 -a(S'option/5' -p108181 -S'option(${1:Option}, ${2:Gstkid}, ${3:TkW}, ${4:DB}, ${5:Param5}) $6' -p108182 -tp108183 -a(S'read/3' -p108184 -S'read(${1:DB}, ${2:Gstkid}, ${3:Opt}) $4' -p108185 -tp108186 -a(S'read_option/5' -p108187 -S'read_option(${1:Option}, ${2:Gstkid}, ${3:TkW}, ${4:DB}, ${5:Param5}) $6' -p108188 -tp108189 -asS'orber_ifr_orb' -p108190 -(lp108191 -(S'create_alias_tc/3' -p108192 -S'create_alias_tc(${1:Id}, ${2:Name}, ${3:Original_type}) $4' -p108193 -tp108194 -a(S'create_array_tc/2' -p108195 -S'create_array_tc(${1:Length}, ${2:Element_type}) $3' -p108196 -tp108197 -a(S'create_enum_tc/3' -p108198 -S'create_enum_tc(${1:Id}, ${2:Name}, ${3:Members}) $4' -p108199 -tp108200 -a(S'create_exception_tc/3' -p108201 -S'create_exception_tc(${1:Id}, ${2:Name}, ${3:Members}) $4' -p108202 -tp108203 -a(S'create_interface_tc/2' -p108204 -S'create_interface_tc(${1:Id}, ${2:Name}) $3' -p108205 -tp108206 -a(S'create_recursive_sequence_tc/2' -p108207 -S'create_recursive_sequence_tc(${1:Bound}, ${2:Offset}) $3' -p108208 -tp108209 -a(S'create_sequence_tc/2' -p108210 -S'create_sequence_tc(${1:Bound}, ${2:Element_type}) $3' -p108211 -tp108212 -a(S'create_string_tc/1' -p108213 -S'create_string_tc(${1:Bound}) $2' -p108214 -tp108215 -a(S'create_struct_tc/3' -p108216 -S'create_struct_tc(${1:Id}, ${2:Name}, ${3:Members}) $4' -p108217 -tp108218 -a(S'create_union_tc/4' -p108219 -S'create_union_tc(${1:Id}, ${2:Name}, ${3:Discriminator_type}, ${4:Members}) $5' -p108220 -tp108221 -a(S'create_wstring_tc/1' -p108222 -S'create_wstring_tc(${1:Bound}) $2' -p108223 -tp108224 -asS'CosPropertyService_PropertyExceptions' -p108225 -(lp108226 -(S'id/0' -p108227 -S'id() $1' -p108228 -tp108229 -a(S'name/0' -p108230 -S'name() $1' -p108231 -tp108232 -a(S'tc/0' -p108233 -S'tc() $1' -p108234 -tp108235 -asS'CosPropertyService_FixedProperty' -p108236 -(lp108237 -(S'id/0' -p108238 -S'id() $1' -p108239 -tp108240 -a(S'name/0' -p108241 -S'name() $1' -p108242 -tp108243 -a(S'tc/0' -p108244 -S'tc() $1' -p108245 -tp108246 -asS'wxScrollBar' -p108247 -(lp108248 -(S'cacheBestSize/2' -p108249 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p108250 -tp108251 -a(S'captureMouse/1' -p108252 -S'captureMouse(${1:This}) $2' -p108253 -tp108254 -a(S'center/1' -p108255 -S'center(${1:This}) $2' -p108256 -tp108257 -a(S'center/2' -p108258 -S'center(${1:This}, ${2:Options}) $3' -p108259 -tp108260 -a(S'centerOnParent/1' -p108261 -S'centerOnParent(${1:This}) $2' -p108262 -tp108263 -a(S'centerOnParent/2' -p108264 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p108265 -tp108266 -a(S'centre/1' -p108267 -S'centre(${1:This}) $2' -p108268 -tp108269 -a(S'centre/2' -p108270 -S'centre(${1:This}, ${2:Options}) $3' -p108271 -tp108272 -a(S'centreOnParent/1' -p108273 -S'centreOnParent(${1:This}) $2' -p108274 -tp108275 -a(S'centreOnParent/2' -p108276 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p108277 -tp108278 -a(S'clearBackground/1' -p108279 -S'clearBackground(${1:This}) $2' -p108280 -tp108281 -a(S'clientToScreen/2' -p108282 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p108283 -tp108284 -a(S'clientToScreen/3' -p108285 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p108286 -tp108287 -a(S'close/1' -p108288 -S'close(${1:This}) $2' -p108289 -tp108290 -a(S'close/2' -p108291 -S'close(${1:This}, ${2:Options}) $3' -p108292 -tp108293 -a(S'connect/2' -p108294 -S'connect(${1:This}, ${2:EventType}) $3' -p108295 -tp108296 -a(S'connect/3' -p108297 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p108298 -tp108299 -a(S'convertDialogToPixels/2' -p108300 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p108301 -tp108302 -a(S'convertPixelsToDialog/2' -p108303 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p108304 -tp108305 -a(S'create/3' -p108306 -S'create(${1:This}, ${2:Parent}, ${3:Id}) $4' -p108307 -tp108308 -a(S'create/4' -p108309 -S'create(${1:This}, ${2:Parent}, ${3:Id}, ${4:Param4}) $5' -p108310 -tp108311 -a(S'destroy/1' -p108312 -S'destroy(${1:This}) $2' -p108313 -tp108314 -a(S'destroyChildren/1' -p108315 -S'destroyChildren(${1:This}) $2' -p108316 -tp108317 -a(S'disable/1' -p108318 -S'disable(${1:This}) $2' -p108319 -tp108320 -a(S'disconnect/1' -p108321 -S'disconnect(${1:This}) $2' -p108322 -tp108323 -a(S'disconnect/2' -p108324 -S'disconnect(${1:This}, ${2:EventType}) $3' -p108325 -tp108326 -a(S'disconnect/3' -p108327 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p108328 -tp108329 -a(S'enable/1' -p108330 -S'enable(${1:This}) $2' -p108331 -tp108332 -a(S'enable/2' -p108333 -S'enable(${1:This}, ${2:Options}) $3' -p108334 -tp108335 -a(S'findWindow/2' -p108336 -S'findWindow(${1:This}, ${2:Winid}) $3' -p108337 -tp108338 -a(S'fit/1' -p108339 -S'fit(${1:This}) $2' -p108340 -tp108341 -a(S'fitInside/1' -p108342 -S'fitInside(${1:This}) $2' -p108343 -tp108344 -a(S'freeze/1' -p108345 -S'freeze(${1:This}) $2' -p108346 -tp108347 -a(S'getAcceleratorTable/1' -p108348 -S'getAcceleratorTable(${1:This}) $2' -p108349 -tp108350 -a(S'getBackgroundColour/1' -p108351 -S'getBackgroundColour(${1:This}) $2' -p108352 -tp108353 -a(S'getBackgroundStyle/1' -p108354 -S'getBackgroundStyle(${1:This}) $2' -p108355 -tp108356 -a(S'getBestSize/1' -p108357 -S'getBestSize(${1:This}) $2' -p108358 -tp108359 -a(S'getCaret/1' -p108360 -S'getCaret(${1:This}) $2' -p108361 -tp108362 -a(S'getCharHeight/1' -p108363 -S'getCharHeight(${1:This}) $2' -p108364 -tp108365 -a(S'getCharWidth/1' -p108366 -S'getCharWidth(${1:This}) $2' -p108367 -tp108368 -a(S'getChildren/1' -p108369 -S'getChildren(${1:This}) $2' -p108370 -tp108371 -a(S'getClientSize/1' -p108372 -S'getClientSize(${1:This}) $2' -p108373 -tp108374 -a(S'getContainingSizer/1' -p108375 -S'getContainingSizer(${1:This}) $2' -p108376 -tp108377 -a(S'getCursor/1' -p108378 -S'getCursor(${1:This}) $2' -p108379 -tp108380 -a(S'getDropTarget/1' -p108381 -S'getDropTarget(${1:This}) $2' -p108382 -tp108383 -a(S'getEventHandler/1' -p108384 -S'getEventHandler(${1:This}) $2' -p108385 -tp108386 -a(S'getExtraStyle/1' -p108387 -S'getExtraStyle(${1:This}) $2' -p108388 -tp108389 -a(S'getFont/1' -p108390 -S'getFont(${1:This}) $2' -p108391 -tp108392 -a(S'getForegroundColour/1' -p108393 -S'getForegroundColour(${1:This}) $2' -p108394 -tp108395 -a(S'getGrandParent/1' -p108396 -S'getGrandParent(${1:This}) $2' -p108397 -tp108398 -a(S'getHandle/1' -p108399 -S'getHandle(${1:This}) $2' -p108400 -tp108401 -a(S'getHelpText/1' -p108402 -S'getHelpText(${1:This}) $2' -p108403 -tp108404 -a(S'getId/1' -p108405 -S'getId(${1:This}) $2' -p108406 -tp108407 -a(S'getLabel/1' -p108408 -S'getLabel(${1:This}) $2' -p108409 -tp108410 -a(S'getMaxSize/1' -p108411 -S'getMaxSize(${1:This}) $2' -p108412 -tp108413 -a(S'getMinSize/1' -p108414 -S'getMinSize(${1:This}) $2' -p108415 -tp108416 -a(S'getName/1' -p108417 -S'getName(${1:This}) $2' -p108418 -tp108419 -a(S'getPageSize/1' -p108420 -S'getPageSize(${1:This}) $2' -p108421 -tp108422 -a(S'getParent/1' -p108423 -S'getParent(${1:This}) $2' -p108424 -tp108425 -a(S'getPosition/1' -p108426 -S'getPosition(${1:This}) $2' -p108427 -tp108428 -a(S'getRange/1' -p108429 -S'getRange(${1:This}) $2' -p108430 -tp108431 -a(S'getRect/1' -p108432 -S'getRect(${1:This}) $2' -p108433 -tp108434 -a(S'getScreenPosition/1' -p108435 -S'getScreenPosition(${1:This}) $2' -p108436 -tp108437 -a(S'getScreenRect/1' -p108438 -S'getScreenRect(${1:This}) $2' -p108439 -tp108440 -a(S'getScrollPos/2' -p108441 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p108442 -tp108443 -a(S'getScrollRange/2' -p108444 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p108445 -tp108446 -a(S'getScrollThumb/2' -p108447 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p108448 -tp108449 -a(S'getSize/1' -p108450 -S'getSize(${1:This}) $2' -p108451 -tp108452 -a(S'getSizer/1' -p108453 -S'getSizer(${1:This}) $2' -p108454 -tp108455 -a(S'getTextExtent/2' -p108456 -S'getTextExtent(${1:This}, ${2:String}) $3' -p108457 -tp108458 -a(S'getTextExtent/3' -p108459 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p108460 -tp108461 -a(S'getThumbPosition/1' -p108462 -S'getThumbPosition(${1:This}) $2' -p108463 -tp108464 -a(S'getThumbSize/1' -p108465 -S'getThumbSize(${1:This}) $2' -p108466 -tp108467 -a(S'getToolTip/1' -p108468 -S'getToolTip(${1:This}) $2' -p108469 -tp108470 -a(S'getUpdateRegion/1' -p108471 -S'getUpdateRegion(${1:This}) $2' -p108472 -tp108473 -a(S'getVirtualSize/1' -p108474 -S'getVirtualSize(${1:This}) $2' -p108475 -tp108476 -a(S'getWindowStyleFlag/1' -p108477 -S'getWindowStyleFlag(${1:This}) $2' -p108478 -tp108479 -a(S'getWindowVariant/1' -p108480 -S'getWindowVariant(${1:This}) $2' -p108481 -tp108482 -a(S'hasCapture/1' -p108483 -S'hasCapture(${1:This}) $2' -p108484 -tp108485 -a(S'hasScrollbar/2' -p108486 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p108487 -tp108488 -a(S'hasTransparentBackground/1' -p108489 -S'hasTransparentBackground(${1:This}) $2' -p108490 -tp108491 -a(S'hide/1' -p108492 -S'hide(${1:This}) $2' -p108493 -tp108494 -a(S'inheritAttributes/1' -p108495 -S'inheritAttributes(${1:This}) $2' -p108496 -tp108497 -a(S'initDialog/1' -p108498 -S'initDialog(${1:This}) $2' -p108499 -tp108500 -a(S'invalidateBestSize/1' -p108501 -S'invalidateBestSize(${1:This}) $2' -p108502 -tp108503 -a(S'isEnabled/1' -p108504 -S'isEnabled(${1:This}) $2' -p108505 -tp108506 -a(S'isExposed/2' -p108507 -S'isExposed(${1:This}, ${2:Pt}) $3' -p108508 -tp108509 -a(S'isExposed/3' -p108510 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p108511 -tp108512 -a(S'isExposed/5' -p108513 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p108514 -tp108515 -a(S'isRetained/1' -p108516 -S'isRetained(${1:This}) $2' -p108517 -tp108518 -a(S'isShown/1' -p108519 -S'isShown(${1:This}) $2' -p108520 -tp108521 -a(S'isTopLevel/1' -p108522 -S'isTopLevel(${1:This}) $2' -p108523 -tp108524 -a(S'layout/1' -p108525 -S'layout(${1:This}) $2' -p108526 -tp108527 -a(S'lineDown/1' -p108528 -S'lineDown(${1:This}) $2' -p108529 -tp108530 -a(S'lineUp/1' -p108531 -S'lineUp(${1:This}) $2' -p108532 -tp108533 -a(S'lower/1' -p108534 -S'lower(${1:This}) $2' -p108535 -tp108536 -a(S'makeModal/1' -p108537 -S'makeModal(${1:This}) $2' -p108538 -tp108539 -a(S'makeModal/2' -p108540 -S'makeModal(${1:This}, ${2:Options}) $3' -p108541 -tp108542 -a(S'move/2' -p108543 -S'move(${1:This}, ${2:Pt}) $3' -p108544 -tp108545 -a(S'move/3' -p108546 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p108547 -tp108548 -a(S'move/4' -p108549 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p108550 -tp108551 -a(S'moveAfterInTabOrder/2' -p108552 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p108553 -tp108554 -a(S'moveBeforeInTabOrder/2' -p108555 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p108556 -tp108557 -a(S'navigate/1' -p108558 -S'navigate(${1:This}) $2' -p108559 -tp108560 -a(S'navigate/2' -p108561 -S'navigate(${1:This}, ${2:Options}) $3' -p108562 -tp108563 -a(S'new/0' -p108564 -S'new() $1' -p108565 -tp108566 -a(S'new/2' -p108567 -S'new(${1:Parent}, ${2:Id}) $3' -p108568 -tp108569 -a(S'new/3' -p108570 -S'new(${1:Parent}, ${2:Id}, ${3:Param3}) $4' -p108571 -tp108572 -a(S'pageDown/1' -p108573 -S'pageDown(${1:This}) $2' -p108574 -tp108575 -a(S'pageUp/1' -p108576 -S'pageUp(${1:This}) $2' -p108577 -tp108578 -a(S'parent_class/1' -p108579 -S'parent_class(${1:Param1}) $2' -p108580 -tp108581 -a(S'popEventHandler/1' -p108582 -S'popEventHandler(${1:This}) $2' -p108583 -tp108584 -a(S'popEventHandler/2' -p108585 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p108586 -tp108587 -a(S'popupMenu/2' -p108588 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p108589 -tp108590 -a(S'popupMenu/3' -p108591 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p108592 -tp108593 -a(S'popupMenu/4' -p108594 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p108595 -tp108596 -a(S'raise/1' -p108597 -S'raise(${1:This}) $2' -p108598 -tp108599 -a(S'refresh/1' -p108600 -S'refresh(${1:This}) $2' -p108601 -tp108602 -a(S'refresh/2' -p108603 -S'refresh(${1:This}, ${2:Options}) $3' -p108604 -tp108605 -a(S'refreshRect/2' -p108606 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p108607 -tp108608 -a(S'refreshRect/3' -p108609 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p108610 -tp108611 -a(S'releaseMouse/1' -p108612 -S'releaseMouse(${1:This}) $2' -p108613 -tp108614 -a(S'removeChild/2' -p108615 -S'removeChild(${1:This}, ${2:Child}) $3' -p108616 -tp108617 -a(S'reparent/2' -p108618 -S'reparent(${1:This}, ${2:NewParent}) $3' -p108619 -tp108620 -a(S'screenToClient/1' -p108621 -S'screenToClient(${1:This}) $2' -p108622 -tp108623 -a(S'screenToClient/2' -p108624 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p108625 -tp108626 -a(S'scrollLines/2' -p108627 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p108628 -tp108629 -a(S'scrollPages/2' -p108630 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p108631 -tp108632 -a(S'scrollWindow/3' -p108633 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p108634 -tp108635 -a(S'scrollWindow/4' -p108636 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p108637 -tp108638 -a(S'setAcceleratorTable/2' -p108639 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p108640 -tp108641 -a(S'setAutoLayout/2' -p108642 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p108643 -tp108644 -a(S'setBackgroundColour/2' -p108645 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p108646 -tp108647 -a(S'setBackgroundStyle/2' -p108648 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p108649 -tp108650 -a(S'setCaret/2' -p108651 -S'setCaret(${1:This}, ${2:Caret}) $3' -p108652 -tp108653 -a(S'setClientSize/2' -p108654 -S'setClientSize(${1:This}, ${2:Size}) $3' -p108655 -tp108656 -a(S'setClientSize/3' -p108657 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p108658 -tp108659 -a(S'setContainingSizer/2' -p108660 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p108661 -tp108662 -a(S'setCursor/2' -p108663 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p108664 -tp108665 -a(S'setDropTarget/2' -p108666 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p108667 -tp108668 -a(S'setExtraStyle/2' -p108669 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p108670 -tp108671 -a(S'setFocus/1' -p108672 -S'setFocus(${1:This}) $2' -p108673 -tp108674 -a(S'setFocusFromKbd/1' -p108675 -S'setFocusFromKbd(${1:This}) $2' -p108676 -tp108677 -a(S'setFont/2' -p108678 -S'setFont(${1:This}, ${2:Font}) $3' -p108679 -tp108680 -a(S'setForegroundColour/2' -p108681 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p108682 -tp108683 -a(S'setHelpText/2' -p108684 -S'setHelpText(${1:This}, ${2:Text}) $3' -p108685 -tp108686 -a(S'setId/2' -p108687 -S'setId(${1:This}, ${2:Winid}) $3' -p108688 -tp108689 -a(S'setLabel/2' -p108690 -S'setLabel(${1:This}, ${2:Label}) $3' -p108691 -tp108692 -a(S'setMaxSize/2' -p108693 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p108694 -tp108695 -a(S'setMinSize/2' -p108696 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p108697 -tp108698 -a(S'setName/2' -p108699 -S'setName(${1:This}, ${2:Name}) $3' -p108700 -tp108701 -a(S'setOwnBackgroundColour/2' -p108702 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p108703 -tp108704 -a(S'setOwnFont/2' -p108705 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p108706 -tp108707 -a(S'setOwnForegroundColour/2' -p108708 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p108709 -tp108710 -a(S'setPalette/2' -p108711 -S'setPalette(${1:This}, ${2:Pal}) $3' -p108712 -tp108713 -a(S'setScrollPos/3' -p108714 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p108715 -tp108716 -a(S'setScrollPos/4' -p108717 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p108718 -tp108719 -a(S'setScrollbar/5' -p108720 -S'setScrollbar(${1:This}, ${2:Position}, ${3:ThumbSize}, ${4:Range}, ${5:PageSize}) $6' -p108721 -tp108722 -a(S'setScrollbar/6' -p108723 -S'setScrollbar(${1:This}, ${2:Position}, ${3:ThumbSize}, ${4:Range}, ${5:PageSize}, ${6:Param6}) $7' -p108724 -tp108725 -a(S'setSize/2' -p108726 -S'setSize(${1:This}, ${2:Rect}) $3' -p108727 -tp108728 -a(S'setSize/3' -p108729 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p108730 -tp108731 -a(S'setSize/5' -p108732 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p108733 -tp108734 -a(S'setSize/6' -p108735 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p108736 -tp108737 -a(S'setSizeHints/2' -p108738 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p108739 -tp108740 -a(S'setSizeHints/3' -p108741 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p108742 -tp108743 -a(S'setSizeHints/4' -p108744 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p108745 -tp108746 -a(S'setSizer/2' -p108747 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p108748 -tp108749 -a(S'setSizer/3' -p108750 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p108751 -tp108752 -a(S'setSizerAndFit/2' -p108753 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p108754 -tp108755 -a(S'setSizerAndFit/3' -p108756 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p108757 -tp108758 -a(S'setThemeEnabled/2' -p108759 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p108760 -tp108761 -a(S'setThumbPosition/2' -p108762 -S'setThumbPosition(${1:This}, ${2:ViewStart}) $3' -p108763 -tp108764 -a(S'setToolTip/2' -p108765 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p108766 -tp108767 -a(S'setVirtualSize/2' -p108768 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p108769 -tp108770 -a(S'setVirtualSize/3' -p108771 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p108772 -tp108773 -a(S'setVirtualSizeHints/2' -p108774 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p108775 -tp108776 -a(S'setVirtualSizeHints/3' -p108777 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p108778 -tp108779 -a(S'setVirtualSizeHints/4' -p108780 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p108781 -tp108782 -a(S'setWindowStyle/2' -p108783 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p108784 -tp108785 -a(S'setWindowStyleFlag/2' -p108786 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p108787 -tp108788 -a(S'setWindowVariant/2' -p108789 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p108790 -tp108791 -a(S'shouldInheritColours/1' -p108792 -S'shouldInheritColours(${1:This}) $2' -p108793 -tp108794 -a(S'show/1' -p108795 -S'show(${1:This}) $2' -p108796 -tp108797 -a(S'show/2' -p108798 -S'show(${1:This}, ${2:Options}) $3' -p108799 -tp108800 -a(S'thaw/1' -p108801 -S'thaw(${1:This}) $2' -p108802 -tp108803 -a(S'transferDataFromWindow/1' -p108804 -S'transferDataFromWindow(${1:This}) $2' -p108805 -tp108806 -a(S'transferDataToWindow/1' -p108807 -S'transferDataToWindow(${1:This}) $2' -p108808 -tp108809 -a(S'update/1' -p108810 -S'update(${1:This}) $2' -p108811 -tp108812 -a(S'updateWindowUI/1' -p108813 -S'updateWindowUI(${1:This}) $2' -p108814 -tp108815 -a(S'updateWindowUI/2' -p108816 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p108817 -tp108818 -a(S'validate/1' -p108819 -S'validate(${1:This}) $2' -p108820 -tp108821 -a(S'warpPointer/3' -p108822 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p108823 -tp108824 -asS'xmerl_sax_parser_latin1' -p108825 -(lp108826 -(S'cf/3' -p108827 -S'cf(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p108828 -tp108829 -a(S'cf/4' -p108830 -S'cf(${1:Param1}, ${2:State}, ${3:Param3}, ${4:Param4}) $5' -p108831 -tp108832 -a(S'cf/5' -p108833 -S'cf(${1:Param1}, ${2:State}, ${3:Param3}, ${4:Param4}, ${5:Param5}) $6' -p108834 -tp108835 -a(S'is_name_char/1' -p108836 -S'is_name_char(${1:C}) $2' -p108837 -tp108838 -a(S'is_name_start/1' -p108839 -S'is_name_start(${1:C}) $2' -p108840 -tp108841 -a(S'parse/2' -p108842 -S'parse(${1:Xml}, ${2:State}) $3' -p108843 -tp108844 -a(S'parse_dtd/2' -p108845 -S'parse_dtd(${1:Xml}, ${2:State}) $3' -p108846 -tp108847 -asS'xmerl_eventp' -p108848 -(lp108849 -(S'file_sax/4' -p108850 -S'file_sax(${1:Fname}, ${2:CallBack}, ${3:UserState}, ${4:Options}) $5' -p108851 -tp108852 -a(S'stream/2' -p108853 -S'stream(${1:Fname}, ${2:Options}) $3' -p108854 -tp108855 -a(S'stream_sax/4' -p108856 -S'stream_sax(${1:Fname}, ${2:CallBack}, ${3:UserState}, ${4:Options}) $5' -p108857 -tp108858 -a(S'string_sax/4' -p108859 -S'string_sax(${1:String}, ${2:CallBack}, ${3:UserState}, ${4:Options}) $5' -p108860 -tp108861 -asS'megaco_messenger' -p108862 -(lp108863 -(S'call/3' -p108864 -S'call(${1:ConnHandle}, ${2:Actions}, ${3:Options}) $4' -p108865 -tp108866 -a(S'cancel/2' -p108867 -S'cancel(${1:ConnHandle}, ${2:Reason}) $3' -p108868 -tp108869 -a(S'cast/3' -p108870 -S'cast(${1:ConnHandle}, ${2:Actions}, ${3:Options}) $4' -p108871 -tp108872 -a(S'cleanup/2' -p108873 -S'cleanup(${1:Pat}, ${2:Force}) $3' -p108874 -tp108875 -a(S'connect/4' -p108876 -S'connect(${1:RH}, ${2:RemoteMid}, ${3:SendHandle}, ${4:ControlPid}) $5' -p108877 -tp108878 -a(S'connect/5' -p108879 -S'connect(${1:BadHandle}, ${2:Param2}, ${3:Param3}, ${4:Param4}, ${5:Param5}) $6' -p108880 -tp108881 -a(S'connect_remote/3' -p108882 -S'connect_remote(${1:Param1}, ${2:ConnHandle}, ${3:UserNode}) $4' -p108883 -tp108884 -a(S'disconnect/2' -p108885 -S'disconnect(${1:BadHandle}, ${2:Reason}) $3' -p108886 -tp108887 -a(S'disconnect_local/2' -p108888 -S'disconnect_local(${1:Reason}, ${2:ConnHandle}) $3' -p108889 -tp108890 -a(S'disconnect_remote/3' -p108891 -S'disconnect_remote(${1:Param1}, ${2:ConnHandle}, ${3:UserNode}) $4' -p108892 -tp108893 -a(S'encode_actions/3' -p108894 -S'encode_actions() $1' -p108895 -tp108896 -a(S'get_stats/0' -p108897 -S'get_stats() $1' -p108898 -tp108899 -a(S'get_stats/1' -p108900 -S'get_stats(${1:ConnHandleOrCounter}) $2' -p108901 -tp108902 -a(S'get_stats/2' -p108903 -S'get_stats(${1:ConnHandle}, ${2:Counter}) $3' -p108904 -tp108905 -a(S'handle_long_request/2' -p108906 -S'handle_long_request(${1:Param1}, ${2:Extra}) $3' -p108907 -tp108908 -a(S'handle_request/2' -p108909 -S'handle_request(${1:Param1}, ${2:Extra}) $3' -p108910 -tp108911 -a(S'pending_timeout/3' -p108912 -S'pending_timeout(${1:ConnHandle}, ${2:TransId}, ${3:Timer}) $4' -p108913 -tp108914 -a(S'process_received_message/4' -p108915 -S'process_received_message(${1:ReceiveHandle}, ${2:ControlPid}, ${3:SendHandle}, ${4:Bin}) $5' -p108916 -tp108917 -a(S'process_received_message/5' -p108918 -S'process_received_message(${1:ReceiveHandle}, ${2:ControlPid}, ${3:SendHandle}, ${4:Bin}, ${5:Extra}) $6' -p108919 -tp108920 -a(S'process_received_message/6' -p108921 -S'process_received_message() $1' -p108922 -tp108923 -a(S'receive_message/4' -p108924 -S'receive_message(${1:ReceiveHandle}, ${2:ControlPid}, ${3:SendHandle}, ${4:Bin}) $5' -p108925 -tp108926 -a(S'receive_message/5' -p108927 -S'receive_message(${1:ReceiveHandle}, ${2:ControlPid}, ${3:SendHandle}, ${4:Bin}, ${5:Extra}) $6' -p108928 -tp108929 -a(S'receive_reply_remote/2' -p108930 -S'receive_reply_remote(${1:ConnData}, ${2:UserReply}) $3' -p108931 -tp108932 -a(S'receive_reply_remote/3' -p108933 -S'receive_reply_remote(${1:ConnData}, ${2:UserReply}, ${3:Extra}) $4' -p108934 -tp108935 -a(S'reply_timeout/3' -p108936 -S'reply_timeout(${1:ConnHandle}, ${2:TransId}, ${3:Timer}) $4' -p108937 -tp108938 -a(S'request_keep_alive_timeout/2' -p108939 -S'request_keep_alive_timeout(${1:ConnHandle}, ${2:TransId}) $3' -p108940 -tp108941 -a(S'request_timeout/2' -p108942 -S'request_timeout(${1:ConnHandle}, ${2:TransId}) $3' -p108943 -tp108944 -a(S'reset_stats/0' -p108945 -S'reset_stats() $1' -p108946 -tp108947 -a(S'reset_stats/1' -p108948 -S'reset_stats(${1:ConnHandleOrCounter}) $2' -p108949 -tp108950 -a(S'segment_timeout/3' -p108951 -S'segment_timeout(${1:ConnHandle}, ${2:TransId}, ${3:Timer}) $4' -p108952 -tp108953 -a(S'send_request_remote/4' -p108954 -S'send_request_remote(${1:ReplyNode}, ${2:ConnData}, ${3:TransInfo}, ${4:Bin}) $5' -p108955 -tp108956 -a(S'test_reply/5' -p108957 -S'test_reply() $1' -p108958 -tp108959 -a(S'test_request/5' -p108960 -S'test_request() $1' -p108961 -tp108962 -a(S'which_replies/1' -p108963 -S'which_replies(${1:LocalMid}) $2' -p108964 -tp108965 -a(S'which_requests/1' -p108966 -S'which_requests(${1:LocalMid}) $2' -p108967 -tp108968 -asS'CosNotifyChannelAdmin_StructuredProxyPushSupplier' -p108969 -(lp108970 -(S"'_get_MyAdmin'/1" -p108971 -S"'_get_MyAdmin'(${1:OE_THIS}) $2" -p108972 -tp108973 -a(S"'_get_MyAdmin'/2" -p108974 -S"'_get_MyAdmin'(${1:OE_THIS}, ${2:OE_Options}) $3" -p108975 -tp108976 -a(S"'_get_MyType'/1" -p108977 -S"'_get_MyType'(${1:OE_THIS}) $2" -p108978 -tp108979 -a(S"'_get_MyType'/2" -p108980 -S"'_get_MyType'(${1:OE_THIS}, ${2:OE_Options}) $3" -p108981 -tp108982 -a(S"'_get_lifetime_filter'/1" -p108983 -S"'_get_lifetime_filter'(${1:OE_THIS}) $2" -p108984 -tp108985 -a(S"'_get_lifetime_filter'/2" -p108986 -S"'_get_lifetime_filter'(${1:OE_THIS}, ${2:OE_Options}) $3" -p108987 -tp108988 -a(S"'_get_priority_filter'/1" -p108989 -S"'_get_priority_filter'(${1:OE_THIS}) $2" -p108990 -tp108991 -a(S"'_get_priority_filter'/2" -p108992 -S"'_get_priority_filter'(${1:OE_THIS}, ${2:OE_Options}) $3" -p108993 -tp108994 -a(S"'_set_lifetime_filter'/2" -p108995 -S"'_set_lifetime_filter'(${1:OE_THIS}, ${2:OE_Value}) $3" -p108996 -tp108997 -a(S"'_set_lifetime_filter'/3" -p108998 -S"'_set_lifetime_filter'(${1:OE_THIS}, ${2:OE_Options}, ${3:OE_Value}) $4" -p108999 -tp109000 -a(S"'_set_priority_filter'/2" -p109001 -S"'_set_priority_filter'(${1:OE_THIS}, ${2:OE_Value}) $3" -p109002 -tp109003 -a(S"'_set_priority_filter'/3" -p109004 -S"'_set_priority_filter'(${1:OE_THIS}, ${2:OE_Options}, ${3:OE_Value}) $4" -p109005 -tp109006 -a(S'add_filter/2' -p109007 -S'add_filter(${1:OE_THIS}, ${2:New_filter}) $3' -p109008 -tp109009 -a(S'add_filter/3' -p109010 -S'add_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:New_filter}) $4' -p109011 -tp109012 -a(S'callAny/3' -p109013 -S'callAny(${1:OE_THIS}, ${2:Event}, ${3:Stat}) $4' -p109014 -tp109015 -a(S'callAny/4' -p109016 -S'callAny(${1:OE_THIS}, ${2:OE_Options}, ${3:Event}, ${4:Stat}) $5' -p109017 -tp109018 -a(S'callSeq/3' -p109019 -S'callSeq(${1:OE_THIS}, ${2:Events}, ${3:Stat}) $4' -p109020 -tp109021 -a(S'callSeq/4' -p109022 -S'callSeq(${1:OE_THIS}, ${2:OE_Options}, ${3:Events}, ${4:Stat}) $5' -p109023 -tp109024 -a(S'code_change/3' -p109025 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p109026 -tp109027 -a(S'connect_structured_push_consumer/2' -p109028 -S'connect_structured_push_consumer(${1:OE_THIS}, ${2:Push_consumer}) $3' -p109029 -tp109030 -a(S'connect_structured_push_consumer/3' -p109031 -S'connect_structured_push_consumer(${1:OE_THIS}, ${2:OE_Options}, ${3:Push_consumer}) $4' -p109032 -tp109033 -a(S'disconnect_structured_push_supplier/1' -p109034 -S'disconnect_structured_push_supplier(${1:OE_THIS}) $2' -p109035 -tp109036 -a(S'disconnect_structured_push_supplier/2' -p109037 -S'disconnect_structured_push_supplier(${1:OE_THIS}, ${2:OE_Options}) $3' -p109038 -tp109039 -a(S'get_all_filters/1' -p109040 -S'get_all_filters(${1:OE_THIS}) $2' -p109041 -tp109042 -a(S'get_all_filters/2' -p109043 -S'get_all_filters(${1:OE_THIS}, ${2:OE_Options}) $3' -p109044 -tp109045 -a(S'get_filter/2' -p109046 -S'get_filter(${1:OE_THIS}, ${2:Filter}) $3' -p109047 -tp109048 -a(S'get_filter/3' -p109049 -S'get_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:Filter}) $4' -p109050 -tp109051 -a(S'get_qos/1' -p109052 -S'get_qos(${1:OE_THIS}) $2' -p109053 -tp109054 -a(S'get_qos/2' -p109055 -S'get_qos(${1:OE_THIS}, ${2:OE_Options}) $3' -p109056 -tp109057 -a(S'handle_call/3' -p109058 -S'handle_call(${1:Param1}, ${2:OE_From}, ${3:OE_State}) $4' -p109059 -tp109060 -a(S'handle_cast/2' -p109061 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p109062 -tp109063 -a(S'handle_info/2' -p109064 -S'handle_info(${1:Info}, ${2:State}) $3' -p109065 -tp109066 -a(S'init/1' -p109067 -S'init(${1:Env}) $2' -p109068 -tp109069 -a(S'obtain_offered_types/2' -p109070 -S'obtain_offered_types(${1:OE_THIS}, ${2:Mode}) $3' -p109071 -tp109072 -a(S'obtain_offered_types/3' -p109073 -S'obtain_offered_types(${1:OE_THIS}, ${2:OE_Options}, ${3:Mode}) $4' -p109074 -tp109075 -a(S'oe_create/0' -p109076 -S'oe_create() $1' -p109077 -tp109078 -a(S'oe_create/1' -p109079 -S'oe_create(${1:Env}) $2' -p109080 -tp109081 -a(S'oe_create/2' -p109082 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p109083 -tp109084 -a(S'oe_create_link/0' -p109085 -S'oe_create_link() $1' -p109086 -tp109087 -a(S'oe_create_link/1' -p109088 -S'oe_create_link(${1:Env}) $2' -p109089 -tp109090 -a(S'oe_create_link/2' -p109091 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p109092 -tp109093 -a(S'oe_get_interface/0' -p109094 -S'oe_get_interface() $1' -p109095 -tp109096 -a(S'oe_is_a/1' -p109097 -S'oe_is_a(${1:Param1}) $2' -p109098 -tp109099 -a(S'oe_tc/1' -p109100 -S'oe_tc(${1:Param1}) $2' -p109101 -tp109102 -a(S'remove_all_filters/1' -p109103 -S'remove_all_filters(${1:OE_THIS}) $2' -p109104 -tp109105 -a(S'remove_all_filters/2' -p109106 -S'remove_all_filters(${1:OE_THIS}, ${2:OE_Options}) $3' -p109107 -tp109108 -a(S'remove_filter/2' -p109109 -S'remove_filter(${1:OE_THIS}, ${2:Filter}) $3' -p109110 -tp109111 -a(S'remove_filter/3' -p109112 -S'remove_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:Filter}) $4' -p109113 -tp109114 -a(S'resume_connection/1' -p109115 -S'resume_connection(${1:OE_THIS}) $2' -p109116 -tp109117 -a(S'resume_connection/2' -p109118 -S'resume_connection(${1:OE_THIS}, ${2:OE_Options}) $3' -p109119 -tp109120 -a(S'set_qos/2' -p109121 -S'set_qos(${1:OE_THIS}, ${2:Qos}) $3' -p109122 -tp109123 -a(S'set_qos/3' -p109124 -S'set_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Qos}) $4' -p109125 -tp109126 -a(S'subscription_change/3' -p109127 -S'subscription_change(${1:OE_THIS}, ${2:Added}, ${3:Removed}) $4' -p109128 -tp109129 -a(S'subscription_change/4' -p109130 -S'subscription_change(${1:OE_THIS}, ${2:OE_Options}, ${3:Added}, ${4:Removed}) $5' -p109131 -tp109132 -a(S'suspend_connection/1' -p109133 -S'suspend_connection(${1:OE_THIS}) $2' -p109134 -tp109135 -a(S'suspend_connection/2' -p109136 -S'suspend_connection(${1:OE_THIS}, ${2:OE_Options}) $3' -p109137 -tp109138 -a(S'terminate/2' -p109139 -S'terminate(${1:Reason}, ${2:State}) $3' -p109140 -tp109141 -a(S'typeID/0' -p109142 -S'typeID() $1' -p109143 -tp109144 -a(S'validate_event_qos/2' -p109145 -S'validate_event_qos(${1:OE_THIS}, ${2:Required_qos}) $3' -p109146 -tp109147 -a(S'validate_event_qos/3' -p109148 -S'validate_event_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Required_qos}) $4' -p109149 -tp109150 -a(S'validate_qos/2' -p109151 -S'validate_qos(${1:OE_THIS}, ${2:Required_qos}) $3' -p109152 -tp109153 -a(S'validate_qos/3' -p109154 -S'validate_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Required_qos}) $4' -p109155 -tp109156 -asS'inviso_rt_meta' -p109157 -(lp109158 -(S'clean_std_publld/1' -p109159 -S'clean_std_publld(${1:Param1}) $2' -p109160 -tp109161 -a(S'ctpm/4' -p109162 -S'ctpm(${1:Pid}, ${2:Mod}, ${3:Func}, ${4:Arity}) $5' -p109163 -tp109164 -a(S'ctpm_ms/4' -p109165 -S'ctpm_ms(${1:Mod}, ${2:Func}, ${3:Arity}, ${4:MSname}) $5' -p109166 -tp109167 -a(S'ctpm_ms/5' -p109168 -S'ctpm_ms(${1:Pid}, ${2:Mod}, ${3:Func}, ${4:Arity}, ${5:MSname}) $6' -p109169 -tp109170 -a(S'get_state/1' -p109171 -S'get_state(${1:Pid}) $2' -p109172 -tp109173 -a(S'get_tracer/0' -p109174 -S'get_tracer() $1' -p109175 -tp109176 -a(S'global_register/1' -p109177 -S'global_register(${1:Pid}) $2' -p109178 -tp109179 -a(S'init/6' -p109180 -S'init(${1:Parent}, ${2:TiData}, ${3:Tracer}, ${4:InitPublLDmfa}, ${5:RemovePublLDmf}, ${6:CleanPublLDmf}) $7' -p109181 -tp109182 -a(S'init_std_publld/2' -p109183 -S'init_std_publld(${1:Size}, ${2:GlobalData}) $3' -p109184 -tp109185 -a(S'init_tpm/5' -p109186 -S'init_tpm(${1:Pid}, ${2:Mod}, ${3:Func}, ${4:Arity}, ${5:CallFunc}) $6' -p109187 -tp109188 -a(S'init_tpm/8' -p109189 -S'init_tpm(${1:Pid}, ${2:Mod}, ${3:Func}, ${4:Arity}, ${5:InitFunc}, ${6:CallFunc}, ${7:ReturnFunc}, ${8:RemoveFunc}) $9' -p109190 -tp109191 -a(S'list_tpm_ms/3' -p109192 -S'list_tpm_ms(${1:Mod}, ${2:Func}, ${3:Arity}) $4' -p109193 -tp109194 -a(S'local_register/1' -p109195 -S'local_register(${1:Pid}) $2' -p109196 -tp109197 -a(S'metacast_call/5' -p109198 -S'metacast_call(${1:Nodes}, ${2:OrigPid}, ${3:M}, ${4:F}, ${5:Args}) $6' -p109199 -tp109200 -a(S'metacast_return_from/6' -p109201 -S'metacast_return_from(${1:Nodes}, ${2:OrigPid}, ${3:M}, ${4:F}, ${5:Arity}, ${6:Value}) $7' -p109202 -tp109203 -a(S'remove_global_register/1' -p109204 -S'remove_global_register(${1:Pid}) $2' -p109205 -tp109206 -a(S'remove_local_register/1' -p109207 -S'remove_local_register(${1:Pid}) $2' -p109208 -tp109209 -a(S'start/2' -p109210 -S'start(${1:TiData}, ${2:Tracer}) $3' -p109211 -tp109212 -a(S'start/5' -p109213 -S'start(${1:TiData}, ${2:Tracer}, ${3:InitPublLDmfa}, ${4:RemovePublLDmf}, ${5:CleanPublLDmf}) $6' -p109214 -tp109215 -a(S'stop/1' -p109216 -S'stop(${1:Pid}) $2' -p109217 -tp109218 -a(S'suspend/1' -p109219 -S'suspend(${1:Pid}) $2' -p109220 -tp109221 -a(S'tpm/5' -p109222 -S'tpm(${1:Pid}, ${2:Mod}, ${3:Func}, ${4:Arity}, ${5:CallFunc}) $6' -p109223 -tp109224 -a(S'tpm/6' -p109225 -S'tpm(${1:Pid}, ${2:Mod}, ${3:Func}, ${4:Arity}, ${5:MatchSpec}, ${6:CallFunc}) $7' -p109226 -tp109227 -a(S'tpm/9' -p109228 -S'tpm(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}, ${5:Param5}, ${6:Param6}, ${7:Param7}, ${8:Param8}, ${9:Param9}) $10' -p109229 -tp109230 -a(S'tpm_ms/5' -p109231 -S'tpm_ms(${1:Pid}, ${2:Mod}, ${3:Func}, ${4:Arity}, ${5:MSname}) $6' -p109232 -tp109233 -a(S'tpm_ms/6' -p109234 -S'tpm_ms(${1:Pid}, ${2:Mod}, ${3:Func}, ${4:Arity}, ${5:MSname}, ${6:MS}) $7' -p109235 -tp109236 -a(S'tpm_ms_tracer/5' -p109237 -S'tpm_ms_tracer(${1:Mod}, ${2:Func}, ${3:Arity}, ${4:MSname}, ${5:MS}) $6' -p109238 -tp109239 -a(S'tpm_ms_tracer/6' -p109240 -S'tpm_ms_tracer(${1:Pid}, ${2:Mod}, ${3:Func}, ${4:Arity}, ${5:MSname}, ${6:MS}) $7' -p109241 -tp109242 -a(S'tpm_tracer/5' -p109243 -S'tpm_tracer(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}, ${5:Param5}) $6' -p109244 -tp109245 -a(S'tpm_tracer/6' -p109246 -S'tpm_tracer(${1:Pid}, ${2:Mod}, ${3:Func}, ${4:Arity}, ${5:MatchSpec}, ${6:CallFunc}) $7' -p109247 -tp109248 -a(S'tpm_tracer/9' -p109249 -S'tpm_tracer(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}, ${5:Param5}, ${6:Param6}, ${7:Param7}, ${8:Param8}, ${9:Param9}) $10' -p109250 -tp109251 -a(S'write_ti/1' -p109252 -S'write_ti(${1:OutPut}) $2' -p109253 -tp109254 -asS'application' -p109255 -(lp109256 -(S'get_all_env/0' -p109257 -S'get_all_env() $1' -p109258 -tp109259 -a(S'get_all_env/1' -p109260 -S'get_all_env(${1:Application}) $2' -p109261 -tp109262 -a(S'get_all_key/0' -p109263 -S'get_all_key() $1' -p109264 -tp109265 -a(S'get_all_key/1' -p109266 -S'get_all_key(${1:Application}) $2' -p109267 -tp109268 -a(S'get_application/0' -p109269 -S'get_application() $1' -p109270 -tp109271 -a(S'get_application/1' -p109272 -S'get_application(${1:PidOrModule}) $2' -p109273 -tp109274 -a(S'get_env/1' -p109275 -S'get_env(${1:Par}) $2' -p109276 -tp109277 -a(S'get_env/2' -p109278 -S'get_env(${1:Application}, ${2:Par}) $3' -p109279 -tp109280 -a(S'get_key/1' -p109281 -S'get_key(${1:Key}) $2' -p109282 -tp109283 -a(S'get_key/2' -p109284 -S'get_key(${1:Application}, ${2:Key}) $3' -p109285 -tp109286 -a(S'info/0' -p109287 -S'info() $1' -p109288 -tp109289 -a(S'load/1' -p109290 -S'load(${1:AppDescr}) $2' -p109291 -tp109292 -a(S'load/2' -p109293 -S'load(${1:AppDescr}, ${2:Distributed}) $3' -p109294 -tp109295 -a(S'loaded_applications/0' -p109296 -S'loaded_applications() $1' -p109297 -tp109298 -a(S'permit/2' -p109299 -S'permit(${1:Application}, ${2:Permission}) $3' -p109300 -tp109301 -a(S'set_env/3' -p109302 -S'set_env(${1:Application}, ${2:Par}, ${3:Val}) $4' -p109303 -tp109304 -a(S'set_env/4' -p109305 -S'set_env(${1:Application}, ${2:Par}, ${3:Val}, ${4:Timeout}) $5' -p109306 -tp109307 -a(S'start/1' -p109308 -S'start(${1:Application}) $2' -p109309 -tp109310 -a(S'start/2' -p109311 -S'start(${1:Application}, ${2:Type}) $3' -p109312 -tp109313 -a(S'start_boot/1' -p109314 -S'start_boot(${1:Application}) $2' -p109315 -tp109316 -a(S'start_boot/2' -p109317 -S'start_boot(${1:Application}, ${2:RestartType}) $3' -p109318 -tp109319 -a(S'start_type/0' -p109320 -S'start_type() $1' -p109321 -tp109322 -a(S'stop/1' -p109323 -S'stop(${1:Application}) $2' -p109324 -tp109325 -a(S'takeover/2' -p109326 -S'takeover(${1:Application}, ${2:Type}) $3' -p109327 -tp109328 -a(S'unload/1' -p109329 -S'unload(${1:Application}) $2' -p109330 -tp109331 -a(S'unset_env/2' -p109332 -S'unset_env(${1:Application}, ${2:Par}) $3' -p109333 -tp109334 -a(S'unset_env/3' -p109335 -S'unset_env(${1:Application}, ${2:Par}, ${3:Timeout}) $4' -p109336 -tp109337 -a(S'which_applications/0' -p109338 -S'which_applications() $1' -p109339 -tp109340 -a(S'which_applications/1' -p109341 -S'which_applications(${1:Timeout}) $2' -p109342 -tp109343 -asS'xref_utils' -p109344 -(lp109345 -(S'application_filename/1' -p109346 -S'application_filename(${1:AppName}) $2' -p109347 -tp109348 -a(S'application_filename/2' -p109349 -S'application_filename(${1:Dir}, ${2:AppName}) $3' -p109350 -tp109351 -a(S'call/2' -p109352 -S'call(${1:G}, ${2:V}) $3' -p109353 -tp109354 -a(S'closure/1' -p109355 -S'closure(${1:S}) $2' -p109356 -tp109357 -a(S'components/1' -p109358 -S'components(${1:G}) $2' -p109359 -tp109360 -a(S'condensation/1' -p109361 -S'condensation(${1:G}) $2' -p109362 -tp109363 -a(S'fa_to_mfa/2' -p109364 -S'fa_to_mfa(${1:FAs}, ${2:Mod}) $3' -p109365 -tp109366 -a(S'file_info/1' -p109367 -S'file_info(${1:F}) $2' -p109368 -tp109369 -a(S'filename_to_application/1' -p109370 -S'filename_to_application(${1:FileName}) $2' -p109371 -tp109372 -a(S'find_beam/1' -p109373 -S'find_beam(${1:Module}) $2' -p109374 -tp109375 -a(S'format_error/1' -p109376 -S'format_error(${1:E}) $2' -p109377 -tp109378 -a(S'is_abstract_module/1' -p109379 -S'is_abstract_module(${1:Attributes}) $2' -p109380 -tp109381 -a(S'is_builtin/3' -p109382 -S'is_builtin(${1:M}, ${2:F}, ${3:A}) $4' -p109383 -tp109384 -a(S'is_directory/1' -p109385 -S'is_directory(${1:F}) $2' -p109386 -tp109387 -a(S'is_funfun/3' -p109388 -S'is_funfun(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p109389 -tp109390 -a(S'is_path/1' -p109391 -S'is_path(${1:Param1}) $2' -p109392 -tp109393 -a(S'is_static_function/2' -p109394 -S'is_static_function(${1:Param1}, ${2:Param2}) $3' -p109395 -tp109396 -a(S'is_string/2' -p109397 -S'is_string(${1:Term}, ${2:C}) $3' -p109398 -tp109399 -a(S'list_path/2' -p109400 -S'list_path(${1:P}, ${2:Extensions}) $3' -p109401 -tp109402 -a(S'module_filename/2' -p109403 -S'module_filename(${1:Dir}, ${2:Module}) $3' -p109404 -tp109405 -a(S'options/2' -p109406 -S'options(${1:Options}, ${2:Valid}) $3' -p109407 -tp109408 -a(S'path/2' -p109409 -S'path(${1:P}, ${2:Extensions}) $3' -p109410 -tp109411 -a(S'predefined_functions/0' -p109412 -S'predefined_functions() $1' -p109413 -tp109414 -a(S'regexpr/2' -p109415 -S'regexpr(${1:Param1}, ${2:Var}) $3' -p109416 -tp109417 -a(S'relation_to_graph/1' -p109418 -S'relation_to_graph(${1:S}) $2' -p109419 -tp109420 -a(S'release_directory/3' -p109421 -S'release_directory(${1:Dir}, ${2:UseLib}, ${3:SubDir}) $4' -p109422 -tp109423 -a(S'scan_directory/4' -p109424 -S'scan_directory(${1:File}, ${2:Recurse}, ${3:Collect}, ${4:Watch}) $5' -p109425 -tp109426 -a(S'select_application_directories/2' -p109427 -S'select_application_directories(${1:FileNames}, ${2:Dir}) $3' -p109428 -tp109429 -a(S'select_last_application_version/1' -p109430 -S'select_last_application_version(${1:AppVs}) $2' -p109431 -tp109432 -a(S'split_filename/2' -p109433 -S'split_filename(${1:File}, ${2:Extension}) $3' -p109434 -tp109435 -a(S'subprocess/2' -p109436 -S'subprocess(${1:Fun}, ${2:Opts}) $3' -p109437 -tp109438 -a(S'use/2' -p109439 -S'use(${1:G}, ${2:V}) $3' -p109440 -tp109441 -a(S'xset/2' -p109442 -S'xset(${1:L}, ${2:T}) $3' -p109443 -tp109444 -asS'diameter_dict_util' -p109445 -(lp109446 -(S'format/1' -p109447 -S'format(${1:Dict}) $2' -p109448 -tp109449 -a(S'format_error/1' -p109450 -S'format_error(${1:T}) $2' -p109451 -tp109452 -a(S'parse/2' -p109453 -S'parse(${1:File}, ${2:Opts}) $3' -p109454 -tp109455 -asS'httpc_manager' -p109456 -(lp109457 -(S'cancel_request/2' -p109458 -S'cancel_request(${1:RequestId}, ${2:ProfileName}) $3' -p109459 -tp109460 -a(S'code_change/3' -p109461 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p109462 -tp109463 -a(S'delete_session/2' -p109464 -S'delete_session(${1:SessionId}, ${2:ProfileName}) $3' -p109465 -tp109466 -a(S'get_options/2' -p109467 -S'get_options(${1:Options}, ${2:ProfileName}) $3' -p109468 -tp109469 -a(S'handle_call/3' -p109470 -S'handle_call(${1:Req}, ${2:From}, ${3:State}) $4' -p109471 -tp109472 -a(S'handle_cast/2' -p109473 -S'handle_cast(${1:Msg}, ${2:State}) $3' -p109474 -tp109475 -a(S'handle_info/2' -p109476 -S'handle_info(${1:Info}, ${2:State}) $3' -p109477 -tp109478 -a(S'info/1' -p109479 -S'info(${1:ProfileName}) $2' -p109480 -tp109481 -a(S'init/1' -p109482 -S'init(${1:Param1}) $2' -p109483 -tp109484 -a(S'insert_session/2' -p109485 -S'insert_session(${1:Session}, ${2:ProfileName}) $3' -p109486 -tp109487 -a(S'redirect_request/2' -p109488 -S'redirect_request(${1:Request}, ${2:ProfileName}) $3' -p109489 -tp109490 -a(S'request/2' -p109491 -S'request(${1:Request}, ${2:ProfileName}) $3' -p109492 -tp109493 -a(S'request_canceled/3' -p109494 -S'request_canceled(${1:RequestId}, ${2:ProfileName}, ${3:From}) $4' -p109495 -tp109496 -a(S'request_done/2' -p109497 -S'request_done(${1:RequestId}, ${2:ProfileName}) $3' -p109498 -tp109499 -a(S'reset_cookies/1' -p109500 -S'reset_cookies(${1:ProfileName}) $2' -p109501 -tp109502 -a(S'retry_request/2' -p109503 -S'retry_request(${1:Request}, ${2:ProfileName}) $3' -p109504 -tp109505 -a(S'session_type/1' -p109506 -S'session_type(${1:Param1}) $2' -p109507 -tp109508 -a(S'set_options/2' -p109509 -S'set_options(${1:Options}, ${2:ProfileName}) $3' -p109510 -tp109511 -a(S'start_link/3' -p109512 -S'start_link(${1:Profile}, ${2:CookieDir}, ${3:Param3}) $4' -p109513 -tp109514 -a(S'store_cookies/3' -p109515 -S'store_cookies(${1:Cookies}, ${2:Address}, ${3:ProfileName}) $4' -p109516 -tp109517 -a(S'terminate/2' -p109518 -S'terminate(${1:Param1}, ${2:State}) $3' -p109519 -tp109520 -a(S'update_session/4' -p109521 -S'update_session(${1:ProfileName}, ${2:SessionId}, ${3:Pos}, ${4:Value}) $5' -p109522 -tp109523 -a(S'which_cookies/1' -p109524 -S'which_cookies(${1:ProfileName}) $2' -p109525 -tp109526 -a(S'which_cookies/2' -p109527 -S'which_cookies() $1' -p109528 -tp109529 -a(S'which_cookies/3' -p109530 -S'which_cookies() $1' -p109531 -tp109532 -asS'ct_hooks_lock' -p109533 -(lp109534 -(S'code_change/3' -p109535 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p109536 -tp109537 -a(S'handle_call/3' -p109538 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p109539 -tp109540 -a(S'handle_cast/2' -p109541 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p109542 -tp109543 -a(S'handle_info/2' -p109544 -S'handle_info() $1' -p109545 -tp109546 -a(S'init/1' -p109547 -S'init(${1:Id}) $2' -p109548 -tp109549 -a(S'release/0' -p109550 -S'release() $1' -p109551 -tp109552 -a(S'request/0' -p109553 -S'request() $1' -p109554 -tp109555 -a(S'start/1' -p109556 -S'start(${1:Id}) $2' -p109557 -tp109558 -a(S'stop/1' -p109559 -S'stop(${1:Id}) $2' -p109560 -tp109561 -a(S'terminate/2' -p109562 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p109563 -tp109564 -asS'inviso_tool_lib' -p109565 -(lp109566 -(S'debug/3' -p109567 -S'debug(${1:What}, ${2:On}, ${3:Description}) $4' -p109568 -tp109569 -a(S'expand_module_names/3' -p109570 -S'expand_module_names(${1:Nodes}, ${2:Mod}, ${3:Opts}) $4' -p109571 -tp109572 -a(S'get_datetime_from_tdg_args/1' -p109573 -S'get_datetime_from_tdg_args(${1:Param1}) $2' -p109574 -tp109575 -a(S'inviso_cmd/3' -p109576 -S'inviso_cmd(${1:NodeName}, ${2:Func}, ${3:Args}) $4' -p109577 -tp109578 -a(S'make_patterns/7' -p109579 -S'make_patterns(${1:Catches}, ${2:Opts}, ${3:Dbg}, ${4:NodeModsOrMods}, ${5:F}, ${6:A}, ${7:MS}) $8' -p109580 -tp109581 -a(S'mk_complete_tdg_args/2' -p109582 -S'mk_complete_tdg_args(${1:Node}, ${2:TDGargs}) $3' -p109583 -tp109584 -a(S'mk_tdg_args/2' -p109585 -S'mk_tdg_args(${1:DateTime}, ${2:Args}) $3' -p109586 -tp109587 -a(S'std_tdg/2' -p109588 -S'std_tdg(${1:Node}, ${2:Param2}) $3' -p109589 -tp109590 -asS'CosNotification_PropertyError' -p109591 -(lp109592 -(S'id/0' -p109593 -S'id() $1' -p109594 -tp109595 -a(S'name/0' -p109596 -S'name() $1' -p109597 -tp109598 -a(S'tc/0' -p109599 -S'tc() $1' -p109600 -tp109601 -asS'diameter_info' -p109602 -(lp109603 -(S'attrs/2' -p109604 -S'attrs(${1:Prefix}, ${2:Fun}) $3' -p109605 -tp109606 -a(S'collect/2' -p109607 -S'collect(${1:CFun}, ${2:TableNames}) $3' -p109608 -tp109609 -a(S'compiled/1' -p109610 -S'compiled(${1:Prefix}) $2' -p109611 -tp109612 -a(S'format/1' -p109613 -S'format() $1' -p109614 -tp109615 -a(S'format/2' -p109616 -S'format() $1' -p109617 -tp109618 -a(S'format/3' -p109619 -S'format(${1:Local}, ${2:Remote}, ${3:SFun}) $4' -p109620 -tp109621 -a(S'format/4' -p109622 -S'format(${1:Table}, ${2:Fields}, ${3:Param3}, ${4:Vs}) $5' -p109623 -tp109624 -a(S'latest/1' -p109625 -S'latest(${1:Modules}) $2' -p109626 -tp109627 -a(S'list/1' -p109628 -S'list(${1:Tables}) $2' -p109629 -tp109630 -a(S'modules/1' -p109631 -S'modules() $1' -p109632 -tp109633 -a(S'p/1' -p109634 -S'p(${1:S}) $2' -p109635 -tp109636 -a(S'p/3' -p109637 -S'p(${1:Width}, ${2:Key}, ${3:Value}) $4' -p109638 -tp109639 -a(S'procs/1' -p109640 -S'procs(${1:Param1}) $2' -p109641 -tp109642 -a(S'sep/0' -p109643 -S'sep() $1' -p109644 -tp109645 -a(S'sep/1' -p109646 -S'sep(${1:Ch}) $2' -p109647 -tp109648 -a(S'split/2' -p109649 -S'split(${1:SFun}, ${2:Rec}) $3' -p109650 -tp109651 -a(S'split/3' -p109652 -S'split(${1:Param1}, ${2:Fs}, ${3:Vs}) $4' -p109653 -tp109654 -a(S'tab2list/1' -p109655 -S'tab2list(${1:Table}) $2' -p109656 -tp109657 -a(S'table/2' -p109658 -S'table(${1:Table}, ${2:Fields}) $3' -p109659 -tp109660 -a(S'tables/1' -p109661 -S'tables(${1:Tables}) $2' -p109662 -tp109663 -a(S'tables/2' -p109664 -S'tables(${1:Local}, ${2:Remote}) $3' -p109665 -tp109666 -a(S'usage/1' -p109667 -S'usage(${1:Usage}) $2' -p109668 -tp109669 -a(S'version_info/1' -p109670 -S'version_info(${1:Mod}) $2' -p109671 -tp109672 -a(S'versions/1' -p109673 -S'versions(${1:Modules}) $2' -p109674 -tp109675 -a(S'widest/1' -p109676 -S'widest(${1:List}) $2' -p109677 -tp109678 -asS'reltool_server' -p109679 -(lp109680 -(S'gen_rel_files/2' -p109681 -S'gen_rel_files(${1:Pid}, ${2:Dir}) $3' -p109682 -tp109683 -a(S'gen_spec/1' -p109684 -S'gen_spec(${1:Pid}) $2' -p109685 -tp109686 -a(S'gen_target/2' -p109687 -S'gen_target(${1:Pid}, ${2:Dir}) $3' -p109688 -tp109689 -a(S'get_app/2' -p109690 -S'get_app(${1:Pid}, ${2:AppName}) $3' -p109691 -tp109692 -a(S'get_apps/2' -p109693 -S'get_apps(${1:Pid}, ${2:Kind}) $3' -p109694 -tp109695 -a(S'get_config/3' -p109696 -S'get_config(${1:Pid}, ${2:InclDef}, ${3:InclDeriv}) $4' -p109697 -tp109698 -a(S'get_mod/2' -p109699 -S'get_mod(${1:Pid}, ${2:ModName}) $3' -p109700 -tp109701 -a(S'get_rel/2' -p109702 -S'get_rel(${1:Pid}, ${2:RelName}) $3' -p109703 -tp109704 -a(S'get_script/2' -p109705 -S'get_script(${1:Pid}, ${2:RelName}) $3' -p109706 -tp109707 -a(S'get_status/1' -p109708 -S'get_status(${1:Pid}) $2' -p109709 -tp109710 -a(S'get_sys/1' -p109711 -S'get_sys(${1:Pid}) $2' -p109712 -tp109713 -a(S'init/1' -p109714 -S'init(${1:Options}) $2' -p109715 -tp109716 -a(S'load_config/2' -p109717 -S'load_config(${1:Pid}, ${2:FilenameOrConfig}) $3' -p109718 -tp109719 -a(S'loop/1' -p109720 -S'loop(${1:S}) $2' -p109721 -tp109722 -a(S'reset_config/1' -p109723 -S'reset_config(${1:Pid}) $2' -p109724 -tp109725 -a(S'save_config/4' -p109726 -S'save_config(${1:Pid}, ${2:Filename}, ${3:InclDef}, ${4:InclDeriv}) $5' -p109727 -tp109728 -a(S'set_app/2' -p109729 -S'set_app(${1:Pid}, ${2:App}) $3' -p109730 -tp109731 -a(S'set_apps/2' -p109732 -S'set_apps(${1:Pid}, ${2:Apps}) $3' -p109733 -tp109734 -a(S'set_sys/2' -p109735 -S'set_sys(${1:Pid}, ${2:Sys}) $3' -p109736 -tp109737 -a(S'start_link/0' -p109738 -S'start_link() $1' -p109739 -tp109740 -a(S'start_link/1' -p109741 -S'start_link(${1:Options}) $2' -p109742 -tp109743 -a(S'system_code_change/4' -p109744 -S'system_code_change(${1:S}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p109745 -tp109746 -a(S'system_continue/3' -p109747 -S'system_continue(${1:Param1}, ${2:Param2}, ${3:S}) $4' -p109748 -tp109749 -a(S'system_terminate/4' -p109750 -S'system_terminate(${1:Reason}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p109751 -tp109752 -a(S'undo_config/1' -p109753 -S'undo_config(${1:Pid}) $2' -p109754 -tp109755 -asS'wxGraphicsPen' -p109756 -(lp109757 -(S'getRenderer/1' -p109758 -S'getRenderer(${1:This}) $2' -p109759 -tp109760 -a(S'isNull/1' -p109761 -S'isNull(${1:This}) $2' -p109762 -tp109763 -a(S'parent_class/1' -p109764 -S'parent_class(${1:Param1}) $2' -p109765 -tp109766 -asS'beam_utils' -p109767 -(lp109768 -(S'bif_to_test/3' -p109769 -S'bif_to_test(${1:Param1}, ${2:Ops}, ${3:Fail}) $4' -p109770 -tp109771 -a(S'code_at/2' -p109772 -S'code_at(${1:L}, ${2:Ll}) $3' -p109773 -tp109774 -a(S'combine_heap_needs/2' -p109775 -S'combine_heap_needs(${1:Words}, ${2:Words}) $3' -p109776 -tp109777 -a(S'delete_live_annos/1' -p109778 -S'delete_live_annos(${1:Param1}) $2' -p109779 -tp109780 -a(S'empty_label_index/0' -p109781 -S'empty_label_index() $1' -p109782 -tp109783 -a(S'index_label/3' -p109784 -S'index_label(${1:Lbl}, ${2:Is0}, ${3:Acc}) $4' -p109785 -tp109786 -a(S'index_labels/1' -p109787 -S'index_labels(${1:Is}) $2' -p109788 -tp109789 -a(S'is_killed/3' -p109790 -S'is_killed(${1:R}, ${2:Is}, ${3:D}) $4' -p109791 -tp109792 -a(S'is_killed_at/3' -p109793 -S'is_killed_at(${1:R}, ${2:Lbl}, ${3:D}) $4' -p109794 -tp109795 -a(S'is_killed_block/2' -p109796 -S'is_killed_block(${1:R}, ${2:Is}) $3' -p109797 -tp109798 -a(S'is_not_used/3' -p109799 -S'is_not_used(${1:R}, ${2:Is}, ${3:D}) $4' -p109800 -tp109801 -a(S'is_not_used_at/3' -p109802 -S'is_not_used_at(${1:R}, ${2:Lbl}, ${3:D}) $4' -p109803 -tp109804 -a(S'is_pure_test/1' -p109805 -S'is_pure_test(${1:Param1}) $2' -p109806 -tp109807 -a(S'live_opt/1' -p109808 -S'live_opt(${1:Is0}) $2' -p109809 -tp109810 -asS'wxCheckBox' -p109811 -(lp109812 -(S'cacheBestSize/2' -p109813 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p109814 -tp109815 -a(S'captureMouse/1' -p109816 -S'captureMouse(${1:This}) $2' -p109817 -tp109818 -a(S'center/1' -p109819 -S'center(${1:This}) $2' -p109820 -tp109821 -a(S'center/2' -p109822 -S'center(${1:This}, ${2:Options}) $3' -p109823 -tp109824 -a(S'centerOnParent/1' -p109825 -S'centerOnParent(${1:This}) $2' -p109826 -tp109827 -a(S'centerOnParent/2' -p109828 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p109829 -tp109830 -a(S'centre/1' -p109831 -S'centre(${1:This}) $2' -p109832 -tp109833 -a(S'centre/2' -p109834 -S'centre(${1:This}, ${2:Options}) $3' -p109835 -tp109836 -a(S'centreOnParent/1' -p109837 -S'centreOnParent(${1:This}) $2' -p109838 -tp109839 -a(S'centreOnParent/2' -p109840 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p109841 -tp109842 -a(S'clearBackground/1' -p109843 -S'clearBackground(${1:This}) $2' -p109844 -tp109845 -a(S'clientToScreen/2' -p109846 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p109847 -tp109848 -a(S'clientToScreen/3' -p109849 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p109850 -tp109851 -a(S'close/1' -p109852 -S'close(${1:This}) $2' -p109853 -tp109854 -a(S'close/2' -p109855 -S'close(${1:This}, ${2:Options}) $3' -p109856 -tp109857 -a(S'connect/2' -p109858 -S'connect(${1:This}, ${2:EventType}) $3' -p109859 -tp109860 -a(S'connect/3' -p109861 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p109862 -tp109863 -a(S'convertDialogToPixels/2' -p109864 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p109865 -tp109866 -a(S'convertPixelsToDialog/2' -p109867 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p109868 -tp109869 -a(S'create/4' -p109870 -S'create(${1:This}, ${2:Parent}, ${3:Id}, ${4:Label}) $5' -p109871 -tp109872 -a(S'create/5' -p109873 -S'create(${1:This}, ${2:Parent}, ${3:Id}, ${4:Label}, ${5:Param5}) $6' -p109874 -tp109875 -a(S'destroy/1' -p109876 -S'destroy(${1:This}) $2' -p109877 -tp109878 -a(S'destroyChildren/1' -p109879 -S'destroyChildren(${1:This}) $2' -p109880 -tp109881 -a(S'disable/1' -p109882 -S'disable(${1:This}) $2' -p109883 -tp109884 -a(S'disconnect/1' -p109885 -S'disconnect(${1:This}) $2' -p109886 -tp109887 -a(S'disconnect/2' -p109888 -S'disconnect(${1:This}, ${2:EventType}) $3' -p109889 -tp109890 -a(S'disconnect/3' -p109891 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p109892 -tp109893 -a(S'enable/1' -p109894 -S'enable(${1:This}) $2' -p109895 -tp109896 -a(S'enable/2' -p109897 -S'enable(${1:This}, ${2:Options}) $3' -p109898 -tp109899 -a(S'findWindow/2' -p109900 -S'findWindow(${1:This}, ${2:Winid}) $3' -p109901 -tp109902 -a(S'fit/1' -p109903 -S'fit(${1:This}) $2' -p109904 -tp109905 -a(S'fitInside/1' -p109906 -S'fitInside(${1:This}) $2' -p109907 -tp109908 -a(S'freeze/1' -p109909 -S'freeze(${1:This}) $2' -p109910 -tp109911 -a(S'get3StateValue/1' -p109912 -S'get3StateValue(${1:This}) $2' -p109913 -tp109914 -a(S'getAcceleratorTable/1' -p109915 -S'getAcceleratorTable(${1:This}) $2' -p109916 -tp109917 -a(S'getBackgroundColour/1' -p109918 -S'getBackgroundColour(${1:This}) $2' -p109919 -tp109920 -a(S'getBackgroundStyle/1' -p109921 -S'getBackgroundStyle(${1:This}) $2' -p109922 -tp109923 -a(S'getBestSize/1' -p109924 -S'getBestSize(${1:This}) $2' -p109925 -tp109926 -a(S'getCaret/1' -p109927 -S'getCaret(${1:This}) $2' -p109928 -tp109929 -a(S'getCharHeight/1' -p109930 -S'getCharHeight(${1:This}) $2' -p109931 -tp109932 -a(S'getCharWidth/1' -p109933 -S'getCharWidth(${1:This}) $2' -p109934 -tp109935 -a(S'getChildren/1' -p109936 -S'getChildren(${1:This}) $2' -p109937 -tp109938 -a(S'getClientSize/1' -p109939 -S'getClientSize(${1:This}) $2' -p109940 -tp109941 -a(S'getContainingSizer/1' -p109942 -S'getContainingSizer(${1:This}) $2' -p109943 -tp109944 -a(S'getCursor/1' -p109945 -S'getCursor(${1:This}) $2' -p109946 -tp109947 -a(S'getDropTarget/1' -p109948 -S'getDropTarget(${1:This}) $2' -p109949 -tp109950 -a(S'getEventHandler/1' -p109951 -S'getEventHandler(${1:This}) $2' -p109952 -tp109953 -a(S'getExtraStyle/1' -p109954 -S'getExtraStyle(${1:This}) $2' -p109955 -tp109956 -a(S'getFont/1' -p109957 -S'getFont(${1:This}) $2' -p109958 -tp109959 -a(S'getForegroundColour/1' -p109960 -S'getForegroundColour(${1:This}) $2' -p109961 -tp109962 -a(S'getGrandParent/1' -p109963 -S'getGrandParent(${1:This}) $2' -p109964 -tp109965 -a(S'getHandle/1' -p109966 -S'getHandle(${1:This}) $2' -p109967 -tp109968 -a(S'getHelpText/1' -p109969 -S'getHelpText(${1:This}) $2' -p109970 -tp109971 -a(S'getId/1' -p109972 -S'getId(${1:This}) $2' -p109973 -tp109974 -a(S'getLabel/1' -p109975 -S'getLabel(${1:This}) $2' -p109976 -tp109977 -a(S'getMaxSize/1' -p109978 -S'getMaxSize(${1:This}) $2' -p109979 -tp109980 -a(S'getMinSize/1' -p109981 -S'getMinSize(${1:This}) $2' -p109982 -tp109983 -a(S'getName/1' -p109984 -S'getName(${1:This}) $2' -p109985 -tp109986 -a(S'getParent/1' -p109987 -S'getParent(${1:This}) $2' -p109988 -tp109989 -a(S'getPosition/1' -p109990 -S'getPosition(${1:This}) $2' -p109991 -tp109992 -a(S'getRect/1' -p109993 -S'getRect(${1:This}) $2' -p109994 -tp109995 -a(S'getScreenPosition/1' -p109996 -S'getScreenPosition(${1:This}) $2' -p109997 -tp109998 -a(S'getScreenRect/1' -p109999 -S'getScreenRect(${1:This}) $2' -p110000 -tp110001 -a(S'getScrollPos/2' -p110002 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p110003 -tp110004 -a(S'getScrollRange/2' -p110005 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p110006 -tp110007 -a(S'getScrollThumb/2' -p110008 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p110009 -tp110010 -a(S'getSize/1' -p110011 -S'getSize(${1:This}) $2' -p110012 -tp110013 -a(S'getSizer/1' -p110014 -S'getSizer(${1:This}) $2' -p110015 -tp110016 -a(S'getTextExtent/2' -p110017 -S'getTextExtent(${1:This}, ${2:String}) $3' -p110018 -tp110019 -a(S'getTextExtent/3' -p110020 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p110021 -tp110022 -a(S'getToolTip/1' -p110023 -S'getToolTip(${1:This}) $2' -p110024 -tp110025 -a(S'getUpdateRegion/1' -p110026 -S'getUpdateRegion(${1:This}) $2' -p110027 -tp110028 -a(S'getValue/1' -p110029 -S'getValue(${1:This}) $2' -p110030 -tp110031 -a(S'getVirtualSize/1' -p110032 -S'getVirtualSize(${1:This}) $2' -p110033 -tp110034 -a(S'getWindowStyleFlag/1' -p110035 -S'getWindowStyleFlag(${1:This}) $2' -p110036 -tp110037 -a(S'getWindowVariant/1' -p110038 -S'getWindowVariant(${1:This}) $2' -p110039 -tp110040 -a(S'hasCapture/1' -p110041 -S'hasCapture(${1:This}) $2' -p110042 -tp110043 -a(S'hasScrollbar/2' -p110044 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p110045 -tp110046 -a(S'hasTransparentBackground/1' -p110047 -S'hasTransparentBackground(${1:This}) $2' -p110048 -tp110049 -a(S'hide/1' -p110050 -S'hide(${1:This}) $2' -p110051 -tp110052 -a(S'inheritAttributes/1' -p110053 -S'inheritAttributes(${1:This}) $2' -p110054 -tp110055 -a(S'initDialog/1' -p110056 -S'initDialog(${1:This}) $2' -p110057 -tp110058 -a(S'invalidateBestSize/1' -p110059 -S'invalidateBestSize(${1:This}) $2' -p110060 -tp110061 -a(S'is3State/1' -p110062 -S'is3State(${1:This}) $2' -p110063 -tp110064 -a(S'is3rdStateAllowedForUser/1' -p110065 -S'is3rdStateAllowedForUser(${1:This}) $2' -p110066 -tp110067 -a(S'isChecked/1' -p110068 -S'isChecked(${1:This}) $2' -p110069 -tp110070 -a(S'isEnabled/1' -p110071 -S'isEnabled(${1:This}) $2' -p110072 -tp110073 -a(S'isExposed/2' -p110074 -S'isExposed(${1:This}, ${2:Pt}) $3' -p110075 -tp110076 -a(S'isExposed/3' -p110077 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p110078 -tp110079 -a(S'isExposed/5' -p110080 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p110081 -tp110082 -a(S'isRetained/1' -p110083 -S'isRetained(${1:This}) $2' -p110084 -tp110085 -a(S'isShown/1' -p110086 -S'isShown(${1:This}) $2' -p110087 -tp110088 -a(S'isTopLevel/1' -p110089 -S'isTopLevel(${1:This}) $2' -p110090 -tp110091 -a(S'layout/1' -p110092 -S'layout(${1:This}) $2' -p110093 -tp110094 -a(S'lineDown/1' -p110095 -S'lineDown(${1:This}) $2' -p110096 -tp110097 -a(S'lineUp/1' -p110098 -S'lineUp(${1:This}) $2' -p110099 -tp110100 -a(S'lower/1' -p110101 -S'lower(${1:This}) $2' -p110102 -tp110103 -a(S'makeModal/1' -p110104 -S'makeModal(${1:This}) $2' -p110105 -tp110106 -a(S'makeModal/2' -p110107 -S'makeModal(${1:This}, ${2:Options}) $3' -p110108 -tp110109 -a(S'move/2' -p110110 -S'move(${1:This}, ${2:Pt}) $3' -p110111 -tp110112 -a(S'move/3' -p110113 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p110114 -tp110115 -a(S'move/4' -p110116 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p110117 -tp110118 -a(S'moveAfterInTabOrder/2' -p110119 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p110120 -tp110121 -a(S'moveBeforeInTabOrder/2' -p110122 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p110123 -tp110124 -a(S'navigate/1' -p110125 -S'navigate(${1:This}) $2' -p110126 -tp110127 -a(S'navigate/2' -p110128 -S'navigate(${1:This}, ${2:Options}) $3' -p110129 -tp110130 -a(S'new/0' -p110131 -S'new() $1' -p110132 -tp110133 -a(S'new/3' -p110134 -S'new(${1:Parent}, ${2:Id}, ${3:Label}) $4' -p110135 -tp110136 -a(S'new/4' -p110137 -S'new(${1:Parent}, ${2:Id}, ${3:Label}, ${4:Param4}) $5' -p110138 -tp110139 -a(S'pageDown/1' -p110140 -S'pageDown(${1:This}) $2' -p110141 -tp110142 -a(S'pageUp/1' -p110143 -S'pageUp(${1:This}) $2' -p110144 -tp110145 -a(S'parent_class/1' -p110146 -S'parent_class(${1:Param1}) $2' -p110147 -tp110148 -a(S'popEventHandler/1' -p110149 -S'popEventHandler(${1:This}) $2' -p110150 -tp110151 -a(S'popEventHandler/2' -p110152 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p110153 -tp110154 -a(S'popupMenu/2' -p110155 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p110156 -tp110157 -a(S'popupMenu/3' -p110158 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p110159 -tp110160 -a(S'popupMenu/4' -p110161 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p110162 -tp110163 -a(S'raise/1' -p110164 -S'raise(${1:This}) $2' -p110165 -tp110166 -a(S'refresh/1' -p110167 -S'refresh(${1:This}) $2' -p110168 -tp110169 -a(S'refresh/2' -p110170 -S'refresh(${1:This}, ${2:Options}) $3' -p110171 -tp110172 -a(S'refreshRect/2' -p110173 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p110174 -tp110175 -a(S'refreshRect/3' -p110176 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p110177 -tp110178 -a(S'releaseMouse/1' -p110179 -S'releaseMouse(${1:This}) $2' -p110180 -tp110181 -a(S'removeChild/2' -p110182 -S'removeChild(${1:This}, ${2:Child}) $3' -p110183 -tp110184 -a(S'reparent/2' -p110185 -S'reparent(${1:This}, ${2:NewParent}) $3' -p110186 -tp110187 -a(S'screenToClient/1' -p110188 -S'screenToClient(${1:This}) $2' -p110189 -tp110190 -a(S'screenToClient/2' -p110191 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p110192 -tp110193 -a(S'scrollLines/2' -p110194 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p110195 -tp110196 -a(S'scrollPages/2' -p110197 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p110198 -tp110199 -a(S'scrollWindow/3' -p110200 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p110201 -tp110202 -a(S'scrollWindow/4' -p110203 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p110204 -tp110205 -a(S'set3StateValue/2' -p110206 -S'set3StateValue(${1:This}, ${2:State}) $3' -p110207 -tp110208 -a(S'setAcceleratorTable/2' -p110209 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p110210 -tp110211 -a(S'setAutoLayout/2' -p110212 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p110213 -tp110214 -a(S'setBackgroundColour/2' -p110215 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p110216 -tp110217 -a(S'setBackgroundStyle/2' -p110218 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p110219 -tp110220 -a(S'setCaret/2' -p110221 -S'setCaret(${1:This}, ${2:Caret}) $3' -p110222 -tp110223 -a(S'setClientSize/2' -p110224 -S'setClientSize(${1:This}, ${2:Size}) $3' -p110225 -tp110226 -a(S'setClientSize/3' -p110227 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p110228 -tp110229 -a(S'setContainingSizer/2' -p110230 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p110231 -tp110232 -a(S'setCursor/2' -p110233 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p110234 -tp110235 -a(S'setDropTarget/2' -p110236 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p110237 -tp110238 -a(S'setExtraStyle/2' -p110239 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p110240 -tp110241 -a(S'setFocus/1' -p110242 -S'setFocus(${1:This}) $2' -p110243 -tp110244 -a(S'setFocusFromKbd/1' -p110245 -S'setFocusFromKbd(${1:This}) $2' -p110246 -tp110247 -a(S'setFont/2' -p110248 -S'setFont(${1:This}, ${2:Font}) $3' -p110249 -tp110250 -a(S'setForegroundColour/2' -p110251 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p110252 -tp110253 -a(S'setHelpText/2' -p110254 -S'setHelpText(${1:This}, ${2:Text}) $3' -p110255 -tp110256 -a(S'setId/2' -p110257 -S'setId(${1:This}, ${2:Winid}) $3' -p110258 -tp110259 -a(S'setLabel/2' -p110260 -S'setLabel(${1:This}, ${2:Label}) $3' -p110261 -tp110262 -a(S'setMaxSize/2' -p110263 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p110264 -tp110265 -a(S'setMinSize/2' -p110266 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p110267 -tp110268 -a(S'setName/2' -p110269 -S'setName(${1:This}, ${2:Name}) $3' -p110270 -tp110271 -a(S'setOwnBackgroundColour/2' -p110272 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p110273 -tp110274 -a(S'setOwnFont/2' -p110275 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p110276 -tp110277 -a(S'setOwnForegroundColour/2' -p110278 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p110279 -tp110280 -a(S'setPalette/2' -p110281 -S'setPalette(${1:This}, ${2:Pal}) $3' -p110282 -tp110283 -a(S'setScrollPos/3' -p110284 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p110285 -tp110286 -a(S'setScrollPos/4' -p110287 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p110288 -tp110289 -a(S'setScrollbar/5' -p110290 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p110291 -tp110292 -a(S'setScrollbar/6' -p110293 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p110294 -tp110295 -a(S'setSize/2' -p110296 -S'setSize(${1:This}, ${2:Rect}) $3' -p110297 -tp110298 -a(S'setSize/3' -p110299 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p110300 -tp110301 -a(S'setSize/5' -p110302 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p110303 -tp110304 -a(S'setSize/6' -p110305 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p110306 -tp110307 -a(S'setSizeHints/2' -p110308 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p110309 -tp110310 -a(S'setSizeHints/3' -p110311 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p110312 -tp110313 -a(S'setSizeHints/4' -p110314 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p110315 -tp110316 -a(S'setSizer/2' -p110317 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p110318 -tp110319 -a(S'setSizer/3' -p110320 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p110321 -tp110322 -a(S'setSizerAndFit/2' -p110323 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p110324 -tp110325 -a(S'setSizerAndFit/3' -p110326 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p110327 -tp110328 -a(S'setThemeEnabled/2' -p110329 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p110330 -tp110331 -a(S'setToolTip/2' -p110332 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p110333 -tp110334 -a(S'setValue/2' -p110335 -S'setValue(${1:This}, ${2:State}) $3' -p110336 -tp110337 -a(S'setVirtualSize/2' -p110338 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p110339 -tp110340 -a(S'setVirtualSize/3' -p110341 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p110342 -tp110343 -a(S'setVirtualSizeHints/2' -p110344 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p110345 -tp110346 -a(S'setVirtualSizeHints/3' -p110347 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p110348 -tp110349 -a(S'setVirtualSizeHints/4' -p110350 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p110351 -tp110352 -a(S'setWindowStyle/2' -p110353 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p110354 -tp110355 -a(S'setWindowStyleFlag/2' -p110356 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p110357 -tp110358 -a(S'setWindowVariant/2' -p110359 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p110360 -tp110361 -a(S'shouldInheritColours/1' -p110362 -S'shouldInheritColours(${1:This}) $2' -p110363 -tp110364 -a(S'show/1' -p110365 -S'show(${1:This}) $2' -p110366 -tp110367 -a(S'show/2' -p110368 -S'show(${1:This}, ${2:Options}) $3' -p110369 -tp110370 -a(S'thaw/1' -p110371 -S'thaw(${1:This}) $2' -p110372 -tp110373 -a(S'transferDataFromWindow/1' -p110374 -S'transferDataFromWindow(${1:This}) $2' -p110375 -tp110376 -a(S'transferDataToWindow/1' -p110377 -S'transferDataToWindow(${1:This}) $2' -p110378 -tp110379 -a(S'update/1' -p110380 -S'update(${1:This}) $2' -p110381 -tp110382 -a(S'updateWindowUI/1' -p110383 -S'updateWindowUI(${1:This}) $2' -p110384 -tp110385 -a(S'updateWindowUI/2' -p110386 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p110387 -tp110388 -a(S'validate/1' -p110389 -S'validate(${1:This}) $2' -p110390 -tp110391 -a(S'warpPointer/3' -p110392 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p110393 -tp110394 -asS'megaco_text_scanner' -p110395 -(lp110396 -(S'scan/1' -p110397 -S'scan(${1:Bin}) $2' -p110398 -tp110399 -a(S'skip_sep_chars/2' -p110400 -S'skip_sep_chars(${1:All}, ${2:Line}) $3' -p110401 -tp110402 -asS'httpd_conf' -p110403 -(lp110404 -(S'check_enum/2' -p110405 -S'check_enum(${1:Enum}, ${2:Param2}) $3' -p110406 -tp110407 -a(S'clean/1' -p110408 -S'clean(${1:String}) $2' -p110409 -tp110410 -a(S'custom_clean/3' -p110411 -S'custom_clean(${1:String}, ${2:MoreBefore}, ${3:MoreAfter}) $4' -p110412 -tp110413 -a(S'get_config/2' -p110414 -S'get_config(${1:Address}, ${2:Port}) $3' -p110415 -tp110416 -a(S'get_config/3' -p110417 -S'get_config(${1:Address}, ${2:Port}, ${3:Properties}) $4' -p110418 -tp110419 -a(S'is_directory/1' -p110420 -S'is_directory(${1:Directory}) $2' -p110421 -tp110422 -a(S'is_file/1' -p110423 -S'is_file(${1:File}) $2' -p110424 -tp110425 -a(S'load/1' -p110426 -S'load(${1:ConfigFile}) $2' -p110427 -tp110428 -a(S'load/2' -p110429 -S'load(${1:Param1}, ${2:Param2}) $3' -p110430 -tp110431 -a(S'load_mime_types/1' -p110432 -S'load_mime_types(${1:MimeTypesFile}) $2' -p110433 -tp110434 -a(S'lookup/2' -p110435 -S'lookup(${1:Tab}, ${2:Key}) $3' -p110436 -tp110437 -a(S'lookup/3' -p110438 -S'lookup(${1:Tab}, ${2:Key}, ${3:Default}) $4' -p110439 -tp110440 -a(S'lookup/4' -p110441 -S'lookup(${1:Address}, ${2:Port}, ${3:Key}, ${4:Default}) $5' -p110442 -tp110443 -a(S'lookup_socket_type/1' -p110444 -S'lookup_socket_type(${1:ConfigDB}) $2' -p110445 -tp110446 -a(S'make_integer/1' -p110447 -S'make_integer(${1:String}) $2' -p110448 -tp110449 -a(S'remove/1' -p110450 -S'remove(${1:ConfigDB}) $2' -p110451 -tp110452 -a(S'remove_all/1' -p110453 -S'remove_all(${1:ConfigDB}) $2' -p110454 -tp110455 -a(S'store/1' -p110456 -S'store(${1:ConfigList0}) $2' -p110457 -tp110458 -a(S'store/2' -p110459 -S'store(${1:Entry}, ${2:ConfigList}) $3' -p110460 -tp110461 -a(S'validate_properties/1' -p110462 -S'validate_properties(${1:Properties}) $2' -p110463 -tp110464 -asS'tftp_binary' -p110465 -(lp110466 -(S'abort/3' -p110467 -S'abort(${1:Code}, ${2:Text}, ${3:State}) $4' -p110468 -tp110469 -a(S'open/6' -p110470 -S'open(${1:Peer}, ${2:Access}, ${3:Filename}, ${4:Mode}, ${5:SuggestedOptions}, ${6:Initial}) $7' -p110471 -tp110472 -a(S'prepare/6' -p110473 -S'prepare(${1:Param1}, ${2:Access}, ${3:Filename}, ${4:Mode}, ${5:SuggestedOptions}, ${6:Initial}) $7' -p110474 -tp110475 -a(S'read/1' -p110476 -S'read(${1:State}) $2' -p110477 -tp110478 -a(S'write/2' -p110479 -S'write(${1:Bin}, ${2:State}) $3' -p110480 -tp110481 -asS'otpsgml_layout' -p110482 -(lp110483 -(S'module/2' -p110484 -S'module(${1:Element}, ${2:Options}) $3' -p110485 -tp110486 -a(S'overview/2' -p110487 -S'overview(${1:Param1}, ${2:Options}) $3' -p110488 -tp110489 -a(S'package/2' -p110490 -S'package(${1:Param1}, ${2:Options}) $3' -p110491 -tp110492 -a(S'type/1' -p110493 -S'type(${1:Es}) $2' -p110494 -tp110495 -asS'dialyzer_cl' -p110496 -(lp110497 -(S'start/1' -p110498 -S'start(${1:Options}) $2' -p110499 -tp110500 -asS'ssh_channel' -p110501 -(lp110502 -(S'cache_create/0' -p110503 -S'cache_create() $1' -p110504 -tp110505 -a(S'cache_delete/1' -p110506 -S'cache_delete(${1:Cache}) $2' -p110507 -tp110508 -a(S'cache_delete/2' -p110509 -S'cache_delete(${1:Cache}, ${2:Key}) $3' -p110510 -tp110511 -a(S'cache_find/2' -p110512 -S'cache_find(${1:ChannelPid}, ${2:Cache}) $3' -p110513 -tp110514 -a(S'cache_foldl/3' -p110515 -S'cache_foldl(${1:Fun}, ${2:Acc}, ${3:Cache}) $4' -p110516 -tp110517 -a(S'cache_lookup/2' -p110518 -S'cache_lookup(${1:Cache}, ${2:Key}) $3' -p110519 -tp110520 -a(S'cache_update/2' -p110521 -S'cache_update() $1' -p110522 -tp110523 -a(S'call/2' -p110524 -S'call(${1:ChannelPid}, ${2:Msg}) $3' -p110525 -tp110526 -a(S'call/3' -p110527 -S'call(${1:ChannelPid}, ${2:Msg}, ${3:TimeOute}) $4' -p110528 -tp110529 -a(S'cast/2' -p110530 -S'cast(${1:ChannelPid}, ${2:Msg}) $3' -p110531 -tp110532 -a(S'code_change/3' -p110533 -S'code_change() $1' -p110534 -tp110535 -a(S'enter_loop/1' -p110536 -S'enter_loop(${1:State}) $2' -p110537 -tp110538 -a(S'handle_call/3' -p110539 -S'handle_call() $1' -p110540 -tp110541 -a(S'handle_cast/2' -p110542 -S'handle_cast() $1' -p110543 -tp110544 -a(S'handle_info/2' -p110545 -S'handle_info() $1' -p110546 -tp110547 -a(S'init/1' -p110548 -S'init(${1:Options}) $2' -p110549 -tp110550 -a(S'reply/2' -p110551 -S'reply(${1:From}, ${2:Msg}) $3' -p110552 -tp110553 -a(S'start/4' -p110554 -S'start(${1:ConnectionManager}, ${2:ChannelId}, ${3:CallBack}, ${4:CbInitArgs}) $5' -p110555 -tp110556 -a(S'start/5' -p110557 -S'start(${1:ConnectionManager}, ${2:ChannelId}, ${3:CallBack}, ${4:CbInitArgs}, ${5:Exec}) $6' -p110558 -tp110559 -a(S'start_link/4' -p110560 -S'start_link(${1:ConnectionManager}, ${2:ChannelId}, ${3:CallBack}, ${4:CbInitArgs}) $5' -p110561 -tp110562 -a(S'start_link/5' -p110563 -S'start_link(${1:ConnectionManager}, ${2:ChannelId}, ${3:CallBack}, ${4:CbInitArgs}, ${5:Exec}) $6' -p110564 -tp110565 -a(S'terminate/2' -p110566 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p110567 -tp110568 -asS'orber_ifr_utils' -p110569 -(lp110570 -(S'construct/3' -p110571 -S'construct(${1:Record}, ${2:Field}, ${3:Value}) $4' -p110572 -tp110573 -a(S'create_repository/0' -p110574 -S'create_repository() $1' -p110575 -tp110576 -a(S'existence_check/2' -p110577 -S'existence_check(${1:Param1}, ${2:Id}) $3' -p110578 -tp110579 -a(S'existence_check/3' -p110580 -S'existence_check(${1:Id}, ${2:Tab}, ${3:FieldNum}) $4' -p110581 -tp110582 -a(S'get_field/2' -p110583 -S'get_field(${1:Objref}, ${2:FieldName}) $3' -p110584 -tp110585 -a(S'get_object/1' -p110586 -S'get_object(${1:Objref}) $2' -p110587 -tp110588 -a(S'ifr_transaction_read/1' -p110589 -S'ifr_transaction_read(${1:Fun}) $2' -p110590 -tp110591 -a(S'ifr_transaction_read_write/1' -p110592 -S'ifr_transaction_read_write(${1:Fun}) $2' -p110593 -tp110594 -a(S'ifr_transaction_write/1' -p110595 -S'ifr_transaction_write(${1:Fun}) $2' -p110596 -tp110597 -a(S'index/2' -p110598 -S'index(${1:List}, ${2:Element}) $3' -p110599 -tp110600 -a(S'init_DB/2' -p110601 -S'init_DB(${1:Timeout}, ${2:Options}) $3' -p110602 -tp110603 -a(S'init_DB/3' -p110604 -S'init_DB(${1:Timeout}, ${2:Options}, ${3:LightIFR}) $4' -p110605 -tp110606 -a(S'makeref/1' -p110607 -S'makeref(${1:Obj}) $2' -p110608 -tp110609 -a(S'read_result/1' -p110610 -S'read_result(${1:Qres}) $2' -p110611 -tp110612 -a(S'select/2' -p110613 -S'select(${1:Record}, ${2:Field}) $3' -p110614 -tp110615 -a(S'set_field/3' -p110616 -S'set_field(${1:Objref}, ${2:FieldName}, ${3:Value}) $4' -p110617 -tp110618 -a(S'set_object/1' -p110619 -S'set_object(${1:Object}) $2' -p110620 -tp110621 -a(S'unique/0' -p110622 -S'unique() $1' -p110623 -tp110624 -a(S'write_result/1' -p110625 -S'write_result(${1:Wres}) $2' -p110626 -tp110627 -asS'net_kernel' -p110628 -(lp110629 -(S'allow/1' -p110630 -S'allow(${1:Nodes}) $2' -p110631 -tp110632 -a(S'aux_ticker/4' -p110633 -S'aux_ticker(${1:NetKernel}, ${2:NewTick}, ${3:OldTick}, ${4:TransitionPeriod}) $5' -p110634 -tp110635 -a(S'code_change/3' -p110636 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p110637 -tp110638 -a(S'connect/1' -p110639 -S'connect(${1:Node}) $2' -p110640 -tp110641 -a(S'connect_node/1' -p110642 -S'connect_node(${1:Node}) $2' -p110643 -tp110644 -a(S'connecttime/0' -p110645 -S'connecttime() $1' -p110646 -tp110647 -a(S'disconnect/1' -p110648 -S'disconnect(${1:Node}) $2' -p110649 -tp110650 -a(S'do_spawn/3' -p110651 -S'do_spawn(${1:SpawnFuncArgs}, ${2:SpawnOpts}, ${3:State}) $4' -p110652 -tp110653 -a(S'epmd_module/0' -p110654 -S'epmd_module() $1' -p110655 -tp110656 -a(S'get_net_ticktime/0' -p110657 -S'get_net_ticktime() $1' -p110658 -tp110659 -a(S'handle_call/3' -p110660 -S'handle_call(${1:Param1}, ${2:From}, ${3:State}) $4' -p110661 -tp110662 -a(S'handle_cast/2' -p110663 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p110664 -tp110665 -a(S'handle_info/2' -p110666 -S'handle_info(${1:X}, ${2:State}) $3' -p110667 -tp110668 -a(S'hidden_connect/1' -p110669 -S'hidden_connect(${1:Node}) $2' -p110670 -tp110671 -a(S'hidden_connect_node/1' -p110672 -S'hidden_connect_node(${1:Node}) $2' -p110673 -tp110674 -a(S'i/0' -p110675 -S'i() $1' -p110676 -tp110677 -a(S'i/1' -p110678 -S'i(${1:Node}) $2' -p110679 -tp110680 -a(S'init/1' -p110681 -S'init(${1:Param1}) $2' -p110682 -tp110683 -a(S'kernel_apply/3' -p110684 -S'kernel_apply(${1:M}, ${2:F}, ${3:A}) $4' -p110685 -tp110686 -a(S'longnames/0' -p110687 -S'longnames() $1' -p110688 -tp110689 -a(S'monitor_nodes/1' -p110690 -S'monitor_nodes(${1:Flag}) $2' -p110691 -tp110692 -a(S'monitor_nodes/2' -p110693 -S'monitor_nodes(${1:Flag}, ${2:Options}) $3' -p110694 -tp110695 -a(S'node_info/1' -p110696 -S'node_info(${1:Node}) $2' -p110697 -tp110698 -a(S'node_info/2' -p110699 -S'node_info(${1:Node}, ${2:Key}) $3' -p110700 -tp110701 -a(S'nodes_info/0' -p110702 -S'nodes_info() $1' -p110703 -tp110704 -a(S'passive_cnct/1' -p110705 -S'passive_cnct(${1:Node}) $2' -p110706 -tp110707 -a(S'passive_connect_monitor/2' -p110708 -S'passive_connect_monitor(${1:Parent}, ${2:Node}) $3' -p110709 -tp110710 -a(S'protocol_childspecs/0' -p110711 -S'protocol_childspecs() $1' -p110712 -tp110713 -a(S'publish_on_node/1' -p110714 -S'publish_on_node(${1:Node}) $2' -p110715 -tp110716 -a(S'set_net_ticktime/1' -p110717 -S'set_net_ticktime(${1:NetTicktime}) $2' -p110718 -tp110719 -a(S'set_net_ticktime/2' -p110720 -S'set_net_ticktime(${1:NetTicktime}, ${2:TransitionPeriod}) $3' -p110721 -tp110722 -a(S'spawn_func/6' -p110723 -S'spawn_func(${1:Param1}, ${2:Param2}, ${3:M}, ${4:F}, ${5:A}, ${6:Gleader}) $7' -p110724 -tp110725 -a(S'start/1' -p110726 -S'start(${1:Args}) $2' -p110727 -tp110728 -a(S'start_link/1' -p110729 -S'start_link(${1:Param1}) $2' -p110730 -tp110731 -a(S'stop/0' -p110732 -S'stop() $1' -p110733 -tp110734 -a(S'terminate/2' -p110735 -S'terminate(${1:Param1}, ${2:State}) $3' -p110736 -tp110737 -a(S'ticker/2' -p110738 -S'ticker(${1:Kernel}, ${2:Tick}) $3' -p110739 -tp110740 -a(S'ticker_loop/2' -p110741 -S'ticker_loop(${1:Kernel}, ${2:Tick}) $3' -p110742 -tp110743 -a(S'update_publish_nodes/1' -p110744 -S'update_publish_nodes(${1:Ns}) $2' -p110745 -tp110746 -a(S'verbose/1' -p110747 -S'verbose(${1:Level}) $2' -p110748 -tp110749 -asS'code' -p110750 -(lp110751 -(S'add_path/1' -p110752 -S'add_path(${1:Dir}) $2' -p110753 -tp110754 -a(S'add_patha/1' -p110755 -S'add_patha(${1:Dir}) $2' -p110756 -tp110757 -a(S'add_paths/1' -p110758 -S'add_paths(${1:Dirs}) $2' -p110759 -tp110760 -a(S'add_pathsa/1' -p110761 -S'add_pathsa(${1:Dirs}) $2' -p110762 -tp110763 -a(S'add_pathsz/1' -p110764 -S'add_pathsz(${1:Dirs}) $2' -p110765 -tp110766 -a(S'add_pathz/1' -p110767 -S'add_pathz(${1:Dir}) $2' -p110768 -tp110769 -a(S'all_loaded/0' -p110770 -S'all_loaded() $1' -p110771 -tp110772 -a(S'clash/0' -p110773 -S'clash() $1' -p110774 -tp110775 -a(S'compiler_dir/0' -p110776 -S'compiler_dir() $1' -p110777 -tp110778 -a(S'del_path/1' -p110779 -S'del_path(${1:NameOrDir}) $2' -p110780 -tp110781 -a(S'delete/1' -p110782 -S'delete(${1:Module}) $2' -p110783 -tp110784 -a(S'ensure_loaded/1' -p110785 -S'ensure_loaded(${1:Module}) $2' -p110786 -tp110787 -a(S'get_object_code/1' -p110788 -S'get_object_code(${1:Module}) $2' -p110789 -tp110790 -a(S'get_path/0' -p110791 -S'get_path() $1' -p110792 -tp110793 -a(S'is_loaded/1' -p110794 -S'is_loaded(${1:Module}) $2' -p110795 -tp110796 -a(S'is_sticky/1' -p110797 -S'is_sticky(${1:Module}) $2' -p110798 -tp110799 -a(S'lib_dir/0' -p110800 -S'lib_dir() $1' -p110801 -tp110802 -a(S'lib_dir/1' -p110803 -S'lib_dir(${1:Name}) $2' -p110804 -tp110805 -a(S'lib_dir/2' -p110806 -S'lib_dir(${1:Name}, ${2:SubDir}) $3' -p110807 -tp110808 -a(S'load_abs/1' -p110809 -S'load_abs(${1:Filename}) $2' -p110810 -tp110811 -a(S'load_abs/2' -p110812 -S'load_abs(${1:File}, ${2:M}) $3' -p110813 -tp110814 -a(S'load_binary/3' -p110815 -S'load_binary(${1:Module}, ${2:Filename}, ${3:Binary}) $4' -p110816 -tp110817 -a(S'load_file/1' -p110818 -S'load_file(${1:Module}) $2' -p110819 -tp110820 -a(S'load_native_partial/2' -p110821 -S'load_native_partial(${1:Mod}, ${2:Bin}) $3' -p110822 -tp110823 -a(S'load_native_sticky/3' -p110824 -S'load_native_sticky(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p110825 -tp110826 -a(S'objfile_extension/0' -p110827 -S'objfile_extension() $1' -p110828 -tp110829 -a(S'priv_dir/1' -p110830 -S'priv_dir(${1:Name}) $2' -p110831 -tp110832 -a(S'purge/1' -p110833 -S'purge(${1:Module}) $2' -p110834 -tp110835 -a(S'rehash/0' -p110836 -S'rehash() $1' -p110837 -tp110838 -a(S'replace_path/2' -p110839 -S'replace_path(${1:Name}, ${2:Dir}) $3' -p110840 -tp110841 -a(S'root_dir/0' -p110842 -S'root_dir() $1' -p110843 -tp110844 -a(S'set_path/1' -p110845 -S'set_path(${1:Path}) $2' -p110846 -tp110847 -a(S'set_primary_archive/3' -p110848 -S'set_primary_archive() $1' -p110849 -tp110850 -a(S'soft_purge/1' -p110851 -S'soft_purge(${1:Module}) $2' -p110852 -tp110853 -a(S'start_link/0' -p110854 -S'start_link() $1' -p110855 -tp110856 -a(S'start_link/1' -p110857 -S'start_link(${1:Flags}) $2' -p110858 -tp110859 -a(S'stick_dir/1' -p110860 -S'stick_dir(${1:Dir}) $2' -p110861 -tp110862 -a(S'stick_mod/1' -p110863 -S'stick_mod(${1:Mod}) $2' -p110864 -tp110865 -a(S'stop/0' -p110866 -S'stop() $1' -p110867 -tp110868 -a(S'unstick_dir/1' -p110869 -S'unstick_dir(${1:Dir}) $2' -p110870 -tp110871 -a(S'unstick_mod/1' -p110872 -S'unstick_mod(${1:Mod}) $2' -p110873 -tp110874 -a(S'where_is_file/1' -p110875 -S'where_is_file(${1:Filename}) $2' -p110876 -tp110877 -a(S'where_is_file/2' -p110878 -S'where_is_file(${1:Path}, ${2:File}) $3' -p110879 -tp110880 -a(S'which/1' -p110881 -S'which(${1:Module}) $2' -p110882 -tp110883 -asS'gs' -p110884 -(lp110885 -(S'arc/1' -p110886 -S'arc(${1:ParentId}) $2' -p110887 -tp110888 -a(S'arc/2' -p110889 -S'arc(${1:ParentId}, ${2:Options}) $3' -p110890 -tp110891 -a(S'arc/3' -p110892 -S'arc(${1:Name}, ${2:ParentId}, ${3:Options}) $4' -p110893 -tp110894 -a(S'assq/2' -p110895 -S'assq(${1:Key}, ${2:List}) $3' -p110896 -tp110897 -a(S'button/1' -p110898 -S'button(${1:ParentId}) $2' -p110899 -tp110900 -a(S'button/2' -p110901 -S'button(${1:ParentId}, ${2:Options}) $3' -p110902 -tp110903 -a(S'button/3' -p110904 -S'button(${1:Name}, ${2:ParentId}, ${3:Options}) $4' -p110905 -tp110906 -a(S'canvas/1' -p110907 -S'canvas(${1:ParentId}) $2' -p110908 -tp110909 -a(S'canvas/2' -p110910 -S'canvas(${1:ParentId}, ${2:Options}) $3' -p110911 -tp110912 -a(S'canvas/3' -p110913 -S'canvas(${1:Name}, ${2:ParentId}, ${3:Options}) $4' -p110914 -tp110915 -a(S'checkbutton/1' -p110916 -S'checkbutton(${1:ParentId}) $2' -p110917 -tp110918 -a(S'checkbutton/2' -p110919 -S'checkbutton(${1:ParentId}, ${2:Options}) $3' -p110920 -tp110921 -a(S'checkbutton/3' -p110922 -S'checkbutton(${1:Name}, ${2:ParentId}, ${3:Options}) $4' -p110923 -tp110924 -a(S'config/2' -p110925 -S'config(${1:IdOrName}, ${2:Options}) $3' -p110926 -tp110927 -a(S'create/2' -p110928 -S'create(${1:Objtype}, ${2:Parent}) $3' -p110929 -tp110930 -a(S'create/3' -p110931 -S'create(${1:Objtype}, ${2:Parent}, ${3:Opts}) $4' -p110932 -tp110933 -a(S'create/4' -p110934 -S'create(${1:Objtype}, ${2:Name}, ${3:Parent}, ${4:Opts}) $5' -p110935 -tp110936 -a(S'create_tree/2' -p110937 -S'create_tree(${1:ParentId}, ${2:Tuple}) $3' -p110938 -tp110939 -a(S'creation_error/2' -p110940 -S'creation_error(${1:Param1}, ${2:BadResult}) $3' -p110941 -tp110942 -a(S'destroy/1' -p110943 -S'destroy(${1:IdOrName}) $2' -p110944 -tp110945 -a(S'editor/1' -p110946 -S'editor(${1:ParentId}) $2' -p110947 -tp110948 -a(S'editor/2' -p110949 -S'editor(${1:ParentId}, ${2:Options}) $3' -p110950 -tp110951 -a(S'editor/3' -p110952 -S'editor(${1:Name}, ${2:ParentId}, ${3:Options}) $4' -p110953 -tp110954 -a(S'entry/1' -p110955 -S'entry(${1:ParentId}) $2' -p110956 -tp110957 -a(S'entry/2' -p110958 -S'entry(${1:ParentId}, ${2:Options}) $3' -p110959 -tp110960 -a(S'entry/3' -p110961 -S'entry(${1:Name}, ${2:ParentId}, ${3:Options}) $4' -p110962 -tp110963 -a(S'error/2' -p110964 -S'error(${1:Format}, ${2:Data}) $3' -p110965 -tp110966 -a(S'foreach/3' -p110967 -S'foreach(${1:F}, ${2:ExtraArgs}, ${3:Param3}) $4' -p110968 -tp110969 -a(S'frame/1' -p110970 -S'frame(${1:ParentId}) $2' -p110971 -tp110972 -a(S'frame/2' -p110973 -S'frame(${1:ParentId}, ${2:Options}) $3' -p110974 -tp110975 -a(S'frame/3' -p110976 -S'frame(${1:Name}, ${2:ParentId}, ${3:Options}) $4' -p110977 -tp110978 -a(S'get_id/1' -p110979 -S'get_id(${1:Name}) $2' -p110980 -tp110981 -a(S'grid/1' -p110982 -S'grid(${1:ParentId}) $2' -p110983 -tp110984 -a(S'grid/2' -p110985 -S'grid(${1:ParentId}, ${2:Options}) $3' -p110986 -tp110987 -a(S'grid/3' -p110988 -S'grid(${1:Name}, ${2:ParentId}, ${3:Options}) $4' -p110989 -tp110990 -a(S'gridline/1' -p110991 -S'gridline(${1:ParentId}) $2' -p110992 -tp110993 -a(S'gridline/2' -p110994 -S'gridline(${1:ParentId}, ${2:Options}) $3' -p110995 -tp110996 -a(S'gridline/3' -p110997 -S'gridline(${1:Name}, ${2:ParentId}, ${3:Options}) $4' -p110998 -tp110999 -a(S'image/1' -p111000 -S'image(${1:ParentId}) $2' -p111001 -tp111002 -a(S'image/2' -p111003 -S'image(${1:ParentId}, ${2:Options}) $3' -p111004 -tp111005 -a(S'image/3' -p111006 -S'image(${1:Name}, ${2:ParentId}, ${3:Options}) $4' -p111007 -tp111008 -a(S'info/1' -p111009 -S'info(${1:Option}) $2' -p111010 -tp111011 -a(S'is_id/1' -p111012 -S'is_id(${1:Param1}) $2' -p111013 -tp111014 -a(S'label/1' -p111015 -S'label(${1:ParentId}) $2' -p111016 -tp111017 -a(S'label/2' -p111018 -S'label(${1:ParentId}, ${2:Options}) $3' -p111019 -tp111020 -a(S'label/3' -p111021 -S'label(${1:Name}, ${2:ParentId}, ${3:Options}) $4' -p111022 -tp111023 -a(S'line/1' -p111024 -S'line(${1:ParentId}) $2' -p111025 -tp111026 -a(S'line/2' -p111027 -S'line(${1:ParentId}, ${2:Options}) $3' -p111028 -tp111029 -a(S'line/3' -p111030 -S'line(${1:Name}, ${2:ParentId}, ${3:Options}) $4' -p111031 -tp111032 -a(S'listbox/1' -p111033 -S'listbox(${1:ParentId}) $2' -p111034 -tp111035 -a(S'listbox/2' -p111036 -S'listbox(${1:ParentId}, ${2:Options}) $3' -p111037 -tp111038 -a(S'listbox/3' -p111039 -S'listbox(${1:Name}, ${2:ParentId}, ${3:Options}) $4' -p111040 -tp111041 -a(S'menu/1' -p111042 -S'menu(${1:ParentId}) $2' -p111043 -tp111044 -a(S'menu/2' -p111045 -S'menu(${1:ParentId}, ${2:Options}) $3' -p111046 -tp111047 -a(S'menu/3' -p111048 -S'menu(${1:Name}, ${2:ParentId}, ${3:Options}) $4' -p111049 -tp111050 -a(S'menubar/1' -p111051 -S'menubar(${1:ParentId}) $2' -p111052 -tp111053 -a(S'menubar/2' -p111054 -S'menubar(${1:ParentId}, ${2:Options}) $3' -p111055 -tp111056 -a(S'menubar/3' -p111057 -S'menubar(${1:Name}, ${2:ParentId}, ${3:Options}) $4' -p111058 -tp111059 -a(S'menubutton/1' -p111060 -S'menubutton(${1:ParentId}) $2' -p111061 -tp111062 -a(S'menubutton/2' -p111063 -S'menubutton(${1:ParentId}, ${2:Options}) $3' -p111064 -tp111065 -a(S'menubutton/3' -p111066 -S'menubutton(${1:Name}, ${2:ParentId}, ${3:Options}) $4' -p111067 -tp111068 -a(S'menuitem/1' -p111069 -S'menuitem(${1:ParentId}) $2' -p111070 -tp111071 -a(S'menuitem/2' -p111072 -S'menuitem(${1:ParentId}, ${2:Options}) $3' -p111073 -tp111074 -a(S'menuitem/3' -p111075 -S'menuitem(${1:Name}, ${2:ParentId}, ${3:Options}) $4' -p111076 -tp111077 -a(S'message/1' -p111078 -S'message(${1:ParentId}) $2' -p111079 -tp111080 -a(S'message/2' -p111081 -S'message(${1:ParentId}, ${2:Options}) $3' -p111082 -tp111083 -a(S'message/3' -p111084 -S'message(${1:Name}, ${2:ParentId}, ${3:Options}) $4' -p111085 -tp111086 -a(S'oval/1' -p111087 -S'oval(${1:ParentId}) $2' -p111088 -tp111089 -a(S'oval/2' -p111090 -S'oval(${1:ParentId}, ${2:Options}) $3' -p111091 -tp111092 -a(S'oval/3' -p111093 -S'oval(${1:Name}, ${2:ParentId}, ${3:Options}) $4' -p111094 -tp111095 -a(S'pair/2' -p111096 -S'pair(${1:Key}, ${2:List}) $3' -p111097 -tp111098 -a(S'polygon/1' -p111099 -S'polygon(${1:ParentId}) $2' -p111100 -tp111101 -a(S'polygon/2' -p111102 -S'polygon(${1:ParentId}, ${2:Options}) $3' -p111103 -tp111104 -a(S'polygon/3' -p111105 -S'polygon(${1:Name}, ${2:ParentId}, ${3:Options}) $4' -p111106 -tp111107 -a(S'prompter/1' -p111108 -S'prompter(${1:ParentId}) $2' -p111109 -tp111110 -a(S'prompter/2' -p111111 -S'prompter(${1:ParentId}, ${2:Options}) $3' -p111112 -tp111113 -a(S'prompter/3' -p111114 -S'prompter(${1:Name}, ${2:ParentId}, ${3:Options}) $4' -p111115 -tp111116 -a(S'radiobutton/1' -p111117 -S'radiobutton(${1:ParentId}) $2' -p111118 -tp111119 -a(S'radiobutton/2' -p111120 -S'radiobutton(${1:ParentId}, ${2:Options}) $3' -p111121 -tp111122 -a(S'radiobutton/3' -p111123 -S'radiobutton(${1:Name}, ${2:ParentId}, ${3:Options}) $4' -p111124 -tp111125 -a(S'read/2' -p111126 -S'read(${1:IdOrName}, ${2:Option}) $3' -p111127 -tp111128 -a(S'rectangle/1' -p111129 -S'rectangle(${1:ParentId}) $2' -p111130 -tp111131 -a(S'rectangle/2' -p111132 -S'rectangle(${1:ParentId}, ${2:Options}) $3' -p111133 -tp111134 -a(S'rectangle/3' -p111135 -S'rectangle(${1:Name}, ${2:ParentId}, ${3:Options}) $4' -p111136 -tp111137 -a(S'scale/1' -p111138 -S'scale(${1:ParentId}) $2' -p111139 -tp111140 -a(S'scale/2' -p111141 -S'scale(${1:ParentId}, ${2:Options}) $3' -p111142 -tp111143 -a(S'scale/3' -p111144 -S'scale(${1:Name}, ${2:ParentId}, ${3:Options}) $4' -p111145 -tp111146 -a(S'scrollbar/1' -p111147 -S'scrollbar(${1:ParentId}) $2' -p111148 -tp111149 -a(S'scrollbar/2' -p111150 -S'scrollbar(${1:ParentId}, ${2:Options}) $3' -p111151 -tp111152 -a(S'scrollbar/3' -p111153 -S'scrollbar(${1:Name}, ${2:ParentId}, ${3:Options}) $4' -p111154 -tp111155 -a(S'start/0' -p111156 -S'start() $1' -p111157 -tp111158 -a(S'start/1' -p111159 -S'start(${1:Opts}) $2' -p111160 -tp111161 -a(S'stop/0' -p111162 -S'stop() $1' -p111163 -tp111164 -a(S'text/1' -p111165 -S'text(${1:ParentId}) $2' -p111166 -tp111167 -a(S'text/2' -p111168 -S'text(${1:ParentId}, ${2:Options}) $3' -p111169 -tp111170 -a(S'text/3' -p111171 -S'text(${1:Name}, ${2:ParentId}, ${3:Options}) $4' -p111172 -tp111173 -a(S'val/2' -p111174 -S'val(${1:ParentId}, ${2:Options}) $3' -p111175 -tp111176 -a(S'val/3' -p111177 -S'val(${1:Name}, ${2:ParentId}, ${3:Options}) $4' -p111178 -tp111179 -a(S'window/1' -p111180 -S'window(${1:ParentId}) $2' -p111181 -tp111182 -a(S'window/2' -p111183 -S'window(${1:ParentId}, ${2:Options}) $3' -p111184 -tp111185 -a(S'window/3' -p111186 -S'window(${1:Name}, ${2:ParentId}, ${3:Options}) $4' -p111187 -tp111188 -asS'wxSysColourChangedEvent' -p111189 -(lp111190 -(S'getId/1' -p111191 -S'getId(${1:This}) $2' -p111192 -tp111193 -a(S'getSkipped/1' -p111194 -S'getSkipped(${1:This}) $2' -p111195 -tp111196 -a(S'getTimestamp/1' -p111197 -S'getTimestamp(${1:This}) $2' -p111198 -tp111199 -a(S'isCommandEvent/1' -p111200 -S'isCommandEvent(${1:This}) $2' -p111201 -tp111202 -a(S'parent_class/1' -p111203 -S'parent_class(${1:Param1}) $2' -p111204 -tp111205 -a(S'resumePropagation/2' -p111206 -S'resumePropagation(${1:This}, ${2:PropagationLevel}) $3' -p111207 -tp111208 -a(S'shouldPropagate/1' -p111209 -S'shouldPropagate(${1:This}) $2' -p111210 -tp111211 -a(S'skip/1' -p111212 -S'skip(${1:This}) $2' -p111213 -tp111214 -a(S'skip/2' -p111215 -S'skip(${1:This}, ${2:Options}) $3' -p111216 -tp111217 -a(S'stopPropagation/1' -p111218 -S'stopPropagation(${1:This}) $2' -p111219 -tp111220 -asS'ic_array_java' -p111221 -(lp111222 -(S'gen/4' -p111223 -S'gen(${1:G}, ${2:N}, ${3:X}, ${4:Array}) $5' -p111224 -tp111225 -asS'ct_cover' -p111226 -(lp111227 -(S'add_nodes/1' -p111228 -S'add_nodes(${1:Nodes}) $2' -p111229 -tp111230 -a(S'get_spec/1' -p111231 -S'get_spec(${1:File}) $2' -p111232 -tp111233 -a(S'remove_nodes/1' -p111234 -S'remove_nodes(${1:Nodes}) $2' -p111235 -tp111236 -asS'gl' -p111237 -(lp111238 -(S"'begin'/1" -p111239 -S"'begin'(${1:Mode}) $2" -p111240 -tp111241 -a(S"'end'/0" -p111242 -S"'end'() $1" -p111243 -tp111244 -a(S'accum/2' -p111245 -S'accum(${1:Op}, ${2:Value}) $3' -p111246 -tp111247 -a(S'activeShaderProgram/2' -p111248 -S'activeShaderProgram(${1:Pipeline}, ${2:Program}) $3' -p111249 -tp111250 -a(S'activeTexture/1' -p111251 -S'activeTexture(${1:Texture}) $2' -p111252 -tp111253 -a(S'alphaFunc/2' -p111254 -S'alphaFunc(${1:Func}, ${2:Ref}) $3' -p111255 -tp111256 -a(S'areTexturesResident/1' -p111257 -S'areTexturesResident(${1:Textures}) $2' -p111258 -tp111259 -a(S'arrayElement/1' -p111260 -S'arrayElement(${1:I}) $2' -p111261 -tp111262 -a(S'attachObjectARB/2' -p111263 -S'attachObjectARB(${1:ContainerObj}, ${2:Obj}) $3' -p111264 -tp111265 -a(S'attachShader/2' -p111266 -S'attachShader(${1:Program}, ${2:Shader}) $3' -p111267 -tp111268 -a(S'beginConditionalRender/2' -p111269 -S'beginConditionalRender(${1:Id}, ${2:Mode}) $3' -p111270 -tp111271 -a(S'beginQuery/2' -p111272 -S'beginQuery(${1:Target}, ${2:Id}) $3' -p111273 -tp111274 -a(S'beginQueryIndexed/3' -p111275 -S'beginQueryIndexed(${1:Target}, ${2:Index}, ${3:Id}) $4' -p111276 -tp111277 -a(S'beginTransformFeedback/1' -p111278 -S'beginTransformFeedback(${1:PrimitiveMode}) $2' -p111279 -tp111280 -a(S'bindAttribLocation/3' -p111281 -S'bindAttribLocation(${1:Program}, ${2:Index}, ${3:Name}) $4' -p111282 -tp111283 -a(S'bindAttribLocationARB/3' -p111284 -S'bindAttribLocationARB(${1:ProgramObj}, ${2:Index}, ${3:Name}) $4' -p111285 -tp111286 -a(S'bindBuffer/2' -p111287 -S'bindBuffer(${1:Target}, ${2:Buffer}) $3' -p111288 -tp111289 -a(S'bindBufferBase/3' -p111290 -S'bindBufferBase(${1:Target}, ${2:Index}, ${3:Buffer}) $4' -p111291 -tp111292 -a(S'bindBufferRange/5' -p111293 -S'bindBufferRange(${1:Target}, ${2:Index}, ${3:Buffer}, ${4:Offset}, ${5:Size}) $6' -p111294 -tp111295 -a(S'bindFragDataLocation/3' -p111296 -S'bindFragDataLocation(${1:Program}, ${2:Color}, ${3:Name}) $4' -p111297 -tp111298 -a(S'bindFragDataLocationIndexed/4' -p111299 -S'bindFragDataLocationIndexed(${1:Program}, ${2:ColorNumber}, ${3:Index}, ${4:Name}) $5' -p111300 -tp111301 -a(S'bindFramebuffer/2' -p111302 -S'bindFramebuffer(${1:Target}, ${2:Framebuffer}) $3' -p111303 -tp111304 -a(S'bindImageTexture/7' -p111305 -S'bindImageTexture(${1:Unit}, ${2:Texture}, ${3:Level}, ${4:Layered}, ${5:Layer}, ${6:Access}, ${7:Format}) $8' -p111306 -tp111307 -a(S'bindProgramARB/2' -p111308 -S'bindProgramARB(${1:Target}, ${2:Program}) $3' -p111309 -tp111310 -a(S'bindProgramPipeline/1' -p111311 -S'bindProgramPipeline(${1:Pipeline}) $2' -p111312 -tp111313 -a(S'bindRenderbuffer/2' -p111314 -S'bindRenderbuffer(${1:Target}, ${2:Renderbuffer}) $3' -p111315 -tp111316 -a(S'bindSampler/2' -p111317 -S'bindSampler(${1:Unit}, ${2:Sampler}) $3' -p111318 -tp111319 -a(S'bindTexture/2' -p111320 -S'bindTexture(${1:Target}, ${2:Texture}) $3' -p111321 -tp111322 -a(S'bindTransformFeedback/2' -p111323 -S'bindTransformFeedback(${1:Target}, ${2:Id}) $3' -p111324 -tp111325 -a(S'bindVertexArray/1' -p111326 -S'bindVertexArray(${1:Array}) $2' -p111327 -tp111328 -a(S'bitmap/7' -p111329 -S'bitmap(${1:Width}, ${2:Height}, ${3:Xorig}, ${4:Yorig}, ${5:Xmove}, ${6:Ymove}, ${7:Bitmap}) $8' -p111330 -tp111331 -a(S'blendColor/4' -p111332 -S'blendColor(${1:Red}, ${2:Green}, ${3:Blue}, ${4:Alpha}) $5' -p111333 -tp111334 -a(S'blendEquation/1' -p111335 -S'blendEquation(${1:Mode}) $2' -p111336 -tp111337 -a(S'blendEquationSeparate/2' -p111338 -S'blendEquationSeparate(${1:ModeRGB}, ${2:ModeAlpha}) $3' -p111339 -tp111340 -a(S'blendEquationSeparatei/3' -p111341 -S'blendEquationSeparatei(${1:Buf}, ${2:ModeRGB}, ${3:ModeAlpha}) $4' -p111342 -tp111343 -a(S'blendEquationi/2' -p111344 -S'blendEquationi(${1:Buf}, ${2:Mode}) $3' -p111345 -tp111346 -a(S'blendFunc/2' -p111347 -S'blendFunc(${1:Sfactor}, ${2:Dfactor}) $3' -p111348 -tp111349 -a(S'blendFuncSeparate/4' -p111350 -S'blendFuncSeparate(${1:SfactorRGB}, ${2:DfactorRGB}, ${3:SfactorAlpha}, ${4:DfactorAlpha}) $5' -p111351 -tp111352 -a(S'blendFuncSeparatei/5' -p111353 -S'blendFuncSeparatei(${1:Buf}, ${2:SrcRGB}, ${3:DstRGB}, ${4:SrcAlpha}, ${5:DstAlpha}) $6' -p111354 -tp111355 -a(S'blendFunci/3' -p111356 -S'blendFunci(${1:Buf}, ${2:Src}, ${3:Dst}) $4' -p111357 -tp111358 -a(S'blitFramebuffer/10' -p111359 -S'blitFramebuffer(${1:SrcX0}, ${2:SrcY0}, ${3:SrcX1}, ${4:SrcY1}, ${5:DstX0}, ${6:DstY0}, ${7:DstX1}, ${8:DstY1}, ${9:Mask}, ${10:Filter}) $11' -p111360 -tp111361 -a(S'bufferData/4' -p111362 -S'bufferData(${1:Target}, ${2:Size}, ${3:Data}, ${4:Usage}) $5' -p111363 -tp111364 -a(S'bufferSubData/4' -p111365 -S'bufferSubData(${1:Target}, ${2:Offset}, ${3:Size}, ${4:Data}) $5' -p111366 -tp111367 -a(S'call/2' -p111368 -S'call(${1:Op}, ${2:Args}) $3' -p111369 -tp111370 -a(S'callList/1' -p111371 -S'callList(${1:List}) $2' -p111372 -tp111373 -a(S'callLists/1' -p111374 -S'callLists(${1:Lists}) $2' -p111375 -tp111376 -a(S'cast/2' -p111377 -S'cast(${1:Op}, ${2:Args}) $3' -p111378 -tp111379 -a(S'checkFramebufferStatus/1' -p111380 -S'checkFramebufferStatus(${1:Target}) $2' -p111381 -tp111382 -a(S'clampColor/2' -p111383 -S'clampColor(${1:Target}, ${2:Clamp}) $3' -p111384 -tp111385 -a(S'clear/1' -p111386 -S'clear(${1:Mask}) $2' -p111387 -tp111388 -a(S'clearAccum/4' -p111389 -S'clearAccum(${1:Red}, ${2:Green}, ${3:Blue}, ${4:Alpha}) $5' -p111390 -tp111391 -a(S'clearBufferfi/4' -p111392 -S'clearBufferfi(${1:Buffer}, ${2:Drawbuffer}, ${3:Depth}, ${4:Stencil}) $5' -p111393 -tp111394 -a(S'clearBufferfv/3' -p111395 -S'clearBufferfv(${1:Buffer}, ${2:Drawbuffer}, ${3:Value}) $4' -p111396 -tp111397 -a(S'clearBufferiv/3' -p111398 -S'clearBufferiv(${1:Buffer}, ${2:Drawbuffer}, ${3:Value}) $4' -p111399 -tp111400 -a(S'clearBufferuiv/3' -p111401 -S'clearBufferuiv(${1:Buffer}, ${2:Drawbuffer}, ${3:Value}) $4' -p111402 -tp111403 -a(S'clearColor/4' -p111404 -S'clearColor(${1:Red}, ${2:Green}, ${3:Blue}, ${4:Alpha}) $5' -p111405 -tp111406 -a(S'clearDepth/1' -p111407 -S'clearDepth(${1:Depth}) $2' -p111408 -tp111409 -a(S'clearDepthf/1' -p111410 -S'clearDepthf(${1:D}) $2' -p111411 -tp111412 -a(S'clearIndex/1' -p111413 -S'clearIndex(${1:C}) $2' -p111414 -tp111415 -a(S'clearStencil/1' -p111416 -S'clearStencil(${1:S}) $2' -p111417 -tp111418 -a(S'clientActiveTexture/1' -p111419 -S'clientActiveTexture(${1:Texture}) $2' -p111420 -tp111421 -a(S'clientWaitSync/3' -p111422 -S'clientWaitSync(${1:Sync}, ${2:Flags}, ${3:Timeout}) $4' -p111423 -tp111424 -a(S'clipPlane/2' -p111425 -S'clipPlane(${1:Plane}, ${2:Equation}) $3' -p111426 -tp111427 -a(S'color3b/3' -p111428 -S'color3b(${1:Red}, ${2:Green}, ${3:Blue}) $4' -p111429 -tp111430 -a(S'color3bv/1' -p111431 -S'color3bv(${1:V}) $2' -p111432 -tp111433 -a(S'color3d/3' -p111434 -S'color3d(${1:Red}, ${2:Green}, ${3:Blue}) $4' -p111435 -tp111436 -a(S'color3dv/1' -p111437 -S'color3dv(${1:V}) $2' -p111438 -tp111439 -a(S'color3f/3' -p111440 -S'color3f(${1:Red}, ${2:Green}, ${3:Blue}) $4' -p111441 -tp111442 -a(S'color3fv/1' -p111443 -S'color3fv(${1:V}) $2' -p111444 -tp111445 -a(S'color3i/3' -p111446 -S'color3i(${1:Red}, ${2:Green}, ${3:Blue}) $4' -p111447 -tp111448 -a(S'color3iv/1' -p111449 -S'color3iv(${1:V}) $2' -p111450 -tp111451 -a(S'color3s/3' -p111452 -S'color3s(${1:Red}, ${2:Green}, ${3:Blue}) $4' -p111453 -tp111454 -a(S'color3sv/1' -p111455 -S'color3sv(${1:V}) $2' -p111456 -tp111457 -a(S'color3ub/3' -p111458 -S'color3ub(${1:Red}, ${2:Green}, ${3:Blue}) $4' -p111459 -tp111460 -a(S'color3ubv/1' -p111461 -S'color3ubv(${1:V}) $2' -p111462 -tp111463 -a(S'color3ui/3' -p111464 -S'color3ui(${1:Red}, ${2:Green}, ${3:Blue}) $4' -p111465 -tp111466 -a(S'color3uiv/1' -p111467 -S'color3uiv(${1:V}) $2' -p111468 -tp111469 -a(S'color3us/3' -p111470 -S'color3us(${1:Red}, ${2:Green}, ${3:Blue}) $4' -p111471 -tp111472 -a(S'color3usv/1' -p111473 -S'color3usv(${1:V}) $2' -p111474 -tp111475 -a(S'color4b/4' -p111476 -S'color4b(${1:Red}, ${2:Green}, ${3:Blue}, ${4:Alpha}) $5' -p111477 -tp111478 -a(S'color4bv/1' -p111479 -S'color4bv(${1:V}) $2' -p111480 -tp111481 -a(S'color4d/4' -p111482 -S'color4d(${1:Red}, ${2:Green}, ${3:Blue}, ${4:Alpha}) $5' -p111483 -tp111484 -a(S'color4dv/1' -p111485 -S'color4dv(${1:V}) $2' -p111486 -tp111487 -a(S'color4f/4' -p111488 -S'color4f(${1:Red}, ${2:Green}, ${3:Blue}, ${4:Alpha}) $5' -p111489 -tp111490 -a(S'color4fv/1' -p111491 -S'color4fv(${1:V}) $2' -p111492 -tp111493 -a(S'color4i/4' -p111494 -S'color4i(${1:Red}, ${2:Green}, ${3:Blue}, ${4:Alpha}) $5' -p111495 -tp111496 -a(S'color4iv/1' -p111497 -S'color4iv(${1:V}) $2' -p111498 -tp111499 -a(S'color4s/4' -p111500 -S'color4s(${1:Red}, ${2:Green}, ${3:Blue}, ${4:Alpha}) $5' -p111501 -tp111502 -a(S'color4sv/1' -p111503 -S'color4sv(${1:V}) $2' -p111504 -tp111505 -a(S'color4ub/4' -p111506 -S'color4ub(${1:Red}, ${2:Green}, ${3:Blue}, ${4:Alpha}) $5' -p111507 -tp111508 -a(S'color4ubv/1' -p111509 -S'color4ubv(${1:V}) $2' -p111510 -tp111511 -a(S'color4ui/4' -p111512 -S'color4ui(${1:Red}, ${2:Green}, ${3:Blue}, ${4:Alpha}) $5' -p111513 -tp111514 -a(S'color4uiv/1' -p111515 -S'color4uiv(${1:V}) $2' -p111516 -tp111517 -a(S'color4us/4' -p111518 -S'color4us(${1:Red}, ${2:Green}, ${3:Blue}, ${4:Alpha}) $5' -p111519 -tp111520 -a(S'color4usv/1' -p111521 -S'color4usv(${1:V}) $2' -p111522 -tp111523 -a(S'colorMask/4' -p111524 -S'colorMask(${1:Red}, ${2:Green}, ${3:Blue}, ${4:Alpha}) $5' -p111525 -tp111526 -a(S'colorMaski/5' -p111527 -S'colorMaski(${1:Index}, ${2:R}, ${3:G}, ${4:B}, ${5:A}) $6' -p111528 -tp111529 -a(S'colorMaterial/2' -p111530 -S'colorMaterial(${1:Face}, ${2:Mode}) $3' -p111531 -tp111532 -a(S'colorPointer/4' -p111533 -S'colorPointer(${1:Size}, ${2:Type}, ${3:Stride}, ${4:Ptr}) $5' -p111534 -tp111535 -a(S'colorSubTable/6' -p111536 -S'colorSubTable(${1:Target}, ${2:Start}, ${3:Count}, ${4:Format}, ${5:Type}, ${6:Data}) $7' -p111537 -tp111538 -a(S'colorTable/6' -p111539 -S'colorTable(${1:Target}, ${2:Internalformat}, ${3:Width}, ${4:Format}, ${5:Type}, ${6:Table}) $7' -p111540 -tp111541 -a(S'colorTableParameterfv/3' -p111542 -S'colorTableParameterfv(${1:Target}, ${2:Pname}, ${3:Params}) $4' -p111543 -tp111544 -a(S'colorTableParameteriv/3' -p111545 -S'colorTableParameteriv(${1:Target}, ${2:Pname}, ${3:Params}) $4' -p111546 -tp111547 -a(S'compileShader/1' -p111548 -S'compileShader(${1:Shader}) $2' -p111549 -tp111550 -a(S'compileShaderARB/1' -p111551 -S'compileShaderARB(${1:ShaderObj}) $2' -p111552 -tp111553 -a(S'compileShaderIncludeARB/2' -p111554 -S'compileShaderIncludeARB(${1:Shader}, ${2:Path}) $3' -p111555 -tp111556 -a(S'compressedTexImage1D/7' -p111557 -S'compressedTexImage1D(${1:Target}, ${2:Level}, ${3:Internalformat}, ${4:Width}, ${5:Border}, ${6:ImageSize}, ${7:Data}) $8' -p111558 -tp111559 -a(S'compressedTexImage2D/8' -p111560 -S'compressedTexImage2D(${1:Target}, ${2:Level}, ${3:Internalformat}, ${4:Width}, ${5:Height}, ${6:Border}, ${7:ImageSize}, ${8:Data}) $9' -p111561 -tp111562 -a(S'compressedTexImage3D/9' -p111563 -S'compressedTexImage3D(${1:Target}, ${2:Level}, ${3:Internalformat}, ${4:Width}, ${5:Height}, ${6:Depth}, ${7:Border}, ${8:ImageSize}, ${9:Data}) $10' -p111564 -tp111565 -a(S'compressedTexSubImage1D/7' -p111566 -S'compressedTexSubImage1D(${1:Target}, ${2:Level}, ${3:Xoffset}, ${4:Width}, ${5:Format}, ${6:ImageSize}, ${7:Data}) $8' -p111567 -tp111568 -a(S'compressedTexSubImage2D/9' -p111569 -S'compressedTexSubImage2D(${1:Target}, ${2:Level}, ${3:Xoffset}, ${4:Yoffset}, ${5:Width}, ${6:Height}, ${7:Format}, ${8:ImageSize}, ${9:Data}) $10' -p111570 -tp111571 -a(S'compressedTexSubImage3D/11' -p111572 -S'compressedTexSubImage3D(${1:Target}, ${2:Level}, ${3:Xoffset}, ${4:Yoffset}, ${5:Zoffset}, ${6:Width}, ${7:Height}, ${8:Depth}, ${9:Format}, ${10:ImageSize}, ${11:Data}) $12' -p111573 -tp111574 -a(S'convolutionFilter1D/6' -p111575 -S'convolutionFilter1D(${1:Target}, ${2:Internalformat}, ${3:Width}, ${4:Format}, ${5:Type}, ${6:Image}) $7' -p111576 -tp111577 -a(S'convolutionFilter2D/7' -p111578 -S'convolutionFilter2D(${1:Target}, ${2:Internalformat}, ${3:Width}, ${4:Height}, ${5:Format}, ${6:Type}, ${7:Image}) $8' -p111579 -tp111580 -a(S'convolutionParameterf/3' -p111581 -S'convolutionParameterf(${1:Target}, ${2:Pname}, ${3:Params}) $4' -p111582 -tp111583 -a(S'convolutionParameterfv/3' -p111584 -S'convolutionParameterfv(${1:Target}, ${2:Pname}, ${3:Params}) $4' -p111585 -tp111586 -a(S'convolutionParameteri/3' -p111587 -S'convolutionParameteri(${1:Target}, ${2:Pname}, ${3:Params}) $4' -p111588 -tp111589 -a(S'convolutionParameteriv/3' -p111590 -S'convolutionParameteriv(${1:Target}, ${2:Pname}, ${3:Params}) $4' -p111591 -tp111592 -a(S'copyBufferSubData/5' -p111593 -S'copyBufferSubData(${1:ReadTarget}, ${2:WriteTarget}, ${3:ReadOffset}, ${4:WriteOffset}, ${5:Size}) $6' -p111594 -tp111595 -a(S'copyColorSubTable/5' -p111596 -S'copyColorSubTable(${1:Target}, ${2:Start}, ${3:X}, ${4:Y}, ${5:Width}) $6' -p111597 -tp111598 -a(S'copyColorTable/5' -p111599 -S'copyColorTable(${1:Target}, ${2:Internalformat}, ${3:X}, ${4:Y}, ${5:Width}) $6' -p111600 -tp111601 -a(S'copyConvolutionFilter1D/5' -p111602 -S'copyConvolutionFilter1D(${1:Target}, ${2:Internalformat}, ${3:X}, ${4:Y}, ${5:Width}) $6' -p111603 -tp111604 -a(S'copyConvolutionFilter2D/6' -p111605 -S'copyConvolutionFilter2D(${1:Target}, ${2:Internalformat}, ${3:X}, ${4:Y}, ${5:Width}, ${6:Height}) $7' -p111606 -tp111607 -a(S'copyPixels/5' -p111608 -S'copyPixels(${1:X}, ${2:Y}, ${3:Width}, ${4:Height}, ${5:Type}) $6' -p111609 -tp111610 -a(S'copyTexImage1D/7' -p111611 -S'copyTexImage1D(${1:Target}, ${2:Level}, ${3:Internalformat}, ${4:X}, ${5:Y}, ${6:Width}, ${7:Border}) $8' -p111612 -tp111613 -a(S'copyTexImage2D/8' -p111614 -S'copyTexImage2D(${1:Target}, ${2:Level}, ${3:Internalformat}, ${4:X}, ${5:Y}, ${6:Width}, ${7:Height}, ${8:Border}) $9' -p111615 -tp111616 -a(S'copyTexSubImage1D/6' -p111617 -S'copyTexSubImage1D(${1:Target}, ${2:Level}, ${3:Xoffset}, ${4:X}, ${5:Y}, ${6:Width}) $7' -p111618 -tp111619 -a(S'copyTexSubImage2D/8' -p111620 -S'copyTexSubImage2D(${1:Target}, ${2:Level}, ${3:Xoffset}, ${4:Yoffset}, ${5:X}, ${6:Y}, ${7:Width}, ${8:Height}) $9' -p111621 -tp111622 -a(S'copyTexSubImage3D/9' -p111623 -S'copyTexSubImage3D(${1:Target}, ${2:Level}, ${3:Xoffset}, ${4:Yoffset}, ${5:Zoffset}, ${6:X}, ${7:Y}, ${8:Width}, ${9:Height}) $10' -p111624 -tp111625 -a(S'createProgram/0' -p111626 -S'createProgram() $1' -p111627 -tp111628 -a(S'createProgramObjectARB/0' -p111629 -S'createProgramObjectARB() $1' -p111630 -tp111631 -a(S'createShader/1' -p111632 -S'createShader(${1:Type}) $2' -p111633 -tp111634 -a(S'createShaderObjectARB/1' -p111635 -S'createShaderObjectARB(${1:ShaderType}) $2' -p111636 -tp111637 -a(S'createShaderProgramv/2' -p111638 -S'createShaderProgramv(${1:Type}, ${2:Strings}) $3' -p111639 -tp111640 -a(S'cullFace/1' -p111641 -S'cullFace(${1:Mode}) $2' -p111642 -tp111643 -a(S'currentPaletteMatrixARB/1' -p111644 -S'currentPaletteMatrixARB(${1:Index}) $2' -p111645 -tp111646 -a(S'debugMessageControlARB/5' -p111647 -S'debugMessageControlARB(${1:Source}, ${2:Type}, ${3:Severity}, ${4:Ids}, ${5:Enabled}) $6' -p111648 -tp111649 -a(S'debugMessageInsertARB/5' -p111650 -S'debugMessageInsertARB(${1:Source}, ${2:Type}, ${3:Id}, ${4:Severity}, ${5:Buf}) $6' -p111651 -tp111652 -a(S'deleteBuffers/1' -p111653 -S'deleteBuffers(${1:Buffers}) $2' -p111654 -tp111655 -a(S'deleteFramebuffers/1' -p111656 -S'deleteFramebuffers(${1:Framebuffers}) $2' -p111657 -tp111658 -a(S'deleteLists/2' -p111659 -S'deleteLists(${1:List}, ${2:Range}) $3' -p111660 -tp111661 -a(S'deleteNamedStringARB/1' -p111662 -S'deleteNamedStringARB(${1:Name}) $2' -p111663 -tp111664 -a(S'deleteObjectARB/1' -p111665 -S'deleteObjectARB(${1:Obj}) $2' -p111666 -tp111667 -a(S'deleteProgram/1' -p111668 -S'deleteProgram(${1:Program}) $2' -p111669 -tp111670 -a(S'deleteProgramPipelines/1' -p111671 -S'deleteProgramPipelines(${1:Pipelines}) $2' -p111672 -tp111673 -a(S'deleteProgramsARB/1' -p111674 -S'deleteProgramsARB(${1:Programs}) $2' -p111675 -tp111676 -a(S'deleteQueries/1' -p111677 -S'deleteQueries(${1:Ids}) $2' -p111678 -tp111679 -a(S'deleteRenderbuffers/1' -p111680 -S'deleteRenderbuffers(${1:Renderbuffers}) $2' -p111681 -tp111682 -a(S'deleteSamplers/1' -p111683 -S'deleteSamplers(${1:Samplers}) $2' -p111684 -tp111685 -a(S'deleteShader/1' -p111686 -S'deleteShader(${1:Shader}) $2' -p111687 -tp111688 -a(S'deleteSync/1' -p111689 -S'deleteSync(${1:Sync}) $2' -p111690 -tp111691 -a(S'deleteTextures/1' -p111692 -S'deleteTextures(${1:Textures}) $2' -p111693 -tp111694 -a(S'deleteTransformFeedbacks/1' -p111695 -S'deleteTransformFeedbacks(${1:Ids}) $2' -p111696 -tp111697 -a(S'deleteVertexArrays/1' -p111698 -S'deleteVertexArrays(${1:Arrays}) $2' -p111699 -tp111700 -a(S'depthBoundsEXT/2' -p111701 -S'depthBoundsEXT(${1:Zmin}, ${2:Zmax}) $3' -p111702 -tp111703 -a(S'depthFunc/1' -p111704 -S'depthFunc(${1:Func}) $2' -p111705 -tp111706 -a(S'depthMask/1' -p111707 -S'depthMask(${1:Flag}) $2' -p111708 -tp111709 -a(S'depthRange/2' -p111710 -S'depthRange(${1:Near_val}, ${2:Far_val}) $3' -p111711 -tp111712 -a(S'depthRangeArrayv/2' -p111713 -S'depthRangeArrayv(${1:First}, ${2:V}) $3' -p111714 -tp111715 -a(S'depthRangeIndexed/3' -p111716 -S'depthRangeIndexed(${1:Index}, ${2:N}, ${3:F}) $4' -p111717 -tp111718 -a(S'depthRangef/2' -p111719 -S'depthRangef(${1:N}, ${2:F}) $3' -p111720 -tp111721 -a(S'detachObjectARB/2' -p111722 -S'detachObjectARB(${1:ContainerObj}, ${2:AttachedObj}) $3' -p111723 -tp111724 -a(S'detachShader/2' -p111725 -S'detachShader(${1:Program}, ${2:Shader}) $3' -p111726 -tp111727 -a(S'disable/1' -p111728 -S'disable(${1:Cap}) $2' -p111729 -tp111730 -a(S'disableClientState/1' -p111731 -S'disableClientState(${1:Cap}) $2' -p111732 -tp111733 -a(S'disableVertexAttribArray/1' -p111734 -S'disableVertexAttribArray(${1:Index}) $2' -p111735 -tp111736 -a(S'disablei/2' -p111737 -S'disablei(${1:Target}, ${2:Index}) $3' -p111738 -tp111739 -a(S'drawArrays/3' -p111740 -S'drawArrays(${1:Mode}, ${2:First}, ${3:Count}) $4' -p111741 -tp111742 -a(S'drawArraysIndirect/2' -p111743 -S'drawArraysIndirect(${1:Mode}, ${2:Indirect}) $3' -p111744 -tp111745 -a(S'drawArraysInstanced/4' -p111746 -S'drawArraysInstanced(${1:Mode}, ${2:First}, ${3:Count}, ${4:Primcount}) $5' -p111747 -tp111748 -a(S'drawArraysInstancedBaseInstance/5' -p111749 -S'drawArraysInstancedBaseInstance(${1:Mode}, ${2:First}, ${3:Count}, ${4:Primcount}, ${5:Baseinstance}) $6' -p111750 -tp111751 -a(S'drawBuffer/1' -p111752 -S'drawBuffer(${1:Mode}) $2' -p111753 -tp111754 -a(S'drawBuffers/1' -p111755 -S'drawBuffers(${1:Bufs}) $2' -p111756 -tp111757 -a(S'drawElements/4' -p111758 -S'drawElements(${1:Mode}, ${2:Count}, ${3:Type}, ${4:Indices}) $5' -p111759 -tp111760 -a(S'drawElementsBaseVertex/5' -p111761 -S'drawElementsBaseVertex(${1:Mode}, ${2:Count}, ${3:Type}, ${4:Indices}, ${5:Basevertex}) $6' -p111762 -tp111763 -a(S'drawElementsIndirect/3' -p111764 -S'drawElementsIndirect(${1:Mode}, ${2:Type}, ${3:Indirect}) $4' -p111765 -tp111766 -a(S'drawElementsInstanced/5' -p111767 -S'drawElementsInstanced(${1:Mode}, ${2:Count}, ${3:Type}, ${4:Indices}, ${5:Primcount}) $6' -p111768 -tp111769 -a(S'drawElementsInstancedBaseInstance/6' -p111770 -S'drawElementsInstancedBaseInstance(${1:Mode}, ${2:Count}, ${3:Type}, ${4:Indices}, ${5:Primcount}, ${6:Baseinstance}) $7' -p111771 -tp111772 -a(S'drawElementsInstancedBaseVertex/6' -p111773 -S'drawElementsInstancedBaseVertex(${1:Mode}, ${2:Count}, ${3:Type}, ${4:Indices}, ${5:Primcount}, ${6:Basevertex}) $7' -p111774 -tp111775 -a(S'drawElementsInstancedBaseVertexBaseInstance/7' -p111776 -S'drawElementsInstancedBaseVertexBaseInstance(${1:Mode}, ${2:Count}, ${3:Type}, ${4:Indices}, ${5:Primcount}, ${6:Basevertex}, ${7:Baseinstance}) $8' -p111777 -tp111778 -a(S'drawPixels/5' -p111779 -S'drawPixels(${1:Width}, ${2:Height}, ${3:Format}, ${4:Type}, ${5:Pixels}) $6' -p111780 -tp111781 -a(S'drawRangeElements/6' -p111782 -S'drawRangeElements(${1:Mode}, ${2:Start}, ${3:End}, ${4:Count}, ${5:Type}, ${6:Indices}) $7' -p111783 -tp111784 -a(S'drawRangeElementsBaseVertex/7' -p111785 -S'drawRangeElementsBaseVertex(${1:Mode}, ${2:Start}, ${3:End}, ${4:Count}, ${5:Type}, ${6:Indices}, ${7:Basevertex}) $8' -p111786 -tp111787 -a(S'drawTransformFeedback/2' -p111788 -S'drawTransformFeedback(${1:Mode}, ${2:Id}) $3' -p111789 -tp111790 -a(S'drawTransformFeedbackInstanced/3' -p111791 -S'drawTransformFeedbackInstanced(${1:Mode}, ${2:Id}, ${3:Primcount}) $4' -p111792 -tp111793 -a(S'drawTransformFeedbackStream/3' -p111794 -S'drawTransformFeedbackStream(${1:Mode}, ${2:Id}, ${3:Stream}) $4' -p111795 -tp111796 -a(S'drawTransformFeedbackStreamInstanced/4' -p111797 -S'drawTransformFeedbackStreamInstanced(${1:Mode}, ${2:Id}, ${3:Stream}, ${4:Primcount}) $5' -p111798 -tp111799 -a(S'edgeFlag/1' -p111800 -S'edgeFlag(${1:Flag}) $2' -p111801 -tp111802 -a(S'edgeFlagPointer/2' -p111803 -S'edgeFlagPointer(${1:Stride}, ${2:Ptr}) $3' -p111804 -tp111805 -a(S'edgeFlagv/1' -p111806 -S'edgeFlagv(${1:Flag}) $2' -p111807 -tp111808 -a(S'enable/1' -p111809 -S'enable(${1:Cap}) $2' -p111810 -tp111811 -a(S'enableClientState/1' -p111812 -S'enableClientState(${1:Cap}) $2' -p111813 -tp111814 -a(S'enableVertexAttribArray/1' -p111815 -S'enableVertexAttribArray(${1:Index}) $2' -p111816 -tp111817 -a(S'enablei/2' -p111818 -S'enablei(${1:Target}, ${2:Index}) $3' -p111819 -tp111820 -a(S'endConditionalRender/0' -p111821 -S'endConditionalRender() $1' -p111822 -tp111823 -a(S'endList/0' -p111824 -S'endList() $1' -p111825 -tp111826 -a(S'endQuery/1' -p111827 -S'endQuery(${1:Target}) $2' -p111828 -tp111829 -a(S'endQueryIndexed/2' -p111830 -S'endQueryIndexed(${1:Target}, ${2:Index}) $3' -p111831 -tp111832 -a(S'endTransformFeedback/0' -p111833 -S'endTransformFeedback() $1' -p111834 -tp111835 -a(S'evalCoord1d/1' -p111836 -S'evalCoord1d(${1:U}) $2' -p111837 -tp111838 -a(S'evalCoord1dv/1' -p111839 -S'evalCoord1dv(${1:U}) $2' -p111840 -tp111841 -a(S'evalCoord1f/1' -p111842 -S'evalCoord1f(${1:U}) $2' -p111843 -tp111844 -a(S'evalCoord1fv/1' -p111845 -S'evalCoord1fv(${1:U}) $2' -p111846 -tp111847 -a(S'evalCoord2d/2' -p111848 -S'evalCoord2d(${1:U}, ${2:V}) $3' -p111849 -tp111850 -a(S'evalCoord2dv/1' -p111851 -S'evalCoord2dv(${1:U}) $2' -p111852 -tp111853 -a(S'evalCoord2f/2' -p111854 -S'evalCoord2f(${1:U}, ${2:V}) $3' -p111855 -tp111856 -a(S'evalCoord2fv/1' -p111857 -S'evalCoord2fv(${1:U}) $2' -p111858 -tp111859 -a(S'evalMesh1/3' -p111860 -S'evalMesh1(${1:Mode}, ${2:I1}, ${3:I2}) $4' -p111861 -tp111862 -a(S'evalMesh2/5' -p111863 -S'evalMesh2(${1:Mode}, ${2:I1}, ${3:I2}, ${4:J1}, ${5:J2}) $6' -p111864 -tp111865 -a(S'evalPoint1/1' -p111866 -S'evalPoint1(${1:I}) $2' -p111867 -tp111868 -a(S'evalPoint2/2' -p111869 -S'evalPoint2(${1:I}, ${2:J}) $3' -p111870 -tp111871 -a(S'feedbackBuffer/3' -p111872 -S'feedbackBuffer(${1:Size}, ${2:Type}, ${3:Buffer}) $4' -p111873 -tp111874 -a(S'fenceSync/2' -p111875 -S'fenceSync(${1:Condition}, ${2:Flags}) $3' -p111876 -tp111877 -a(S'finish/0' -p111878 -S'finish() $1' -p111879 -tp111880 -a(S'flush/0' -p111881 -S'flush() $1' -p111882 -tp111883 -a(S'flushMappedBufferRange/3' -p111884 -S'flushMappedBufferRange(${1:Target}, ${2:Offset}, ${3:Length}) $4' -p111885 -tp111886 -a(S'fogCoordPointer/3' -p111887 -S'fogCoordPointer(${1:Type}, ${2:Stride}, ${3:Pointer}) $4' -p111888 -tp111889 -a(S'fogCoordd/1' -p111890 -S'fogCoordd(${1:Coord}) $2' -p111891 -tp111892 -a(S'fogCoorddv/1' -p111893 -S'fogCoorddv(${1:Coord}) $2' -p111894 -tp111895 -a(S'fogCoordf/1' -p111896 -S'fogCoordf(${1:Coord}) $2' -p111897 -tp111898 -a(S'fogCoordfv/1' -p111899 -S'fogCoordfv(${1:Coord}) $2' -p111900 -tp111901 -a(S'fogf/2' -p111902 -S'fogf(${1:Pname}, ${2:Param}) $3' -p111903 -tp111904 -a(S'fogfv/2' -p111905 -S'fogfv(${1:Pname}, ${2:Params}) $3' -p111906 -tp111907 -a(S'fogi/2' -p111908 -S'fogi(${1:Pname}, ${2:Param}) $3' -p111909 -tp111910 -a(S'fogiv/2' -p111911 -S'fogiv(${1:Pname}, ${2:Params}) $3' -p111912 -tp111913 -a(S'framebufferRenderbuffer/4' -p111914 -S'framebufferRenderbuffer(${1:Target}, ${2:Attachment}, ${3:Renderbuffertarget}, ${4:Renderbuffer}) $5' -p111915 -tp111916 -a(S'framebufferTexture/4' -p111917 -S'framebufferTexture(${1:Target}, ${2:Attachment}, ${3:Texture}, ${4:Level}) $5' -p111918 -tp111919 -a(S'framebufferTexture1D/5' -p111920 -S'framebufferTexture1D(${1:Target}, ${2:Attachment}, ${3:Textarget}, ${4:Texture}, ${5:Level}) $6' -p111921 -tp111922 -a(S'framebufferTexture2D/5' -p111923 -S'framebufferTexture2D(${1:Target}, ${2:Attachment}, ${3:Textarget}, ${4:Texture}, ${5:Level}) $6' -p111924 -tp111925 -a(S'framebufferTexture3D/6' -p111926 -S'framebufferTexture3D(${1:Target}, ${2:Attachment}, ${3:Textarget}, ${4:Texture}, ${5:Level}, ${6:Zoffset}) $7' -p111927 -tp111928 -a(S'framebufferTextureFaceARB/5' -p111929 -S'framebufferTextureFaceARB(${1:Target}, ${2:Attachment}, ${3:Texture}, ${4:Level}, ${5:Face}) $6' -p111930 -tp111931 -a(S'framebufferTextureLayer/5' -p111932 -S'framebufferTextureLayer(${1:Target}, ${2:Attachment}, ${3:Texture}, ${4:Level}, ${5:Layer}) $6' -p111933 -tp111934 -a(S'frontFace/1' -p111935 -S'frontFace(${1:Mode}) $2' -p111936 -tp111937 -a(S'frustum/6' -p111938 -S'frustum(${1:Left}, ${2:Right}, ${3:Bottom}, ${4:Top}, ${5:Near_val}, ${6:Far_val}) $7' -p111939 -tp111940 -a(S'genBuffers/1' -p111941 -S'genBuffers(${1:N}) $2' -p111942 -tp111943 -a(S'genFramebuffers/1' -p111944 -S'genFramebuffers(${1:N}) $2' -p111945 -tp111946 -a(S'genLists/1' -p111947 -S'genLists(${1:Range}) $2' -p111948 -tp111949 -a(S'genProgramPipelines/1' -p111950 -S'genProgramPipelines(${1:N}) $2' -p111951 -tp111952 -a(S'genProgramsARB/1' -p111953 -S'genProgramsARB(${1:N}) $2' -p111954 -tp111955 -a(S'genQueries/1' -p111956 -S'genQueries(${1:N}) $2' -p111957 -tp111958 -a(S'genRenderbuffers/1' -p111959 -S'genRenderbuffers(${1:N}) $2' -p111960 -tp111961 -a(S'genSamplers/1' -p111962 -S'genSamplers(${1:Count}) $2' -p111963 -tp111964 -a(S'genTextures/1' -p111965 -S'genTextures(${1:N}) $2' -p111966 -tp111967 -a(S'genTransformFeedbacks/1' -p111968 -S'genTransformFeedbacks(${1:N}) $2' -p111969 -tp111970 -a(S'genVertexArrays/1' -p111971 -S'genVertexArrays(${1:N}) $2' -p111972 -tp111973 -a(S'generateMipmap/1' -p111974 -S'generateMipmap(${1:Target}) $2' -p111975 -tp111976 -a(S'getActiveAttrib/3' -p111977 -S'getActiveAttrib(${1:Program}, ${2:Index}, ${3:BufSize}) $4' -p111978 -tp111979 -a(S'getActiveAttribARB/3' -p111980 -S'getActiveAttribARB(${1:ProgramObj}, ${2:Index}, ${3:MaxLength}) $4' -p111981 -tp111982 -a(S'getActiveSubroutineName/4' -p111983 -S'getActiveSubroutineName(${1:Program}, ${2:Shadertype}, ${3:Index}, ${4:Bufsize}) $5' -p111984 -tp111985 -a(S'getActiveSubroutineUniformName/4' -p111986 -S'getActiveSubroutineUniformName(${1:Program}, ${2:Shadertype}, ${3:Index}, ${4:Bufsize}) $5' -p111987 -tp111988 -a(S'getActiveUniform/3' -p111989 -S'getActiveUniform(${1:Program}, ${2:Index}, ${3:BufSize}) $4' -p111990 -tp111991 -a(S'getActiveUniformARB/3' -p111992 -S'getActiveUniformARB(${1:ProgramObj}, ${2:Index}, ${3:MaxLength}) $4' -p111993 -tp111994 -a(S'getActiveUniformBlockName/3' -p111995 -S'getActiveUniformBlockName(${1:Program}, ${2:UniformBlockIndex}, ${3:BufSize}) $4' -p111996 -tp111997 -a(S'getActiveUniformBlockiv/4' -p111998 -S'getActiveUniformBlockiv(${1:Program}, ${2:UniformBlockIndex}, ${3:Pname}, ${4:Params}) $5' -p111999 -tp112000 -a(S'getActiveUniformName/3' -p112001 -S'getActiveUniformName(${1:Program}, ${2:UniformIndex}, ${3:BufSize}) $4' -p112002 -tp112003 -a(S'getActiveUniformsiv/3' -p112004 -S'getActiveUniformsiv(${1:Program}, ${2:UniformIndices}, ${3:Pname}) $4' -p112005 -tp112006 -a(S'getAttachedObjectsARB/2' -p112007 -S'getAttachedObjectsARB(${1:ContainerObj}, ${2:MaxCount}) $3' -p112008 -tp112009 -a(S'getAttachedShaders/2' -p112010 -S'getAttachedShaders(${1:Program}, ${2:MaxCount}) $3' -p112011 -tp112012 -a(S'getAttribLocation/2' -p112013 -S'getAttribLocation(${1:Program}, ${2:Name}) $3' -p112014 -tp112015 -a(S'getAttribLocationARB/2' -p112016 -S'getAttribLocationARB(${1:ProgramObj}, ${2:Name}) $3' -p112017 -tp112018 -a(S'getBooleani_v/2' -p112019 -S'getBooleani_v(${1:Target}, ${2:Index}) $3' -p112020 -tp112021 -a(S'getBooleanv/1' -p112022 -S'getBooleanv(${1:Pname}) $2' -p112023 -tp112024 -a(S'getBufferParameteri64v/2' -p112025 -S'getBufferParameteri64v(${1:Target}, ${2:Pname}) $3' -p112026 -tp112027 -a(S'getBufferParameteriv/2' -p112028 -S'getBufferParameteriv(${1:Target}, ${2:Pname}) $3' -p112029 -tp112030 -a(S'getBufferParameterivARB/2' -p112031 -S'getBufferParameterivARB(${1:Target}, ${2:Pname}) $3' -p112032 -tp112033 -a(S'getBufferSubData/4' -p112034 -S'getBufferSubData(${1:Target}, ${2:Offset}, ${3:Size}, ${4:Data}) $5' -p112035 -tp112036 -a(S'getClipPlane/1' -p112037 -S'getClipPlane(${1:Plane}) $2' -p112038 -tp112039 -a(S'getColorTable/4' -p112040 -S'getColorTable(${1:Target}, ${2:Format}, ${3:Type}, ${4:Table}) $5' -p112041 -tp112042 -a(S'getColorTableParameterfv/2' -p112043 -S'getColorTableParameterfv(${1:Target}, ${2:Pname}) $3' -p112044 -tp112045 -a(S'getColorTableParameteriv/2' -p112046 -S'getColorTableParameteriv(${1:Target}, ${2:Pname}) $3' -p112047 -tp112048 -a(S'getCompressedTexImage/3' -p112049 -S'getCompressedTexImage(${1:Target}, ${2:Lod}, ${3:Img}) $4' -p112050 -tp112051 -a(S'getConvolutionFilter/4' -p112052 -S'getConvolutionFilter(${1:Target}, ${2:Format}, ${3:Type}, ${4:Image}) $5' -p112053 -tp112054 -a(S'getConvolutionParameterfv/2' -p112055 -S'getConvolutionParameterfv(${1:Target}, ${2:Pname}) $3' -p112056 -tp112057 -a(S'getConvolutionParameteriv/2' -p112058 -S'getConvolutionParameteriv(${1:Target}, ${2:Pname}) $3' -p112059 -tp112060 -a(S'getDebugMessageLogARB/2' -p112061 -S'getDebugMessageLogARB(${1:Count}, ${2:Bufsize}) $3' -p112062 -tp112063 -a(S'getDoublei_v/2' -p112064 -S'getDoublei_v(${1:Target}, ${2:Index}) $3' -p112065 -tp112066 -a(S'getDoublev/1' -p112067 -S'getDoublev(${1:Pname}) $2' -p112068 -tp112069 -a(S'getError/0' -p112070 -S'getError() $1' -p112071 -tp112072 -a(S'getFloati_v/2' -p112073 -S'getFloati_v(${1:Target}, ${2:Index}) $3' -p112074 -tp112075 -a(S'getFloatv/1' -p112076 -S'getFloatv(${1:Pname}) $2' -p112077 -tp112078 -a(S'getFragDataIndex/2' -p112079 -S'getFragDataIndex(${1:Program}, ${2:Name}) $3' -p112080 -tp112081 -a(S'getFragDataLocation/2' -p112082 -S'getFragDataLocation(${1:Program}, ${2:Name}) $3' -p112083 -tp112084 -a(S'getFramebufferAttachmentParameteriv/3' -p112085 -S'getFramebufferAttachmentParameteriv(${1:Target}, ${2:Attachment}, ${3:Pname}) $4' -p112086 -tp112087 -a(S'getGraphicsResetStatusARB/0' -p112088 -S'getGraphicsResetStatusARB() $1' -p112089 -tp112090 -a(S'getHandleARB/1' -p112091 -S'getHandleARB(${1:Pname}) $2' -p112092 -tp112093 -a(S'getHistogram/5' -p112094 -S'getHistogram(${1:Target}, ${2:Reset}, ${3:Format}, ${4:Type}, ${5:Values}) $6' -p112095 -tp112096 -a(S'getHistogramParameterfv/2' -p112097 -S'getHistogramParameterfv(${1:Target}, ${2:Pname}) $3' -p112098 -tp112099 -a(S'getHistogramParameteriv/2' -p112100 -S'getHistogramParameteriv(${1:Target}, ${2:Pname}) $3' -p112101 -tp112102 -a(S'getInfoLogARB/2' -p112103 -S'getInfoLogARB(${1:Obj}, ${2:MaxLength}) $3' -p112104 -tp112105 -a(S'getInteger64i_v/2' -p112106 -S'getInteger64i_v(${1:Target}, ${2:Index}) $3' -p112107 -tp112108 -a(S'getInteger64v/1' -p112109 -S'getInteger64v(${1:Pname}) $2' -p112110 -tp112111 -a(S'getIntegeri_v/2' -p112112 -S'getIntegeri_v(${1:Target}, ${2:Index}) $3' -p112113 -tp112114 -a(S'getIntegerv/1' -p112115 -S'getIntegerv(${1:Pname}) $2' -p112116 -tp112117 -a(S'getInternalformativ/4' -p112118 -S'getInternalformativ(${1:Target}, ${2:Internalformat}, ${3:Pname}, ${4:BufSize}) $5' -p112119 -tp112120 -a(S'getLightfv/2' -p112121 -S'getLightfv(${1:Light}, ${2:Pname}) $3' -p112122 -tp112123 -a(S'getLightiv/2' -p112124 -S'getLightiv(${1:Light}, ${2:Pname}) $3' -p112125 -tp112126 -a(S'getMapdv/3' -p112127 -S'getMapdv(${1:Target}, ${2:Query}, ${3:V}) $4' -p112128 -tp112129 -a(S'getMapfv/3' -p112130 -S'getMapfv(${1:Target}, ${2:Query}, ${3:V}) $4' -p112131 -tp112132 -a(S'getMapiv/3' -p112133 -S'getMapiv(${1:Target}, ${2:Query}, ${3:V}) $4' -p112134 -tp112135 -a(S'getMaterialfv/2' -p112136 -S'getMaterialfv(${1:Face}, ${2:Pname}) $3' -p112137 -tp112138 -a(S'getMaterialiv/2' -p112139 -S'getMaterialiv(${1:Face}, ${2:Pname}) $3' -p112140 -tp112141 -a(S'getMinmax/5' -p112142 -S'getMinmax(${1:Target}, ${2:Reset}, ${3:Format}, ${4:Types}, ${5:Values}) $6' -p112143 -tp112144 -a(S'getMinmaxParameterfv/2' -p112145 -S'getMinmaxParameterfv(${1:Target}, ${2:Pname}) $3' -p112146 -tp112147 -a(S'getMinmaxParameteriv/2' -p112148 -S'getMinmaxParameteriv(${1:Target}, ${2:Pname}) $3' -p112149 -tp112150 -a(S'getMultisamplefv/2' -p112151 -S'getMultisamplefv(${1:Pname}, ${2:Index}) $3' -p112152 -tp112153 -a(S'getNamedStringARB/2' -p112154 -S'getNamedStringARB(${1:Name}, ${2:BufSize}) $3' -p112155 -tp112156 -a(S'getNamedStringivARB/2' -p112157 -S'getNamedStringivARB(${1:Name}, ${2:Pname}) $3' -p112158 -tp112159 -a(S'getObjectParameterfvARB/2' -p112160 -S'getObjectParameterfvARB(${1:Obj}, ${2:Pname}) $3' -p112161 -tp112162 -a(S'getObjectParameterivARB/2' -p112163 -S'getObjectParameterivARB(${1:Obj}, ${2:Pname}) $3' -p112164 -tp112165 -a(S'getPixelMapfv/2' -p112166 -S'getPixelMapfv(${1:Map}, ${2:Values}) $3' -p112167 -tp112168 -a(S'getPixelMapuiv/2' -p112169 -S'getPixelMapuiv(${1:Map}, ${2:Values}) $3' -p112170 -tp112171 -a(S'getPixelMapusv/2' -p112172 -S'getPixelMapusv(${1:Map}, ${2:Values}) $3' -p112173 -tp112174 -a(S'getPolygonStipple/0' -p112175 -S'getPolygonStipple() $1' -p112176 -tp112177 -a(S'getProgramBinary/2' -p112178 -S'getProgramBinary(${1:Program}, ${2:BufSize}) $3' -p112179 -tp112180 -a(S'getProgramEnvParameterdvARB/2' -p112181 -S'getProgramEnvParameterdvARB(${1:Target}, ${2:Index}) $3' -p112182 -tp112183 -a(S'getProgramEnvParameterfvARB/2' -p112184 -S'getProgramEnvParameterfvARB(${1:Target}, ${2:Index}) $3' -p112185 -tp112186 -a(S'getProgramInfoLog/2' -p112187 -S'getProgramInfoLog(${1:Program}, ${2:BufSize}) $3' -p112188 -tp112189 -a(S'getProgramLocalParameterdvARB/2' -p112190 -S'getProgramLocalParameterdvARB(${1:Target}, ${2:Index}) $3' -p112191 -tp112192 -a(S'getProgramLocalParameterfvARB/2' -p112193 -S'getProgramLocalParameterfvARB(${1:Target}, ${2:Index}) $3' -p112194 -tp112195 -a(S'getProgramPipelineInfoLog/2' -p112196 -S'getProgramPipelineInfoLog(${1:Pipeline}, ${2:BufSize}) $3' -p112197 -tp112198 -a(S'getProgramPipelineiv/2' -p112199 -S'getProgramPipelineiv(${1:Pipeline}, ${2:Pname}) $3' -p112200 -tp112201 -a(S'getProgramStageiv/3' -p112202 -S'getProgramStageiv(${1:Program}, ${2:Shadertype}, ${3:Pname}) $4' -p112203 -tp112204 -a(S'getProgramStringARB/3' -p112205 -S'getProgramStringARB(${1:Target}, ${2:Pname}, ${3:String}) $4' -p112206 -tp112207 -a(S'getProgramiv/2' -p112208 -S'getProgramiv(${1:Program}, ${2:Pname}) $3' -p112209 -tp112210 -a(S'getQueryIndexediv/3' -p112211 -S'getQueryIndexediv(${1:Target}, ${2:Index}, ${3:Pname}) $4' -p112212 -tp112213 -a(S'getQueryObjecti64v/2' -p112214 -S'getQueryObjecti64v(${1:Id}, ${2:Pname}) $3' -p112215 -tp112216 -a(S'getQueryObjectiv/2' -p112217 -S'getQueryObjectiv(${1:Id}, ${2:Pname}) $3' -p112218 -tp112219 -a(S'getQueryObjectui64v/2' -p112220 -S'getQueryObjectui64v(${1:Id}, ${2:Pname}) $3' -p112221 -tp112222 -a(S'getQueryObjectuiv/2' -p112223 -S'getQueryObjectuiv(${1:Id}, ${2:Pname}) $3' -p112224 -tp112225 -a(S'getQueryiv/2' -p112226 -S'getQueryiv(${1:Target}, ${2:Pname}) $3' -p112227 -tp112228 -a(S'getRenderbufferParameteriv/2' -p112229 -S'getRenderbufferParameteriv(${1:Target}, ${2:Pname}) $3' -p112230 -tp112231 -a(S'getSamplerParameterIiv/2' -p112232 -S'getSamplerParameterIiv(${1:Sampler}, ${2:Pname}) $3' -p112233 -tp112234 -a(S'getSamplerParameterIuiv/2' -p112235 -S'getSamplerParameterIuiv(${1:Sampler}, ${2:Pname}) $3' -p112236 -tp112237 -a(S'getSamplerParameterfv/2' -p112238 -S'getSamplerParameterfv(${1:Sampler}, ${2:Pname}) $3' -p112239 -tp112240 -a(S'getSamplerParameteriv/2' -p112241 -S'getSamplerParameteriv(${1:Sampler}, ${2:Pname}) $3' -p112242 -tp112243 -a(S'getShaderInfoLog/2' -p112244 -S'getShaderInfoLog(${1:Shader}, ${2:BufSize}) $3' -p112245 -tp112246 -a(S'getShaderPrecisionFormat/2' -p112247 -S'getShaderPrecisionFormat(${1:Shadertype}, ${2:Precisiontype}) $3' -p112248 -tp112249 -a(S'getShaderSource/2' -p112250 -S'getShaderSource(${1:Shader}, ${2:BufSize}) $3' -p112251 -tp112252 -a(S'getShaderSourceARB/2' -p112253 -S'getShaderSourceARB(${1:Obj}, ${2:MaxLength}) $3' -p112254 -tp112255 -a(S'getShaderiv/2' -p112256 -S'getShaderiv(${1:Shader}, ${2:Pname}) $3' -p112257 -tp112258 -a(S'getString/1' -p112259 -S'getString(${1:Name}) $2' -p112260 -tp112261 -a(S'getStringi/2' -p112262 -S'getStringi(${1:Name}, ${2:Index}) $3' -p112263 -tp112264 -a(S'getSubroutineIndex/3' -p112265 -S'getSubroutineIndex(${1:Program}, ${2:Shadertype}, ${3:Name}) $4' -p112266 -tp112267 -a(S'getSubroutineUniformLocation/3' -p112268 -S'getSubroutineUniformLocation(${1:Program}, ${2:Shadertype}, ${3:Name}) $4' -p112269 -tp112270 -a(S'getSynciv/3' -p112271 -S'getSynciv(${1:Sync}, ${2:Pname}, ${3:BufSize}) $4' -p112272 -tp112273 -a(S'getTexEnvfv/2' -p112274 -S'getTexEnvfv(${1:Target}, ${2:Pname}) $3' -p112275 -tp112276 -a(S'getTexEnviv/2' -p112277 -S'getTexEnviv(${1:Target}, ${2:Pname}) $3' -p112278 -tp112279 -a(S'getTexGendv/2' -p112280 -S'getTexGendv(${1:Coord}, ${2:Pname}) $3' -p112281 -tp112282 -a(S'getTexGenfv/2' -p112283 -S'getTexGenfv(${1:Coord}, ${2:Pname}) $3' -p112284 -tp112285 -a(S'getTexGeniv/2' -p112286 -S'getTexGeniv(${1:Coord}, ${2:Pname}) $3' -p112287 -tp112288 -a(S'getTexImage/5' -p112289 -S'getTexImage(${1:Target}, ${2:Level}, ${3:Format}, ${4:Type}, ${5:Pixels}) $6' -p112290 -tp112291 -a(S'getTexLevelParameterfv/3' -p112292 -S'getTexLevelParameterfv(${1:Target}, ${2:Level}, ${3:Pname}) $4' -p112293 -tp112294 -a(S'getTexLevelParameteriv/3' -p112295 -S'getTexLevelParameteriv(${1:Target}, ${2:Level}, ${3:Pname}) $4' -p112296 -tp112297 -a(S'getTexParameterIiv/2' -p112298 -S'getTexParameterIiv(${1:Target}, ${2:Pname}) $3' -p112299 -tp112300 -a(S'getTexParameterIuiv/2' -p112301 -S'getTexParameterIuiv(${1:Target}, ${2:Pname}) $3' -p112302 -tp112303 -a(S'getTexParameterfv/2' -p112304 -S'getTexParameterfv(${1:Target}, ${2:Pname}) $3' -p112305 -tp112306 -a(S'getTexParameteriv/2' -p112307 -S'getTexParameteriv(${1:Target}, ${2:Pname}) $3' -p112308 -tp112309 -a(S'getTransformFeedbackVarying/3' -p112310 -S'getTransformFeedbackVarying(${1:Program}, ${2:Index}, ${3:BufSize}) $4' -p112311 -tp112312 -a(S'getUniformBlockIndex/2' -p112313 -S'getUniformBlockIndex(${1:Program}, ${2:UniformBlockName}) $3' -p112314 -tp112315 -a(S'getUniformIndices/2' -p112316 -S'getUniformIndices(${1:Program}, ${2:UniformNames}) $3' -p112317 -tp112318 -a(S'getUniformLocation/2' -p112319 -S'getUniformLocation(${1:Program}, ${2:Name}) $3' -p112320 -tp112321 -a(S'getUniformLocationARB/2' -p112322 -S'getUniformLocationARB(${1:ProgramObj}, ${2:Name}) $3' -p112323 -tp112324 -a(S'getUniformSubroutineuiv/2' -p112325 -S'getUniformSubroutineuiv(${1:Shadertype}, ${2:Location}) $3' -p112326 -tp112327 -a(S'getUniformdv/2' -p112328 -S'getUniformdv(${1:Program}, ${2:Location}) $3' -p112329 -tp112330 -a(S'getUniformfv/2' -p112331 -S'getUniformfv(${1:Program}, ${2:Location}) $3' -p112332 -tp112333 -a(S'getUniformfvARB/2' -p112334 -S'getUniformfvARB(${1:ProgramObj}, ${2:Location}) $3' -p112335 -tp112336 -a(S'getUniformiv/2' -p112337 -S'getUniformiv(${1:Program}, ${2:Location}) $3' -p112338 -tp112339 -a(S'getUniformivARB/2' -p112340 -S'getUniformivARB(${1:ProgramObj}, ${2:Location}) $3' -p112341 -tp112342 -a(S'getUniformuiv/2' -p112343 -S'getUniformuiv(${1:Program}, ${2:Location}) $3' -p112344 -tp112345 -a(S'getVertexAttribIiv/2' -p112346 -S'getVertexAttribIiv(${1:Index}, ${2:Pname}) $3' -p112347 -tp112348 -a(S'getVertexAttribIuiv/2' -p112349 -S'getVertexAttribIuiv(${1:Index}, ${2:Pname}) $3' -p112350 -tp112351 -a(S'getVertexAttribLdv/2' -p112352 -S'getVertexAttribLdv(${1:Index}, ${2:Pname}) $3' -p112353 -tp112354 -a(S'getVertexAttribdv/2' -p112355 -S'getVertexAttribdv(${1:Index}, ${2:Pname}) $3' -p112356 -tp112357 -a(S'getVertexAttribfv/2' -p112358 -S'getVertexAttribfv(${1:Index}, ${2:Pname}) $3' -p112359 -tp112360 -a(S'getVertexAttribiv/2' -p112361 -S'getVertexAttribiv(${1:Index}, ${2:Pname}) $3' -p112362 -tp112363 -a(S'hint/2' -p112364 -S'hint(${1:Target}, ${2:Mode}) $3' -p112365 -tp112366 -a(S'histogram/4' -p112367 -S'histogram(${1:Target}, ${2:Width}, ${3:Internalformat}, ${4:Sink}) $5' -p112368 -tp112369 -a(S'indexMask/1' -p112370 -S'indexMask(${1:Mask}) $2' -p112371 -tp112372 -a(S'indexPointer/3' -p112373 -S'indexPointer(${1:Type}, ${2:Stride}, ${3:Ptr}) $4' -p112374 -tp112375 -a(S'indexd/1' -p112376 -S'indexd(${1:C}) $2' -p112377 -tp112378 -a(S'indexdv/1' -p112379 -S'indexdv(${1:C}) $2' -p112380 -tp112381 -a(S'indexf/1' -p112382 -S'indexf(${1:C}) $2' -p112383 -tp112384 -a(S'indexfv/1' -p112385 -S'indexfv(${1:C}) $2' -p112386 -tp112387 -a(S'indexi/1' -p112388 -S'indexi(${1:C}) $2' -p112389 -tp112390 -a(S'indexiv/1' -p112391 -S'indexiv(${1:C}) $2' -p112392 -tp112393 -a(S'indexs/1' -p112394 -S'indexs(${1:C}) $2' -p112395 -tp112396 -a(S'indexsv/1' -p112397 -S'indexsv(${1:C}) $2' -p112398 -tp112399 -a(S'indexub/1' -p112400 -S'indexub(${1:C}) $2' -p112401 -tp112402 -a(S'indexubv/1' -p112403 -S'indexubv(${1:C}) $2' -p112404 -tp112405 -a(S'initNames/0' -p112406 -S'initNames() $1' -p112407 -tp112408 -a(S'interleavedArrays/3' -p112409 -S'interleavedArrays(${1:Format}, ${2:Stride}, ${3:Pointer}) $4' -p112410 -tp112411 -a(S'isBuffer/1' -p112412 -S'isBuffer(${1:Buffer}) $2' -p112413 -tp112414 -a(S'isEnabled/1' -p112415 -S'isEnabled(${1:Cap}) $2' -p112416 -tp112417 -a(S'isEnabledi/2' -p112418 -S'isEnabledi(${1:Target}, ${2:Index}) $3' -p112419 -tp112420 -a(S'isFramebuffer/1' -p112421 -S'isFramebuffer(${1:Framebuffer}) $2' -p112422 -tp112423 -a(S'isList/1' -p112424 -S'isList(${1:List}) $2' -p112425 -tp112426 -a(S'isNamedStringARB/1' -p112427 -S'isNamedStringARB(${1:Name}) $2' -p112428 -tp112429 -a(S'isProgram/1' -p112430 -S'isProgram(${1:Program}) $2' -p112431 -tp112432 -a(S'isProgramPipeline/1' -p112433 -S'isProgramPipeline(${1:Pipeline}) $2' -p112434 -tp112435 -a(S'isQuery/1' -p112436 -S'isQuery(${1:Id}) $2' -p112437 -tp112438 -a(S'isRenderbuffer/1' -p112439 -S'isRenderbuffer(${1:Renderbuffer}) $2' -p112440 -tp112441 -a(S'isSampler/1' -p112442 -S'isSampler(${1:Sampler}) $2' -p112443 -tp112444 -a(S'isShader/1' -p112445 -S'isShader(${1:Shader}) $2' -p112446 -tp112447 -a(S'isSync/1' -p112448 -S'isSync(${1:Sync}) $2' -p112449 -tp112450 -a(S'isTexture/1' -p112451 -S'isTexture(${1:Texture}) $2' -p112452 -tp112453 -a(S'isTransformFeedback/1' -p112454 -S'isTransformFeedback(${1:Id}) $2' -p112455 -tp112456 -a(S'isVertexArray/1' -p112457 -S'isVertexArray(${1:Array}) $2' -p112458 -tp112459 -a(S'lightModelf/2' -p112460 -S'lightModelf(${1:Pname}, ${2:Param}) $3' -p112461 -tp112462 -a(S'lightModelfv/2' -p112463 -S'lightModelfv(${1:Pname}, ${2:Params}) $3' -p112464 -tp112465 -a(S'lightModeli/2' -p112466 -S'lightModeli(${1:Pname}, ${2:Param}) $3' -p112467 -tp112468 -a(S'lightModeliv/2' -p112469 -S'lightModeliv(${1:Pname}, ${2:Params}) $3' -p112470 -tp112471 -a(S'lightf/3' -p112472 -S'lightf(${1:Light}, ${2:Pname}, ${3:Param}) $4' -p112473 -tp112474 -a(S'lightfv/3' -p112475 -S'lightfv(${1:Light}, ${2:Pname}, ${3:Params}) $4' -p112476 -tp112477 -a(S'lighti/3' -p112478 -S'lighti(${1:Light}, ${2:Pname}, ${3:Param}) $4' -p112479 -tp112480 -a(S'lightiv/3' -p112481 -S'lightiv(${1:Light}, ${2:Pname}, ${3:Params}) $4' -p112482 -tp112483 -a(S'lineStipple/2' -p112484 -S'lineStipple(${1:Factor}, ${2:Pattern}) $3' -p112485 -tp112486 -a(S'lineWidth/1' -p112487 -S'lineWidth(${1:Width}) $2' -p112488 -tp112489 -a(S'linkProgram/1' -p112490 -S'linkProgram(${1:Program}) $2' -p112491 -tp112492 -a(S'linkProgramARB/1' -p112493 -S'linkProgramARB(${1:ProgramObj}) $2' -p112494 -tp112495 -a(S'listBase/1' -p112496 -S'listBase(${1:Base}) $2' -p112497 -tp112498 -a(S'loadIdentity/0' -p112499 -S'loadIdentity() $1' -p112500 -tp112501 -a(S'loadMatrixd/1' -p112502 -S'loadMatrixd(${1:M}) $2' -p112503 -tp112504 -a(S'loadMatrixf/1' -p112505 -S'loadMatrixf(${1:M}) $2' -p112506 -tp112507 -a(S'loadName/1' -p112508 -S'loadName(${1:Name}) $2' -p112509 -tp112510 -a(S'loadTransposeMatrixd/1' -p112511 -S'loadTransposeMatrixd(${1:M}) $2' -p112512 -tp112513 -a(S'loadTransposeMatrixdARB/1' -p112514 -S'loadTransposeMatrixdARB(${1:M}) $2' -p112515 -tp112516 -a(S'loadTransposeMatrixf/1' -p112517 -S'loadTransposeMatrixf(${1:M}) $2' -p112518 -tp112519 -a(S'loadTransposeMatrixfARB/1' -p112520 -S'loadTransposeMatrixfARB(${1:M}) $2' -p112521 -tp112522 -a(S'logicOp/1' -p112523 -S'logicOp(${1:Opcode}) $2' -p112524 -tp112525 -a(S'map1d/6' -p112526 -S'map1d(${1:Target}, ${2:U1}, ${3:U2}, ${4:Stride}, ${5:Order}, ${6:Points}) $7' -p112527 -tp112528 -a(S'map1f/6' -p112529 -S'map1f(${1:Target}, ${2:U1}, ${3:U2}, ${4:Stride}, ${5:Order}, ${6:Points}) $7' -p112530 -tp112531 -a(S'map2d/10' -p112532 -S'map2d(${1:Target}, ${2:U1}, ${3:U2}, ${4:Ustride}, ${5:Uorder}, ${6:V1}, ${7:V2}, ${8:Vstride}, ${9:Vorder}, ${10:Points}) $11' -p112533 -tp112534 -a(S'map2f/10' -p112535 -S'map2f(${1:Target}, ${2:U1}, ${3:U2}, ${4:Ustride}, ${5:Uorder}, ${6:V1}, ${7:V2}, ${8:Vstride}, ${9:Vorder}, ${10:Points}) $11' -p112536 -tp112537 -a(S'mapGrid1d/3' -p112538 -S'mapGrid1d(${1:Un}, ${2:U1}, ${3:U2}) $4' -p112539 -tp112540 -a(S'mapGrid1f/3' -p112541 -S'mapGrid1f(${1:Un}, ${2:U1}, ${3:U2}) $4' -p112542 -tp112543 -a(S'mapGrid2d/6' -p112544 -S'mapGrid2d(${1:Un}, ${2:U1}, ${3:U2}, ${4:Vn}, ${5:V1}, ${6:V2}) $7' -p112545 -tp112546 -a(S'mapGrid2f/6' -p112547 -S'mapGrid2f(${1:Un}, ${2:U1}, ${3:U2}, ${4:Vn}, ${5:V1}, ${6:V2}) $7' -p112548 -tp112549 -a(S'materialf/3' -p112550 -S'materialf(${1:Face}, ${2:Pname}, ${3:Param}) $4' -p112551 -tp112552 -a(S'materialfv/3' -p112553 -S'materialfv(${1:Face}, ${2:Pname}, ${3:Params}) $4' -p112554 -tp112555 -a(S'materiali/3' -p112556 -S'materiali(${1:Face}, ${2:Pname}, ${3:Param}) $4' -p112557 -tp112558 -a(S'materialiv/3' -p112559 -S'materialiv(${1:Face}, ${2:Pname}, ${3:Params}) $4' -p112560 -tp112561 -a(S'matrixIndexubvARB/1' -p112562 -S'matrixIndexubvARB(${1:Indices}) $2' -p112563 -tp112564 -a(S'matrixIndexuivARB/1' -p112565 -S'matrixIndexuivARB(${1:Indices}) $2' -p112566 -tp112567 -a(S'matrixIndexusvARB/1' -p112568 -S'matrixIndexusvARB(${1:Indices}) $2' -p112569 -tp112570 -a(S'matrixMode/1' -p112571 -S'matrixMode(${1:Mode}) $2' -p112572 -tp112573 -a(S'memoryBarrier/1' -p112574 -S'memoryBarrier(${1:Barriers}) $2' -p112575 -tp112576 -a(S'minSampleShading/1' -p112577 -S'minSampleShading(${1:Value}) $2' -p112578 -tp112579 -a(S'minmax/3' -p112580 -S'minmax(${1:Target}, ${2:Internalformat}, ${3:Sink}) $4' -p112581 -tp112582 -a(S'multMatrixd/1' -p112583 -S'multMatrixd(${1:M}) $2' -p112584 -tp112585 -a(S'multMatrixf/1' -p112586 -S'multMatrixf(${1:M}) $2' -p112587 -tp112588 -a(S'multTransposeMatrixd/1' -p112589 -S'multTransposeMatrixd(${1:M}) $2' -p112590 -tp112591 -a(S'multTransposeMatrixdARB/1' -p112592 -S'multTransposeMatrixdARB(${1:M}) $2' -p112593 -tp112594 -a(S'multTransposeMatrixf/1' -p112595 -S'multTransposeMatrixf(${1:M}) $2' -p112596 -tp112597 -a(S'multTransposeMatrixfARB/1' -p112598 -S'multTransposeMatrixfARB(${1:M}) $2' -p112599 -tp112600 -a(S'multiDrawArrays/3' -p112601 -S'multiDrawArrays(${1:Mode}, ${2:First}, ${3:Count}) $4' -p112602 -tp112603 -a(S'multiTexCoord1d/2' -p112604 -S'multiTexCoord1d(${1:Target}, ${2:S}) $3' -p112605 -tp112606 -a(S'multiTexCoord1dv/2' -p112607 -S'multiTexCoord1dv(${1:Target}, ${2:V}) $3' -p112608 -tp112609 -a(S'multiTexCoord1f/2' -p112610 -S'multiTexCoord1f(${1:Target}, ${2:S}) $3' -p112611 -tp112612 -a(S'multiTexCoord1fv/2' -p112613 -S'multiTexCoord1fv(${1:Target}, ${2:V}) $3' -p112614 -tp112615 -a(S'multiTexCoord1i/2' -p112616 -S'multiTexCoord1i(${1:Target}, ${2:S}) $3' -p112617 -tp112618 -a(S'multiTexCoord1iv/2' -p112619 -S'multiTexCoord1iv(${1:Target}, ${2:V}) $3' -p112620 -tp112621 -a(S'multiTexCoord1s/2' -p112622 -S'multiTexCoord1s(${1:Target}, ${2:S}) $3' -p112623 -tp112624 -a(S'multiTexCoord1sv/2' -p112625 -S'multiTexCoord1sv(${1:Target}, ${2:V}) $3' -p112626 -tp112627 -a(S'multiTexCoord2d/3' -p112628 -S'multiTexCoord2d(${1:Target}, ${2:S}, ${3:T}) $4' -p112629 -tp112630 -a(S'multiTexCoord2dv/2' -p112631 -S'multiTexCoord2dv(${1:Target}, ${2:V}) $3' -p112632 -tp112633 -a(S'multiTexCoord2f/3' -p112634 -S'multiTexCoord2f(${1:Target}, ${2:S}, ${3:T}) $4' -p112635 -tp112636 -a(S'multiTexCoord2fv/2' -p112637 -S'multiTexCoord2fv(${1:Target}, ${2:V}) $3' -p112638 -tp112639 -a(S'multiTexCoord2i/3' -p112640 -S'multiTexCoord2i(${1:Target}, ${2:S}, ${3:T}) $4' -p112641 -tp112642 -a(S'multiTexCoord2iv/2' -p112643 -S'multiTexCoord2iv(${1:Target}, ${2:V}) $3' -p112644 -tp112645 -a(S'multiTexCoord2s/3' -p112646 -S'multiTexCoord2s(${1:Target}, ${2:S}, ${3:T}) $4' -p112647 -tp112648 -a(S'multiTexCoord2sv/2' -p112649 -S'multiTexCoord2sv(${1:Target}, ${2:V}) $3' -p112650 -tp112651 -a(S'multiTexCoord3d/4' -p112652 -S'multiTexCoord3d(${1:Target}, ${2:S}, ${3:T}, ${4:R}) $5' -p112653 -tp112654 -a(S'multiTexCoord3dv/2' -p112655 -S'multiTexCoord3dv(${1:Target}, ${2:V}) $3' -p112656 -tp112657 -a(S'multiTexCoord3f/4' -p112658 -S'multiTexCoord3f(${1:Target}, ${2:S}, ${3:T}, ${4:R}) $5' -p112659 -tp112660 -a(S'multiTexCoord3fv/2' -p112661 -S'multiTexCoord3fv(${1:Target}, ${2:V}) $3' -p112662 -tp112663 -a(S'multiTexCoord3i/4' -p112664 -S'multiTexCoord3i(${1:Target}, ${2:S}, ${3:T}, ${4:R}) $5' -p112665 -tp112666 -a(S'multiTexCoord3iv/2' -p112667 -S'multiTexCoord3iv(${1:Target}, ${2:V}) $3' -p112668 -tp112669 -a(S'multiTexCoord3s/4' -p112670 -S'multiTexCoord3s(${1:Target}, ${2:S}, ${3:T}, ${4:R}) $5' -p112671 -tp112672 -a(S'multiTexCoord3sv/2' -p112673 -S'multiTexCoord3sv(${1:Target}, ${2:V}) $3' -p112674 -tp112675 -a(S'multiTexCoord4d/5' -p112676 -S'multiTexCoord4d(${1:Target}, ${2:S}, ${3:T}, ${4:R}, ${5:Q}) $6' -p112677 -tp112678 -a(S'multiTexCoord4dv/2' -p112679 -S'multiTexCoord4dv(${1:Target}, ${2:V}) $3' -p112680 -tp112681 -a(S'multiTexCoord4f/5' -p112682 -S'multiTexCoord4f(${1:Target}, ${2:S}, ${3:T}, ${4:R}, ${5:Q}) $6' -p112683 -tp112684 -a(S'multiTexCoord4fv/2' -p112685 -S'multiTexCoord4fv(${1:Target}, ${2:V}) $3' -p112686 -tp112687 -a(S'multiTexCoord4i/5' -p112688 -S'multiTexCoord4i(${1:Target}, ${2:S}, ${3:T}, ${4:R}, ${5:Q}) $6' -p112689 -tp112690 -a(S'multiTexCoord4iv/2' -p112691 -S'multiTexCoord4iv(${1:Target}, ${2:V}) $3' -p112692 -tp112693 -a(S'multiTexCoord4s/5' -p112694 -S'multiTexCoord4s(${1:Target}, ${2:S}, ${3:T}, ${4:R}, ${5:Q}) $6' -p112695 -tp112696 -a(S'multiTexCoord4sv/2' -p112697 -S'multiTexCoord4sv(${1:Target}, ${2:V}) $3' -p112698 -tp112699 -a(S'namedStringARB/3' -p112700 -S'namedStringARB(${1:Type}, ${2:Name}, ${3:String}) $4' -p112701 -tp112702 -a(S'newList/2' -p112703 -S'newList(${1:List}, ${2:Mode}) $3' -p112704 -tp112705 -a(S'normal3b/3' -p112706 -S'normal3b(${1:Nx}, ${2:Ny}, ${3:Nz}) $4' -p112707 -tp112708 -a(S'normal3bv/1' -p112709 -S'normal3bv(${1:V}) $2' -p112710 -tp112711 -a(S'normal3d/3' -p112712 -S'normal3d(${1:Nx}, ${2:Ny}, ${3:Nz}) $4' -p112713 -tp112714 -a(S'normal3dv/1' -p112715 -S'normal3dv(${1:V}) $2' -p112716 -tp112717 -a(S'normal3f/3' -p112718 -S'normal3f(${1:Nx}, ${2:Ny}, ${3:Nz}) $4' -p112719 -tp112720 -a(S'normal3fv/1' -p112721 -S'normal3fv(${1:V}) $2' -p112722 -tp112723 -a(S'normal3i/3' -p112724 -S'normal3i(${1:Nx}, ${2:Ny}, ${3:Nz}) $4' -p112725 -tp112726 -a(S'normal3iv/1' -p112727 -S'normal3iv(${1:V}) $2' -p112728 -tp112729 -a(S'normal3s/3' -p112730 -S'normal3s(${1:Nx}, ${2:Ny}, ${3:Nz}) $4' -p112731 -tp112732 -a(S'normal3sv/1' -p112733 -S'normal3sv(${1:V}) $2' -p112734 -tp112735 -a(S'normalPointer/3' -p112736 -S'normalPointer(${1:Type}, ${2:Stride}, ${3:Ptr}) $4' -p112737 -tp112738 -a(S'ortho/6' -p112739 -S'ortho(${1:Left}, ${2:Right}, ${3:Bottom}, ${4:Top}, ${5:Near_val}, ${6:Far_val}) $7' -p112740 -tp112741 -a(S'passThrough/1' -p112742 -S'passThrough(${1:Token}) $2' -p112743 -tp112744 -a(S'patchParameterfv/2' -p112745 -S'patchParameterfv(${1:Pname}, ${2:Values}) $3' -p112746 -tp112747 -a(S'patchParameteri/2' -p112748 -S'patchParameteri(${1:Pname}, ${2:Value}) $3' -p112749 -tp112750 -a(S'pauseTransformFeedback/0' -p112751 -S'pauseTransformFeedback() $1' -p112752 -tp112753 -a(S'pixelMapfv/3' -p112754 -S'pixelMapfv(${1:Map}, ${2:Mapsize}, ${3:Values}) $4' -p112755 -tp112756 -a(S'pixelMapuiv/3' -p112757 -S'pixelMapuiv(${1:Map}, ${2:Mapsize}, ${3:Values}) $4' -p112758 -tp112759 -a(S'pixelMapusv/3' -p112760 -S'pixelMapusv(${1:Map}, ${2:Mapsize}, ${3:Values}) $4' -p112761 -tp112762 -a(S'pixelStoref/2' -p112763 -S'pixelStoref(${1:Pname}, ${2:Param}) $3' -p112764 -tp112765 -a(S'pixelStorei/2' -p112766 -S'pixelStorei(${1:Pname}, ${2:Param}) $3' -p112767 -tp112768 -a(S'pixelTransferf/2' -p112769 -S'pixelTransferf(${1:Pname}, ${2:Param}) $3' -p112770 -tp112771 -a(S'pixelTransferi/2' -p112772 -S'pixelTransferi(${1:Pname}, ${2:Param}) $3' -p112773 -tp112774 -a(S'pixelZoom/2' -p112775 -S'pixelZoom(${1:Xfactor}, ${2:Yfactor}) $3' -p112776 -tp112777 -a(S'pointParameterf/2' -p112778 -S'pointParameterf(${1:Pname}, ${2:Param}) $3' -p112779 -tp112780 -a(S'pointParameterfv/2' -p112781 -S'pointParameterfv(${1:Pname}, ${2:Params}) $3' -p112782 -tp112783 -a(S'pointParameteri/2' -p112784 -S'pointParameteri(${1:Pname}, ${2:Param}) $3' -p112785 -tp112786 -a(S'pointParameteriv/2' -p112787 -S'pointParameteriv(${1:Pname}, ${2:Params}) $3' -p112788 -tp112789 -a(S'pointSize/1' -p112790 -S'pointSize(${1:Size}) $2' -p112791 -tp112792 -a(S'polygonMode/2' -p112793 -S'polygonMode(${1:Face}, ${2:Mode}) $3' -p112794 -tp112795 -a(S'polygonOffset/2' -p112796 -S'polygonOffset(${1:Factor}, ${2:Units}) $3' -p112797 -tp112798 -a(S'polygonStipple/1' -p112799 -S'polygonStipple(${1:Mask}) $2' -p112800 -tp112801 -a(S'popAttrib/0' -p112802 -S'popAttrib() $1' -p112803 -tp112804 -a(S'popClientAttrib/0' -p112805 -S'popClientAttrib() $1' -p112806 -tp112807 -a(S'popMatrix/0' -p112808 -S'popMatrix() $1' -p112809 -tp112810 -a(S'popName/0' -p112811 -S'popName() $1' -p112812 -tp112813 -a(S'primitiveRestartIndex/1' -p112814 -S'primitiveRestartIndex(${1:Index}) $2' -p112815 -tp112816 -a(S'prioritizeTextures/2' -p112817 -S'prioritizeTextures(${1:Textures}, ${2:Priorities}) $3' -p112818 -tp112819 -a(S'programBinary/3' -p112820 -S'programBinary(${1:Program}, ${2:BinaryFormat}, ${3:Binary}) $4' -p112821 -tp112822 -a(S'programEnvParameter4dARB/6' -p112823 -S'programEnvParameter4dARB(${1:Target}, ${2:Index}, ${3:X}, ${4:Y}, ${5:Z}, ${6:W}) $7' -p112824 -tp112825 -a(S'programEnvParameter4dvARB/3' -p112826 -S'programEnvParameter4dvARB(${1:Target}, ${2:Index}, ${3:Params}) $4' -p112827 -tp112828 -a(S'programEnvParameter4fARB/6' -p112829 -S'programEnvParameter4fARB(${1:Target}, ${2:Index}, ${3:X}, ${4:Y}, ${5:Z}, ${6:W}) $7' -p112830 -tp112831 -a(S'programEnvParameter4fvARB/3' -p112832 -S'programEnvParameter4fvARB(${1:Target}, ${2:Index}, ${3:Params}) $4' -p112833 -tp112834 -a(S'programLocalParameter4dARB/6' -p112835 -S'programLocalParameter4dARB(${1:Target}, ${2:Index}, ${3:X}, ${4:Y}, ${5:Z}, ${6:W}) $7' -p112836 -tp112837 -a(S'programLocalParameter4dvARB/3' -p112838 -S'programLocalParameter4dvARB(${1:Target}, ${2:Index}, ${3:Params}) $4' -p112839 -tp112840 -a(S'programLocalParameter4fARB/6' -p112841 -S'programLocalParameter4fARB(${1:Target}, ${2:Index}, ${3:X}, ${4:Y}, ${5:Z}, ${6:W}) $7' -p112842 -tp112843 -a(S'programLocalParameter4fvARB/3' -p112844 -S'programLocalParameter4fvARB(${1:Target}, ${2:Index}, ${3:Params}) $4' -p112845 -tp112846 -a(S'programParameteri/3' -p112847 -S'programParameteri(${1:Program}, ${2:Pname}, ${3:Value}) $4' -p112848 -tp112849 -a(S'programStringARB/3' -p112850 -S'programStringARB(${1:Target}, ${2:Format}, ${3:String}) $4' -p112851 -tp112852 -a(S'programUniform1d/3' -p112853 -S'programUniform1d(${1:Program}, ${2:Location}, ${3:V0}) $4' -p112854 -tp112855 -a(S'programUniform1dv/3' -p112856 -S'programUniform1dv(${1:Program}, ${2:Location}, ${3:Value}) $4' -p112857 -tp112858 -a(S'programUniform1f/3' -p112859 -S'programUniform1f(${1:Program}, ${2:Location}, ${3:V0}) $4' -p112860 -tp112861 -a(S'programUniform1fv/3' -p112862 -S'programUniform1fv(${1:Program}, ${2:Location}, ${3:Value}) $4' -p112863 -tp112864 -a(S'programUniform1i/3' -p112865 -S'programUniform1i(${1:Program}, ${2:Location}, ${3:V0}) $4' -p112866 -tp112867 -a(S'programUniform1iv/3' -p112868 -S'programUniform1iv(${1:Program}, ${2:Location}, ${3:Value}) $4' -p112869 -tp112870 -a(S'programUniform1ui/3' -p112871 -S'programUniform1ui(${1:Program}, ${2:Location}, ${3:V0}) $4' -p112872 -tp112873 -a(S'programUniform1uiv/3' -p112874 -S'programUniform1uiv(${1:Program}, ${2:Location}, ${3:Value}) $4' -p112875 -tp112876 -a(S'programUniform2d/4' -p112877 -S'programUniform2d(${1:Program}, ${2:Location}, ${3:V0}, ${4:V1}) $5' -p112878 -tp112879 -a(S'programUniform2dv/3' -p112880 -S'programUniform2dv(${1:Program}, ${2:Location}, ${3:Value}) $4' -p112881 -tp112882 -a(S'programUniform2f/4' -p112883 -S'programUniform2f(${1:Program}, ${2:Location}, ${3:V0}, ${4:V1}) $5' -p112884 -tp112885 -a(S'programUniform2fv/3' -p112886 -S'programUniform2fv(${1:Program}, ${2:Location}, ${3:Value}) $4' -p112887 -tp112888 -a(S'programUniform2i/4' -p112889 -S'programUniform2i(${1:Program}, ${2:Location}, ${3:V0}, ${4:V1}) $5' -p112890 -tp112891 -a(S'programUniform2iv/3' -p112892 -S'programUniform2iv(${1:Program}, ${2:Location}, ${3:Value}) $4' -p112893 -tp112894 -a(S'programUniform2ui/4' -p112895 -S'programUniform2ui(${1:Program}, ${2:Location}, ${3:V0}, ${4:V1}) $5' -p112896 -tp112897 -a(S'programUniform2uiv/3' -p112898 -S'programUniform2uiv(${1:Program}, ${2:Location}, ${3:Value}) $4' -p112899 -tp112900 -a(S'programUniform3d/5' -p112901 -S'programUniform3d(${1:Program}, ${2:Location}, ${3:V0}, ${4:V1}, ${5:V2}) $6' -p112902 -tp112903 -a(S'programUniform3dv/3' -p112904 -S'programUniform3dv(${1:Program}, ${2:Location}, ${3:Value}) $4' -p112905 -tp112906 -a(S'programUniform3f/5' -p112907 -S'programUniform3f(${1:Program}, ${2:Location}, ${3:V0}, ${4:V1}, ${5:V2}) $6' -p112908 -tp112909 -a(S'programUniform3fv/3' -p112910 -S'programUniform3fv(${1:Program}, ${2:Location}, ${3:Value}) $4' -p112911 -tp112912 -a(S'programUniform3i/5' -p112913 -S'programUniform3i(${1:Program}, ${2:Location}, ${3:V0}, ${4:V1}, ${5:V2}) $6' -p112914 -tp112915 -a(S'programUniform3iv/3' -p112916 -S'programUniform3iv(${1:Program}, ${2:Location}, ${3:Value}) $4' -p112917 -tp112918 -a(S'programUniform3ui/5' -p112919 -S'programUniform3ui(${1:Program}, ${2:Location}, ${3:V0}, ${4:V1}, ${5:V2}) $6' -p112920 -tp112921 -a(S'programUniform3uiv/3' -p112922 -S'programUniform3uiv(${1:Program}, ${2:Location}, ${3:Value}) $4' -p112923 -tp112924 -a(S'programUniform4d/6' -p112925 -S'programUniform4d(${1:Program}, ${2:Location}, ${3:V0}, ${4:V1}, ${5:V2}, ${6:V3}) $7' -p112926 -tp112927 -a(S'programUniform4dv/3' -p112928 -S'programUniform4dv(${1:Program}, ${2:Location}, ${3:Value}) $4' -p112929 -tp112930 -a(S'programUniform4f/6' -p112931 -S'programUniform4f(${1:Program}, ${2:Location}, ${3:V0}, ${4:V1}, ${5:V2}, ${6:V3}) $7' -p112932 -tp112933 -a(S'programUniform4fv/3' -p112934 -S'programUniform4fv(${1:Program}, ${2:Location}, ${3:Value}) $4' -p112935 -tp112936 -a(S'programUniform4i/6' -p112937 -S'programUniform4i(${1:Program}, ${2:Location}, ${3:V0}, ${4:V1}, ${5:V2}, ${6:V3}) $7' -p112938 -tp112939 -a(S'programUniform4iv/3' -p112940 -S'programUniform4iv(${1:Program}, ${2:Location}, ${3:Value}) $4' -p112941 -tp112942 -a(S'programUniform4ui/6' -p112943 -S'programUniform4ui(${1:Program}, ${2:Location}, ${3:V0}, ${4:V1}, ${5:V2}, ${6:V3}) $7' -p112944 -tp112945 -a(S'programUniform4uiv/3' -p112946 -S'programUniform4uiv(${1:Program}, ${2:Location}, ${3:Value}) $4' -p112947 -tp112948 -a(S'programUniformMatrix2dv/4' -p112949 -S'programUniformMatrix2dv(${1:Program}, ${2:Location}, ${3:Transpose}, ${4:Value}) $5' -p112950 -tp112951 -a(S'programUniformMatrix2fv/4' -p112952 -S'programUniformMatrix2fv(${1:Program}, ${2:Location}, ${3:Transpose}, ${4:Value}) $5' -p112953 -tp112954 -a(S'programUniformMatrix2x3dv/4' -p112955 -S'programUniformMatrix2x3dv(${1:Program}, ${2:Location}, ${3:Transpose}, ${4:Value}) $5' -p112956 -tp112957 -a(S'programUniformMatrix2x3fv/4' -p112958 -S'programUniformMatrix2x3fv(${1:Program}, ${2:Location}, ${3:Transpose}, ${4:Value}) $5' -p112959 -tp112960 -a(S'programUniformMatrix2x4dv/4' -p112961 -S'programUniformMatrix2x4dv(${1:Program}, ${2:Location}, ${3:Transpose}, ${4:Value}) $5' -p112962 -tp112963 -a(S'programUniformMatrix2x4fv/4' -p112964 -S'programUniformMatrix2x4fv(${1:Program}, ${2:Location}, ${3:Transpose}, ${4:Value}) $5' -p112965 -tp112966 -a(S'programUniformMatrix3dv/4' -p112967 -S'programUniformMatrix3dv(${1:Program}, ${2:Location}, ${3:Transpose}, ${4:Value}) $5' -p112968 -tp112969 -a(S'programUniformMatrix3fv/4' -p112970 -S'programUniformMatrix3fv(${1:Program}, ${2:Location}, ${3:Transpose}, ${4:Value}) $5' -p112971 -tp112972 -a(S'programUniformMatrix3x2dv/4' -p112973 -S'programUniformMatrix3x2dv(${1:Program}, ${2:Location}, ${3:Transpose}, ${4:Value}) $5' -p112974 -tp112975 -a(S'programUniformMatrix3x2fv/4' -p112976 -S'programUniformMatrix3x2fv(${1:Program}, ${2:Location}, ${3:Transpose}, ${4:Value}) $5' -p112977 -tp112978 -a(S'programUniformMatrix3x4dv/4' -p112979 -S'programUniformMatrix3x4dv(${1:Program}, ${2:Location}, ${3:Transpose}, ${4:Value}) $5' -p112980 -tp112981 -a(S'programUniformMatrix3x4fv/4' -p112982 -S'programUniformMatrix3x4fv(${1:Program}, ${2:Location}, ${3:Transpose}, ${4:Value}) $5' -p112983 -tp112984 -a(S'programUniformMatrix4dv/4' -p112985 -S'programUniformMatrix4dv(${1:Program}, ${2:Location}, ${3:Transpose}, ${4:Value}) $5' -p112986 -tp112987 -a(S'programUniformMatrix4fv/4' -p112988 -S'programUniformMatrix4fv(${1:Program}, ${2:Location}, ${3:Transpose}, ${4:Value}) $5' -p112989 -tp112990 -a(S'programUniformMatrix4x2dv/4' -p112991 -S'programUniformMatrix4x2dv(${1:Program}, ${2:Location}, ${3:Transpose}, ${4:Value}) $5' -p112992 -tp112993 -a(S'programUniformMatrix4x2fv/4' -p112994 -S'programUniformMatrix4x2fv(${1:Program}, ${2:Location}, ${3:Transpose}, ${4:Value}) $5' -p112995 -tp112996 -a(S'programUniformMatrix4x3dv/4' -p112997 -S'programUniformMatrix4x3dv(${1:Program}, ${2:Location}, ${3:Transpose}, ${4:Value}) $5' -p112998 -tp112999 -a(S'programUniformMatrix4x3fv/4' -p113000 -S'programUniformMatrix4x3fv(${1:Program}, ${2:Location}, ${3:Transpose}, ${4:Value}) $5' -p113001 -tp113002 -a(S'provokingVertex/1' -p113003 -S'provokingVertex(${1:Mode}) $2' -p113004 -tp113005 -a(S'pushAttrib/1' -p113006 -S'pushAttrib(${1:Mask}) $2' -p113007 -tp113008 -a(S'pushClientAttrib/1' -p113009 -S'pushClientAttrib(${1:Mask}) $2' -p113010 -tp113011 -a(S'pushMatrix/0' -p113012 -S'pushMatrix() $1' -p113013 -tp113014 -a(S'pushName/1' -p113015 -S'pushName(${1:Name}) $2' -p113016 -tp113017 -a(S'queryCounter/2' -p113018 -S'queryCounter(${1:Id}, ${2:Target}) $3' -p113019 -tp113020 -a(S'rasterPos2d/2' -p113021 -S'rasterPos2d(${1:X}, ${2:Y}) $3' -p113022 -tp113023 -a(S'rasterPos2dv/1' -p113024 -S'rasterPos2dv(${1:V}) $2' -p113025 -tp113026 -a(S'rasterPos2f/2' -p113027 -S'rasterPos2f(${1:X}, ${2:Y}) $3' -p113028 -tp113029 -a(S'rasterPos2fv/1' -p113030 -S'rasterPos2fv(${1:V}) $2' -p113031 -tp113032 -a(S'rasterPos2i/2' -p113033 -S'rasterPos2i(${1:X}, ${2:Y}) $3' -p113034 -tp113035 -a(S'rasterPos2iv/1' -p113036 -S'rasterPos2iv(${1:V}) $2' -p113037 -tp113038 -a(S'rasterPos2s/2' -p113039 -S'rasterPos2s(${1:X}, ${2:Y}) $3' -p113040 -tp113041 -a(S'rasterPos2sv/1' -p113042 -S'rasterPos2sv(${1:V}) $2' -p113043 -tp113044 -a(S'rasterPos3d/3' -p113045 -S'rasterPos3d(${1:X}, ${2:Y}, ${3:Z}) $4' -p113046 -tp113047 -a(S'rasterPos3dv/1' -p113048 -S'rasterPos3dv(${1:V}) $2' -p113049 -tp113050 -a(S'rasterPos3f/3' -p113051 -S'rasterPos3f(${1:X}, ${2:Y}, ${3:Z}) $4' -p113052 -tp113053 -a(S'rasterPos3fv/1' -p113054 -S'rasterPos3fv(${1:V}) $2' -p113055 -tp113056 -a(S'rasterPos3i/3' -p113057 -S'rasterPos3i(${1:X}, ${2:Y}, ${3:Z}) $4' -p113058 -tp113059 -a(S'rasterPos3iv/1' -p113060 -S'rasterPos3iv(${1:V}) $2' -p113061 -tp113062 -a(S'rasterPos3s/3' -p113063 -S'rasterPos3s(${1:X}, ${2:Y}, ${3:Z}) $4' -p113064 -tp113065 -a(S'rasterPos3sv/1' -p113066 -S'rasterPos3sv(${1:V}) $2' -p113067 -tp113068 -a(S'rasterPos4d/4' -p113069 -S'rasterPos4d(${1:X}, ${2:Y}, ${3:Z}, ${4:W}) $5' -p113070 -tp113071 -a(S'rasterPos4dv/1' -p113072 -S'rasterPos4dv(${1:V}) $2' -p113073 -tp113074 -a(S'rasterPos4f/4' -p113075 -S'rasterPos4f(${1:X}, ${2:Y}, ${3:Z}, ${4:W}) $5' -p113076 -tp113077 -a(S'rasterPos4fv/1' -p113078 -S'rasterPos4fv(${1:V}) $2' -p113079 -tp113080 -a(S'rasterPos4i/4' -p113081 -S'rasterPos4i(${1:X}, ${2:Y}, ${3:Z}, ${4:W}) $5' -p113082 -tp113083 -a(S'rasterPos4iv/1' -p113084 -S'rasterPos4iv(${1:V}) $2' -p113085 -tp113086 -a(S'rasterPos4s/4' -p113087 -S'rasterPos4s(${1:X}, ${2:Y}, ${3:Z}, ${4:W}) $5' -p113088 -tp113089 -a(S'rasterPos4sv/1' -p113090 -S'rasterPos4sv(${1:V}) $2' -p113091 -tp113092 -a(S'readBuffer/1' -p113093 -S'readBuffer(${1:Mode}) $2' -p113094 -tp113095 -a(S'readPixels/7' -p113096 -S'readPixels(${1:X}, ${2:Y}, ${3:Width}, ${4:Height}, ${5:Format}, ${6:Type}, ${7:Pixels}) $8' -p113097 -tp113098 -a(S'rectd/4' -p113099 -S'rectd(${1:X1}, ${2:Y1}, ${3:X2}, ${4:Y2}) $5' -p113100 -tp113101 -a(S'rectdv/2' -p113102 -S'rectdv(${1:V1}, ${2:V2}) $3' -p113103 -tp113104 -a(S'rectf/4' -p113105 -S'rectf(${1:X1}, ${2:Y1}, ${3:X2}, ${4:Y2}) $5' -p113106 -tp113107 -a(S'rectfv/2' -p113108 -S'rectfv(${1:V1}, ${2:V2}) $3' -p113109 -tp113110 -a(S'recti/4' -p113111 -S'recti(${1:X1}, ${2:Y1}, ${3:X2}, ${4:Y2}) $5' -p113112 -tp113113 -a(S'rectiv/2' -p113114 -S'rectiv(${1:V1}, ${2:V2}) $3' -p113115 -tp113116 -a(S'rects/4' -p113117 -S'rects(${1:X1}, ${2:Y1}, ${3:X2}, ${4:Y2}) $5' -p113118 -tp113119 -a(S'rectsv/2' -p113120 -S'rectsv(${1:V1}, ${2:V2}) $3' -p113121 -tp113122 -a(S'releaseShaderCompiler/0' -p113123 -S'releaseShaderCompiler() $1' -p113124 -tp113125 -a(S'renderMode/1' -p113126 -S'renderMode(${1:Mode}) $2' -p113127 -tp113128 -a(S'renderbufferStorage/4' -p113129 -S'renderbufferStorage(${1:Target}, ${2:Internalformat}, ${3:Width}, ${4:Height}) $5' -p113130 -tp113131 -a(S'renderbufferStorageMultisample/5' -p113132 -S'renderbufferStorageMultisample(${1:Target}, ${2:Samples}, ${3:Internalformat}, ${4:Width}, ${5:Height}) $6' -p113133 -tp113134 -a(S'resetHistogram/1' -p113135 -S'resetHistogram(${1:Target}) $2' -p113136 -tp113137 -a(S'resetMinmax/1' -p113138 -S'resetMinmax(${1:Target}) $2' -p113139 -tp113140 -a(S'resumeTransformFeedback/0' -p113141 -S'resumeTransformFeedback() $1' -p113142 -tp113143 -a(S'rotated/4' -p113144 -S'rotated(${1:Angle}, ${2:X}, ${3:Y}, ${4:Z}) $5' -p113145 -tp113146 -a(S'rotatef/4' -p113147 -S'rotatef(${1:Angle}, ${2:X}, ${3:Y}, ${4:Z}) $5' -p113148 -tp113149 -a(S'sampleCoverage/2' -p113150 -S'sampleCoverage(${1:Value}, ${2:Invert}) $3' -p113151 -tp113152 -a(S'sampleMaski/2' -p113153 -S'sampleMaski(${1:Index}, ${2:Mask}) $3' -p113154 -tp113155 -a(S'samplerParameterIiv/3' -p113156 -S'samplerParameterIiv(${1:Sampler}, ${2:Pname}, ${3:Param}) $4' -p113157 -tp113158 -a(S'samplerParameterIuiv/3' -p113159 -S'samplerParameterIuiv(${1:Sampler}, ${2:Pname}, ${3:Param}) $4' -p113160 -tp113161 -a(S'samplerParameterf/3' -p113162 -S'samplerParameterf(${1:Sampler}, ${2:Pname}, ${3:Param}) $4' -p113163 -tp113164 -a(S'samplerParameterfv/3' -p113165 -S'samplerParameterfv(${1:Sampler}, ${2:Pname}, ${3:Param}) $4' -p113166 -tp113167 -a(S'samplerParameteri/3' -p113168 -S'samplerParameteri(${1:Sampler}, ${2:Pname}, ${3:Param}) $4' -p113169 -tp113170 -a(S'samplerParameteriv/3' -p113171 -S'samplerParameteriv(${1:Sampler}, ${2:Pname}, ${3:Param}) $4' -p113172 -tp113173 -a(S'scaled/3' -p113174 -S'scaled(${1:X}, ${2:Y}, ${3:Z}) $4' -p113175 -tp113176 -a(S'scalef/3' -p113177 -S'scalef(${1:X}, ${2:Y}, ${3:Z}) $4' -p113178 -tp113179 -a(S'scissor/4' -p113180 -S'scissor(${1:X}, ${2:Y}, ${3:Width}, ${4:Height}) $5' -p113181 -tp113182 -a(S'scissorArrayv/2' -p113183 -S'scissorArrayv(${1:First}, ${2:V}) $3' -p113184 -tp113185 -a(S'scissorIndexed/5' -p113186 -S'scissorIndexed(${1:Index}, ${2:Left}, ${3:Bottom}, ${4:Width}, ${5:Height}) $6' -p113187 -tp113188 -a(S'scissorIndexedv/2' -p113189 -S'scissorIndexedv(${1:Index}, ${2:V}) $3' -p113190 -tp113191 -a(S'secondaryColor3b/3' -p113192 -S'secondaryColor3b(${1:Red}, ${2:Green}, ${3:Blue}) $4' -p113193 -tp113194 -a(S'secondaryColor3bv/1' -p113195 -S'secondaryColor3bv(${1:V}) $2' -p113196 -tp113197 -a(S'secondaryColor3d/3' -p113198 -S'secondaryColor3d(${1:Red}, ${2:Green}, ${3:Blue}) $4' -p113199 -tp113200 -a(S'secondaryColor3dv/1' -p113201 -S'secondaryColor3dv(${1:V}) $2' -p113202 -tp113203 -a(S'secondaryColor3f/3' -p113204 -S'secondaryColor3f(${1:Red}, ${2:Green}, ${3:Blue}) $4' -p113205 -tp113206 -a(S'secondaryColor3fv/1' -p113207 -S'secondaryColor3fv(${1:V}) $2' -p113208 -tp113209 -a(S'secondaryColor3i/3' -p113210 -S'secondaryColor3i(${1:Red}, ${2:Green}, ${3:Blue}) $4' -p113211 -tp113212 -a(S'secondaryColor3iv/1' -p113213 -S'secondaryColor3iv(${1:V}) $2' -p113214 -tp113215 -a(S'secondaryColor3s/3' -p113216 -S'secondaryColor3s(${1:Red}, ${2:Green}, ${3:Blue}) $4' -p113217 -tp113218 -a(S'secondaryColor3sv/1' -p113219 -S'secondaryColor3sv(${1:V}) $2' -p113220 -tp113221 -a(S'secondaryColor3ub/3' -p113222 -S'secondaryColor3ub(${1:Red}, ${2:Green}, ${3:Blue}) $4' -p113223 -tp113224 -a(S'secondaryColor3ubv/1' -p113225 -S'secondaryColor3ubv(${1:V}) $2' -p113226 -tp113227 -a(S'secondaryColor3ui/3' -p113228 -S'secondaryColor3ui(${1:Red}, ${2:Green}, ${3:Blue}) $4' -p113229 -tp113230 -a(S'secondaryColor3uiv/1' -p113231 -S'secondaryColor3uiv(${1:V}) $2' -p113232 -tp113233 -a(S'secondaryColor3us/3' -p113234 -S'secondaryColor3us(${1:Red}, ${2:Green}, ${3:Blue}) $4' -p113235 -tp113236 -a(S'secondaryColor3usv/1' -p113237 -S'secondaryColor3usv(${1:V}) $2' -p113238 -tp113239 -a(S'secondaryColorPointer/4' -p113240 -S'secondaryColorPointer(${1:Size}, ${2:Type}, ${3:Stride}, ${4:Pointer}) $5' -p113241 -tp113242 -a(S'selectBuffer/2' -p113243 -S'selectBuffer(${1:Size}, ${2:Buffer}) $3' -p113244 -tp113245 -a(S'send_bin/1' -p113246 -S'send_bin(${1:Bin}) $2' -p113247 -tp113248 -a(S'separableFilter2D/8' -p113249 -S'separableFilter2D(${1:Target}, ${2:Internalformat}, ${3:Width}, ${4:Height}, ${5:Format}, ${6:Type}, ${7:Row}, ${8:Column}) $9' -p113250 -tp113251 -a(S'shadeModel/1' -p113252 -S'shadeModel(${1:Mode}) $2' -p113253 -tp113254 -a(S'shaderBinary/3' -p113255 -S'shaderBinary(${1:Shaders}, ${2:Binaryformat}, ${3:Binary}) $4' -p113256 -tp113257 -a(S'shaderSource/2' -p113258 -S'shaderSource(${1:Shader}, ${2:String}) $3' -p113259 -tp113260 -a(S'shaderSourceARB/2' -p113261 -S'shaderSourceARB(${1:ShaderObj}, ${2:String}) $3' -p113262 -tp113263 -a(S'stencilClearTagEXT/2' -p113264 -S'stencilClearTagEXT(${1:StencilTagBits}, ${2:StencilClearTag}) $3' -p113265 -tp113266 -a(S'stencilFunc/3' -p113267 -S'stencilFunc(${1:Func}, ${2:Ref}, ${3:Mask}) $4' -p113268 -tp113269 -a(S'stencilFuncSeparate/4' -p113270 -S'stencilFuncSeparate(${1:Face}, ${2:Func}, ${3:Ref}, ${4:Mask}) $5' -p113271 -tp113272 -a(S'stencilMask/1' -p113273 -S'stencilMask(${1:Mask}) $2' -p113274 -tp113275 -a(S'stencilMaskSeparate/2' -p113276 -S'stencilMaskSeparate(${1:Face}, ${2:Mask}) $3' -p113277 -tp113278 -a(S'stencilOp/3' -p113279 -S'stencilOp(${1:Fail}, ${2:Zfail}, ${3:Zpass}) $4' -p113280 -tp113281 -a(S'stencilOpSeparate/4' -p113282 -S'stencilOpSeparate(${1:Face}, ${2:Sfail}, ${3:Dpfail}, ${4:Dppass}) $5' -p113283 -tp113284 -a(S'texBuffer/3' -p113285 -S'texBuffer(${1:Target}, ${2:Internalformat}, ${3:Buffer}) $4' -p113286 -tp113287 -a(S'texCoord1d/1' -p113288 -S'texCoord1d(${1:S}) $2' -p113289 -tp113290 -a(S'texCoord1dv/1' -p113291 -S'texCoord1dv(${1:V}) $2' -p113292 -tp113293 -a(S'texCoord1f/1' -p113294 -S'texCoord1f(${1:S}) $2' -p113295 -tp113296 -a(S'texCoord1fv/1' -p113297 -S'texCoord1fv(${1:V}) $2' -p113298 -tp113299 -a(S'texCoord1i/1' -p113300 -S'texCoord1i(${1:S}) $2' -p113301 -tp113302 -a(S'texCoord1iv/1' -p113303 -S'texCoord1iv(${1:V}) $2' -p113304 -tp113305 -a(S'texCoord1s/1' -p113306 -S'texCoord1s(${1:S}) $2' -p113307 -tp113308 -a(S'texCoord1sv/1' -p113309 -S'texCoord1sv(${1:V}) $2' -p113310 -tp113311 -a(S'texCoord2d/2' -p113312 -S'texCoord2d(${1:S}, ${2:T}) $3' -p113313 -tp113314 -a(S'texCoord2dv/1' -p113315 -S'texCoord2dv(${1:V}) $2' -p113316 -tp113317 -a(S'texCoord2f/2' -p113318 -S'texCoord2f(${1:S}, ${2:T}) $3' -p113319 -tp113320 -a(S'texCoord2fv/1' -p113321 -S'texCoord2fv(${1:V}) $2' -p113322 -tp113323 -a(S'texCoord2i/2' -p113324 -S'texCoord2i(${1:S}, ${2:T}) $3' -p113325 -tp113326 -a(S'texCoord2iv/1' -p113327 -S'texCoord2iv(${1:V}) $2' -p113328 -tp113329 -a(S'texCoord2s/2' -p113330 -S'texCoord2s(${1:S}, ${2:T}) $3' -p113331 -tp113332 -a(S'texCoord2sv/1' -p113333 -S'texCoord2sv(${1:V}) $2' -p113334 -tp113335 -a(S'texCoord3d/3' -p113336 -S'texCoord3d(${1:S}, ${2:T}, ${3:R}) $4' -p113337 -tp113338 -a(S'texCoord3dv/1' -p113339 -S'texCoord3dv(${1:V}) $2' -p113340 -tp113341 -a(S'texCoord3f/3' -p113342 -S'texCoord3f(${1:S}, ${2:T}, ${3:R}) $4' -p113343 -tp113344 -a(S'texCoord3fv/1' -p113345 -S'texCoord3fv(${1:V}) $2' -p113346 -tp113347 -a(S'texCoord3i/3' -p113348 -S'texCoord3i(${1:S}, ${2:T}, ${3:R}) $4' -p113349 -tp113350 -a(S'texCoord3iv/1' -p113351 -S'texCoord3iv(${1:V}) $2' -p113352 -tp113353 -a(S'texCoord3s/3' -p113354 -S'texCoord3s(${1:S}, ${2:T}, ${3:R}) $4' -p113355 -tp113356 -a(S'texCoord3sv/1' -p113357 -S'texCoord3sv(${1:V}) $2' -p113358 -tp113359 -a(S'texCoord4d/4' -p113360 -S'texCoord4d(${1:S}, ${2:T}, ${3:R}, ${4:Q}) $5' -p113361 -tp113362 -a(S'texCoord4dv/1' -p113363 -S'texCoord4dv(${1:V}) $2' -p113364 -tp113365 -a(S'texCoord4f/4' -p113366 -S'texCoord4f(${1:S}, ${2:T}, ${3:R}, ${4:Q}) $5' -p113367 -tp113368 -a(S'texCoord4fv/1' -p113369 -S'texCoord4fv(${1:V}) $2' -p113370 -tp113371 -a(S'texCoord4i/4' -p113372 -S'texCoord4i(${1:S}, ${2:T}, ${3:R}, ${4:Q}) $5' -p113373 -tp113374 -a(S'texCoord4iv/1' -p113375 -S'texCoord4iv(${1:V}) $2' -p113376 -tp113377 -a(S'texCoord4s/4' -p113378 -S'texCoord4s(${1:S}, ${2:T}, ${3:R}, ${4:Q}) $5' -p113379 -tp113380 -a(S'texCoord4sv/1' -p113381 -S'texCoord4sv(${1:V}) $2' -p113382 -tp113383 -a(S'texCoordPointer/4' -p113384 -S'texCoordPointer(${1:Size}, ${2:Type}, ${3:Stride}, ${4:Ptr}) $5' -p113385 -tp113386 -a(S'texEnvf/3' -p113387 -S'texEnvf(${1:Target}, ${2:Pname}, ${3:Param}) $4' -p113388 -tp113389 -a(S'texEnvfv/3' -p113390 -S'texEnvfv(${1:Target}, ${2:Pname}, ${3:Params}) $4' -p113391 -tp113392 -a(S'texEnvi/3' -p113393 -S'texEnvi(${1:Target}, ${2:Pname}, ${3:Param}) $4' -p113394 -tp113395 -a(S'texEnviv/3' -p113396 -S'texEnviv(${1:Target}, ${2:Pname}, ${3:Params}) $4' -p113397 -tp113398 -a(S'texGend/3' -p113399 -S'texGend(${1:Coord}, ${2:Pname}, ${3:Param}) $4' -p113400 -tp113401 -a(S'texGendv/3' -p113402 -S'texGendv(${1:Coord}, ${2:Pname}, ${3:Params}) $4' -p113403 -tp113404 -a(S'texGenf/3' -p113405 -S'texGenf(${1:Coord}, ${2:Pname}, ${3:Param}) $4' -p113406 -tp113407 -a(S'texGenfv/3' -p113408 -S'texGenfv(${1:Coord}, ${2:Pname}, ${3:Params}) $4' -p113409 -tp113410 -a(S'texGeni/3' -p113411 -S'texGeni(${1:Coord}, ${2:Pname}, ${3:Param}) $4' -p113412 -tp113413 -a(S'texGeniv/3' -p113414 -S'texGeniv(${1:Coord}, ${2:Pname}, ${3:Params}) $4' -p113415 -tp113416 -a(S'texImage1D/8' -p113417 -S'texImage1D(${1:Target}, ${2:Level}, ${3:InternalFormat}, ${4:Width}, ${5:Border}, ${6:Format}, ${7:Type}, ${8:Pixels}) $9' -p113418 -tp113419 -a(S'texImage2D/9' -p113420 -S'texImage2D(${1:Target}, ${2:Level}, ${3:InternalFormat}, ${4:Width}, ${5:Height}, ${6:Border}, ${7:Format}, ${8:Type}, ${9:Pixels}) $10' -p113421 -tp113422 -a(S'texImage2DMultisample/6' -p113423 -S'texImage2DMultisample(${1:Target}, ${2:Samples}, ${3:Internalformat}, ${4:Width}, ${5:Height}, ${6:Fixedsamplelocations}) $7' -p113424 -tp113425 -a(S'texImage3D/10' -p113426 -S'texImage3D(${1:Target}, ${2:Level}, ${3:InternalFormat}, ${4:Width}, ${5:Height}, ${6:Depth}, ${7:Border}, ${8:Format}, ${9:Type}, ${10:Pixels}) $11' -p113427 -tp113428 -a(S'texImage3DMultisample/7' -p113429 -S'texImage3DMultisample(${1:Target}, ${2:Samples}, ${3:Internalformat}, ${4:Width}, ${5:Height}, ${6:Depth}, ${7:Fixedsamplelocations}) $8' -p113430 -tp113431 -a(S'texParameterIiv/3' -p113432 -S'texParameterIiv(${1:Target}, ${2:Pname}, ${3:Params}) $4' -p113433 -tp113434 -a(S'texParameterIuiv/3' -p113435 -S'texParameterIuiv(${1:Target}, ${2:Pname}, ${3:Params}) $4' -p113436 -tp113437 -a(S'texParameterf/3' -p113438 -S'texParameterf(${1:Target}, ${2:Pname}, ${3:Param}) $4' -p113439 -tp113440 -a(S'texParameterfv/3' -p113441 -S'texParameterfv(${1:Target}, ${2:Pname}, ${3:Params}) $4' -p113442 -tp113443 -a(S'texParameteri/3' -p113444 -S'texParameteri(${1:Target}, ${2:Pname}, ${3:Param}) $4' -p113445 -tp113446 -a(S'texParameteriv/3' -p113447 -S'texParameteriv(${1:Target}, ${2:Pname}, ${3:Params}) $4' -p113448 -tp113449 -a(S'texStorage1D/4' -p113450 -S'texStorage1D(${1:Target}, ${2:Levels}, ${3:Internalformat}, ${4:Width}) $5' -p113451 -tp113452 -a(S'texStorage2D/5' -p113453 -S'texStorage2D(${1:Target}, ${2:Levels}, ${3:Internalformat}, ${4:Width}, ${5:Height}) $6' -p113454 -tp113455 -a(S'texStorage3D/6' -p113456 -S'texStorage3D(${1:Target}, ${2:Levels}, ${3:Internalformat}, ${4:Width}, ${5:Height}, ${6:Depth}) $7' -p113457 -tp113458 -a(S'texSubImage1D/7' -p113459 -S'texSubImage1D(${1:Target}, ${2:Level}, ${3:Xoffset}, ${4:Width}, ${5:Format}, ${6:Type}, ${7:Pixels}) $8' -p113460 -tp113461 -a(S'texSubImage2D/9' -p113462 -S'texSubImage2D(${1:Target}, ${2:Level}, ${3:Xoffset}, ${4:Yoffset}, ${5:Width}, ${6:Height}, ${7:Format}, ${8:Type}, ${9:Pixels}) $10' -p113463 -tp113464 -a(S'texSubImage3D/11' -p113465 -S'texSubImage3D(${1:Target}, ${2:Level}, ${3:Xoffset}, ${4:Yoffset}, ${5:Zoffset}, ${6:Width}, ${7:Height}, ${8:Depth}, ${9:Format}, ${10:Type}, ${11:Pixels}) $12' -p113466 -tp113467 -a(S'transformFeedbackVaryings/3' -p113468 -S'transformFeedbackVaryings(${1:Program}, ${2:Varyings}, ${3:BufferMode}) $4' -p113469 -tp113470 -a(S'translated/3' -p113471 -S'translated(${1:X}, ${2:Y}, ${3:Z}) $4' -p113472 -tp113473 -a(S'translatef/3' -p113474 -S'translatef(${1:X}, ${2:Y}, ${3:Z}) $4' -p113475 -tp113476 -a(S'uniform1d/2' -p113477 -S'uniform1d(${1:Location}, ${2:X}) $3' -p113478 -tp113479 -a(S'uniform1dv/2' -p113480 -S'uniform1dv(${1:Location}, ${2:Value}) $3' -p113481 -tp113482 -a(S'uniform1f/2' -p113483 -S'uniform1f(${1:Location}, ${2:V0}) $3' -p113484 -tp113485 -a(S'uniform1fv/2' -p113486 -S'uniform1fv(${1:Location}, ${2:Value}) $3' -p113487 -tp113488 -a(S'uniform1i/2' -p113489 -S'uniform1i(${1:Location}, ${2:V0}) $3' -p113490 -tp113491 -a(S'uniform1iv/2' -p113492 -S'uniform1iv(${1:Location}, ${2:Value}) $3' -p113493 -tp113494 -a(S'uniform1ui/2' -p113495 -S'uniform1ui(${1:Location}, ${2:V0}) $3' -p113496 -tp113497 -a(S'uniform1uiv/2' -p113498 -S'uniform1uiv(${1:Location}, ${2:Value}) $3' -p113499 -tp113500 -a(S'uniform2d/3' -p113501 -S'uniform2d(${1:Location}, ${2:X}, ${3:Y}) $4' -p113502 -tp113503 -a(S'uniform2dv/2' -p113504 -S'uniform2dv(${1:Location}, ${2:Value}) $3' -p113505 -tp113506 -a(S'uniform2f/3' -p113507 -S'uniform2f(${1:Location}, ${2:V0}, ${3:V1}) $4' -p113508 -tp113509 -a(S'uniform2fv/2' -p113510 -S'uniform2fv(${1:Location}, ${2:Value}) $3' -p113511 -tp113512 -a(S'uniform2i/3' -p113513 -S'uniform2i(${1:Location}, ${2:V0}, ${3:V1}) $4' -p113514 -tp113515 -a(S'uniform2iv/2' -p113516 -S'uniform2iv(${1:Location}, ${2:Value}) $3' -p113517 -tp113518 -a(S'uniform2ui/3' -p113519 -S'uniform2ui(${1:Location}, ${2:V0}, ${3:V1}) $4' -p113520 -tp113521 -a(S'uniform2uiv/2' -p113522 -S'uniform2uiv(${1:Location}, ${2:Value}) $3' -p113523 -tp113524 -a(S'uniform3d/4' -p113525 -S'uniform3d(${1:Location}, ${2:X}, ${3:Y}, ${4:Z}) $5' -p113526 -tp113527 -a(S'uniform3dv/2' -p113528 -S'uniform3dv(${1:Location}, ${2:Value}) $3' -p113529 -tp113530 -a(S'uniform3f/4' -p113531 -S'uniform3f(${1:Location}, ${2:V0}, ${3:V1}, ${4:V2}) $5' -p113532 -tp113533 -a(S'uniform3fv/2' -p113534 -S'uniform3fv(${1:Location}, ${2:Value}) $3' -p113535 -tp113536 -a(S'uniform3i/4' -p113537 -S'uniform3i(${1:Location}, ${2:V0}, ${3:V1}, ${4:V2}) $5' -p113538 -tp113539 -a(S'uniform3iv/2' -p113540 -S'uniform3iv(${1:Location}, ${2:Value}) $3' -p113541 -tp113542 -a(S'uniform3ui/4' -p113543 -S'uniform3ui(${1:Location}, ${2:V0}, ${3:V1}, ${4:V2}) $5' -p113544 -tp113545 -a(S'uniform3uiv/2' -p113546 -S'uniform3uiv(${1:Location}, ${2:Value}) $3' -p113547 -tp113548 -a(S'uniform4d/5' -p113549 -S'uniform4d(${1:Location}, ${2:X}, ${3:Y}, ${4:Z}, ${5:W}) $6' -p113550 -tp113551 -a(S'uniform4dv/2' -p113552 -S'uniform4dv(${1:Location}, ${2:Value}) $3' -p113553 -tp113554 -a(S'uniform4f/5' -p113555 -S'uniform4f(${1:Location}, ${2:V0}, ${3:V1}, ${4:V2}, ${5:V3}) $6' -p113556 -tp113557 -a(S'uniform4fv/2' -p113558 -S'uniform4fv(${1:Location}, ${2:Value}) $3' -p113559 -tp113560 -a(S'uniform4i/5' -p113561 -S'uniform4i(${1:Location}, ${2:V0}, ${3:V1}, ${4:V2}, ${5:V3}) $6' -p113562 -tp113563 -a(S'uniform4iv/2' -p113564 -S'uniform4iv(${1:Location}, ${2:Value}) $3' -p113565 -tp113566 -a(S'uniform4ui/5' -p113567 -S'uniform4ui(${1:Location}, ${2:V0}, ${3:V1}, ${4:V2}, ${5:V3}) $6' -p113568 -tp113569 -a(S'uniform4uiv/2' -p113570 -S'uniform4uiv(${1:Location}, ${2:Value}) $3' -p113571 -tp113572 -a(S'uniformBlockBinding/3' -p113573 -S'uniformBlockBinding(${1:Program}, ${2:UniformBlockIndex}, ${3:UniformBlockBinding}) $4' -p113574 -tp113575 -a(S'uniformMatrix2dv/3' -p113576 -S'uniformMatrix2dv(${1:Location}, ${2:Transpose}, ${3:Value}) $4' -p113577 -tp113578 -a(S'uniformMatrix2fv/3' -p113579 -S'uniformMatrix2fv(${1:Location}, ${2:Transpose}, ${3:Value}) $4' -p113580 -tp113581 -a(S'uniformMatrix2x3dv/3' -p113582 -S'uniformMatrix2x3dv(${1:Location}, ${2:Transpose}, ${3:Value}) $4' -p113583 -tp113584 -a(S'uniformMatrix2x3fv/3' -p113585 -S'uniformMatrix2x3fv(${1:Location}, ${2:Transpose}, ${3:Value}) $4' -p113586 -tp113587 -a(S'uniformMatrix2x4dv/3' -p113588 -S'uniformMatrix2x4dv(${1:Location}, ${2:Transpose}, ${3:Value}) $4' -p113589 -tp113590 -a(S'uniformMatrix2x4fv/3' -p113591 -S'uniformMatrix2x4fv(${1:Location}, ${2:Transpose}, ${3:Value}) $4' -p113592 -tp113593 -a(S'uniformMatrix3dv/3' -p113594 -S'uniformMatrix3dv(${1:Location}, ${2:Transpose}, ${3:Value}) $4' -p113595 -tp113596 -a(S'uniformMatrix3fv/3' -p113597 -S'uniformMatrix3fv(${1:Location}, ${2:Transpose}, ${3:Value}) $4' -p113598 -tp113599 -a(S'uniformMatrix3x2dv/3' -p113600 -S'uniformMatrix3x2dv(${1:Location}, ${2:Transpose}, ${3:Value}) $4' -p113601 -tp113602 -a(S'uniformMatrix3x2fv/3' -p113603 -S'uniformMatrix3x2fv(${1:Location}, ${2:Transpose}, ${3:Value}) $4' -p113604 -tp113605 -a(S'uniformMatrix3x4dv/3' -p113606 -S'uniformMatrix3x4dv(${1:Location}, ${2:Transpose}, ${3:Value}) $4' -p113607 -tp113608 -a(S'uniformMatrix3x4fv/3' -p113609 -S'uniformMatrix3x4fv(${1:Location}, ${2:Transpose}, ${3:Value}) $4' -p113610 -tp113611 -a(S'uniformMatrix4dv/3' -p113612 -S'uniformMatrix4dv(${1:Location}, ${2:Transpose}, ${3:Value}) $4' -p113613 -tp113614 -a(S'uniformMatrix4fv/3' -p113615 -S'uniformMatrix4fv(${1:Location}, ${2:Transpose}, ${3:Value}) $4' -p113616 -tp113617 -a(S'uniformMatrix4x2dv/3' -p113618 -S'uniformMatrix4x2dv(${1:Location}, ${2:Transpose}, ${3:Value}) $4' -p113619 -tp113620 -a(S'uniformMatrix4x2fv/3' -p113621 -S'uniformMatrix4x2fv(${1:Location}, ${2:Transpose}, ${3:Value}) $4' -p113622 -tp113623 -a(S'uniformMatrix4x3dv/3' -p113624 -S'uniformMatrix4x3dv(${1:Location}, ${2:Transpose}, ${3:Value}) $4' -p113625 -tp113626 -a(S'uniformMatrix4x3fv/3' -p113627 -S'uniformMatrix4x3fv(${1:Location}, ${2:Transpose}, ${3:Value}) $4' -p113628 -tp113629 -a(S'uniformSubroutinesuiv/2' -p113630 -S'uniformSubroutinesuiv(${1:Shadertype}, ${2:Indices}) $3' -p113631 -tp113632 -a(S'useProgram/1' -p113633 -S'useProgram(${1:Program}) $2' -p113634 -tp113635 -a(S'useProgramObjectARB/1' -p113636 -S'useProgramObjectARB(${1:ProgramObj}) $2' -p113637 -tp113638 -a(S'useProgramStages/3' -p113639 -S'useProgramStages(${1:Pipeline}, ${2:Stages}, ${3:Program}) $4' -p113640 -tp113641 -a(S'validateProgram/1' -p113642 -S'validateProgram(${1:Program}) $2' -p113643 -tp113644 -a(S'validateProgramARB/1' -p113645 -S'validateProgramARB(${1:ProgramObj}) $2' -p113646 -tp113647 -a(S'validateProgramPipeline/1' -p113648 -S'validateProgramPipeline(${1:Pipeline}) $2' -p113649 -tp113650 -a(S'vertex2d/2' -p113651 -S'vertex2d(${1:X}, ${2:Y}) $3' -p113652 -tp113653 -a(S'vertex2dv/1' -p113654 -S'vertex2dv(${1:V}) $2' -p113655 -tp113656 -a(S'vertex2f/2' -p113657 -S'vertex2f(${1:X}, ${2:Y}) $3' -p113658 -tp113659 -a(S'vertex2fv/1' -p113660 -S'vertex2fv(${1:V}) $2' -p113661 -tp113662 -a(S'vertex2i/2' -p113663 -S'vertex2i(${1:X}, ${2:Y}) $3' -p113664 -tp113665 -a(S'vertex2iv/1' -p113666 -S'vertex2iv(${1:V}) $2' -p113667 -tp113668 -a(S'vertex2s/2' -p113669 -S'vertex2s(${1:X}, ${2:Y}) $3' -p113670 -tp113671 -a(S'vertex2sv/1' -p113672 -S'vertex2sv(${1:V}) $2' -p113673 -tp113674 -a(S'vertex3d/3' -p113675 -S'vertex3d(${1:X}, ${2:Y}, ${3:Z}) $4' -p113676 -tp113677 -a(S'vertex3dv/1' -p113678 -S'vertex3dv(${1:V}) $2' -p113679 -tp113680 -a(S'vertex3f/3' -p113681 -S'vertex3f(${1:X}, ${2:Y}, ${3:Z}) $4' -p113682 -tp113683 -a(S'vertex3fv/1' -p113684 -S'vertex3fv(${1:V}) $2' -p113685 -tp113686 -a(S'vertex3i/3' -p113687 -S'vertex3i(${1:X}, ${2:Y}, ${3:Z}) $4' -p113688 -tp113689 -a(S'vertex3iv/1' -p113690 -S'vertex3iv(${1:V}) $2' -p113691 -tp113692 -a(S'vertex3s/3' -p113693 -S'vertex3s(${1:X}, ${2:Y}, ${3:Z}) $4' -p113694 -tp113695 -a(S'vertex3sv/1' -p113696 -S'vertex3sv(${1:V}) $2' -p113697 -tp113698 -a(S'vertex4d/4' -p113699 -S'vertex4d(${1:X}, ${2:Y}, ${3:Z}, ${4:W}) $5' -p113700 -tp113701 -a(S'vertex4dv/1' -p113702 -S'vertex4dv(${1:V}) $2' -p113703 -tp113704 -a(S'vertex4f/4' -p113705 -S'vertex4f(${1:X}, ${2:Y}, ${3:Z}, ${4:W}) $5' -p113706 -tp113707 -a(S'vertex4fv/1' -p113708 -S'vertex4fv(${1:V}) $2' -p113709 -tp113710 -a(S'vertex4i/4' -p113711 -S'vertex4i(${1:X}, ${2:Y}, ${3:Z}, ${4:W}) $5' -p113712 -tp113713 -a(S'vertex4iv/1' -p113714 -S'vertex4iv(${1:V}) $2' -p113715 -tp113716 -a(S'vertex4s/4' -p113717 -S'vertex4s(${1:X}, ${2:Y}, ${3:Z}, ${4:W}) $5' -p113718 -tp113719 -a(S'vertex4sv/1' -p113720 -S'vertex4sv(${1:V}) $2' -p113721 -tp113722 -a(S'vertexAttrib1d/2' -p113723 -S'vertexAttrib1d(${1:Index}, ${2:X}) $3' -p113724 -tp113725 -a(S'vertexAttrib1dv/2' -p113726 -S'vertexAttrib1dv(${1:Index}, ${2:V}) $3' -p113727 -tp113728 -a(S'vertexAttrib1f/2' -p113729 -S'vertexAttrib1f(${1:Index}, ${2:X}) $3' -p113730 -tp113731 -a(S'vertexAttrib1fv/2' -p113732 -S'vertexAttrib1fv(${1:Index}, ${2:V}) $3' -p113733 -tp113734 -a(S'vertexAttrib1s/2' -p113735 -S'vertexAttrib1s(${1:Index}, ${2:X}) $3' -p113736 -tp113737 -a(S'vertexAttrib1sv/2' -p113738 -S'vertexAttrib1sv(${1:Index}, ${2:V}) $3' -p113739 -tp113740 -a(S'vertexAttrib2d/3' -p113741 -S'vertexAttrib2d(${1:Index}, ${2:X}, ${3:Y}) $4' -p113742 -tp113743 -a(S'vertexAttrib2dv/2' -p113744 -S'vertexAttrib2dv(${1:Index}, ${2:V}) $3' -p113745 -tp113746 -a(S'vertexAttrib2f/3' -p113747 -S'vertexAttrib2f(${1:Index}, ${2:X}, ${3:Y}) $4' -p113748 -tp113749 -a(S'vertexAttrib2fv/2' -p113750 -S'vertexAttrib2fv(${1:Index}, ${2:V}) $3' -p113751 -tp113752 -a(S'vertexAttrib2s/3' -p113753 -S'vertexAttrib2s(${1:Index}, ${2:X}, ${3:Y}) $4' -p113754 -tp113755 -a(S'vertexAttrib2sv/2' -p113756 -S'vertexAttrib2sv(${1:Index}, ${2:V}) $3' -p113757 -tp113758 -a(S'vertexAttrib3d/4' -p113759 -S'vertexAttrib3d(${1:Index}, ${2:X}, ${3:Y}, ${4:Z}) $5' -p113760 -tp113761 -a(S'vertexAttrib3dv/2' -p113762 -S'vertexAttrib3dv(${1:Index}, ${2:V}) $3' -p113763 -tp113764 -a(S'vertexAttrib3f/4' -p113765 -S'vertexAttrib3f(${1:Index}, ${2:X}, ${3:Y}, ${4:Z}) $5' -p113766 -tp113767 -a(S'vertexAttrib3fv/2' -p113768 -S'vertexAttrib3fv(${1:Index}, ${2:V}) $3' -p113769 -tp113770 -a(S'vertexAttrib3s/4' -p113771 -S'vertexAttrib3s(${1:Index}, ${2:X}, ${3:Y}, ${4:Z}) $5' -p113772 -tp113773 -a(S'vertexAttrib3sv/2' -p113774 -S'vertexAttrib3sv(${1:Index}, ${2:V}) $3' -p113775 -tp113776 -a(S'vertexAttrib4Nbv/2' -p113777 -S'vertexAttrib4Nbv(${1:Index}, ${2:V}) $3' -p113778 -tp113779 -a(S'vertexAttrib4Niv/2' -p113780 -S'vertexAttrib4Niv(${1:Index}, ${2:V}) $3' -p113781 -tp113782 -a(S'vertexAttrib4Nsv/2' -p113783 -S'vertexAttrib4Nsv(${1:Index}, ${2:V}) $3' -p113784 -tp113785 -a(S'vertexAttrib4Nub/5' -p113786 -S'vertexAttrib4Nub(${1:Index}, ${2:X}, ${3:Y}, ${4:Z}, ${5:W}) $6' -p113787 -tp113788 -a(S'vertexAttrib4Nubv/2' -p113789 -S'vertexAttrib4Nubv(${1:Index}, ${2:V}) $3' -p113790 -tp113791 -a(S'vertexAttrib4Nuiv/2' -p113792 -S'vertexAttrib4Nuiv(${1:Index}, ${2:V}) $3' -p113793 -tp113794 -a(S'vertexAttrib4Nusv/2' -p113795 -S'vertexAttrib4Nusv(${1:Index}, ${2:V}) $3' -p113796 -tp113797 -a(S'vertexAttrib4bv/2' -p113798 -S'vertexAttrib4bv(${1:Index}, ${2:V}) $3' -p113799 -tp113800 -a(S'vertexAttrib4d/5' -p113801 -S'vertexAttrib4d(${1:Index}, ${2:X}, ${3:Y}, ${4:Z}, ${5:W}) $6' -p113802 -tp113803 -a(S'vertexAttrib4dv/2' -p113804 -S'vertexAttrib4dv(${1:Index}, ${2:V}) $3' -p113805 -tp113806 -a(S'vertexAttrib4f/5' -p113807 -S'vertexAttrib4f(${1:Index}, ${2:X}, ${3:Y}, ${4:Z}, ${5:W}) $6' -p113808 -tp113809 -a(S'vertexAttrib4fv/2' -p113810 -S'vertexAttrib4fv(${1:Index}, ${2:V}) $3' -p113811 -tp113812 -a(S'vertexAttrib4iv/2' -p113813 -S'vertexAttrib4iv(${1:Index}, ${2:V}) $3' -p113814 -tp113815 -a(S'vertexAttrib4s/5' -p113816 -S'vertexAttrib4s(${1:Index}, ${2:X}, ${3:Y}, ${4:Z}, ${5:W}) $6' -p113817 -tp113818 -a(S'vertexAttrib4sv/2' -p113819 -S'vertexAttrib4sv(${1:Index}, ${2:V}) $3' -p113820 -tp113821 -a(S'vertexAttrib4ubv/2' -p113822 -S'vertexAttrib4ubv(${1:Index}, ${2:V}) $3' -p113823 -tp113824 -a(S'vertexAttrib4uiv/2' -p113825 -S'vertexAttrib4uiv(${1:Index}, ${2:V}) $3' -p113826 -tp113827 -a(S'vertexAttrib4usv/2' -p113828 -S'vertexAttrib4usv(${1:Index}, ${2:V}) $3' -p113829 -tp113830 -a(S'vertexAttribDivisor/2' -p113831 -S'vertexAttribDivisor(${1:Index}, ${2:Divisor}) $3' -p113832 -tp113833 -a(S'vertexAttribI1i/2' -p113834 -S'vertexAttribI1i(${1:Index}, ${2:X}) $3' -p113835 -tp113836 -a(S'vertexAttribI1iv/2' -p113837 -S'vertexAttribI1iv(${1:Index}, ${2:V}) $3' -p113838 -tp113839 -a(S'vertexAttribI1ui/2' -p113840 -S'vertexAttribI1ui(${1:Index}, ${2:X}) $3' -p113841 -tp113842 -a(S'vertexAttribI1uiv/2' -p113843 -S'vertexAttribI1uiv(${1:Index}, ${2:V}) $3' -p113844 -tp113845 -a(S'vertexAttribI2i/3' -p113846 -S'vertexAttribI2i(${1:Index}, ${2:X}, ${3:Y}) $4' -p113847 -tp113848 -a(S'vertexAttribI2iv/2' -p113849 -S'vertexAttribI2iv(${1:Index}, ${2:V}) $3' -p113850 -tp113851 -a(S'vertexAttribI2ui/3' -p113852 -S'vertexAttribI2ui(${1:Index}, ${2:X}, ${3:Y}) $4' -p113853 -tp113854 -a(S'vertexAttribI2uiv/2' -p113855 -S'vertexAttribI2uiv(${1:Index}, ${2:V}) $3' -p113856 -tp113857 -a(S'vertexAttribI3i/4' -p113858 -S'vertexAttribI3i(${1:Index}, ${2:X}, ${3:Y}, ${4:Z}) $5' -p113859 -tp113860 -a(S'vertexAttribI3iv/2' -p113861 -S'vertexAttribI3iv(${1:Index}, ${2:V}) $3' -p113862 -tp113863 -a(S'vertexAttribI3ui/4' -p113864 -S'vertexAttribI3ui(${1:Index}, ${2:X}, ${3:Y}, ${4:Z}) $5' -p113865 -tp113866 -a(S'vertexAttribI3uiv/2' -p113867 -S'vertexAttribI3uiv(${1:Index}, ${2:V}) $3' -p113868 -tp113869 -a(S'vertexAttribI4bv/2' -p113870 -S'vertexAttribI4bv(${1:Index}, ${2:V}) $3' -p113871 -tp113872 -a(S'vertexAttribI4i/5' -p113873 -S'vertexAttribI4i(${1:Index}, ${2:X}, ${3:Y}, ${4:Z}, ${5:W}) $6' -p113874 -tp113875 -a(S'vertexAttribI4iv/2' -p113876 -S'vertexAttribI4iv(${1:Index}, ${2:V}) $3' -p113877 -tp113878 -a(S'vertexAttribI4sv/2' -p113879 -S'vertexAttribI4sv(${1:Index}, ${2:V}) $3' -p113880 -tp113881 -a(S'vertexAttribI4ubv/2' -p113882 -S'vertexAttribI4ubv(${1:Index}, ${2:V}) $3' -p113883 -tp113884 -a(S'vertexAttribI4ui/5' -p113885 -S'vertexAttribI4ui(${1:Index}, ${2:X}, ${3:Y}, ${4:Z}, ${5:W}) $6' -p113886 -tp113887 -a(S'vertexAttribI4uiv/2' -p113888 -S'vertexAttribI4uiv(${1:Index}, ${2:V}) $3' -p113889 -tp113890 -a(S'vertexAttribI4usv/2' -p113891 -S'vertexAttribI4usv(${1:Index}, ${2:V}) $3' -p113892 -tp113893 -a(S'vertexAttribIPointer/5' -p113894 -S'vertexAttribIPointer(${1:Index}, ${2:Size}, ${3:Type}, ${4:Stride}, ${5:Pointer}) $6' -p113895 -tp113896 -a(S'vertexAttribL1d/2' -p113897 -S'vertexAttribL1d(${1:Index}, ${2:X}) $3' -p113898 -tp113899 -a(S'vertexAttribL1dv/2' -p113900 -S'vertexAttribL1dv(${1:Index}, ${2:V}) $3' -p113901 -tp113902 -a(S'vertexAttribL2d/3' -p113903 -S'vertexAttribL2d(${1:Index}, ${2:X}, ${3:Y}) $4' -p113904 -tp113905 -a(S'vertexAttribL2dv/2' -p113906 -S'vertexAttribL2dv(${1:Index}, ${2:V}) $3' -p113907 -tp113908 -a(S'vertexAttribL3d/4' -p113909 -S'vertexAttribL3d(${1:Index}, ${2:X}, ${3:Y}, ${4:Z}) $5' -p113910 -tp113911 -a(S'vertexAttribL3dv/2' -p113912 -S'vertexAttribL3dv(${1:Index}, ${2:V}) $3' -p113913 -tp113914 -a(S'vertexAttribL4d/5' -p113915 -S'vertexAttribL4d(${1:Index}, ${2:X}, ${3:Y}, ${4:Z}, ${5:W}) $6' -p113916 -tp113917 -a(S'vertexAttribL4dv/2' -p113918 -S'vertexAttribL4dv(${1:Index}, ${2:V}) $3' -p113919 -tp113920 -a(S'vertexAttribLPointer/5' -p113921 -S'vertexAttribLPointer(${1:Index}, ${2:Size}, ${3:Type}, ${4:Stride}, ${5:Pointer}) $6' -p113922 -tp113923 -a(S'vertexAttribPointer/6' -p113924 -S'vertexAttribPointer(${1:Index}, ${2:Size}, ${3:Type}, ${4:Normalized}, ${5:Stride}, ${6:Pointer}) $7' -p113925 -tp113926 -a(S'vertexBlendARB/1' -p113927 -S'vertexBlendARB(${1:Count}) $2' -p113928 -tp113929 -a(S'vertexPointer/4' -p113930 -S'vertexPointer(${1:Size}, ${2:Type}, ${3:Stride}, ${4:Ptr}) $5' -p113931 -tp113932 -a(S'viewport/4' -p113933 -S'viewport(${1:X}, ${2:Y}, ${3:Width}, ${4:Height}) $5' -p113934 -tp113935 -a(S'viewportArrayv/2' -p113936 -S'viewportArrayv(${1:First}, ${2:V}) $3' -p113937 -tp113938 -a(S'viewportIndexedf/5' -p113939 -S'viewportIndexedf(${1:Index}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p113940 -tp113941 -a(S'viewportIndexedfv/2' -p113942 -S'viewportIndexedfv(${1:Index}, ${2:V}) $3' -p113943 -tp113944 -a(S'waitSync/3' -p113945 -S'waitSync(${1:Sync}, ${2:Flags}, ${3:Timeout}) $4' -p113946 -tp113947 -a(S'weightbvARB/1' -p113948 -S'weightbvARB(${1:Weights}) $2' -p113949 -tp113950 -a(S'weightdvARB/1' -p113951 -S'weightdvARB(${1:Weights}) $2' -p113952 -tp113953 -a(S'weightfvARB/1' -p113954 -S'weightfvARB(${1:Weights}) $2' -p113955 -tp113956 -a(S'weightivARB/1' -p113957 -S'weightivARB(${1:Weights}) $2' -p113958 -tp113959 -a(S'weightsvARB/1' -p113960 -S'weightsvARB(${1:Weights}) $2' -p113961 -tp113962 -a(S'weightubvARB/1' -p113963 -S'weightubvARB(${1:Weights}) $2' -p113964 -tp113965 -a(S'weightuivARB/1' -p113966 -S'weightuivARB(${1:Weights}) $2' -p113967 -tp113968 -a(S'weightusvARB/1' -p113969 -S'weightusvARB(${1:Weights}) $2' -p113970 -tp113971 -a(S'windowPos2d/2' -p113972 -S'windowPos2d(${1:X}, ${2:Y}) $3' -p113973 -tp113974 -a(S'windowPos2dv/1' -p113975 -S'windowPos2dv(${1:V}) $2' -p113976 -tp113977 -a(S'windowPos2f/2' -p113978 -S'windowPos2f(${1:X}, ${2:Y}) $3' -p113979 -tp113980 -a(S'windowPos2fv/1' -p113981 -S'windowPos2fv(${1:V}) $2' -p113982 -tp113983 -a(S'windowPos2i/2' -p113984 -S'windowPos2i(${1:X}, ${2:Y}) $3' -p113985 -tp113986 -a(S'windowPos2iv/1' -p113987 -S'windowPos2iv(${1:V}) $2' -p113988 -tp113989 -a(S'windowPos2s/2' -p113990 -S'windowPos2s(${1:X}, ${2:Y}) $3' -p113991 -tp113992 -a(S'windowPos2sv/1' -p113993 -S'windowPos2sv(${1:V}) $2' -p113994 -tp113995 -a(S'windowPos3d/3' -p113996 -S'windowPos3d(${1:X}, ${2:Y}, ${3:Z}) $4' -p113997 -tp113998 -a(S'windowPos3dv/1' -p113999 -S'windowPos3dv(${1:V}) $2' -p114000 -tp114001 -a(S'windowPos3f/3' -p114002 -S'windowPos3f(${1:X}, ${2:Y}, ${3:Z}) $4' -p114003 -tp114004 -a(S'windowPos3fv/1' -p114005 -S'windowPos3fv(${1:V}) $2' -p114006 -tp114007 -a(S'windowPos3i/3' -p114008 -S'windowPos3i(${1:X}, ${2:Y}, ${3:Z}) $4' -p114009 -tp114010 -a(S'windowPos3iv/1' -p114011 -S'windowPos3iv(${1:V}) $2' -p114012 -tp114013 -a(S'windowPos3s/3' -p114014 -S'windowPos3s(${1:X}, ${2:Y}, ${3:Z}) $4' -p114015 -tp114016 -a(S'windowPos3sv/1' -p114017 -S'windowPos3sv(${1:V}) $2' -p114018 -tp114019 -asS'CosEventChannelAdmin_SupplierAdmin' -p114020 -(lp114021 -(S'code_change/3' -p114022 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p114023 -tp114024 -a(S'handle_call/3' -p114025 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p114026 -tp114027 -a(S'handle_cast/2' -p114028 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p114029 -tp114030 -a(S'handle_info/2' -p114031 -S'handle_info(${1:Info}, ${2:State}) $3' -p114032 -tp114033 -a(S'init/1' -p114034 -S'init(${1:Env}) $2' -p114035 -tp114036 -a(S'obtain_pull_consumer/1' -p114037 -S'obtain_pull_consumer(${1:OE_THIS}) $2' -p114038 -tp114039 -a(S'obtain_pull_consumer/2' -p114040 -S'obtain_pull_consumer(${1:OE_THIS}, ${2:OE_Options}) $3' -p114041 -tp114042 -a(S'obtain_push_consumer/1' -p114043 -S'obtain_push_consumer(${1:OE_THIS}) $2' -p114044 -tp114045 -a(S'obtain_push_consumer/2' -p114046 -S'obtain_push_consumer(${1:OE_THIS}, ${2:OE_Options}) $3' -p114047 -tp114048 -a(S'oe_create/0' -p114049 -S'oe_create() $1' -p114050 -tp114051 -a(S'oe_create/1' -p114052 -S'oe_create(${1:Env}) $2' -p114053 -tp114054 -a(S'oe_create/2' -p114055 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p114056 -tp114057 -a(S'oe_create_link/0' -p114058 -S'oe_create_link() $1' -p114059 -tp114060 -a(S'oe_create_link/1' -p114061 -S'oe_create_link(${1:Env}) $2' -p114062 -tp114063 -a(S'oe_create_link/2' -p114064 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p114065 -tp114066 -a(S'oe_get_interface/0' -p114067 -S'oe_get_interface() $1' -p114068 -tp114069 -a(S'oe_is_a/1' -p114070 -S'oe_is_a(${1:Param1}) $2' -p114071 -tp114072 -a(S'oe_tc/1' -p114073 -S'oe_tc(${1:Param1}) $2' -p114074 -tp114075 -a(S'terminate/2' -p114076 -S'terminate(${1:Reason}, ${2:State}) $3' -p114077 -tp114078 -a(S'typeID/0' -p114079 -S'typeID() $1' -p114080 -tp114081 -asS'wxJoystickEvent' -p114082 -(lp114083 -(S'buttonDown/1' -p114084 -S'buttonDown(${1:This}) $2' -p114085 -tp114086 -a(S'buttonDown/2' -p114087 -S'buttonDown(${1:This}, ${2:Param2}) $3' -p114088 -tp114089 -a(S'buttonIsDown/1' -p114090 -S'buttonIsDown(${1:This}) $2' -p114091 -tp114092 -a(S'buttonIsDown/2' -p114093 -S'buttonIsDown(${1:This}, ${2:Param2}) $3' -p114094 -tp114095 -a(S'buttonUp/1' -p114096 -S'buttonUp(${1:This}) $2' -p114097 -tp114098 -a(S'buttonUp/2' -p114099 -S'buttonUp(${1:This}, ${2:Param2}) $3' -p114100 -tp114101 -a(S'getButtonChange/1' -p114102 -S'getButtonChange(${1:This}) $2' -p114103 -tp114104 -a(S'getButtonState/1' -p114105 -S'getButtonState(${1:This}) $2' -p114106 -tp114107 -a(S'getId/1' -p114108 -S'getId(${1:This}) $2' -p114109 -tp114110 -a(S'getJoystick/1' -p114111 -S'getJoystick(${1:This}) $2' -p114112 -tp114113 -a(S'getPosition/1' -p114114 -S'getPosition(${1:This}) $2' -p114115 -tp114116 -a(S'getSkipped/1' -p114117 -S'getSkipped(${1:This}) $2' -p114118 -tp114119 -a(S'getTimestamp/1' -p114120 -S'getTimestamp(${1:This}) $2' -p114121 -tp114122 -a(S'getZPosition/1' -p114123 -S'getZPosition(${1:This}) $2' -p114124 -tp114125 -a(S'isButton/1' -p114126 -S'isButton(${1:This}) $2' -p114127 -tp114128 -a(S'isCommandEvent/1' -p114129 -S'isCommandEvent(${1:This}) $2' -p114130 -tp114131 -a(S'isMove/1' -p114132 -S'isMove(${1:This}) $2' -p114133 -tp114134 -a(S'isZMove/1' -p114135 -S'isZMove(${1:This}) $2' -p114136 -tp114137 -a(S'parent_class/1' -p114138 -S'parent_class(${1:Param1}) $2' -p114139 -tp114140 -a(S'resumePropagation/2' -p114141 -S'resumePropagation(${1:This}, ${2:PropagationLevel}) $3' -p114142 -tp114143 -a(S'shouldPropagate/1' -p114144 -S'shouldPropagate(${1:This}) $2' -p114145 -tp114146 -a(S'skip/1' -p114147 -S'skip(${1:This}) $2' -p114148 -tp114149 -a(S'skip/2' -p114150 -S'skip(${1:This}, ${2:Options}) $3' -p114151 -tp114152 -a(S'stopPropagation/1' -p114153 -S'stopPropagation(${1:This}) $2' -p114154 -tp114155 -asS'CosEventDomainAdmin_AlreadyExists' -p114156 -(lp114157 -(S'id/0' -p114158 -S'id() $1' -p114159 -tp114160 -a(S'name/0' -p114161 -S'name() $1' -p114162 -tp114163 -a(S'tc/0' -p114164 -S'tc() $1' -p114165 -tp114166 -asS'dbg_ui_edit' -p114167 -(lp114168 -(S'init/6' -p114169 -S'init(${1:Pid}, ${2:GS}, ${3:Pos}, ${4:Title}, ${5:Prompt}, ${6:Edit}) $7' -p114170 -tp114171 -a(S'start/5' -p114172 -S'start(${1:GS}, ${2:Pos}, ${3:Title}, ${4:Prompt}, ${5:Edit}) $6' -p114173 -tp114174 -asS'base64' -p114175 -(lp114176 -(S'decode/1' -p114177 -S'decode(${1:Base64}) $2' -p114178 -tp114179 -a(S'decode_to_string/1' -p114180 -S'decode_to_string(${1:Base64}) $2' -p114181 -tp114182 -a(S'encode/1' -p114183 -S'encode(${1:Data}) $2' -p114184 -tp114185 -a(S'encode_to_string/1' -p114186 -S'encode_to_string(${1:Data}) $2' -p114187 -tp114188 -a(S'mime_decode/1' -p114189 -S'mime_decode(${1:Base64}) $2' -p114190 -tp114191 -a(S'mime_decode_to_string/1' -p114192 -S'mime_decode_to_string(${1:Base64}) $2' -p114193 -tp114194 -asS'et_gs_viewer' -p114195 -(lp114196 -(S'code_change/3' -p114197 -S'code_change(${1:Param1}, ${2:S}, ${3:Param3}) $4' -p114198 -tp114199 -a(S'handle_call/3' -p114200 -S'handle_call(${1:Request}, ${2:From}, ${3:S}) $4' -p114201 -tp114202 -a(S'handle_cast/2' -p114203 -S'handle_cast(${1:Msg}, ${2:S}) $3' -p114204 -tp114205 -a(S'handle_info/2' -p114206 -S'handle_info(${1:Click}, ${2:S}) $3' -p114207 -tp114208 -a(S'init/1' -p114209 -S'init(${1:Param1}) $2' -p114210 -tp114211 -a(S'start_link/1' -p114212 -S'start_link(${1:Options}) $2' -p114213 -tp114214 -a(S'terminate/2' -p114215 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p114216 -tp114217 -asS'edoc_lib' -p114218 -(lp114219 -(S'copy_file/2' -p114220 -S'copy_file(${1:From}, ${2:To}) $3' -p114221 -tp114222 -a(S'count/2' -p114223 -S'count(${1:X}, ${2:Xs}) $3' -p114224 -tp114225 -a(S'datestr/1' -p114226 -S'datestr(${1:Param1}) $2' -p114227 -tp114228 -a(S'escape_uri/1' -p114229 -S'escape_uri(${1:Param1}) $2' -p114230 -tp114231 -a(S'filename/1' -p114232 -S'filename(${1:N}) $2' -p114233 -tp114234 -a(S'find_doc_dirs/0' -p114235 -S'find_doc_dirs() $1' -p114236 -tp114237 -a(S'find_file/3' -p114238 -S'find_file(${1:Param1}, ${2:Pkg}, ${3:Name}) $4' -p114239 -tp114240 -a(S'find_sources/2' -p114241 -S'find_sources(${1:Path}, ${2:Opts}) $3' -p114242 -tp114243 -a(S'find_sources/3' -p114244 -S'find_sources(${1:Path}, ${2:Pkg}, ${3:Opts}) $4' -p114245 -tp114246 -a(S'get_doc_env/1' -p114247 -S'get_doc_env(${1:Opts}) $2' -p114248 -tp114249 -a(S'get_doc_env/4' -p114250 -S'get_doc_env(${1:App}, ${2:Packages}, ${3:Modules}, ${4:Opts}) $5' -p114251 -tp114252 -a(S'get_first_sentence/1' -p114253 -S'get_first_sentence(${1:Es}) $2' -p114254 -tp114255 -a(S'is_name/1' -p114256 -S'is_name(${1:Param1}) $2' -p114257 -tp114258 -a(S'is_relative_uri/1' -p114259 -S'is_relative_uri(${1:Param1}) $2' -p114260 -tp114261 -a(S'is_space/1' -p114262 -S'is_space(${1:Param1}) $2' -p114263 -tp114264 -a(S'join_uri/2' -p114265 -S'join_uri(${1:Base}, ${2:Path}) $3' -p114266 -tp114267 -a(S'lines/1' -p114268 -S'lines(${1:Cs}) $2' -p114269 -tp114270 -a(S'parse_contact/2' -p114271 -S'parse_contact(${1:S}, ${2:L}) $3' -p114272 -tp114273 -a(S'parse_expr/2' -p114274 -S'parse_expr(${1:S}, ${2:L}) $3' -p114275 -tp114276 -a(S'read_info_file/1' -p114277 -S'read_info_file(${1:Dir}) $2' -p114278 -tp114279 -a(S'run_doclet/2' -p114280 -S'run_doclet(${1:Fun}, ${2:Opts}) $3' -p114281 -tp114282 -a(S'run_layout/2' -p114283 -S'run_layout(${1:Fun}, ${2:Opts}) $3' -p114284 -tp114285 -a(S'segment/2' -p114286 -S'segment(${1:Es}, ${2:N}) $3' -p114287 -tp114288 -a(S'simplify_path/1' -p114289 -S'simplify_path(${1:P}) $2' -p114290 -tp114291 -a(S'split_at/2' -p114292 -S'split_at(${1:Cs}, ${2:K}) $3' -p114293 -tp114294 -a(S'split_at_space/1' -p114295 -S'split_at_space(${1:Cs}) $2' -p114296 -tp114297 -a(S'split_at_stop/1' -p114298 -S'split_at_stop(${1:Cs}) $2' -p114299 -tp114300 -a(S'strip_space/1' -p114301 -S'strip_space(${1:Cs}) $2' -p114302 -tp114303 -a(S'timestr/1' -p114304 -S'timestr(${1:Param1}) $2' -p114305 -tp114306 -a(S'to_label/1' -p114307 -S'to_label(${1:Cs}) $2' -p114308 -tp114309 -a(S'transpose/1' -p114310 -S'transpose(${1:Param1}) $2' -p114311 -tp114312 -a(S'try_subdir/2' -p114313 -S'try_subdir(${1:Dir}, ${2:Subdir}) $3' -p114314 -tp114315 -a(S'unique/1' -p114316 -S'unique(${1:Param1}) $2' -p114317 -tp114318 -a(S'uri_get/1' -p114319 -S'uri_get(${1:URI}) $2' -p114320 -tp114321 -a(S'write_file/3' -p114322 -S'write_file(${1:Text}, ${2:Dir}, ${3:Name}) $4' -p114323 -tp114324 -a(S'write_file/4' -p114325 -S'write_file(${1:Text}, ${2:Dir}, ${3:Name}, ${4:Package}) $5' -p114326 -tp114327 -a(S'write_info_file/4' -p114328 -S'write_info_file(${1:App}, ${2:Packages}, ${3:Modules}, ${4:Dir}) $5' -p114329 -tp114330 -asS'httpd_request_handler' -p114331 -(lp114332 -(S'code_change/3' -p114333 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p114334 -tp114335 -a(S'handle_call/3' -p114336 -S'handle_call(${1:Request}, ${2:From}, ${3:State}) $4' -p114337 -tp114338 -a(S'handle_cast/2' -p114339 -S'handle_cast(${1:Msg}, ${2:State}) $3' -p114340 -tp114341 -a(S'handle_info/2' -p114342 -S'handle_info(${1:Reason}, ${2:State}) $3' -p114343 -tp114344 -a(S'init/1' -p114345 -S'init(${1:Param1}) $2' -p114346 -tp114347 -a(S'socket_ownership_transfered/3' -p114348 -S'socket_ownership_transfered(${1:Pid}, ${2:SocketType}, ${3:Socket}) $4' -p114349 -tp114350 -a(S'start/2' -p114351 -S'start(${1:Manager}, ${2:ConfigDB}) $3' -p114352 -tp114353 -a(S'start/3' -p114354 -S'start(${1:Manager}, ${2:ConfigDB}, ${3:AcceptTimeout}) $4' -p114355 -tp114356 -a(S'terminate/2' -p114357 -S'terminate(${1:Reason}, ${2:State}) $3' -p114358 -tp114359 -asS'xmerl_ucs' -p114360 -(lp114361 -(S'from_latin9/1' -p114362 -S'from_latin9(${1:Bin}) $2' -p114363 -tp114364 -a(S'from_ucs2be/1' -p114365 -S'from_ucs2be(${1:Bin}) $2' -p114366 -tp114367 -a(S'from_ucs2be/2' -p114368 -S'from_ucs2be(${1:Bin}, ${2:Tail}) $3' -p114369 -tp114370 -a(S'from_ucs2le/1' -p114371 -S'from_ucs2le(${1:Bin}) $2' -p114372 -tp114373 -a(S'from_ucs2le/2' -p114374 -S'from_ucs2le(${1:Bin}, ${2:Tail}) $3' -p114375 -tp114376 -a(S'from_ucs4be/1' -p114377 -S'from_ucs4be(${1:Bin}) $2' -p114378 -tp114379 -a(S'from_ucs4be/2' -p114380 -S'from_ucs4be(${1:Bin}, ${2:Tail}) $3' -p114381 -tp114382 -a(S'from_ucs4le/1' -p114383 -S'from_ucs4le(${1:Bin}) $2' -p114384 -tp114385 -a(S'from_ucs4le/2' -p114386 -S'from_ucs4le(${1:Bin}, ${2:Tail}) $3' -p114387 -tp114388 -a(S'from_utf16be/1' -p114389 -S'from_utf16be(${1:Bin}) $2' -p114390 -tp114391 -a(S'from_utf16be/2' -p114392 -S'from_utf16be(${1:Bin}, ${2:Tail}) $3' -p114393 -tp114394 -a(S'from_utf16le/1' -p114395 -S'from_utf16le(${1:Bin}) $2' -p114396 -tp114397 -a(S'from_utf16le/2' -p114398 -S'from_utf16le(${1:Bin}, ${2:Tail}) $3' -p114399 -tp114400 -a(S'from_utf8/1' -p114401 -S'from_utf8(${1:Bin}) $2' -p114402 -tp114403 -a(S'is_ascii/1' -p114404 -S'is_ascii(${1:Param1}) $2' -p114405 -tp114406 -a(S'is_bmpchar/1' -p114407 -S'is_bmpchar(${1:Param1}) $2' -p114408 -tp114409 -a(S'is_incharset/2' -p114410 -S'is_incharset(${1:In}, ${2:Charset}) $3' -p114411 -tp114412 -a(S'is_iso10646/1' -p114413 -S'is_iso10646(${1:Param1}) $2' -p114414 -tp114415 -a(S'is_iso646_basic/1' -p114416 -S'is_iso646_basic(${1:Param1}) $2' -p114417 -tp114418 -a(S'is_latin1/1' -p114419 -S'is_latin1(${1:Param1}) $2' -p114420 -tp114421 -a(S'is_unicode/1' -p114422 -S'is_unicode(${1:Param1}) $2' -p114423 -tp114424 -a(S'is_visible_ascii/1' -p114425 -S'is_visible_ascii(${1:Param1}) $2' -p114426 -tp114427 -a(S'is_visible_latin1/1' -p114428 -S'is_visible_latin1(${1:Param1}) $2' -p114429 -tp114430 -a(S'to_ucs2be/1' -p114431 -S'to_ucs2be(${1:List}) $2' -p114432 -tp114433 -a(S'to_ucs2le/1' -p114434 -S'to_ucs2le(${1:List}) $2' -p114435 -tp114436 -a(S'to_ucs4be/1' -p114437 -S'to_ucs4be(${1:List}) $2' -p114438 -tp114439 -a(S'to_ucs4le/1' -p114440 -S'to_ucs4le(${1:List}) $2' -p114441 -tp114442 -a(S'to_unicode/2' -p114443 -S'to_unicode(${1:Input}, ${2:Charset}) $3' -p114444 -tp114445 -a(S'to_utf16be/1' -p114446 -S'to_utf16be(${1:List}) $2' -p114447 -tp114448 -a(S'to_utf16le/1' -p114449 -S'to_utf16le(${1:List}) $2' -p114450 -tp114451 -a(S'to_utf8/1' -p114452 -S'to_utf8(${1:List}) $2' -p114453 -tp114454 -asS'orber_request_number' -p114455 -(lp114456 -(S'code_change/3' -p114457 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p114458 -tp114459 -a(S'get/0' -p114460 -S'get() $1' -p114461 -tp114462 -a(S'handle_call/3' -p114463 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p114464 -tp114465 -a(S'handle_cast/2' -p114466 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p114467 -tp114468 -a(S'handle_info/2' -p114469 -S'handle_info(${1:Param1}, ${2:State}) $3' -p114470 -tp114471 -a(S'init/1' -p114472 -S'init(${1:Param1}) $2' -p114473 -tp114474 -a(S'reset/0' -p114475 -S'reset() $1' -p114476 -tp114477 -a(S'start/1' -p114478 -S'start(${1:Opts}) $2' -p114479 -tp114480 -a(S'terminate/2' -p114481 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p114482 -tp114483 -asS'docgen_otp_specs' -p114484 -(lp114485 -(S'module/2' -p114486 -S'module(${1:Element}, ${2:Options}) $3' -p114487 -tp114488 -a(S'overview/2' -p114489 -S'overview(${1:Param1}, ${2:Param2}) $3' -p114490 -tp114491 -a(S'package/2' -p114492 -S'package(${1:Param1}, ${2:Param2}) $3' -p114493 -tp114494 -a(S'type/1' -p114495 -S'type(${1:Es}) $2' -p114496 -tp114497 -asS'eval_bits' -p114498 -(lp114499 -(S'bin_gen/6' -p114500 -S'bin_gen(${1:Param1}, ${2:Bin}, ${3:Bs0}, ${4:BBs0}, ${5:Mfun}, ${6:Efun}) $7' -p114501 -tp114502 -a(S'expr_grp/3' -p114503 -S'expr_grp(${1:Fields}, ${2:Bindings}, ${3:EvalFun}) $4' -p114504 -tp114505 -a(S'expr_grp/5' -p114506 -S'expr_grp(${1:Fields}, ${2:Bindings}, ${3:EvalFun}, ${4:ListOfBits}, ${5:Param5}) $6' -p114507 -tp114508 -a(S'match_bits/6' -p114509 -S'match_bits() $1' -p114510 -tp114511 -a(S'match_bits/7' -p114512 -S'match_bits(${1:Fs}, ${2:Bin}, ${3:Bs0}, ${4:BBs}, ${5:Mfun}, ${6:Efun}, ${7:Param7}) $8' -p114513 -tp114514 -asS'wxIconBundle' -p114515 -(lp114516 -(S'addIcon/2' -p114517 -S'addIcon(${1:This}, ${2:Icon}) $3' -p114518 -tp114519 -a(S'addIcon/3' -p114520 -S'addIcon(${1:This}, ${2:File}, ${3:Type}) $4' -p114521 -tp114522 -a(S'destroy/1' -p114523 -S'destroy(${1:This}) $2' -p114524 -tp114525 -a(S'getIcon/1' -p114526 -S'getIcon(${1:This}) $2' -p114527 -tp114528 -a(S'getIcon/2' -p114529 -S'getIcon(${1:This}, ${2:Param2}) $3' -p114530 -tp114531 -a(S'new/0' -p114532 -S'new() $1' -p114533 -tp114534 -a(S'new/1' -p114535 -S'new(${1:Ic}) $2' -p114536 -tp114537 -a(S'new/2' -p114538 -S'new(${1:File}, ${2:Type}) $3' -p114539 -tp114540 -a(S'parent_class/1' -p114541 -S'parent_class(${1:Param1}) $2' -p114542 -tp114543 -asS'ct_repeat' -p114544 -(lp114545 -(S'log_loop_info/1' -p114546 -S'log_loop_info(${1:Args}) $2' -p114547 -tp114548 -a(S'loop_test/2' -p114549 -S'loop_test(${1:If}, ${2:Args}) $3' -p114550 -tp114551 -asS'dialyzer_races' -p114552 -(lp114553 -(S'beg_clause_new/3' -p114554 -S'beg_clause_new(${1:Arg}, ${2:Pats}, ${3:Guard}) $4' -p114555 -tp114556 -a(S'cleanup/1' -p114557 -S'cleanup(${1:Param1}) $2' -p114558 -tp114559 -a(S'end_case_new/1' -p114560 -S'end_case_new(${1:Clauses}) $2' -p114561 -tp114562 -a(S'end_clause_new/3' -p114563 -S'end_clause_new(${1:Arg}, ${2:Pats}, ${3:Guard}) $4' -p114564 -tp114565 -a(S'format_args/4' -p114566 -S'format_args(${1:ArgList}, ${2:TypeList}, ${3:CleanState}, ${4:Call}) $5' -p114567 -tp114568 -a(S'get_curr_fun/1' -p114569 -S'get_curr_fun(${1:Param1}) $2' -p114570 -tp114571 -a(S'get_curr_fun_args/1' -p114572 -S'get_curr_fun_args(${1:Param1}) $2' -p114573 -tp114574 -a(S'get_new_table/1' -p114575 -S'get_new_table(${1:Param1}) $2' -p114576 -tp114577 -a(S'get_race_analysis/1' -p114578 -S'get_race_analysis(${1:Param1}) $2' -p114579 -tp114580 -a(S'get_race_list/1' -p114581 -S'get_race_list(${1:Param1}) $2' -p114582 -tp114583 -a(S'get_race_list_size/1' -p114584 -S'get_race_list_size(${1:Param1}) $2' -p114585 -tp114586 -a(S'get_race_warnings/2' -p114587 -S'get_race_warnings(${1:Param1}, ${2:State}) $3' -p114588 -tp114589 -a(S'let_tag_new/2' -p114590 -S'let_tag_new(${1:Var}, ${2:Arg}) $3' -p114591 -tp114592 -a(S'new/0' -p114593 -S'new() $1' -p114594 -tp114595 -a(S'put_curr_fun/3' -p114596 -S'put_curr_fun(${1:CurrFun}, ${2:CurrFunLabel}, ${3:Races}) $4' -p114597 -tp114598 -a(S'put_fun_args/2' -p114599 -S'put_fun_args(${1:Args}, ${2:Races}) $3' -p114600 -tp114601 -a(S'put_race_analysis/2' -p114602 -S'put_race_analysis(${1:Analysis}, ${2:Races}) $3' -p114603 -tp114604 -a(S'put_race_list/3' -p114605 -S'put_race_list(${1:RaceList}, ${2:RaceListSize}, ${3:Races}) $4' -p114606 -tp114607 -a(S'race/1' -p114608 -S'race(${1:State}) $2' -p114609 -tp114610 -a(S'store_race_call/5' -p114611 -S'store_race_call(${1:Fun}, ${2:ArgTypes}, ${3:Args}, ${4:FileLine}, ${5:State}) $6' -p114612 -tp114613 -asS'observer_traceoptions_wx' -p114614 -(lp114615 -(S'output/2' -p114616 -S'output(${1:Parent}, ${2:Default}) $3' -p114617 -tp114618 -a(S'process_trace/2' -p114619 -S'process_trace(${1:Parent}, ${2:Default}) $3' -p114620 -tp114621 -a(S'select_matchspec/3' -p114622 -S'select_matchspec(${1:Pid}, ${2:Parent}, ${3:MatchSpecs}) $4' -p114623 -tp114624 -a(S'select_nodes/2' -p114625 -S'select_nodes(${1:Parent}, ${2:Nodes}) $3' -p114626 -tp114627 -a(S'trace_pattern/4' -p114628 -S'trace_pattern(${1:ParentPid}, ${2:Parent}, ${3:Node}, ${4:MatchSpecs}) $5' -p114629 -tp114630 -asS'CosPropertyService_PropertySetDefFactory' -p114631 -(lp114632 -(S'code_change/3' -p114633 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p114634 -tp114635 -a(S'create_constrained_propertysetdef/3' -p114636 -S'create_constrained_propertysetdef(${1:OE_THIS}, ${2:Allowed_property_types}, ${3:Allowed_property_defs}) $4' -p114637 -tp114638 -a(S'create_constrained_propertysetdef/4' -p114639 -S'create_constrained_propertysetdef(${1:OE_THIS}, ${2:OE_Options}, ${3:Allowed_property_types}, ${4:Allowed_property_defs}) $5' -p114640 -tp114641 -a(S'create_initial_propertysetdef/2' -p114642 -S'create_initial_propertysetdef(${1:OE_THIS}, ${2:Initial_property_defs}) $3' -p114643 -tp114644 -a(S'create_initial_propertysetdef/3' -p114645 -S'create_initial_propertysetdef(${1:OE_THIS}, ${2:OE_Options}, ${3:Initial_property_defs}) $4' -p114646 -tp114647 -a(S'create_propertysetdef/1' -p114648 -S'create_propertysetdef(${1:OE_THIS}) $2' -p114649 -tp114650 -a(S'create_propertysetdef/2' -p114651 -S'create_propertysetdef(${1:OE_THIS}, ${2:OE_Options}) $3' -p114652 -tp114653 -a(S'handle_call/3' -p114654 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p114655 -tp114656 -a(S'handle_cast/2' -p114657 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p114658 -tp114659 -a(S'handle_info/2' -p114660 -S'handle_info(${1:Param1}, ${2:State}) $3' -p114661 -tp114662 -a(S'init/1' -p114663 -S'init(${1:Env}) $2' -p114664 -tp114665 -a(S'oe_create/0' -p114666 -S'oe_create() $1' -p114667 -tp114668 -a(S'oe_create/1' -p114669 -S'oe_create(${1:Env}) $2' -p114670 -tp114671 -a(S'oe_create/2' -p114672 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p114673 -tp114674 -a(S'oe_create_link/0' -p114675 -S'oe_create_link() $1' -p114676 -tp114677 -a(S'oe_create_link/1' -p114678 -S'oe_create_link(${1:Env}) $2' -p114679 -tp114680 -a(S'oe_create_link/2' -p114681 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p114682 -tp114683 -a(S'oe_get_interface/0' -p114684 -S'oe_get_interface() $1' -p114685 -tp114686 -a(S'oe_is_a/1' -p114687 -S'oe_is_a(${1:Param1}) $2' -p114688 -tp114689 -a(S'oe_tc/1' -p114690 -S'oe_tc(${1:Param1}) $2' -p114691 -tp114692 -a(S'terminate/2' -p114693 -S'terminate(${1:Reason}, ${2:State}) $3' -p114694 -tp114695 -a(S'typeID/0' -p114696 -S'typeID() $1' -p114697 -tp114698 -asS'megaco_binary_transformer_prev3b' -p114699 -(lp114700 -(S'tr_message/3' -p114701 -S'tr_message(${1:MegaMsg}, ${2:Mode}, ${3:Config}) $4' -p114702 -tp114703 -a(S'tr_transaction/3' -p114704 -S'tr_transaction(${1:Trans}, ${2:Mode}, ${3:Config}) $4' -p114705 -tp114706 -asS'wxMultiChoiceDialog' -p114707 -(lp114708 -(S'cacheBestSize/2' -p114709 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p114710 -tp114711 -a(S'captureMouse/1' -p114712 -S'captureMouse(${1:This}) $2' -p114713 -tp114714 -a(S'center/1' -p114715 -S'center(${1:This}) $2' -p114716 -tp114717 -a(S'center/2' -p114718 -S'center(${1:This}, ${2:Options}) $3' -p114719 -tp114720 -a(S'centerOnParent/1' -p114721 -S'centerOnParent(${1:This}) $2' -p114722 -tp114723 -a(S'centerOnParent/2' -p114724 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p114725 -tp114726 -a(S'centerOnScreen/1' -p114727 -S'centerOnScreen(${1:This}) $2' -p114728 -tp114729 -a(S'centerOnScreen/2' -p114730 -S'centerOnScreen(${1:This}, ${2:Options}) $3' -p114731 -tp114732 -a(S'centre/1' -p114733 -S'centre(${1:This}) $2' -p114734 -tp114735 -a(S'centre/2' -p114736 -S'centre(${1:This}, ${2:Options}) $3' -p114737 -tp114738 -a(S'centreOnParent/1' -p114739 -S'centreOnParent(${1:This}) $2' -p114740 -tp114741 -a(S'centreOnParent/2' -p114742 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p114743 -tp114744 -a(S'centreOnScreen/1' -p114745 -S'centreOnScreen(${1:This}) $2' -p114746 -tp114747 -a(S'centreOnScreen/2' -p114748 -S'centreOnScreen(${1:This}, ${2:Options}) $3' -p114749 -tp114750 -a(S'clearBackground/1' -p114751 -S'clearBackground(${1:This}) $2' -p114752 -tp114753 -a(S'clientToScreen/2' -p114754 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p114755 -tp114756 -a(S'clientToScreen/3' -p114757 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p114758 -tp114759 -a(S'close/1' -p114760 -S'close(${1:This}) $2' -p114761 -tp114762 -a(S'close/2' -p114763 -S'close(${1:This}, ${2:Options}) $3' -p114764 -tp114765 -a(S'connect/2' -p114766 -S'connect(${1:This}, ${2:EventType}) $3' -p114767 -tp114768 -a(S'connect/3' -p114769 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p114770 -tp114771 -a(S'convertDialogToPixels/2' -p114772 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p114773 -tp114774 -a(S'convertPixelsToDialog/2' -p114775 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p114776 -tp114777 -a(S'createButtonSizer/2' -p114778 -S'createButtonSizer(${1:This}, ${2:Flags}) $3' -p114779 -tp114780 -a(S'createStdDialogButtonSizer/2' -p114781 -S'createStdDialogButtonSizer(${1:This}, ${2:Flags}) $3' -p114782 -tp114783 -a(S'destroy/1' -p114784 -S'destroy(${1:This}) $2' -p114785 -tp114786 -a(S'destroyChildren/1' -p114787 -S'destroyChildren(${1:This}) $2' -p114788 -tp114789 -a(S'disable/1' -p114790 -S'disable(${1:This}) $2' -p114791 -tp114792 -a(S'disconnect/1' -p114793 -S'disconnect(${1:This}) $2' -p114794 -tp114795 -a(S'disconnect/2' -p114796 -S'disconnect(${1:This}, ${2:EventType}) $3' -p114797 -tp114798 -a(S'disconnect/3' -p114799 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p114800 -tp114801 -a(S'enable/1' -p114802 -S'enable(${1:This}) $2' -p114803 -tp114804 -a(S'enable/2' -p114805 -S'enable(${1:This}, ${2:Options}) $3' -p114806 -tp114807 -a(S'endModal/2' -p114808 -S'endModal(${1:This}, ${2:RetCode}) $3' -p114809 -tp114810 -a(S'findWindow/2' -p114811 -S'findWindow(${1:This}, ${2:Winid}) $3' -p114812 -tp114813 -a(S'fit/1' -p114814 -S'fit(${1:This}) $2' -p114815 -tp114816 -a(S'fitInside/1' -p114817 -S'fitInside(${1:This}) $2' -p114818 -tp114819 -a(S'freeze/1' -p114820 -S'freeze(${1:This}) $2' -p114821 -tp114822 -a(S'getAcceleratorTable/1' -p114823 -S'getAcceleratorTable(${1:This}) $2' -p114824 -tp114825 -a(S'getAffirmativeId/1' -p114826 -S'getAffirmativeId(${1:This}) $2' -p114827 -tp114828 -a(S'getBackgroundColour/1' -p114829 -S'getBackgroundColour(${1:This}) $2' -p114830 -tp114831 -a(S'getBackgroundStyle/1' -p114832 -S'getBackgroundStyle(${1:This}) $2' -p114833 -tp114834 -a(S'getBestSize/1' -p114835 -S'getBestSize(${1:This}) $2' -p114836 -tp114837 -a(S'getCaret/1' -p114838 -S'getCaret(${1:This}) $2' -p114839 -tp114840 -a(S'getCharHeight/1' -p114841 -S'getCharHeight(${1:This}) $2' -p114842 -tp114843 -a(S'getCharWidth/1' -p114844 -S'getCharWidth(${1:This}) $2' -p114845 -tp114846 -a(S'getChildren/1' -p114847 -S'getChildren(${1:This}) $2' -p114848 -tp114849 -a(S'getClientSize/1' -p114850 -S'getClientSize(${1:This}) $2' -p114851 -tp114852 -a(S'getContainingSizer/1' -p114853 -S'getContainingSizer(${1:This}) $2' -p114854 -tp114855 -a(S'getCursor/1' -p114856 -S'getCursor(${1:This}) $2' -p114857 -tp114858 -a(S'getDropTarget/1' -p114859 -S'getDropTarget(${1:This}) $2' -p114860 -tp114861 -a(S'getEventHandler/1' -p114862 -S'getEventHandler(${1:This}) $2' -p114863 -tp114864 -a(S'getExtraStyle/1' -p114865 -S'getExtraStyle(${1:This}) $2' -p114866 -tp114867 -a(S'getFont/1' -p114868 -S'getFont(${1:This}) $2' -p114869 -tp114870 -a(S'getForegroundColour/1' -p114871 -S'getForegroundColour(${1:This}) $2' -p114872 -tp114873 -a(S'getGrandParent/1' -p114874 -S'getGrandParent(${1:This}) $2' -p114875 -tp114876 -a(S'getHandle/1' -p114877 -S'getHandle(${1:This}) $2' -p114878 -tp114879 -a(S'getHelpText/1' -p114880 -S'getHelpText(${1:This}) $2' -p114881 -tp114882 -a(S'getIcon/1' -p114883 -S'getIcon(${1:This}) $2' -p114884 -tp114885 -a(S'getIcons/1' -p114886 -S'getIcons(${1:This}) $2' -p114887 -tp114888 -a(S'getId/1' -p114889 -S'getId(${1:This}) $2' -p114890 -tp114891 -a(S'getLabel/1' -p114892 -S'getLabel(${1:This}) $2' -p114893 -tp114894 -a(S'getMaxSize/1' -p114895 -S'getMaxSize(${1:This}) $2' -p114896 -tp114897 -a(S'getMinSize/1' -p114898 -S'getMinSize(${1:This}) $2' -p114899 -tp114900 -a(S'getName/1' -p114901 -S'getName(${1:This}) $2' -p114902 -tp114903 -a(S'getParent/1' -p114904 -S'getParent(${1:This}) $2' -p114905 -tp114906 -a(S'getPosition/1' -p114907 -S'getPosition(${1:This}) $2' -p114908 -tp114909 -a(S'getRect/1' -p114910 -S'getRect(${1:This}) $2' -p114911 -tp114912 -a(S'getReturnCode/1' -p114913 -S'getReturnCode(${1:This}) $2' -p114914 -tp114915 -a(S'getScreenPosition/1' -p114916 -S'getScreenPosition(${1:This}) $2' -p114917 -tp114918 -a(S'getScreenRect/1' -p114919 -S'getScreenRect(${1:This}) $2' -p114920 -tp114921 -a(S'getScrollPos/2' -p114922 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p114923 -tp114924 -a(S'getScrollRange/2' -p114925 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p114926 -tp114927 -a(S'getScrollThumb/2' -p114928 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p114929 -tp114930 -a(S'getSelections/1' -p114931 -S'getSelections(${1:This}) $2' -p114932 -tp114933 -a(S'getSize/1' -p114934 -S'getSize(${1:This}) $2' -p114935 -tp114936 -a(S'getSizer/1' -p114937 -S'getSizer(${1:This}) $2' -p114938 -tp114939 -a(S'getTextExtent/2' -p114940 -S'getTextExtent(${1:This}, ${2:String}) $3' -p114941 -tp114942 -a(S'getTextExtent/3' -p114943 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p114944 -tp114945 -a(S'getTitle/1' -p114946 -S'getTitle(${1:This}) $2' -p114947 -tp114948 -a(S'getToolTip/1' -p114949 -S'getToolTip(${1:This}) $2' -p114950 -tp114951 -a(S'getUpdateRegion/1' -p114952 -S'getUpdateRegion(${1:This}) $2' -p114953 -tp114954 -a(S'getVirtualSize/1' -p114955 -S'getVirtualSize(${1:This}) $2' -p114956 -tp114957 -a(S'getWindowStyleFlag/1' -p114958 -S'getWindowStyleFlag(${1:This}) $2' -p114959 -tp114960 -a(S'getWindowVariant/1' -p114961 -S'getWindowVariant(${1:This}) $2' -p114962 -tp114963 -a(S'hasCapture/1' -p114964 -S'hasCapture(${1:This}) $2' -p114965 -tp114966 -a(S'hasScrollbar/2' -p114967 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p114968 -tp114969 -a(S'hasTransparentBackground/1' -p114970 -S'hasTransparentBackground(${1:This}) $2' -p114971 -tp114972 -a(S'hide/1' -p114973 -S'hide(${1:This}) $2' -p114974 -tp114975 -a(S'iconize/1' -p114976 -S'iconize(${1:This}) $2' -p114977 -tp114978 -a(S'iconize/2' -p114979 -S'iconize(${1:This}, ${2:Options}) $3' -p114980 -tp114981 -a(S'inheritAttributes/1' -p114982 -S'inheritAttributes(${1:This}) $2' -p114983 -tp114984 -a(S'initDialog/1' -p114985 -S'initDialog(${1:This}) $2' -p114986 -tp114987 -a(S'invalidateBestSize/1' -p114988 -S'invalidateBestSize(${1:This}) $2' -p114989 -tp114990 -a(S'isActive/1' -p114991 -S'isActive(${1:This}) $2' -p114992 -tp114993 -a(S'isEnabled/1' -p114994 -S'isEnabled(${1:This}) $2' -p114995 -tp114996 -a(S'isExposed/2' -p114997 -S'isExposed(${1:This}, ${2:Pt}) $3' -p114998 -tp114999 -a(S'isExposed/3' -p115000 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p115001 -tp115002 -a(S'isExposed/5' -p115003 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p115004 -tp115005 -a(S'isFullScreen/1' -p115006 -S'isFullScreen(${1:This}) $2' -p115007 -tp115008 -a(S'isIconized/1' -p115009 -S'isIconized(${1:This}) $2' -p115010 -tp115011 -a(S'isMaximized/1' -p115012 -S'isMaximized(${1:This}) $2' -p115013 -tp115014 -a(S'isModal/1' -p115015 -S'isModal(${1:This}) $2' -p115016 -tp115017 -a(S'isRetained/1' -p115018 -S'isRetained(${1:This}) $2' -p115019 -tp115020 -a(S'isShown/1' -p115021 -S'isShown(${1:This}) $2' -p115022 -tp115023 -a(S'isTopLevel/1' -p115024 -S'isTopLevel(${1:This}) $2' -p115025 -tp115026 -a(S'layout/1' -p115027 -S'layout(${1:This}) $2' -p115028 -tp115029 -a(S'lineDown/1' -p115030 -S'lineDown(${1:This}) $2' -p115031 -tp115032 -a(S'lineUp/1' -p115033 -S'lineUp(${1:This}) $2' -p115034 -tp115035 -a(S'lower/1' -p115036 -S'lower(${1:This}) $2' -p115037 -tp115038 -a(S'makeModal/1' -p115039 -S'makeModal(${1:This}) $2' -p115040 -tp115041 -a(S'makeModal/2' -p115042 -S'makeModal(${1:This}, ${2:Options}) $3' -p115043 -tp115044 -a(S'maximize/1' -p115045 -S'maximize(${1:This}) $2' -p115046 -tp115047 -a(S'maximize/2' -p115048 -S'maximize(${1:This}, ${2:Options}) $3' -p115049 -tp115050 -a(S'move/2' -p115051 -S'move(${1:This}, ${2:Pt}) $3' -p115052 -tp115053 -a(S'move/3' -p115054 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p115055 -tp115056 -a(S'move/4' -p115057 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p115058 -tp115059 -a(S'moveAfterInTabOrder/2' -p115060 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p115061 -tp115062 -a(S'moveBeforeInTabOrder/2' -p115063 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p115064 -tp115065 -a(S'navigate/1' -p115066 -S'navigate(${1:This}) $2' -p115067 -tp115068 -a(S'navigate/2' -p115069 -S'navigate(${1:This}, ${2:Options}) $3' -p115070 -tp115071 -a(S'new/0' -p115072 -S'new() $1' -p115073 -tp115074 -a(S'new/4' -p115075 -S'new(${1:Parent}, ${2:Message}, ${3:Caption}, ${4:Choices}) $5' -p115076 -tp115077 -a(S'new/5' -p115078 -S'new(${1:Parent}, ${2:Message}, ${3:Caption}, ${4:Choices}, ${5:Param5}) $6' -p115079 -tp115080 -a(S'pageDown/1' -p115081 -S'pageDown(${1:This}) $2' -p115082 -tp115083 -a(S'pageUp/1' -p115084 -S'pageUp(${1:This}) $2' -p115085 -tp115086 -a(S'parent_class/1' -p115087 -S'parent_class(${1:Param1}) $2' -p115088 -tp115089 -a(S'popEventHandler/1' -p115090 -S'popEventHandler(${1:This}) $2' -p115091 -tp115092 -a(S'popEventHandler/2' -p115093 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p115094 -tp115095 -a(S'popupMenu/2' -p115096 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p115097 -tp115098 -a(S'popupMenu/3' -p115099 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p115100 -tp115101 -a(S'popupMenu/4' -p115102 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p115103 -tp115104 -a(S'raise/1' -p115105 -S'raise(${1:This}) $2' -p115106 -tp115107 -a(S'refresh/1' -p115108 -S'refresh(${1:This}) $2' -p115109 -tp115110 -a(S'refresh/2' -p115111 -S'refresh(${1:This}, ${2:Options}) $3' -p115112 -tp115113 -a(S'refreshRect/2' -p115114 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p115115 -tp115116 -a(S'refreshRect/3' -p115117 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p115118 -tp115119 -a(S'releaseMouse/1' -p115120 -S'releaseMouse(${1:This}) $2' -p115121 -tp115122 -a(S'removeChild/2' -p115123 -S'removeChild(${1:This}, ${2:Child}) $3' -p115124 -tp115125 -a(S'reparent/2' -p115126 -S'reparent(${1:This}, ${2:NewParent}) $3' -p115127 -tp115128 -a(S'requestUserAttention/1' -p115129 -S'requestUserAttention(${1:This}) $2' -p115130 -tp115131 -a(S'requestUserAttention/2' -p115132 -S'requestUserAttention(${1:This}, ${2:Options}) $3' -p115133 -tp115134 -a(S'screenToClient/1' -p115135 -S'screenToClient(${1:This}) $2' -p115136 -tp115137 -a(S'screenToClient/2' -p115138 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p115139 -tp115140 -a(S'scrollLines/2' -p115141 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p115142 -tp115143 -a(S'scrollPages/2' -p115144 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p115145 -tp115146 -a(S'scrollWindow/3' -p115147 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p115148 -tp115149 -a(S'scrollWindow/4' -p115150 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p115151 -tp115152 -a(S'setAcceleratorTable/2' -p115153 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p115154 -tp115155 -a(S'setAffirmativeId/2' -p115156 -S'setAffirmativeId(${1:This}, ${2:AffirmativeId}) $3' -p115157 -tp115158 -a(S'setAutoLayout/2' -p115159 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p115160 -tp115161 -a(S'setBackgroundColour/2' -p115162 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p115163 -tp115164 -a(S'setBackgroundStyle/2' -p115165 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p115166 -tp115167 -a(S'setCaret/2' -p115168 -S'setCaret(${1:This}, ${2:Caret}) $3' -p115169 -tp115170 -a(S'setClientSize/2' -p115171 -S'setClientSize(${1:This}, ${2:Size}) $3' -p115172 -tp115173 -a(S'setClientSize/3' -p115174 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p115175 -tp115176 -a(S'setContainingSizer/2' -p115177 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p115178 -tp115179 -a(S'setCursor/2' -p115180 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p115181 -tp115182 -a(S'setDropTarget/2' -p115183 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p115184 -tp115185 -a(S'setExtraStyle/2' -p115186 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p115187 -tp115188 -a(S'setFocus/1' -p115189 -S'setFocus(${1:This}) $2' -p115190 -tp115191 -a(S'setFocusFromKbd/1' -p115192 -S'setFocusFromKbd(${1:This}) $2' -p115193 -tp115194 -a(S'setFont/2' -p115195 -S'setFont(${1:This}, ${2:Font}) $3' -p115196 -tp115197 -a(S'setForegroundColour/2' -p115198 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p115199 -tp115200 -a(S'setHelpText/2' -p115201 -S'setHelpText(${1:This}, ${2:Text}) $3' -p115202 -tp115203 -a(S'setIcon/2' -p115204 -S'setIcon(${1:This}, ${2:Icon}) $3' -p115205 -tp115206 -a(S'setIcons/2' -p115207 -S'setIcons(${1:This}, ${2:Icons}) $3' -p115208 -tp115209 -a(S'setId/2' -p115210 -S'setId(${1:This}, ${2:Winid}) $3' -p115211 -tp115212 -a(S'setLabel/2' -p115213 -S'setLabel(${1:This}, ${2:Label}) $3' -p115214 -tp115215 -a(S'setMaxSize/2' -p115216 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p115217 -tp115218 -a(S'setMinSize/2' -p115219 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p115220 -tp115221 -a(S'setName/2' -p115222 -S'setName(${1:This}, ${2:Name}) $3' -p115223 -tp115224 -a(S'setOwnBackgroundColour/2' -p115225 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p115226 -tp115227 -a(S'setOwnFont/2' -p115228 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p115229 -tp115230 -a(S'setOwnForegroundColour/2' -p115231 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p115232 -tp115233 -a(S'setPalette/2' -p115234 -S'setPalette(${1:This}, ${2:Pal}) $3' -p115235 -tp115236 -a(S'setReturnCode/2' -p115237 -S'setReturnCode(${1:This}, ${2:ReturnCode}) $3' -p115238 -tp115239 -a(S'setScrollPos/3' -p115240 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p115241 -tp115242 -a(S'setScrollPos/4' -p115243 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p115244 -tp115245 -a(S'setScrollbar/5' -p115246 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p115247 -tp115248 -a(S'setScrollbar/6' -p115249 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p115250 -tp115251 -a(S'setSelections/2' -p115252 -S'setSelections(${1:This}, ${2:Selections}) $3' -p115253 -tp115254 -a(S'setShape/2' -p115255 -S'setShape(${1:This}, ${2:Region}) $3' -p115256 -tp115257 -a(S'setSize/2' -p115258 -S'setSize(${1:This}, ${2:Rect}) $3' -p115259 -tp115260 -a(S'setSize/3' -p115261 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p115262 -tp115263 -a(S'setSize/5' -p115264 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p115265 -tp115266 -a(S'setSize/6' -p115267 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p115268 -tp115269 -a(S'setSizeHints/2' -p115270 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p115271 -tp115272 -a(S'setSizeHints/3' -p115273 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p115274 -tp115275 -a(S'setSizeHints/4' -p115276 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p115277 -tp115278 -a(S'setSizer/2' -p115279 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p115280 -tp115281 -a(S'setSizer/3' -p115282 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p115283 -tp115284 -a(S'setSizerAndFit/2' -p115285 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p115286 -tp115287 -a(S'setSizerAndFit/3' -p115288 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p115289 -tp115290 -a(S'setThemeEnabled/2' -p115291 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p115292 -tp115293 -a(S'setTitle/2' -p115294 -S'setTitle(${1:This}, ${2:Title}) $3' -p115295 -tp115296 -a(S'setToolTip/2' -p115297 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p115298 -tp115299 -a(S'setVirtualSize/2' -p115300 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p115301 -tp115302 -a(S'setVirtualSize/3' -p115303 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p115304 -tp115305 -a(S'setVirtualSizeHints/2' -p115306 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p115307 -tp115308 -a(S'setVirtualSizeHints/3' -p115309 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p115310 -tp115311 -a(S'setVirtualSizeHints/4' -p115312 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p115313 -tp115314 -a(S'setWindowStyle/2' -p115315 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p115316 -tp115317 -a(S'setWindowStyleFlag/2' -p115318 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p115319 -tp115320 -a(S'setWindowVariant/2' -p115321 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p115322 -tp115323 -a(S'shouldInheritColours/1' -p115324 -S'shouldInheritColours(${1:This}) $2' -p115325 -tp115326 -a(S'show/1' -p115327 -S'show(${1:This}) $2' -p115328 -tp115329 -a(S'show/2' -p115330 -S'show(${1:This}, ${2:Options}) $3' -p115331 -tp115332 -a(S'showFullScreen/2' -p115333 -S'showFullScreen(${1:This}, ${2:Show}) $3' -p115334 -tp115335 -a(S'showFullScreen/3' -p115336 -S'showFullScreen(${1:This}, ${2:Show}, ${3:Options}) $4' -p115337 -tp115338 -a(S'showModal/1' -p115339 -S'showModal(${1:This}) $2' -p115340 -tp115341 -a(S'thaw/1' -p115342 -S'thaw(${1:This}) $2' -p115343 -tp115344 -a(S'transferDataFromWindow/1' -p115345 -S'transferDataFromWindow(${1:This}) $2' -p115346 -tp115347 -a(S'transferDataToWindow/1' -p115348 -S'transferDataToWindow(${1:This}) $2' -p115349 -tp115350 -a(S'update/1' -p115351 -S'update(${1:This}) $2' -p115352 -tp115353 -a(S'updateWindowUI/1' -p115354 -S'updateWindowUI(${1:This}) $2' -p115355 -tp115356 -a(S'updateWindowUI/2' -p115357 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p115358 -tp115359 -a(S'validate/1' -p115360 -S'validate(${1:This}) $2' -p115361 -tp115362 -a(S'warpPointer/3' -p115363 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p115364 -tp115365 -asS'core_parse' -p115366 -(lp115367 -(S'format_error/1' -p115368 -S'format_error(${1:Message}) $2' -p115369 -tp115370 -a(S'parse/1' -p115371 -S'parse(${1:Tokens}) $2' -p115372 -tp115373 -a(S'parse_and_scan/1' -p115374 -S'parse_and_scan(${1:Param1}) $2' -p115375 -tp115376 -asS'xmerl_regexp' -p115377 -(lp115378 -(S'compile/1' -p115379 -S'compile(${1:RegExp}) $2' -p115380 -tp115381 -a(S'compile_proc/2' -p115382 -S'compile_proc(${1:From}, ${2:RE}) $3' -p115383 -tp115384 -a(S'first_match/2' -p115385 -S'first_match(${1:S}, ${2:RegExp}) $3' -p115386 -tp115387 -a(S'format_error/1' -p115388 -S'format_error(${1:Param1}) $2' -p115389 -tp115390 -a(S'gsub/3' -p115391 -S'gsub(${1:String}, ${2:RegExp}, ${3:Rep}) $4' -p115392 -tp115393 -a(S'make_dfa/1' -p115394 -S'make_dfa(${1:REAs}) $2' -p115395 -tp115396 -a(S'make_dfa/2' -p115397 -S'make_dfa(${1:REAs0}, ${2:Low}) $3' -p115398 -tp115399 -a(S'make_nfa/1' -p115400 -S'make_nfa(${1:REAs0}) $2' -p115401 -tp115402 -a(S'match/2' -p115403 -S'match(${1:S}, ${2:RegExp}) $3' -p115404 -tp115405 -a(S'matches/2' -p115406 -S'matches(${1:S}, ${2:RegExp}) $3' -p115407 -tp115408 -a(S'parse/1' -p115409 -S'parse(${1:S}) $2' -p115410 -tp115411 -a(S'setup/1' -p115412 -S'setup(${1:RE0}) $2' -p115413 -tp115414 -a(S'sh_to_awk/1' -p115415 -S'sh_to_awk(${1:Sh}) $2' -p115416 -tp115417 -a(S'split/2' -p115418 -S'split(${1:String}, ${2:RegExp}) $3' -p115419 -tp115420 -a(S'sub/3' -p115421 -S'sub(${1:String}, ${2:RegExp}, ${3:Rep}) $4' -p115422 -tp115423 -a(S'sub_first_match/2' -p115424 -S'sub_first_match(${1:S}, ${2:RegExp}) $3' -p115425 -tp115426 -a(S'sub_match/2' -p115427 -S'sub_match(${1:S}, ${2:RegExp}) $3' -p115428 -tp115429 -asS'wxStaticLine' -p115430 -(lp115431 -(S'cacheBestSize/2' -p115432 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p115433 -tp115434 -a(S'captureMouse/1' -p115435 -S'captureMouse(${1:This}) $2' -p115436 -tp115437 -a(S'center/1' -p115438 -S'center(${1:This}) $2' -p115439 -tp115440 -a(S'center/2' -p115441 -S'center(${1:This}, ${2:Options}) $3' -p115442 -tp115443 -a(S'centerOnParent/1' -p115444 -S'centerOnParent(${1:This}) $2' -p115445 -tp115446 -a(S'centerOnParent/2' -p115447 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p115448 -tp115449 -a(S'centre/1' -p115450 -S'centre(${1:This}) $2' -p115451 -tp115452 -a(S'centre/2' -p115453 -S'centre(${1:This}, ${2:Options}) $3' -p115454 -tp115455 -a(S'centreOnParent/1' -p115456 -S'centreOnParent(${1:This}) $2' -p115457 -tp115458 -a(S'centreOnParent/2' -p115459 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p115460 -tp115461 -a(S'clearBackground/1' -p115462 -S'clearBackground(${1:This}) $2' -p115463 -tp115464 -a(S'clientToScreen/2' -p115465 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p115466 -tp115467 -a(S'clientToScreen/3' -p115468 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p115469 -tp115470 -a(S'close/1' -p115471 -S'close(${1:This}) $2' -p115472 -tp115473 -a(S'close/2' -p115474 -S'close(${1:This}, ${2:Options}) $3' -p115475 -tp115476 -a(S'connect/2' -p115477 -S'connect(${1:This}, ${2:EventType}) $3' -p115478 -tp115479 -a(S'connect/3' -p115480 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p115481 -tp115482 -a(S'convertDialogToPixels/2' -p115483 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p115484 -tp115485 -a(S'convertPixelsToDialog/2' -p115486 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p115487 -tp115488 -a(S'create/2' -p115489 -S'create(${1:This}, ${2:Parent}) $3' -p115490 -tp115491 -a(S'create/3' -p115492 -S'create(${1:This}, ${2:Parent}, ${3:Param3}) $4' -p115493 -tp115494 -a(S'destroy/1' -p115495 -S'destroy(${1:This}) $2' -p115496 -tp115497 -a(S'destroyChildren/1' -p115498 -S'destroyChildren(${1:This}) $2' -p115499 -tp115500 -a(S'disable/1' -p115501 -S'disable(${1:This}) $2' -p115502 -tp115503 -a(S'disconnect/1' -p115504 -S'disconnect(${1:This}) $2' -p115505 -tp115506 -a(S'disconnect/2' -p115507 -S'disconnect(${1:This}, ${2:EventType}) $3' -p115508 -tp115509 -a(S'disconnect/3' -p115510 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p115511 -tp115512 -a(S'enable/1' -p115513 -S'enable(${1:This}) $2' -p115514 -tp115515 -a(S'enable/2' -p115516 -S'enable(${1:This}, ${2:Options}) $3' -p115517 -tp115518 -a(S'findWindow/2' -p115519 -S'findWindow(${1:This}, ${2:Winid}) $3' -p115520 -tp115521 -a(S'fit/1' -p115522 -S'fit(${1:This}) $2' -p115523 -tp115524 -a(S'fitInside/1' -p115525 -S'fitInside(${1:This}) $2' -p115526 -tp115527 -a(S'freeze/1' -p115528 -S'freeze(${1:This}) $2' -p115529 -tp115530 -a(S'getAcceleratorTable/1' -p115531 -S'getAcceleratorTable(${1:This}) $2' -p115532 -tp115533 -a(S'getBackgroundColour/1' -p115534 -S'getBackgroundColour(${1:This}) $2' -p115535 -tp115536 -a(S'getBackgroundStyle/1' -p115537 -S'getBackgroundStyle(${1:This}) $2' -p115538 -tp115539 -a(S'getBestSize/1' -p115540 -S'getBestSize(${1:This}) $2' -p115541 -tp115542 -a(S'getCaret/1' -p115543 -S'getCaret(${1:This}) $2' -p115544 -tp115545 -a(S'getCharHeight/1' -p115546 -S'getCharHeight(${1:This}) $2' -p115547 -tp115548 -a(S'getCharWidth/1' -p115549 -S'getCharWidth(${1:This}) $2' -p115550 -tp115551 -a(S'getChildren/1' -p115552 -S'getChildren(${1:This}) $2' -p115553 -tp115554 -a(S'getClientSize/1' -p115555 -S'getClientSize(${1:This}) $2' -p115556 -tp115557 -a(S'getContainingSizer/1' -p115558 -S'getContainingSizer(${1:This}) $2' -p115559 -tp115560 -a(S'getCursor/1' -p115561 -S'getCursor(${1:This}) $2' -p115562 -tp115563 -a(S'getDefaultSize/0' -p115564 -S'getDefaultSize() $1' -p115565 -tp115566 -a(S'getDropTarget/1' -p115567 -S'getDropTarget(${1:This}) $2' -p115568 -tp115569 -a(S'getEventHandler/1' -p115570 -S'getEventHandler(${1:This}) $2' -p115571 -tp115572 -a(S'getExtraStyle/1' -p115573 -S'getExtraStyle(${1:This}) $2' -p115574 -tp115575 -a(S'getFont/1' -p115576 -S'getFont(${1:This}) $2' -p115577 -tp115578 -a(S'getForegroundColour/1' -p115579 -S'getForegroundColour(${1:This}) $2' -p115580 -tp115581 -a(S'getGrandParent/1' -p115582 -S'getGrandParent(${1:This}) $2' -p115583 -tp115584 -a(S'getHandle/1' -p115585 -S'getHandle(${1:This}) $2' -p115586 -tp115587 -a(S'getHelpText/1' -p115588 -S'getHelpText(${1:This}) $2' -p115589 -tp115590 -a(S'getId/1' -p115591 -S'getId(${1:This}) $2' -p115592 -tp115593 -a(S'getLabel/1' -p115594 -S'getLabel(${1:This}) $2' -p115595 -tp115596 -a(S'getMaxSize/1' -p115597 -S'getMaxSize(${1:This}) $2' -p115598 -tp115599 -a(S'getMinSize/1' -p115600 -S'getMinSize(${1:This}) $2' -p115601 -tp115602 -a(S'getName/1' -p115603 -S'getName(${1:This}) $2' -p115604 -tp115605 -a(S'getParent/1' -p115606 -S'getParent(${1:This}) $2' -p115607 -tp115608 -a(S'getPosition/1' -p115609 -S'getPosition(${1:This}) $2' -p115610 -tp115611 -a(S'getRect/1' -p115612 -S'getRect(${1:This}) $2' -p115613 -tp115614 -a(S'getScreenPosition/1' -p115615 -S'getScreenPosition(${1:This}) $2' -p115616 -tp115617 -a(S'getScreenRect/1' -p115618 -S'getScreenRect(${1:This}) $2' -p115619 -tp115620 -a(S'getScrollPos/2' -p115621 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p115622 -tp115623 -a(S'getScrollRange/2' -p115624 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p115625 -tp115626 -a(S'getScrollThumb/2' -p115627 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p115628 -tp115629 -a(S'getSize/1' -p115630 -S'getSize(${1:This}) $2' -p115631 -tp115632 -a(S'getSizer/1' -p115633 -S'getSizer(${1:This}) $2' -p115634 -tp115635 -a(S'getTextExtent/2' -p115636 -S'getTextExtent(${1:This}, ${2:String}) $3' -p115637 -tp115638 -a(S'getTextExtent/3' -p115639 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p115640 -tp115641 -a(S'getToolTip/1' -p115642 -S'getToolTip(${1:This}) $2' -p115643 -tp115644 -a(S'getUpdateRegion/1' -p115645 -S'getUpdateRegion(${1:This}) $2' -p115646 -tp115647 -a(S'getVirtualSize/1' -p115648 -S'getVirtualSize(${1:This}) $2' -p115649 -tp115650 -a(S'getWindowStyleFlag/1' -p115651 -S'getWindowStyleFlag(${1:This}) $2' -p115652 -tp115653 -a(S'getWindowVariant/1' -p115654 -S'getWindowVariant(${1:This}) $2' -p115655 -tp115656 -a(S'hasCapture/1' -p115657 -S'hasCapture(${1:This}) $2' -p115658 -tp115659 -a(S'hasScrollbar/2' -p115660 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p115661 -tp115662 -a(S'hasTransparentBackground/1' -p115663 -S'hasTransparentBackground(${1:This}) $2' -p115664 -tp115665 -a(S'hide/1' -p115666 -S'hide(${1:This}) $2' -p115667 -tp115668 -a(S'inheritAttributes/1' -p115669 -S'inheritAttributes(${1:This}) $2' -p115670 -tp115671 -a(S'initDialog/1' -p115672 -S'initDialog(${1:This}) $2' -p115673 -tp115674 -a(S'invalidateBestSize/1' -p115675 -S'invalidateBestSize(${1:This}) $2' -p115676 -tp115677 -a(S'isEnabled/1' -p115678 -S'isEnabled(${1:This}) $2' -p115679 -tp115680 -a(S'isExposed/2' -p115681 -S'isExposed(${1:This}, ${2:Pt}) $3' -p115682 -tp115683 -a(S'isExposed/3' -p115684 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p115685 -tp115686 -a(S'isExposed/5' -p115687 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p115688 -tp115689 -a(S'isRetained/1' -p115690 -S'isRetained(${1:This}) $2' -p115691 -tp115692 -a(S'isShown/1' -p115693 -S'isShown(${1:This}) $2' -p115694 -tp115695 -a(S'isTopLevel/1' -p115696 -S'isTopLevel(${1:This}) $2' -p115697 -tp115698 -a(S'isVertical/1' -p115699 -S'isVertical(${1:This}) $2' -p115700 -tp115701 -a(S'layout/1' -p115702 -S'layout(${1:This}) $2' -p115703 -tp115704 -a(S'lineDown/1' -p115705 -S'lineDown(${1:This}) $2' -p115706 -tp115707 -a(S'lineUp/1' -p115708 -S'lineUp(${1:This}) $2' -p115709 -tp115710 -a(S'lower/1' -p115711 -S'lower(${1:This}) $2' -p115712 -tp115713 -a(S'makeModal/1' -p115714 -S'makeModal(${1:This}) $2' -p115715 -tp115716 -a(S'makeModal/2' -p115717 -S'makeModal(${1:This}, ${2:Options}) $3' -p115718 -tp115719 -a(S'move/2' -p115720 -S'move(${1:This}, ${2:Pt}) $3' -p115721 -tp115722 -a(S'move/3' -p115723 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p115724 -tp115725 -a(S'move/4' -p115726 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p115727 -tp115728 -a(S'moveAfterInTabOrder/2' -p115729 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p115730 -tp115731 -a(S'moveBeforeInTabOrder/2' -p115732 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p115733 -tp115734 -a(S'navigate/1' -p115735 -S'navigate(${1:This}) $2' -p115736 -tp115737 -a(S'navigate/2' -p115738 -S'navigate(${1:This}, ${2:Options}) $3' -p115739 -tp115740 -a(S'new/0' -p115741 -S'new() $1' -p115742 -tp115743 -a(S'new/1' -p115744 -S'new(${1:Parent}) $2' -p115745 -tp115746 -a(S'new/2' -p115747 -S'new(${1:Parent}, ${2:Param2}) $3' -p115748 -tp115749 -a(S'pageDown/1' -p115750 -S'pageDown(${1:This}) $2' -p115751 -tp115752 -a(S'pageUp/1' -p115753 -S'pageUp(${1:This}) $2' -p115754 -tp115755 -a(S'parent_class/1' -p115756 -S'parent_class(${1:Param1}) $2' -p115757 -tp115758 -a(S'popEventHandler/1' -p115759 -S'popEventHandler(${1:This}) $2' -p115760 -tp115761 -a(S'popEventHandler/2' -p115762 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p115763 -tp115764 -a(S'popupMenu/2' -p115765 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p115766 -tp115767 -a(S'popupMenu/3' -p115768 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p115769 -tp115770 -a(S'popupMenu/4' -p115771 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p115772 -tp115773 -a(S'raise/1' -p115774 -S'raise(${1:This}) $2' -p115775 -tp115776 -a(S'refresh/1' -p115777 -S'refresh(${1:This}) $2' -p115778 -tp115779 -a(S'refresh/2' -p115780 -S'refresh(${1:This}, ${2:Options}) $3' -p115781 -tp115782 -a(S'refreshRect/2' -p115783 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p115784 -tp115785 -a(S'refreshRect/3' -p115786 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p115787 -tp115788 -a(S'releaseMouse/1' -p115789 -S'releaseMouse(${1:This}) $2' -p115790 -tp115791 -a(S'removeChild/2' -p115792 -S'removeChild(${1:This}, ${2:Child}) $3' -p115793 -tp115794 -a(S'reparent/2' -p115795 -S'reparent(${1:This}, ${2:NewParent}) $3' -p115796 -tp115797 -a(S'screenToClient/1' -p115798 -S'screenToClient(${1:This}) $2' -p115799 -tp115800 -a(S'screenToClient/2' -p115801 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p115802 -tp115803 -a(S'scrollLines/2' -p115804 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p115805 -tp115806 -a(S'scrollPages/2' -p115807 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p115808 -tp115809 -a(S'scrollWindow/3' -p115810 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p115811 -tp115812 -a(S'scrollWindow/4' -p115813 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p115814 -tp115815 -a(S'setAcceleratorTable/2' -p115816 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p115817 -tp115818 -a(S'setAutoLayout/2' -p115819 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p115820 -tp115821 -a(S'setBackgroundColour/2' -p115822 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p115823 -tp115824 -a(S'setBackgroundStyle/2' -p115825 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p115826 -tp115827 -a(S'setCaret/2' -p115828 -S'setCaret(${1:This}, ${2:Caret}) $3' -p115829 -tp115830 -a(S'setClientSize/2' -p115831 -S'setClientSize(${1:This}, ${2:Size}) $3' -p115832 -tp115833 -a(S'setClientSize/3' -p115834 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p115835 -tp115836 -a(S'setContainingSizer/2' -p115837 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p115838 -tp115839 -a(S'setCursor/2' -p115840 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p115841 -tp115842 -a(S'setDropTarget/2' -p115843 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p115844 -tp115845 -a(S'setExtraStyle/2' -p115846 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p115847 -tp115848 -a(S'setFocus/1' -p115849 -S'setFocus(${1:This}) $2' -p115850 -tp115851 -a(S'setFocusFromKbd/1' -p115852 -S'setFocusFromKbd(${1:This}) $2' -p115853 -tp115854 -a(S'setFont/2' -p115855 -S'setFont(${1:This}, ${2:Font}) $3' -p115856 -tp115857 -a(S'setForegroundColour/2' -p115858 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p115859 -tp115860 -a(S'setHelpText/2' -p115861 -S'setHelpText(${1:This}, ${2:Text}) $3' -p115862 -tp115863 -a(S'setId/2' -p115864 -S'setId(${1:This}, ${2:Winid}) $3' -p115865 -tp115866 -a(S'setLabel/2' -p115867 -S'setLabel(${1:This}, ${2:Label}) $3' -p115868 -tp115869 -a(S'setMaxSize/2' -p115870 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p115871 -tp115872 -a(S'setMinSize/2' -p115873 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p115874 -tp115875 -a(S'setName/2' -p115876 -S'setName(${1:This}, ${2:Name}) $3' -p115877 -tp115878 -a(S'setOwnBackgroundColour/2' -p115879 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p115880 -tp115881 -a(S'setOwnFont/2' -p115882 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p115883 -tp115884 -a(S'setOwnForegroundColour/2' -p115885 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p115886 -tp115887 -a(S'setPalette/2' -p115888 -S'setPalette(${1:This}, ${2:Pal}) $3' -p115889 -tp115890 -a(S'setScrollPos/3' -p115891 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p115892 -tp115893 -a(S'setScrollPos/4' -p115894 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p115895 -tp115896 -a(S'setScrollbar/5' -p115897 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p115898 -tp115899 -a(S'setScrollbar/6' -p115900 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p115901 -tp115902 -a(S'setSize/2' -p115903 -S'setSize(${1:This}, ${2:Rect}) $3' -p115904 -tp115905 -a(S'setSize/3' -p115906 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p115907 -tp115908 -a(S'setSize/5' -p115909 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p115910 -tp115911 -a(S'setSize/6' -p115912 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p115913 -tp115914 -a(S'setSizeHints/2' -p115915 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p115916 -tp115917 -a(S'setSizeHints/3' -p115918 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p115919 -tp115920 -a(S'setSizeHints/4' -p115921 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p115922 -tp115923 -a(S'setSizer/2' -p115924 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p115925 -tp115926 -a(S'setSizer/3' -p115927 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p115928 -tp115929 -a(S'setSizerAndFit/2' -p115930 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p115931 -tp115932 -a(S'setSizerAndFit/3' -p115933 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p115934 -tp115935 -a(S'setThemeEnabled/2' -p115936 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p115937 -tp115938 -a(S'setToolTip/2' -p115939 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p115940 -tp115941 -a(S'setVirtualSize/2' -p115942 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p115943 -tp115944 -a(S'setVirtualSize/3' -p115945 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p115946 -tp115947 -a(S'setVirtualSizeHints/2' -p115948 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p115949 -tp115950 -a(S'setVirtualSizeHints/3' -p115951 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p115952 -tp115953 -a(S'setVirtualSizeHints/4' -p115954 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p115955 -tp115956 -a(S'setWindowStyle/2' -p115957 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p115958 -tp115959 -a(S'setWindowStyleFlag/2' -p115960 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p115961 -tp115962 -a(S'setWindowVariant/2' -p115963 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p115964 -tp115965 -a(S'shouldInheritColours/1' -p115966 -S'shouldInheritColours(${1:This}) $2' -p115967 -tp115968 -a(S'show/1' -p115969 -S'show(${1:This}) $2' -p115970 -tp115971 -a(S'show/2' -p115972 -S'show(${1:This}, ${2:Options}) $3' -p115973 -tp115974 -a(S'thaw/1' -p115975 -S'thaw(${1:This}) $2' -p115976 -tp115977 -a(S'transferDataFromWindow/1' -p115978 -S'transferDataFromWindow(${1:This}) $2' -p115979 -tp115980 -a(S'transferDataToWindow/1' -p115981 -S'transferDataToWindow(${1:This}) $2' -p115982 -tp115983 -a(S'update/1' -p115984 -S'update(${1:This}) $2' -p115985 -tp115986 -a(S'updateWindowUI/1' -p115987 -S'updateWindowUI(${1:This}) $2' -p115988 -tp115989 -a(S'updateWindowUI/2' -p115990 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p115991 -tp115992 -a(S'validate/1' -p115993 -S'validate(${1:This}) $2' -p115994 -tp115995 -a(S'warpPointer/3' -p115996 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p115997 -tp115998 -asS'ssh_app' -p115999 -(lp116000 -(S'start/2' -p116001 -S'start(${1:Param1}, ${2:Param2}) $3' -p116002 -tp116003 -a(S'stop/1' -p116004 -S'stop(${1:Param1}) $2' -p116005 -tp116006 -asS'si_sasl_supp' -p116007 -(lp116008 -(S'abbrevs/0' -p116009 -S'abbrevs() $1' -p116010 -tp116011 -a(S'code_change/3' -p116012 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p116013 -tp116014 -a(S'do_best_printout/4' -p116015 -S'do_best_printout(${1:Opt}, ${2:Pid}, ${3:Mod}, ${4:Data}) $5' -p116016 -tp116017 -a(S'expand_abbrev/2' -p116018 -S'expand_abbrev(${1:ProcessName}, ${2:Abbrevs}) $3' -p116019 -tp116020 -a(S'h/0' -p116021 -S'h() $1' -p116022 -tp116023 -a(S'handle_call/3' -p116024 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p116025 -tp116026 -a(S'handle_cast/2' -p116027 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p116028 -tp116029 -a(S'handle_info/2' -p116030 -S'handle_info(${1:Param1}, ${2:State}) $3' -p116031 -tp116032 -a(S'help/0' -p116033 -S'help() $1' -p116034 -tp116035 -a(S'init/1' -p116036 -S'init(${1:Options}) $2' -p116037 -tp116038 -a(S'make_pid/1' -p116039 -S'make_pid(${1:P}) $2' -p116040 -tp116041 -a(S'make_pid/3' -p116042 -S'make_pid(${1:A}, ${2:B}, ${3:C}) $4' -p116043 -tp116044 -a(S'p/1' -p116045 -S'p(${1:X}) $2' -p116046 -tp116047 -a(S'pi/1' -p116048 -S'pi(${1:XPid}) $2' -p116049 -tp116050 -a(S'pi/2' -p116051 -S'pi(${1:Opt}, ${2:XPid}) $3' -p116052 -tp116053 -a(S'pi/3' -p116054 -S'pi(${1:A}, ${2:B}, ${3:C}) $4' -p116055 -tp116056 -a(S'pi/4' -p116057 -S'pi(${1:Opt}, ${2:A}, ${3:B}, ${4:C}) $5' -p116058 -tp116059 -a(S'pi_impl/2' -p116060 -S'pi_impl(${1:Opt}, ${2:XPid}) $3' -p116061 -tp116062 -a(S'ppi/1' -p116063 -S'ppi(${1:XPid}) $2' -p116064 -tp116065 -a(S'ppi/3' -p116066 -S'ppi(${1:A}, ${2:B}, ${3:C}) $4' -p116067 -tp116068 -a(S'ppi_impl/1' -p116069 -S'ppi_impl(${1:XPid}) $2' -p116070 -tp116071 -a(S'process_abbrevs/0' -p116072 -S'process_abbrevs() $1' -p116073 -tp116074 -a(S'si_exec/2' -p116075 -S'si_exec(${1:Fun}, ${2:Args}) $3' -p116076 -tp116077 -a(S'start/0' -p116078 -S'start() $1' -p116079 -tp116080 -a(S'start/1' -p116081 -S'start(${1:Options}) $2' -p116082 -tp116083 -a(S'start_link/1' -p116084 -S'start_link(${1:Param1}) $2' -p116085 -tp116086 -a(S'start_log/1' -p116087 -S'start_log(${1:FileName}) $2' -p116088 -tp116089 -a(S'start_log_impl/1' -p116090 -S'start_log_impl(${1:FileName}) $2' -p116091 -tp116092 -a(S'status_info/1' -p116093 -S'status_info(${1:Pid}) $2' -p116094 -tp116095 -a(S'stop/0' -p116096 -S'stop() $1' -p116097 -tp116098 -a(S'stop_log/0' -p116099 -S'stop_log() $1' -p116100 -tp116101 -a(S'terminate/2' -p116102 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p116103 -tp116104 -a(S'valid_opt/1' -p116105 -S'valid_opt(${1:Param1}) $2' -p116106 -tp116107 -asS'edoc_refs' -p116108 -(lp116109 -(S'app/1' -p116110 -S'app(${1:App}) $2' -p116111 -tp116112 -a(S'app/2' -p116113 -S'app(${1:App}, ${2:Ref}) $3' -p116114 -tp116115 -a(S'function/2' -p116116 -S'function(${1:F}, ${2:A}) $3' -p116117 -tp116118 -a(S'function/3' -p116119 -S'function(${1:M}, ${2:F}, ${3:A}) $4' -p116120 -tp116121 -a(S'function/4' -p116122 -S'function(${1:App}, ${2:M}, ${3:F}, ${4:A}) $5' -p116123 -tp116124 -a(S'get_uri/2' -p116125 -S'get_uri(${1:Ref}, ${2:Env}) $3' -p116126 -tp116127 -a(S'is_top/2' -p116128 -S'is_top(${1:Param1}, ${2:Param2}) $3' -p116129 -tp116130 -a(S'module/1' -p116131 -S'module(${1:M}) $2' -p116132 -tp116133 -a(S'module/2' -p116134 -S'module(${1:M}, ${2:Ref}) $3' -p116135 -tp116136 -a(S'module/3' -p116137 -S'module(${1:App}, ${2:M}, ${3:Ref}) $4' -p116138 -tp116139 -a(S'package/1' -p116140 -S'package(${1:P}) $2' -p116141 -tp116142 -a(S'relative_module_path/2' -p116143 -S'relative_module_path(${1:To}, ${2:From}) $3' -p116144 -tp116145 -a(S'relative_package_path/2' -p116146 -S'relative_package_path(${1:To}, ${2:From}) $3' -p116147 -tp116148 -a(S'to_label/1' -p116149 -S'to_label(${1:Param1}) $2' -p116150 -tp116151 -a(S'to_string/1' -p116152 -S'to_string(${1:Param1}) $2' -p116153 -tp116154 -a(S'type/1' -p116155 -S'type(${1:T}) $2' -p116156 -tp116157 -a(S'type/2' -p116158 -S'type(${1:M}, ${2:T}) $3' -p116159 -tp116160 -a(S'type/3' -p116161 -S'type(${1:App}, ${2:M}, ${3:T}) $4' -p116162 -tp116163 -asS'wxWindowCreateEvent' -p116164 -(lp116165 -(S'getClientData/1' -p116166 -S'getClientData(${1:This}) $2' -p116167 -tp116168 -a(S'getExtraLong/1' -p116169 -S'getExtraLong(${1:This}) $2' -p116170 -tp116171 -a(S'getId/1' -p116172 -S'getId(${1:This}) $2' -p116173 -tp116174 -a(S'getInt/1' -p116175 -S'getInt(${1:This}) $2' -p116176 -tp116177 -a(S'getSelection/1' -p116178 -S'getSelection(${1:This}) $2' -p116179 -tp116180 -a(S'getSkipped/1' -p116181 -S'getSkipped(${1:This}) $2' -p116182 -tp116183 -a(S'getString/1' -p116184 -S'getString(${1:This}) $2' -p116185 -tp116186 -a(S'getTimestamp/1' -p116187 -S'getTimestamp(${1:This}) $2' -p116188 -tp116189 -a(S'isChecked/1' -p116190 -S'isChecked(${1:This}) $2' -p116191 -tp116192 -a(S'isCommandEvent/1' -p116193 -S'isCommandEvent(${1:This}) $2' -p116194 -tp116195 -a(S'isSelection/1' -p116196 -S'isSelection(${1:This}) $2' -p116197 -tp116198 -a(S'parent_class/1' -p116199 -S'parent_class(${1:Param1}) $2' -p116200 -tp116201 -a(S'resumePropagation/2' -p116202 -S'resumePropagation(${1:This}, ${2:PropagationLevel}) $3' -p116203 -tp116204 -a(S'setInt/2' -p116205 -S'setInt(${1:This}, ${2:I}) $3' -p116206 -tp116207 -a(S'setString/2' -p116208 -S'setString(${1:This}, ${2:S}) $3' -p116209 -tp116210 -a(S'shouldPropagate/1' -p116211 -S'shouldPropagate(${1:This}) $2' -p116212 -tp116213 -a(S'skip/1' -p116214 -S'skip(${1:This}) $2' -p116215 -tp116216 -a(S'skip/2' -p116217 -S'skip(${1:This}, ${2:Options}) $3' -p116218 -tp116219 -a(S'stopPropagation/1' -p116220 -S'stopPropagation(${1:This}) $2' -p116221 -tp116222 -asS'PullerConsumer_impl' -p116223 -(lp116224 -(S"'_get_MyAdmin'/3" -p116225 -S"'_get_MyAdmin'(${1:Param1}, ${2:Param2}, ${3:State}) $4" -p116226 -tp116227 -a(S"'_get_MyType'/3" -p116228 -S"'_get_MyType'(${1:Param1}, ${2:Param2}, ${3:State}) $4" -p116229 -tp116230 -a(S'add_filter/4' -p116231 -S'add_filter(${1:Param1}, ${2:Param2}, ${3:State}, ${4:Filter}) $5' -p116232 -tp116233 -a(S'code_change/3' -p116234 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p116235 -tp116236 -a(S'connect_any_pull_supplier/4' -p116237 -S'connect_any_pull_supplier(${1:OE_THIS}, ${2:Param2}, ${3:State}, ${4:Client}) $5' -p116238 -tp116239 -a(S'connect_pull_supplier/4' -p116240 -S'connect_pull_supplier(${1:OE_THIS}, ${2:OE_FROM}, ${3:State}, ${4:Client}) $5' -p116241 -tp116242 -a(S'connect_sequence_pull_supplier/4' -p116243 -S'connect_sequence_pull_supplier(${1:OE_THIS}, ${2:Param2}, ${3:State}, ${4:Client}) $5' -p116244 -tp116245 -a(S'connect_structured_pull_supplier/4' -p116246 -S'connect_structured_pull_supplier(${1:OE_THIS}, ${2:Param2}, ${3:State}, ${4:Client}) $5' -p116247 -tp116248 -a(S'disconnect_pull_consumer/3' -p116249 -S'disconnect_pull_consumer(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p116250 -tp116251 -a(S'disconnect_sequence_pull_consumer/3' -p116252 -S'disconnect_sequence_pull_consumer(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p116253 -tp116254 -a(S'disconnect_structured_pull_consumer/3' -p116255 -S'disconnect_structured_pull_consumer(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p116256 -tp116257 -a(S'get_all_filters/3' -p116258 -S'get_all_filters(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p116259 -tp116260 -a(S'get_filter/4' -p116261 -S'get_filter(${1:Param1}, ${2:Param2}, ${3:State}, ${4:FilterID}) $5' -p116262 -tp116263 -a(S'get_qos/3' -p116264 -S'get_qos(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p116265 -tp116266 -a(S'handle_info/2' -p116267 -S'handle_info(${1:Info}, ${2:State}) $3' -p116268 -tp116269 -a(S'init/1' -p116270 -S'init(${1:Param1}) $2' -p116271 -tp116272 -a(S'obtain_subscription_types/4' -p116273 -S'obtain_subscription_types(${1:Param1}, ${2:Param2}, ${3:State}, ${4:What}) $5' -p116274 -tp116275 -a(S'offer_change/5' -p116276 -S'offer_change(${1:Param1}, ${2:Param2}, ${3:State}, ${4:Added}, ${5:Removed}) $6' -p116277 -tp116278 -a(S'remove_all_filters/3' -p116279 -S'remove_all_filters(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p116280 -tp116281 -a(S'remove_filter/4' -p116282 -S'remove_filter(${1:Param1}, ${2:Param2}, ${3:State}, ${4:FilterID}) $5' -p116283 -tp116284 -a(S'resume_connection/3' -p116285 -S'resume_connection(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p116286 -tp116287 -a(S'set_qos/4' -p116288 -S'set_qos(${1:Param1}, ${2:Param2}, ${3:State}, ${4:QoS}) $5' -p116289 -tp116290 -a(S'suspend_connection/3' -p116291 -S'suspend_connection(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p116292 -tp116293 -a(S'terminate/2' -p116294 -S'terminate(${1:Param1}, ${2:State}) $3' -p116295 -tp116296 -a(S'validate_event_qos/4' -p116297 -S'validate_event_qos(${1:Param1}, ${2:Param2}, ${3:State}, ${4:RequiredQoS}) $5' -p116298 -tp116299 -a(S'validate_qos/4' -p116300 -S'validate_qos(${1:Param1}, ${2:Param2}, ${3:State}, ${4:Required_qos}) $5' -p116301 -tp116302 -asS'diameter_tcp_sup' -p116303 -(lp116304 -(S'init/1' -p116305 -S'init(${1:Param1}) $2' -p116306 -tp116307 -a(S'start/0' -p116308 -S'start() $1' -p116309 -tp116310 -a(S'start_child/1' -p116311 -S'start_child(${1:T}) $2' -p116312 -tp116313 -a(S'start_link/1' -p116314 -S'start_link(${1:Name}) $2' -p116315 -tp116316 -asS'oe_cosNotificationAppComm' -p116317 -(lp116318 -(S'oe_dependency/0' -p116319 -S'oe_dependency() $1' -p116320 -tp116321 -a(S'oe_get_module/5' -p116322 -S'oe_get_module(${1:OE_IFR}, ${2:OE_Parent}, ${3:ID}, ${4:Name}, ${5:Version}) $6' -p116323 -tp116324 -a(S'oe_register/0' -p116325 -S'oe_register() $1' -p116326 -tp116327 -a(S'oe_unregister/0' -p116328 -S'oe_unregister() $1' -p116329 -tp116330 -asS'egd_primitives' -p116331 -(lp116332 -(S'arc/4' -p116333 -S'arc() $1' -p116334 -tp116335 -a(S'arc/5' -p116336 -S'arc(${1:I}, ${2:Sp}, ${3:Ep}, ${4:D}, ${5:Color}) $6' -p116337 -tp116338 -a(S'arc_to_edges/3' -p116339 -S'arc_to_edges() $1' -p116340 -tp116341 -a(S'color/1' -p116342 -S'color(${1:Color}) $2' -p116343 -tp116344 -a(S'convex_hull/1' -p116345 -S'convex_hull(${1:Ps}) $2' -p116346 -tp116347 -a(S'create/2' -p116348 -S'create(${1:W}, ${2:H}) $3' -p116349 -tp116350 -a(S'edges/1' -p116351 -S'edges(${1:Pts}) $2' -p116352 -tp116353 -a(S'filledEllipse/4' -p116354 -S'filledEllipse(${1:I}, ${2:Sp}, ${3:Ep}, ${4:Color}) $5' -p116355 -tp116356 -a(S'filledRectangle/4' -p116357 -S'filledRectangle(${1:I}, ${2:Sp}, ${3:Ep}, ${4:Color}) $5' -p116358 -tp116359 -a(S'filledTriangle/5' -p116360 -S'filledTriangle(${1:I}, ${2:P1}, ${3:P2}, ${4:P3}, ${5:Color}) $6' -p116361 -tp116362 -a(S'info/1' -p116363 -S'info(${1:I}) $2' -p116364 -tp116365 -a(S'line/4' -p116366 -S'line(${1:I}, ${2:Sp}, ${3:Ep}, ${4:Color}) $5' -p116367 -tp116368 -a(S'line/5' -p116369 -S'line(${1:I}, ${2:Sp}, ${3:Ep}, ${4:Stroke}, ${5:Color}) $6' -p116370 -tp116371 -a(S'object_info/1' -p116372 -S'object_info(${1:O}) $2' -p116373 -tp116374 -a(S'pixel/3' -p116375 -S'pixel(${1:I}, ${2:Point}, ${3:Color}) $4' -p116376 -tp116377 -a(S'polygon/3' -p116378 -S'polygon(${1:I}, ${2:Points}, ${3:Color}) $4' -p116379 -tp116380 -a(S'rectangle/4' -p116381 -S'rectangle(${1:I}, ${2:Sp}, ${3:Ep}, ${4:Color}) $5' -p116382 -tp116383 -a(S'rgb_float2byte/1' -p116384 -S'rgb_float2byte(${1:Param1}) $2' -p116385 -tp116386 -a(S'text/5' -p116387 -S'text(${1:I}, ${2:Sp}, ${3:Font}, ${4:Text}, ${5:Color}) $6' -p116388 -tp116389 -asS'shell_default' -p116390 -(lp116391 -(S'bi/1' -p116392 -S'bi(${1:I}) $2' -p116393 -tp116394 -a(S'bt/1' -p116395 -S'bt(${1:Pid}) $2' -p116396 -tp116397 -a(S'c/1' -p116398 -S'c(${1:File}) $2' -p116399 -tp116400 -a(S'c/2' -p116401 -S'c(${1:File}, ${2:Opt}) $3' -p116402 -tp116403 -a(S'cd/1' -p116404 -S'cd(${1:D}) $2' -p116405 -tp116406 -a(S'erlangrc/1' -p116407 -S'erlangrc(${1:X}) $2' -p116408 -tp116409 -a(S'flush/0' -p116410 -S'flush() $1' -p116411 -tp116412 -a(S'help/0' -p116413 -S'help() $1' -p116414 -tp116415 -a(S'i/0' -p116416 -S'i() $1' -p116417 -tp116418 -a(S'i/3' -p116419 -S'i(${1:X}, ${2:Y}, ${3:Z}) $4' -p116420 -tp116421 -a(S'ia/1' -p116422 -S'ia(${1:Pid}) $2' -p116423 -tp116424 -a(S'ia/2' -p116425 -S'ia(${1:Pid}, ${2:Fnk}) $3' -p116426 -tp116427 -a(S'ia/3' -p116428 -S'ia(${1:X}, ${2:Y}, ${3:Z}) $4' -p116429 -tp116430 -a(S'ia/4' -p116431 -S'ia(${1:X}, ${2:Y}, ${3:Z}, ${4:Fnk}) $5' -p116432 -tp116433 -a(S'iaa/1' -p116434 -S'iaa(${1:Flag}) $2' -p116435 -tp116436 -a(S'iaa/2' -p116437 -S'iaa(${1:Flag}, ${2:Fnk}) $3' -p116438 -tp116439 -a(S'ib/2' -p116440 -S'ib(${1:Mod}, ${2:Line}) $3' -p116441 -tp116442 -a(S'ib/3' -p116443 -S'ib(${1:Mod}, ${2:Fnk}, ${3:Arity}) $4' -p116444 -tp116445 -a(S'iba/3' -p116446 -S'iba(${1:M}, ${2:L}, ${3:Action}) $4' -p116447 -tp116448 -a(S'ibc/3' -p116449 -S'ibc(${1:M}, ${2:L}, ${3:Cond}) $4' -p116450 -tp116451 -a(S'ibd/2' -p116452 -S'ibd(${1:Mod}, ${2:Line}) $3' -p116453 -tp116454 -a(S'ibe/2' -p116455 -S'ibe(${1:Mod}, ${2:Line}) $3' -p116456 -tp116457 -a(S'ic/0' -p116458 -S'ic() $1' -p116459 -tp116460 -a(S'ih/0' -p116461 -S'ih() $1' -p116462 -tp116463 -a(S'ii/1' -p116464 -S'ii(${1:Mod}) $2' -p116465 -tp116466 -a(S'ii/2' -p116467 -S'ii(${1:Mod}, ${2:Op}) $3' -p116468 -tp116469 -a(S'il/0' -p116470 -S'il() $1' -p116471 -tp116472 -a(S'im/0' -p116473 -S'im() $1' -p116474 -tp116475 -a(S'ini/1' -p116476 -S'ini(${1:Mod}) $2' -p116477 -tp116478 -a(S'ini/2' -p116479 -S'ini(${1:Mod}, ${2:Op}) $3' -p116480 -tp116481 -a(S'inq/1' -p116482 -S'inq(${1:Mod}) $2' -p116483 -tp116484 -a(S'ip/0' -p116485 -S'ip() $1' -p116486 -tp116487 -a(S'ipb/0' -p116488 -S'ipb() $1' -p116489 -tp116490 -a(S'ipb/1' -p116491 -S'ipb(${1:Mod}) $2' -p116492 -tp116493 -a(S'iq/1' -p116494 -S'iq(${1:Mod}) $2' -p116495 -tp116496 -a(S'ir/0' -p116497 -S'ir() $1' -p116498 -tp116499 -a(S'ir/1' -p116500 -S'ir(${1:Mod}) $2' -p116501 -tp116502 -a(S'ir/2' -p116503 -S'ir(${1:Mod}, ${2:Line}) $3' -p116504 -tp116505 -a(S'ir/3' -p116506 -S'ir(${1:Mod}, ${2:Fnk}, ${3:Arity}) $4' -p116507 -tp116508 -a(S'ist/1' -p116509 -S'ist(${1:Flag}) $2' -p116510 -tp116511 -a(S'iv/0' -p116512 -S'iv() $1' -p116513 -tp116514 -a(S'l/1' -p116515 -S'l(${1:Mod}) $2' -p116516 -tp116517 -a(S'lc/1' -p116518 -S'lc(${1:X}) $2' -p116519 -tp116520 -a(S'ls/0' -p116521 -S'ls() $1' -p116522 -tp116523 -a(S'ls/1' -p116524 -S'ls(${1:S}) $2' -p116525 -tp116526 -a(S'm/0' -p116527 -S'm() $1' -p116528 -tp116529 -a(S'm/1' -p116530 -S'm(${1:Mod}) $2' -p116531 -tp116532 -a(S'memory/0' -p116533 -S'memory() $1' -p116534 -tp116535 -a(S'memory/1' -p116536 -S'memory(${1:Type}) $2' -p116537 -tp116538 -a(S'nc/1' -p116539 -S'nc(${1:X}) $2' -p116540 -tp116541 -a(S'ni/0' -p116542 -S'ni() $1' -p116543 -tp116544 -a(S'nl/1' -p116545 -S'nl(${1:Mod}) $2' -p116546 -tp116547 -a(S'nregs/0' -p116548 -S'nregs() $1' -p116549 -tp116550 -a(S'pid/3' -p116551 -S'pid(${1:X}, ${2:Y}, ${3:Z}) $4' -p116552 -tp116553 -a(S'pwd/0' -p116554 -S'pwd() $1' -p116555 -tp116556 -a(S'q/0' -p116557 -S'q() $1' -p116558 -tp116559 -a(S'regs/0' -p116560 -S'regs() $1' -p116561 -tp116562 -a(S'xm/1' -p116563 -S'xm(${1:Mod}) $2' -p116564 -tp116565 -a(S'y/1' -p116566 -S'y(${1:Type}) $2' -p116567 -tp116568 -a(S'y/2' -p116569 -S'y(${1:File}, ${2:Opts}) $3' -p116570 -tp116571 -asS'ssh_acceptor' -p116572 -(lp116573 -(S'acceptor_init/6' -p116574 -S'acceptor_init(${1:Parent}, ${2:Port}, ${3:Address}, ${4:SockOpts}, ${5:Opts}, ${6:AcceptTimeout}) $7' -p116575 -tp116576 -a(S'acceptor_loop/6' -p116577 -S'acceptor_loop(${1:Callback}, ${2:Port}, ${3:Address}, ${4:Opts}, ${5:ListenSocket}, ${6:AcceptTimeout}) $7' -p116578 -tp116579 -a(S'start_link/5' -p116580 -S'start_link(${1:Port}, ${2:Address}, ${3:SockOpts}, ${4:Opts}, ${5:AcceptTimeout}) $6' -p116581 -tp116582 -asS'CosNotifyComm_PushConsumer' -p116583 -(lp116584 -(S'code_change/3' -p116585 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p116586 -tp116587 -a(S'disconnect_push_consumer/1' -p116588 -S'disconnect_push_consumer(${1:OE_THIS}) $2' -p116589 -tp116590 -a(S'disconnect_push_consumer/2' -p116591 -S'disconnect_push_consumer(${1:OE_THIS}, ${2:OE_Options}) $3' -p116592 -tp116593 -a(S'handle_call/3' -p116594 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p116595 -tp116596 -a(S'handle_cast/2' -p116597 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p116598 -tp116599 -a(S'handle_info/2' -p116600 -S'handle_info(${1:Param1}, ${2:State}) $3' -p116601 -tp116602 -a(S'init/1' -p116603 -S'init(${1:Env}) $2' -p116604 -tp116605 -a(S'oe_create/0' -p116606 -S'oe_create() $1' -p116607 -tp116608 -a(S'oe_create/1' -p116609 -S'oe_create(${1:Env}) $2' -p116610 -tp116611 -a(S'oe_create/2' -p116612 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p116613 -tp116614 -a(S'oe_create_link/0' -p116615 -S'oe_create_link() $1' -p116616 -tp116617 -a(S'oe_create_link/1' -p116618 -S'oe_create_link(${1:Env}) $2' -p116619 -tp116620 -a(S'oe_create_link/2' -p116621 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p116622 -tp116623 -a(S'oe_get_interface/0' -p116624 -S'oe_get_interface() $1' -p116625 -tp116626 -a(S'oe_is_a/1' -p116627 -S'oe_is_a(${1:Param1}) $2' -p116628 -tp116629 -a(S'oe_tc/1' -p116630 -S'oe_tc(${1:Param1}) $2' -p116631 -tp116632 -a(S'offer_change/3' -p116633 -S'offer_change(${1:OE_THIS}, ${2:Added}, ${3:Removed}) $4' -p116634 -tp116635 -a(S'offer_change/4' -p116636 -S'offer_change(${1:OE_THIS}, ${2:OE_Options}, ${3:Added}, ${4:Removed}) $5' -p116637 -tp116638 -a(S'push/2' -p116639 -S'push(${1:OE_THIS}, ${2:Data}) $3' -p116640 -tp116641 -a(S'push/3' -p116642 -S'push(${1:OE_THIS}, ${2:OE_Options}, ${3:Data}) $4' -p116643 -tp116644 -a(S'terminate/2' -p116645 -S'terminate(${1:Reason}, ${2:State}) $3' -p116646 -tp116647 -a(S'typeID/0' -p116648 -S'typeID() $1' -p116649 -tp116650 -asS'wxCalendarEvent' -p116651 -(lp116652 -(S'getClientData/1' -p116653 -S'getClientData(${1:This}) $2' -p116654 -tp116655 -a(S'getDate/1' -p116656 -S'getDate(${1:This}) $2' -p116657 -tp116658 -a(S'getExtraLong/1' -p116659 -S'getExtraLong(${1:This}) $2' -p116660 -tp116661 -a(S'getId/1' -p116662 -S'getId(${1:This}) $2' -p116663 -tp116664 -a(S'getInt/1' -p116665 -S'getInt(${1:This}) $2' -p116666 -tp116667 -a(S'getSelection/1' -p116668 -S'getSelection(${1:This}) $2' -p116669 -tp116670 -a(S'getSkipped/1' -p116671 -S'getSkipped(${1:This}) $2' -p116672 -tp116673 -a(S'getString/1' -p116674 -S'getString(${1:This}) $2' -p116675 -tp116676 -a(S'getTimestamp/1' -p116677 -S'getTimestamp(${1:This}) $2' -p116678 -tp116679 -a(S'getWeekDay/1' -p116680 -S'getWeekDay(${1:This}) $2' -p116681 -tp116682 -a(S'isChecked/1' -p116683 -S'isChecked(${1:This}) $2' -p116684 -tp116685 -a(S'isCommandEvent/1' -p116686 -S'isCommandEvent(${1:This}) $2' -p116687 -tp116688 -a(S'isSelection/1' -p116689 -S'isSelection(${1:This}) $2' -p116690 -tp116691 -a(S'parent_class/1' -p116692 -S'parent_class(${1:Param1}) $2' -p116693 -tp116694 -a(S'resumePropagation/2' -p116695 -S'resumePropagation(${1:This}, ${2:PropagationLevel}) $3' -p116696 -tp116697 -a(S'setInt/2' -p116698 -S'setInt(${1:This}, ${2:I}) $3' -p116699 -tp116700 -a(S'setString/2' -p116701 -S'setString(${1:This}, ${2:S}) $3' -p116702 -tp116703 -a(S'shouldPropagate/1' -p116704 -S'shouldPropagate(${1:This}) $2' -p116705 -tp116706 -a(S'skip/1' -p116707 -S'skip(${1:This}) $2' -p116708 -tp116709 -a(S'skip/2' -p116710 -S'skip(${1:This}, ${2:Options}) $3' -p116711 -tp116712 -a(S'stopPropagation/1' -p116713 -S'stopPropagation(${1:This}) $2' -p116714 -tp116715 -asS'snmpa_agent' -p116716 -(lp116717 -(S'backup/2' -p116718 -S'backup(${1:Agent}, ${2:BackupDir}) $3' -p116719 -tp116720 -a(S'code_change/3' -p116721 -S'code_change(${1:Param1}, ${2:S1}, ${3:Param3}) $4' -p116722 -tp116723 -a(S'db/1' -p116724 -S'db(${1:Tab}) $2' -p116725 -tp116726 -a(S'disable_mibs_cache/1' -p116727 -S'disable_mibs_cache(${1:Agent}) $2' -p116728 -tp116729 -a(S'disable_mibs_cache_autogc/1' -p116730 -S'disable_mibs_cache_autogc(${1:Agent}) $2' -p116731 -tp116732 -a(S'discovery/6' -p116733 -S'discovery() $1' -p116734 -tp116735 -a(S'do_get/3' -p116736 -S'do_get(${1:MibView}, ${2:UnsortedVarbinds}, ${3:IsNotification}) $4' -p116737 -tp116738 -a(S'do_get/4' -p116739 -S'do_get(${1:MibView}, ${2:UnsortedVarbinds}, ${3:IsNotification}, ${4:ForceMaster}) $5' -p116740 -tp116741 -a(S'do_send_trap/7' -p116742 -S'do_send_trap() $1' -p116743 -tp116744 -a(S'do_send_trap/8' -p116745 -S'do_send_trap() $1' -p116746 -tp116747 -a(S'dump_mibs/1' -p116748 -S'dump_mibs(${1:Agent}) $2' -p116749 -tp116750 -a(S'dump_mibs/2' -p116751 -S'dump_mibs(${1:Agent}, ${2:File}) $3' -p116752 -tp116753 -a(S'enable_mibs_cache/1' -p116754 -S'enable_mibs_cache(${1:Agent}) $2' -p116755 -tp116756 -a(S'enable_mibs_cache_autogc/1' -p116757 -S'enable_mibs_cache_autogc(${1:Agent}) $2' -p116758 -tp116759 -a(S'gc_mibs_cache/1' -p116760 -S'gc_mibs_cache(${1:Agent}) $2' -p116761 -tp116762 -a(S'gc_mibs_cache/2' -p116763 -S'gc_mibs_cache(${1:Agent}, ${2:Age}) $3' -p116764 -tp116765 -a(S'gc_mibs_cache/3' -p116766 -S'gc_mibs_cache(${1:Agent}, ${2:Age}, ${3:GcLimit}) $4' -p116767 -tp116768 -a(S'get/2' -p116769 -S'get(${1:Agent}, ${2:Vars}) $3' -p116770 -tp116771 -a(S'get/3' -p116772 -S'get(${1:SubAgent}, ${2:Varbinds}, ${3:IsNotification}) $4' -p116773 -tp116774 -a(S'get_agent_mib_storage/0' -p116775 -S'get_agent_mib_storage() $1' -p116776 -tp116777 -a(S'get_log_type/1' -p116778 -S'get_log_type(${1:Agent}) $2' -p116779 -tp116780 -a(S'get_net_if/1' -p116781 -S'get_net_if(${1:Agent}) $2' -p116782 -tp116783 -a(S'get_next/2' -p116784 -S'get_next(${1:Agent}, ${2:Vars}) $3' -p116785 -tp116786 -a(S'get_next/3' -p116787 -S'get_next(${1:SubAgent}, ${2:MibView}, ${3:Varbinds}) $4' -p116788 -tp116789 -a(S'get_request_limit/1' -p116790 -S'get_request_limit(${1:Agent}) $2' -p116791 -tp116792 -a(S'handle_call/3' -p116793 -S'handle_call(${1:Req}, ${2:From}, ${3:S}) $4' -p116794 -tp116795 -a(S'handle_cast/2' -p116796 -S'handle_cast(${1:Msg}, ${2:S}) $3' -p116797 -tp116798 -a(S'handle_info/2' -p116799 -S'handle_info(${1:Info}, ${2:S}) $3' -p116800 -tp116801 -a(S'handle_pdu/7' -p116802 -S'handle_pdu(${1:Vsn}, ${2:Pdu}, ${3:PduMS}, ${4:ACMData}, ${5:Address}, ${6:Extra}, ${7:Dict}) $8' -p116803 -tp116804 -a(S'handle_pdu/8' -p116805 -S'handle_pdu(${1:Vsn}, ${2:Pdu}, ${3:PduMS}, ${4:ACMData}, ${5:Address}, ${6:GbMaxVBs}, ${7:Extra}, ${8:Dict}) $9' -p116806 -tp116807 -a(S'increment_counter/3' -p116808 -S'increment_counter(${1:Counter}, ${2:Initial}, ${3:Max}) $4' -p116809 -tp116810 -a(S'info/1' -p116811 -S'info(${1:Agent}) $2' -p116812 -tp116813 -a(S'init/1' -p116814 -S'init(${1:Param1}) $2' -p116815 -tp116816 -a(S'invalidate_ca_cache/0' -p116817 -S'invalidate_ca_cache() $1' -p116818 -tp116819 -a(S'invalidate_mibs_cache/1' -p116820 -S'invalidate_mibs_cache(${1:Agent}) $2' -p116821 -tp116822 -a(S'is_originating_discovery_enabled/0' -p116823 -S'is_originating_discovery_enabled() $1' -p116824 -tp116825 -a(S'is_terminating_discovery_enabled/0' -p116826 -S'is_terminating_discovery_enabled() $1' -p116827 -tp116828 -a(S'load_mibs/2' -p116829 -S'load_mibs(${1:Agent}, ${2:Mibs}) $3' -p116830 -tp116831 -a(S'make_value_a_correct_value/3' -p116832 -S'make_value_a_correct_value(${1:WrongVal}, ${2:ASN1Type}, ${3:Mfa}) $4' -p116833 -tp116834 -a(S'me_of/1' -p116835 -S'me_of(${1:Oid}) $2' -p116836 -tp116837 -a(S'me_of/2' -p116838 -S'me_of(${1:Agent}, ${2:Oid}) $3' -p116839 -tp116840 -a(S'mib_of/1' -p116841 -S'mib_of(${1:Oid}) $2' -p116842 -tp116843 -a(S'mib_of/2' -p116844 -S'mib_of(${1:Agent}, ${2:Oid}) $3' -p116845 -tp116846 -a(S'register_notification_filter/5' -p116847 -S'register_notification_filter() $1' -p116848 -tp116849 -a(S'register_subagent/3' -p116850 -S'register_subagent(${1:Agent}, ${2:SubTreeOid}, ${3:SubagentPid}) $4' -p116851 -tp116852 -a(S'restart_set_worker/1' -p116853 -S'restart_set_worker(${1:Agent}) $2' -p116854 -tp116855 -a(S'restart_worker/1' -p116856 -S'restart_worker(${1:Agent}) $2' -p116857 -tp116858 -a(S'send_notification/3' -p116859 -S'send_notification(${1:Agent}, ${2:Notification}, ${3:SendOpts}) $4' -p116860 -tp116861 -a(S'send_trap/6' -p116862 -S'send_trap(${1:Agent}, ${2:Trap}, ${3:NotifyName}, ${4:CtxName}, ${5:Recv}, ${6:Varbinds}) $7' -p116863 -tp116864 -a(S'send_trap/7' -p116865 -S'send_trap(${1:Agent}, ${2:Trap}, ${3:NotifyName}, ${4:CtxName}, ${5:Recv}, ${6:Varbinds}, ${7:LocalEngineID}) $8' -p116866 -tp116867 -a(S'set_log_type/2' -p116868 -S'set_log_type(${1:Agent}, ${2:NewType}) $3' -p116869 -tp116870 -a(S'set_request_limit/2' -p116871 -S'set_request_limit(${1:Agent}, ${2:NewLimit}) $3' -p116872 -tp116873 -a(S'start_link/4' -p116874 -S'start_link(${1:Prio}, ${2:Parent}, ${3:Ref}, ${4:Options}) $5' -p116875 -tp116876 -a(S'start_link/5' -p116877 -S'start_link(${1:Prio}, ${2:Name}, ${3:Parent}, ${4:Ref}, ${5:Options}) $6' -p116878 -tp116879 -a(S'stop/1' -p116880 -S'stop(${1:Agent}) $2' -p116881 -tp116882 -a(S'subagent_set/2' -p116883 -S'subagent_set(${1:SubAgent}, ${2:Arguments}) $3' -p116884 -tp116885 -a(S'terminate/2' -p116886 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p116887 -tp116888 -a(S'terminating_discovery_stage2/0' -p116889 -S'terminating_discovery_stage2() $1' -p116890 -tp116891 -a(S'terminating_trigger_username/0' -p116892 -S'terminating_trigger_username() $1' -p116893 -tp116894 -a(S'tr_var/2' -p116895 -S'tr_var(${1:Oid}, ${2:Idx}) $3' -p116896 -tp116897 -a(S'tr_varbind/1' -p116898 -S'tr_varbind(${1:Param1}) $2' -p116899 -tp116900 -a(S'unload_mibs/2' -p116901 -S'unload_mibs(${1:Agent}, ${2:Mibs}) $3' -p116902 -tp116903 -a(S'unregister_notification_filter/2' -p116904 -S'unregister_notification_filter(${1:Agent}, ${2:Id}) $3' -p116905 -tp116906 -a(S'unregister_subagent/2' -p116907 -S'unregister_subagent(${1:Agent}, ${2:SubagentOidOrPid}) $3' -p116908 -tp116909 -a(S'update_mibs_cache_age/2' -p116910 -S'update_mibs_cache_age(${1:Agent}, ${2:Age}) $3' -p116911 -tp116912 -a(S'update_mibs_cache_gclimit/2' -p116913 -S'update_mibs_cache_gclimit(${1:Agent}, ${2:GcLimit}) $3' -p116914 -tp116915 -a(S'validate_err/3' -p116916 -S'validate_err(${1:Param1}, ${2:X}, ${3:Mfa}) $4' -p116917 -tp116918 -a(S'verbosity/2' -p116919 -S'verbosity(${1:Agent}, ${2:Verbosity}) $3' -p116920 -tp116921 -a(S'whereis_mib/2' -p116922 -S'whereis_mib(${1:Agent}, ${2:Mib}) $3' -p116923 -tp116924 -a(S'which_mibs/1' -p116925 -S'which_mibs(${1:Agent}) $2' -p116926 -tp116927 -a(S'which_mibs_cache_size/1' -p116928 -S'which_mibs_cache_size(${1:Agent}) $2' -p116929 -tp116930 -a(S'which_notification_filter/1' -p116931 -S'which_notification_filter(${1:Agent}) $2' -p116932 -tp116933 -a(S'worker/2' -p116934 -S'worker(${1:Master}, ${2:Dict}) $3' -p116935 -tp116936 -a(S'worker_loop/1' -p116937 -S'worker_loop(${1:Master}) $2' -p116938 -tp116939 -asS'icunion' -p116940 -(lp116941 -(S'union_gen/4' -p116942 -S'union_gen(${1:G}, ${2:N}, ${3:X}, ${4:Param4}) $5' -p116943 -tp116944 -asS'wxFontPickerCtrl' -p116945 -(lp116946 -(S'cacheBestSize/2' -p116947 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p116948 -tp116949 -a(S'captureMouse/1' -p116950 -S'captureMouse(${1:This}) $2' -p116951 -tp116952 -a(S'center/1' -p116953 -S'center(${1:This}) $2' -p116954 -tp116955 -a(S'center/2' -p116956 -S'center(${1:This}, ${2:Options}) $3' -p116957 -tp116958 -a(S'centerOnParent/1' -p116959 -S'centerOnParent(${1:This}) $2' -p116960 -tp116961 -a(S'centerOnParent/2' -p116962 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p116963 -tp116964 -a(S'centre/1' -p116965 -S'centre(${1:This}) $2' -p116966 -tp116967 -a(S'centre/2' -p116968 -S'centre(${1:This}, ${2:Options}) $3' -p116969 -tp116970 -a(S'centreOnParent/1' -p116971 -S'centreOnParent(${1:This}) $2' -p116972 -tp116973 -a(S'centreOnParent/2' -p116974 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p116975 -tp116976 -a(S'clearBackground/1' -p116977 -S'clearBackground(${1:This}) $2' -p116978 -tp116979 -a(S'clientToScreen/2' -p116980 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p116981 -tp116982 -a(S'clientToScreen/3' -p116983 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p116984 -tp116985 -a(S'close/1' -p116986 -S'close(${1:This}) $2' -p116987 -tp116988 -a(S'close/2' -p116989 -S'close(${1:This}, ${2:Options}) $3' -p116990 -tp116991 -a(S'connect/2' -p116992 -S'connect(${1:This}, ${2:EventType}) $3' -p116993 -tp116994 -a(S'connect/3' -p116995 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p116996 -tp116997 -a(S'convertDialogToPixels/2' -p116998 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p116999 -tp117000 -a(S'convertPixelsToDialog/2' -p117001 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p117002 -tp117003 -a(S'create/3' -p117004 -S'create(${1:This}, ${2:Parent}, ${3:Id}) $4' -p117005 -tp117006 -a(S'create/4' -p117007 -S'create(${1:This}, ${2:Parent}, ${3:Id}, ${4:Param4}) $5' -p117008 -tp117009 -a(S'destroy/1' -p117010 -S'destroy(${1:This}) $2' -p117011 -tp117012 -a(S'destroyChildren/1' -p117013 -S'destroyChildren(${1:This}) $2' -p117014 -tp117015 -a(S'disable/1' -p117016 -S'disable(${1:This}) $2' -p117017 -tp117018 -a(S'disconnect/1' -p117019 -S'disconnect(${1:This}) $2' -p117020 -tp117021 -a(S'disconnect/2' -p117022 -S'disconnect(${1:This}, ${2:EventType}) $3' -p117023 -tp117024 -a(S'disconnect/3' -p117025 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p117026 -tp117027 -a(S'enable/1' -p117028 -S'enable(${1:This}) $2' -p117029 -tp117030 -a(S'enable/2' -p117031 -S'enable(${1:This}, ${2:Options}) $3' -p117032 -tp117033 -a(S'findWindow/2' -p117034 -S'findWindow(${1:This}, ${2:Winid}) $3' -p117035 -tp117036 -a(S'fit/1' -p117037 -S'fit(${1:This}) $2' -p117038 -tp117039 -a(S'fitInside/1' -p117040 -S'fitInside(${1:This}) $2' -p117041 -tp117042 -a(S'freeze/1' -p117043 -S'freeze(${1:This}) $2' -p117044 -tp117045 -a(S'getAcceleratorTable/1' -p117046 -S'getAcceleratorTable(${1:This}) $2' -p117047 -tp117048 -a(S'getBackgroundColour/1' -p117049 -S'getBackgroundColour(${1:This}) $2' -p117050 -tp117051 -a(S'getBackgroundStyle/1' -p117052 -S'getBackgroundStyle(${1:This}) $2' -p117053 -tp117054 -a(S'getBestSize/1' -p117055 -S'getBestSize(${1:This}) $2' -p117056 -tp117057 -a(S'getCaret/1' -p117058 -S'getCaret(${1:This}) $2' -p117059 -tp117060 -a(S'getCharHeight/1' -p117061 -S'getCharHeight(${1:This}) $2' -p117062 -tp117063 -a(S'getCharWidth/1' -p117064 -S'getCharWidth(${1:This}) $2' -p117065 -tp117066 -a(S'getChildren/1' -p117067 -S'getChildren(${1:This}) $2' -p117068 -tp117069 -a(S'getClientSize/1' -p117070 -S'getClientSize(${1:This}) $2' -p117071 -tp117072 -a(S'getContainingSizer/1' -p117073 -S'getContainingSizer(${1:This}) $2' -p117074 -tp117075 -a(S'getCursor/1' -p117076 -S'getCursor(${1:This}) $2' -p117077 -tp117078 -a(S'getDropTarget/1' -p117079 -S'getDropTarget(${1:This}) $2' -p117080 -tp117081 -a(S'getEventHandler/1' -p117082 -S'getEventHandler(${1:This}) $2' -p117083 -tp117084 -a(S'getExtraStyle/1' -p117085 -S'getExtraStyle(${1:This}) $2' -p117086 -tp117087 -a(S'getFont/1' -p117088 -S'getFont(${1:This}) $2' -p117089 -tp117090 -a(S'getForegroundColour/1' -p117091 -S'getForegroundColour(${1:This}) $2' -p117092 -tp117093 -a(S'getGrandParent/1' -p117094 -S'getGrandParent(${1:This}) $2' -p117095 -tp117096 -a(S'getHandle/1' -p117097 -S'getHandle(${1:This}) $2' -p117098 -tp117099 -a(S'getHelpText/1' -p117100 -S'getHelpText(${1:This}) $2' -p117101 -tp117102 -a(S'getId/1' -p117103 -S'getId(${1:This}) $2' -p117104 -tp117105 -a(S'getInternalMargin/1' -p117106 -S'getInternalMargin(${1:This}) $2' -p117107 -tp117108 -a(S'getLabel/1' -p117109 -S'getLabel(${1:This}) $2' -p117110 -tp117111 -a(S'getMaxPointSize/1' -p117112 -S'getMaxPointSize(${1:This}) $2' -p117113 -tp117114 -a(S'getMaxSize/1' -p117115 -S'getMaxSize(${1:This}) $2' -p117116 -tp117117 -a(S'getMinSize/1' -p117118 -S'getMinSize(${1:This}) $2' -p117119 -tp117120 -a(S'getName/1' -p117121 -S'getName(${1:This}) $2' -p117122 -tp117123 -a(S'getParent/1' -p117124 -S'getParent(${1:This}) $2' -p117125 -tp117126 -a(S'getPickerCtrlProportion/1' -p117127 -S'getPickerCtrlProportion(${1:This}) $2' -p117128 -tp117129 -a(S'getPosition/1' -p117130 -S'getPosition(${1:This}) $2' -p117131 -tp117132 -a(S'getRect/1' -p117133 -S'getRect(${1:This}) $2' -p117134 -tp117135 -a(S'getScreenPosition/1' -p117136 -S'getScreenPosition(${1:This}) $2' -p117137 -tp117138 -a(S'getScreenRect/1' -p117139 -S'getScreenRect(${1:This}) $2' -p117140 -tp117141 -a(S'getScrollPos/2' -p117142 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p117143 -tp117144 -a(S'getScrollRange/2' -p117145 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p117146 -tp117147 -a(S'getScrollThumb/2' -p117148 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p117149 -tp117150 -a(S'getSelectedFont/1' -p117151 -S'getSelectedFont(${1:This}) $2' -p117152 -tp117153 -a(S'getSize/1' -p117154 -S'getSize(${1:This}) $2' -p117155 -tp117156 -a(S'getSizer/1' -p117157 -S'getSizer(${1:This}) $2' -p117158 -tp117159 -a(S'getTextCtrl/1' -p117160 -S'getTextCtrl(${1:This}) $2' -p117161 -tp117162 -a(S'getTextCtrlProportion/1' -p117163 -S'getTextCtrlProportion(${1:This}) $2' -p117164 -tp117165 -a(S'getTextExtent/2' -p117166 -S'getTextExtent(${1:This}, ${2:String}) $3' -p117167 -tp117168 -a(S'getTextExtent/3' -p117169 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p117170 -tp117171 -a(S'getToolTip/1' -p117172 -S'getToolTip(${1:This}) $2' -p117173 -tp117174 -a(S'getUpdateRegion/1' -p117175 -S'getUpdateRegion(${1:This}) $2' -p117176 -tp117177 -a(S'getVirtualSize/1' -p117178 -S'getVirtualSize(${1:This}) $2' -p117179 -tp117180 -a(S'getWindowStyleFlag/1' -p117181 -S'getWindowStyleFlag(${1:This}) $2' -p117182 -tp117183 -a(S'getWindowVariant/1' -p117184 -S'getWindowVariant(${1:This}) $2' -p117185 -tp117186 -a(S'hasCapture/1' -p117187 -S'hasCapture(${1:This}) $2' -p117188 -tp117189 -a(S'hasScrollbar/2' -p117190 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p117191 -tp117192 -a(S'hasTextCtrl/1' -p117193 -S'hasTextCtrl(${1:This}) $2' -p117194 -tp117195 -a(S'hasTransparentBackground/1' -p117196 -S'hasTransparentBackground(${1:This}) $2' -p117197 -tp117198 -a(S'hide/1' -p117199 -S'hide(${1:This}) $2' -p117200 -tp117201 -a(S'inheritAttributes/1' -p117202 -S'inheritAttributes(${1:This}) $2' -p117203 -tp117204 -a(S'initDialog/1' -p117205 -S'initDialog(${1:This}) $2' -p117206 -tp117207 -a(S'invalidateBestSize/1' -p117208 -S'invalidateBestSize(${1:This}) $2' -p117209 -tp117210 -a(S'isEnabled/1' -p117211 -S'isEnabled(${1:This}) $2' -p117212 -tp117213 -a(S'isExposed/2' -p117214 -S'isExposed(${1:This}, ${2:Pt}) $3' -p117215 -tp117216 -a(S'isExposed/3' -p117217 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p117218 -tp117219 -a(S'isExposed/5' -p117220 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p117221 -tp117222 -a(S'isPickerCtrlGrowable/1' -p117223 -S'isPickerCtrlGrowable(${1:This}) $2' -p117224 -tp117225 -a(S'isRetained/1' -p117226 -S'isRetained(${1:This}) $2' -p117227 -tp117228 -a(S'isShown/1' -p117229 -S'isShown(${1:This}) $2' -p117230 -tp117231 -a(S'isTextCtrlGrowable/1' -p117232 -S'isTextCtrlGrowable(${1:This}) $2' -p117233 -tp117234 -a(S'isTopLevel/1' -p117235 -S'isTopLevel(${1:This}) $2' -p117236 -tp117237 -a(S'layout/1' -p117238 -S'layout(${1:This}) $2' -p117239 -tp117240 -a(S'lineDown/1' -p117241 -S'lineDown(${1:This}) $2' -p117242 -tp117243 -a(S'lineUp/1' -p117244 -S'lineUp(${1:This}) $2' -p117245 -tp117246 -a(S'lower/1' -p117247 -S'lower(${1:This}) $2' -p117248 -tp117249 -a(S'makeModal/1' -p117250 -S'makeModal(${1:This}) $2' -p117251 -tp117252 -a(S'makeModal/2' -p117253 -S'makeModal(${1:This}, ${2:Options}) $3' -p117254 -tp117255 -a(S'move/2' -p117256 -S'move(${1:This}, ${2:Pt}) $3' -p117257 -tp117258 -a(S'move/3' -p117259 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p117260 -tp117261 -a(S'move/4' -p117262 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p117263 -tp117264 -a(S'moveAfterInTabOrder/2' -p117265 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p117266 -tp117267 -a(S'moveBeforeInTabOrder/2' -p117268 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p117269 -tp117270 -a(S'navigate/1' -p117271 -S'navigate(${1:This}) $2' -p117272 -tp117273 -a(S'navigate/2' -p117274 -S'navigate(${1:This}, ${2:Options}) $3' -p117275 -tp117276 -a(S'new/0' -p117277 -S'new() $1' -p117278 -tp117279 -a(S'new/2' -p117280 -S'new(${1:Parent}, ${2:Id}) $3' -p117281 -tp117282 -a(S'new/3' -p117283 -S'new(${1:Parent}, ${2:Id}, ${3:Param3}) $4' -p117284 -tp117285 -a(S'pageDown/1' -p117286 -S'pageDown(${1:This}) $2' -p117287 -tp117288 -a(S'pageUp/1' -p117289 -S'pageUp(${1:This}) $2' -p117290 -tp117291 -a(S'parent_class/1' -p117292 -S'parent_class(${1:Param1}) $2' -p117293 -tp117294 -a(S'popEventHandler/1' -p117295 -S'popEventHandler(${1:This}) $2' -p117296 -tp117297 -a(S'popEventHandler/2' -p117298 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p117299 -tp117300 -a(S'popupMenu/2' -p117301 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p117302 -tp117303 -a(S'popupMenu/3' -p117304 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p117305 -tp117306 -a(S'popupMenu/4' -p117307 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p117308 -tp117309 -a(S'raise/1' -p117310 -S'raise(${1:This}) $2' -p117311 -tp117312 -a(S'refresh/1' -p117313 -S'refresh(${1:This}) $2' -p117314 -tp117315 -a(S'refresh/2' -p117316 -S'refresh(${1:This}, ${2:Options}) $3' -p117317 -tp117318 -a(S'refreshRect/2' -p117319 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p117320 -tp117321 -a(S'refreshRect/3' -p117322 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p117323 -tp117324 -a(S'releaseMouse/1' -p117325 -S'releaseMouse(${1:This}) $2' -p117326 -tp117327 -a(S'removeChild/2' -p117328 -S'removeChild(${1:This}, ${2:Child}) $3' -p117329 -tp117330 -a(S'reparent/2' -p117331 -S'reparent(${1:This}, ${2:NewParent}) $3' -p117332 -tp117333 -a(S'screenToClient/1' -p117334 -S'screenToClient(${1:This}) $2' -p117335 -tp117336 -a(S'screenToClient/2' -p117337 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p117338 -tp117339 -a(S'scrollLines/2' -p117340 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p117341 -tp117342 -a(S'scrollPages/2' -p117343 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p117344 -tp117345 -a(S'scrollWindow/3' -p117346 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p117347 -tp117348 -a(S'scrollWindow/4' -p117349 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p117350 -tp117351 -a(S'setAcceleratorTable/2' -p117352 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p117353 -tp117354 -a(S'setAutoLayout/2' -p117355 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p117356 -tp117357 -a(S'setBackgroundColour/2' -p117358 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p117359 -tp117360 -a(S'setBackgroundStyle/2' -p117361 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p117362 -tp117363 -a(S'setCaret/2' -p117364 -S'setCaret(${1:This}, ${2:Caret}) $3' -p117365 -tp117366 -a(S'setClientSize/2' -p117367 -S'setClientSize(${1:This}, ${2:Size}) $3' -p117368 -tp117369 -a(S'setClientSize/3' -p117370 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p117371 -tp117372 -a(S'setContainingSizer/2' -p117373 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p117374 -tp117375 -a(S'setCursor/2' -p117376 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p117377 -tp117378 -a(S'setDropTarget/2' -p117379 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p117380 -tp117381 -a(S'setExtraStyle/2' -p117382 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p117383 -tp117384 -a(S'setFocus/1' -p117385 -S'setFocus(${1:This}) $2' -p117386 -tp117387 -a(S'setFocusFromKbd/1' -p117388 -S'setFocusFromKbd(${1:This}) $2' -p117389 -tp117390 -a(S'setFont/2' -p117391 -S'setFont(${1:This}, ${2:Font}) $3' -p117392 -tp117393 -a(S'setForegroundColour/2' -p117394 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p117395 -tp117396 -a(S'setHelpText/2' -p117397 -S'setHelpText(${1:This}, ${2:Text}) $3' -p117398 -tp117399 -a(S'setId/2' -p117400 -S'setId(${1:This}, ${2:Winid}) $3' -p117401 -tp117402 -a(S'setInternalMargin/2' -p117403 -S'setInternalMargin(${1:This}, ${2:Newmargin}) $3' -p117404 -tp117405 -a(S'setLabel/2' -p117406 -S'setLabel(${1:This}, ${2:Label}) $3' -p117407 -tp117408 -a(S'setMaxPointSize/2' -p117409 -S'setMaxPointSize(${1:This}, ${2:Max}) $3' -p117410 -tp117411 -a(S'setMaxSize/2' -p117412 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p117413 -tp117414 -a(S'setMinSize/2' -p117415 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p117416 -tp117417 -a(S'setName/2' -p117418 -S'setName(${1:This}, ${2:Name}) $3' -p117419 -tp117420 -a(S'setOwnBackgroundColour/2' -p117421 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p117422 -tp117423 -a(S'setOwnFont/2' -p117424 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p117425 -tp117426 -a(S'setOwnForegroundColour/2' -p117427 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p117428 -tp117429 -a(S'setPalette/2' -p117430 -S'setPalette(${1:This}, ${2:Pal}) $3' -p117431 -tp117432 -a(S'setPickerCtrlGrowable/1' -p117433 -S'setPickerCtrlGrowable(${1:This}) $2' -p117434 -tp117435 -a(S'setPickerCtrlGrowable/2' -p117436 -S'setPickerCtrlGrowable(${1:This}, ${2:Options}) $3' -p117437 -tp117438 -a(S'setPickerCtrlProportion/2' -p117439 -S'setPickerCtrlProportion(${1:This}, ${2:Prop}) $3' -p117440 -tp117441 -a(S'setScrollPos/3' -p117442 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p117443 -tp117444 -a(S'setScrollPos/4' -p117445 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p117446 -tp117447 -a(S'setScrollbar/5' -p117448 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p117449 -tp117450 -a(S'setScrollbar/6' -p117451 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p117452 -tp117453 -a(S'setSelectedFont/2' -p117454 -S'setSelectedFont(${1:This}, ${2:F}) $3' -p117455 -tp117456 -a(S'setSize/2' -p117457 -S'setSize(${1:This}, ${2:Rect}) $3' -p117458 -tp117459 -a(S'setSize/3' -p117460 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p117461 -tp117462 -a(S'setSize/5' -p117463 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p117464 -tp117465 -a(S'setSize/6' -p117466 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p117467 -tp117468 -a(S'setSizeHints/2' -p117469 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p117470 -tp117471 -a(S'setSizeHints/3' -p117472 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p117473 -tp117474 -a(S'setSizeHints/4' -p117475 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p117476 -tp117477 -a(S'setSizer/2' -p117478 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p117479 -tp117480 -a(S'setSizer/3' -p117481 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p117482 -tp117483 -a(S'setSizerAndFit/2' -p117484 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p117485 -tp117486 -a(S'setSizerAndFit/3' -p117487 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p117488 -tp117489 -a(S'setTextCtrlGrowable/1' -p117490 -S'setTextCtrlGrowable(${1:This}) $2' -p117491 -tp117492 -a(S'setTextCtrlGrowable/2' -p117493 -S'setTextCtrlGrowable(${1:This}, ${2:Options}) $3' -p117494 -tp117495 -a(S'setTextCtrlProportion/2' -p117496 -S'setTextCtrlProportion(${1:This}, ${2:Prop}) $3' -p117497 -tp117498 -a(S'setThemeEnabled/2' -p117499 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p117500 -tp117501 -a(S'setToolTip/2' -p117502 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p117503 -tp117504 -a(S'setVirtualSize/2' -p117505 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p117506 -tp117507 -a(S'setVirtualSize/3' -p117508 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p117509 -tp117510 -a(S'setVirtualSizeHints/2' -p117511 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p117512 -tp117513 -a(S'setVirtualSizeHints/3' -p117514 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p117515 -tp117516 -a(S'setVirtualSizeHints/4' -p117517 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p117518 -tp117519 -a(S'setWindowStyle/2' -p117520 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p117521 -tp117522 -a(S'setWindowStyleFlag/2' -p117523 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p117524 -tp117525 -a(S'setWindowVariant/2' -p117526 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p117527 -tp117528 -a(S'shouldInheritColours/1' -p117529 -S'shouldInheritColours(${1:This}) $2' -p117530 -tp117531 -a(S'show/1' -p117532 -S'show(${1:This}) $2' -p117533 -tp117534 -a(S'show/2' -p117535 -S'show(${1:This}, ${2:Options}) $3' -p117536 -tp117537 -a(S'thaw/1' -p117538 -S'thaw(${1:This}) $2' -p117539 -tp117540 -a(S'transferDataFromWindow/1' -p117541 -S'transferDataFromWindow(${1:This}) $2' -p117542 -tp117543 -a(S'transferDataToWindow/1' -p117544 -S'transferDataToWindow(${1:This}) $2' -p117545 -tp117546 -a(S'update/1' -p117547 -S'update(${1:This}) $2' -p117548 -tp117549 -a(S'updateWindowUI/1' -p117550 -S'updateWindowUI(${1:This}) $2' -p117551 -tp117552 -a(S'updateWindowUI/2' -p117553 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p117554 -tp117555 -a(S'validate/1' -p117556 -S'validate(${1:This}) $2' -p117557 -tp117558 -a(S'warpPointer/3' -p117559 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p117560 -tp117561 -asS'megaco_stats' -p117562 -(lp117563 -(S'get_stats/1' -p117564 -S'get_stats(${1:Ets}) $2' -p117565 -tp117566 -a(S'get_stats/2' -p117567 -S'get_stats(${1:Ets}, ${2:GlobalCounter}) $3' -p117568 -tp117569 -a(S'get_stats/3' -p117570 -S'get_stats(${1:Ets}, ${2:Handle}, ${3:Acc}) $4' -p117571 -tp117572 -a(S'inc/2' -p117573 -S'inc(${1:Tab}, ${2:GlobalCnt}) $3' -p117574 -tp117575 -a(S'inc/3' -p117576 -S'inc(${1:Tab}, ${2:Key}, ${3:Incr}) $4' -p117577 -tp117578 -a(S'inc/4' -p117579 -S'inc() $1' -p117580 -tp117581 -a(S'init/1' -p117582 -S'init(${1:Name}) $2' -p117583 -tp117584 -a(S'init/2' -p117585 -S'init(${1:Name}, ${2:GlobalCounters}) $3' -p117586 -tp117587 -a(S'reset_stats/1' -p117588 -S'reset_stats(${1:Ets}) $2' -p117589 -tp117590 -a(S'reset_stats/2' -p117591 -S'reset_stats(${1:Ets}, ${2:GlobalCounter}) $3' -p117592 -tp117593 -asS'pubkey_cert' -p117594 -(lp117595 -(S'digest_type/1' -p117596 -S'digest_type(${1:Param1}) $2' -p117597 -tp117598 -a(S'init_validation_state/3' -p117599 -S'init_validation_state(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p117600 -tp117601 -a(S'is_fixed_dh_cert/1' -p117602 -S'is_fixed_dh_cert(${1:Param1}) $2' -p117603 -tp117604 -a(S'is_issuer/2' -p117605 -S'is_issuer() $1' -p117606 -tp117607 -a(S'is_self_signed/1' -p117608 -S'is_self_signed(${1:Param1}) $2' -p117609 -tp117610 -a(S'issuer_id/2' -p117611 -S'issuer_id(${1:Otpcert}, ${2:Param2}) $3' -p117612 -tp117613 -a(S'normalize_general_name/1' -p117614 -S'normalize_general_name(${1:Issuer}) $2' -p117615 -tp117616 -a(S'prepare_for_next_cert/2' -p117617 -S'prepare_for_next_cert() $1' -p117618 -tp117619 -a(S'validate_extensions/4' -p117620 -S'validate_extensions(${1:OtpCert}, ${2:ValidationState}, ${3:UserState}, ${4:VerifyFun}) $5' -p117621 -tp117622 -a(S'validate_issuer/4' -p117623 -S'validate_issuer(${1:OtpCert}, ${2:Issuer}, ${3:UserState}, ${4:VerifyFun}) $5' -p117624 -tp117625 -a(S'validate_names/6' -p117626 -S'validate_names(${1:OtpCert}, ${2:Permit}, ${3:Exclude}, ${4:Last}, ${5:UserState}, ${6:VerifyFun}) $7' -p117627 -tp117628 -a(S'validate_revoked_status/3' -p117629 -S'validate_revoked_status(${1:Param1}, ${2:UserState}, ${3:Param3}) $4' -p117630 -tp117631 -a(S'validate_signature/6' -p117632 -S'validate_signature() $1' -p117633 -tp117634 -a(S'validate_time/3' -p117635 -S'validate_time(${1:OtpCert}, ${2:UserState}, ${3:VerifyFun}) $4' -p117636 -tp117637 -a(S'verify_data/1' -p117638 -S'verify_data(${1:DER}) $2' -p117639 -tp117640 -a(S'verify_fun/4' -p117641 -S'verify_fun(${1:Otpcert}, ${2:Result}, ${3:UserState0}, ${4:VerifyFun}) $5' -p117642 -tp117643 -asS'snmpa_network_interface_filter' -p117644 -(lp117645 -(S'behaviour_info/1' -p117646 -S'behaviour_info(${1:Param1}) $2' -p117647 -tp117648 -a(S'verify/1' -p117649 -S'verify(${1:Module}) $2' -p117650 -tp117651 -asS'dist_util' -p117652 -(lp117653 -(S'cancel_timer/1' -p117654 -S'cancel_timer(${1:Timer}) $2' -p117655 -tp117656 -a(S'handshake_other_started/1' -p117657 -S'handshake_other_started(${1:HSData0}) $2' -p117658 -tp117659 -a(S'handshake_we_started/1' -p117660 -S'handshake_we_started() $1' -p117661 -tp117662 -a(S'reset_timer/1' -p117663 -S'reset_timer(${1:Timer}) $2' -p117664 -tp117665 -a(S'setup_timer/2' -p117666 -S'setup_timer(${1:Pid}, ${2:Timeout}) $3' -p117667 -tp117668 -a(S'shutdown/3' -p117669 -S'shutdown(${1:Module}, ${2:Line}, ${3:Data}) $4' -p117670 -tp117671 -a(S'shutdown/4' -p117672 -S'shutdown(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Reason}) $5' -p117673 -tp117674 -a(S'start_timer/1' -p117675 -S'start_timer(${1:Timeout}) $2' -p117676 -tp117677 -asS'wxFontDialog' -p117678 -(lp117679 -(S'cacheBestSize/2' -p117680 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p117681 -tp117682 -a(S'captureMouse/1' -p117683 -S'captureMouse(${1:This}) $2' -p117684 -tp117685 -a(S'center/1' -p117686 -S'center(${1:This}) $2' -p117687 -tp117688 -a(S'center/2' -p117689 -S'center(${1:This}, ${2:Options}) $3' -p117690 -tp117691 -a(S'centerOnParent/1' -p117692 -S'centerOnParent(${1:This}) $2' -p117693 -tp117694 -a(S'centerOnParent/2' -p117695 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p117696 -tp117697 -a(S'centerOnScreen/1' -p117698 -S'centerOnScreen(${1:This}) $2' -p117699 -tp117700 -a(S'centerOnScreen/2' -p117701 -S'centerOnScreen(${1:This}, ${2:Options}) $3' -p117702 -tp117703 -a(S'centre/1' -p117704 -S'centre(${1:This}) $2' -p117705 -tp117706 -a(S'centre/2' -p117707 -S'centre(${1:This}, ${2:Options}) $3' -p117708 -tp117709 -a(S'centreOnParent/1' -p117710 -S'centreOnParent(${1:This}) $2' -p117711 -tp117712 -a(S'centreOnParent/2' -p117713 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p117714 -tp117715 -a(S'centreOnScreen/1' -p117716 -S'centreOnScreen(${1:This}) $2' -p117717 -tp117718 -a(S'centreOnScreen/2' -p117719 -S'centreOnScreen(${1:This}, ${2:Options}) $3' -p117720 -tp117721 -a(S'clearBackground/1' -p117722 -S'clearBackground(${1:This}) $2' -p117723 -tp117724 -a(S'clientToScreen/2' -p117725 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p117726 -tp117727 -a(S'clientToScreen/3' -p117728 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p117729 -tp117730 -a(S'close/1' -p117731 -S'close(${1:This}) $2' -p117732 -tp117733 -a(S'close/2' -p117734 -S'close(${1:This}, ${2:Options}) $3' -p117735 -tp117736 -a(S'connect/2' -p117737 -S'connect(${1:This}, ${2:EventType}) $3' -p117738 -tp117739 -a(S'connect/3' -p117740 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p117741 -tp117742 -a(S'convertDialogToPixels/2' -p117743 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p117744 -tp117745 -a(S'convertPixelsToDialog/2' -p117746 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p117747 -tp117748 -a(S'create/3' -p117749 -S'create(${1:This}, ${2:Parent}, ${3:Data}) $4' -p117750 -tp117751 -a(S'createButtonSizer/2' -p117752 -S'createButtonSizer(${1:This}, ${2:Flags}) $3' -p117753 -tp117754 -a(S'createStdDialogButtonSizer/2' -p117755 -S'createStdDialogButtonSizer(${1:This}, ${2:Flags}) $3' -p117756 -tp117757 -a(S'destroy/1' -p117758 -S'destroy(${1:This}) $2' -p117759 -tp117760 -a(S'destroyChildren/1' -p117761 -S'destroyChildren(${1:This}) $2' -p117762 -tp117763 -a(S'disable/1' -p117764 -S'disable(${1:This}) $2' -p117765 -tp117766 -a(S'disconnect/1' -p117767 -S'disconnect(${1:This}) $2' -p117768 -tp117769 -a(S'disconnect/2' -p117770 -S'disconnect(${1:This}, ${2:EventType}) $3' -p117771 -tp117772 -a(S'disconnect/3' -p117773 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p117774 -tp117775 -a(S'enable/1' -p117776 -S'enable(${1:This}) $2' -p117777 -tp117778 -a(S'enable/2' -p117779 -S'enable(${1:This}, ${2:Options}) $3' -p117780 -tp117781 -a(S'endModal/2' -p117782 -S'endModal(${1:This}, ${2:RetCode}) $3' -p117783 -tp117784 -a(S'findWindow/2' -p117785 -S'findWindow(${1:This}, ${2:Winid}) $3' -p117786 -tp117787 -a(S'fit/1' -p117788 -S'fit(${1:This}) $2' -p117789 -tp117790 -a(S'fitInside/1' -p117791 -S'fitInside(${1:This}) $2' -p117792 -tp117793 -a(S'freeze/1' -p117794 -S'freeze(${1:This}) $2' -p117795 -tp117796 -a(S'getAcceleratorTable/1' -p117797 -S'getAcceleratorTable(${1:This}) $2' -p117798 -tp117799 -a(S'getAffirmativeId/1' -p117800 -S'getAffirmativeId(${1:This}) $2' -p117801 -tp117802 -a(S'getBackgroundColour/1' -p117803 -S'getBackgroundColour(${1:This}) $2' -p117804 -tp117805 -a(S'getBackgroundStyle/1' -p117806 -S'getBackgroundStyle(${1:This}) $2' -p117807 -tp117808 -a(S'getBestSize/1' -p117809 -S'getBestSize(${1:This}) $2' -p117810 -tp117811 -a(S'getCaret/1' -p117812 -S'getCaret(${1:This}) $2' -p117813 -tp117814 -a(S'getCharHeight/1' -p117815 -S'getCharHeight(${1:This}) $2' -p117816 -tp117817 -a(S'getCharWidth/1' -p117818 -S'getCharWidth(${1:This}) $2' -p117819 -tp117820 -a(S'getChildren/1' -p117821 -S'getChildren(${1:This}) $2' -p117822 -tp117823 -a(S'getClientSize/1' -p117824 -S'getClientSize(${1:This}) $2' -p117825 -tp117826 -a(S'getContainingSizer/1' -p117827 -S'getContainingSizer(${1:This}) $2' -p117828 -tp117829 -a(S'getCursor/1' -p117830 -S'getCursor(${1:This}) $2' -p117831 -tp117832 -a(S'getDropTarget/1' -p117833 -S'getDropTarget(${1:This}) $2' -p117834 -tp117835 -a(S'getEventHandler/1' -p117836 -S'getEventHandler(${1:This}) $2' -p117837 -tp117838 -a(S'getExtraStyle/1' -p117839 -S'getExtraStyle(${1:This}) $2' -p117840 -tp117841 -a(S'getFont/1' -p117842 -S'getFont(${1:This}) $2' -p117843 -tp117844 -a(S'getFontData/1' -p117845 -S'getFontData(${1:This}) $2' -p117846 -tp117847 -a(S'getForegroundColour/1' -p117848 -S'getForegroundColour(${1:This}) $2' -p117849 -tp117850 -a(S'getGrandParent/1' -p117851 -S'getGrandParent(${1:This}) $2' -p117852 -tp117853 -a(S'getHandle/1' -p117854 -S'getHandle(${1:This}) $2' -p117855 -tp117856 -a(S'getHelpText/1' -p117857 -S'getHelpText(${1:This}) $2' -p117858 -tp117859 -a(S'getIcon/1' -p117860 -S'getIcon(${1:This}) $2' -p117861 -tp117862 -a(S'getIcons/1' -p117863 -S'getIcons(${1:This}) $2' -p117864 -tp117865 -a(S'getId/1' -p117866 -S'getId(${1:This}) $2' -p117867 -tp117868 -a(S'getLabel/1' -p117869 -S'getLabel(${1:This}) $2' -p117870 -tp117871 -a(S'getMaxSize/1' -p117872 -S'getMaxSize(${1:This}) $2' -p117873 -tp117874 -a(S'getMinSize/1' -p117875 -S'getMinSize(${1:This}) $2' -p117876 -tp117877 -a(S'getName/1' -p117878 -S'getName(${1:This}) $2' -p117879 -tp117880 -a(S'getParent/1' -p117881 -S'getParent(${1:This}) $2' -p117882 -tp117883 -a(S'getPosition/1' -p117884 -S'getPosition(${1:This}) $2' -p117885 -tp117886 -a(S'getRect/1' -p117887 -S'getRect(${1:This}) $2' -p117888 -tp117889 -a(S'getReturnCode/1' -p117890 -S'getReturnCode(${1:This}) $2' -p117891 -tp117892 -a(S'getScreenPosition/1' -p117893 -S'getScreenPosition(${1:This}) $2' -p117894 -tp117895 -a(S'getScreenRect/1' -p117896 -S'getScreenRect(${1:This}) $2' -p117897 -tp117898 -a(S'getScrollPos/2' -p117899 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p117900 -tp117901 -a(S'getScrollRange/2' -p117902 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p117903 -tp117904 -a(S'getScrollThumb/2' -p117905 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p117906 -tp117907 -a(S'getSize/1' -p117908 -S'getSize(${1:This}) $2' -p117909 -tp117910 -a(S'getSizer/1' -p117911 -S'getSizer(${1:This}) $2' -p117912 -tp117913 -a(S'getTextExtent/2' -p117914 -S'getTextExtent(${1:This}, ${2:String}) $3' -p117915 -tp117916 -a(S'getTextExtent/3' -p117917 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p117918 -tp117919 -a(S'getTitle/1' -p117920 -S'getTitle(${1:This}) $2' -p117921 -tp117922 -a(S'getToolTip/1' -p117923 -S'getToolTip(${1:This}) $2' -p117924 -tp117925 -a(S'getUpdateRegion/1' -p117926 -S'getUpdateRegion(${1:This}) $2' -p117927 -tp117928 -a(S'getVirtualSize/1' -p117929 -S'getVirtualSize(${1:This}) $2' -p117930 -tp117931 -a(S'getWindowStyleFlag/1' -p117932 -S'getWindowStyleFlag(${1:This}) $2' -p117933 -tp117934 -a(S'getWindowVariant/1' -p117935 -S'getWindowVariant(${1:This}) $2' -p117936 -tp117937 -a(S'hasCapture/1' -p117938 -S'hasCapture(${1:This}) $2' -p117939 -tp117940 -a(S'hasScrollbar/2' -p117941 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p117942 -tp117943 -a(S'hasTransparentBackground/1' -p117944 -S'hasTransparentBackground(${1:This}) $2' -p117945 -tp117946 -a(S'hide/1' -p117947 -S'hide(${1:This}) $2' -p117948 -tp117949 -a(S'iconize/1' -p117950 -S'iconize(${1:This}) $2' -p117951 -tp117952 -a(S'iconize/2' -p117953 -S'iconize(${1:This}, ${2:Options}) $3' -p117954 -tp117955 -a(S'inheritAttributes/1' -p117956 -S'inheritAttributes(${1:This}) $2' -p117957 -tp117958 -a(S'initDialog/1' -p117959 -S'initDialog(${1:This}) $2' -p117960 -tp117961 -a(S'invalidateBestSize/1' -p117962 -S'invalidateBestSize(${1:This}) $2' -p117963 -tp117964 -a(S'isActive/1' -p117965 -S'isActive(${1:This}) $2' -p117966 -tp117967 -a(S'isEnabled/1' -p117968 -S'isEnabled(${1:This}) $2' -p117969 -tp117970 -a(S'isExposed/2' -p117971 -S'isExposed(${1:This}, ${2:Pt}) $3' -p117972 -tp117973 -a(S'isExposed/3' -p117974 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p117975 -tp117976 -a(S'isExposed/5' -p117977 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p117978 -tp117979 -a(S'isFullScreen/1' -p117980 -S'isFullScreen(${1:This}) $2' -p117981 -tp117982 -a(S'isIconized/1' -p117983 -S'isIconized(${1:This}) $2' -p117984 -tp117985 -a(S'isMaximized/1' -p117986 -S'isMaximized(${1:This}) $2' -p117987 -tp117988 -a(S'isModal/1' -p117989 -S'isModal(${1:This}) $2' -p117990 -tp117991 -a(S'isRetained/1' -p117992 -S'isRetained(${1:This}) $2' -p117993 -tp117994 -a(S'isShown/1' -p117995 -S'isShown(${1:This}) $2' -p117996 -tp117997 -a(S'isTopLevel/1' -p117998 -S'isTopLevel(${1:This}) $2' -p117999 -tp118000 -a(S'layout/1' -p118001 -S'layout(${1:This}) $2' -p118002 -tp118003 -a(S'lineDown/1' -p118004 -S'lineDown(${1:This}) $2' -p118005 -tp118006 -a(S'lineUp/1' -p118007 -S'lineUp(${1:This}) $2' -p118008 -tp118009 -a(S'lower/1' -p118010 -S'lower(${1:This}) $2' -p118011 -tp118012 -a(S'makeModal/1' -p118013 -S'makeModal(${1:This}) $2' -p118014 -tp118015 -a(S'makeModal/2' -p118016 -S'makeModal(${1:This}, ${2:Options}) $3' -p118017 -tp118018 -a(S'maximize/1' -p118019 -S'maximize(${1:This}) $2' -p118020 -tp118021 -a(S'maximize/2' -p118022 -S'maximize(${1:This}, ${2:Options}) $3' -p118023 -tp118024 -a(S'move/2' -p118025 -S'move(${1:This}, ${2:Pt}) $3' -p118026 -tp118027 -a(S'move/3' -p118028 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p118029 -tp118030 -a(S'move/4' -p118031 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p118032 -tp118033 -a(S'moveAfterInTabOrder/2' -p118034 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p118035 -tp118036 -a(S'moveBeforeInTabOrder/2' -p118037 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p118038 -tp118039 -a(S'navigate/1' -p118040 -S'navigate(${1:This}) $2' -p118041 -tp118042 -a(S'navigate/2' -p118043 -S'navigate(${1:This}, ${2:Options}) $3' -p118044 -tp118045 -a(S'new/0' -p118046 -S'new() $1' -p118047 -tp118048 -a(S'new/2' -p118049 -S'new(${1:Parent}, ${2:Data}) $3' -p118050 -tp118051 -a(S'pageDown/1' -p118052 -S'pageDown(${1:This}) $2' -p118053 -tp118054 -a(S'pageUp/1' -p118055 -S'pageUp(${1:This}) $2' -p118056 -tp118057 -a(S'parent_class/1' -p118058 -S'parent_class(${1:Param1}) $2' -p118059 -tp118060 -a(S'popEventHandler/1' -p118061 -S'popEventHandler(${1:This}) $2' -p118062 -tp118063 -a(S'popEventHandler/2' -p118064 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p118065 -tp118066 -a(S'popupMenu/2' -p118067 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p118068 -tp118069 -a(S'popupMenu/3' -p118070 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p118071 -tp118072 -a(S'popupMenu/4' -p118073 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p118074 -tp118075 -a(S'raise/1' -p118076 -S'raise(${1:This}) $2' -p118077 -tp118078 -a(S'refresh/1' -p118079 -S'refresh(${1:This}) $2' -p118080 -tp118081 -a(S'refresh/2' -p118082 -S'refresh(${1:This}, ${2:Options}) $3' -p118083 -tp118084 -a(S'refreshRect/2' -p118085 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p118086 -tp118087 -a(S'refreshRect/3' -p118088 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p118089 -tp118090 -a(S'releaseMouse/1' -p118091 -S'releaseMouse(${1:This}) $2' -p118092 -tp118093 -a(S'removeChild/2' -p118094 -S'removeChild(${1:This}, ${2:Child}) $3' -p118095 -tp118096 -a(S'reparent/2' -p118097 -S'reparent(${1:This}, ${2:NewParent}) $3' -p118098 -tp118099 -a(S'requestUserAttention/1' -p118100 -S'requestUserAttention(${1:This}) $2' -p118101 -tp118102 -a(S'requestUserAttention/2' -p118103 -S'requestUserAttention(${1:This}, ${2:Options}) $3' -p118104 -tp118105 -a(S'screenToClient/1' -p118106 -S'screenToClient(${1:This}) $2' -p118107 -tp118108 -a(S'screenToClient/2' -p118109 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p118110 -tp118111 -a(S'scrollLines/2' -p118112 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p118113 -tp118114 -a(S'scrollPages/2' -p118115 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p118116 -tp118117 -a(S'scrollWindow/3' -p118118 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p118119 -tp118120 -a(S'scrollWindow/4' -p118121 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p118122 -tp118123 -a(S'setAcceleratorTable/2' -p118124 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p118125 -tp118126 -a(S'setAffirmativeId/2' -p118127 -S'setAffirmativeId(${1:This}, ${2:AffirmativeId}) $3' -p118128 -tp118129 -a(S'setAutoLayout/2' -p118130 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p118131 -tp118132 -a(S'setBackgroundColour/2' -p118133 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p118134 -tp118135 -a(S'setBackgroundStyle/2' -p118136 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p118137 -tp118138 -a(S'setCaret/2' -p118139 -S'setCaret(${1:This}, ${2:Caret}) $3' -p118140 -tp118141 -a(S'setClientSize/2' -p118142 -S'setClientSize(${1:This}, ${2:Size}) $3' -p118143 -tp118144 -a(S'setClientSize/3' -p118145 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p118146 -tp118147 -a(S'setContainingSizer/2' -p118148 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p118149 -tp118150 -a(S'setCursor/2' -p118151 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p118152 -tp118153 -a(S'setDropTarget/2' -p118154 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p118155 -tp118156 -a(S'setExtraStyle/2' -p118157 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p118158 -tp118159 -a(S'setFocus/1' -p118160 -S'setFocus(${1:This}) $2' -p118161 -tp118162 -a(S'setFocusFromKbd/1' -p118163 -S'setFocusFromKbd(${1:This}) $2' -p118164 -tp118165 -a(S'setFont/2' -p118166 -S'setFont(${1:This}, ${2:Font}) $3' -p118167 -tp118168 -a(S'setForegroundColour/2' -p118169 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p118170 -tp118171 -a(S'setHelpText/2' -p118172 -S'setHelpText(${1:This}, ${2:Text}) $3' -p118173 -tp118174 -a(S'setIcon/2' -p118175 -S'setIcon(${1:This}, ${2:Icon}) $3' -p118176 -tp118177 -a(S'setIcons/2' -p118178 -S'setIcons(${1:This}, ${2:Icons}) $3' -p118179 -tp118180 -a(S'setId/2' -p118181 -S'setId(${1:This}, ${2:Winid}) $3' -p118182 -tp118183 -a(S'setLabel/2' -p118184 -S'setLabel(${1:This}, ${2:Label}) $3' -p118185 -tp118186 -a(S'setMaxSize/2' -p118187 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p118188 -tp118189 -a(S'setMinSize/2' -p118190 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p118191 -tp118192 -a(S'setName/2' -p118193 -S'setName(${1:This}, ${2:Name}) $3' -p118194 -tp118195 -a(S'setOwnBackgroundColour/2' -p118196 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p118197 -tp118198 -a(S'setOwnFont/2' -p118199 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p118200 -tp118201 -a(S'setOwnForegroundColour/2' -p118202 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p118203 -tp118204 -a(S'setPalette/2' -p118205 -S'setPalette(${1:This}, ${2:Pal}) $3' -p118206 -tp118207 -a(S'setReturnCode/2' -p118208 -S'setReturnCode(${1:This}, ${2:ReturnCode}) $3' -p118209 -tp118210 -a(S'setScrollPos/3' -p118211 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p118212 -tp118213 -a(S'setScrollPos/4' -p118214 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p118215 -tp118216 -a(S'setScrollbar/5' -p118217 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p118218 -tp118219 -a(S'setScrollbar/6' -p118220 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p118221 -tp118222 -a(S'setShape/2' -p118223 -S'setShape(${1:This}, ${2:Region}) $3' -p118224 -tp118225 -a(S'setSize/2' -p118226 -S'setSize(${1:This}, ${2:Rect}) $3' -p118227 -tp118228 -a(S'setSize/3' -p118229 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p118230 -tp118231 -a(S'setSize/5' -p118232 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p118233 -tp118234 -a(S'setSize/6' -p118235 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p118236 -tp118237 -a(S'setSizeHints/2' -p118238 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p118239 -tp118240 -a(S'setSizeHints/3' -p118241 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p118242 -tp118243 -a(S'setSizeHints/4' -p118244 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p118245 -tp118246 -a(S'setSizer/2' -p118247 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p118248 -tp118249 -a(S'setSizer/3' -p118250 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p118251 -tp118252 -a(S'setSizerAndFit/2' -p118253 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p118254 -tp118255 -a(S'setSizerAndFit/3' -p118256 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p118257 -tp118258 -a(S'setThemeEnabled/2' -p118259 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p118260 -tp118261 -a(S'setTitle/2' -p118262 -S'setTitle(${1:This}, ${2:Title}) $3' -p118263 -tp118264 -a(S'setToolTip/2' -p118265 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p118266 -tp118267 -a(S'setVirtualSize/2' -p118268 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p118269 -tp118270 -a(S'setVirtualSize/3' -p118271 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p118272 -tp118273 -a(S'setVirtualSizeHints/2' -p118274 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p118275 -tp118276 -a(S'setVirtualSizeHints/3' -p118277 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p118278 -tp118279 -a(S'setVirtualSizeHints/4' -p118280 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p118281 -tp118282 -a(S'setWindowStyle/2' -p118283 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p118284 -tp118285 -a(S'setWindowStyleFlag/2' -p118286 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p118287 -tp118288 -a(S'setWindowVariant/2' -p118289 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p118290 -tp118291 -a(S'shouldInheritColours/1' -p118292 -S'shouldInheritColours(${1:This}) $2' -p118293 -tp118294 -a(S'show/1' -p118295 -S'show(${1:This}) $2' -p118296 -tp118297 -a(S'show/2' -p118298 -S'show(${1:This}, ${2:Options}) $3' -p118299 -tp118300 -a(S'showFullScreen/2' -p118301 -S'showFullScreen(${1:This}, ${2:Show}) $3' -p118302 -tp118303 -a(S'showFullScreen/3' -p118304 -S'showFullScreen(${1:This}, ${2:Show}, ${3:Options}) $4' -p118305 -tp118306 -a(S'showModal/1' -p118307 -S'showModal(${1:This}) $2' -p118308 -tp118309 -a(S'thaw/1' -p118310 -S'thaw(${1:This}) $2' -p118311 -tp118312 -a(S'transferDataFromWindow/1' -p118313 -S'transferDataFromWindow(${1:This}) $2' -p118314 -tp118315 -a(S'transferDataToWindow/1' -p118316 -S'transferDataToWindow(${1:This}) $2' -p118317 -tp118318 -a(S'update/1' -p118319 -S'update(${1:This}) $2' -p118320 -tp118321 -a(S'updateWindowUI/1' -p118322 -S'updateWindowUI(${1:This}) $2' -p118323 -tp118324 -a(S'updateWindowUI/2' -p118325 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p118326 -tp118327 -a(S'validate/1' -p118328 -S'validate(${1:This}) $2' -p118329 -tp118330 -a(S'warpPointer/3' -p118331 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p118332 -tp118333 -asS'eunit_server' -p118334 -(lp118335 -(S'main/1' -p118336 -S'main(${1:St}) $2' -p118337 -tp118338 -a(S'start/1' -p118339 -S'start(${1:Server}) $2' -p118340 -tp118341 -a(S'start_test/4' -p118342 -S'start_test(${1:Server}, ${2:Super}, ${3:T}, ${4:Options}) $5' -p118343 -tp118344 -a(S'stop/1' -p118345 -S'stop(${1:Server}) $2' -p118346 -tp118347 -a(S'watch/3' -p118348 -S'watch(${1:Server}, ${2:Module}, ${3:Opts}) $4' -p118349 -tp118350 -a(S'watch_path/3' -p118351 -S'watch_path(${1:Server}, ${2:Path}, ${3:Opts}) $4' -p118352 -tp118353 -a(S'watch_regexp/3' -p118354 -S'watch_regexp(${1:Server}, ${2:Regex}, ${3:Opts}) $4' -p118355 -tp118356 -asS'CosNotifyChannelAdmin_EventChannel' -p118357 -(lp118358 -(S"'_get_MyFactory'/1" -p118359 -S"'_get_MyFactory'(${1:OE_THIS}) $2" -p118360 -tp118361 -a(S"'_get_MyFactory'/2" -p118362 -S"'_get_MyFactory'(${1:OE_THIS}, ${2:OE_Options}) $3" -p118363 -tp118364 -a(S"'_get_default_consumer_admin'/1" -p118365 -S"'_get_default_consumer_admin'(${1:OE_THIS}) $2" -p118366 -tp118367 -a(S"'_get_default_consumer_admin'/2" -p118368 -S"'_get_default_consumer_admin'(${1:OE_THIS}, ${2:OE_Options}) $3" -p118369 -tp118370 -a(S"'_get_default_filter_factory'/1" -p118371 -S"'_get_default_filter_factory'(${1:OE_THIS}) $2" -p118372 -tp118373 -a(S"'_get_default_filter_factory'/2" -p118374 -S"'_get_default_filter_factory'(${1:OE_THIS}, ${2:OE_Options}) $3" -p118375 -tp118376 -a(S"'_get_default_supplier_admin'/1" -p118377 -S"'_get_default_supplier_admin'(${1:OE_THIS}) $2" -p118378 -tp118379 -a(S"'_get_default_supplier_admin'/2" -p118380 -S"'_get_default_supplier_admin'(${1:OE_THIS}, ${2:OE_Options}) $3" -p118381 -tp118382 -a(S'callAny/3' -p118383 -S'callAny(${1:OE_THIS}, ${2:Event}, ${3:Stat}) $4' -p118384 -tp118385 -a(S'callAny/4' -p118386 -S'callAny(${1:OE_THIS}, ${2:OE_Options}, ${3:Event}, ${4:Stat}) $5' -p118387 -tp118388 -a(S'callSeq/3' -p118389 -S'callSeq(${1:OE_THIS}, ${2:Events}, ${3:Stat}) $4' -p118390 -tp118391 -a(S'callSeq/4' -p118392 -S'callSeq(${1:OE_THIS}, ${2:OE_Options}, ${3:Events}, ${4:Stat}) $5' -p118393 -tp118394 -a(S'code_change/3' -p118395 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p118396 -tp118397 -a(S'destroy/1' -p118398 -S'destroy(${1:OE_THIS}) $2' -p118399 -tp118400 -a(S'destroy/2' -p118401 -S'destroy(${1:OE_THIS}, ${2:OE_Options}) $3' -p118402 -tp118403 -a(S'for_consumers/1' -p118404 -S'for_consumers(${1:OE_THIS}) $2' -p118405 -tp118406 -a(S'for_consumers/2' -p118407 -S'for_consumers(${1:OE_THIS}, ${2:Op}) $3' -p118408 -tp118409 -a(S'for_suppliers/1' -p118410 -S'for_suppliers(${1:OE_THIS}) $2' -p118411 -tp118412 -a(S'for_suppliers/2' -p118413 -S'for_suppliers(${1:OE_THIS}, ${2:Op}) $3' -p118414 -tp118415 -a(S'get_admin/1' -p118416 -S'get_admin(${1:OE_THIS}) $2' -p118417 -tp118418 -a(S'get_admin/2' -p118419 -S'get_admin(${1:OE_THIS}, ${2:OE_Options}) $3' -p118420 -tp118421 -a(S'get_all_consumeradmins/1' -p118422 -S'get_all_consumeradmins(${1:OE_THIS}) $2' -p118423 -tp118424 -a(S'get_all_consumeradmins/2' -p118425 -S'get_all_consumeradmins(${1:OE_THIS}, ${2:OE_Options}) $3' -p118426 -tp118427 -a(S'get_all_supplieradmins/1' -p118428 -S'get_all_supplieradmins(${1:OE_THIS}) $2' -p118429 -tp118430 -a(S'get_all_supplieradmins/2' -p118431 -S'get_all_supplieradmins(${1:OE_THIS}, ${2:OE_Options}) $3' -p118432 -tp118433 -a(S'get_consumeradmin/2' -p118434 -S'get_consumeradmin(${1:OE_THIS}, ${2:Id}) $3' -p118435 -tp118436 -a(S'get_consumeradmin/3' -p118437 -S'get_consumeradmin(${1:OE_THIS}, ${2:OE_Options}, ${3:Id}) $4' -p118438 -tp118439 -a(S'get_qos/1' -p118440 -S'get_qos(${1:OE_THIS}) $2' -p118441 -tp118442 -a(S'get_qos/2' -p118443 -S'get_qos(${1:OE_THIS}, ${2:OE_Options}) $3' -p118444 -tp118445 -a(S'get_supplieradmin/2' -p118446 -S'get_supplieradmin(${1:OE_THIS}, ${2:Id}) $3' -p118447 -tp118448 -a(S'get_supplieradmin/3' -p118449 -S'get_supplieradmin(${1:OE_THIS}, ${2:OE_Options}, ${3:Id}) $4' -p118450 -tp118451 -a(S'handle_call/3' -p118452 -S'handle_call(${1:Param1}, ${2:OE_From}, ${3:OE_State}) $4' -p118453 -tp118454 -a(S'handle_cast/2' -p118455 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p118456 -tp118457 -a(S'handle_info/2' -p118458 -S'handle_info(${1:Info}, ${2:State}) $3' -p118459 -tp118460 -a(S'init/1' -p118461 -S'init(${1:Env}) $2' -p118462 -tp118463 -a(S'new_for_consumers/2' -p118464 -S'new_for_consumers(${1:OE_THIS}, ${2:Op}) $3' -p118465 -tp118466 -a(S'new_for_consumers/3' -p118467 -S'new_for_consumers(${1:OE_THIS}, ${2:OE_Options}, ${3:Op}) $4' -p118468 -tp118469 -a(S'new_for_suppliers/2' -p118470 -S'new_for_suppliers(${1:OE_THIS}, ${2:Op}) $3' -p118471 -tp118472 -a(S'new_for_suppliers/3' -p118473 -S'new_for_suppliers(${1:OE_THIS}, ${2:OE_Options}, ${3:Op}) $4' -p118474 -tp118475 -a(S'oe_create/0' -p118476 -S'oe_create() $1' -p118477 -tp118478 -a(S'oe_create/1' -p118479 -S'oe_create(${1:Env}) $2' -p118480 -tp118481 -a(S'oe_create/2' -p118482 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p118483 -tp118484 -a(S'oe_create_link/0' -p118485 -S'oe_create_link() $1' -p118486 -tp118487 -a(S'oe_create_link/1' -p118488 -S'oe_create_link(${1:Env}) $2' -p118489 -tp118490 -a(S'oe_create_link/2' -p118491 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p118492 -tp118493 -a(S'oe_get_interface/0' -p118494 -S'oe_get_interface() $1' -p118495 -tp118496 -a(S'oe_is_a/1' -p118497 -S'oe_is_a(${1:Param1}) $2' -p118498 -tp118499 -a(S'oe_tc/1' -p118500 -S'oe_tc(${1:Param1}) $2' -p118501 -tp118502 -a(S'set_admin/2' -p118503 -S'set_admin(${1:OE_THIS}, ${2:Admin}) $3' -p118504 -tp118505 -a(S'set_admin/3' -p118506 -S'set_admin(${1:OE_THIS}, ${2:OE_Options}, ${3:Admin}) $4' -p118507 -tp118508 -a(S'set_qos/2' -p118509 -S'set_qos(${1:OE_THIS}, ${2:Qos}) $3' -p118510 -tp118511 -a(S'set_qos/3' -p118512 -S'set_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Qos}) $4' -p118513 -tp118514 -a(S'terminate/2' -p118515 -S'terminate(${1:Reason}, ${2:State}) $3' -p118516 -tp118517 -a(S'typeID/0' -p118518 -S'typeID() $1' -p118519 -tp118520 -a(S'validate_qos/2' -p118521 -S'validate_qos(${1:OE_THIS}, ${2:Required_qos}) $3' -p118522 -tp118523 -a(S'validate_qos/3' -p118524 -S'validate_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Required_qos}) $4' -p118525 -tp118526 -asS'CosNotification_PropertyErrorSeq' -p118527 -(lp118528 -(S'id/0' -p118529 -S'id() $1' -p118530 -tp118531 -a(S'name/0' -p118532 -S'name() $1' -p118533 -tp118534 -a(S'tc/0' -p118535 -S'tc() $1' -p118536 -tp118537 -asS'target_system' -p118538 -(lp118539 -(S'create/1' -p118540 -S'create(${1:RelFileName}) $2' -p118541 -tp118542 -a(S'create/2' -p118543 -S'create(${1:RelFileName}, ${2:SystoolsOpts}) $3' -p118544 -tp118545 -a(S'install/2' -p118546 -S'install(${1:RelFileName}, ${2:RootDir}) $3' -p118547 -tp118548 -asS'CosFileTransfer_IllegalOperationException' -p118549 -(lp118550 -(S'id/0' -p118551 -S'id() $1' -p118552 -tp118553 -a(S'name/0' -p118554 -S'name() $1' -p118555 -tp118556 -a(S'tc/0' -p118557 -S'tc() $1' -p118558 -tp118559 -asS'wxFindReplaceDialog' -p118560 -(lp118561 -(S'cacheBestSize/2' -p118562 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p118563 -tp118564 -a(S'captureMouse/1' -p118565 -S'captureMouse(${1:This}) $2' -p118566 -tp118567 -a(S'center/1' -p118568 -S'center(${1:This}) $2' -p118569 -tp118570 -a(S'center/2' -p118571 -S'center(${1:This}, ${2:Options}) $3' -p118572 -tp118573 -a(S'centerOnParent/1' -p118574 -S'centerOnParent(${1:This}) $2' -p118575 -tp118576 -a(S'centerOnParent/2' -p118577 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p118578 -tp118579 -a(S'centerOnScreen/1' -p118580 -S'centerOnScreen(${1:This}) $2' -p118581 -tp118582 -a(S'centerOnScreen/2' -p118583 -S'centerOnScreen(${1:This}, ${2:Options}) $3' -p118584 -tp118585 -a(S'centre/1' -p118586 -S'centre(${1:This}) $2' -p118587 -tp118588 -a(S'centre/2' -p118589 -S'centre(${1:This}, ${2:Options}) $3' -p118590 -tp118591 -a(S'centreOnParent/1' -p118592 -S'centreOnParent(${1:This}) $2' -p118593 -tp118594 -a(S'centreOnParent/2' -p118595 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p118596 -tp118597 -a(S'centreOnScreen/1' -p118598 -S'centreOnScreen(${1:This}) $2' -p118599 -tp118600 -a(S'centreOnScreen/2' -p118601 -S'centreOnScreen(${1:This}, ${2:Options}) $3' -p118602 -tp118603 -a(S'clearBackground/1' -p118604 -S'clearBackground(${1:This}) $2' -p118605 -tp118606 -a(S'clientToScreen/2' -p118607 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p118608 -tp118609 -a(S'clientToScreen/3' -p118610 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p118611 -tp118612 -a(S'close/1' -p118613 -S'close(${1:This}) $2' -p118614 -tp118615 -a(S'close/2' -p118616 -S'close(${1:This}, ${2:Options}) $3' -p118617 -tp118618 -a(S'connect/2' -p118619 -S'connect(${1:This}, ${2:EventType}) $3' -p118620 -tp118621 -a(S'connect/3' -p118622 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p118623 -tp118624 -a(S'convertDialogToPixels/2' -p118625 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p118626 -tp118627 -a(S'convertPixelsToDialog/2' -p118628 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p118629 -tp118630 -a(S'create/4' -p118631 -S'create(${1:This}, ${2:Parent}, ${3:Data}, ${4:Title}) $5' -p118632 -tp118633 -a(S'create/5' -p118634 -S'create(${1:This}, ${2:Parent}, ${3:Data}, ${4:Title}, ${5:Param5}) $6' -p118635 -tp118636 -a(S'createButtonSizer/2' -p118637 -S'createButtonSizer(${1:This}, ${2:Flags}) $3' -p118638 -tp118639 -a(S'createStdDialogButtonSizer/2' -p118640 -S'createStdDialogButtonSizer(${1:This}, ${2:Flags}) $3' -p118641 -tp118642 -a(S'destroy/1' -p118643 -S'destroy(${1:This}) $2' -p118644 -tp118645 -a(S'destroyChildren/1' -p118646 -S'destroyChildren(${1:This}) $2' -p118647 -tp118648 -a(S'disable/1' -p118649 -S'disable(${1:This}) $2' -p118650 -tp118651 -a(S'disconnect/1' -p118652 -S'disconnect(${1:This}) $2' -p118653 -tp118654 -a(S'disconnect/2' -p118655 -S'disconnect(${1:This}, ${2:EventType}) $3' -p118656 -tp118657 -a(S'disconnect/3' -p118658 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p118659 -tp118660 -a(S'enable/1' -p118661 -S'enable(${1:This}) $2' -p118662 -tp118663 -a(S'enable/2' -p118664 -S'enable(${1:This}, ${2:Options}) $3' -p118665 -tp118666 -a(S'endModal/2' -p118667 -S'endModal(${1:This}, ${2:RetCode}) $3' -p118668 -tp118669 -a(S'findWindow/2' -p118670 -S'findWindow(${1:This}, ${2:Winid}) $3' -p118671 -tp118672 -a(S'fit/1' -p118673 -S'fit(${1:This}) $2' -p118674 -tp118675 -a(S'fitInside/1' -p118676 -S'fitInside(${1:This}) $2' -p118677 -tp118678 -a(S'freeze/1' -p118679 -S'freeze(${1:This}) $2' -p118680 -tp118681 -a(S'getAcceleratorTable/1' -p118682 -S'getAcceleratorTable(${1:This}) $2' -p118683 -tp118684 -a(S'getAffirmativeId/1' -p118685 -S'getAffirmativeId(${1:This}) $2' -p118686 -tp118687 -a(S'getBackgroundColour/1' -p118688 -S'getBackgroundColour(${1:This}) $2' -p118689 -tp118690 -a(S'getBackgroundStyle/1' -p118691 -S'getBackgroundStyle(${1:This}) $2' -p118692 -tp118693 -a(S'getBestSize/1' -p118694 -S'getBestSize(${1:This}) $2' -p118695 -tp118696 -a(S'getCaret/1' -p118697 -S'getCaret(${1:This}) $2' -p118698 -tp118699 -a(S'getCharHeight/1' -p118700 -S'getCharHeight(${1:This}) $2' -p118701 -tp118702 -a(S'getCharWidth/1' -p118703 -S'getCharWidth(${1:This}) $2' -p118704 -tp118705 -a(S'getChildren/1' -p118706 -S'getChildren(${1:This}) $2' -p118707 -tp118708 -a(S'getClientSize/1' -p118709 -S'getClientSize(${1:This}) $2' -p118710 -tp118711 -a(S'getContainingSizer/1' -p118712 -S'getContainingSizer(${1:This}) $2' -p118713 -tp118714 -a(S'getCursor/1' -p118715 -S'getCursor(${1:This}) $2' -p118716 -tp118717 -a(S'getData/1' -p118718 -S'getData(${1:This}) $2' -p118719 -tp118720 -a(S'getDropTarget/1' -p118721 -S'getDropTarget(${1:This}) $2' -p118722 -tp118723 -a(S'getEventHandler/1' -p118724 -S'getEventHandler(${1:This}) $2' -p118725 -tp118726 -a(S'getExtraStyle/1' -p118727 -S'getExtraStyle(${1:This}) $2' -p118728 -tp118729 -a(S'getFont/1' -p118730 -S'getFont(${1:This}) $2' -p118731 -tp118732 -a(S'getForegroundColour/1' -p118733 -S'getForegroundColour(${1:This}) $2' -p118734 -tp118735 -a(S'getGrandParent/1' -p118736 -S'getGrandParent(${1:This}) $2' -p118737 -tp118738 -a(S'getHandle/1' -p118739 -S'getHandle(${1:This}) $2' -p118740 -tp118741 -a(S'getHelpText/1' -p118742 -S'getHelpText(${1:This}) $2' -p118743 -tp118744 -a(S'getIcon/1' -p118745 -S'getIcon(${1:This}) $2' -p118746 -tp118747 -a(S'getIcons/1' -p118748 -S'getIcons(${1:This}) $2' -p118749 -tp118750 -a(S'getId/1' -p118751 -S'getId(${1:This}) $2' -p118752 -tp118753 -a(S'getLabel/1' -p118754 -S'getLabel(${1:This}) $2' -p118755 -tp118756 -a(S'getMaxSize/1' -p118757 -S'getMaxSize(${1:This}) $2' -p118758 -tp118759 -a(S'getMinSize/1' -p118760 -S'getMinSize(${1:This}) $2' -p118761 -tp118762 -a(S'getName/1' -p118763 -S'getName(${1:This}) $2' -p118764 -tp118765 -a(S'getParent/1' -p118766 -S'getParent(${1:This}) $2' -p118767 -tp118768 -a(S'getPosition/1' -p118769 -S'getPosition(${1:This}) $2' -p118770 -tp118771 -a(S'getRect/1' -p118772 -S'getRect(${1:This}) $2' -p118773 -tp118774 -a(S'getReturnCode/1' -p118775 -S'getReturnCode(${1:This}) $2' -p118776 -tp118777 -a(S'getScreenPosition/1' -p118778 -S'getScreenPosition(${1:This}) $2' -p118779 -tp118780 -a(S'getScreenRect/1' -p118781 -S'getScreenRect(${1:This}) $2' -p118782 -tp118783 -a(S'getScrollPos/2' -p118784 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p118785 -tp118786 -a(S'getScrollRange/2' -p118787 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p118788 -tp118789 -a(S'getScrollThumb/2' -p118790 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p118791 -tp118792 -a(S'getSize/1' -p118793 -S'getSize(${1:This}) $2' -p118794 -tp118795 -a(S'getSizer/1' -p118796 -S'getSizer(${1:This}) $2' -p118797 -tp118798 -a(S'getTextExtent/2' -p118799 -S'getTextExtent(${1:This}, ${2:String}) $3' -p118800 -tp118801 -a(S'getTextExtent/3' -p118802 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p118803 -tp118804 -a(S'getTitle/1' -p118805 -S'getTitle(${1:This}) $2' -p118806 -tp118807 -a(S'getToolTip/1' -p118808 -S'getToolTip(${1:This}) $2' -p118809 -tp118810 -a(S'getUpdateRegion/1' -p118811 -S'getUpdateRegion(${1:This}) $2' -p118812 -tp118813 -a(S'getVirtualSize/1' -p118814 -S'getVirtualSize(${1:This}) $2' -p118815 -tp118816 -a(S'getWindowStyleFlag/1' -p118817 -S'getWindowStyleFlag(${1:This}) $2' -p118818 -tp118819 -a(S'getWindowVariant/1' -p118820 -S'getWindowVariant(${1:This}) $2' -p118821 -tp118822 -a(S'hasCapture/1' -p118823 -S'hasCapture(${1:This}) $2' -p118824 -tp118825 -a(S'hasScrollbar/2' -p118826 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p118827 -tp118828 -a(S'hasTransparentBackground/1' -p118829 -S'hasTransparentBackground(${1:This}) $2' -p118830 -tp118831 -a(S'hide/1' -p118832 -S'hide(${1:This}) $2' -p118833 -tp118834 -a(S'iconize/1' -p118835 -S'iconize(${1:This}) $2' -p118836 -tp118837 -a(S'iconize/2' -p118838 -S'iconize(${1:This}, ${2:Options}) $3' -p118839 -tp118840 -a(S'inheritAttributes/1' -p118841 -S'inheritAttributes(${1:This}) $2' -p118842 -tp118843 -a(S'initDialog/1' -p118844 -S'initDialog(${1:This}) $2' -p118845 -tp118846 -a(S'invalidateBestSize/1' -p118847 -S'invalidateBestSize(${1:This}) $2' -p118848 -tp118849 -a(S'isActive/1' -p118850 -S'isActive(${1:This}) $2' -p118851 -tp118852 -a(S'isEnabled/1' -p118853 -S'isEnabled(${1:This}) $2' -p118854 -tp118855 -a(S'isExposed/2' -p118856 -S'isExposed(${1:This}, ${2:Pt}) $3' -p118857 -tp118858 -a(S'isExposed/3' -p118859 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p118860 -tp118861 -a(S'isExposed/5' -p118862 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p118863 -tp118864 -a(S'isFullScreen/1' -p118865 -S'isFullScreen(${1:This}) $2' -p118866 -tp118867 -a(S'isIconized/1' -p118868 -S'isIconized(${1:This}) $2' -p118869 -tp118870 -a(S'isMaximized/1' -p118871 -S'isMaximized(${1:This}) $2' -p118872 -tp118873 -a(S'isModal/1' -p118874 -S'isModal(${1:This}) $2' -p118875 -tp118876 -a(S'isRetained/1' -p118877 -S'isRetained(${1:This}) $2' -p118878 -tp118879 -a(S'isShown/1' -p118880 -S'isShown(${1:This}) $2' -p118881 -tp118882 -a(S'isTopLevel/1' -p118883 -S'isTopLevel(${1:This}) $2' -p118884 -tp118885 -a(S'layout/1' -p118886 -S'layout(${1:This}) $2' -p118887 -tp118888 -a(S'lineDown/1' -p118889 -S'lineDown(${1:This}) $2' -p118890 -tp118891 -a(S'lineUp/1' -p118892 -S'lineUp(${1:This}) $2' -p118893 -tp118894 -a(S'lower/1' -p118895 -S'lower(${1:This}) $2' -p118896 -tp118897 -a(S'makeModal/1' -p118898 -S'makeModal(${1:This}) $2' -p118899 -tp118900 -a(S'makeModal/2' -p118901 -S'makeModal(${1:This}, ${2:Options}) $3' -p118902 -tp118903 -a(S'maximize/1' -p118904 -S'maximize(${1:This}) $2' -p118905 -tp118906 -a(S'maximize/2' -p118907 -S'maximize(${1:This}, ${2:Options}) $3' -p118908 -tp118909 -a(S'move/2' -p118910 -S'move(${1:This}, ${2:Pt}) $3' -p118911 -tp118912 -a(S'move/3' -p118913 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p118914 -tp118915 -a(S'move/4' -p118916 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p118917 -tp118918 -a(S'moveAfterInTabOrder/2' -p118919 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p118920 -tp118921 -a(S'moveBeforeInTabOrder/2' -p118922 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p118923 -tp118924 -a(S'navigate/1' -p118925 -S'navigate(${1:This}) $2' -p118926 -tp118927 -a(S'navigate/2' -p118928 -S'navigate(${1:This}, ${2:Options}) $3' -p118929 -tp118930 -a(S'new/0' -p118931 -S'new() $1' -p118932 -tp118933 -a(S'new/3' -p118934 -S'new(${1:Parent}, ${2:Data}, ${3:Title}) $4' -p118935 -tp118936 -a(S'new/4' -p118937 -S'new(${1:Parent}, ${2:Data}, ${3:Title}, ${4:Param4}) $5' -p118938 -tp118939 -a(S'pageDown/1' -p118940 -S'pageDown(${1:This}) $2' -p118941 -tp118942 -a(S'pageUp/1' -p118943 -S'pageUp(${1:This}) $2' -p118944 -tp118945 -a(S'parent_class/1' -p118946 -S'parent_class(${1:Param1}) $2' -p118947 -tp118948 -a(S'popEventHandler/1' -p118949 -S'popEventHandler(${1:This}) $2' -p118950 -tp118951 -a(S'popEventHandler/2' -p118952 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p118953 -tp118954 -a(S'popupMenu/2' -p118955 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p118956 -tp118957 -a(S'popupMenu/3' -p118958 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p118959 -tp118960 -a(S'popupMenu/4' -p118961 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p118962 -tp118963 -a(S'raise/1' -p118964 -S'raise(${1:This}) $2' -p118965 -tp118966 -a(S'refresh/1' -p118967 -S'refresh(${1:This}) $2' -p118968 -tp118969 -a(S'refresh/2' -p118970 -S'refresh(${1:This}, ${2:Options}) $3' -p118971 -tp118972 -a(S'refreshRect/2' -p118973 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p118974 -tp118975 -a(S'refreshRect/3' -p118976 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p118977 -tp118978 -a(S'releaseMouse/1' -p118979 -S'releaseMouse(${1:This}) $2' -p118980 -tp118981 -a(S'removeChild/2' -p118982 -S'removeChild(${1:This}, ${2:Child}) $3' -p118983 -tp118984 -a(S'reparent/2' -p118985 -S'reparent(${1:This}, ${2:NewParent}) $3' -p118986 -tp118987 -a(S'requestUserAttention/1' -p118988 -S'requestUserAttention(${1:This}) $2' -p118989 -tp118990 -a(S'requestUserAttention/2' -p118991 -S'requestUserAttention(${1:This}, ${2:Options}) $3' -p118992 -tp118993 -a(S'screenToClient/1' -p118994 -S'screenToClient(${1:This}) $2' -p118995 -tp118996 -a(S'screenToClient/2' -p118997 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p118998 -tp118999 -a(S'scrollLines/2' -p119000 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p119001 -tp119002 -a(S'scrollPages/2' -p119003 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p119004 -tp119005 -a(S'scrollWindow/3' -p119006 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p119007 -tp119008 -a(S'scrollWindow/4' -p119009 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p119010 -tp119011 -a(S'setAcceleratorTable/2' -p119012 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p119013 -tp119014 -a(S'setAffirmativeId/2' -p119015 -S'setAffirmativeId(${1:This}, ${2:AffirmativeId}) $3' -p119016 -tp119017 -a(S'setAutoLayout/2' -p119018 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p119019 -tp119020 -a(S'setBackgroundColour/2' -p119021 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p119022 -tp119023 -a(S'setBackgroundStyle/2' -p119024 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p119025 -tp119026 -a(S'setCaret/2' -p119027 -S'setCaret(${1:This}, ${2:Caret}) $3' -p119028 -tp119029 -a(S'setClientSize/2' -p119030 -S'setClientSize(${1:This}, ${2:Size}) $3' -p119031 -tp119032 -a(S'setClientSize/3' -p119033 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p119034 -tp119035 -a(S'setContainingSizer/2' -p119036 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p119037 -tp119038 -a(S'setCursor/2' -p119039 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p119040 -tp119041 -a(S'setDropTarget/2' -p119042 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p119043 -tp119044 -a(S'setExtraStyle/2' -p119045 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p119046 -tp119047 -a(S'setFocus/1' -p119048 -S'setFocus(${1:This}) $2' -p119049 -tp119050 -a(S'setFocusFromKbd/1' -p119051 -S'setFocusFromKbd(${1:This}) $2' -p119052 -tp119053 -a(S'setFont/2' -p119054 -S'setFont(${1:This}, ${2:Font}) $3' -p119055 -tp119056 -a(S'setForegroundColour/2' -p119057 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p119058 -tp119059 -a(S'setHelpText/2' -p119060 -S'setHelpText(${1:This}, ${2:Text}) $3' -p119061 -tp119062 -a(S'setIcon/2' -p119063 -S'setIcon(${1:This}, ${2:Icon}) $3' -p119064 -tp119065 -a(S'setIcons/2' -p119066 -S'setIcons(${1:This}, ${2:Icons}) $3' -p119067 -tp119068 -a(S'setId/2' -p119069 -S'setId(${1:This}, ${2:Winid}) $3' -p119070 -tp119071 -a(S'setLabel/2' -p119072 -S'setLabel(${1:This}, ${2:Label}) $3' -p119073 -tp119074 -a(S'setMaxSize/2' -p119075 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p119076 -tp119077 -a(S'setMinSize/2' -p119078 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p119079 -tp119080 -a(S'setName/2' -p119081 -S'setName(${1:This}, ${2:Name}) $3' -p119082 -tp119083 -a(S'setOwnBackgroundColour/2' -p119084 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p119085 -tp119086 -a(S'setOwnFont/2' -p119087 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p119088 -tp119089 -a(S'setOwnForegroundColour/2' -p119090 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p119091 -tp119092 -a(S'setPalette/2' -p119093 -S'setPalette(${1:This}, ${2:Pal}) $3' -p119094 -tp119095 -a(S'setReturnCode/2' -p119096 -S'setReturnCode(${1:This}, ${2:ReturnCode}) $3' -p119097 -tp119098 -a(S'setScrollPos/3' -p119099 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p119100 -tp119101 -a(S'setScrollPos/4' -p119102 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p119103 -tp119104 -a(S'setScrollbar/5' -p119105 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p119106 -tp119107 -a(S'setScrollbar/6' -p119108 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p119109 -tp119110 -a(S'setShape/2' -p119111 -S'setShape(${1:This}, ${2:Region}) $3' -p119112 -tp119113 -a(S'setSize/2' -p119114 -S'setSize(${1:This}, ${2:Rect}) $3' -p119115 -tp119116 -a(S'setSize/3' -p119117 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p119118 -tp119119 -a(S'setSize/5' -p119120 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p119121 -tp119122 -a(S'setSize/6' -p119123 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p119124 -tp119125 -a(S'setSizeHints/2' -p119126 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p119127 -tp119128 -a(S'setSizeHints/3' -p119129 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p119130 -tp119131 -a(S'setSizeHints/4' -p119132 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p119133 -tp119134 -a(S'setSizer/2' -p119135 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p119136 -tp119137 -a(S'setSizer/3' -p119138 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p119139 -tp119140 -a(S'setSizerAndFit/2' -p119141 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p119142 -tp119143 -a(S'setSizerAndFit/3' -p119144 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p119145 -tp119146 -a(S'setThemeEnabled/2' -p119147 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p119148 -tp119149 -a(S'setTitle/2' -p119150 -S'setTitle(${1:This}, ${2:Title}) $3' -p119151 -tp119152 -a(S'setToolTip/2' -p119153 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p119154 -tp119155 -a(S'setVirtualSize/2' -p119156 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p119157 -tp119158 -a(S'setVirtualSize/3' -p119159 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p119160 -tp119161 -a(S'setVirtualSizeHints/2' -p119162 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p119163 -tp119164 -a(S'setVirtualSizeHints/3' -p119165 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p119166 -tp119167 -a(S'setVirtualSizeHints/4' -p119168 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p119169 -tp119170 -a(S'setWindowStyle/2' -p119171 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p119172 -tp119173 -a(S'setWindowStyleFlag/2' -p119174 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p119175 -tp119176 -a(S'setWindowVariant/2' -p119177 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p119178 -tp119179 -a(S'shouldInheritColours/1' -p119180 -S'shouldInheritColours(${1:This}) $2' -p119181 -tp119182 -a(S'show/1' -p119183 -S'show(${1:This}) $2' -p119184 -tp119185 -a(S'show/2' -p119186 -S'show(${1:This}, ${2:Options}) $3' -p119187 -tp119188 -a(S'showFullScreen/2' -p119189 -S'showFullScreen(${1:This}, ${2:Show}) $3' -p119190 -tp119191 -a(S'showFullScreen/3' -p119192 -S'showFullScreen(${1:This}, ${2:Show}, ${3:Options}) $4' -p119193 -tp119194 -a(S'showModal/1' -p119195 -S'showModal(${1:This}) $2' -p119196 -tp119197 -a(S'thaw/1' -p119198 -S'thaw(${1:This}) $2' -p119199 -tp119200 -a(S'transferDataFromWindow/1' -p119201 -S'transferDataFromWindow(${1:This}) $2' -p119202 -tp119203 -a(S'transferDataToWindow/1' -p119204 -S'transferDataToWindow(${1:This}) $2' -p119205 -tp119206 -a(S'update/1' -p119207 -S'update(${1:This}) $2' -p119208 -tp119209 -a(S'updateWindowUI/1' -p119210 -S'updateWindowUI(${1:This}) $2' -p119211 -tp119212 -a(S'updateWindowUI/2' -p119213 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p119214 -tp119215 -a(S'validate/1' -p119216 -S'validate(${1:This}) $2' -p119217 -tp119218 -a(S'warpPointer/3' -p119219 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p119220 -tp119221 -asS'snmp_app' -p119222 -(lp119223 -(S'config_change/3' -p119224 -S'config_change(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p119225 -tp119226 -a(S'start/2' -p119227 -S'start(${1:Type}, ${2:Param2}) $3' -p119228 -tp119229 -a(S'start_agent/0' -p119230 -S'start_agent() $1' -p119231 -tp119232 -a(S'start_agent/1' -p119233 -S'start_agent(${1:Type}) $2' -p119234 -tp119235 -a(S'start_agent/2' -p119236 -S'start_agent(${1:Type}, ${2:Opts}) $3' -p119237 -tp119238 -a(S'start_manager/0' -p119239 -S'start_manager() $1' -p119240 -tp119241 -a(S'start_manager/1' -p119242 -S'start_manager(${1:Type}) $2' -p119243 -tp119244 -a(S'start_manager/2' -p119245 -S'start_manager(${1:Type}, ${2:Opts}) $3' -p119246 -tp119247 -a(S'stop/0' -p119248 -S'stop() $1' -p119249 -tp119250 -a(S'stop/1' -p119251 -S'stop(${1:Param1}) $2' -p119252 -tp119253 -asS'tool_utils' -p119254 -(lp119255 -(S'confirm/2' -p119256 -S'confirm(${1:Parent}, ${2:Strings}) $3' -p119257 -tp119258 -a(S'confirm_yesno/2' -p119259 -S'confirm_yesno(${1:Parent}, ${2:Strings}) $3' -p119260 -tp119261 -a(S'file_dialog/1' -p119262 -S'file_dialog(${1:Options}) $2' -p119263 -tp119264 -a(S'notify/2' -p119265 -S'notify(${1:Parent}, ${2:Strings}) $3' -p119266 -tp119267 -a(S'open_help/2' -p119268 -S'open_help(${1:Parent}, ${2:File}) $3' -p119269 -tp119270 -a(S'request/2' -p119271 -S'request(${1:Parent}, ${2:Strings}) $3' -p119272 -tp119273 -asS'cerl' -p119274 -(lp119275 -(S'abstract/1' -p119276 -S'abstract(${1:T}) $2' -p119277 -tp119278 -a(S'add_ann/2' -p119279 -S'add_ann(${1:Terms}, ${2:Node}) $3' -p119280 -tp119281 -a(S'alias_pat/1' -p119282 -S'alias_pat(${1:Node}) $2' -p119283 -tp119284 -a(S'alias_var/1' -p119285 -S'alias_var(${1:Node}) $2' -p119286 -tp119287 -a(S'ann_abstract/2' -p119288 -S'ann_abstract(${1:As}, ${2:T}) $3' -p119289 -tp119290 -a(S'ann_c_alias/3' -p119291 -S'ann_c_alias(${1:As}, ${2:Var}, ${3:Pattern}) $4' -p119292 -tp119293 -a(S'ann_c_apply/3' -p119294 -S'ann_c_apply(${1:As}, ${2:Operator}, ${3:Arguments}) $4' -p119295 -tp119296 -a(S'ann_c_atom/2' -p119297 -S'ann_c_atom(${1:As}, ${2:Name}) $3' -p119298 -tp119299 -a(S'ann_c_binary/2' -p119300 -S'ann_c_binary(${1:As}, ${2:Segments}) $3' -p119301 -tp119302 -a(S'ann_c_bitstr/5' -p119303 -S'ann_c_bitstr(${1:As}, ${2:Value}, ${3:Size}, ${4:Type}, ${5:Flags}) $6' -p119304 -tp119305 -a(S'ann_c_bitstr/6' -p119306 -S'ann_c_bitstr(${1:As}, ${2:Val}, ${3:Size}, ${4:Unit}, ${5:Type}, ${6:Flags}) $7' -p119307 -tp119308 -a(S'ann_c_call/4' -p119309 -S'ann_c_call(${1:As}, ${2:Module}, ${3:Name}, ${4:Arguments}) $5' -p119310 -tp119311 -a(S'ann_c_case/3' -p119312 -S'ann_c_case(${1:As}, ${2:Expr}, ${3:Clauses}) $4' -p119313 -tp119314 -a(S'ann_c_catch/2' -p119315 -S'ann_c_catch(${1:As}, ${2:Body}) $3' -p119316 -tp119317 -a(S'ann_c_char/2' -p119318 -S'ann_c_char(${1:As}, ${2:Value}) $3' -p119319 -tp119320 -a(S'ann_c_clause/3' -p119321 -S'ann_c_clause(${1:As}, ${2:Patterns}, ${3:Body}) $4' -p119322 -tp119323 -a(S'ann_c_clause/4' -p119324 -S'ann_c_clause(${1:As}, ${2:Patterns}, ${3:Guard}, ${4:Body}) $5' -p119325 -tp119326 -a(S'ann_c_cons/3' -p119327 -S'ann_c_cons(${1:As}, ${2:Head}, ${3:Tail}) $4' -p119328 -tp119329 -a(S'ann_c_cons_skel/3' -p119330 -S'ann_c_cons_skel(${1:As}, ${2:Head}, ${3:Tail}) $4' -p119331 -tp119332 -a(S'ann_c_float/2' -p119333 -S'ann_c_float(${1:As}, ${2:Value}) $3' -p119334 -tp119335 -a(S'ann_c_fname/3' -p119336 -S'ann_c_fname(${1:As}, ${2:Atom}, ${3:Arity}) $4' -p119337 -tp119338 -a(S'ann_c_fun/3' -p119339 -S'ann_c_fun(${1:As}, ${2:Variables}, ${3:Body}) $4' -p119340 -tp119341 -a(S'ann_c_int/2' -p119342 -S'ann_c_int(${1:As}, ${2:Value}) $3' -p119343 -tp119344 -a(S'ann_c_let/4' -p119345 -S'ann_c_let(${1:As}, ${2:Variables}, ${3:Argument}, ${4:Body}) $5' -p119346 -tp119347 -a(S'ann_c_letrec/3' -p119348 -S'ann_c_letrec(${1:As}, ${2:Defs}, ${3:Body}) $4' -p119349 -tp119350 -a(S'ann_c_module/4' -p119351 -S'ann_c_module(${1:As}, ${2:Name}, ${3:Exports}, ${4:Es}) $5' -p119352 -tp119353 -a(S'ann_c_module/5' -p119354 -S'ann_c_module(${1:As}, ${2:Name}, ${3:Exports}, ${4:Attrs}, ${5:Es}) $6' -p119355 -tp119356 -a(S'ann_c_nil/1' -p119357 -S'ann_c_nil(${1:As}) $2' -p119358 -tp119359 -a(S'ann_c_primop/3' -p119360 -S'ann_c_primop(${1:As}, ${2:Name}, ${3:Arguments}) $4' -p119361 -tp119362 -a(S'ann_c_receive/2' -p119363 -S'ann_c_receive(${1:As}, ${2:Clauses}) $3' -p119364 -tp119365 -a(S'ann_c_receive/4' -p119366 -S'ann_c_receive(${1:As}, ${2:Clauses}, ${3:Timeout}, ${4:Action}) $5' -p119367 -tp119368 -a(S'ann_c_seq/3' -p119369 -S'ann_c_seq(${1:As}, ${2:Argument}, ${3:Body}) $4' -p119370 -tp119371 -a(S'ann_c_string/2' -p119372 -S'ann_c_string(${1:As}, ${2:Value}) $3' -p119373 -tp119374 -a(S'ann_c_try/6' -p119375 -S'ann_c_try(${1:As}, ${2:Expr}, ${3:Vs}, ${4:Body}, ${5:Evs}, ${6:Handler}) $7' -p119376 -tp119377 -a(S'ann_c_tuple/2' -p119378 -S'ann_c_tuple(${1:As}, ${2:Es}) $3' -p119379 -tp119380 -a(S'ann_c_tuple_skel/2' -p119381 -S'ann_c_tuple_skel(${1:As}, ${2:Es}) $3' -p119382 -tp119383 -a(S'ann_c_values/2' -p119384 -S'ann_c_values(${1:As}, ${2:Es}) $3' -p119385 -tp119386 -a(S'ann_c_var/2' -p119387 -S'ann_c_var(${1:As}, ${2:Name}) $3' -p119388 -tp119389 -a(S'ann_make_data/3' -p119390 -S'ann_make_data(${1:As}, ${2:Param2}, ${3:Es}) $4' -p119391 -tp119392 -a(S'ann_make_data_skel/3' -p119393 -S'ann_make_data_skel(${1:As}, ${2:Param2}, ${3:Es}) $4' -p119394 -tp119395 -a(S'ann_make_list/2' -p119396 -S'ann_make_list(${1:As}, ${2:List}) $3' -p119397 -tp119398 -a(S'ann_make_list/3' -p119399 -S'ann_make_list(${1:As}, ${2:Param2}, ${3:Tail}) $4' -p119400 -tp119401 -a(S'ann_make_tree/3' -p119402 -S'ann_make_tree(${1:As}, ${2:Param2}, ${3:Param3}) $4' -p119403 -tp119404 -a(S'apply_args/1' -p119405 -S'apply_args(${1:Node}) $2' -p119406 -tp119407 -a(S'apply_arity/1' -p119408 -S'apply_arity(${1:Node}) $2' -p119409 -tp119410 -a(S'apply_op/1' -p119411 -S'apply_op(${1:Node}) $2' -p119412 -tp119413 -a(S'atom_lit/1' -p119414 -S'atom_lit(${1:Node}) $2' -p119415 -tp119416 -a(S'atom_name/1' -p119417 -S'atom_name(${1:Node}) $2' -p119418 -tp119419 -a(S'atom_val/1' -p119420 -S'atom_val(${1:Node}) $2' -p119421 -tp119422 -a(S'binary_segments/1' -p119423 -S'binary_segments(${1:Node}) $2' -p119424 -tp119425 -a(S'bitstr_bitsize/1' -p119426 -S'bitstr_bitsize(${1:Node}) $2' -p119427 -tp119428 -a(S'bitstr_flags/1' -p119429 -S'bitstr_flags(${1:Node}) $2' -p119430 -tp119431 -a(S'bitstr_size/1' -p119432 -S'bitstr_size(${1:Node}) $2' -p119433 -tp119434 -a(S'bitstr_type/1' -p119435 -S'bitstr_type(${1:Node}) $2' -p119436 -tp119437 -a(S'bitstr_unit/1' -p119438 -S'bitstr_unit(${1:Node}) $2' -p119439 -tp119440 -a(S'bitstr_val/1' -p119441 -S'bitstr_val(${1:Node}) $2' -p119442 -tp119443 -a(S'c_alias/2' -p119444 -S'c_alias(${1:Var}, ${2:Pattern}) $3' -p119445 -tp119446 -a(S'c_apply/2' -p119447 -S'c_apply(${1:Operator}, ${2:Arguments}) $3' -p119448 -tp119449 -a(S'c_atom/1' -p119450 -S'c_atom(${1:Name}) $2' -p119451 -tp119452 -a(S'c_binary/1' -p119453 -S'c_binary(${1:Segments}) $2' -p119454 -tp119455 -a(S'c_bitstr/3' -p119456 -S'c_bitstr(${1:Val}, ${2:Type}, ${3:Flags}) $4' -p119457 -tp119458 -a(S'c_bitstr/4' -p119459 -S'c_bitstr(${1:Val}, ${2:Size}, ${3:Type}, ${4:Flags}) $5' -p119460 -tp119461 -a(S'c_bitstr/5' -p119462 -S'c_bitstr(${1:Val}, ${2:Size}, ${3:Unit}, ${4:Type}, ${5:Flags}) $6' -p119463 -tp119464 -a(S'c_call/3' -p119465 -S'c_call(${1:Module}, ${2:Name}, ${3:Arguments}) $4' -p119466 -tp119467 -a(S'c_case/2' -p119468 -S'c_case(${1:Expr}, ${2:Clauses}) $3' -p119469 -tp119470 -a(S'c_catch/1' -p119471 -S'c_catch(${1:Body}) $2' -p119472 -tp119473 -a(S'c_char/1' -p119474 -S'c_char(${1:Param1}) $2' -p119475 -tp119476 -a(S'c_clause/2' -p119477 -S'c_clause(${1:Patterns}, ${2:Body}) $3' -p119478 -tp119479 -a(S'c_clause/3' -p119480 -S'c_clause(${1:Patterns}, ${2:Guard}, ${3:Body}) $4' -p119481 -tp119482 -a(S'c_cons/2' -p119483 -S'c_cons(${1:Head}, ${2:Tail}) $3' -p119484 -tp119485 -a(S'c_cons_skel/2' -p119486 -S'c_cons_skel(${1:Head}, ${2:Tail}) $3' -p119487 -tp119488 -a(S'c_float/1' -p119489 -S'c_float(${1:Value}) $2' -p119490 -tp119491 -a(S'c_fname/2' -p119492 -S'c_fname(${1:Atom}, ${2:Arity}) $3' -p119493 -tp119494 -a(S'c_fun/2' -p119495 -S'c_fun(${1:Variables}, ${2:Body}) $3' -p119496 -tp119497 -a(S'c_int/1' -p119498 -S'c_int(${1:Value}) $2' -p119499 -tp119500 -a(S'c_let/3' -p119501 -S'c_let(${1:Variables}, ${2:Argument}, ${3:Body}) $4' -p119502 -tp119503 -a(S'c_letrec/2' -p119504 -S'c_letrec(${1:Defs}, ${2:Body}) $3' -p119505 -tp119506 -a(S'c_module/3' -p119507 -S'c_module(${1:Name}, ${2:Exports}, ${3:Es}) $4' -p119508 -tp119509 -a(S'c_module/4' -p119510 -S'c_module(${1:Name}, ${2:Exports}, ${3:Attrs}, ${4:Es}) $5' -p119511 -tp119512 -a(S'c_nil/0' -p119513 -S'c_nil() $1' -p119514 -tp119515 -a(S'c_primop/2' -p119516 -S'c_primop(${1:Name}, ${2:Arguments}) $3' -p119517 -tp119518 -a(S'c_receive/1' -p119519 -S'c_receive(${1:Clauses}) $2' -p119520 -tp119521 -a(S'c_receive/3' -p119522 -S'c_receive(${1:Clauses}, ${2:Timeout}, ${3:Action}) $4' -p119523 -tp119524 -a(S'c_seq/2' -p119525 -S'c_seq(${1:Argument}, ${2:Body}) $3' -p119526 -tp119527 -a(S'c_string/1' -p119528 -S'c_string(${1:Value}) $2' -p119529 -tp119530 -a(S'c_try/5' -p119531 -S'c_try(${1:Expr}, ${2:Vs}, ${3:Body}, ${4:Evs}, ${5:Handler}) $6' -p119532 -tp119533 -a(S'c_tuple/1' -p119534 -S'c_tuple(${1:Es}) $2' -p119535 -tp119536 -a(S'c_tuple_skel/1' -p119537 -S'c_tuple_skel(${1:Es}) $2' -p119538 -tp119539 -a(S'c_values/1' -p119540 -S'c_values(${1:Es}) $2' -p119541 -tp119542 -a(S'c_var/1' -p119543 -S'c_var(${1:Name}) $2' -p119544 -tp119545 -a(S'call_args/1' -p119546 -S'call_args(${1:Node}) $2' -p119547 -tp119548 -a(S'call_arity/1' -p119549 -S'call_arity(${1:Node}) $2' -p119550 -tp119551 -a(S'call_module/1' -p119552 -S'call_module(${1:Node}) $2' -p119553 -tp119554 -a(S'call_name/1' -p119555 -S'call_name(${1:Node}) $2' -p119556 -tp119557 -a(S'case_arg/1' -p119558 -S'case_arg(${1:Node}) $2' -p119559 -tp119560 -a(S'case_arity/1' -p119561 -S'case_arity(${1:Node}) $2' -p119562 -tp119563 -a(S'case_clauses/1' -p119564 -S'case_clauses(${1:Node}) $2' -p119565 -tp119566 -a(S'catch_body/1' -p119567 -S'catch_body(${1:Node}) $2' -p119568 -tp119569 -a(S'char_lit/1' -p119570 -S'char_lit(${1:Node}) $2' -p119571 -tp119572 -a(S'char_val/1' -p119573 -S'char_val(${1:Node}) $2' -p119574 -tp119575 -a(S'clause_arity/1' -p119576 -S'clause_arity(${1:Node}) $2' -p119577 -tp119578 -a(S'clause_body/1' -p119579 -S'clause_body(${1:Node}) $2' -p119580 -tp119581 -a(S'clause_guard/1' -p119582 -S'clause_guard(${1:Node}) $2' -p119583 -tp119584 -a(S'clause_pats/1' -p119585 -S'clause_pats(${1:Node}) $2' -p119586 -tp119587 -a(S'clause_vars/1' -p119588 -S'clause_vars(${1:Clause}) $2' -p119589 -tp119590 -a(S'concrete/1' -p119591 -S'concrete(${1:Val}) $2' -p119592 -tp119593 -a(S'cons_hd/1' -p119594 -S'cons_hd(${1:Param1}) $2' -p119595 -tp119596 -a(S'cons_tl/1' -p119597 -S'cons_tl(${1:Param1}) $2' -p119598 -tp119599 -a(S'copy_ann/2' -p119600 -S'copy_ann(${1:Source}, ${2:Target}) $3' -p119601 -tp119602 -a(S'data_arity/1' -p119603 -S'data_arity(${1:Param1}) $2' -p119604 -tp119605 -a(S'data_es/1' -p119606 -S'data_es(${1:Param1}) $2' -p119607 -tp119608 -a(S'data_type/1' -p119609 -S'data_type(${1:Param1}) $2' -p119610 -tp119611 -a(S'float_lit/1' -p119612 -S'float_lit(${1:Node}) $2' -p119613 -tp119614 -a(S'float_val/1' -p119615 -S'float_val(${1:Node}) $2' -p119616 -tp119617 -a(S'fname_arity/1' -p119618 -S'fname_arity(${1:Param1}) $2' -p119619 -tp119620 -a(S'fname_id/1' -p119621 -S'fname_id(${1:Param1}) $2' -p119622 -tp119623 -a(S'fold_literal/1' -p119624 -S'fold_literal(${1:Node}) $2' -p119625 -tp119626 -a(S'from_records/1' -p119627 -S'from_records(${1:Node}) $2' -p119628 -tp119629 -a(S'fun_arity/1' -p119630 -S'fun_arity(${1:Node}) $2' -p119631 -tp119632 -a(S'fun_body/1' -p119633 -S'fun_body(${1:Node}) $2' -p119634 -tp119635 -a(S'fun_vars/1' -p119636 -S'fun_vars(${1:Node}) $2' -p119637 -tp119638 -a(S'get_ann/1' -p119639 -S'get_ann(${1:Node}) $2' -p119640 -tp119641 -a(S'int_lit/1' -p119642 -S'int_lit(${1:Node}) $2' -p119643 -tp119644 -a(S'int_val/1' -p119645 -S'int_val(${1:Node}) $2' -p119646 -tp119647 -a(S'is_c_alias/1' -p119648 -S'is_c_alias(${1:Param1}) $2' -p119649 -tp119650 -a(S'is_c_apply/1' -p119651 -S'is_c_apply(${1:Param1}) $2' -p119652 -tp119653 -a(S'is_c_atom/1' -p119654 -S'is_c_atom(${1:Param1}) $2' -p119655 -tp119656 -a(S'is_c_binary/1' -p119657 -S'is_c_binary(${1:Param1}) $2' -p119658 -tp119659 -a(S'is_c_bitstr/1' -p119660 -S'is_c_bitstr(${1:Param1}) $2' -p119661 -tp119662 -a(S'is_c_call/1' -p119663 -S'is_c_call(${1:Param1}) $2' -p119664 -tp119665 -a(S'is_c_case/1' -p119666 -S'is_c_case(${1:Param1}) $2' -p119667 -tp119668 -a(S'is_c_catch/1' -p119669 -S'is_c_catch(${1:Param1}) $2' -p119670 -tp119671 -a(S'is_c_char/1' -p119672 -S'is_c_char(${1:Param1}) $2' -p119673 -tp119674 -a(S'is_c_clause/1' -p119675 -S'is_c_clause(${1:Param1}) $2' -p119676 -tp119677 -a(S'is_c_cons/1' -p119678 -S'is_c_cons(${1:Param1}) $2' -p119679 -tp119680 -a(S'is_c_float/1' -p119681 -S'is_c_float(${1:Param1}) $2' -p119682 -tp119683 -a(S'is_c_fname/1' -p119684 -S'is_c_fname(${1:Param1}) $2' -p119685 -tp119686 -a(S'is_c_fun/1' -p119687 -S'is_c_fun(${1:Param1}) $2' -p119688 -tp119689 -a(S'is_c_int/1' -p119690 -S'is_c_int(${1:Param1}) $2' -p119691 -tp119692 -a(S'is_c_let/1' -p119693 -S'is_c_let(${1:Param1}) $2' -p119694 -tp119695 -a(S'is_c_letrec/1' -p119696 -S'is_c_letrec(${1:Param1}) $2' -p119697 -tp119698 -a(S'is_c_list/1' -p119699 -S'is_c_list(${1:Param1}) $2' -p119700 -tp119701 -a(S'is_c_module/1' -p119702 -S'is_c_module(${1:Param1}) $2' -p119703 -tp119704 -a(S'is_c_nil/1' -p119705 -S'is_c_nil(${1:Param1}) $2' -p119706 -tp119707 -a(S'is_c_primop/1' -p119708 -S'is_c_primop(${1:Param1}) $2' -p119709 -tp119710 -a(S'is_c_receive/1' -p119711 -S'is_c_receive(${1:Param1}) $2' -p119712 -tp119713 -a(S'is_c_seq/1' -p119714 -S'is_c_seq(${1:Param1}) $2' -p119715 -tp119716 -a(S'is_c_string/1' -p119717 -S'is_c_string(${1:Param1}) $2' -p119718 -tp119719 -a(S'is_c_try/1' -p119720 -S'is_c_try(${1:Param1}) $2' -p119721 -tp119722 -a(S'is_c_tuple/1' -p119723 -S'is_c_tuple(${1:Param1}) $2' -p119724 -tp119725 -a(S'is_c_values/1' -p119726 -S'is_c_values(${1:Param1}) $2' -p119727 -tp119728 -a(S'is_c_var/1' -p119729 -S'is_c_var(${1:Param1}) $2' -p119730 -tp119731 -a(S'is_data/1' -p119732 -S'is_data(${1:Param1}) $2' -p119733 -tp119734 -a(S'is_leaf/1' -p119735 -S'is_leaf(${1:Node}) $2' -p119736 -tp119737 -a(S'is_literal/1' -p119738 -S'is_literal(${1:Param1}) $2' -p119739 -tp119740 -a(S'is_literal_term/1' -p119741 -S'is_literal_term(${1:T}) $2' -p119742 -tp119743 -a(S'is_print_char/1' -p119744 -S'is_print_char(${1:Param1}) $2' -p119745 -tp119746 -a(S'is_print_string/1' -p119747 -S'is_print_string(${1:Param1}) $2' -p119748 -tp119749 -a(S'let_arg/1' -p119750 -S'let_arg(${1:Node}) $2' -p119751 -tp119752 -a(S'let_arity/1' -p119753 -S'let_arity(${1:Node}) $2' -p119754 -tp119755 -a(S'let_body/1' -p119756 -S'let_body(${1:Node}) $2' -p119757 -tp119758 -a(S'let_vars/1' -p119759 -S'let_vars(${1:Node}) $2' -p119760 -tp119761 -a(S'letrec_body/1' -p119762 -S'letrec_body(${1:Node}) $2' -p119763 -tp119764 -a(S'letrec_defs/1' -p119765 -S'letrec_defs(${1:Node}) $2' -p119766 -tp119767 -a(S'letrec_vars/1' -p119768 -S'letrec_vars(${1:Node}) $2' -p119769 -tp119770 -a(S'list_elements/1' -p119771 -S'list_elements(${1:Param1}) $2' -p119772 -tp119773 -a(S'list_length/1' -p119774 -S'list_length(${1:L}) $2' -p119775 -tp119776 -a(S'make_data/2' -p119777 -S'make_data(${1:CType}, ${2:Es}) $3' -p119778 -tp119779 -a(S'make_data_skel/2' -p119780 -S'make_data_skel(${1:CType}, ${2:Es}) $3' -p119781 -tp119782 -a(S'make_list/1' -p119783 -S'make_list(${1:List}) $2' -p119784 -tp119785 -a(S'make_list/2' -p119786 -S'make_list(${1:List}, ${2:Tail}) $3' -p119787 -tp119788 -a(S'make_tree/2' -p119789 -S'make_tree(${1:Type}, ${2:Gs}) $3' -p119790 -tp119791 -a(S'meta/1' -p119792 -S'meta(${1:Node}) $2' -p119793 -tp119794 -a(S'module_attrs/1' -p119795 -S'module_attrs(${1:Node}) $2' -p119796 -tp119797 -a(S'module_defs/1' -p119798 -S'module_defs(${1:Node}) $2' -p119799 -tp119800 -a(S'module_exports/1' -p119801 -S'module_exports(${1:Node}) $2' -p119802 -tp119803 -a(S'module_name/1' -p119804 -S'module_name(${1:Node}) $2' -p119805 -tp119806 -a(S'module_vars/1' -p119807 -S'module_vars(${1:Node}) $2' -p119808 -tp119809 -a(S'pat_list_vars/1' -p119810 -S'pat_list_vars(${1:Ps}) $2' -p119811 -tp119812 -a(S'pat_vars/1' -p119813 -S'pat_vars(${1:Node}) $2' -p119814 -tp119815 -a(S'primop_args/1' -p119816 -S'primop_args(${1:Node}) $2' -p119817 -tp119818 -a(S'primop_arity/1' -p119819 -S'primop_arity(${1:Node}) $2' -p119820 -tp119821 -a(S'primop_name/1' -p119822 -S'primop_name(${1:Node}) $2' -p119823 -tp119824 -a(S'receive_action/1' -p119825 -S'receive_action(${1:Node}) $2' -p119826 -tp119827 -a(S'receive_clauses/1' -p119828 -S'receive_clauses(${1:Node}) $2' -p119829 -tp119830 -a(S'receive_timeout/1' -p119831 -S'receive_timeout(${1:Node}) $2' -p119832 -tp119833 -a(S'seq_arg/1' -p119834 -S'seq_arg(${1:Node}) $2' -p119835 -tp119836 -a(S'seq_body/1' -p119837 -S'seq_body(${1:Node}) $2' -p119838 -tp119839 -a(S'set_ann/2' -p119840 -S'set_ann(${1:Node}, ${2:List}) $3' -p119841 -tp119842 -a(S'string_lit/1' -p119843 -S'string_lit(${1:Node}) $2' -p119844 -tp119845 -a(S'string_val/1' -p119846 -S'string_val(${1:Node}) $2' -p119847 -tp119848 -a(S'subtrees/1' -p119849 -S'subtrees(${1:T}) $2' -p119850 -tp119851 -a(S'to_records/1' -p119852 -S'to_records(${1:Node}) $2' -p119853 -tp119854 -a(S'try_arg/1' -p119855 -S'try_arg(${1:Node}) $2' -p119856 -tp119857 -a(S'try_body/1' -p119858 -S'try_body(${1:Node}) $2' -p119859 -tp119860 -a(S'try_evars/1' -p119861 -S'try_evars(${1:Node}) $2' -p119862 -tp119863 -a(S'try_handler/1' -p119864 -S'try_handler(${1:Node}) $2' -p119865 -tp119866 -a(S'try_vars/1' -p119867 -S'try_vars(${1:Node}) $2' -p119868 -tp119869 -a(S'tuple_arity/1' -p119870 -S'tuple_arity(${1:Param1}) $2' -p119871 -tp119872 -a(S'tuple_es/1' -p119873 -S'tuple_es(${1:Param1}) $2' -p119874 -tp119875 -a(S'type/1' -p119876 -S'type(${1:Node}) $2' -p119877 -tp119878 -a(S'unfold_literal/1' -p119879 -S'unfold_literal(${1:Node}) $2' -p119880 -tp119881 -a(S'update_c_alias/3' -p119882 -S'update_c_alias(${1:Node}, ${2:Var}, ${3:Pattern}) $4' -p119883 -tp119884 -a(S'update_c_apply/3' -p119885 -S'update_c_apply(${1:Node}, ${2:Operator}, ${3:Arguments}) $4' -p119886 -tp119887 -a(S'update_c_binary/2' -p119888 -S'update_c_binary(${1:Node}, ${2:Segments}) $3' -p119889 -tp119890 -a(S'update_c_bitstr/5' -p119891 -S'update_c_bitstr(${1:Node}, ${2:Value}, ${3:Size}, ${4:Type}, ${5:Flags}) $6' -p119892 -tp119893 -a(S'update_c_bitstr/6' -p119894 -S'update_c_bitstr(${1:Node}, ${2:Val}, ${3:Size}, ${4:Unit}, ${5:Type}, ${6:Flags}) $7' -p119895 -tp119896 -a(S'update_c_call/4' -p119897 -S'update_c_call(${1:Node}, ${2:Module}, ${3:Name}, ${4:Arguments}) $5' -p119898 -tp119899 -a(S'update_c_case/3' -p119900 -S'update_c_case(${1:Node}, ${2:Expr}, ${3:Clauses}) $4' -p119901 -tp119902 -a(S'update_c_catch/2' -p119903 -S'update_c_catch(${1:Node}, ${2:Body}) $3' -p119904 -tp119905 -a(S'update_c_clause/4' -p119906 -S'update_c_clause(${1:Node}, ${2:Patterns}, ${3:Guard}, ${4:Body}) $5' -p119907 -tp119908 -a(S'update_c_cons/3' -p119909 -S'update_c_cons(${1:Node}, ${2:Head}, ${3:Tail}) $4' -p119910 -tp119911 -a(S'update_c_cons_skel/3' -p119912 -S'update_c_cons_skel(${1:Node}, ${2:Head}, ${3:Tail}) $4' -p119913 -tp119914 -a(S'update_c_fname/2' -p119915 -S'update_c_fname(${1:Param1}, ${2:Atom}) $3' -p119916 -tp119917 -a(S'update_c_fname/3' -p119918 -S'update_c_fname(${1:Node}, ${2:Atom}, ${3:Arity}) $4' -p119919 -tp119920 -a(S'update_c_fun/3' -p119921 -S'update_c_fun(${1:Node}, ${2:Variables}, ${3:Body}) $4' -p119922 -tp119923 -a(S'update_c_let/4' -p119924 -S'update_c_let(${1:Node}, ${2:Variables}, ${3:Argument}, ${4:Body}) $5' -p119925 -tp119926 -a(S'update_c_letrec/3' -p119927 -S'update_c_letrec(${1:Node}, ${2:Defs}, ${3:Body}) $4' -p119928 -tp119929 -a(S'update_c_module/5' -p119930 -S'update_c_module(${1:Node}, ${2:Name}, ${3:Exports}, ${4:Attrs}, ${5:Es}) $6' -p119931 -tp119932 -a(S'update_c_primop/3' -p119933 -S'update_c_primop(${1:Node}, ${2:Name}, ${3:Arguments}) $4' -p119934 -tp119935 -a(S'update_c_receive/4' -p119936 -S'update_c_receive(${1:Node}, ${2:Clauses}, ${3:Timeout}, ${4:Action}) $5' -p119937 -tp119938 -a(S'update_c_seq/3' -p119939 -S'update_c_seq(${1:Node}, ${2:Argument}, ${3:Body}) $4' -p119940 -tp119941 -a(S'update_c_try/6' -p119942 -S'update_c_try(${1:Node}, ${2:Expr}, ${3:Vs}, ${4:Body}, ${5:Evs}, ${6:Handler}) $7' -p119943 -tp119944 -a(S'update_c_tuple/2' -p119945 -S'update_c_tuple(${1:Node}, ${2:Es}) $3' -p119946 -tp119947 -a(S'update_c_tuple_skel/2' -p119948 -S'update_c_tuple_skel(${1:Old}, ${2:Es}) $3' -p119949 -tp119950 -a(S'update_c_values/2' -p119951 -S'update_c_values(${1:Node}, ${2:Es}) $3' -p119952 -tp119953 -a(S'update_c_var/2' -p119954 -S'update_c_var(${1:Node}, ${2:Name}) $3' -p119955 -tp119956 -a(S'update_data/3' -p119957 -S'update_data(${1:Node}, ${2:CType}, ${3:Es}) $4' -p119958 -tp119959 -a(S'update_data_skel/3' -p119960 -S'update_data_skel(${1:Node}, ${2:CType}, ${3:Es}) $4' -p119961 -tp119962 -a(S'update_list/2' -p119963 -S'update_list(${1:Node}, ${2:List}) $3' -p119964 -tp119965 -a(S'update_list/3' -p119966 -S'update_list(${1:Node}, ${2:List}, ${3:Tail}) $4' -p119967 -tp119968 -a(S'update_tree/2' -p119969 -S'update_tree(${1:Node}, ${2:Gs}) $3' -p119970 -tp119971 -a(S'update_tree/3' -p119972 -S'update_tree(${1:Node}, ${2:Type}, ${3:Gs}) $4' -p119973 -tp119974 -a(S'values_arity/1' -p119975 -S'values_arity(${1:Node}) $2' -p119976 -tp119977 -a(S'values_es/1' -p119978 -S'values_es(${1:Node}) $2' -p119979 -tp119980 -a(S'var_name/1' -p119981 -S'var_name(${1:Node}) $2' -p119982 -tp119983 -asS'oe_CosEventComm_PullerS_impl' -p119984 -(lp119985 -(S'code_change/3' -p119986 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p119987 -tp119988 -a(S'connect_pull_consumer/4' -p119989 -S'connect_pull_consumer(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p119990 -tp119991 -a(S'disconnect_pull_supplier/3' -p119992 -S'disconnect_pull_supplier(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p119993 -tp119994 -a(S'handle_info/2' -p119995 -S'handle_info(${1:Param1}, ${2:State}) $3' -p119996 -tp119997 -a(S'init/1' -p119998 -S'init(${1:Param1}) $2' -p119999 -tp120000 -a(S'pull/3' -p120001 -S'pull(${1:Param1}, ${2:OE_From}, ${3:State}) $4' -p120002 -tp120003 -a(S'send/3' -p120004 -S'send(${1:Param1}, ${2:State}, ${3:Any}) $4' -p120005 -tp120006 -a(S'send_sync/4' -p120007 -S'send_sync(${1:Param1}, ${2:Param2}, ${3:State}, ${4:Any}) $5' -p120008 -tp120009 -a(S'terminate/2' -p120010 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p120011 -tp120012 -a(S'try_pull/3' -p120013 -S'try_pull(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p120014 -tp120015 -asS'xmerl_xpath_parse' -p120016 -(lp120017 -(S'format_error/1' -p120018 -S'format_error(${1:Message}) $2' -p120019 -tp120020 -a(S'parse/1' -p120021 -S'parse(${1:Tokens}) $2' -p120022 -tp120023 -a(S'parse_and_scan/1' -p120024 -S'parse_and_scan(${1:Param1}) $2' -p120025 -tp120026 -asS'inviso_lfm_tpfreader' -p120027 -(lp120028 -(S'handle_logfile_sort_wrapset/1' -p120029 -S'handle_logfile_sort_wrapset(${1:FileSet}) $2' -p120030 -tp120031 -a(S'init/2' -p120032 -S'init(${1:RecPid}, ${2:FileStruct}) $3' -p120033 -tp120034 -asS'megaco_tcp_connection' -p120035 -(lp120036 -(S'code_change/3' -p120037 -S'code_change(${1:Param1}, ${2:S}, ${3:Param3}) $4' -p120038 -tp120039 -a(S'handle_call/3' -p120040 -S'handle_call(${1:Req}, ${2:From}, ${3:TcpRec}) $4' -p120041 -tp120042 -a(S'handle_cast/2' -p120043 -S'handle_cast(${1:Msg}, ${2:TcpRec}) $3' -p120044 -tp120045 -a(S'handle_info/2' -p120046 -S'handle_info(${1:Info}, ${2:TcpRec}) $3' -p120047 -tp120048 -a(S'handle_received_message/5' -p120049 -S'handle_received_message(${1:Mod}, ${2:RH}, ${3:Parent}, ${4:SH}, ${5:Msg}) $6' -p120050 -tp120051 -a(S'init/1' -p120052 -S'init(${1:Arg}) $2' -p120053 -tp120054 -a(S'start_link/1' -p120055 -S'start_link(${1:Arg}) $2' -p120056 -tp120057 -a(S'stop/1' -p120058 -S'stop(${1:Pid}) $2' -p120059 -tp120060 -a(S'terminate/2' -p120061 -S'terminate(${1:Reason}, ${2:TcpRec}) $3' -p120062 -tp120063 -a(S'upgrade_receive_handle/2' -p120064 -S'upgrade_receive_handle(${1:Pid}, ${2:NewHandle}) $3' -p120065 -tp120066 -asS'wxMDIClientWindow' -p120067 -(lp120068 -(S'cacheBestSize/2' -p120069 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p120070 -tp120071 -a(S'captureMouse/1' -p120072 -S'captureMouse(${1:This}) $2' -p120073 -tp120074 -a(S'center/1' -p120075 -S'center(${1:This}) $2' -p120076 -tp120077 -a(S'center/2' -p120078 -S'center(${1:This}, ${2:Options}) $3' -p120079 -tp120080 -a(S'centerOnParent/1' -p120081 -S'centerOnParent(${1:This}) $2' -p120082 -tp120083 -a(S'centerOnParent/2' -p120084 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p120085 -tp120086 -a(S'centre/1' -p120087 -S'centre(${1:This}) $2' -p120088 -tp120089 -a(S'centre/2' -p120090 -S'centre(${1:This}, ${2:Options}) $3' -p120091 -tp120092 -a(S'centreOnParent/1' -p120093 -S'centreOnParent(${1:This}) $2' -p120094 -tp120095 -a(S'centreOnParent/2' -p120096 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p120097 -tp120098 -a(S'clearBackground/1' -p120099 -S'clearBackground(${1:This}) $2' -p120100 -tp120101 -a(S'clientToScreen/2' -p120102 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p120103 -tp120104 -a(S'clientToScreen/3' -p120105 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p120106 -tp120107 -a(S'close/1' -p120108 -S'close(${1:This}) $2' -p120109 -tp120110 -a(S'close/2' -p120111 -S'close(${1:This}, ${2:Options}) $3' -p120112 -tp120113 -a(S'connect/2' -p120114 -S'connect(${1:This}, ${2:EventType}) $3' -p120115 -tp120116 -a(S'connect/3' -p120117 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p120118 -tp120119 -a(S'convertDialogToPixels/2' -p120120 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p120121 -tp120122 -a(S'convertPixelsToDialog/2' -p120123 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p120124 -tp120125 -a(S'createClient/2' -p120126 -S'createClient(${1:This}, ${2:Parent}) $3' -p120127 -tp120128 -a(S'createClient/3' -p120129 -S'createClient(${1:This}, ${2:Parent}, ${3:Param3}) $4' -p120130 -tp120131 -a(S'destroy/1' -p120132 -S'destroy(${1:This}) $2' -p120133 -tp120134 -a(S'destroyChildren/1' -p120135 -S'destroyChildren(${1:This}) $2' -p120136 -tp120137 -a(S'disable/1' -p120138 -S'disable(${1:This}) $2' -p120139 -tp120140 -a(S'disconnect/1' -p120141 -S'disconnect(${1:This}) $2' -p120142 -tp120143 -a(S'disconnect/2' -p120144 -S'disconnect(${1:This}, ${2:EventType}) $3' -p120145 -tp120146 -a(S'disconnect/3' -p120147 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p120148 -tp120149 -a(S'enable/1' -p120150 -S'enable(${1:This}) $2' -p120151 -tp120152 -a(S'enable/2' -p120153 -S'enable(${1:This}, ${2:Options}) $3' -p120154 -tp120155 -a(S'findWindow/2' -p120156 -S'findWindow(${1:This}, ${2:Winid}) $3' -p120157 -tp120158 -a(S'fit/1' -p120159 -S'fit(${1:This}) $2' -p120160 -tp120161 -a(S'fitInside/1' -p120162 -S'fitInside(${1:This}) $2' -p120163 -tp120164 -a(S'freeze/1' -p120165 -S'freeze(${1:This}) $2' -p120166 -tp120167 -a(S'getAcceleratorTable/1' -p120168 -S'getAcceleratorTable(${1:This}) $2' -p120169 -tp120170 -a(S'getBackgroundColour/1' -p120171 -S'getBackgroundColour(${1:This}) $2' -p120172 -tp120173 -a(S'getBackgroundStyle/1' -p120174 -S'getBackgroundStyle(${1:This}) $2' -p120175 -tp120176 -a(S'getBestSize/1' -p120177 -S'getBestSize(${1:This}) $2' -p120178 -tp120179 -a(S'getCaret/1' -p120180 -S'getCaret(${1:This}) $2' -p120181 -tp120182 -a(S'getCharHeight/1' -p120183 -S'getCharHeight(${1:This}) $2' -p120184 -tp120185 -a(S'getCharWidth/1' -p120186 -S'getCharWidth(${1:This}) $2' -p120187 -tp120188 -a(S'getChildren/1' -p120189 -S'getChildren(${1:This}) $2' -p120190 -tp120191 -a(S'getClientSize/1' -p120192 -S'getClientSize(${1:This}) $2' -p120193 -tp120194 -a(S'getContainingSizer/1' -p120195 -S'getContainingSizer(${1:This}) $2' -p120196 -tp120197 -a(S'getCursor/1' -p120198 -S'getCursor(${1:This}) $2' -p120199 -tp120200 -a(S'getDropTarget/1' -p120201 -S'getDropTarget(${1:This}) $2' -p120202 -tp120203 -a(S'getEventHandler/1' -p120204 -S'getEventHandler(${1:This}) $2' -p120205 -tp120206 -a(S'getExtraStyle/1' -p120207 -S'getExtraStyle(${1:This}) $2' -p120208 -tp120209 -a(S'getFont/1' -p120210 -S'getFont(${1:This}) $2' -p120211 -tp120212 -a(S'getForegroundColour/1' -p120213 -S'getForegroundColour(${1:This}) $2' -p120214 -tp120215 -a(S'getGrandParent/1' -p120216 -S'getGrandParent(${1:This}) $2' -p120217 -tp120218 -a(S'getHandle/1' -p120219 -S'getHandle(${1:This}) $2' -p120220 -tp120221 -a(S'getHelpText/1' -p120222 -S'getHelpText(${1:This}) $2' -p120223 -tp120224 -a(S'getId/1' -p120225 -S'getId(${1:This}) $2' -p120226 -tp120227 -a(S'getLabel/1' -p120228 -S'getLabel(${1:This}) $2' -p120229 -tp120230 -a(S'getMaxSize/1' -p120231 -S'getMaxSize(${1:This}) $2' -p120232 -tp120233 -a(S'getMinSize/1' -p120234 -S'getMinSize(${1:This}) $2' -p120235 -tp120236 -a(S'getName/1' -p120237 -S'getName(${1:This}) $2' -p120238 -tp120239 -a(S'getParent/1' -p120240 -S'getParent(${1:This}) $2' -p120241 -tp120242 -a(S'getPosition/1' -p120243 -S'getPosition(${1:This}) $2' -p120244 -tp120245 -a(S'getRect/1' -p120246 -S'getRect(${1:This}) $2' -p120247 -tp120248 -a(S'getScreenPosition/1' -p120249 -S'getScreenPosition(${1:This}) $2' -p120250 -tp120251 -a(S'getScreenRect/1' -p120252 -S'getScreenRect(${1:This}) $2' -p120253 -tp120254 -a(S'getScrollPos/2' -p120255 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p120256 -tp120257 -a(S'getScrollRange/2' -p120258 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p120259 -tp120260 -a(S'getScrollThumb/2' -p120261 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p120262 -tp120263 -a(S'getSize/1' -p120264 -S'getSize(${1:This}) $2' -p120265 -tp120266 -a(S'getSizer/1' -p120267 -S'getSizer(${1:This}) $2' -p120268 -tp120269 -a(S'getTextExtent/2' -p120270 -S'getTextExtent(${1:This}, ${2:String}) $3' -p120271 -tp120272 -a(S'getTextExtent/3' -p120273 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p120274 -tp120275 -a(S'getToolTip/1' -p120276 -S'getToolTip(${1:This}) $2' -p120277 -tp120278 -a(S'getUpdateRegion/1' -p120279 -S'getUpdateRegion(${1:This}) $2' -p120280 -tp120281 -a(S'getVirtualSize/1' -p120282 -S'getVirtualSize(${1:This}) $2' -p120283 -tp120284 -a(S'getWindowStyleFlag/1' -p120285 -S'getWindowStyleFlag(${1:This}) $2' -p120286 -tp120287 -a(S'getWindowVariant/1' -p120288 -S'getWindowVariant(${1:This}) $2' -p120289 -tp120290 -a(S'hasCapture/1' -p120291 -S'hasCapture(${1:This}) $2' -p120292 -tp120293 -a(S'hasScrollbar/2' -p120294 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p120295 -tp120296 -a(S'hasTransparentBackground/1' -p120297 -S'hasTransparentBackground(${1:This}) $2' -p120298 -tp120299 -a(S'hide/1' -p120300 -S'hide(${1:This}) $2' -p120301 -tp120302 -a(S'inheritAttributes/1' -p120303 -S'inheritAttributes(${1:This}) $2' -p120304 -tp120305 -a(S'initDialog/1' -p120306 -S'initDialog(${1:This}) $2' -p120307 -tp120308 -a(S'invalidateBestSize/1' -p120309 -S'invalidateBestSize(${1:This}) $2' -p120310 -tp120311 -a(S'isEnabled/1' -p120312 -S'isEnabled(${1:This}) $2' -p120313 -tp120314 -a(S'isExposed/2' -p120315 -S'isExposed(${1:This}, ${2:Pt}) $3' -p120316 -tp120317 -a(S'isExposed/3' -p120318 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p120319 -tp120320 -a(S'isExposed/5' -p120321 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p120322 -tp120323 -a(S'isRetained/1' -p120324 -S'isRetained(${1:This}) $2' -p120325 -tp120326 -a(S'isShown/1' -p120327 -S'isShown(${1:This}) $2' -p120328 -tp120329 -a(S'isTopLevel/1' -p120330 -S'isTopLevel(${1:This}) $2' -p120331 -tp120332 -a(S'layout/1' -p120333 -S'layout(${1:This}) $2' -p120334 -tp120335 -a(S'lineDown/1' -p120336 -S'lineDown(${1:This}) $2' -p120337 -tp120338 -a(S'lineUp/1' -p120339 -S'lineUp(${1:This}) $2' -p120340 -tp120341 -a(S'lower/1' -p120342 -S'lower(${1:This}) $2' -p120343 -tp120344 -a(S'makeModal/1' -p120345 -S'makeModal(${1:This}) $2' -p120346 -tp120347 -a(S'makeModal/2' -p120348 -S'makeModal(${1:This}, ${2:Options}) $3' -p120349 -tp120350 -a(S'move/2' -p120351 -S'move(${1:This}, ${2:Pt}) $3' -p120352 -tp120353 -a(S'move/3' -p120354 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p120355 -tp120356 -a(S'move/4' -p120357 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p120358 -tp120359 -a(S'moveAfterInTabOrder/2' -p120360 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p120361 -tp120362 -a(S'moveBeforeInTabOrder/2' -p120363 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p120364 -tp120365 -a(S'navigate/1' -p120366 -S'navigate(${1:This}) $2' -p120367 -tp120368 -a(S'navigate/2' -p120369 -S'navigate(${1:This}, ${2:Options}) $3' -p120370 -tp120371 -a(S'new/0' -p120372 -S'new() $1' -p120373 -tp120374 -a(S'new/1' -p120375 -S'new(${1:Parent}) $2' -p120376 -tp120377 -a(S'new/2' -p120378 -S'new(${1:Parent}, ${2:Param2}) $3' -p120379 -tp120380 -a(S'pageDown/1' -p120381 -S'pageDown(${1:This}) $2' -p120382 -tp120383 -a(S'pageUp/1' -p120384 -S'pageUp(${1:This}) $2' -p120385 -tp120386 -a(S'parent_class/1' -p120387 -S'parent_class(${1:Param1}) $2' -p120388 -tp120389 -a(S'popEventHandler/1' -p120390 -S'popEventHandler(${1:This}) $2' -p120391 -tp120392 -a(S'popEventHandler/2' -p120393 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p120394 -tp120395 -a(S'popupMenu/2' -p120396 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p120397 -tp120398 -a(S'popupMenu/3' -p120399 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p120400 -tp120401 -a(S'popupMenu/4' -p120402 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p120403 -tp120404 -a(S'raise/1' -p120405 -S'raise(${1:This}) $2' -p120406 -tp120407 -a(S'refresh/1' -p120408 -S'refresh(${1:This}) $2' -p120409 -tp120410 -a(S'refresh/2' -p120411 -S'refresh(${1:This}, ${2:Options}) $3' -p120412 -tp120413 -a(S'refreshRect/2' -p120414 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p120415 -tp120416 -a(S'refreshRect/3' -p120417 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p120418 -tp120419 -a(S'releaseMouse/1' -p120420 -S'releaseMouse(${1:This}) $2' -p120421 -tp120422 -a(S'removeChild/2' -p120423 -S'removeChild(${1:This}, ${2:Child}) $3' -p120424 -tp120425 -a(S'reparent/2' -p120426 -S'reparent(${1:This}, ${2:NewParent}) $3' -p120427 -tp120428 -a(S'screenToClient/1' -p120429 -S'screenToClient(${1:This}) $2' -p120430 -tp120431 -a(S'screenToClient/2' -p120432 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p120433 -tp120434 -a(S'scrollLines/2' -p120435 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p120436 -tp120437 -a(S'scrollPages/2' -p120438 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p120439 -tp120440 -a(S'scrollWindow/3' -p120441 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p120442 -tp120443 -a(S'scrollWindow/4' -p120444 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p120445 -tp120446 -a(S'setAcceleratorTable/2' -p120447 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p120448 -tp120449 -a(S'setAutoLayout/2' -p120450 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p120451 -tp120452 -a(S'setBackgroundColour/2' -p120453 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p120454 -tp120455 -a(S'setBackgroundStyle/2' -p120456 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p120457 -tp120458 -a(S'setCaret/2' -p120459 -S'setCaret(${1:This}, ${2:Caret}) $3' -p120460 -tp120461 -a(S'setClientSize/2' -p120462 -S'setClientSize(${1:This}, ${2:Size}) $3' -p120463 -tp120464 -a(S'setClientSize/3' -p120465 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p120466 -tp120467 -a(S'setContainingSizer/2' -p120468 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p120469 -tp120470 -a(S'setCursor/2' -p120471 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p120472 -tp120473 -a(S'setDropTarget/2' -p120474 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p120475 -tp120476 -a(S'setExtraStyle/2' -p120477 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p120478 -tp120479 -a(S'setFocus/1' -p120480 -S'setFocus(${1:This}) $2' -p120481 -tp120482 -a(S'setFocusFromKbd/1' -p120483 -S'setFocusFromKbd(${1:This}) $2' -p120484 -tp120485 -a(S'setFont/2' -p120486 -S'setFont(${1:This}, ${2:Font}) $3' -p120487 -tp120488 -a(S'setForegroundColour/2' -p120489 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p120490 -tp120491 -a(S'setHelpText/2' -p120492 -S'setHelpText(${1:This}, ${2:Text}) $3' -p120493 -tp120494 -a(S'setId/2' -p120495 -S'setId(${1:This}, ${2:Winid}) $3' -p120496 -tp120497 -a(S'setLabel/2' -p120498 -S'setLabel(${1:This}, ${2:Label}) $3' -p120499 -tp120500 -a(S'setMaxSize/2' -p120501 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p120502 -tp120503 -a(S'setMinSize/2' -p120504 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p120505 -tp120506 -a(S'setName/2' -p120507 -S'setName(${1:This}, ${2:Name}) $3' -p120508 -tp120509 -a(S'setOwnBackgroundColour/2' -p120510 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p120511 -tp120512 -a(S'setOwnFont/2' -p120513 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p120514 -tp120515 -a(S'setOwnForegroundColour/2' -p120516 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p120517 -tp120518 -a(S'setPalette/2' -p120519 -S'setPalette(${1:This}, ${2:Pal}) $3' -p120520 -tp120521 -a(S'setScrollPos/3' -p120522 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p120523 -tp120524 -a(S'setScrollPos/4' -p120525 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p120526 -tp120527 -a(S'setScrollbar/5' -p120528 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p120529 -tp120530 -a(S'setScrollbar/6' -p120531 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p120532 -tp120533 -a(S'setSize/2' -p120534 -S'setSize(${1:This}, ${2:Rect}) $3' -p120535 -tp120536 -a(S'setSize/3' -p120537 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p120538 -tp120539 -a(S'setSize/5' -p120540 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p120541 -tp120542 -a(S'setSize/6' -p120543 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p120544 -tp120545 -a(S'setSizeHints/2' -p120546 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p120547 -tp120548 -a(S'setSizeHints/3' -p120549 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p120550 -tp120551 -a(S'setSizeHints/4' -p120552 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p120553 -tp120554 -a(S'setSizer/2' -p120555 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p120556 -tp120557 -a(S'setSizer/3' -p120558 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p120559 -tp120560 -a(S'setSizerAndFit/2' -p120561 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p120562 -tp120563 -a(S'setSizerAndFit/3' -p120564 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p120565 -tp120566 -a(S'setThemeEnabled/2' -p120567 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p120568 -tp120569 -a(S'setToolTip/2' -p120570 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p120571 -tp120572 -a(S'setVirtualSize/2' -p120573 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p120574 -tp120575 -a(S'setVirtualSize/3' -p120576 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p120577 -tp120578 -a(S'setVirtualSizeHints/2' -p120579 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p120580 -tp120581 -a(S'setVirtualSizeHints/3' -p120582 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p120583 -tp120584 -a(S'setVirtualSizeHints/4' -p120585 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p120586 -tp120587 -a(S'setWindowStyle/2' -p120588 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p120589 -tp120590 -a(S'setWindowStyleFlag/2' -p120591 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p120592 -tp120593 -a(S'setWindowVariant/2' -p120594 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p120595 -tp120596 -a(S'shouldInheritColours/1' -p120597 -S'shouldInheritColours(${1:This}) $2' -p120598 -tp120599 -a(S'show/1' -p120600 -S'show(${1:This}) $2' -p120601 -tp120602 -a(S'show/2' -p120603 -S'show(${1:This}, ${2:Options}) $3' -p120604 -tp120605 -a(S'thaw/1' -p120606 -S'thaw(${1:This}) $2' -p120607 -tp120608 -a(S'transferDataFromWindow/1' -p120609 -S'transferDataFromWindow(${1:This}) $2' -p120610 -tp120611 -a(S'transferDataToWindow/1' -p120612 -S'transferDataToWindow(${1:This}) $2' -p120613 -tp120614 -a(S'update/1' -p120615 -S'update(${1:This}) $2' -p120616 -tp120617 -a(S'updateWindowUI/1' -p120618 -S'updateWindowUI(${1:This}) $2' -p120619 -tp120620 -a(S'updateWindowUI/2' -p120621 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p120622 -tp120623 -a(S'validate/1' -p120624 -S'validate(${1:This}) $2' -p120625 -tp120626 -a(S'warpPointer/3' -p120627 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p120628 -tp120629 -asS'ssh_bits' -p120630 -(lp120631 -(S'b64_decode/1' -p120632 -S'b64_decode(${1:Bin}) $2' -p120633 -tp120634 -a(S'b64_encode/1' -p120635 -S'b64_encode(${1:Bs}) $2' -p120636 -tp120637 -a(S'bignum/1' -p120638 -S'bignum(${1:X}) $2' -p120639 -tp120640 -a(S'bin2i/1' -p120641 -S'bin2i(${1:X}) $2' -p120642 -tp120643 -a(S'decode/1' -p120644 -S'decode(${1:Bin}) $2' -p120645 -tp120646 -a(S'decode/2' -p120647 -S'decode(${1:Binary}, ${2:Types}) $3' -p120648 -tp120649 -a(S'decode/3' -p120650 -S'decode(${1:Binary}, ${2:Offset}, ${3:Types}) $4' -p120651 -tp120652 -a(S'encode/1' -p120653 -S'encode(${1:Record}) $2' -p120654 -tp120655 -a(S'encode/2' -p120656 -S'encode(${1:List}, ${2:Types}) $3' -p120657 -tp120658 -a(S'fill_bits/2' -p120659 -S'fill_bits(${1:N}, ${2:C}) $3' -p120660 -tp120661 -a(S'i2bin/2' -p120662 -S'i2bin(${1:X}, ${2:XLen}) $3' -p120663 -tp120664 -a(S'install_messages/1' -p120665 -S'install_messages(${1:Codes}) $2' -p120666 -tp120667 -a(S'irandom/1' -p120668 -S'irandom(${1:Bits}) $2' -p120669 -tp120670 -a(S'irandom/3' -p120671 -S'irandom() $1' -p120672 -tp120673 -a(S'isize/1' -p120674 -S'isize(${1:Param1}) $2' -p120675 -tp120676 -a(S'mpint/1' -p120677 -S'mpint(${1:X}) $2' -p120678 -tp120679 -a(S'name_list/1' -p120680 -S'name_list(${1:Ns}) $2' -p120681 -tp120682 -a(S'random/1' -p120683 -S'random(${1:Bits}) $2' -p120684 -tp120685 -a(S'string/1' -p120686 -S'string(${1:Str}) $2' -p120687 -tp120688 -a(S'uninstall_messages/1' -p120689 -S'uninstall_messages(${1:Codes}) $2' -p120690 -tp120691 -a(S'xor_bits/2' -p120692 -S'xor_bits(${1:XBits}, ${2:YBits}) $3' -p120693 -tp120694 -asS'eunit_proc' -p120695 -(lp120696 -(S'group_leader_process/1' -p120697 -S'group_leader_process(${1:Runner}) $2' -p120698 -tp120699 -a(S'start/4' -p120700 -S'start() $1' -p120701 -tp120702 -asS'cth_log_redirect' -p120703 -(lp120704 -(S'handle_call/2' -p120705 -S'handle_call(${1:Param1}, ${2:State}) $3' -p120706 -tp120707 -a(S'handle_event/2' -p120708 -S'handle_event(${1:Event}, ${2:State}) $3' -p120709 -tp120710 -a(S'handle_info/2' -p120711 -S'handle_info(${1:Param1}, ${2:State}) $3' -p120712 -tp120713 -a(S'id/1' -p120714 -S'id(${1:Param1}) $2' -p120715 -tp120716 -a(S'init/1' -p120717 -S'init(${1:Param1}) $2' -p120718 -tp120719 -a(S'init/2' -p120720 -S'init(${1:Param1}, ${2:Param2}) $3' -p120721 -tp120722 -a(S'post_end_per_testcase/4' -p120723 -S'post_end_per_testcase(${1:Param1}, ${2:Param2}, ${3:Result}, ${4:State}) $5' -p120724 -tp120725 -a(S'post_init_per_group/4' -p120726 -S'post_init_per_group(${1:Group}, ${2:Config}, ${3:Result}, ${4:State}) $5' -p120727 -tp120728 -a(S'pre_end_per_group/3' -p120729 -S'pre_end_per_group(${1:Group}, ${2:Config}, ${3:State}) $4' -p120730 -tp120731 -a(S'terminate/1' -p120732 -S'terminate(${1:Param1}) $2' -p120733 -tp120734 -asS'gstk_grid' -p120735 -(lp120736 -(S'config/3' -p120737 -S'config(${1:DB}, ${2:Gstkid}, ${3:Options}) $4' -p120738 -tp120739 -a(S'create/3' -p120740 -S'create(${1:DB}, ${2:Gstkid}, ${3:Options}) $4' -p120741 -tp120742 -a(S'delete/2' -p120743 -S'delete(${1:DB}, ${2:Gstkid}) $3' -p120744 -tp120745 -a(S'destroy/2' -p120746 -S'destroy(${1:DB}, ${2:Canvas}) $3' -p120747 -tp120748 -a(S'event/5' -p120749 -S'event(${1:DB}, ${2:Gstkid}, ${3:Etype}, ${4:Edata}, ${5:Args}) $6' -p120750 -tp120751 -a(S'mk_create_opts_for_child/4' -p120752 -S'mk_create_opts_for_child(${1:DB}, ${2:Cgstkid}, ${3:Pgstkid}, ${4:Opts}) $5' -p120753 -tp120754 -a(S'option/5' -p120755 -S'option(${1:Option}, ${2:Gstkid}, ${3:Param3}, ${4:DB}, ${5:State}) $6' -p120756 -tp120757 -a(S'read/3' -p120758 -S'read(${1:DB}, ${2:Gstkid}, ${3:Opt}) $4' -p120759 -tp120760 -a(S'read_option/5' -p120761 -S'read_option(${1:Option}, ${2:Gstkid}, ${3:Param3}, ${4:DB}, ${5:State}) $6' -p120762 -tp120763 -asS'CosPropertyService_InvalidPropertyName' -p120764 -(lp120765 -(S'id/0' -p120766 -S'id() $1' -p120767 -tp120768 -a(S'name/0' -p120769 -S'name() $1' -p120770 -tp120771 -a(S'tc/0' -p120772 -S'tc() $1' -p120773 -tp120774 -asS'v3_kernel_pp' -p120775 -(lp120776 -(S'format/1' -p120777 -S'format(${1:Node}) $2' -p120778 -tp120779 -asS'wxColourDialog' -p120780 -(lp120781 -(S'cacheBestSize/2' -p120782 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p120783 -tp120784 -a(S'captureMouse/1' -p120785 -S'captureMouse(${1:This}) $2' -p120786 -tp120787 -a(S'center/1' -p120788 -S'center(${1:This}) $2' -p120789 -tp120790 -a(S'center/2' -p120791 -S'center(${1:This}, ${2:Options}) $3' -p120792 -tp120793 -a(S'centerOnParent/1' -p120794 -S'centerOnParent(${1:This}) $2' -p120795 -tp120796 -a(S'centerOnParent/2' -p120797 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p120798 -tp120799 -a(S'centerOnScreen/1' -p120800 -S'centerOnScreen(${1:This}) $2' -p120801 -tp120802 -a(S'centerOnScreen/2' -p120803 -S'centerOnScreen(${1:This}, ${2:Options}) $3' -p120804 -tp120805 -a(S'centre/1' -p120806 -S'centre(${1:This}) $2' -p120807 -tp120808 -a(S'centre/2' -p120809 -S'centre(${1:This}, ${2:Options}) $3' -p120810 -tp120811 -a(S'centreOnParent/1' -p120812 -S'centreOnParent(${1:This}) $2' -p120813 -tp120814 -a(S'centreOnParent/2' -p120815 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p120816 -tp120817 -a(S'centreOnScreen/1' -p120818 -S'centreOnScreen(${1:This}) $2' -p120819 -tp120820 -a(S'centreOnScreen/2' -p120821 -S'centreOnScreen(${1:This}, ${2:Options}) $3' -p120822 -tp120823 -a(S'clearBackground/1' -p120824 -S'clearBackground(${1:This}) $2' -p120825 -tp120826 -a(S'clientToScreen/2' -p120827 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p120828 -tp120829 -a(S'clientToScreen/3' -p120830 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p120831 -tp120832 -a(S'close/1' -p120833 -S'close(${1:This}) $2' -p120834 -tp120835 -a(S'close/2' -p120836 -S'close(${1:This}, ${2:Options}) $3' -p120837 -tp120838 -a(S'connect/2' -p120839 -S'connect(${1:This}, ${2:EventType}) $3' -p120840 -tp120841 -a(S'connect/3' -p120842 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p120843 -tp120844 -a(S'convertDialogToPixels/2' -p120845 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p120846 -tp120847 -a(S'convertPixelsToDialog/2' -p120848 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p120849 -tp120850 -a(S'create/2' -p120851 -S'create(${1:This}, ${2:Parent}) $3' -p120852 -tp120853 -a(S'create/3' -p120854 -S'create(${1:This}, ${2:Parent}, ${3:Param3}) $4' -p120855 -tp120856 -a(S'createButtonSizer/2' -p120857 -S'createButtonSizer(${1:This}, ${2:Flags}) $3' -p120858 -tp120859 -a(S'createStdDialogButtonSizer/2' -p120860 -S'createStdDialogButtonSizer(${1:This}, ${2:Flags}) $3' -p120861 -tp120862 -a(S'destroy/1' -p120863 -S'destroy(${1:This}) $2' -p120864 -tp120865 -a(S'destroyChildren/1' -p120866 -S'destroyChildren(${1:This}) $2' -p120867 -tp120868 -a(S'disable/1' -p120869 -S'disable(${1:This}) $2' -p120870 -tp120871 -a(S'disconnect/1' -p120872 -S'disconnect(${1:This}) $2' -p120873 -tp120874 -a(S'disconnect/2' -p120875 -S'disconnect(${1:This}, ${2:EventType}) $3' -p120876 -tp120877 -a(S'disconnect/3' -p120878 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p120879 -tp120880 -a(S'enable/1' -p120881 -S'enable(${1:This}) $2' -p120882 -tp120883 -a(S'enable/2' -p120884 -S'enable(${1:This}, ${2:Options}) $3' -p120885 -tp120886 -a(S'endModal/2' -p120887 -S'endModal(${1:This}, ${2:RetCode}) $3' -p120888 -tp120889 -a(S'findWindow/2' -p120890 -S'findWindow(${1:This}, ${2:Winid}) $3' -p120891 -tp120892 -a(S'fit/1' -p120893 -S'fit(${1:This}) $2' -p120894 -tp120895 -a(S'fitInside/1' -p120896 -S'fitInside(${1:This}) $2' -p120897 -tp120898 -a(S'freeze/1' -p120899 -S'freeze(${1:This}) $2' -p120900 -tp120901 -a(S'getAcceleratorTable/1' -p120902 -S'getAcceleratorTable(${1:This}) $2' -p120903 -tp120904 -a(S'getAffirmativeId/1' -p120905 -S'getAffirmativeId(${1:This}) $2' -p120906 -tp120907 -a(S'getBackgroundColour/1' -p120908 -S'getBackgroundColour(${1:This}) $2' -p120909 -tp120910 -a(S'getBackgroundStyle/1' -p120911 -S'getBackgroundStyle(${1:This}) $2' -p120912 -tp120913 -a(S'getBestSize/1' -p120914 -S'getBestSize(${1:This}) $2' -p120915 -tp120916 -a(S'getCaret/1' -p120917 -S'getCaret(${1:This}) $2' -p120918 -tp120919 -a(S'getCharHeight/1' -p120920 -S'getCharHeight(${1:This}) $2' -p120921 -tp120922 -a(S'getCharWidth/1' -p120923 -S'getCharWidth(${1:This}) $2' -p120924 -tp120925 -a(S'getChildren/1' -p120926 -S'getChildren(${1:This}) $2' -p120927 -tp120928 -a(S'getClientSize/1' -p120929 -S'getClientSize(${1:This}) $2' -p120930 -tp120931 -a(S'getColourData/1' -p120932 -S'getColourData(${1:This}) $2' -p120933 -tp120934 -a(S'getContainingSizer/1' -p120935 -S'getContainingSizer(${1:This}) $2' -p120936 -tp120937 -a(S'getCursor/1' -p120938 -S'getCursor(${1:This}) $2' -p120939 -tp120940 -a(S'getDropTarget/1' -p120941 -S'getDropTarget(${1:This}) $2' -p120942 -tp120943 -a(S'getEventHandler/1' -p120944 -S'getEventHandler(${1:This}) $2' -p120945 -tp120946 -a(S'getExtraStyle/1' -p120947 -S'getExtraStyle(${1:This}) $2' -p120948 -tp120949 -a(S'getFont/1' -p120950 -S'getFont(${1:This}) $2' -p120951 -tp120952 -a(S'getForegroundColour/1' -p120953 -S'getForegroundColour(${1:This}) $2' -p120954 -tp120955 -a(S'getGrandParent/1' -p120956 -S'getGrandParent(${1:This}) $2' -p120957 -tp120958 -a(S'getHandle/1' -p120959 -S'getHandle(${1:This}) $2' -p120960 -tp120961 -a(S'getHelpText/1' -p120962 -S'getHelpText(${1:This}) $2' -p120963 -tp120964 -a(S'getIcon/1' -p120965 -S'getIcon(${1:This}) $2' -p120966 -tp120967 -a(S'getIcons/1' -p120968 -S'getIcons(${1:This}) $2' -p120969 -tp120970 -a(S'getId/1' -p120971 -S'getId(${1:This}) $2' -p120972 -tp120973 -a(S'getLabel/1' -p120974 -S'getLabel(${1:This}) $2' -p120975 -tp120976 -a(S'getMaxSize/1' -p120977 -S'getMaxSize(${1:This}) $2' -p120978 -tp120979 -a(S'getMinSize/1' -p120980 -S'getMinSize(${1:This}) $2' -p120981 -tp120982 -a(S'getName/1' -p120983 -S'getName(${1:This}) $2' -p120984 -tp120985 -a(S'getParent/1' -p120986 -S'getParent(${1:This}) $2' -p120987 -tp120988 -a(S'getPosition/1' -p120989 -S'getPosition(${1:This}) $2' -p120990 -tp120991 -a(S'getRect/1' -p120992 -S'getRect(${1:This}) $2' -p120993 -tp120994 -a(S'getReturnCode/1' -p120995 -S'getReturnCode(${1:This}) $2' -p120996 -tp120997 -a(S'getScreenPosition/1' -p120998 -S'getScreenPosition(${1:This}) $2' -p120999 -tp121000 -a(S'getScreenRect/1' -p121001 -S'getScreenRect(${1:This}) $2' -p121002 -tp121003 -a(S'getScrollPos/2' -p121004 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p121005 -tp121006 -a(S'getScrollRange/2' -p121007 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p121008 -tp121009 -a(S'getScrollThumb/2' -p121010 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p121011 -tp121012 -a(S'getSize/1' -p121013 -S'getSize(${1:This}) $2' -p121014 -tp121015 -a(S'getSizer/1' -p121016 -S'getSizer(${1:This}) $2' -p121017 -tp121018 -a(S'getTextExtent/2' -p121019 -S'getTextExtent(${1:This}, ${2:String}) $3' -p121020 -tp121021 -a(S'getTextExtent/3' -p121022 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p121023 -tp121024 -a(S'getTitle/1' -p121025 -S'getTitle(${1:This}) $2' -p121026 -tp121027 -a(S'getToolTip/1' -p121028 -S'getToolTip(${1:This}) $2' -p121029 -tp121030 -a(S'getUpdateRegion/1' -p121031 -S'getUpdateRegion(${1:This}) $2' -p121032 -tp121033 -a(S'getVirtualSize/1' -p121034 -S'getVirtualSize(${1:This}) $2' -p121035 -tp121036 -a(S'getWindowStyleFlag/1' -p121037 -S'getWindowStyleFlag(${1:This}) $2' -p121038 -tp121039 -a(S'getWindowVariant/1' -p121040 -S'getWindowVariant(${1:This}) $2' -p121041 -tp121042 -a(S'hasCapture/1' -p121043 -S'hasCapture(${1:This}) $2' -p121044 -tp121045 -a(S'hasScrollbar/2' -p121046 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p121047 -tp121048 -a(S'hasTransparentBackground/1' -p121049 -S'hasTransparentBackground(${1:This}) $2' -p121050 -tp121051 -a(S'hide/1' -p121052 -S'hide(${1:This}) $2' -p121053 -tp121054 -a(S'iconize/1' -p121055 -S'iconize(${1:This}) $2' -p121056 -tp121057 -a(S'iconize/2' -p121058 -S'iconize(${1:This}, ${2:Options}) $3' -p121059 -tp121060 -a(S'inheritAttributes/1' -p121061 -S'inheritAttributes(${1:This}) $2' -p121062 -tp121063 -a(S'initDialog/1' -p121064 -S'initDialog(${1:This}) $2' -p121065 -tp121066 -a(S'invalidateBestSize/1' -p121067 -S'invalidateBestSize(${1:This}) $2' -p121068 -tp121069 -a(S'isActive/1' -p121070 -S'isActive(${1:This}) $2' -p121071 -tp121072 -a(S'isEnabled/1' -p121073 -S'isEnabled(${1:This}) $2' -p121074 -tp121075 -a(S'isExposed/2' -p121076 -S'isExposed(${1:This}, ${2:Pt}) $3' -p121077 -tp121078 -a(S'isExposed/3' -p121079 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p121080 -tp121081 -a(S'isExposed/5' -p121082 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p121083 -tp121084 -a(S'isFullScreen/1' -p121085 -S'isFullScreen(${1:This}) $2' -p121086 -tp121087 -a(S'isIconized/1' -p121088 -S'isIconized(${1:This}) $2' -p121089 -tp121090 -a(S'isMaximized/1' -p121091 -S'isMaximized(${1:This}) $2' -p121092 -tp121093 -a(S'isModal/1' -p121094 -S'isModal(${1:This}) $2' -p121095 -tp121096 -a(S'isRetained/1' -p121097 -S'isRetained(${1:This}) $2' -p121098 -tp121099 -a(S'isShown/1' -p121100 -S'isShown(${1:This}) $2' -p121101 -tp121102 -a(S'isTopLevel/1' -p121103 -S'isTopLevel(${1:This}) $2' -p121104 -tp121105 -a(S'layout/1' -p121106 -S'layout(${1:This}) $2' -p121107 -tp121108 -a(S'lineDown/1' -p121109 -S'lineDown(${1:This}) $2' -p121110 -tp121111 -a(S'lineUp/1' -p121112 -S'lineUp(${1:This}) $2' -p121113 -tp121114 -a(S'lower/1' -p121115 -S'lower(${1:This}) $2' -p121116 -tp121117 -a(S'makeModal/1' -p121118 -S'makeModal(${1:This}) $2' -p121119 -tp121120 -a(S'makeModal/2' -p121121 -S'makeModal(${1:This}, ${2:Options}) $3' -p121122 -tp121123 -a(S'maximize/1' -p121124 -S'maximize(${1:This}) $2' -p121125 -tp121126 -a(S'maximize/2' -p121127 -S'maximize(${1:This}, ${2:Options}) $3' -p121128 -tp121129 -a(S'move/2' -p121130 -S'move(${1:This}, ${2:Pt}) $3' -p121131 -tp121132 -a(S'move/3' -p121133 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p121134 -tp121135 -a(S'move/4' -p121136 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p121137 -tp121138 -a(S'moveAfterInTabOrder/2' -p121139 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p121140 -tp121141 -a(S'moveBeforeInTabOrder/2' -p121142 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p121143 -tp121144 -a(S'navigate/1' -p121145 -S'navigate(${1:This}) $2' -p121146 -tp121147 -a(S'navigate/2' -p121148 -S'navigate(${1:This}, ${2:Options}) $3' -p121149 -tp121150 -a(S'new/0' -p121151 -S'new() $1' -p121152 -tp121153 -a(S'new/1' -p121154 -S'new(${1:Parent}) $2' -p121155 -tp121156 -a(S'new/2' -p121157 -S'new(${1:Parent}, ${2:Param2}) $3' -p121158 -tp121159 -a(S'pageDown/1' -p121160 -S'pageDown(${1:This}) $2' -p121161 -tp121162 -a(S'pageUp/1' -p121163 -S'pageUp(${1:This}) $2' -p121164 -tp121165 -a(S'parent_class/1' -p121166 -S'parent_class(${1:Param1}) $2' -p121167 -tp121168 -a(S'popEventHandler/1' -p121169 -S'popEventHandler(${1:This}) $2' -p121170 -tp121171 -a(S'popEventHandler/2' -p121172 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p121173 -tp121174 -a(S'popupMenu/2' -p121175 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p121176 -tp121177 -a(S'popupMenu/3' -p121178 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p121179 -tp121180 -a(S'popupMenu/4' -p121181 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p121182 -tp121183 -a(S'raise/1' -p121184 -S'raise(${1:This}) $2' -p121185 -tp121186 -a(S'refresh/1' -p121187 -S'refresh(${1:This}) $2' -p121188 -tp121189 -a(S'refresh/2' -p121190 -S'refresh(${1:This}, ${2:Options}) $3' -p121191 -tp121192 -a(S'refreshRect/2' -p121193 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p121194 -tp121195 -a(S'refreshRect/3' -p121196 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p121197 -tp121198 -a(S'releaseMouse/1' -p121199 -S'releaseMouse(${1:This}) $2' -p121200 -tp121201 -a(S'removeChild/2' -p121202 -S'removeChild(${1:This}, ${2:Child}) $3' -p121203 -tp121204 -a(S'reparent/2' -p121205 -S'reparent(${1:This}, ${2:NewParent}) $3' -p121206 -tp121207 -a(S'requestUserAttention/1' -p121208 -S'requestUserAttention(${1:This}) $2' -p121209 -tp121210 -a(S'requestUserAttention/2' -p121211 -S'requestUserAttention(${1:This}, ${2:Options}) $3' -p121212 -tp121213 -a(S'screenToClient/1' -p121214 -S'screenToClient(${1:This}) $2' -p121215 -tp121216 -a(S'screenToClient/2' -p121217 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p121218 -tp121219 -a(S'scrollLines/2' -p121220 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p121221 -tp121222 -a(S'scrollPages/2' -p121223 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p121224 -tp121225 -a(S'scrollWindow/3' -p121226 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p121227 -tp121228 -a(S'scrollWindow/4' -p121229 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p121230 -tp121231 -a(S'setAcceleratorTable/2' -p121232 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p121233 -tp121234 -a(S'setAffirmativeId/2' -p121235 -S'setAffirmativeId(${1:This}, ${2:AffirmativeId}) $3' -p121236 -tp121237 -a(S'setAutoLayout/2' -p121238 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p121239 -tp121240 -a(S'setBackgroundColour/2' -p121241 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p121242 -tp121243 -a(S'setBackgroundStyle/2' -p121244 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p121245 -tp121246 -a(S'setCaret/2' -p121247 -S'setCaret(${1:This}, ${2:Caret}) $3' -p121248 -tp121249 -a(S'setClientSize/2' -p121250 -S'setClientSize(${1:This}, ${2:Size}) $3' -p121251 -tp121252 -a(S'setClientSize/3' -p121253 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p121254 -tp121255 -a(S'setContainingSizer/2' -p121256 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p121257 -tp121258 -a(S'setCursor/2' -p121259 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p121260 -tp121261 -a(S'setDropTarget/2' -p121262 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p121263 -tp121264 -a(S'setExtraStyle/2' -p121265 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p121266 -tp121267 -a(S'setFocus/1' -p121268 -S'setFocus(${1:This}) $2' -p121269 -tp121270 -a(S'setFocusFromKbd/1' -p121271 -S'setFocusFromKbd(${1:This}) $2' -p121272 -tp121273 -a(S'setFont/2' -p121274 -S'setFont(${1:This}, ${2:Font}) $3' -p121275 -tp121276 -a(S'setForegroundColour/2' -p121277 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p121278 -tp121279 -a(S'setHelpText/2' -p121280 -S'setHelpText(${1:This}, ${2:Text}) $3' -p121281 -tp121282 -a(S'setIcon/2' -p121283 -S'setIcon(${1:This}, ${2:Icon}) $3' -p121284 -tp121285 -a(S'setIcons/2' -p121286 -S'setIcons(${1:This}, ${2:Icons}) $3' -p121287 -tp121288 -a(S'setId/2' -p121289 -S'setId(${1:This}, ${2:Winid}) $3' -p121290 -tp121291 -a(S'setLabel/2' -p121292 -S'setLabel(${1:This}, ${2:Label}) $3' -p121293 -tp121294 -a(S'setMaxSize/2' -p121295 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p121296 -tp121297 -a(S'setMinSize/2' -p121298 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p121299 -tp121300 -a(S'setName/2' -p121301 -S'setName(${1:This}, ${2:Name}) $3' -p121302 -tp121303 -a(S'setOwnBackgroundColour/2' -p121304 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p121305 -tp121306 -a(S'setOwnFont/2' -p121307 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p121308 -tp121309 -a(S'setOwnForegroundColour/2' -p121310 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p121311 -tp121312 -a(S'setPalette/2' -p121313 -S'setPalette(${1:This}, ${2:Pal}) $3' -p121314 -tp121315 -a(S'setReturnCode/2' -p121316 -S'setReturnCode(${1:This}, ${2:ReturnCode}) $3' -p121317 -tp121318 -a(S'setScrollPos/3' -p121319 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p121320 -tp121321 -a(S'setScrollPos/4' -p121322 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p121323 -tp121324 -a(S'setScrollbar/5' -p121325 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p121326 -tp121327 -a(S'setScrollbar/6' -p121328 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p121329 -tp121330 -a(S'setShape/2' -p121331 -S'setShape(${1:This}, ${2:Region}) $3' -p121332 -tp121333 -a(S'setSize/2' -p121334 -S'setSize(${1:This}, ${2:Rect}) $3' -p121335 -tp121336 -a(S'setSize/3' -p121337 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p121338 -tp121339 -a(S'setSize/5' -p121340 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p121341 -tp121342 -a(S'setSize/6' -p121343 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p121344 -tp121345 -a(S'setSizeHints/2' -p121346 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p121347 -tp121348 -a(S'setSizeHints/3' -p121349 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p121350 -tp121351 -a(S'setSizeHints/4' -p121352 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p121353 -tp121354 -a(S'setSizer/2' -p121355 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p121356 -tp121357 -a(S'setSizer/3' -p121358 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p121359 -tp121360 -a(S'setSizerAndFit/2' -p121361 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p121362 -tp121363 -a(S'setSizerAndFit/3' -p121364 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p121365 -tp121366 -a(S'setThemeEnabled/2' -p121367 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p121368 -tp121369 -a(S'setTitle/2' -p121370 -S'setTitle(${1:This}, ${2:Title}) $3' -p121371 -tp121372 -a(S'setToolTip/2' -p121373 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p121374 -tp121375 -a(S'setVirtualSize/2' -p121376 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p121377 -tp121378 -a(S'setVirtualSize/3' -p121379 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p121380 -tp121381 -a(S'setVirtualSizeHints/2' -p121382 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p121383 -tp121384 -a(S'setVirtualSizeHints/3' -p121385 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p121386 -tp121387 -a(S'setVirtualSizeHints/4' -p121388 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p121389 -tp121390 -a(S'setWindowStyle/2' -p121391 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p121392 -tp121393 -a(S'setWindowStyleFlag/2' -p121394 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p121395 -tp121396 -a(S'setWindowVariant/2' -p121397 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p121398 -tp121399 -a(S'shouldInheritColours/1' -p121400 -S'shouldInheritColours(${1:This}) $2' -p121401 -tp121402 -a(S'show/1' -p121403 -S'show(${1:This}) $2' -p121404 -tp121405 -a(S'show/2' -p121406 -S'show(${1:This}, ${2:Options}) $3' -p121407 -tp121408 -a(S'showFullScreen/2' -p121409 -S'showFullScreen(${1:This}, ${2:Show}) $3' -p121410 -tp121411 -a(S'showFullScreen/3' -p121412 -S'showFullScreen(${1:This}, ${2:Show}, ${3:Options}) $4' -p121413 -tp121414 -a(S'showModal/1' -p121415 -S'showModal(${1:This}) $2' -p121416 -tp121417 -a(S'thaw/1' -p121418 -S'thaw(${1:This}) $2' -p121419 -tp121420 -a(S'transferDataFromWindow/1' -p121421 -S'transferDataFromWindow(${1:This}) $2' -p121422 -tp121423 -a(S'transferDataToWindow/1' -p121424 -S'transferDataToWindow(${1:This}) $2' -p121425 -tp121426 -a(S'update/1' -p121427 -S'update(${1:This}) $2' -p121428 -tp121429 -a(S'updateWindowUI/1' -p121430 -S'updateWindowUI(${1:This}) $2' -p121431 -tp121432 -a(S'updateWindowUI/2' -p121433 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p121434 -tp121435 -a(S'validate/1' -p121436 -S'validate(${1:This}) $2' -p121437 -tp121438 -a(S'warpPointer/3' -p121439 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p121440 -tp121441 -asS'zip' -p121442 -(lp121443 -(S'create/2' -p121444 -S'create(${1:Name}, ${2:FileList}) $3' -p121445 -tp121446 -a(S'create/3' -p121447 -S'create(${1:Name}, ${2:FileList}, ${3:Options}) $4' -p121448 -tp121449 -a(S'extract/1' -p121450 -S'extract(${1:Archive}) $2' -p121451 -tp121452 -a(S'extract/2' -p121453 -S'extract(${1:Archive}, ${2:Options}) $3' -p121454 -tp121455 -a(S'foldl/3' -p121456 -S'foldl(${1:Fun}, ${2:Acc0}, ${3:Archive}) $4' -p121457 -tp121458 -a(S'list_dir/1' -p121459 -S'list_dir(${1:Archive}) $2' -p121460 -tp121461 -a(S'list_dir/2' -p121462 -S'list_dir(${1:Archive}, ${2:Options}) $3' -p121463 -tp121464 -a(S'openzip_close/1' -p121465 -S'openzip_close(${1:Param1}) $2' -p121466 -tp121467 -a(S'openzip_get/1' -p121468 -S'openzip_get(${1:OpenZip}) $2' -p121469 -tp121470 -a(S'openzip_get/2' -p121471 -S'openzip_get(${1:FileName}, ${2:OpenZip}) $3' -p121472 -tp121473 -a(S'openzip_list_dir/1' -p121474 -S'openzip_list_dir(${1:Param1}) $2' -p121475 -tp121476 -a(S'openzip_list_dir/2' -p121477 -S'openzip_list_dir(${1:Param1}, ${2:Param2}) $3' -p121478 -tp121479 -a(S'openzip_open/1' -p121480 -S'openzip_open(${1:F}) $2' -p121481 -tp121482 -a(S'openzip_open/2' -p121483 -S'openzip_open(${1:F}, ${2:Options}) $3' -p121484 -tp121485 -a(S'openzip_t/1' -p121486 -S'openzip_t(${1:Param1}) $2' -p121487 -tp121488 -a(S'openzip_tt/1' -p121489 -S'openzip_tt(${1:Param1}) $2' -p121490 -tp121491 -a(S't/1' -p121492 -S't(${1:OpenZip}) $2' -p121493 -tp121494 -a(S'table/1' -p121495 -S'table(${1:Archive}) $2' -p121496 -tp121497 -a(S'table/2' -p121498 -S'table(${1:Archive}, ${2:Options}) $3' -p121499 -tp121500 -a(S'tt/1' -p121501 -S'tt(${1:Archive}) $2' -p121502 -tp121503 -a(S'unzip/1' -p121504 -S'unzip(${1:Archive}) $2' -p121505 -tp121506 -a(S'unzip/2' -p121507 -S'unzip(${1:Archive}, ${2:Options}) $3' -p121508 -tp121509 -a(S'zip/2' -p121510 -S'zip(${1:Archive}, ${2:Options}) $3' -p121511 -tp121512 -a(S'zip/3' -p121513 -S'zip(${1:Name}, ${2:FileList}, ${3:Options}) $4' -p121514 -tp121515 -a(S'zip_close/1' -p121516 -S'zip_close(${1:ZipHandle}) $2' -p121517 -tp121518 -a(S'zip_get/1' -p121519 -S'zip_get(${1:OpenZip}) $2' -p121520 -tp121521 -a(S'zip_get/2' -p121522 -S'zip_get(${1:FileName}, ${2:OpenZip}) $3' -p121523 -tp121524 -a(S'zip_get_state/1' -p121525 -S'zip_get_state(${1:Pid}) $2' -p121526 -tp121527 -a(S'zip_list_dir/1' -p121528 -S'zip_list_dir(${1:ZipHandle}) $2' -p121529 -tp121530 -a(S'zip_list_dir/2' -p121531 -S'zip_list_dir(${1:Pid}, ${2:Opts}) $3' -p121532 -tp121533 -a(S'zip_open/1' -p121534 -S'zip_open(${1:F}) $2' -p121535 -tp121536 -a(S'zip_open/2' -p121537 -S'zip_open(${1:F}, ${2:Options}) $3' -p121538 -tp121539 -a(S'zip_t/1' -p121540 -S'zip_t(${1:Pid}) $2' -p121541 -tp121542 -a(S'zip_tt/1' -p121543 -S'zip_tt(${1:Pid}) $2' -p121544 -tp121545 -asS'snmpa_trap' -p121546 -(lp121547 -(S'construct_trap/2' -p121548 -S'construct_trap(${1:Trap}, ${2:Varbinds}) $3' -p121549 -tp121550 -a(S'init_discovery_inform/12' -p121551 -S'init_discovery_inform() $1' -p121552 -tp121553 -a(S'init_discovery_inform/13' -p121554 -S'init_discovery_inform() $1' -p121555 -tp121556 -a(S'init_v2_inform/10' -p121557 -S'init_v2_inform() $1' -p121558 -tp121559 -a(S'init_v2_inform/9' -p121560 -S'init_v2_inform(${1:Addr}, ${2:Timeout}, ${3:Retry}, ${4:Vbs}, ${5:Recv}, ${6:NetIf}, ${7:Community}, ${8:V}, ${9:S}) $10' -p121561 -tp121562 -a(S'init_v3_inform/10' -p121563 -S'init_v3_inform() $1' -p121564 -tp121565 -a(S'init_v3_inform/11' -p121566 -S'init_v3_inform() $1' -p121567 -tp121568 -a(S'init_v3_inform/9' -p121569 -S'init_v3_inform(${1:Addr}, ${2:Timeout}, ${3:Retry}, ${4:Vbs}, ${5:Recv}, ${6:NetIf}, ${7:ContextName}, ${8:V}, ${9:S}) $10' -p121570 -tp121571 -a(S'send_discovery/5' -p121572 -S'send_discovery(${1:TargetName}, ${2:Record}, ${3:ContextName}, ${4:Vbs}, ${5:NetIf}) $6' -p121573 -tp121574 -a(S'send_discovery/6' -p121575 -S'send_discovery(${1:TargetName}, ${2:Record}, ${3:ContextName}, ${4:Vbs}, ${5:NetIf}, ${6:ExtraInfo}) $7' -p121576 -tp121577 -a(S'send_discovery_inform/5' -p121578 -S'send_discovery_inform(${1:Parent}, ${2:Timeout}, ${3:Retry}, ${4:Msg}, ${5:NetIf}) $6' -p121579 -tp121580 -a(S'send_inform/6' -p121581 -S'send_inform(${1:Addr}, ${2:Timeout}, ${3:Retry}, ${4:Msg}, ${5:Recv}, ${6:NetIf}) $7' -p121582 -tp121583 -a(S'send_trap/6' -p121584 -S'send_trap(${1:TrapRec}, ${2:NotifyName}, ${3:ContextName}, ${4:Recv}, ${5:Vbs}, ${6:NetIf}) $7' -p121585 -tp121586 -a(S'send_trap/7' -p121587 -S'send_trap(${1:TrapRec}, ${2:NotifyName}, ${3:ContextName}, ${4:Recv}, ${5:Vbs}, ${6:ExtraInfo}, ${7:NetIf}) $8' -p121588 -tp121589 -a(S'send_trap/8' -p121590 -S'send_trap() $1' -p121591 -tp121592 -a(S'try_initialise_vars/2' -p121593 -S'try_initialise_vars(${1:Mib}, ${2:Varbinds}) $3' -p121594 -tp121595 -asS'megaco_flex_scanner_handler' -p121596 -(lp121597 -(S'code_change/3' -p121598 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p121599 -tp121600 -a(S'get_config/1' -p121601 -S'get_config(${1:Pid}) $2' -p121602 -tp121603 -a(S'handle_call/3' -p121604 -S'handle_call(${1:Req}, ${2:From}, ${3:S}) $4' -p121605 -tp121606 -a(S'handle_cast/2' -p121607 -S'handle_cast(${1:Msg}, ${2:S}) $3' -p121608 -tp121609 -a(S'handle_info/2' -p121610 -S'handle_info(${1:Info}, ${2:S}) $3' -p121611 -tp121612 -a(S'init/1' -p121613 -S'init(${1:Param1}) $2' -p121614 -tp121615 -a(S'start_link/0' -p121616 -S'start_link() $1' -p121617 -tp121618 -a(S'start_link/1' -p121619 -S'start_link(${1:Opts}) $2' -p121620 -tp121621 -a(S'stop/1' -p121622 -S'stop(${1:Pid}) $2' -p121623 -tp121624 -a(S'terminate/2' -p121625 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p121626 -tp121627 -asS'gstk_menubutton' -p121628 -(lp121629 -(S'config/3' -p121630 -S'config(${1:DB}, ${2:Gstkid}, ${3:Opts}) $4' -p121631 -tp121632 -a(S'create/3' -p121633 -S'create(${1:DB}, ${2:GstkId}, ${3:Opts}) $4' -p121634 -tp121635 -a(S'delete/2' -p121636 -S'delete(${1:DB}, ${2:Gstkid}) $3' -p121637 -tp121638 -a(S'event/5' -p121639 -S'event(${1:DB}, ${2:Gstkid}, ${3:Etype}, ${4:Edata}, ${5:Args}) $6' -p121640 -tp121641 -a(S'mk_create_opts_for_child/4' -p121642 -S'mk_create_opts_for_child(${1:DB}, ${2:Cgstkid}, ${3:Pgstkid}, ${4:Opts}) $5' -p121643 -tp121644 -a(S'option/5' -p121645 -S'option(${1:Option}, ${2:Gstkid}, ${3:TkW}, ${4:DB}, ${5:Param5}) $6' -p121646 -tp121647 -a(S'read/3' -p121648 -S'read(${1:DB}, ${2:Gstkid}, ${3:Opt}) $4' -p121649 -tp121650 -a(S'read_option/5' -p121651 -S'read_option(${1:Option}, ${2:GstkId}, ${3:TkW}, ${4:Param4}, ${5:Param5}) $6' -p121652 -tp121653 -asS'reltool_fgraph_win' -p121654 -(lp121655 -(S'add_link/2' -p121656 -S'add_link(${1:Pid}, ${2:Param2}) $3' -p121657 -tp121658 -a(S'add_node/2' -p121659 -S'add_node(${1:Pid}, ${2:Key}) $3' -p121660 -tp121661 -a(S'add_node/3' -p121662 -S'add_node(${1:Pid}, ${2:Key}, ${3:Color}) $4' -p121663 -tp121664 -a(S'change_node/3' -p121665 -S'change_node(${1:Pid}, ${2:Key}, ${3:Color}) $4' -p121666 -tp121667 -a(S'del_link/2' -p121668 -S'del_link(${1:Pid}, ${2:Param2}) $3' -p121669 -tp121670 -a(S'del_node/2' -p121671 -S'del_node(${1:Pid}, ${2:Key}) $3' -p121672 -tp121673 -a(S'new/2' -p121674 -S'new(${1:Parent}, ${2:Options}) $3' -p121675 -tp121676 -a(S'set_dbl_click/2' -p121677 -S'set_dbl_click(${1:Pid}, ${2:Fun}) $3' -p121678 -tp121679 -a(S'stop/2' -p121680 -S'stop(${1:Pid}, ${2:Reason}) $3' -p121681 -tp121682 -asS'process_info' -p121683 -(lp121684 -(S'code_change/3' -p121685 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p121686 -tp121687 -a(S'get_application_keys/2' -p121688 -S'get_application_keys(${1:App}, ${2:Node}) $3' -p121689 -tp121690 -a(S'get_applications/1' -p121691 -S'get_applications(${1:Node}) $2' -p121692 -tp121693 -a(S'get_nodes/0' -p121694 -S'get_nodes() $1' -p121695 -tp121696 -a(S'get_process_data/2' -p121697 -S'get_process_data(${1:Pid}, ${2:Node}) $3' -p121698 -tp121699 -a(S'get_processes/3' -p121700 -S'get_processes(${1:App}, ${2:Mode}, ${3:Node}) $4' -p121701 -tp121702 -a(S'handle_call/3' -p121703 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p121704 -tp121705 -a(S'handle_cast/2' -p121706 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p121707 -tp121708 -a(S'handle_info/2' -p121709 -S'handle_info(${1:Param1}, ${2:State}) $3' -p121710 -tp121711 -a(S'init/1' -p121712 -S'init(${1:Param1}) $2' -p121713 -tp121714 -a(S'is_node/1' -p121715 -S'is_node(${1:NodeS}) $2' -p121716 -tp121717 -a(S'send_trace/1' -p121718 -S'send_trace(${1:PidL}) $2' -p121719 -tp121720 -a(S'start/0' -p121721 -S'start() $1' -p121722 -tp121723 -a(S'start_link/0' -p121724 -S'start_link() $1' -p121725 -tp121726 -a(S'stop/0' -p121727 -S'stop() $1' -p121728 -tp121729 -a(S'terminate/2' -p121730 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p121731 -tp121732 -asS'wxButton' -p121733 -(lp121734 -(S'cacheBestSize/2' -p121735 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p121736 -tp121737 -a(S'captureMouse/1' -p121738 -S'captureMouse(${1:This}) $2' -p121739 -tp121740 -a(S'center/1' -p121741 -S'center(${1:This}) $2' -p121742 -tp121743 -a(S'center/2' -p121744 -S'center(${1:This}, ${2:Options}) $3' -p121745 -tp121746 -a(S'centerOnParent/1' -p121747 -S'centerOnParent(${1:This}) $2' -p121748 -tp121749 -a(S'centerOnParent/2' -p121750 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p121751 -tp121752 -a(S'centre/1' -p121753 -S'centre(${1:This}) $2' -p121754 -tp121755 -a(S'centre/2' -p121756 -S'centre(${1:This}, ${2:Options}) $3' -p121757 -tp121758 -a(S'centreOnParent/1' -p121759 -S'centreOnParent(${1:This}) $2' -p121760 -tp121761 -a(S'centreOnParent/2' -p121762 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p121763 -tp121764 -a(S'clearBackground/1' -p121765 -S'clearBackground(${1:This}) $2' -p121766 -tp121767 -a(S'clientToScreen/2' -p121768 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p121769 -tp121770 -a(S'clientToScreen/3' -p121771 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p121772 -tp121773 -a(S'close/1' -p121774 -S'close(${1:This}) $2' -p121775 -tp121776 -a(S'close/2' -p121777 -S'close(${1:This}, ${2:Options}) $3' -p121778 -tp121779 -a(S'connect/2' -p121780 -S'connect(${1:This}, ${2:EventType}) $3' -p121781 -tp121782 -a(S'connect/3' -p121783 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p121784 -tp121785 -a(S'convertDialogToPixels/2' -p121786 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p121787 -tp121788 -a(S'convertPixelsToDialog/2' -p121789 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p121790 -tp121791 -a(S'create/3' -p121792 -S'create(${1:This}, ${2:Parent}, ${3:Id}) $4' -p121793 -tp121794 -a(S'create/4' -p121795 -S'create(${1:This}, ${2:Parent}, ${3:Id}, ${4:Param4}) $5' -p121796 -tp121797 -a(S'destroy/1' -p121798 -S'destroy(${1:This}) $2' -p121799 -tp121800 -a(S'destroyChildren/1' -p121801 -S'destroyChildren(${1:This}) $2' -p121802 -tp121803 -a(S'disable/1' -p121804 -S'disable(${1:This}) $2' -p121805 -tp121806 -a(S'disconnect/1' -p121807 -S'disconnect(${1:This}) $2' -p121808 -tp121809 -a(S'disconnect/2' -p121810 -S'disconnect(${1:This}, ${2:EventType}) $3' -p121811 -tp121812 -a(S'disconnect/3' -p121813 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p121814 -tp121815 -a(S'enable/1' -p121816 -S'enable(${1:This}) $2' -p121817 -tp121818 -a(S'enable/2' -p121819 -S'enable(${1:This}, ${2:Options}) $3' -p121820 -tp121821 -a(S'findWindow/2' -p121822 -S'findWindow(${1:This}, ${2:Winid}) $3' -p121823 -tp121824 -a(S'fit/1' -p121825 -S'fit(${1:This}) $2' -p121826 -tp121827 -a(S'fitInside/1' -p121828 -S'fitInside(${1:This}) $2' -p121829 -tp121830 -a(S'freeze/1' -p121831 -S'freeze(${1:This}) $2' -p121832 -tp121833 -a(S'getAcceleratorTable/1' -p121834 -S'getAcceleratorTable(${1:This}) $2' -p121835 -tp121836 -a(S'getBackgroundColour/1' -p121837 -S'getBackgroundColour(${1:This}) $2' -p121838 -tp121839 -a(S'getBackgroundStyle/1' -p121840 -S'getBackgroundStyle(${1:This}) $2' -p121841 -tp121842 -a(S'getBestSize/1' -p121843 -S'getBestSize(${1:This}) $2' -p121844 -tp121845 -a(S'getCaret/1' -p121846 -S'getCaret(${1:This}) $2' -p121847 -tp121848 -a(S'getCharHeight/1' -p121849 -S'getCharHeight(${1:This}) $2' -p121850 -tp121851 -a(S'getCharWidth/1' -p121852 -S'getCharWidth(${1:This}) $2' -p121853 -tp121854 -a(S'getChildren/1' -p121855 -S'getChildren(${1:This}) $2' -p121856 -tp121857 -a(S'getClientSize/1' -p121858 -S'getClientSize(${1:This}) $2' -p121859 -tp121860 -a(S'getContainingSizer/1' -p121861 -S'getContainingSizer(${1:This}) $2' -p121862 -tp121863 -a(S'getCursor/1' -p121864 -S'getCursor(${1:This}) $2' -p121865 -tp121866 -a(S'getDefaultSize/0' -p121867 -S'getDefaultSize() $1' -p121868 -tp121869 -a(S'getDropTarget/1' -p121870 -S'getDropTarget(${1:This}) $2' -p121871 -tp121872 -a(S'getEventHandler/1' -p121873 -S'getEventHandler(${1:This}) $2' -p121874 -tp121875 -a(S'getExtraStyle/1' -p121876 -S'getExtraStyle(${1:This}) $2' -p121877 -tp121878 -a(S'getFont/1' -p121879 -S'getFont(${1:This}) $2' -p121880 -tp121881 -a(S'getForegroundColour/1' -p121882 -S'getForegroundColour(${1:This}) $2' -p121883 -tp121884 -a(S'getGrandParent/1' -p121885 -S'getGrandParent(${1:This}) $2' -p121886 -tp121887 -a(S'getHandle/1' -p121888 -S'getHandle(${1:This}) $2' -p121889 -tp121890 -a(S'getHelpText/1' -p121891 -S'getHelpText(${1:This}) $2' -p121892 -tp121893 -a(S'getId/1' -p121894 -S'getId(${1:This}) $2' -p121895 -tp121896 -a(S'getLabel/1' -p121897 -S'getLabel(${1:This}) $2' -p121898 -tp121899 -a(S'getMaxSize/1' -p121900 -S'getMaxSize(${1:This}) $2' -p121901 -tp121902 -a(S'getMinSize/1' -p121903 -S'getMinSize(${1:This}) $2' -p121904 -tp121905 -a(S'getName/1' -p121906 -S'getName(${1:This}) $2' -p121907 -tp121908 -a(S'getParent/1' -p121909 -S'getParent(${1:This}) $2' -p121910 -tp121911 -a(S'getPosition/1' -p121912 -S'getPosition(${1:This}) $2' -p121913 -tp121914 -a(S'getRect/1' -p121915 -S'getRect(${1:This}) $2' -p121916 -tp121917 -a(S'getScreenPosition/1' -p121918 -S'getScreenPosition(${1:This}) $2' -p121919 -tp121920 -a(S'getScreenRect/1' -p121921 -S'getScreenRect(${1:This}) $2' -p121922 -tp121923 -a(S'getScrollPos/2' -p121924 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p121925 -tp121926 -a(S'getScrollRange/2' -p121927 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p121928 -tp121929 -a(S'getScrollThumb/2' -p121930 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p121931 -tp121932 -a(S'getSize/1' -p121933 -S'getSize(${1:This}) $2' -p121934 -tp121935 -a(S'getSizer/1' -p121936 -S'getSizer(${1:This}) $2' -p121937 -tp121938 -a(S'getTextExtent/2' -p121939 -S'getTextExtent(${1:This}, ${2:String}) $3' -p121940 -tp121941 -a(S'getTextExtent/3' -p121942 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p121943 -tp121944 -a(S'getToolTip/1' -p121945 -S'getToolTip(${1:This}) $2' -p121946 -tp121947 -a(S'getUpdateRegion/1' -p121948 -S'getUpdateRegion(${1:This}) $2' -p121949 -tp121950 -a(S'getVirtualSize/1' -p121951 -S'getVirtualSize(${1:This}) $2' -p121952 -tp121953 -a(S'getWindowStyleFlag/1' -p121954 -S'getWindowStyleFlag(${1:This}) $2' -p121955 -tp121956 -a(S'getWindowVariant/1' -p121957 -S'getWindowVariant(${1:This}) $2' -p121958 -tp121959 -a(S'hasCapture/1' -p121960 -S'hasCapture(${1:This}) $2' -p121961 -tp121962 -a(S'hasScrollbar/2' -p121963 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p121964 -tp121965 -a(S'hasTransparentBackground/1' -p121966 -S'hasTransparentBackground(${1:This}) $2' -p121967 -tp121968 -a(S'hide/1' -p121969 -S'hide(${1:This}) $2' -p121970 -tp121971 -a(S'inheritAttributes/1' -p121972 -S'inheritAttributes(${1:This}) $2' -p121973 -tp121974 -a(S'initDialog/1' -p121975 -S'initDialog(${1:This}) $2' -p121976 -tp121977 -a(S'invalidateBestSize/1' -p121978 -S'invalidateBestSize(${1:This}) $2' -p121979 -tp121980 -a(S'isEnabled/1' -p121981 -S'isEnabled(${1:This}) $2' -p121982 -tp121983 -a(S'isExposed/2' -p121984 -S'isExposed(${1:This}, ${2:Pt}) $3' -p121985 -tp121986 -a(S'isExposed/3' -p121987 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p121988 -tp121989 -a(S'isExposed/5' -p121990 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p121991 -tp121992 -a(S'isRetained/1' -p121993 -S'isRetained(${1:This}) $2' -p121994 -tp121995 -a(S'isShown/1' -p121996 -S'isShown(${1:This}) $2' -p121997 -tp121998 -a(S'isTopLevel/1' -p121999 -S'isTopLevel(${1:This}) $2' -p122000 -tp122001 -a(S'layout/1' -p122002 -S'layout(${1:This}) $2' -p122003 -tp122004 -a(S'lineDown/1' -p122005 -S'lineDown(${1:This}) $2' -p122006 -tp122007 -a(S'lineUp/1' -p122008 -S'lineUp(${1:This}) $2' -p122009 -tp122010 -a(S'lower/1' -p122011 -S'lower(${1:This}) $2' -p122012 -tp122013 -a(S'makeModal/1' -p122014 -S'makeModal(${1:This}) $2' -p122015 -tp122016 -a(S'makeModal/2' -p122017 -S'makeModal(${1:This}, ${2:Options}) $3' -p122018 -tp122019 -a(S'move/2' -p122020 -S'move(${1:This}, ${2:Pt}) $3' -p122021 -tp122022 -a(S'move/3' -p122023 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p122024 -tp122025 -a(S'move/4' -p122026 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p122027 -tp122028 -a(S'moveAfterInTabOrder/2' -p122029 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p122030 -tp122031 -a(S'moveBeforeInTabOrder/2' -p122032 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p122033 -tp122034 -a(S'navigate/1' -p122035 -S'navigate(${1:This}) $2' -p122036 -tp122037 -a(S'navigate/2' -p122038 -S'navigate(${1:This}, ${2:Options}) $3' -p122039 -tp122040 -a(S'new/0' -p122041 -S'new() $1' -p122042 -tp122043 -a(S'new/2' -p122044 -S'new(${1:Parent}, ${2:Id}) $3' -p122045 -tp122046 -a(S'new/3' -p122047 -S'new(${1:Parent}, ${2:Id}, ${3:Param3}) $4' -p122048 -tp122049 -a(S'pageDown/1' -p122050 -S'pageDown(${1:This}) $2' -p122051 -tp122052 -a(S'pageUp/1' -p122053 -S'pageUp(${1:This}) $2' -p122054 -tp122055 -a(S'parent_class/1' -p122056 -S'parent_class(${1:Param1}) $2' -p122057 -tp122058 -a(S'popEventHandler/1' -p122059 -S'popEventHandler(${1:This}) $2' -p122060 -tp122061 -a(S'popEventHandler/2' -p122062 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p122063 -tp122064 -a(S'popupMenu/2' -p122065 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p122066 -tp122067 -a(S'popupMenu/3' -p122068 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p122069 -tp122070 -a(S'popupMenu/4' -p122071 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p122072 -tp122073 -a(S'raise/1' -p122074 -S'raise(${1:This}) $2' -p122075 -tp122076 -a(S'refresh/1' -p122077 -S'refresh(${1:This}) $2' -p122078 -tp122079 -a(S'refresh/2' -p122080 -S'refresh(${1:This}, ${2:Options}) $3' -p122081 -tp122082 -a(S'refreshRect/2' -p122083 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p122084 -tp122085 -a(S'refreshRect/3' -p122086 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p122087 -tp122088 -a(S'releaseMouse/1' -p122089 -S'releaseMouse(${1:This}) $2' -p122090 -tp122091 -a(S'removeChild/2' -p122092 -S'removeChild(${1:This}, ${2:Child}) $3' -p122093 -tp122094 -a(S'reparent/2' -p122095 -S'reparent(${1:This}, ${2:NewParent}) $3' -p122096 -tp122097 -a(S'screenToClient/1' -p122098 -S'screenToClient(${1:This}) $2' -p122099 -tp122100 -a(S'screenToClient/2' -p122101 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p122102 -tp122103 -a(S'scrollLines/2' -p122104 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p122105 -tp122106 -a(S'scrollPages/2' -p122107 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p122108 -tp122109 -a(S'scrollWindow/3' -p122110 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p122111 -tp122112 -a(S'scrollWindow/4' -p122113 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p122114 -tp122115 -a(S'setAcceleratorTable/2' -p122116 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p122117 -tp122118 -a(S'setAutoLayout/2' -p122119 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p122120 -tp122121 -a(S'setBackgroundColour/2' -p122122 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p122123 -tp122124 -a(S'setBackgroundStyle/2' -p122125 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p122126 -tp122127 -a(S'setCaret/2' -p122128 -S'setCaret(${1:This}, ${2:Caret}) $3' -p122129 -tp122130 -a(S'setClientSize/2' -p122131 -S'setClientSize(${1:This}, ${2:Size}) $3' -p122132 -tp122133 -a(S'setClientSize/3' -p122134 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p122135 -tp122136 -a(S'setContainingSizer/2' -p122137 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p122138 -tp122139 -a(S'setCursor/2' -p122140 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p122141 -tp122142 -a(S'setDefault/1' -p122143 -S'setDefault(${1:This}) $2' -p122144 -tp122145 -a(S'setDropTarget/2' -p122146 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p122147 -tp122148 -a(S'setExtraStyle/2' -p122149 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p122150 -tp122151 -a(S'setFocus/1' -p122152 -S'setFocus(${1:This}) $2' -p122153 -tp122154 -a(S'setFocusFromKbd/1' -p122155 -S'setFocusFromKbd(${1:This}) $2' -p122156 -tp122157 -a(S'setFont/2' -p122158 -S'setFont(${1:This}, ${2:Font}) $3' -p122159 -tp122160 -a(S'setForegroundColour/2' -p122161 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p122162 -tp122163 -a(S'setHelpText/2' -p122164 -S'setHelpText(${1:This}, ${2:Text}) $3' -p122165 -tp122166 -a(S'setId/2' -p122167 -S'setId(${1:This}, ${2:Winid}) $3' -p122168 -tp122169 -a(S'setLabel/2' -p122170 -S'setLabel(${1:This}, ${2:Label}) $3' -p122171 -tp122172 -a(S'setMaxSize/2' -p122173 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p122174 -tp122175 -a(S'setMinSize/2' -p122176 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p122177 -tp122178 -a(S'setName/2' -p122179 -S'setName(${1:This}, ${2:Name}) $3' -p122180 -tp122181 -a(S'setOwnBackgroundColour/2' -p122182 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p122183 -tp122184 -a(S'setOwnFont/2' -p122185 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p122186 -tp122187 -a(S'setOwnForegroundColour/2' -p122188 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p122189 -tp122190 -a(S'setPalette/2' -p122191 -S'setPalette(${1:This}, ${2:Pal}) $3' -p122192 -tp122193 -a(S'setScrollPos/3' -p122194 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p122195 -tp122196 -a(S'setScrollPos/4' -p122197 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p122198 -tp122199 -a(S'setScrollbar/5' -p122200 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p122201 -tp122202 -a(S'setScrollbar/6' -p122203 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p122204 -tp122205 -a(S'setSize/2' -p122206 -S'setSize(${1:This}, ${2:Rect}) $3' -p122207 -tp122208 -a(S'setSize/3' -p122209 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p122210 -tp122211 -a(S'setSize/5' -p122212 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p122213 -tp122214 -a(S'setSize/6' -p122215 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p122216 -tp122217 -a(S'setSizeHints/2' -p122218 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p122219 -tp122220 -a(S'setSizeHints/3' -p122221 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p122222 -tp122223 -a(S'setSizeHints/4' -p122224 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p122225 -tp122226 -a(S'setSizer/2' -p122227 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p122228 -tp122229 -a(S'setSizer/3' -p122230 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p122231 -tp122232 -a(S'setSizerAndFit/2' -p122233 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p122234 -tp122235 -a(S'setSizerAndFit/3' -p122236 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p122237 -tp122238 -a(S'setThemeEnabled/2' -p122239 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p122240 -tp122241 -a(S'setToolTip/2' -p122242 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p122243 -tp122244 -a(S'setVirtualSize/2' -p122245 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p122246 -tp122247 -a(S'setVirtualSize/3' -p122248 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p122249 -tp122250 -a(S'setVirtualSizeHints/2' -p122251 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p122252 -tp122253 -a(S'setVirtualSizeHints/3' -p122254 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p122255 -tp122256 -a(S'setVirtualSizeHints/4' -p122257 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p122258 -tp122259 -a(S'setWindowStyle/2' -p122260 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p122261 -tp122262 -a(S'setWindowStyleFlag/2' -p122263 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p122264 -tp122265 -a(S'setWindowVariant/2' -p122266 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p122267 -tp122268 -a(S'shouldInheritColours/1' -p122269 -S'shouldInheritColours(${1:This}) $2' -p122270 -tp122271 -a(S'show/1' -p122272 -S'show(${1:This}) $2' -p122273 -tp122274 -a(S'show/2' -p122275 -S'show(${1:This}, ${2:Options}) $3' -p122276 -tp122277 -a(S'thaw/1' -p122278 -S'thaw(${1:This}) $2' -p122279 -tp122280 -a(S'transferDataFromWindow/1' -p122281 -S'transferDataFromWindow(${1:This}) $2' -p122282 -tp122283 -a(S'transferDataToWindow/1' -p122284 -S'transferDataToWindow(${1:This}) $2' -p122285 -tp122286 -a(S'update/1' -p122287 -S'update(${1:This}) $2' -p122288 -tp122289 -a(S'updateWindowUI/1' -p122290 -S'updateWindowUI(${1:This}) $2' -p122291 -tp122292 -a(S'updateWindowUI/2' -p122293 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p122294 -tp122295 -a(S'validate/1' -p122296 -S'validate(${1:This}) $2' -p122297 -tp122298 -a(S'warpPointer/3' -p122299 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p122300 -tp122301 -asS'xref_compiler' -p122302 -(lp122303 -(S'compile/2' -p122304 -S'compile(${1:Chars}, ${2:Table}) $3' -p122305 -tp122306 -a(S'format_error/1' -p122307 -S'format_error(${1:E}) $2' -p122308 -tp122309 -a(S'update_graph_counter/3' -p122310 -S'update_graph_counter(${1:Value}, ${2:Inc}, ${3:T}) $4' -p122311 -tp122312 -asS'CosNotifyChannelAdmin_ChannelIDSeq' -p122313 -(lp122314 -(S'id/0' -p122315 -S'id() $1' -p122316 -tp122317 -a(S'name/0' -p122318 -S'name() $1' -p122319 -tp122320 -a(S'tc/0' -p122321 -S'tc() $1' -p122322 -tp122323 -asS'xmerl_xpath_lib' -p122324 -(lp122325 -(S'eval/3' -p122326 -S'eval(${1:Param1}, ${2:PrimExpr}, ${3:C}) $4' -p122327 -tp122328 -asS'xmerl_simple' -p122329 -(lp122330 -(S'file/2' -p122331 -S'file(${1:Fname}, ${2:Opts}) $3' -p122332 -tp122333 -a(S'string/2' -p122334 -S'string(${1:Str}, ${2:Opts}) $3' -p122335 -tp122336 -asS'test_server_ctrl' -p122337 -(lp122338 -(S'abort/0' -p122339 -S'abort() $1' -p122340 -tp122341 -a(S'abort_current_testcase/1' -p122342 -S'abort_current_testcase(${1:Reason}) $2' -p122343 -tp122344 -a(S'add_case/2' -p122345 -S'add_case(${1:Mod}, ${2:Case}) $3' -p122346 -tp122347 -a(S'add_case/3' -p122348 -S'add_case(${1:Name}, ${2:Mod}, ${3:Case}) $4' -p122349 -tp122350 -a(S'add_case_with_skip/3' -p122351 -S'add_case_with_skip(${1:Mod}, ${2:Case}, ${3:Skip}) $4' -p122352 -tp122353 -a(S'add_case_with_skip/4' -p122354 -S'add_case_with_skip(${1:Name}, ${2:Mod}, ${3:Case}, ${4:Skip}) $5' -p122355 -tp122356 -a(S'add_cases/2' -p122357 -S'add_cases(${1:Mod}, ${2:Cases}) $3' -p122358 -tp122359 -a(S'add_cases/3' -p122360 -S'add_cases(${1:Name}, ${2:Mod}, ${3:Cases}) $4' -p122361 -tp122362 -a(S'add_cases_with_skip/3' -p122363 -S'add_cases_with_skip(${1:Mod}, ${2:Cases}, ${3:Skip}) $4' -p122364 -tp122365 -a(S'add_cases_with_skip/4' -p122366 -S'add_cases_with_skip(${1:Name}, ${2:Mod}, ${3:Cases}, ${4:Skip}) $5' -p122367 -tp122368 -a(S'add_conf/3' -p122369 -S'add_conf(${1:Name}, ${2:Mod}, ${3:Conf}) $4' -p122370 -tp122371 -a(S'add_conf_with_skip/4' -p122372 -S'add_conf_with_skip(${1:Name}, ${2:Mod}, ${3:Conf}, ${4:Skip}) $5' -p122373 -tp122374 -a(S'add_dir/2' -p122375 -S'add_dir(${1:Name}, ${2:Dir}) $3' -p122376 -tp122377 -a(S'add_dir/3' -p122378 -S'add_dir(${1:Name}, ${2:Dir}, ${3:Pattern}) $4' -p122379 -tp122380 -a(S'add_dir_with_skip/3' -p122381 -S'add_dir_with_skip(${1:Name}, ${2:Dir}, ${3:Skip}) $4' -p122382 -tp122383 -a(S'add_dir_with_skip/4' -p122384 -S'add_dir_with_skip(${1:Name}, ${2:Dir}, ${3:Pattern}, ${4:Skip}) $5' -p122385 -tp122386 -a(S'add_module/1' -p122387 -S'add_module(${1:Mod}) $2' -p122388 -tp122389 -a(S'add_module/2' -p122390 -S'add_module(${1:Name}, ${2:Mods}) $3' -p122391 -tp122392 -a(S'add_module_with_skip/2' -p122393 -S'add_module_with_skip(${1:Mod}, ${2:Skip}) $3' -p122394 -tp122395 -a(S'add_module_with_skip/3' -p122396 -S'add_module_with_skip(${1:Name}, ${2:Mods}, ${3:Skip}) $4' -p122397 -tp122398 -a(S'add_spec/1' -p122399 -S'add_spec(${1:Spec}) $2' -p122400 -tp122401 -a(S'add_tests_with_skip/3' -p122402 -S'add_tests_with_skip(${1:LogDir}, ${2:Tests}, ${3:Skip}) $4' -p122403 -tp122404 -a(S'cover/2' -p122405 -S'cover(${1:App}, ${2:Analyse}) $3' -p122406 -tp122407 -a(S'cover/3' -p122408 -S'cover(${1:App}, ${2:CoverFile}, ${3:Analyse}) $4' -p122409 -tp122410 -a(S'cover/7' -p122411 -S'cover(${1:App}, ${2:CoverFile}, ${3:Exclude}, ${4:Include}, ${5:Cross}, ${6:Export}, ${7:Analyse}) $8' -p122412 -tp122413 -a(S'create_priv_dir/1' -p122414 -S'create_priv_dir(${1:Value}) $2' -p122415 -tp122416 -a(S'cross_cover_analyse/1' -p122417 -S'cross_cover_analyse(${1:Analyse}) $2' -p122418 -tp122419 -a(S'cross_cover_analyse/2' -p122420 -S'cross_cover_analyse(${1:Analyse}, ${2:CrossModules}) $3' -p122421 -tp122422 -a(S'do_spec/2' -p122423 -S'do_spec(${1:SpecName}, ${2:TimetrapSpec}) $3' -p122424 -tp122425 -a(S'do_spec_list/2' -p122426 -S'do_spec_list(${1:TermList0}, ${2:TimetrapSpec}) $3' -p122427 -tp122428 -a(S'do_test_cases/4' -p122429 -S'do_test_cases(${1:TopCase}, ${2:SkipCases}, ${3:Config}, ${4:TimetrapSpec}) $5' -p122430 -tp122431 -a(S'format/1' -p122432 -S'format(${1:Format}) $2' -p122433 -tp122434 -a(S'format/2' -p122435 -S'format(${1:Detail}, ${2:Format}) $3' -p122436 -tp122437 -a(S'format/3' -p122438 -S'format(${1:Detail}, ${2:Format}, ${3:Args}) $4' -p122439 -tp122440 -a(S'get_hosts/0' -p122441 -S'get_hosts() $1' -p122442 -tp122443 -a(S'get_levels/0' -p122444 -S'get_levels() $1' -p122445 -tp122446 -a(S'get_target_info/0' -p122447 -S'get_target_info() $1' -p122448 -tp122449 -a(S'get_target_os_type/0' -p122450 -S'get_target_os_type() $1' -p122451 -tp122452 -a(S'get_timetrap_parameters/0' -p122453 -S'get_timetrap_parameters() $1' -p122454 -tp122455 -a(S'handle_call/3' -p122456 -S'handle_call(${1:Param1}, ${2:From}, ${3:State}) $4' -p122457 -tp122458 -a(S'handle_cast/2' -p122459 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p122460 -tp122461 -a(S'handle_info/2' -p122462 -S'handle_info(${1:Param1}, ${2:State}) $3' -p122463 -tp122464 -a(S'i/0' -p122465 -S'i() $1' -p122466 -tp122467 -a(S'idle_notify/1' -p122468 -S'idle_notify(${1:Fun}) $2' -p122469 -tp122470 -a(S'init/1' -p122471 -S'init(${1:Param1}) $2' -p122472 -tp122473 -a(S'is_release_available/1' -p122474 -S'is_release_available(${1:Release}) $2' -p122475 -tp122476 -a(S'jobs/0' -p122477 -S'jobs() $1' -p122478 -tp122479 -a(S'kill_slavenodes/0' -p122480 -S'kill_slavenodes() $1' -p122481 -tp122482 -a(S'multiply_timetraps/1' -p122483 -S'multiply_timetraps(${1:N}) $2' -p122484 -tp122485 -a(S'node_started/1' -p122486 -S'node_started(${1:Node}) $2' -p122487 -tp122488 -a(S'output/2' -p122489 -S'output(${1:Param1}, ${2:Sender}) $3' -p122490 -tp122491 -a(S'p/1' -p122492 -S'p(${1:Sock}) $2' -p122493 -tp122494 -a(S'p/3' -p122495 -S'p(${1:Name}, ${2:Dir}, ${3:Skip}) $4' -p122496 -tp122497 -a(S'pi/2' -p122498 -S'pi(${1:Item}, ${2:X}) $3' -p122499 -tp122500 -a(S'pi/4' -p122501 -S'pi(${1:Item}, ${2:A}, ${3:B}, ${4:C}) $5' -p122502 -tp122503 -a(S'print/2' -p122504 -S'print(${1:Detail}, ${2:Format}) $3' -p122505 -tp122506 -a(S'print/3' -p122507 -S'print(${1:Detail}, ${2:Format}, ${3:Args}) $4' -p122508 -tp122509 -a(S'print/4' -p122510 -S'print(${1:Detail}, ${2:Format}, ${3:Args}, ${4:Printer}) $5' -p122511 -tp122512 -a(S'print_timestamp/2' -p122513 -S'print_timestamp(${1:Detail}, ${2:Leader}) $3' -p122514 -tp122515 -a(S'run_test/1' -p122516 -S'run_test(${1:CommandLine}) $2' -p122517 -tp122518 -a(S'scale_timetraps/1' -p122519 -S'scale_timetraps(${1:Bool}) $2' -p122520 -tp122521 -a(S'set_levels/3' -p122522 -S'set_levels(${1:Show}, ${2:Major}, ${3:Minor}) $4' -p122523 -tp122524 -a(S'set_random_seed/1' -p122525 -S'set_random_seed(${1:Seed}) $2' -p122526 -tp122527 -a(S'start/0' -p122528 -S'start() $1' -p122529 -tp122530 -a(S'start/1' -p122531 -S'start(${1:Param}) $2' -p122532 -tp122533 -a(S'start_get_totals/1' -p122534 -S'start_get_totals(${1:Fun}) $2' -p122535 -tp122536 -a(S'start_link/1' -p122537 -S'start_link(${1:Param}) $2' -p122538 -tp122539 -a(S'start_node/3' -p122540 -S'start_node(${1:Name}, ${2:Type}, ${3:Options}) $4' -p122541 -tp122542 -a(S'stop/0' -p122543 -S'stop() $1' -p122544 -tp122545 -a(S'stop_get_totals/0' -p122546 -S'stop_get_totals() $1' -p122547 -tp122548 -a(S'stop_node/1' -p122549 -S'stop_node(${1:Slave}) $2' -p122550 -tp122551 -a(S'stop_trace/0' -p122552 -S'stop_trace() $1' -p122553 -tp122554 -a(S't/0' -p122555 -S't() $1' -p122556 -tp122557 -a(S't/1' -p122558 -S't(${1:Dir}) $2' -p122559 -tp122560 -a(S'terminate/2' -p122561 -S'terminate(${1:Param1}, ${2:State}) $3' -p122562 -tp122563 -a(S'testcase_callback/1' -p122564 -S'testcase_callback(${1:ModFunc}) $2' -p122565 -tp122566 -a(S'to_string/1' -p122567 -S'to_string(${1:Term}) $2' -p122568 -tp122569 -a(S'trc/1' -p122570 -S'trc(${1:TraceFile}) $2' -p122571 -tp122572 -a(S'wait_finish/0' -p122573 -S'wait_finish() $1' -p122574 -tp122575 -a(S'wait_for_node/1' -p122576 -S'wait_for_node(${1:Slave}) $2' -p122577 -tp122578 -a(S'xhtml/2' -p122579 -S'xhtml(${1:HTML}, ${2:XHTML}) $3' -p122580 -tp122581 -asS'ic_sequence_java' -p122582 -(lp122583 -(S'gen/4' -p122584 -S'gen(${1:G}, ${2:N}, ${3:X}, ${4:SequenceName}) $5' -p122585 -tp122586 -asS'megaco_filter' -p122587 -(lp122588 -(S'filter/1' -p122589 -S'filter(${1:E}) $2' -p122590 -tp122591 -a(S'pretty_error/1' -p122592 -S'pretty_error(${1:Ugly}) $2' -p122593 -tp122594 -a(S'raw_filter/1' -p122595 -S'raw_filter(${1:E}) $2' -p122596 -tp122597 -a(S'start/0' -p122598 -S'start() $1' -p122599 -tp122600 -a(S'start/1' -p122601 -S'start(${1:ExtraOptions}) $2' -p122602 -tp122603 -a(S'string_to_term/1' -p122604 -S'string_to_term(${1:Chars}) $2' -p122605 -tp122606 -asS'megaco_binary_name_resolver_prev3b' -p122607 -(lp122608 -(S'capabilities/0' -p122609 -S'capabilities() $1' -p122610 -tp122611 -a(S'capabilities/1' -p122612 -S'capabilities(${1:Package}) $2' -p122613 -tp122614 -a(S'decode_name/3' -p122615 -S'decode_name(${1:Config}, ${2:Scope}, ${3:TermId}) $4' -p122616 -tp122617 -a(S'encode_name/3' -p122618 -S'encode_name(${1:Config}, ${2:Scope}, ${3:TermId}) $4' -p122619 -tp122620 -a(S'packages/0' -p122621 -S'packages() $1' -p122622 -tp122623 -asS'megaco_binary_name_resolver_prev3c' -p122624 -(lp122625 -(S'capabilities/0' -p122626 -S'capabilities() $1' -p122627 -tp122628 -a(S'capabilities/1' -p122629 -S'capabilities(${1:Package}) $2' -p122630 -tp122631 -a(S'decode_name/3' -p122632 -S'decode_name(${1:Config}, ${2:Scope}, ${3:TermId}) $4' -p122633 -tp122634 -a(S'encode_name/3' -p122635 -S'encode_name(${1:Config}, ${2:Scope}, ${3:TermId}) $4' -p122636 -tp122637 -a(S'packages/0' -p122638 -S'packages() $1' -p122639 -tp122640 -asS'megaco_binary_transformer_prev3c' -p122641 -(lp122642 -(S'tr_message/3' -p122643 -S'tr_message(${1:MegaMsg}, ${2:Mode}, ${3:Config}) $4' -p122644 -tp122645 -a(S'tr_transaction/3' -p122646 -S'tr_transaction(${1:Trans}, ${2:Mode}, ${3:Config}) $4' -p122647 -tp122648 -asS'megaco_binary_name_resolver_prev3a' -p122649 -(lp122650 -(S'capabilities/0' -p122651 -S'capabilities() $1' -p122652 -tp122653 -a(S'capabilities/1' -p122654 -S'capabilities(${1:Package}) $2' -p122655 -tp122656 -a(S'decode_name/3' -p122657 -S'decode_name(${1:Config}, ${2:Scope}, ${3:TermId}) $4' -p122658 -tp122659 -a(S'encode_name/3' -p122660 -S'encode_name(${1:Config}, ${2:Scope}, ${3:TermId}) $4' -p122661 -tp122662 -a(S'packages/0' -p122663 -S'packages() $1' -p122664 -tp122665 -asS'wxMDIParentFrame' -p122666 -(lp122667 -(S'activateNext/1' -p122668 -S'activateNext(${1:This}) $2' -p122669 -tp122670 -a(S'activatePrevious/1' -p122671 -S'activatePrevious(${1:This}) $2' -p122672 -tp122673 -a(S'arrangeIcons/1' -p122674 -S'arrangeIcons(${1:This}) $2' -p122675 -tp122676 -a(S'cacheBestSize/2' -p122677 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p122678 -tp122679 -a(S'captureMouse/1' -p122680 -S'captureMouse(${1:This}) $2' -p122681 -tp122682 -a(S'cascade/1' -p122683 -S'cascade(${1:This}) $2' -p122684 -tp122685 -a(S'center/1' -p122686 -S'center(${1:This}) $2' -p122687 -tp122688 -a(S'center/2' -p122689 -S'center(${1:This}, ${2:Options}) $3' -p122690 -tp122691 -a(S'centerOnParent/1' -p122692 -S'centerOnParent(${1:This}) $2' -p122693 -tp122694 -a(S'centerOnParent/2' -p122695 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p122696 -tp122697 -a(S'centerOnScreen/1' -p122698 -S'centerOnScreen(${1:This}) $2' -p122699 -tp122700 -a(S'centerOnScreen/2' -p122701 -S'centerOnScreen(${1:This}, ${2:Options}) $3' -p122702 -tp122703 -a(S'centre/1' -p122704 -S'centre(${1:This}) $2' -p122705 -tp122706 -a(S'centre/2' -p122707 -S'centre(${1:This}, ${2:Options}) $3' -p122708 -tp122709 -a(S'centreOnParent/1' -p122710 -S'centreOnParent(${1:This}) $2' -p122711 -tp122712 -a(S'centreOnParent/2' -p122713 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p122714 -tp122715 -a(S'centreOnScreen/1' -p122716 -S'centreOnScreen(${1:This}) $2' -p122717 -tp122718 -a(S'centreOnScreen/2' -p122719 -S'centreOnScreen(${1:This}, ${2:Options}) $3' -p122720 -tp122721 -a(S'clearBackground/1' -p122722 -S'clearBackground(${1:This}) $2' -p122723 -tp122724 -a(S'clientToScreen/2' -p122725 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p122726 -tp122727 -a(S'clientToScreen/3' -p122728 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p122729 -tp122730 -a(S'close/1' -p122731 -S'close(${1:This}) $2' -p122732 -tp122733 -a(S'close/2' -p122734 -S'close(${1:This}, ${2:Options}) $3' -p122735 -tp122736 -a(S'connect/2' -p122737 -S'connect(${1:This}, ${2:EventType}) $3' -p122738 -tp122739 -a(S'connect/3' -p122740 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p122741 -tp122742 -a(S'convertDialogToPixels/2' -p122743 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p122744 -tp122745 -a(S'convertPixelsToDialog/2' -p122746 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p122747 -tp122748 -a(S'create/4' -p122749 -S'create(${1:This}, ${2:Parent}, ${3:Id}, ${4:Title}) $5' -p122750 -tp122751 -a(S'create/5' -p122752 -S'create(${1:This}, ${2:Parent}, ${3:Id}, ${4:Title}, ${5:Param5}) $6' -p122753 -tp122754 -a(S'createStatusBar/1' -p122755 -S'createStatusBar(${1:This}) $2' -p122756 -tp122757 -a(S'createStatusBar/2' -p122758 -S'createStatusBar(${1:This}, ${2:Options}) $3' -p122759 -tp122760 -a(S'createToolBar/1' -p122761 -S'createToolBar(${1:This}) $2' -p122762 -tp122763 -a(S'createToolBar/2' -p122764 -S'createToolBar(${1:This}, ${2:Options}) $3' -p122765 -tp122766 -a(S'destroy/1' -p122767 -S'destroy(${1:This}) $2' -p122768 -tp122769 -a(S'destroyChildren/1' -p122770 -S'destroyChildren(${1:This}) $2' -p122771 -tp122772 -a(S'disable/1' -p122773 -S'disable(${1:This}) $2' -p122774 -tp122775 -a(S'disconnect/1' -p122776 -S'disconnect(${1:This}) $2' -p122777 -tp122778 -a(S'disconnect/2' -p122779 -S'disconnect(${1:This}, ${2:EventType}) $3' -p122780 -tp122781 -a(S'disconnect/3' -p122782 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p122783 -tp122784 -a(S'enable/1' -p122785 -S'enable(${1:This}) $2' -p122786 -tp122787 -a(S'enable/2' -p122788 -S'enable(${1:This}, ${2:Options}) $3' -p122789 -tp122790 -a(S'findWindow/2' -p122791 -S'findWindow(${1:This}, ${2:Winid}) $3' -p122792 -tp122793 -a(S'fit/1' -p122794 -S'fit(${1:This}) $2' -p122795 -tp122796 -a(S'fitInside/1' -p122797 -S'fitInside(${1:This}) $2' -p122798 -tp122799 -a(S'freeze/1' -p122800 -S'freeze(${1:This}) $2' -p122801 -tp122802 -a(S'getAcceleratorTable/1' -p122803 -S'getAcceleratorTable(${1:This}) $2' -p122804 -tp122805 -a(S'getActiveChild/1' -p122806 -S'getActiveChild(${1:This}) $2' -p122807 -tp122808 -a(S'getBackgroundColour/1' -p122809 -S'getBackgroundColour(${1:This}) $2' -p122810 -tp122811 -a(S'getBackgroundStyle/1' -p122812 -S'getBackgroundStyle(${1:This}) $2' -p122813 -tp122814 -a(S'getBestSize/1' -p122815 -S'getBestSize(${1:This}) $2' -p122816 -tp122817 -a(S'getCaret/1' -p122818 -S'getCaret(${1:This}) $2' -p122819 -tp122820 -a(S'getCharHeight/1' -p122821 -S'getCharHeight(${1:This}) $2' -p122822 -tp122823 -a(S'getCharWidth/1' -p122824 -S'getCharWidth(${1:This}) $2' -p122825 -tp122826 -a(S'getChildren/1' -p122827 -S'getChildren(${1:This}) $2' -p122828 -tp122829 -a(S'getClientAreaOrigin/1' -p122830 -S'getClientAreaOrigin(${1:This}) $2' -p122831 -tp122832 -a(S'getClientSize/1' -p122833 -S'getClientSize(${1:This}) $2' -p122834 -tp122835 -a(S'getClientWindow/1' -p122836 -S'getClientWindow(${1:This}) $2' -p122837 -tp122838 -a(S'getContainingSizer/1' -p122839 -S'getContainingSizer(${1:This}) $2' -p122840 -tp122841 -a(S'getCursor/1' -p122842 -S'getCursor(${1:This}) $2' -p122843 -tp122844 -a(S'getDropTarget/1' -p122845 -S'getDropTarget(${1:This}) $2' -p122846 -tp122847 -a(S'getEventHandler/1' -p122848 -S'getEventHandler(${1:This}) $2' -p122849 -tp122850 -a(S'getExtraStyle/1' -p122851 -S'getExtraStyle(${1:This}) $2' -p122852 -tp122853 -a(S'getFont/1' -p122854 -S'getFont(${1:This}) $2' -p122855 -tp122856 -a(S'getForegroundColour/1' -p122857 -S'getForegroundColour(${1:This}) $2' -p122858 -tp122859 -a(S'getGrandParent/1' -p122860 -S'getGrandParent(${1:This}) $2' -p122861 -tp122862 -a(S'getHandle/1' -p122863 -S'getHandle(${1:This}) $2' -p122864 -tp122865 -a(S'getHelpText/1' -p122866 -S'getHelpText(${1:This}) $2' -p122867 -tp122868 -a(S'getIcon/1' -p122869 -S'getIcon(${1:This}) $2' -p122870 -tp122871 -a(S'getIcons/1' -p122872 -S'getIcons(${1:This}) $2' -p122873 -tp122874 -a(S'getId/1' -p122875 -S'getId(${1:This}) $2' -p122876 -tp122877 -a(S'getLabel/1' -p122878 -S'getLabel(${1:This}) $2' -p122879 -tp122880 -a(S'getMaxSize/1' -p122881 -S'getMaxSize(${1:This}) $2' -p122882 -tp122883 -a(S'getMenuBar/1' -p122884 -S'getMenuBar(${1:This}) $2' -p122885 -tp122886 -a(S'getMinSize/1' -p122887 -S'getMinSize(${1:This}) $2' -p122888 -tp122889 -a(S'getName/1' -p122890 -S'getName(${1:This}) $2' -p122891 -tp122892 -a(S'getParent/1' -p122893 -S'getParent(${1:This}) $2' -p122894 -tp122895 -a(S'getPosition/1' -p122896 -S'getPosition(${1:This}) $2' -p122897 -tp122898 -a(S'getRect/1' -p122899 -S'getRect(${1:This}) $2' -p122900 -tp122901 -a(S'getScreenPosition/1' -p122902 -S'getScreenPosition(${1:This}) $2' -p122903 -tp122904 -a(S'getScreenRect/1' -p122905 -S'getScreenRect(${1:This}) $2' -p122906 -tp122907 -a(S'getScrollPos/2' -p122908 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p122909 -tp122910 -a(S'getScrollRange/2' -p122911 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p122912 -tp122913 -a(S'getScrollThumb/2' -p122914 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p122915 -tp122916 -a(S'getSize/1' -p122917 -S'getSize(${1:This}) $2' -p122918 -tp122919 -a(S'getSizer/1' -p122920 -S'getSizer(${1:This}) $2' -p122921 -tp122922 -a(S'getStatusBar/1' -p122923 -S'getStatusBar(${1:This}) $2' -p122924 -tp122925 -a(S'getStatusBarPane/1' -p122926 -S'getStatusBarPane(${1:This}) $2' -p122927 -tp122928 -a(S'getTextExtent/2' -p122929 -S'getTextExtent(${1:This}, ${2:String}) $3' -p122930 -tp122931 -a(S'getTextExtent/3' -p122932 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p122933 -tp122934 -a(S'getTitle/1' -p122935 -S'getTitle(${1:This}) $2' -p122936 -tp122937 -a(S'getToolBar/1' -p122938 -S'getToolBar(${1:This}) $2' -p122939 -tp122940 -a(S'getToolTip/1' -p122941 -S'getToolTip(${1:This}) $2' -p122942 -tp122943 -a(S'getUpdateRegion/1' -p122944 -S'getUpdateRegion(${1:This}) $2' -p122945 -tp122946 -a(S'getVirtualSize/1' -p122947 -S'getVirtualSize(${1:This}) $2' -p122948 -tp122949 -a(S'getWindowStyleFlag/1' -p122950 -S'getWindowStyleFlag(${1:This}) $2' -p122951 -tp122952 -a(S'getWindowVariant/1' -p122953 -S'getWindowVariant(${1:This}) $2' -p122954 -tp122955 -a(S'hasCapture/1' -p122956 -S'hasCapture(${1:This}) $2' -p122957 -tp122958 -a(S'hasScrollbar/2' -p122959 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p122960 -tp122961 -a(S'hasTransparentBackground/1' -p122962 -S'hasTransparentBackground(${1:This}) $2' -p122963 -tp122964 -a(S'hide/1' -p122965 -S'hide(${1:This}) $2' -p122966 -tp122967 -a(S'iconize/1' -p122968 -S'iconize(${1:This}) $2' -p122969 -tp122970 -a(S'iconize/2' -p122971 -S'iconize(${1:This}, ${2:Options}) $3' -p122972 -tp122973 -a(S'inheritAttributes/1' -p122974 -S'inheritAttributes(${1:This}) $2' -p122975 -tp122976 -a(S'initDialog/1' -p122977 -S'initDialog(${1:This}) $2' -p122978 -tp122979 -a(S'invalidateBestSize/1' -p122980 -S'invalidateBestSize(${1:This}) $2' -p122981 -tp122982 -a(S'isActive/1' -p122983 -S'isActive(${1:This}) $2' -p122984 -tp122985 -a(S'isEnabled/1' -p122986 -S'isEnabled(${1:This}) $2' -p122987 -tp122988 -a(S'isExposed/2' -p122989 -S'isExposed(${1:This}, ${2:Pt}) $3' -p122990 -tp122991 -a(S'isExposed/3' -p122992 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p122993 -tp122994 -a(S'isExposed/5' -p122995 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p122996 -tp122997 -a(S'isFullScreen/1' -p122998 -S'isFullScreen(${1:This}) $2' -p122999 -tp123000 -a(S'isIconized/1' -p123001 -S'isIconized(${1:This}) $2' -p123002 -tp123003 -a(S'isMaximized/1' -p123004 -S'isMaximized(${1:This}) $2' -p123005 -tp123006 -a(S'isRetained/1' -p123007 -S'isRetained(${1:This}) $2' -p123008 -tp123009 -a(S'isShown/1' -p123010 -S'isShown(${1:This}) $2' -p123011 -tp123012 -a(S'isTopLevel/1' -p123013 -S'isTopLevel(${1:This}) $2' -p123014 -tp123015 -a(S'layout/1' -p123016 -S'layout(${1:This}) $2' -p123017 -tp123018 -a(S'lineDown/1' -p123019 -S'lineDown(${1:This}) $2' -p123020 -tp123021 -a(S'lineUp/1' -p123022 -S'lineUp(${1:This}) $2' -p123023 -tp123024 -a(S'lower/1' -p123025 -S'lower(${1:This}) $2' -p123026 -tp123027 -a(S'makeModal/1' -p123028 -S'makeModal(${1:This}) $2' -p123029 -tp123030 -a(S'makeModal/2' -p123031 -S'makeModal(${1:This}, ${2:Options}) $3' -p123032 -tp123033 -a(S'maximize/1' -p123034 -S'maximize(${1:This}) $2' -p123035 -tp123036 -a(S'maximize/2' -p123037 -S'maximize(${1:This}, ${2:Options}) $3' -p123038 -tp123039 -a(S'move/2' -p123040 -S'move(${1:This}, ${2:Pt}) $3' -p123041 -tp123042 -a(S'move/3' -p123043 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p123044 -tp123045 -a(S'move/4' -p123046 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p123047 -tp123048 -a(S'moveAfterInTabOrder/2' -p123049 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p123050 -tp123051 -a(S'moveBeforeInTabOrder/2' -p123052 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p123053 -tp123054 -a(S'navigate/1' -p123055 -S'navigate(${1:This}) $2' -p123056 -tp123057 -a(S'navigate/2' -p123058 -S'navigate(${1:This}, ${2:Options}) $3' -p123059 -tp123060 -a(S'new/0' -p123061 -S'new() $1' -p123062 -tp123063 -a(S'new/3' -p123064 -S'new(${1:Parent}, ${2:Id}, ${3:Title}) $4' -p123065 -tp123066 -a(S'new/4' -p123067 -S'new(${1:Parent}, ${2:Id}, ${3:Title}, ${4:Param4}) $5' -p123068 -tp123069 -a(S'pageDown/1' -p123070 -S'pageDown(${1:This}) $2' -p123071 -tp123072 -a(S'pageUp/1' -p123073 -S'pageUp(${1:This}) $2' -p123074 -tp123075 -a(S'parent_class/1' -p123076 -S'parent_class(${1:Param1}) $2' -p123077 -tp123078 -a(S'popEventHandler/1' -p123079 -S'popEventHandler(${1:This}) $2' -p123080 -tp123081 -a(S'popEventHandler/2' -p123082 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p123083 -tp123084 -a(S'popupMenu/2' -p123085 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p123086 -tp123087 -a(S'popupMenu/3' -p123088 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p123089 -tp123090 -a(S'popupMenu/4' -p123091 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p123092 -tp123093 -a(S'processCommand/2' -p123094 -S'processCommand(${1:This}, ${2:Winid}) $3' -p123095 -tp123096 -a(S'raise/1' -p123097 -S'raise(${1:This}) $2' -p123098 -tp123099 -a(S'refresh/1' -p123100 -S'refresh(${1:This}) $2' -p123101 -tp123102 -a(S'refresh/2' -p123103 -S'refresh(${1:This}, ${2:Options}) $3' -p123104 -tp123105 -a(S'refreshRect/2' -p123106 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p123107 -tp123108 -a(S'refreshRect/3' -p123109 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p123110 -tp123111 -a(S'releaseMouse/1' -p123112 -S'releaseMouse(${1:This}) $2' -p123113 -tp123114 -a(S'removeChild/2' -p123115 -S'removeChild(${1:This}, ${2:Child}) $3' -p123116 -tp123117 -a(S'reparent/2' -p123118 -S'reparent(${1:This}, ${2:NewParent}) $3' -p123119 -tp123120 -a(S'requestUserAttention/1' -p123121 -S'requestUserAttention(${1:This}) $2' -p123122 -tp123123 -a(S'requestUserAttention/2' -p123124 -S'requestUserAttention(${1:This}, ${2:Options}) $3' -p123125 -tp123126 -a(S'screenToClient/1' -p123127 -S'screenToClient(${1:This}) $2' -p123128 -tp123129 -a(S'screenToClient/2' -p123130 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p123131 -tp123132 -a(S'scrollLines/2' -p123133 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p123134 -tp123135 -a(S'scrollPages/2' -p123136 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p123137 -tp123138 -a(S'scrollWindow/3' -p123139 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p123140 -tp123141 -a(S'scrollWindow/4' -p123142 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p123143 -tp123144 -a(S'sendSizeEvent/1' -p123145 -S'sendSizeEvent(${1:This}) $2' -p123146 -tp123147 -a(S'setAcceleratorTable/2' -p123148 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p123149 -tp123150 -a(S'setAutoLayout/2' -p123151 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p123152 -tp123153 -a(S'setBackgroundColour/2' -p123154 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p123155 -tp123156 -a(S'setBackgroundStyle/2' -p123157 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p123158 -tp123159 -a(S'setCaret/2' -p123160 -S'setCaret(${1:This}, ${2:Caret}) $3' -p123161 -tp123162 -a(S'setClientSize/2' -p123163 -S'setClientSize(${1:This}, ${2:Size}) $3' -p123164 -tp123165 -a(S'setClientSize/3' -p123166 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p123167 -tp123168 -a(S'setContainingSizer/2' -p123169 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p123170 -tp123171 -a(S'setCursor/2' -p123172 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p123173 -tp123174 -a(S'setDropTarget/2' -p123175 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p123176 -tp123177 -a(S'setExtraStyle/2' -p123178 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p123179 -tp123180 -a(S'setFocus/1' -p123181 -S'setFocus(${1:This}) $2' -p123182 -tp123183 -a(S'setFocusFromKbd/1' -p123184 -S'setFocusFromKbd(${1:This}) $2' -p123185 -tp123186 -a(S'setFont/2' -p123187 -S'setFont(${1:This}, ${2:Font}) $3' -p123188 -tp123189 -a(S'setForegroundColour/2' -p123190 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p123191 -tp123192 -a(S'setHelpText/2' -p123193 -S'setHelpText(${1:This}, ${2:Text}) $3' -p123194 -tp123195 -a(S'setIcon/2' -p123196 -S'setIcon(${1:This}, ${2:Icon}) $3' -p123197 -tp123198 -a(S'setIcons/2' -p123199 -S'setIcons(${1:This}, ${2:Icons}) $3' -p123200 -tp123201 -a(S'setId/2' -p123202 -S'setId(${1:This}, ${2:Winid}) $3' -p123203 -tp123204 -a(S'setLabel/2' -p123205 -S'setLabel(${1:This}, ${2:Label}) $3' -p123206 -tp123207 -a(S'setMaxSize/2' -p123208 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p123209 -tp123210 -a(S'setMenuBar/2' -p123211 -S'setMenuBar(${1:This}, ${2:Menubar}) $3' -p123212 -tp123213 -a(S'setMinSize/2' -p123214 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p123215 -tp123216 -a(S'setName/2' -p123217 -S'setName(${1:This}, ${2:Name}) $3' -p123218 -tp123219 -a(S'setOwnBackgroundColour/2' -p123220 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p123221 -tp123222 -a(S'setOwnFont/2' -p123223 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p123224 -tp123225 -a(S'setOwnForegroundColour/2' -p123226 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p123227 -tp123228 -a(S'setPalette/2' -p123229 -S'setPalette(${1:This}, ${2:Pal}) $3' -p123230 -tp123231 -a(S'setScrollPos/3' -p123232 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p123233 -tp123234 -a(S'setScrollPos/4' -p123235 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p123236 -tp123237 -a(S'setScrollbar/5' -p123238 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p123239 -tp123240 -a(S'setScrollbar/6' -p123241 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p123242 -tp123243 -a(S'setShape/2' -p123244 -S'setShape(${1:This}, ${2:Region}) $3' -p123245 -tp123246 -a(S'setSize/2' -p123247 -S'setSize(${1:This}, ${2:Rect}) $3' -p123248 -tp123249 -a(S'setSize/3' -p123250 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p123251 -tp123252 -a(S'setSize/5' -p123253 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p123254 -tp123255 -a(S'setSize/6' -p123256 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p123257 -tp123258 -a(S'setSizeHints/2' -p123259 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p123260 -tp123261 -a(S'setSizeHints/3' -p123262 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p123263 -tp123264 -a(S'setSizeHints/4' -p123265 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p123266 -tp123267 -a(S'setSizer/2' -p123268 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p123269 -tp123270 -a(S'setSizer/3' -p123271 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p123272 -tp123273 -a(S'setSizerAndFit/2' -p123274 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p123275 -tp123276 -a(S'setSizerAndFit/3' -p123277 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p123278 -tp123279 -a(S'setStatusBar/2' -p123280 -S'setStatusBar(${1:This}, ${2:Statbar}) $3' -p123281 -tp123282 -a(S'setStatusBarPane/2' -p123283 -S'setStatusBarPane(${1:This}, ${2:N}) $3' -p123284 -tp123285 -a(S'setStatusText/2' -p123286 -S'setStatusText(${1:This}, ${2:Text}) $3' -p123287 -tp123288 -a(S'setStatusText/3' -p123289 -S'setStatusText(${1:This}, ${2:Text}, ${3:Options}) $4' -p123290 -tp123291 -a(S'setStatusWidths/2' -p123292 -S'setStatusWidths(${1:This}, ${2:Widths_field}) $3' -p123293 -tp123294 -a(S'setThemeEnabled/2' -p123295 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p123296 -tp123297 -a(S'setTitle/2' -p123298 -S'setTitle(${1:This}, ${2:Title}) $3' -p123299 -tp123300 -a(S'setToolBar/2' -p123301 -S'setToolBar(${1:This}, ${2:Toolbar}) $3' -p123302 -tp123303 -a(S'setToolTip/2' -p123304 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p123305 -tp123306 -a(S'setVirtualSize/2' -p123307 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p123308 -tp123309 -a(S'setVirtualSize/3' -p123310 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p123311 -tp123312 -a(S'setVirtualSizeHints/2' -p123313 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p123314 -tp123315 -a(S'setVirtualSizeHints/3' -p123316 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p123317 -tp123318 -a(S'setVirtualSizeHints/4' -p123319 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p123320 -tp123321 -a(S'setWindowStyle/2' -p123322 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p123323 -tp123324 -a(S'setWindowStyleFlag/2' -p123325 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p123326 -tp123327 -a(S'setWindowVariant/2' -p123328 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p123329 -tp123330 -a(S'shouldInheritColours/1' -p123331 -S'shouldInheritColours(${1:This}) $2' -p123332 -tp123333 -a(S'show/1' -p123334 -S'show(${1:This}) $2' -p123335 -tp123336 -a(S'show/2' -p123337 -S'show(${1:This}, ${2:Options}) $3' -p123338 -tp123339 -a(S'showFullScreen/2' -p123340 -S'showFullScreen(${1:This}, ${2:Show}) $3' -p123341 -tp123342 -a(S'showFullScreen/3' -p123343 -S'showFullScreen(${1:This}, ${2:Show}, ${3:Options}) $4' -p123344 -tp123345 -a(S'thaw/1' -p123346 -S'thaw(${1:This}) $2' -p123347 -tp123348 -a(S'tile/1' -p123349 -S'tile(${1:This}) $2' -p123350 -tp123351 -a(S'tile/2' -p123352 -S'tile(${1:This}, ${2:Param2}) $3' -p123353 -tp123354 -a(S'transferDataFromWindow/1' -p123355 -S'transferDataFromWindow(${1:This}) $2' -p123356 -tp123357 -a(S'transferDataToWindow/1' -p123358 -S'transferDataToWindow(${1:This}) $2' -p123359 -tp123360 -a(S'update/1' -p123361 -S'update(${1:This}) $2' -p123362 -tp123363 -a(S'updateWindowUI/1' -p123364 -S'updateWindowUI(${1:This}) $2' -p123365 -tp123366 -a(S'updateWindowUI/2' -p123367 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p123368 -tp123369 -a(S'validate/1' -p123370 -S'validate(${1:This}) $2' -p123371 -tp123372 -a(S'warpPointer/3' -p123373 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p123374 -tp123375 -asS'wxBitmapButton' -p123376 -(lp123377 -(S'cacheBestSize/2' -p123378 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p123379 -tp123380 -a(S'captureMouse/1' -p123381 -S'captureMouse(${1:This}) $2' -p123382 -tp123383 -a(S'center/1' -p123384 -S'center(${1:This}) $2' -p123385 -tp123386 -a(S'center/2' -p123387 -S'center(${1:This}, ${2:Options}) $3' -p123388 -tp123389 -a(S'centerOnParent/1' -p123390 -S'centerOnParent(${1:This}) $2' -p123391 -tp123392 -a(S'centerOnParent/2' -p123393 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p123394 -tp123395 -a(S'centre/1' -p123396 -S'centre(${1:This}) $2' -p123397 -tp123398 -a(S'centre/2' -p123399 -S'centre(${1:This}, ${2:Options}) $3' -p123400 -tp123401 -a(S'centreOnParent/1' -p123402 -S'centreOnParent(${1:This}) $2' -p123403 -tp123404 -a(S'centreOnParent/2' -p123405 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p123406 -tp123407 -a(S'clearBackground/1' -p123408 -S'clearBackground(${1:This}) $2' -p123409 -tp123410 -a(S'clientToScreen/2' -p123411 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p123412 -tp123413 -a(S'clientToScreen/3' -p123414 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p123415 -tp123416 -a(S'close/1' -p123417 -S'close(${1:This}) $2' -p123418 -tp123419 -a(S'close/2' -p123420 -S'close(${1:This}, ${2:Options}) $3' -p123421 -tp123422 -a(S'connect/2' -p123423 -S'connect(${1:This}, ${2:EventType}) $3' -p123424 -tp123425 -a(S'connect/3' -p123426 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p123427 -tp123428 -a(S'convertDialogToPixels/2' -p123429 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p123430 -tp123431 -a(S'convertPixelsToDialog/2' -p123432 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p123433 -tp123434 -a(S'create/4' -p123435 -S'create(${1:This}, ${2:Parent}, ${3:Id}, ${4:Bitmap}) $5' -p123436 -tp123437 -a(S'create/5' -p123438 -S'create(${1:This}, ${2:Parent}, ${3:Id}, ${4:Bitmap}, ${5:Param5}) $6' -p123439 -tp123440 -a(S'destroy/1' -p123441 -S'destroy(${1:This}) $2' -p123442 -tp123443 -a(S'destroyChildren/1' -p123444 -S'destroyChildren(${1:This}) $2' -p123445 -tp123446 -a(S'disable/1' -p123447 -S'disable(${1:This}) $2' -p123448 -tp123449 -a(S'disconnect/1' -p123450 -S'disconnect(${1:This}) $2' -p123451 -tp123452 -a(S'disconnect/2' -p123453 -S'disconnect(${1:This}, ${2:EventType}) $3' -p123454 -tp123455 -a(S'disconnect/3' -p123456 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p123457 -tp123458 -a(S'enable/1' -p123459 -S'enable(${1:This}) $2' -p123460 -tp123461 -a(S'enable/2' -p123462 -S'enable(${1:This}, ${2:Options}) $3' -p123463 -tp123464 -a(S'findWindow/2' -p123465 -S'findWindow(${1:This}, ${2:Winid}) $3' -p123466 -tp123467 -a(S'fit/1' -p123468 -S'fit(${1:This}) $2' -p123469 -tp123470 -a(S'fitInside/1' -p123471 -S'fitInside(${1:This}) $2' -p123472 -tp123473 -a(S'freeze/1' -p123474 -S'freeze(${1:This}) $2' -p123475 -tp123476 -a(S'getAcceleratorTable/1' -p123477 -S'getAcceleratorTable(${1:This}) $2' -p123478 -tp123479 -a(S'getBackgroundColour/1' -p123480 -S'getBackgroundColour(${1:This}) $2' -p123481 -tp123482 -a(S'getBackgroundStyle/1' -p123483 -S'getBackgroundStyle(${1:This}) $2' -p123484 -tp123485 -a(S'getBestSize/1' -p123486 -S'getBestSize(${1:This}) $2' -p123487 -tp123488 -a(S'getBitmapDisabled/1' -p123489 -S'getBitmapDisabled(${1:This}) $2' -p123490 -tp123491 -a(S'getBitmapFocus/1' -p123492 -S'getBitmapFocus(${1:This}) $2' -p123493 -tp123494 -a(S'getBitmapLabel/1' -p123495 -S'getBitmapLabel(${1:This}) $2' -p123496 -tp123497 -a(S'getBitmapSelected/1' -p123498 -S'getBitmapSelected(${1:This}) $2' -p123499 -tp123500 -a(S'getCaret/1' -p123501 -S'getCaret(${1:This}) $2' -p123502 -tp123503 -a(S'getCharHeight/1' -p123504 -S'getCharHeight(${1:This}) $2' -p123505 -tp123506 -a(S'getCharWidth/1' -p123507 -S'getCharWidth(${1:This}) $2' -p123508 -tp123509 -a(S'getChildren/1' -p123510 -S'getChildren(${1:This}) $2' -p123511 -tp123512 -a(S'getClientSize/1' -p123513 -S'getClientSize(${1:This}) $2' -p123514 -tp123515 -a(S'getContainingSizer/1' -p123516 -S'getContainingSizer(${1:This}) $2' -p123517 -tp123518 -a(S'getCursor/1' -p123519 -S'getCursor(${1:This}) $2' -p123520 -tp123521 -a(S'getDropTarget/1' -p123522 -S'getDropTarget(${1:This}) $2' -p123523 -tp123524 -a(S'getEventHandler/1' -p123525 -S'getEventHandler(${1:This}) $2' -p123526 -tp123527 -a(S'getExtraStyle/1' -p123528 -S'getExtraStyle(${1:This}) $2' -p123529 -tp123530 -a(S'getFont/1' -p123531 -S'getFont(${1:This}) $2' -p123532 -tp123533 -a(S'getForegroundColour/1' -p123534 -S'getForegroundColour(${1:This}) $2' -p123535 -tp123536 -a(S'getGrandParent/1' -p123537 -S'getGrandParent(${1:This}) $2' -p123538 -tp123539 -a(S'getHandle/1' -p123540 -S'getHandle(${1:This}) $2' -p123541 -tp123542 -a(S'getHelpText/1' -p123543 -S'getHelpText(${1:This}) $2' -p123544 -tp123545 -a(S'getId/1' -p123546 -S'getId(${1:This}) $2' -p123547 -tp123548 -a(S'getLabel/1' -p123549 -S'getLabel(${1:This}) $2' -p123550 -tp123551 -a(S'getMaxSize/1' -p123552 -S'getMaxSize(${1:This}) $2' -p123553 -tp123554 -a(S'getMinSize/1' -p123555 -S'getMinSize(${1:This}) $2' -p123556 -tp123557 -a(S'getName/1' -p123558 -S'getName(${1:This}) $2' -p123559 -tp123560 -a(S'getParent/1' -p123561 -S'getParent(${1:This}) $2' -p123562 -tp123563 -a(S'getPosition/1' -p123564 -S'getPosition(${1:This}) $2' -p123565 -tp123566 -a(S'getRect/1' -p123567 -S'getRect(${1:This}) $2' -p123568 -tp123569 -a(S'getScreenPosition/1' -p123570 -S'getScreenPosition(${1:This}) $2' -p123571 -tp123572 -a(S'getScreenRect/1' -p123573 -S'getScreenRect(${1:This}) $2' -p123574 -tp123575 -a(S'getScrollPos/2' -p123576 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p123577 -tp123578 -a(S'getScrollRange/2' -p123579 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p123580 -tp123581 -a(S'getScrollThumb/2' -p123582 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p123583 -tp123584 -a(S'getSize/1' -p123585 -S'getSize(${1:This}) $2' -p123586 -tp123587 -a(S'getSizer/1' -p123588 -S'getSizer(${1:This}) $2' -p123589 -tp123590 -a(S'getTextExtent/2' -p123591 -S'getTextExtent(${1:This}, ${2:String}) $3' -p123592 -tp123593 -a(S'getTextExtent/3' -p123594 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p123595 -tp123596 -a(S'getToolTip/1' -p123597 -S'getToolTip(${1:This}) $2' -p123598 -tp123599 -a(S'getUpdateRegion/1' -p123600 -S'getUpdateRegion(${1:This}) $2' -p123601 -tp123602 -a(S'getVirtualSize/1' -p123603 -S'getVirtualSize(${1:This}) $2' -p123604 -tp123605 -a(S'getWindowStyleFlag/1' -p123606 -S'getWindowStyleFlag(${1:This}) $2' -p123607 -tp123608 -a(S'getWindowVariant/1' -p123609 -S'getWindowVariant(${1:This}) $2' -p123610 -tp123611 -a(S'hasCapture/1' -p123612 -S'hasCapture(${1:This}) $2' -p123613 -tp123614 -a(S'hasScrollbar/2' -p123615 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p123616 -tp123617 -a(S'hasTransparentBackground/1' -p123618 -S'hasTransparentBackground(${1:This}) $2' -p123619 -tp123620 -a(S'hide/1' -p123621 -S'hide(${1:This}) $2' -p123622 -tp123623 -a(S'inheritAttributes/1' -p123624 -S'inheritAttributes(${1:This}) $2' -p123625 -tp123626 -a(S'initDialog/1' -p123627 -S'initDialog(${1:This}) $2' -p123628 -tp123629 -a(S'invalidateBestSize/1' -p123630 -S'invalidateBestSize(${1:This}) $2' -p123631 -tp123632 -a(S'isEnabled/1' -p123633 -S'isEnabled(${1:This}) $2' -p123634 -tp123635 -a(S'isExposed/2' -p123636 -S'isExposed(${1:This}, ${2:Pt}) $3' -p123637 -tp123638 -a(S'isExposed/3' -p123639 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p123640 -tp123641 -a(S'isExposed/5' -p123642 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p123643 -tp123644 -a(S'isRetained/1' -p123645 -S'isRetained(${1:This}) $2' -p123646 -tp123647 -a(S'isShown/1' -p123648 -S'isShown(${1:This}) $2' -p123649 -tp123650 -a(S'isTopLevel/1' -p123651 -S'isTopLevel(${1:This}) $2' -p123652 -tp123653 -a(S'layout/1' -p123654 -S'layout(${1:This}) $2' -p123655 -tp123656 -a(S'lineDown/1' -p123657 -S'lineDown(${1:This}) $2' -p123658 -tp123659 -a(S'lineUp/1' -p123660 -S'lineUp(${1:This}) $2' -p123661 -tp123662 -a(S'lower/1' -p123663 -S'lower(${1:This}) $2' -p123664 -tp123665 -a(S'makeModal/1' -p123666 -S'makeModal(${1:This}) $2' -p123667 -tp123668 -a(S'makeModal/2' -p123669 -S'makeModal(${1:This}, ${2:Options}) $3' -p123670 -tp123671 -a(S'move/2' -p123672 -S'move(${1:This}, ${2:Pt}) $3' -p123673 -tp123674 -a(S'move/3' -p123675 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p123676 -tp123677 -a(S'move/4' -p123678 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p123679 -tp123680 -a(S'moveAfterInTabOrder/2' -p123681 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p123682 -tp123683 -a(S'moveBeforeInTabOrder/2' -p123684 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p123685 -tp123686 -a(S'navigate/1' -p123687 -S'navigate(${1:This}) $2' -p123688 -tp123689 -a(S'navigate/2' -p123690 -S'navigate(${1:This}, ${2:Options}) $3' -p123691 -tp123692 -a(S'new/0' -p123693 -S'new() $1' -p123694 -tp123695 -a(S'new/3' -p123696 -S'new(${1:Parent}, ${2:Id}, ${3:Bitmap}) $4' -p123697 -tp123698 -a(S'new/4' -p123699 -S'new(${1:Parent}, ${2:Id}, ${3:Bitmap}, ${4:Param4}) $5' -p123700 -tp123701 -a(S'pageDown/1' -p123702 -S'pageDown(${1:This}) $2' -p123703 -tp123704 -a(S'pageUp/1' -p123705 -S'pageUp(${1:This}) $2' -p123706 -tp123707 -a(S'parent_class/1' -p123708 -S'parent_class(${1:Param1}) $2' -p123709 -tp123710 -a(S'popEventHandler/1' -p123711 -S'popEventHandler(${1:This}) $2' -p123712 -tp123713 -a(S'popEventHandler/2' -p123714 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p123715 -tp123716 -a(S'popupMenu/2' -p123717 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p123718 -tp123719 -a(S'popupMenu/3' -p123720 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p123721 -tp123722 -a(S'popupMenu/4' -p123723 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p123724 -tp123725 -a(S'raise/1' -p123726 -S'raise(${1:This}) $2' -p123727 -tp123728 -a(S'refresh/1' -p123729 -S'refresh(${1:This}) $2' -p123730 -tp123731 -a(S'refresh/2' -p123732 -S'refresh(${1:This}, ${2:Options}) $3' -p123733 -tp123734 -a(S'refreshRect/2' -p123735 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p123736 -tp123737 -a(S'refreshRect/3' -p123738 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p123739 -tp123740 -a(S'releaseMouse/1' -p123741 -S'releaseMouse(${1:This}) $2' -p123742 -tp123743 -a(S'removeChild/2' -p123744 -S'removeChild(${1:This}, ${2:Child}) $3' -p123745 -tp123746 -a(S'reparent/2' -p123747 -S'reparent(${1:This}, ${2:NewParent}) $3' -p123748 -tp123749 -a(S'screenToClient/1' -p123750 -S'screenToClient(${1:This}) $2' -p123751 -tp123752 -a(S'screenToClient/2' -p123753 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p123754 -tp123755 -a(S'scrollLines/2' -p123756 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p123757 -tp123758 -a(S'scrollPages/2' -p123759 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p123760 -tp123761 -a(S'scrollWindow/3' -p123762 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p123763 -tp123764 -a(S'scrollWindow/4' -p123765 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p123766 -tp123767 -a(S'setAcceleratorTable/2' -p123768 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p123769 -tp123770 -a(S'setAutoLayout/2' -p123771 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p123772 -tp123773 -a(S'setBackgroundColour/2' -p123774 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p123775 -tp123776 -a(S'setBackgroundStyle/2' -p123777 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p123778 -tp123779 -a(S'setBitmapDisabled/2' -p123780 -S'setBitmapDisabled(${1:This}, ${2:Disabled}) $3' -p123781 -tp123782 -a(S'setBitmapFocus/2' -p123783 -S'setBitmapFocus(${1:This}, ${2:Focus}) $3' -p123784 -tp123785 -a(S'setBitmapLabel/2' -p123786 -S'setBitmapLabel(${1:This}, ${2:Bitmap}) $3' -p123787 -tp123788 -a(S'setBitmapSelected/2' -p123789 -S'setBitmapSelected(${1:This}, ${2:Sel}) $3' -p123790 -tp123791 -a(S'setCaret/2' -p123792 -S'setCaret(${1:This}, ${2:Caret}) $3' -p123793 -tp123794 -a(S'setClientSize/2' -p123795 -S'setClientSize(${1:This}, ${2:Size}) $3' -p123796 -tp123797 -a(S'setClientSize/3' -p123798 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p123799 -tp123800 -a(S'setContainingSizer/2' -p123801 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p123802 -tp123803 -a(S'setCursor/2' -p123804 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p123805 -tp123806 -a(S'setDefault/1' -p123807 -S'setDefault(${1:This}) $2' -p123808 -tp123809 -a(S'setDropTarget/2' -p123810 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p123811 -tp123812 -a(S'setExtraStyle/2' -p123813 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p123814 -tp123815 -a(S'setFocus/1' -p123816 -S'setFocus(${1:This}) $2' -p123817 -tp123818 -a(S'setFocusFromKbd/1' -p123819 -S'setFocusFromKbd(${1:This}) $2' -p123820 -tp123821 -a(S'setFont/2' -p123822 -S'setFont(${1:This}, ${2:Font}) $3' -p123823 -tp123824 -a(S'setForegroundColour/2' -p123825 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p123826 -tp123827 -a(S'setHelpText/2' -p123828 -S'setHelpText(${1:This}, ${2:Text}) $3' -p123829 -tp123830 -a(S'setId/2' -p123831 -S'setId(${1:This}, ${2:Winid}) $3' -p123832 -tp123833 -a(S'setLabel/2' -p123834 -S'setLabel(${1:This}, ${2:Label}) $3' -p123835 -tp123836 -a(S'setMaxSize/2' -p123837 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p123838 -tp123839 -a(S'setMinSize/2' -p123840 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p123841 -tp123842 -a(S'setName/2' -p123843 -S'setName(${1:This}, ${2:Name}) $3' -p123844 -tp123845 -a(S'setOwnBackgroundColour/2' -p123846 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p123847 -tp123848 -a(S'setOwnFont/2' -p123849 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p123850 -tp123851 -a(S'setOwnForegroundColour/2' -p123852 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p123853 -tp123854 -a(S'setPalette/2' -p123855 -S'setPalette(${1:This}, ${2:Pal}) $3' -p123856 -tp123857 -a(S'setScrollPos/3' -p123858 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p123859 -tp123860 -a(S'setScrollPos/4' -p123861 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p123862 -tp123863 -a(S'setScrollbar/5' -p123864 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p123865 -tp123866 -a(S'setScrollbar/6' -p123867 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p123868 -tp123869 -a(S'setSize/2' -p123870 -S'setSize(${1:This}, ${2:Rect}) $3' -p123871 -tp123872 -a(S'setSize/3' -p123873 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p123874 -tp123875 -a(S'setSize/5' -p123876 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p123877 -tp123878 -a(S'setSize/6' -p123879 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p123880 -tp123881 -a(S'setSizeHints/2' -p123882 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p123883 -tp123884 -a(S'setSizeHints/3' -p123885 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p123886 -tp123887 -a(S'setSizeHints/4' -p123888 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p123889 -tp123890 -a(S'setSizer/2' -p123891 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p123892 -tp123893 -a(S'setSizer/3' -p123894 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p123895 -tp123896 -a(S'setSizerAndFit/2' -p123897 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p123898 -tp123899 -a(S'setSizerAndFit/3' -p123900 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p123901 -tp123902 -a(S'setThemeEnabled/2' -p123903 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p123904 -tp123905 -a(S'setToolTip/2' -p123906 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p123907 -tp123908 -a(S'setVirtualSize/2' -p123909 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p123910 -tp123911 -a(S'setVirtualSize/3' -p123912 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p123913 -tp123914 -a(S'setVirtualSizeHints/2' -p123915 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p123916 -tp123917 -a(S'setVirtualSizeHints/3' -p123918 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p123919 -tp123920 -a(S'setVirtualSizeHints/4' -p123921 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p123922 -tp123923 -a(S'setWindowStyle/2' -p123924 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p123925 -tp123926 -a(S'setWindowStyleFlag/2' -p123927 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p123928 -tp123929 -a(S'setWindowVariant/2' -p123930 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p123931 -tp123932 -a(S'shouldInheritColours/1' -p123933 -S'shouldInheritColours(${1:This}) $2' -p123934 -tp123935 -a(S'show/1' -p123936 -S'show(${1:This}) $2' -p123937 -tp123938 -a(S'show/2' -p123939 -S'show(${1:This}, ${2:Options}) $3' -p123940 -tp123941 -a(S'thaw/1' -p123942 -S'thaw(${1:This}) $2' -p123943 -tp123944 -a(S'transferDataFromWindow/1' -p123945 -S'transferDataFromWindow(${1:This}) $2' -p123946 -tp123947 -a(S'transferDataToWindow/1' -p123948 -S'transferDataToWindow(${1:This}) $2' -p123949 -tp123950 -a(S'update/1' -p123951 -S'update(${1:This}) $2' -p123952 -tp123953 -a(S'updateWindowUI/1' -p123954 -S'updateWindowUI(${1:This}) $2' -p123955 -tp123956 -a(S'updateWindowUI/2' -p123957 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p123958 -tp123959 -a(S'validate/1' -p123960 -S'validate(${1:This}) $2' -p123961 -tp123962 -a(S'warpPointer/3' -p123963 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p123964 -tp123965 -asS'cosFileTransferNATIVE_file' -p123966 -(lp123967 -(S'cd/2' -p123968 -S'cd(${1:Param1}, ${2:Dir}) $3' -p123969 -tp123970 -a(S'close/1' -p123971 -S'close(${1:Param1}) $2' -p123972 -tp123973 -a(S'delete/2' -p123974 -S'delete(${1:Param1}, ${2:File}) $3' -p123975 -tp123976 -a(S'insert/4' -p123977 -S'insert(${1:Param1}, ${2:Source}, ${3:Target}, ${4:Offset}) $5' -p123978 -tp123979 -a(S'mkdir/2' -p123980 -S'mkdir(${1:Param1}, ${2:Dir}) $3' -p123981 -tp123982 -a(S'nlist/1' -p123983 -S'nlist(${1:Param1}) $2' -p123984 -tp123985 -a(S'nlist/2' -p123986 -S'nlist(${1:Param1}, ${2:Dir}) $3' -p123987 -tp123988 -a(S'open/1' -p123989 -S'open(${1:Param1}) $2' -p123990 -tp123991 -a(S'open/2' -p123992 -S'open(${1:Param1}, ${2:Param2}) $3' -p123993 -tp123994 -a(S'open/3' -p123995 -S'open(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p123996 -tp123997 -a(S'pwd/1' -p123998 -S'pwd(${1:Param1}) $2' -p123999 -tp124000 -a(S'recv/2' -p124001 -S'recv(${1:Param1}, ${2:Param2}) $3' -p124002 -tp124003 -a(S'recv/3' -p124004 -S'recv(${1:Param1}, ${2:Remote}, ${3:Local}) $4' -p124005 -tp124006 -a(S'rmdir/2' -p124007 -S'rmdir(${1:Param1}, ${2:Dir}) $3' -p124008 -tp124009 -a(S'send/2' -p124010 -S'send(${1:Param1}, ${2:Param2}) $3' -p124011 -tp124012 -a(S'send/3' -p124013 -S'send(${1:Param1}, ${2:Local}, ${3:Remote}) $4' -p124014 -tp124015 -a(S'user/3' -p124016 -S'user(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p124017 -tp124018 -asS'pubkey_pbe' -p124019 -(lp124020 -(S'decode/4' -p124021 -S'decode(${1:Data}, ${2:Password}, ${3:Cipher}, ${4:KeyDevParams}) $5' -p124022 -tp124023 -a(S'decrypt_parameters/1' -p124024 -S'decrypt_parameters(${1:Param1}) $2' -p124025 -tp124026 -a(S'encode/4' -p124027 -S'encode(${1:Data}, ${2:Password}, ${3:Cipher}, ${4:KeyDevParams}) $5' -p124028 -tp124029 -a(S'pbdkdf1/4' -p124030 -S'pbdkdf1(${1:Password}, ${2:Salt}, ${3:Count}, ${4:Acc}) $5' -p124031 -tp124032 -a(S'pbdkdf2/6' -p124033 -S'pbdkdf2(${1:Password}, ${2:Salt}, ${3:Count}, ${4:DerivedKeyLen}, ${5:Prf}, ${6:PrfOutputLen}) $7' -p124034 -tp124035 -asS'orber_ifr_interfacedef' -p124036 -(lp124037 -(S"'_get_absolute_name'/1" -p124038 -S"'_get_absolute_name'() $1" -p124039 -tp124040 -a(S"'_get_base_interfaces'/1" -p124041 -S"'_get_base_interfaces'() $1" -p124042 -tp124043 -a(S"'_get_containing_repository'/1" -p124044 -S"'_get_containing_repository'() $1" -p124045 -tp124046 -a(S"'_get_def_kind'/1" -p124047 -S"'_get_def_kind'() $1" -p124048 -tp124049 -a(S"'_get_defined_in'/1" -p124050 -S"'_get_defined_in'() $1" -p124051 -tp124052 -a(S"'_get_id'/1" -p124053 -S"'_get_id'() $1" -p124054 -tp124055 -a(S"'_get_name'/1" -p124056 -S"'_get_name'() $1" -p124057 -tp124058 -a(S"'_get_type'/1" -p124059 -S"'_get_type'() $1" -p124060 -tp124061 -a(S"'_get_version'/1" -p124062 -S"'_get_version'() $1" -p124063 -tp124064 -a(S"'_set_base_interfaces'/2" -p124065 -S"'_set_base_interfaces'() $1" -p124066 -tp124067 -a(S"'_set_id'/2" -p124068 -S"'_set_id'() $1" -p124069 -tp124070 -a(S"'_set_name'/2" -p124071 -S"'_set_name'() $1" -p124072 -tp124073 -a(S"'_set_version'/2" -p124074 -S"'_set_version'() $1" -p124075 -tp124076 -a(S'cleanup_for_destroy/1' -p124077 -S'cleanup_for_destroy() $1' -p124078 -tp124079 -a(S'contents/3' -p124080 -S'contents() $1' -p124081 -tp124082 -a(S'create_alias/5' -p124083 -S'create_alias() $1' -p124084 -tp124085 -a(S'create_attribute/6' -p124086 -S'create_attribute(${1:LRef}, ${2:Param2}, ${3:Param3}, ${4:Param4}, ${5:Param5}, ${6:Param6}) $7' -p124087 -tp124088 -a(S'create_constant/6' -p124089 -S'create_constant() $1' -p124090 -tp124091 -a(S'create_enum/5' -p124092 -S'create_enum() $1' -p124093 -tp124094 -a(S'create_exception/5' -p124095 -S'create_exception() $1' -p124096 -tp124097 -a(S'create_interface/5' -p124098 -S'create_interface() $1' -p124099 -tp124100 -a(S'create_module/4' -p124101 -S'create_module() $1' -p124102 -tp124103 -a(S'create_operation/9' -p124104 -S'create_operation() $1' -p124105 -tp124106 -a(S'create_struct/5' -p124107 -S'create_struct() $1' -p124108 -tp124109 -a(S'create_union/6' -p124110 -S'create_union() $1' -p124111 -tp124112 -a(S'describe/1' -p124113 -S'describe() $1' -p124114 -tp124115 -a(S'describe_contents/4' -p124116 -S'describe_contents() $1' -p124117 -tp124118 -a(S'describe_interface/1' -p124119 -S'describe_interface() $1' -p124120 -tp124121 -a(S'destroy/1' -p124122 -S'destroy() $1' -p124123 -tp124124 -a(S'is_a/2' -p124125 -S'is_a() $1' -p124126 -tp124127 -a(S'lookup/2' -p124128 -S'lookup() $1' -p124129 -tp124130 -a(S'lookup_name/5' -p124131 -S'lookup_name() $1' -p124132 -tp124133 -a(S'move/4' -p124134 -S'move() $1' -p124135 -tp124136 -asS'megaco_flex_scanner' -p124137 -(lp124138 -(S'is_enabled/0' -p124139 -S'is_enabled() $1' -p124140 -tp124141 -a(S'is_reentrant_enabled/0' -p124142 -S'is_reentrant_enabled() $1' -p124143 -tp124144 -a(S'is_scanner_port/2' -p124145 -S'is_scanner_port(${1:Port}, ${2:Port}) $3' -p124146 -tp124147 -a(S'scan/2' -p124148 -S'scan(${1:Binary}, ${2:Port}) $3' -p124149 -tp124150 -a(S'start/0' -p124151 -S'start() $1' -p124152 -tp124153 -a(S'start/1' -p124154 -S'start(${1:SMP}) $2' -p124155 -tp124156 -a(S'stop/1' -p124157 -S'stop(${1:Port}) $2' -p124158 -tp124159 -asS'wxGridCellEditor' -p124160 -(lp124161 -(S'beginEdit/4' -p124162 -S'beginEdit(${1:This}, ${2:Row}, ${3:Col}, ${4:Grid}) $5' -p124163 -tp124164 -a(S'create/4' -p124165 -S'create(${1:This}, ${2:Parent}, ${3:Id}, ${4:EvtHandler}) $5' -p124166 -tp124167 -a(S'endEdit/4' -p124168 -S'endEdit(${1:This}, ${2:Row}, ${3:Col}, ${4:Grid}) $5' -p124169 -tp124170 -a(S'handleReturn/2' -p124171 -S'handleReturn(${1:This}, ${2:Event}) $3' -p124172 -tp124173 -a(S'isCreated/1' -p124174 -S'isCreated(${1:This}) $2' -p124175 -tp124176 -a(S'paintBackground/3' -p124177 -S'paintBackground(${1:This}, ${2:RectCell}, ${3:Attr}) $4' -p124178 -tp124179 -a(S'parent_class/1' -p124180 -S'parent_class(${1:Param1}) $2' -p124181 -tp124182 -a(S'reset/1' -p124183 -S'reset(${1:This}) $2' -p124184 -tp124185 -a(S'setSize/2' -p124186 -S'setSize(${1:This}, ${2:Rect}) $3' -p124187 -tp124188 -a(S'show/2' -p124189 -S'show(${1:This}, ${2:Show}) $3' -p124190 -tp124191 -a(S'show/3' -p124192 -S'show(${1:This}, ${2:Show}, ${3:Param3}) $4' -p124193 -tp124194 -a(S'startingClick/1' -p124195 -S'startingClick(${1:This}) $2' -p124196 -tp124197 -a(S'startingKey/2' -p124198 -S'startingKey(${1:This}, ${2:Event}) $3' -p124199 -tp124200 -asS'cprof' -p124201 -(lp124202 -(S'analyse/0' -p124203 -S'analyse() $1' -p124204 -tp124205 -a(S'analyse/1' -p124206 -S'analyse(${1:Limit}) $2' -p124207 -tp124208 -a(S'analyse/2' -p124209 -S'analyse(${1:M}, ${2:Limit}) $3' -p124210 -tp124211 -a(S'analyze/0' -p124212 -S'analyze() $1' -p124213 -tp124214 -a(S'analyze/1' -p124215 -S'analyze(${1:X}) $2' -p124216 -tp124217 -a(S'analyze/2' -p124218 -S'analyze(${1:X}, ${2:Y}) $3' -p124219 -tp124220 -a(S'pause/0' -p124221 -S'pause() $1' -p124222 -tp124223 -a(S'pause/1' -p124224 -S'pause(${1:MFA}) $2' -p124225 -tp124226 -a(S'pause/2' -p124227 -S'pause(${1:M}, ${2:F}) $3' -p124228 -tp124229 -a(S'pause/3' -p124230 -S'pause(${1:M}, ${2:F}, ${3:A}) $4' -p124231 -tp124232 -a(S'restart/0' -p124233 -S'restart() $1' -p124234 -tp124235 -a(S'restart/1' -p124236 -S'restart(${1:MFA}) $2' -p124237 -tp124238 -a(S'restart/2' -p124239 -S'restart(${1:M}, ${2:F}) $3' -p124240 -tp124241 -a(S'restart/3' -p124242 -S'restart(${1:M}, ${2:F}, ${3:A}) $4' -p124243 -tp124244 -a(S'start/0' -p124245 -S'start() $1' -p124246 -tp124247 -a(S'start/1' -p124248 -S'start(${1:MFA}) $2' -p124249 -tp124250 -a(S'start/2' -p124251 -S'start(${1:M}, ${2:F}) $3' -p124252 -tp124253 -a(S'start/3' -p124254 -S'start(${1:M}, ${2:F}, ${3:A}) $4' -p124255 -tp124256 -a(S'stop/0' -p124257 -S'stop() $1' -p124258 -tp124259 -a(S'stop/1' -p124260 -S'stop(${1:MFA}) $2' -p124261 -tp124262 -a(S'stop/2' -p124263 -S'stop(${1:M}, ${2:F}) $3' -p124264 -tp124265 -a(S'stop/3' -p124266 -S'stop(${1:M}, ${2:F}, ${3:A}) $4' -p124267 -tp124268 -asS'asn1ct_gen' -p124269 -(lp124270 -(S'constructed_suffix/2' -p124271 -S'constructed_suffix(${1:Param1}, ${2:Param2}) $3' -p124272 -tp124273 -a(S'def_to_tag/1' -p124274 -S'def_to_tag(${1:Def}) $2' -p124275 -tp124276 -a(S'demit/1' -p124277 -S'demit(${1:Term}) $2' -p124278 -tp124279 -a(S'emit/1' -p124280 -S'emit(${1:Term}) $2' -p124281 -tp124282 -a(S'gen_check_call/7' -p124283 -S'gen_check_call(${1:TopType}, ${2:Cname}, ${3:Type}, ${4:InnerType}, ${5:WhatKind}, ${6:DefaultValue}, ${7:Element}) $8' -p124284 -tp124285 -a(S'gen_decode_constructed/4' -p124286 -S'gen_decode_constructed(${1:Erules}, ${2:Typename}, ${3:InnerType}, ${4:D}) $5' -p124287 -tp124288 -a(S'gen_encode_constructed/4' -p124289 -S'gen_encode_constructed(${1:Erules}, ${2:Typename}, ${3:InnerType}, ${4:D}) $5' -p124290 -tp124291 -a(S'gen_head/3' -p124292 -S'gen_head(${1:Erules}, ${2:Mod}, ${3:Hrl}) $4' -p124293 -tp124294 -a(S'get_classfieldcategory/2' -p124295 -S'get_classfieldcategory(${1:Type}, ${2:FieldName}) $3' -p124296 -tp124297 -a(S'get_constraint/2' -p124298 -S'get_constraint(${1:C}, ${2:Key}) $3' -p124299 -tp124300 -a(S'get_fieldcategory/2' -p124301 -S'get_fieldcategory(${1:Param1}, ${2:FieldName}) $3' -p124302 -tp124303 -a(S'get_inner/1' -p124304 -S'get_inner(${1:A}) $2' -p124305 -tp124306 -a(S'get_record_name_prefix/0' -p124307 -S'get_record_name_prefix() $1' -p124308 -tp124309 -a(S'get_typefromobject/1' -p124310 -S'get_typefromobject(${1:Type}) $2' -p124311 -tp124312 -a(S'index2suffix/1' -p124313 -S'index2suffix(${1:N}) $2' -p124314 -tp124315 -a(S'insert_once/2' -p124316 -S'insert_once(${1:Table}, ${2:Object}) $3' -p124317 -tp124318 -a(S'list2name/1' -p124319 -S'list2name(${1:L}) $2' -p124320 -tp124321 -a(S'list2rname/1' -p124322 -S'list2rname(${1:L}) $2' -p124323 -tp124324 -a(S'mk_var/1' -p124325 -S'mk_var(${1:X}) $2' -p124326 -tp124327 -a(S'nif_parameter/0' -p124328 -S'nif_parameter() $1' -p124329 -tp124330 -a(S'pgen/5' -p124331 -S'pgen(${1:OutFile}, ${2:Erules}, ${3:Module}, ${4:TypeOrVal}, ${5:Options}) $6' -p124332 -tp124333 -a(S'pgen_exports/3' -p124334 -S'pgen_exports(${1:Erules}, ${2:Param2}, ${3:Param3}) $4' -p124335 -tp124336 -a(S'pgen_hrl/5' -p124337 -S'pgen_hrl(${1:Erules}, ${2:Module}, ${3:TypeOrVal}, ${4:Options}, ${5:Param5}) $6' -p124338 -tp124339 -a(S'pgen_module/6' -p124340 -S'pgen_module() $1' -p124341 -tp124342 -a(S'prim_bif/1' -p124343 -S'prim_bif(${1:X}) $2' -p124344 -tp124345 -a(S'rt2ct_suffix/0' -p124346 -S'rt2ct_suffix() $1' -p124347 -tp124348 -a(S'rt2ct_suffix/1' -p124349 -S'rt2ct_suffix(${1:Param1}) $2' -p124350 -tp124351 -a(S'type/1' -p124352 -S'type(${1:X}) $2' -p124353 -tp124354 -a(S'type_from_object/1' -p124355 -S'type_from_object(${1:X}) $2' -p124356 -tp124357 -a(S'un_hyphen_var/1' -p124358 -S'un_hyphen_var(${1:X}) $2' -p124359 -tp124360 -a(S'unify_if_string/1' -p124361 -S'unify_if_string(${1:PrimType}) $2' -p124362 -tp124363 -asS'wxStyledTextEvent' -p124364 -(lp124365 -(S'getAlt/1' -p124366 -S'getAlt(${1:This}) $2' -p124367 -tp124368 -a(S'getClientData/1' -p124369 -S'getClientData(${1:This}) $2' -p124370 -tp124371 -a(S'getControl/1' -p124372 -S'getControl(${1:This}) $2' -p124373 -tp124374 -a(S'getDragAllowMove/1' -p124375 -S'getDragAllowMove(${1:This}) $2' -p124376 -tp124377 -a(S'getDragResult/1' -p124378 -S'getDragResult(${1:This}) $2' -p124379 -tp124380 -a(S'getDragText/1' -p124381 -S'getDragText(${1:This}) $2' -p124382 -tp124383 -a(S'getExtraLong/1' -p124384 -S'getExtraLong(${1:This}) $2' -p124385 -tp124386 -a(S'getFoldLevelNow/1' -p124387 -S'getFoldLevelNow(${1:This}) $2' -p124388 -tp124389 -a(S'getFoldLevelPrev/1' -p124390 -S'getFoldLevelPrev(${1:This}) $2' -p124391 -tp124392 -a(S'getId/1' -p124393 -S'getId(${1:This}) $2' -p124394 -tp124395 -a(S'getInt/1' -p124396 -S'getInt(${1:This}) $2' -p124397 -tp124398 -a(S'getKey/1' -p124399 -S'getKey(${1:This}) $2' -p124400 -tp124401 -a(S'getLParam/1' -p124402 -S'getLParam(${1:This}) $2' -p124403 -tp124404 -a(S'getLength/1' -p124405 -S'getLength(${1:This}) $2' -p124406 -tp124407 -a(S'getLine/1' -p124408 -S'getLine(${1:This}) $2' -p124409 -tp124410 -a(S'getLinesAdded/1' -p124411 -S'getLinesAdded(${1:This}) $2' -p124412 -tp124413 -a(S'getListType/1' -p124414 -S'getListType(${1:This}) $2' -p124415 -tp124416 -a(S'getMargin/1' -p124417 -S'getMargin(${1:This}) $2' -p124418 -tp124419 -a(S'getMessage/1' -p124420 -S'getMessage(${1:This}) $2' -p124421 -tp124422 -a(S'getModificationType/1' -p124423 -S'getModificationType(${1:This}) $2' -p124424 -tp124425 -a(S'getModifiers/1' -p124426 -S'getModifiers(${1:This}) $2' -p124427 -tp124428 -a(S'getPosition/1' -p124429 -S'getPosition(${1:This}) $2' -p124430 -tp124431 -a(S'getSelection/1' -p124432 -S'getSelection(${1:This}) $2' -p124433 -tp124434 -a(S'getShift/1' -p124435 -S'getShift(${1:This}) $2' -p124436 -tp124437 -a(S'getSkipped/1' -p124438 -S'getSkipped(${1:This}) $2' -p124439 -tp124440 -a(S'getString/1' -p124441 -S'getString(${1:This}) $2' -p124442 -tp124443 -a(S'getText/1' -p124444 -S'getText(${1:This}) $2' -p124445 -tp124446 -a(S'getTimestamp/1' -p124447 -S'getTimestamp(${1:This}) $2' -p124448 -tp124449 -a(S'getWParam/1' -p124450 -S'getWParam(${1:This}) $2' -p124451 -tp124452 -a(S'getX/1' -p124453 -S'getX(${1:This}) $2' -p124454 -tp124455 -a(S'getY/1' -p124456 -S'getY(${1:This}) $2' -p124457 -tp124458 -a(S'isChecked/1' -p124459 -S'isChecked(${1:This}) $2' -p124460 -tp124461 -a(S'isCommandEvent/1' -p124462 -S'isCommandEvent(${1:This}) $2' -p124463 -tp124464 -a(S'isSelection/1' -p124465 -S'isSelection(${1:This}) $2' -p124466 -tp124467 -a(S'parent_class/1' -p124468 -S'parent_class(${1:Param1}) $2' -p124469 -tp124470 -a(S'resumePropagation/2' -p124471 -S'resumePropagation(${1:This}, ${2:PropagationLevel}) $3' -p124472 -tp124473 -a(S'setInt/2' -p124474 -S'setInt(${1:This}, ${2:I}) $3' -p124475 -tp124476 -a(S'setString/2' -p124477 -S'setString(${1:This}, ${2:S}) $3' -p124478 -tp124479 -a(S'shouldPropagate/1' -p124480 -S'shouldPropagate(${1:This}) $2' -p124481 -tp124482 -a(S'skip/1' -p124483 -S'skip(${1:This}) $2' -p124484 -tp124485 -a(S'skip/2' -p124486 -S'skip(${1:This}, ${2:Options}) $3' -p124487 -tp124488 -a(S'stopPropagation/1' -p124489 -S'stopPropagation(${1:This}) $2' -p124490 -tp124491 -asS'CosPropertyService_UnsupportedMode' -p124492 -(lp124493 -(S'id/0' -p124494 -S'id() $1' -p124495 -tp124496 -a(S'name/0' -p124497 -S'name() $1' -p124498 -tp124499 -a(S'tc/0' -p124500 -S'tc() $1' -p124501 -tp124502 -asS'frac' -p124503 -(lp124504 -(S'expand/3' -p124505 -S'expand(${1:N}, ${2:Index}, ${3:X}) $4' -p124506 -tp124507 -a(S'go/0' -p124508 -S'go() $1' -p124509 -tp124510 -a(S'grow/2' -p124511 -S'grow(${1:NGens}, ${2:RuleNumber}) $3' -p124512 -tp124513 -a(S'start/0' -p124514 -S'start() $1' -p124515 -tp124516 -a(S'subst/2' -p124517 -S'subst(${1:Param1}, ${2:Index}) $3' -p124518 -tp124519 -a(S'test/0' -p124520 -S'test() $1' -p124521 -tp124522 -asS'httpd_acceptor' -p124523 -(lp124524 -(S'acceptor_init/6' -p124525 -S'acceptor_init() $1' -p124526 -tp124527 -a(S'acceptor_init/7' -p124528 -S'acceptor_init() $1' -p124529 -tp124530 -a(S'acceptor_loop/5' -p124531 -S'acceptor_loop(${1:Manager}, ${2:SocketType}, ${3:ListenSocket}, ${4:ConfigDb}, ${5:AcceptTimeout}) $6' -p124532 -tp124533 -a(S'start_link/5' -p124534 -S'start_link(${1:Manager}, ${2:SocketType}, ${3:ListenSocket}, ${4:ConfigDb}, ${5:AcceptTimeout}) $6' -p124535 -tp124536 -a(S'start_link/6' -p124537 -S'start_link(${1:Manager}, ${2:SocketType}, ${3:Addr}, ${4:Port}, ${5:ConfigDb}, ${6:AcceptTimeout}) $7' -p124538 -tp124539 -asS'observer_wx' -p124540 -(lp124541 -(S'check_page_title/1' -p124542 -S'check_page_title(${1:Notebook}) $2' -p124543 -tp124544 -a(S'code_change/3' -p124545 -S'code_change(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p124546 -tp124547 -a(S'create_menus/2' -p124548 -S'create_menus(${1:Object}, ${2:Menus}) $3' -p124549 -tp124550 -a(S'create_txt_dialog/4' -p124551 -S'create_txt_dialog(${1:Frame}, ${2:Msg}, ${3:Title}, ${4:Style}) $5' -p124552 -tp124553 -a(S'get_attrib/1' -p124554 -S'get_attrib(${1:What}) $2' -p124555 -tp124556 -a(S'get_tracer/0' -p124557 -S'get_tracer() $1' -p124558 -tp124559 -a(S'handle_call/3' -p124560 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p124561 -tp124562 -a(S'handle_cast/2' -p124563 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p124564 -tp124565 -a(S'handle_event/2' -p124566 -S'handle_event(${1:Event}, ${2:State}) $3' -p124567 -tp124568 -a(S'handle_info/2' -p124569 -S'handle_info(${1:Param1}, ${2:State}) $3' -p124570 -tp124571 -a(S'init/1' -p124572 -S'init(${1:Param1}) $2' -p124573 -tp124574 -a(S'return_to_localnode/2' -p124575 -S'return_to_localnode(${1:Frame}, ${2:Node}) $3' -p124576 -tp124577 -a(S'start/0' -p124578 -S'start() $1' -p124579 -tp124580 -a(S'terminate/2' -p124581 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p124582 -tp124583 -a(S'try_rpc/4' -p124584 -S'try_rpc(${1:Node}, ${2:Mod}, ${3:Func}, ${4:Args}) $5' -p124585 -tp124586 -asS'CosNotifyFilter_FilterFactory' -p124587 -(lp124588 -(S'code_change/3' -p124589 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p124590 -tp124591 -a(S'create_filter/2' -p124592 -S'create_filter(${1:OE_THIS}, ${2:Constraint_grammar}) $3' -p124593 -tp124594 -a(S'create_filter/3' -p124595 -S'create_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:Constraint_grammar}) $4' -p124596 -tp124597 -a(S'create_mapping_filter/3' -p124598 -S'create_mapping_filter(${1:OE_THIS}, ${2:Constraint_grammar}, ${3:Default_value}) $4' -p124599 -tp124600 -a(S'create_mapping_filter/4' -p124601 -S'create_mapping_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:Constraint_grammar}, ${4:Default_value}) $5' -p124602 -tp124603 -a(S'handle_call/3' -p124604 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p124605 -tp124606 -a(S'handle_cast/2' -p124607 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p124608 -tp124609 -a(S'handle_info/2' -p124610 -S'handle_info(${1:Info}, ${2:State}) $3' -p124611 -tp124612 -a(S'init/1' -p124613 -S'init(${1:Env}) $2' -p124614 -tp124615 -a(S'oe_create/0' -p124616 -S'oe_create() $1' -p124617 -tp124618 -a(S'oe_create/1' -p124619 -S'oe_create(${1:Env}) $2' -p124620 -tp124621 -a(S'oe_create/2' -p124622 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p124623 -tp124624 -a(S'oe_create_link/0' -p124625 -S'oe_create_link() $1' -p124626 -tp124627 -a(S'oe_create_link/1' -p124628 -S'oe_create_link(${1:Env}) $2' -p124629 -tp124630 -a(S'oe_create_link/2' -p124631 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p124632 -tp124633 -a(S'oe_get_interface/0' -p124634 -S'oe_get_interface() $1' -p124635 -tp124636 -a(S'oe_is_a/1' -p124637 -S'oe_is_a(${1:Param1}) $2' -p124638 -tp124639 -a(S'oe_tc/1' -p124640 -S'oe_tc(${1:Param1}) $2' -p124641 -tp124642 -a(S'terminate/2' -p124643 -S'terminate(${1:Reason}, ${2:State}) $3' -p124644 -tp124645 -a(S'typeID/0' -p124646 -S'typeID() $1' -p124647 -tp124648 -asS'wxSizerItem' -p124649 -(lp124650 -(S'calcMin/1' -p124651 -S'calcMin(${1:This}) $2' -p124652 -tp124653 -a(S'deleteWindows/1' -p124654 -S'deleteWindows(${1:This}) $2' -p124655 -tp124656 -a(S'destroy/1' -p124657 -S'destroy(${1:This}) $2' -p124658 -tp124659 -a(S'detachSizer/1' -p124660 -S'detachSizer(${1:This}) $2' -p124661 -tp124662 -a(S'getBorder/1' -p124663 -S'getBorder(${1:This}) $2' -p124664 -tp124665 -a(S'getFlag/1' -p124666 -S'getFlag(${1:This}) $2' -p124667 -tp124668 -a(S'getMinSize/1' -p124669 -S'getMinSize(${1:This}) $2' -p124670 -tp124671 -a(S'getPosition/1' -p124672 -S'getPosition(${1:This}) $2' -p124673 -tp124674 -a(S'getProportion/1' -p124675 -S'getProportion(${1:This}) $2' -p124676 -tp124677 -a(S'getRatio/1' -p124678 -S'getRatio(${1:This}) $2' -p124679 -tp124680 -a(S'getRect/1' -p124681 -S'getRect(${1:This}) $2' -p124682 -tp124683 -a(S'getSize/1' -p124684 -S'getSize(${1:This}) $2' -p124685 -tp124686 -a(S'getSizer/1' -p124687 -S'getSizer(${1:This}) $2' -p124688 -tp124689 -a(S'getSpacer/1' -p124690 -S'getSpacer(${1:This}) $2' -p124691 -tp124692 -a(S'getUserData/1' -p124693 -S'getUserData(${1:This}) $2' -p124694 -tp124695 -a(S'getWindow/1' -p124696 -S'getWindow(${1:This}) $2' -p124697 -tp124698 -a(S'isShown/1' -p124699 -S'isShown(${1:This}) $2' -p124700 -tp124701 -a(S'isSizer/1' -p124702 -S'isSizer(${1:This}) $2' -p124703 -tp124704 -a(S'isSpacer/1' -p124705 -S'isSpacer(${1:This}) $2' -p124706 -tp124707 -a(S'isWindow/1' -p124708 -S'isWindow(${1:This}) $2' -p124709 -tp124710 -a(S'new/0' -p124711 -S'new() $1' -p124712 -tp124713 -a(S'new/2' -p124714 -S'new(${1:Window}, ${2:Flags}) $3' -p124715 -tp124716 -a(S'new/3' -p124717 -S'new(${1:Width}, ${2:Height}, ${3:Flags}) $4' -p124718 -tp124719 -a(S'new/5' -p124720 -S'new(${1:Window}, ${2:Proportion}, ${3:Flag}, ${4:Border}, ${5:UserData}) $6' -p124721 -tp124722 -a(S'new/6' -p124723 -S'new(${1:Width}, ${2:Height}, ${3:Proportion}, ${4:Flag}, ${5:Border}, ${6:UserData}) $7' -p124724 -tp124725 -a(S'parent_class/1' -p124726 -S'parent_class(${1:Param1}) $2' -p124727 -tp124728 -a(S'setBorder/2' -p124729 -S'setBorder(${1:This}, ${2:Border}) $3' -p124730 -tp124731 -a(S'setDimension/3' -p124732 -S'setDimension(${1:This}, ${2:Pos}, ${3:Size}) $4' -p124733 -tp124734 -a(S'setFlag/2' -p124735 -S'setFlag(${1:This}, ${2:Flag}) $3' -p124736 -tp124737 -a(S'setInitSize/3' -p124738 -S'setInitSize(${1:This}, ${2:X}, ${3:Y}) $4' -p124739 -tp124740 -a(S'setMinSize/2' -p124741 -S'setMinSize(${1:This}, ${2:Size}) $3' -p124742 -tp124743 -a(S'setMinSize/3' -p124744 -S'setMinSize(${1:This}, ${2:X}, ${3:Y}) $4' -p124745 -tp124746 -a(S'setProportion/2' -p124747 -S'setProportion(${1:This}, ${2:Proportion}) $3' -p124748 -tp124749 -a(S'setRatio/2' -p124750 -S'setRatio(${1:This}, ${2:Ratio}) $3' -p124751 -tp124752 -a(S'setRatio/3' -p124753 -S'setRatio(${1:This}, ${2:Width}, ${3:Height}) $4' -p124754 -tp124755 -a(S'setSizer/2' -p124756 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p124757 -tp124758 -a(S'setSpacer/2' -p124759 -S'setSpacer(${1:This}, ${2:Size}) $3' -p124760 -tp124761 -a(S'setSpacer/3' -p124762 -S'setSpacer(${1:This}, ${2:Width}, ${3:Height}) $4' -p124763 -tp124764 -a(S'setWindow/2' -p124765 -S'setWindow(${1:This}, ${2:Window}) $3' -p124766 -tp124767 -a(S'show/2' -p124768 -S'show(${1:This}, ${2:Show}) $3' -p124769 -tp124770 -asS'orber_iiop_tracer_stealth' -p124771 -(lp124772 -(S'closed_in_connection/1' -p124773 -S'closed_in_connection(${1:Arg}) $2' -p124774 -tp124775 -a(S'closed_out_connection/1' -p124776 -S'closed_out_connection(${1:Arg}) $2' -p124777 -tp124778 -a(S'in_reply/6' -p124779 -S'in_reply(${1:Ref}, ${2:Param2}, ${3:Param3}, ${4:Op}, ${5:Reply}, ${6:Args}) $7' -p124780 -tp124781 -a(S'in_reply_encoded/6' -p124782 -S'in_reply_encoded(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}, ${5:Bin}, ${6:Args}) $7' -p124783 -tp124784 -a(S'in_request/6' -p124785 -S'in_request(${1:Ref}, ${2:Param2}, ${3:Param3}, ${4:Op}, ${5:Params}, ${6:Args}) $7' -p124786 -tp124787 -a(S'in_request_encoded/6' -p124788 -S'in_request_encoded(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}, ${5:Bin}, ${6:Args}) $7' -p124789 -tp124790 -a(S'new_in_connection/5' -p124791 -S'new_in_connection(${1:Param1}, ${2:PHost}, ${3:PPort}, ${4:SHost}, ${5:SPort}) $6' -p124792 -tp124793 -a(S'new_out_connection/5' -p124794 -S'new_out_connection(${1:Param1}, ${2:PHost}, ${3:PPort}, ${4:SHost}, ${5:SPort}) $6' -p124795 -tp124796 -a(S'out_reply/6' -p124797 -S'out_reply(${1:Ref}, ${2:Param2}, ${3:Param3}, ${4:Op}, ${5:Reply}, ${6:Args}) $7' -p124798 -tp124799 -a(S'out_reply_encoded/6' -p124800 -S'out_reply_encoded(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}, ${5:Bin}, ${6:Args}) $7' -p124801 -tp124802 -a(S'out_request/6' -p124803 -S'out_request(${1:Ref}, ${2:Param2}, ${3:Param3}, ${4:Op}, ${5:Params}, ${6:Args}) $7' -p124804 -tp124805 -a(S'out_request_encoded/6' -p124806 -S'out_request_encoded(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}, ${5:Bin}, ${6:Args}) $7' -p124807 -tp124808 -asS'OrberApp_IFR_impl' -p124809 -(lp124810 -(S'code_change/3' -p124811 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p124812 -tp124813 -a(S'get_absolute_name/3' -p124814 -S'get_absolute_name(${1:Param1}, ${2:State}, ${3:TypeID}) $4' -p124815 -tp124816 -a(S'get_user_exception_type/3' -p124817 -S'get_user_exception_type(${1:Param1}, ${2:State}, ${3:TypeId}) $4' -p124818 -tp124819 -a(S'init/1' -p124820 -S'init(${1:State}) $2' -p124821 -tp124822 -a(S'terminate/2' -p124823 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p124824 -tp124825 -asS'diameter_reg' -p124826 -(lp124827 -(S'add/1' -p124828 -S'add(${1:T}) $2' -p124829 -tp124830 -a(S'add_new/1' -p124831 -S'add_new(${1:T}) $2' -p124832 -tp124833 -a(S'code_change/3' -p124834 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p124835 -tp124836 -a(S'del/1' -p124837 -S'del(${1:T}) $2' -p124838 -tp124839 -a(S'handle_call/3' -p124840 -S'handle_call(${1:Req}, ${2:From}, ${3:State}) $4' -p124841 -tp124842 -a(S'handle_cast/2' -p124843 -S'handle_cast(${1:Msg}, ${2:State}) $3' -p124844 -tp124845 -a(S'handle_info/2' -p124846 -S'handle_info(${1:Info}, ${2:State}) $3' -p124847 -tp124848 -a(S'init/1' -p124849 -S'init(${1:Param1}) $2' -p124850 -tp124851 -a(S'match/1' -p124852 -S'match(${1:Pat}) $2' -p124853 -tp124854 -a(S'pids/0' -p124855 -S'pids() $1' -p124856 -tp124857 -a(S'repl/2' -p124858 -S'repl(${1:T}, ${2:U}) $3' -p124859 -tp124860 -a(S'start_link/0' -p124861 -S'start_link() $1' -p124862 -tp124863 -a(S'state/0' -p124864 -S'state() $1' -p124865 -tp124866 -a(S'terminate/2' -p124867 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p124868 -tp124869 -a(S'terms/0' -p124870 -S'terms() $1' -p124871 -tp124872 -a(S'uptime/0' -p124873 -S'uptime() $1' -p124874 -tp124875 -asS'CosEventDomainAdmin_DiamondCreationForbidden' -p124876 -(lp124877 -(S'id/0' -p124878 -S'id() $1' -p124879 -tp124880 -a(S'name/0' -p124881 -S'name() $1' -p124882 -tp124883 -a(S'tc/0' -p124884 -S'tc() $1' -p124885 -tp124886 -asS'http_response' -p124887 -(lp124888 -(S'header_list/1' -p124889 -S'header_list(${1:Headers}) $2' -p124890 -tp124891 -a(S'headers/2' -p124892 -S'headers(${1:Param1}, ${2:Headers}) $3' -p124893 -tp124894 -asS'wxMouseEvent' -p124895 -(lp124896 -(S'altDown/1' -p124897 -S'altDown(${1:This}) $2' -p124898 -tp124899 -a(S'button/2' -p124900 -S'button(${1:This}, ${2:But}) $3' -p124901 -tp124902 -a(S'buttonDClick/1' -p124903 -S'buttonDClick(${1:This}) $2' -p124904 -tp124905 -a(S'buttonDClick/2' -p124906 -S'buttonDClick(${1:This}, ${2:Param2}) $3' -p124907 -tp124908 -a(S'buttonDown/1' -p124909 -S'buttonDown(${1:This}) $2' -p124910 -tp124911 -a(S'buttonDown/2' -p124912 -S'buttonDown(${1:This}, ${2:Param2}) $3' -p124913 -tp124914 -a(S'buttonUp/1' -p124915 -S'buttonUp(${1:This}) $2' -p124916 -tp124917 -a(S'buttonUp/2' -p124918 -S'buttonUp(${1:This}, ${2:Param2}) $3' -p124919 -tp124920 -a(S'cmdDown/1' -p124921 -S'cmdDown(${1:This}) $2' -p124922 -tp124923 -a(S'controlDown/1' -p124924 -S'controlDown(${1:This}) $2' -p124925 -tp124926 -a(S'dragging/1' -p124927 -S'dragging(${1:This}) $2' -p124928 -tp124929 -a(S'entering/1' -p124930 -S'entering(${1:This}) $2' -p124931 -tp124932 -a(S'getButton/1' -p124933 -S'getButton(${1:This}) $2' -p124934 -tp124935 -a(S'getId/1' -p124936 -S'getId(${1:This}) $2' -p124937 -tp124938 -a(S'getLinesPerAction/1' -p124939 -S'getLinesPerAction(${1:This}) $2' -p124940 -tp124941 -a(S'getLogicalPosition/2' -p124942 -S'getLogicalPosition(${1:This}, ${2:Dc}) $3' -p124943 -tp124944 -a(S'getPosition/1' -p124945 -S'getPosition(${1:This}) $2' -p124946 -tp124947 -a(S'getSkipped/1' -p124948 -S'getSkipped(${1:This}) $2' -p124949 -tp124950 -a(S'getTimestamp/1' -p124951 -S'getTimestamp(${1:This}) $2' -p124952 -tp124953 -a(S'getWheelDelta/1' -p124954 -S'getWheelDelta(${1:This}) $2' -p124955 -tp124956 -a(S'getWheelRotation/1' -p124957 -S'getWheelRotation(${1:This}) $2' -p124958 -tp124959 -a(S'getX/1' -p124960 -S'getX(${1:This}) $2' -p124961 -tp124962 -a(S'getY/1' -p124963 -S'getY(${1:This}) $2' -p124964 -tp124965 -a(S'isButton/1' -p124966 -S'isButton(${1:This}) $2' -p124967 -tp124968 -a(S'isCommandEvent/1' -p124969 -S'isCommandEvent(${1:This}) $2' -p124970 -tp124971 -a(S'isPageScroll/1' -p124972 -S'isPageScroll(${1:This}) $2' -p124973 -tp124974 -a(S'leaving/1' -p124975 -S'leaving(${1:This}) $2' -p124976 -tp124977 -a(S'leftDClick/1' -p124978 -S'leftDClick(${1:This}) $2' -p124979 -tp124980 -a(S'leftDown/1' -p124981 -S'leftDown(${1:This}) $2' -p124982 -tp124983 -a(S'leftIsDown/1' -p124984 -S'leftIsDown(${1:This}) $2' -p124985 -tp124986 -a(S'leftUp/1' -p124987 -S'leftUp(${1:This}) $2' -p124988 -tp124989 -a(S'metaDown/1' -p124990 -S'metaDown(${1:This}) $2' -p124991 -tp124992 -a(S'middleDClick/1' -p124993 -S'middleDClick(${1:This}) $2' -p124994 -tp124995 -a(S'middleDown/1' -p124996 -S'middleDown(${1:This}) $2' -p124997 -tp124998 -a(S'middleIsDown/1' -p124999 -S'middleIsDown(${1:This}) $2' -p125000 -tp125001 -a(S'middleUp/1' -p125002 -S'middleUp(${1:This}) $2' -p125003 -tp125004 -a(S'moving/1' -p125005 -S'moving(${1:This}) $2' -p125006 -tp125007 -a(S'parent_class/1' -p125008 -S'parent_class(${1:Param1}) $2' -p125009 -tp125010 -a(S'resumePropagation/2' -p125011 -S'resumePropagation(${1:This}, ${2:PropagationLevel}) $3' -p125012 -tp125013 -a(S'rightDClick/1' -p125014 -S'rightDClick(${1:This}) $2' -p125015 -tp125016 -a(S'rightDown/1' -p125017 -S'rightDown(${1:This}) $2' -p125018 -tp125019 -a(S'rightIsDown/1' -p125020 -S'rightIsDown(${1:This}) $2' -p125021 -tp125022 -a(S'rightUp/1' -p125023 -S'rightUp(${1:This}) $2' -p125024 -tp125025 -a(S'shiftDown/1' -p125026 -S'shiftDown(${1:This}) $2' -p125027 -tp125028 -a(S'shouldPropagate/1' -p125029 -S'shouldPropagate(${1:This}) $2' -p125030 -tp125031 -a(S'skip/1' -p125032 -S'skip(${1:This}) $2' -p125033 -tp125034 -a(S'skip/2' -p125035 -S'skip(${1:This}, ${2:Options}) $3' -p125036 -tp125037 -a(S'stopPropagation/1' -p125038 -S'stopPropagation(${1:This}) $2' -p125039 -tp125040 -asS'systools_lib' -p125041 -(lp125042 -(S'file_term2binary/2' -p125043 -S'file_term2binary(${1:FileIn}, ${2:FileOut}) $3' -p125044 -tp125045 -a(S'get_dirs/1' -p125046 -S'get_dirs(${1:RegPath}) $2' -p125047 -tp125048 -a(S'get_path/1' -p125049 -S'get_path(${1:RegPath}) $2' -p125050 -tp125051 -a(S'read_term/1' -p125052 -S'read_term(${1:File}) $2' -p125053 -tp125054 -a(S'read_term_from_stream/2' -p125055 -S'read_term_from_stream(${1:Stream}, ${2:File}) $3' -p125056 -tp125057 -a(S'werror/2' -p125058 -S'werror(${1:Options}, ${2:Warnings}) $3' -p125059 -tp125060 -asS'io_lib_pretty' -p125061 -(lp125062 -(S'print/1' -p125063 -S'print(${1:Term}) $2' -p125064 -tp125065 -a(S'print/2' -p125066 -S'print(${1:Term}, ${2:RecDefFun}) $3' -p125067 -tp125068 -a(S'print/3' -p125069 -S'print(${1:Term}, ${2:Depth}, ${3:RecDefFun}) $4' -p125070 -tp125071 -a(S'print/4' -p125072 -S'print(${1:Term}, ${2:Col}, ${3:Ll}, ${4:D}) $5' -p125073 -tp125074 -a(S'print/5' -p125075 -S'print(${1:Term}, ${2:Col}, ${3:Ll}, ${4:D}, ${5:RecDefFun}) $6' -p125076 -tp125077 -a(S'print/6' -p125078 -S'print(${1:Term}, ${2:Col}, ${3:Ll}, ${4:D}, ${5:M0}, ${6:RecDefFun}) $7' -p125079 -tp125080 -asS'filelib' -p125081 -(lp125082 -(S'compile_wildcard/1' -p125083 -S'compile_wildcard(${1:Pattern}) $2' -p125084 -tp125085 -a(S'ensure_dir/1' -p125086 -S'ensure_dir(${1:Name}) $2' -p125087 -tp125088 -a(S'file_size/1' -p125089 -S'file_size(${1:Filename}) $2' -p125090 -tp125091 -a(S'file_size/2' -p125092 -S'file_size(${1:File}, ${2:Mod}) $3' -p125093 -tp125094 -a(S'fold_files/5' -p125095 -S'fold_files(${1:Dir}, ${2:RegExp}, ${3:Recursive}, ${4:Fun}, ${5:AccIn}) $6' -p125096 -tp125097 -a(S'fold_files/6' -p125098 -S'fold_files(${1:Dir}, ${2:RegExp}, ${3:Recursive}, ${4:Fun}, ${5:Acc}, ${6:Mod}) $7' -p125099 -tp125100 -a(S'is_dir/1' -p125101 -S'is_dir(${1:Name}) $2' -p125102 -tp125103 -a(S'is_dir/2' -p125104 -S'is_dir(${1:Dir}, ${2:Mod}) $3' -p125105 -tp125106 -a(S'is_file/1' -p125107 -S'is_file(${1:Name}) $2' -p125108 -tp125109 -a(S'is_file/2' -p125110 -S'is_file(${1:File}, ${2:Mod}) $3' -p125111 -tp125112 -a(S'is_regular/1' -p125113 -S'is_regular(${1:Name}) $2' -p125114 -tp125115 -a(S'is_regular/2' -p125116 -S'is_regular(${1:File}, ${2:Mod}) $3' -p125117 -tp125118 -a(S'last_modified/1' -p125119 -S'last_modified(${1:Name}) $2' -p125120 -tp125121 -a(S'last_modified/2' -p125122 -S'last_modified(${1:File}, ${2:Mod}) $3' -p125123 -tp125124 -a(S'wildcard/1' -p125125 -S'wildcard(${1:Wildcard}) $2' -p125126 -tp125127 -a(S'wildcard/2' -p125128 -S'wildcard(${1:Wildcard}, ${2:Cwd}) $3' -p125129 -tp125130 -a(S'wildcard/3' -p125131 -S'wildcard(${1:Pattern}, ${2:Cwd}, ${3:Mod}) $4' -p125132 -tp125133 -asS'ssh_transport' -p125134 -(lp125135 -(S'accept/4' -p125136 -S'accept(${1:Address}, ${2:Port}, ${3:Socket}, ${4:Options}) $5' -p125137 -tp125138 -a(S'connect/5' -p125139 -S'connect(${1:ConnectionSup}, ${2:Address}, ${3:Port}, ${4:SocketOpts}, ${5:Opts}) $6' -p125140 -tp125141 -a(S'decompress/2' -p125142 -S'decompress(${1:Ssh}, ${2:Data}) $3' -p125143 -tp125144 -a(S'decrypt_blocks/3' -p125145 -S'decrypt_blocks(${1:Bin}, ${2:Length}, ${3:Ssh0}) $4' -p125146 -tp125147 -a(S'decrypt_first_block/2' -p125148 -S'decrypt_first_block(${1:Bin}, ${2:Ssh0}) $3' -p125149 -tp125150 -a(S'handle_hello_version/1' -p125151 -S'handle_hello_version(${1:Version}) $2' -p125152 -tp125153 -a(S'handle_kex_dh_gex_group/2' -p125154 -S'handle_kex_dh_gex_group(${1:Param1}, ${2:Ssh0}) $3' -p125155 -tp125156 -a(S'handle_kex_dh_gex_reply/2' -p125157 -S'handle_kex_dh_gex_reply() $1' -p125158 -tp125159 -a(S'handle_kex_dh_gex_request/2' -p125160 -S'handle_kex_dh_gex_request() $1' -p125161 -tp125162 -a(S'handle_kexdh_init/2' -p125163 -S'handle_kexdh_init(${1:Param1}, ${2:Ssh0}) $3' -p125164 -tp125165 -a(S'handle_kexdh_reply/2' -p125166 -S'handle_kexdh_reply() $1' -p125167 -tp125168 -a(S'handle_kexinit_msg/3' -p125169 -S'handle_kexinit_msg() $1' -p125170 -tp125171 -a(S'handle_new_keys/2' -p125172 -S'handle_new_keys(${1:Param1}, ${2:Ssh0}) $3' -p125173 -tp125174 -a(S'hello_version_msg/1' -p125175 -S'hello_version_msg(${1:Data}) $2' -p125176 -tp125177 -a(S'is_valid_mac/3' -p125178 -S'is_valid_mac(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p125179 -tp125180 -a(S'kex_dh_gex_messages/0' -p125181 -S'kex_dh_gex_messages() $1' -p125182 -tp125183 -a(S'kexdh_messages/0' -p125184 -S'kexdh_messages() $1' -p125185 -tp125186 -a(S'key_exchange_init_msg/1' -p125187 -S'key_exchange_init_msg(${1:Ssh0}) $2' -p125188 -tp125189 -a(S'key_init/3' -p125190 -S'key_init(${1:Param1}, ${2:Ssh}, ${3:Value}) $4' -p125191 -tp125192 -a(S'msg_data/1' -p125193 -S'msg_data(${1:PacketData}) $2' -p125194 -tp125195 -a(S'new_keys_message/1' -p125196 -S'new_keys_message(${1:Ssh0}) $2' -p125197 -tp125198 -a(S'next_seqnum/1' -p125199 -S'next_seqnum(${1:SeqNum}) $2' -p125200 -tp125201 -a(S'pack/2' -p125202 -S'pack() $1' -p125203 -tp125204 -a(S'sign/3' -p125205 -S'sign(${1:SigData}, ${2:Hash}, ${3:Key}) $4' -p125206 -tp125207 -a(S'ssh_packet/2' -p125208 -S'ssh_packet(${1:Msg}, ${2:Ssh0}) $3' -p125209 -tp125210 -a(S'transport_messages/1' -p125211 -S'transport_messages(${1:Param1}) $2' -p125212 -tp125213 -a(S'unpack/3' -p125214 -S'unpack(${1:EncodedSoFar}, ${2:ReminingLenght}, ${3:Ssh0}) $4' -p125215 -tp125216 -a(S'verify/4' -p125217 -S'verify(${1:PlainText}, ${2:Hash}, ${3:Sig}, ${4:Key}) $5' -p125218 -tp125219 -a(S'versions/2' -p125220 -S'versions(${1:Param1}, ${2:Options}) $3' -p125221 -tp125222 -asS'ssh_connection' -p125223 -(lp125224 -(S'adjust_window/3' -p125225 -S'adjust_window(${1:ConnectionManager}, ${2:Channel}, ${3:Bytes}) $4' -p125226 -tp125227 -a(S'bind/4' -p125228 -S'bind(${1:IP}, ${2:Port}, ${3:ChannelPid}, ${4:Connection}) $5' -p125229 -tp125230 -a(S'bound_channel/3' -p125231 -S'bound_channel(${1:IP}, ${2:Port}, ${3:Connection}) $4' -p125232 -tp125233 -a(S'cancel_tcpip_forward/3' -p125234 -S'cancel_tcpip_forward(${1:ConnectionManager}, ${2:BindIP}, ${3:Port}) $4' -p125235 -tp125236 -a(S'channel_adjust_window_msg/2' -p125237 -S'channel_adjust_window_msg(${1:ChannelId}, ${2:Bytes}) $3' -p125238 -tp125239 -a(S'channel_close_msg/1' -p125240 -S'channel_close_msg(${1:ChannelId}) $2' -p125241 -tp125242 -a(S'channel_data/6' -p125243 -S'channel_data() $1' -p125244 -tp125245 -a(S'channel_data_msg/3' -p125246 -S'channel_data_msg(${1:ChannelId}, ${2:Type}, ${3:Data}) $4' -p125247 -tp125248 -a(S'channel_eof_msg/1' -p125249 -S'channel_eof_msg(${1:ChannelId}) $2' -p125250 -tp125251 -a(S'channel_failure_msg/1' -p125252 -S'channel_failure_msg(${1:ChannelId}) $2' -p125253 -tp125254 -a(S'channel_open_confirmation_msg/4' -p125255 -S'channel_open_confirmation_msg(${1:RemoteId}, ${2:LID}, ${3:WindowSize}, ${4:PacketSize}) $5' -p125256 -tp125257 -a(S'channel_open_failure_msg/4' -p125258 -S'channel_open_failure_msg(${1:RemoteId}, ${2:Reason}, ${3:Description}, ${4:Lang}) $5' -p125259 -tp125260 -a(S'channel_open_msg/5' -p125261 -S'channel_open_msg(${1:Type}, ${2:ChannelId}, ${3:WindowSize}, ${4:MaxPacketSize}, ${5:Data}) $6' -p125262 -tp125263 -a(S'channel_request_msg/4' -p125264 -S'channel_request_msg(${1:ChannelId}, ${2:Type}, ${3:WantReply}, ${4:Data}) $5' -p125265 -tp125266 -a(S'channel_success_msg/1' -p125267 -S'channel_success_msg(${1:ChannelId}) $2' -p125268 -tp125269 -a(S'close/2' -p125270 -S'close(${1:ConnectionManager}, ${2:ChannelId}) $3' -p125271 -tp125272 -a(S'direct_tcpip/6' -p125273 -S'direct_tcpip() $1' -p125274 -tp125275 -a(S'direct_tcpip/8' -p125276 -S'direct_tcpip() $1' -p125277 -tp125278 -a(S'encode_ip/1' -p125279 -S'encode_ip(${1:Addr}) $2' -p125280 -tp125281 -a(S'exec/4' -p125282 -S'exec(${1:ConnectionManager}, ${2:ChannelId}, ${3:Command}, ${4:TimeOut}) $5' -p125283 -tp125284 -a(S'exit_status/3' -p125285 -S'exit_status(${1:ConnectionManager}, ${2:Channel}, ${3:Status}) $4' -p125286 -tp125287 -a(S'global_request_msg/3' -p125288 -S'global_request_msg(${1:Type}, ${2:WantReply}, ${3:Data}) $4' -p125289 -tp125290 -a(S'handle_msg/4' -p125291 -S'handle_msg() $1' -p125292 -tp125293 -a(S'messages/0' -p125294 -S'messages() $1' -p125295 -tp125296 -a(S'open_pty/3' -p125297 -S'open_pty(${1:ConnectionManager}, ${2:Channel}, ${3:TimeOut}) $4' -p125298 -tp125299 -a(S'open_pty/7' -p125300 -S'open_pty(${1:ConnectionManager}, ${2:Channel}, ${3:Term}, ${4:Width}, ${5:Height}, ${6:PtyOpts}, ${7:TimeOut}) $8' -p125301 -tp125302 -a(S'open_pty/9' -p125303 -S'open_pty() $1' -p125304 -tp125305 -a(S'reply_request/4' -p125306 -S'reply_request(${1:ConnectionManager}, ${2:Param2}, ${3:Status}, ${4:ChannelId}) $5' -p125307 -tp125308 -a(S'request_failure_msg/0' -p125309 -S'request_failure_msg() $1' -p125310 -tp125311 -a(S'request_success_msg/1' -p125312 -S'request_success_msg(${1:Data}) $2' -p125313 -tp125314 -a(S'send/3' -p125315 -S'send(${1:ConnectionManager}, ${2:ChannelId}, ${3:Data}) $4' -p125316 -tp125317 -a(S'send/4' -p125318 -S'send(${1:ConnectionManager}, ${2:ChannelId}, ${3:Data}, ${4:TimeOut}) $5' -p125319 -tp125320 -a(S'send/5' -p125321 -S'send(${1:ConnectionManager}, ${2:ChannelId}, ${3:Type}, ${4:Data}, ${5:TimeOut}) $6' -p125322 -tp125323 -a(S'send_eof/2' -p125324 -S'send_eof(${1:ConnectionManager}, ${2:Channel}) $3' -p125325 -tp125326 -a(S'session_channel/2' -p125327 -S'session_channel(${1:ConnectionManager}, ${2:Timeout}) $3' -p125328 -tp125329 -a(S'session_channel/4' -p125330 -S'session_channel() $1' -p125331 -tp125332 -a(S'setenv/5' -p125333 -S'setenv(${1:ConnectionManager}, ${2:ChannelId}, ${3:Var}, ${4:Value}, ${5:TimeOut}) $6' -p125334 -tp125335 -a(S'shell/2' -p125336 -S'shell(${1:ConnectionManager}, ${2:ChannelId}) $3' -p125337 -tp125338 -a(S'signal/3' -p125339 -S'signal(${1:ConnectionManager}, ${2:Channel}, ${3:Sig}) $4' -p125340 -tp125341 -a(S'subsystem/4' -p125342 -S'subsystem(${1:ConnectionManager}, ${2:ChannelId}, ${3:SubSystem}, ${4:TimeOut}) $5' -p125343 -tp125344 -a(S'tcpip_forward/3' -p125345 -S'tcpip_forward(${1:ConnectionManager}, ${2:BindIP}, ${3:BindPort}) $4' -p125346 -tp125347 -a(S'unbind/3' -p125348 -S'unbind(${1:IP}, ${2:Port}, ${3:Connection}) $4' -p125349 -tp125350 -a(S'unbind_channel/2' -p125351 -S'unbind_channel(${1:ChannelPid}, ${2:Connection}) $3' -p125352 -tp125353 -a(S'window_change/4' -p125354 -S'window_change(${1:ConnectionManager}, ${2:Channel}, ${3:Width}, ${4:Height}) $5' -p125355 -tp125356 -a(S'window_change/6' -p125357 -S'window_change() $1' -p125358 -tp125359 -asS'gstk_label' -p125360 -(lp125361 -(S'config/3' -p125362 -S'config(${1:DB}, ${2:Gstkid}, ${3:Opts}) $4' -p125363 -tp125364 -a(S'create/3' -p125365 -S'create(${1:DB}, ${2:GstkId}, ${3:Opts}) $4' -p125366 -tp125367 -a(S'delete/2' -p125368 -S'delete(${1:DB}, ${2:Gstkid}) $3' -p125369 -tp125370 -a(S'event/5' -p125371 -S'event(${1:DB}, ${2:Gstkid}, ${3:Etype}, ${4:Edata}, ${5:Args}) $6' -p125372 -tp125373 -a(S'option/5' -p125374 -S'option(${1:Option}, ${2:Gstkid}, ${3:TkW}, ${4:Param4}, ${5:Param5}) $6' -p125375 -tp125376 -a(S'read/3' -p125377 -S'read(${1:DB}, ${2:Gstkid}, ${3:Opt}) $4' -p125378 -tp125379 -a(S'read_option/5' -p125380 -S'read_option(${1:Option}, ${2:Gstkid}, ${3:TkW}, ${4:Param4}, ${5:Param5}) $6' -p125381 -tp125382 -asS'ic_file' -p125383 -(lp125384 -(S'add_dot_c/1' -p125385 -S'add_dot_c(${1:F}) $2' -p125386 -tp125387 -a(S'add_dot_erl/1' -p125388 -S'add_dot_erl(${1:F}) $2' -p125389 -tp125390 -a(S'add_dot_h/1' -p125391 -S'add_dot_h(${1:F}) $2' -p125392 -tp125393 -a(S'add_dot_hrl/1' -p125394 -S'add_dot_hrl(${1:F}) $2' -p125395 -tp125396 -a(S'add_dot_idl/1' -p125397 -S'add_dot_idl(${1:F}) $2' -p125398 -tp125399 -a(S'add_dot_java/1' -p125400 -S'add_dot_java(${1:F}) $2' -p125401 -tp125402 -a(S'close/1' -p125403 -S'close(${1:Fd}) $2' -p125404 -tp125405 -a(S'createDirectory/2' -p125406 -S'createDirectory(${1:G}, ${2:Scope}) $3' -p125407 -tp125408 -a(S'createJavaDirectory/2' -p125409 -S'createJavaDirectory(${1:G}, ${2:Scope}) $3' -p125410 -tp125411 -a(S'filename_pop/2' -p125412 -S'filename_pop(${1:G}, ${2:Lang}) $3' -p125413 -tp125414 -a(S'filename_push/4' -p125415 -S'filename_push(${1:G}, ${2:N}, ${3:X}, ${4:Lang}) $5' -p125416 -tp125417 -a(S'javaInterfaceFilePop/1' -p125418 -S'javaInterfaceFilePop(${1:G}) $2' -p125419 -tp125420 -a(S'javaInterfaceFilePush/3' -p125421 -S'javaInterfaceFilePush(${1:G}, ${2:N}, ${3:X}) $4' -p125422 -tp125423 -a(S'join/2' -p125424 -S'join(${1:Path}, ${2:File}) $3' -p125425 -tp125426 -a(S'open/2' -p125427 -S'open(${1:Param1}, ${2:Name}) $3' -p125428 -tp125429 -a(S'open_java_file/3' -p125430 -S'open_java_file(${1:G}, ${2:N}, ${3:Name}) $4' -p125431 -tp125432 -a(S'remove_ext/1' -p125433 -S'remove_ext(${1:File}) $2' -p125434 -tp125435 -asS'sys_pre_expand' -p125436 -(lp125437 -(S'module/2' -p125438 -S'module(${1:Fs0}, ${2:Opts0}) $3' -p125439 -tp125440 -asS'gstk_rectangle' -p125441 -(lp125442 -(S'config/3' -p125443 -S'config(${1:DB}, ${2:Gstkid}, ${3:Opts}) $4' -p125444 -tp125445 -a(S'create/3' -p125446 -S'create(${1:DB}, ${2:Gstkid}, ${3:Opts}) $4' -p125447 -tp125448 -a(S'delete/2' -p125449 -S'delete(${1:DB}, ${2:Gstkid}) $3' -p125450 -tp125451 -a(S'destroy/3' -p125452 -S'destroy(${1:Param1}, ${2:Canvas}, ${3:Item}) $4' -p125453 -tp125454 -a(S'event/5' -p125455 -S'event(${1:DB}, ${2:Gstkid}, ${3:Etype}, ${4:Edata}, ${5:Args}) $6' -p125456 -tp125457 -a(S'option/5' -p125458 -S'option(${1:Option}, ${2:Gstkid}, ${3:Canvas}, ${4:Param4}, ${5:AItem}) $6' -p125459 -tp125460 -a(S'read/3' -p125461 -S'read(${1:DB}, ${2:Gstkid}, ${3:Opt}) $4' -p125462 -tp125463 -a(S'read_option/5' -p125464 -S'read_option(${1:Option}, ${2:Gstkid}, ${3:Canvas}, ${4:Param4}, ${5:AItem}) $6' -p125465 -tp125466 -asS'wxCommandEvent' -p125467 -(lp125468 -(S'getClientData/1' -p125469 -S'getClientData(${1:This}) $2' -p125470 -tp125471 -a(S'getExtraLong/1' -p125472 -S'getExtraLong(${1:This}) $2' -p125473 -tp125474 -a(S'getId/1' -p125475 -S'getId(${1:This}) $2' -p125476 -tp125477 -a(S'getInt/1' -p125478 -S'getInt(${1:This}) $2' -p125479 -tp125480 -a(S'getSelection/1' -p125481 -S'getSelection(${1:This}) $2' -p125482 -tp125483 -a(S'getSkipped/1' -p125484 -S'getSkipped(${1:This}) $2' -p125485 -tp125486 -a(S'getString/1' -p125487 -S'getString(${1:This}) $2' -p125488 -tp125489 -a(S'getTimestamp/1' -p125490 -S'getTimestamp(${1:This}) $2' -p125491 -tp125492 -a(S'isChecked/1' -p125493 -S'isChecked(${1:This}) $2' -p125494 -tp125495 -a(S'isCommandEvent/1' -p125496 -S'isCommandEvent(${1:This}) $2' -p125497 -tp125498 -a(S'isSelection/1' -p125499 -S'isSelection(${1:This}) $2' -p125500 -tp125501 -a(S'parent_class/1' -p125502 -S'parent_class(${1:Param1}) $2' -p125503 -tp125504 -a(S'resumePropagation/2' -p125505 -S'resumePropagation(${1:This}, ${2:PropagationLevel}) $3' -p125506 -tp125507 -a(S'setInt/2' -p125508 -S'setInt(${1:This}, ${2:I}) $3' -p125509 -tp125510 -a(S'setString/2' -p125511 -S'setString(${1:This}, ${2:S}) $3' -p125512 -tp125513 -a(S'shouldPropagate/1' -p125514 -S'shouldPropagate(${1:This}) $2' -p125515 -tp125516 -a(S'skip/1' -p125517 -S'skip(${1:This}) $2' -p125518 -tp125519 -a(S'skip/2' -p125520 -S'skip(${1:This}, ${2:Options}) $3' -p125521 -tp125522 -a(S'stopPropagation/1' -p125523 -S'stopPropagation(${1:This}) $2' -p125524 -tp125525 -asS'megaco_ber_media_gateway_control_prev3b' -p125526 -(lp125527 -(S"'dec_ActionReply'/2" -p125528 -S"'dec_ActionReply'(${1:Bytes}, ${2:OptOrMand}) $3" -p125529 -tp125530 -a(S"'dec_ActionReply'/3" -p125531 -S"'dec_ActionReply'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125532 -tp125533 -a(S"'dec_ActionRequest'/2" -p125534 -S"'dec_ActionRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p125535 -tp125536 -a(S"'dec_ActionRequest'/3" -p125537 -S"'dec_ActionRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125538 -tp125539 -a(S"'dec_AmmDescriptor'/2" -p125540 -S"'dec_AmmDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p125541 -tp125542 -a(S"'dec_AmmDescriptor'/3" -p125543 -S"'dec_AmmDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125544 -tp125545 -a(S"'dec_AmmRequest'/2" -p125546 -S"'dec_AmmRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p125547 -tp125548 -a(S"'dec_AmmRequest'/3" -p125549 -S"'dec_AmmRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125550 -tp125551 -a(S"'dec_AmmsReply'/2" -p125552 -S"'dec_AmmsReply'(${1:Bytes}, ${2:OptOrMand}) $3" -p125553 -tp125554 -a(S"'dec_AmmsReply'/3" -p125555 -S"'dec_AmmsReply'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125556 -tp125557 -a(S"'dec_AuditDescriptor'/2" -p125558 -S"'dec_AuditDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p125559 -tp125560 -a(S"'dec_AuditDescriptor'/3" -p125561 -S"'dec_AuditDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125562 -tp125563 -a(S"'dec_AuditReply'/2" -p125564 -S"'dec_AuditReply'(${1:Bytes}, ${2:OptOrMand}) $3" -p125565 -tp125566 -a(S"'dec_AuditReply'/3" -p125567 -S"'dec_AuditReply'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125568 -tp125569 -a(S"'dec_AuditRequest'/2" -p125570 -S"'dec_AuditRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p125571 -tp125572 -a(S"'dec_AuditRequest'/3" -p125573 -S"'dec_AuditRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125574 -tp125575 -a(S"'dec_AuditResult'/2" -p125576 -S"'dec_AuditResult'(${1:Bytes}, ${2:OptOrMand}) $3" -p125577 -tp125578 -a(S"'dec_AuditResult'/3" -p125579 -S"'dec_AuditResult'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125580 -tp125581 -a(S"'dec_AuditReturnParameter'/2" -p125582 -S"'dec_AuditReturnParameter'(${1:Bytes}, ${2:OptOrMand}) $3" -p125583 -tp125584 -a(S"'dec_AuditReturnParameter'/3" -p125585 -S"'dec_AuditReturnParameter'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125586 -tp125587 -a(S"'dec_AuthData'/2" -p125588 -S"'dec_AuthData'(${1:Bytes}, ${2:OptOrMand}) $3" -p125589 -tp125590 -a(S"'dec_AuthData'/3" -p125591 -S"'dec_AuthData'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125592 -tp125593 -a(S"'dec_AuthenticationHeader'/2" -p125594 -S"'dec_AuthenticationHeader'(${1:Bytes}, ${2:OptOrMand}) $3" -p125595 -tp125596 -a(S"'dec_AuthenticationHeader'/3" -p125597 -S"'dec_AuthenticationHeader'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125598 -tp125599 -a(S"'dec_Command'/2" -p125600 -S"'dec_Command'(${1:Bytes}, ${2:OptOrMand}) $3" -p125601 -tp125602 -a(S"'dec_Command'/3" -p125603 -S"'dec_Command'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125604 -tp125605 -a(S"'dec_CommandReply'/2" -p125606 -S"'dec_CommandReply'(${1:Bytes}, ${2:OptOrMand}) $3" -p125607 -tp125608 -a(S"'dec_CommandReply'/3" -p125609 -S"'dec_CommandReply'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125610 -tp125611 -a(S"'dec_CommandRequest'/2" -p125612 -S"'dec_CommandRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p125613 -tp125614 -a(S"'dec_CommandRequest'/3" -p125615 -S"'dec_CommandRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125616 -tp125617 -a(S"'dec_ContextAttrAuditRequest'/2" -p125618 -S"'dec_ContextAttrAuditRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p125619 -tp125620 -a(S"'dec_ContextAttrAuditRequest'/3" -p125621 -S"'dec_ContextAttrAuditRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125622 -tp125623 -a(S"'dec_ContextID'/2" -p125624 -S"'dec_ContextID'(${1:Bytes}, ${2:OptOrMand}) $3" -p125625 -tp125626 -a(S"'dec_ContextID'/3" -p125627 -S"'dec_ContextID'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125628 -tp125629 -a(S"'dec_ContextRequest'/2" -p125630 -S"'dec_ContextRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p125631 -tp125632 -a(S"'dec_ContextRequest'/3" -p125633 -S"'dec_ContextRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125634 -tp125635 -a(S"'dec_DigitMapDescriptor'/2" -p125636 -S"'dec_DigitMapDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p125637 -tp125638 -a(S"'dec_DigitMapDescriptor'/3" -p125639 -S"'dec_DigitMapDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125640 -tp125641 -a(S"'dec_DigitMapName'/2" -p125642 -S"'dec_DigitMapName'(${1:Bytes}, ${2:OptOrMand}) $3" -p125643 -tp125644 -a(S"'dec_DigitMapName'/3" -p125645 -S"'dec_DigitMapName'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125646 -tp125647 -a(S"'dec_DigitMapValue'/2" -p125648 -S"'dec_DigitMapValue'(${1:Bytes}, ${2:OptOrMand}) $3" -p125649 -tp125650 -a(S"'dec_DigitMapValue'/3" -p125651 -S"'dec_DigitMapValue'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125652 -tp125653 -a(S"'dec_DomainName'/2" -p125654 -S"'dec_DomainName'(${1:Bytes}, ${2:OptOrMand}) $3" -p125655 -tp125656 -a(S"'dec_DomainName'/3" -p125657 -S"'dec_DomainName'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125658 -tp125659 -a(S"'dec_ErrorCode'/2" -p125660 -S"'dec_ErrorCode'(${1:Bytes}, ${2:OptOrMand}) $3" -p125661 -tp125662 -a(S"'dec_ErrorCode'/3" -p125663 -S"'dec_ErrorCode'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125664 -tp125665 -a(S"'dec_ErrorDescriptor'/2" -p125666 -S"'dec_ErrorDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p125667 -tp125668 -a(S"'dec_ErrorDescriptor'/3" -p125669 -S"'dec_ErrorDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125670 -tp125671 -a(S"'dec_ErrorText'/2" -p125672 -S"'dec_ErrorText'(${1:Bytes}, ${2:OptOrMand}) $3" -p125673 -tp125674 -a(S"'dec_ErrorText'/3" -p125675 -S"'dec_ErrorText'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125676 -tp125677 -a(S"'dec_EventBufferControl'/2" -p125678 -S"'dec_EventBufferControl'(${1:Bytes}, ${2:OptOrMand}) $3" -p125679 -tp125680 -a(S"'dec_EventBufferControl'/3" -p125681 -S"'dec_EventBufferControl'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125682 -tp125683 -a(S"'dec_EventBufferDescriptor'/2" -p125684 -S"'dec_EventBufferDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p125685 -tp125686 -a(S"'dec_EventBufferDescriptor'/3" -p125687 -S"'dec_EventBufferDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125688 -tp125689 -a(S"'dec_EventDM'/2" -p125690 -S"'dec_EventDM'(${1:Bytes}, ${2:OptOrMand}) $3" -p125691 -tp125692 -a(S"'dec_EventDM'/3" -p125693 -S"'dec_EventDM'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125694 -tp125695 -a(S"'dec_EventName'/2" -p125696 -S"'dec_EventName'(${1:Bytes}, ${2:OptOrMand}) $3" -p125697 -tp125698 -a(S"'dec_EventName'/3" -p125699 -S"'dec_EventName'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125700 -tp125701 -a(S"'dec_EventParameter'/2" -p125702 -S"'dec_EventParameter'(${1:Bytes}, ${2:OptOrMand}) $3" -p125703 -tp125704 -a(S"'dec_EventParameter'/3" -p125705 -S"'dec_EventParameter'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125706 -tp125707 -a(S"'dec_EventSpec'/2" -p125708 -S"'dec_EventSpec'(${1:Bytes}, ${2:OptOrMand}) $3" -p125709 -tp125710 -a(S"'dec_EventSpec'/3" -p125711 -S"'dec_EventSpec'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125712 -tp125713 -a(S"'dec_EventsDescriptor'/2" -p125714 -S"'dec_EventsDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p125715 -tp125716 -a(S"'dec_EventsDescriptor'/3" -p125717 -S"'dec_EventsDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125718 -tp125719 -a(S"'dec_H221NonStandard'/2" -p125720 -S"'dec_H221NonStandard'(${1:Bytes}, ${2:OptOrMand}) $3" -p125721 -tp125722 -a(S"'dec_H221NonStandard'/3" -p125723 -S"'dec_H221NonStandard'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125724 -tp125725 -a(S"'dec_IP4Address'/2" -p125726 -S"'dec_IP4Address'(${1:Bytes}, ${2:OptOrMand}) $3" -p125727 -tp125728 -a(S"'dec_IP4Address'/3" -p125729 -S"'dec_IP4Address'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125730 -tp125731 -a(S"'dec_IP6Address'/2" -p125732 -S"'dec_IP6Address'(${1:Bytes}, ${2:OptOrMand}) $3" -p125733 -tp125734 -a(S"'dec_IP6Address'/3" -p125735 -S"'dec_IP6Address'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125736 -tp125737 -a(S"'dec_IndAudDigitMapDescriptor'/2" -p125738 -S"'dec_IndAudDigitMapDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p125739 -tp125740 -a(S"'dec_IndAudDigitMapDescriptor'/3" -p125741 -S"'dec_IndAudDigitMapDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125742 -tp125743 -a(S"'dec_IndAudEventBufferDescriptor'/2" -p125744 -S"'dec_IndAudEventBufferDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p125745 -tp125746 -a(S"'dec_IndAudEventBufferDescriptor'/3" -p125747 -S"'dec_IndAudEventBufferDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125748 -tp125749 -a(S"'dec_IndAudEventsDescriptor'/2" -p125750 -S"'dec_IndAudEventsDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p125751 -tp125752 -a(S"'dec_IndAudEventsDescriptor'/3" -p125753 -S"'dec_IndAudEventsDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125754 -tp125755 -a(S"'dec_IndAudLocalControlDescriptor'/2" -p125756 -S"'dec_IndAudLocalControlDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p125757 -tp125758 -a(S"'dec_IndAudLocalControlDescriptor'/3" -p125759 -S"'dec_IndAudLocalControlDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125760 -tp125761 -a(S"'dec_IndAudLocalRemoteDescriptor'/2" -p125762 -S"'dec_IndAudLocalRemoteDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p125763 -tp125764 -a(S"'dec_IndAudLocalRemoteDescriptor'/3" -p125765 -S"'dec_IndAudLocalRemoteDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125766 -tp125767 -a(S"'dec_IndAudMediaDescriptor'/2" -p125768 -S"'dec_IndAudMediaDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p125769 -tp125770 -a(S"'dec_IndAudMediaDescriptor'/3" -p125771 -S"'dec_IndAudMediaDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125772 -tp125773 -a(S"'dec_IndAudPackagesDescriptor'/2" -p125774 -S"'dec_IndAudPackagesDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p125775 -tp125776 -a(S"'dec_IndAudPackagesDescriptor'/3" -p125777 -S"'dec_IndAudPackagesDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125778 -tp125779 -a(S"'dec_IndAudPropertyGroup'/2" -p125780 -S"'dec_IndAudPropertyGroup'(${1:Bytes}, ${2:OptOrMand}) $3" -p125781 -tp125782 -a(S"'dec_IndAudPropertyGroup'/3" -p125783 -S"'dec_IndAudPropertyGroup'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125784 -tp125785 -a(S"'dec_IndAudPropertyParm'/2" -p125786 -S"'dec_IndAudPropertyParm'(${1:Bytes}, ${2:OptOrMand}) $3" -p125787 -tp125788 -a(S"'dec_IndAudPropertyParm'/3" -p125789 -S"'dec_IndAudPropertyParm'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125790 -tp125791 -a(S"'dec_IndAudSeqSigList'/2" -p125792 -S"'dec_IndAudSeqSigList'(${1:Bytes}, ${2:OptOrMand}) $3" -p125793 -tp125794 -a(S"'dec_IndAudSeqSigList'/3" -p125795 -S"'dec_IndAudSeqSigList'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125796 -tp125797 -a(S"'dec_IndAudSignal'/2" -p125798 -S"'dec_IndAudSignal'(${1:Bytes}, ${2:OptOrMand}) $3" -p125799 -tp125800 -a(S"'dec_IndAudSignal'/3" -p125801 -S"'dec_IndAudSignal'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125802 -tp125803 -a(S"'dec_IndAudSignalsDescriptor'/2" -p125804 -S"'dec_IndAudSignalsDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p125805 -tp125806 -a(S"'dec_IndAudSignalsDescriptor'/3" -p125807 -S"'dec_IndAudSignalsDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125808 -tp125809 -a(S"'dec_IndAudStatisticsDescriptor'/2" -p125810 -S"'dec_IndAudStatisticsDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p125811 -tp125812 -a(S"'dec_IndAudStatisticsDescriptor'/3" -p125813 -S"'dec_IndAudStatisticsDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125814 -tp125815 -a(S"'dec_IndAudStreamDescriptor'/2" -p125816 -S"'dec_IndAudStreamDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p125817 -tp125818 -a(S"'dec_IndAudStreamDescriptor'/3" -p125819 -S"'dec_IndAudStreamDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125820 -tp125821 -a(S"'dec_IndAudStreamParms'/2" -p125822 -S"'dec_IndAudStreamParms'(${1:Bytes}, ${2:OptOrMand}) $3" -p125823 -tp125824 -a(S"'dec_IndAudStreamParms'/3" -p125825 -S"'dec_IndAudStreamParms'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125826 -tp125827 -a(S"'dec_IndAudTerminationStateDescriptor'/2" -p125828 -S"'dec_IndAudTerminationStateDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p125829 -tp125830 -a(S"'dec_IndAudTerminationStateDescriptor'/3" -p125831 -S"'dec_IndAudTerminationStateDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125832 -tp125833 -a(S"'dec_IndAuditParameter'/2" -p125834 -S"'dec_IndAuditParameter'(${1:Bytes}, ${2:OptOrMand}) $3" -p125835 -tp125836 -a(S"'dec_IndAuditParameter'/3" -p125837 -S"'dec_IndAuditParameter'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125838 -tp125839 -a(S"'dec_LocalControlDescriptor'/2" -p125840 -S"'dec_LocalControlDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p125841 -tp125842 -a(S"'dec_LocalControlDescriptor'/3" -p125843 -S"'dec_LocalControlDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125844 -tp125845 -a(S"'dec_LocalRemoteDescriptor'/2" -p125846 -S"'dec_LocalRemoteDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p125847 -tp125848 -a(S"'dec_LocalRemoteDescriptor'/3" -p125849 -S"'dec_LocalRemoteDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125850 -tp125851 -a(S"'dec_MId'/2" -p125852 -S"'dec_MId'(${1:Bytes}, ${2:OptOrMand}) $3" -p125853 -tp125854 -a(S"'dec_MId'/3" -p125855 -S"'dec_MId'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125856 -tp125857 -a(S"'dec_MediaDescriptor'/2" -p125858 -S"'dec_MediaDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p125859 -tp125860 -a(S"'dec_MediaDescriptor'/3" -p125861 -S"'dec_MediaDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125862 -tp125863 -a(S"'dec_MegacoMessage'/2" -p125864 -S"'dec_MegacoMessage'(${1:Bytes}, ${2:OptOrMand}) $3" -p125865 -tp125866 -a(S"'dec_MegacoMessage'/3" -p125867 -S"'dec_MegacoMessage'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125868 -tp125869 -a(S"'dec_Message'/2" -p125870 -S"'dec_Message'(${1:Bytes}, ${2:OptOrMand}) $3" -p125871 -tp125872 -a(S"'dec_Message'/3" -p125873 -S"'dec_Message'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125874 -tp125875 -a(S"'dec_ModemDescriptor'/2" -p125876 -S"'dec_ModemDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p125877 -tp125878 -a(S"'dec_ModemDescriptor'/3" -p125879 -S"'dec_ModemDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125880 -tp125881 -a(S"'dec_ModemType'/2" -p125882 -S"'dec_ModemType'(${1:Bytes}, ${2:OptOrMand}) $3" -p125883 -tp125884 -a(S"'dec_ModemType'/3" -p125885 -S"'dec_ModemType'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125886 -tp125887 -a(S"'dec_MuxDescriptor'/2" -p125888 -S"'dec_MuxDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p125889 -tp125890 -a(S"'dec_MuxDescriptor'/3" -p125891 -S"'dec_MuxDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125892 -tp125893 -a(S"'dec_MuxType'/2" -p125894 -S"'dec_MuxType'(${1:Bytes}, ${2:OptOrMand}) $3" -p125895 -tp125896 -a(S"'dec_MuxType'/3" -p125897 -S"'dec_MuxType'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125898 -tp125899 -a(S"'dec_Name'/2" -p125900 -S"'dec_Name'(${1:Bytes}, ${2:OptOrMand}) $3" -p125901 -tp125902 -a(S"'dec_Name'/3" -p125903 -S"'dec_Name'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125904 -tp125905 -a(S"'dec_NonStandardData'/2" -p125906 -S"'dec_NonStandardData'(${1:Bytes}, ${2:OptOrMand}) $3" -p125907 -tp125908 -a(S"'dec_NonStandardData'/3" -p125909 -S"'dec_NonStandardData'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125910 -tp125911 -a(S"'dec_NonStandardIdentifier'/2" -p125912 -S"'dec_NonStandardIdentifier'(${1:Bytes}, ${2:OptOrMand}) $3" -p125913 -tp125914 -a(S"'dec_NonStandardIdentifier'/3" -p125915 -S"'dec_NonStandardIdentifier'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125916 -tp125917 -a(S"'dec_NotifyCompletion'/2" -p125918 -S"'dec_NotifyCompletion'(${1:Bytes}, ${2:OptOrMand}) $3" -p125919 -tp125920 -a(S"'dec_NotifyCompletion'/3" -p125921 -S"'dec_NotifyCompletion'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125922 -tp125923 -a(S"'dec_NotifyReply'/2" -p125924 -S"'dec_NotifyReply'(${1:Bytes}, ${2:OptOrMand}) $3" -p125925 -tp125926 -a(S"'dec_NotifyReply'/3" -p125927 -S"'dec_NotifyReply'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125928 -tp125929 -a(S"'dec_NotifyRequest'/2" -p125930 -S"'dec_NotifyRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p125931 -tp125932 -a(S"'dec_NotifyRequest'/3" -p125933 -S"'dec_NotifyRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125934 -tp125935 -a(S"'dec_ObservedEvent'/2" -p125936 -S"'dec_ObservedEvent'(${1:Bytes}, ${2:OptOrMand}) $3" -p125937 -tp125938 -a(S"'dec_ObservedEvent'/3" -p125939 -S"'dec_ObservedEvent'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125940 -tp125941 -a(S"'dec_ObservedEventsDescriptor'/2" -p125942 -S"'dec_ObservedEventsDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p125943 -tp125944 -a(S"'dec_ObservedEventsDescriptor'/3" -p125945 -S"'dec_ObservedEventsDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125946 -tp125947 -a(S"'dec_PackagesDescriptor'/2" -p125948 -S"'dec_PackagesDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p125949 -tp125950 -a(S"'dec_PackagesDescriptor'/3" -p125951 -S"'dec_PackagesDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125952 -tp125953 -a(S"'dec_PackagesItem'/2" -p125954 -S"'dec_PackagesItem'(${1:Bytes}, ${2:OptOrMand}) $3" -p125955 -tp125956 -a(S"'dec_PackagesItem'/3" -p125957 -S"'dec_PackagesItem'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125958 -tp125959 -a(S"'dec_PathName'/2" -p125960 -S"'dec_PathName'(${1:Bytes}, ${2:OptOrMand}) $3" -p125961 -tp125962 -a(S"'dec_PathName'/3" -p125963 -S"'dec_PathName'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125964 -tp125965 -a(S"'dec_PkgdName'/2" -p125966 -S"'dec_PkgdName'(${1:Bytes}, ${2:OptOrMand}) $3" -p125967 -tp125968 -a(S"'dec_PkgdName'/3" -p125969 -S"'dec_PkgdName'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125970 -tp125971 -a(S"'dec_PropertyGroup'/2" -p125972 -S"'dec_PropertyGroup'(${1:Bytes}, ${2:OptOrMand}) $3" -p125973 -tp125974 -a(S"'dec_PropertyGroup'/3" -p125975 -S"'dec_PropertyGroup'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125976 -tp125977 -a(S"'dec_PropertyParm'/2" -p125978 -S"'dec_PropertyParm'(${1:Bytes}, ${2:OptOrMand}) $3" -p125979 -tp125980 -a(S"'dec_PropertyParm'/3" -p125981 -S"'dec_PropertyParm'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125982 -tp125983 -a(S"'dec_Relation'/2" -p125984 -S"'dec_Relation'(${1:Bytes}, ${2:OptOrMand}) $3" -p125985 -tp125986 -a(S"'dec_Relation'/3" -p125987 -S"'dec_Relation'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125988 -tp125989 -a(S"'dec_RequestID'/2" -p125990 -S"'dec_RequestID'(${1:Bytes}, ${2:OptOrMand}) $3" -p125991 -tp125992 -a(S"'dec_RequestID'/3" -p125993 -S"'dec_RequestID'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p125994 -tp125995 -a(S"'dec_RequestedActions'/2" -p125996 -S"'dec_RequestedActions'(${1:Bytes}, ${2:OptOrMand}) $3" -p125997 -tp125998 -a(S"'dec_RequestedActions'/3" -p125999 -S"'dec_RequestedActions'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p126000 -tp126001 -a(S"'dec_RequestedEvent'/2" -p126002 -S"'dec_RequestedEvent'(${1:Bytes}, ${2:OptOrMand}) $3" -p126003 -tp126004 -a(S"'dec_RequestedEvent'/3" -p126005 -S"'dec_RequestedEvent'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p126006 -tp126007 -a(S"'dec_SecondEventsDescriptor'/2" -p126008 -S"'dec_SecondEventsDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p126009 -tp126010 -a(S"'dec_SecondEventsDescriptor'/3" -p126011 -S"'dec_SecondEventsDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p126012 -tp126013 -a(S"'dec_SecondRequestedActions'/2" -p126014 -S"'dec_SecondRequestedActions'(${1:Bytes}, ${2:OptOrMand}) $3" -p126015 -tp126016 -a(S"'dec_SecondRequestedActions'/3" -p126017 -S"'dec_SecondRequestedActions'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p126018 -tp126019 -a(S"'dec_SecondRequestedEvent'/2" -p126020 -S"'dec_SecondRequestedEvent'(${1:Bytes}, ${2:OptOrMand}) $3" -p126021 -tp126022 -a(S"'dec_SecondRequestedEvent'/3" -p126023 -S"'dec_SecondRequestedEvent'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p126024 -tp126025 -a(S"'dec_SecurityParmIndex'/2" -p126026 -S"'dec_SecurityParmIndex'(${1:Bytes}, ${2:OptOrMand}) $3" -p126027 -tp126028 -a(S"'dec_SecurityParmIndex'/3" -p126029 -S"'dec_SecurityParmIndex'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p126030 -tp126031 -a(S"'dec_SegmentNumber'/2" -p126032 -S"'dec_SegmentNumber'(${1:Bytes}, ${2:OptOrMand}) $3" -p126033 -tp126034 -a(S"'dec_SegmentNumber'/3" -p126035 -S"'dec_SegmentNumber'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p126036 -tp126037 -a(S"'dec_SeqSigList'/2" -p126038 -S"'dec_SeqSigList'(${1:Bytes}, ${2:OptOrMand}) $3" -p126039 -tp126040 -a(S"'dec_SeqSigList'/3" -p126041 -S"'dec_SeqSigList'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p126042 -tp126043 -a(S"'dec_SequenceNum'/2" -p126044 -S"'dec_SequenceNum'(${1:Bytes}, ${2:OptOrMand}) $3" -p126045 -tp126046 -a(S"'dec_SequenceNum'/3" -p126047 -S"'dec_SequenceNum'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p126048 -tp126049 -a(S"'dec_ServiceChangeAddress'/2" -p126050 -S"'dec_ServiceChangeAddress'(${1:Bytes}, ${2:OptOrMand}) $3" -p126051 -tp126052 -a(S"'dec_ServiceChangeAddress'/3" -p126053 -S"'dec_ServiceChangeAddress'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p126054 -tp126055 -a(S"'dec_ServiceChangeMethod'/2" -p126056 -S"'dec_ServiceChangeMethod'(${1:Bytes}, ${2:OptOrMand}) $3" -p126057 -tp126058 -a(S"'dec_ServiceChangeMethod'/3" -p126059 -S"'dec_ServiceChangeMethod'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p126060 -tp126061 -a(S"'dec_ServiceChangeParm'/2" -p126062 -S"'dec_ServiceChangeParm'(${1:Bytes}, ${2:OptOrMand}) $3" -p126063 -tp126064 -a(S"'dec_ServiceChangeParm'/3" -p126065 -S"'dec_ServiceChangeParm'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p126066 -tp126067 -a(S"'dec_ServiceChangeProfile'/2" -p126068 -S"'dec_ServiceChangeProfile'(${1:Bytes}, ${2:OptOrMand}) $3" -p126069 -tp126070 -a(S"'dec_ServiceChangeProfile'/3" -p126071 -S"'dec_ServiceChangeProfile'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p126072 -tp126073 -a(S"'dec_ServiceChangeReply'/2" -p126074 -S"'dec_ServiceChangeReply'(${1:Bytes}, ${2:OptOrMand}) $3" -p126075 -tp126076 -a(S"'dec_ServiceChangeReply'/3" -p126077 -S"'dec_ServiceChangeReply'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p126078 -tp126079 -a(S"'dec_ServiceChangeRequest'/2" -p126080 -S"'dec_ServiceChangeRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p126081 -tp126082 -a(S"'dec_ServiceChangeRequest'/3" -p126083 -S"'dec_ServiceChangeRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p126084 -tp126085 -a(S"'dec_ServiceChangeResParm'/2" -p126086 -S"'dec_ServiceChangeResParm'(${1:Bytes}, ${2:OptOrMand}) $3" -p126087 -tp126088 -a(S"'dec_ServiceChangeResParm'/3" -p126089 -S"'dec_ServiceChangeResParm'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p126090 -tp126091 -a(S"'dec_ServiceChangeResult'/2" -p126092 -S"'dec_ServiceChangeResult'(${1:Bytes}, ${2:OptOrMand}) $3" -p126093 -tp126094 -a(S"'dec_ServiceChangeResult'/3" -p126095 -S"'dec_ServiceChangeResult'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p126096 -tp126097 -a(S"'dec_ServiceState'/2" -p126098 -S"'dec_ServiceState'(${1:Bytes}, ${2:OptOrMand}) $3" -p126099 -tp126100 -a(S"'dec_ServiceState'/3" -p126101 -S"'dec_ServiceState'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p126102 -tp126103 -a(S"'dec_SigParameter'/2" -p126104 -S"'dec_SigParameter'(${1:Bytes}, ${2:OptOrMand}) $3" -p126105 -tp126106 -a(S"'dec_SigParameter'/3" -p126107 -S"'dec_SigParameter'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p126108 -tp126109 -a(S"'dec_Signal'/2" -p126110 -S"'dec_Signal'(${1:Bytes}, ${2:OptOrMand}) $3" -p126111 -tp126112 -a(S"'dec_Signal'/3" -p126113 -S"'dec_Signal'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p126114 -tp126115 -a(S"'dec_SignalDirection'/2" -p126116 -S"'dec_SignalDirection'(${1:Bytes}, ${2:OptOrMand}) $3" -p126117 -tp126118 -a(S"'dec_SignalDirection'/3" -p126119 -S"'dec_SignalDirection'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p126120 -tp126121 -a(S"'dec_SignalName'/2" -p126122 -S"'dec_SignalName'(${1:Bytes}, ${2:OptOrMand}) $3" -p126123 -tp126124 -a(S"'dec_SignalName'/3" -p126125 -S"'dec_SignalName'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p126126 -tp126127 -a(S"'dec_SignalRequest'/2" -p126128 -S"'dec_SignalRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p126129 -tp126130 -a(S"'dec_SignalRequest'/3" -p126131 -S"'dec_SignalRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p126132 -tp126133 -a(S"'dec_SignalType'/2" -p126134 -S"'dec_SignalType'(${1:Bytes}, ${2:OptOrMand}) $3" -p126135 -tp126136 -a(S"'dec_SignalType'/3" -p126137 -S"'dec_SignalType'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p126138 -tp126139 -a(S"'dec_SignalsDescriptor'/2" -p126140 -S"'dec_SignalsDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p126141 -tp126142 -a(S"'dec_SignalsDescriptor'/3" -p126143 -S"'dec_SignalsDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p126144 -tp126145 -a(S"'dec_StatisticsDescriptor'/2" -p126146 -S"'dec_StatisticsDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p126147 -tp126148 -a(S"'dec_StatisticsDescriptor'/3" -p126149 -S"'dec_StatisticsDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p126150 -tp126151 -a(S"'dec_StatisticsParameter'/2" -p126152 -S"'dec_StatisticsParameter'(${1:Bytes}, ${2:OptOrMand}) $3" -p126153 -tp126154 -a(S"'dec_StatisticsParameter'/3" -p126155 -S"'dec_StatisticsParameter'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p126156 -tp126157 -a(S"'dec_StreamDescriptor'/2" -p126158 -S"'dec_StreamDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p126159 -tp126160 -a(S"'dec_StreamDescriptor'/3" -p126161 -S"'dec_StreamDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p126162 -tp126163 -a(S"'dec_StreamID'/2" -p126164 -S"'dec_StreamID'(${1:Bytes}, ${2:OptOrMand}) $3" -p126165 -tp126166 -a(S"'dec_StreamID'/3" -p126167 -S"'dec_StreamID'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p126168 -tp126169 -a(S"'dec_StreamMode'/2" -p126170 -S"'dec_StreamMode'(${1:Bytes}, ${2:OptOrMand}) $3" -p126171 -tp126172 -a(S"'dec_StreamMode'/3" -p126173 -S"'dec_StreamMode'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p126174 -tp126175 -a(S"'dec_StreamParms'/2" -p126176 -S"'dec_StreamParms'(${1:Bytes}, ${2:OptOrMand}) $3" -p126177 -tp126178 -a(S"'dec_StreamParms'/3" -p126179 -S"'dec_StreamParms'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p126180 -tp126181 -a(S"'dec_SubtractRequest'/2" -p126182 -S"'dec_SubtractRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p126183 -tp126184 -a(S"'dec_SubtractRequest'/3" -p126185 -S"'dec_SubtractRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p126186 -tp126187 -a(S"'dec_TerminationAudit'/2" -p126188 -S"'dec_TerminationAudit'(${1:Bytes}, ${2:OptOrMand}) $3" -p126189 -tp126190 -a(S"'dec_TerminationAudit'/3" -p126191 -S"'dec_TerminationAudit'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p126192 -tp126193 -a(S"'dec_TerminationID'/2" -p126194 -S"'dec_TerminationID'(${1:Bytes}, ${2:OptOrMand}) $3" -p126195 -tp126196 -a(S"'dec_TerminationID'/3" -p126197 -S"'dec_TerminationID'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p126198 -tp126199 -a(S"'dec_TerminationIDList'/2" -p126200 -S"'dec_TerminationIDList'(${1:Bytes}, ${2:OptOrMand}) $3" -p126201 -tp126202 -a(S"'dec_TerminationIDList'/3" -p126203 -S"'dec_TerminationIDList'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p126204 -tp126205 -a(S"'dec_TerminationStateDescriptor'/2" -p126206 -S"'dec_TerminationStateDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p126207 -tp126208 -a(S"'dec_TerminationStateDescriptor'/3" -p126209 -S"'dec_TerminationStateDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p126210 -tp126211 -a(S"'dec_TimeNotation'/2" -p126212 -S"'dec_TimeNotation'(${1:Bytes}, ${2:OptOrMand}) $3" -p126213 -tp126214 -a(S"'dec_TimeNotation'/3" -p126215 -S"'dec_TimeNotation'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p126216 -tp126217 -a(S"'dec_TopologyRequest'/2" -p126218 -S"'dec_TopologyRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p126219 -tp126220 -a(S"'dec_TopologyRequest'/3" -p126221 -S"'dec_TopologyRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p126222 -tp126223 -a(S"'dec_Transaction'/2" -p126224 -S"'dec_Transaction'(${1:Bytes}, ${2:OptOrMand}) $3" -p126225 -tp126226 -a(S"'dec_Transaction'/3" -p126227 -S"'dec_Transaction'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p126228 -tp126229 -a(S"'dec_TransactionAck'/2" -p126230 -S"'dec_TransactionAck'(${1:Bytes}, ${2:OptOrMand}) $3" -p126231 -tp126232 -a(S"'dec_TransactionAck'/3" -p126233 -S"'dec_TransactionAck'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p126234 -tp126235 -a(S"'dec_TransactionId'/2" -p126236 -S"'dec_TransactionId'(${1:Bytes}, ${2:OptOrMand}) $3" -p126237 -tp126238 -a(S"'dec_TransactionId'/3" -p126239 -S"'dec_TransactionId'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p126240 -tp126241 -a(S"'dec_TransactionPending'/2" -p126242 -S"'dec_TransactionPending'(${1:Bytes}, ${2:OptOrMand}) $3" -p126243 -tp126244 -a(S"'dec_TransactionPending'/3" -p126245 -S"'dec_TransactionPending'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p126246 -tp126247 -a(S"'dec_TransactionReply'/2" -p126248 -S"'dec_TransactionReply'(${1:Bytes}, ${2:OptOrMand}) $3" -p126249 -tp126250 -a(S"'dec_TransactionReply'/3" -p126251 -S"'dec_TransactionReply'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p126252 -tp126253 -a(S"'dec_TransactionRequest'/2" -p126254 -S"'dec_TransactionRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p126255 -tp126256 -a(S"'dec_TransactionRequest'/3" -p126257 -S"'dec_TransactionRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p126258 -tp126259 -a(S"'dec_TransactionResponseAck'/2" -p126260 -S"'dec_TransactionResponseAck'(${1:Bytes}, ${2:OptOrMand}) $3" -p126261 -tp126262 -a(S"'dec_TransactionResponseAck'/3" -p126263 -S"'dec_TransactionResponseAck'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p126264 -tp126265 -a(S"'dec_Value'/2" -p126266 -S"'dec_Value'(${1:Bytes}, ${2:OptOrMand}) $3" -p126267 -tp126268 -a(S"'dec_Value'/3" -p126269 -S"'dec_Value'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p126270 -tp126271 -a(S"'dec_WildcardField'/2" -p126272 -S"'dec_WildcardField'(${1:Bytes}, ${2:OptOrMand}) $3" -p126273 -tp126274 -a(S"'dec_WildcardField'/3" -p126275 -S"'dec_WildcardField'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p126276 -tp126277 -a(S"'enc_ActionReply'/2" -p126278 -S"'enc_ActionReply'(${1:Val}, ${2:TagIn}) $3" -p126279 -tp126280 -a(S"'enc_ActionRequest'/2" -p126281 -S"'enc_ActionRequest'(${1:Val}, ${2:TagIn}) $3" -p126282 -tp126283 -a(S"'enc_AmmDescriptor'/2" -p126284 -S"'enc_AmmDescriptor'(${1:Val}, ${2:TagIn}) $3" -p126285 -tp126286 -a(S"'enc_AmmRequest'/2" -p126287 -S"'enc_AmmRequest'(${1:Val}, ${2:TagIn}) $3" -p126288 -tp126289 -a(S"'enc_AmmsReply'/2" -p126290 -S"'enc_AmmsReply'(${1:Val}, ${2:TagIn}) $3" -p126291 -tp126292 -a(S"'enc_AuditDescriptor'/2" -p126293 -S"'enc_AuditDescriptor'(${1:Val}, ${2:TagIn}) $3" -p126294 -tp126295 -a(S"'enc_AuditReply'/2" -p126296 -S"'enc_AuditReply'(${1:Val}, ${2:TagIn}) $3" -p126297 -tp126298 -a(S"'enc_AuditRequest'/2" -p126299 -S"'enc_AuditRequest'(${1:Val}, ${2:TagIn}) $3" -p126300 -tp126301 -a(S"'enc_AuditResult'/2" -p126302 -S"'enc_AuditResult'(${1:Val}, ${2:TagIn}) $3" -p126303 -tp126304 -a(S"'enc_AuditReturnParameter'/2" -p126305 -S"'enc_AuditReturnParameter'(${1:Val}, ${2:TagIn}) $3" -p126306 -tp126307 -a(S"'enc_AuthData'/2" -p126308 -S"'enc_AuthData'(${1:Val}, ${2:TagIn}) $3" -p126309 -tp126310 -a(S"'enc_AuthenticationHeader'/2" -p126311 -S"'enc_AuthenticationHeader'(${1:Val}, ${2:TagIn}) $3" -p126312 -tp126313 -a(S"'enc_Command'/2" -p126314 -S"'enc_Command'(${1:Val}, ${2:TagIn}) $3" -p126315 -tp126316 -a(S"'enc_CommandReply'/2" -p126317 -S"'enc_CommandReply'(${1:Val}, ${2:TagIn}) $3" -p126318 -tp126319 -a(S"'enc_CommandRequest'/2" -p126320 -S"'enc_CommandRequest'(${1:Val}, ${2:TagIn}) $3" -p126321 -tp126322 -a(S"'enc_ContextAttrAuditRequest'/2" -p126323 -S"'enc_ContextAttrAuditRequest'(${1:Val}, ${2:TagIn}) $3" -p126324 -tp126325 -a(S"'enc_ContextID'/2" -p126326 -S"'enc_ContextID'(${1:Val}, ${2:TagIn}) $3" -p126327 -tp126328 -a(S"'enc_ContextRequest'/2" -p126329 -S"'enc_ContextRequest'(${1:Val}, ${2:TagIn}) $3" -p126330 -tp126331 -a(S"'enc_DigitMapDescriptor'/2" -p126332 -S"'enc_DigitMapDescriptor'(${1:Val}, ${2:TagIn}) $3" -p126333 -tp126334 -a(S"'enc_DigitMapName'/2" -p126335 -S"'enc_DigitMapName'(${1:Val}, ${2:TagIn}) $3" -p126336 -tp126337 -a(S"'enc_DigitMapValue'/2" -p126338 -S"'enc_DigitMapValue'(${1:Val}, ${2:TagIn}) $3" -p126339 -tp126340 -a(S"'enc_DomainName'/2" -p126341 -S"'enc_DomainName'(${1:Val}, ${2:TagIn}) $3" -p126342 -tp126343 -a(S"'enc_ErrorCode'/2" -p126344 -S"'enc_ErrorCode'(${1:Val}, ${2:TagIn}) $3" -p126345 -tp126346 -a(S"'enc_ErrorDescriptor'/2" -p126347 -S"'enc_ErrorDescriptor'(${1:Val}, ${2:TagIn}) $3" -p126348 -tp126349 -a(S"'enc_ErrorText'/2" -p126350 -S"'enc_ErrorText'(${1:Val}, ${2:TagIn}) $3" -p126351 -tp126352 -a(S"'enc_EventBufferControl'/2" -p126353 -S"'enc_EventBufferControl'(${1:Val}, ${2:TagIn}) $3" -p126354 -tp126355 -a(S"'enc_EventBufferDescriptor'/2" -p126356 -S"'enc_EventBufferDescriptor'(${1:Val}, ${2:TagIn}) $3" -p126357 -tp126358 -a(S"'enc_EventDM'/2" -p126359 -S"'enc_EventDM'(${1:Val}, ${2:TagIn}) $3" -p126360 -tp126361 -a(S"'enc_EventName'/2" -p126362 -S"'enc_EventName'(${1:Val}, ${2:TagIn}) $3" -p126363 -tp126364 -a(S"'enc_EventParameter'/2" -p126365 -S"'enc_EventParameter'(${1:Val}, ${2:TagIn}) $3" -p126366 -tp126367 -a(S"'enc_EventSpec'/2" -p126368 -S"'enc_EventSpec'(${1:Val}, ${2:TagIn}) $3" -p126369 -tp126370 -a(S"'enc_EventsDescriptor'/2" -p126371 -S"'enc_EventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p126372 -tp126373 -a(S"'enc_H221NonStandard'/2" -p126374 -S"'enc_H221NonStandard'(${1:Val}, ${2:TagIn}) $3" -p126375 -tp126376 -a(S"'enc_IP4Address'/2" -p126377 -S"'enc_IP4Address'(${1:Val}, ${2:TagIn}) $3" -p126378 -tp126379 -a(S"'enc_IP6Address'/2" -p126380 -S"'enc_IP6Address'(${1:Val}, ${2:TagIn}) $3" -p126381 -tp126382 -a(S"'enc_IndAudDigitMapDescriptor'/2" -p126383 -S"'enc_IndAudDigitMapDescriptor'(${1:Val}, ${2:TagIn}) $3" -p126384 -tp126385 -a(S"'enc_IndAudEventBufferDescriptor'/2" -p126386 -S"'enc_IndAudEventBufferDescriptor'(${1:Val}, ${2:TagIn}) $3" -p126387 -tp126388 -a(S"'enc_IndAudEventsDescriptor'/2" -p126389 -S"'enc_IndAudEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p126390 -tp126391 -a(S"'enc_IndAudLocalControlDescriptor'/2" -p126392 -S"'enc_IndAudLocalControlDescriptor'(${1:Val}, ${2:TagIn}) $3" -p126393 -tp126394 -a(S"'enc_IndAudLocalRemoteDescriptor'/2" -p126395 -S"'enc_IndAudLocalRemoteDescriptor'(${1:Val}, ${2:TagIn}) $3" -p126396 -tp126397 -a(S"'enc_IndAudMediaDescriptor'/2" -p126398 -S"'enc_IndAudMediaDescriptor'(${1:Val}, ${2:TagIn}) $3" -p126399 -tp126400 -a(S"'enc_IndAudPackagesDescriptor'/2" -p126401 -S"'enc_IndAudPackagesDescriptor'(${1:Val}, ${2:TagIn}) $3" -p126402 -tp126403 -a(S"'enc_IndAudPropertyGroup'/2" -p126404 -S"'enc_IndAudPropertyGroup'(${1:Val}, ${2:TagIn}) $3" -p126405 -tp126406 -a(S"'enc_IndAudPropertyParm'/2" -p126407 -S"'enc_IndAudPropertyParm'(${1:Val}, ${2:TagIn}) $3" -p126408 -tp126409 -a(S"'enc_IndAudSeqSigList'/2" -p126410 -S"'enc_IndAudSeqSigList'(${1:Val}, ${2:TagIn}) $3" -p126411 -tp126412 -a(S"'enc_IndAudSignal'/2" -p126413 -S"'enc_IndAudSignal'(${1:Val}, ${2:TagIn}) $3" -p126414 -tp126415 -a(S"'enc_IndAudSignalsDescriptor'/2" -p126416 -S"'enc_IndAudSignalsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p126417 -tp126418 -a(S"'enc_IndAudStatisticsDescriptor'/2" -p126419 -S"'enc_IndAudStatisticsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p126420 -tp126421 -a(S"'enc_IndAudStreamDescriptor'/2" -p126422 -S"'enc_IndAudStreamDescriptor'(${1:Val}, ${2:TagIn}) $3" -p126423 -tp126424 -a(S"'enc_IndAudStreamParms'/2" -p126425 -S"'enc_IndAudStreamParms'(${1:Val}, ${2:TagIn}) $3" -p126426 -tp126427 -a(S"'enc_IndAudTerminationStateDescriptor'/2" -p126428 -S"'enc_IndAudTerminationStateDescriptor'(${1:Val}, ${2:TagIn}) $3" -p126429 -tp126430 -a(S"'enc_IndAuditParameter'/2" -p126431 -S"'enc_IndAuditParameter'(${1:Val}, ${2:TagIn}) $3" -p126432 -tp126433 -a(S"'enc_LocalControlDescriptor'/2" -p126434 -S"'enc_LocalControlDescriptor'(${1:Val}, ${2:TagIn}) $3" -p126435 -tp126436 -a(S"'enc_LocalRemoteDescriptor'/2" -p126437 -S"'enc_LocalRemoteDescriptor'(${1:Val}, ${2:TagIn}) $3" -p126438 -tp126439 -a(S"'enc_MId'/2" -p126440 -S"'enc_MId'(${1:Val}, ${2:TagIn}) $3" -p126441 -tp126442 -a(S"'enc_MediaDescriptor'/2" -p126443 -S"'enc_MediaDescriptor'(${1:Val}, ${2:TagIn}) $3" -p126444 -tp126445 -a(S"'enc_MegacoMessage'/2" -p126446 -S"'enc_MegacoMessage'(${1:Val}, ${2:TagIn}) $3" -p126447 -tp126448 -a(S"'enc_Message'/2" -p126449 -S"'enc_Message'(${1:Val}, ${2:TagIn}) $3" -p126450 -tp126451 -a(S"'enc_ModemDescriptor'/2" -p126452 -S"'enc_ModemDescriptor'(${1:Val}, ${2:TagIn}) $3" -p126453 -tp126454 -a(S"'enc_ModemType'/2" -p126455 -S"'enc_ModemType'(${1:Val}, ${2:TagIn}) $3" -p126456 -tp126457 -a(S"'enc_MuxDescriptor'/2" -p126458 -S"'enc_MuxDescriptor'(${1:Val}, ${2:TagIn}) $3" -p126459 -tp126460 -a(S"'enc_MuxType'/2" -p126461 -S"'enc_MuxType'(${1:Val}, ${2:TagIn}) $3" -p126462 -tp126463 -a(S"'enc_Name'/2" -p126464 -S"'enc_Name'(${1:Val}, ${2:TagIn}) $3" -p126465 -tp126466 -a(S"'enc_NonStandardData'/2" -p126467 -S"'enc_NonStandardData'(${1:Val}, ${2:TagIn}) $3" -p126468 -tp126469 -a(S"'enc_NonStandardIdentifier'/2" -p126470 -S"'enc_NonStandardIdentifier'(${1:Val}, ${2:TagIn}) $3" -p126471 -tp126472 -a(S"'enc_NotifyCompletion'/2" -p126473 -S"'enc_NotifyCompletion'(${1:Val}, ${2:TagIn}) $3" -p126474 -tp126475 -a(S"'enc_NotifyReply'/2" -p126476 -S"'enc_NotifyReply'(${1:Val}, ${2:TagIn}) $3" -p126477 -tp126478 -a(S"'enc_NotifyRequest'/2" -p126479 -S"'enc_NotifyRequest'(${1:Val}, ${2:TagIn}) $3" -p126480 -tp126481 -a(S"'enc_ObservedEvent'/2" -p126482 -S"'enc_ObservedEvent'(${1:Val}, ${2:TagIn}) $3" -p126483 -tp126484 -a(S"'enc_ObservedEventsDescriptor'/2" -p126485 -S"'enc_ObservedEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p126486 -tp126487 -a(S"'enc_PackagesDescriptor'/2" -p126488 -S"'enc_PackagesDescriptor'(${1:Val}, ${2:TagIn}) $3" -p126489 -tp126490 -a(S"'enc_PackagesItem'/2" -p126491 -S"'enc_PackagesItem'(${1:Val}, ${2:TagIn}) $3" -p126492 -tp126493 -a(S"'enc_PathName'/2" -p126494 -S"'enc_PathName'(${1:Val}, ${2:TagIn}) $3" -p126495 -tp126496 -a(S"'enc_PkgdName'/2" -p126497 -S"'enc_PkgdName'(${1:Val}, ${2:TagIn}) $3" -p126498 -tp126499 -a(S"'enc_PropertyGroup'/2" -p126500 -S"'enc_PropertyGroup'(${1:Val}, ${2:TagIn}) $3" -p126501 -tp126502 -a(S"'enc_PropertyParm'/2" -p126503 -S"'enc_PropertyParm'(${1:Val}, ${2:TagIn}) $3" -p126504 -tp126505 -a(S"'enc_Relation'/2" -p126506 -S"'enc_Relation'(${1:Val}, ${2:TagIn}) $3" -p126507 -tp126508 -a(S"'enc_RequestID'/2" -p126509 -S"'enc_RequestID'(${1:Val}, ${2:TagIn}) $3" -p126510 -tp126511 -a(S"'enc_RequestedActions'/2" -p126512 -S"'enc_RequestedActions'(${1:Val}, ${2:TagIn}) $3" -p126513 -tp126514 -a(S"'enc_RequestedEvent'/2" -p126515 -S"'enc_RequestedEvent'(${1:Val}, ${2:TagIn}) $3" -p126516 -tp126517 -a(S"'enc_SecondEventsDescriptor'/2" -p126518 -S"'enc_SecondEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p126519 -tp126520 -a(S"'enc_SecondRequestedActions'/2" -p126521 -S"'enc_SecondRequestedActions'(${1:Val}, ${2:TagIn}) $3" -p126522 -tp126523 -a(S"'enc_SecondRequestedEvent'/2" -p126524 -S"'enc_SecondRequestedEvent'(${1:Val}, ${2:TagIn}) $3" -p126525 -tp126526 -a(S"'enc_SecurityParmIndex'/2" -p126527 -S"'enc_SecurityParmIndex'(${1:Val}, ${2:TagIn}) $3" -p126528 -tp126529 -a(S"'enc_SegmentNumber'/2" -p126530 -S"'enc_SegmentNumber'(${1:Val}, ${2:TagIn}) $3" -p126531 -tp126532 -a(S"'enc_SeqSigList'/2" -p126533 -S"'enc_SeqSigList'(${1:Val}, ${2:TagIn}) $3" -p126534 -tp126535 -a(S"'enc_SequenceNum'/2" -p126536 -S"'enc_SequenceNum'(${1:Val}, ${2:TagIn}) $3" -p126537 -tp126538 -a(S"'enc_ServiceChangeAddress'/2" -p126539 -S"'enc_ServiceChangeAddress'(${1:Val}, ${2:TagIn}) $3" -p126540 -tp126541 -a(S"'enc_ServiceChangeMethod'/2" -p126542 -S"'enc_ServiceChangeMethod'(${1:Val}, ${2:TagIn}) $3" -p126543 -tp126544 -a(S"'enc_ServiceChangeParm'/2" -p126545 -S"'enc_ServiceChangeParm'(${1:Val}, ${2:TagIn}) $3" -p126546 -tp126547 -a(S"'enc_ServiceChangeProfile'/2" -p126548 -S"'enc_ServiceChangeProfile'(${1:Val}, ${2:TagIn}) $3" -p126549 -tp126550 -a(S"'enc_ServiceChangeReply'/2" -p126551 -S"'enc_ServiceChangeReply'(${1:Val}, ${2:TagIn}) $3" -p126552 -tp126553 -a(S"'enc_ServiceChangeRequest'/2" -p126554 -S"'enc_ServiceChangeRequest'(${1:Val}, ${2:TagIn}) $3" -p126555 -tp126556 -a(S"'enc_ServiceChangeResParm'/2" -p126557 -S"'enc_ServiceChangeResParm'(${1:Val}, ${2:TagIn}) $3" -p126558 -tp126559 -a(S"'enc_ServiceChangeResult'/2" -p126560 -S"'enc_ServiceChangeResult'(${1:Val}, ${2:TagIn}) $3" -p126561 -tp126562 -a(S"'enc_ServiceState'/2" -p126563 -S"'enc_ServiceState'(${1:Val}, ${2:TagIn}) $3" -p126564 -tp126565 -a(S"'enc_SigParameter'/2" -p126566 -S"'enc_SigParameter'(${1:Val}, ${2:TagIn}) $3" -p126567 -tp126568 -a(S"'enc_Signal'/2" -p126569 -S"'enc_Signal'(${1:Val}, ${2:TagIn}) $3" -p126570 -tp126571 -a(S"'enc_SignalDirection'/2" -p126572 -S"'enc_SignalDirection'(${1:Val}, ${2:TagIn}) $3" -p126573 -tp126574 -a(S"'enc_SignalName'/2" -p126575 -S"'enc_SignalName'(${1:Val}, ${2:TagIn}) $3" -p126576 -tp126577 -a(S"'enc_SignalRequest'/2" -p126578 -S"'enc_SignalRequest'(${1:Val}, ${2:TagIn}) $3" -p126579 -tp126580 -a(S"'enc_SignalType'/2" -p126581 -S"'enc_SignalType'(${1:Val}, ${2:TagIn}) $3" -p126582 -tp126583 -a(S"'enc_SignalsDescriptor'/2" -p126584 -S"'enc_SignalsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p126585 -tp126586 -a(S"'enc_StatisticsDescriptor'/2" -p126587 -S"'enc_StatisticsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p126588 -tp126589 -a(S"'enc_StatisticsParameter'/2" -p126590 -S"'enc_StatisticsParameter'(${1:Val}, ${2:TagIn}) $3" -p126591 -tp126592 -a(S"'enc_StreamDescriptor'/2" -p126593 -S"'enc_StreamDescriptor'(${1:Val}, ${2:TagIn}) $3" -p126594 -tp126595 -a(S"'enc_StreamID'/2" -p126596 -S"'enc_StreamID'(${1:Val}, ${2:TagIn}) $3" -p126597 -tp126598 -a(S"'enc_StreamMode'/2" -p126599 -S"'enc_StreamMode'(${1:Val}, ${2:TagIn}) $3" -p126600 -tp126601 -a(S"'enc_StreamParms'/2" -p126602 -S"'enc_StreamParms'(${1:Val}, ${2:TagIn}) $3" -p126603 -tp126604 -a(S"'enc_SubtractRequest'/2" -p126605 -S"'enc_SubtractRequest'(${1:Val}, ${2:TagIn}) $3" -p126606 -tp126607 -a(S"'enc_TerminationAudit'/2" -p126608 -S"'enc_TerminationAudit'(${1:Val}, ${2:TagIn}) $3" -p126609 -tp126610 -a(S"'enc_TerminationID'/2" -p126611 -S"'enc_TerminationID'(${1:Val}, ${2:TagIn}) $3" -p126612 -tp126613 -a(S"'enc_TerminationIDList'/2" -p126614 -S"'enc_TerminationIDList'(${1:Val}, ${2:TagIn}) $3" -p126615 -tp126616 -a(S"'enc_TerminationStateDescriptor'/2" -p126617 -S"'enc_TerminationStateDescriptor'(${1:Val}, ${2:TagIn}) $3" -p126618 -tp126619 -a(S"'enc_TimeNotation'/2" -p126620 -S"'enc_TimeNotation'(${1:Val}, ${2:TagIn}) $3" -p126621 -tp126622 -a(S"'enc_TopologyRequest'/2" -p126623 -S"'enc_TopologyRequest'(${1:Val}, ${2:TagIn}) $3" -p126624 -tp126625 -a(S"'enc_Transaction'/2" -p126626 -S"'enc_Transaction'(${1:Val}, ${2:TagIn}) $3" -p126627 -tp126628 -a(S"'enc_TransactionAck'/2" -p126629 -S"'enc_TransactionAck'(${1:Val}, ${2:TagIn}) $3" -p126630 -tp126631 -a(S"'enc_TransactionId'/2" -p126632 -S"'enc_TransactionId'(${1:Val}, ${2:TagIn}) $3" -p126633 -tp126634 -a(S"'enc_TransactionPending'/2" -p126635 -S"'enc_TransactionPending'(${1:Val}, ${2:TagIn}) $3" -p126636 -tp126637 -a(S"'enc_TransactionReply'/2" -p126638 -S"'enc_TransactionReply'(${1:Val}, ${2:TagIn}) $3" -p126639 -tp126640 -a(S"'enc_TransactionRequest'/2" -p126641 -S"'enc_TransactionRequest'(${1:Val}, ${2:TagIn}) $3" -p126642 -tp126643 -a(S"'enc_TransactionResponseAck'/2" -p126644 -S"'enc_TransactionResponseAck'(${1:Val}, ${2:TagIn}) $3" -p126645 -tp126646 -a(S"'enc_Value'/2" -p126647 -S"'enc_Value'(${1:Val}, ${2:TagIn}) $3" -p126648 -tp126649 -a(S"'enc_WildcardField'/2" -p126650 -S"'enc_WildcardField'(${1:Val}, ${2:TagIn}) $3" -p126651 -tp126652 -a(S'decode/2' -p126653 -S'decode(${1:Type}, ${2:Data}) $3' -p126654 -tp126655 -a(S'decode_disp/2' -p126656 -S'decode_disp(${1:Type}, ${2:Data}) $3' -p126657 -tp126658 -a(S'encode/2' -p126659 -S'encode(${1:Type}, ${2:Data}) $3' -p126660 -tp126661 -a(S'encode_disp/2' -p126662 -S'encode_disp(${1:Type}, ${2:Data}) $3' -p126663 -tp126664 -a(S'encoding_rule/0' -p126665 -S'encoding_rule() $1' -p126666 -tp126667 -a(S'info/0' -p126668 -S'info() $1' -p126669 -tp126670 -asS'dialyzer_analysis_callgraph' -p126671 -(lp126672 -(S'start/3' -p126673 -S'start(${1:Parent}, ${2:LegalWarnings}, ${3:Analysis}) $4' -p126674 -tp126675 -asS'auth' -p126676 -(lp126677 -(S'code_change/3' -p126678 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p126679 -tp126680 -a(S'cookie/0' -p126681 -S'cookie() $1' -p126682 -tp126683 -a(S'cookie/1' -p126684 -S'cookie(${1:TheCookie}) $2' -p126685 -tp126686 -a(S'get_cookie/0' -p126687 -S'get_cookie() $1' -p126688 -tp126689 -a(S'get_cookie/1' -p126690 -S'get_cookie(${1:Node}) $2' -p126691 -tp126692 -a(S'handle_call/3' -p126693 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p126694 -tp126695 -a(S'handle_cast/2' -p126696 -S'handle_cast(${1:Param1}, ${2:O}) $3' -p126697 -tp126698 -a(S'handle_info/2' -p126699 -S'handle_info(${1:Param1}, ${2:O}) $3' -p126700 -tp126701 -a(S'init/1' -p126702 -S'init(${1:Param1}) $2' -p126703 -tp126704 -a(S'is_auth/1' -p126705 -S'is_auth(${1:Node}) $2' -p126706 -tp126707 -a(S'node_cookie/1' -p126708 -S'node_cookie(${1:Param1}) $2' -p126709 -tp126710 -a(S'node_cookie/2' -p126711 -S'node_cookie(${1:Node}, ${2:Cookie}) $3' -p126712 -tp126713 -a(S'print/3' -p126714 -S'print(${1:Node}, ${2:Format}, ${3:Args}) $4' -p126715 -tp126716 -a(S'set_cookie/1' -p126717 -S'set_cookie(${1:Cookie}) $2' -p126718 -tp126719 -a(S'set_cookie/2' -p126720 -S'set_cookie(${1:Node}, ${2:Cookie}) $3' -p126721 -tp126722 -a(S'start_link/0' -p126723 -S'start_link() $1' -p126724 -tp126725 -a(S'sync_cookie/0' -p126726 -S'sync_cookie() $1' -p126727 -tp126728 -a(S'terminate/2' -p126729 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p126730 -tp126731 -asS'tv_io_lib' -p126732 -(lp126733 -(S'char_list/1' -p126734 -S'char_list(${1:Cs}) $2' -p126735 -tp126736 -a(S'deep_char_list/1' -p126737 -S'deep_char_list(${1:Cs}) $2' -p126738 -tp126739 -a(S'format/2' -p126740 -S'format(${1:Format}, ${2:Args}) $3' -p126741 -tp126742 -a(S'printable_list/1' -p126743 -S'printable_list(${1:Param1}) $2' -p126744 -tp126745 -a(S'write/1' -p126746 -S'write(${1:Term}) $2' -p126747 -tp126748 -a(S'write/2' -p126749 -S'write(${1:Term}, ${2:D}) $3' -p126750 -tp126751 -a(S'write_atom/1' -p126752 -S'write_atom(${1:Atom}) $2' -p126753 -tp126754 -a(S'write_string/2' -p126755 -S'write_string(${1:S}, ${2:Q}) $3' -p126756 -tp126757 -asS'xmerl_uri' -p126758 -(lp126759 -(S'parse/1' -p126760 -S'parse(${1:URI}) $2' -p126761 -tp126762 -a(S'resolve/2' -p126763 -S'resolve(${1:Param1}, ${2:Param2}) $3' -p126764 -tp126765 -asS'CosEventDomainAdmin_DiamondSeq' -p126766 -(lp126767 -(S'id/0' -p126768 -S'id() $1' -p126769 -tp126770 -a(S'name/0' -p126771 -S'name() $1' -p126772 -tp126773 -a(S'tc/0' -p126774 -S'tc() $1' -p126775 -tp126776 -asS'mnesia_frag_old_hash' -p126777 -(lp126778 -(S'add_frag/1' -p126779 -S'add_frag(${1:State}) $2' -p126780 -tp126781 -a(S'del_frag/1' -p126782 -S'del_frag(${1:State}) $2' -p126783 -tp126784 -a(S'init_state/2' -p126785 -S'init_state(${1:Param1}, ${2:FH}) $3' -p126786 -tp126787 -a(S'key_to_frag_number/2' -p126788 -S'key_to_frag_number(${1:State}, ${2:Key}) $3' -p126789 -tp126790 -a(S'match_spec_to_frag_numbers/2' -p126791 -S'match_spec_to_frag_numbers(${1:State}, ${2:MatchSpec}) $3' -p126792 -tp126793 -asS'wxPreviewCanvas' -p126794 -(lp126795 -(S'cacheBestSize/2' -p126796 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p126797 -tp126798 -a(S'calcScrolledPosition/2' -p126799 -S'calcScrolledPosition(${1:This}, ${2:Pt}) $3' -p126800 -tp126801 -a(S'calcScrolledPosition/3' -p126802 -S'calcScrolledPosition(${1:This}, ${2:X}, ${3:Y}) $4' -p126803 -tp126804 -a(S'calcUnscrolledPosition/2' -p126805 -S'calcUnscrolledPosition(${1:This}, ${2:Pt}) $3' -p126806 -tp126807 -a(S'calcUnscrolledPosition/3' -p126808 -S'calcUnscrolledPosition(${1:This}, ${2:X}, ${3:Y}) $4' -p126809 -tp126810 -a(S'captureMouse/1' -p126811 -S'captureMouse(${1:This}) $2' -p126812 -tp126813 -a(S'center/1' -p126814 -S'center(${1:This}) $2' -p126815 -tp126816 -a(S'center/2' -p126817 -S'center(${1:This}, ${2:Options}) $3' -p126818 -tp126819 -a(S'centerOnParent/1' -p126820 -S'centerOnParent(${1:This}) $2' -p126821 -tp126822 -a(S'centerOnParent/2' -p126823 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p126824 -tp126825 -a(S'centre/1' -p126826 -S'centre(${1:This}) $2' -p126827 -tp126828 -a(S'centre/2' -p126829 -S'centre(${1:This}, ${2:Options}) $3' -p126830 -tp126831 -a(S'centreOnParent/1' -p126832 -S'centreOnParent(${1:This}) $2' -p126833 -tp126834 -a(S'centreOnParent/2' -p126835 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p126836 -tp126837 -a(S'clearBackground/1' -p126838 -S'clearBackground(${1:This}) $2' -p126839 -tp126840 -a(S'clientToScreen/2' -p126841 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p126842 -tp126843 -a(S'clientToScreen/3' -p126844 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p126845 -tp126846 -a(S'close/1' -p126847 -S'close(${1:This}) $2' -p126848 -tp126849 -a(S'close/2' -p126850 -S'close(${1:This}, ${2:Options}) $3' -p126851 -tp126852 -a(S'connect/2' -p126853 -S'connect(${1:This}, ${2:EventType}) $3' -p126854 -tp126855 -a(S'connect/3' -p126856 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p126857 -tp126858 -a(S'convertDialogToPixels/2' -p126859 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p126860 -tp126861 -a(S'convertPixelsToDialog/2' -p126862 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p126863 -tp126864 -a(S'destroyChildren/1' -p126865 -S'destroyChildren(${1:This}) $2' -p126866 -tp126867 -a(S'disable/1' -p126868 -S'disable(${1:This}) $2' -p126869 -tp126870 -a(S'disconnect/1' -p126871 -S'disconnect(${1:This}) $2' -p126872 -tp126873 -a(S'disconnect/2' -p126874 -S'disconnect(${1:This}, ${2:EventType}) $3' -p126875 -tp126876 -a(S'disconnect/3' -p126877 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p126878 -tp126879 -a(S'doPrepareDC/2' -p126880 -S'doPrepareDC(${1:This}, ${2:Dc}) $3' -p126881 -tp126882 -a(S'enable/1' -p126883 -S'enable(${1:This}) $2' -p126884 -tp126885 -a(S'enable/2' -p126886 -S'enable(${1:This}, ${2:Options}) $3' -p126887 -tp126888 -a(S'enableScrolling/3' -p126889 -S'enableScrolling(${1:This}, ${2:X_scrolling}, ${3:Y_scrolling}) $4' -p126890 -tp126891 -a(S'findWindow/2' -p126892 -S'findWindow(${1:This}, ${2:Winid}) $3' -p126893 -tp126894 -a(S'fit/1' -p126895 -S'fit(${1:This}) $2' -p126896 -tp126897 -a(S'fitInside/1' -p126898 -S'fitInside(${1:This}) $2' -p126899 -tp126900 -a(S'freeze/1' -p126901 -S'freeze(${1:This}) $2' -p126902 -tp126903 -a(S'getAcceleratorTable/1' -p126904 -S'getAcceleratorTable(${1:This}) $2' -p126905 -tp126906 -a(S'getBackgroundColour/1' -p126907 -S'getBackgroundColour(${1:This}) $2' -p126908 -tp126909 -a(S'getBackgroundStyle/1' -p126910 -S'getBackgroundStyle(${1:This}) $2' -p126911 -tp126912 -a(S'getBestSize/1' -p126913 -S'getBestSize(${1:This}) $2' -p126914 -tp126915 -a(S'getCaret/1' -p126916 -S'getCaret(${1:This}) $2' -p126917 -tp126918 -a(S'getCharHeight/1' -p126919 -S'getCharHeight(${1:This}) $2' -p126920 -tp126921 -a(S'getCharWidth/1' -p126922 -S'getCharWidth(${1:This}) $2' -p126923 -tp126924 -a(S'getChildren/1' -p126925 -S'getChildren(${1:This}) $2' -p126926 -tp126927 -a(S'getClientSize/1' -p126928 -S'getClientSize(${1:This}) $2' -p126929 -tp126930 -a(S'getContainingSizer/1' -p126931 -S'getContainingSizer(${1:This}) $2' -p126932 -tp126933 -a(S'getCursor/1' -p126934 -S'getCursor(${1:This}) $2' -p126935 -tp126936 -a(S'getDropTarget/1' -p126937 -S'getDropTarget(${1:This}) $2' -p126938 -tp126939 -a(S'getEventHandler/1' -p126940 -S'getEventHandler(${1:This}) $2' -p126941 -tp126942 -a(S'getExtraStyle/1' -p126943 -S'getExtraStyle(${1:This}) $2' -p126944 -tp126945 -a(S'getFont/1' -p126946 -S'getFont(${1:This}) $2' -p126947 -tp126948 -a(S'getForegroundColour/1' -p126949 -S'getForegroundColour(${1:This}) $2' -p126950 -tp126951 -a(S'getGrandParent/1' -p126952 -S'getGrandParent(${1:This}) $2' -p126953 -tp126954 -a(S'getHandle/1' -p126955 -S'getHandle(${1:This}) $2' -p126956 -tp126957 -a(S'getHelpText/1' -p126958 -S'getHelpText(${1:This}) $2' -p126959 -tp126960 -a(S'getId/1' -p126961 -S'getId(${1:This}) $2' -p126962 -tp126963 -a(S'getLabel/1' -p126964 -S'getLabel(${1:This}) $2' -p126965 -tp126966 -a(S'getMaxSize/1' -p126967 -S'getMaxSize(${1:This}) $2' -p126968 -tp126969 -a(S'getMinSize/1' -p126970 -S'getMinSize(${1:This}) $2' -p126971 -tp126972 -a(S'getName/1' -p126973 -S'getName(${1:This}) $2' -p126974 -tp126975 -a(S'getParent/1' -p126976 -S'getParent(${1:This}) $2' -p126977 -tp126978 -a(S'getPosition/1' -p126979 -S'getPosition(${1:This}) $2' -p126980 -tp126981 -a(S'getRect/1' -p126982 -S'getRect(${1:This}) $2' -p126983 -tp126984 -a(S'getScreenPosition/1' -p126985 -S'getScreenPosition(${1:This}) $2' -p126986 -tp126987 -a(S'getScreenRect/1' -p126988 -S'getScreenRect(${1:This}) $2' -p126989 -tp126990 -a(S'getScrollPixelsPerUnit/1' -p126991 -S'getScrollPixelsPerUnit(${1:This}) $2' -p126992 -tp126993 -a(S'getScrollPos/2' -p126994 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p126995 -tp126996 -a(S'getScrollRange/2' -p126997 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p126998 -tp126999 -a(S'getScrollThumb/2' -p127000 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p127001 -tp127002 -a(S'getSize/1' -p127003 -S'getSize(${1:This}) $2' -p127004 -tp127005 -a(S'getSizer/1' -p127006 -S'getSizer(${1:This}) $2' -p127007 -tp127008 -a(S'getTextExtent/2' -p127009 -S'getTextExtent(${1:This}, ${2:String}) $3' -p127010 -tp127011 -a(S'getTextExtent/3' -p127012 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p127013 -tp127014 -a(S'getToolTip/1' -p127015 -S'getToolTip(${1:This}) $2' -p127016 -tp127017 -a(S'getUpdateRegion/1' -p127018 -S'getUpdateRegion(${1:This}) $2' -p127019 -tp127020 -a(S'getViewStart/1' -p127021 -S'getViewStart(${1:This}) $2' -p127022 -tp127023 -a(S'getVirtualSize/1' -p127024 -S'getVirtualSize(${1:This}) $2' -p127025 -tp127026 -a(S'getWindowStyleFlag/1' -p127027 -S'getWindowStyleFlag(${1:This}) $2' -p127028 -tp127029 -a(S'getWindowVariant/1' -p127030 -S'getWindowVariant(${1:This}) $2' -p127031 -tp127032 -a(S'hasCapture/1' -p127033 -S'hasCapture(${1:This}) $2' -p127034 -tp127035 -a(S'hasScrollbar/2' -p127036 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p127037 -tp127038 -a(S'hasTransparentBackground/1' -p127039 -S'hasTransparentBackground(${1:This}) $2' -p127040 -tp127041 -a(S'hide/1' -p127042 -S'hide(${1:This}) $2' -p127043 -tp127044 -a(S'inheritAttributes/1' -p127045 -S'inheritAttributes(${1:This}) $2' -p127046 -tp127047 -a(S'initDialog/1' -p127048 -S'initDialog(${1:This}) $2' -p127049 -tp127050 -a(S'invalidateBestSize/1' -p127051 -S'invalidateBestSize(${1:This}) $2' -p127052 -tp127053 -a(S'isEnabled/1' -p127054 -S'isEnabled(${1:This}) $2' -p127055 -tp127056 -a(S'isExposed/2' -p127057 -S'isExposed(${1:This}, ${2:Pt}) $3' -p127058 -tp127059 -a(S'isExposed/3' -p127060 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p127061 -tp127062 -a(S'isExposed/5' -p127063 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p127064 -tp127065 -a(S'isRetained/1' -p127066 -S'isRetained(${1:This}) $2' -p127067 -tp127068 -a(S'isShown/1' -p127069 -S'isShown(${1:This}) $2' -p127070 -tp127071 -a(S'isTopLevel/1' -p127072 -S'isTopLevel(${1:This}) $2' -p127073 -tp127074 -a(S'layout/1' -p127075 -S'layout(${1:This}) $2' -p127076 -tp127077 -a(S'lineDown/1' -p127078 -S'lineDown(${1:This}) $2' -p127079 -tp127080 -a(S'lineUp/1' -p127081 -S'lineUp(${1:This}) $2' -p127082 -tp127083 -a(S'lower/1' -p127084 -S'lower(${1:This}) $2' -p127085 -tp127086 -a(S'makeModal/1' -p127087 -S'makeModal(${1:This}) $2' -p127088 -tp127089 -a(S'makeModal/2' -p127090 -S'makeModal(${1:This}, ${2:Options}) $3' -p127091 -tp127092 -a(S'move/2' -p127093 -S'move(${1:This}, ${2:Pt}) $3' -p127094 -tp127095 -a(S'move/3' -p127096 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p127097 -tp127098 -a(S'move/4' -p127099 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p127100 -tp127101 -a(S'moveAfterInTabOrder/2' -p127102 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p127103 -tp127104 -a(S'moveBeforeInTabOrder/2' -p127105 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p127106 -tp127107 -a(S'navigate/1' -p127108 -S'navigate(${1:This}) $2' -p127109 -tp127110 -a(S'navigate/2' -p127111 -S'navigate(${1:This}, ${2:Options}) $3' -p127112 -tp127113 -a(S'pageDown/1' -p127114 -S'pageDown(${1:This}) $2' -p127115 -tp127116 -a(S'pageUp/1' -p127117 -S'pageUp(${1:This}) $2' -p127118 -tp127119 -a(S'parent_class/1' -p127120 -S'parent_class(${1:Param1}) $2' -p127121 -tp127122 -a(S'popEventHandler/1' -p127123 -S'popEventHandler(${1:This}) $2' -p127124 -tp127125 -a(S'popEventHandler/2' -p127126 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p127127 -tp127128 -a(S'popupMenu/2' -p127129 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p127130 -tp127131 -a(S'popupMenu/3' -p127132 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p127133 -tp127134 -a(S'popupMenu/4' -p127135 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p127136 -tp127137 -a(S'prepareDC/2' -p127138 -S'prepareDC(${1:This}, ${2:Dc}) $3' -p127139 -tp127140 -a(S'raise/1' -p127141 -S'raise(${1:This}) $2' -p127142 -tp127143 -a(S'refresh/1' -p127144 -S'refresh(${1:This}) $2' -p127145 -tp127146 -a(S'refresh/2' -p127147 -S'refresh(${1:This}, ${2:Options}) $3' -p127148 -tp127149 -a(S'refreshRect/2' -p127150 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p127151 -tp127152 -a(S'refreshRect/3' -p127153 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p127154 -tp127155 -a(S'releaseMouse/1' -p127156 -S'releaseMouse(${1:This}) $2' -p127157 -tp127158 -a(S'removeChild/2' -p127159 -S'removeChild(${1:This}, ${2:Child}) $3' -p127160 -tp127161 -a(S'reparent/2' -p127162 -S'reparent(${1:This}, ${2:NewParent}) $3' -p127163 -tp127164 -a(S'screenToClient/1' -p127165 -S'screenToClient(${1:This}) $2' -p127166 -tp127167 -a(S'screenToClient/2' -p127168 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p127169 -tp127170 -a(S'scroll/3' -p127171 -S'scroll(${1:This}, ${2:X}, ${3:Y}) $4' -p127172 -tp127173 -a(S'scrollLines/2' -p127174 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p127175 -tp127176 -a(S'scrollPages/2' -p127177 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p127178 -tp127179 -a(S'scrollWindow/3' -p127180 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p127181 -tp127182 -a(S'scrollWindow/4' -p127183 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p127184 -tp127185 -a(S'setAcceleratorTable/2' -p127186 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p127187 -tp127188 -a(S'setAutoLayout/2' -p127189 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p127190 -tp127191 -a(S'setBackgroundColour/2' -p127192 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p127193 -tp127194 -a(S'setBackgroundStyle/2' -p127195 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p127196 -tp127197 -a(S'setCaret/2' -p127198 -S'setCaret(${1:This}, ${2:Caret}) $3' -p127199 -tp127200 -a(S'setClientSize/2' -p127201 -S'setClientSize(${1:This}, ${2:Size}) $3' -p127202 -tp127203 -a(S'setClientSize/3' -p127204 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p127205 -tp127206 -a(S'setContainingSizer/2' -p127207 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p127208 -tp127209 -a(S'setCursor/2' -p127210 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p127211 -tp127212 -a(S'setDropTarget/2' -p127213 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p127214 -tp127215 -a(S'setExtraStyle/2' -p127216 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p127217 -tp127218 -a(S'setFocus/1' -p127219 -S'setFocus(${1:This}) $2' -p127220 -tp127221 -a(S'setFocusFromKbd/1' -p127222 -S'setFocusFromKbd(${1:This}) $2' -p127223 -tp127224 -a(S'setFont/2' -p127225 -S'setFont(${1:This}, ${2:Font}) $3' -p127226 -tp127227 -a(S'setForegroundColour/2' -p127228 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p127229 -tp127230 -a(S'setHelpText/2' -p127231 -S'setHelpText(${1:This}, ${2:Text}) $3' -p127232 -tp127233 -a(S'setId/2' -p127234 -S'setId(${1:This}, ${2:Winid}) $3' -p127235 -tp127236 -a(S'setLabel/2' -p127237 -S'setLabel(${1:This}, ${2:Label}) $3' -p127238 -tp127239 -a(S'setMaxSize/2' -p127240 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p127241 -tp127242 -a(S'setMinSize/2' -p127243 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p127244 -tp127245 -a(S'setName/2' -p127246 -S'setName(${1:This}, ${2:Name}) $3' -p127247 -tp127248 -a(S'setOwnBackgroundColour/2' -p127249 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p127250 -tp127251 -a(S'setOwnFont/2' -p127252 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p127253 -tp127254 -a(S'setOwnForegroundColour/2' -p127255 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p127256 -tp127257 -a(S'setPalette/2' -p127258 -S'setPalette(${1:This}, ${2:Pal}) $3' -p127259 -tp127260 -a(S'setScrollPos/3' -p127261 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p127262 -tp127263 -a(S'setScrollPos/4' -p127264 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p127265 -tp127266 -a(S'setScrollRate/3' -p127267 -S'setScrollRate(${1:This}, ${2:Xstep}, ${3:Ystep}) $4' -p127268 -tp127269 -a(S'setScrollbar/5' -p127270 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p127271 -tp127272 -a(S'setScrollbar/6' -p127273 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p127274 -tp127275 -a(S'setScrollbars/5' -p127276 -S'setScrollbars(${1:This}, ${2:PixelsPerUnitX}, ${3:PixelsPerUnitY}, ${4:NoUnitsX}, ${5:NoUnitsY}) $6' -p127277 -tp127278 -a(S'setScrollbars/6' -p127279 -S'setScrollbars(${1:This}, ${2:PixelsPerUnitX}, ${3:PixelsPerUnitY}, ${4:NoUnitsX}, ${5:NoUnitsY}, ${6:Options}) $7' -p127280 -tp127281 -a(S'setSize/2' -p127282 -S'setSize(${1:This}, ${2:Rect}) $3' -p127283 -tp127284 -a(S'setSize/3' -p127285 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p127286 -tp127287 -a(S'setSize/5' -p127288 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p127289 -tp127290 -a(S'setSize/6' -p127291 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p127292 -tp127293 -a(S'setSizeHints/2' -p127294 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p127295 -tp127296 -a(S'setSizeHints/3' -p127297 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p127298 -tp127299 -a(S'setSizeHints/4' -p127300 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p127301 -tp127302 -a(S'setSizer/2' -p127303 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p127304 -tp127305 -a(S'setSizer/3' -p127306 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p127307 -tp127308 -a(S'setSizerAndFit/2' -p127309 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p127310 -tp127311 -a(S'setSizerAndFit/3' -p127312 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p127313 -tp127314 -a(S'setTargetWindow/2' -p127315 -S'setTargetWindow(${1:This}, ${2:Target}) $3' -p127316 -tp127317 -a(S'setThemeEnabled/2' -p127318 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p127319 -tp127320 -a(S'setToolTip/2' -p127321 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p127322 -tp127323 -a(S'setVirtualSize/2' -p127324 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p127325 -tp127326 -a(S'setVirtualSize/3' -p127327 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p127328 -tp127329 -a(S'setVirtualSizeHints/2' -p127330 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p127331 -tp127332 -a(S'setVirtualSizeHints/3' -p127333 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p127334 -tp127335 -a(S'setVirtualSizeHints/4' -p127336 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p127337 -tp127338 -a(S'setWindowStyle/2' -p127339 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p127340 -tp127341 -a(S'setWindowStyleFlag/2' -p127342 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p127343 -tp127344 -a(S'setWindowVariant/2' -p127345 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p127346 -tp127347 -a(S'shouldInheritColours/1' -p127348 -S'shouldInheritColours(${1:This}) $2' -p127349 -tp127350 -a(S'show/1' -p127351 -S'show(${1:This}) $2' -p127352 -tp127353 -a(S'show/2' -p127354 -S'show(${1:This}, ${2:Options}) $3' -p127355 -tp127356 -a(S'thaw/1' -p127357 -S'thaw(${1:This}) $2' -p127358 -tp127359 -a(S'transferDataFromWindow/1' -p127360 -S'transferDataFromWindow(${1:This}) $2' -p127361 -tp127362 -a(S'transferDataToWindow/1' -p127363 -S'transferDataToWindow(${1:This}) $2' -p127364 -tp127365 -a(S'update/1' -p127366 -S'update(${1:This}) $2' -p127367 -tp127368 -a(S'updateWindowUI/1' -p127369 -S'updateWindowUI(${1:This}) $2' -p127370 -tp127371 -a(S'updateWindowUI/2' -p127372 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p127373 -tp127374 -a(S'validate/1' -p127375 -S'validate(${1:This}) $2' -p127376 -tp127377 -a(S'warpPointer/3' -p127378 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p127379 -tp127380 -asS'cth_surefire' -p127381 -(lp127382 -(S'id/1' -p127383 -S'id(${1:Opts}) $2' -p127384 -tp127385 -a(S'init/2' -p127386 -S'init(${1:Path}, ${2:Opts}) $3' -p127387 -tp127388 -a(S'on_tc_fail/3' -p127389 -S'on_tc_fail(${1:Param1}, ${2:Res}, ${3:State}) $4' -p127390 -tp127391 -a(S'on_tc_skip/3' -p127392 -S'on_tc_skip(${1:Param1}, ${2:Res}, ${3:State}) $4' -p127393 -tp127394 -a(S'post_end_per_group/4' -p127395 -S'post_end_per_group(${1:Param1}, ${2:Config}, ${3:Result}, ${4:State}) $5' -p127396 -tp127397 -a(S'post_end_per_suite/4' -p127398 -S'post_end_per_suite(${1:Param1}, ${2:Config}, ${3:Result}, ${4:State}) $5' -p127399 -tp127400 -a(S'post_end_per_testcase/4' -p127401 -S'post_end_per_testcase(${1:TC}, ${2:Config}, ${3:Result}, ${4:State}) $5' -p127402 -tp127403 -a(S'post_init_per_group/4' -p127404 -S'post_init_per_group(${1:Param1}, ${2:Config}, ${3:Result}, ${4:State}) $5' -p127405 -tp127406 -a(S'post_init_per_suite/4' -p127407 -S'post_init_per_suite(${1:Param1}, ${2:Config}, ${3:Result}, ${4:State}) $5' -p127408 -tp127409 -a(S'pre_end_per_group/3' -p127410 -S'pre_end_per_group(${1:Param1}, ${2:Config}, ${3:State}) $4' -p127411 -tp127412 -a(S'pre_end_per_suite/3' -p127413 -S'pre_end_per_suite(${1:Param1}, ${2:Config}, ${3:State}) $4' -p127414 -tp127415 -a(S'pre_init_per_group/3' -p127416 -S'pre_init_per_group(${1:Group}, ${2:Config}, ${3:State}) $4' -p127417 -tp127418 -a(S'pre_init_per_suite/3' -p127419 -S'pre_init_per_suite(${1:Suite}, ${2:Config}, ${3:State}) $4' -p127420 -tp127421 -a(S'pre_init_per_testcase/3' -p127422 -S'pre_init_per_testcase(${1:Param1}, ${2:Config}, ${3:State}) $4' -p127423 -tp127424 -a(S'terminate/1' -p127425 -S'terminate(${1:State}) $2' -p127426 -tp127427 -asS'mod_htaccess' -p127428 -(lp127429 -(S'do/1' -p127430 -S'do(${1:Info}) $2' -p127431 -tp127432 -a(S'load/2' -p127433 -S'load(${1:Param1}, ${2:Param2}) $3' -p127434 -tp127435 -a(S'store/2' -p127436 -S'store(${1:Conf}, ${2:Param2}) $3' -p127437 -tp127438 -asS'fprof' -p127439 -(lp127440 -(S"'$code_change'/1" -p127441 -S"'$code_change'(${1:State}) $2" -p127442 -tp127443 -a(S'analyse/0' -p127444 -S'analyse() $1' -p127445 -tp127446 -a(S'analyse/1' -p127447 -S'analyse(${1:Option}) $2' -p127448 -tp127449 -a(S'analyse/2' -p127450 -S'analyse(${1:Option}, ${2:Value}) $3' -p127451 -tp127452 -a(S'apply/2' -p127453 -S'apply(${1:A}, ${2:B}) $3' -p127454 -tp127455 -a(S'apply/3' -p127456 -S'apply(${1:M}, ${2:F}, ${3:Args}) $4' -p127457 -tp127458 -a(S'apply/4' -p127459 -S'apply(${1:A}, ${2:B}, ${3:C}, ${4:D}) $5' -p127460 -tp127461 -a(S'call/1' -p127462 -S'call(${1:Request}) $2' -p127463 -tp127464 -a(S'code_change/0' -p127465 -S'code_change() $1' -p127466 -tp127467 -a(S'get_state/0' -p127468 -S'get_state() $1' -p127469 -tp127470 -a(S'getopts/2' -p127471 -S'getopts(${1:List}, ${2:Options}) $3' -p127472 -tp127473 -a(S'just_call/1' -p127474 -S'just_call(${1:Request}) $2' -p127475 -tp127476 -a(S'load_profile/0' -p127477 -S'load_profile() $1' -p127478 -tp127479 -a(S'load_profile/1' -p127480 -S'load_profile(${1:Option}) $2' -p127481 -tp127482 -a(S'load_profile/2' -p127483 -S'load_profile(${1:Option}, ${2:Value}) $3' -p127484 -tp127485 -a(S'parsify/1' -p127486 -S'parsify(${1:Tuple}) $2' -p127487 -tp127488 -a(S'print_called/2' -p127489 -S'print_called(${1:Dest}, ${2:Param2}) $3' -p127490 -tp127491 -a(S'print_callers/2' -p127492 -S'print_callers(${1:Dest}, ${2:Param2}) $3' -p127493 -tp127494 -a(S'print_func/2' -p127495 -S'print_func(${1:Dest}, ${2:Clocks}) $3' -p127496 -tp127497 -a(S'println/5' -p127498 -S'println() $1' -p127499 -tp127500 -a(S'profile/0' -p127501 -S'profile() $1' -p127502 -tp127503 -a(S'profile/1' -p127504 -S'profile(${1:Option}) $2' -p127505 -tp127506 -a(S'profile/2' -p127507 -S'profile(${1:Option}, ${2:Value}) $3' -p127508 -tp127509 -a(S'reply/2' -p127510 -S'reply(${1:Param1}, ${2:Reply}) $3' -p127511 -tp127512 -a(S'save_profile/0' -p127513 -S'save_profile() $1' -p127514 -tp127515 -a(S'save_profile/1' -p127516 -S'save_profile(${1:Option}) $2' -p127517 -tp127518 -a(S'save_profile/2' -p127519 -S'save_profile(${1:Option}, ${2:Value}) $3' -p127520 -tp127521 -a(S'setopts/1' -p127522 -S'setopts(${1:Options}) $2' -p127523 -tp127524 -a(S'start/0' -p127525 -S'start() $1' -p127526 -tp127527 -a(S'stop/0' -p127528 -S'stop() $1' -p127529 -tp127530 -a(S'stop/1' -p127531 -S'stop(${1:Reason}) $2' -p127532 -tp127533 -a(S'trace/1' -p127534 -S'trace(${1:Option}) $2' -p127535 -tp127536 -a(S'trace/2' -p127537 -S'trace(${1:Option}, ${2:Filename}) $3' -p127538 -tp127539 -a(S'trace_call_collapse/1' -p127540 -S'trace_call_collapse(${1:Stack}) $2' -p127541 -tp127542 -a(S'trace_off/0' -p127543 -S'trace_off() $1' -p127544 -tp127545 -a(S'trace_on/3' -p127546 -S'trace_on(${1:Procs}, ${2:Tracer}, ${3:Param3}) $4' -p127547 -tp127548 -asS'mod_head' -p127549 -(lp127550 -(S'do/1' -p127551 -S'do(${1:Info}) $2' -p127552 -tp127553 -asS'wxTaskBarIconEvent' -p127554 -(lp127555 -(S'getId/1' -p127556 -S'getId(${1:This}) $2' -p127557 -tp127558 -a(S'getSkipped/1' -p127559 -S'getSkipped(${1:This}) $2' -p127560 -tp127561 -a(S'getTimestamp/1' -p127562 -S'getTimestamp(${1:This}) $2' -p127563 -tp127564 -a(S'isCommandEvent/1' -p127565 -S'isCommandEvent(${1:This}) $2' -p127566 -tp127567 -a(S'parent_class/1' -p127568 -S'parent_class(${1:Param1}) $2' -p127569 -tp127570 -a(S'resumePropagation/2' -p127571 -S'resumePropagation(${1:This}, ${2:PropagationLevel}) $3' -p127572 -tp127573 -a(S'shouldPropagate/1' -p127574 -S'shouldPropagate(${1:This}) $2' -p127575 -tp127576 -a(S'skip/1' -p127577 -S'skip(${1:This}) $2' -p127578 -tp127579 -a(S'skip/2' -p127580 -S'skip(${1:This}, ${2:Options}) $3' -p127581 -tp127582 -a(S'stopPropagation/1' -p127583 -S'stopPropagation(${1:This}) $2' -p127584 -tp127585 -asS'oe_CosEventComm_Channel' -p127586 -(lp127587 -(S'code_change/3' -p127588 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p127589 -tp127590 -a(S'destroy/1' -p127591 -S'destroy(${1:OE_THIS}) $2' -p127592 -tp127593 -a(S'destroy/2' -p127594 -S'destroy(${1:OE_THIS}, ${2:OE_Options}) $3' -p127595 -tp127596 -a(S'for_consumers/1' -p127597 -S'for_consumers(${1:OE_THIS}) $2' -p127598 -tp127599 -a(S'for_consumers/2' -p127600 -S'for_consumers(${1:OE_THIS}, ${2:OE_Options}) $3' -p127601 -tp127602 -a(S'for_suppliers/1' -p127603 -S'for_suppliers(${1:OE_THIS}) $2' -p127604 -tp127605 -a(S'for_suppliers/2' -p127606 -S'for_suppliers(${1:OE_THIS}, ${2:OE_Options}) $3' -p127607 -tp127608 -a(S'handle_call/3' -p127609 -S'handle_call(${1:Param1}, ${2:OE_From}, ${3:OE_State}) $4' -p127610 -tp127611 -a(S'handle_cast/2' -p127612 -S'handle_cast(${1:Param1}, ${2:OE_State}) $3' -p127613 -tp127614 -a(S'handle_info/2' -p127615 -S'handle_info(${1:Info}, ${2:State}) $3' -p127616 -tp127617 -a(S'init/1' -p127618 -S'init(${1:Env}) $2' -p127619 -tp127620 -a(S'oe_create/0' -p127621 -S'oe_create() $1' -p127622 -tp127623 -a(S'oe_create/1' -p127624 -S'oe_create(${1:Env}) $2' -p127625 -tp127626 -a(S'oe_create/2' -p127627 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p127628 -tp127629 -a(S'oe_create_link/0' -p127630 -S'oe_create_link() $1' -p127631 -tp127632 -a(S'oe_create_link/1' -p127633 -S'oe_create_link(${1:Env}) $2' -p127634 -tp127635 -a(S'oe_create_link/2' -p127636 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p127637 -tp127638 -a(S'oe_get_interface/0' -p127639 -S'oe_get_interface() $1' -p127640 -tp127641 -a(S'oe_is_a/1' -p127642 -S'oe_is_a(${1:Param1}) $2' -p127643 -tp127644 -a(S'oe_tc/1' -p127645 -S'oe_tc(${1:Param1}) $2' -p127646 -tp127647 -a(S'send/2' -p127648 -S'send(${1:OE_THIS}, ${2:Event}) $3' -p127649 -tp127650 -a(S'send/3' -p127651 -S'send(${1:OE_THIS}, ${2:OE_Options}, ${3:Event}) $4' -p127652 -tp127653 -a(S'send_sync/2' -p127654 -S'send_sync(${1:OE_THIS}, ${2:Event}) $3' -p127655 -tp127656 -a(S'send_sync/3' -p127657 -S'send_sync(${1:OE_THIS}, ${2:OE_Options}, ${3:Event}) $4' -p127658 -tp127659 -a(S'terminate/2' -p127660 -S'terminate(${1:Reason}, ${2:State}) $3' -p127661 -tp127662 -a(S'typeID/0' -p127663 -S'typeID() $1' -p127664 -tp127665 -asS'CosPropertyService_PropertyNotFound' -p127666 -(lp127667 -(S'id/0' -p127668 -S'id() $1' -p127669 -tp127670 -a(S'name/0' -p127671 -S'name() $1' -p127672 -tp127673 -a(S'tc/0' -p127674 -S'tc() $1' -p127675 -tp127676 -asS'wxSizeEvent' -p127677 -(lp127678 -(S'getId/1' -p127679 -S'getId(${1:This}) $2' -p127680 -tp127681 -a(S'getSize/1' -p127682 -S'getSize(${1:This}) $2' -p127683 -tp127684 -a(S'getSkipped/1' -p127685 -S'getSkipped(${1:This}) $2' -p127686 -tp127687 -a(S'getTimestamp/1' -p127688 -S'getTimestamp(${1:This}) $2' -p127689 -tp127690 -a(S'isCommandEvent/1' -p127691 -S'isCommandEvent(${1:This}) $2' -p127692 -tp127693 -a(S'parent_class/1' -p127694 -S'parent_class(${1:Param1}) $2' -p127695 -tp127696 -a(S'resumePropagation/2' -p127697 -S'resumePropagation(${1:This}, ${2:PropagationLevel}) $3' -p127698 -tp127699 -a(S'shouldPropagate/1' -p127700 -S'shouldPropagate(${1:This}) $2' -p127701 -tp127702 -a(S'skip/1' -p127703 -S'skip(${1:This}) $2' -p127704 -tp127705 -a(S'skip/2' -p127706 -S'skip(${1:This}, ${2:Options}) $3' -p127707 -tp127708 -a(S'stopPropagation/1' -p127709 -S'stopPropagation(${1:This}) $2' -p127710 -tp127711 -asS'snmp_community_mib' -p127712 -(lp127713 -(S'add_community/5' -p127714 -S'add_community(${1:Idx}, ${2:CommName}, ${3:SecName}, ${4:CtxName}, ${5:TransportTag}) $6' -p127715 -tp127716 -a(S'add_community/6' -p127717 -S'add_community(${1:Idx}, ${2:CommName}, ${3:SecName}, ${4:EngineId}, ${5:CtxName}, ${6:TransportTag}) $7' -p127718 -tp127719 -a(S'check_community/1' -p127720 -S'check_community(${1:X}) $2' -p127721 -tp127722 -a(S'community2vacm/2' -p127723 -S'community2vacm(${1:Community}, ${2:Addr}) $3' -p127724 -tp127725 -a(S'configure/1' -p127726 -S'configure(${1:Dir}) $2' -p127727 -tp127728 -a(S'delete_community/1' -p127729 -S'delete_community(${1:Key}) $2' -p127730 -tp127731 -a(S'get_target_addr_ext_mms/2' -p127732 -S'get_target_addr_ext_mms(${1:TDomain}, ${2:TAddress}) $3' -p127733 -tp127734 -a(S'reconfigure/1' -p127735 -S'reconfigure(${1:Dir}) $2' -p127736 -tp127737 -a(S'snmpCommunityTable/1' -p127738 -S'snmpCommunityTable(${1:Op}) $2' -p127739 -tp127740 -a(S'snmpCommunityTable/3' -p127741 -S'snmpCommunityTable(${1:Op}, ${2:RowIndex}, ${3:Cols}) $4' -p127742 -tp127743 -a(S'snmpTargetAddrExtTable/3' -p127744 -S'snmpTargetAddrExtTable(${1:Param1}, ${2:RowIndex}, ${3:Cols}) $4' -p127745 -tp127746 -a(S'vacm2community/2' -p127747 -S'vacm2community(${1:Vacm}, ${2:Addr}) $3' -p127748 -tp127749 -asS'CosNotifyFilter_FilterNotFound' -p127750 -(lp127751 -(S'id/0' -p127752 -S'id() $1' -p127753 -tp127754 -a(S'name/0' -p127755 -S'name() $1' -p127756 -tp127757 -a(S'tc/0' -p127758 -S'tc() $1' -p127759 -tp127760 -asS'CosEventDomainAdmin_EventDomain_impl' -p127761 -(lp127762 -(S'add_channel/3' -p127763 -S'add_channel(${1:Param1}, ${2:State}, ${3:Channel}) $4' -p127764 -tp127765 -a(S'add_connection/3' -p127766 -S'add_connection() $1' -p127767 -tp127768 -a(S'code_change/3' -p127769 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p127770 -tp127771 -a(S'connect_pull_consumer/3' -p127772 -S'connect_pull_consumer(${1:Param1}, ${2:State}, ${3:PC}) $4' -p127773 -tp127774 -a(S'connect_pull_consumer_with_id/4' -p127775 -S'connect_pull_consumer_with_id(${1:Param1}, ${2:State}, ${3:PC}, ${4:Id}) $5' -p127776 -tp127777 -a(S'connect_pull_supplier/3' -p127778 -S'connect_pull_supplier(${1:Param1}, ${2:State}, ${3:PS}) $4' -p127779 -tp127780 -a(S'connect_pull_supplier_with_id/4' -p127781 -S'connect_pull_supplier_with_id(${1:Param1}, ${2:State}, ${3:PS}, ${4:Id}) $5' -p127782 -tp127783 -a(S'connect_push_consumer/3' -p127784 -S'connect_push_consumer(${1:Param1}, ${2:State}, ${3:PC}) $4' -p127785 -tp127786 -a(S'connect_push_consumer_with_id/4' -p127787 -S'connect_push_consumer_with_id(${1:Param1}, ${2:State}, ${3:PC}, ${4:Id}) $5' -p127788 -tp127789 -a(S'connect_push_supplier/3' -p127790 -S'connect_push_supplier(${1:Param1}, ${2:State}, ${3:PS}) $4' -p127791 -tp127792 -a(S'connect_push_supplier_with_id/4' -p127793 -S'connect_push_supplier_with_id(${1:Param1}, ${2:State}, ${3:PS}, ${4:Id}) $5' -p127794 -tp127795 -a(S'connect_sequence_pull_consumer/3' -p127796 -S'connect_sequence_pull_consumer(${1:Param1}, ${2:State}, ${3:PC}) $4' -p127797 -tp127798 -a(S'connect_sequence_pull_consumer_with_id/4' -p127799 -S'connect_sequence_pull_consumer_with_id(${1:Param1}, ${2:State}, ${3:PC}, ${4:Id}) $5' -p127800 -tp127801 -a(S'connect_sequence_pull_supplier/3' -p127802 -S'connect_sequence_pull_supplier(${1:Param1}, ${2:State}, ${3:PS}) $4' -p127803 -tp127804 -a(S'connect_sequence_pull_supplier_with_id/4' -p127805 -S'connect_sequence_pull_supplier_with_id(${1:Param1}, ${2:State}, ${3:PS}, ${4:Id}) $5' -p127806 -tp127807 -a(S'connect_sequence_push_consumer/3' -p127808 -S'connect_sequence_push_consumer(${1:Param1}, ${2:State}, ${3:PC}) $4' -p127809 -tp127810 -a(S'connect_sequence_push_consumer_with_id/4' -p127811 -S'connect_sequence_push_consumer_with_id(${1:Param1}, ${2:State}, ${3:PC}, ${4:Id}) $5' -p127812 -tp127813 -a(S'connect_sequence_push_supplier/3' -p127814 -S'connect_sequence_push_supplier(${1:Param1}, ${2:State}, ${3:PS}) $4' -p127815 -tp127816 -a(S'connect_sequence_push_supplier_with_id/4' -p127817 -S'connect_sequence_push_supplier_with_id(${1:Param1}, ${2:State}, ${3:PS}, ${4:Id}) $5' -p127818 -tp127819 -a(S'connect_structured_pull_consumer/3' -p127820 -S'connect_structured_pull_consumer(${1:Param1}, ${2:State}, ${3:PC}) $4' -p127821 -tp127822 -a(S'connect_structured_pull_consumer_with_id/4' -p127823 -S'connect_structured_pull_consumer_with_id(${1:Param1}, ${2:State}, ${3:PC}, ${4:Id}) $5' -p127824 -tp127825 -a(S'connect_structured_pull_supplier/3' -p127826 -S'connect_structured_pull_supplier(${1:Param1}, ${2:State}, ${3:PS}) $4' -p127827 -tp127828 -a(S'connect_structured_pull_supplier_with_id/4' -p127829 -S'connect_structured_pull_supplier_with_id(${1:Param1}, ${2:State}, ${3:PS}, ${4:Id}) $5' -p127830 -tp127831 -a(S'connect_structured_push_consumer/3' -p127832 -S'connect_structured_push_consumer(${1:Param1}, ${2:State}, ${3:PC}) $4' -p127833 -tp127834 -a(S'connect_structured_push_consumer_with_id/4' -p127835 -S'connect_structured_push_consumer_with_id(${1:Param1}, ${2:State}, ${3:PC}, ${4:Id}) $5' -p127836 -tp127837 -a(S'connect_structured_push_supplier/3' -p127838 -S'connect_structured_push_supplier(${1:Param1}, ${2:State}, ${3:PS}) $4' -p127839 -tp127840 -a(S'connect_structured_push_supplier_with_id/4' -p127841 -S'connect_structured_push_supplier_with_id(${1:Param1}, ${2:State}, ${3:PS}, ${4:Id}) $5' -p127842 -tp127843 -a(S'destroy/2' -p127844 -S'destroy(${1:Param1}, ${2:State}) $3' -p127845 -tp127846 -a(S'get_admin/2' -p127847 -S'get_admin(${1:Param1}, ${2:State}) $3' -p127848 -tp127849 -a(S'get_all_channels/2' -p127850 -S'get_all_channels(${1:Param1}, ${2:State}) $3' -p127851 -tp127852 -a(S'get_all_connections/2' -p127853 -S'get_all_connections(${1:Param1}, ${2:State}) $3' -p127854 -tp127855 -a(S'get_channel/3' -p127856 -S'get_channel(${1:Param1}, ${2:State}, ${3:Id}) $4' -p127857 -tp127858 -a(S'get_connection/3' -p127859 -S'get_connection(${1:Param1}, ${2:State}, ${3:Id}) $4' -p127860 -tp127861 -a(S'get_cycles/2' -p127862 -S'get_cycles(${1:Param1}, ${2:State}) $3' -p127863 -tp127864 -a(S'get_diamonds/2' -p127865 -S'get_diamonds(${1:Param1}, ${2:State}) $3' -p127866 -tp127867 -a(S'get_offer_channels/3' -p127868 -S'get_offer_channels(${1:Param1}, ${2:State}, ${3:Id}) $4' -p127869 -tp127870 -a(S'get_qos/2' -p127871 -S'get_qos(${1:Param1}, ${2:State}) $3' -p127872 -tp127873 -a(S'get_subscription_channels/3' -p127874 -S'get_subscription_channels(${1:Param1}, ${2:State}, ${3:Id}) $4' -p127875 -tp127876 -a(S'handle_info/2' -p127877 -S'handle_info(${1:Param1}, ${2:State}) $3' -p127878 -tp127879 -a(S'init/1' -p127880 -S'init(${1:Param1}) $2' -p127881 -tp127882 -a(S'remove_channel/3' -p127883 -S'remove_channel(${1:Param1}, ${2:State}, ${3:Id}) $4' -p127884 -tp127885 -a(S'remove_connection/3' -p127886 -S'remove_connection(${1:Param1}, ${2:State}, ${3:Id}) $4' -p127887 -tp127888 -a(S'set_admin/3' -p127889 -S'set_admin(${1:Param1}, ${2:State}, ${3:NewAdmins}) $4' -p127890 -tp127891 -a(S'set_default_consumer_channel/3' -p127892 -S'set_default_consumer_channel(${1:Param1}, ${2:State}, ${3:Id}) $4' -p127893 -tp127894 -a(S'set_default_supplier_channel/3' -p127895 -S'set_default_supplier_channel(${1:Param1}, ${2:State}, ${3:Id}) $4' -p127896 -tp127897 -a(S'set_qos/3' -p127898 -S'set_qos(${1:Param1}, ${2:State}, ${3:NewQoS}) $4' -p127899 -tp127900 -a(S'terminate/2' -p127901 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p127902 -tp127903 -a(S'validate_qos/3' -p127904 -S'validate_qos(${1:Param1}, ${2:State}, ${3:WantedQoS}) $4' -p127905 -tp127906 -asS'xref_base' -p127907 -(lp127908 -(S'add_application/2' -p127909 -S'add_application(${1:State}, ${2:AppDir}) $3' -p127910 -tp127911 -a(S'add_application/3' -p127912 -S'add_application(${1:State}, ${2:AppDir}, ${3:Options}) $4' -p127913 -tp127914 -a(S'add_directory/2' -p127915 -S'add_directory(${1:State}, ${2:Dir}) $3' -p127916 -tp127917 -a(S'add_directory/3' -p127918 -S'add_directory(${1:State}, ${2:Dir}, ${3:Options}) $4' -p127919 -tp127920 -a(S'add_module/2' -p127921 -S'add_module(${1:State}, ${2:File}) $3' -p127922 -tp127923 -a(S'add_module/3' -p127924 -S'add_module(${1:State}, ${2:File}, ${3:Options}) $4' -p127925 -tp127926 -a(S'add_release/2' -p127927 -S'add_release(${1:State}, ${2:RelDir}) $3' -p127928 -tp127929 -a(S'add_release/3' -p127930 -S'add_release(${1:State}, ${2:RelDir}, ${3:Options}) $4' -p127931 -tp127932 -a(S'analysis/1' -p127933 -S'analysis(${1:Analysis}) $2' -p127934 -tp127935 -a(S'analyze/2' -p127936 -S'analyze(${1:State}, ${2:Analysis}) $3' -p127937 -tp127938 -a(S'analyze/3' -p127939 -S'analyze(${1:State}, ${2:Analysis}, ${3:Options}) $4' -p127940 -tp127941 -a(S'delete/1' -p127942 -S'delete(${1:State}) $2' -p127943 -tp127944 -a(S'do_add_application/2' -p127945 -S'do_add_application(${1:S}, ${2:XApp}) $3' -p127946 -tp127947 -a(S'do_add_module/4' -p127948 -S'do_add_module(${1:S}, ${2:XMod}, ${3:Unres}, ${4:Data}) $5' -p127949 -tp127950 -a(S'do_add_release/2' -p127951 -S'do_add_release(${1:S}, ${2:XRel}) $3' -p127952 -tp127953 -a(S'do_remove_module/2' -p127954 -S'do_remove_module(${1:S}, ${2:Module}) $3' -p127955 -tp127956 -a(S'forget/1' -p127957 -S'forget(${1:State}) $2' -p127958 -tp127959 -a(S'forget/2' -p127960 -S'forget(${1:State}, ${2:Variable}) $3' -p127961 -tp127962 -a(S'format_error/1' -p127963 -S'format_error(${1:E}) $2' -p127964 -tp127965 -a(S'get_default/1' -p127966 -S'get_default(${1:State}) $2' -p127967 -tp127968 -a(S'get_default/2' -p127969 -S'get_default(${1:State}, ${2:Option}) $3' -p127970 -tp127971 -a(S'get_library_path/1' -p127972 -S'get_library_path(${1:State}) $2' -p127973 -tp127974 -a(S'info/1' -p127975 -S'info(${1:State}) $2' -p127976 -tp127977 -a(S'info/2' -p127978 -S'info(${1:State}, ${2:What}) $3' -p127979 -tp127980 -a(S'info/3' -p127981 -S'info(${1:State}, ${2:What}, ${3:Qual}) $4' -p127982 -tp127983 -a(S'new/0' -p127984 -S'new() $1' -p127985 -tp127986 -a(S'new/1' -p127987 -S'new(${1:Options}) $2' -p127988 -tp127989 -a(S'q/2' -p127990 -S'q(${1:S}, ${2:Q}) $3' -p127991 -tp127992 -a(S'q/3' -p127993 -S'q(${1:S}, ${2:Q}, ${3:Options}) $4' -p127994 -tp127995 -a(S'remove_application/2' -p127996 -S'remove_application(${1:State}, ${2:Appl}) $3' -p127997 -tp127998 -a(S'remove_module/2' -p127999 -S'remove_module(${1:State}, ${2:Mod}) $3' -p128000 -tp128001 -a(S'remove_release/2' -p128002 -S'remove_release(${1:State}, ${2:Rel}) $3' -p128003 -tp128004 -a(S'replace_application/3' -p128005 -S'replace_application(${1:State}, ${2:Appl}, ${3:Dir}) $4' -p128006 -tp128007 -a(S'replace_application/4' -p128008 -S'replace_application(${1:State}, ${2:Appl}, ${3:Dir}, ${4:Options}) $5' -p128009 -tp128010 -a(S'replace_module/3' -p128011 -S'replace_module(${1:State}, ${2:Module}, ${3:File}) $4' -p128012 -tp128013 -a(S'replace_module/4' -p128014 -S'replace_module(${1:State}, ${2:Module}, ${3:File}, ${4:Options}) $5' -p128015 -tp128016 -a(S'set_default/2' -p128017 -S'set_default(${1:State}, ${2:Options}) $3' -p128018 -tp128019 -a(S'set_default/3' -p128020 -S'set_default(${1:State}, ${2:Option}, ${3:Value}) $4' -p128021 -tp128022 -a(S'set_library_path/2' -p128023 -S'set_library_path(${1:State}, ${2:Path}) $3' -p128024 -tp128025 -a(S'set_library_path/3' -p128026 -S'set_library_path(${1:State}, ${2:Path}, ${3:Options}) $4' -p128027 -tp128028 -a(S'set_up/1' -p128029 -S'set_up(${1:State}) $2' -p128030 -tp128031 -a(S'set_up/2' -p128032 -S'set_up(${1:State}, ${2:Options}) $3' -p128033 -tp128034 -a(S'update/1' -p128035 -S'update(${1:State}) $2' -p128036 -tp128037 -a(S'update/2' -p128038 -S'update(${1:State}, ${2:Options}) $3' -p128039 -tp128040 -a(S'variables/1' -p128041 -S'variables(${1:State}) $2' -p128042 -tp128043 -a(S'variables/2' -p128044 -S'variables(${1:State}, ${2:Options}) $3' -p128045 -tp128046 -asS'icscan' -p128047 -(lp128048 -(S'scan/2' -p128049 -S'scan(${1:G}, ${2:File}) $3' -p128050 -tp128051 -asS'ssh_auth' -p128052 -(lp128053 -(S'handle_userauth_info_request/3' -p128054 -S'handle_userauth_info_request() $1' -p128055 -tp128056 -a(S'handle_userauth_info_response/2' -p128057 -S'handle_userauth_info_response() $1' -p128058 -tp128059 -a(S'handle_userauth_request/3' -p128060 -S'handle_userauth_request() $1' -p128061 -tp128062 -a(S'init_userauth_request_msg/1' -p128063 -S'init_userauth_request_msg(${1:Ssh}) $2' -p128064 -tp128065 -a(S'keyboard_interactive_msg/1' -p128066 -S'keyboard_interactive_msg() $1' -p128067 -tp128068 -a(S'password_msg/1' -p128069 -S'password_msg() $1' -p128070 -tp128071 -a(S'publickey_msg/1' -p128072 -S'publickey_msg() $1' -p128073 -tp128074 -a(S'service_request_msg/1' -p128075 -S'service_request_msg(${1:Ssh}) $2' -p128076 -tp128077 -a(S'userauth_messages/0' -p128078 -S'userauth_messages() $1' -p128079 -tp128080 -a(S'userauth_request_msg/1' -p128081 -S'userauth_request_msg(${1:Ssh}) $2' -p128082 -tp128083 -asS'orber_iiop_socketsup' -p128084 -(lp128085 -(S'init/1' -p128086 -S'init(${1:Param1}) $2' -p128087 -tp128088 -a(S'start/2' -p128089 -S'start(${1:Param1}, ${2:Opts}) $3' -p128090 -tp128091 -a(S'start_accept/3' -p128092 -S'start_accept(${1:Type}, ${2:Listen}, ${3:Ref}) $4' -p128093 -tp128094 -a(S'start_accept/4' -p128095 -S'start_accept(${1:Type}, ${2:Listen}, ${3:Ref}, ${4:ProxyOptions}) $5' -p128096 -tp128097 -a(S'terminate/2' -p128098 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p128099 -tp128100 -asS'math' -p128101 -(lp128102 -(S'pi/0' -p128103 -S'pi() $1' -p128104 -tp128105 -asS'CosNotifyChannelAdmin_ConsumerAdmin_impl' -p128106 -(lp128107 -(S"'_get_MyChannel'/3" -p128108 -S"'_get_MyChannel'(${1:Param1}, ${2:Param2}, ${3:State}) $4" -p128109 -tp128110 -a(S"'_get_MyID'/3" -p128111 -S"'_get_MyID'(${1:Param1}, ${2:Param2}, ${3:State}) $4" -p128112 -tp128113 -a(S"'_get_MyOperator'/3" -p128114 -S"'_get_MyOperator'(${1:Param1}, ${2:Param2}, ${3:State}) $4" -p128115 -tp128116 -a(S"'_get_lifetime_filter'/3" -p128117 -S"'_get_lifetime_filter'(${1:Param1}, ${2:Param2}, ${3:State}) $4" -p128118 -tp128119 -a(S"'_get_priority_filter'/3" -p128120 -S"'_get_priority_filter'(${1:Param1}, ${2:Param2}, ${3:State}) $4" -p128121 -tp128122 -a(S"'_get_pull_suppliers'/3" -p128123 -S"'_get_pull_suppliers'(${1:Param1}, ${2:Param2}, ${3:State}) $4" -p128124 -tp128125 -a(S"'_get_push_suppliers'/3" -p128126 -S"'_get_push_suppliers'(${1:Param1}, ${2:Param2}, ${3:State}) $4" -p128127 -tp128128 -a(S"'_set_lifetime_filter'/4" -p128129 -S"'_set_lifetime_filter'(${1:Param1}, ${2:Param2}, ${3:State}, ${4:LifeFilter}) $5" -p128130 -tp128131 -a(S"'_set_priority_filter'/4" -p128132 -S"'_set_priority_filter'(${1:Param1}, ${2:Param2}, ${3:State}, ${4:PrioFilter}) $5" -p128133 -tp128134 -a(S'add_filter/4' -p128135 -S'add_filter(${1:Param1}, ${2:Param2}, ${3:State}, ${4:Filter}) $5' -p128136 -tp128137 -a(S'callAny/5' -p128138 -S'callAny(${1:Param1}, ${2:OE_FROM}, ${3:State}, ${4:Event}, ${5:Param5}) $6' -p128139 -tp128140 -a(S'callSeq/5' -p128141 -S'callSeq(${1:Param1}, ${2:OE_FROM}, ${3:State}, ${4:Events}, ${5:Param5}) $6' -p128142 -tp128143 -a(S'code_change/3' -p128144 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p128145 -tp128146 -a(S'destroy/3' -p128147 -S'destroy(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p128148 -tp128149 -a(S'get_all_filters/3' -p128150 -S'get_all_filters(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p128151 -tp128152 -a(S'get_filter/4' -p128153 -S'get_filter(${1:Param1}, ${2:Param2}, ${3:State}, ${4:FilterID}) $5' -p128154 -tp128155 -a(S'get_proxy_supplier/4' -p128156 -S'get_proxy_supplier(${1:Param1}, ${2:Param2}, ${3:State}, ${4:Proxy_id}) $5' -p128157 -tp128158 -a(S'get_qos/3' -p128159 -S'get_qos(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p128160 -tp128161 -a(S'handle_info/2' -p128162 -S'handle_info(${1:Info}, ${2:State}) $3' -p128163 -tp128164 -a(S'init/1' -p128165 -S'init(${1:Param1}) $2' -p128166 -tp128167 -a(S'obtain_notification_pull_supplier/4' -p128168 -S'obtain_notification_pull_supplier(${1:OE_THIS}, ${2:Param2}, ${3:State}, ${4:Ctype}) $5' -p128169 -tp128170 -a(S'obtain_notification_push_supplier/4' -p128171 -S'obtain_notification_push_supplier(${1:OE_THIS}, ${2:Param2}, ${3:State}, ${4:Ctype}) $5' -p128172 -tp128173 -a(S'obtain_pull_supplier/3' -p128174 -S'obtain_pull_supplier(${1:OE_THIS}, ${2:Param2}, ${3:State}) $4' -p128175 -tp128176 -a(S'obtain_push_supplier/3' -p128177 -S'obtain_push_supplier(${1:OE_THIS}, ${2:Param2}, ${3:State}) $4' -p128178 -tp128179 -a(S'remove_all_filters/3' -p128180 -S'remove_all_filters(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p128181 -tp128182 -a(S'remove_filter/4' -p128183 -S'remove_filter(${1:Param1}, ${2:Param2}, ${3:State}, ${4:FilterID}) $5' -p128184 -tp128185 -a(S'set_qos/4' -p128186 -S'set_qos(${1:Param1}, ${2:Param2}, ${3:State}, ${4:QoS}) $5' -p128187 -tp128188 -a(S'subscription_change/5' -p128189 -S'subscription_change(${1:Param1}, ${2:Param2}, ${3:State}, ${4:Param4}, ${5:Param5}) $6' -p128190 -tp128191 -a(S'terminate/2' -p128192 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p128193 -tp128194 -a(S'validate_qos/4' -p128195 -S'validate_qos(${1:Param1}, ${2:Param2}, ${3:State}, ${4:Required_qos}) $5' -p128196 -tp128197 -asS'snmp_user_based_sm_mib' -p128198 -(lp128199 -(S'add_user/1' -p128200 -S'add_user(${1:User}) $2' -p128201 -tp128202 -a(S'add_user/13' -p128203 -S'add_user() $1' -p128204 -tp128205 -a(S'check_usm/1' -p128206 -S'check_usm(${1:X}) $2' -p128207 -tp128208 -a(S'configure/1' -p128209 -S'configure(${1:Dir}) $2' -p128210 -tp128211 -a(S'delete_user/1' -p128212 -S'delete_user(${1:Key}) $2' -p128213 -tp128214 -a(S'extract_new_key/3' -p128215 -S'extract_new_key(${1:Hash}, ${2:OldKey}, ${3:KeyChange}) $4' -p128216 -tp128217 -a(S'get_user/2' -p128218 -S'get_user(${1:EngineID}, ${2:UserName}) $3' -p128219 -tp128220 -a(S'get_user_from_security_name/2' -p128221 -S'get_user_from_security_name(${1:EngineID}, ${2:SecName}) $3' -p128222 -tp128223 -a(S'is_engine_id_known/1' -p128224 -S'is_engine_id_known(${1:EngineID}) $2' -p128225 -tp128226 -a(S'mk_key_change/3' -p128227 -S'mk_key_change(${1:Hash}, ${2:OldKey}, ${3:NewKey}) $4' -p128228 -tp128229 -a(S'mk_key_change/5' -p128230 -S'mk_key_change(${1:Alg}, ${2:OldKey}, ${3:NewKey}, ${4:KeyLen}, ${5:Random}) $6' -p128231 -tp128232 -a(S'mk_random/1' -p128233 -S'mk_random() $1' -p128234 -tp128235 -a(S'reconfigure/1' -p128236 -S'reconfigure(${1:Dir}) $2' -p128237 -tp128238 -a(S'table_next/2' -p128239 -S'table_next(${1:Name}, ${2:RestOid}) $3' -p128240 -tp128241 -a(S'usmStatsDecryptionErrors/1' -p128242 -S'usmStatsDecryptionErrors(${1:Param1}) $2' -p128243 -tp128244 -a(S'usmStatsNotInTimeWindows/1' -p128245 -S'usmStatsNotInTimeWindows(${1:Param1}) $2' -p128246 -tp128247 -a(S'usmStatsUnknownEngineIDs/1' -p128248 -S'usmStatsUnknownEngineIDs(${1:Param1}) $2' -p128249 -tp128250 -a(S'usmStatsUnknownUserNames/1' -p128251 -S'usmStatsUnknownUserNames(${1:Param1}) $2' -p128252 -tp128253 -a(S'usmStatsUnsupportedSecLevels/1' -p128254 -S'usmStatsUnsupportedSecLevels(${1:Param1}) $2' -p128255 -tp128256 -a(S'usmStatsWrongDigests/1' -p128257 -S'usmStatsWrongDigests(${1:Param1}) $2' -p128258 -tp128259 -a(S'usmUserSpinLock/1' -p128260 -S'usmUserSpinLock(${1:Param1}) $2' -p128261 -tp128262 -a(S'usmUserSpinLock/2' -p128263 -S'usmUserSpinLock(${1:Param1}, ${2:NewVal}) $3' -p128264 -tp128265 -a(S'usmUserTable/1' -p128266 -S'usmUserTable(${1:Op}) $2' -p128267 -tp128268 -a(S'usmUserTable/3' -p128269 -S'usmUserTable(${1:Op}, ${2:RowIndex}, ${3:Cols}) $4' -p128270 -tp128271 -asS'wxContextMenuEvent' -p128272 -(lp128273 -(S'getClientData/1' -p128274 -S'getClientData(${1:This}) $2' -p128275 -tp128276 -a(S'getExtraLong/1' -p128277 -S'getExtraLong(${1:This}) $2' -p128278 -tp128279 -a(S'getId/1' -p128280 -S'getId(${1:This}) $2' -p128281 -tp128282 -a(S'getInt/1' -p128283 -S'getInt(${1:This}) $2' -p128284 -tp128285 -a(S'getPosition/1' -p128286 -S'getPosition(${1:This}) $2' -p128287 -tp128288 -a(S'getSelection/1' -p128289 -S'getSelection(${1:This}) $2' -p128290 -tp128291 -a(S'getSkipped/1' -p128292 -S'getSkipped(${1:This}) $2' -p128293 -tp128294 -a(S'getString/1' -p128295 -S'getString(${1:This}) $2' -p128296 -tp128297 -a(S'getTimestamp/1' -p128298 -S'getTimestamp(${1:This}) $2' -p128299 -tp128300 -a(S'isChecked/1' -p128301 -S'isChecked(${1:This}) $2' -p128302 -tp128303 -a(S'isCommandEvent/1' -p128304 -S'isCommandEvent(${1:This}) $2' -p128305 -tp128306 -a(S'isSelection/1' -p128307 -S'isSelection(${1:This}) $2' -p128308 -tp128309 -a(S'parent_class/1' -p128310 -S'parent_class(${1:Param1}) $2' -p128311 -tp128312 -a(S'resumePropagation/2' -p128313 -S'resumePropagation(${1:This}, ${2:PropagationLevel}) $3' -p128314 -tp128315 -a(S'setInt/2' -p128316 -S'setInt(${1:This}, ${2:I}) $3' -p128317 -tp128318 -a(S'setPosition/2' -p128319 -S'setPosition(${1:This}, ${2:Pos}) $3' -p128320 -tp128321 -a(S'setString/2' -p128322 -S'setString(${1:This}, ${2:S}) $3' -p128323 -tp128324 -a(S'shouldPropagate/1' -p128325 -S'shouldPropagate(${1:This}) $2' -p128326 -tp128327 -a(S'skip/1' -p128328 -S'skip(${1:This}) $2' -p128329 -tp128330 -a(S'skip/2' -p128331 -S'skip(${1:This}, ${2:Options}) $3' -p128332 -tp128333 -a(S'stopPropagation/1' -p128334 -S'stopPropagation(${1:This}) $2' -p128335 -tp128336 -asS'runtime_tools' -p128337 -(lp128338 -(S'start/2' -p128339 -S'start(${1:Param1}, ${2:AutoModArgs}) $3' -p128340 -tp128341 -a(S'stop/1' -p128342 -S'stop(${1:Param1}) $2' -p128343 -tp128344 -asS'wxBufferedDC' -p128345 -(lp128346 -(S'blit/5' -p128347 -S'blit(${1:This}, ${2:DestPt}, ${3:Sz}, ${4:Source}, ${5:SrcPt}) $6' -p128348 -tp128349 -a(S'blit/6' -p128350 -S'blit(${1:This}, ${2:DestPt}, ${3:Sz}, ${4:Source}, ${5:SrcPt}, ${6:Options}) $7' -p128351 -tp128352 -a(S'calcBoundingBox/3' -p128353 -S'calcBoundingBox(${1:This}, ${2:X}, ${3:Y}) $4' -p128354 -tp128355 -a(S'clear/1' -p128356 -S'clear(${1:This}) $2' -p128357 -tp128358 -a(S'computeScaleAndOrigin/1' -p128359 -S'computeScaleAndOrigin(${1:This}) $2' -p128360 -tp128361 -a(S'crossHair/2' -p128362 -S'crossHair(${1:This}, ${2:Pt}) $3' -p128363 -tp128364 -a(S'destroy/1' -p128365 -S'destroy(${1:This}) $2' -p128366 -tp128367 -a(S'destroyClippingRegion/1' -p128368 -S'destroyClippingRegion(${1:This}) $2' -p128369 -tp128370 -a(S'deviceToLogicalX/2' -p128371 -S'deviceToLogicalX(${1:This}, ${2:X}) $3' -p128372 -tp128373 -a(S'deviceToLogicalXRel/2' -p128374 -S'deviceToLogicalXRel(${1:This}, ${2:X}) $3' -p128375 -tp128376 -a(S'deviceToLogicalY/2' -p128377 -S'deviceToLogicalY(${1:This}, ${2:Y}) $3' -p128378 -tp128379 -a(S'deviceToLogicalYRel/2' -p128380 -S'deviceToLogicalYRel(${1:This}, ${2:Y}) $3' -p128381 -tp128382 -a(S'drawArc/4' -p128383 -S'drawArc(${1:This}, ${2:Pt1}, ${3:Pt2}, ${4:Centre}) $5' -p128384 -tp128385 -a(S'drawBitmap/3' -p128386 -S'drawBitmap(${1:This}, ${2:Bmp}, ${3:Pt}) $4' -p128387 -tp128388 -a(S'drawBitmap/4' -p128389 -S'drawBitmap(${1:This}, ${2:Bmp}, ${3:Pt}, ${4:Options}) $5' -p128390 -tp128391 -a(S'drawCheckMark/2' -p128392 -S'drawCheckMark(${1:This}, ${2:Rect}) $3' -p128393 -tp128394 -a(S'drawCircle/3' -p128395 -S'drawCircle(${1:This}, ${2:Pt}, ${3:Radius}) $4' -p128396 -tp128397 -a(S'drawEllipse/2' -p128398 -S'drawEllipse(${1:This}, ${2:Rect}) $3' -p128399 -tp128400 -a(S'drawEllipse/3' -p128401 -S'drawEllipse(${1:This}, ${2:Pt}, ${3:Sz}) $4' -p128402 -tp128403 -a(S'drawEllipticArc/5' -p128404 -S'drawEllipticArc(${1:This}, ${2:Pt}, ${3:Sz}, ${4:Sa}, ${5:Ea}) $6' -p128405 -tp128406 -a(S'drawIcon/3' -p128407 -S'drawIcon(${1:This}, ${2:Icon}, ${3:Pt}) $4' -p128408 -tp128409 -a(S'drawLabel/3' -p128410 -S'drawLabel(${1:This}, ${2:Text}, ${3:Rect}) $4' -p128411 -tp128412 -a(S'drawLabel/4' -p128413 -S'drawLabel(${1:This}, ${2:Text}, ${3:Rect}, ${4:Options}) $5' -p128414 -tp128415 -a(S'drawLine/3' -p128416 -S'drawLine(${1:This}, ${2:Pt1}, ${3:Pt2}) $4' -p128417 -tp128418 -a(S'drawLines/2' -p128419 -S'drawLines(${1:This}, ${2:Points}) $3' -p128420 -tp128421 -a(S'drawLines/3' -p128422 -S'drawLines(${1:This}, ${2:Points}, ${3:Options}) $4' -p128423 -tp128424 -a(S'drawPoint/2' -p128425 -S'drawPoint(${1:This}, ${2:Pt}) $3' -p128426 -tp128427 -a(S'drawPolygon/2' -p128428 -S'drawPolygon(${1:This}, ${2:Points}) $3' -p128429 -tp128430 -a(S'drawPolygon/3' -p128431 -S'drawPolygon(${1:This}, ${2:Points}, ${3:Options}) $4' -p128432 -tp128433 -a(S'drawRectangle/2' -p128434 -S'drawRectangle(${1:This}, ${2:Rect}) $3' -p128435 -tp128436 -a(S'drawRectangle/3' -p128437 -S'drawRectangle(${1:This}, ${2:Pt}, ${3:Sz}) $4' -p128438 -tp128439 -a(S'drawRotatedText/4' -p128440 -S'drawRotatedText(${1:This}, ${2:Text}, ${3:Pt}, ${4:Angle}) $5' -p128441 -tp128442 -a(S'drawRoundedRectangle/3' -p128443 -S'drawRoundedRectangle(${1:This}, ${2:R}, ${3:Radius}) $4' -p128444 -tp128445 -a(S'drawRoundedRectangle/4' -p128446 -S'drawRoundedRectangle(${1:This}, ${2:Pt}, ${3:Sz}, ${4:Radius}) $5' -p128447 -tp128448 -a(S'drawText/3' -p128449 -S'drawText(${1:This}, ${2:Text}, ${3:Pt}) $4' -p128450 -tp128451 -a(S'endDoc/1' -p128452 -S'endDoc(${1:This}) $2' -p128453 -tp128454 -a(S'endPage/1' -p128455 -S'endPage(${1:This}) $2' -p128456 -tp128457 -a(S'floodFill/3' -p128458 -S'floodFill(${1:This}, ${2:Pt}, ${3:Col}) $4' -p128459 -tp128460 -a(S'floodFill/4' -p128461 -S'floodFill(${1:This}, ${2:Pt}, ${3:Col}, ${4:Options}) $5' -p128462 -tp128463 -a(S'getBackground/1' -p128464 -S'getBackground(${1:This}) $2' -p128465 -tp128466 -a(S'getBackgroundMode/1' -p128467 -S'getBackgroundMode(${1:This}) $2' -p128468 -tp128469 -a(S'getBrush/1' -p128470 -S'getBrush(${1:This}) $2' -p128471 -tp128472 -a(S'getCharHeight/1' -p128473 -S'getCharHeight(${1:This}) $2' -p128474 -tp128475 -a(S'getCharWidth/1' -p128476 -S'getCharWidth(${1:This}) $2' -p128477 -tp128478 -a(S'getClippingBox/1' -p128479 -S'getClippingBox(${1:This}) $2' -p128480 -tp128481 -a(S'getFont/1' -p128482 -S'getFont(${1:This}) $2' -p128483 -tp128484 -a(S'getLayoutDirection/1' -p128485 -S'getLayoutDirection(${1:This}) $2' -p128486 -tp128487 -a(S'getLogicalFunction/1' -p128488 -S'getLogicalFunction(${1:This}) $2' -p128489 -tp128490 -a(S'getMapMode/1' -p128491 -S'getMapMode(${1:This}) $2' -p128492 -tp128493 -a(S'getMultiLineTextExtent/2' -p128494 -S'getMultiLineTextExtent(${1:This}, ${2:String}) $3' -p128495 -tp128496 -a(S'getMultiLineTextExtent/3' -p128497 -S'getMultiLineTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p128498 -tp128499 -a(S'getPPI/1' -p128500 -S'getPPI(${1:This}) $2' -p128501 -tp128502 -a(S'getPartialTextExtents/2' -p128503 -S'getPartialTextExtents(${1:This}, ${2:Text}) $3' -p128504 -tp128505 -a(S'getPen/1' -p128506 -S'getPen(${1:This}) $2' -p128507 -tp128508 -a(S'getPixel/2' -p128509 -S'getPixel(${1:This}, ${2:Pt}) $3' -p128510 -tp128511 -a(S'getSize/1' -p128512 -S'getSize(${1:This}) $2' -p128513 -tp128514 -a(S'getSizeMM/1' -p128515 -S'getSizeMM(${1:This}) $2' -p128516 -tp128517 -a(S'getTextBackground/1' -p128518 -S'getTextBackground(${1:This}) $2' -p128519 -tp128520 -a(S'getTextExtent/2' -p128521 -S'getTextExtent(${1:This}, ${2:String}) $3' -p128522 -tp128523 -a(S'getTextExtent/3' -p128524 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p128525 -tp128526 -a(S'getTextForeground/1' -p128527 -S'getTextForeground(${1:This}) $2' -p128528 -tp128529 -a(S'getUserScale/1' -p128530 -S'getUserScale(${1:This}) $2' -p128531 -tp128532 -a(S'gradientFillConcentric/4' -p128533 -S'gradientFillConcentric(${1:This}, ${2:Rect}, ${3:InitialColour}, ${4:DestColour}) $5' -p128534 -tp128535 -a(S'gradientFillConcentric/5' -p128536 -S'gradientFillConcentric(${1:This}, ${2:Rect}, ${3:InitialColour}, ${4:DestColour}, ${5:CircleCenter}) $6' -p128537 -tp128538 -a(S'gradientFillLinear/4' -p128539 -S'gradientFillLinear(${1:This}, ${2:Rect}, ${3:InitialColour}, ${4:DestColour}) $5' -p128540 -tp128541 -a(S'gradientFillLinear/5' -p128542 -S'gradientFillLinear(${1:This}, ${2:Rect}, ${3:InitialColour}, ${4:DestColour}, ${5:Options}) $6' -p128543 -tp128544 -a(S'init/2' -p128545 -S'init(${1:This}, ${2:Dc}) $3' -p128546 -tp128547 -a(S'init/3' -p128548 -S'init(${1:This}, ${2:Dc}, ${3:Area}) $4' -p128549 -tp128550 -a(S'init/4' -p128551 -S'init(${1:This}, ${2:Dc}, ${3:Area}, ${4:Param4}) $5' -p128552 -tp128553 -a(S'isOk/1' -p128554 -S'isOk(${1:This}) $2' -p128555 -tp128556 -a(S'logicalToDeviceX/2' -p128557 -S'logicalToDeviceX(${1:This}, ${2:X}) $3' -p128558 -tp128559 -a(S'logicalToDeviceXRel/2' -p128560 -S'logicalToDeviceXRel(${1:This}, ${2:X}) $3' -p128561 -tp128562 -a(S'logicalToDeviceY/2' -p128563 -S'logicalToDeviceY(${1:This}, ${2:Y}) $3' -p128564 -tp128565 -a(S'logicalToDeviceYRel/2' -p128566 -S'logicalToDeviceYRel(${1:This}, ${2:Y}) $3' -p128567 -tp128568 -a(S'maxX/1' -p128569 -S'maxX(${1:This}) $2' -p128570 -tp128571 -a(S'maxY/1' -p128572 -S'maxY(${1:This}) $2' -p128573 -tp128574 -a(S'minX/1' -p128575 -S'minX(${1:This}) $2' -p128576 -tp128577 -a(S'minY/1' -p128578 -S'minY(${1:This}) $2' -p128579 -tp128580 -a(S'new/0' -p128581 -S'new() $1' -p128582 -tp128583 -a(S'new/1' -p128584 -S'new(${1:Dc}) $2' -p128585 -tp128586 -a(S'new/2' -p128587 -S'new(${1:Dc}, ${2:Area}) $3' -p128588 -tp128589 -a(S'new/3' -p128590 -S'new(${1:Dc}, ${2:Area}, ${3:Param3}) $4' -p128591 -tp128592 -a(S'parent_class/1' -p128593 -S'parent_class(${1:Param1}) $2' -p128594 -tp128595 -a(S'resetBoundingBox/1' -p128596 -S'resetBoundingBox(${1:This}) $2' -p128597 -tp128598 -a(S'selectObject/2' -p128599 -S'selectObject(${1:This}, ${2:Bmp}) $3' -p128600 -tp128601 -a(S'selectObjectAsSource/2' -p128602 -S'selectObjectAsSource(${1:This}, ${2:Bmp}) $3' -p128603 -tp128604 -a(S'setAxisOrientation/3' -p128605 -S'setAxisOrientation(${1:This}, ${2:XLeftRight}, ${3:YBottomUp}) $4' -p128606 -tp128607 -a(S'setBackground/2' -p128608 -S'setBackground(${1:This}, ${2:Brush}) $3' -p128609 -tp128610 -a(S'setBackgroundMode/2' -p128611 -S'setBackgroundMode(${1:This}, ${2:Mode}) $3' -p128612 -tp128613 -a(S'setBrush/2' -p128614 -S'setBrush(${1:This}, ${2:Brush}) $3' -p128615 -tp128616 -a(S'setClippingRegion/2' -p128617 -S'setClippingRegion(${1:This}, ${2:Region}) $3' -p128618 -tp128619 -a(S'setClippingRegion/3' -p128620 -S'setClippingRegion(${1:This}, ${2:Pt}, ${3:Sz}) $4' -p128621 -tp128622 -a(S'setDeviceOrigin/3' -p128623 -S'setDeviceOrigin(${1:This}, ${2:X}, ${3:Y}) $4' -p128624 -tp128625 -a(S'setFont/2' -p128626 -S'setFont(${1:This}, ${2:Font}) $3' -p128627 -tp128628 -a(S'setLayoutDirection/2' -p128629 -S'setLayoutDirection(${1:This}, ${2:Dir}) $3' -p128630 -tp128631 -a(S'setLogicalFunction/2' -p128632 -S'setLogicalFunction(${1:This}, ${2:Function}) $3' -p128633 -tp128634 -a(S'setMapMode/2' -p128635 -S'setMapMode(${1:This}, ${2:Mode}) $3' -p128636 -tp128637 -a(S'setPalette/2' -p128638 -S'setPalette(${1:This}, ${2:Palette}) $3' -p128639 -tp128640 -a(S'setPen/2' -p128641 -S'setPen(${1:This}, ${2:Pen}) $3' -p128642 -tp128643 -a(S'setTextBackground/2' -p128644 -S'setTextBackground(${1:This}, ${2:Colour}) $3' -p128645 -tp128646 -a(S'setTextForeground/2' -p128647 -S'setTextForeground(${1:This}, ${2:Colour}) $3' -p128648 -tp128649 -a(S'setUserScale/3' -p128650 -S'setUserScale(${1:This}, ${2:X}, ${3:Y}) $4' -p128651 -tp128652 -a(S'startDoc/2' -p128653 -S'startDoc(${1:This}, ${2:Message}) $3' -p128654 -tp128655 -a(S'startPage/1' -p128656 -S'startPage(${1:This}) $2' -p128657 -tp128658 -asS'CosNotification_EventTypeSeq' -p128659 -(lp128660 -(S'id/0' -p128661 -S'id() $1' -p128662 -tp128663 -a(S'name/0' -p128664 -S'name() $1' -p128665 -tp128666 -a(S'tc/0' -p128667 -S'tc() $1' -p128668 -tp128669 -asS'wxAuiNotebookEvent' -p128670 -(lp128671 -(S'allow/1' -p128672 -S'allow(${1:This}) $2' -p128673 -tp128674 -a(S'getClientData/1' -p128675 -S'getClientData(${1:This}) $2' -p128676 -tp128677 -a(S'getDragSource/1' -p128678 -S'getDragSource(${1:This}) $2' -p128679 -tp128680 -a(S'getExtraLong/1' -p128681 -S'getExtraLong(${1:This}) $2' -p128682 -tp128683 -a(S'getId/1' -p128684 -S'getId(${1:This}) $2' -p128685 -tp128686 -a(S'getInt/1' -p128687 -S'getInt(${1:This}) $2' -p128688 -tp128689 -a(S'getOldSelection/1' -p128690 -S'getOldSelection(${1:This}) $2' -p128691 -tp128692 -a(S'getSelection/1' -p128693 -S'getSelection(${1:This}) $2' -p128694 -tp128695 -a(S'getSkipped/1' -p128696 -S'getSkipped(${1:This}) $2' -p128697 -tp128698 -a(S'getString/1' -p128699 -S'getString(${1:This}) $2' -p128700 -tp128701 -a(S'getTimestamp/1' -p128702 -S'getTimestamp(${1:This}) $2' -p128703 -tp128704 -a(S'isAllowed/1' -p128705 -S'isAllowed(${1:This}) $2' -p128706 -tp128707 -a(S'isChecked/1' -p128708 -S'isChecked(${1:This}) $2' -p128709 -tp128710 -a(S'isCommandEvent/1' -p128711 -S'isCommandEvent(${1:This}) $2' -p128712 -tp128713 -a(S'isSelection/1' -p128714 -S'isSelection(${1:This}) $2' -p128715 -tp128716 -a(S'parent_class/1' -p128717 -S'parent_class(${1:Param1}) $2' -p128718 -tp128719 -a(S'resumePropagation/2' -p128720 -S'resumePropagation(${1:This}, ${2:PropagationLevel}) $3' -p128721 -tp128722 -a(S'setDragSource/2' -p128723 -S'setDragSource(${1:This}, ${2:S}) $3' -p128724 -tp128725 -a(S'setInt/2' -p128726 -S'setInt(${1:This}, ${2:I}) $3' -p128727 -tp128728 -a(S'setOldSelection/2' -p128729 -S'setOldSelection(${1:This}, ${2:S}) $3' -p128730 -tp128731 -a(S'setSelection/2' -p128732 -S'setSelection(${1:This}, ${2:S}) $3' -p128733 -tp128734 -a(S'setString/2' -p128735 -S'setString(${1:This}, ${2:S}) $3' -p128736 -tp128737 -a(S'shouldPropagate/1' -p128738 -S'shouldPropagate(${1:This}) $2' -p128739 -tp128740 -a(S'skip/1' -p128741 -S'skip(${1:This}) $2' -p128742 -tp128743 -a(S'skip/2' -p128744 -S'skip(${1:This}, ${2:Options}) $3' -p128745 -tp128746 -a(S'stopPropagation/1' -p128747 -S'stopPropagation(${1:This}) $2' -p128748 -tp128749 -a(S'veto/1' -p128750 -S'veto(${1:This}) $2' -p128751 -tp128752 -asS'orber_iiop_tracer_silent' -p128753 -(lp128754 -(S'closed_in_connection/1' -p128755 -S'closed_in_connection(${1:Arg}) $2' -p128756 -tp128757 -a(S'closed_out_connection/1' -p128758 -S'closed_out_connection(${1:Arg}) $2' -p128759 -tp128760 -a(S'in_reply/6' -p128761 -S'in_reply(${1:Ref}, ${2:Param2}, ${3:Param3}, ${4:Op}, ${5:Reply}, ${6:Args}) $7' -p128762 -tp128763 -a(S'in_reply_encoded/6' -p128764 -S'in_reply_encoded(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}, ${5:Bin}, ${6:Args}) $7' -p128765 -tp128766 -a(S'in_request/6' -p128767 -S'in_request(${1:Ref}, ${2:Param2}, ${3:Param3}, ${4:Op}, ${5:Params}, ${6:Args}) $7' -p128768 -tp128769 -a(S'in_request_encoded/6' -p128770 -S'in_request_encoded(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}, ${5:Bin}, ${6:Args}) $7' -p128771 -tp128772 -a(S'new_in_connection/5' -p128773 -S'new_in_connection(${1:Param1}, ${2:PHost}, ${3:PPort}, ${4:SHost}, ${5:SPort}) $6' -p128774 -tp128775 -a(S'new_out_connection/5' -p128776 -S'new_out_connection(${1:Param1}, ${2:PHost}, ${3:PPort}, ${4:SHost}, ${5:SPort}) $6' -p128777 -tp128778 -a(S'out_reply/6' -p128779 -S'out_reply(${1:Ref}, ${2:Param2}, ${3:Param3}, ${4:Op}, ${5:Reply}, ${6:Args}) $7' -p128780 -tp128781 -a(S'out_reply_encoded/6' -p128782 -S'out_reply_encoded(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}, ${5:Bin}, ${6:Args}) $7' -p128783 -tp128784 -a(S'out_request/6' -p128785 -S'out_request(${1:Ref}, ${2:Param2}, ${3:Param3}, ${4:Op}, ${5:Params}, ${6:Args}) $7' -p128786 -tp128787 -a(S'out_request_encoded/6' -p128788 -S'out_request_encoded(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}, ${5:Bin}, ${6:Args}) $7' -p128789 -tp128790 -asS'wxNotebook' -p128791 -(lp128792 -(S'addPage/3' -p128793 -S'addPage(${1:This}, ${2:Page}, ${3:Text}) $4' -p128794 -tp128795 -a(S'addPage/4' -p128796 -S'addPage(${1:This}, ${2:Page}, ${3:Text}, ${4:Param4}) $5' -p128797 -tp128798 -a(S'advanceSelection/1' -p128799 -S'advanceSelection(${1:This}) $2' -p128800 -tp128801 -a(S'advanceSelection/2' -p128802 -S'advanceSelection(${1:This}, ${2:Param2}) $3' -p128803 -tp128804 -a(S'assignImageList/2' -p128805 -S'assignImageList(${1:This}, ${2:ImageList}) $3' -p128806 -tp128807 -a(S'cacheBestSize/2' -p128808 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p128809 -tp128810 -a(S'captureMouse/1' -p128811 -S'captureMouse(${1:This}) $2' -p128812 -tp128813 -a(S'center/1' -p128814 -S'center(${1:This}) $2' -p128815 -tp128816 -a(S'center/2' -p128817 -S'center(${1:This}, ${2:Options}) $3' -p128818 -tp128819 -a(S'centerOnParent/1' -p128820 -S'centerOnParent(${1:This}) $2' -p128821 -tp128822 -a(S'centerOnParent/2' -p128823 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p128824 -tp128825 -a(S'centre/1' -p128826 -S'centre(${1:This}) $2' -p128827 -tp128828 -a(S'centre/2' -p128829 -S'centre(${1:This}, ${2:Options}) $3' -p128830 -tp128831 -a(S'centreOnParent/1' -p128832 -S'centreOnParent(${1:This}) $2' -p128833 -tp128834 -a(S'centreOnParent/2' -p128835 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p128836 -tp128837 -a(S'changeSelection/2' -p128838 -S'changeSelection(${1:This}, ${2:NPage}) $3' -p128839 -tp128840 -a(S'clearBackground/1' -p128841 -S'clearBackground(${1:This}) $2' -p128842 -tp128843 -a(S'clientToScreen/2' -p128844 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p128845 -tp128846 -a(S'clientToScreen/3' -p128847 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p128848 -tp128849 -a(S'close/1' -p128850 -S'close(${1:This}) $2' -p128851 -tp128852 -a(S'close/2' -p128853 -S'close(${1:This}, ${2:Options}) $3' -p128854 -tp128855 -a(S'connect/2' -p128856 -S'connect(${1:This}, ${2:EventType}) $3' -p128857 -tp128858 -a(S'connect/3' -p128859 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p128860 -tp128861 -a(S'convertDialogToPixels/2' -p128862 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p128863 -tp128864 -a(S'convertPixelsToDialog/2' -p128865 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p128866 -tp128867 -a(S'create/3' -p128868 -S'create(${1:This}, ${2:Parent}, ${3:Id}) $4' -p128869 -tp128870 -a(S'create/4' -p128871 -S'create(${1:This}, ${2:Parent}, ${3:Id}, ${4:Param4}) $5' -p128872 -tp128873 -a(S'deleteAllPages/1' -p128874 -S'deleteAllPages(${1:This}) $2' -p128875 -tp128876 -a(S'deletePage/2' -p128877 -S'deletePage(${1:This}, ${2:NPage}) $3' -p128878 -tp128879 -a(S'destroy/1' -p128880 -S'destroy(${1:This}) $2' -p128881 -tp128882 -a(S'destroyChildren/1' -p128883 -S'destroyChildren(${1:This}) $2' -p128884 -tp128885 -a(S'disable/1' -p128886 -S'disable(${1:This}) $2' -p128887 -tp128888 -a(S'disconnect/1' -p128889 -S'disconnect(${1:This}) $2' -p128890 -tp128891 -a(S'disconnect/2' -p128892 -S'disconnect(${1:This}, ${2:EventType}) $3' -p128893 -tp128894 -a(S'disconnect/3' -p128895 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p128896 -tp128897 -a(S'enable/1' -p128898 -S'enable(${1:This}) $2' -p128899 -tp128900 -a(S'enable/2' -p128901 -S'enable(${1:This}, ${2:Options}) $3' -p128902 -tp128903 -a(S'findWindow/2' -p128904 -S'findWindow(${1:This}, ${2:Winid}) $3' -p128905 -tp128906 -a(S'fit/1' -p128907 -S'fit(${1:This}) $2' -p128908 -tp128909 -a(S'fitInside/1' -p128910 -S'fitInside(${1:This}) $2' -p128911 -tp128912 -a(S'freeze/1' -p128913 -S'freeze(${1:This}) $2' -p128914 -tp128915 -a(S'getAcceleratorTable/1' -p128916 -S'getAcceleratorTable(${1:This}) $2' -p128917 -tp128918 -a(S'getBackgroundColour/1' -p128919 -S'getBackgroundColour(${1:This}) $2' -p128920 -tp128921 -a(S'getBackgroundStyle/1' -p128922 -S'getBackgroundStyle(${1:This}) $2' -p128923 -tp128924 -a(S'getBestSize/1' -p128925 -S'getBestSize(${1:This}) $2' -p128926 -tp128927 -a(S'getCaret/1' -p128928 -S'getCaret(${1:This}) $2' -p128929 -tp128930 -a(S'getCharHeight/1' -p128931 -S'getCharHeight(${1:This}) $2' -p128932 -tp128933 -a(S'getCharWidth/1' -p128934 -S'getCharWidth(${1:This}) $2' -p128935 -tp128936 -a(S'getChildren/1' -p128937 -S'getChildren(${1:This}) $2' -p128938 -tp128939 -a(S'getClientSize/1' -p128940 -S'getClientSize(${1:This}) $2' -p128941 -tp128942 -a(S'getContainingSizer/1' -p128943 -S'getContainingSizer(${1:This}) $2' -p128944 -tp128945 -a(S'getCurrentPage/1' -p128946 -S'getCurrentPage(${1:This}) $2' -p128947 -tp128948 -a(S'getCursor/1' -p128949 -S'getCursor(${1:This}) $2' -p128950 -tp128951 -a(S'getDropTarget/1' -p128952 -S'getDropTarget(${1:This}) $2' -p128953 -tp128954 -a(S'getEventHandler/1' -p128955 -S'getEventHandler(${1:This}) $2' -p128956 -tp128957 -a(S'getExtraStyle/1' -p128958 -S'getExtraStyle(${1:This}) $2' -p128959 -tp128960 -a(S'getFont/1' -p128961 -S'getFont(${1:This}) $2' -p128962 -tp128963 -a(S'getForegroundColour/1' -p128964 -S'getForegroundColour(${1:This}) $2' -p128965 -tp128966 -a(S'getGrandParent/1' -p128967 -S'getGrandParent(${1:This}) $2' -p128968 -tp128969 -a(S'getHandle/1' -p128970 -S'getHandle(${1:This}) $2' -p128971 -tp128972 -a(S'getHelpText/1' -p128973 -S'getHelpText(${1:This}) $2' -p128974 -tp128975 -a(S'getId/1' -p128976 -S'getId(${1:This}) $2' -p128977 -tp128978 -a(S'getImageList/1' -p128979 -S'getImageList(${1:This}) $2' -p128980 -tp128981 -a(S'getLabel/1' -p128982 -S'getLabel(${1:This}) $2' -p128983 -tp128984 -a(S'getMaxSize/1' -p128985 -S'getMaxSize(${1:This}) $2' -p128986 -tp128987 -a(S'getMinSize/1' -p128988 -S'getMinSize(${1:This}) $2' -p128989 -tp128990 -a(S'getName/1' -p128991 -S'getName(${1:This}) $2' -p128992 -tp128993 -a(S'getPage/2' -p128994 -S'getPage(${1:This}, ${2:N}) $3' -p128995 -tp128996 -a(S'getPageCount/1' -p128997 -S'getPageCount(${1:This}) $2' -p128998 -tp128999 -a(S'getPageImage/2' -p129000 -S'getPageImage(${1:This}, ${2:NPage}) $3' -p129001 -tp129002 -a(S'getPageText/2' -p129003 -S'getPageText(${1:This}, ${2:NPage}) $3' -p129004 -tp129005 -a(S'getParent/1' -p129006 -S'getParent(${1:This}) $2' -p129007 -tp129008 -a(S'getPosition/1' -p129009 -S'getPosition(${1:This}) $2' -p129010 -tp129011 -a(S'getRect/1' -p129012 -S'getRect(${1:This}) $2' -p129013 -tp129014 -a(S'getRowCount/1' -p129015 -S'getRowCount(${1:This}) $2' -p129016 -tp129017 -a(S'getScreenPosition/1' -p129018 -S'getScreenPosition(${1:This}) $2' -p129019 -tp129020 -a(S'getScreenRect/1' -p129021 -S'getScreenRect(${1:This}) $2' -p129022 -tp129023 -a(S'getScrollPos/2' -p129024 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p129025 -tp129026 -a(S'getScrollRange/2' -p129027 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p129028 -tp129029 -a(S'getScrollThumb/2' -p129030 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p129031 -tp129032 -a(S'getSelection/1' -p129033 -S'getSelection(${1:This}) $2' -p129034 -tp129035 -a(S'getSize/1' -p129036 -S'getSize(${1:This}) $2' -p129037 -tp129038 -a(S'getSizer/1' -p129039 -S'getSizer(${1:This}) $2' -p129040 -tp129041 -a(S'getTextExtent/2' -p129042 -S'getTextExtent(${1:This}, ${2:String}) $3' -p129043 -tp129044 -a(S'getTextExtent/3' -p129045 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p129046 -tp129047 -a(S'getThemeBackgroundColour/1' -p129048 -S'getThemeBackgroundColour(${1:This}) $2' -p129049 -tp129050 -a(S'getToolTip/1' -p129051 -S'getToolTip(${1:This}) $2' -p129052 -tp129053 -a(S'getUpdateRegion/1' -p129054 -S'getUpdateRegion(${1:This}) $2' -p129055 -tp129056 -a(S'getVirtualSize/1' -p129057 -S'getVirtualSize(${1:This}) $2' -p129058 -tp129059 -a(S'getWindowStyleFlag/1' -p129060 -S'getWindowStyleFlag(${1:This}) $2' -p129061 -tp129062 -a(S'getWindowVariant/1' -p129063 -S'getWindowVariant(${1:This}) $2' -p129064 -tp129065 -a(S'hasCapture/1' -p129066 -S'hasCapture(${1:This}) $2' -p129067 -tp129068 -a(S'hasScrollbar/2' -p129069 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p129070 -tp129071 -a(S'hasTransparentBackground/1' -p129072 -S'hasTransparentBackground(${1:This}) $2' -p129073 -tp129074 -a(S'hide/1' -p129075 -S'hide(${1:This}) $2' -p129076 -tp129077 -a(S'hitTest/2' -p129078 -S'hitTest(${1:This}, ${2:Pt}) $3' -p129079 -tp129080 -a(S'inheritAttributes/1' -p129081 -S'inheritAttributes(${1:This}) $2' -p129082 -tp129083 -a(S'initDialog/1' -p129084 -S'initDialog(${1:This}) $2' -p129085 -tp129086 -a(S'insertPage/4' -p129087 -S'insertPage(${1:This}, ${2:Position}, ${3:Win}, ${4:StrText}) $5' -p129088 -tp129089 -a(S'insertPage/5' -p129090 -S'insertPage(${1:This}, ${2:Position}, ${3:Win}, ${4:StrText}, ${5:Param5}) $6' -p129091 -tp129092 -a(S'invalidateBestSize/1' -p129093 -S'invalidateBestSize(${1:This}) $2' -p129094 -tp129095 -a(S'isEnabled/1' -p129096 -S'isEnabled(${1:This}) $2' -p129097 -tp129098 -a(S'isExposed/2' -p129099 -S'isExposed(${1:This}, ${2:Pt}) $3' -p129100 -tp129101 -a(S'isExposed/3' -p129102 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p129103 -tp129104 -a(S'isExposed/5' -p129105 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p129106 -tp129107 -a(S'isRetained/1' -p129108 -S'isRetained(${1:This}) $2' -p129109 -tp129110 -a(S'isShown/1' -p129111 -S'isShown(${1:This}) $2' -p129112 -tp129113 -a(S'isTopLevel/1' -p129114 -S'isTopLevel(${1:This}) $2' -p129115 -tp129116 -a(S'layout/1' -p129117 -S'layout(${1:This}) $2' -p129118 -tp129119 -a(S'lineDown/1' -p129120 -S'lineDown(${1:This}) $2' -p129121 -tp129122 -a(S'lineUp/1' -p129123 -S'lineUp(${1:This}) $2' -p129124 -tp129125 -a(S'lower/1' -p129126 -S'lower(${1:This}) $2' -p129127 -tp129128 -a(S'makeModal/1' -p129129 -S'makeModal(${1:This}) $2' -p129130 -tp129131 -a(S'makeModal/2' -p129132 -S'makeModal(${1:This}, ${2:Options}) $3' -p129133 -tp129134 -a(S'move/2' -p129135 -S'move(${1:This}, ${2:Pt}) $3' -p129136 -tp129137 -a(S'move/3' -p129138 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p129139 -tp129140 -a(S'move/4' -p129141 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p129142 -tp129143 -a(S'moveAfterInTabOrder/2' -p129144 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p129145 -tp129146 -a(S'moveBeforeInTabOrder/2' -p129147 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p129148 -tp129149 -a(S'navigate/1' -p129150 -S'navigate(${1:This}) $2' -p129151 -tp129152 -a(S'navigate/2' -p129153 -S'navigate(${1:This}, ${2:Options}) $3' -p129154 -tp129155 -a(S'new/0' -p129156 -S'new() $1' -p129157 -tp129158 -a(S'new/2' -p129159 -S'new(${1:Parent}, ${2:Winid}) $3' -p129160 -tp129161 -a(S'new/3' -p129162 -S'new(${1:Parent}, ${2:Winid}, ${3:Param3}) $4' -p129163 -tp129164 -a(S'pageDown/1' -p129165 -S'pageDown(${1:This}) $2' -p129166 -tp129167 -a(S'pageUp/1' -p129168 -S'pageUp(${1:This}) $2' -p129169 -tp129170 -a(S'parent_class/1' -p129171 -S'parent_class(${1:Param1}) $2' -p129172 -tp129173 -a(S'popEventHandler/1' -p129174 -S'popEventHandler(${1:This}) $2' -p129175 -tp129176 -a(S'popEventHandler/2' -p129177 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p129178 -tp129179 -a(S'popupMenu/2' -p129180 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p129181 -tp129182 -a(S'popupMenu/3' -p129183 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p129184 -tp129185 -a(S'popupMenu/4' -p129186 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p129187 -tp129188 -a(S'raise/1' -p129189 -S'raise(${1:This}) $2' -p129190 -tp129191 -a(S'refresh/1' -p129192 -S'refresh(${1:This}) $2' -p129193 -tp129194 -a(S'refresh/2' -p129195 -S'refresh(${1:This}, ${2:Options}) $3' -p129196 -tp129197 -a(S'refreshRect/2' -p129198 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p129199 -tp129200 -a(S'refreshRect/3' -p129201 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p129202 -tp129203 -a(S'releaseMouse/1' -p129204 -S'releaseMouse(${1:This}) $2' -p129205 -tp129206 -a(S'removeChild/2' -p129207 -S'removeChild(${1:This}, ${2:Child}) $3' -p129208 -tp129209 -a(S'removePage/2' -p129210 -S'removePage(${1:This}, ${2:NPage}) $3' -p129211 -tp129212 -a(S'reparent/2' -p129213 -S'reparent(${1:This}, ${2:NewParent}) $3' -p129214 -tp129215 -a(S'screenToClient/1' -p129216 -S'screenToClient(${1:This}) $2' -p129217 -tp129218 -a(S'screenToClient/2' -p129219 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p129220 -tp129221 -a(S'scrollLines/2' -p129222 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p129223 -tp129224 -a(S'scrollPages/2' -p129225 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p129226 -tp129227 -a(S'scrollWindow/3' -p129228 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p129229 -tp129230 -a(S'scrollWindow/4' -p129231 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p129232 -tp129233 -a(S'setAcceleratorTable/2' -p129234 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p129235 -tp129236 -a(S'setAutoLayout/2' -p129237 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p129238 -tp129239 -a(S'setBackgroundColour/2' -p129240 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p129241 -tp129242 -a(S'setBackgroundStyle/2' -p129243 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p129244 -tp129245 -a(S'setCaret/2' -p129246 -S'setCaret(${1:This}, ${2:Caret}) $3' -p129247 -tp129248 -a(S'setClientSize/2' -p129249 -S'setClientSize(${1:This}, ${2:Size}) $3' -p129250 -tp129251 -a(S'setClientSize/3' -p129252 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p129253 -tp129254 -a(S'setContainingSizer/2' -p129255 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p129256 -tp129257 -a(S'setCursor/2' -p129258 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p129259 -tp129260 -a(S'setDropTarget/2' -p129261 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p129262 -tp129263 -a(S'setExtraStyle/2' -p129264 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p129265 -tp129266 -a(S'setFocus/1' -p129267 -S'setFocus(${1:This}) $2' -p129268 -tp129269 -a(S'setFocusFromKbd/1' -p129270 -S'setFocusFromKbd(${1:This}) $2' -p129271 -tp129272 -a(S'setFont/2' -p129273 -S'setFont(${1:This}, ${2:Font}) $3' -p129274 -tp129275 -a(S'setForegroundColour/2' -p129276 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p129277 -tp129278 -a(S'setHelpText/2' -p129279 -S'setHelpText(${1:This}, ${2:Text}) $3' -p129280 -tp129281 -a(S'setId/2' -p129282 -S'setId(${1:This}, ${2:Winid}) $3' -p129283 -tp129284 -a(S'setImageList/2' -p129285 -S'setImageList(${1:This}, ${2:ImageList}) $3' -p129286 -tp129287 -a(S'setLabel/2' -p129288 -S'setLabel(${1:This}, ${2:Label}) $3' -p129289 -tp129290 -a(S'setMaxSize/2' -p129291 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p129292 -tp129293 -a(S'setMinSize/2' -p129294 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p129295 -tp129296 -a(S'setName/2' -p129297 -S'setName(${1:This}, ${2:Name}) $3' -p129298 -tp129299 -a(S'setOwnBackgroundColour/2' -p129300 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p129301 -tp129302 -a(S'setOwnFont/2' -p129303 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p129304 -tp129305 -a(S'setOwnForegroundColour/2' -p129306 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p129307 -tp129308 -a(S'setPadding/2' -p129309 -S'setPadding(${1:This}, ${2:Padding}) $3' -p129310 -tp129311 -a(S'setPageImage/3' -p129312 -S'setPageImage(${1:This}, ${2:NPage}, ${3:NImage}) $4' -p129313 -tp129314 -a(S'setPageSize/2' -p129315 -S'setPageSize(${1:This}, ${2:Size}) $3' -p129316 -tp129317 -a(S'setPageText/3' -p129318 -S'setPageText(${1:This}, ${2:NPage}, ${3:StrText}) $4' -p129319 -tp129320 -a(S'setPalette/2' -p129321 -S'setPalette(${1:This}, ${2:Pal}) $3' -p129322 -tp129323 -a(S'setScrollPos/3' -p129324 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p129325 -tp129326 -a(S'setScrollPos/4' -p129327 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p129328 -tp129329 -a(S'setScrollbar/5' -p129330 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p129331 -tp129332 -a(S'setScrollbar/6' -p129333 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p129334 -tp129335 -a(S'setSelection/2' -p129336 -S'setSelection(${1:This}, ${2:NPage}) $3' -p129337 -tp129338 -a(S'setSize/2' -p129339 -S'setSize(${1:This}, ${2:Rect}) $3' -p129340 -tp129341 -a(S'setSize/3' -p129342 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p129343 -tp129344 -a(S'setSize/5' -p129345 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p129346 -tp129347 -a(S'setSize/6' -p129348 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p129349 -tp129350 -a(S'setSizeHints/2' -p129351 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p129352 -tp129353 -a(S'setSizeHints/3' -p129354 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p129355 -tp129356 -a(S'setSizeHints/4' -p129357 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p129358 -tp129359 -a(S'setSizer/2' -p129360 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p129361 -tp129362 -a(S'setSizer/3' -p129363 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p129364 -tp129365 -a(S'setSizerAndFit/2' -p129366 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p129367 -tp129368 -a(S'setSizerAndFit/3' -p129369 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p129370 -tp129371 -a(S'setThemeEnabled/2' -p129372 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p129373 -tp129374 -a(S'setToolTip/2' -p129375 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p129376 -tp129377 -a(S'setVirtualSize/2' -p129378 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p129379 -tp129380 -a(S'setVirtualSize/3' -p129381 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p129382 -tp129383 -a(S'setVirtualSizeHints/2' -p129384 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p129385 -tp129386 -a(S'setVirtualSizeHints/3' -p129387 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p129388 -tp129389 -a(S'setVirtualSizeHints/4' -p129390 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p129391 -tp129392 -a(S'setWindowStyle/2' -p129393 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p129394 -tp129395 -a(S'setWindowStyleFlag/2' -p129396 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p129397 -tp129398 -a(S'setWindowVariant/2' -p129399 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p129400 -tp129401 -a(S'shouldInheritColours/1' -p129402 -S'shouldInheritColours(${1:This}) $2' -p129403 -tp129404 -a(S'show/1' -p129405 -S'show(${1:This}) $2' -p129406 -tp129407 -a(S'show/2' -p129408 -S'show(${1:This}, ${2:Options}) $3' -p129409 -tp129410 -a(S'thaw/1' -p129411 -S'thaw(${1:This}) $2' -p129412 -tp129413 -a(S'transferDataFromWindow/1' -p129414 -S'transferDataFromWindow(${1:This}) $2' -p129415 -tp129416 -a(S'transferDataToWindow/1' -p129417 -S'transferDataToWindow(${1:This}) $2' -p129418 -tp129419 -a(S'update/1' -p129420 -S'update(${1:This}) $2' -p129421 -tp129422 -a(S'updateWindowUI/1' -p129423 -S'updateWindowUI(${1:This}) $2' -p129424 -tp129425 -a(S'updateWindowUI/2' -p129426 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p129427 -tp129428 -a(S'validate/1' -p129429 -S'validate(${1:This}) $2' -p129430 -tp129431 -a(S'warpPointer/3' -p129432 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p129433 -tp129434 -asS'timer' -p129435 -(lp129436 -(S'apply_after/4' -p129437 -S'apply_after(${1:Time}, ${2:Module}, ${3:Function}, ${4:Arguments}) $5' -p129438 -tp129439 -a(S'apply_interval/4' -p129440 -S'apply_interval(${1:Time}, ${2:Module}, ${3:Function}, ${4:Arguments}) $5' -p129441 -tp129442 -a(S'cancel/1' -p129443 -S'cancel(${1:TRef}) $2' -p129444 -tp129445 -a(S'code_change/3' -p129446 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p129447 -tp129448 -a(S'exit_after/2' -p129449 -S'exit_after(${1:Time}, ${2:Reason1}) $3' -p129450 -tp129451 -a(S'exit_after/3' -p129452 -S'exit_after(${1:Time}, ${2:Pid}, ${3:Reason1}) $4' -p129453 -tp129454 -a(S'get_status/0' -p129455 -S'get_status() $1' -p129456 -tp129457 -a(S'handle_call/3' -p129458 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:Ts}) $4' -p129459 -tp129460 -a(S'handle_cast/2' -p129461 -S'handle_cast(${1:Param1}, ${2:Ts}) $3' -p129462 -tp129463 -a(S'handle_info/2' -p129464 -S'handle_info(${1:Param1}, ${2:Ts}) $3' -p129465 -tp129466 -a(S'hms/3' -p129467 -S'hms(${1:Hours}, ${2:Minutes}, ${3:Seconds}) $4' -p129468 -tp129469 -a(S'hours/1' -p129470 -S'hours(${1:Hours}) $2' -p129471 -tp129472 -a(S'init/1' -p129473 -S'init(${1:Param1}) $2' -p129474 -tp129475 -a(S'kill_after/1' -p129476 -S'kill_after(${1:Time}) $2' -p129477 -tp129478 -a(S'kill_after/2' -p129479 -S'kill_after(${1:Time}, ${2:Pid}) $3' -p129480 -tp129481 -a(S'minutes/1' -p129482 -S'minutes(${1:Minutes}) $2' -p129483 -tp129484 -a(S'now_diff/2' -p129485 -S'now_diff(${1:T2}, ${2:T1}) $3' -p129486 -tp129487 -a(S'seconds/1' -p129488 -S'seconds(${1:Seconds}) $2' -p129489 -tp129490 -a(S'send_after/2' -p129491 -S'send_after(${1:Time}, ${2:Message}) $3' -p129492 -tp129493 -a(S'send_after/3' -p129494 -S'send_after(${1:Time}, ${2:Pid}, ${3:Message}) $4' -p129495 -tp129496 -a(S'send_interval/2' -p129497 -S'send_interval(${1:Time}, ${2:Message}) $3' -p129498 -tp129499 -a(S'send_interval/3' -p129500 -S'send_interval(${1:Time}, ${2:Pid}, ${3:Message}) $4' -p129501 -tp129502 -a(S'sleep/1' -p129503 -S'sleep(${1:Time}) $2' -p129504 -tp129505 -a(S'start/0' -p129506 -S'start() $1' -p129507 -tp129508 -a(S'start_link/0' -p129509 -S'start_link() $1' -p129510 -tp129511 -a(S'tc/1' -p129512 -S'tc(${1:Fun}) $2' -p129513 -tp129514 -a(S'tc/2' -p129515 -S'tc(${1:Fun}, ${2:Arguments}) $3' -p129516 -tp129517 -a(S'tc/3' -p129518 -S'tc(${1:Module}, ${2:Function}, ${3:Arguments}) $4' -p129519 -tp129520 -a(S'terminate/2' -p129521 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p129522 -tp129523 -asS'orber_tc' -p129524 -(lp129525 -(S'abstract_interface/2' -p129526 -S'abstract_interface(${1:RepId}, ${2:Name}) $3' -p129527 -tp129528 -a(S'alias/3' -p129529 -S'alias(${1:Id}, ${2:Name}, ${3:TC}) $4' -p129530 -tp129531 -a(S'any/0' -p129532 -S'any() $1' -p129533 -tp129534 -a(S'array/2' -p129535 -S'array(${1:ElemTC}, ${2:Length}) $3' -p129536 -tp129537 -a(S'boolean/0' -p129538 -S'boolean() $1' -p129539 -tp129540 -a(S'char/0' -p129541 -S'char() $1' -p129542 -tp129543 -a(S'check_tc/1' -p129544 -S'check_tc(${1:Param1}) $2' -p129545 -tp129546 -a(S'double/0' -p129547 -S'double() $1' -p129548 -tp129549 -a(S'enum/3' -p129550 -S'enum(${1:Id}, ${2:Name}, ${3:ElementList}) $4' -p129551 -tp129552 -a(S'exception/3' -p129553 -S'exception(${1:Id}, ${2:Name}, ${3:ElementList}) $4' -p129554 -tp129555 -a(S'fixed/2' -p129556 -S'fixed(${1:Digits}, ${2:Scale}) $3' -p129557 -tp129558 -a(S'float/0' -p129559 -S'float() $1' -p129560 -tp129561 -a(S'get_tc/1' -p129562 -S'get_tc(${1:T}) $2' -p129563 -tp129564 -a(S'long/0' -p129565 -S'long() $1' -p129566 -tp129567 -a(S'long_long/0' -p129568 -S'long_long() $1' -p129569 -tp129570 -a(S'longdouble/0' -p129571 -S'longdouble() $1' -p129572 -tp129573 -a(S'native/2' -p129574 -S'native(${1:RepId}, ${2:Name}) $3' -p129575 -tp129576 -a(S'null/0' -p129577 -S'null() $1' -p129578 -tp129579 -a(S'object_reference/2' -p129580 -S'object_reference(${1:Id}, ${2:Name}) $3' -p129581 -tp129582 -a(S'octet/0' -p129583 -S'octet() $1' -p129584 -tp129585 -a(S'principal/0' -p129586 -S'principal() $1' -p129587 -tp129588 -a(S'sequence/2' -p129589 -S'sequence(${1:ElemTC}, ${2:Length}) $3' -p129590 -tp129591 -a(S'short/0' -p129592 -S'short() $1' -p129593 -tp129594 -a(S'string/1' -p129595 -S'string(${1:Length}) $2' -p129596 -tp129597 -a(S'struct/3' -p129598 -S'struct(${1:Id}, ${2:Name}, ${3:ElementList}) $4' -p129599 -tp129600 -a(S'typecode/0' -p129601 -S'typecode() $1' -p129602 -tp129603 -a(S'union/5' -p129604 -S'union(${1:Id}, ${2:Name}, ${3:DiscrTC}, ${4:Default}, ${5:ElementList}) $6' -p129605 -tp129606 -a(S'unsigned_long/0' -p129607 -S'unsigned_long() $1' -p129608 -tp129609 -a(S'unsigned_long_long/0' -p129610 -S'unsigned_long_long() $1' -p129611 -tp129612 -a(S'unsigned_short/0' -p129613 -S'unsigned_short() $1' -p129614 -tp129615 -a(S'value/5' -p129616 -S'value(${1:RepId}, ${2:Name}, ${3:ValueModifier}, ${4:TC}, ${5:ElementList}) $6' -p129617 -tp129618 -a(S'value_box/3' -p129619 -S'value_box(${1:RepId}, ${2:Name}, ${3:TC}) $4' -p129620 -tp129621 -a(S'void/0' -p129622 -S'void() $1' -p129623 -tp129624 -a(S'wchar/0' -p129625 -S'wchar() $1' -p129626 -tp129627 -a(S'wstring/1' -p129628 -S'wstring(${1:Length}) $2' -p129629 -tp129630 -asS'snmpa_svbl' -p129631 -(lp129632 -(S'col_to_orgindex/2' -p129633 -S'col_to_orgindex(${1:Col}, ${2:Param2}) $3' -p129634 -tp129635 -a(S'delete_org_index/1' -p129636 -S'delete_org_index(${1:Param1}) $2' -p129637 -tp129638 -a(S'sa_split/1' -p129639 -S'sa_split(${1:Vbs}) $2' -p129640 -tp129641 -a(S'sort_varbindlist/2' -p129642 -S'sort_varbindlist(${1:Mib}, ${2:Varbinds}) $3' -p129643 -tp129644 -a(S'sort_varbinds_rows/1' -p129645 -S'sort_varbinds_rows(${1:Varbinds}) $2' -p129646 -tp129647 -asS'beam_except' -p129648 -(lp129649 -(S'module/2' -p129650 -S'module(${1:Param1}, ${2:Param2}) $3' -p129651 -tp129652 -asS'CosFileTransfer_FileIterator' -p129653 -(lp129654 -(S'code_change/3' -p129655 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p129656 -tp129657 -a(S'destroy/1' -p129658 -S'destroy(${1:OE_THIS}) $2' -p129659 -tp129660 -a(S'destroy/2' -p129661 -S'destroy(${1:OE_THIS}, ${2:OE_Options}) $3' -p129662 -tp129663 -a(S'handle_call/3' -p129664 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p129665 -tp129666 -a(S'handle_cast/2' -p129667 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p129668 -tp129669 -a(S'handle_info/2' -p129670 -S'handle_info(${1:Info}, ${2:State}) $3' -p129671 -tp129672 -a(S'init/1' -p129673 -S'init(${1:Env}) $2' -p129674 -tp129675 -a(S'next_n/2' -p129676 -S'next_n(${1:OE_THIS}, ${2:How_many}) $3' -p129677 -tp129678 -a(S'next_n/3' -p129679 -S'next_n(${1:OE_THIS}, ${2:OE_Options}, ${3:How_many}) $4' -p129680 -tp129681 -a(S'next_one/1' -p129682 -S'next_one(${1:OE_THIS}) $2' -p129683 -tp129684 -a(S'next_one/2' -p129685 -S'next_one(${1:OE_THIS}, ${2:OE_Options}) $3' -p129686 -tp129687 -a(S'oe_create/0' -p129688 -S'oe_create() $1' -p129689 -tp129690 -a(S'oe_create/1' -p129691 -S'oe_create(${1:Env}) $2' -p129692 -tp129693 -a(S'oe_create/2' -p129694 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p129695 -tp129696 -a(S'oe_create_link/0' -p129697 -S'oe_create_link() $1' -p129698 -tp129699 -a(S'oe_create_link/1' -p129700 -S'oe_create_link(${1:Env}) $2' -p129701 -tp129702 -a(S'oe_create_link/2' -p129703 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p129704 -tp129705 -a(S'oe_get_interface/0' -p129706 -S'oe_get_interface() $1' -p129707 -tp129708 -a(S'oe_is_a/1' -p129709 -S'oe_is_a(${1:Param1}) $2' -p129710 -tp129711 -a(S'oe_tc/1' -p129712 -S'oe_tc(${1:Param1}) $2' -p129713 -tp129714 -a(S'terminate/2' -p129715 -S'terminate(${1:Reason}, ${2:State}) $3' -p129716 -tp129717 -a(S'typeID/0' -p129718 -S'typeID() $1' -p129719 -tp129720 -asS'toolbar_toolconfig' -p129721 -(lp129722 -(S'init/0' -p129723 -S'init() $1' -p129724 -tp129725 -a(S'start/0' -p129726 -S'start() $1' -p129727 -tp129728 -asS'et_gs_contents_viewer' -p129729 -(lp129730 -(S'code_change/3' -p129731 -S'code_change(${1:Param1}, ${2:S}, ${3:Param3}) $4' -p129732 -tp129733 -a(S'handle_call/3' -p129734 -S'handle_call(${1:Request}, ${2:From}, ${3:S}) $4' -p129735 -tp129736 -a(S'handle_cast/2' -p129737 -S'handle_cast(${1:Msg}, ${2:S}) $3' -p129738 -tp129739 -a(S'handle_info/2' -p129740 -S'handle_info(${1:Info}, ${2:S}) $3' -p129741 -tp129742 -a(S'init/1' -p129743 -S'init(${1:Param1}) $2' -p129744 -tp129745 -a(S'start_link/1' -p129746 -S'start_link(${1:Options}) $2' -p129747 -tp129748 -a(S'stop/1' -p129749 -S'stop(${1:ContentsPid}) $2' -p129750 -tp129751 -a(S'terminate/2' -p129752 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p129753 -tp129754 -asS'diameter_peer_fsm' -p129755 -(lp129756 -(S'code_change/3' -p129757 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p129758 -tp129759 -a(S'handle_call/3' -p129760 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p129761 -tp129762 -a(S'handle_cast/2' -p129763 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p129764 -tp129765 -a(S'handle_info/2' -p129766 -S'handle_info(${1:T}, ${2:State}) $3' -p129767 -tp129768 -a(S'init/1' -p129769 -S'init(${1:T}) $2' -p129770 -tp129771 -a(S'match/1' -p129772 -S'match(${1:Param1}) $2' -p129773 -tp129774 -a(S'start/3' -p129775 -S'start() $1' -p129776 -tp129777 -a(S'start_link/1' -p129778 -S'start_link(${1:T}) $2' -p129779 -tp129780 -a(S'terminate/2' -p129781 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p129782 -tp129783 -asS'appmon_info' -p129784 -(lp129785 -(S'app/4' -p129786 -S'app(${1:Serv}, ${2:AppName}, ${3:OnOff}, ${4:Opts}) $5' -p129787 -tp129788 -a(S'app_ctrl/4' -p129789 -S'app_ctrl(${1:Serv}, ${2:Aux}, ${3:OnOff}, ${4:Opts}) $5' -p129790 -tp129791 -a(S'code_change/3' -p129792 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p129793 -tp129794 -a(S'handle_call/3' -p129795 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p129796 -tp129797 -a(S'handle_cast/2' -p129798 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p129799 -tp129800 -a(S'handle_info/2' -p129801 -S'handle_info(${1:Param1}, ${2:State}) $3' -p129802 -tp129803 -a(S'init/1' -p129804 -S'init(${1:Param1}) $2' -p129805 -tp129806 -a(S'load/4' -p129807 -S'load(${1:Serv}, ${2:Aux}, ${3:OnOff}, ${4:Opts}) $5' -p129808 -tp129809 -a(S'pinfo/4' -p129810 -S'pinfo(${1:Serv}, ${2:Pid}, ${3:OnOff}, ${4:Opt}) $5' -p129811 -tp129812 -a(S'start_link/3' -p129813 -S'start_link(${1:Node}, ${2:Client}, ${3:Opts}) $4' -p129814 -tp129815 -a(S'start_link2/3' -p129816 -S'start_link2(${1:Starter}, ${2:Client}, ${3:Opts}) $4' -p129817 -tp129818 -a(S'status/0' -p129819 -S'status() $1' -p129820 -tp129821 -a(S'terminate/2' -p129822 -S'terminate(${1:Param1}, ${2:State}) $3' -p129823 -tp129824 -asS'cosProperty' -p129825 -(lp129826 -(S'create_link/3' -p129827 -S'create_link(${1:Module}, ${2:Env}, ${3:ArgList}) $4' -p129828 -tp129829 -a(S'create_static_SetDef/2' -p129830 -S'create_static_SetDef(${1:PropTypes}, ${2:PropDefs}) $3' -p129831 -tp129832 -a(S'get_option/3' -p129833 -S'get_option(${1:Key}, ${2:OptionList}, ${3:DefaultList}) $4' -p129834 -tp129835 -a(S'init/1' -p129836 -S'init(${1:Param1}) $2' -p129837 -tp129838 -a(S'install/0' -p129839 -S'install() $1' -p129840 -tp129841 -a(S'install/1' -p129842 -S'install(${1:Param1}) $2' -p129843 -tp129844 -a(S'install_db/0' -p129845 -S'install_db() $1' -p129846 -tp129847 -a(S'install_db/1' -p129848 -S'install_db(${1:Timeout}) $2' -p129849 -tp129850 -a(S'install_db/2' -p129851 -S'install_db(${1:Timeout}, ${2:Options}) $3' -p129852 -tp129853 -a(S'query_result/1' -p129854 -S'query_result(${1:Qres}) $2' -p129855 -tp129856 -a(S'start/0' -p129857 -S'start() $1' -p129858 -tp129859 -a(S'start/2' -p129860 -S'start(${1:Param1}, ${2:Param2}) $3' -p129861 -tp129862 -a(S'start_PropertiesIterator/1' -p129863 -S'start_PropertiesIterator(${1:Args}) $2' -p129864 -tp129865 -a(S'start_PropertyNamesIterator/1' -p129866 -S'start_PropertyNamesIterator(${1:Args}) $2' -p129867 -tp129868 -a(S'start_SetDefFactory/0' -p129869 -S'start_SetDefFactory() $1' -p129870 -tp129871 -a(S'start_SetFactory/0' -p129872 -S'start_SetFactory() $1' -p129873 -tp129874 -a(S'stop/0' -p129875 -S'stop() $1' -p129876 -tp129877 -a(S'stop/1' -p129878 -S'stop(${1:Param1}) $2' -p129879 -tp129880 -a(S'stop_SetDefFactory/1' -p129881 -S'stop_SetDefFactory(${1:Factory}) $2' -p129882 -tp129883 -a(S'stop_SetFactory/1' -p129884 -S'stop_SetFactory(${1:Factory}) $2' -p129885 -tp129886 -a(S'type_check/2' -p129887 -S'type_check(${1:Obj}, ${2:Mod}) $3' -p129888 -tp129889 -a(S'uninstall/0' -p129890 -S'uninstall() $1' -p129891 -tp129892 -a(S'uninstall/1' -p129893 -S'uninstall(${1:Param1}) $2' -p129894 -tp129895 -a(S'uninstall_db/0' -p129896 -S'uninstall_db() $1' -p129897 -tp129898 -asS'test_server_sup' -p129899 -(lp129900 -(S'app_test/2' -p129901 -S'app_test(${1:Application}, ${2:Mode}) $3' -p129902 -tp129903 -a(S'call_crash/5' -p129904 -S'call_crash(${1:Time}, ${2:Crash}, ${3:M}, ${4:F}, ${5:A}) $6' -p129905 -tp129906 -a(S'call_trace/1' -p129907 -S'call_trace(${1:TraceSpec}) $2' -p129908 -tp129909 -a(S'capture_get/1' -p129910 -S'capture_get(${1:Msgs}) $2' -p129911 -tp129912 -a(S'check_new_crash_dumps/0' -p129913 -S'check_new_crash_dumps() $1' -p129914 -tp129915 -a(S'cleanup_crash_dumps/0' -p129916 -S'cleanup_crash_dumps() $1' -p129917 -tp129918 -a(S'crash_dump_dir/0' -p129919 -S'crash_dump_dir() $1' -p129920 -tp129921 -a(S'format_loc/1' -p129922 -S'format_loc(${1:Loc}) $2' -p129923 -tp129924 -a(S'framework_call/2' -p129925 -S'framework_call(${1:Func}, ${2:Args}) $3' -p129926 -tp129927 -a(S'framework_call/3' -p129928 -S'framework_call(${1:Func}, ${2:Args}, ${3:DefaultReturn}) $4' -p129929 -tp129930 -a(S'framework_call/4' -p129931 -S'framework_call(${1:Callback}, ${2:Func}, ${3:Args}, ${4:DefaultReturn}) $5' -p129932 -tp129933 -a(S'get_os_family/0' -p129934 -S'get_os_family() $1' -p129935 -tp129936 -a(S'get_username/0' -p129937 -S'get_username() $1' -p129938 -tp129939 -a(S'hostatom/0' -p129940 -S'hostatom() $1' -p129941 -tp129942 -a(S'hostatom/1' -p129943 -S'hostatom(${1:Node}) $2' -p129944 -tp129945 -a(S'hoststr/0' -p129946 -S'hoststr() $1' -p129947 -tp129948 -a(S'hoststr/1' -p129949 -S'hoststr(${1:Node}) $2' -p129950 -tp129951 -a(S'messages_get/1' -p129952 -S'messages_get(${1:Msgs}) $2' -p129953 -tp129954 -a(S'package_atom/1' -p129955 -S'package_atom(${1:Mod}) $2' -p129956 -tp129957 -a(S'package_str/1' -p129958 -S'package_str(${1:Mod}) $2' -p129959 -tp129960 -a(S'tar_crash_dumps/0' -p129961 -S'tar_crash_dumps() $1' -p129962 -tp129963 -a(S'timecall/3' -p129964 -S'timecall(${1:M}, ${2:F}, ${3:A}) $4' -p129965 -tp129966 -a(S'timetrap/2' -p129967 -S'timetrap(${1:Timeout0}, ${2:Pid}) $3' -p129968 -tp129969 -a(S'timetrap/3' -p129970 -S'timetrap(${1:Timeout0}, ${2:Scale}, ${3:Pid}) $4' -p129971 -tp129972 -a(S'timetrap/4' -p129973 -S'timetrap(${1:Timeout0}, ${2:ReportTVal}, ${3:Scale}, ${4:Pid}) $5' -p129974 -tp129975 -a(S'timetrap_cancel/1' -p129976 -S'timetrap_cancel(${1:Handle}) $2' -p129977 -tp129978 -asS'gstk_polygon' -p129979 -(lp129980 -(S'config/3' -p129981 -S'config(${1:DB}, ${2:Gstkid}, ${3:Opts}) $4' -p129982 -tp129983 -a(S'create/3' -p129984 -S'create(${1:DB}, ${2:Gstkid}, ${3:Opts}) $4' -p129985 -tp129986 -a(S'delete/2' -p129987 -S'delete(${1:DB}, ${2:Gstkid}) $3' -p129988 -tp129989 -a(S'destroy/3' -p129990 -S'destroy(${1:Param1}, ${2:Canvas}, ${3:Item}) $4' -p129991 -tp129992 -a(S'event/5' -p129993 -S'event(${1:DB}, ${2:Gstkid}, ${3:Etype}, ${4:Edata}, ${5:Args}) $6' -p129994 -tp129995 -a(S'option/5' -p129996 -S'option(${1:Option}, ${2:Gstkid}, ${3:Canvas}, ${4:Param4}, ${5:AItem}) $6' -p129997 -tp129998 -a(S'read/3' -p129999 -S'read(${1:DB}, ${2:Gstkid}, ${3:Opt}) $4' -p130000 -tp130001 -a(S'read_option/5' -p130002 -S'read_option(${1:Option}, ${2:Gstkid}, ${3:Canvas}, ${4:Param4}, ${5:AItem}) $6' -p130003 -tp130004 -asS'erts_debug' -p130005 -(lp130006 -(S'df/1' -p130007 -S'df(${1:Mod}) $2' -p130008 -tp130009 -a(S'df/2' -p130010 -S'df(${1:Mod}, ${2:Func}) $3' -p130011 -tp130012 -a(S'df/3' -p130013 -S'df(${1:Mod}, ${2:Func}, ${3:Arity}) $4' -p130014 -tp130015 -a(S'size/1' -p130016 -S'size(${1:Term}) $2' -p130017 -tp130018 -asS'CosNotifyChannelAdmin_EventChannelFactory_impl' -p130019 -(lp130020 -(S'code_change/3' -p130021 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p130022 -tp130023 -a(S'create_channel/5' -p130024 -S'create_channel(${1:OE_THIS}, ${2:Param2}, ${3:State}, ${4:InitQoS}, ${5:InitAdmin}) $6' -p130025 -tp130026 -a(S'get_all_channels/3' -p130027 -S'get_all_channels(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p130028 -tp130029 -a(S'get_event_channel/4' -p130030 -S'get_event_channel(${1:Param1}, ${2:Param2}, ${3:State}, ${4:Id}) $5' -p130031 -tp130032 -a(S'handle_info/2' -p130033 -S'handle_info(${1:Info}, ${2:State}) $3' -p130034 -tp130035 -a(S'init/1' -p130036 -S'init(${1:Options}) $2' -p130037 -tp130038 -a(S'terminate/2' -p130039 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p130040 -tp130041 -asS'wxFocusEvent' -p130042 -(lp130043 -(S'getId/1' -p130044 -S'getId(${1:This}) $2' -p130045 -tp130046 -a(S'getSkipped/1' -p130047 -S'getSkipped(${1:This}) $2' -p130048 -tp130049 -a(S'getTimestamp/1' -p130050 -S'getTimestamp(${1:This}) $2' -p130051 -tp130052 -a(S'getWindow/1' -p130053 -S'getWindow(${1:This}) $2' -p130054 -tp130055 -a(S'isCommandEvent/1' -p130056 -S'isCommandEvent(${1:This}) $2' -p130057 -tp130058 -a(S'parent_class/1' -p130059 -S'parent_class(${1:Param1}) $2' -p130060 -tp130061 -a(S'resumePropagation/2' -p130062 -S'resumePropagation(${1:This}, ${2:PropagationLevel}) $3' -p130063 -tp130064 -a(S'shouldPropagate/1' -p130065 -S'shouldPropagate(${1:This}) $2' -p130066 -tp130067 -a(S'skip/1' -p130068 -S'skip(${1:This}) $2' -p130069 -tp130070 -a(S'skip/2' -p130071 -S'skip(${1:This}, ${2:Options}) $3' -p130072 -tp130073 -a(S'stopPropagation/1' -p130074 -S'stopPropagation(${1:This}) $2' -p130075 -tp130076 -asS'CosNotifyFilter_ConstraintIDSeq' -p130077 -(lp130078 -(S'id/0' -p130079 -S'id() $1' -p130080 -tp130081 -a(S'name/0' -p130082 -S'name() $1' -p130083 -tp130084 -a(S'tc/0' -p130085 -S'tc() $1' -p130086 -tp130087 -asS'uds' -p130088 -(lp130089 -(S'accept/1' -p130090 -S'accept(${1:Port}) $2' -p130091 -tp130092 -a(S'close/1' -p130093 -S'close(${1:Port}) $2' -p130094 -tp130095 -a(S'connect/1' -p130096 -S'connect(${1:Name}) $2' -p130097 -tp130098 -a(S'controlling_process/2' -p130099 -S'controlling_process(${1:Port}, ${2:Pid}) $3' -p130100 -tp130101 -a(S'get_creation/1' -p130102 -S'get_creation(${1:Port}) $2' -p130103 -tp130104 -a(S'get_port/1' -p130105 -S'get_port(${1:Port}) $2' -p130106 -tp130107 -a(S'get_status_counters/1' -p130108 -S'get_status_counters(${1:Port}) $2' -p130109 -tp130110 -a(S'listen/1' -p130111 -S'listen(${1:Name}) $2' -p130112 -tp130113 -a(S'recv/1' -p130114 -S'recv(${1:Port}) $2' -p130115 -tp130116 -a(S'send/2' -p130117 -S'send(${1:Port}, ${2:Data}) $3' -p130118 -tp130119 -a(S'set_mode/2' -p130120 -S'set_mode(${1:Port}, ${2:Param2}) $3' -p130121 -tp130122 -a(S'tick/1' -p130123 -S'tick(${1:Port}) $2' -p130124 -tp130125 -asS'shell' -p130126 -(lp130127 -(S'history/1' -p130128 -S'history(${1:N}) $2' -p130129 -tp130130 -a(S'local_allowed/3' -p130131 -S'local_allowed(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p130132 -tp130133 -a(S'non_local_allowed/3' -p130134 -S'non_local_allowed(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p130135 -tp130136 -a(S'prompt_func/1' -p130137 -S'prompt_func(${1:M}) $2' -p130138 -tp130139 -a(S'results/1' -p130140 -S'results(${1:N}) $2' -p130141 -tp130142 -a(S'server/1' -p130143 -S'server(${1:StartSync}) $2' -p130144 -tp130145 -a(S'server/2' -p130146 -S'server(${1:NoCtrlG}, ${2:StartSync}) $3' -p130147 -tp130148 -a(S'start/0' -p130149 -S'start() $1' -p130150 -tp130151 -a(S'start/1' -p130152 -S'start(${1:NoCtrlG}) $2' -p130153 -tp130154 -a(S'start/2' -p130155 -S'start(${1:NoCtrlG}, ${2:StartSync}) $3' -p130156 -tp130157 -a(S'start_restricted/1' -p130158 -S'start_restricted(${1:Module}) $2' -p130159 -tp130160 -a(S'stop_restricted/0' -p130161 -S'stop_restricted() $1' -p130162 -tp130163 -a(S'whereis_evaluator/0' -p130164 -S'whereis_evaluator() $1' -p130165 -tp130166 -a(S'whereis_evaluator/1' -p130167 -S'whereis_evaluator(${1:Shell}) $2' -p130168 -tp130169 -asS'dialyzer_typesig' -p130170 -(lp130171 -(S'analyze_scc/5' -p130172 -S'analyze_scc(${1:SCC}, ${2:NextLabel}, ${3:CallGraph}, ${4:Plt}, ${5:PropTypes}) $6' -p130173 -tp130174 -a(S'get_safe_underapprox/2' -p130175 -S'get_safe_underapprox(${1:Pats}, ${2:Guard}) $3' -p130176 -tp130177 -asS'erl_reply' -p130178 -(lp130179 -(S'reply/1' -p130180 -S'reply(${1:Param1}) $2' -p130181 -tp130182 -asS'CosTransactions_Terminator' -p130183 -(lp130184 -(S'code_change/3' -p130185 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p130186 -tp130187 -a(S'commit/2' -p130188 -S'commit(${1:OE_THIS}, ${2:Report_heuristics}) $3' -p130189 -tp130190 -a(S'commit/3' -p130191 -S'commit(${1:OE_THIS}, ${2:OE_Options}, ${3:Report_heuristics}) $4' -p130192 -tp130193 -a(S'handle_call/3' -p130194 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p130195 -tp130196 -a(S'handle_cast/2' -p130197 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p130198 -tp130199 -a(S'handle_info/2' -p130200 -S'handle_info(${1:Info}, ${2:State}) $3' -p130201 -tp130202 -a(S'init/1' -p130203 -S'init(${1:Env}) $2' -p130204 -tp130205 -a(S'oe_create/0' -p130206 -S'oe_create() $1' -p130207 -tp130208 -a(S'oe_create/1' -p130209 -S'oe_create(${1:Env}) $2' -p130210 -tp130211 -a(S'oe_create/2' -p130212 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p130213 -tp130214 -a(S'oe_create_link/0' -p130215 -S'oe_create_link() $1' -p130216 -tp130217 -a(S'oe_create_link/1' -p130218 -S'oe_create_link(${1:Env}) $2' -p130219 -tp130220 -a(S'oe_create_link/2' -p130221 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p130222 -tp130223 -a(S'oe_get_interface/0' -p130224 -S'oe_get_interface() $1' -p130225 -tp130226 -a(S'oe_is_a/1' -p130227 -S'oe_is_a(${1:Param1}) $2' -p130228 -tp130229 -a(S'oe_tc/1' -p130230 -S'oe_tc(${1:Param1}) $2' -p130231 -tp130232 -a(S'rollback/1' -p130233 -S'rollback(${1:OE_THIS}) $2' -p130234 -tp130235 -a(S'rollback/2' -p130236 -S'rollback(${1:OE_THIS}, ${2:OE_Options}) $3' -p130237 -tp130238 -a(S'terminate/2' -p130239 -S'terminate(${1:Reason}, ${2:State}) $3' -p130240 -tp130241 -a(S'typeID/0' -p130242 -S'typeID() $1' -p130243 -tp130244 -asS'lists' -p130245 -(lp130246 -(S'all/2' -p130247 -S'all(${1:Pred}, ${2:List}) $3' -p130248 -tp130249 -a(S'any/2' -p130250 -S'any(${1:Pred}, ${2:List}) $3' -p130251 -tp130252 -a(S'append/1' -p130253 -S'append(${1:ListOfLists}) $2' -p130254 -tp130255 -a(S'append/2' -p130256 -S'append(${1:List1}, ${2:List2}) $3' -p130257 -tp130258 -a(S'concat/1' -p130259 -S'concat(${1:Things}) $2' -p130260 -tp130261 -a(S'delete/2' -p130262 -S'delete(${1:Elem}, ${2:List1}) $3' -p130263 -tp130264 -a(S'dropwhile/2' -p130265 -S'dropwhile(${1:Pred}, ${2:List1}) $3' -p130266 -tp130267 -a(S'duplicate/2' -p130268 -S'duplicate(${1:N}, ${2:Elem}) $3' -p130269 -tp130270 -a(S'filter/2' -p130271 -S'filter(${1:Pred}, ${2:List1}) $3' -p130272 -tp130273 -a(S'flatlength/1' -p130274 -S'flatlength(${1:DeepList}) $2' -p130275 -tp130276 -a(S'flatmap/2' -p130277 -S'flatmap(${1:Fun}, ${2:List1}) $3' -p130278 -tp130279 -a(S'flatten/1' -p130280 -S'flatten(${1:DeepList}) $2' -p130281 -tp130282 -a(S'flatten/2' -p130283 -S'flatten(${1:DeepList}, ${2:Tail}) $3' -p130284 -tp130285 -a(S'foldl/3' -p130286 -S'foldl(${1:Fun}, ${2:Acc0}, ${3:List}) $4' -p130287 -tp130288 -a(S'foldr/3' -p130289 -S'foldr(${1:Fun}, ${2:Acc0}, ${3:List}) $4' -p130290 -tp130291 -a(S'foreach/2' -p130292 -S'foreach(${1:Fun}, ${2:List}) $3' -p130293 -tp130294 -a(S'keydelete/3' -p130295 -S'keydelete(${1:Key}, ${2:N}, ${3:TupleList1}) $4' -p130296 -tp130297 -a(S'keyfind/3' -p130298 -S'keyfind(${1:Key}, ${2:N}, ${3:TupleList}) $4' -p130299 -tp130300 -a(S'keymap/3' -p130301 -S'keymap(${1:Fun}, ${2:N}, ${3:TupleList1}) $4' -p130302 -tp130303 -a(S'keymember/3' -p130304 -S'keymember(${1:Key}, ${2:N}, ${3:TupleList}) $4' -p130305 -tp130306 -a(S'keymerge/3' -p130307 -S'keymerge(${1:N}, ${2:TupleList1}, ${3:TupleList2}) $4' -p130308 -tp130309 -a(S'keyreplace/4' -p130310 -S'keyreplace(${1:Key}, ${2:N}, ${3:TupleList1}, ${4:NewTuple}) $5' -p130311 -tp130312 -a(S'keysearch/3' -p130313 -S'keysearch(${1:Key}, ${2:N}, ${3:TupleList}) $4' -p130314 -tp130315 -a(S'keysort/2' -p130316 -S'keysort(${1:N}, ${2:TupleList1}) $3' -p130317 -tp130318 -a(S'keystore/4' -p130319 -S'keystore(${1:Key}, ${2:N}, ${3:TupleList1}, ${4:NewTuple}) $5' -p130320 -tp130321 -a(S'keytake/3' -p130322 -S'keytake(${1:Key}, ${2:N}, ${3:TupleList1}) $4' -p130323 -tp130324 -a(S'last/1' -p130325 -S'last(${1:List}) $2' -p130326 -tp130327 -a(S'map/2' -p130328 -S'map(${1:Fun}, ${2:List1}) $3' -p130329 -tp130330 -a(S'mapfoldl/3' -p130331 -S'mapfoldl(${1:Fun}, ${2:Acc0}, ${3:List1}) $4' -p130332 -tp130333 -a(S'mapfoldr/3' -p130334 -S'mapfoldr(${1:Fun}, ${2:Acc0}, ${3:List1}) $4' -p130335 -tp130336 -a(S'max/1' -p130337 -S'max(${1:List}) $2' -p130338 -tp130339 -a(S'member/2' -p130340 -S'member(${1:Elem}, ${2:List}) $3' -p130341 -tp130342 -a(S'merge/1' -p130343 -S'merge(${1:ListOfLists}) $2' -p130344 -tp130345 -a(S'merge/2' -p130346 -S'merge(${1:List1}, ${2:List2}) $3' -p130347 -tp130348 -a(S'merge/3' -p130349 -S'merge(${1:N}, ${2:TupleList1}, ${3:TupleList2}) $4' -p130350 -tp130351 -a(S'merge3/3' -p130352 -S'merge3(${1:List1}, ${2:List2}, ${3:List3}) $4' -p130353 -tp130354 -a(S'min/1' -p130355 -S'min(${1:List}) $2' -p130356 -tp130357 -a(S'nth/2' -p130358 -S'nth(${1:N}, ${2:List}) $3' -p130359 -tp130360 -a(S'nthtail/2' -p130361 -S'nthtail(${1:N}, ${2:List}) $3' -p130362 -tp130363 -a(S'partition/2' -p130364 -S'partition(${1:Pred}, ${2:List}) $3' -p130365 -tp130366 -a(S'prefix/2' -p130367 -S'prefix(${1:List1}, ${2:List2}) $3' -p130368 -tp130369 -a(S'reverse/1' -p130370 -S'reverse(${1:List1}) $2' -p130371 -tp130372 -a(S'reverse/2' -p130373 -S'reverse(${1:List1}, ${2:Tail}) $3' -p130374 -tp130375 -a(S'rkeymerge/3' -p130376 -S'rkeymerge() $1' -p130377 -tp130378 -a(S'rmerge/2' -p130379 -S'rmerge(${1:T1}, ${2:Param2}) $3' -p130380 -tp130381 -a(S'rmerge/3' -p130382 -S'rmerge(${1:Fun}, ${2:T1}, ${3:Param3}) $4' -p130383 -tp130384 -a(S'rmerge3/3' -p130385 -S'rmerge3(${1:L1}, ${2:L2}, ${3:L3}) $4' -p130386 -tp130387 -a(S'rukeymerge/3' -p130388 -S'rukeymerge() $1' -p130389 -tp130390 -a(S'rumerge/2' -p130391 -S'rumerge(${1:T1}, ${2:Param2}) $3' -p130392 -tp130393 -a(S'rumerge/3' -p130394 -S'rumerge(${1:Fun}, ${2:T1}, ${3:Param3}) $4' -p130395 -tp130396 -a(S'rumerge3/3' -p130397 -S'rumerge3(${1:L1}, ${2:L2}, ${3:L3}) $4' -p130398 -tp130399 -a(S'seq/2' -p130400 -S'seq(${1:From}, ${2:To}) $3' -p130401 -tp130402 -a(S'seq/3' -p130403 -S'seq(${1:From}, ${2:To}, ${3:Incr}) $4' -p130404 -tp130405 -a(S'sort/1' -p130406 -S'sort(${1:List1}) $2' -p130407 -tp130408 -a(S'sort/2' -p130409 -S'sort(${1:N}, ${2:TupleList1}) $3' -p130410 -tp130411 -a(S'split/2' -p130412 -S'split(${1:N}, ${2:List1}) $3' -p130413 -tp130414 -a(S'splitwith/2' -p130415 -S'splitwith(${1:Pred}, ${2:List}) $3' -p130416 -tp130417 -a(S'sublist/2' -p130418 -S'sublist(${1:List1}, ${2:Len}) $3' -p130419 -tp130420 -a(S'sublist/3' -p130421 -S'sublist(${1:List1}, ${2:Start}, ${3:Len}) $4' -p130422 -tp130423 -a(S'subtract/2' -p130424 -S'subtract(${1:List1}, ${2:List2}) $3' -p130425 -tp130426 -a(S'suffix/2' -p130427 -S'suffix(${1:List1}, ${2:List2}) $3' -p130428 -tp130429 -a(S'sum/1' -p130430 -S'sum(${1:List}) $2' -p130431 -tp130432 -a(S'takewhile/2' -p130433 -S'takewhile(${1:Pred}, ${2:List1}) $3' -p130434 -tp130435 -a(S'ukeymerge/3' -p130436 -S'ukeymerge(${1:N}, ${2:TupleList1}, ${3:TupleList2}) $4' -p130437 -tp130438 -a(S'ukeysort/2' -p130439 -S'ukeysort(${1:N}, ${2:TupleList1}) $3' -p130440 -tp130441 -a(S'umerge/1' -p130442 -S'umerge(${1:ListOfLists}) $2' -p130443 -tp130444 -a(S'umerge/2' -p130445 -S'umerge(${1:List1}, ${2:List2}) $3' -p130446 -tp130447 -a(S'umerge/3' -p130448 -S'umerge(${1:Fun}, ${2:List1}, ${3:List2}) $4' -p130449 -tp130450 -a(S'umerge3/3' -p130451 -S'umerge3(${1:List1}, ${2:List2}, ${3:List3}) $4' -p130452 -tp130453 -a(S'unzip/1' -p130454 -S'unzip(${1:List1}) $2' -p130455 -tp130456 -a(S'unzip3/1' -p130457 -S'unzip3(${1:List1}) $2' -p130458 -tp130459 -a(S'usort/1' -p130460 -S'usort(${1:List1}) $2' -p130461 -tp130462 -a(S'usort/2' -p130463 -S'usort(${1:Fun}, ${2:List1}) $3' -p130464 -tp130465 -a(S'zf/2' -p130466 -S'zf(${1:F}, ${2:Param2}) $3' -p130467 -tp130468 -a(S'zip/2' -p130469 -S'zip(${1:List1}, ${2:List2}) $3' -p130470 -tp130471 -a(S'zip3/3' -p130472 -S'zip3(${1:List1}, ${2:List2}, ${3:List3}) $4' -p130473 -tp130474 -a(S'zipwith/3' -p130475 -S'zipwith(${1:Combine}, ${2:List1}, ${3:List2}) $4' -p130476 -tp130477 -a(S'zipwith3/4' -p130478 -S'zipwith3(${1:Combine}, ${2:List1}, ${3:List2}, ${4:List3}) $5' -p130479 -tp130480 -asS'dist_ac' -p130481 -(lp130482 -(S'code_change/3' -p130483 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p130484 -tp130485 -a(S'get_known_nodes/0' -p130486 -S'get_known_nodes() $1' -p130487 -tp130488 -a(S'handle_call/3' -p130489 -S'handle_call(${1:Param1}, ${2:From}, ${3:S}) $4' -p130490 -tp130491 -a(S'handle_cast/2' -p130492 -S'handle_cast(${1:Param1}, ${2:Param2}) $3' -p130493 -tp130494 -a(S'handle_info/2' -p130495 -S'handle_info(${1:Param1}, ${2:S}) $3' -p130496 -tp130497 -a(S'info/0' -p130498 -S'info() $1' -p130499 -tp130500 -a(S'init/1' -p130501 -S'init(${1:Param1}) $2' -p130502 -tp130503 -a(S'load_application/2' -p130504 -S'load_application(${1:AppName}, ${2:DistNodes}) $3' -p130505 -tp130506 -a(S'permit_application/2' -p130507 -S'permit_application(${1:AppName}, ${2:Bool}) $3' -p130508 -tp130509 -a(S'permit_only_loaded_application/2' -p130510 -S'permit_only_loaded_application(${1:AppName}, ${2:Bool}) $3' -p130511 -tp130512 -a(S'send_timeout/3' -p130513 -S'send_timeout(${1:To}, ${2:Time}, ${3:Msg}) $4' -p130514 -tp130515 -a(S'start_link/0' -p130516 -S'start_link() $1' -p130517 -tp130518 -a(S'takeover_application/2' -p130519 -S'takeover_application(${1:AppName}, ${2:RestartType}) $3' -p130520 -tp130521 -a(S'terminate/2' -p130522 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p130523 -tp130524 -asS'orber_ifr_uniondef' -p130525 -(lp130526 -(S"'_get_absolute_name'/1" -p130527 -S"'_get_absolute_name'() $1" -p130528 -tp130529 -a(S"'_get_containing_repository'/1" -p130530 -S"'_get_containing_repository'() $1" -p130531 -tp130532 -a(S"'_get_def_kind'/1" -p130533 -S"'_get_def_kind'() $1" -p130534 -tp130535 -a(S"'_get_defined_in'/1" -p130536 -S"'_get_defined_in'() $1" -p130537 -tp130538 -a(S"'_get_discriminator_type'/1" -p130539 -S"'_get_discriminator_type'() $1" -p130540 -tp130541 -a(S"'_get_discriminator_type_def'/1" -p130542 -S"'_get_discriminator_type_def'() $1" -p130543 -tp130544 -a(S"'_get_id'/1" -p130545 -S"'_get_id'() $1" -p130546 -tp130547 -a(S"'_get_members'/1" -p130548 -S"'_get_members'() $1" -p130549 -tp130550 -a(S"'_get_name'/1" -p130551 -S"'_get_name'() $1" -p130552 -tp130553 -a(S"'_get_type'/1" -p130554 -S"'_get_type'() $1" -p130555 -tp130556 -a(S"'_get_version'/1" -p130557 -S"'_get_version'() $1" -p130558 -tp130559 -a(S"'_set_discriminator_type_def'/2" -p130560 -S"'_set_discriminator_type_def'() $1" -p130561 -tp130562 -a(S"'_set_id'/2" -p130563 -S"'_set_id'() $1" -p130564 -tp130565 -a(S"'_set_members'/2" -p130566 -S"'_set_members'() $1" -p130567 -tp130568 -a(S"'_set_name'/2" -p130569 -S"'_set_name'() $1" -p130570 -tp130571 -a(S"'_set_version'/2" -p130572 -S"'_set_version'() $1" -p130573 -tp130574 -a(S'cleanup_for_destroy/1' -p130575 -S'cleanup_for_destroy() $1' -p130576 -tp130577 -a(S'describe/1' -p130578 -S'describe() $1' -p130579 -tp130580 -a(S'destroy/1' -p130581 -S'destroy() $1' -p130582 -tp130583 -a(S'move/4' -p130584 -S'move() $1' -p130585 -tp130586 -asS'disk_log_1' -p130587 -(lp130588 -(S'change_size_wrap/3' -p130589 -S'change_size_wrap(${1:Handle}, ${2:Param2}, ${3:Version}) $4' -p130590 -tp130591 -a(S'chunk/5' -p130592 -S'chunk(${1:FdC}, ${2:FileName}, ${3:Pos}, ${4:B}, ${5:N}) $6' -p130593 -tp130594 -a(S'chunk_read_only/5' -p130595 -S'chunk_read_only(${1:Fd}, ${2:FileName}, ${3:Pos}, ${4:B}, ${5:N}) $6' -p130596 -tp130597 -a(S'close/3' -p130598 -S'close(${1:Fd}, ${2:FileName}, ${3:Pos}) $4' -p130599 -tp130600 -a(S'ext_open/4' -p130601 -S'ext_open(${1:FName}, ${2:Param2}, ${3:Param3}, ${4:Head}) $5' -p130602 -tp130603 -a(S'fclose/2' -p130604 -S'fclose(${1:Param1}, ${2:FileName}) $3' -p130605 -tp130606 -a(S'fwrite/4' -p130607 -S'fwrite(${1:FdC}, ${2:FileName}, ${3:B}, ${4:Size}) $5' -p130608 -tp130609 -a(S'get_wrap_size/1' -p130610 -S'get_wrap_size(${1:Param1}) $2' -p130611 -tp130612 -a(S'int_open/4' -p130613 -S'int_open(${1:FName}, ${2:Repair}, ${3:Param3}, ${4:Head}) $5' -p130614 -tp130615 -a(S'is_head/1' -p130616 -S'is_head(${1:Bin}) $2' -p130617 -tp130618 -a(S'logl/1' -p130619 -S'logl(${1:X}) $2' -p130620 -tp130621 -a(S'mf_ext_close/2' -p130622 -S'mf_ext_close() $1' -p130623 -tp130624 -a(S'mf_ext_inc/2' -p130625 -S'mf_ext_inc(${1:Handle}, ${2:Head}) $3' -p130626 -tp130627 -a(S'mf_ext_log/3' -p130628 -S'mf_ext_log(${1:Handle}, ${2:Bins}, ${3:Head}) $4' -p130629 -tp130630 -a(S'mf_ext_open/7' -p130631 -S'mf_ext_open(${1:FName}, ${2:MaxB}, ${3:MaxF}, ${4:Repair}, ${5:Mode}, ${6:Head}, ${7:Version}) $8' -p130632 -tp130633 -a(S'mf_int_chunk/4' -p130634 -S'mf_int_chunk(${1:Handle}, ${2:Param2}, ${3:Bin}, ${4:N}) $5' -p130635 -tp130636 -a(S'mf_int_chunk_read_only/4' -p130637 -S'mf_int_chunk_read_only(${1:Handle}, ${2:Param2}, ${3:Bin}, ${4:N}) $5' -p130638 -tp130639 -a(S'mf_int_chunk_step/3' -p130640 -S'mf_int_chunk_step(${1:Handle}, ${2:Param2}, ${3:Step}) $4' -p130641 -tp130642 -a(S'mf_int_close/2' -p130643 -S'mf_int_close() $1' -p130644 -tp130645 -a(S'mf_int_inc/2' -p130646 -S'mf_int_inc(${1:Handle}, ${2:Head}) $3' -p130647 -tp130648 -a(S'mf_int_log/3' -p130649 -S'mf_int_log(${1:Handle}, ${2:Bins}, ${3:Head}) $4' -p130650 -tp130651 -a(S'mf_int_open/7' -p130652 -S'mf_int_open(${1:FName}, ${2:MaxB}, ${3:MaxF}, ${4:Repair}, ${5:Mode}, ${6:Head}, ${7:Version}) $8' -p130653 -tp130654 -a(S'mf_sync/1' -p130655 -S'mf_sync(${1:Handle}) $2' -p130656 -tp130657 -a(S'mf_write_cache/1' -p130658 -S'mf_write_cache(${1:Handle}) $2' -p130659 -tp130660 -a(S'position/3' -p130661 -S'position(${1:Param1}, ${2:FileName}, ${3:Pos}) $4' -p130662 -tp130663 -a(S'print_index_file/1' -p130664 -S'print_index_file(${1:File}) $2' -p130665 -tp130666 -a(S'read_index_file/1' -p130667 -S'read_index_file(${1:FName}) $2' -p130668 -tp130669 -a(S'read_size_file/1' -p130670 -S'read_size_file(${1:FName}) $2' -p130671 -tp130672 -a(S'read_size_file_version/1' -p130673 -S'read_size_file_version(${1:FName}) $2' -p130674 -tp130675 -a(S'sync/2' -p130676 -S'sync(${1:FdC}, ${2:FName}) $3' -p130677 -tp130678 -a(S'truncate/3' -p130679 -S'truncate(${1:FdC}, ${2:FileName}, ${3:Head}) $4' -p130680 -tp130681 -a(S'truncate_at/3' -p130682 -S'truncate_at(${1:FdC}, ${2:FileName}, ${3:Pos}) $4' -p130683 -tp130684 -a(S'write_cache/2' -p130685 -S'write_cache(${1:Param1}, ${2:FName}) $3' -p130686 -tp130687 -asS'pg2' -p130688 -(lp130689 -(S'create/1' -p130690 -S'create(${1:Name}) $2' -p130691 -tp130692 -a(S'delete/1' -p130693 -S'delete(${1:Name}) $2' -p130694 -tp130695 -a(S'get_closest_pid/1' -p130696 -S'get_closest_pid(${1:Name}) $2' -p130697 -tp130698 -a(S'get_local_members/1' -p130699 -S'get_local_members(${1:Name}) $2' -p130700 -tp130701 -a(S'get_members/1' -p130702 -S'get_members(${1:Name}) $2' -p130703 -tp130704 -a(S'handle_call/3' -p130705 -S'handle_call(${1:Request}, ${2:From}, ${3:S}) $4' -p130706 -tp130707 -a(S'handle_cast/2' -p130708 -S'handle_cast(${1:Param1}, ${2:S}) $3' -p130709 -tp130710 -a(S'handle_info/2' -p130711 -S'handle_info(${1:Param1}, ${2:S}) $3' -p130712 -tp130713 -a(S'init/1' -p130714 -S'init(${1:Param1}) $2' -p130715 -tp130716 -a(S'join/2' -p130717 -S'join(${1:Name}, ${2:Pid}) $3' -p130718 -tp130719 -a(S'leave/2' -p130720 -S'leave(${1:Name}, ${2:Pid}) $3' -p130721 -tp130722 -a(S'start/0' -p130723 -S'start() $1' -p130724 -tp130725 -a(S'start_link/0' -p130726 -S'start_link() $1' -p130727 -tp130728 -a(S'terminate/2' -p130729 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p130730 -tp130731 -a(S'which_groups/0' -p130732 -S'which_groups() $1' -p130733 -tp130734 -asS'gstk_frame' -p130735 -(lp130736 -(S'config/3' -p130737 -S'config(${1:DB}, ${2:Gstkid}, ${3:Opts}) $4' -p130738 -tp130739 -a(S'create/3' -p130740 -S'create(${1:DB}, ${2:GstkId}, ${3:Opts}) $4' -p130741 -tp130742 -a(S'delete/2' -p130743 -S'delete(${1:DB}, ${2:Gstkid}) $3' -p130744 -tp130745 -a(S'event/5' -p130746 -S'event(${1:DB}, ${2:Gstkid}, ${3:Etype}, ${4:Edata}, ${5:Args}) $6' -p130747 -tp130748 -a(S'mk_create_opts_for_child/4' -p130749 -S'mk_create_opts_for_child(${1:DB}, ${2:Cgstkid}, ${3:Pgstkid}, ${4:Opts}) $5' -p130750 -tp130751 -a(S'option/5' -p130752 -S'option(${1:Option}, ${2:Gstkid}, ${3:TkW}, ${4:DB}, ${5:Param5}) $6' -p130753 -tp130754 -a(S'read/3' -p130755 -S'read(${1:DB}, ${2:Gstkid}, ${3:Opt}) $4' -p130756 -tp130757 -a(S'read_option/5' -p130758 -S'read_option(${1:Option}, ${2:Gstkid}, ${3:TkW}, ${4:Param4}, ${5:Param5}) $6' -p130759 -tp130760 -asS'ictk' -p130761 -(lp130762 -(S'get_IR_ID/3' -p130763 -S'get_IR_ID(${1:G}, ${2:N}, ${3:X}) $4' -p130764 -tp130765 -a(S'get_IR_VSN/3' -p130766 -S'get_IR_VSN(${1:G}, ${2:N}, ${3:X}) $4' -p130767 -tp130768 -a(S'reg_gen/3' -p130769 -S'reg_gen(${1:G}, ${2:N}, ${3:X}) $4' -p130770 -tp130771 -a(S'register_name/1' -p130772 -S'register_name(${1:G}) $2' -p130773 -tp130774 -a(S'unreg_gen/3' -p130775 -S'unreg_gen(${1:G}, ${2:N}, ${3:X}) $4' -p130776 -tp130777 -a(S'unregister_name/1' -p130778 -S'unregister_name(${1:G}) $2' -p130779 -tp130780 -asS'CosNotifyFilter_MappingConstraintInfo' -p130781 -(lp130782 -(S'id/0' -p130783 -S'id() $1' -p130784 -tp130785 -a(S'name/0' -p130786 -S'name() $1' -p130787 -tp130788 -a(S'tc/0' -p130789 -S'tc() $1' -p130790 -tp130791 -asS'wxSplitterWindow' -p130792 -(lp130793 -(S'cacheBestSize/2' -p130794 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p130795 -tp130796 -a(S'captureMouse/1' -p130797 -S'captureMouse(${1:This}) $2' -p130798 -tp130799 -a(S'center/1' -p130800 -S'center(${1:This}) $2' -p130801 -tp130802 -a(S'center/2' -p130803 -S'center(${1:This}, ${2:Options}) $3' -p130804 -tp130805 -a(S'centerOnParent/1' -p130806 -S'centerOnParent(${1:This}) $2' -p130807 -tp130808 -a(S'centerOnParent/2' -p130809 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p130810 -tp130811 -a(S'centre/1' -p130812 -S'centre(${1:This}) $2' -p130813 -tp130814 -a(S'centre/2' -p130815 -S'centre(${1:This}, ${2:Options}) $3' -p130816 -tp130817 -a(S'centreOnParent/1' -p130818 -S'centreOnParent(${1:This}) $2' -p130819 -tp130820 -a(S'centreOnParent/2' -p130821 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p130822 -tp130823 -a(S'clearBackground/1' -p130824 -S'clearBackground(${1:This}) $2' -p130825 -tp130826 -a(S'clientToScreen/2' -p130827 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p130828 -tp130829 -a(S'clientToScreen/3' -p130830 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p130831 -tp130832 -a(S'close/1' -p130833 -S'close(${1:This}) $2' -p130834 -tp130835 -a(S'close/2' -p130836 -S'close(${1:This}, ${2:Options}) $3' -p130837 -tp130838 -a(S'connect/2' -p130839 -S'connect(${1:This}, ${2:EventType}) $3' -p130840 -tp130841 -a(S'connect/3' -p130842 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p130843 -tp130844 -a(S'convertDialogToPixels/2' -p130845 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p130846 -tp130847 -a(S'convertPixelsToDialog/2' -p130848 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p130849 -tp130850 -a(S'create/2' -p130851 -S'create(${1:This}, ${2:Parent}) $3' -p130852 -tp130853 -a(S'create/3' -p130854 -S'create(${1:This}, ${2:Parent}, ${3:Param3}) $4' -p130855 -tp130856 -a(S'destroy/1' -p130857 -S'destroy(${1:This}) $2' -p130858 -tp130859 -a(S'destroyChildren/1' -p130860 -S'destroyChildren(${1:This}) $2' -p130861 -tp130862 -a(S'disable/1' -p130863 -S'disable(${1:This}) $2' -p130864 -tp130865 -a(S'disconnect/1' -p130866 -S'disconnect(${1:This}) $2' -p130867 -tp130868 -a(S'disconnect/2' -p130869 -S'disconnect(${1:This}, ${2:EventType}) $3' -p130870 -tp130871 -a(S'disconnect/3' -p130872 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p130873 -tp130874 -a(S'enable/1' -p130875 -S'enable(${1:This}) $2' -p130876 -tp130877 -a(S'enable/2' -p130878 -S'enable(${1:This}, ${2:Options}) $3' -p130879 -tp130880 -a(S'findWindow/2' -p130881 -S'findWindow(${1:This}, ${2:Winid}) $3' -p130882 -tp130883 -a(S'fit/1' -p130884 -S'fit(${1:This}) $2' -p130885 -tp130886 -a(S'fitInside/1' -p130887 -S'fitInside(${1:This}) $2' -p130888 -tp130889 -a(S'freeze/1' -p130890 -S'freeze(${1:This}) $2' -p130891 -tp130892 -a(S'getAcceleratorTable/1' -p130893 -S'getAcceleratorTable(${1:This}) $2' -p130894 -tp130895 -a(S'getBackgroundColour/1' -p130896 -S'getBackgroundColour(${1:This}) $2' -p130897 -tp130898 -a(S'getBackgroundStyle/1' -p130899 -S'getBackgroundStyle(${1:This}) $2' -p130900 -tp130901 -a(S'getBestSize/1' -p130902 -S'getBestSize(${1:This}) $2' -p130903 -tp130904 -a(S'getCaret/1' -p130905 -S'getCaret(${1:This}) $2' -p130906 -tp130907 -a(S'getCharHeight/1' -p130908 -S'getCharHeight(${1:This}) $2' -p130909 -tp130910 -a(S'getCharWidth/1' -p130911 -S'getCharWidth(${1:This}) $2' -p130912 -tp130913 -a(S'getChildren/1' -p130914 -S'getChildren(${1:This}) $2' -p130915 -tp130916 -a(S'getClientSize/1' -p130917 -S'getClientSize(${1:This}) $2' -p130918 -tp130919 -a(S'getContainingSizer/1' -p130920 -S'getContainingSizer(${1:This}) $2' -p130921 -tp130922 -a(S'getCursor/1' -p130923 -S'getCursor(${1:This}) $2' -p130924 -tp130925 -a(S'getDropTarget/1' -p130926 -S'getDropTarget(${1:This}) $2' -p130927 -tp130928 -a(S'getEventHandler/1' -p130929 -S'getEventHandler(${1:This}) $2' -p130930 -tp130931 -a(S'getExtraStyle/1' -p130932 -S'getExtraStyle(${1:This}) $2' -p130933 -tp130934 -a(S'getFont/1' -p130935 -S'getFont(${1:This}) $2' -p130936 -tp130937 -a(S'getForegroundColour/1' -p130938 -S'getForegroundColour(${1:This}) $2' -p130939 -tp130940 -a(S'getGrandParent/1' -p130941 -S'getGrandParent(${1:This}) $2' -p130942 -tp130943 -a(S'getHandle/1' -p130944 -S'getHandle(${1:This}) $2' -p130945 -tp130946 -a(S'getHelpText/1' -p130947 -S'getHelpText(${1:This}) $2' -p130948 -tp130949 -a(S'getId/1' -p130950 -S'getId(${1:This}) $2' -p130951 -tp130952 -a(S'getLabel/1' -p130953 -S'getLabel(${1:This}) $2' -p130954 -tp130955 -a(S'getMaxSize/1' -p130956 -S'getMaxSize(${1:This}) $2' -p130957 -tp130958 -a(S'getMinSize/1' -p130959 -S'getMinSize(${1:This}) $2' -p130960 -tp130961 -a(S'getMinimumPaneSize/1' -p130962 -S'getMinimumPaneSize(${1:This}) $2' -p130963 -tp130964 -a(S'getName/1' -p130965 -S'getName(${1:This}) $2' -p130966 -tp130967 -a(S'getParent/1' -p130968 -S'getParent(${1:This}) $2' -p130969 -tp130970 -a(S'getPosition/1' -p130971 -S'getPosition(${1:This}) $2' -p130972 -tp130973 -a(S'getRect/1' -p130974 -S'getRect(${1:This}) $2' -p130975 -tp130976 -a(S'getSashGravity/1' -p130977 -S'getSashGravity(${1:This}) $2' -p130978 -tp130979 -a(S'getSashPosition/1' -p130980 -S'getSashPosition(${1:This}) $2' -p130981 -tp130982 -a(S'getScreenPosition/1' -p130983 -S'getScreenPosition(${1:This}) $2' -p130984 -tp130985 -a(S'getScreenRect/1' -p130986 -S'getScreenRect(${1:This}) $2' -p130987 -tp130988 -a(S'getScrollPos/2' -p130989 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p130990 -tp130991 -a(S'getScrollRange/2' -p130992 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p130993 -tp130994 -a(S'getScrollThumb/2' -p130995 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p130996 -tp130997 -a(S'getSize/1' -p130998 -S'getSize(${1:This}) $2' -p130999 -tp131000 -a(S'getSizer/1' -p131001 -S'getSizer(${1:This}) $2' -p131002 -tp131003 -a(S'getSplitMode/1' -p131004 -S'getSplitMode(${1:This}) $2' -p131005 -tp131006 -a(S'getTextExtent/2' -p131007 -S'getTextExtent(${1:This}, ${2:String}) $3' -p131008 -tp131009 -a(S'getTextExtent/3' -p131010 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p131011 -tp131012 -a(S'getToolTip/1' -p131013 -S'getToolTip(${1:This}) $2' -p131014 -tp131015 -a(S'getUpdateRegion/1' -p131016 -S'getUpdateRegion(${1:This}) $2' -p131017 -tp131018 -a(S'getVirtualSize/1' -p131019 -S'getVirtualSize(${1:This}) $2' -p131020 -tp131021 -a(S'getWindow1/1' -p131022 -S'getWindow1(${1:This}) $2' -p131023 -tp131024 -a(S'getWindow2/1' -p131025 -S'getWindow2(${1:This}) $2' -p131026 -tp131027 -a(S'getWindowStyleFlag/1' -p131028 -S'getWindowStyleFlag(${1:This}) $2' -p131029 -tp131030 -a(S'getWindowVariant/1' -p131031 -S'getWindowVariant(${1:This}) $2' -p131032 -tp131033 -a(S'hasCapture/1' -p131034 -S'hasCapture(${1:This}) $2' -p131035 -tp131036 -a(S'hasScrollbar/2' -p131037 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p131038 -tp131039 -a(S'hasTransparentBackground/1' -p131040 -S'hasTransparentBackground(${1:This}) $2' -p131041 -tp131042 -a(S'hide/1' -p131043 -S'hide(${1:This}) $2' -p131044 -tp131045 -a(S'inheritAttributes/1' -p131046 -S'inheritAttributes(${1:This}) $2' -p131047 -tp131048 -a(S'initDialog/1' -p131049 -S'initDialog(${1:This}) $2' -p131050 -tp131051 -a(S'initialize/2' -p131052 -S'initialize(${1:This}, ${2:Window}) $3' -p131053 -tp131054 -a(S'invalidateBestSize/1' -p131055 -S'invalidateBestSize(${1:This}) $2' -p131056 -tp131057 -a(S'isEnabled/1' -p131058 -S'isEnabled(${1:This}) $2' -p131059 -tp131060 -a(S'isExposed/2' -p131061 -S'isExposed(${1:This}, ${2:Pt}) $3' -p131062 -tp131063 -a(S'isExposed/3' -p131064 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p131065 -tp131066 -a(S'isExposed/5' -p131067 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p131068 -tp131069 -a(S'isRetained/1' -p131070 -S'isRetained(${1:This}) $2' -p131071 -tp131072 -a(S'isShown/1' -p131073 -S'isShown(${1:This}) $2' -p131074 -tp131075 -a(S'isSplit/1' -p131076 -S'isSplit(${1:This}) $2' -p131077 -tp131078 -a(S'isTopLevel/1' -p131079 -S'isTopLevel(${1:This}) $2' -p131080 -tp131081 -a(S'layout/1' -p131082 -S'layout(${1:This}) $2' -p131083 -tp131084 -a(S'lineDown/1' -p131085 -S'lineDown(${1:This}) $2' -p131086 -tp131087 -a(S'lineUp/1' -p131088 -S'lineUp(${1:This}) $2' -p131089 -tp131090 -a(S'lower/1' -p131091 -S'lower(${1:This}) $2' -p131092 -tp131093 -a(S'makeModal/1' -p131094 -S'makeModal(${1:This}) $2' -p131095 -tp131096 -a(S'makeModal/2' -p131097 -S'makeModal(${1:This}, ${2:Options}) $3' -p131098 -tp131099 -a(S'move/2' -p131100 -S'move(${1:This}, ${2:Pt}) $3' -p131101 -tp131102 -a(S'move/3' -p131103 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p131104 -tp131105 -a(S'move/4' -p131106 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p131107 -tp131108 -a(S'moveAfterInTabOrder/2' -p131109 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p131110 -tp131111 -a(S'moveBeforeInTabOrder/2' -p131112 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p131113 -tp131114 -a(S'navigate/1' -p131115 -S'navigate(${1:This}) $2' -p131116 -tp131117 -a(S'navigate/2' -p131118 -S'navigate(${1:This}, ${2:Options}) $3' -p131119 -tp131120 -a(S'new/0' -p131121 -S'new() $1' -p131122 -tp131123 -a(S'new/1' -p131124 -S'new(${1:Parent}) $2' -p131125 -tp131126 -a(S'new/2' -p131127 -S'new(${1:Parent}, ${2:Param2}) $3' -p131128 -tp131129 -a(S'pageDown/1' -p131130 -S'pageDown(${1:This}) $2' -p131131 -tp131132 -a(S'pageUp/1' -p131133 -S'pageUp(${1:This}) $2' -p131134 -tp131135 -a(S'parent_class/1' -p131136 -S'parent_class(${1:Param1}) $2' -p131137 -tp131138 -a(S'popEventHandler/1' -p131139 -S'popEventHandler(${1:This}) $2' -p131140 -tp131141 -a(S'popEventHandler/2' -p131142 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p131143 -tp131144 -a(S'popupMenu/2' -p131145 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p131146 -tp131147 -a(S'popupMenu/3' -p131148 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p131149 -tp131150 -a(S'popupMenu/4' -p131151 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p131152 -tp131153 -a(S'raise/1' -p131154 -S'raise(${1:This}) $2' -p131155 -tp131156 -a(S'refresh/1' -p131157 -S'refresh(${1:This}) $2' -p131158 -tp131159 -a(S'refresh/2' -p131160 -S'refresh(${1:This}, ${2:Options}) $3' -p131161 -tp131162 -a(S'refreshRect/2' -p131163 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p131164 -tp131165 -a(S'refreshRect/3' -p131166 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p131167 -tp131168 -a(S'releaseMouse/1' -p131169 -S'releaseMouse(${1:This}) $2' -p131170 -tp131171 -a(S'removeChild/2' -p131172 -S'removeChild(${1:This}, ${2:Child}) $3' -p131173 -tp131174 -a(S'reparent/2' -p131175 -S'reparent(${1:This}, ${2:NewParent}) $3' -p131176 -tp131177 -a(S'replaceWindow/3' -p131178 -S'replaceWindow(${1:This}, ${2:WinOld}, ${3:WinNew}) $4' -p131179 -tp131180 -a(S'screenToClient/1' -p131181 -S'screenToClient(${1:This}) $2' -p131182 -tp131183 -a(S'screenToClient/2' -p131184 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p131185 -tp131186 -a(S'scrollLines/2' -p131187 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p131188 -tp131189 -a(S'scrollPages/2' -p131190 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p131191 -tp131192 -a(S'scrollWindow/3' -p131193 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p131194 -tp131195 -a(S'scrollWindow/4' -p131196 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p131197 -tp131198 -a(S'setAcceleratorTable/2' -p131199 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p131200 -tp131201 -a(S'setAutoLayout/2' -p131202 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p131203 -tp131204 -a(S'setBackgroundColour/2' -p131205 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p131206 -tp131207 -a(S'setBackgroundStyle/2' -p131208 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p131209 -tp131210 -a(S'setCaret/2' -p131211 -S'setCaret(${1:This}, ${2:Caret}) $3' -p131212 -tp131213 -a(S'setClientSize/2' -p131214 -S'setClientSize(${1:This}, ${2:Size}) $3' -p131215 -tp131216 -a(S'setClientSize/3' -p131217 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p131218 -tp131219 -a(S'setContainingSizer/2' -p131220 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p131221 -tp131222 -a(S'setCursor/2' -p131223 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p131224 -tp131225 -a(S'setDropTarget/2' -p131226 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p131227 -tp131228 -a(S'setExtraStyle/2' -p131229 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p131230 -tp131231 -a(S'setFocus/1' -p131232 -S'setFocus(${1:This}) $2' -p131233 -tp131234 -a(S'setFocusFromKbd/1' -p131235 -S'setFocusFromKbd(${1:This}) $2' -p131236 -tp131237 -a(S'setFont/2' -p131238 -S'setFont(${1:This}, ${2:Font}) $3' -p131239 -tp131240 -a(S'setForegroundColour/2' -p131241 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p131242 -tp131243 -a(S'setHelpText/2' -p131244 -S'setHelpText(${1:This}, ${2:Text}) $3' -p131245 -tp131246 -a(S'setId/2' -p131247 -S'setId(${1:This}, ${2:Winid}) $3' -p131248 -tp131249 -a(S'setLabel/2' -p131250 -S'setLabel(${1:This}, ${2:Label}) $3' -p131251 -tp131252 -a(S'setMaxSize/2' -p131253 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p131254 -tp131255 -a(S'setMinSize/2' -p131256 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p131257 -tp131258 -a(S'setMinimumPaneSize/2' -p131259 -S'setMinimumPaneSize(${1:This}, ${2:Min}) $3' -p131260 -tp131261 -a(S'setName/2' -p131262 -S'setName(${1:This}, ${2:Name}) $3' -p131263 -tp131264 -a(S'setOwnBackgroundColour/2' -p131265 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p131266 -tp131267 -a(S'setOwnFont/2' -p131268 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p131269 -tp131270 -a(S'setOwnForegroundColour/2' -p131271 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p131272 -tp131273 -a(S'setPalette/2' -p131274 -S'setPalette(${1:This}, ${2:Pal}) $3' -p131275 -tp131276 -a(S'setSashGravity/2' -p131277 -S'setSashGravity(${1:This}, ${2:Gravity}) $3' -p131278 -tp131279 -a(S'setSashPosition/2' -p131280 -S'setSashPosition(${1:This}, ${2:Position}) $3' -p131281 -tp131282 -a(S'setSashPosition/3' -p131283 -S'setSashPosition(${1:This}, ${2:Position}, ${3:Param3}) $4' -p131284 -tp131285 -a(S'setSashSize/2' -p131286 -S'setSashSize(${1:This}, ${2:Width}) $3' -p131287 -tp131288 -a(S'setScrollPos/3' -p131289 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p131290 -tp131291 -a(S'setScrollPos/4' -p131292 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p131293 -tp131294 -a(S'setScrollbar/5' -p131295 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p131296 -tp131297 -a(S'setScrollbar/6' -p131298 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p131299 -tp131300 -a(S'setSize/2' -p131301 -S'setSize(${1:This}, ${2:Rect}) $3' -p131302 -tp131303 -a(S'setSize/3' -p131304 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p131305 -tp131306 -a(S'setSize/5' -p131307 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p131308 -tp131309 -a(S'setSize/6' -p131310 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p131311 -tp131312 -a(S'setSizeHints/2' -p131313 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p131314 -tp131315 -a(S'setSizeHints/3' -p131316 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p131317 -tp131318 -a(S'setSizeHints/4' -p131319 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p131320 -tp131321 -a(S'setSizer/2' -p131322 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p131323 -tp131324 -a(S'setSizer/3' -p131325 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p131326 -tp131327 -a(S'setSizerAndFit/2' -p131328 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p131329 -tp131330 -a(S'setSizerAndFit/3' -p131331 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p131332 -tp131333 -a(S'setSplitMode/2' -p131334 -S'setSplitMode(${1:This}, ${2:Mode}) $3' -p131335 -tp131336 -a(S'setThemeEnabled/2' -p131337 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p131338 -tp131339 -a(S'setToolTip/2' -p131340 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p131341 -tp131342 -a(S'setVirtualSize/2' -p131343 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p131344 -tp131345 -a(S'setVirtualSize/3' -p131346 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p131347 -tp131348 -a(S'setVirtualSizeHints/2' -p131349 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p131350 -tp131351 -a(S'setVirtualSizeHints/3' -p131352 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p131353 -tp131354 -a(S'setVirtualSizeHints/4' -p131355 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p131356 -tp131357 -a(S'setWindowStyle/2' -p131358 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p131359 -tp131360 -a(S'setWindowStyleFlag/2' -p131361 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p131362 -tp131363 -a(S'setWindowVariant/2' -p131364 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p131365 -tp131366 -a(S'shouldInheritColours/1' -p131367 -S'shouldInheritColours(${1:This}) $2' -p131368 -tp131369 -a(S'show/1' -p131370 -S'show(${1:This}) $2' -p131371 -tp131372 -a(S'show/2' -p131373 -S'show(${1:This}, ${2:Options}) $3' -p131374 -tp131375 -a(S'splitHorizontally/3' -p131376 -S'splitHorizontally(${1:This}, ${2:Window1}, ${3:Window2}) $4' -p131377 -tp131378 -a(S'splitHorizontally/4' -p131379 -S'splitHorizontally(${1:This}, ${2:Window1}, ${3:Window2}, ${4:Param4}) $5' -p131380 -tp131381 -a(S'splitVertically/3' -p131382 -S'splitVertically(${1:This}, ${2:Window1}, ${3:Window2}) $4' -p131383 -tp131384 -a(S'splitVertically/4' -p131385 -S'splitVertically(${1:This}, ${2:Window1}, ${3:Window2}, ${4:Param4}) $5' -p131386 -tp131387 -a(S'thaw/1' -p131388 -S'thaw(${1:This}) $2' -p131389 -tp131390 -a(S'transferDataFromWindow/1' -p131391 -S'transferDataFromWindow(${1:This}) $2' -p131392 -tp131393 -a(S'transferDataToWindow/1' -p131394 -S'transferDataToWindow(${1:This}) $2' -p131395 -tp131396 -a(S'unsplit/1' -p131397 -S'unsplit(${1:This}) $2' -p131398 -tp131399 -a(S'unsplit/2' -p131400 -S'unsplit(${1:This}, ${2:Param2}) $3' -p131401 -tp131402 -a(S'update/1' -p131403 -S'update(${1:This}) $2' -p131404 -tp131405 -a(S'updateSize/1' -p131406 -S'updateSize(${1:This}) $2' -p131407 -tp131408 -a(S'updateWindowUI/1' -p131409 -S'updateWindowUI(${1:This}) $2' -p131410 -tp131411 -a(S'updateWindowUI/2' -p131412 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p131413 -tp131414 -a(S'validate/1' -p131415 -S'validate(${1:This}) $2' -p131416 -tp131417 -a(S'warpPointer/3' -p131418 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p131419 -tp131420 -asS'CosNotifyFilter_InvalidValue' -p131421 -(lp131422 -(S'id/0' -p131423 -S'id() $1' -p131424 -tp131425 -a(S'name/0' -p131426 -S'name() $1' -p131427 -tp131428 -a(S'tc/0' -p131429 -S'tc() $1' -p131430 -tp131431 -asS'ct_util' -p131432 -(lp131433 -(S'close_connections/0' -p131434 -S'close_connections() $1' -p131435 -tp131436 -a(S'create_table/3' -p131437 -S'create_table(${1:TableName}, ${2:Type}, ${3:KeyPos}) $4' -p131438 -tp131439 -a(S'ct_make_ref/0' -p131440 -S'ct_make_ref() $1' -p131441 -tp131442 -a(S'delete_overridden_silenced_connections/0' -p131443 -S'delete_overridden_silenced_connections() $1' -p131444 -tp131445 -a(S'delete_suite_data/0' -p131446 -S'delete_suite_data() $1' -p131447 -tp131448 -a(S'delete_suite_data/1' -p131449 -S'delete_suite_data(${1:Key}) $2' -p131450 -tp131451 -a(S'delete_testdata/0' -p131452 -S'delete_testdata() $1' -p131453 -tp131454 -a(S'delete_testdata/1' -p131455 -S'delete_testdata(${1:Key}) $2' -p131456 -tp131457 -a(S'does_connection_exist/3' -p131458 -S'does_connection_exist(${1:TargetName}, ${2:Address}, ${3:Callback}) $4' -p131459 -tp131460 -a(S'get_attached/1' -p131461 -S'get_attached(${1:TCPid}) $2' -p131462 -tp131463 -a(S'get_connections/2' -p131464 -S'get_connections(${1:TargetName}, ${2:Callback}) $3' -p131465 -tp131466 -a(S'get_key_from_name/1' -p131467 -S'get_key_from_name(${1:Name}) $2' -p131468 -tp131469 -a(S'get_mode/0' -p131470 -S'get_mode() $1' -p131471 -tp131472 -a(S'get_overridden_silenced_connections/0' -p131473 -S'get_overridden_silenced_connections() $1' -p131474 -tp131475 -a(S'get_profile_data/0' -p131476 -S'get_profile_data() $1' -p131477 -tp131478 -a(S'get_profile_data/1' -p131479 -S'get_profile_data(${1:KeyOrStartDir}) $2' -p131480 -tp131481 -a(S'get_profile_data/2' -p131482 -S'get_profile_data(${1:Key}, ${2:StartDir}) $3' -p131483 -tp131484 -a(S'get_start_dir/0' -p131485 -S'get_start_dir() $1' -p131486 -tp131487 -a(S'get_target_name/1' -p131488 -S'get_target_name(${1:ConnPid}) $2' -p131489 -tp131490 -a(S'get_testdata/1' -p131491 -S'get_testdata(${1:Key}) $2' -p131492 -tp131493 -a(S'get_testdir/2' -p131494 -S'get_testdir(${1:Dir}, ${2:Suite}) $3' -p131495 -tp131496 -a(S'is_silenced/1' -p131497 -S'is_silenced(${1:Conn}) $2' -p131498 -tp131499 -a(S'is_test_dir/1' -p131500 -S'is_test_dir(${1:Dir}) $2' -p131501 -tp131502 -a(S'kill_attached/2' -p131503 -S'kill_attached(${1:TCPid}, ${2:AttPid}) $3' -p131504 -tp131505 -a(S'listenv/1' -p131506 -S'listenv(${1:Telnet}) $2' -p131507 -tp131508 -a(S'match_delete_suite_data/1' -p131509 -S'match_delete_suite_data(${1:KeyPat}) $2' -p131510 -tp131511 -a(S'open_url/3' -p131512 -S'open_url(${1:Prog}, ${2:Args}, ${3:URL}) $4' -p131513 -tp131514 -a(S'override_silence_all_connections/0' -p131515 -S'override_silence_all_connections() $1' -p131516 -tp131517 -a(S'override_silence_connections/1' -p131518 -S'override_silence_connections(${1:Conns}) $2' -p131519 -tp131520 -a(S'parse_table/1' -p131521 -S'parse_table(${1:Data}) $2' -p131522 -tp131523 -a(S'read_opts/0' -p131524 -S'read_opts() $1' -p131525 -tp131526 -a(S'read_suite_data/1' -p131527 -S'read_suite_data(${1:Key}) $2' -p131528 -tp131529 -a(S'register_connection/4' -p131530 -S'register_connection(${1:TargetName}, ${2:Address}, ${3:Callback}, ${4:Handle}) $5' -p131531 -tp131532 -a(S'reset_cwd/0' -p131533 -S'reset_cwd() $1' -p131534 -tp131535 -a(S'reset_silent_connections/0' -p131536 -S'reset_silent_connections() $1' -p131537 -tp131538 -a(S'save_suite_data/2' -p131539 -S'save_suite_data(${1:Key}, ${2:Value}) $3' -p131540 -tp131541 -a(S'save_suite_data/3' -p131542 -S'save_suite_data(${1:Key}, ${2:Name}, ${3:Value}) $4' -p131543 -tp131544 -a(S'save_suite_data_async/2' -p131545 -S'save_suite_data_async(${1:Key}, ${2:Value}) $3' -p131546 -tp131547 -a(S'save_suite_data_async/3' -p131548 -S'save_suite_data_async(${1:Key}, ${2:Name}, ${3:Value}) $4' -p131549 -tp131550 -a(S'set_cwd/1' -p131551 -S'set_cwd(${1:Dir}) $2' -p131552 -tp131553 -a(S'set_testdata/1' -p131554 -S'set_testdata(${1:TestData}) $2' -p131555 -tp131556 -a(S'set_testdata_async/1' -p131557 -S'set_testdata_async(${1:TestData}) $2' -p131558 -tp131559 -a(S'silence_all_connections/0' -p131560 -S'silence_all_connections() $1' -p131561 -tp131562 -a(S'silence_connections/1' -p131563 -S'silence_connections(${1:Conns}) $2' -p131564 -tp131565 -a(S'start/0' -p131566 -S'start() $1' -p131567 -tp131568 -a(S'start/1' -p131569 -S'start(${1:LogDir}) $2' -p131570 -tp131571 -a(S'start/2' -p131572 -S'start(${1:Mode}, ${2:LogDir}) $3' -p131573 -tp131574 -a(S'stop/1' -p131575 -S'stop(${1:Info}) $2' -p131576 -tp131577 -a(S'unregister_connection/1' -p131578 -S'unregister_connection(${1:Handle}) $2' -p131579 -tp131580 -a(S'update_last_run_index/0' -p131581 -S'update_last_run_index() $1' -p131582 -tp131583 -a(S'update_testdata/2' -p131584 -S'update_testdata(${1:Key}, ${2:Fun}) $3' -p131585 -tp131586 -a(S'warn_duplicates/1' -p131587 -S'warn_duplicates(${1:Suites}) $2' -p131588 -tp131589 -asS'cosNotification_Filter' -p131590 -(lp131591 -(S'check_types/1' -p131592 -S'check_types(${1:Types}) $2' -p131593 -tp131594 -a(S'create_filter/1' -p131595 -S'create_filter(${1:Str}) $2' -p131596 -tp131597 -a(S'eval/1' -p131598 -S'eval(${1:Tree}) $2' -p131599 -tp131600 -a(S'eval/2' -p131601 -S'eval(${1:Lit}, ${2:Env}) $3' -p131602 -tp131603 -a(S'match_types/3' -p131604 -S'match_types(${1:Domain}, ${2:Type}, ${3:Param3}) $4' -p131605 -tp131606 -a(S'validate_types/1' -p131607 -S'validate_types(${1:Param1}) $2' -p131608 -tp131609 -asS'ic_java_type' -p131610 -(lp131611 -(S'getFullType/3' -p131612 -S'getFullType(${1:G}, ${2:N}, ${3:T}) $4' -p131613 -tp131614 -a(S'getFullType/4' -p131615 -S'getFullType(${1:G}, ${2:N}, ${3:X}, ${4:T}) $5' -p131616 -tp131617 -a(S'getHolderType/3' -p131618 -S'getHolderType(${1:G}, ${2:N}, ${3:S}) $4' -p131619 -tp131620 -a(S'getMarshalType/4' -p131621 -S'getMarshalType(${1:G}, ${2:N}, ${3:Param3}, ${4:S}) $5' -p131622 -tp131623 -a(S'getParamType/4' -p131624 -S'getParamType(${1:G}, ${2:N}, ${3:S}, ${4:Param4}) $5' -p131625 -tp131626 -a(S'getType/3' -p131627 -S'getType(${1:G}, ${2:N}, ${3:T}) $4' -p131628 -tp131629 -a(S'getUnmarshalType/4' -p131630 -S'getUnmarshalType(${1:G}, ${2:N}, ${3:X}, ${4:S}) $5' -p131631 -tp131632 -a(S'getdim/1' -p131633 -S'getdim(${1:Param1}) $2' -p131634 -tp131635 -a(S'inlinedTypes/2' -p131636 -S'inlinedTypes(${1:PkgName}, ${2:Type}) $3' -p131637 -tp131638 -a(S'isBasicType/1' -p131639 -S'isBasicType(${1:Type}) $2' -p131640 -tp131641 -a(S'isBasicType/3' -p131642 -S'isBasicType(${1:G}, ${2:N}, ${3:X}) $4' -p131643 -tp131644 -a(S'isIntegerType/1' -p131645 -S'isIntegerType(${1:Type}) $2' -p131646 -tp131647 -a(S'isIntegerType/3' -p131648 -S'isIntegerType(${1:Param1}, ${2:Param2}, ${3:Type}) $4' -p131649 -tp131650 -a(S'isTermType/3' -p131651 -S'isTermType(${1:G}, ${2:N}, ${3:T}) $4' -p131652 -tp131653 -a(S'marshalFun/4' -p131654 -S'marshalFun(${1:G}, ${2:N}, ${3:X}, ${4:Type}) $5' -p131655 -tp131656 -a(S'unMarshalFun/4' -p131657 -S'unMarshalFun(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:S}) $5' -p131658 -tp131659 -asS'orber_ifr_attributedef' -p131660 -(lp131661 -(S"'_get_absolute_name'/1" -p131662 -S"'_get_absolute_name'() $1" -p131663 -tp131664 -a(S"'_get_containing_repository'/1" -p131665 -S"'_get_containing_repository'() $1" -p131666 -tp131667 -a(S"'_get_def_kind'/1" -p131668 -S"'_get_def_kind'() $1" -p131669 -tp131670 -a(S"'_get_defined_in'/1" -p131671 -S"'_get_defined_in'() $1" -p131672 -tp131673 -a(S"'_get_id'/1" -p131674 -S"'_get_id'() $1" -p131675 -tp131676 -a(S"'_get_mode'/1" -p131677 -S"'_get_mode'() $1" -p131678 -tp131679 -a(S"'_get_name'/1" -p131680 -S"'_get_name'() $1" -p131681 -tp131682 -a(S"'_get_type'/1" -p131683 -S"'_get_type'() $1" -p131684 -tp131685 -a(S"'_get_type_def'/1" -p131686 -S"'_get_type_def'() $1" -p131687 -tp131688 -a(S"'_get_version'/1" -p131689 -S"'_get_version'() $1" -p131690 -tp131691 -a(S"'_set_id'/2" -p131692 -S"'_set_id'() $1" -p131693 -tp131694 -a(S"'_set_mode'/2" -p131695 -S"'_set_mode'() $1" -p131696 -tp131697 -a(S"'_set_name'/2" -p131698 -S"'_set_name'() $1" -p131699 -tp131700 -a(S"'_set_type_def'/2" -p131701 -S"'_set_type_def'() $1" -p131702 -tp131703 -a(S"'_set_version'/2" -p131704 -S"'_set_version'() $1" -p131705 -tp131706 -a(S'cleanup_for_destroy/1' -p131707 -S'cleanup_for_destroy() $1' -p131708 -tp131709 -a(S'describe/1' -p131710 -S'describe() $1' -p131711 -tp131712 -a(S'destroy/1' -p131713 -S'destroy() $1' -p131714 -tp131715 -a(S'move/4' -p131716 -S'move() $1' -p131717 -tp131718 -asS'asn1ct' -p131719 -(lp131720 -(S'add_generated_refed_func/1' -p131721 -S'add_generated_refed_func(${1:Data}) $2' -p131722 -tp131723 -a(S'add_tobe_refed_func/1' -p131724 -S'add_tobe_refed_func(${1:Data}) $2' -p131725 -tp131726 -a(S'compile/1' -p131727 -S'compile(${1:File}) $2' -p131728 -tp131729 -a(S'compile/2' -p131730 -S'compile(${1:File}, ${2:Options}) $3' -p131731 -tp131732 -a(S'compile/3' -p131733 -S'compile(${1:File}, ${2:Param2}, ${3:Options}) $4' -p131734 -tp131735 -a(S'compile_asn/3' -p131736 -S'compile_asn(${1:File}, ${2:OutFile}, ${3:Options}) $4' -p131737 -tp131738 -a(S'compile_asn1/3' -p131739 -S'compile_asn1(${1:File}, ${2:OutFile}, ${3:Options}) $4' -p131740 -tp131741 -a(S'compile_py/3' -p131742 -S'compile_py(${1:File}, ${2:OutFile}, ${3:Options}) $4' -p131743 -tp131744 -a(S'current_sindex/0' -p131745 -S'current_sindex() $1' -p131746 -tp131747 -a(S'decode/3' -p131748 -S'decode(${1:Module}, ${2:Type}, ${3:Bytes}) $4' -p131749 -tp131750 -a(S'encode/2' -p131751 -S'encode(${1:Module}, ${2:Term}) $3' -p131752 -tp131753 -a(S'encode/3' -p131754 -S'encode(${1:Module}, ${2:Type}, ${3:Term}) $4' -p131755 -tp131756 -a(S'error/3' -p131757 -S'error(${1:Format}, ${2:Args}, ${3:S}) $4' -p131758 -tp131759 -a(S'generated_refed_func/1' -p131760 -S'generated_refed_func(${1:Name}) $2' -p131761 -tp131762 -a(S'get_gen_state/0' -p131763 -S'get_gen_state() $1' -p131764 -tp131765 -a(S'get_gen_state_field/1' -p131766 -S'get_gen_state_field(${1:Field}) $2' -p131767 -tp131768 -a(S'get_name_of_def/1' -p131769 -S'get_name_of_def(${1:Param1}) $2' -p131770 -tp131771 -a(S'get_pos_of_def/1' -p131772 -S'get_pos_of_def(${1:Param1}) $2' -p131773 -tp131774 -a(S'get_tobe_refed_func/1' -p131775 -S'get_tobe_refed_func(${1:Name}) $2' -p131776 -tp131777 -a(S'is_function_generated/1' -p131778 -S'is_function_generated(${1:Name}) $2' -p131779 -tp131780 -a(S'latest_sindex/0' -p131781 -S'latest_sindex() $1' -p131782 -tp131783 -a(S'maybe_rename_function/3' -p131784 -S'maybe_rename_function(${1:Mode}, ${2:Name}, ${3:Pattern}) $4' -p131785 -tp131786 -a(S'maybe_saved_sindex/2' -p131787 -S'maybe_saved_sindex(${1:Name}, ${2:Pattern}) $3' -p131788 -tp131789 -a(S'next_namelist_el/0' -p131790 -S'next_namelist_el() $1' -p131791 -tp131792 -a(S'next_refed_func/0' -p131793 -S'next_refed_func() $1' -p131794 -tp131795 -a(S'next_sindex/0' -p131796 -S'next_sindex() $1' -p131797 -tp131798 -a(S'parse_and_save/2' -p131799 -S'parse_and_save(${1:Module}, ${2:S}) $3' -p131800 -tp131801 -a(S'partial_inc_dec_toptype/1' -p131802 -S'partial_inc_dec_toptype(${1:Param1}) $2' -p131803 -tp131804 -a(S'pop_namelist/0' -p131805 -S'pop_namelist() $1' -p131806 -tp131807 -a(S'read_config_data/1' -p131808 -S'read_config_data(${1:Key}) $2' -p131809 -tp131810 -a(S'reset_gen_state/0' -p131811 -S'reset_gen_state() $1' -p131812 -tp131813 -a(S'save_gen_state/1' -p131814 -S'save_gen_state(${1:GenState}) $2' -p131815 -tp131816 -a(S'set_current_sindex/1' -p131817 -S'set_current_sindex(${1:Index}) $2' -p131818 -tp131819 -a(S'start/0' -p131820 -S'start() $1' -p131821 -tp131822 -a(S'start/1' -p131823 -S'start(${1:Includes}) $2' -p131824 -tp131825 -a(S'step_in_constructed/0' -p131826 -S'step_in_constructed() $1' -p131827 -tp131828 -a(S'test/1' -p131829 -S'test(${1:Module}) $2' -p131830 -tp131831 -a(S'test/2' -p131832 -S'test(${1:Module}, ${2:Options}) $3' -p131833 -tp131834 -a(S'test/3' -p131835 -S'test(${1:Module}, ${2:Type}, ${3:Options}) $4' -p131836 -tp131837 -a(S'update_gen_state/2' -p131838 -S'update_gen_state(${1:Field}, ${2:Data}) $3' -p131839 -tp131840 -a(S'update_namelist/1' -p131841 -S'update_namelist(${1:Name}) $2' -p131842 -tp131843 -a(S'value/2' -p131844 -S'value(${1:Module}, ${2:Type}) $3' -p131845 -tp131846 -a(S'value/3' -p131847 -S'value(${1:Module}, ${2:Type}, ${3:Value}) $4' -p131848 -tp131849 -a(S'verbose/3' -p131850 -S'verbose(${1:Format}, ${2:Args}, ${3:S}) $4' -p131851 -tp131852 -a(S'vsn/0' -p131853 -S'vsn() $1' -p131854 -tp131855 -a(S'warning/3' -p131856 -S'warning(${1:Format}, ${2:Args}, ${3:S}) $4' -p131857 -tp131858 -a(S'warning/4' -p131859 -S'warning(${1:Format}, ${2:Args}, ${3:S}, ${4:Reason}) $5' -p131860 -tp131861 -asS'diameter_session' -p131862 -(lp131863 -(S'init/0' -p131864 -S'init() $1' -p131865 -tp131866 -a(S'origin_state_id/0' -p131867 -S'origin_state_id() $1' -p131868 -tp131869 -a(S'sequence/0' -p131870 -S'sequence() $1' -p131871 -tp131872 -a(S'session_id/1' -p131873 -S'session_id(${1:Host}) $2' -p131874 -tp131875 -asS'eunit_lib' -p131876 -(lp131877 -(S'command/1' -p131878 -S'command(${1:Cmd}) $2' -p131879 -tp131880 -a(S'command/2' -p131881 -S'command(${1:Cmd}, ${2:Dir}) $3' -p131882 -tp131883 -a(S'command/3' -p131884 -S'command(${1:Cmd}, ${2:Dir}, ${3:Env}) $4' -p131885 -tp131886 -a(S'consult_file/1' -p131887 -S'consult_file(${1:File}) $2' -p131888 -tp131889 -a(S'dlist_next/1' -p131890 -S'dlist_next(${1:Xs0}) $2' -p131891 -tp131892 -a(S'format_error/1' -p131893 -S'format_error(${1:Param1}) $2' -p131894 -tp131895 -a(S'format_exception/1' -p131896 -S'format_exception(${1:Exception}) $2' -p131897 -tp131898 -a(S'format_exception/2' -p131899 -S'format_exception(${1:Term}, ${2:Depth}) $3' -p131900 -tp131901 -a(S'format_exit_term/1' -p131902 -S'format_exit_term(${1:Term}) $2' -p131903 -tp131904 -a(S'fun_parent/1' -p131905 -S'fun_parent(${1:F}) $2' -p131906 -tp131907 -a(S'is_string/1' -p131908 -S'is_string(${1:Param1}) $2' -p131909 -tp131910 -a(S'list_dir/1' -p131911 -S'list_dir(${1:Dir}) $2' -p131912 -tp131913 -a(S'split_node/1' -p131914 -S'split_node(${1:N}) $2' -p131915 -tp131916 -a(S'trie_match/2' -p131917 -S'trie_match(${1:Param1}, ${2:T}) $3' -p131918 -tp131919 -a(S'trie_new/0' -p131920 -S'trie_new() $1' -p131921 -tp131922 -a(S'trie_store/2' -p131923 -S'trie_store(${1:Param1}, ${2:T}) $3' -p131924 -tp131925 -a(S'uniq/1' -p131926 -S'uniq(${1:Param1}) $2' -p131927 -tp131928 -asS'si' -p131929 -(lp131930 -(S'abbrevs/0' -p131931 -S'abbrevs() $1' -p131932 -tp131933 -a(S'h/0' -p131934 -S'h() $1' -p131935 -tp131936 -a(S'help/0' -p131937 -S'help() $1' -p131938 -tp131939 -a(S'pi/1' -p131940 -S'pi(${1:XPid}) $2' -p131941 -tp131942 -a(S'pi/2' -p131943 -S'pi(${1:Opt}, ${2:XPid}) $3' -p131944 -tp131945 -a(S'pi/3' -p131946 -S'pi(${1:A}, ${2:B}, ${3:C}) $4' -p131947 -tp131948 -a(S'pi/4' -p131949 -S'pi(${1:Opt}, ${2:A}, ${3:B}, ${4:C}) $5' -p131950 -tp131951 -a(S'pi_impl/2' -p131952 -S'pi_impl(${1:Opt}, ${2:XPid}) $3' -p131953 -tp131954 -a(S'ppi/1' -p131955 -S'ppi(${1:XPid}) $2' -p131956 -tp131957 -a(S'ppi/3' -p131958 -S'ppi(${1:A}, ${2:B}, ${3:C}) $4' -p131959 -tp131960 -a(S'start/0' -p131961 -S'start() $1' -p131962 -tp131963 -a(S'start/1' -p131964 -S'start(${1:Options}) $2' -p131965 -tp131966 -a(S'start_log/1' -p131967 -S'start_log(${1:FileName}) $2' -p131968 -tp131969 -a(S'stop/0' -p131970 -S'stop() $1' -p131971 -tp131972 -a(S'stop_log/0' -p131973 -S'stop_log() $1' -p131974 -tp131975 -a(S'test/0' -p131976 -S'test() $1' -p131977 -tp131978 -asS'orber_ifr_stringdef' -p131979 -(lp131980 -(S"'_get_bound'/1" -p131981 -S"'_get_bound'() $1" -p131982 -tp131983 -a(S"'_get_def_kind'/1" -p131984 -S"'_get_def_kind'() $1" -p131985 -tp131986 -a(S"'_get_type'/1" -p131987 -S"'_get_type'() $1" -p131988 -tp131989 -a(S"'_set_bound'/2" -p131990 -S"'_set_bound'() $1" -p131991 -tp131992 -a(S'cleanup_for_destroy/1' -p131993 -S'cleanup_for_destroy() $1' -p131994 -tp131995 -a(S'destroy/1' -p131996 -S'destroy() $1' -p131997 -tp131998 -asS'orber_ifr' -p131999 -(lp132000 -(S"'AliasDef__get_absolute_name'/1" -p132001 -S"'AliasDef__get_absolute_name'(${1:Objref}) $2" -p132002 -tp132003 -a(S"'AliasDef__get_containing_repository'/1" -p132004 -S"'AliasDef__get_containing_repository'(${1:Objref}) $2" -p132005 -tp132006 -a(S"'AliasDef__get_def_kind'/1" -p132007 -S"'AliasDef__get_def_kind'(${1:Objref}) $2" -p132008 -tp132009 -a(S"'AliasDef__get_defined_in'/1" -p132010 -S"'AliasDef__get_defined_in'(${1:Objref}) $2" -p132011 -tp132012 -a(S"'AliasDef__get_id'/1" -p132013 -S"'AliasDef__get_id'(${1:Objref}) $2" -p132014 -tp132015 -a(S"'AliasDef__get_name'/1" -p132016 -S"'AliasDef__get_name'(${1:Objref}) $2" -p132017 -tp132018 -a(S"'AliasDef__get_original_type_def'/1" -p132019 -S"'AliasDef__get_original_type_def'(${1:Objref}) $2" -p132020 -tp132021 -a(S"'AliasDef__get_type'/1" -p132022 -S"'AliasDef__get_type'(${1:Objref}) $2" -p132023 -tp132024 -a(S"'AliasDef__get_version'/1" -p132025 -S"'AliasDef__get_version'(${1:Objref}) $2" -p132026 -tp132027 -a(S"'AliasDef__set_id'/2" -p132028 -S"'AliasDef__set_id'(${1:Objref}, ${2:Id}) $3" -p132029 -tp132030 -a(S"'AliasDef__set_name'/2" -p132031 -S"'AliasDef__set_name'(${1:Objref}, ${2:Name}) $3" -p132032 -tp132033 -a(S"'AliasDef__set_original_type_def'/2" -p132034 -S"'AliasDef__set_original_type_def'(${1:Objref}, ${2:TypeDef}) $3" -p132035 -tp132036 -a(S"'AliasDef__set_version'/2" -p132037 -S"'AliasDef__set_version'(${1:Objref}, ${2:Version}) $3" -p132038 -tp132039 -a(S"'AliasDef_describe'/1" -p132040 -S"'AliasDef_describe'(${1:Objref}) $2" -p132041 -tp132042 -a(S"'AliasDef_destroy'/1" -p132043 -S"'AliasDef_destroy'(${1:Objref}) $2" -p132044 -tp132045 -a(S"'AliasDef_move'/4" -p132046 -S"'AliasDef_move'(${1:Objref}, ${2:New_container}, ${3:New_name}, ${4:New_version}) $5" -p132047 -tp132048 -a(S"'ArrayDef__get_def_kind'/1" -p132049 -S"'ArrayDef__get_def_kind'(${1:Objref}) $2" -p132050 -tp132051 -a(S"'ArrayDef__get_element_type'/1" -p132052 -S"'ArrayDef__get_element_type'(${1:Objref}) $2" -p132053 -tp132054 -a(S"'ArrayDef__get_element_type_def'/1" -p132055 -S"'ArrayDef__get_element_type_def'(${1:Objref}) $2" -p132056 -tp132057 -a(S"'ArrayDef__get_length'/1" -p132058 -S"'ArrayDef__get_length'(${1:Objref}) $2" -p132059 -tp132060 -a(S"'ArrayDef__get_type'/1" -p132061 -S"'ArrayDef__get_type'(${1:Objref}) $2" -p132062 -tp132063 -a(S"'ArrayDef__set_element_type_def'/2" -p132064 -S"'ArrayDef__set_element_type_def'(${1:Objref}, ${2:TypeDef}) $3" -p132065 -tp132066 -a(S"'ArrayDef__set_length'/2" -p132067 -S"'ArrayDef__set_length'(${1:Objref}, ${2:Length}) $3" -p132068 -tp132069 -a(S"'ArrayDef_destroy'/1" -p132070 -S"'ArrayDef_destroy'(${1:Objref}) $2" -p132071 -tp132072 -a(S"'AttributeDef__get_absolute_name'/1" -p132073 -S"'AttributeDef__get_absolute_name'(${1:Objref}) $2" -p132074 -tp132075 -a(S"'AttributeDef__get_containing_repository'/1" -p132076 -S"'AttributeDef__get_containing_repository'(${1:Objref}) $2" -p132077 -tp132078 -a(S"'AttributeDef__get_def_kind'/1" -p132079 -S"'AttributeDef__get_def_kind'(${1:Objref}) $2" -p132080 -tp132081 -a(S"'AttributeDef__get_defined_in'/1" -p132082 -S"'AttributeDef__get_defined_in'(${1:Objref}) $2" -p132083 -tp132084 -a(S"'AttributeDef__get_id'/1" -p132085 -S"'AttributeDef__get_id'(${1:Objref}) $2" -p132086 -tp132087 -a(S"'AttributeDef__get_mode'/1" -p132088 -S"'AttributeDef__get_mode'(${1:Objref}) $2" -p132089 -tp132090 -a(S"'AttributeDef__get_name'/1" -p132091 -S"'AttributeDef__get_name'(${1:Objref}) $2" -p132092 -tp132093 -a(S"'AttributeDef__get_type'/1" -p132094 -S"'AttributeDef__get_type'(${1:Objref}) $2" -p132095 -tp132096 -a(S"'AttributeDef__get_type_def'/1" -p132097 -S"'AttributeDef__get_type_def'(${1:Objref}) $2" -p132098 -tp132099 -a(S"'AttributeDef__get_version'/1" -p132100 -S"'AttributeDef__get_version'(${1:Objref}) $2" -p132101 -tp132102 -a(S"'AttributeDef__set_id'/2" -p132103 -S"'AttributeDef__set_id'(${1:Objref}, ${2:Id}) $3" -p132104 -tp132105 -a(S"'AttributeDef__set_mode'/2" -p132106 -S"'AttributeDef__set_mode'(${1:Objref}, ${2:Mode}) $3" -p132107 -tp132108 -a(S"'AttributeDef__set_name'/2" -p132109 -S"'AttributeDef__set_name'(${1:Objref}, ${2:Name}) $3" -p132110 -tp132111 -a(S"'AttributeDef__set_type_def'/2" -p132112 -S"'AttributeDef__set_type_def'(${1:Objref}, ${2:TypeDef}) $3" -p132113 -tp132114 -a(S"'AttributeDef__set_version'/2" -p132115 -S"'AttributeDef__set_version'(${1:Objref}, ${2:Version}) $3" -p132116 -tp132117 -a(S"'AttributeDef_describe'/1" -p132118 -S"'AttributeDef_describe'(${1:Objref}) $2" -p132119 -tp132120 -a(S"'AttributeDef_destroy'/1" -p132121 -S"'AttributeDef_destroy'(${1:Objref}) $2" -p132122 -tp132123 -a(S"'AttributeDef_move'/4" -p132124 -S"'AttributeDef_move'(${1:Objref}, ${2:New_container}, ${3:New_name}, ${4:New_version}) $5" -p132125 -tp132126 -a(S"'ConstantDef__get_absolute_name'/1" -p132127 -S"'ConstantDef__get_absolute_name'(${1:Objref}) $2" -p132128 -tp132129 -a(S"'ConstantDef__get_containing_repository'/1" -p132130 -S"'ConstantDef__get_containing_repository'(${1:Objref}) $2" -p132131 -tp132132 -a(S"'ConstantDef__get_def_kind'/1" -p132133 -S"'ConstantDef__get_def_kind'(${1:Objref}) $2" -p132134 -tp132135 -a(S"'ConstantDef__get_defined_in'/1" -p132136 -S"'ConstantDef__get_defined_in'(${1:Objref}) $2" -p132137 -tp132138 -a(S"'ConstantDef__get_id'/1" -p132139 -S"'ConstantDef__get_id'(${1:Objref}) $2" -p132140 -tp132141 -a(S"'ConstantDef__get_name'/1" -p132142 -S"'ConstantDef__get_name'(${1:Objref}) $2" -p132143 -tp132144 -a(S"'ConstantDef__get_type'/1" -p132145 -S"'ConstantDef__get_type'(${1:Objref}) $2" -p132146 -tp132147 -a(S"'ConstantDef__get_type_def'/1" -p132148 -S"'ConstantDef__get_type_def'(${1:Objref}) $2" -p132149 -tp132150 -a(S"'ConstantDef__get_value'/1" -p132151 -S"'ConstantDef__get_value'(${1:Objref}) $2" -p132152 -tp132153 -a(S"'ConstantDef__get_version'/1" -p132154 -S"'ConstantDef__get_version'(${1:Objref}) $2" -p132155 -tp132156 -a(S"'ConstantDef__set_id'/2" -p132157 -S"'ConstantDef__set_id'(${1:Objref}, ${2:Id}) $3" -p132158 -tp132159 -a(S"'ConstantDef__set_name'/2" -p132160 -S"'ConstantDef__set_name'(${1:Objref}, ${2:Name}) $3" -p132161 -tp132162 -a(S"'ConstantDef__set_type_def'/2" -p132163 -S"'ConstantDef__set_type_def'(${1:Objref}, ${2:TypeDef}) $3" -p132164 -tp132165 -a(S"'ConstantDef__set_value'/2" -p132166 -S"'ConstantDef__set_value'(${1:Objref}, ${2:Value}) $3" -p132167 -tp132168 -a(S"'ConstantDef__set_version'/2" -p132169 -S"'ConstantDef__set_version'(${1:Objref}, ${2:Version}) $3" -p132170 -tp132171 -a(S"'ConstantDef_describe'/1" -p132172 -S"'ConstantDef_describe'(${1:Objref}) $2" -p132173 -tp132174 -a(S"'ConstantDef_destroy'/1" -p132175 -S"'ConstantDef_destroy'(${1:Objref}) $2" -p132176 -tp132177 -a(S"'ConstantDef_move'/4" -p132178 -S"'ConstantDef_move'(${1:Objref}, ${2:New_container}, ${3:New_name}, ${4:New_version}) $5" -p132179 -tp132180 -a(S"'Contained__get_absolute_name'/1" -p132181 -S"'Contained__get_absolute_name'(${1:Objref}) $2" -p132182 -tp132183 -a(S"'Contained__get_containing_repository'/1" -p132184 -S"'Contained__get_containing_repository'(${1:Objref}) $2" -p132185 -tp132186 -a(S"'Contained__get_def_kind'/1" -p132187 -S"'Contained__get_def_kind'(${1:Objref}) $2" -p132188 -tp132189 -a(S"'Contained__get_defined_in'/1" -p132190 -S"'Contained__get_defined_in'(${1:Objref}) $2" -p132191 -tp132192 -a(S"'Contained__get_id'/1" -p132193 -S"'Contained__get_id'(${1:Objref}) $2" -p132194 -tp132195 -a(S"'Contained__get_name'/1" -p132196 -S"'Contained__get_name'(${1:Objref}) $2" -p132197 -tp132198 -a(S"'Contained__get_version'/1" -p132199 -S"'Contained__get_version'(${1:Objref}) $2" -p132200 -tp132201 -a(S"'Contained__set_id'/2" -p132202 -S"'Contained__set_id'(${1:Objref}, ${2:Id}) $3" -p132203 -tp132204 -a(S"'Contained__set_name'/2" -p132205 -S"'Contained__set_name'(${1:Objref}, ${2:Name}) $3" -p132206 -tp132207 -a(S"'Contained__set_version'/2" -p132208 -S"'Contained__set_version'(${1:Objref}, ${2:Version}) $3" -p132209 -tp132210 -a(S"'Contained_describe'/1" -p132211 -S"'Contained_describe'(${1:Objref}) $2" -p132212 -tp132213 -a(S"'Contained_move'/4" -p132214 -S"'Contained_move'(${1:Objref}, ${2:New_container}, ${3:New_name}, ${4:New_version}) $5" -p132215 -tp132216 -a(S"'Container__get_def_kind'/1" -p132217 -S"'Container__get_def_kind'(${1:Objref}) $2" -p132218 -tp132219 -a(S"'Container_contents'/3" -p132220 -S"'Container_contents'(${1:Objref}, ${2:Limit_type}, ${3:Exclude_inherited}) $4" -p132221 -tp132222 -a(S"'Container_create_alias'/5" -p132223 -S"'Container_create_alias'(${1:Objref}, ${2:Id}, ${3:Name}, ${4:Version}, ${5:Original_type}) $6" -p132224 -tp132225 -a(S"'Container_create_constant'/6" -p132226 -S"'Container_create_constant'(${1:Objref}, ${2:Id}, ${3:Name}, ${4:Version}, ${5:Type}, ${6:Value}) $7" -p132227 -tp132228 -a(S"'Container_create_enum'/5" -p132229 -S"'Container_create_enum'(${1:Objref}, ${2:Id}, ${3:Name}, ${4:Version}, ${5:Members}) $6" -p132230 -tp132231 -a(S"'Container_create_exception'/5" -p132232 -S"'Container_create_exception'(${1:Objref}, ${2:Id}, ${3:Name}, ${4:Version}, ${5:Members}) $6" -p132233 -tp132234 -a(S"'Container_create_interface'/5" -p132235 -S"'Container_create_interface'(${1:Objref}, ${2:Id}, ${3:Name}, ${4:Version}, ${5:Base_interfaces}) $6" -p132236 -tp132237 -a(S"'Container_create_module'/4" -p132238 -S"'Container_create_module'(${1:Objref}, ${2:Id}, ${3:Name}, ${4:Version}) $5" -p132239 -tp132240 -a(S"'Container_create_struct'/5" -p132241 -S"'Container_create_struct'(${1:Objref}, ${2:Id}, ${3:Name}, ${4:Version}, ${5:Members}) $6" -p132242 -tp132243 -a(S"'Container_create_union'/6" -p132244 -S"'Container_create_union'(${1:Objref}, ${2:Id}, ${3:Name}, ${4:Version}, ${5:Discriminator_type}, ${6:Members}) $7" -p132245 -tp132246 -a(S"'Container_describe_contents'/4" -p132247 -S"'Container_describe_contents'() $1" -p132248 -tp132249 -a(S"'Container_destroy'/1" -p132250 -S"'Container_destroy'(${1:Objref}) $2" -p132251 -tp132252 -a(S"'Container_lookup'/2" -p132253 -S"'Container_lookup'(${1:Objref}, ${2:Search_name}) $3" -p132254 -tp132255 -a(S"'Container_lookup_name'/5" -p132256 -S"'Container_lookup_name'() $1" -p132257 -tp132258 -a(S"'EnumDef__get_absolute_name'/1" -p132259 -S"'EnumDef__get_absolute_name'(${1:Objref}) $2" -p132260 -tp132261 -a(S"'EnumDef__get_containing_repository'/1" -p132262 -S"'EnumDef__get_containing_repository'(${1:Objref}) $2" -p132263 -tp132264 -a(S"'EnumDef__get_def_kind'/1" -p132265 -S"'EnumDef__get_def_kind'(${1:Objref}) $2" -p132266 -tp132267 -a(S"'EnumDef__get_defined_in'/1" -p132268 -S"'EnumDef__get_defined_in'(${1:Objref}) $2" -p132269 -tp132270 -a(S"'EnumDef__get_id'/1" -p132271 -S"'EnumDef__get_id'(${1:Objref}) $2" -p132272 -tp132273 -a(S"'EnumDef__get_members'/1" -p132274 -S"'EnumDef__get_members'(${1:Objref}) $2" -p132275 -tp132276 -a(S"'EnumDef__get_name'/1" -p132277 -S"'EnumDef__get_name'(${1:Objref}) $2" -p132278 -tp132279 -a(S"'EnumDef__get_type'/1" -p132280 -S"'EnumDef__get_type'(${1:Objref}) $2" -p132281 -tp132282 -a(S"'EnumDef__get_version'/1" -p132283 -S"'EnumDef__get_version'(${1:Objref}) $2" -p132284 -tp132285 -a(S"'EnumDef__set_id'/2" -p132286 -S"'EnumDef__set_id'(${1:Objref}, ${2:Id}) $3" -p132287 -tp132288 -a(S"'EnumDef__set_members'/2" -p132289 -S"'EnumDef__set_members'(${1:Objref}, ${2:Members}) $3" -p132290 -tp132291 -a(S"'EnumDef__set_name'/2" -p132292 -S"'EnumDef__set_name'(${1:Objref}, ${2:Name}) $3" -p132293 -tp132294 -a(S"'EnumDef__set_version'/2" -p132295 -S"'EnumDef__set_version'(${1:Objref}, ${2:Version}) $3" -p132296 -tp132297 -a(S"'EnumDef_describe'/1" -p132298 -S"'EnumDef_describe'(${1:Objref}) $2" -p132299 -tp132300 -a(S"'EnumDef_destroy'/1" -p132301 -S"'EnumDef_destroy'(${1:Objref}) $2" -p132302 -tp132303 -a(S"'EnumDef_move'/4" -p132304 -S"'EnumDef_move'(${1:Objref}, ${2:New_container}, ${3:New_name}, ${4:New_version}) $5" -p132305 -tp132306 -a(S"'ExceptionDef__get_absolute_name'/1" -p132307 -S"'ExceptionDef__get_absolute_name'(${1:Objref}) $2" -p132308 -tp132309 -a(S"'ExceptionDef__get_containing_repository'/1" -p132310 -S"'ExceptionDef__get_containing_repository'(${1:Objref}) $2" -p132311 -tp132312 -a(S"'ExceptionDef__get_def_kind'/1" -p132313 -S"'ExceptionDef__get_def_kind'(${1:Objref}) $2" -p132314 -tp132315 -a(S"'ExceptionDef__get_defined_in'/1" -p132316 -S"'ExceptionDef__get_defined_in'(${1:Objref}) $2" -p132317 -tp132318 -a(S"'ExceptionDef__get_id'/1" -p132319 -S"'ExceptionDef__get_id'(${1:Objref}) $2" -p132320 -tp132321 -a(S"'ExceptionDef__get_members'/1" -p132322 -S"'ExceptionDef__get_members'(${1:Objref}) $2" -p132323 -tp132324 -a(S"'ExceptionDef__get_name'/1" -p132325 -S"'ExceptionDef__get_name'(${1:Objref}) $2" -p132326 -tp132327 -a(S"'ExceptionDef__get_type'/1" -p132328 -S"'ExceptionDef__get_type'(${1:Objref}) $2" -p132329 -tp132330 -a(S"'ExceptionDef__get_version'/1" -p132331 -S"'ExceptionDef__get_version'(${1:Objref}) $2" -p132332 -tp132333 -a(S"'ExceptionDef__set_id'/2" -p132334 -S"'ExceptionDef__set_id'(${1:Objref}, ${2:Id}) $3" -p132335 -tp132336 -a(S"'ExceptionDef__set_members'/2" -p132337 -S"'ExceptionDef__set_members'(${1:Objref}, ${2:Members}) $3" -p132338 -tp132339 -a(S"'ExceptionDef__set_name'/2" -p132340 -S"'ExceptionDef__set_name'(${1:Objref}, ${2:Name}) $3" -p132341 -tp132342 -a(S"'ExceptionDef__set_version'/2" -p132343 -S"'ExceptionDef__set_version'(${1:Objref}, ${2:Version}) $3" -p132344 -tp132345 -a(S"'ExceptionDef_describe'/1" -p132346 -S"'ExceptionDef_describe'(${1:Objref}) $2" -p132347 -tp132348 -a(S"'ExceptionDef_destroy'/1" -p132349 -S"'ExceptionDef_destroy'(${1:Objref}) $2" -p132350 -tp132351 -a(S"'ExceptionDef_move'/4" -p132352 -S"'ExceptionDef_move'(${1:Objref}, ${2:New_container}, ${3:New_name}, ${4:New_version}) $5" -p132353 -tp132354 -a(S"'FixedDef__get_def_kind'/1" -p132355 -S"'FixedDef__get_def_kind'(${1:Objref}) $2" -p132356 -tp132357 -a(S"'FixedDef__get_digits'/1" -p132358 -S"'FixedDef__get_digits'(${1:Objref}) $2" -p132359 -tp132360 -a(S"'FixedDef__get_scale'/1" -p132361 -S"'FixedDef__get_scale'(${1:Objref}) $2" -p132362 -tp132363 -a(S"'FixedDef__get_type'/1" -p132364 -S"'FixedDef__get_type'(${1:Objref}) $2" -p132365 -tp132366 -a(S"'FixedDef__set_digits'/2" -p132367 -S"'FixedDef__set_digits'(${1:Objref}, ${2:Digits}) $3" -p132368 -tp132369 -a(S"'FixedDef__set_scale'/2" -p132370 -S"'FixedDef__set_scale'(${1:Objref}, ${2:Scale}) $3" -p132371 -tp132372 -a(S"'FixedDef_destroy'/1" -p132373 -S"'FixedDef_destroy'(${1:Objref}) $2" -p132374 -tp132375 -a(S"'IDLType__get_def_kind'/1" -p132376 -S"'IDLType__get_def_kind'(${1:Objref}) $2" -p132377 -tp132378 -a(S"'IDLType__get_type'/1" -p132379 -S"'IDLType__get_type'(${1:Objref}) $2" -p132380 -tp132381 -a(S"'IDLType_destroy'/1" -p132382 -S"'IDLType_destroy'(${1:Objref}) $2" -p132383 -tp132384 -a(S"'IRObject__get_def_kind'/1" -p132385 -S"'IRObject__get_def_kind'(${1:Objref}) $2" -p132386 -tp132387 -a(S"'InterfaceDef__get_absolute_name'/1" -p132388 -S"'InterfaceDef__get_absolute_name'(${1:Objref}) $2" -p132389 -tp132390 -a(S"'InterfaceDef__get_base_interfaces'/1" -p132391 -S"'InterfaceDef__get_base_interfaces'(${1:Objref}) $2" -p132392 -tp132393 -a(S"'InterfaceDef__get_containing_repository'/1" -p132394 -S"'InterfaceDef__get_containing_repository'(${1:Objref}) $2" -p132395 -tp132396 -a(S"'InterfaceDef__get_def_kind'/1" -p132397 -S"'InterfaceDef__get_def_kind'(${1:Objref}) $2" -p132398 -tp132399 -a(S"'InterfaceDef__get_defined_in'/1" -p132400 -S"'InterfaceDef__get_defined_in'(${1:Objref}) $2" -p132401 -tp132402 -a(S"'InterfaceDef__get_id'/1" -p132403 -S"'InterfaceDef__get_id'(${1:Objref}) $2" -p132404 -tp132405 -a(S"'InterfaceDef__get_name'/1" -p132406 -S"'InterfaceDef__get_name'(${1:Objref}) $2" -p132407 -tp132408 -a(S"'InterfaceDef__get_type'/1" -p132409 -S"'InterfaceDef__get_type'(${1:Objref}) $2" -p132410 -tp132411 -a(S"'InterfaceDef__get_version'/1" -p132412 -S"'InterfaceDef__get_version'(${1:Objref}) $2" -p132413 -tp132414 -a(S"'InterfaceDef__set_base_interfaces'/2" -p132415 -S"'InterfaceDef__set_base_interfaces'(${1:Objref}, ${2:BaseInterfaces}) $3" -p132416 -tp132417 -a(S"'InterfaceDef__set_id'/2" -p132418 -S"'InterfaceDef__set_id'(${1:Objref}, ${2:Id}) $3" -p132419 -tp132420 -a(S"'InterfaceDef__set_name'/2" -p132421 -S"'InterfaceDef__set_name'(${1:Objref}, ${2:Name}) $3" -p132422 -tp132423 -a(S"'InterfaceDef__set_version'/2" -p132424 -S"'InterfaceDef__set_version'(${1:Objref}, ${2:Version}) $3" -p132425 -tp132426 -a(S"'InterfaceDef_contents'/3" -p132427 -S"'InterfaceDef_contents'(${1:Objref}, ${2:Limit_type}, ${3:Exclude_inherited}) $4" -p132428 -tp132429 -a(S"'InterfaceDef_create_alias'/5" -p132430 -S"'InterfaceDef_create_alias'(${1:Objref}, ${2:Id}, ${3:Name}, ${4:Version}, ${5:Original_type}) $6" -p132431 -tp132432 -a(S"'InterfaceDef_create_attribute'/6" -p132433 -S"'InterfaceDef_create_attribute'(${1:Objref}, ${2:Id}, ${3:Name}, ${4:Version}, ${5:Type}, ${6:Mode}) $7" -p132434 -tp132435 -a(S"'InterfaceDef_create_constant'/6" -p132436 -S"'InterfaceDef_create_constant'(${1:Objref}, ${2:Id}, ${3:Name}, ${4:Version}, ${5:Type}, ${6:Value}) $7" -p132437 -tp132438 -a(S"'InterfaceDef_create_enum'/5" -p132439 -S"'InterfaceDef_create_enum'(${1:Objref}, ${2:Id}, ${3:Name}, ${4:Version}, ${5:Members}) $6" -p132440 -tp132441 -a(S"'InterfaceDef_create_exception'/5" -p132442 -S"'InterfaceDef_create_exception'(${1:Objref}, ${2:Id}, ${3:Name}, ${4:Version}, ${5:Members}) $6" -p132443 -tp132444 -a(S"'InterfaceDef_create_interface'/5" -p132445 -S"'InterfaceDef_create_interface'(${1:Objref}, ${2:Id}, ${3:Name}, ${4:Version}, ${5:Base_interfaces}) $6" -p132446 -tp132447 -a(S"'InterfaceDef_create_module'/4" -p132448 -S"'InterfaceDef_create_module'(${1:Objref}, ${2:Id}, ${3:Name}, ${4:Version}) $5" -p132449 -tp132450 -a(S"'InterfaceDef_create_operation'/9" -p132451 -S"'InterfaceDef_create_operation'() $1" -p132452 -tp132453 -a(S"'InterfaceDef_create_struct'/5" -p132454 -S"'InterfaceDef_create_struct'(${1:Objref}, ${2:Id}, ${3:Name}, ${4:Version}, ${5:Members}) $6" -p132455 -tp132456 -a(S"'InterfaceDef_create_union'/6" -p132457 -S"'InterfaceDef_create_union'() $1" -p132458 -tp132459 -a(S"'InterfaceDef_describe'/1" -p132460 -S"'InterfaceDef_describe'(${1:Objref}) $2" -p132461 -tp132462 -a(S"'InterfaceDef_describe_contents'/4" -p132463 -S"'InterfaceDef_describe_contents'() $1" -p132464 -tp132465 -a(S"'InterfaceDef_describe_interface'/1" -p132466 -S"'InterfaceDef_describe_interface'(${1:Objref}) $2" -p132467 -tp132468 -a(S"'InterfaceDef_destroy'/1" -p132469 -S"'InterfaceDef_destroy'(${1:Objref}) $2" -p132470 -tp132471 -a(S"'InterfaceDef_is_a'/2" -p132472 -S"'InterfaceDef_is_a'(${1:Objref}, ${2:Interface_id}) $3" -p132473 -tp132474 -a(S"'InterfaceDef_lookup'/2" -p132475 -S"'InterfaceDef_lookup'(${1:Objref}, ${2:Search_name}) $3" -p132476 -tp132477 -a(S"'InterfaceDef_lookup_name'/5" -p132478 -S"'InterfaceDef_lookup_name'() $1" -p132479 -tp132480 -a(S"'InterfaceDef_move'/4" -p132481 -S"'InterfaceDef_move'(${1:Objref}, ${2:New_container}, ${3:New_name}, ${4:New_version}) $5" -p132482 -tp132483 -a(S"'ModuleDef__get_absolute_name'/1" -p132484 -S"'ModuleDef__get_absolute_name'(${1:Objref}) $2" -p132485 -tp132486 -a(S"'ModuleDef__get_containing_repository'/1" -p132487 -S"'ModuleDef__get_containing_repository'(${1:Objref}) $2" -p132488 -tp132489 -a(S"'ModuleDef__get_def_kind'/1" -p132490 -S"'ModuleDef__get_def_kind'(${1:Objref}) $2" -p132491 -tp132492 -a(S"'ModuleDef__get_defined_in'/1" -p132493 -S"'ModuleDef__get_defined_in'(${1:Objref}) $2" -p132494 -tp132495 -a(S"'ModuleDef__get_id'/1" -p132496 -S"'ModuleDef__get_id'(${1:Objref}) $2" -p132497 -tp132498 -a(S"'ModuleDef__get_name'/1" -p132499 -S"'ModuleDef__get_name'(${1:Objref}) $2" -p132500 -tp132501 -a(S"'ModuleDef__get_version'/1" -p132502 -S"'ModuleDef__get_version'(${1:Objref}) $2" -p132503 -tp132504 -a(S"'ModuleDef__set_id'/2" -p132505 -S"'ModuleDef__set_id'(${1:Objref}, ${2:Id}) $3" -p132506 -tp132507 -a(S"'ModuleDef__set_name'/2" -p132508 -S"'ModuleDef__set_name'(${1:Objref}, ${2:Name}) $3" -p132509 -tp132510 -a(S"'ModuleDef__set_version'/2" -p132511 -S"'ModuleDef__set_version'(${1:Objref}, ${2:Version}) $3" -p132512 -tp132513 -a(S"'ModuleDef_contents'/3" -p132514 -S"'ModuleDef_contents'(${1:Objref}, ${2:Limit_type}, ${3:Exclude_inherited}) $4" -p132515 -tp132516 -a(S"'ModuleDef_create_alias'/5" -p132517 -S"'ModuleDef_create_alias'(${1:Objref}, ${2:Id}, ${3:Name}, ${4:Version}, ${5:Original_type}) $6" -p132518 -tp132519 -a(S"'ModuleDef_create_constant'/6" -p132520 -S"'ModuleDef_create_constant'(${1:Objref}, ${2:Id}, ${3:Name}, ${4:Version}, ${5:Type}, ${6:Value}) $7" -p132521 -tp132522 -a(S"'ModuleDef_create_enum'/5" -p132523 -S"'ModuleDef_create_enum'(${1:Objref}, ${2:Id}, ${3:Name}, ${4:Version}, ${5:Members}) $6" -p132524 -tp132525 -a(S"'ModuleDef_create_exception'/5" -p132526 -S"'ModuleDef_create_exception'(${1:Objref}, ${2:Id}, ${3:Name}, ${4:Version}, ${5:Members}) $6" -p132527 -tp132528 -a(S"'ModuleDef_create_interface'/5" -p132529 -S"'ModuleDef_create_interface'(${1:Objref}, ${2:Id}, ${3:Name}, ${4:Version}, ${5:Base_interfaces}) $6" -p132530 -tp132531 -a(S"'ModuleDef_create_module'/4" -p132532 -S"'ModuleDef_create_module'(${1:Objref}, ${2:Id}, ${3:Name}, ${4:Version}) $5" -p132533 -tp132534 -a(S"'ModuleDef_create_struct'/5" -p132535 -S"'ModuleDef_create_struct'(${1:Objref}, ${2:Id}, ${3:Name}, ${4:Version}, ${5:Members}) $6" -p132536 -tp132537 -a(S"'ModuleDef_create_union'/6" -p132538 -S"'ModuleDef_create_union'(${1:Objref}, ${2:Id}, ${3:Name}, ${4:Version}, ${5:Discriminator_type}, ${6:Members}) $7" -p132539 -tp132540 -a(S"'ModuleDef_describe'/1" -p132541 -S"'ModuleDef_describe'(${1:Objref}) $2" -p132542 -tp132543 -a(S"'ModuleDef_describe_contents'/4" -p132544 -S"'ModuleDef_describe_contents'() $1" -p132545 -tp132546 -a(S"'ModuleDef_destroy'/1" -p132547 -S"'ModuleDef_destroy'(${1:Objref}) $2" -p132548 -tp132549 -a(S"'ModuleDef_lookup'/2" -p132550 -S"'ModuleDef_lookup'(${1:Objref}, ${2:Search_name}) $3" -p132551 -tp132552 -a(S"'ModuleDef_lookup_name'/5" -p132553 -S"'ModuleDef_lookup_name'() $1" -p132554 -tp132555 -a(S"'ModuleDef_move'/4" -p132556 -S"'ModuleDef_move'(${1:Objref}, ${2:New_container}, ${3:New_name}, ${4:New_version}) $5" -p132557 -tp132558 -a(S"'ORB_create_alias_tc'/3" -p132559 -S"'ORB_create_alias_tc'(${1:Id}, ${2:Name}, ${3:Original_type}) $4" -p132560 -tp132561 -a(S"'ORB_create_array_tc'/2" -p132562 -S"'ORB_create_array_tc'(${1:Length}, ${2:Element_type}) $3" -p132563 -tp132564 -a(S"'ORB_create_enum_tc'/3" -p132565 -S"'ORB_create_enum_tc'(${1:Id}, ${2:Name}, ${3:Members}) $4" -p132566 -tp132567 -a(S"'ORB_create_exception_tc'/3" -p132568 -S"'ORB_create_exception_tc'(${1:Id}, ${2:Name}, ${3:Members}) $4" -p132569 -tp132570 -a(S"'ORB_create_interface_tc'/2" -p132571 -S"'ORB_create_interface_tc'(${1:Id}, ${2:Name}) $3" -p132572 -tp132573 -a(S"'ORB_create_recursive_sequence_tc'/2" -p132574 -S"'ORB_create_recursive_sequence_tc'(${1:Bound}, ${2:Offset}) $3" -p132575 -tp132576 -a(S"'ORB_create_sequence_tc'/2" -p132577 -S"'ORB_create_sequence_tc'(${1:Bound}, ${2:Element_type}) $3" -p132578 -tp132579 -a(S"'ORB_create_string_tc'/1" -p132580 -S"'ORB_create_string_tc'(${1:Bound}) $2" -p132581 -tp132582 -a(S"'ORB_create_struct_tc'/3" -p132583 -S"'ORB_create_struct_tc'(${1:Id}, ${2:Name}, ${3:Members}) $4" -p132584 -tp132585 -a(S"'ORB_create_union_tc'/4" -p132586 -S"'ORB_create_union_tc'(${1:Id}, ${2:Name}, ${3:Discriminator_type}, ${4:Members}) $5" -p132587 -tp132588 -a(S"'ORB_create_wstring_tc'/1" -p132589 -S"'ORB_create_wstring_tc'(${1:Bound}) $2" -p132590 -tp132591 -a(S"'OperationDef__get_absolute_name'/1" -p132592 -S"'OperationDef__get_absolute_name'(${1:Objref}) $2" -p132593 -tp132594 -a(S"'OperationDef__get_containing_repository'/1" -p132595 -S"'OperationDef__get_containing_repository'(${1:Objref}) $2" -p132596 -tp132597 -a(S"'OperationDef__get_contexts'/1" -p132598 -S"'OperationDef__get_contexts'(${1:Objref}) $2" -p132599 -tp132600 -a(S"'OperationDef__get_def_kind'/1" -p132601 -S"'OperationDef__get_def_kind'(${1:Objref}) $2" -p132602 -tp132603 -a(S"'OperationDef__get_defined_in'/1" -p132604 -S"'OperationDef__get_defined_in'(${1:Objref}) $2" -p132605 -tp132606 -a(S"'OperationDef__get_exceptions'/1" -p132607 -S"'OperationDef__get_exceptions'(${1:Objref}) $2" -p132608 -tp132609 -a(S"'OperationDef__get_id'/1" -p132610 -S"'OperationDef__get_id'(${1:Objref}) $2" -p132611 -tp132612 -a(S"'OperationDef__get_mode'/1" -p132613 -S"'OperationDef__get_mode'(${1:Objref}) $2" -p132614 -tp132615 -a(S"'OperationDef__get_name'/1" -p132616 -S"'OperationDef__get_name'(${1:Objref}) $2" -p132617 -tp132618 -a(S"'OperationDef__get_params'/1" -p132619 -S"'OperationDef__get_params'(${1:Objref}) $2" -p132620 -tp132621 -a(S"'OperationDef__get_result'/1" -p132622 -S"'OperationDef__get_result'(${1:Objref}) $2" -p132623 -tp132624 -a(S"'OperationDef__get_result_def'/1" -p132625 -S"'OperationDef__get_result_def'(${1:Objref}) $2" -p132626 -tp132627 -a(S"'OperationDef__get_version'/1" -p132628 -S"'OperationDef__get_version'(${1:Objref}) $2" -p132629 -tp132630 -a(S"'OperationDef__set_contexts'/2" -p132631 -S"'OperationDef__set_contexts'(${1:Objref}, ${2:Contexts}) $3" -p132632 -tp132633 -a(S"'OperationDef__set_exceptions'/2" -p132634 -S"'OperationDef__set_exceptions'(${1:Objref}, ${2:Exceptions}) $3" -p132635 -tp132636 -a(S"'OperationDef__set_id'/2" -p132637 -S"'OperationDef__set_id'(${1:Objref}, ${2:Id}) $3" -p132638 -tp132639 -a(S"'OperationDef__set_mode'/2" -p132640 -S"'OperationDef__set_mode'(${1:Objref}, ${2:Mode}) $3" -p132641 -tp132642 -a(S"'OperationDef__set_name'/2" -p132643 -S"'OperationDef__set_name'(${1:Objref}, ${2:Name}) $3" -p132644 -tp132645 -a(S"'OperationDef__set_params'/2" -p132646 -S"'OperationDef__set_params'(${1:Objref}, ${2:Params}) $3" -p132647 -tp132648 -a(S"'OperationDef__set_result_def'/2" -p132649 -S"'OperationDef__set_result_def'(${1:Objref}, ${2:ResultDef}) $3" -p132650 -tp132651 -a(S"'OperationDef__set_version'/2" -p132652 -S"'OperationDef__set_version'(${1:Objref}, ${2:Version}) $3" -p132653 -tp132654 -a(S"'OperationDef_describe'/1" -p132655 -S"'OperationDef_describe'(${1:Objref}) $2" -p132656 -tp132657 -a(S"'OperationDef_destroy'/1" -p132658 -S"'OperationDef_destroy'(${1:Objref}) $2" -p132659 -tp132660 -a(S"'OperationDef_move'/4" -p132661 -S"'OperationDef_move'(${1:Objref}, ${2:New_container}, ${3:New_name}, ${4:New_version}) $5" -p132662 -tp132663 -a(S"'PrimitiveDef__get_def_kind'/1" -p132664 -S"'PrimitiveDef__get_def_kind'(${1:Objref}) $2" -p132665 -tp132666 -a(S"'PrimitiveDef__get_kind'/1" -p132667 -S"'PrimitiveDef__get_kind'(${1:Objref}) $2" -p132668 -tp132669 -a(S"'PrimitiveDef__get_type'/1" -p132670 -S"'PrimitiveDef__get_type'(${1:Objref}) $2" -p132671 -tp132672 -a(S"'PrimitiveDef_destroy'/1" -p132673 -S"'PrimitiveDef_destroy'(${1:Objref}) $2" -p132674 -tp132675 -a(S"'Repository__get_def_kind'/1" -p132676 -S"'Repository__get_def_kind'(${1:Objref}) $2" -p132677 -tp132678 -a(S"'Repository_contents'/3" -p132679 -S"'Repository_contents'(${1:Objref}, ${2:Limit_type}, ${3:Exclude_inherited}) $4" -p132680 -tp132681 -a(S"'Repository_create_alias'/5" -p132682 -S"'Repository_create_alias'(${1:Objref}, ${2:Id}, ${3:Name}, ${4:Version}, ${5:Original_type}) $6" -p132683 -tp132684 -a(S"'Repository_create_array'/3" -p132685 -S"'Repository_create_array'(${1:Objref}, ${2:Length}, ${3:Element_type}) $4" -p132686 -tp132687 -a(S"'Repository_create_constant'/6" -p132688 -S"'Repository_create_constant'(${1:Objref}, ${2:Id}, ${3:Name}, ${4:Version}, ${5:Type}, ${6:Value}) $7" -p132689 -tp132690 -a(S"'Repository_create_enum'/5" -p132691 -S"'Repository_create_enum'(${1:Objref}, ${2:Id}, ${3:Name}, ${4:Version}, ${5:Members}) $6" -p132692 -tp132693 -a(S"'Repository_create_exception'/5" -p132694 -S"'Repository_create_exception'(${1:Objref}, ${2:Id}, ${3:Name}, ${4:Version}, ${5:Members}) $6" -p132695 -tp132696 -a(S"'Repository_create_idltype'/2" -p132697 -S"'Repository_create_idltype'(${1:Objref}, ${2:Typecode}) $3" -p132698 -tp132699 -a(S"'Repository_create_interface'/5" -p132700 -S"'Repository_create_interface'(${1:Objref}, ${2:Id}, ${3:Name}, ${4:Version}, ${5:Base_interfaces}) $6" -p132701 -tp132702 -a(S"'Repository_create_module'/4" -p132703 -S"'Repository_create_module'(${1:Objref}, ${2:Id}, ${3:Name}, ${4:Version}) $5" -p132704 -tp132705 -a(S"'Repository_create_sequence'/3" -p132706 -S"'Repository_create_sequence'(${1:Objref}, ${2:Bound}, ${3:Element_type}) $4" -p132707 -tp132708 -a(S"'Repository_create_string'/2" -p132709 -S"'Repository_create_string'(${1:Objref}, ${2:Bound}) $3" -p132710 -tp132711 -a(S"'Repository_create_struct'/5" -p132712 -S"'Repository_create_struct'(${1:Objref}, ${2:Id}, ${3:Name}, ${4:Version}, ${5:Members}) $6" -p132713 -tp132714 -a(S"'Repository_create_union'/6" -p132715 -S"'Repository_create_union'(${1:Objref}, ${2:Id}, ${3:Name}, ${4:Version}, ${5:Discriminator_type}, ${6:Members}) $7" -p132716 -tp132717 -a(S"'Repository_create_wstring'/2" -p132718 -S"'Repository_create_wstring'(${1:Objref}, ${2:Bound}) $3" -p132719 -tp132720 -a(S"'Repository_describe_contents'/4" -p132721 -S"'Repository_describe_contents'() $1" -p132722 -tp132723 -a(S"'Repository_destroy'/1" -p132724 -S"'Repository_destroy'(${1:Objref}) $2" -p132725 -tp132726 -a(S"'Repository_get_primitive'/2" -p132727 -S"'Repository_get_primitive'(${1:Objref}, ${2:Kind}) $3" -p132728 -tp132729 -a(S"'Repository_lookup'/2" -p132730 -S"'Repository_lookup'(${1:Objref}, ${2:Search_name}) $3" -p132731 -tp132732 -a(S"'Repository_lookup_id'/2" -p132733 -S"'Repository_lookup_id'(${1:Objref}, ${2:Search_id}) $3" -p132734 -tp132735 -a(S"'Repository_lookup_name'/5" -p132736 -S"'Repository_lookup_name'() $1" -p132737 -tp132738 -a(S"'SequenceDef__get_bound'/1" -p132739 -S"'SequenceDef__get_bound'(${1:Objref}) $2" -p132740 -tp132741 -a(S"'SequenceDef__get_def_kind'/1" -p132742 -S"'SequenceDef__get_def_kind'(${1:Objref}) $2" -p132743 -tp132744 -a(S"'SequenceDef__get_element_type'/1" -p132745 -S"'SequenceDef__get_element_type'(${1:Objref}) $2" -p132746 -tp132747 -a(S"'SequenceDef__get_element_type_def'/1" -p132748 -S"'SequenceDef__get_element_type_def'(${1:Objref}) $2" -p132749 -tp132750 -a(S"'SequenceDef__get_type'/1" -p132751 -S"'SequenceDef__get_type'(${1:Objref}) $2" -p132752 -tp132753 -a(S"'SequenceDef__set_bound'/2" -p132754 -S"'SequenceDef__set_bound'(${1:Objref}, ${2:Bound}) $3" -p132755 -tp132756 -a(S"'SequenceDef__set_element_type_def'/2" -p132757 -S"'SequenceDef__set_element_type_def'(${1:Objref}, ${2:TypeDef}) $3" -p132758 -tp132759 -a(S"'SequenceDef_destroy'/1" -p132760 -S"'SequenceDef_destroy'(${1:Objref}) $2" -p132761 -tp132762 -a(S"'StringDef__get_bound'/1" -p132763 -S"'StringDef__get_bound'(${1:Objref}) $2" -p132764 -tp132765 -a(S"'StringDef__get_def_kind'/1" -p132766 -S"'StringDef__get_def_kind'(${1:Objref}) $2" -p132767 -tp132768 -a(S"'StringDef__get_type'/1" -p132769 -S"'StringDef__get_type'(${1:Objref}) $2" -p132770 -tp132771 -a(S"'StringDef__set_bound'/2" -p132772 -S"'StringDef__set_bound'(${1:Objref}, ${2:Bound}) $3" -p132773 -tp132774 -a(S"'StringDef_destroy'/1" -p132775 -S"'StringDef_destroy'(${1:Objref}) $2" -p132776 -tp132777 -a(S"'StructDef__get_absolute_name'/1" -p132778 -S"'StructDef__get_absolute_name'(${1:Objref}) $2" -p132779 -tp132780 -a(S"'StructDef__get_containing_repository'/1" -p132781 -S"'StructDef__get_containing_repository'(${1:Objref}) $2" -p132782 -tp132783 -a(S"'StructDef__get_def_kind'/1" -p132784 -S"'StructDef__get_def_kind'(${1:Objref}) $2" -p132785 -tp132786 -a(S"'StructDef__get_defined_in'/1" -p132787 -S"'StructDef__get_defined_in'(${1:Objref}) $2" -p132788 -tp132789 -a(S"'StructDef__get_id'/1" -p132790 -S"'StructDef__get_id'(${1:Objref}) $2" -p132791 -tp132792 -a(S"'StructDef__get_members'/1" -p132793 -S"'StructDef__get_members'(${1:Objref}) $2" -p132794 -tp132795 -a(S"'StructDef__get_name'/1" -p132796 -S"'StructDef__get_name'(${1:Objref}) $2" -p132797 -tp132798 -a(S"'StructDef__get_type'/1" -p132799 -S"'StructDef__get_type'(${1:Objref}) $2" -p132800 -tp132801 -a(S"'StructDef__get_version'/1" -p132802 -S"'StructDef__get_version'(${1:Objref}) $2" -p132803 -tp132804 -a(S"'StructDef__set_id'/2" -p132805 -S"'StructDef__set_id'(${1:Objref}, ${2:Id}) $3" -p132806 -tp132807 -a(S"'StructDef__set_members'/2" -p132808 -S"'StructDef__set_members'(${1:Objref}, ${2:Members}) $3" -p132809 -tp132810 -a(S"'StructDef__set_name'/2" -p132811 -S"'StructDef__set_name'(${1:Objref}, ${2:Name}) $3" -p132812 -tp132813 -a(S"'StructDef__set_version'/2" -p132814 -S"'StructDef__set_version'(${1:Objref}, ${2:Version}) $3" -p132815 -tp132816 -a(S"'StructDef_describe'/1" -p132817 -S"'StructDef_describe'(${1:Objref}) $2" -p132818 -tp132819 -a(S"'StructDef_destroy'/1" -p132820 -S"'StructDef_destroy'(${1:Objref}) $2" -p132821 -tp132822 -a(S"'StructDef_move'/4" -p132823 -S"'StructDef_move'(${1:Objref}, ${2:New_container}, ${3:New_name}, ${4:New_version}) $5" -p132824 -tp132825 -a(S"'TypedefDef__get_absolute_name'/1" -p132826 -S"'TypedefDef__get_absolute_name'(${1:Objref}) $2" -p132827 -tp132828 -a(S"'TypedefDef__get_containing_repository'/1" -p132829 -S"'TypedefDef__get_containing_repository'(${1:Objref}) $2" -p132830 -tp132831 -a(S"'TypedefDef__get_def_kind'/1" -p132832 -S"'TypedefDef__get_def_kind'(${1:Objref}) $2" -p132833 -tp132834 -a(S"'TypedefDef__get_defined_in'/1" -p132835 -S"'TypedefDef__get_defined_in'(${1:Objref}) $2" -p132836 -tp132837 -a(S"'TypedefDef__get_id'/1" -p132838 -S"'TypedefDef__get_id'(${1:Objref}) $2" -p132839 -tp132840 -a(S"'TypedefDef__get_name'/1" -p132841 -S"'TypedefDef__get_name'(${1:Objref}) $2" -p132842 -tp132843 -a(S"'TypedefDef__get_type'/1" -p132844 -S"'TypedefDef__get_type'(${1:Objref}) $2" -p132845 -tp132846 -a(S"'TypedefDef__get_version'/1" -p132847 -S"'TypedefDef__get_version'(${1:Objref}) $2" -p132848 -tp132849 -a(S"'TypedefDef__set_id'/2" -p132850 -S"'TypedefDef__set_id'(${1:Objref}, ${2:Id}) $3" -p132851 -tp132852 -a(S"'TypedefDef__set_name'/2" -p132853 -S"'TypedefDef__set_name'(${1:Objref}, ${2:Name}) $3" -p132854 -tp132855 -a(S"'TypedefDef__set_version'/2" -p132856 -S"'TypedefDef__set_version'(${1:Objref}, ${2:Version}) $3" -p132857 -tp132858 -a(S"'TypedefDef_describe'/1" -p132859 -S"'TypedefDef_describe'(${1:Objref}) $2" -p132860 -tp132861 -a(S"'TypedefDef_destroy'/1" -p132862 -S"'TypedefDef_destroy'(${1:Objref}) $2" -p132863 -tp132864 -a(S"'TypedefDef_move'/4" -p132865 -S"'TypedefDef_move'(${1:Objref}, ${2:New_container}, ${3:New_name}, ${4:New_version}) $5" -p132866 -tp132867 -a(S"'UnionDef__get_absolute_name'/1" -p132868 -S"'UnionDef__get_absolute_name'(${1:Objref}) $2" -p132869 -tp132870 -a(S"'UnionDef__get_containing_repository'/1" -p132871 -S"'UnionDef__get_containing_repository'(${1:Objref}) $2" -p132872 -tp132873 -a(S"'UnionDef__get_def_kind'/1" -p132874 -S"'UnionDef__get_def_kind'(${1:Objref}) $2" -p132875 -tp132876 -a(S"'UnionDef__get_defined_in'/1" -p132877 -S"'UnionDef__get_defined_in'(${1:Objref}) $2" -p132878 -tp132879 -a(S"'UnionDef__get_discriminator_type'/1" -p132880 -S"'UnionDef__get_discriminator_type'(${1:Objref}) $2" -p132881 -tp132882 -a(S"'UnionDef__get_discriminator_type_def'/1" -p132883 -S"'UnionDef__get_discriminator_type_def'(${1:Objref}) $2" -p132884 -tp132885 -a(S"'UnionDef__get_id'/1" -p132886 -S"'UnionDef__get_id'(${1:Objref}) $2" -p132887 -tp132888 -a(S"'UnionDef__get_members'/1" -p132889 -S"'UnionDef__get_members'(${1:Objref}) $2" -p132890 -tp132891 -a(S"'UnionDef__get_name'/1" -p132892 -S"'UnionDef__get_name'(${1:Objref}) $2" -p132893 -tp132894 -a(S"'UnionDef__get_type'/1" -p132895 -S"'UnionDef__get_type'(${1:Objref}) $2" -p132896 -tp132897 -a(S"'UnionDef__get_version'/1" -p132898 -S"'UnionDef__get_version'(${1:Objref}) $2" -p132899 -tp132900 -a(S"'UnionDef__set_discriminator_type_def'/2" -p132901 -S"'UnionDef__set_discriminator_type_def'(${1:Objref}, ${2:TypeDef}) $3" -p132902 -tp132903 -a(S"'UnionDef__set_id'/2" -p132904 -S"'UnionDef__set_id'(${1:Objref}, ${2:Id}) $3" -p132905 -tp132906 -a(S"'UnionDef__set_members'/2" -p132907 -S"'UnionDef__set_members'(${1:Objref}, ${2:Members}) $3" -p132908 -tp132909 -a(S"'UnionDef__set_name'/2" -p132910 -S"'UnionDef__set_name'(${1:Objref}, ${2:Name}) $3" -p132911 -tp132912 -a(S"'UnionDef__set_version'/2" -p132913 -S"'UnionDef__set_version'(${1:Objref}, ${2:Version}) $3" -p132914 -tp132915 -a(S"'UnionDef_describe'/1" -p132916 -S"'UnionDef_describe'(${1:Objref}) $2" -p132917 -tp132918 -a(S"'UnionDef_destroy'/1" -p132919 -S"'UnionDef_destroy'(${1:Objref}) $2" -p132920 -tp132921 -a(S"'UnionDef_move'/4" -p132922 -S"'UnionDef_move'(${1:Objref}, ${2:New_container}, ${3:New_name}, ${4:New_version}) $5" -p132923 -tp132924 -a(S"'WstringDef__get_bound'/1" -p132925 -S"'WstringDef__get_bound'(${1:Objref}) $2" -p132926 -tp132927 -a(S"'WstringDef__get_def_kind'/1" -p132928 -S"'WstringDef__get_def_kind'(${1:Objref}) $2" -p132929 -tp132930 -a(S"'WstringDef__get_type'/1" -p132931 -S"'WstringDef__get_type'(${1:Objref}) $2" -p132932 -tp132933 -a(S"'WstringDef__set_bound'/2" -p132934 -S"'WstringDef__set_bound'(${1:Objref}, ${2:Bound}) $3" -p132935 -tp132936 -a(S"'WstringDef_destroy'/1" -p132937 -S"'WstringDef_destroy'(${1:Objref}) $2" -p132938 -tp132939 -a(S'add_alias/3' -p132940 -S'add_alias(${1:Id}, ${2:Module}, ${3:BaseId}) $4' -p132941 -tp132942 -a(S'add_alias/4' -p132943 -S'add_alias(${1:Id}, ${2:Module}, ${3:BaseId}, ${4:Transaction}) $5' -p132944 -tp132945 -a(S'add_constant/3' -p132946 -S'add_constant(${1:Id}, ${2:Module}, ${3:BaseId}) $4' -p132947 -tp132948 -a(S'add_constant/4' -p132949 -S'add_constant(${1:Id}, ${2:Module}, ${3:BaseId}, ${4:Transaction}) $5' -p132950 -tp132951 -a(S'add_enum/3' -p132952 -S'add_enum(${1:Id}, ${2:Module}, ${3:BaseId}) $4' -p132953 -tp132954 -a(S'add_enum/4' -p132955 -S'add_enum(${1:Id}, ${2:Module}, ${3:BaseId}, ${4:Transaction}) $5' -p132956 -tp132957 -a(S'add_exception/3' -p132958 -S'add_exception(${1:Id}, ${2:Module}, ${3:BaseId}) $4' -p132959 -tp132960 -a(S'add_exception/4' -p132961 -S'add_exception(${1:Id}, ${2:Module}, ${3:BaseId}, ${4:Transaction}) $5' -p132962 -tp132963 -a(S'add_interface/3' -p132964 -S'add_interface(${1:Id}, ${2:Module}, ${3:BaseId}) $4' -p132965 -tp132966 -a(S'add_interface/4' -p132967 -S'add_interface(${1:Id}, ${2:Module}, ${3:BaseId}, ${4:Transaction}) $5' -p132968 -tp132969 -a(S'add_items/3' -p132970 -S'add_items(${1:ContainerId}, ${2:Param2}, ${3:Items}) $4' -p132971 -tp132972 -a(S'add_module/3' -p132973 -S'add_module(${1:Id}, ${2:Module}, ${3:BaseId}) $4' -p132974 -tp132975 -a(S'add_module/4' -p132976 -S'add_module(${1:Id}, ${2:Module}, ${3:BaseId}, ${4:Transaction}) $5' -p132977 -tp132978 -a(S'add_struct/3' -p132979 -S'add_struct(${1:Id}, ${2:Module}, ${3:BaseId}) $4' -p132980 -tp132981 -a(S'add_struct/4' -p132982 -S'add_struct(${1:Id}, ${2:Module}, ${3:BaseId}, ${4:Transaction}) $5' -p132983 -tp132984 -a(S'add_union/3' -p132985 -S'add_union(${1:Id}, ${2:Module}, ${3:BaseId}) $4' -p132986 -tp132987 -a(S'add_union/4' -p132988 -S'add_union(${1:Id}, ${2:Module}, ${3:BaseId}, ${4:Transaction}) $5' -p132989 -tp132990 -a(S'contents/3' -p132991 -S'contents(${1:Objref}, ${2:Limit_type}, ${3:Exclude_inherited}) $4' -p132992 -tp132993 -a(S'create_alias/5' -p132994 -S'create_alias(${1:Objref}, ${2:Id}, ${3:Name}, ${4:Version}, ${5:Original_type}) $6' -p132995 -tp132996 -a(S'create_array/3' -p132997 -S'create_array(${1:Objref}, ${2:Length}, ${3:Element_type}) $4' -p132998 -tp132999 -a(S'create_attribute/6' -p133000 -S'create_attribute(${1:Objref}, ${2:Id}, ${3:Name}, ${4:Version}, ${5:Type}, ${6:Mode}) $7' -p133001 -tp133002 -a(S'create_constant/6' -p133003 -S'create_constant(${1:Objref}, ${2:Id}, ${3:Name}, ${4:Version}, ${5:Type}, ${6:Value}) $7' -p133004 -tp133005 -a(S'create_enum/5' -p133006 -S'create_enum(${1:Objref}, ${2:Id}, ${3:Name}, ${4:Version}, ${5:Members}) $6' -p133007 -tp133008 -a(S'create_exception/5' -p133009 -S'create_exception(${1:Objref}, ${2:Id}, ${3:Name}, ${4:Version}, ${5:Members}) $6' -p133010 -tp133011 -a(S'create_fixed/3' -p133012 -S'create_fixed(${1:Objref}, ${2:Digits}, ${3:Scale}) $4' -p133013 -tp133014 -a(S'create_idltype/2' -p133015 -S'create_idltype(${1:Objref}, ${2:Typecode}) $3' -p133016 -tp133017 -a(S'create_interface/5' -p133018 -S'create_interface(${1:Objref}, ${2:Id}, ${3:Name}, ${4:Version}, ${5:Base_interfaces}) $6' -p133019 -tp133020 -a(S'create_module/4' -p133021 -S'create_module(${1:Objref}, ${2:Id}, ${3:Name}, ${4:Version}) $5' -p133022 -tp133023 -a(S'create_operation/9' -p133024 -S'create_operation(${1:Objref}, ${2:Id}, ${3:Name}, ${4:Version}, ${5:Result}, ${6:Mode}, ${7:Params}, ${8:Exceptions}, ${9:Contexts}) $10' -p133025 -tp133026 -a(S'create_sequence/3' -p133027 -S'create_sequence(${1:Objref}, ${2:Bound}, ${3:Element_type}) $4' -p133028 -tp133029 -a(S'create_string/2' -p133030 -S'create_string(${1:Objref}, ${2:Bound}) $3' -p133031 -tp133032 -a(S'create_struct/5' -p133033 -S'create_struct(${1:Objref}, ${2:Id}, ${3:Name}, ${4:Version}, ${5:Members}) $6' -p133034 -tp133035 -a(S'create_union/6' -p133036 -S'create_union(${1:Objref}, ${2:Id}, ${3:Name}, ${4:Version}, ${5:Discriminator_type}, ${6:Members}) $7' -p133037 -tp133038 -a(S'create_wstring/2' -p133039 -S'create_wstring(${1:Objref}, ${2:Bound}) $3' -p133040 -tp133041 -a(S'describe/1' -p133042 -S'describe(${1:Objref}) $2' -p133043 -tp133044 -a(S'describe_contents/4' -p133045 -S'describe_contents(${1:Objref}, ${2:Limit_type}, ${3:Exclude_inherited}, ${4:Max_returned_objs}) $5' -p133046 -tp133047 -a(S'describe_interface/1' -p133048 -S'describe_interface(${1:Objref}) $2' -p133049 -tp133050 -a(S'destroy/1' -p133051 -S'destroy(${1:Objref}) $2' -p133052 -tp133053 -a(S'find_repository/0' -p133054 -S'find_repository() $1' -p133055 -tp133056 -a(S'get_absolute_name/1' -p133057 -S'get_absolute_name(${1:Objref}) $2' -p133058 -tp133059 -a(S'get_base_interfaces/1' -p133060 -S'get_base_interfaces(${1:Objref}) $2' -p133061 -tp133062 -a(S'get_bound/1' -p133063 -S'get_bound(${1:Objref}) $2' -p133064 -tp133065 -a(S'get_containing_repository/1' -p133066 -S'get_containing_repository(${1:Objref}) $2' -p133067 -tp133068 -a(S'get_contexts/1' -p133069 -S'get_contexts(${1:Objref}) $2' -p133070 -tp133071 -a(S'get_def_kind/1' -p133072 -S'get_def_kind(${1:Objref}) $2' -p133073 -tp133074 -a(S'get_defined_in/1' -p133075 -S'get_defined_in(${1:Objref}) $2' -p133076 -tp133077 -a(S'get_discriminator_type/1' -p133078 -S'get_discriminator_type(${1:Objref}) $2' -p133079 -tp133080 -a(S'get_discriminator_type_def/1' -p133081 -S'get_discriminator_type_def(${1:Objref}) $2' -p133082 -tp133083 -a(S'get_element_type/1' -p133084 -S'get_element_type(${1:Objref}) $2' -p133085 -tp133086 -a(S'get_element_type_def/1' -p133087 -S'get_element_type_def(${1:Objref}) $2' -p133088 -tp133089 -a(S'get_exceptions/1' -p133090 -S'get_exceptions(${1:Objref}) $2' -p133091 -tp133092 -a(S'get_id/1' -p133093 -S'get_id(${1:Objref}) $2' -p133094 -tp133095 -a(S'get_kind/1' -p133096 -S'get_kind(${1:Objref}) $2' -p133097 -tp133098 -a(S'get_length/1' -p133099 -S'get_length(${1:Objref}) $2' -p133100 -tp133101 -a(S'get_members/1' -p133102 -S'get_members(${1:Objref}) $2' -p133103 -tp133104 -a(S'get_mode/1' -p133105 -S'get_mode(${1:Objref}) $2' -p133106 -tp133107 -a(S'get_module/2' -p133108 -S'get_module(${1:Id}, ${2:Type}) $3' -p133109 -tp133110 -a(S'get_name/1' -p133111 -S'get_name(${1:Objref}) $2' -p133112 -tp133113 -a(S'get_original_type_def/1' -p133114 -S'get_original_type_def(${1:Objref}) $2' -p133115 -tp133116 -a(S'get_params/1' -p133117 -S'get_params(${1:Objref}) $2' -p133118 -tp133119 -a(S'get_primitive/2' -p133120 -S'get_primitive(${1:Objref}, ${2:Kind}) $3' -p133121 -tp133122 -a(S'get_result/1' -p133123 -S'get_result(${1:Objref}) $2' -p133124 -tp133125 -a(S'get_result_def/1' -p133126 -S'get_result_def(${1:Objref}) $2' -p133127 -tp133128 -a(S'get_tc/2' -p133129 -S'get_tc(${1:Id}, ${2:Type}) $3' -p133130 -tp133131 -a(S'get_type/1' -p133132 -S'get_type(${1:Objref}) $2' -p133133 -tp133134 -a(S'get_type_def/1' -p133135 -S'get_type_def(${1:Objref}) $2' -p133136 -tp133137 -a(S'get_value/1' -p133138 -S'get_value(${1:Objref}) $2' -p133139 -tp133140 -a(S'get_version/1' -p133141 -S'get_version(${1:Objref}) $2' -p133142 -tp133143 -a(S'init/2' -p133144 -S'init(${1:Nodes}, ${2:Timeout}) $3' -p133145 -tp133146 -a(S'initialize/3' -p133147 -S'initialize(${1:Timeout}, ${2:Options}, ${3:LightIFR}) $4' -p133148 -tp133149 -a(S'is_a/2' -p133150 -S'is_a(${1:Objref}, ${2:Interface_id}) $3' -p133151 -tp133152 -a(S'lookup/2' -p133153 -S'lookup(${1:Objref}, ${2:Search_name}) $3' -p133154 -tp133155 -a(S'lookup_id/2' -p133156 -S'lookup_id(${1:Param1}, ${2:Id}) $3' -p133157 -tp133158 -a(S'lookup_name/5' -p133159 -S'lookup_name(${1:Objref}, ${2:Search_name}, ${3:Levels_to_search}, ${4:Limit_type}, ${5:Exclude_inherited}) $6' -p133160 -tp133161 -a(S'move/4' -p133162 -S'move(${1:Objref}, ${2:New_container}, ${3:New_name}, ${4:New_version}) $5' -p133163 -tp133164 -a(S'remove/2' -p133165 -S'remove(${1:ContainerId}, ${2:Param2}) $3' -p133166 -tp133167 -a(S'set_base_interfaces/2' -p133168 -S'set_base_interfaces(${1:Objref}, ${2:BaseInterfaces}) $3' -p133169 -tp133170 -a(S'set_bound/2' -p133171 -S'set_bound(${1:Objref}, ${2:Bound}) $3' -p133172 -tp133173 -a(S'set_contexts/2' -p133174 -S'set_contexts(${1:Objref}, ${2:Contexts}) $3' -p133175 -tp133176 -a(S'set_discriminator_type_def/2' -p133177 -S'set_discriminator_type_def(${1:Objref}, ${2:TypeDef}) $3' -p133178 -tp133179 -a(S'set_element_type_def/2' -p133180 -S'set_element_type_def(${1:Objref}, ${2:TypeDef}) $3' -p133181 -tp133182 -a(S'set_exceptions/2' -p133183 -S'set_exceptions(${1:Objref}, ${2:Exceptions}) $3' -p133184 -tp133185 -a(S'set_id/2' -p133186 -S'set_id(${1:Objref}, ${2:Id}) $3' -p133187 -tp133188 -a(S'set_length/2' -p133189 -S'set_length(${1:Objref}, ${2:Length}) $3' -p133190 -tp133191 -a(S'set_members/2' -p133192 -S'set_members(${1:Objref}, ${2:Members}) $3' -p133193 -tp133194 -a(S'set_mode/2' -p133195 -S'set_mode(${1:Objref}, ${2:Mode}) $3' -p133196 -tp133197 -a(S'set_name/2' -p133198 -S'set_name(${1:Objref}, ${2:Name}) $3' -p133199 -tp133200 -a(S'set_original_type_def/2' -p133201 -S'set_original_type_def(${1:Objref}, ${2:TypeDef}) $3' -p133202 -tp133203 -a(S'set_params/2' -p133204 -S'set_params(${1:Objref}, ${2:Params}) $3' -p133205 -tp133206 -a(S'set_result_def/2' -p133207 -S'set_result_def(${1:Objref}, ${2:ResultDef}) $3' -p133208 -tp133209 -a(S'set_type_def/2' -p133210 -S'set_type_def(${1:Objref}, ${2:TypeDef}) $3' -p133211 -tp133212 -a(S'set_value/2' -p133213 -S'set_value(${1:Objref}, ${2:Value}) $3' -p133214 -tp133215 -a(S'set_version/2' -p133216 -S'set_version(${1:Objref}, ${2:Version}) $3' -p133217 -tp133218 -asS'win32reg' -p133219 -(lp133220 -(S'change_key/2' -p133221 -S'change_key(${1:RegHandle}, ${2:Key}) $3' -p133222 -tp133223 -a(S'change_key_create/2' -p133224 -S'change_key_create(${1:RegHandle}, ${2:Key}) $3' -p133225 -tp133226 -a(S'close/1' -p133227 -S'close(${1:RegHandle}) $2' -p133228 -tp133229 -a(S'current_key/1' -p133230 -S'current_key(${1:RegHandle}) $2' -p133231 -tp133232 -a(S'delete_key/1' -p133233 -S'delete_key(${1:RegHandle}) $2' -p133234 -tp133235 -a(S'delete_value/2' -p133236 -S'delete_value(${1:RegHandle}, ${2:Name}) $3' -p133237 -tp133238 -a(S'expand/1' -p133239 -S'expand(${1:String}) $2' -p133240 -tp133241 -a(S'format_error/1' -p133242 -S'format_error(${1:ErrorId}) $2' -p133243 -tp133244 -a(S'open/1' -p133245 -S'open(${1:OpenModeList}) $2' -p133246 -tp133247 -a(S'set_value/3' -p133248 -S'set_value(${1:RegHandle}, ${2:Name}, ${3:Value}) $4' -p133249 -tp133250 -a(S'sub_keys/1' -p133251 -S'sub_keys(${1:RegHandle}) $2' -p133252 -tp133253 -a(S'value/2' -p133254 -S'value(${1:RegHandle}, ${2:Name}) $3' -p133255 -tp133256 -a(S'values/1' -p133257 -S'values(${1:RegHandle}) $2' -p133258 -tp133259 -asS'crypto_sup' -p133260 -(lp133261 -(S'init/1' -p133262 -S'init(${1:Param1}) $2' -p133263 -tp133264 -a(S'start_link/0' -p133265 -S'start_link() $1' -p133266 -tp133267 -asS'CosNotifyChannelAdmin_NotConnected' -p133268 -(lp133269 -(S'id/0' -p133270 -S'id() $1' -p133271 -tp133272 -a(S'name/0' -p133273 -S'name() $1' -p133274 -tp133275 -a(S'tc/0' -p133276 -S'tc() $1' -p133277 -tp133278 -asS'CosEventChannelAdmin_TypeError' -p133279 -(lp133280 -(S'id/0' -p133281 -S'id() $1' -p133282 -tp133283 -a(S'name/0' -p133284 -S'name() $1' -p133285 -tp133286 -a(S'tc/0' -p133287 -S'tc() $1' -p133288 -tp133289 -asS'test_server' -p133290 -(lp133291 -(S'adjusted_sleep/1' -p133292 -S'adjusted_sleep(${1:MSecs}) $2' -p133293 -tp133294 -a(S'app_test/1' -p133295 -S'app_test(${1:App}) $2' -p133296 -tp133297 -a(S'app_test/2' -p133298 -S'app_test(${1:App}, ${2:Mode}) $3' -p133299 -tp133300 -a(S'break/1' -p133301 -S'break(${1:Comment}) $2' -p133302 -tp133303 -a(S'call_crash/3' -p133304 -S'call_crash(${1:M}, ${2:F}, ${3:A}) $4' -p133305 -tp133306 -a(S'call_crash/4' -p133307 -S'call_crash(${1:Time}, ${2:M}, ${3:F}, ${4:A}) $5' -p133308 -tp133309 -a(S'call_crash/5' -p133310 -S'call_crash(${1:Time}, ${2:Crash}, ${3:M}, ${4:F}, ${5:A}) $6' -p133311 -tp133312 -a(S'capture_get/0' -p133313 -S'capture_get() $1' -p133314 -tp133315 -a(S'capture_start/0' -p133316 -S'capture_start() $1' -p133317 -tp133318 -a(S'capture_stop/0' -p133319 -S'capture_stop() $1' -p133320 -tp133321 -a(S'comment/1' -p133322 -S'comment(${1:String}) $2' -p133323 -tp133324 -a(S'continue/0' -p133325 -S'continue() $1' -p133326 -tp133327 -a(S'cover_analyse/2' -p133328 -S'cover_analyse(${1:Analyse}, ${2:Modules}) $3' -p133329 -tp133330 -a(S'cover_compile/1' -p133331 -S'cover_compile(${1:Modules}) $2' -p133332 -tp133333 -a(S'do_times/2' -p133334 -S'do_times(${1:Param1}, ${2:Param2}) $3' -p133335 -tp133336 -a(S'do_times/4' -p133337 -S'do_times(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p133338 -tp133339 -a(S'fail/0' -p133340 -S'fail() $1' -p133341 -tp133342 -a(S'fail/1' -p133343 -S'fail(${1:Reason}) $2' -p133344 -tp133345 -a(S'format/1' -p133346 -S'format(${1:Format}) $2' -p133347 -tp133348 -a(S'format/2' -p133349 -S'format(${1:Detail}, ${2:Format}) $3' -p133350 -tp133351 -a(S'format/3' -p133352 -S'format(${1:Detail}, ${2:Format}, ${3:Args}) $4' -p133353 -tp133354 -a(S'get_loc/1' -p133355 -S'get_loc(${1:Pid}) $2' -p133356 -tp133357 -a(S'get_timetrap_info/0' -p133358 -S'get_timetrap_info() $1' -p133359 -tp133360 -a(S'hours/1' -p133361 -S'hours(${1:N}) $2' -p133362 -tp133363 -a(S'init_purify/0' -p133364 -S'init_purify() $1' -p133365 -tp133366 -a(S'init_target_info/0' -p133367 -S'init_target_info() $1' -p133368 -tp133369 -a(S'is_commercial/0' -p133370 -S'is_commercial() $1' -p133371 -tp133372 -a(S'is_cover/0' -p133373 -S'is_cover() $1' -p133374 -tp133375 -a(S'is_debug/0' -p133376 -S'is_debug() $1' -p133377 -tp133378 -a(S'is_native/1' -p133379 -S'is_native(${1:Mod}) $2' -p133380 -tp133381 -a(S'is_release_available/1' -p133382 -S'is_release_available(${1:Release}) $2' -p133383 -tp133384 -a(S'lookup_config/2' -p133385 -S'lookup_config(${1:Key}, ${2:Config}) $3' -p133386 -tp133387 -a(S'm_out_of_n/3' -p133388 -S'm_out_of_n(${1:M}, ${2:N}, ${3:Fun}) $4' -p133389 -tp133390 -a(S'make_priv_dir/0' -p133391 -S'make_priv_dir() $1' -p133392 -tp133393 -a(S'messages_get/0' -p133394 -S'messages_get() $1' -p133395 -tp133396 -a(S'minutes/1' -p133397 -S'minutes(${1:N}) $2' -p133398 -tp133399 -a(S'os_type/0' -p133400 -S'os_type() $1' -p133401 -tp133402 -a(S'purify_format/2' -p133403 -S'purify_format(${1:Format}, ${2:Args}) $3' -p133404 -tp133405 -a(S'purify_is_running/0' -p133406 -S'purify_is_running() $1' -p133407 -tp133408 -a(S'purify_new_fds_inuse/0' -p133409 -S'purify_new_fds_inuse() $1' -p133410 -tp133411 -a(S'purify_new_leaks/0' -p133412 -S'purify_new_leaks() $1' -p133413 -tp133414 -a(S'run_on_shielded_node/2' -p133415 -S'run_on_shielded_node(${1:Fun}, ${2:CArgs}) $3' -p133416 -tp133417 -a(S'run_test_case_apply/1' -p133418 -S'run_test_case_apply(${1:Param1}) $2' -p133419 -tp133420 -a(S'seconds/1' -p133421 -S'seconds(${1:N}) $2' -p133422 -tp133423 -a(S'sleep/1' -p133424 -S'sleep(${1:MSecs}) $2' -p133425 -tp133426 -a(S'start/1' -p133427 -S'start(${1:ControllerHost}) $2' -p133428 -tp133429 -a(S'start/2' -p133430 -S'start(${1:ControllerHost}, ${2:ControllerPort}) $3' -p133431 -tp133432 -a(S'start_node/3' -p133433 -S'start_node(${1:Name}, ${2:Type}, ${3:Options}) $4' -p133434 -tp133435 -a(S'stop_node/1' -p133436 -S'stop_node(${1:Slave}) $2' -p133437 -tp133438 -a(S'temp_name/1' -p133439 -S'temp_name(${1:Stem}) $2' -p133440 -tp133441 -a(S'timecall/3' -p133442 -S'timecall(${1:M}, ${2:F}, ${3:A}) $4' -p133443 -tp133444 -a(S'timetrap/1' -p133445 -S'timetrap(${1:Timeout}) $2' -p133446 -tp133447 -a(S'timetrap_cancel/0' -p133448 -S'timetrap_cancel() $1' -p133449 -tp133450 -a(S'timetrap_cancel/1' -p133451 -S'timetrap_cancel(${1:Handle}) $2' -p133452 -tp133453 -a(S'timetrap_scale_factor/0' -p133454 -S'timetrap_scale_factor() $1' -p133455 -tp133456 -a(S'wait_for_node/1' -p133457 -S'wait_for_node(${1:Slave}) $2' -p133458 -tp133459 -asS'release_handler' -p133460 -(lp133461 -(S'check_install_release/1' -p133462 -S'check_install_release(${1:Vsn}) $2' -p133463 -tp133464 -a(S'check_install_release/2' -p133465 -S'check_install_release(${1:Vsn}, ${2:Opts}) $3' -p133466 -tp133467 -a(S'code_change/3' -p133468 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p133469 -tp133470 -a(S'create_RELEASES/1' -p133471 -S'create_RELEASES(${1:Param1}) $2' -p133472 -tp133473 -a(S'create_RELEASES/2' -p133474 -S'create_RELEASES(${1:Root}, ${2:RelFile}) $3' -p133475 -tp133476 -a(S'create_RELEASES/4' -p133477 -S'create_RELEASES(${1:Root}, ${2:RelDir}, ${3:RelFile}, ${4:LibDirs}) $5' -p133478 -tp133479 -a(S'do_copy_file/2' -p133480 -S'do_copy_file(${1:File}, ${2:Dir}) $3' -p133481 -tp133482 -a(S'do_copy_files/1' -p133483 -S'do_copy_files(${1:Param1}) $2' -p133484 -tp133485 -a(S'do_copy_files/2' -p133486 -S'do_copy_files(${1:File}, ${2:Param2}) $3' -p133487 -tp133488 -a(S'do_ensure_RELEASES/1' -p133489 -S'do_ensure_RELEASES(${1:RelFile}) $2' -p133490 -tp133491 -a(S'do_remove_files/1' -p133492 -S'do_remove_files(${1:Param1}) $2' -p133493 -tp133494 -a(S'do_rename_files/1' -p133495 -S'do_rename_files(${1:Param1}) $2' -p133496 -tp133497 -a(S'do_write_file/2' -p133498 -S'do_write_file(${1:File}, ${2:Str}) $3' -p133499 -tp133500 -a(S'do_write_release/3' -p133501 -S'do_write_release(${1:Dir}, ${2:RELEASES}, ${3:NewReleases}) $4' -p133502 -tp133503 -a(S'downgrade_app/2' -p133504 -S'downgrade_app(${1:App}, ${2:OldDir}) $3' -p133505 -tp133506 -a(S'downgrade_app/3' -p133507 -S'downgrade_app(${1:App}, ${2:OldVsn}, ${3:OldDir}) $4' -p133508 -tp133509 -a(S'downgrade_script/3' -p133510 -S'downgrade_script(${1:App}, ${2:OldVsn}, ${3:OldDir}) $4' -p133511 -tp133512 -a(S'eval_appup_script/4' -p133513 -S'eval_appup_script(${1:App}, ${2:ToVsn}, ${3:ToDir}, ${4:Script}) $5' -p133514 -tp133515 -a(S'handle_call/3' -p133516 -S'handle_call(${1:Param1}, ${2:From}, ${3:S}) $4' -p133517 -tp133518 -a(S'handle_cast/2' -p133519 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p133520 -tp133521 -a(S'handle_info/2' -p133522 -S'handle_info(${1:Msg}, ${2:S}) $3' -p133523 -tp133524 -a(S'init/1' -p133525 -S'init(${1:Param1}) $2' -p133526 -tp133527 -a(S'install_file/2' -p133528 -S'install_file(${1:Vsn}, ${2:File}) $3' -p133529 -tp133530 -a(S'install_release/1' -p133531 -S'install_release(${1:Vsn}) $2' -p133532 -tp133533 -a(S'install_release/2' -p133534 -S'install_release(${1:Vsn}, ${2:Opts}) $3' -p133535 -tp133536 -a(S'make_permanent/1' -p133537 -S'make_permanent(${1:Vsn}) $2' -p133538 -tp133539 -a(S'new_emulator_upgrade/2' -p133540 -S'new_emulator_upgrade(${1:Vsn}, ${2:Opts}) $3' -p133541 -tp133542 -a(S'reboot_old_release/1' -p133543 -S'reboot_old_release(${1:Vsn}) $2' -p133544 -tp133545 -a(S'remove_file/1' -p133546 -S'remove_file(${1:File}) $2' -p133547 -tp133548 -a(S'remove_release/1' -p133549 -S'remove_release(${1:Vsn}) $2' -p133550 -tp133551 -a(S'set_removed/1' -p133552 -S'set_removed(${1:Vsn}) $2' -p133553 -tp133554 -a(S'set_unpacked/2' -p133555 -S'set_unpacked(${1:RelFile}, ${2:LibDirs}) $3' -p133556 -tp133557 -a(S'start_link/0' -p133558 -S'start_link() $1' -p133559 -tp133560 -a(S'terminate/2' -p133561 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p133562 -tp133563 -a(S'unpack_release/1' -p133564 -S'unpack_release(${1:ReleaseName}) $2' -p133565 -tp133566 -a(S'upgrade_app/2' -p133567 -S'upgrade_app(${1:App}, ${2:NewDir}) $3' -p133568 -tp133569 -a(S'upgrade_script/2' -p133570 -S'upgrade_script(${1:App}, ${2:NewDir}) $3' -p133571 -tp133572 -a(S'which_releases/0' -p133573 -S'which_releases() $1' -p133574 -tp133575 -a(S'which_releases/1' -p133576 -S'which_releases(${1:Status}) $2' -p133577 -tp133578 -asS'ftp_sup' -p133579 -(lp133580 -(S'init/1' -p133581 -S'init(${1:Param1}) $2' -p133582 -tp133583 -a(S'start_child/1' -p133584 -S'start_child(${1:Args}) $2' -p133585 -tp133586 -a(S'start_link/0' -p133587 -S'start_link() $1' -p133588 -tp133589 -asS'eldap' -p133590 -(lp133591 -(S"'and'/1" -p133592 -S"'and'(${1:ListOfFilters}) $2" -p133593 -tp133594 -a(S"'not'/1" -p133595 -S"'not'(${1:Filter}) $2" -p133596 -tp133597 -a(S"'or'/1" -p133598 -S"'or'(${1:ListOfFilters}) $2" -p133599 -tp133600 -a(S'add/3' -p133601 -S'add(${1:Handle}, ${2:Entry}, ${3:Attributes}) $4' -p133602 -tp133603 -a(S'approxMatch/2' -p133604 -S'approxMatch(${1:Desc}, ${2:Value}) $3' -p133605 -tp133606 -a(S'baseObject/0' -p133607 -S'baseObject() $1' -p133608 -tp133609 -a(S'close/1' -p133610 -S'close(${1:Handle}) $2' -p133611 -tp133612 -a(S'controlling_process/2' -p133613 -S'controlling_process(${1:Handle}, ${2:Pid}) $3' -p133614 -tp133615 -a(S'delete/2' -p133616 -S'delete(${1:Handle}, ${2:Entry}) $3' -p133617 -tp133618 -a(S'derefAlways/0' -p133619 -S'derefAlways() $1' -p133620 -tp133621 -a(S'derefFindingBaseObj/0' -p133622 -S'derefFindingBaseObj() $1' -p133623 -tp133624 -a(S'derefInSearching/0' -p133625 -S'derefInSearching() $1' -p133626 -tp133627 -a(S'equalityMatch/2' -p133628 -S'equalityMatch(${1:Desc}, ${2:Value}) $3' -p133629 -tp133630 -a(S'greaterOrEqual/2' -p133631 -S'greaterOrEqual(${1:Desc}, ${2:Value}) $3' -p133632 -tp133633 -a(S'lessOrEqual/2' -p133634 -S'lessOrEqual(${1:Desc}, ${2:Value}) $3' -p133635 -tp133636 -a(S'loop/2' -p133637 -S'loop(${1:Cpid}, ${2:Data}) $3' -p133638 -tp133639 -a(S'mod_add/2' -p133640 -S'mod_add(${1:Type}, ${2:Values}) $3' -p133641 -tp133642 -a(S'mod_delete/2' -p133643 -S'mod_delete(${1:Type}, ${2:Values}) $3' -p133644 -tp133645 -a(S'mod_replace/2' -p133646 -S'mod_replace(${1:Type}, ${2:Values}) $3' -p133647 -tp133648 -a(S'modify/3' -p133649 -S'modify(${1:Handle}, ${2:Object}, ${3:Mods}) $4' -p133650 -tp133651 -a(S'modify_dn/5' -p133652 -S'modify_dn(${1:Data}, ${2:Entry}, ${3:NewRDN}, ${4:DelOldRDN}, ${5:NewSup}) $6' -p133653 -tp133654 -a(S'neverDerefAliases/0' -p133655 -S'neverDerefAliases() $1' -p133656 -tp133657 -a(S'open/1' -p133658 -S'open(${1:Hosts}) $2' -p133659 -tp133660 -a(S'open/2' -p133661 -S'open(${1:Hosts}, ${2:Opts}) $3' -p133662 -tp133663 -a(S'parse_dn/1' -p133664 -S'parse_dn(${1:Param1}) $2' -p133665 -tp133666 -a(S'parse_ldap_url/1' -p133667 -S'parse_ldap_url(${1:Str}) $2' -p133668 -tp133669 -a(S'present/1' -p133670 -S'present(${1:Attribute}) $2' -p133671 -tp133672 -a(S'search/2' -p133673 -S'search(${1:Handle}, ${2:A}) $3' -p133674 -tp133675 -a(S'simple_bind/3' -p133676 -S'simple_bind(${1:Handle}, ${2:Dn}, ${3:Passwd}) $4' -p133677 -tp133678 -a(S'singleLevel/0' -p133679 -S'singleLevel() $1' -p133680 -tp133681 -a(S'substrings/2' -p133682 -S'substrings(${1:Type}, ${2:SubStr}) $3' -p133683 -tp133684 -a(S'wholeSubtree/0' -p133685 -S'wholeSubtree() $1' -p133686 -tp133687 -asS'dbg' -p133688 -(lp133689 -(S'c/3' -p133690 -S'c(${1:M}, ${2:F}, ${3:A}) $4' -p133691 -tp133692 -a(S'c/4' -p133693 -S'c(${1:M}, ${2:F}, ${3:A}, ${4:Flags}) $5' -p133694 -tp133695 -a(S'cn/1' -p133696 -S'cn(${1:Node}) $2' -p133697 -tp133698 -a(S'ctp/0' -p133699 -S'ctp() $1' -p133700 -tp133701 -a(S'ctp/1' -p133702 -S'ctp(${1:Module}) $2' -p133703 -tp133704 -a(S'ctp/2' -p133705 -S'ctp(${1:Module}, ${2:Function}) $3' -p133706 -tp133707 -a(S'ctp/3' -p133708 -S'ctp(${1:Module}, ${2:Function}, ${3:Arity}) $4' -p133709 -tp133710 -a(S'ctpg/0' -p133711 -S'ctpg() $1' -p133712 -tp133713 -a(S'ctpg/1' -p133714 -S'ctpg(${1:Module}) $2' -p133715 -tp133716 -a(S'ctpg/2' -p133717 -S'ctpg(${1:Module}, ${2:Function}) $3' -p133718 -tp133719 -a(S'ctpg/3' -p133720 -S'ctpg(${1:Module}, ${2:Function}, ${3:Arity}) $4' -p133721 -tp133722 -a(S'ctpl/0' -p133723 -S'ctpl() $1' -p133724 -tp133725 -a(S'ctpl/1' -p133726 -S'ctpl(${1:Module}) $2' -p133727 -tp133728 -a(S'ctpl/2' -p133729 -S'ctpl(${1:Module}, ${2:Function}) $3' -p133730 -tp133731 -a(S'ctpl/3' -p133732 -S'ctpl(${1:Module}, ${2:Function}, ${3:Arity}) $4' -p133733 -tp133734 -a(S'deliver_and_flush/1' -p133735 -S'deliver_and_flush(${1:Port}) $2' -p133736 -tp133737 -a(S'dhandler/2' -p133738 -S'dhandler(${1:Param1}, ${2:Out}) $3' -p133739 -tp133740 -a(S'dtp/0' -p133741 -S'dtp() $1' -p133742 -tp133743 -a(S'dtp/1' -p133744 -S'dtp(${1:N}) $2' -p133745 -tp133746 -a(S'erlang_trace/3' -p133747 -S'erlang_trace(${1:AtomPid}, ${2:How}, ${3:Flags}) $4' -p133748 -tp133749 -a(S'flush_trace_port/0' -p133750 -S'flush_trace_port() $1' -p133751 -tp133752 -a(S'flush_trace_port/1' -p133753 -S'flush_trace_port(${1:Node}) $2' -p133754 -tp133755 -a(S'fun2ms/1' -p133756 -S'fun2ms(${1:ShellFun}) $2' -p133757 -tp133758 -a(S'get_info/0' -p133759 -S'get_info() $1' -p133760 -tp133761 -a(S'get_tracer/0' -p133762 -S'get_tracer() $1' -p133763 -tp133764 -a(S'get_tracer/1' -p133765 -S'get_tracer(${1:Node}) $2' -p133766 -tp133767 -a(S'h/0' -p133768 -S'h() $1' -p133769 -tp133770 -a(S'h/1' -p133771 -S'h(${1:Port}) $2' -p133772 -tp133773 -a(S'i/0' -p133774 -S'i() $1' -p133775 -tp133776 -a(S'ln/0' -p133777 -S'ln() $1' -p133778 -tp133779 -a(S'ltp/0' -p133780 -S'ltp() $1' -p133781 -tp133782 -a(S'match_0_9/1' -p133783 -S'match_0_9(${1:L}) $2' -p133784 -tp133785 -a(S'match_front/2' -p133786 -S'match_front(${1:ListA}, ${2:ListB}) $3' -p133787 -tp133788 -a(S'match_rear/2' -p133789 -S'match_rear(${1:ListA}, ${2:ListB}) $3' -p133790 -tp133791 -a(S'n/1' -p133792 -S'n(${1:ShellFun}) $2' -p133793 -tp133794 -a(S'p/1' -p133795 -S'p(${1:Module}) $2' -p133796 -tp133797 -a(S'p/2' -p133798 -S'p(${1:Module}, ${2:Pattern}) $3' -p133799 -tp133800 -a(S'rtp/1' -p133801 -S'rtp(${1:FileName}) $2' -p133802 -tp133803 -a(S'start/0' -p133804 -S'start() $1' -p133805 -tp133806 -a(S'stop/0' -p133807 -S'stop() $1' -p133808 -tp133809 -a(S'stop_clear/0' -p133810 -S'stop_clear() $1' -p133811 -tp133812 -a(S'stop_trace_client/1' -p133813 -S'stop_trace_client(${1:Pid}) $2' -p133814 -tp133815 -a(S'tp/2' -p133816 -S'tp(${1:Module}, ${2:Pattern}) $3' -p133817 -tp133818 -a(S'tp/3' -p133819 -S'tp(${1:Module}, ${2:Function}, ${3:Pattern}) $4' -p133820 -tp133821 -a(S'tp/4' -p133822 -S'tp(${1:Module}, ${2:Function}, ${3:Arity}, ${4:Pattern}) $5' -p133823 -tp133824 -a(S'tpl/2' -p133825 -S'tpl(${1:Module}, ${2:Pattern}) $3' -p133826 -tp133827 -a(S'tpl/3' -p133828 -S'tpl(${1:Module}, ${2:Function}, ${3:Pattern}) $4' -p133829 -tp133830 -a(S'tpl/4' -p133831 -S'tpl(${1:Module}, ${2:Function}, ${3:Arity}, ${4:Pattern}) $5' -p133832 -tp133833 -a(S'trace_client/2' -p133834 -S'trace_client(${1:Type}, ${2:Filename}) $3' -p133835 -tp133836 -a(S'trace_client/3' -p133837 -S'trace_client(${1:Type}, ${2:Filename}, ${3:FD}) $4' -p133838 -tp133839 -a(S'trace_port/2' -p133840 -S'trace_port(${1:Type}, ${2:Filename}) $3' -p133841 -tp133842 -a(S'trace_port_control/1' -p133843 -S'trace_port_control(${1:Operation}) $2' -p133844 -tp133845 -a(S'trace_port_control/2' -p133846 -S'trace_port_control(${1:Node}, ${2:Param2}) $3' -p133847 -tp133848 -a(S'tracer/0' -p133849 -S'tracer() $1' -p133850 -tp133851 -a(S'tracer/2' -p133852 -S'tracer(${1:Type}, ${2:Fun}) $3' -p133853 -tp133854 -a(S'tracer/3' -p133855 -S'tracer(${1:Node}, ${2:Type}, ${3:Data}) $4' -p133856 -tp133857 -a(S'transform_flags/1' -p133858 -S'transform_flags(${1:Flags0}) $2' -p133859 -tp133860 -a(S'wrap_postsort/1' -p133861 -S'wrap_postsort(${1:Files}) $2' -p133862 -tp133863 -a(S'wrap_presort/2' -p133864 -S'wrap_presort(${1:Filename}, ${2:Tail}) $3' -p133865 -tp133866 -a(S'wrap_sort/2' -p133867 -S'wrap_sort(${1:Files}, ${2:N}) $3' -p133868 -tp133869 -a(S'wrap_sortfix/2' -p133870 -S'wrap_sortfix(${1:Param1}, ${2:Param2}) $3' -p133871 -tp133872 -a(S'wtp/1' -p133873 -S'wtp(${1:FileName}) $2' -p133874 -tp133875 -asS'xref_reader' -p133876 -(lp133877 -(S'module/5' -p133878 -S'module(${1:Module}, ${2:Forms}, ${3:CollectBuiltins}, ${4:X}, ${5:DF}) $6' -p133879 -tp133880 -asS'wxSplashScreen' -p133881 -(lp133882 -(S'cacheBestSize/2' -p133883 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p133884 -tp133885 -a(S'captureMouse/1' -p133886 -S'captureMouse(${1:This}) $2' -p133887 -tp133888 -a(S'center/1' -p133889 -S'center(${1:This}) $2' -p133890 -tp133891 -a(S'center/2' -p133892 -S'center(${1:This}, ${2:Options}) $3' -p133893 -tp133894 -a(S'centerOnParent/1' -p133895 -S'centerOnParent(${1:This}) $2' -p133896 -tp133897 -a(S'centerOnParent/2' -p133898 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p133899 -tp133900 -a(S'centerOnScreen/1' -p133901 -S'centerOnScreen(${1:This}) $2' -p133902 -tp133903 -a(S'centerOnScreen/2' -p133904 -S'centerOnScreen(${1:This}, ${2:Options}) $3' -p133905 -tp133906 -a(S'centre/1' -p133907 -S'centre(${1:This}) $2' -p133908 -tp133909 -a(S'centre/2' -p133910 -S'centre(${1:This}, ${2:Options}) $3' -p133911 -tp133912 -a(S'centreOnParent/1' -p133913 -S'centreOnParent(${1:This}) $2' -p133914 -tp133915 -a(S'centreOnParent/2' -p133916 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p133917 -tp133918 -a(S'centreOnScreen/1' -p133919 -S'centreOnScreen(${1:This}) $2' -p133920 -tp133921 -a(S'centreOnScreen/2' -p133922 -S'centreOnScreen(${1:This}, ${2:Options}) $3' -p133923 -tp133924 -a(S'clearBackground/1' -p133925 -S'clearBackground(${1:This}) $2' -p133926 -tp133927 -a(S'clientToScreen/2' -p133928 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p133929 -tp133930 -a(S'clientToScreen/3' -p133931 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p133932 -tp133933 -a(S'close/1' -p133934 -S'close(${1:This}) $2' -p133935 -tp133936 -a(S'close/2' -p133937 -S'close(${1:This}, ${2:Options}) $3' -p133938 -tp133939 -a(S'connect/2' -p133940 -S'connect(${1:This}, ${2:EventType}) $3' -p133941 -tp133942 -a(S'connect/3' -p133943 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p133944 -tp133945 -a(S'convertDialogToPixels/2' -p133946 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p133947 -tp133948 -a(S'convertPixelsToDialog/2' -p133949 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p133950 -tp133951 -a(S'createStatusBar/1' -p133952 -S'createStatusBar(${1:This}) $2' -p133953 -tp133954 -a(S'createStatusBar/2' -p133955 -S'createStatusBar(${1:This}, ${2:Options}) $3' -p133956 -tp133957 -a(S'createToolBar/1' -p133958 -S'createToolBar(${1:This}) $2' -p133959 -tp133960 -a(S'createToolBar/2' -p133961 -S'createToolBar(${1:This}, ${2:Options}) $3' -p133962 -tp133963 -a(S'destroy/1' -p133964 -S'destroy(${1:This}) $2' -p133965 -tp133966 -a(S'destroyChildren/1' -p133967 -S'destroyChildren(${1:This}) $2' -p133968 -tp133969 -a(S'disable/1' -p133970 -S'disable(${1:This}) $2' -p133971 -tp133972 -a(S'disconnect/1' -p133973 -S'disconnect(${1:This}) $2' -p133974 -tp133975 -a(S'disconnect/2' -p133976 -S'disconnect(${1:This}, ${2:EventType}) $3' -p133977 -tp133978 -a(S'disconnect/3' -p133979 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p133980 -tp133981 -a(S'enable/1' -p133982 -S'enable(${1:This}) $2' -p133983 -tp133984 -a(S'enable/2' -p133985 -S'enable(${1:This}, ${2:Options}) $3' -p133986 -tp133987 -a(S'findWindow/2' -p133988 -S'findWindow(${1:This}, ${2:Winid}) $3' -p133989 -tp133990 -a(S'fit/1' -p133991 -S'fit(${1:This}) $2' -p133992 -tp133993 -a(S'fitInside/1' -p133994 -S'fitInside(${1:This}) $2' -p133995 -tp133996 -a(S'freeze/1' -p133997 -S'freeze(${1:This}) $2' -p133998 -tp133999 -a(S'getAcceleratorTable/1' -p134000 -S'getAcceleratorTable(${1:This}) $2' -p134001 -tp134002 -a(S'getBackgroundColour/1' -p134003 -S'getBackgroundColour(${1:This}) $2' -p134004 -tp134005 -a(S'getBackgroundStyle/1' -p134006 -S'getBackgroundStyle(${1:This}) $2' -p134007 -tp134008 -a(S'getBestSize/1' -p134009 -S'getBestSize(${1:This}) $2' -p134010 -tp134011 -a(S'getCaret/1' -p134012 -S'getCaret(${1:This}) $2' -p134013 -tp134014 -a(S'getCharHeight/1' -p134015 -S'getCharHeight(${1:This}) $2' -p134016 -tp134017 -a(S'getCharWidth/1' -p134018 -S'getCharWidth(${1:This}) $2' -p134019 -tp134020 -a(S'getChildren/1' -p134021 -S'getChildren(${1:This}) $2' -p134022 -tp134023 -a(S'getClientAreaOrigin/1' -p134024 -S'getClientAreaOrigin(${1:This}) $2' -p134025 -tp134026 -a(S'getClientSize/1' -p134027 -S'getClientSize(${1:This}) $2' -p134028 -tp134029 -a(S'getContainingSizer/1' -p134030 -S'getContainingSizer(${1:This}) $2' -p134031 -tp134032 -a(S'getCursor/1' -p134033 -S'getCursor(${1:This}) $2' -p134034 -tp134035 -a(S'getDropTarget/1' -p134036 -S'getDropTarget(${1:This}) $2' -p134037 -tp134038 -a(S'getEventHandler/1' -p134039 -S'getEventHandler(${1:This}) $2' -p134040 -tp134041 -a(S'getExtraStyle/1' -p134042 -S'getExtraStyle(${1:This}) $2' -p134043 -tp134044 -a(S'getFont/1' -p134045 -S'getFont(${1:This}) $2' -p134046 -tp134047 -a(S'getForegroundColour/1' -p134048 -S'getForegroundColour(${1:This}) $2' -p134049 -tp134050 -a(S'getGrandParent/1' -p134051 -S'getGrandParent(${1:This}) $2' -p134052 -tp134053 -a(S'getHandle/1' -p134054 -S'getHandle(${1:This}) $2' -p134055 -tp134056 -a(S'getHelpText/1' -p134057 -S'getHelpText(${1:This}) $2' -p134058 -tp134059 -a(S'getIcon/1' -p134060 -S'getIcon(${1:This}) $2' -p134061 -tp134062 -a(S'getIcons/1' -p134063 -S'getIcons(${1:This}) $2' -p134064 -tp134065 -a(S'getId/1' -p134066 -S'getId(${1:This}) $2' -p134067 -tp134068 -a(S'getLabel/1' -p134069 -S'getLabel(${1:This}) $2' -p134070 -tp134071 -a(S'getMaxSize/1' -p134072 -S'getMaxSize(${1:This}) $2' -p134073 -tp134074 -a(S'getMenuBar/1' -p134075 -S'getMenuBar(${1:This}) $2' -p134076 -tp134077 -a(S'getMinSize/1' -p134078 -S'getMinSize(${1:This}) $2' -p134079 -tp134080 -a(S'getName/1' -p134081 -S'getName(${1:This}) $2' -p134082 -tp134083 -a(S'getParent/1' -p134084 -S'getParent(${1:This}) $2' -p134085 -tp134086 -a(S'getPosition/1' -p134087 -S'getPosition(${1:This}) $2' -p134088 -tp134089 -a(S'getRect/1' -p134090 -S'getRect(${1:This}) $2' -p134091 -tp134092 -a(S'getScreenPosition/1' -p134093 -S'getScreenPosition(${1:This}) $2' -p134094 -tp134095 -a(S'getScreenRect/1' -p134096 -S'getScreenRect(${1:This}) $2' -p134097 -tp134098 -a(S'getScrollPos/2' -p134099 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p134100 -tp134101 -a(S'getScrollRange/2' -p134102 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p134103 -tp134104 -a(S'getScrollThumb/2' -p134105 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p134106 -tp134107 -a(S'getSize/1' -p134108 -S'getSize(${1:This}) $2' -p134109 -tp134110 -a(S'getSizer/1' -p134111 -S'getSizer(${1:This}) $2' -p134112 -tp134113 -a(S'getSplashStyle/1' -p134114 -S'getSplashStyle(${1:This}) $2' -p134115 -tp134116 -a(S'getStatusBar/1' -p134117 -S'getStatusBar(${1:This}) $2' -p134118 -tp134119 -a(S'getStatusBarPane/1' -p134120 -S'getStatusBarPane(${1:This}) $2' -p134121 -tp134122 -a(S'getTextExtent/2' -p134123 -S'getTextExtent(${1:This}, ${2:String}) $3' -p134124 -tp134125 -a(S'getTextExtent/3' -p134126 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p134127 -tp134128 -a(S'getTimeout/1' -p134129 -S'getTimeout(${1:This}) $2' -p134130 -tp134131 -a(S'getTitle/1' -p134132 -S'getTitle(${1:This}) $2' -p134133 -tp134134 -a(S'getToolBar/1' -p134135 -S'getToolBar(${1:This}) $2' -p134136 -tp134137 -a(S'getToolTip/1' -p134138 -S'getToolTip(${1:This}) $2' -p134139 -tp134140 -a(S'getUpdateRegion/1' -p134141 -S'getUpdateRegion(${1:This}) $2' -p134142 -tp134143 -a(S'getVirtualSize/1' -p134144 -S'getVirtualSize(${1:This}) $2' -p134145 -tp134146 -a(S'getWindowStyleFlag/1' -p134147 -S'getWindowStyleFlag(${1:This}) $2' -p134148 -tp134149 -a(S'getWindowVariant/1' -p134150 -S'getWindowVariant(${1:This}) $2' -p134151 -tp134152 -a(S'hasCapture/1' -p134153 -S'hasCapture(${1:This}) $2' -p134154 -tp134155 -a(S'hasScrollbar/2' -p134156 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p134157 -tp134158 -a(S'hasTransparentBackground/1' -p134159 -S'hasTransparentBackground(${1:This}) $2' -p134160 -tp134161 -a(S'hide/1' -p134162 -S'hide(${1:This}) $2' -p134163 -tp134164 -a(S'iconize/1' -p134165 -S'iconize(${1:This}) $2' -p134166 -tp134167 -a(S'iconize/2' -p134168 -S'iconize(${1:This}, ${2:Options}) $3' -p134169 -tp134170 -a(S'inheritAttributes/1' -p134171 -S'inheritAttributes(${1:This}) $2' -p134172 -tp134173 -a(S'initDialog/1' -p134174 -S'initDialog(${1:This}) $2' -p134175 -tp134176 -a(S'invalidateBestSize/1' -p134177 -S'invalidateBestSize(${1:This}) $2' -p134178 -tp134179 -a(S'isActive/1' -p134180 -S'isActive(${1:This}) $2' -p134181 -tp134182 -a(S'isEnabled/1' -p134183 -S'isEnabled(${1:This}) $2' -p134184 -tp134185 -a(S'isExposed/2' -p134186 -S'isExposed(${1:This}, ${2:Pt}) $3' -p134187 -tp134188 -a(S'isExposed/3' -p134189 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p134190 -tp134191 -a(S'isExposed/5' -p134192 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p134193 -tp134194 -a(S'isFullScreen/1' -p134195 -S'isFullScreen(${1:This}) $2' -p134196 -tp134197 -a(S'isIconized/1' -p134198 -S'isIconized(${1:This}) $2' -p134199 -tp134200 -a(S'isMaximized/1' -p134201 -S'isMaximized(${1:This}) $2' -p134202 -tp134203 -a(S'isRetained/1' -p134204 -S'isRetained(${1:This}) $2' -p134205 -tp134206 -a(S'isShown/1' -p134207 -S'isShown(${1:This}) $2' -p134208 -tp134209 -a(S'isTopLevel/1' -p134210 -S'isTopLevel(${1:This}) $2' -p134211 -tp134212 -a(S'layout/1' -p134213 -S'layout(${1:This}) $2' -p134214 -tp134215 -a(S'lineDown/1' -p134216 -S'lineDown(${1:This}) $2' -p134217 -tp134218 -a(S'lineUp/1' -p134219 -S'lineUp(${1:This}) $2' -p134220 -tp134221 -a(S'lower/1' -p134222 -S'lower(${1:This}) $2' -p134223 -tp134224 -a(S'makeModal/1' -p134225 -S'makeModal(${1:This}) $2' -p134226 -tp134227 -a(S'makeModal/2' -p134228 -S'makeModal(${1:This}, ${2:Options}) $3' -p134229 -tp134230 -a(S'maximize/1' -p134231 -S'maximize(${1:This}) $2' -p134232 -tp134233 -a(S'maximize/2' -p134234 -S'maximize(${1:This}, ${2:Options}) $3' -p134235 -tp134236 -a(S'move/2' -p134237 -S'move(${1:This}, ${2:Pt}) $3' -p134238 -tp134239 -a(S'move/3' -p134240 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p134241 -tp134242 -a(S'move/4' -p134243 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p134244 -tp134245 -a(S'moveAfterInTabOrder/2' -p134246 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p134247 -tp134248 -a(S'moveBeforeInTabOrder/2' -p134249 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p134250 -tp134251 -a(S'navigate/1' -p134252 -S'navigate(${1:This}) $2' -p134253 -tp134254 -a(S'navigate/2' -p134255 -S'navigate(${1:This}, ${2:Options}) $3' -p134256 -tp134257 -a(S'new/0' -p134258 -S'new() $1' -p134259 -tp134260 -a(S'new/5' -p134261 -S'new(${1:Bitmap}, ${2:SplashStyle}, ${3:Milliseconds}, ${4:Parent}, ${5:Id}) $6' -p134262 -tp134263 -a(S'new/6' -p134264 -S'new(${1:Bitmap}, ${2:SplashStyle}, ${3:Milliseconds}, ${4:Parent}, ${5:Id}, ${6:Param6}) $7' -p134265 -tp134266 -a(S'pageDown/1' -p134267 -S'pageDown(${1:This}) $2' -p134268 -tp134269 -a(S'pageUp/1' -p134270 -S'pageUp(${1:This}) $2' -p134271 -tp134272 -a(S'parent_class/1' -p134273 -S'parent_class(${1:Param1}) $2' -p134274 -tp134275 -a(S'popEventHandler/1' -p134276 -S'popEventHandler(${1:This}) $2' -p134277 -tp134278 -a(S'popEventHandler/2' -p134279 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p134280 -tp134281 -a(S'popupMenu/2' -p134282 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p134283 -tp134284 -a(S'popupMenu/3' -p134285 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p134286 -tp134287 -a(S'popupMenu/4' -p134288 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p134289 -tp134290 -a(S'processCommand/2' -p134291 -S'processCommand(${1:This}, ${2:Winid}) $3' -p134292 -tp134293 -a(S'raise/1' -p134294 -S'raise(${1:This}) $2' -p134295 -tp134296 -a(S'refresh/1' -p134297 -S'refresh(${1:This}) $2' -p134298 -tp134299 -a(S'refresh/2' -p134300 -S'refresh(${1:This}, ${2:Options}) $3' -p134301 -tp134302 -a(S'refreshRect/2' -p134303 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p134304 -tp134305 -a(S'refreshRect/3' -p134306 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p134307 -tp134308 -a(S'releaseMouse/1' -p134309 -S'releaseMouse(${1:This}) $2' -p134310 -tp134311 -a(S'removeChild/2' -p134312 -S'removeChild(${1:This}, ${2:Child}) $3' -p134313 -tp134314 -a(S'reparent/2' -p134315 -S'reparent(${1:This}, ${2:NewParent}) $3' -p134316 -tp134317 -a(S'requestUserAttention/1' -p134318 -S'requestUserAttention(${1:This}) $2' -p134319 -tp134320 -a(S'requestUserAttention/2' -p134321 -S'requestUserAttention(${1:This}, ${2:Options}) $3' -p134322 -tp134323 -a(S'screenToClient/1' -p134324 -S'screenToClient(${1:This}) $2' -p134325 -tp134326 -a(S'screenToClient/2' -p134327 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p134328 -tp134329 -a(S'scrollLines/2' -p134330 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p134331 -tp134332 -a(S'scrollPages/2' -p134333 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p134334 -tp134335 -a(S'scrollWindow/3' -p134336 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p134337 -tp134338 -a(S'scrollWindow/4' -p134339 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p134340 -tp134341 -a(S'sendSizeEvent/1' -p134342 -S'sendSizeEvent(${1:This}) $2' -p134343 -tp134344 -a(S'setAcceleratorTable/2' -p134345 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p134346 -tp134347 -a(S'setAutoLayout/2' -p134348 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p134349 -tp134350 -a(S'setBackgroundColour/2' -p134351 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p134352 -tp134353 -a(S'setBackgroundStyle/2' -p134354 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p134355 -tp134356 -a(S'setCaret/2' -p134357 -S'setCaret(${1:This}, ${2:Caret}) $3' -p134358 -tp134359 -a(S'setClientSize/2' -p134360 -S'setClientSize(${1:This}, ${2:Size}) $3' -p134361 -tp134362 -a(S'setClientSize/3' -p134363 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p134364 -tp134365 -a(S'setContainingSizer/2' -p134366 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p134367 -tp134368 -a(S'setCursor/2' -p134369 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p134370 -tp134371 -a(S'setDropTarget/2' -p134372 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p134373 -tp134374 -a(S'setExtraStyle/2' -p134375 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p134376 -tp134377 -a(S'setFocus/1' -p134378 -S'setFocus(${1:This}) $2' -p134379 -tp134380 -a(S'setFocusFromKbd/1' -p134381 -S'setFocusFromKbd(${1:This}) $2' -p134382 -tp134383 -a(S'setFont/2' -p134384 -S'setFont(${1:This}, ${2:Font}) $3' -p134385 -tp134386 -a(S'setForegroundColour/2' -p134387 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p134388 -tp134389 -a(S'setHelpText/2' -p134390 -S'setHelpText(${1:This}, ${2:Text}) $3' -p134391 -tp134392 -a(S'setIcon/2' -p134393 -S'setIcon(${1:This}, ${2:Icon}) $3' -p134394 -tp134395 -a(S'setIcons/2' -p134396 -S'setIcons(${1:This}, ${2:Icons}) $3' -p134397 -tp134398 -a(S'setId/2' -p134399 -S'setId(${1:This}, ${2:Winid}) $3' -p134400 -tp134401 -a(S'setLabel/2' -p134402 -S'setLabel(${1:This}, ${2:Label}) $3' -p134403 -tp134404 -a(S'setMaxSize/2' -p134405 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p134406 -tp134407 -a(S'setMenuBar/2' -p134408 -S'setMenuBar(${1:This}, ${2:Menubar}) $3' -p134409 -tp134410 -a(S'setMinSize/2' -p134411 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p134412 -tp134413 -a(S'setName/2' -p134414 -S'setName(${1:This}, ${2:Name}) $3' -p134415 -tp134416 -a(S'setOwnBackgroundColour/2' -p134417 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p134418 -tp134419 -a(S'setOwnFont/2' -p134420 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p134421 -tp134422 -a(S'setOwnForegroundColour/2' -p134423 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p134424 -tp134425 -a(S'setPalette/2' -p134426 -S'setPalette(${1:This}, ${2:Pal}) $3' -p134427 -tp134428 -a(S'setScrollPos/3' -p134429 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p134430 -tp134431 -a(S'setScrollPos/4' -p134432 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p134433 -tp134434 -a(S'setScrollbar/5' -p134435 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p134436 -tp134437 -a(S'setScrollbar/6' -p134438 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p134439 -tp134440 -a(S'setShape/2' -p134441 -S'setShape(${1:This}, ${2:Region}) $3' -p134442 -tp134443 -a(S'setSize/2' -p134444 -S'setSize(${1:This}, ${2:Rect}) $3' -p134445 -tp134446 -a(S'setSize/3' -p134447 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p134448 -tp134449 -a(S'setSize/5' -p134450 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p134451 -tp134452 -a(S'setSize/6' -p134453 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p134454 -tp134455 -a(S'setSizeHints/2' -p134456 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p134457 -tp134458 -a(S'setSizeHints/3' -p134459 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p134460 -tp134461 -a(S'setSizeHints/4' -p134462 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p134463 -tp134464 -a(S'setSizer/2' -p134465 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p134466 -tp134467 -a(S'setSizer/3' -p134468 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p134469 -tp134470 -a(S'setSizerAndFit/2' -p134471 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p134472 -tp134473 -a(S'setSizerAndFit/3' -p134474 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p134475 -tp134476 -a(S'setStatusBar/2' -p134477 -S'setStatusBar(${1:This}, ${2:Statbar}) $3' -p134478 -tp134479 -a(S'setStatusBarPane/2' -p134480 -S'setStatusBarPane(${1:This}, ${2:N}) $3' -p134481 -tp134482 -a(S'setStatusText/2' -p134483 -S'setStatusText(${1:This}, ${2:Text}) $3' -p134484 -tp134485 -a(S'setStatusText/3' -p134486 -S'setStatusText(${1:This}, ${2:Text}, ${3:Options}) $4' -p134487 -tp134488 -a(S'setStatusWidths/2' -p134489 -S'setStatusWidths(${1:This}, ${2:Widths_field}) $3' -p134490 -tp134491 -a(S'setThemeEnabled/2' -p134492 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p134493 -tp134494 -a(S'setTitle/2' -p134495 -S'setTitle(${1:This}, ${2:Title}) $3' -p134496 -tp134497 -a(S'setToolBar/2' -p134498 -S'setToolBar(${1:This}, ${2:Toolbar}) $3' -p134499 -tp134500 -a(S'setToolTip/2' -p134501 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p134502 -tp134503 -a(S'setVirtualSize/2' -p134504 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p134505 -tp134506 -a(S'setVirtualSize/3' -p134507 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p134508 -tp134509 -a(S'setVirtualSizeHints/2' -p134510 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p134511 -tp134512 -a(S'setVirtualSizeHints/3' -p134513 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p134514 -tp134515 -a(S'setVirtualSizeHints/4' -p134516 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p134517 -tp134518 -a(S'setWindowStyle/2' -p134519 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p134520 -tp134521 -a(S'setWindowStyleFlag/2' -p134522 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p134523 -tp134524 -a(S'setWindowVariant/2' -p134525 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p134526 -tp134527 -a(S'shouldInheritColours/1' -p134528 -S'shouldInheritColours(${1:This}) $2' -p134529 -tp134530 -a(S'show/1' -p134531 -S'show(${1:This}) $2' -p134532 -tp134533 -a(S'show/2' -p134534 -S'show(${1:This}, ${2:Options}) $3' -p134535 -tp134536 -a(S'showFullScreen/2' -p134537 -S'showFullScreen(${1:This}, ${2:Show}) $3' -p134538 -tp134539 -a(S'showFullScreen/3' -p134540 -S'showFullScreen(${1:This}, ${2:Show}, ${3:Options}) $4' -p134541 -tp134542 -a(S'thaw/1' -p134543 -S'thaw(${1:This}) $2' -p134544 -tp134545 -a(S'transferDataFromWindow/1' -p134546 -S'transferDataFromWindow(${1:This}) $2' -p134547 -tp134548 -a(S'transferDataToWindow/1' -p134549 -S'transferDataToWindow(${1:This}) $2' -p134550 -tp134551 -a(S'update/1' -p134552 -S'update(${1:This}) $2' -p134553 -tp134554 -a(S'updateWindowUI/1' -p134555 -S'updateWindowUI(${1:This}) $2' -p134556 -tp134557 -a(S'updateWindowUI/2' -p134558 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p134559 -tp134560 -a(S'validate/1' -p134561 -S'validate(${1:This}) $2' -p134562 -tp134563 -a(S'warpPointer/3' -p134564 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p134565 -tp134566 -asS'snmpa_usm' -p134567 -(lp134568 -(S'current_statsNotInTimeWindows_vb/0' -p134569 -S'current_statsNotInTimeWindows_vb() $1' -p134570 -tp134571 -a(S'generate_discovery_msg/4' -p134572 -S'generate_discovery_msg(${1:Message}, ${2:SecEngineID}, ${3:SecName}, ${4:SecLevel}) $5' -p134573 -tp134574 -a(S'generate_discovery_msg/5' -p134575 -S'generate_discovery_msg() $1' -p134576 -tp134577 -a(S'generate_outgoing_msg/5' -p134578 -S'generate_outgoing_msg(${1:Message}, ${2:SecEngineID}, ${3:SecName}, ${4:SecData}, ${5:SecLevel}) $6' -p134579 -tp134580 -a(S'generate_outgoing_msg/6' -p134581 -S'generate_outgoing_msg() $1' -p134582 -tp134583 -a(S'process_incoming_msg/4' -p134584 -S'process_incoming_msg(${1:Packet}, ${2:Data}, ${3:SecParams}, ${4:SecLevel}) $5' -p134585 -tp134586 -a(S'process_incoming_msg/5' -p134587 -S'process_incoming_msg(${1:Packet}, ${2:Data}, ${3:SecParams}, ${4:SecLevel}, ${5:LocalEngineID}) $6' -p134588 -tp134589 -asS'inet_tls_dist' -p134590 -(lp134591 -(S'accept/1' -p134592 -S'accept(${1:Listen}) $2' -p134593 -tp134594 -a(S'accept_connection/5' -p134595 -S'accept_connection(${1:AcceptPid}, ${2:Socket}, ${3:MyNode}, ${4:Allowed}, ${5:SetupTime}) $6' -p134596 -tp134597 -a(S'childspecs/0' -p134598 -S'childspecs() $1' -p134599 -tp134600 -a(S'close/1' -p134601 -S'close(${1:Socket}) $2' -p134602 -tp134603 -a(S'is_node_name/1' -p134604 -S'is_node_name(${1:Node}) $2' -p134605 -tp134606 -a(S'listen/1' -p134607 -S'listen(${1:Name}) $2' -p134608 -tp134609 -a(S'select/1' -p134610 -S'select(${1:Node}) $2' -p134611 -tp134612 -a(S'setup/5' -p134613 -S'setup(${1:Node}, ${2:Type}, ${3:MyNode}, ${4:LongOrShortNames}, ${5:SetupTime}) $6' -p134614 -tp134615 -asS'megaco_digit_map' -p134616 -(lp134617 -(S'eval/1' -p134618 -S'eval(${1:DMV}) $2' -p134619 -tp134620 -a(S'eval/2' -p134621 -S'eval(${1:DigitMapBody}, ${2:Timers}) $3' -p134622 -tp134623 -a(S'parse/1' -p134624 -S'parse(${1:DigitMapBody}) $2' -p134625 -tp134626 -a(S'report/2' -p134627 -S'report(${1:Pid}, ${2:Event}) $3' -p134628 -tp134629 -a(S'test/2' -p134630 -S'test(${1:DigitMap}, ${2:Events}) $3' -p134631 -tp134632 -a(S'test_eval/2' -p134633 -S'test_eval(${1:DigitMap}, ${2:Parent}) $3' -p134634 -tp134635 -asS'megaco_compact_text_encoder_v1' -p134636 -(lp134637 -(S'encode_action_reply/2' -p134638 -S'encode_action_reply() $1' -p134639 -tp134640 -a(S'encode_action_request/2' -p134641 -S'encode_action_request() $1' -p134642 -tp134643 -a(S'encode_action_requests/2' -p134644 -S'encode_action_requests(${1:Param1}, ${2:ActReqs}) $3' -p134645 -tp134646 -a(S'encode_command_request/2' -p134647 -S'encode_command_request() $1' -p134648 -tp134649 -a(S'encode_message/2' -p134650 -S'encode_message(${1:Param1}, ${2:Param2}) $3' -p134651 -tp134652 -a(S'encode_transaction/2' -p134653 -S'encode_transaction(${1:Param1}, ${2:Trans}) $3' -p134654 -tp134655 -a(S'token_tag2string/1' -p134656 -S'token_tag2string(${1:Param1}) $2' -p134657 -tp134658 -asS'mnesia_registry' -p134659 -(lp134660 -(S'create_table/1' -p134661 -S'create_table(${1:Tab}) $2' -p134662 -tp134663 -a(S'create_table/2' -p134664 -S'create_table(${1:Tab}, ${2:TabDef}) $3' -p134665 -tp134666 -a(S'init/4' -p134667 -S'init(${1:Type}, ${2:Starter}, ${3:LinkTo}, ${4:Tab}) $5' -p134668 -tp134669 -a(S'start_dump/2' -p134670 -S'start_dump(${1:Tab}, ${2:LinkTo}) $3' -p134671 -tp134672 -a(S'start_restore/2' -p134673 -S'start_restore(${1:Tab}, ${2:LinkTo}) $3' -p134674 -tp134675 -asS'CosPropertyService_PropertyDefs' -p134676 -(lp134677 -(S'id/0' -p134678 -S'id() $1' -p134679 -tp134680 -a(S'name/0' -p134681 -S'name() $1' -p134682 -tp134683 -a(S'tc/0' -p134684 -S'tc() $1' -p134685 -tp134686 -asS'wxPalette' -p134687 -(lp134688 -(S'create/4' -p134689 -S'create(${1:This}, ${2:Red}, ${3:Green}, ${4:Blue}) $5' -p134690 -tp134691 -a(S'destroy/1' -p134692 -S'destroy(${1:This}) $2' -p134693 -tp134694 -a(S'getColoursCount/1' -p134695 -S'getColoursCount(${1:This}) $2' -p134696 -tp134697 -a(S'getPixel/4' -p134698 -S'getPixel(${1:This}, ${2:Red}, ${3:Green}, ${4:Blue}) $5' -p134699 -tp134700 -a(S'getRGB/2' -p134701 -S'getRGB(${1:This}, ${2:Pixel}) $3' -p134702 -tp134703 -a(S'isOk/1' -p134704 -S'isOk(${1:This}) $2' -p134705 -tp134706 -a(S'new/0' -p134707 -S'new() $1' -p134708 -tp134709 -a(S'new/3' -p134710 -S'new(${1:Red}, ${2:Green}, ${3:Blue}) $4' -p134711 -tp134712 -a(S'parent_class/1' -p134713 -S'parent_class(${1:Param1}) $2' -p134714 -tp134715 -asS'megaco_tcp_accept_sup' -p134716 -(lp134717 -(S'init/1' -p134718 -S'init(${1:Param1}) $2' -p134719 -tp134720 -a(S'start_child/4' -p134721 -S'start_child(${1:Pid}, ${2:Rec}, ${3:Ref}, ${4:Listen}) $5' -p134722 -tp134723 -a(S'start_link/0' -p134724 -S'start_link() $1' -p134725 -tp134726 -a(S'terminate/2' -p134727 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p134728 -tp134729 -asS'ic_plainbe' -p134730 -(lp134731 -(S'do_gen/3' -p134732 -S'do_gen(${1:G}, ${2:File}, ${3:Form}) $4' -p134733 -tp134734 -asS'pubkey_pem' -p134735 -(lp134736 -(S'cipher/3' -p134737 -S'cipher(${1:Der}, ${2:Param2}, ${3:Password}) $4' -p134738 -tp134739 -a(S'decipher/2' -p134740 -S'decipher(${1:Param1}, ${2:Password}) $3' -p134741 -tp134742 -a(S'decode/1' -p134743 -S'decode(${1:Bin}) $2' -p134744 -tp134745 -a(S'encode/1' -p134746 -S'encode(${1:PemEntries}) $2' -p134747 -tp134748 -asS'httpd_instance_sup' -p134749 -(lp134750 -(S'init/1' -p134751 -S'init(${1:Param1}) $2' -p134752 -tp134753 -a(S'start_link/3' -p134754 -S'start_link(${1:Config}, ${2:AcceptTimeout}, ${3:Debug}) $4' -p134755 -tp134756 -a(S'start_link/4' -p134757 -S'start_link(${1:Config}, ${2:AcceptTimeout}, ${3:ListenInfo}, ${4:Debug}) $5' -p134758 -tp134759 -asS'wxNotifyEvent' -p134760 -(lp134761 -(S'allow/1' -p134762 -S'allow(${1:This}) $2' -p134763 -tp134764 -a(S'getClientData/1' -p134765 -S'getClientData(${1:This}) $2' -p134766 -tp134767 -a(S'getExtraLong/1' -p134768 -S'getExtraLong(${1:This}) $2' -p134769 -tp134770 -a(S'getId/1' -p134771 -S'getId(${1:This}) $2' -p134772 -tp134773 -a(S'getInt/1' -p134774 -S'getInt(${1:This}) $2' -p134775 -tp134776 -a(S'getSelection/1' -p134777 -S'getSelection(${1:This}) $2' -p134778 -tp134779 -a(S'getSkipped/1' -p134780 -S'getSkipped(${1:This}) $2' -p134781 -tp134782 -a(S'getString/1' -p134783 -S'getString(${1:This}) $2' -p134784 -tp134785 -a(S'getTimestamp/1' -p134786 -S'getTimestamp(${1:This}) $2' -p134787 -tp134788 -a(S'isAllowed/1' -p134789 -S'isAllowed(${1:This}) $2' -p134790 -tp134791 -a(S'isChecked/1' -p134792 -S'isChecked(${1:This}) $2' -p134793 -tp134794 -a(S'isCommandEvent/1' -p134795 -S'isCommandEvent(${1:This}) $2' -p134796 -tp134797 -a(S'isSelection/1' -p134798 -S'isSelection(${1:This}) $2' -p134799 -tp134800 -a(S'parent_class/1' -p134801 -S'parent_class(${1:Param1}) $2' -p134802 -tp134803 -a(S'resumePropagation/2' -p134804 -S'resumePropagation(${1:This}, ${2:PropagationLevel}) $3' -p134805 -tp134806 -a(S'setInt/2' -p134807 -S'setInt(${1:This}, ${2:I}) $3' -p134808 -tp134809 -a(S'setString/2' -p134810 -S'setString(${1:This}, ${2:S}) $3' -p134811 -tp134812 -a(S'shouldPropagate/1' -p134813 -S'shouldPropagate(${1:This}) $2' -p134814 -tp134815 -a(S'skip/1' -p134816 -S'skip(${1:This}) $2' -p134817 -tp134818 -a(S'skip/2' -p134819 -S'skip(${1:This}, ${2:Options}) $3' -p134820 -tp134821 -a(S'stopPropagation/1' -p134822 -S'stopPropagation(${1:This}) $2' -p134823 -tp134824 -a(S'veto/1' -p134825 -S'veto(${1:This}) $2' -p134826 -tp134827 -asS'crypto_server' -p134828 -(lp134829 -(S'code_change/3' -p134830 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p134831 -tp134832 -a(S'handle_call/3' -p134833 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p134834 -tp134835 -a(S'handle_cast/2' -p134836 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p134837 -tp134838 -a(S'handle_info/2' -p134839 -S'handle_info(${1:Param1}, ${2:State}) $3' -p134840 -tp134841 -a(S'init/1' -p134842 -S'init(${1:Param1}) $2' -p134843 -tp134844 -a(S'start_link/0' -p134845 -S'start_link() $1' -p134846 -tp134847 -a(S'terminate/2' -p134848 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p134849 -tp134850 -asS'wxColourPickerCtrl' -p134851 -(lp134852 -(S'cacheBestSize/2' -p134853 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p134854 -tp134855 -a(S'captureMouse/1' -p134856 -S'captureMouse(${1:This}) $2' -p134857 -tp134858 -a(S'center/1' -p134859 -S'center(${1:This}) $2' -p134860 -tp134861 -a(S'center/2' -p134862 -S'center(${1:This}, ${2:Options}) $3' -p134863 -tp134864 -a(S'centerOnParent/1' -p134865 -S'centerOnParent(${1:This}) $2' -p134866 -tp134867 -a(S'centerOnParent/2' -p134868 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p134869 -tp134870 -a(S'centre/1' -p134871 -S'centre(${1:This}) $2' -p134872 -tp134873 -a(S'centre/2' -p134874 -S'centre(${1:This}, ${2:Options}) $3' -p134875 -tp134876 -a(S'centreOnParent/1' -p134877 -S'centreOnParent(${1:This}) $2' -p134878 -tp134879 -a(S'centreOnParent/2' -p134880 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p134881 -tp134882 -a(S'clearBackground/1' -p134883 -S'clearBackground(${1:This}) $2' -p134884 -tp134885 -a(S'clientToScreen/2' -p134886 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p134887 -tp134888 -a(S'clientToScreen/3' -p134889 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p134890 -tp134891 -a(S'close/1' -p134892 -S'close(${1:This}) $2' -p134893 -tp134894 -a(S'close/2' -p134895 -S'close(${1:This}, ${2:Options}) $3' -p134896 -tp134897 -a(S'connect/2' -p134898 -S'connect(${1:This}, ${2:EventType}) $3' -p134899 -tp134900 -a(S'connect/3' -p134901 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p134902 -tp134903 -a(S'convertDialogToPixels/2' -p134904 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p134905 -tp134906 -a(S'convertPixelsToDialog/2' -p134907 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p134908 -tp134909 -a(S'create/3' -p134910 -S'create(${1:This}, ${2:Parent}, ${3:Id}) $4' -p134911 -tp134912 -a(S'create/4' -p134913 -S'create(${1:This}, ${2:Parent}, ${3:Id}, ${4:Param4}) $5' -p134914 -tp134915 -a(S'destroy/1' -p134916 -S'destroy(${1:This}) $2' -p134917 -tp134918 -a(S'destroyChildren/1' -p134919 -S'destroyChildren(${1:This}) $2' -p134920 -tp134921 -a(S'disable/1' -p134922 -S'disable(${1:This}) $2' -p134923 -tp134924 -a(S'disconnect/1' -p134925 -S'disconnect(${1:This}) $2' -p134926 -tp134927 -a(S'disconnect/2' -p134928 -S'disconnect(${1:This}, ${2:EventType}) $3' -p134929 -tp134930 -a(S'disconnect/3' -p134931 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p134932 -tp134933 -a(S'enable/1' -p134934 -S'enable(${1:This}) $2' -p134935 -tp134936 -a(S'enable/2' -p134937 -S'enable(${1:This}, ${2:Options}) $3' -p134938 -tp134939 -a(S'findWindow/2' -p134940 -S'findWindow(${1:This}, ${2:Winid}) $3' -p134941 -tp134942 -a(S'fit/1' -p134943 -S'fit(${1:This}) $2' -p134944 -tp134945 -a(S'fitInside/1' -p134946 -S'fitInside(${1:This}) $2' -p134947 -tp134948 -a(S'freeze/1' -p134949 -S'freeze(${1:This}) $2' -p134950 -tp134951 -a(S'getAcceleratorTable/1' -p134952 -S'getAcceleratorTable(${1:This}) $2' -p134953 -tp134954 -a(S'getBackgroundColour/1' -p134955 -S'getBackgroundColour(${1:This}) $2' -p134956 -tp134957 -a(S'getBackgroundStyle/1' -p134958 -S'getBackgroundStyle(${1:This}) $2' -p134959 -tp134960 -a(S'getBestSize/1' -p134961 -S'getBestSize(${1:This}) $2' -p134962 -tp134963 -a(S'getCaret/1' -p134964 -S'getCaret(${1:This}) $2' -p134965 -tp134966 -a(S'getCharHeight/1' -p134967 -S'getCharHeight(${1:This}) $2' -p134968 -tp134969 -a(S'getCharWidth/1' -p134970 -S'getCharWidth(${1:This}) $2' -p134971 -tp134972 -a(S'getChildren/1' -p134973 -S'getChildren(${1:This}) $2' -p134974 -tp134975 -a(S'getClientSize/1' -p134976 -S'getClientSize(${1:This}) $2' -p134977 -tp134978 -a(S'getColour/1' -p134979 -S'getColour(${1:This}) $2' -p134980 -tp134981 -a(S'getContainingSizer/1' -p134982 -S'getContainingSizer(${1:This}) $2' -p134983 -tp134984 -a(S'getCursor/1' -p134985 -S'getCursor(${1:This}) $2' -p134986 -tp134987 -a(S'getDropTarget/1' -p134988 -S'getDropTarget(${1:This}) $2' -p134989 -tp134990 -a(S'getEventHandler/1' -p134991 -S'getEventHandler(${1:This}) $2' -p134992 -tp134993 -a(S'getExtraStyle/1' -p134994 -S'getExtraStyle(${1:This}) $2' -p134995 -tp134996 -a(S'getFont/1' -p134997 -S'getFont(${1:This}) $2' -p134998 -tp134999 -a(S'getForegroundColour/1' -p135000 -S'getForegroundColour(${1:This}) $2' -p135001 -tp135002 -a(S'getGrandParent/1' -p135003 -S'getGrandParent(${1:This}) $2' -p135004 -tp135005 -a(S'getHandle/1' -p135006 -S'getHandle(${1:This}) $2' -p135007 -tp135008 -a(S'getHelpText/1' -p135009 -S'getHelpText(${1:This}) $2' -p135010 -tp135011 -a(S'getId/1' -p135012 -S'getId(${1:This}) $2' -p135013 -tp135014 -a(S'getInternalMargin/1' -p135015 -S'getInternalMargin(${1:This}) $2' -p135016 -tp135017 -a(S'getLabel/1' -p135018 -S'getLabel(${1:This}) $2' -p135019 -tp135020 -a(S'getMaxSize/1' -p135021 -S'getMaxSize(${1:This}) $2' -p135022 -tp135023 -a(S'getMinSize/1' -p135024 -S'getMinSize(${1:This}) $2' -p135025 -tp135026 -a(S'getName/1' -p135027 -S'getName(${1:This}) $2' -p135028 -tp135029 -a(S'getParent/1' -p135030 -S'getParent(${1:This}) $2' -p135031 -tp135032 -a(S'getPickerCtrlProportion/1' -p135033 -S'getPickerCtrlProportion(${1:This}) $2' -p135034 -tp135035 -a(S'getPosition/1' -p135036 -S'getPosition(${1:This}) $2' -p135037 -tp135038 -a(S'getRect/1' -p135039 -S'getRect(${1:This}) $2' -p135040 -tp135041 -a(S'getScreenPosition/1' -p135042 -S'getScreenPosition(${1:This}) $2' -p135043 -tp135044 -a(S'getScreenRect/1' -p135045 -S'getScreenRect(${1:This}) $2' -p135046 -tp135047 -a(S'getScrollPos/2' -p135048 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p135049 -tp135050 -a(S'getScrollRange/2' -p135051 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p135052 -tp135053 -a(S'getScrollThumb/2' -p135054 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p135055 -tp135056 -a(S'getSize/1' -p135057 -S'getSize(${1:This}) $2' -p135058 -tp135059 -a(S'getSizer/1' -p135060 -S'getSizer(${1:This}) $2' -p135061 -tp135062 -a(S'getTextCtrl/1' -p135063 -S'getTextCtrl(${1:This}) $2' -p135064 -tp135065 -a(S'getTextCtrlProportion/1' -p135066 -S'getTextCtrlProportion(${1:This}) $2' -p135067 -tp135068 -a(S'getTextExtent/2' -p135069 -S'getTextExtent(${1:This}, ${2:String}) $3' -p135070 -tp135071 -a(S'getTextExtent/3' -p135072 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p135073 -tp135074 -a(S'getToolTip/1' -p135075 -S'getToolTip(${1:This}) $2' -p135076 -tp135077 -a(S'getUpdateRegion/1' -p135078 -S'getUpdateRegion(${1:This}) $2' -p135079 -tp135080 -a(S'getVirtualSize/1' -p135081 -S'getVirtualSize(${1:This}) $2' -p135082 -tp135083 -a(S'getWindowStyleFlag/1' -p135084 -S'getWindowStyleFlag(${1:This}) $2' -p135085 -tp135086 -a(S'getWindowVariant/1' -p135087 -S'getWindowVariant(${1:This}) $2' -p135088 -tp135089 -a(S'hasCapture/1' -p135090 -S'hasCapture(${1:This}) $2' -p135091 -tp135092 -a(S'hasScrollbar/2' -p135093 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p135094 -tp135095 -a(S'hasTextCtrl/1' -p135096 -S'hasTextCtrl(${1:This}) $2' -p135097 -tp135098 -a(S'hasTransparentBackground/1' -p135099 -S'hasTransparentBackground(${1:This}) $2' -p135100 -tp135101 -a(S'hide/1' -p135102 -S'hide(${1:This}) $2' -p135103 -tp135104 -a(S'inheritAttributes/1' -p135105 -S'inheritAttributes(${1:This}) $2' -p135106 -tp135107 -a(S'initDialog/1' -p135108 -S'initDialog(${1:This}) $2' -p135109 -tp135110 -a(S'invalidateBestSize/1' -p135111 -S'invalidateBestSize(${1:This}) $2' -p135112 -tp135113 -a(S'isEnabled/1' -p135114 -S'isEnabled(${1:This}) $2' -p135115 -tp135116 -a(S'isExposed/2' -p135117 -S'isExposed(${1:This}, ${2:Pt}) $3' -p135118 -tp135119 -a(S'isExposed/3' -p135120 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p135121 -tp135122 -a(S'isExposed/5' -p135123 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p135124 -tp135125 -a(S'isPickerCtrlGrowable/1' -p135126 -S'isPickerCtrlGrowable(${1:This}) $2' -p135127 -tp135128 -a(S'isRetained/1' -p135129 -S'isRetained(${1:This}) $2' -p135130 -tp135131 -a(S'isShown/1' -p135132 -S'isShown(${1:This}) $2' -p135133 -tp135134 -a(S'isTextCtrlGrowable/1' -p135135 -S'isTextCtrlGrowable(${1:This}) $2' -p135136 -tp135137 -a(S'isTopLevel/1' -p135138 -S'isTopLevel(${1:This}) $2' -p135139 -tp135140 -a(S'layout/1' -p135141 -S'layout(${1:This}) $2' -p135142 -tp135143 -a(S'lineDown/1' -p135144 -S'lineDown(${1:This}) $2' -p135145 -tp135146 -a(S'lineUp/1' -p135147 -S'lineUp(${1:This}) $2' -p135148 -tp135149 -a(S'lower/1' -p135150 -S'lower(${1:This}) $2' -p135151 -tp135152 -a(S'makeModal/1' -p135153 -S'makeModal(${1:This}) $2' -p135154 -tp135155 -a(S'makeModal/2' -p135156 -S'makeModal(${1:This}, ${2:Options}) $3' -p135157 -tp135158 -a(S'move/2' -p135159 -S'move(${1:This}, ${2:Pt}) $3' -p135160 -tp135161 -a(S'move/3' -p135162 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p135163 -tp135164 -a(S'move/4' -p135165 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p135166 -tp135167 -a(S'moveAfterInTabOrder/2' -p135168 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p135169 -tp135170 -a(S'moveBeforeInTabOrder/2' -p135171 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p135172 -tp135173 -a(S'navigate/1' -p135174 -S'navigate(${1:This}) $2' -p135175 -tp135176 -a(S'navigate/2' -p135177 -S'navigate(${1:This}, ${2:Options}) $3' -p135178 -tp135179 -a(S'new/0' -p135180 -S'new() $1' -p135181 -tp135182 -a(S'new/2' -p135183 -S'new(${1:Parent}, ${2:Id}) $3' -p135184 -tp135185 -a(S'new/3' -p135186 -S'new(${1:Parent}, ${2:Id}, ${3:Param3}) $4' -p135187 -tp135188 -a(S'pageDown/1' -p135189 -S'pageDown(${1:This}) $2' -p135190 -tp135191 -a(S'pageUp/1' -p135192 -S'pageUp(${1:This}) $2' -p135193 -tp135194 -a(S'parent_class/1' -p135195 -S'parent_class(${1:Param1}) $2' -p135196 -tp135197 -a(S'popEventHandler/1' -p135198 -S'popEventHandler(${1:This}) $2' -p135199 -tp135200 -a(S'popEventHandler/2' -p135201 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p135202 -tp135203 -a(S'popupMenu/2' -p135204 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p135205 -tp135206 -a(S'popupMenu/3' -p135207 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p135208 -tp135209 -a(S'popupMenu/4' -p135210 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p135211 -tp135212 -a(S'raise/1' -p135213 -S'raise(${1:This}) $2' -p135214 -tp135215 -a(S'refresh/1' -p135216 -S'refresh(${1:This}) $2' -p135217 -tp135218 -a(S'refresh/2' -p135219 -S'refresh(${1:This}, ${2:Options}) $3' -p135220 -tp135221 -a(S'refreshRect/2' -p135222 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p135223 -tp135224 -a(S'refreshRect/3' -p135225 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p135226 -tp135227 -a(S'releaseMouse/1' -p135228 -S'releaseMouse(${1:This}) $2' -p135229 -tp135230 -a(S'removeChild/2' -p135231 -S'removeChild(${1:This}, ${2:Child}) $3' -p135232 -tp135233 -a(S'reparent/2' -p135234 -S'reparent(${1:This}, ${2:NewParent}) $3' -p135235 -tp135236 -a(S'screenToClient/1' -p135237 -S'screenToClient(${1:This}) $2' -p135238 -tp135239 -a(S'screenToClient/2' -p135240 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p135241 -tp135242 -a(S'scrollLines/2' -p135243 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p135244 -tp135245 -a(S'scrollPages/2' -p135246 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p135247 -tp135248 -a(S'scrollWindow/3' -p135249 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p135250 -tp135251 -a(S'scrollWindow/4' -p135252 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p135253 -tp135254 -a(S'setAcceleratorTable/2' -p135255 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p135256 -tp135257 -a(S'setAutoLayout/2' -p135258 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p135259 -tp135260 -a(S'setBackgroundColour/2' -p135261 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p135262 -tp135263 -a(S'setBackgroundStyle/2' -p135264 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p135265 -tp135266 -a(S'setCaret/2' -p135267 -S'setCaret(${1:This}, ${2:Caret}) $3' -p135268 -tp135269 -a(S'setClientSize/2' -p135270 -S'setClientSize(${1:This}, ${2:Size}) $3' -p135271 -tp135272 -a(S'setClientSize/3' -p135273 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p135274 -tp135275 -a(S'setColour/2' -p135276 -S'setColour(${1:This}, ${2:Text}) $3' -p135277 -tp135278 -a(S'setContainingSizer/2' -p135279 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p135280 -tp135281 -a(S'setCursor/2' -p135282 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p135283 -tp135284 -a(S'setDropTarget/2' -p135285 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p135286 -tp135287 -a(S'setExtraStyle/2' -p135288 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p135289 -tp135290 -a(S'setFocus/1' -p135291 -S'setFocus(${1:This}) $2' -p135292 -tp135293 -a(S'setFocusFromKbd/1' -p135294 -S'setFocusFromKbd(${1:This}) $2' -p135295 -tp135296 -a(S'setFont/2' -p135297 -S'setFont(${1:This}, ${2:Font}) $3' -p135298 -tp135299 -a(S'setForegroundColour/2' -p135300 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p135301 -tp135302 -a(S'setHelpText/2' -p135303 -S'setHelpText(${1:This}, ${2:Text}) $3' -p135304 -tp135305 -a(S'setId/2' -p135306 -S'setId(${1:This}, ${2:Winid}) $3' -p135307 -tp135308 -a(S'setInternalMargin/2' -p135309 -S'setInternalMargin(${1:This}, ${2:Newmargin}) $3' -p135310 -tp135311 -a(S'setLabel/2' -p135312 -S'setLabel(${1:This}, ${2:Label}) $3' -p135313 -tp135314 -a(S'setMaxSize/2' -p135315 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p135316 -tp135317 -a(S'setMinSize/2' -p135318 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p135319 -tp135320 -a(S'setName/2' -p135321 -S'setName(${1:This}, ${2:Name}) $3' -p135322 -tp135323 -a(S'setOwnBackgroundColour/2' -p135324 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p135325 -tp135326 -a(S'setOwnFont/2' -p135327 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p135328 -tp135329 -a(S'setOwnForegroundColour/2' -p135330 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p135331 -tp135332 -a(S'setPalette/2' -p135333 -S'setPalette(${1:This}, ${2:Pal}) $3' -p135334 -tp135335 -a(S'setPickerCtrlGrowable/1' -p135336 -S'setPickerCtrlGrowable(${1:This}) $2' -p135337 -tp135338 -a(S'setPickerCtrlGrowable/2' -p135339 -S'setPickerCtrlGrowable(${1:This}, ${2:Options}) $3' -p135340 -tp135341 -a(S'setPickerCtrlProportion/2' -p135342 -S'setPickerCtrlProportion(${1:This}, ${2:Prop}) $3' -p135343 -tp135344 -a(S'setScrollPos/3' -p135345 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p135346 -tp135347 -a(S'setScrollPos/4' -p135348 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p135349 -tp135350 -a(S'setScrollbar/5' -p135351 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p135352 -tp135353 -a(S'setScrollbar/6' -p135354 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p135355 -tp135356 -a(S'setSize/2' -p135357 -S'setSize(${1:This}, ${2:Rect}) $3' -p135358 -tp135359 -a(S'setSize/3' -p135360 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p135361 -tp135362 -a(S'setSize/5' -p135363 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p135364 -tp135365 -a(S'setSize/6' -p135366 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p135367 -tp135368 -a(S'setSizeHints/2' -p135369 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p135370 -tp135371 -a(S'setSizeHints/3' -p135372 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p135373 -tp135374 -a(S'setSizeHints/4' -p135375 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p135376 -tp135377 -a(S'setSizer/2' -p135378 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p135379 -tp135380 -a(S'setSizer/3' -p135381 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p135382 -tp135383 -a(S'setSizerAndFit/2' -p135384 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p135385 -tp135386 -a(S'setSizerAndFit/3' -p135387 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p135388 -tp135389 -a(S'setTextCtrlGrowable/1' -p135390 -S'setTextCtrlGrowable(${1:This}) $2' -p135391 -tp135392 -a(S'setTextCtrlGrowable/2' -p135393 -S'setTextCtrlGrowable(${1:This}, ${2:Options}) $3' -p135394 -tp135395 -a(S'setTextCtrlProportion/2' -p135396 -S'setTextCtrlProportion(${1:This}, ${2:Prop}) $3' -p135397 -tp135398 -a(S'setThemeEnabled/2' -p135399 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p135400 -tp135401 -a(S'setToolTip/2' -p135402 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p135403 -tp135404 -a(S'setVirtualSize/2' -p135405 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p135406 -tp135407 -a(S'setVirtualSize/3' -p135408 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p135409 -tp135410 -a(S'setVirtualSizeHints/2' -p135411 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p135412 -tp135413 -a(S'setVirtualSizeHints/3' -p135414 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p135415 -tp135416 -a(S'setVirtualSizeHints/4' -p135417 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p135418 -tp135419 -a(S'setWindowStyle/2' -p135420 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p135421 -tp135422 -a(S'setWindowStyleFlag/2' -p135423 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p135424 -tp135425 -a(S'setWindowVariant/2' -p135426 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p135427 -tp135428 -a(S'shouldInheritColours/1' -p135429 -S'shouldInheritColours(${1:This}) $2' -p135430 -tp135431 -a(S'show/1' -p135432 -S'show(${1:This}) $2' -p135433 -tp135434 -a(S'show/2' -p135435 -S'show(${1:This}, ${2:Options}) $3' -p135436 -tp135437 -a(S'thaw/1' -p135438 -S'thaw(${1:This}) $2' -p135439 -tp135440 -a(S'transferDataFromWindow/1' -p135441 -S'transferDataFromWindow(${1:This}) $2' -p135442 -tp135443 -a(S'transferDataToWindow/1' -p135444 -S'transferDataToWindow(${1:This}) $2' -p135445 -tp135446 -a(S'update/1' -p135447 -S'update(${1:This}) $2' -p135448 -tp135449 -a(S'updateWindowUI/1' -p135450 -S'updateWindowUI(${1:This}) $2' -p135451 -tp135452 -a(S'updateWindowUI/2' -p135453 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p135454 -tp135455 -a(S'validate/1' -p135456 -S'validate(${1:This}) $2' -p135457 -tp135458 -a(S'warpPointer/3' -p135459 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p135460 -tp135461 -asS'wxGenericDirCtrl' -p135462 -(lp135463 -(S'cacheBestSize/2' -p135464 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p135465 -tp135466 -a(S'captureMouse/1' -p135467 -S'captureMouse(${1:This}) $2' -p135468 -tp135469 -a(S'center/1' -p135470 -S'center(${1:This}) $2' -p135471 -tp135472 -a(S'center/2' -p135473 -S'center(${1:This}, ${2:Options}) $3' -p135474 -tp135475 -a(S'centerOnParent/1' -p135476 -S'centerOnParent(${1:This}) $2' -p135477 -tp135478 -a(S'centerOnParent/2' -p135479 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p135480 -tp135481 -a(S'centre/1' -p135482 -S'centre(${1:This}) $2' -p135483 -tp135484 -a(S'centre/2' -p135485 -S'centre(${1:This}, ${2:Options}) $3' -p135486 -tp135487 -a(S'centreOnParent/1' -p135488 -S'centreOnParent(${1:This}) $2' -p135489 -tp135490 -a(S'centreOnParent/2' -p135491 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p135492 -tp135493 -a(S'clearBackground/1' -p135494 -S'clearBackground(${1:This}) $2' -p135495 -tp135496 -a(S'clientToScreen/2' -p135497 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p135498 -tp135499 -a(S'clientToScreen/3' -p135500 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p135501 -tp135502 -a(S'close/1' -p135503 -S'close(${1:This}) $2' -p135504 -tp135505 -a(S'close/2' -p135506 -S'close(${1:This}, ${2:Options}) $3' -p135507 -tp135508 -a(S'collapseTree/1' -p135509 -S'collapseTree(${1:This}) $2' -p135510 -tp135511 -a(S'connect/2' -p135512 -S'connect(${1:This}, ${2:EventType}) $3' -p135513 -tp135514 -a(S'connect/3' -p135515 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p135516 -tp135517 -a(S'convertDialogToPixels/2' -p135518 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p135519 -tp135520 -a(S'convertPixelsToDialog/2' -p135521 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p135522 -tp135523 -a(S'create/2' -p135524 -S'create(${1:This}, ${2:Parent}) $3' -p135525 -tp135526 -a(S'create/3' -p135527 -S'create(${1:This}, ${2:Parent}, ${3:Param3}) $4' -p135528 -tp135529 -a(S'destroy/1' -p135530 -S'destroy(${1:This}) $2' -p135531 -tp135532 -a(S'destroyChildren/1' -p135533 -S'destroyChildren(${1:This}) $2' -p135534 -tp135535 -a(S'disable/1' -p135536 -S'disable(${1:This}) $2' -p135537 -tp135538 -a(S'disconnect/1' -p135539 -S'disconnect(${1:This}) $2' -p135540 -tp135541 -a(S'disconnect/2' -p135542 -S'disconnect(${1:This}, ${2:EventType}) $3' -p135543 -tp135544 -a(S'disconnect/3' -p135545 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p135546 -tp135547 -a(S'enable/1' -p135548 -S'enable(${1:This}) $2' -p135549 -tp135550 -a(S'enable/2' -p135551 -S'enable(${1:This}, ${2:Options}) $3' -p135552 -tp135553 -a(S'expandPath/2' -p135554 -S'expandPath(${1:This}, ${2:Path}) $3' -p135555 -tp135556 -a(S'findWindow/2' -p135557 -S'findWindow(${1:This}, ${2:Winid}) $3' -p135558 -tp135559 -a(S'fit/1' -p135560 -S'fit(${1:This}) $2' -p135561 -tp135562 -a(S'fitInside/1' -p135563 -S'fitInside(${1:This}) $2' -p135564 -tp135565 -a(S'freeze/1' -p135566 -S'freeze(${1:This}) $2' -p135567 -tp135568 -a(S'getAcceleratorTable/1' -p135569 -S'getAcceleratorTable(${1:This}) $2' -p135570 -tp135571 -a(S'getBackgroundColour/1' -p135572 -S'getBackgroundColour(${1:This}) $2' -p135573 -tp135574 -a(S'getBackgroundStyle/1' -p135575 -S'getBackgroundStyle(${1:This}) $2' -p135576 -tp135577 -a(S'getBestSize/1' -p135578 -S'getBestSize(${1:This}) $2' -p135579 -tp135580 -a(S'getCaret/1' -p135581 -S'getCaret(${1:This}) $2' -p135582 -tp135583 -a(S'getCharHeight/1' -p135584 -S'getCharHeight(${1:This}) $2' -p135585 -tp135586 -a(S'getCharWidth/1' -p135587 -S'getCharWidth(${1:This}) $2' -p135588 -tp135589 -a(S'getChildren/1' -p135590 -S'getChildren(${1:This}) $2' -p135591 -tp135592 -a(S'getClientSize/1' -p135593 -S'getClientSize(${1:This}) $2' -p135594 -tp135595 -a(S'getContainingSizer/1' -p135596 -S'getContainingSizer(${1:This}) $2' -p135597 -tp135598 -a(S'getCursor/1' -p135599 -S'getCursor(${1:This}) $2' -p135600 -tp135601 -a(S'getDefaultPath/1' -p135602 -S'getDefaultPath(${1:This}) $2' -p135603 -tp135604 -a(S'getDropTarget/1' -p135605 -S'getDropTarget(${1:This}) $2' -p135606 -tp135607 -a(S'getEventHandler/1' -p135608 -S'getEventHandler(${1:This}) $2' -p135609 -tp135610 -a(S'getExtraStyle/1' -p135611 -S'getExtraStyle(${1:This}) $2' -p135612 -tp135613 -a(S'getFilePath/1' -p135614 -S'getFilePath(${1:This}) $2' -p135615 -tp135616 -a(S'getFilter/1' -p135617 -S'getFilter(${1:This}) $2' -p135618 -tp135619 -a(S'getFilterIndex/1' -p135620 -S'getFilterIndex(${1:This}) $2' -p135621 -tp135622 -a(S'getFont/1' -p135623 -S'getFont(${1:This}) $2' -p135624 -tp135625 -a(S'getForegroundColour/1' -p135626 -S'getForegroundColour(${1:This}) $2' -p135627 -tp135628 -a(S'getGrandParent/1' -p135629 -S'getGrandParent(${1:This}) $2' -p135630 -tp135631 -a(S'getHandle/1' -p135632 -S'getHandle(${1:This}) $2' -p135633 -tp135634 -a(S'getHelpText/1' -p135635 -S'getHelpText(${1:This}) $2' -p135636 -tp135637 -a(S'getId/1' -p135638 -S'getId(${1:This}) $2' -p135639 -tp135640 -a(S'getLabel/1' -p135641 -S'getLabel(${1:This}) $2' -p135642 -tp135643 -a(S'getMaxSize/1' -p135644 -S'getMaxSize(${1:This}) $2' -p135645 -tp135646 -a(S'getMinSize/1' -p135647 -S'getMinSize(${1:This}) $2' -p135648 -tp135649 -a(S'getName/1' -p135650 -S'getName(${1:This}) $2' -p135651 -tp135652 -a(S'getParent/1' -p135653 -S'getParent(${1:This}) $2' -p135654 -tp135655 -a(S'getPath/1' -p135656 -S'getPath(${1:This}) $2' -p135657 -tp135658 -a(S'getPosition/1' -p135659 -S'getPosition(${1:This}) $2' -p135660 -tp135661 -a(S'getRect/1' -p135662 -S'getRect(${1:This}) $2' -p135663 -tp135664 -a(S'getRootId/1' -p135665 -S'getRootId(${1:This}) $2' -p135666 -tp135667 -a(S'getScreenPosition/1' -p135668 -S'getScreenPosition(${1:This}) $2' -p135669 -tp135670 -a(S'getScreenRect/1' -p135671 -S'getScreenRect(${1:This}) $2' -p135672 -tp135673 -a(S'getScrollPos/2' -p135674 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p135675 -tp135676 -a(S'getScrollRange/2' -p135677 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p135678 -tp135679 -a(S'getScrollThumb/2' -p135680 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p135681 -tp135682 -a(S'getSize/1' -p135683 -S'getSize(${1:This}) $2' -p135684 -tp135685 -a(S'getSizer/1' -p135686 -S'getSizer(${1:This}) $2' -p135687 -tp135688 -a(S'getTextExtent/2' -p135689 -S'getTextExtent(${1:This}, ${2:String}) $3' -p135690 -tp135691 -a(S'getTextExtent/3' -p135692 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p135693 -tp135694 -a(S'getToolTip/1' -p135695 -S'getToolTip(${1:This}) $2' -p135696 -tp135697 -a(S'getTreeCtrl/1' -p135698 -S'getTreeCtrl(${1:This}) $2' -p135699 -tp135700 -a(S'getUpdateRegion/1' -p135701 -S'getUpdateRegion(${1:This}) $2' -p135702 -tp135703 -a(S'getVirtualSize/1' -p135704 -S'getVirtualSize(${1:This}) $2' -p135705 -tp135706 -a(S'getWindowStyleFlag/1' -p135707 -S'getWindowStyleFlag(${1:This}) $2' -p135708 -tp135709 -a(S'getWindowVariant/1' -p135710 -S'getWindowVariant(${1:This}) $2' -p135711 -tp135712 -a(S'hasCapture/1' -p135713 -S'hasCapture(${1:This}) $2' -p135714 -tp135715 -a(S'hasScrollbar/2' -p135716 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p135717 -tp135718 -a(S'hasTransparentBackground/1' -p135719 -S'hasTransparentBackground(${1:This}) $2' -p135720 -tp135721 -a(S'hide/1' -p135722 -S'hide(${1:This}) $2' -p135723 -tp135724 -a(S'inheritAttributes/1' -p135725 -S'inheritAttributes(${1:This}) $2' -p135726 -tp135727 -a(S'init/1' -p135728 -S'init(${1:This}) $2' -p135729 -tp135730 -a(S'initDialog/1' -p135731 -S'initDialog(${1:This}) $2' -p135732 -tp135733 -a(S'invalidateBestSize/1' -p135734 -S'invalidateBestSize(${1:This}) $2' -p135735 -tp135736 -a(S'isEnabled/1' -p135737 -S'isEnabled(${1:This}) $2' -p135738 -tp135739 -a(S'isExposed/2' -p135740 -S'isExposed(${1:This}, ${2:Pt}) $3' -p135741 -tp135742 -a(S'isExposed/3' -p135743 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p135744 -tp135745 -a(S'isExposed/5' -p135746 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p135747 -tp135748 -a(S'isRetained/1' -p135749 -S'isRetained(${1:This}) $2' -p135750 -tp135751 -a(S'isShown/1' -p135752 -S'isShown(${1:This}) $2' -p135753 -tp135754 -a(S'isTopLevel/1' -p135755 -S'isTopLevel(${1:This}) $2' -p135756 -tp135757 -a(S'layout/1' -p135758 -S'layout(${1:This}) $2' -p135759 -tp135760 -a(S'lineDown/1' -p135761 -S'lineDown(${1:This}) $2' -p135762 -tp135763 -a(S'lineUp/1' -p135764 -S'lineUp(${1:This}) $2' -p135765 -tp135766 -a(S'lower/1' -p135767 -S'lower(${1:This}) $2' -p135768 -tp135769 -a(S'makeModal/1' -p135770 -S'makeModal(${1:This}) $2' -p135771 -tp135772 -a(S'makeModal/2' -p135773 -S'makeModal(${1:This}, ${2:Options}) $3' -p135774 -tp135775 -a(S'move/2' -p135776 -S'move(${1:This}, ${2:Pt}) $3' -p135777 -tp135778 -a(S'move/3' -p135779 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p135780 -tp135781 -a(S'move/4' -p135782 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p135783 -tp135784 -a(S'moveAfterInTabOrder/2' -p135785 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p135786 -tp135787 -a(S'moveBeforeInTabOrder/2' -p135788 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p135789 -tp135790 -a(S'navigate/1' -p135791 -S'navigate(${1:This}) $2' -p135792 -tp135793 -a(S'navigate/2' -p135794 -S'navigate(${1:This}, ${2:Options}) $3' -p135795 -tp135796 -a(S'new/0' -p135797 -S'new() $1' -p135798 -tp135799 -a(S'new/1' -p135800 -S'new(${1:Parent}) $2' -p135801 -tp135802 -a(S'new/2' -p135803 -S'new(${1:Parent}, ${2:Param2}) $3' -p135804 -tp135805 -a(S'pageDown/1' -p135806 -S'pageDown(${1:This}) $2' -p135807 -tp135808 -a(S'pageUp/1' -p135809 -S'pageUp(${1:This}) $2' -p135810 -tp135811 -a(S'parent_class/1' -p135812 -S'parent_class(${1:Param1}) $2' -p135813 -tp135814 -a(S'popEventHandler/1' -p135815 -S'popEventHandler(${1:This}) $2' -p135816 -tp135817 -a(S'popEventHandler/2' -p135818 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p135819 -tp135820 -a(S'popupMenu/2' -p135821 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p135822 -tp135823 -a(S'popupMenu/3' -p135824 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p135825 -tp135826 -a(S'popupMenu/4' -p135827 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p135828 -tp135829 -a(S'raise/1' -p135830 -S'raise(${1:This}) $2' -p135831 -tp135832 -a(S'reCreateTree/1' -p135833 -S'reCreateTree(${1:This}) $2' -p135834 -tp135835 -a(S'refresh/1' -p135836 -S'refresh(${1:This}) $2' -p135837 -tp135838 -a(S'refresh/2' -p135839 -S'refresh(${1:This}, ${2:Options}) $3' -p135840 -tp135841 -a(S'refreshRect/2' -p135842 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p135843 -tp135844 -a(S'refreshRect/3' -p135845 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p135846 -tp135847 -a(S'releaseMouse/1' -p135848 -S'releaseMouse(${1:This}) $2' -p135849 -tp135850 -a(S'removeChild/2' -p135851 -S'removeChild(${1:This}, ${2:Child}) $3' -p135852 -tp135853 -a(S'reparent/2' -p135854 -S'reparent(${1:This}, ${2:NewParent}) $3' -p135855 -tp135856 -a(S'screenToClient/1' -p135857 -S'screenToClient(${1:This}) $2' -p135858 -tp135859 -a(S'screenToClient/2' -p135860 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p135861 -tp135862 -a(S'scrollLines/2' -p135863 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p135864 -tp135865 -a(S'scrollPages/2' -p135866 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p135867 -tp135868 -a(S'scrollWindow/3' -p135869 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p135870 -tp135871 -a(S'scrollWindow/4' -p135872 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p135873 -tp135874 -a(S'setAcceleratorTable/2' -p135875 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p135876 -tp135877 -a(S'setAutoLayout/2' -p135878 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p135879 -tp135880 -a(S'setBackgroundColour/2' -p135881 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p135882 -tp135883 -a(S'setBackgroundStyle/2' -p135884 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p135885 -tp135886 -a(S'setCaret/2' -p135887 -S'setCaret(${1:This}, ${2:Caret}) $3' -p135888 -tp135889 -a(S'setClientSize/2' -p135890 -S'setClientSize(${1:This}, ${2:Size}) $3' -p135891 -tp135892 -a(S'setClientSize/3' -p135893 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p135894 -tp135895 -a(S'setContainingSizer/2' -p135896 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p135897 -tp135898 -a(S'setCursor/2' -p135899 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p135900 -tp135901 -a(S'setDefaultPath/2' -p135902 -S'setDefaultPath(${1:This}, ${2:Path}) $3' -p135903 -tp135904 -a(S'setDropTarget/2' -p135905 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p135906 -tp135907 -a(S'setExtraStyle/2' -p135908 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p135909 -tp135910 -a(S'setFilter/2' -p135911 -S'setFilter(${1:This}, ${2:Filter}) $3' -p135912 -tp135913 -a(S'setFilterIndex/2' -p135914 -S'setFilterIndex(${1:This}, ${2:N}) $3' -p135915 -tp135916 -a(S'setFocus/1' -p135917 -S'setFocus(${1:This}) $2' -p135918 -tp135919 -a(S'setFocusFromKbd/1' -p135920 -S'setFocusFromKbd(${1:This}) $2' -p135921 -tp135922 -a(S'setFont/2' -p135923 -S'setFont(${1:This}, ${2:Font}) $3' -p135924 -tp135925 -a(S'setForegroundColour/2' -p135926 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p135927 -tp135928 -a(S'setHelpText/2' -p135929 -S'setHelpText(${1:This}, ${2:Text}) $3' -p135930 -tp135931 -a(S'setId/2' -p135932 -S'setId(${1:This}, ${2:Winid}) $3' -p135933 -tp135934 -a(S'setLabel/2' -p135935 -S'setLabel(${1:This}, ${2:Label}) $3' -p135936 -tp135937 -a(S'setMaxSize/2' -p135938 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p135939 -tp135940 -a(S'setMinSize/2' -p135941 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p135942 -tp135943 -a(S'setName/2' -p135944 -S'setName(${1:This}, ${2:Name}) $3' -p135945 -tp135946 -a(S'setOwnBackgroundColour/2' -p135947 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p135948 -tp135949 -a(S'setOwnFont/2' -p135950 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p135951 -tp135952 -a(S'setOwnForegroundColour/2' -p135953 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p135954 -tp135955 -a(S'setPalette/2' -p135956 -S'setPalette(${1:This}, ${2:Pal}) $3' -p135957 -tp135958 -a(S'setPath/2' -p135959 -S'setPath(${1:This}, ${2:Path}) $3' -p135960 -tp135961 -a(S'setScrollPos/3' -p135962 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p135963 -tp135964 -a(S'setScrollPos/4' -p135965 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p135966 -tp135967 -a(S'setScrollbar/5' -p135968 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p135969 -tp135970 -a(S'setScrollbar/6' -p135971 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p135972 -tp135973 -a(S'setSize/2' -p135974 -S'setSize(${1:This}, ${2:Rect}) $3' -p135975 -tp135976 -a(S'setSize/3' -p135977 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p135978 -tp135979 -a(S'setSize/5' -p135980 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p135981 -tp135982 -a(S'setSize/6' -p135983 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p135984 -tp135985 -a(S'setSizeHints/2' -p135986 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p135987 -tp135988 -a(S'setSizeHints/3' -p135989 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p135990 -tp135991 -a(S'setSizeHints/4' -p135992 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p135993 -tp135994 -a(S'setSizer/2' -p135995 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p135996 -tp135997 -a(S'setSizer/3' -p135998 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p135999 -tp136000 -a(S'setSizerAndFit/2' -p136001 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p136002 -tp136003 -a(S'setSizerAndFit/3' -p136004 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p136005 -tp136006 -a(S'setThemeEnabled/2' -p136007 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p136008 -tp136009 -a(S'setToolTip/2' -p136010 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p136011 -tp136012 -a(S'setVirtualSize/2' -p136013 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p136014 -tp136015 -a(S'setVirtualSize/3' -p136016 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p136017 -tp136018 -a(S'setVirtualSizeHints/2' -p136019 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p136020 -tp136021 -a(S'setVirtualSizeHints/3' -p136022 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p136023 -tp136024 -a(S'setVirtualSizeHints/4' -p136025 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p136026 -tp136027 -a(S'setWindowStyle/2' -p136028 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p136029 -tp136030 -a(S'setWindowStyleFlag/2' -p136031 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p136032 -tp136033 -a(S'setWindowVariant/2' -p136034 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p136035 -tp136036 -a(S'shouldInheritColours/1' -p136037 -S'shouldInheritColours(${1:This}) $2' -p136038 -tp136039 -a(S'show/1' -p136040 -S'show(${1:This}) $2' -p136041 -tp136042 -a(S'show/2' -p136043 -S'show(${1:This}, ${2:Options}) $3' -p136044 -tp136045 -a(S'thaw/1' -p136046 -S'thaw(${1:This}) $2' -p136047 -tp136048 -a(S'transferDataFromWindow/1' -p136049 -S'transferDataFromWindow(${1:This}) $2' -p136050 -tp136051 -a(S'transferDataToWindow/1' -p136052 -S'transferDataToWindow(${1:This}) $2' -p136053 -tp136054 -a(S'update/1' -p136055 -S'update(${1:This}) $2' -p136056 -tp136057 -a(S'updateWindowUI/1' -p136058 -S'updateWindowUI(${1:This}) $2' -p136059 -tp136060 -a(S'updateWindowUI/2' -p136061 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p136062 -tp136063 -a(S'validate/1' -p136064 -S'validate(${1:This}) $2' -p136065 -tp136066 -a(S'warpPointer/3' -p136067 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p136068 -tp136069 -asS'CosEventDomainAdmin_DomainNotFound' -p136070 -(lp136071 -(S'id/0' -p136072 -S'id() $1' -p136073 -tp136074 -a(S'name/0' -p136075 -S'name() $1' -p136076 -tp136077 -a(S'tc/0' -p136078 -S'tc() $1' -p136079 -tp136080 -asS'CosNotification_EventBatch' -p136081 -(lp136082 -(S'id/0' -p136083 -S'id() $1' -p136084 -tp136085 -a(S'name/0' -p136086 -S'name() $1' -p136087 -tp136088 -a(S'tc/0' -p136089 -S'tc() $1' -p136090 -tp136091 -asS'dbg_ui_settings' -p136092 -(lp136093 -(S'init/6' -p136094 -S'init(${1:Monitor}, ${2:GS}, ${3:Pos}, ${4:Title}, ${5:Action}, ${6:SFile}) $7' -p136095 -tp136096 -a(S'start/4' -p136097 -S'start(${1:GS}, ${2:Pos}, ${3:Action}, ${4:SFile}) $5' -p136098 -tp136099 -asS'fixed' -p136100 -(lp136101 -(S'add/2' -p136102 -S'add(${1:F1}, ${2:F2}) $3' -p136103 -tp136104 -a(S'create/3' -p136105 -S'create(${1:Digits}, ${2:Scale}, ${3:Value}) $4' -p136106 -tp136107 -a(S'divide/2' -p136108 -S'divide(${1:F1}, ${2:F2}) $3' -p136109 -tp136110 -a(S'get_typecode/1' -p136111 -S'get_typecode(${1:Other}) $2' -p136112 -tp136113 -a(S'multiply/2' -p136114 -S'multiply(${1:F1}, ${2:F2}) $3' -p136115 -tp136116 -a(S'subtract/2' -p136117 -S'subtract(${1:F1}, ${2:F2}) $3' -p136118 -tp136119 -a(S'unary_minus/1' -p136120 -S'unary_minus(${1:Fixed}) $2' -p136121 -tp136122 -asS'systools_rc' -p136123 -(lp136124 -(S'format_error/1' -p136125 -S'format_error(${1:E}) $2' -p136126 -tp136127 -a(S'translate_scripts/3' -p136128 -S'translate_scripts(${1:Scripts}, ${2:Appls}, ${3:PreAppls}) $4' -p136129 -tp136130 -a(S'translate_scripts/4' -p136131 -S'translate_scripts(${1:Mode}, ${2:Scripts}, ${3:Appls}, ${4:PreAppls}) $5' -p136132 -tp136133 -asS'asn1rt_per_bin_rt2ct' -p136134 -(lp136135 -(S'cindex/3' -p136136 -S'cindex(${1:Ix}, ${2:Val}, ${3:Cname}) $4' -p136137 -tp136138 -a(S'complete/1' -p136139 -S'complete(${1:L}) $2' -p136140 -tp136141 -a(S'dec_fixup/3' -p136142 -S'dec_fixup(${1:Terms}, ${2:Cnames}, ${3:RemBytes}) $4' -p136143 -tp136144 -a(S'decode_GeneralString/2' -p136145 -S'decode_GeneralString(${1:Bytes}, ${2:Param2}) $3' -p136146 -tp136147 -a(S'decode_GraphicString/2' -p136148 -S'decode_GraphicString(${1:Bytes}, ${2:Param2}) $3' -p136149 -tp136150 -a(S'decode_ObjectDescriptor/1' -p136151 -S'decode_ObjectDescriptor(${1:Bytes}) $2' -p136152 -tp136153 -a(S'decode_TeletexString/2' -p136154 -S'decode_TeletexString(${1:Bytes}, ${2:Param2}) $3' -p136155 -tp136156 -a(S'decode_UTF8String/1' -p136157 -S'decode_UTF8String(${1:Bytes}) $2' -p136158 -tp136159 -a(S'decode_VideotexString/2' -p136160 -S'decode_VideotexString(${1:Bytes}, ${2:Param2}) $3' -p136161 -tp136162 -a(S'decode_bit_string/3' -p136163 -S'decode_bit_string(${1:Buffer}, ${2:C}, ${3:NamedNumberList}) $4' -p136164 -tp136165 -a(S'decode_boolean/1' -p136166 -S'decode_boolean(${1:Buffer}) $2' -p136167 -tp136168 -a(S'decode_compact_bit_string/3' -p136169 -S'decode_compact_bit_string(${1:Buffer}, ${2:C}, ${3:NamedNumberList}) $4' -p136170 -tp136171 -a(S'decode_constrained_number/2' -p136172 -S'decode_constrained_number(${1:Buffer}, ${2:Param2}) $3' -p136173 -tp136174 -a(S'decode_constrained_number/3' -p136175 -S'decode_constrained_number(${1:Buffer}, ${2:Param2}, ${3:Range}) $4' -p136176 -tp136177 -a(S'decode_constrained_number/4' -p136178 -S'decode_constrained_number() $1' -p136179 -tp136180 -a(S'decode_enumerated/3' -p136181 -S'decode_enumerated(${1:Buffer}, ${2:C}, ${3:NamedNumberTup}) $4' -p136182 -tp136183 -a(S'decode_integer/2' -p136184 -S'decode_integer(${1:Buffer}, ${2:C}) $3' -p136185 -tp136186 -a(S'decode_integer/3' -p136187 -S'decode_integer(${1:Buffer}, ${2:Range}, ${3:NamedNumberList}) $4' -p136188 -tp136189 -a(S'decode_known_multiplier_string/5' -p136190 -S'decode_known_multiplier_string(${1:StringType}, ${2:SizeC}, ${3:NumBits}, ${4:CharInTab}, ${5:Bytes}) $6' -p136191 -tp136192 -a(S'decode_length/1' -p136193 -S'decode_length(${1:Buffer}) $2' -p136194 -tp136195 -a(S'decode_length/2' -p136196 -S'decode_length(${1:Buffer}, ${2:SingleValue}) $3' -p136197 -tp136198 -a(S'decode_null/1' -p136199 -S'decode_null(${1:Bytes}) $2' -p136200 -tp136201 -a(S'decode_object_identifier/1' -p136202 -S'decode_object_identifier(${1:Bytes}) $2' -p136203 -tp136204 -a(S'decode_octet_string/2' -p136205 -S'decode_octet_string(${1:Bytes}, ${2:Range}) $3' -p136206 -tp136207 -a(S'decode_octet_string/3' -p136208 -S'decode_octet_string(${1:Bytes}, ${2:Sv}, ${3:Param3}) $4' -p136209 -tp136210 -a(S'decode_open_type/2' -p136211 -S'decode_open_type(${1:Bytes}, ${2:Param2}) $3' -p136212 -tp136213 -a(S'decode_real/1' -p136214 -S'decode_real(${1:Bytes}) $2' -p136215 -tp136216 -a(S'decode_relative_oid/1' -p136217 -S'decode_relative_oid(${1:Bytes}) $2' -p136218 -tp136219 -a(S'decode_semi_constrained_number/2' -p136220 -S'decode_semi_constrained_number(${1:Bytes}, ${2:Lb}) $3' -p136221 -tp136222 -a(S'decode_small_length/1' -p136223 -S'decode_small_length(${1:Buffer}) $2' -p136224 -tp136225 -a(S'decode_unconstrained_number/1' -p136226 -S'decode_unconstrained_number(${1:Bytes}) $2' -p136227 -tp136228 -a(S'eint_positive/1' -p136229 -S'eint_positive(${1:Val}) $2' -p136230 -tp136231 -a(S'encode_GeneralString/2' -p136232 -S'encode_GeneralString(${1:Param1}, ${2:Val}) $3' -p136233 -tp136234 -a(S'encode_GraphicString/2' -p136235 -S'encode_GraphicString(${1:Param1}, ${2:Val}) $3' -p136236 -tp136237 -a(S'encode_ObjectDescriptor/2' -p136238 -S'encode_ObjectDescriptor(${1:Param1}, ${2:Val}) $3' -p136239 -tp136240 -a(S'encode_TeletexString/2' -p136241 -S'encode_TeletexString(${1:Param1}, ${2:Val}) $3' -p136242 -tp136243 -a(S'encode_UTF8String/1' -p136244 -S'encode_UTF8String(${1:Val}) $2' -p136245 -tp136246 -a(S'encode_VideotexString/2' -p136247 -S'encode_VideotexString(${1:Param1}, ${2:Val}) $3' -p136248 -tp136249 -a(S'encode_bit_string/3' -p136250 -S'encode_bit_string(${1:C}, ${2:IntegerVal}, ${3:NamedBitList}) $4' -p136251 -tp136252 -a(S'encode_integer/2' -p136253 -S'encode_integer(${1:C}, ${2:Val}) $3' -p136254 -tp136255 -a(S'encode_integer/3' -p136256 -S'encode_integer(${1:C}, ${2:V}, ${3:NamedNumberList}) $4' -p136257 -tp136258 -a(S'encode_known_multiplier_string/5' -p136259 -S'encode_known_multiplier_string(${1:StringType}, ${2:SizeC}, ${3:NumBits}, ${4:CharOutTab}, ${5:Val}) $6' -p136260 -tp136261 -a(S'encode_length/2' -p136262 -S'encode_length(${1:SingleValue}, ${2:Len}) $3' -p136263 -tp136264 -a(S'encode_null/1' -p136265 -S'encode_null(${1:Param1}) $2' -p136266 -tp136267 -a(S'encode_object_identifier/1' -p136268 -S'encode_object_identifier(${1:Val}) $2' -p136269 -tp136270 -a(S'encode_octet_string/2' -p136271 -S'encode_octet_string(${1:C}, ${2:Val}) $3' -p136272 -tp136273 -a(S'encode_octet_string/3' -p136274 -S'encode_octet_string(${1:C}, ${2:Bool}, ${3:Val}) $4' -p136275 -tp136276 -a(S'encode_open_type/2' -p136277 -S'encode_open_type(${1:Param1}, ${2:Val}) $3' -p136278 -tp136279 -a(S'encode_real/1' -p136280 -S'encode_real(${1:Real}) $2' -p136281 -tp136282 -a(S'encode_relative_oid/1' -p136283 -S'encode_relative_oid(${1:Val}) $2' -p136284 -tp136285 -a(S'encode_small_length/1' -p136286 -S'encode_small_length(${1:Len}) $2' -p136287 -tp136288 -a(S'encode_small_number/1' -p136289 -S'encode_small_number(${1:Val}) $2' -p136290 -tp136291 -a(S'encode_unconstrained_number/1' -p136292 -S'encode_unconstrained_number(${1:Val}) $2' -p136293 -tp136294 -a(S'fixextensions/2' -p136295 -S'fixextensions(${1:Param1}, ${2:Val}) $3' -p136296 -tp136297 -a(S'fixoptionals/3' -p136298 -S'fixoptionals(${1:OptList}, ${2:Val}, ${3:Val}) $4' -p136299 -tp136300 -a(S'getbit/1' -p136301 -S'getbit(${1:Buffer}) $2' -p136302 -tp136303 -a(S'getbits/2' -p136304 -S'getbits(${1:Buffer}, ${2:Num}) $3' -p136305 -tp136306 -a(S'getchoice/3' -p136307 -S'getchoice(${1:Bytes}, ${2:NumChoices}, ${3:Param3}) $4' -p136308 -tp136309 -a(S'getext/1' -p136310 -S'getext(${1:Bytes}) $2' -p136311 -tp136312 -a(S'getextension/2' -p136313 -S'getextension(${1:Param1}, ${2:Bytes}) $3' -p136314 -tp136315 -a(S'getoctets/2' -p136316 -S'getoctets(${1:Buffer}, ${2:Num}) $3' -p136317 -tp136318 -a(S'getoptionals/2' -p136319 -S'getoptionals(${1:Bytes}, ${2:NumOpt}) $3' -p136320 -tp136321 -a(S'getoptionals2/2' -p136322 -S'getoptionals2(${1:Bytes}, ${2:NumOpt}) $3' -p136323 -tp136324 -a(S'list_to_record/2' -p136325 -S'list_to_record(${1:Name}, ${2:Tuple}) $3' -p136326 -tp136327 -a(S'pre_complete_bits/2' -p136328 -S'pre_complete_bits() $1' -p136329 -tp136330 -a(S'set_choice/3' -p136331 -S'set_choice(${1:Alt}, ${2:L}, ${3:Len}) $4' -p136332 -tp136333 -a(S'setchoiceext/1' -p136334 -S'setchoiceext(${1:Param1}) $2' -p136335 -tp136336 -a(S'setext/1' -p136337 -S'setext(${1:Param1}) $2' -p136338 -tp136339 -a(S'skipextensions/3' -p136340 -S'skipextensions(${1:Bytes}, ${2:Nr}, ${3:ExtensionBitstr}) $4' -p136341 -tp136342 -asS'mnesia_snmp_hook' -p136343 -(lp136344 -(S'check_ustruct/1' -p136345 -S'check_ustruct(${1:Param1}) $2' -p136346 -tp136347 -a(S'create_table/3' -p136348 -S'create_table(${1:Param1}, ${2:MnesiaTab}, ${3:Storage}) $4' -p136349 -tp136350 -a(S'delete_table/2' -p136351 -S'delete_table(${1:Param1}, ${2:Tree}) $3' -p136352 -tp136353 -a(S'get_mnesia_key/2' -p136354 -S'get_mnesia_key(${1:Name}, ${2:RowIndex}) $3' -p136355 -tp136356 -a(S'get_next_index/2' -p136357 -S'get_next_index(${1:Name}, ${2:RowIndex}) $3' -p136358 -tp136359 -a(S'get_row/2' -p136360 -S'get_row(${1:Name}, ${2:RowIndex}) $3' -p136361 -tp136362 -a(S'key_to_oid/2' -p136363 -S'key_to_oid(${1:Tab}, ${2:Key}) $3' -p136364 -tp136365 -a(S'key_to_oid/3' -p136366 -S'key_to_oid(${1:Tab}, ${2:Key}, ${3:Param3}) $4' -p136367 -tp136368 -a(S'key_to_oid_i/2' -p136369 -S'key_to_oid_i(${1:Key}, ${2:Types}) $3' -p136370 -tp136371 -a(S'oid_to_key/2' -p136372 -S'oid_to_key(${1:Oid}, ${2:Tab}) $3' -p136373 -tp136374 -a(S'oid_to_key_1/2' -p136375 -S'oid_to_key_1(${1:Tuple}, ${2:Key}) $3' -p136376 -tp136377 -a(S'update/1' -p136378 -S'update(${1:Param1}) $2' -p136379 -tp136380 -asS'beam_lib' -p136381 -(lp136382 -(S'all_chunks/1' -p136383 -S'all_chunks(${1:File}) $2' -p136384 -tp136385 -a(S'build_module/1' -p136386 -S'build_module(${1:Chunks0}) $2' -p136387 -tp136388 -a(S'chunks/2' -p136389 -S'chunks(${1:Beam}, ${2:ChunkRefs}) $3' -p136390 -tp136391 -a(S'chunks/3' -p136392 -S'chunks(${1:Beam}, ${2:ChunkRefs}, ${3:Options}) $4' -p136393 -tp136394 -a(S'clear_crypto_key_fun/0' -p136395 -S'clear_crypto_key_fun() $1' -p136396 -tp136397 -a(S'cmp/2' -p136398 -S'cmp(${1:Beam1}, ${2:Beam2}) $3' -p136399 -tp136400 -a(S'cmp_dirs/2' -p136401 -S'cmp_dirs(${1:Dir1}, ${2:Dir2}) $3' -p136402 -tp136403 -a(S'code_change/3' -p136404 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p136405 -tp136406 -a(S'crypto_key_fun/1' -p136407 -S'crypto_key_fun(${1:CryptoKeyFun}) $2' -p136408 -tp136409 -a(S'diff_dirs/2' -p136410 -S'diff_dirs(${1:Dir1}, ${2:Dir2}) $3' -p136411 -tp136412 -a(S'format_error/1' -p136413 -S'format_error(${1:Reason}) $2' -p136414 -tp136415 -a(S'get_crypto_key/1' -p136416 -S'get_crypto_key(${1:What}) $2' -p136417 -tp136418 -a(S'handle_call/3' -p136419 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:S}) $4' -p136420 -tp136421 -a(S'handle_cast/2' -p136422 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p136423 -tp136424 -a(S'handle_info/2' -p136425 -S'handle_info(${1:Param1}, ${2:State}) $3' -p136426 -tp136427 -a(S'info/1' -p136428 -S'info(${1:Beam}) $2' -p136429 -tp136430 -a(S'init/1' -p136431 -S'init(${1:Param1}) $2' -p136432 -tp136433 -a(S'make_crypto_key/2' -p136434 -S'make_crypto_key(${1:Param1}, ${2:String}) $3' -p136435 -tp136436 -a(S'md5/1' -p136437 -S'md5(${1:Beam}) $2' -p136438 -tp136439 -a(S'strip/1' -p136440 -S'strip(${1:Beam1}) $2' -p136441 -tp136442 -a(S'strip_files/1' -p136443 -S'strip_files(${1:Files}) $2' -p136444 -tp136445 -a(S'strip_release/1' -p136446 -S'strip_release(${1:Dir}) $2' -p136447 -tp136448 -a(S'terminate/2' -p136449 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p136450 -tp136451 -a(S'version/1' -p136452 -S'version(${1:Beam}) $2' -p136453 -tp136454 -asS'edoc_specs' -p136455 -(lp136456 -(S'add_data/4' -p136457 -S'add_data(${1:Entries}, ${2:Opts}, ${3:File}, ${4:Module}) $5' -p136458 -tp136459 -a(S'docs/2' -p136460 -S'docs(${1:Forms}, ${2:CommentFun}) $3' -p136461 -tp136462 -a(S'dummy_spec/1' -p136463 -S'dummy_spec(${1:Form}) $2' -p136464 -tp136465 -a(S'is_tag/1' -p136466 -S'is_tag(${1:Tag}) $2' -p136467 -tp136468 -a(S'spec/2' -p136469 -S'spec(${1:Form}, ${2:ClauseN}) $3' -p136470 -tp136471 -a(S'tag/1' -p136472 -S'tag(${1:Tag}) $2' -p136473 -tp136474 -a(S'type/2' -p136475 -S'type(${1:Form}, ${2:TypeDocs}) $3' -p136476 -tp136477 -asS'mnesia_late_loader' -p136478 -(lp136479 -(S'async_late_disc_load/3' -p136480 -S'async_late_disc_load(${1:Node}, ${2:Tabs}, ${3:Reason}) $4' -p136481 -tp136482 -a(S'init/1' -p136483 -S'init(${1:Parent}) $2' -p136484 -tp136485 -a(S'maybe_async_late_disc_load/3' -p136486 -S'maybe_async_late_disc_load(${1:Node}, ${2:Tabs}, ${3:Reason}) $4' -p136487 -tp136488 -a(S'start/0' -p136489 -S'start() $1' -p136490 -tp136491 -a(S'system_code_change/4' -p136492 -S'system_code_change(${1:State}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p136493 -tp136494 -a(S'system_continue/3' -p136495 -S'system_continue(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p136496 -tp136497 -a(S'system_terminate/4' -p136498 -S'system_terminate(${1:Reason}, ${2:Param2}, ${3:Param3}, ${4:Param4}) $5' -p136499 -tp136500 -asS'inet6_sctp' -p136501 -(lp136502 -(S'close/1' -p136503 -S'close(${1:S}) $2' -p136504 -tp136505 -a(S'connect/5' -p136506 -S'connect(${1:S}, ${2:Addr}, ${3:Port}, ${4:Opts}, ${5:Timer}) $6' -p136507 -tp136508 -a(S'getaddr/1' -p136509 -S'getaddr(${1:Address}) $2' -p136510 -tp136511 -a(S'getaddr/2' -p136512 -S'getaddr(${1:Address}, ${2:Timer}) $3' -p136513 -tp136514 -a(S'getserv/1' -p136515 -S'getserv(${1:Port}) $2' -p136516 -tp136517 -a(S'listen/2' -p136518 -S'listen(${1:S}, ${2:Flag}) $3' -p136519 -tp136520 -a(S'open/1' -p136521 -S'open(${1:Opts}) $2' -p136522 -tp136523 -a(S'peeloff/2' -p136524 -S'peeloff(${1:S}, ${2:AssocId}) $3' -p136525 -tp136526 -a(S'recv/2' -p136527 -S'recv(${1:S}, ${2:Timeout}) $3' -p136528 -tp136529 -a(S'send/4' -p136530 -S'send(${1:S}, ${2:AssocId}, ${3:Stream}, ${4:Data}) $5' -p136531 -tp136532 -a(S'sendmsg/3' -p136533 -S'sendmsg(${1:S}, ${2:SRI}, ${3:Data}) $4' -p136534 -tp136535 -a(S'translate_ip/1' -p136536 -S'translate_ip(${1:IP}) $2' -p136537 -tp136538 -asS'wxEvent' -p136539 -(lp136540 -(S'getId/1' -p136541 -S'getId(${1:This}) $2' -p136542 -tp136543 -a(S'getSkipped/1' -p136544 -S'getSkipped(${1:This}) $2' -p136545 -tp136546 -a(S'getTimestamp/1' -p136547 -S'getTimestamp(${1:This}) $2' -p136548 -tp136549 -a(S'isCommandEvent/1' -p136550 -S'isCommandEvent(${1:This}) $2' -p136551 -tp136552 -a(S'parent_class/1' -p136553 -S'parent_class(${1:Param1}) $2' -p136554 -tp136555 -a(S'resumePropagation/2' -p136556 -S'resumePropagation(${1:This}, ${2:PropagationLevel}) $3' -p136557 -tp136558 -a(S'shouldPropagate/1' -p136559 -S'shouldPropagate(${1:This}) $2' -p136560 -tp136561 -a(S'skip/1' -p136562 -S'skip(${1:This}) $2' -p136563 -tp136564 -a(S'skip/2' -p136565 -S'skip(${1:This}, ${2:Param2}) $3' -p136566 -tp136567 -a(S'stopPropagation/1' -p136568 -S'stopPropagation(${1:This}) $2' -p136569 -tp136570 -asS'egd_render' -p136571 -(lp136572 -(S'binary/1' -p136573 -S'binary(${1:Image}) $2' -p136574 -tp136575 -a(S'binary/2' -p136576 -S'binary(${1:Image}, ${2:Type}) $3' -p136577 -tp136578 -a(S'eps/1' -p136579 -S'eps(${1:Param1}) $2' -p136580 -tp136581 -asS'wxScrollEvent' -p136582 -(lp136583 -(S'getClientData/1' -p136584 -S'getClientData(${1:This}) $2' -p136585 -tp136586 -a(S'getExtraLong/1' -p136587 -S'getExtraLong(${1:This}) $2' -p136588 -tp136589 -a(S'getId/1' -p136590 -S'getId(${1:This}) $2' -p136591 -tp136592 -a(S'getInt/1' -p136593 -S'getInt(${1:This}) $2' -p136594 -tp136595 -a(S'getOrientation/1' -p136596 -S'getOrientation(${1:This}) $2' -p136597 -tp136598 -a(S'getPosition/1' -p136599 -S'getPosition(${1:This}) $2' -p136600 -tp136601 -a(S'getSelection/1' -p136602 -S'getSelection(${1:This}) $2' -p136603 -tp136604 -a(S'getSkipped/1' -p136605 -S'getSkipped(${1:This}) $2' -p136606 -tp136607 -a(S'getString/1' -p136608 -S'getString(${1:This}) $2' -p136609 -tp136610 -a(S'getTimestamp/1' -p136611 -S'getTimestamp(${1:This}) $2' -p136612 -tp136613 -a(S'isChecked/1' -p136614 -S'isChecked(${1:This}) $2' -p136615 -tp136616 -a(S'isCommandEvent/1' -p136617 -S'isCommandEvent(${1:This}) $2' -p136618 -tp136619 -a(S'isSelection/1' -p136620 -S'isSelection(${1:This}) $2' -p136621 -tp136622 -a(S'parent_class/1' -p136623 -S'parent_class(${1:Param1}) $2' -p136624 -tp136625 -a(S'resumePropagation/2' -p136626 -S'resumePropagation(${1:This}, ${2:PropagationLevel}) $3' -p136627 -tp136628 -a(S'setInt/2' -p136629 -S'setInt(${1:This}, ${2:I}) $3' -p136630 -tp136631 -a(S'setString/2' -p136632 -S'setString(${1:This}, ${2:S}) $3' -p136633 -tp136634 -a(S'shouldPropagate/1' -p136635 -S'shouldPropagate(${1:This}) $2' -p136636 -tp136637 -a(S'skip/1' -p136638 -S'skip(${1:This}) $2' -p136639 -tp136640 -a(S'skip/2' -p136641 -S'skip(${1:This}, ${2:Options}) $3' -p136642 -tp136643 -a(S'stopPropagation/1' -p136644 -S'stopPropagation(${1:This}) $2' -p136645 -tp136646 -asS'ssl_sup' -p136647 -(lp136648 -(S'init/1' -p136649 -S'init(${1:Param1}) $2' -p136650 -tp136651 -a(S'manager_opts/0' -p136652 -S'manager_opts() $1' -p136653 -tp136654 -a(S'start_link/0' -p136655 -S'start_link() $1' -p136656 -tp136657 -asS'wxListItem' -p136658 -(lp136659 -(S'clear/1' -p136660 -S'clear(${1:This}) $2' -p136661 -tp136662 -a(S'destroy/1' -p136663 -S'destroy(${1:This}) $2' -p136664 -tp136665 -a(S'getAlign/1' -p136666 -S'getAlign(${1:This}) $2' -p136667 -tp136668 -a(S'getBackgroundColour/1' -p136669 -S'getBackgroundColour(${1:This}) $2' -p136670 -tp136671 -a(S'getColumn/1' -p136672 -S'getColumn(${1:This}) $2' -p136673 -tp136674 -a(S'getFont/1' -p136675 -S'getFont(${1:This}) $2' -p136676 -tp136677 -a(S'getId/1' -p136678 -S'getId(${1:This}) $2' -p136679 -tp136680 -a(S'getImage/1' -p136681 -S'getImage(${1:This}) $2' -p136682 -tp136683 -a(S'getMask/1' -p136684 -S'getMask(${1:This}) $2' -p136685 -tp136686 -a(S'getState/1' -p136687 -S'getState(${1:This}) $2' -p136688 -tp136689 -a(S'getText/1' -p136690 -S'getText(${1:This}) $2' -p136691 -tp136692 -a(S'getTextColour/1' -p136693 -S'getTextColour(${1:This}) $2' -p136694 -tp136695 -a(S'getWidth/1' -p136696 -S'getWidth(${1:This}) $2' -p136697 -tp136698 -a(S'new/0' -p136699 -S'new() $1' -p136700 -tp136701 -a(S'new/1' -p136702 -S'new(${1:Item}) $2' -p136703 -tp136704 -a(S'parent_class/1' -p136705 -S'parent_class(${1:Param1}) $2' -p136706 -tp136707 -a(S'setAlign/2' -p136708 -S'setAlign(${1:This}, ${2:Align}) $3' -p136709 -tp136710 -a(S'setBackgroundColour/2' -p136711 -S'setBackgroundColour(${1:This}, ${2:ColBack}) $3' -p136712 -tp136713 -a(S'setColumn/2' -p136714 -S'setColumn(${1:This}, ${2:Col}) $3' -p136715 -tp136716 -a(S'setFont/2' -p136717 -S'setFont(${1:This}, ${2:Font}) $3' -p136718 -tp136719 -a(S'setId/2' -p136720 -S'setId(${1:This}, ${2:Id}) $3' -p136721 -tp136722 -a(S'setImage/2' -p136723 -S'setImage(${1:This}, ${2:Image}) $3' -p136724 -tp136725 -a(S'setMask/2' -p136726 -S'setMask(${1:This}, ${2:Mask}) $3' -p136727 -tp136728 -a(S'setState/2' -p136729 -S'setState(${1:This}, ${2:State}) $3' -p136730 -tp136731 -a(S'setStateMask/2' -p136732 -S'setStateMask(${1:This}, ${2:StateMask}) $3' -p136733 -tp136734 -a(S'setText/2' -p136735 -S'setText(${1:This}, ${2:Text}) $3' -p136736 -tp136737 -a(S'setTextColour/2' -p136738 -S'setTextColour(${1:This}, ${2:ColText}) $3' -p136739 -tp136740 -a(S'setWidth/2' -p136741 -S'setWidth(${1:This}, ${2:Width}) $3' -p136742 -tp136743 -asS'beam_receive' -p136744 -(lp136745 -(S'module/2' -p136746 -S'module(${1:Param1}, ${2:Param2}) $3' -p136747 -tp136748 -asS'diameter_transport_sup' -p136749 -(lp136750 -(S'init/1' -p136751 -S'init(${1:Param1}) $2' -p136752 -tp136753 -a(S'start_child/2' -p136754 -S'start_child(${1:Name}, ${2:Module}) $3' -p136755 -tp136756 -a(S'start_link/0' -p136757 -S'start_link() $1' -p136758 -tp136759 -asS'wxDataObject' -p136760 -(lp136761 -(S'parent_class/1' -p136762 -S'parent_class(${1:Param1}) $2' -p136763 -tp136764 -asS'CosNotifyFilter_FilterAdmin' -p136765 -(lp136766 -(S'add_filter/2' -p136767 -S'add_filter(${1:OE_THIS}, ${2:New_filter}) $3' -p136768 -tp136769 -a(S'add_filter/3' -p136770 -S'add_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:New_filter}) $4' -p136771 -tp136772 -a(S'code_change/3' -p136773 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p136774 -tp136775 -a(S'get_all_filters/1' -p136776 -S'get_all_filters(${1:OE_THIS}) $2' -p136777 -tp136778 -a(S'get_all_filters/2' -p136779 -S'get_all_filters(${1:OE_THIS}, ${2:OE_Options}) $3' -p136780 -tp136781 -a(S'get_filter/2' -p136782 -S'get_filter(${1:OE_THIS}, ${2:Filter}) $3' -p136783 -tp136784 -a(S'get_filter/3' -p136785 -S'get_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:Filter}) $4' -p136786 -tp136787 -a(S'handle_call/3' -p136788 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p136789 -tp136790 -a(S'handle_cast/2' -p136791 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p136792 -tp136793 -a(S'handle_info/2' -p136794 -S'handle_info(${1:Param1}, ${2:State}) $3' -p136795 -tp136796 -a(S'init/1' -p136797 -S'init(${1:Env}) $2' -p136798 -tp136799 -a(S'oe_create/0' -p136800 -S'oe_create() $1' -p136801 -tp136802 -a(S'oe_create/1' -p136803 -S'oe_create(${1:Env}) $2' -p136804 -tp136805 -a(S'oe_create/2' -p136806 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p136807 -tp136808 -a(S'oe_create_link/0' -p136809 -S'oe_create_link() $1' -p136810 -tp136811 -a(S'oe_create_link/1' -p136812 -S'oe_create_link(${1:Env}) $2' -p136813 -tp136814 -a(S'oe_create_link/2' -p136815 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p136816 -tp136817 -a(S'oe_get_interface/0' -p136818 -S'oe_get_interface() $1' -p136819 -tp136820 -a(S'oe_is_a/1' -p136821 -S'oe_is_a(${1:Param1}) $2' -p136822 -tp136823 -a(S'oe_tc/1' -p136824 -S'oe_tc(${1:Param1}) $2' -p136825 -tp136826 -a(S'remove_all_filters/1' -p136827 -S'remove_all_filters(${1:OE_THIS}) $2' -p136828 -tp136829 -a(S'remove_all_filters/2' -p136830 -S'remove_all_filters(${1:OE_THIS}, ${2:OE_Options}) $3' -p136831 -tp136832 -a(S'remove_filter/2' -p136833 -S'remove_filter(${1:OE_THIS}, ${2:Filter}) $3' -p136834 -tp136835 -a(S'remove_filter/3' -p136836 -S'remove_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:Filter}) $4' -p136837 -tp136838 -a(S'terminate/2' -p136839 -S'terminate(${1:Reason}, ${2:State}) $3' -p136840 -tp136841 -a(S'typeID/0' -p136842 -S'typeID() $1' -p136843 -tp136844 -asS'dbg_icmd' -p136845 -(lp136846 -(S'cmd/3' -p136847 -S'cmd(${1:Expr}, ${2:Bs}, ${3:Ieval}) $4' -p136848 -tp136849 -a(S'continue/1' -p136850 -S'continue(${1:Meta}) $2' -p136851 -tp136852 -a(S'eval/2' -p136853 -S'eval(${1:Meta}, ${2:Param2}) $3' -p136854 -tp136855 -a(S'finish/1' -p136856 -S'finish(${1:Meta}) $2' -p136857 -tp136858 -a(S'get/3' -p136859 -S'get(${1:Meta}, ${2:Tag}, ${3:Args}) $4' -p136860 -tp136861 -a(S'get_binding/2' -p136862 -S'get_binding(${1:Var}, ${2:Bs}) $3' -p136863 -tp136864 -a(S'handle_msg/4' -p136865 -S'handle_msg(${1:Msg}, ${2:Status}, ${3:Bs}, ${4:Ieval}) $5' -p136866 -tp136867 -a(S'next/1' -p136868 -S'next(${1:Meta}) $2' -p136869 -tp136870 -a(S'set/3' -p136871 -S'set(${1:Meta}, ${2:Tag}, ${3:Args}) $4' -p136872 -tp136873 -a(S'skip/1' -p136874 -S'skip(${1:Meta}) $2' -p136875 -tp136876 -a(S'step/1' -p136877 -S'step(${1:Meta}) $2' -p136878 -tp136879 -a(S'stop/1' -p136880 -S'stop(${1:Meta}) $2' -p136881 -tp136882 -a(S'tell_attached/1' -p136883 -S'tell_attached(${1:Msg}) $2' -p136884 -tp136885 -a(S'timeout/1' -p136886 -S'timeout(${1:Meta}) $2' -p136887 -tp136888 -asS'snmp_app_sup' -p136889 -(lp136890 -(S'init/1' -p136891 -S'init(${1:Param1}) $2' -p136892 -tp136893 -a(S'start_agent/2' -p136894 -S'start_agent(${1:Type}, ${2:Opts}) $3' -p136895 -tp136896 -a(S'start_link/0' -p136897 -S'start_link() $1' -p136898 -tp136899 -a(S'start_manager/2' -p136900 -S'start_manager(${1:Type}, ${2:Opts}) $3' -p136901 -tp136902 -a(S'stop/0' -p136903 -S'stop() $1' -p136904 -tp136905 -asS'ssh_io' -p136906 -(lp136907 -(S'format/2' -p136908 -S'format(${1:Fmt}, ${2:Args}) $3' -p136909 -tp136910 -a(S'read_line/1' -p136911 -S'read_line(${1:Prompt}) $2' -p136912 -tp136913 -a(S'read_password/1' -p136914 -S'read_password(${1:Prompt}) $2' -p136915 -tp136916 -a(S'yes_no/1' -p136917 -S'yes_no(${1:Prompt}) $2' -p136918 -tp136919 -asS'CosPropertyService_PropertySetDef_impl' -p136920 -(lp136921 -(S'code_change/3' -p136922 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p136923 -tp136924 -a(S'define_properties/3' -p136925 -S'define_properties(${1:Param1}, ${2:State}, ${3:PropertySeq}) $4' -p136926 -tp136927 -a(S'define_properties_with_modes/3' -p136928 -S'define_properties_with_modes(${1:Param1}, ${2:State}, ${3:PropertyDefSeq}) $4' -p136929 -tp136930 -a(S'define_property/4' -p136931 -S'define_property(${1:Param1}, ${2:State}, ${3:Name}, ${4:Value}) $5' -p136932 -tp136933 -a(S'define_property_with_mode/5' -p136934 -S'define_property_with_mode(${1:Param1}, ${2:State}, ${3:Name}, ${4:Value}, ${5:Mode}) $6' -p136935 -tp136936 -a(S'delete_all_properties/2' -p136937 -S'delete_all_properties(${1:Param1}, ${2:State}) $3' -p136938 -tp136939 -a(S'delete_properties/3' -p136940 -S'delete_properties(${1:Param1}, ${2:State}, ${3:PropertyNames}) $4' -p136941 -tp136942 -a(S'delete_property/3' -p136943 -S'delete_property(${1:Param1}, ${2:State}, ${3:Name}) $4' -p136944 -tp136945 -a(S'dump/0' -p136946 -S'dump() $1' -p136947 -tp136948 -a(S'get_all_properties/3' -p136949 -S'get_all_properties(${1:Param1}, ${2:State}, ${3:Max}) $4' -p136950 -tp136951 -a(S'get_all_property_names/3' -p136952 -S'get_all_property_names(${1:Param1}, ${2:State}, ${3:Max}) $4' -p136953 -tp136954 -a(S'get_allowed_properties/2' -p136955 -S'get_allowed_properties(${1:Param1}, ${2:State}) $3' -p136956 -tp136957 -a(S'get_allowed_property_types/2' -p136958 -S'get_allowed_property_types(${1:Param1}, ${2:State}) $3' -p136959 -tp136960 -a(S'get_number_of_properties/2' -p136961 -S'get_number_of_properties(${1:Param1}, ${2:State}) $3' -p136962 -tp136963 -a(S'get_properties/3' -p136964 -S'get_properties(${1:Param1}, ${2:State}, ${3:PropertyNames}) $4' -p136965 -tp136966 -a(S'get_property_mode/3' -p136967 -S'get_property_mode(${1:Param1}, ${2:State}, ${3:Name}) $4' -p136968 -tp136969 -a(S'get_property_modes/3' -p136970 -S'get_property_modes(${1:Param1}, ${2:State}, ${3:PropertyNames}) $4' -p136971 -tp136972 -a(S'get_property_value/3' -p136973 -S'get_property_value(${1:Param1}, ${2:State}, ${3:Name}) $4' -p136974 -tp136975 -a(S'init/1' -p136976 -S'init(${1:Param1}) $2' -p136977 -tp136978 -a(S'is_property_defined/3' -p136979 -S'is_property_defined(${1:Param1}, ${2:State}, ${3:Name}) $4' -p136980 -tp136981 -a(S'set_property_mode/4' -p136982 -S'set_property_mode(${1:Param1}, ${2:State}, ${3:Name}, ${4:Mode}) $5' -p136983 -tp136984 -a(S'set_property_modes/3' -p136985 -S'set_property_modes(${1:Param1}, ${2:State}, ${3:PropertyModes}) $4' -p136986 -tp136987 -a(S'terminate/2' -p136988 -S'terminate(${1:Param1}, ${2:State}) $3' -p136989 -tp136990 -asS'ets' -p136991 -(lp136992 -(S'file2tab/1' -p136993 -S'file2tab(${1:Filename}) $2' -p136994 -tp136995 -a(S'file2tab/2' -p136996 -S'file2tab(${1:Filename}, ${2:Options}) $3' -p136997 -tp136998 -a(S'filter/3' -p136999 -S'filter(${1:Tn}, ${2:F}, ${3:A}) $4' -p137000 -tp137001 -a(S'foldl/3' -p137002 -S'foldl(${1:Function}, ${2:Acc0}, ${3:Tab}) $4' -p137003 -tp137004 -a(S'foldr/3' -p137005 -S'foldr(${1:Function}, ${2:Acc0}, ${3:Tab}) $4' -p137006 -tp137007 -a(S'from_dets/2' -p137008 -S'from_dets(${1:Tab}, ${2:DetsTab}) $3' -p137009 -tp137010 -a(S'fun2ms/1' -p137011 -S'fun2ms(${1:LiteralFun}) $2' -p137012 -tp137013 -a(S'i/0' -p137014 -S'i() $1' -p137015 -tp137016 -a(S'i/1' -p137017 -S'i(${1:Tab}) $2' -p137018 -tp137019 -a(S'i/2' -p137020 -S'i(${1:Tab}, ${2:Height}) $3' -p137021 -tp137022 -a(S'i/3' -p137023 -S'i(${1:Tab}, ${2:Height}, ${3:Width}) $4' -p137024 -tp137025 -a(S'init_table/2' -p137026 -S'init_table(${1:Tab}, ${2:InitFun}) $3' -p137027 -tp137028 -a(S'match_delete/2' -p137029 -S'match_delete(${1:Tab}, ${2:Pattern}) $3' -p137030 -tp137031 -a(S'match_spec_run/2' -p137032 -S'match_spec_run(${1:List}, ${2:CompiledMS}) $3' -p137033 -tp137034 -a(S'repair_continuation/2' -p137035 -S'repair_continuation(${1:Continuation}, ${2:MatchSpec}) $3' -p137036 -tp137037 -a(S'tab2file/2' -p137038 -S'tab2file(${1:Tab}, ${2:Filename}) $3' -p137039 -tp137040 -a(S'tab2file/3' -p137041 -S'tab2file(${1:Tab}, ${2:Filename}, ${3:Options}) $4' -p137042 -tp137043 -a(S'tab2list/1' -p137044 -S'tab2list(${1:Tab}) $2' -p137045 -tp137046 -a(S'tabfile_info/1' -p137047 -S'tabfile_info(${1:Filename}) $2' -p137048 -tp137049 -a(S'table/1' -p137050 -S'table(${1:Tab}) $2' -p137051 -tp137052 -a(S'table/2' -p137053 -S'table(${1:Tab}, ${2:InitFun}) $3' -p137054 -tp137055 -a(S'test_ms/2' -p137056 -S'test_ms(${1:Tuple}, ${2:MatchSpec}) $3' -p137057 -tp137058 -a(S'to_dets/2' -p137059 -S'to_dets(${1:Tab}, ${2:DetsTab}) $3' -p137060 -tp137061 -asS'asn1ct_check' -p137062 -(lp137063 -(S'check/2' -p137064 -S'check(${1:S}, ${2:Param2}) $3' -p137065 -tp137066 -a(S'storeindb/2' -p137067 -S'storeindb(${1:S}, ${2:M}) $3' -p137068 -tp137069 -asS'wxIcon' -p137070 -(lp137071 -(S'convertToImage/1' -p137072 -S'convertToImage(${1:This}) $2' -p137073 -tp137074 -a(S'copyFromBitmap/2' -p137075 -S'copyFromBitmap(${1:This}, ${2:Bmp}) $3' -p137076 -tp137077 -a(S'copyFromIcon/2' -p137078 -S'copyFromIcon(${1:This}, ${2:Icon}) $3' -p137079 -tp137080 -a(S'destroy/1' -p137081 -S'destroy(${1:This}) $2' -p137082 -tp137083 -a(S'getDepth/1' -p137084 -S'getDepth(${1:This}) $2' -p137085 -tp137086 -a(S'getHeight/1' -p137087 -S'getHeight(${1:This}) $2' -p137088 -tp137089 -a(S'getMask/1' -p137090 -S'getMask(${1:This}) $2' -p137091 -tp137092 -a(S'getPalette/1' -p137093 -S'getPalette(${1:This}) $2' -p137094 -tp137095 -a(S'getSubBitmap/2' -p137096 -S'getSubBitmap(${1:This}, ${2:Rect}) $3' -p137097 -tp137098 -a(S'getWidth/1' -p137099 -S'getWidth(${1:This}) $2' -p137100 -tp137101 -a(S'loadFile/2' -p137102 -S'loadFile(${1:This}, ${2:Name}) $3' -p137103 -tp137104 -a(S'loadFile/3' -p137105 -S'loadFile(${1:This}, ${2:Name}, ${3:Options}) $4' -p137106 -tp137107 -a(S'new/0' -p137108 -S'new() $1' -p137109 -tp137110 -a(S'new/1' -p137111 -S'new(${1:Filename}) $2' -p137112 -tp137113 -a(S'new/2' -p137114 -S'new(${1:Filename}, ${2:Param2}) $3' -p137115 -tp137116 -a(S'ok/1' -p137117 -S'ok(${1:This}) $2' -p137118 -tp137119 -a(S'parent_class/1' -p137120 -S'parent_class(${1:Param1}) $2' -p137121 -tp137122 -a(S'saveFile/3' -p137123 -S'saveFile(${1:This}, ${2:Name}, ${3:Type}) $4' -p137124 -tp137125 -a(S'saveFile/4' -p137126 -S'saveFile(${1:This}, ${2:Name}, ${3:Type}, ${4:Options}) $5' -p137127 -tp137128 -a(S'setDepth/2' -p137129 -S'setDepth(${1:This}, ${2:Depth}) $3' -p137130 -tp137131 -a(S'setHeight/2' -p137132 -S'setHeight(${1:This}, ${2:Height}) $3' -p137133 -tp137134 -a(S'setMask/2' -p137135 -S'setMask(${1:This}, ${2:Mask}) $3' -p137136 -tp137137 -a(S'setPalette/2' -p137138 -S'setPalette(${1:This}, ${2:Palette}) $3' -p137139 -tp137140 -a(S'setWidth/2' -p137141 -S'setWidth(${1:This}, ${2:Width}) $3' -p137142 -tp137143 -asS'snmpa_set' -p137144 -(lp137145 -(S'do_set/2' -p137146 -S'do_set(${1:MibView}, ${2:UnsortedVarbinds}) $3' -p137147 -tp137148 -a(S'do_subagent_set/1' -p137149 -S'do_subagent_set(${1:Param1}) $2' -p137150 -tp137151 -asS'wxGraphicsBrush' -p137152 -(lp137153 -(S'getRenderer/1' -p137154 -S'getRenderer(${1:This}) $2' -p137155 -tp137156 -a(S'isNull/1' -p137157 -S'isNull(${1:This}) $2' -p137158 -tp137159 -a(S'parent_class/1' -p137160 -S'parent_class(${1:Param1}) $2' -p137161 -tp137162 -asS'ic_cserver' -p137163 -(lp137164 -(S'do_gen/3' -p137165 -S'do_gen(${1:G}, ${2:File}, ${3:Form}) $4' -p137166 -tp137167 -a(S'filterzip/3' -p137168 -S'filterzip() $1' -p137169 -tp137170 -asS'pman_buf_utils' -p137171 -(lp137172 -(S'split/4' -p137173 -S'split(${1:Rest}, ${2:Size}, ${3:Length}, ${4:Buff}) $5' -p137174 -tp137175 -a(S'textformat/1' -p137176 -S'textformat(${1:Other}) $2' -p137177 -tp137178 -asS'cosTime' -p137179 -(lp137180 -(S'create_link/3' -p137181 -S'create_link(${1:Module}, ${2:Env}, ${3:ArgList}) $4' -p137182 -tp137183 -a(S'get_option/3' -p137184 -S'get_option(${1:Key}, ${2:OptionList}, ${3:DefaultList}) $4' -p137185 -tp137186 -a(S'init/1' -p137187 -S'init(${1:Param1}) $2' -p137188 -tp137189 -a(S'install_time/0' -p137190 -S'install_time() $1' -p137191 -tp137192 -a(S'install_timerevent/0' -p137193 -S'install_timerevent() $1' -p137194 -tp137195 -a(S'start/0' -p137196 -S'start() $1' -p137197 -tp137198 -a(S'start/2' -p137199 -S'start(${1:Param1}, ${2:Param2}) $3' -p137200 -tp137201 -a(S'start_event_handler/1' -p137202 -S'start_event_handler(${1:Args}) $2' -p137203 -tp137204 -a(S'start_time_service/2' -p137205 -S'start_time_service(${1:Tdf}, ${2:Inaccuracy}) $3' -p137206 -tp137207 -a(S'start_timerevent_service/1' -p137208 -S'start_timerevent_service(${1:Timer}) $2' -p137209 -tp137210 -a(S'stop/0' -p137211 -S'stop() $1' -p137212 -tp137213 -a(S'stop/1' -p137214 -S'stop(${1:Param1}) $2' -p137215 -tp137216 -a(S'stop_time_service/1' -p137217 -S'stop_time_service(${1:Obj}) $2' -p137218 -tp137219 -a(S'stop_timerevent_service/1' -p137220 -S'stop_timerevent_service(${1:Obj}) $2' -p137221 -tp137222 -a(S'type_check/2' -p137223 -S'type_check(${1:Obj}, ${2:Mod}) $3' -p137224 -tp137225 -a(S'uninstall_time/0' -p137226 -S'uninstall_time() $1' -p137227 -tp137228 -a(S'uninstall_timerevent/0' -p137229 -S'uninstall_timerevent() $1' -p137230 -tp137231 -asS'asn1ct_gen_ber_bin_v2' -p137232 -(lp137233 -(S'add_removed_bytes/0' -p137234 -S'add_removed_bytes() $1' -p137235 -tp137236 -a(S'decode_class/1' -p137237 -S'decode_class(${1:Param1}) $2' -p137238 -tp137239 -a(S'decode_type/1' -p137240 -S'decode_type(${1:Else}) $2' -p137241 -tp137242 -a(S'encode_tag_val/3' -p137243 -S'encode_tag_val(${1:Class}, ${2:Form}, ${3:TagNo}) $4' -p137244 -tp137245 -a(S'extaddgroup2sequence/1' -p137246 -S'extaddgroup2sequence(${1:ExtList}) $2' -p137247 -tp137248 -a(S'gen_dec_prim/7' -p137249 -S'gen_dec_prim(${1:Erules}, ${2:Att}, ${3:BytesVar}, ${4:DoTag}, ${5:TagIn}, ${6:Form}, ${7:OptOrMand}) $8' -p137250 -tp137251 -a(S'gen_decode/2' -p137252 -S'gen_decode(${1:Erules}, ${2:Type}) $3' -p137253 -tp137254 -a(S'gen_decode/3' -p137255 -S'gen_decode(${1:Erules}, ${2:Typename}, ${3:Type}) $4' -p137256 -tp137257 -a(S'gen_decode_selected/3' -p137258 -S'gen_decode_selected(${1:Erules}, ${2:Type}, ${3:FuncName}) $4' -p137259 -tp137260 -a(S'gen_encode/2' -p137261 -S'gen_encode(${1:Erules}, ${2:Type}) $3' -p137262 -tp137263 -a(S'gen_encode/3' -p137264 -S'gen_encode(${1:Erules}, ${2:Typename}, ${3:Type}) $4' -p137265 -tp137266 -a(S'gen_encode_prim/4' -p137267 -S'gen_encode_prim(${1:Erules}, ${2:D}, ${3:DoTag}, ${4:Value}) $5' -p137268 -tp137269 -a(S'gen_inc_decode/2' -p137270 -S'gen_inc_decode(${1:Erules}, ${2:Type}) $3' -p137271 -tp137272 -a(S'gen_obj_code/3' -p137273 -S'gen_obj_code(${1:Erules}, ${2:Param2}, ${3:Obj}) $4' -p137274 -tp137275 -a(S'gen_objectset_code/2' -p137276 -S'gen_objectset_code(${1:Erules}, ${2:ObjSet}) $3' -p137277 -tp137278 -a(S'pgen/4' -p137279 -S'pgen(${1:OutFile}, ${2:Erules}, ${3:Module}, ${4:TypeOrVal}) $5' -p137280 -tp137281 -asS'dbg_ui_break' -p137282 -(lp137283 -(S'init/5' -p137284 -S'init(${1:GS}, ${2:Pos}, ${3:Type}, ${4:Mod}, ${5:Line}) $6' -p137285 -tp137286 -a(S'start/3' -p137287 -S'start(${1:GS}, ${2:Pos}, ${3:Type}) $4' -p137288 -tp137289 -a(S'start/4' -p137290 -S'start(${1:GS}, ${2:Pos}, ${3:Type}, ${4:Mod}) $5' -p137291 -tp137292 -a(S'start/5' -p137293 -S'start(${1:GS}, ${2:Pos}, ${3:Type}, ${4:Mod}, ${5:Line}) $6' -p137294 -tp137295 -asS'wxCalendarCtrl' -p137296 -(lp137297 -(S'cacheBestSize/2' -p137298 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p137299 -tp137300 -a(S'captureMouse/1' -p137301 -S'captureMouse(${1:This}) $2' -p137302 -tp137303 -a(S'center/1' -p137304 -S'center(${1:This}) $2' -p137305 -tp137306 -a(S'center/2' -p137307 -S'center(${1:This}, ${2:Options}) $3' -p137308 -tp137309 -a(S'centerOnParent/1' -p137310 -S'centerOnParent(${1:This}) $2' -p137311 -tp137312 -a(S'centerOnParent/2' -p137313 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p137314 -tp137315 -a(S'centre/1' -p137316 -S'centre(${1:This}) $2' -p137317 -tp137318 -a(S'centre/2' -p137319 -S'centre(${1:This}, ${2:Options}) $3' -p137320 -tp137321 -a(S'centreOnParent/1' -p137322 -S'centreOnParent(${1:This}) $2' -p137323 -tp137324 -a(S'centreOnParent/2' -p137325 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p137326 -tp137327 -a(S'clearBackground/1' -p137328 -S'clearBackground(${1:This}) $2' -p137329 -tp137330 -a(S'clientToScreen/2' -p137331 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p137332 -tp137333 -a(S'clientToScreen/3' -p137334 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p137335 -tp137336 -a(S'close/1' -p137337 -S'close(${1:This}) $2' -p137338 -tp137339 -a(S'close/2' -p137340 -S'close(${1:This}, ${2:Options}) $3' -p137341 -tp137342 -a(S'connect/2' -p137343 -S'connect(${1:This}, ${2:EventType}) $3' -p137344 -tp137345 -a(S'connect/3' -p137346 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p137347 -tp137348 -a(S'convertDialogToPixels/2' -p137349 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p137350 -tp137351 -a(S'convertPixelsToDialog/2' -p137352 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p137353 -tp137354 -a(S'create/3' -p137355 -S'create(${1:This}, ${2:Parent}, ${3:Id}) $4' -p137356 -tp137357 -a(S'create/4' -p137358 -S'create(${1:This}, ${2:Parent}, ${3:Id}, ${4:Param4}) $5' -p137359 -tp137360 -a(S'destroy/1' -p137361 -S'destroy(${1:This}) $2' -p137362 -tp137363 -a(S'destroyChildren/1' -p137364 -S'destroyChildren(${1:This}) $2' -p137365 -tp137366 -a(S'disable/1' -p137367 -S'disable(${1:This}) $2' -p137368 -tp137369 -a(S'disconnect/1' -p137370 -S'disconnect(${1:This}) $2' -p137371 -tp137372 -a(S'disconnect/2' -p137373 -S'disconnect(${1:This}, ${2:EventType}) $3' -p137374 -tp137375 -a(S'disconnect/3' -p137376 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p137377 -tp137378 -a(S'enable/1' -p137379 -S'enable(${1:This}) $2' -p137380 -tp137381 -a(S'enable/2' -p137382 -S'enable(${1:This}, ${2:Options}) $3' -p137383 -tp137384 -a(S'enableHolidayDisplay/1' -p137385 -S'enableHolidayDisplay(${1:This}) $2' -p137386 -tp137387 -a(S'enableHolidayDisplay/2' -p137388 -S'enableHolidayDisplay(${1:This}, ${2:Param2}) $3' -p137389 -tp137390 -a(S'enableMonthChange/1' -p137391 -S'enableMonthChange(${1:This}) $2' -p137392 -tp137393 -a(S'enableMonthChange/2' -p137394 -S'enableMonthChange(${1:This}, ${2:Param2}) $3' -p137395 -tp137396 -a(S'enableYearChange/1' -p137397 -S'enableYearChange(${1:This}) $2' -p137398 -tp137399 -a(S'enableYearChange/2' -p137400 -S'enableYearChange(${1:This}, ${2:Param2}) $3' -p137401 -tp137402 -a(S'findWindow/2' -p137403 -S'findWindow(${1:This}, ${2:Winid}) $3' -p137404 -tp137405 -a(S'fit/1' -p137406 -S'fit(${1:This}) $2' -p137407 -tp137408 -a(S'fitInside/1' -p137409 -S'fitInside(${1:This}) $2' -p137410 -tp137411 -a(S'freeze/1' -p137412 -S'freeze(${1:This}) $2' -p137413 -tp137414 -a(S'getAcceleratorTable/1' -p137415 -S'getAcceleratorTable(${1:This}) $2' -p137416 -tp137417 -a(S'getAttr/2' -p137418 -S'getAttr(${1:This}, ${2:Day}) $3' -p137419 -tp137420 -a(S'getBackgroundColour/1' -p137421 -S'getBackgroundColour(${1:This}) $2' -p137422 -tp137423 -a(S'getBackgroundStyle/1' -p137424 -S'getBackgroundStyle(${1:This}) $2' -p137425 -tp137426 -a(S'getBestSize/1' -p137427 -S'getBestSize(${1:This}) $2' -p137428 -tp137429 -a(S'getCaret/1' -p137430 -S'getCaret(${1:This}) $2' -p137431 -tp137432 -a(S'getCharHeight/1' -p137433 -S'getCharHeight(${1:This}) $2' -p137434 -tp137435 -a(S'getCharWidth/1' -p137436 -S'getCharWidth(${1:This}) $2' -p137437 -tp137438 -a(S'getChildren/1' -p137439 -S'getChildren(${1:This}) $2' -p137440 -tp137441 -a(S'getClientSize/1' -p137442 -S'getClientSize(${1:This}) $2' -p137443 -tp137444 -a(S'getContainingSizer/1' -p137445 -S'getContainingSizer(${1:This}) $2' -p137446 -tp137447 -a(S'getCursor/1' -p137448 -S'getCursor(${1:This}) $2' -p137449 -tp137450 -a(S'getDate/1' -p137451 -S'getDate(${1:This}) $2' -p137452 -tp137453 -a(S'getDropTarget/1' -p137454 -S'getDropTarget(${1:This}) $2' -p137455 -tp137456 -a(S'getEventHandler/1' -p137457 -S'getEventHandler(${1:This}) $2' -p137458 -tp137459 -a(S'getExtraStyle/1' -p137460 -S'getExtraStyle(${1:This}) $2' -p137461 -tp137462 -a(S'getFont/1' -p137463 -S'getFont(${1:This}) $2' -p137464 -tp137465 -a(S'getForegroundColour/1' -p137466 -S'getForegroundColour(${1:This}) $2' -p137467 -tp137468 -a(S'getGrandParent/1' -p137469 -S'getGrandParent(${1:This}) $2' -p137470 -tp137471 -a(S'getHandle/1' -p137472 -S'getHandle(${1:This}) $2' -p137473 -tp137474 -a(S'getHeaderColourBg/1' -p137475 -S'getHeaderColourBg(${1:This}) $2' -p137476 -tp137477 -a(S'getHeaderColourFg/1' -p137478 -S'getHeaderColourFg(${1:This}) $2' -p137479 -tp137480 -a(S'getHelpText/1' -p137481 -S'getHelpText(${1:This}) $2' -p137482 -tp137483 -a(S'getHighlightColourBg/1' -p137484 -S'getHighlightColourBg(${1:This}) $2' -p137485 -tp137486 -a(S'getHighlightColourFg/1' -p137487 -S'getHighlightColourFg(${1:This}) $2' -p137488 -tp137489 -a(S'getHolidayColourBg/1' -p137490 -S'getHolidayColourBg(${1:This}) $2' -p137491 -tp137492 -a(S'getHolidayColourFg/1' -p137493 -S'getHolidayColourFg(${1:This}) $2' -p137494 -tp137495 -a(S'getId/1' -p137496 -S'getId(${1:This}) $2' -p137497 -tp137498 -a(S'getLabel/1' -p137499 -S'getLabel(${1:This}) $2' -p137500 -tp137501 -a(S'getMaxSize/1' -p137502 -S'getMaxSize(${1:This}) $2' -p137503 -tp137504 -a(S'getMinSize/1' -p137505 -S'getMinSize(${1:This}) $2' -p137506 -tp137507 -a(S'getName/1' -p137508 -S'getName(${1:This}) $2' -p137509 -tp137510 -a(S'getParent/1' -p137511 -S'getParent(${1:This}) $2' -p137512 -tp137513 -a(S'getPosition/1' -p137514 -S'getPosition(${1:This}) $2' -p137515 -tp137516 -a(S'getRect/1' -p137517 -S'getRect(${1:This}) $2' -p137518 -tp137519 -a(S'getScreenPosition/1' -p137520 -S'getScreenPosition(${1:This}) $2' -p137521 -tp137522 -a(S'getScreenRect/1' -p137523 -S'getScreenRect(${1:This}) $2' -p137524 -tp137525 -a(S'getScrollPos/2' -p137526 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p137527 -tp137528 -a(S'getScrollRange/2' -p137529 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p137530 -tp137531 -a(S'getScrollThumb/2' -p137532 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p137533 -tp137534 -a(S'getSize/1' -p137535 -S'getSize(${1:This}) $2' -p137536 -tp137537 -a(S'getSizer/1' -p137538 -S'getSizer(${1:This}) $2' -p137539 -tp137540 -a(S'getTextExtent/2' -p137541 -S'getTextExtent(${1:This}, ${2:String}) $3' -p137542 -tp137543 -a(S'getTextExtent/3' -p137544 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p137545 -tp137546 -a(S'getToolTip/1' -p137547 -S'getToolTip(${1:This}) $2' -p137548 -tp137549 -a(S'getUpdateRegion/1' -p137550 -S'getUpdateRegion(${1:This}) $2' -p137551 -tp137552 -a(S'getVirtualSize/1' -p137553 -S'getVirtualSize(${1:This}) $2' -p137554 -tp137555 -a(S'getWindowStyleFlag/1' -p137556 -S'getWindowStyleFlag(${1:This}) $2' -p137557 -tp137558 -a(S'getWindowVariant/1' -p137559 -S'getWindowVariant(${1:This}) $2' -p137560 -tp137561 -a(S'hasCapture/1' -p137562 -S'hasCapture(${1:This}) $2' -p137563 -tp137564 -a(S'hasScrollbar/2' -p137565 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p137566 -tp137567 -a(S'hasTransparentBackground/1' -p137568 -S'hasTransparentBackground(${1:This}) $2' -p137569 -tp137570 -a(S'hide/1' -p137571 -S'hide(${1:This}) $2' -p137572 -tp137573 -a(S'hitTest/2' -p137574 -S'hitTest(${1:This}, ${2:Pos}) $3' -p137575 -tp137576 -a(S'inheritAttributes/1' -p137577 -S'inheritAttributes(${1:This}) $2' -p137578 -tp137579 -a(S'initDialog/1' -p137580 -S'initDialog(${1:This}) $2' -p137581 -tp137582 -a(S'invalidateBestSize/1' -p137583 -S'invalidateBestSize(${1:This}) $2' -p137584 -tp137585 -a(S'isEnabled/1' -p137586 -S'isEnabled(${1:This}) $2' -p137587 -tp137588 -a(S'isExposed/2' -p137589 -S'isExposed(${1:This}, ${2:Pt}) $3' -p137590 -tp137591 -a(S'isExposed/3' -p137592 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p137593 -tp137594 -a(S'isExposed/5' -p137595 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p137596 -tp137597 -a(S'isRetained/1' -p137598 -S'isRetained(${1:This}) $2' -p137599 -tp137600 -a(S'isShown/1' -p137601 -S'isShown(${1:This}) $2' -p137602 -tp137603 -a(S'isTopLevel/1' -p137604 -S'isTopLevel(${1:This}) $2' -p137605 -tp137606 -a(S'layout/1' -p137607 -S'layout(${1:This}) $2' -p137608 -tp137609 -a(S'lineDown/1' -p137610 -S'lineDown(${1:This}) $2' -p137611 -tp137612 -a(S'lineUp/1' -p137613 -S'lineUp(${1:This}) $2' -p137614 -tp137615 -a(S'lower/1' -p137616 -S'lower(${1:This}) $2' -p137617 -tp137618 -a(S'makeModal/1' -p137619 -S'makeModal(${1:This}) $2' -p137620 -tp137621 -a(S'makeModal/2' -p137622 -S'makeModal(${1:This}, ${2:Options}) $3' -p137623 -tp137624 -a(S'move/2' -p137625 -S'move(${1:This}, ${2:Pt}) $3' -p137626 -tp137627 -a(S'move/3' -p137628 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p137629 -tp137630 -a(S'move/4' -p137631 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p137632 -tp137633 -a(S'moveAfterInTabOrder/2' -p137634 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p137635 -tp137636 -a(S'moveBeforeInTabOrder/2' -p137637 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p137638 -tp137639 -a(S'navigate/1' -p137640 -S'navigate(${1:This}) $2' -p137641 -tp137642 -a(S'navigate/2' -p137643 -S'navigate(${1:This}, ${2:Options}) $3' -p137644 -tp137645 -a(S'new/0' -p137646 -S'new() $1' -p137647 -tp137648 -a(S'new/2' -p137649 -S'new(${1:Parent}, ${2:Id}) $3' -p137650 -tp137651 -a(S'new/3' -p137652 -S'new(${1:Parent}, ${2:Id}, ${3:Param3}) $4' -p137653 -tp137654 -a(S'pageDown/1' -p137655 -S'pageDown(${1:This}) $2' -p137656 -tp137657 -a(S'pageUp/1' -p137658 -S'pageUp(${1:This}) $2' -p137659 -tp137660 -a(S'parent_class/1' -p137661 -S'parent_class(${1:Param1}) $2' -p137662 -tp137663 -a(S'popEventHandler/1' -p137664 -S'popEventHandler(${1:This}) $2' -p137665 -tp137666 -a(S'popEventHandler/2' -p137667 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p137668 -tp137669 -a(S'popupMenu/2' -p137670 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p137671 -tp137672 -a(S'popupMenu/3' -p137673 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p137674 -tp137675 -a(S'popupMenu/4' -p137676 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p137677 -tp137678 -a(S'raise/1' -p137679 -S'raise(${1:This}) $2' -p137680 -tp137681 -a(S'refresh/1' -p137682 -S'refresh(${1:This}) $2' -p137683 -tp137684 -a(S'refresh/2' -p137685 -S'refresh(${1:This}, ${2:Options}) $3' -p137686 -tp137687 -a(S'refreshRect/2' -p137688 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p137689 -tp137690 -a(S'refreshRect/3' -p137691 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p137692 -tp137693 -a(S'releaseMouse/1' -p137694 -S'releaseMouse(${1:This}) $2' -p137695 -tp137696 -a(S'removeChild/2' -p137697 -S'removeChild(${1:This}, ${2:Child}) $3' -p137698 -tp137699 -a(S'reparent/2' -p137700 -S'reparent(${1:This}, ${2:NewParent}) $3' -p137701 -tp137702 -a(S'resetAttr/2' -p137703 -S'resetAttr(${1:This}, ${2:Day}) $3' -p137704 -tp137705 -a(S'screenToClient/1' -p137706 -S'screenToClient(${1:This}) $2' -p137707 -tp137708 -a(S'screenToClient/2' -p137709 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p137710 -tp137711 -a(S'scrollLines/2' -p137712 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p137713 -tp137714 -a(S'scrollPages/2' -p137715 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p137716 -tp137717 -a(S'scrollWindow/3' -p137718 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p137719 -tp137720 -a(S'scrollWindow/4' -p137721 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p137722 -tp137723 -a(S'setAcceleratorTable/2' -p137724 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p137725 -tp137726 -a(S'setAttr/3' -p137727 -S'setAttr(${1:This}, ${2:Day}, ${3:Attr}) $4' -p137728 -tp137729 -a(S'setAutoLayout/2' -p137730 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p137731 -tp137732 -a(S'setBackgroundColour/2' -p137733 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p137734 -tp137735 -a(S'setBackgroundStyle/2' -p137736 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p137737 -tp137738 -a(S'setCaret/2' -p137739 -S'setCaret(${1:This}, ${2:Caret}) $3' -p137740 -tp137741 -a(S'setClientSize/2' -p137742 -S'setClientSize(${1:This}, ${2:Size}) $3' -p137743 -tp137744 -a(S'setClientSize/3' -p137745 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p137746 -tp137747 -a(S'setContainingSizer/2' -p137748 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p137749 -tp137750 -a(S'setCursor/2' -p137751 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p137752 -tp137753 -a(S'setDate/2' -p137754 -S'setDate(${1:This}, ${2:Date}) $3' -p137755 -tp137756 -a(S'setDropTarget/2' -p137757 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p137758 -tp137759 -a(S'setExtraStyle/2' -p137760 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p137761 -tp137762 -a(S'setFocus/1' -p137763 -S'setFocus(${1:This}) $2' -p137764 -tp137765 -a(S'setFocusFromKbd/1' -p137766 -S'setFocusFromKbd(${1:This}) $2' -p137767 -tp137768 -a(S'setFont/2' -p137769 -S'setFont(${1:This}, ${2:Font}) $3' -p137770 -tp137771 -a(S'setForegroundColour/2' -p137772 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p137773 -tp137774 -a(S'setHeaderColours/3' -p137775 -S'setHeaderColours(${1:This}, ${2:ColFg}, ${3:ColBg}) $4' -p137776 -tp137777 -a(S'setHelpText/2' -p137778 -S'setHelpText(${1:This}, ${2:Text}) $3' -p137779 -tp137780 -a(S'setHighlightColours/3' -p137781 -S'setHighlightColours(${1:This}, ${2:ColFg}, ${3:ColBg}) $4' -p137782 -tp137783 -a(S'setHoliday/2' -p137784 -S'setHoliday(${1:This}, ${2:Day}) $3' -p137785 -tp137786 -a(S'setHolidayColours/3' -p137787 -S'setHolidayColours(${1:This}, ${2:ColFg}, ${3:ColBg}) $4' -p137788 -tp137789 -a(S'setId/2' -p137790 -S'setId(${1:This}, ${2:Winid}) $3' -p137791 -tp137792 -a(S'setLabel/2' -p137793 -S'setLabel(${1:This}, ${2:Label}) $3' -p137794 -tp137795 -a(S'setMaxSize/2' -p137796 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p137797 -tp137798 -a(S'setMinSize/2' -p137799 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p137800 -tp137801 -a(S'setName/2' -p137802 -S'setName(${1:This}, ${2:Name}) $3' -p137803 -tp137804 -a(S'setOwnBackgroundColour/2' -p137805 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p137806 -tp137807 -a(S'setOwnFont/2' -p137808 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p137809 -tp137810 -a(S'setOwnForegroundColour/2' -p137811 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p137812 -tp137813 -a(S'setPalette/2' -p137814 -S'setPalette(${1:This}, ${2:Pal}) $3' -p137815 -tp137816 -a(S'setScrollPos/3' -p137817 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p137818 -tp137819 -a(S'setScrollPos/4' -p137820 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p137821 -tp137822 -a(S'setScrollbar/5' -p137823 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p137824 -tp137825 -a(S'setScrollbar/6' -p137826 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p137827 -tp137828 -a(S'setSize/2' -p137829 -S'setSize(${1:This}, ${2:Rect}) $3' -p137830 -tp137831 -a(S'setSize/3' -p137832 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p137833 -tp137834 -a(S'setSize/5' -p137835 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p137836 -tp137837 -a(S'setSize/6' -p137838 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p137839 -tp137840 -a(S'setSizeHints/2' -p137841 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p137842 -tp137843 -a(S'setSizeHints/3' -p137844 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p137845 -tp137846 -a(S'setSizeHints/4' -p137847 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p137848 -tp137849 -a(S'setSizer/2' -p137850 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p137851 -tp137852 -a(S'setSizer/3' -p137853 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p137854 -tp137855 -a(S'setSizerAndFit/2' -p137856 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p137857 -tp137858 -a(S'setSizerAndFit/3' -p137859 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p137860 -tp137861 -a(S'setThemeEnabled/2' -p137862 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p137863 -tp137864 -a(S'setToolTip/2' -p137865 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p137866 -tp137867 -a(S'setVirtualSize/2' -p137868 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p137869 -tp137870 -a(S'setVirtualSize/3' -p137871 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p137872 -tp137873 -a(S'setVirtualSizeHints/2' -p137874 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p137875 -tp137876 -a(S'setVirtualSizeHints/3' -p137877 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p137878 -tp137879 -a(S'setVirtualSizeHints/4' -p137880 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p137881 -tp137882 -a(S'setWindowStyle/2' -p137883 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p137884 -tp137885 -a(S'setWindowStyleFlag/2' -p137886 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p137887 -tp137888 -a(S'setWindowVariant/2' -p137889 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p137890 -tp137891 -a(S'shouldInheritColours/1' -p137892 -S'shouldInheritColours(${1:This}) $2' -p137893 -tp137894 -a(S'show/1' -p137895 -S'show(${1:This}) $2' -p137896 -tp137897 -a(S'show/2' -p137898 -S'show(${1:This}, ${2:Options}) $3' -p137899 -tp137900 -a(S'thaw/1' -p137901 -S'thaw(${1:This}) $2' -p137902 -tp137903 -a(S'transferDataFromWindow/1' -p137904 -S'transferDataFromWindow(${1:This}) $2' -p137905 -tp137906 -a(S'transferDataToWindow/1' -p137907 -S'transferDataToWindow(${1:This}) $2' -p137908 -tp137909 -a(S'update/1' -p137910 -S'update(${1:This}) $2' -p137911 -tp137912 -a(S'updateWindowUI/1' -p137913 -S'updateWindowUI(${1:This}) $2' -p137914 -tp137915 -a(S'updateWindowUI/2' -p137916 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p137917 -tp137918 -a(S'validate/1' -p137919 -S'validate(${1:This}) $2' -p137920 -tp137921 -a(S'warpPointer/3' -p137922 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p137923 -tp137924 -asS'wxCaret' -p137925 -(lp137926 -(S'create/3' -p137927 -S'create(${1:This}, ${2:Window}, ${3:Size}) $4' -p137928 -tp137929 -a(S'create/4' -p137930 -S'create(${1:This}, ${2:Window}, ${3:Width}, ${4:Height}) $5' -p137931 -tp137932 -a(S'destroy/1' -p137933 -S'destroy(${1:This}) $2' -p137934 -tp137935 -a(S'getBlinkTime/0' -p137936 -S'getBlinkTime() $1' -p137937 -tp137938 -a(S'getPosition/1' -p137939 -S'getPosition(${1:This}) $2' -p137940 -tp137941 -a(S'getSize/1' -p137942 -S'getSize(${1:This}) $2' -p137943 -tp137944 -a(S'getWindow/1' -p137945 -S'getWindow(${1:This}) $2' -p137946 -tp137947 -a(S'hide/1' -p137948 -S'hide(${1:This}) $2' -p137949 -tp137950 -a(S'isOk/1' -p137951 -S'isOk(${1:This}) $2' -p137952 -tp137953 -a(S'isVisible/1' -p137954 -S'isVisible(${1:This}) $2' -p137955 -tp137956 -a(S'move/2' -p137957 -S'move(${1:This}, ${2:Pt}) $3' -p137958 -tp137959 -a(S'move/3' -p137960 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p137961 -tp137962 -a(S'new/2' -p137963 -S'new(${1:Window}, ${2:Size}) $3' -p137964 -tp137965 -a(S'new/3' -p137966 -S'new(${1:Window}, ${2:Width}, ${3:Height}) $4' -p137967 -tp137968 -a(S'parent_class/1' -p137969 -S'parent_class(${1:Param1}) $2' -p137970 -tp137971 -a(S'setBlinkTime/1' -p137972 -S'setBlinkTime(${1:Milliseconds}) $2' -p137973 -tp137974 -a(S'setSize/2' -p137975 -S'setSize(${1:This}, ${2:Size}) $3' -p137976 -tp137977 -a(S'setSize/3' -p137978 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p137979 -tp137980 -a(S'show/1' -p137981 -S'show(${1:This}) $2' -p137982 -tp137983 -a(S'show/2' -p137984 -S'show(${1:This}, ${2:Param2}) $3' -p137985 -tp137986 -asS'rpc' -p137987 -(lp137988 -(S'abcast/2' -p137989 -S'abcast(${1:Name}, ${2:Msg}) $3' -p137990 -tp137991 -a(S'abcast/3' -p137992 -S'abcast(${1:Nodes}, ${2:Name}, ${3:Msg}) $4' -p137993 -tp137994 -a(S'async_call/4' -p137995 -S'async_call(${1:Node}, ${2:Module}, ${3:Function}, ${4:Args}) $5' -p137996 -tp137997 -a(S'block_call/4' -p137998 -S'block_call(${1:Node}, ${2:Module}, ${3:Function}, ${4:Args}) $5' -p137999 -tp138000 -a(S'block_call/5' -p138001 -S'block_call(${1:Node}, ${2:Module}, ${3:Function}, ${4:Args}, ${5:Timeout}) $6' -p138002 -tp138003 -a(S'call/4' -p138004 -S'call(${1:Node}, ${2:Module}, ${3:Function}, ${4:Args}) $5' -p138005 -tp138006 -a(S'call/5' -p138007 -S'call(${1:Node}, ${2:Module}, ${3:Function}, ${4:Args}, ${5:Timeout}) $6' -p138008 -tp138009 -a(S'cast/4' -p138010 -S'cast(${1:Node}, ${2:Module}, ${3:Function}, ${4:Args}) $5' -p138011 -tp138012 -a(S'code_change/3' -p138013 -S'code_change(${1:Param1}, ${2:S}, ${3:Param3}) $4' -p138014 -tp138015 -a(S'eval_everywhere/3' -p138016 -S'eval_everywhere(${1:Module}, ${2:Function}, ${3:Args}) $4' -p138017 -tp138018 -a(S'eval_everywhere/4' -p138019 -S'eval_everywhere(${1:Nodes}, ${2:Module}, ${3:Function}, ${4:Args}) $5' -p138020 -tp138021 -a(S'handle_call/3' -p138022 -S'handle_call(${1:Param1}, ${2:To}, ${3:S}) $4' -p138023 -tp138024 -a(S'handle_cast/2' -p138025 -S'handle_cast(${1:Param1}, ${2:S}) $3' -p138026 -tp138027 -a(S'handle_info/2' -p138028 -S'handle_info(${1:Param1}, ${2:S}) $3' -p138029 -tp138030 -a(S'init/1' -p138031 -S'init(${1:Param1}) $2' -p138032 -tp138033 -a(S'multi_server_call/2' -p138034 -S'multi_server_call(${1:Name}, ${2:Msg}) $3' -p138035 -tp138036 -a(S'multi_server_call/3' -p138037 -S'multi_server_call(${1:Nodes}, ${2:Name}, ${3:Msg}) $4' -p138038 -tp138039 -a(S'multicall/3' -p138040 -S'multicall(${1:Module}, ${2:Function}, ${3:Args}) $4' -p138041 -tp138042 -a(S'multicall/4' -p138043 -S'multicall(${1:Nodes}, ${2:Module}, ${3:Function}, ${4:Args}) $5' -p138044 -tp138045 -a(S'multicall/5' -p138046 -S'multicall(${1:Nodes}, ${2:Module}, ${3:Function}, ${4:Args}, ${5:Timeout}) $6' -p138047 -tp138048 -a(S'nb_yield/1' -p138049 -S'nb_yield(${1:Key}) $2' -p138050 -tp138051 -a(S'nb_yield/2' -p138052 -S'nb_yield(${1:Key}, ${2:Timeout}) $3' -p138053 -tp138054 -a(S'parallel_eval/1' -p138055 -S'parallel_eval(${1:FuncCalls}) $2' -p138056 -tp138057 -a(S'pinfo/1' -p138058 -S'pinfo(${1:Pid}) $2' -p138059 -tp138060 -a(S'pinfo/2' -p138061 -S'pinfo(${1:Pid}, ${2:Item}) $3' -p138062 -tp138063 -a(S'pmap/3' -p138064 -S'pmap(${1:FuncSpec}, ${2:ExtraArgs}, ${3:List1}) $4' -p138065 -tp138066 -a(S'proxy_user_flush/0' -p138067 -S'proxy_user_flush() $1' -p138068 -tp138069 -a(S'safe_multi_server_call/2' -p138070 -S'safe_multi_server_call(${1:Name}, ${2:Msg}) $3' -p138071 -tp138072 -a(S'safe_multi_server_call/3' -p138073 -S'safe_multi_server_call(${1:Nodes}, ${2:Name}, ${3:Msg}) $4' -p138074 -tp138075 -a(S'sbcast/2' -p138076 -S'sbcast(${1:Name}, ${2:Msg}) $3' -p138077 -tp138078 -a(S'sbcast/3' -p138079 -S'sbcast(${1:Nodes}, ${2:Name}, ${3:Msg}) $4' -p138080 -tp138081 -a(S'server_call/4' -p138082 -S'server_call(${1:Node}, ${2:Name}, ${3:ReplyWrapper}, ${4:Msg}) $5' -p138083 -tp138084 -a(S'start/0' -p138085 -S'start() $1' -p138086 -tp138087 -a(S'start_link/0' -p138088 -S'start_link() $1' -p138089 -tp138090 -a(S'stop/0' -p138091 -S'stop() $1' -p138092 -tp138093 -a(S'terminate/2' -p138094 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p138095 -tp138096 -a(S'yield/1' -p138097 -S'yield(${1:Key}) $2' -p138098 -tp138099 -asS'CosPropertyService_PropertySet' -p138100 -(lp138101 -(S'code_change/3' -p138102 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p138103 -tp138104 -a(S'define_properties/2' -p138105 -S'define_properties(${1:OE_THIS}, ${2:Nproperties}) $3' -p138106 -tp138107 -a(S'define_properties/3' -p138108 -S'define_properties(${1:OE_THIS}, ${2:OE_Options}, ${3:Nproperties}) $4' -p138109 -tp138110 -a(S'define_property/3' -p138111 -S'define_property(${1:OE_THIS}, ${2:Property_name}, ${3:Property_value}) $4' -p138112 -tp138113 -a(S'define_property/4' -p138114 -S'define_property(${1:OE_THIS}, ${2:OE_Options}, ${3:Property_name}, ${4:Property_value}) $5' -p138115 -tp138116 -a(S'delete_all_properties/1' -p138117 -S'delete_all_properties(${1:OE_THIS}) $2' -p138118 -tp138119 -a(S'delete_all_properties/2' -p138120 -S'delete_all_properties(${1:OE_THIS}, ${2:OE_Options}) $3' -p138121 -tp138122 -a(S'delete_properties/2' -p138123 -S'delete_properties(${1:OE_THIS}, ${2:Property_names}) $3' -p138124 -tp138125 -a(S'delete_properties/3' -p138126 -S'delete_properties(${1:OE_THIS}, ${2:OE_Options}, ${3:Property_names}) $4' -p138127 -tp138128 -a(S'delete_property/2' -p138129 -S'delete_property(${1:OE_THIS}, ${2:Property_name}) $3' -p138130 -tp138131 -a(S'delete_property/3' -p138132 -S'delete_property(${1:OE_THIS}, ${2:OE_Options}, ${3:Property_name}) $4' -p138133 -tp138134 -a(S'get_all_properties/2' -p138135 -S'get_all_properties(${1:OE_THIS}, ${2:How_many}) $3' -p138136 -tp138137 -a(S'get_all_properties/3' -p138138 -S'get_all_properties(${1:OE_THIS}, ${2:OE_Options}, ${3:How_many}) $4' -p138139 -tp138140 -a(S'get_all_property_names/2' -p138141 -S'get_all_property_names(${1:OE_THIS}, ${2:How_many}) $3' -p138142 -tp138143 -a(S'get_all_property_names/3' -p138144 -S'get_all_property_names(${1:OE_THIS}, ${2:OE_Options}, ${3:How_many}) $4' -p138145 -tp138146 -a(S'get_number_of_properties/1' -p138147 -S'get_number_of_properties(${1:OE_THIS}) $2' -p138148 -tp138149 -a(S'get_number_of_properties/2' -p138150 -S'get_number_of_properties(${1:OE_THIS}, ${2:OE_Options}) $3' -p138151 -tp138152 -a(S'get_properties/2' -p138153 -S'get_properties(${1:OE_THIS}, ${2:Property_names}) $3' -p138154 -tp138155 -a(S'get_properties/3' -p138156 -S'get_properties(${1:OE_THIS}, ${2:OE_Options}, ${3:Property_names}) $4' -p138157 -tp138158 -a(S'get_property_value/2' -p138159 -S'get_property_value(${1:OE_THIS}, ${2:Property_name}) $3' -p138160 -tp138161 -a(S'get_property_value/3' -p138162 -S'get_property_value(${1:OE_THIS}, ${2:OE_Options}, ${3:Property_name}) $4' -p138163 -tp138164 -a(S'handle_call/3' -p138165 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p138166 -tp138167 -a(S'handle_cast/2' -p138168 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p138169 -tp138170 -a(S'handle_info/2' -p138171 -S'handle_info(${1:Param1}, ${2:State}) $3' -p138172 -tp138173 -a(S'init/1' -p138174 -S'init(${1:Env}) $2' -p138175 -tp138176 -a(S'is_property_defined/2' -p138177 -S'is_property_defined(${1:OE_THIS}, ${2:Property_name}) $3' -p138178 -tp138179 -a(S'is_property_defined/3' -p138180 -S'is_property_defined(${1:OE_THIS}, ${2:OE_Options}, ${3:Property_name}) $4' -p138181 -tp138182 -a(S'oe_create/0' -p138183 -S'oe_create() $1' -p138184 -tp138185 -a(S'oe_create/1' -p138186 -S'oe_create(${1:Env}) $2' -p138187 -tp138188 -a(S'oe_create/2' -p138189 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p138190 -tp138191 -a(S'oe_create_link/0' -p138192 -S'oe_create_link() $1' -p138193 -tp138194 -a(S'oe_create_link/1' -p138195 -S'oe_create_link(${1:Env}) $2' -p138196 -tp138197 -a(S'oe_create_link/2' -p138198 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p138199 -tp138200 -a(S'oe_get_interface/0' -p138201 -S'oe_get_interface() $1' -p138202 -tp138203 -a(S'oe_is_a/1' -p138204 -S'oe_is_a(${1:Param1}) $2' -p138205 -tp138206 -a(S'oe_tc/1' -p138207 -S'oe_tc(${1:Param1}) $2' -p138208 -tp138209 -a(S'terminate/2' -p138210 -S'terminate(${1:Reason}, ${2:State}) $3' -p138211 -tp138212 -a(S'typeID/0' -p138213 -S'typeID() $1' -p138214 -tp138215 -asS'ct' -p138216 -(lp138217 -(S'abort_current_testcase/1' -p138218 -S'abort_current_testcase(${1:Reason}) $2' -p138219 -tp138220 -a(S'add_config/2' -p138221 -S'add_config(${1:Callback}, ${2:Config}) $3' -p138222 -tp138223 -a(S'capture_get/0' -p138224 -S'capture_get() $1' -p138225 -tp138226 -a(S'capture_get/1' -p138227 -S'capture_get(${1:Param1}) $2' -p138228 -tp138229 -a(S'capture_start/0' -p138230 -S'capture_start() $1' -p138231 -tp138232 -a(S'capture_stop/0' -p138233 -S'capture_stop() $1' -p138234 -tp138235 -a(S'comment/1' -p138236 -S'comment(${1:Comment}) $2' -p138237 -tp138238 -a(S'comment/2' -p138239 -S'comment(${1:Format}, ${2:Args}) $3' -p138240 -tp138241 -a(S'decrypt_config_file/2' -p138242 -S'decrypt_config_file(${1:EncryptFileName}, ${2:TargetFileName}) $3' -p138243 -tp138244 -a(S'decrypt_config_file/3' -p138245 -S'decrypt_config_file(${1:EncryptFileName}, ${2:TargetFileName}, ${3:KeyOrFile}) $4' -p138246 -tp138247 -a(S'encrypt_config_file/2' -p138248 -S'encrypt_config_file(${1:SrcFileName}, ${2:EncryptFileName}) $3' -p138249 -tp138250 -a(S'encrypt_config_file/3' -p138251 -S'encrypt_config_file(${1:SrcFileName}, ${2:EncryptFileName}, ${3:KeyOrFile}) $4' -p138252 -tp138253 -a(S'fail/1' -p138254 -S'fail(${1:Reason}) $2' -p138255 -tp138256 -a(S'fail/2' -p138257 -S'fail(${1:Format}, ${2:Args}) $3' -p138258 -tp138259 -a(S'get_config/1' -p138260 -S'get_config(${1:Required}) $2' -p138261 -tp138262 -a(S'get_config/2' -p138263 -S'get_config(${1:Required}, ${2:Default}) $3' -p138264 -tp138265 -a(S'get_config/3' -p138266 -S'get_config(${1:Required}, ${2:Default}, ${3:Opts}) $4' -p138267 -tp138268 -a(S'get_status/0' -p138269 -S'get_status() $1' -p138270 -tp138271 -a(S'get_target_name/1' -p138272 -S'get_target_name(${1:Handle}) $2' -p138273 -tp138274 -a(S'get_timetrap_info/0' -p138275 -S'get_timetrap_info() $1' -p138276 -tp138277 -a(S'install/1' -p138278 -S'install(${1:Opts}) $2' -p138279 -tp138280 -a(S'listenv/1' -p138281 -S'listenv(${1:Telnet}) $2' -p138282 -tp138283 -a(S'log/1' -p138284 -S'log(${1:Format}) $2' -p138285 -tp138286 -a(S'log/2' -p138287 -S'log(${1:X1}, ${2:X2}) $3' -p138288 -tp138289 -a(S'log/3' -p138290 -S'log(${1:Category}, ${2:Format}, ${3:Args}) $4' -p138291 -tp138292 -a(S'make_priv_dir/0' -p138293 -S'make_priv_dir() $1' -p138294 -tp138295 -a(S'pal/1' -p138296 -S'pal(${1:Format}) $2' -p138297 -tp138298 -a(S'pal/2' -p138299 -S'pal(${1:X1}, ${2:X2}) $3' -p138300 -tp138301 -a(S'pal/3' -p138302 -S'pal(${1:Category}, ${2:Format}, ${3:Args}) $4' -p138303 -tp138304 -a(S'parse_table/1' -p138305 -S'parse_table(${1:Data}) $2' -p138306 -tp138307 -a(S'print/1' -p138308 -S'print(${1:Format}) $2' -p138309 -tp138310 -a(S'print/2' -p138311 -S'print(${1:X1}, ${2:X2}) $3' -p138312 -tp138313 -a(S'print/3' -p138314 -S'print(${1:Category}, ${2:Format}, ${3:Args}) $4' -p138315 -tp138316 -a(S'reload_config/1' -p138317 -S'reload_config(${1:Required}) $2' -p138318 -tp138319 -a(S'remove_config/2' -p138320 -S'remove_config(${1:Callback}, ${2:Config}) $3' -p138321 -tp138322 -a(S'require/1' -p138323 -S'require(${1:Required}) $2' -p138324 -tp138325 -a(S'require/2' -p138326 -S'require(${1:Name}, ${2:Required}) $3' -p138327 -tp138328 -a(S'run/1' -p138329 -S'run(${1:TestDirs}) $2' -p138330 -tp138331 -a(S'run/2' -p138332 -S'run(${1:TestDir}, ${2:Suite}) $3' -p138333 -tp138334 -a(S'run/3' -p138335 -S'run(${1:TestDir}, ${2:Suite}, ${3:Cases}) $4' -p138336 -tp138337 -a(S'run_test/1' -p138338 -S'run_test(${1:Opts}) $2' -p138339 -tp138340 -a(S'run_testspec/1' -p138341 -S'run_testspec(${1:TestSpec}) $2' -p138342 -tp138343 -a(S'sleep/1' -p138344 -S'sleep(${1:Time}) $2' -p138345 -tp138346 -a(S'start_interactive/0' -p138347 -S'start_interactive() $1' -p138348 -tp138349 -a(S'step/3' -p138350 -S'step(${1:TestDir}, ${2:Suite}, ${3:Case}) $4' -p138351 -tp138352 -a(S'step/4' -p138353 -S'step(${1:TestDir}, ${2:Suite}, ${3:Case}, ${4:Opts}) $5' -p138354 -tp138355 -a(S'stop_interactive/0' -p138356 -S'stop_interactive() $1' -p138357 -tp138358 -a(S'testcases/2' -p138359 -S'testcases(${1:TestDir}, ${2:Suite}) $3' -p138360 -tp138361 -a(S'timetrap/1' -p138362 -S'timetrap(${1:Time}) $2' -p138363 -tp138364 -a(S'userdata/2' -p138365 -S'userdata(${1:TestDir}, ${2:Suite}) $3' -p138366 -tp138367 -a(S'userdata/3' -p138368 -S'userdata(${1:TestDir}, ${2:Suite}, ${3:Case}) $4' -p138369 -tp138370 -asS'otp_internal' -p138371 -(lp138372 -(S'obsolete/3' -p138373 -S'obsolete(${1:Module}, ${2:Name}, ${3:Arity}) $4' -p138374 -tp138375 -asS'CosEventComm_PushConsumer' -p138376 -(lp138377 -(S'code_change/3' -p138378 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p138379 -tp138380 -a(S'disconnect_push_consumer/1' -p138381 -S'disconnect_push_consumer(${1:OE_THIS}) $2' -p138382 -tp138383 -a(S'disconnect_push_consumer/2' -p138384 -S'disconnect_push_consumer(${1:OE_THIS}, ${2:OE_Options}) $3' -p138385 -tp138386 -a(S'handle_call/3' -p138387 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p138388 -tp138389 -a(S'handle_cast/2' -p138390 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p138391 -tp138392 -a(S'handle_info/2' -p138393 -S'handle_info(${1:Param1}, ${2:State}) $3' -p138394 -tp138395 -a(S'init/1' -p138396 -S'init(${1:Env}) $2' -p138397 -tp138398 -a(S'oe_create/0' -p138399 -S'oe_create() $1' -p138400 -tp138401 -a(S'oe_create/1' -p138402 -S'oe_create(${1:Env}) $2' -p138403 -tp138404 -a(S'oe_create/2' -p138405 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p138406 -tp138407 -a(S'oe_create_link/0' -p138408 -S'oe_create_link() $1' -p138409 -tp138410 -a(S'oe_create_link/1' -p138411 -S'oe_create_link(${1:Env}) $2' -p138412 -tp138413 -a(S'oe_create_link/2' -p138414 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p138415 -tp138416 -a(S'oe_get_interface/0' -p138417 -S'oe_get_interface() $1' -p138418 -tp138419 -a(S'oe_is_a/1' -p138420 -S'oe_is_a(${1:Param1}) $2' -p138421 -tp138422 -a(S'oe_tc/1' -p138423 -S'oe_tc(${1:Param1}) $2' -p138424 -tp138425 -a(S'push/2' -p138426 -S'push(${1:OE_THIS}, ${2:Data}) $3' -p138427 -tp138428 -a(S'push/3' -p138429 -S'push(${1:OE_THIS}, ${2:OE_Options}, ${3:Data}) $4' -p138430 -tp138431 -a(S'terminate/2' -p138432 -S'terminate(${1:Reason}, ${2:State}) $3' -p138433 -tp138434 -a(S'typeID/0' -p138435 -S'typeID() $1' -p138436 -tp138437 -asS'client_server' -p138438 -(lp138439 -(S'init_connect/1' -p138440 -S'init_connect(${1:Param1}) $2' -p138441 -tp138442 -a(S'start/0' -p138443 -S'start() $1' -p138444 -tp138445 -a(S'start/1' -p138446 -S'start(${1:CertOpts}) $2' -p138447 -tp138448 -asS'wx' -p138449 -(lp138450 -(S'batch/1' -p138451 -S'batch(${1:Fun}) $2' -p138452 -tp138453 -a(S'create_memory/1' -p138454 -S'create_memory(${1:Size}) $2' -p138455 -tp138456 -a(S'debug/1' -p138457 -S'debug(${1:List}) $2' -p138458 -tp138459 -a(S'demo/0' -p138460 -S'demo() $1' -p138461 -tp138462 -a(S'destroy/0' -p138463 -S'destroy() $1' -p138464 -tp138465 -a(S'foldl/3' -p138466 -S'foldl(${1:Fun}, ${2:Acc}, ${3:List}) $4' -p138467 -tp138468 -a(S'foldr/3' -p138469 -S'foldr(${1:Fun}, ${2:Acc}, ${3:List}) $4' -p138470 -tp138471 -a(S'foreach/2' -p138472 -S'foreach(${1:Fun}, ${2:List}) $3' -p138473 -tp138474 -a(S'getObjectType/1' -p138475 -S'getObjectType(${1:Param1}) $2' -p138476 -tp138477 -a(S'get_env/0' -p138478 -S'get_env() $1' -p138479 -tp138480 -a(S'get_memory_bin/1' -p138481 -S'get_memory_bin(${1:Param1}) $2' -p138482 -tp138483 -a(S'is_null/1' -p138484 -S'is_null(${1:Param1}) $2' -p138485 -tp138486 -a(S'map/2' -p138487 -S'map(${1:Fun}, ${2:List}) $3' -p138488 -tp138489 -a(S'new/0' -p138490 -S'new() $1' -p138491 -tp138492 -a(S'new/1' -p138493 -S'new(${1:Options}) $2' -p138494 -tp138495 -a(S'null/0' -p138496 -S'null() $1' -p138497 -tp138498 -a(S'parent_class/1' -p138499 -S'parent_class(${1:Param1}) $2' -p138500 -tp138501 -a(S'release_memory/1' -p138502 -S'release_memory(${1:Bin}) $2' -p138503 -tp138504 -a(S'retain_memory/1' -p138505 -S'retain_memory(${1:Bin}) $2' -p138506 -tp138507 -a(S'set_env/1' -p138508 -S'set_env(${1:Env}) $2' -p138509 -tp138510 -a(S'typeCast/2' -p138511 -S'typeCast(${1:Param1}, ${2:NewType}) $3' -p138512 -tp138513 -asS'dialyzer_dep' -p138514 -(lp138515 -(S'analyze/1' -p138516 -S'analyze(${1:Tree}) $2' -p138517 -tp138518 -a(S'test/1' -p138519 -S'test(${1:Mod}) $2' -p138520 -tp138521 -asS'percept_profile' -p138522 -(lp138523 -(S'start/1' -p138524 -S'start(${1:Filename}) $2' -p138525 -tp138526 -a(S'start/2' -p138527 -S'start(${1:Filename}, ${2:Options}) $3' -p138528 -tp138529 -a(S'start/3' -p138530 -S'start(${1:Filename}, ${2:Param2}, ${3:Options}) $4' -p138531 -tp138532 -a(S'stop/0' -p138533 -S'stop() $1' -p138534 -tp138535 -asS'tftp_lib' -p138536 -(lp138537 -(S'add_default_callbacks/1' -p138538 -S'add_default_callbacks(${1:Callbacks}) $2' -p138539 -tp138540 -a(S'decode_msg/1' -p138541 -S'decode_msg(${1:Bin}) $2' -p138542 -tp138543 -a(S'encode_msg/1' -p138544 -S'encode_msg(${1:Param1}) $2' -p138545 -tp138546 -a(S'host_to_string/1' -p138547 -S'host_to_string(${1:Host}) $2' -p138548 -tp138549 -a(S'parse_config/1' -p138550 -S'parse_config(${1:Options}) $2' -p138551 -tp138552 -a(S'parse_config/2' -p138553 -S'parse_config(${1:Options}, ${2:Config}) $3' -p138554 -tp138555 -a(S'replace_val/3' -p138556 -S'replace_val(${1:Key}, ${2:Val}, ${3:List}) $4' -p138557 -tp138558 -a(S'to_lower/1' -p138559 -S'to_lower(${1:Chars}) $2' -p138560 -tp138561 -asS'mod_actions' -p138562 -(lp138563 -(S'do/1' -p138564 -S'do(${1:Info}) $2' -p138565 -tp138566 -a(S'load/2' -p138567 -S'load(${1:Param1}, ${2:Param2}) $3' -p138568 -tp138569 -a(S'store/2' -p138570 -S'store(${1:Param1}, ${2:Param2}) $3' -p138571 -tp138572 -asS'mod_cgi' -p138573 -(lp138574 -(S'do/1' -p138575 -S'do(${1:ModData}) $2' -p138576 -tp138577 -a(S'env/3' -p138578 -S'env(${1:ModData}, ${2:Param2}, ${3:AfterScript}) $4' -p138579 -tp138580 -a(S'load/2' -p138581 -S'load(${1:Param1}, ${2:Param2}) $3' -p138582 -tp138583 -a(S'store/2' -p138584 -S'store(${1:Param1}, ${2:Param2}) $3' -p138585 -tp138586 -asS'ttb_autostart' -p138587 -(lp138588 -(S'code_change/3' -p138589 -S'code_change(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p138590 -tp138591 -a(S'delete_config/0' -p138592 -S'delete_config() $1' -p138593 -tp138594 -a(S'handle_call/3' -p138595 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p138596 -tp138597 -a(S'handle_cast/2' -p138598 -S'handle_cast(${1:Param1}, ${2:Param2}) $3' -p138599 -tp138600 -a(S'handle_info/2' -p138601 -S'handle_info(${1:Param1}, ${2:Param2}) $3' -p138602 -tp138603 -a(S'init/1' -p138604 -S'init(${1:Param1}) $2' -p138605 -tp138606 -a(S'read_config/0' -p138607 -S'read_config() $1' -p138608 -tp138609 -a(S'start_link/0' -p138610 -S'start_link() $1' -p138611 -tp138612 -a(S'terminate/2' -p138613 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p138614 -tp138615 -a(S'write_config/1' -p138616 -S'write_config(${1:Data}) $2' -p138617 -tp138618 -asS'observer_tv_table' -p138619 -(lp138620 -(S'code_change/3' -p138621 -S'code_change(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p138622 -tp138623 -a(S'handle_call/3' -p138624 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p138625 -tp138626 -a(S'handle_cast/2' -p138627 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p138628 -tp138629 -a(S'handle_event/2' -p138630 -S'handle_event(${1:Param1}, ${2:State}) $3' -p138631 -tp138632 -a(S'handle_info/2' -p138633 -S'handle_info(${1:Param1}, ${2:State}) $3' -p138634 -tp138635 -a(S'handle_sync_event/3' -p138636 -S'handle_sync_event(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p138637 -tp138638 -a(S'init/1' -p138639 -S'init(${1:Param1}) $2' -p138640 -tp138641 -a(S'start_link/2' -p138642 -S'start_link(${1:Parent}, ${2:Opts}) $3' -p138643 -tp138644 -a(S'terminate/2' -p138645 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p138646 -tp138647 -asS'dbg_iserver' -p138648 -(lp138649 -(S'call/1' -p138650 -S'call(${1:Request}) $2' -p138651 -tp138652 -a(S'call/2' -p138653 -S'call(${1:Int}, ${2:Request}) $3' -p138654 -tp138655 -a(S'cast/1' -p138656 -S'cast(${1:Request}) $2' -p138657 -tp138658 -a(S'cast/2' -p138659 -S'cast(${1:Int}, ${2:Request}) $3' -p138660 -tp138661 -a(S'code_change/3' -p138662 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p138663 -tp138664 -a(S'find/0' -p138665 -S'find() $1' -p138666 -tp138667 -a(S'handle_call/3' -p138668 -S'handle_call(${1:Param1}, ${2:From}, ${3:State}) $4' -p138669 -tp138670 -a(S'handle_cast/2' -p138671 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p138672 -tp138673 -a(S'handle_info/2' -p138674 -S'handle_info(${1:Param1}, ${2:State}) $3' -p138675 -tp138676 -a(S'init/1' -p138677 -S'init(${1:Param1}) $2' -p138678 -tp138679 -a(S'safe_call/1' -p138680 -S'safe_call(${1:Request}) $2' -p138681 -tp138682 -a(S'safe_cast/1' -p138683 -S'safe_cast(${1:Request}) $2' -p138684 -tp138685 -a(S'start/0' -p138686 -S'start() $1' -p138687 -tp138688 -a(S'stop/0' -p138689 -S'stop() $1' -p138690 -tp138691 -a(S'terminate/2' -p138692 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p138693 -tp138694 -asS'CosNotifyFilter_MappingConstraintPair' -p138695 -(lp138696 -(S'id/0' -p138697 -S'id() $1' -p138698 -tp138699 -a(S'name/0' -p138700 -S'name() $1' -p138701 -tp138702 -a(S'tc/0' -p138703 -S'tc() $1' -p138704 -tp138705 -asS'wxMouseCaptureChangedEvent' -p138706 -(lp138707 -(S'getCapturedWindow/1' -p138708 -S'getCapturedWindow(${1:This}) $2' -p138709 -tp138710 -a(S'getId/1' -p138711 -S'getId(${1:This}) $2' -p138712 -tp138713 -a(S'getSkipped/1' -p138714 -S'getSkipped(${1:This}) $2' -p138715 -tp138716 -a(S'getTimestamp/1' -p138717 -S'getTimestamp(${1:This}) $2' -p138718 -tp138719 -a(S'isCommandEvent/1' -p138720 -S'isCommandEvent(${1:This}) $2' -p138721 -tp138722 -a(S'parent_class/1' -p138723 -S'parent_class(${1:Param1}) $2' -p138724 -tp138725 -a(S'resumePropagation/2' -p138726 -S'resumePropagation(${1:This}, ${2:PropagationLevel}) $3' -p138727 -tp138728 -a(S'shouldPropagate/1' -p138729 -S'shouldPropagate(${1:This}) $2' -p138730 -tp138731 -a(S'skip/1' -p138732 -S'skip(${1:This}) $2' -p138733 -tp138734 -a(S'skip/2' -p138735 -S'skip(${1:This}, ${2:Options}) $3' -p138736 -tp138737 -a(S'stopPropagation/1' -p138738 -S'stopPropagation(${1:This}) $2' -p138739 -tp138740 -asS'core_lint' -p138741 -(lp138742 -(S'format_error/1' -p138743 -S'format_error(${1:Param1}) $2' -p138744 -tp138745 -a(S'module/1' -p138746 -S'module(${1:M}) $2' -p138747 -tp138748 -a(S'module/2' -p138749 -S'module(${1:Param1}, ${2:Param2}) $3' -p138750 -tp138751 -asS'ct_telnet' -p138752 -(lp138753 -(S'close/1' -p138754 -S'close(${1:Connection}) $2' -p138755 -tp138756 -a(S'cmd/2' -p138757 -S'cmd(${1:Connection}, ${2:Cmd}) $3' -p138758 -tp138759 -a(S'cmd/3' -p138760 -S'cmd(${1:Connection}, ${2:Cmd}, ${3:Timeout}) $4' -p138761 -tp138762 -a(S'cmdf/3' -p138763 -S'cmdf(${1:Connection}, ${2:CmdFormat}, ${3:Args}) $4' -p138764 -tp138765 -a(S'cmdf/4' -p138766 -S'cmdf(${1:Connection}, ${2:CmdFormat}, ${3:Args}, ${4:Timeout}) $5' -p138767 -tp138768 -a(S'cont_log/2' -p138769 -S'cont_log(${1:Str}, ${2:Args}) $3' -p138770 -tp138771 -a(S'end_log/0' -p138772 -S'end_log() $1' -p138773 -tp138774 -a(S'expect/2' -p138775 -S'expect(${1:Connection}, ${2:Patterns}) $3' -p138776 -tp138777 -a(S'expect/3' -p138778 -S'expect(${1:Connection}, ${2:Patterns}, ${3:Opts}) $4' -p138779 -tp138780 -a(S'get_data/1' -p138781 -S'get_data(${1:Connection}) $2' -p138782 -tp138783 -a(S'handle_msg/2' -p138784 -S'handle_msg(${1:Param1}, ${2:State}) $3' -p138785 -tp138786 -a(S'init/3' -p138787 -S'init() $1' -p138788 -tp138789 -a(S'log/3' -p138790 -S'log(${1:Heading}, ${2:Str}, ${3:Args}) $4' -p138791 -tp138792 -a(S'open/1' -p138793 -S'open(${1:Name}) $2' -p138794 -tp138795 -a(S'open/2' -p138796 -S'open(${1:Name}, ${2:ConnType}) $3' -p138797 -tp138798 -a(S'open/3' -p138799 -S'open(${1:KeyOrName}, ${2:ConnType}, ${3:TargetMod}) $4' -p138800 -tp138801 -a(S'open/4' -p138802 -S'open(${1:KeyOrName}, ${2:ConnType}, ${3:TargetMod}, ${4:Extra}) $5' -p138803 -tp138804 -a(S'reconnect/2' -p138805 -S'reconnect(${1:Param1}, ${2:State}) $3' -p138806 -tp138807 -a(S'send/2' -p138808 -S'send(${1:Connection}, ${2:Cmd}) $3' -p138809 -tp138810 -a(S'sendf/3' -p138811 -S'sendf(${1:Connection}, ${2:CmdFormat}, ${3:Args}) $4' -p138812 -tp138813 -a(S'silent_teln_expect/5' -p138814 -S'silent_teln_expect(${1:Pid}, ${2:Data}, ${3:Pattern}, ${4:Prx}, ${5:Opts}) $6' -p138815 -tp138816 -a(S'start_log/1' -p138817 -S'start_log(${1:Heading}) $2' -p138818 -tp138819 -a(S'teln_receive_until_prompt/3' -p138820 -S'teln_receive_until_prompt(${1:Pid}, ${2:Prx}, ${3:Timeout}) $4' -p138821 -tp138822 -a(S'terminate/2' -p138823 -S'terminate(${1:TelnPid}, ${2:State}) $3' -p138824 -tp138825 -a(S'try_cont_log/2' -p138826 -S'try_cont_log(${1:Str}, ${2:Args}) $3' -p138827 -tp138828 -a(S'try_end_log/0' -p138829 -S'try_end_log() $1' -p138830 -tp138831 -a(S'try_log/3' -p138832 -S'try_log(${1:Heading}, ${2:Str}, ${3:Args}) $4' -p138833 -tp138834 -a(S'try_start_log/1' -p138835 -S'try_start_log(${1:Heading}) $2' -p138836 -tp138837 -asS'orber_iiop_inrequest' -p138838 -(lp138839 -(S'fragment_collector/8' -p138840 -S'fragment_collector(${1:GIOPHdr}, ${2:Message}, ${3:Type}, ${4:Socket}, ${5:ReqId}, ${6:Proxy}, ${7:MaxFrags}, ${8:Env}) $9' -p138841 -tp138842 -a(S'handle_message/5' -p138843 -S'handle_message(${1:GIOPHdr}, ${2:Message}, ${3:SocketType}, ${4:Socket}, ${5:Env}) $6' -p138844 -tp138845 -a(S'start/5' -p138846 -S'start(${1:GIOPHdr}, ${2:Message}, ${3:Type}, ${4:Socket}, ${5:Env}) $6' -p138847 -tp138848 -a(S'start_fragment_collector/8' -p138849 -S'start_fragment_collector(${1:GIOPHdr}, ${2:Message}, ${3:Type}, ${4:Socket}, ${5:ReqId}, ${6:Proxy}, ${7:MaxFrags}, ${8:Env}) $9' -p138850 -tp138851 -asS'erts_alloc_config' -p138852 -(lp138853 -(S'make_config/0' -p138854 -S'make_config() $1' -p138855 -tp138856 -a(S'make_config/1' -p138857 -S'make_config(${1:FileName}) $2' -p138858 -tp138859 -a(S'save_scenario/0' -p138860 -S'save_scenario() $1' -p138861 -tp138862 -a(S'state/0' -p138863 -S'state() $1' -p138864 -tp138865 -a(S'stop/0' -p138866 -S'stop() $1' -p138867 -tp138868 -asS'http_util' -p138869 -(lp138870 -(S'convert_month/1' -p138871 -S'convert_month(${1:Param1}) $2' -p138872 -tp138873 -a(S'convert_netscapecookie_date/1' -p138874 -S'convert_netscapecookie_date() $1' -p138875 -tp138876 -a(S'hexlist_to_integer/1' -p138877 -S'hexlist_to_integer(${1:Size}) $2' -p138878 -tp138879 -a(S'html_encode/1' -p138880 -S'html_encode(${1:Chars}) $2' -p138881 -tp138882 -a(S'integer_to_hexlist/1' -p138883 -S'integer_to_hexlist(${1:Num}) $2' -p138884 -tp138885 -a(S'is_hostname/1' -p138886 -S'is_hostname(${1:Dest}) $2' -p138887 -tp138888 -a(S'timeout/2' -p138889 -S'timeout(${1:Timeout}, ${2:Started}) $3' -p138890 -tp138891 -a(S'timestamp/0' -p138892 -S'timestamp() $1' -p138893 -tp138894 -a(S'to_lower/1' -p138895 -S'to_lower(${1:Str}) $2' -p138896 -tp138897 -a(S'to_upper/1' -p138898 -S'to_upper(${1:Str}) $2' -p138899 -tp138900 -asS'application_controller' -p138901 -(lp138902 -(S'change_application_data/2' -p138903 -S'change_application_data(${1:Applications}, ${2:Config}) $3' -p138904 -tp138905 -a(S'code_change/3' -p138906 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p138907 -tp138908 -a(S'config_change/1' -p138909 -S'config_change(${1:EnvPrev}) $2' -p138910 -tp138911 -a(S'control_application/1' -p138912 -S'control_application(${1:AppName}) $2' -p138913 -tp138914 -a(S'do_config_diff/2' -p138915 -S'do_config_diff(${1:AppEnvNow}, ${2:AppEnvBefore}) $3' -p138916 -tp138917 -a(S'get_all_env/1' -p138918 -S'get_all_env(${1:AppName}) $2' -p138919 -tp138920 -a(S'get_all_key/1' -p138921 -S'get_all_key(${1:AppName}) $2' -p138922 -tp138923 -a(S'get_application/1' -p138924 -S'get_application(${1:Master}) $2' -p138925 -tp138926 -a(S'get_application_module/1' -p138927 -S'get_application_module(${1:Module}) $2' -p138928 -tp138929 -a(S'get_env/2' -p138930 -S'get_env(${1:AppName}, ${2:Key}) $3' -p138931 -tp138932 -a(S'get_key/2' -p138933 -S'get_key(${1:AppName}, ${2:Key}) $3' -p138934 -tp138935 -a(S'get_loaded/1' -p138936 -S'get_loaded(${1:App}) $2' -p138937 -tp138938 -a(S'get_master/1' -p138939 -S'get_master(${1:AppName}) $2' -p138940 -tp138941 -a(S'get_pid_all_env/1' -p138942 -S'get_pid_all_env(${1:Master}) $2' -p138943 -tp138944 -a(S'get_pid_all_key/1' -p138945 -S'get_pid_all_key(${1:Master}) $2' -p138946 -tp138947 -a(S'get_pid_env/2' -p138948 -S'get_pid_env(${1:Master}, ${2:Key}) $3' -p138949 -tp138950 -a(S'get_pid_key/2' -p138951 -S'get_pid_key(${1:Master}, ${2:Key}) $3' -p138952 -tp138953 -a(S'handle_call/3' -p138954 -S'handle_call(${1:Param1}, ${2:From}, ${3:S}) $4' -p138955 -tp138956 -a(S'handle_cast/2' -p138957 -S'handle_cast(${1:Param1}, ${2:S}) $3' -p138958 -tp138959 -a(S'handle_info/2' -p138960 -S'handle_info(${1:Param1}, ${2:S}) $3' -p138961 -tp138962 -a(S'info/0' -p138963 -S'info() $1' -p138964 -tp138965 -a(S'init_starter/4' -p138966 -S'init_starter(${1:Param1}, ${2:Appl}, ${3:S}, ${4:Type}) $5' -p138967 -tp138968 -a(S'load_application/1' -p138969 -S'load_application(${1:Application}) $2' -p138970 -tp138971 -a(S'loaded_applications/0' -p138972 -S'loaded_applications() $1' -p138973 -tp138974 -a(S'permit_application/2' -p138975 -S'permit_application(${1:ApplName}, ${2:Flag}) $3' -p138976 -tp138977 -a(S'prep_config_change/0' -p138978 -S'prep_config_change() $1' -p138979 -tp138980 -a(S'set_env/3' -p138981 -S'set_env(${1:AppName}, ${2:Key}, ${3:Val}) $4' -p138982 -tp138983 -a(S'set_env/4' -p138984 -S'set_env(${1:AppName}, ${2:Key}, ${3:Val}, ${4:Timeout}) $5' -p138985 -tp138986 -a(S'start/1' -p138987 -S'start(${1:KernelApp}) $2' -p138988 -tp138989 -a(S'start_application/2' -p138990 -S'start_application(${1:AppName}, ${2:RestartType}) $3' -p138991 -tp138992 -a(S'start_boot_application/2' -p138993 -S'start_boot_application(${1:Application}, ${2:RestartType}) $3' -p138994 -tp138995 -a(S'start_type/1' -p138996 -S'start_type(${1:Master}) $2' -p138997 -tp138998 -a(S'stop_application/1' -p138999 -S'stop_application(${1:AppName}) $2' -p139000 -tp139001 -a(S'terminate/2' -p139002 -S'terminate(${1:Reason}, ${2:S}) $3' -p139003 -tp139004 -a(S'test_change_apps/2' -p139005 -S'test_change_apps(${1:Apps}, ${2:Conf}) $3' -p139006 -tp139007 -a(S'unload_application/1' -p139008 -S'unload_application(${1:AppName}) $2' -p139009 -tp139010 -a(S'unset_env/2' -p139011 -S'unset_env(${1:AppName}, ${2:Key}) $3' -p139012 -tp139013 -a(S'unset_env/3' -p139014 -S'unset_env(${1:AppName}, ${2:Key}, ${3:Timeout}) $4' -p139015 -tp139016 -a(S'which_applications/0' -p139017 -S'which_applications() $1' -p139018 -tp139019 -a(S'which_applications/1' -p139020 -S'which_applications(${1:Timeout}) $2' -p139021 -tp139022 -asS'asn1ct_value' -p139023 -(lp139024 -(S'from_type/2' -p139025 -S'from_type(${1:M}, ${2:Typename}) $3' -p139026 -tp139027 -asS'sasl_report_tty_h' -p139028 -(lp139029 -(S'handle_call/2' -p139030 -S'handle_call(${1:Param1}, ${2:Param2}) $3' -p139031 -tp139032 -a(S'handle_event/2' -p139033 -S'handle_event(${1:Event}, ${2:Type}) $3' -p139034 -tp139035 -a(S'handle_info/2' -p139036 -S'handle_info(${1:Param1}, ${2:Type}) $3' -p139037 -tp139038 -a(S'init/1' -p139039 -S'init(${1:Type}) $2' -p139040 -tp139041 -a(S'terminate/2' -p139042 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p139043 -tp139044 -asS'wxPrintDialog' -p139045 -(lp139046 -(S'cacheBestSize/2' -p139047 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p139048 -tp139049 -a(S'captureMouse/1' -p139050 -S'captureMouse(${1:This}) $2' -p139051 -tp139052 -a(S'center/1' -p139053 -S'center(${1:This}) $2' -p139054 -tp139055 -a(S'center/2' -p139056 -S'center(${1:This}, ${2:Options}) $3' -p139057 -tp139058 -a(S'centerOnParent/1' -p139059 -S'centerOnParent(${1:This}) $2' -p139060 -tp139061 -a(S'centerOnParent/2' -p139062 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p139063 -tp139064 -a(S'centerOnScreen/1' -p139065 -S'centerOnScreen(${1:This}) $2' -p139066 -tp139067 -a(S'centerOnScreen/2' -p139068 -S'centerOnScreen(${1:This}, ${2:Options}) $3' -p139069 -tp139070 -a(S'centre/1' -p139071 -S'centre(${1:This}) $2' -p139072 -tp139073 -a(S'centre/2' -p139074 -S'centre(${1:This}, ${2:Options}) $3' -p139075 -tp139076 -a(S'centreOnParent/1' -p139077 -S'centreOnParent(${1:This}) $2' -p139078 -tp139079 -a(S'centreOnParent/2' -p139080 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p139081 -tp139082 -a(S'centreOnScreen/1' -p139083 -S'centreOnScreen(${1:This}) $2' -p139084 -tp139085 -a(S'centreOnScreen/2' -p139086 -S'centreOnScreen(${1:This}, ${2:Options}) $3' -p139087 -tp139088 -a(S'clearBackground/1' -p139089 -S'clearBackground(${1:This}) $2' -p139090 -tp139091 -a(S'clientToScreen/2' -p139092 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p139093 -tp139094 -a(S'clientToScreen/3' -p139095 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p139096 -tp139097 -a(S'close/1' -p139098 -S'close(${1:This}) $2' -p139099 -tp139100 -a(S'close/2' -p139101 -S'close(${1:This}, ${2:Options}) $3' -p139102 -tp139103 -a(S'connect/2' -p139104 -S'connect(${1:This}, ${2:EventType}) $3' -p139105 -tp139106 -a(S'connect/3' -p139107 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p139108 -tp139109 -a(S'convertDialogToPixels/2' -p139110 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p139111 -tp139112 -a(S'convertPixelsToDialog/2' -p139113 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p139114 -tp139115 -a(S'createButtonSizer/2' -p139116 -S'createButtonSizer(${1:This}, ${2:Flags}) $3' -p139117 -tp139118 -a(S'createStdDialogButtonSizer/2' -p139119 -S'createStdDialogButtonSizer(${1:This}, ${2:Flags}) $3' -p139120 -tp139121 -a(S'destroy/1' -p139122 -S'destroy(${1:This}) $2' -p139123 -tp139124 -a(S'destroyChildren/1' -p139125 -S'destroyChildren(${1:This}) $2' -p139126 -tp139127 -a(S'disable/1' -p139128 -S'disable(${1:This}) $2' -p139129 -tp139130 -a(S'disconnect/1' -p139131 -S'disconnect(${1:This}) $2' -p139132 -tp139133 -a(S'disconnect/2' -p139134 -S'disconnect(${1:This}, ${2:EventType}) $3' -p139135 -tp139136 -a(S'disconnect/3' -p139137 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p139138 -tp139139 -a(S'enable/1' -p139140 -S'enable(${1:This}) $2' -p139141 -tp139142 -a(S'enable/2' -p139143 -S'enable(${1:This}, ${2:Options}) $3' -p139144 -tp139145 -a(S'endModal/2' -p139146 -S'endModal(${1:This}, ${2:RetCode}) $3' -p139147 -tp139148 -a(S'findWindow/2' -p139149 -S'findWindow(${1:This}, ${2:Winid}) $3' -p139150 -tp139151 -a(S'fit/1' -p139152 -S'fit(${1:This}) $2' -p139153 -tp139154 -a(S'fitInside/1' -p139155 -S'fitInside(${1:This}) $2' -p139156 -tp139157 -a(S'freeze/1' -p139158 -S'freeze(${1:This}) $2' -p139159 -tp139160 -a(S'getAcceleratorTable/1' -p139161 -S'getAcceleratorTable(${1:This}) $2' -p139162 -tp139163 -a(S'getAffirmativeId/1' -p139164 -S'getAffirmativeId(${1:This}) $2' -p139165 -tp139166 -a(S'getBackgroundColour/1' -p139167 -S'getBackgroundColour(${1:This}) $2' -p139168 -tp139169 -a(S'getBackgroundStyle/1' -p139170 -S'getBackgroundStyle(${1:This}) $2' -p139171 -tp139172 -a(S'getBestSize/1' -p139173 -S'getBestSize(${1:This}) $2' -p139174 -tp139175 -a(S'getCaret/1' -p139176 -S'getCaret(${1:This}) $2' -p139177 -tp139178 -a(S'getCharHeight/1' -p139179 -S'getCharHeight(${1:This}) $2' -p139180 -tp139181 -a(S'getCharWidth/1' -p139182 -S'getCharWidth(${1:This}) $2' -p139183 -tp139184 -a(S'getChildren/1' -p139185 -S'getChildren(${1:This}) $2' -p139186 -tp139187 -a(S'getClientSize/1' -p139188 -S'getClientSize(${1:This}) $2' -p139189 -tp139190 -a(S'getContainingSizer/1' -p139191 -S'getContainingSizer(${1:This}) $2' -p139192 -tp139193 -a(S'getCursor/1' -p139194 -S'getCursor(${1:This}) $2' -p139195 -tp139196 -a(S'getDropTarget/1' -p139197 -S'getDropTarget(${1:This}) $2' -p139198 -tp139199 -a(S'getEventHandler/1' -p139200 -S'getEventHandler(${1:This}) $2' -p139201 -tp139202 -a(S'getExtraStyle/1' -p139203 -S'getExtraStyle(${1:This}) $2' -p139204 -tp139205 -a(S'getFont/1' -p139206 -S'getFont(${1:This}) $2' -p139207 -tp139208 -a(S'getForegroundColour/1' -p139209 -S'getForegroundColour(${1:This}) $2' -p139210 -tp139211 -a(S'getGrandParent/1' -p139212 -S'getGrandParent(${1:This}) $2' -p139213 -tp139214 -a(S'getHandle/1' -p139215 -S'getHandle(${1:This}) $2' -p139216 -tp139217 -a(S'getHelpText/1' -p139218 -S'getHelpText(${1:This}) $2' -p139219 -tp139220 -a(S'getIcon/1' -p139221 -S'getIcon(${1:This}) $2' -p139222 -tp139223 -a(S'getIcons/1' -p139224 -S'getIcons(${1:This}) $2' -p139225 -tp139226 -a(S'getId/1' -p139227 -S'getId(${1:This}) $2' -p139228 -tp139229 -a(S'getLabel/1' -p139230 -S'getLabel(${1:This}) $2' -p139231 -tp139232 -a(S'getMaxSize/1' -p139233 -S'getMaxSize(${1:This}) $2' -p139234 -tp139235 -a(S'getMinSize/1' -p139236 -S'getMinSize(${1:This}) $2' -p139237 -tp139238 -a(S'getName/1' -p139239 -S'getName(${1:This}) $2' -p139240 -tp139241 -a(S'getParent/1' -p139242 -S'getParent(${1:This}) $2' -p139243 -tp139244 -a(S'getPosition/1' -p139245 -S'getPosition(${1:This}) $2' -p139246 -tp139247 -a(S'getPrintDC/1' -p139248 -S'getPrintDC(${1:This}) $2' -p139249 -tp139250 -a(S'getPrintDialogData/1' -p139251 -S'getPrintDialogData(${1:This}) $2' -p139252 -tp139253 -a(S'getRect/1' -p139254 -S'getRect(${1:This}) $2' -p139255 -tp139256 -a(S'getReturnCode/1' -p139257 -S'getReturnCode(${1:This}) $2' -p139258 -tp139259 -a(S'getScreenPosition/1' -p139260 -S'getScreenPosition(${1:This}) $2' -p139261 -tp139262 -a(S'getScreenRect/1' -p139263 -S'getScreenRect(${1:This}) $2' -p139264 -tp139265 -a(S'getScrollPos/2' -p139266 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p139267 -tp139268 -a(S'getScrollRange/2' -p139269 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p139270 -tp139271 -a(S'getScrollThumb/2' -p139272 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p139273 -tp139274 -a(S'getSize/1' -p139275 -S'getSize(${1:This}) $2' -p139276 -tp139277 -a(S'getSizer/1' -p139278 -S'getSizer(${1:This}) $2' -p139279 -tp139280 -a(S'getTextExtent/2' -p139281 -S'getTextExtent(${1:This}, ${2:String}) $3' -p139282 -tp139283 -a(S'getTextExtent/3' -p139284 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p139285 -tp139286 -a(S'getTitle/1' -p139287 -S'getTitle(${1:This}) $2' -p139288 -tp139289 -a(S'getToolTip/1' -p139290 -S'getToolTip(${1:This}) $2' -p139291 -tp139292 -a(S'getUpdateRegion/1' -p139293 -S'getUpdateRegion(${1:This}) $2' -p139294 -tp139295 -a(S'getVirtualSize/1' -p139296 -S'getVirtualSize(${1:This}) $2' -p139297 -tp139298 -a(S'getWindowStyleFlag/1' -p139299 -S'getWindowStyleFlag(${1:This}) $2' -p139300 -tp139301 -a(S'getWindowVariant/1' -p139302 -S'getWindowVariant(${1:This}) $2' -p139303 -tp139304 -a(S'hasCapture/1' -p139305 -S'hasCapture(${1:This}) $2' -p139306 -tp139307 -a(S'hasScrollbar/2' -p139308 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p139309 -tp139310 -a(S'hasTransparentBackground/1' -p139311 -S'hasTransparentBackground(${1:This}) $2' -p139312 -tp139313 -a(S'hide/1' -p139314 -S'hide(${1:This}) $2' -p139315 -tp139316 -a(S'iconize/1' -p139317 -S'iconize(${1:This}) $2' -p139318 -tp139319 -a(S'iconize/2' -p139320 -S'iconize(${1:This}, ${2:Options}) $3' -p139321 -tp139322 -a(S'inheritAttributes/1' -p139323 -S'inheritAttributes(${1:This}) $2' -p139324 -tp139325 -a(S'initDialog/1' -p139326 -S'initDialog(${1:This}) $2' -p139327 -tp139328 -a(S'invalidateBestSize/1' -p139329 -S'invalidateBestSize(${1:This}) $2' -p139330 -tp139331 -a(S'isActive/1' -p139332 -S'isActive(${1:This}) $2' -p139333 -tp139334 -a(S'isEnabled/1' -p139335 -S'isEnabled(${1:This}) $2' -p139336 -tp139337 -a(S'isExposed/2' -p139338 -S'isExposed(${1:This}, ${2:Pt}) $3' -p139339 -tp139340 -a(S'isExposed/3' -p139341 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p139342 -tp139343 -a(S'isExposed/5' -p139344 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p139345 -tp139346 -a(S'isFullScreen/1' -p139347 -S'isFullScreen(${1:This}) $2' -p139348 -tp139349 -a(S'isIconized/1' -p139350 -S'isIconized(${1:This}) $2' -p139351 -tp139352 -a(S'isMaximized/1' -p139353 -S'isMaximized(${1:This}) $2' -p139354 -tp139355 -a(S'isModal/1' -p139356 -S'isModal(${1:This}) $2' -p139357 -tp139358 -a(S'isRetained/1' -p139359 -S'isRetained(${1:This}) $2' -p139360 -tp139361 -a(S'isShown/1' -p139362 -S'isShown(${1:This}) $2' -p139363 -tp139364 -a(S'isTopLevel/1' -p139365 -S'isTopLevel(${1:This}) $2' -p139366 -tp139367 -a(S'layout/1' -p139368 -S'layout(${1:This}) $2' -p139369 -tp139370 -a(S'lineDown/1' -p139371 -S'lineDown(${1:This}) $2' -p139372 -tp139373 -a(S'lineUp/1' -p139374 -S'lineUp(${1:This}) $2' -p139375 -tp139376 -a(S'lower/1' -p139377 -S'lower(${1:This}) $2' -p139378 -tp139379 -a(S'makeModal/1' -p139380 -S'makeModal(${1:This}) $2' -p139381 -tp139382 -a(S'makeModal/2' -p139383 -S'makeModal(${1:This}, ${2:Options}) $3' -p139384 -tp139385 -a(S'maximize/1' -p139386 -S'maximize(${1:This}) $2' -p139387 -tp139388 -a(S'maximize/2' -p139389 -S'maximize(${1:This}, ${2:Options}) $3' -p139390 -tp139391 -a(S'move/2' -p139392 -S'move(${1:This}, ${2:Pt}) $3' -p139393 -tp139394 -a(S'move/3' -p139395 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p139396 -tp139397 -a(S'move/4' -p139398 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p139399 -tp139400 -a(S'moveAfterInTabOrder/2' -p139401 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p139402 -tp139403 -a(S'moveBeforeInTabOrder/2' -p139404 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p139405 -tp139406 -a(S'navigate/1' -p139407 -S'navigate(${1:This}) $2' -p139408 -tp139409 -a(S'navigate/2' -p139410 -S'navigate(${1:This}, ${2:Options}) $3' -p139411 -tp139412 -a(S'new/1' -p139413 -S'new(${1:Parent}) $2' -p139414 -tp139415 -a(S'new/2' -p139416 -S'new(${1:Parent}, ${2:Param2}) $3' -p139417 -tp139418 -a(S'pageDown/1' -p139419 -S'pageDown(${1:This}) $2' -p139420 -tp139421 -a(S'pageUp/1' -p139422 -S'pageUp(${1:This}) $2' -p139423 -tp139424 -a(S'parent_class/1' -p139425 -S'parent_class(${1:Param1}) $2' -p139426 -tp139427 -a(S'popEventHandler/1' -p139428 -S'popEventHandler(${1:This}) $2' -p139429 -tp139430 -a(S'popEventHandler/2' -p139431 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p139432 -tp139433 -a(S'popupMenu/2' -p139434 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p139435 -tp139436 -a(S'popupMenu/3' -p139437 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p139438 -tp139439 -a(S'popupMenu/4' -p139440 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p139441 -tp139442 -a(S'raise/1' -p139443 -S'raise(${1:This}) $2' -p139444 -tp139445 -a(S'refresh/1' -p139446 -S'refresh(${1:This}) $2' -p139447 -tp139448 -a(S'refresh/2' -p139449 -S'refresh(${1:This}, ${2:Options}) $3' -p139450 -tp139451 -a(S'refreshRect/2' -p139452 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p139453 -tp139454 -a(S'refreshRect/3' -p139455 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p139456 -tp139457 -a(S'releaseMouse/1' -p139458 -S'releaseMouse(${1:This}) $2' -p139459 -tp139460 -a(S'removeChild/2' -p139461 -S'removeChild(${1:This}, ${2:Child}) $3' -p139462 -tp139463 -a(S'reparent/2' -p139464 -S'reparent(${1:This}, ${2:NewParent}) $3' -p139465 -tp139466 -a(S'requestUserAttention/1' -p139467 -S'requestUserAttention(${1:This}) $2' -p139468 -tp139469 -a(S'requestUserAttention/2' -p139470 -S'requestUserAttention(${1:This}, ${2:Options}) $3' -p139471 -tp139472 -a(S'screenToClient/1' -p139473 -S'screenToClient(${1:This}) $2' -p139474 -tp139475 -a(S'screenToClient/2' -p139476 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p139477 -tp139478 -a(S'scrollLines/2' -p139479 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p139480 -tp139481 -a(S'scrollPages/2' -p139482 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p139483 -tp139484 -a(S'scrollWindow/3' -p139485 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p139486 -tp139487 -a(S'scrollWindow/4' -p139488 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p139489 -tp139490 -a(S'setAcceleratorTable/2' -p139491 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p139492 -tp139493 -a(S'setAffirmativeId/2' -p139494 -S'setAffirmativeId(${1:This}, ${2:AffirmativeId}) $3' -p139495 -tp139496 -a(S'setAutoLayout/2' -p139497 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p139498 -tp139499 -a(S'setBackgroundColour/2' -p139500 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p139501 -tp139502 -a(S'setBackgroundStyle/2' -p139503 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p139504 -tp139505 -a(S'setCaret/2' -p139506 -S'setCaret(${1:This}, ${2:Caret}) $3' -p139507 -tp139508 -a(S'setClientSize/2' -p139509 -S'setClientSize(${1:This}, ${2:Size}) $3' -p139510 -tp139511 -a(S'setClientSize/3' -p139512 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p139513 -tp139514 -a(S'setContainingSizer/2' -p139515 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p139516 -tp139517 -a(S'setCursor/2' -p139518 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p139519 -tp139520 -a(S'setDropTarget/2' -p139521 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p139522 -tp139523 -a(S'setExtraStyle/2' -p139524 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p139525 -tp139526 -a(S'setFocus/1' -p139527 -S'setFocus(${1:This}) $2' -p139528 -tp139529 -a(S'setFocusFromKbd/1' -p139530 -S'setFocusFromKbd(${1:This}) $2' -p139531 -tp139532 -a(S'setFont/2' -p139533 -S'setFont(${1:This}, ${2:Font}) $3' -p139534 -tp139535 -a(S'setForegroundColour/2' -p139536 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p139537 -tp139538 -a(S'setHelpText/2' -p139539 -S'setHelpText(${1:This}, ${2:Text}) $3' -p139540 -tp139541 -a(S'setIcon/2' -p139542 -S'setIcon(${1:This}, ${2:Icon}) $3' -p139543 -tp139544 -a(S'setIcons/2' -p139545 -S'setIcons(${1:This}, ${2:Icons}) $3' -p139546 -tp139547 -a(S'setId/2' -p139548 -S'setId(${1:This}, ${2:Winid}) $3' -p139549 -tp139550 -a(S'setLabel/2' -p139551 -S'setLabel(${1:This}, ${2:Label}) $3' -p139552 -tp139553 -a(S'setMaxSize/2' -p139554 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p139555 -tp139556 -a(S'setMinSize/2' -p139557 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p139558 -tp139559 -a(S'setName/2' -p139560 -S'setName(${1:This}, ${2:Name}) $3' -p139561 -tp139562 -a(S'setOwnBackgroundColour/2' -p139563 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p139564 -tp139565 -a(S'setOwnFont/2' -p139566 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p139567 -tp139568 -a(S'setOwnForegroundColour/2' -p139569 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p139570 -tp139571 -a(S'setPalette/2' -p139572 -S'setPalette(${1:This}, ${2:Pal}) $3' -p139573 -tp139574 -a(S'setReturnCode/2' -p139575 -S'setReturnCode(${1:This}, ${2:ReturnCode}) $3' -p139576 -tp139577 -a(S'setScrollPos/3' -p139578 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p139579 -tp139580 -a(S'setScrollPos/4' -p139581 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p139582 -tp139583 -a(S'setScrollbar/5' -p139584 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p139585 -tp139586 -a(S'setScrollbar/6' -p139587 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p139588 -tp139589 -a(S'setShape/2' -p139590 -S'setShape(${1:This}, ${2:Region}) $3' -p139591 -tp139592 -a(S'setSize/2' -p139593 -S'setSize(${1:This}, ${2:Rect}) $3' -p139594 -tp139595 -a(S'setSize/3' -p139596 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p139597 -tp139598 -a(S'setSize/5' -p139599 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p139600 -tp139601 -a(S'setSize/6' -p139602 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p139603 -tp139604 -a(S'setSizeHints/2' -p139605 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p139606 -tp139607 -a(S'setSizeHints/3' -p139608 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p139609 -tp139610 -a(S'setSizeHints/4' -p139611 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p139612 -tp139613 -a(S'setSizer/2' -p139614 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p139615 -tp139616 -a(S'setSizer/3' -p139617 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p139618 -tp139619 -a(S'setSizerAndFit/2' -p139620 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p139621 -tp139622 -a(S'setSizerAndFit/3' -p139623 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p139624 -tp139625 -a(S'setThemeEnabled/2' -p139626 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p139627 -tp139628 -a(S'setTitle/2' -p139629 -S'setTitle(${1:This}, ${2:Title}) $3' -p139630 -tp139631 -a(S'setToolTip/2' -p139632 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p139633 -tp139634 -a(S'setVirtualSize/2' -p139635 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p139636 -tp139637 -a(S'setVirtualSize/3' -p139638 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p139639 -tp139640 -a(S'setVirtualSizeHints/2' -p139641 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p139642 -tp139643 -a(S'setVirtualSizeHints/3' -p139644 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p139645 -tp139646 -a(S'setVirtualSizeHints/4' -p139647 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p139648 -tp139649 -a(S'setWindowStyle/2' -p139650 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p139651 -tp139652 -a(S'setWindowStyleFlag/2' -p139653 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p139654 -tp139655 -a(S'setWindowVariant/2' -p139656 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p139657 -tp139658 -a(S'shouldInheritColours/1' -p139659 -S'shouldInheritColours(${1:This}) $2' -p139660 -tp139661 -a(S'show/1' -p139662 -S'show(${1:This}) $2' -p139663 -tp139664 -a(S'show/2' -p139665 -S'show(${1:This}, ${2:Options}) $3' -p139666 -tp139667 -a(S'showFullScreen/2' -p139668 -S'showFullScreen(${1:This}, ${2:Show}) $3' -p139669 -tp139670 -a(S'showFullScreen/3' -p139671 -S'showFullScreen(${1:This}, ${2:Show}, ${3:Options}) $4' -p139672 -tp139673 -a(S'showModal/1' -p139674 -S'showModal(${1:This}) $2' -p139675 -tp139676 -a(S'thaw/1' -p139677 -S'thaw(${1:This}) $2' -p139678 -tp139679 -a(S'transferDataFromWindow/1' -p139680 -S'transferDataFromWindow(${1:This}) $2' -p139681 -tp139682 -a(S'transferDataToWindow/1' -p139683 -S'transferDataToWindow(${1:This}) $2' -p139684 -tp139685 -a(S'update/1' -p139686 -S'update(${1:This}) $2' -p139687 -tp139688 -a(S'updateWindowUI/1' -p139689 -S'updateWindowUI(${1:This}) $2' -p139690 -tp139691 -a(S'updateWindowUI/2' -p139692 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p139693 -tp139694 -a(S'validate/1' -p139695 -S'validate(${1:This}) $2' -p139696 -tp139697 -a(S'warpPointer/3' -p139698 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p139699 -tp139700 -asS'kernel' -p139701 -(lp139702 -(S'config_change/3' -p139703 -S'config_change(${1:Changed}, ${2:New}, ${3:Removed}) $4' -p139704 -tp139705 -a(S'init/1' -p139706 -S'init(${1:Param1}) $2' -p139707 -tp139708 -a(S'start/2' -p139709 -S'start(${1:Param1}, ${2:Param2}) $3' -p139710 -tp139711 -a(S'stop/1' -p139712 -S'stop(${1:Param1}) $2' -p139713 -tp139714 -asS'disksup' -p139715 -(lp139716 -(S'code_change/3' -p139717 -S'code_change(${1:Vsn}, ${2:PrevState}, ${3:Param3}) $4' -p139718 -tp139719 -a(S'dummy_reply/1' -p139720 -S'dummy_reply(${1:Param1}) $2' -p139721 -tp139722 -a(S'format_status/2' -p139723 -S'format_status() $1' -p139724 -tp139725 -a(S'get_almost_full_threshold/0' -p139726 -S'get_almost_full_threshold() $1' -p139727 -tp139728 -a(S'get_check_interval/0' -p139729 -S'get_check_interval() $1' -p139730 -tp139731 -a(S'get_disk_data/0' -p139732 -S'get_disk_data() $1' -p139733 -tp139734 -a(S'handle_call/3' -p139735 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p139736 -tp139737 -a(S'handle_cast/2' -p139738 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p139739 -tp139740 -a(S'handle_info/2' -p139741 -S'handle_info(${1:Param1}, ${2:State}) $3' -p139742 -tp139743 -a(S'init/1' -p139744 -S'init(${1:Param1}) $2' -p139745 -tp139746 -a(S'param_default/1' -p139747 -S'param_default(${1:Param1}) $2' -p139748 -tp139749 -a(S'param_type/2' -p139750 -S'param_type(${1:Param1}, ${2:Param2}) $3' -p139751 -tp139752 -a(S'set_almost_full_threshold/1' -p139753 -S'set_almost_full_threshold(${1:Float}) $2' -p139754 -tp139755 -a(S'set_check_interval/1' -p139756 -S'set_check_interval(${1:Minutes}) $2' -p139757 -tp139758 -a(S'start_link/0' -p139759 -S'start_link() $1' -p139760 -tp139761 -a(S'terminate/2' -p139762 -S'terminate(${1:Param1}, ${2:State}) $3' -p139763 -tp139764 -asS'wx_misc' -p139765 -(lp139766 -(S'beginBusyCursor/0' -p139767 -S'beginBusyCursor() $1' -p139768 -tp139769 -a(S'beginBusyCursor/1' -p139770 -S'beginBusyCursor(${1:Param1}) $2' -p139771 -tp139772 -a(S'bell/0' -p139773 -S'bell() $1' -p139774 -tp139775 -a(S'endBusyCursor/0' -p139776 -S'endBusyCursor() $1' -p139777 -tp139778 -a(S'findMenuItemId/3' -p139779 -S'findMenuItemId(${1:Frame}, ${2:MenuString}, ${3:ItemString}) $4' -p139780 -tp139781 -a(S'findWindowAtPoint/1' -p139782 -S'findWindowAtPoint(${1:Pt}) $2' -p139783 -tp139784 -a(S'genericFindWindowAtPoint/1' -p139785 -S'genericFindWindowAtPoint(${1:Pt}) $2' -p139786 -tp139787 -a(S'getCurrentId/0' -p139788 -S'getCurrentId() $1' -p139789 -tp139790 -a(S'getEmailAddress/0' -p139791 -S'getEmailAddress() $1' -p139792 -tp139793 -a(S'getHomeDir/0' -p139794 -S'getHomeDir() $1' -p139795 -tp139796 -a(S'getKeyState/1' -p139797 -S'getKeyState(${1:Key}) $2' -p139798 -tp139799 -a(S'getMousePosition/0' -p139800 -S'getMousePosition() $1' -p139801 -tp139802 -a(S'getMouseState/0' -p139803 -S'getMouseState() $1' -p139804 -tp139805 -a(S'getOsDescription/0' -p139806 -S'getOsDescription() $1' -p139807 -tp139808 -a(S'getUserId/0' -p139809 -S'getUserId() $1' -p139810 -tp139811 -a(S'isBusy/0' -p139812 -S'isBusy() $1' -p139813 -tp139814 -a(S'isPlatform64Bit/0' -p139815 -S'isPlatform64Bit() $1' -p139816 -tp139817 -a(S'isPlatformLittleEndian/0' -p139818 -S'isPlatformLittleEndian() $1' -p139819 -tp139820 -a(S'launchDefaultBrowser/1' -p139821 -S'launchDefaultBrowser(${1:Url}) $2' -p139822 -tp139823 -a(S'launchDefaultBrowser/2' -p139824 -S'launchDefaultBrowser(${1:Url}, ${2:Param2}) $3' -p139825 -tp139826 -a(S'newId/0' -p139827 -S'newId() $1' -p139828 -tp139829 -a(S'registerId/1' -p139830 -S'registerId(${1:Id}) $2' -p139831 -tp139832 -a(S'setDetectableAutoRepeat/1' -p139833 -S'setDetectableAutoRepeat(${1:Flag}) $2' -p139834 -tp139835 -a(S'shell/0' -p139836 -S'shell() $1' -p139837 -tp139838 -a(S'shell/1' -p139839 -S'shell(${1:Param1}) $2' -p139840 -tp139841 -a(S'shutdown/1' -p139842 -S'shutdown(${1:WFlags}) $2' -p139843 -tp139844 -asS'edoc_tags' -p139845 -(lp139846 -(S'check_tags/4' -p139847 -S'check_tags(${1:Ts}, ${2:Allow}, ${3:Single}, ${4:Where}) $5' -p139848 -tp139849 -a(S'check_types/3' -p139850 -S'check_types(${1:Entries}, ${2:Opts}, ${3:File}) $4' -p139851 -tp139852 -a(S'filter_tags/2' -p139853 -S'filter_tags(${1:Ts}, ${2:Tags}) $3' -p139854 -tp139855 -a(S'filter_tags/3' -p139856 -S'filter_tags(${1:Ts}, ${2:Tags}, ${3:Where}) $4' -p139857 -tp139858 -a(S'parse_tags/4' -p139859 -S'parse_tags(${1:Ts}, ${2:How}, ${3:Env}, ${4:Where}) $5' -p139860 -tp139861 -a(S'scan_lines/2' -p139862 -S'scan_lines(${1:Ss}, ${2:L}) $3' -p139863 -tp139864 -a(S'tag_names/0' -p139865 -S'tag_names() $1' -p139866 -tp139867 -a(S'tag_parsers/0' -p139868 -S'tag_parsers() $1' -p139869 -tp139870 -a(S'tags/0' -p139871 -S'tags() $1' -p139872 -tp139873 -a(S'tags/1' -p139874 -S'tags(${1:Flag}) $2' -p139875 -tp139876 -asS'wxStaticBitmap' -p139877 -(lp139878 -(S'cacheBestSize/2' -p139879 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p139880 -tp139881 -a(S'captureMouse/1' -p139882 -S'captureMouse(${1:This}) $2' -p139883 -tp139884 -a(S'center/1' -p139885 -S'center(${1:This}) $2' -p139886 -tp139887 -a(S'center/2' -p139888 -S'center(${1:This}, ${2:Options}) $3' -p139889 -tp139890 -a(S'centerOnParent/1' -p139891 -S'centerOnParent(${1:This}) $2' -p139892 -tp139893 -a(S'centerOnParent/2' -p139894 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p139895 -tp139896 -a(S'centre/1' -p139897 -S'centre(${1:This}) $2' -p139898 -tp139899 -a(S'centre/2' -p139900 -S'centre(${1:This}, ${2:Options}) $3' -p139901 -tp139902 -a(S'centreOnParent/1' -p139903 -S'centreOnParent(${1:This}) $2' -p139904 -tp139905 -a(S'centreOnParent/2' -p139906 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p139907 -tp139908 -a(S'clearBackground/1' -p139909 -S'clearBackground(${1:This}) $2' -p139910 -tp139911 -a(S'clientToScreen/2' -p139912 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p139913 -tp139914 -a(S'clientToScreen/3' -p139915 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p139916 -tp139917 -a(S'close/1' -p139918 -S'close(${1:This}) $2' -p139919 -tp139920 -a(S'close/2' -p139921 -S'close(${1:This}, ${2:Options}) $3' -p139922 -tp139923 -a(S'connect/2' -p139924 -S'connect(${1:This}, ${2:EventType}) $3' -p139925 -tp139926 -a(S'connect/3' -p139927 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p139928 -tp139929 -a(S'convertDialogToPixels/2' -p139930 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p139931 -tp139932 -a(S'convertPixelsToDialog/2' -p139933 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p139934 -tp139935 -a(S'create/4' -p139936 -S'create(${1:This}, ${2:Parent}, ${3:Id}, ${4:Label}) $5' -p139937 -tp139938 -a(S'create/5' -p139939 -S'create(${1:This}, ${2:Parent}, ${3:Id}, ${4:Label}, ${5:Param5}) $6' -p139940 -tp139941 -a(S'destroy/1' -p139942 -S'destroy(${1:This}) $2' -p139943 -tp139944 -a(S'destroyChildren/1' -p139945 -S'destroyChildren(${1:This}) $2' -p139946 -tp139947 -a(S'disable/1' -p139948 -S'disable(${1:This}) $2' -p139949 -tp139950 -a(S'disconnect/1' -p139951 -S'disconnect(${1:This}) $2' -p139952 -tp139953 -a(S'disconnect/2' -p139954 -S'disconnect(${1:This}, ${2:EventType}) $3' -p139955 -tp139956 -a(S'disconnect/3' -p139957 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p139958 -tp139959 -a(S'enable/1' -p139960 -S'enable(${1:This}) $2' -p139961 -tp139962 -a(S'enable/2' -p139963 -S'enable(${1:This}, ${2:Options}) $3' -p139964 -tp139965 -a(S'findWindow/2' -p139966 -S'findWindow(${1:This}, ${2:Winid}) $3' -p139967 -tp139968 -a(S'fit/1' -p139969 -S'fit(${1:This}) $2' -p139970 -tp139971 -a(S'fitInside/1' -p139972 -S'fitInside(${1:This}) $2' -p139973 -tp139974 -a(S'freeze/1' -p139975 -S'freeze(${1:This}) $2' -p139976 -tp139977 -a(S'getAcceleratorTable/1' -p139978 -S'getAcceleratorTable(${1:This}) $2' -p139979 -tp139980 -a(S'getBackgroundColour/1' -p139981 -S'getBackgroundColour(${1:This}) $2' -p139982 -tp139983 -a(S'getBackgroundStyle/1' -p139984 -S'getBackgroundStyle(${1:This}) $2' -p139985 -tp139986 -a(S'getBestSize/1' -p139987 -S'getBestSize(${1:This}) $2' -p139988 -tp139989 -a(S'getBitmap/1' -p139990 -S'getBitmap(${1:This}) $2' -p139991 -tp139992 -a(S'getCaret/1' -p139993 -S'getCaret(${1:This}) $2' -p139994 -tp139995 -a(S'getCharHeight/1' -p139996 -S'getCharHeight(${1:This}) $2' -p139997 -tp139998 -a(S'getCharWidth/1' -p139999 -S'getCharWidth(${1:This}) $2' -p140000 -tp140001 -a(S'getChildren/1' -p140002 -S'getChildren(${1:This}) $2' -p140003 -tp140004 -a(S'getClientSize/1' -p140005 -S'getClientSize(${1:This}) $2' -p140006 -tp140007 -a(S'getContainingSizer/1' -p140008 -S'getContainingSizer(${1:This}) $2' -p140009 -tp140010 -a(S'getCursor/1' -p140011 -S'getCursor(${1:This}) $2' -p140012 -tp140013 -a(S'getDropTarget/1' -p140014 -S'getDropTarget(${1:This}) $2' -p140015 -tp140016 -a(S'getEventHandler/1' -p140017 -S'getEventHandler(${1:This}) $2' -p140018 -tp140019 -a(S'getExtraStyle/1' -p140020 -S'getExtraStyle(${1:This}) $2' -p140021 -tp140022 -a(S'getFont/1' -p140023 -S'getFont(${1:This}) $2' -p140024 -tp140025 -a(S'getForegroundColour/1' -p140026 -S'getForegroundColour(${1:This}) $2' -p140027 -tp140028 -a(S'getGrandParent/1' -p140029 -S'getGrandParent(${1:This}) $2' -p140030 -tp140031 -a(S'getHandle/1' -p140032 -S'getHandle(${1:This}) $2' -p140033 -tp140034 -a(S'getHelpText/1' -p140035 -S'getHelpText(${1:This}) $2' -p140036 -tp140037 -a(S'getId/1' -p140038 -S'getId(${1:This}) $2' -p140039 -tp140040 -a(S'getLabel/1' -p140041 -S'getLabel(${1:This}) $2' -p140042 -tp140043 -a(S'getMaxSize/1' -p140044 -S'getMaxSize(${1:This}) $2' -p140045 -tp140046 -a(S'getMinSize/1' -p140047 -S'getMinSize(${1:This}) $2' -p140048 -tp140049 -a(S'getName/1' -p140050 -S'getName(${1:This}) $2' -p140051 -tp140052 -a(S'getParent/1' -p140053 -S'getParent(${1:This}) $2' -p140054 -tp140055 -a(S'getPosition/1' -p140056 -S'getPosition(${1:This}) $2' -p140057 -tp140058 -a(S'getRect/1' -p140059 -S'getRect(${1:This}) $2' -p140060 -tp140061 -a(S'getScreenPosition/1' -p140062 -S'getScreenPosition(${1:This}) $2' -p140063 -tp140064 -a(S'getScreenRect/1' -p140065 -S'getScreenRect(${1:This}) $2' -p140066 -tp140067 -a(S'getScrollPos/2' -p140068 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p140069 -tp140070 -a(S'getScrollRange/2' -p140071 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p140072 -tp140073 -a(S'getScrollThumb/2' -p140074 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p140075 -tp140076 -a(S'getSize/1' -p140077 -S'getSize(${1:This}) $2' -p140078 -tp140079 -a(S'getSizer/1' -p140080 -S'getSizer(${1:This}) $2' -p140081 -tp140082 -a(S'getTextExtent/2' -p140083 -S'getTextExtent(${1:This}, ${2:String}) $3' -p140084 -tp140085 -a(S'getTextExtent/3' -p140086 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p140087 -tp140088 -a(S'getToolTip/1' -p140089 -S'getToolTip(${1:This}) $2' -p140090 -tp140091 -a(S'getUpdateRegion/1' -p140092 -S'getUpdateRegion(${1:This}) $2' -p140093 -tp140094 -a(S'getVirtualSize/1' -p140095 -S'getVirtualSize(${1:This}) $2' -p140096 -tp140097 -a(S'getWindowStyleFlag/1' -p140098 -S'getWindowStyleFlag(${1:This}) $2' -p140099 -tp140100 -a(S'getWindowVariant/1' -p140101 -S'getWindowVariant(${1:This}) $2' -p140102 -tp140103 -a(S'hasCapture/1' -p140104 -S'hasCapture(${1:This}) $2' -p140105 -tp140106 -a(S'hasScrollbar/2' -p140107 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p140108 -tp140109 -a(S'hasTransparentBackground/1' -p140110 -S'hasTransparentBackground(${1:This}) $2' -p140111 -tp140112 -a(S'hide/1' -p140113 -S'hide(${1:This}) $2' -p140114 -tp140115 -a(S'inheritAttributes/1' -p140116 -S'inheritAttributes(${1:This}) $2' -p140117 -tp140118 -a(S'initDialog/1' -p140119 -S'initDialog(${1:This}) $2' -p140120 -tp140121 -a(S'invalidateBestSize/1' -p140122 -S'invalidateBestSize(${1:This}) $2' -p140123 -tp140124 -a(S'isEnabled/1' -p140125 -S'isEnabled(${1:This}) $2' -p140126 -tp140127 -a(S'isExposed/2' -p140128 -S'isExposed(${1:This}, ${2:Pt}) $3' -p140129 -tp140130 -a(S'isExposed/3' -p140131 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p140132 -tp140133 -a(S'isExposed/5' -p140134 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p140135 -tp140136 -a(S'isRetained/1' -p140137 -S'isRetained(${1:This}) $2' -p140138 -tp140139 -a(S'isShown/1' -p140140 -S'isShown(${1:This}) $2' -p140141 -tp140142 -a(S'isTopLevel/1' -p140143 -S'isTopLevel(${1:This}) $2' -p140144 -tp140145 -a(S'layout/1' -p140146 -S'layout(${1:This}) $2' -p140147 -tp140148 -a(S'lineDown/1' -p140149 -S'lineDown(${1:This}) $2' -p140150 -tp140151 -a(S'lineUp/1' -p140152 -S'lineUp(${1:This}) $2' -p140153 -tp140154 -a(S'lower/1' -p140155 -S'lower(${1:This}) $2' -p140156 -tp140157 -a(S'makeModal/1' -p140158 -S'makeModal(${1:This}) $2' -p140159 -tp140160 -a(S'makeModal/2' -p140161 -S'makeModal(${1:This}, ${2:Options}) $3' -p140162 -tp140163 -a(S'move/2' -p140164 -S'move(${1:This}, ${2:Pt}) $3' -p140165 -tp140166 -a(S'move/3' -p140167 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p140168 -tp140169 -a(S'move/4' -p140170 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p140171 -tp140172 -a(S'moveAfterInTabOrder/2' -p140173 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p140174 -tp140175 -a(S'moveBeforeInTabOrder/2' -p140176 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p140177 -tp140178 -a(S'navigate/1' -p140179 -S'navigate(${1:This}) $2' -p140180 -tp140181 -a(S'navigate/2' -p140182 -S'navigate(${1:This}, ${2:Options}) $3' -p140183 -tp140184 -a(S'new/0' -p140185 -S'new() $1' -p140186 -tp140187 -a(S'new/3' -p140188 -S'new(${1:Parent}, ${2:Id}, ${3:Label}) $4' -p140189 -tp140190 -a(S'new/4' -p140191 -S'new(${1:Parent}, ${2:Id}, ${3:Label}, ${4:Param4}) $5' -p140192 -tp140193 -a(S'pageDown/1' -p140194 -S'pageDown(${1:This}) $2' -p140195 -tp140196 -a(S'pageUp/1' -p140197 -S'pageUp(${1:This}) $2' -p140198 -tp140199 -a(S'parent_class/1' -p140200 -S'parent_class(${1:Param1}) $2' -p140201 -tp140202 -a(S'popEventHandler/1' -p140203 -S'popEventHandler(${1:This}) $2' -p140204 -tp140205 -a(S'popEventHandler/2' -p140206 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p140207 -tp140208 -a(S'popupMenu/2' -p140209 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p140210 -tp140211 -a(S'popupMenu/3' -p140212 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p140213 -tp140214 -a(S'popupMenu/4' -p140215 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p140216 -tp140217 -a(S'raise/1' -p140218 -S'raise(${1:This}) $2' -p140219 -tp140220 -a(S'refresh/1' -p140221 -S'refresh(${1:This}) $2' -p140222 -tp140223 -a(S'refresh/2' -p140224 -S'refresh(${1:This}, ${2:Options}) $3' -p140225 -tp140226 -a(S'refreshRect/2' -p140227 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p140228 -tp140229 -a(S'refreshRect/3' -p140230 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p140231 -tp140232 -a(S'releaseMouse/1' -p140233 -S'releaseMouse(${1:This}) $2' -p140234 -tp140235 -a(S'removeChild/2' -p140236 -S'removeChild(${1:This}, ${2:Child}) $3' -p140237 -tp140238 -a(S'reparent/2' -p140239 -S'reparent(${1:This}, ${2:NewParent}) $3' -p140240 -tp140241 -a(S'screenToClient/1' -p140242 -S'screenToClient(${1:This}) $2' -p140243 -tp140244 -a(S'screenToClient/2' -p140245 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p140246 -tp140247 -a(S'scrollLines/2' -p140248 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p140249 -tp140250 -a(S'scrollPages/2' -p140251 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p140252 -tp140253 -a(S'scrollWindow/3' -p140254 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p140255 -tp140256 -a(S'scrollWindow/4' -p140257 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p140258 -tp140259 -a(S'setAcceleratorTable/2' -p140260 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p140261 -tp140262 -a(S'setAutoLayout/2' -p140263 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p140264 -tp140265 -a(S'setBackgroundColour/2' -p140266 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p140267 -tp140268 -a(S'setBackgroundStyle/2' -p140269 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p140270 -tp140271 -a(S'setBitmap/2' -p140272 -S'setBitmap(${1:This}, ${2:Bitmap}) $3' -p140273 -tp140274 -a(S'setCaret/2' -p140275 -S'setCaret(${1:This}, ${2:Caret}) $3' -p140276 -tp140277 -a(S'setClientSize/2' -p140278 -S'setClientSize(${1:This}, ${2:Size}) $3' -p140279 -tp140280 -a(S'setClientSize/3' -p140281 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p140282 -tp140283 -a(S'setContainingSizer/2' -p140284 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p140285 -tp140286 -a(S'setCursor/2' -p140287 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p140288 -tp140289 -a(S'setDropTarget/2' -p140290 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p140291 -tp140292 -a(S'setExtraStyle/2' -p140293 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p140294 -tp140295 -a(S'setFocus/1' -p140296 -S'setFocus(${1:This}) $2' -p140297 -tp140298 -a(S'setFocusFromKbd/1' -p140299 -S'setFocusFromKbd(${1:This}) $2' -p140300 -tp140301 -a(S'setFont/2' -p140302 -S'setFont(${1:This}, ${2:Font}) $3' -p140303 -tp140304 -a(S'setForegroundColour/2' -p140305 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p140306 -tp140307 -a(S'setHelpText/2' -p140308 -S'setHelpText(${1:This}, ${2:Text}) $3' -p140309 -tp140310 -a(S'setId/2' -p140311 -S'setId(${1:This}, ${2:Winid}) $3' -p140312 -tp140313 -a(S'setLabel/2' -p140314 -S'setLabel(${1:This}, ${2:Label}) $3' -p140315 -tp140316 -a(S'setMaxSize/2' -p140317 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p140318 -tp140319 -a(S'setMinSize/2' -p140320 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p140321 -tp140322 -a(S'setName/2' -p140323 -S'setName(${1:This}, ${2:Name}) $3' -p140324 -tp140325 -a(S'setOwnBackgroundColour/2' -p140326 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p140327 -tp140328 -a(S'setOwnFont/2' -p140329 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p140330 -tp140331 -a(S'setOwnForegroundColour/2' -p140332 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p140333 -tp140334 -a(S'setPalette/2' -p140335 -S'setPalette(${1:This}, ${2:Pal}) $3' -p140336 -tp140337 -a(S'setScrollPos/3' -p140338 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p140339 -tp140340 -a(S'setScrollPos/4' -p140341 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p140342 -tp140343 -a(S'setScrollbar/5' -p140344 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p140345 -tp140346 -a(S'setScrollbar/6' -p140347 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p140348 -tp140349 -a(S'setSize/2' -p140350 -S'setSize(${1:This}, ${2:Rect}) $3' -p140351 -tp140352 -a(S'setSize/3' -p140353 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p140354 -tp140355 -a(S'setSize/5' -p140356 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p140357 -tp140358 -a(S'setSize/6' -p140359 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p140360 -tp140361 -a(S'setSizeHints/2' -p140362 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p140363 -tp140364 -a(S'setSizeHints/3' -p140365 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p140366 -tp140367 -a(S'setSizeHints/4' -p140368 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p140369 -tp140370 -a(S'setSizer/2' -p140371 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p140372 -tp140373 -a(S'setSizer/3' -p140374 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p140375 -tp140376 -a(S'setSizerAndFit/2' -p140377 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p140378 -tp140379 -a(S'setSizerAndFit/3' -p140380 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p140381 -tp140382 -a(S'setThemeEnabled/2' -p140383 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p140384 -tp140385 -a(S'setToolTip/2' -p140386 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p140387 -tp140388 -a(S'setVirtualSize/2' -p140389 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p140390 -tp140391 -a(S'setVirtualSize/3' -p140392 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p140393 -tp140394 -a(S'setVirtualSizeHints/2' -p140395 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p140396 -tp140397 -a(S'setVirtualSizeHints/3' -p140398 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p140399 -tp140400 -a(S'setVirtualSizeHints/4' -p140401 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p140402 -tp140403 -a(S'setWindowStyle/2' -p140404 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p140405 -tp140406 -a(S'setWindowStyleFlag/2' -p140407 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p140408 -tp140409 -a(S'setWindowVariant/2' -p140410 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p140411 -tp140412 -a(S'shouldInheritColours/1' -p140413 -S'shouldInheritColours(${1:This}) $2' -p140414 -tp140415 -a(S'show/1' -p140416 -S'show(${1:This}) $2' -p140417 -tp140418 -a(S'show/2' -p140419 -S'show(${1:This}, ${2:Options}) $3' -p140420 -tp140421 -a(S'thaw/1' -p140422 -S'thaw(${1:This}) $2' -p140423 -tp140424 -a(S'transferDataFromWindow/1' -p140425 -S'transferDataFromWindow(${1:This}) $2' -p140426 -tp140427 -a(S'transferDataToWindow/1' -p140428 -S'transferDataToWindow(${1:This}) $2' -p140429 -tp140430 -a(S'update/1' -p140431 -S'update(${1:This}) $2' -p140432 -tp140433 -a(S'updateWindowUI/1' -p140434 -S'updateWindowUI(${1:This}) $2' -p140435 -tp140436 -a(S'updateWindowUI/2' -p140437 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p140438 -tp140439 -a(S'validate/1' -p140440 -S'validate(${1:This}) $2' -p140441 -tp140442 -a(S'warpPointer/3' -p140443 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p140444 -tp140445 -asS'gstk_generic' -p140446 -(lp140447 -(S'add_to_coords/3' -p140448 -S'add_to_coords(${1:Dx}, ${2:Dy}, ${3:Param3}) $4' -p140449 -tp140450 -a(S'bind/5' -p140451 -S'bind(${1:DB}, ${2:Gstkid}, ${3:TkW}, ${4:Etype}, ${5:On}) $6' -p140452 -tp140453 -a(S'bind/6' -p140454 -S'bind(${1:DB}, ${2:Gstkid}, ${3:TkW}, ${4:Etype}, ${5:On}, ${6:WS}) $7' -p140455 -tp140456 -a(S'cursors/0' -p140457 -S'cursors() $1' -p140458 -tp140459 -a(S'ebind/6' -p140460 -S'ebind(${1:DB}, ${2:Gstkid}, ${3:TkW}, ${4:Etype}, ${5:WS}, ${6:Edata}) $7' -p140461 -tp140462 -a(S'eunbind/6' -p140463 -S'eunbind(${1:DB}, ${2:Gstkid}, ${3:TkW}, ${4:Etype}, ${5:WS}, ${6:Param6}) $7' -p140464 -tp140465 -a(S'event/5' -p140466 -S'event(${1:DB}, ${2:Gstkid}, ${3:Etype}, ${4:Param4}, ${5:Args}) $6' -p140467 -tp140468 -a(S'gen_activebg/5' -p140469 -S'gen_activebg(${1:Param1}, ${2:Param2}, ${3:TkW}, ${4:Param4}, ${5:Param5}) $6' -p140470 -tp140471 -a(S'gen_activebg/9' -p140472 -S'gen_activebg(${1:Color}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140473 -tp140474 -a(S'gen_activefg/5' -p140475 -S'gen_activefg(${1:Param1}, ${2:Param2}, ${3:TkW}, ${4:Param4}, ${5:Param5}) $6' -p140476 -tp140477 -a(S'gen_activefg/9' -p140478 -S'gen_activefg(${1:Color}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140479 -tp140480 -a(S'gen_align/5' -p140481 -S'gen_align(${1:Param1}, ${2:Param2}, ${3:TkW}, ${4:Param4}, ${5:Param5}) $6' -p140482 -tp140483 -a(S'gen_align/9' -p140484 -S'gen_align(${1:How}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140485 -tp140486 -a(S'gen_anchor/5' -p140487 -S'gen_anchor(${1:Param1}, ${2:Param2}, ${3:TkW}, ${4:Param4}, ${5:Param5}) $6' -p140488 -tp140489 -a(S'gen_anchor/9' -p140490 -S'gen_anchor(${1:How}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140491 -tp140492 -a(S'gen_beep/9' -p140493 -S'gen_beep(${1:Param1}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140494 -tp140495 -a(S'gen_bg/5' -p140496 -S'gen_bg(${1:Param1}, ${2:Param2}, ${3:TkW}, ${4:Param4}, ${5:Param5}) $6' -p140497 -tp140498 -a(S'gen_bg/9' -p140499 -S'gen_bg(${1:Color}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140500 -tp140501 -a(S'gen_buttonpress/5' -p140502 -S'gen_buttonpress(${1:Param1}, ${2:Gstkid}, ${3:Param3}, ${4:DB}, ${5:Param5}) $6' -p140503 -tp140504 -a(S'gen_buttonpress/9' -p140505 -S'gen_buttonpress(${1:On}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140506 -tp140507 -a(S'gen_buttonrelease/5' -p140508 -S'gen_buttonrelease(${1:Param1}, ${2:Gstkid}, ${3:Param3}, ${4:DB}, ${5:Param5}) $6' -p140509 -tp140510 -a(S'gen_buttonrelease/9' -p140511 -S'gen_buttonrelease(${1:On}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140512 -tp140513 -a(S'gen_bw/5' -p140514 -S'gen_bw(${1:Param1}, ${2:Param2}, ${3:TkW}, ${4:Param4}, ${5:Param5}) $6' -p140515 -tp140516 -a(S'gen_bw/9' -p140517 -S'gen_bw(${1:Wth}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140518 -tp140519 -a(S'gen_children/5' -p140520 -S'gen_children(${1:Param1}, ${2:Gstkid}, ${3:Param3}, ${4:DB}, ${5:Param5}) $6' -p140521 -tp140522 -a(S'gen_choose_font/5' -p140523 -S'gen_choose_font(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:DB}, ${5:Param5}) $6' -p140524 -tp140525 -a(S'gen_citem_buttonpress/9' -p140526 -S'gen_citem_buttonpress(${1:On}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:AItem}, ${7:S}, ${8:P}, ${9:C}) $10' -p140527 -tp140528 -a(S'gen_citem_buttonrelease/9' -p140529 -S'gen_citem_buttonrelease(${1:On}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:AItem}, ${7:S}, ${8:P}, ${9:C}) $10' -p140530 -tp140531 -a(S'gen_citem_coords/5' -p140532 -S'gen_citem_coords(${1:Param1}, ${2:Gstkid}, ${3:Param3}, ${4:DB}, ${5:Param5}) $6' -p140533 -tp140534 -a(S'gen_citem_coords/9' -p140535 -S'gen_citem_coords(${1:Coords}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:AItem}, ${7:S}, ${8:P}, ${9:C}) $10' -p140536 -tp140537 -a(S'gen_citem_enter/9' -p140538 -S'gen_citem_enter(${1:On}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:AItem}, ${7:S}, ${8:P}, ${9:C}) $10' -p140539 -tp140540 -a(S'gen_citem_fill/5' -p140541 -S'gen_citem_fill(${1:Param1}, ${2:Param2}, ${3:TkW}, ${4:Param4}, ${5:AItem}) $6' -p140542 -tp140543 -a(S'gen_citem_fill/9' -p140544 -S'gen_citem_fill(${1:Color}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:AItem}, ${7:S}, ${8:P}, ${9:C}) $10' -p140545 -tp140546 -a(S'gen_citem_keypress/9' -p140547 -S'gen_citem_keypress(${1:On}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:AItem}, ${7:S}, ${8:P}, ${9:C}) $10' -p140548 -tp140549 -a(S'gen_citem_keyrelease/9' -p140550 -S'gen_citem_keyrelease(${1:On}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:AItem}, ${7:S}, ${8:P}, ${9:C}) $10' -p140551 -tp140552 -a(S'gen_citem_leave/9' -p140553 -S'gen_citem_leave(${1:On}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:AItem}, ${7:S}, ${8:P}, ${9:C}) $10' -p140554 -tp140555 -a(S'gen_citem_lower/9' -p140556 -S'gen_citem_lower(${1:Param1}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:AItem}, ${7:S}, ${8:P}, ${9:C}) $10' -p140557 -tp140558 -a(S'gen_citem_motion/9' -p140559 -S'gen_citem_motion(${1:On}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:AItem}, ${7:S}, ${8:P}, ${9:C}) $10' -p140560 -tp140561 -a(S'gen_citem_move/9' -p140562 -S'gen_citem_move(${1:Param1}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:AItem}, ${7:S}, ${8:P}, ${9:C}) $10' -p140563 -tp140564 -a(S'gen_citem_raise/9' -p140565 -S'gen_citem_raise(${1:Param1}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:AItem}, ${7:S}, ${8:P}, ${9:C}) $10' -p140566 -tp140567 -a(S'gen_citem_setfocus/5' -p140568 -S'gen_citem_setfocus(${1:Param1}, ${2:Param2}, ${3:TkW}, ${4:Param4}, ${5:Param5}) $6' -p140569 -tp140570 -a(S'gen_citem_setfocus/9' -p140571 -S'gen_citem_setfocus(${1:Param1}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:AItem}, ${7:S}, ${8:P}, ${9:C}) $10' -p140572 -tp140573 -a(S'gen_configure/5' -p140574 -S'gen_configure(${1:Param1}, ${2:Gstkid}, ${3:Param3}, ${4:DB}, ${5:Param5}) $6' -p140575 -tp140576 -a(S'gen_configure/9' -p140577 -S'gen_configure(${1:On}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140578 -tp140579 -a(S'gen_cursor/5' -p140580 -S'gen_cursor(${1:Param1}, ${2:Param2}, ${3:TkW}, ${4:Param4}, ${5:Param5}) $6' -p140581 -tp140582 -a(S'gen_cursor/9' -p140583 -S'gen_cursor(${1:Cur}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140584 -tp140585 -a(S'gen_data/5' -p140586 -S'gen_data(${1:Param1}, ${2:Gstkid}, ${3:Param3}, ${4:DB}, ${5:Param5}) $6' -p140587 -tp140588 -a(S'gen_data/9' -p140589 -S'gen_data(${1:Data}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140590 -tp140591 -a(S'gen_default/9' -p140592 -S'gen_default(${1:Opt}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140593 -tp140594 -a(S'gen_destroy/5' -p140595 -S'gen_destroy(${1:Param1}, ${2:Gstkid}, ${3:Param3}, ${4:DB}, ${5:Param5}) $6' -p140596 -tp140597 -a(S'gen_destroy/9' -p140598 -S'gen_destroy(${1:On}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140599 -tp140600 -a(S'gen_enable/5' -p140601 -S'gen_enable(${1:Param1}, ${2:Param2}, ${3:TkW}, ${4:Param4}, ${5:Param5}) $6' -p140602 -tp140603 -a(S'gen_enable/9' -p140604 -S'gen_enable(${1:Param1}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140605 -tp140606 -a(S'gen_enter/5' -p140607 -S'gen_enter(${1:Param1}, ${2:Gstkid}, ${3:Param3}, ${4:DB}, ${5:Param5}) $6' -p140608 -tp140609 -a(S'gen_enter/9' -p140610 -S'gen_enter(${1:On}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140611 -tp140612 -a(S'gen_fg/5' -p140613 -S'gen_fg(${1:Param1}, ${2:Param2}, ${3:TkW}, ${4:Param4}, ${5:Param5}) $6' -p140614 -tp140615 -a(S'gen_fg/9' -p140616 -S'gen_fg(${1:Color}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140617 -tp140618 -a(S'gen_flush/5' -p140619 -S'gen_flush(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}, ${5:Param5}) $6' -p140620 -tp140621 -a(S'gen_flush/9' -p140622 -S'gen_flush(${1:Param1}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140623 -tp140624 -a(S'gen_focus_ev/5' -p140625 -S'gen_focus_ev(${1:Param1}, ${2:Gstkid}, ${3:Param3}, ${4:DB}, ${5:Param5}) $6' -p140626 -tp140627 -a(S'gen_focus_ev/9' -p140628 -S'gen_focus_ev(${1:On}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140629 -tp140630 -a(S'gen_font/5' -p140631 -S'gen_font(${1:Param1}, ${2:Gstkid}, ${3:Param3}, ${4:DB}, ${5:Param5}) $6' -p140632 -tp140633 -a(S'gen_font/9' -p140634 -S'gen_font(${1:Font}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140635 -tp140636 -a(S'gen_font_wh/5' -p140637 -S'gen_font_wh(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:DB}, ${5:Param5}) $6' -p140638 -tp140639 -a(S'gen_height/5' -p140640 -S'gen_height(${1:Param1}, ${2:Gstkid}, ${3:Param3}, ${4:DB}, ${5:Param5}) $6' -p140641 -tp140642 -a(S'gen_height/9' -p140643 -S'gen_height(${1:Height}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140644 -tp140645 -a(S'gen_highlightbg/5' -p140646 -S'gen_highlightbg(${1:Param1}, ${2:Param2}, ${3:TkW}, ${4:Param4}, ${5:Param5}) $6' -p140647 -tp140648 -a(S'gen_highlightbg/9' -p140649 -S'gen_highlightbg(${1:Color}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140650 -tp140651 -a(S'gen_highlightbw/5' -p140652 -S'gen_highlightbw(${1:Param1}, ${2:Param2}, ${3:TkW}, ${4:Param4}, ${5:Param5}) $6' -p140653 -tp140654 -a(S'gen_highlightbw/9' -p140655 -S'gen_highlightbw(${1:Wth}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140656 -tp140657 -a(S'gen_highlightfg/5' -p140658 -S'gen_highlightfg(${1:Param1}, ${2:Param2}, ${3:TkW}, ${4:Param4}, ${5:Param5}) $6' -p140659 -tp140660 -a(S'gen_highlightfg/9' -p140661 -S'gen_highlightfg(${1:Color}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140662 -tp140663 -a(S'gen_id/5' -p140664 -S'gen_id(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:DB}, ${5:Param5}) $6' -p140665 -tp140666 -a(S'gen_justify/5' -p140667 -S'gen_justify(${1:Param1}, ${2:Param2}, ${3:TkW}, ${4:Param4}, ${5:Param5}) $6' -p140668 -tp140669 -a(S'gen_justify/9' -p140670 -S'gen_justify(${1:How}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140671 -tp140672 -a(S'gen_keep_opt/9' -p140673 -S'gen_keep_opt(${1:Opt}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140674 -tp140675 -a(S'gen_keypress/5' -p140676 -S'gen_keypress(${1:Param1}, ${2:Gstkid}, ${3:Param3}, ${4:DB}, ${5:Param5}) $6' -p140677 -tp140678 -a(S'gen_keypress/9' -p140679 -S'gen_keypress(${1:On}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140680 -tp140681 -a(S'gen_keyrelease/5' -p140682 -S'gen_keyrelease(${1:Param1}, ${2:Gstkid}, ${3:Param3}, ${4:DB}, ${5:Param5}) $6' -p140683 -tp140684 -a(S'gen_keyrelease/9' -p140685 -S'gen_keyrelease(${1:On}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140686 -tp140687 -a(S'gen_label/5' -p140688 -S'gen_label(${1:Param1}, ${2:Param2}, ${3:TkW}, ${4:Param4}, ${5:Param5}) $6' -p140689 -tp140690 -a(S'gen_label/9' -p140691 -S'gen_label(${1:Param1}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140692 -tp140693 -a(S'gen_leave/5' -p140694 -S'gen_leave(${1:Param1}, ${2:Gstkid}, ${3:Param3}, ${4:DB}, ${5:Param5}) $6' -p140695 -tp140696 -a(S'gen_leave/9' -p140697 -S'gen_leave(${1:On}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140698 -tp140699 -a(S'gen_lower/5' -p140700 -S'gen_lower(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}, ${5:Param5}) $6' -p140701 -tp140702 -a(S'gen_lower/9' -p140703 -S'gen_lower(${1:Param1}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140704 -tp140705 -a(S'gen_motion/5' -p140706 -S'gen_motion(${1:Param1}, ${2:Gstkid}, ${3:Param3}, ${4:DB}, ${5:Param5}) $6' -p140707 -tp140708 -a(S'gen_motion/9' -p140709 -S'gen_motion(${1:On}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140710 -tp140711 -a(S'gen_pack_x/5' -p140712 -S'gen_pack_x(${1:Param1}, ${2:Gstkid}, ${3:Param3}, ${4:DB}, ${5:Param5}) $6' -p140713 -tp140714 -a(S'gen_pack_x/9' -p140715 -S'gen_pack_x(${1:Col}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140716 -tp140717 -a(S'gen_pack_xy/9' -p140718 -S'gen_pack_xy(${1:Param1}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140719 -tp140720 -a(S'gen_pack_y/5' -p140721 -S'gen_pack_y(${1:Param1}, ${2:Gstkid}, ${3:Param3}, ${4:DB}, ${5:Param5}) $6' -p140722 -tp140723 -a(S'gen_pack_y/9' -p140724 -S'gen_pack_y(${1:Row}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140725 -tp140726 -a(S'gen_padx/5' -p140727 -S'gen_padx(${1:Param1}, ${2:Param2}, ${3:TkW}, ${4:Param4}, ${5:Param5}) $6' -p140728 -tp140729 -a(S'gen_padx/9' -p140730 -S'gen_padx(${1:Pad}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140731 -tp140732 -a(S'gen_pady/5' -p140733 -S'gen_pady(${1:Param1}, ${2:Param2}, ${3:TkW}, ${4:Param4}, ${5:Param5}) $6' -p140734 -tp140735 -a(S'gen_pady/9' -p140736 -S'gen_pady(${1:Pad}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140737 -tp140738 -a(S'gen_parent/5' -p140739 -S'gen_parent(${1:Param1}, ${2:Gstkid}, ${3:Param3}, ${4:DB}, ${5:Param5}) $6' -p140740 -tp140741 -a(S'gen_raise/5' -p140742 -S'gen_raise(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}, ${5:Param5}) $6' -p140743 -tp140744 -a(S'gen_raise/9' -p140745 -S'gen_raise(${1:Param1}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140746 -tp140747 -a(S'gen_relief/5' -p140748 -S'gen_relief(${1:Param1}, ${2:Param2}, ${3:TkW}, ${4:Param4}, ${5:Param5}) $6' -p140749 -tp140750 -a(S'gen_relief/9' -p140751 -S'gen_relief(${1:Relief}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140752 -tp140753 -a(S'gen_selectbg/5' -p140754 -S'gen_selectbg(${1:Param1}, ${2:Param2}, ${3:TkW}, ${4:Param4}, ${5:Param5}) $6' -p140755 -tp140756 -a(S'gen_selectbg/9' -p140757 -S'gen_selectbg(${1:Color}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140758 -tp140759 -a(S'gen_selectbw/5' -p140760 -S'gen_selectbw(${1:Param1}, ${2:Param2}, ${3:TkW}, ${4:Param4}, ${5:Param5}) $6' -p140761 -tp140762 -a(S'gen_selectbw/9' -p140763 -S'gen_selectbw(${1:Width}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140764 -tp140765 -a(S'gen_selectfg/5' -p140766 -S'gen_selectfg(${1:Param1}, ${2:Param2}, ${3:TkW}, ${4:Param4}, ${5:Param5}) $6' -p140767 -tp140768 -a(S'gen_selectfg/9' -p140769 -S'gen_selectfg(${1:Color}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140770 -tp140771 -a(S'gen_setfocus/5' -p140772 -S'gen_setfocus(${1:Param1}, ${2:Param2}, ${3:TkW}, ${4:Param4}, ${5:Param5}) $6' -p140773 -tp140774 -a(S'gen_setfocus/9' -p140775 -S'gen_setfocus(${1:Param1}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140776 -tp140777 -a(S'gen_so_activebg/5' -p140778 -S'gen_so_activebg(${1:Param1}, ${2:Param2}, ${3:TkW}, ${4:Param4}, ${5:Param5}) $6' -p140779 -tp140780 -a(S'gen_so_activebg/9' -p140781 -S'gen_so_activebg(${1:Color}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140782 -tp140783 -a(S'gen_so_bc/5' -p140784 -S'gen_so_bc(${1:Param1}, ${2:Param2}, ${3:TkW}, ${4:Param4}, ${5:Param5}) $6' -p140785 -tp140786 -a(S'gen_so_bc/9' -p140787 -S'gen_so_bc(${1:Color}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140788 -tp140789 -a(S'gen_so_bg/5' -p140790 -S'gen_so_bg(${1:Param1}, ${2:Gstkid}, ${3:Param3}, ${4:Param4}, ${5:Param5}) $6' -p140791 -tp140792 -a(S'gen_so_bg/9' -p140793 -S'gen_so_bg(${1:Color}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140794 -tp140795 -a(S'gen_so_hscroll/5' -p140796 -S'gen_so_hscroll(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}, ${5:Param5}) $6' -p140797 -tp140798 -a(S'gen_so_scrollbg/5' -p140799 -S'gen_so_scrollbg(${1:Param1}, ${2:Param2}, ${3:TkW}, ${4:Param4}, ${5:Param5}) $6' -p140800 -tp140801 -a(S'gen_so_scrollbg/9' -p140802 -S'gen_so_scrollbg(${1:Color}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140803 -tp140804 -a(S'gen_so_scrollfg/5' -p140805 -S'gen_so_scrollfg(${1:Param1}, ${2:Param2}, ${3:TkW}, ${4:Param4}, ${5:Param5}) $6' -p140806 -tp140807 -a(S'gen_so_scrollfg/9' -p140808 -S'gen_so_scrollfg(${1:Color}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140809 -tp140810 -a(S'gen_so_scrolls/9' -p140811 -S'gen_so_scrolls(${1:Param1}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140812 -tp140813 -a(S'gen_so_selectbg/5' -p140814 -S'gen_so_selectbg(${1:Param1}, ${2:Gstkid}, ${3:Param3}, ${4:Param4}, ${5:Param5}) $6' -p140815 -tp140816 -a(S'gen_so_selectbg/9' -p140817 -S'gen_so_selectbg(${1:Color}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140818 -tp140819 -a(S'gen_so_selectbw/5' -p140820 -S'gen_so_selectbw(${1:Param1}, ${2:Gstkid}, ${3:Param3}, ${4:Param4}, ${5:Param5}) $6' -p140821 -tp140822 -a(S'gen_so_selectbw/9' -p140823 -S'gen_so_selectbw(${1:Width}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140824 -tp140825 -a(S'gen_so_selectfg/5' -p140826 -S'gen_so_selectfg(${1:Param1}, ${2:Gstkid}, ${3:Param3}, ${4:Param4}, ${5:Param5}) $6' -p140827 -tp140828 -a(S'gen_so_selectfg/9' -p140829 -S'gen_so_selectfg(${1:Color}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140830 -tp140831 -a(S'gen_so_vscroll/5' -p140832 -S'gen_so_vscroll(${1:Param1}, ${2:Param2}, ${3:Param3}, ${4:Param4}, ${5:Param5}) $6' -p140833 -tp140834 -a(S'gen_type/5' -p140835 -S'gen_type(${1:Param1}, ${2:Gstkid}, ${3:Param3}, ${4:Param4}, ${5:Param5}) $6' -p140836 -tp140837 -a(S'gen_width/5' -p140838 -S'gen_width(${1:Param1}, ${2:Gstkid}, ${3:Param3}, ${4:DB}, ${5:Param5}) $6' -p140839 -tp140840 -a(S'gen_width/9' -p140841 -S'gen_width(${1:Width}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140842 -tp140843 -a(S'gen_x/5' -p140844 -S'gen_x(${1:Param1}, ${2:Gstkid}, ${3:Param3}, ${4:DB}, ${5:Param5}) $6' -p140845 -tp140846 -a(S'gen_x/9' -p140847 -S'gen_x(${1:X}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140848 -tp140849 -a(S'gen_y/5' -p140850 -S'gen_y(${1:Param1}, ${2:Gstkid}, ${3:Param3}, ${4:DB}, ${5:Param5}) $6' -p140851 -tp140852 -a(S'gen_y/9' -p140853 -S'gen_y(${1:Y}, ${2:Opts}, ${3:Gstkid}, ${4:TkW}, ${5:DB}, ${6:ExtraArg}, ${7:S}, ${8:P}, ${9:C}) $10' -p140854 -tp140855 -a(S'handle_external_opt_call/9' -p140856 -S'handle_external_opt_call(${1:Param1}, ${2:Gstkid}, ${3:TkW}, ${4:DB}, ${5:ExtraArg}, ${6:ExtRes}, ${7:S}, ${8:P}, ${9:C}) $10' -p140857 -tp140858 -a(S'handle_external_read/1' -p140859 -S'handle_external_read(${1:Res}) $2' -p140860 -tp140861 -a(S'item_bind/6' -p140862 -S'item_bind(${1:DB}, ${2:Gstkid}, ${3:Canvas}, ${4:Item}, ${5:Etype}, ${6:On}) $7' -p140863 -tp140864 -a(S'item_ebind/6' -p140865 -S'item_ebind(${1:DB}, ${2:Gstkid}, ${3:Canvas}, ${4:Item}, ${5:Etype}, ${6:Edata}) $7' -p140866 -tp140867 -a(S'item_eunbind/5' -p140868 -S'item_eunbind(${1:DB}, ${2:Gstkid}, ${3:Canvas}, ${4:Item}, ${5:Etype}) $6' -p140869 -tp140870 -a(S'make_command/4' -p140871 -S'make_command(${1:Opts}, ${2:Gstkid}, ${3:Scmd}, ${4:DB}) $5' -p140872 -tp140873 -a(S'make_command/5' -p140874 -S'make_command(${1:Opts}, ${2:Gstkid}, ${3:Scmd}, ${4:Pcmd}, ${5:DB}) $6' -p140875 -tp140876 -a(S'make_command/6' -p140877 -S'make_command(${1:Options}, ${2:Gstkid}, ${3:TkW}, ${4:SCmd}, ${5:PCmd}, ${6:DB}) $7' -p140878 -tp140879 -a(S'make_command/7' -p140880 -S'make_command(${1:Options}, ${2:Gstkid}, ${3:TkW}, ${4:SCmd}, ${5:PCmd}, ${6:DB}, ${7:ExtraArg}) $8' -p140881 -tp140882 -a(S'make_extern_id/2' -p140883 -S'make_extern_id(${1:Param1}, ${2:DB}) $3' -p140884 -tp140885 -a(S'merge_default_options/2' -p140886 -S'merge_default_options(${1:Defs}, ${2:Opts}) $3' -p140887 -tp140888 -a(S'merge_default_options/3' -p140889 -S'merge_default_options(${1:ParOpts}, ${2:BuildInOpts}, ${3:Opts}) $4' -p140890 -tp140891 -a(S'mk_cmd_and_exec/4' -p140892 -S'mk_cmd_and_exec(${1:Opts}, ${2:Gstkid}, ${3:Scmd}, ${4:DB}) $5' -p140893 -tp140894 -a(S'mk_cmd_and_exec/5' -p140895 -S'mk_cmd_and_exec(${1:Opts}, ${2:Gstkid}, ${3:Scmd}, ${4:Pcmd}, ${5:DB}) $6' -p140896 -tp140897 -a(S'mk_cmd_and_exec/6' -p140898 -S'mk_cmd_and_exec(${1:Options}, ${2:Gstkid}, ${3:TkW}, ${4:SCmd}, ${5:PCmd}, ${6:DB}) $7' -p140899 -tp140900 -a(S'mk_cmd_and_exec/7' -p140901 -S'mk_cmd_and_exec(${1:Options}, ${2:Gstkid}, ${3:TkW}, ${4:SCmd}, ${5:PCmd}, ${6:DB}, ${7:ExtraArg}) $8' -p140902 -tp140903 -a(S'mk_create_opts_for_child/4' -p140904 -S'mk_create_opts_for_child(${1:DB}, ${2:Param2}, ${3:Pgstkid}, ${4:Opts}) $5' -p140905 -tp140906 -a(S'mk_tkw_child/2' -p140907 -S'mk_tkw_child(${1:DB}, ${2:Param2}) $3' -p140908 -tp140909 -a(S'move_coords/3' -p140910 -S'move_coords(${1:Dx}, ${2:Dy}, ${3:Coords}) $4' -p140911 -tp140912 -a(S'obj/1' -p140913 -S'obj(${1:Param1}) $2' -p140914 -tp140915 -a(S'opts_for_child/3' -p140916 -S'opts_for_child(${1:DB}, ${2:Childtype}, ${3:ParId}) $4' -p140917 -tp140918 -a(S'out_opts/8' -p140919 -S'out_opts() $1' -p140920 -tp140921 -a(S'parse_scrolls/1' -p140922 -S'parse_scrolls(${1:Opts}) $2' -p140923 -tp140924 -a(S'parse_scrolls/2' -p140925 -S'parse_scrolls(${1:Gstkid}, ${2:Opts}) $3' -p140926 -tp140927 -a(S'parse_scrolls/4' -p140928 -S'parse_scrolls(${1:Param1}, ${2:Vscroll}, ${3:Hscroll}, ${4:Opts}) $5' -p140929 -tp140930 -a(S'read_option/3' -p140931 -S'read_option(${1:DB}, ${2:Gstkid}, ${3:Opt}) $4' -p140932 -tp140933 -a(S'read_option/4' -p140934 -S'read_option(${1:DB}, ${2:Gstkid}, ${3:Opt}, ${4:ExtraArg}) $5' -p140935 -tp140936 -a(S'read_option/5' -p140937 -S'read_option() $1' -p140938 -tp140939 -a(S'scrolls_vh/3' -p140940 -S'scrolls_vh(${1:W}, ${2:V}, ${3:H}) $4' -p140941 -tp140942 -asS'dialyzer_gui_wx' -p140943 -(lp140944 -(S'start/1' -p140945 -S'start(${1:DialyzerOptions}) $2' -p140946 -tp140947 -asS'diameter_sup' -p140948 -(lp140949 -(S'init/1' -p140950 -S'init(${1:Param1}) $2' -p140951 -tp140952 -a(S'start_link/0' -p140953 -S'start_link() $1' -p140954 -tp140955 -a(S'tree/0' -p140956 -S'tree() $1' -p140957 -tp140958 -asS'CosPropertyService_ConstraintNotSupported' -p140959 -(lp140960 -(S'id/0' -p140961 -S'id() $1' -p140962 -tp140963 -a(S'name/0' -p140964 -S'name() $1' -p140965 -tp140966 -a(S'tc/0' -p140967 -S'tc() $1' -p140968 -tp140969 -asS'CosNotifyChannelAdmin_ProxyPushConsumer' -p140970 -(lp140971 -(S"'_get_MyAdmin'/1" -p140972 -S"'_get_MyAdmin'(${1:OE_THIS}) $2" -p140973 -tp140974 -a(S"'_get_MyAdmin'/2" -p140975 -S"'_get_MyAdmin'(${1:OE_THIS}, ${2:OE_Options}) $3" -p140976 -tp140977 -a(S"'_get_MyType'/1" -p140978 -S"'_get_MyType'(${1:OE_THIS}) $2" -p140979 -tp140980 -a(S"'_get_MyType'/2" -p140981 -S"'_get_MyType'(${1:OE_THIS}, ${2:OE_Options}) $3" -p140982 -tp140983 -a(S'add_filter/2' -p140984 -S'add_filter(${1:OE_THIS}, ${2:New_filter}) $3' -p140985 -tp140986 -a(S'add_filter/3' -p140987 -S'add_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:New_filter}) $4' -p140988 -tp140989 -a(S'code_change/3' -p140990 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p140991 -tp140992 -a(S'connect_any_push_supplier/2' -p140993 -S'connect_any_push_supplier(${1:OE_THIS}, ${2:Push_supplier}) $3' -p140994 -tp140995 -a(S'connect_any_push_supplier/3' -p140996 -S'connect_any_push_supplier(${1:OE_THIS}, ${2:OE_Options}, ${3:Push_supplier}) $4' -p140997 -tp140998 -a(S'connect_push_supplier/2' -p140999 -S'connect_push_supplier(${1:OE_THIS}, ${2:Push_supplier}) $3' -p141000 -tp141001 -a(S'connect_push_supplier/3' -p141002 -S'connect_push_supplier(${1:OE_THIS}, ${2:OE_Options}, ${3:Push_supplier}) $4' -p141003 -tp141004 -a(S'disconnect_push_consumer/1' -p141005 -S'disconnect_push_consumer(${1:OE_THIS}) $2' -p141006 -tp141007 -a(S'disconnect_push_consumer/2' -p141008 -S'disconnect_push_consumer(${1:OE_THIS}, ${2:OE_Options}) $3' -p141009 -tp141010 -a(S'get_all_filters/1' -p141011 -S'get_all_filters(${1:OE_THIS}) $2' -p141012 -tp141013 -a(S'get_all_filters/2' -p141014 -S'get_all_filters(${1:OE_THIS}, ${2:OE_Options}) $3' -p141015 -tp141016 -a(S'get_filter/2' -p141017 -S'get_filter(${1:OE_THIS}, ${2:Filter}) $3' -p141018 -tp141019 -a(S'get_filter/3' -p141020 -S'get_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:Filter}) $4' -p141021 -tp141022 -a(S'get_qos/1' -p141023 -S'get_qos(${1:OE_THIS}) $2' -p141024 -tp141025 -a(S'get_qos/2' -p141026 -S'get_qos(${1:OE_THIS}, ${2:OE_Options}) $3' -p141027 -tp141028 -a(S'handle_call/3' -p141029 -S'handle_call(${1:Param1}, ${2:OE_From}, ${3:OE_State}) $4' -p141030 -tp141031 -a(S'handle_cast/2' -p141032 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p141033 -tp141034 -a(S'handle_info/2' -p141035 -S'handle_info(${1:Info}, ${2:State}) $3' -p141036 -tp141037 -a(S'init/1' -p141038 -S'init(${1:Env}) $2' -p141039 -tp141040 -a(S'obtain_subscription_types/2' -p141041 -S'obtain_subscription_types(${1:OE_THIS}, ${2:Mode}) $3' -p141042 -tp141043 -a(S'obtain_subscription_types/3' -p141044 -S'obtain_subscription_types(${1:OE_THIS}, ${2:OE_Options}, ${3:Mode}) $4' -p141045 -tp141046 -a(S'oe_create/0' -p141047 -S'oe_create() $1' -p141048 -tp141049 -a(S'oe_create/1' -p141050 -S'oe_create(${1:Env}) $2' -p141051 -tp141052 -a(S'oe_create/2' -p141053 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p141054 -tp141055 -a(S'oe_create_link/0' -p141056 -S'oe_create_link() $1' -p141057 -tp141058 -a(S'oe_create_link/1' -p141059 -S'oe_create_link(${1:Env}) $2' -p141060 -tp141061 -a(S'oe_create_link/2' -p141062 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p141063 -tp141064 -a(S'oe_get_interface/0' -p141065 -S'oe_get_interface() $1' -p141066 -tp141067 -a(S'oe_is_a/1' -p141068 -S'oe_is_a(${1:Param1}) $2' -p141069 -tp141070 -a(S'oe_tc/1' -p141071 -S'oe_tc(${1:Param1}) $2' -p141072 -tp141073 -a(S'offer_change/3' -p141074 -S'offer_change(${1:OE_THIS}, ${2:Added}, ${3:Removed}) $4' -p141075 -tp141076 -a(S'offer_change/4' -p141077 -S'offer_change(${1:OE_THIS}, ${2:OE_Options}, ${3:Added}, ${4:Removed}) $5' -p141078 -tp141079 -a(S'push/2' -p141080 -S'push(${1:OE_THIS}, ${2:Data}) $3' -p141081 -tp141082 -a(S'push/3' -p141083 -S'push(${1:OE_THIS}, ${2:OE_Options}, ${3:Data}) $4' -p141084 -tp141085 -a(S'remove_all_filters/1' -p141086 -S'remove_all_filters(${1:OE_THIS}) $2' -p141087 -tp141088 -a(S'remove_all_filters/2' -p141089 -S'remove_all_filters(${1:OE_THIS}, ${2:OE_Options}) $3' -p141090 -tp141091 -a(S'remove_filter/2' -p141092 -S'remove_filter(${1:OE_THIS}, ${2:Filter}) $3' -p141093 -tp141094 -a(S'remove_filter/3' -p141095 -S'remove_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:Filter}) $4' -p141096 -tp141097 -a(S'set_qos/2' -p141098 -S'set_qos(${1:OE_THIS}, ${2:Qos}) $3' -p141099 -tp141100 -a(S'set_qos/3' -p141101 -S'set_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Qos}) $4' -p141102 -tp141103 -a(S'terminate/2' -p141104 -S'terminate(${1:Reason}, ${2:State}) $3' -p141105 -tp141106 -a(S'typeID/0' -p141107 -S'typeID() $1' -p141108 -tp141109 -a(S'validate_event_qos/2' -p141110 -S'validate_event_qos(${1:OE_THIS}, ${2:Required_qos}) $3' -p141111 -tp141112 -a(S'validate_event_qos/3' -p141113 -S'validate_event_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Required_qos}) $4' -p141114 -tp141115 -a(S'validate_qos/2' -p141116 -S'validate_qos(${1:OE_THIS}, ${2:Required_qos}) $3' -p141117 -tp141118 -a(S'validate_qos/3' -p141119 -S'validate_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Required_qos}) $4' -p141120 -tp141121 -asS'dbg_wx_filedialog_win' -p141122 -(lp141123 -(S'code_change/3' -p141124 -S'code_change(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p141125 -tp141126 -a(S'destroy/1' -p141127 -S'destroy(${1:FD}) $2' -p141128 -tp141129 -a(S'getDirectory/1' -p141130 -S'getDirectory(${1:FD}) $2' -p141131 -tp141132 -a(S'getFilename/1' -p141133 -S'getFilename(${1:FD}) $2' -p141134 -tp141135 -a(S'getFilenames/1' -p141136 -S'getFilenames(${1:FD}) $2' -p141137 -tp141138 -a(S'handle_call/3' -p141139 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p141140 -tp141141 -a(S'handle_cast/2' -p141142 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p141143 -tp141144 -a(S'handle_event/2' -p141145 -S'handle_event(${1:Event}, ${2:State0}) $3' -p141146 -tp141147 -a(S'handle_info/2' -p141148 -S'handle_info(${1:Param1}, ${2:State}) $3' -p141149 -tp141150 -a(S'init/1' -p141151 -S'init(${1:Param1}) $2' -p141152 -tp141153 -a(S'new/3' -p141154 -S'new(${1:Parent}, ${2:Id}, ${3:Options0}) $4' -p141155 -tp141156 -a(S'terminate/2' -p141157 -S'terminate(${1:Param1}, ${2:State}) $3' -p141158 -tp141159 -asS'wxFileDialog' -p141160 -(lp141161 -(S'cacheBestSize/2' -p141162 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p141163 -tp141164 -a(S'captureMouse/1' -p141165 -S'captureMouse(${1:This}) $2' -p141166 -tp141167 -a(S'center/1' -p141168 -S'center(${1:This}) $2' -p141169 -tp141170 -a(S'center/2' -p141171 -S'center(${1:This}, ${2:Options}) $3' -p141172 -tp141173 -a(S'centerOnParent/1' -p141174 -S'centerOnParent(${1:This}) $2' -p141175 -tp141176 -a(S'centerOnParent/2' -p141177 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p141178 -tp141179 -a(S'centerOnScreen/1' -p141180 -S'centerOnScreen(${1:This}) $2' -p141181 -tp141182 -a(S'centerOnScreen/2' -p141183 -S'centerOnScreen(${1:This}, ${2:Options}) $3' -p141184 -tp141185 -a(S'centre/1' -p141186 -S'centre(${1:This}) $2' -p141187 -tp141188 -a(S'centre/2' -p141189 -S'centre(${1:This}, ${2:Options}) $3' -p141190 -tp141191 -a(S'centreOnParent/1' -p141192 -S'centreOnParent(${1:This}) $2' -p141193 -tp141194 -a(S'centreOnParent/2' -p141195 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p141196 -tp141197 -a(S'centreOnScreen/1' -p141198 -S'centreOnScreen(${1:This}) $2' -p141199 -tp141200 -a(S'centreOnScreen/2' -p141201 -S'centreOnScreen(${1:This}, ${2:Options}) $3' -p141202 -tp141203 -a(S'clearBackground/1' -p141204 -S'clearBackground(${1:This}) $2' -p141205 -tp141206 -a(S'clientToScreen/2' -p141207 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p141208 -tp141209 -a(S'clientToScreen/3' -p141210 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p141211 -tp141212 -a(S'close/1' -p141213 -S'close(${1:This}) $2' -p141214 -tp141215 -a(S'close/2' -p141216 -S'close(${1:This}, ${2:Options}) $3' -p141217 -tp141218 -a(S'connect/2' -p141219 -S'connect(${1:This}, ${2:EventType}) $3' -p141220 -tp141221 -a(S'connect/3' -p141222 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p141223 -tp141224 -a(S'convertDialogToPixels/2' -p141225 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p141226 -tp141227 -a(S'convertPixelsToDialog/2' -p141228 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p141229 -tp141230 -a(S'createButtonSizer/2' -p141231 -S'createButtonSizer(${1:This}, ${2:Flags}) $3' -p141232 -tp141233 -a(S'createStdDialogButtonSizer/2' -p141234 -S'createStdDialogButtonSizer(${1:This}, ${2:Flags}) $3' -p141235 -tp141236 -a(S'destroy/1' -p141237 -S'destroy(${1:This}) $2' -p141238 -tp141239 -a(S'destroyChildren/1' -p141240 -S'destroyChildren(${1:This}) $2' -p141241 -tp141242 -a(S'disable/1' -p141243 -S'disable(${1:This}) $2' -p141244 -tp141245 -a(S'disconnect/1' -p141246 -S'disconnect(${1:This}) $2' -p141247 -tp141248 -a(S'disconnect/2' -p141249 -S'disconnect(${1:This}, ${2:EventType}) $3' -p141250 -tp141251 -a(S'disconnect/3' -p141252 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p141253 -tp141254 -a(S'enable/1' -p141255 -S'enable(${1:This}) $2' -p141256 -tp141257 -a(S'enable/2' -p141258 -S'enable(${1:This}, ${2:Options}) $3' -p141259 -tp141260 -a(S'endModal/2' -p141261 -S'endModal(${1:This}, ${2:RetCode}) $3' -p141262 -tp141263 -a(S'findWindow/2' -p141264 -S'findWindow(${1:This}, ${2:Winid}) $3' -p141265 -tp141266 -a(S'fit/1' -p141267 -S'fit(${1:This}) $2' -p141268 -tp141269 -a(S'fitInside/1' -p141270 -S'fitInside(${1:This}) $2' -p141271 -tp141272 -a(S'freeze/1' -p141273 -S'freeze(${1:This}) $2' -p141274 -tp141275 -a(S'getAcceleratorTable/1' -p141276 -S'getAcceleratorTable(${1:This}) $2' -p141277 -tp141278 -a(S'getAffirmativeId/1' -p141279 -S'getAffirmativeId(${1:This}) $2' -p141280 -tp141281 -a(S'getBackgroundColour/1' -p141282 -S'getBackgroundColour(${1:This}) $2' -p141283 -tp141284 -a(S'getBackgroundStyle/1' -p141285 -S'getBackgroundStyle(${1:This}) $2' -p141286 -tp141287 -a(S'getBestSize/1' -p141288 -S'getBestSize(${1:This}) $2' -p141289 -tp141290 -a(S'getCaret/1' -p141291 -S'getCaret(${1:This}) $2' -p141292 -tp141293 -a(S'getCharHeight/1' -p141294 -S'getCharHeight(${1:This}) $2' -p141295 -tp141296 -a(S'getCharWidth/1' -p141297 -S'getCharWidth(${1:This}) $2' -p141298 -tp141299 -a(S'getChildren/1' -p141300 -S'getChildren(${1:This}) $2' -p141301 -tp141302 -a(S'getClientSize/1' -p141303 -S'getClientSize(${1:This}) $2' -p141304 -tp141305 -a(S'getContainingSizer/1' -p141306 -S'getContainingSizer(${1:This}) $2' -p141307 -tp141308 -a(S'getCursor/1' -p141309 -S'getCursor(${1:This}) $2' -p141310 -tp141311 -a(S'getDirectory/1' -p141312 -S'getDirectory(${1:This}) $2' -p141313 -tp141314 -a(S'getDropTarget/1' -p141315 -S'getDropTarget(${1:This}) $2' -p141316 -tp141317 -a(S'getEventHandler/1' -p141318 -S'getEventHandler(${1:This}) $2' -p141319 -tp141320 -a(S'getExtraStyle/1' -p141321 -S'getExtraStyle(${1:This}) $2' -p141322 -tp141323 -a(S'getFilename/1' -p141324 -S'getFilename(${1:This}) $2' -p141325 -tp141326 -a(S'getFilenames/1' -p141327 -S'getFilenames(${1:This}) $2' -p141328 -tp141329 -a(S'getFilterIndex/1' -p141330 -S'getFilterIndex(${1:This}) $2' -p141331 -tp141332 -a(S'getFont/1' -p141333 -S'getFont(${1:This}) $2' -p141334 -tp141335 -a(S'getForegroundColour/1' -p141336 -S'getForegroundColour(${1:This}) $2' -p141337 -tp141338 -a(S'getGrandParent/1' -p141339 -S'getGrandParent(${1:This}) $2' -p141340 -tp141341 -a(S'getHandle/1' -p141342 -S'getHandle(${1:This}) $2' -p141343 -tp141344 -a(S'getHelpText/1' -p141345 -S'getHelpText(${1:This}) $2' -p141346 -tp141347 -a(S'getIcon/1' -p141348 -S'getIcon(${1:This}) $2' -p141349 -tp141350 -a(S'getIcons/1' -p141351 -S'getIcons(${1:This}) $2' -p141352 -tp141353 -a(S'getId/1' -p141354 -S'getId(${1:This}) $2' -p141355 -tp141356 -a(S'getLabel/1' -p141357 -S'getLabel(${1:This}) $2' -p141358 -tp141359 -a(S'getMaxSize/1' -p141360 -S'getMaxSize(${1:This}) $2' -p141361 -tp141362 -a(S'getMessage/1' -p141363 -S'getMessage(${1:This}) $2' -p141364 -tp141365 -a(S'getMinSize/1' -p141366 -S'getMinSize(${1:This}) $2' -p141367 -tp141368 -a(S'getName/1' -p141369 -S'getName(${1:This}) $2' -p141370 -tp141371 -a(S'getParent/1' -p141372 -S'getParent(${1:This}) $2' -p141373 -tp141374 -a(S'getPath/1' -p141375 -S'getPath(${1:This}) $2' -p141376 -tp141377 -a(S'getPaths/1' -p141378 -S'getPaths(${1:This}) $2' -p141379 -tp141380 -a(S'getPosition/1' -p141381 -S'getPosition(${1:This}) $2' -p141382 -tp141383 -a(S'getRect/1' -p141384 -S'getRect(${1:This}) $2' -p141385 -tp141386 -a(S'getReturnCode/1' -p141387 -S'getReturnCode(${1:This}) $2' -p141388 -tp141389 -a(S'getScreenPosition/1' -p141390 -S'getScreenPosition(${1:This}) $2' -p141391 -tp141392 -a(S'getScreenRect/1' -p141393 -S'getScreenRect(${1:This}) $2' -p141394 -tp141395 -a(S'getScrollPos/2' -p141396 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p141397 -tp141398 -a(S'getScrollRange/2' -p141399 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p141400 -tp141401 -a(S'getScrollThumb/2' -p141402 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p141403 -tp141404 -a(S'getSize/1' -p141405 -S'getSize(${1:This}) $2' -p141406 -tp141407 -a(S'getSizer/1' -p141408 -S'getSizer(${1:This}) $2' -p141409 -tp141410 -a(S'getTextExtent/2' -p141411 -S'getTextExtent(${1:This}, ${2:String}) $3' -p141412 -tp141413 -a(S'getTextExtent/3' -p141414 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p141415 -tp141416 -a(S'getTitle/1' -p141417 -S'getTitle(${1:This}) $2' -p141418 -tp141419 -a(S'getToolTip/1' -p141420 -S'getToolTip(${1:This}) $2' -p141421 -tp141422 -a(S'getUpdateRegion/1' -p141423 -S'getUpdateRegion(${1:This}) $2' -p141424 -tp141425 -a(S'getVirtualSize/1' -p141426 -S'getVirtualSize(${1:This}) $2' -p141427 -tp141428 -a(S'getWildcard/1' -p141429 -S'getWildcard(${1:This}) $2' -p141430 -tp141431 -a(S'getWindowStyleFlag/1' -p141432 -S'getWindowStyleFlag(${1:This}) $2' -p141433 -tp141434 -a(S'getWindowVariant/1' -p141435 -S'getWindowVariant(${1:This}) $2' -p141436 -tp141437 -a(S'hasCapture/1' -p141438 -S'hasCapture(${1:This}) $2' -p141439 -tp141440 -a(S'hasScrollbar/2' -p141441 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p141442 -tp141443 -a(S'hasTransparentBackground/1' -p141444 -S'hasTransparentBackground(${1:This}) $2' -p141445 -tp141446 -a(S'hide/1' -p141447 -S'hide(${1:This}) $2' -p141448 -tp141449 -a(S'iconize/1' -p141450 -S'iconize(${1:This}) $2' -p141451 -tp141452 -a(S'iconize/2' -p141453 -S'iconize(${1:This}, ${2:Options}) $3' -p141454 -tp141455 -a(S'inheritAttributes/1' -p141456 -S'inheritAttributes(${1:This}) $2' -p141457 -tp141458 -a(S'initDialog/1' -p141459 -S'initDialog(${1:This}) $2' -p141460 -tp141461 -a(S'invalidateBestSize/1' -p141462 -S'invalidateBestSize(${1:This}) $2' -p141463 -tp141464 -a(S'isActive/1' -p141465 -S'isActive(${1:This}) $2' -p141466 -tp141467 -a(S'isEnabled/1' -p141468 -S'isEnabled(${1:This}) $2' -p141469 -tp141470 -a(S'isExposed/2' -p141471 -S'isExposed(${1:This}, ${2:Pt}) $3' -p141472 -tp141473 -a(S'isExposed/3' -p141474 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p141475 -tp141476 -a(S'isExposed/5' -p141477 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p141478 -tp141479 -a(S'isFullScreen/1' -p141480 -S'isFullScreen(${1:This}) $2' -p141481 -tp141482 -a(S'isIconized/1' -p141483 -S'isIconized(${1:This}) $2' -p141484 -tp141485 -a(S'isMaximized/1' -p141486 -S'isMaximized(${1:This}) $2' -p141487 -tp141488 -a(S'isModal/1' -p141489 -S'isModal(${1:This}) $2' -p141490 -tp141491 -a(S'isRetained/1' -p141492 -S'isRetained(${1:This}) $2' -p141493 -tp141494 -a(S'isShown/1' -p141495 -S'isShown(${1:This}) $2' -p141496 -tp141497 -a(S'isTopLevel/1' -p141498 -S'isTopLevel(${1:This}) $2' -p141499 -tp141500 -a(S'layout/1' -p141501 -S'layout(${1:This}) $2' -p141502 -tp141503 -a(S'lineDown/1' -p141504 -S'lineDown(${1:This}) $2' -p141505 -tp141506 -a(S'lineUp/1' -p141507 -S'lineUp(${1:This}) $2' -p141508 -tp141509 -a(S'lower/1' -p141510 -S'lower(${1:This}) $2' -p141511 -tp141512 -a(S'makeModal/1' -p141513 -S'makeModal(${1:This}) $2' -p141514 -tp141515 -a(S'makeModal/2' -p141516 -S'makeModal(${1:This}, ${2:Options}) $3' -p141517 -tp141518 -a(S'maximize/1' -p141519 -S'maximize(${1:This}) $2' -p141520 -tp141521 -a(S'maximize/2' -p141522 -S'maximize(${1:This}, ${2:Options}) $3' -p141523 -tp141524 -a(S'move/2' -p141525 -S'move(${1:This}, ${2:Pt}) $3' -p141526 -tp141527 -a(S'move/3' -p141528 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p141529 -tp141530 -a(S'move/4' -p141531 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p141532 -tp141533 -a(S'moveAfterInTabOrder/2' -p141534 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p141535 -tp141536 -a(S'moveBeforeInTabOrder/2' -p141537 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p141538 -tp141539 -a(S'navigate/1' -p141540 -S'navigate(${1:This}) $2' -p141541 -tp141542 -a(S'navigate/2' -p141543 -S'navigate(${1:This}, ${2:Options}) $3' -p141544 -tp141545 -a(S'new/1' -p141546 -S'new(${1:Parent}) $2' -p141547 -tp141548 -a(S'new/2' -p141549 -S'new(${1:Parent}, ${2:Param2}) $3' -p141550 -tp141551 -a(S'pageDown/1' -p141552 -S'pageDown(${1:This}) $2' -p141553 -tp141554 -a(S'pageUp/1' -p141555 -S'pageUp(${1:This}) $2' -p141556 -tp141557 -a(S'parent_class/1' -p141558 -S'parent_class(${1:Param1}) $2' -p141559 -tp141560 -a(S'popEventHandler/1' -p141561 -S'popEventHandler(${1:This}) $2' -p141562 -tp141563 -a(S'popEventHandler/2' -p141564 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p141565 -tp141566 -a(S'popupMenu/2' -p141567 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p141568 -tp141569 -a(S'popupMenu/3' -p141570 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p141571 -tp141572 -a(S'popupMenu/4' -p141573 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p141574 -tp141575 -a(S'raise/1' -p141576 -S'raise(${1:This}) $2' -p141577 -tp141578 -a(S'refresh/1' -p141579 -S'refresh(${1:This}) $2' -p141580 -tp141581 -a(S'refresh/2' -p141582 -S'refresh(${1:This}, ${2:Options}) $3' -p141583 -tp141584 -a(S'refreshRect/2' -p141585 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p141586 -tp141587 -a(S'refreshRect/3' -p141588 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p141589 -tp141590 -a(S'releaseMouse/1' -p141591 -S'releaseMouse(${1:This}) $2' -p141592 -tp141593 -a(S'removeChild/2' -p141594 -S'removeChild(${1:This}, ${2:Child}) $3' -p141595 -tp141596 -a(S'reparent/2' -p141597 -S'reparent(${1:This}, ${2:NewParent}) $3' -p141598 -tp141599 -a(S'requestUserAttention/1' -p141600 -S'requestUserAttention(${1:This}) $2' -p141601 -tp141602 -a(S'requestUserAttention/2' -p141603 -S'requestUserAttention(${1:This}, ${2:Options}) $3' -p141604 -tp141605 -a(S'screenToClient/1' -p141606 -S'screenToClient(${1:This}) $2' -p141607 -tp141608 -a(S'screenToClient/2' -p141609 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p141610 -tp141611 -a(S'scrollLines/2' -p141612 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p141613 -tp141614 -a(S'scrollPages/2' -p141615 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p141616 -tp141617 -a(S'scrollWindow/3' -p141618 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p141619 -tp141620 -a(S'scrollWindow/4' -p141621 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p141622 -tp141623 -a(S'setAcceleratorTable/2' -p141624 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p141625 -tp141626 -a(S'setAffirmativeId/2' -p141627 -S'setAffirmativeId(${1:This}, ${2:AffirmativeId}) $3' -p141628 -tp141629 -a(S'setAutoLayout/2' -p141630 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p141631 -tp141632 -a(S'setBackgroundColour/2' -p141633 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p141634 -tp141635 -a(S'setBackgroundStyle/2' -p141636 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p141637 -tp141638 -a(S'setCaret/2' -p141639 -S'setCaret(${1:This}, ${2:Caret}) $3' -p141640 -tp141641 -a(S'setClientSize/2' -p141642 -S'setClientSize(${1:This}, ${2:Size}) $3' -p141643 -tp141644 -a(S'setClientSize/3' -p141645 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p141646 -tp141647 -a(S'setContainingSizer/2' -p141648 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p141649 -tp141650 -a(S'setCursor/2' -p141651 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p141652 -tp141653 -a(S'setDirectory/2' -p141654 -S'setDirectory(${1:This}, ${2:Dir}) $3' -p141655 -tp141656 -a(S'setDropTarget/2' -p141657 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p141658 -tp141659 -a(S'setExtraStyle/2' -p141660 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p141661 -tp141662 -a(S'setFilename/2' -p141663 -S'setFilename(${1:This}, ${2:Name}) $3' -p141664 -tp141665 -a(S'setFilterIndex/2' -p141666 -S'setFilterIndex(${1:This}, ${2:FilterIndex}) $3' -p141667 -tp141668 -a(S'setFocus/1' -p141669 -S'setFocus(${1:This}) $2' -p141670 -tp141671 -a(S'setFocusFromKbd/1' -p141672 -S'setFocusFromKbd(${1:This}) $2' -p141673 -tp141674 -a(S'setFont/2' -p141675 -S'setFont(${1:This}, ${2:Font}) $3' -p141676 -tp141677 -a(S'setForegroundColour/2' -p141678 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p141679 -tp141680 -a(S'setHelpText/2' -p141681 -S'setHelpText(${1:This}, ${2:Text}) $3' -p141682 -tp141683 -a(S'setIcon/2' -p141684 -S'setIcon(${1:This}, ${2:Icon}) $3' -p141685 -tp141686 -a(S'setIcons/2' -p141687 -S'setIcons(${1:This}, ${2:Icons}) $3' -p141688 -tp141689 -a(S'setId/2' -p141690 -S'setId(${1:This}, ${2:Winid}) $3' -p141691 -tp141692 -a(S'setLabel/2' -p141693 -S'setLabel(${1:This}, ${2:Label}) $3' -p141694 -tp141695 -a(S'setMaxSize/2' -p141696 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p141697 -tp141698 -a(S'setMessage/2' -p141699 -S'setMessage(${1:This}, ${2:Message}) $3' -p141700 -tp141701 -a(S'setMinSize/2' -p141702 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p141703 -tp141704 -a(S'setName/2' -p141705 -S'setName(${1:This}, ${2:Name}) $3' -p141706 -tp141707 -a(S'setOwnBackgroundColour/2' -p141708 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p141709 -tp141710 -a(S'setOwnFont/2' -p141711 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p141712 -tp141713 -a(S'setOwnForegroundColour/2' -p141714 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p141715 -tp141716 -a(S'setPalette/2' -p141717 -S'setPalette(${1:This}, ${2:Pal}) $3' -p141718 -tp141719 -a(S'setPath/2' -p141720 -S'setPath(${1:This}, ${2:Path}) $3' -p141721 -tp141722 -a(S'setReturnCode/2' -p141723 -S'setReturnCode(${1:This}, ${2:ReturnCode}) $3' -p141724 -tp141725 -a(S'setScrollPos/3' -p141726 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p141727 -tp141728 -a(S'setScrollPos/4' -p141729 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p141730 -tp141731 -a(S'setScrollbar/5' -p141732 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p141733 -tp141734 -a(S'setScrollbar/6' -p141735 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p141736 -tp141737 -a(S'setShape/2' -p141738 -S'setShape(${1:This}, ${2:Region}) $3' -p141739 -tp141740 -a(S'setSize/2' -p141741 -S'setSize(${1:This}, ${2:Rect}) $3' -p141742 -tp141743 -a(S'setSize/3' -p141744 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p141745 -tp141746 -a(S'setSize/5' -p141747 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p141748 -tp141749 -a(S'setSize/6' -p141750 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p141751 -tp141752 -a(S'setSizeHints/2' -p141753 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p141754 -tp141755 -a(S'setSizeHints/3' -p141756 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p141757 -tp141758 -a(S'setSizeHints/4' -p141759 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p141760 -tp141761 -a(S'setSizer/2' -p141762 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p141763 -tp141764 -a(S'setSizer/3' -p141765 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p141766 -tp141767 -a(S'setSizerAndFit/2' -p141768 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p141769 -tp141770 -a(S'setSizerAndFit/3' -p141771 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p141772 -tp141773 -a(S'setThemeEnabled/2' -p141774 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p141775 -tp141776 -a(S'setTitle/2' -p141777 -S'setTitle(${1:This}, ${2:Title}) $3' -p141778 -tp141779 -a(S'setToolTip/2' -p141780 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p141781 -tp141782 -a(S'setVirtualSize/2' -p141783 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p141784 -tp141785 -a(S'setVirtualSize/3' -p141786 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p141787 -tp141788 -a(S'setVirtualSizeHints/2' -p141789 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p141790 -tp141791 -a(S'setVirtualSizeHints/3' -p141792 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p141793 -tp141794 -a(S'setVirtualSizeHints/4' -p141795 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p141796 -tp141797 -a(S'setWildcard/2' -p141798 -S'setWildcard(${1:This}, ${2:WildCard}) $3' -p141799 -tp141800 -a(S'setWindowStyle/2' -p141801 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p141802 -tp141803 -a(S'setWindowStyleFlag/2' -p141804 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p141805 -tp141806 -a(S'setWindowVariant/2' -p141807 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p141808 -tp141809 -a(S'shouldInheritColours/1' -p141810 -S'shouldInheritColours(${1:This}) $2' -p141811 -tp141812 -a(S'show/1' -p141813 -S'show(${1:This}) $2' -p141814 -tp141815 -a(S'show/2' -p141816 -S'show(${1:This}, ${2:Options}) $3' -p141817 -tp141818 -a(S'showFullScreen/2' -p141819 -S'showFullScreen(${1:This}, ${2:Show}) $3' -p141820 -tp141821 -a(S'showFullScreen/3' -p141822 -S'showFullScreen(${1:This}, ${2:Show}, ${3:Options}) $4' -p141823 -tp141824 -a(S'showModal/1' -p141825 -S'showModal(${1:This}) $2' -p141826 -tp141827 -a(S'thaw/1' -p141828 -S'thaw(${1:This}) $2' -p141829 -tp141830 -a(S'transferDataFromWindow/1' -p141831 -S'transferDataFromWindow(${1:This}) $2' -p141832 -tp141833 -a(S'transferDataToWindow/1' -p141834 -S'transferDataToWindow(${1:This}) $2' -p141835 -tp141836 -a(S'update/1' -p141837 -S'update(${1:This}) $2' -p141838 -tp141839 -a(S'updateWindowUI/1' -p141840 -S'updateWindowUI(${1:This}) $2' -p141841 -tp141842 -a(S'updateWindowUI/2' -p141843 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p141844 -tp141845 -a(S'validate/1' -p141846 -S'validate(${1:This}) $2' -p141847 -tp141848 -a(S'warpPointer/3' -p141849 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p141850 -tp141851 -asS'CosTransactions_HeuristicHazard' -p141852 -(lp141853 -(S'id/0' -p141854 -S'id() $1' -p141855 -tp141856 -a(S'name/0' -p141857 -S'name() $1' -p141858 -tp141859 -a(S'tc/0' -p141860 -S'tc() $1' -p141861 -tp141862 -asS'ssh_connection_handler' -p141863 -(lp141864 -(S'code_change/4' -p141865 -S'code_change(${1:Param1}, ${2:StateName}, ${3:State}, ${4:Param4}) $5' -p141866 -tp141867 -a(S'connected/2' -p141868 -S'connected(${1:Event}, ${2:State}) $3' -p141869 -tp141870 -a(S'connection_info/3' -p141871 -S'connection_info(${1:ConnectionHandler}, ${2:From}, ${3:Options}) $4' -p141872 -tp141873 -a(S'handle_event/3' -p141874 -S'handle_event(${1:Param1}, ${2:StateName}, ${3:State}) $4' -p141875 -tp141876 -a(S'handle_info/3' -p141877 -S'handle_info(${1:UnexpectedMessage}, ${2:StateName}, ${3:State}) $4' -p141878 -tp141879 -a(S'handle_sync_event/4' -p141880 -S'handle_sync_event() $1' -p141881 -tp141882 -a(S'hello/2' -p141883 -S'hello(${1:Param1}, ${2:State}) $3' -p141884 -tp141885 -a(S'init/1' -p141886 -S'init(${1:Param1}) $2' -p141887 -tp141888 -a(S'kexinit/2' -p141889 -S'kexinit() $1' -p141890 -tp141891 -a(S'key_exchange/2' -p141892 -S'key_exchange() $1' -p141893 -tp141894 -a(S'new_keys/2' -p141895 -S'new_keys() $1' -p141896 -tp141897 -a(S'peer_address/1' -p141898 -S'peer_address(${1:ConnectionHandler}) $2' -p141899 -tp141900 -a(S'renegotiate/1' -p141901 -S'renegotiate(${1:ConnectionHandler}) $2' -p141902 -tp141903 -a(S'send/2' -p141904 -S'send(${1:ConnectionHandler}, ${2:Data}) $3' -p141905 -tp141906 -a(S'send_event/2' -p141907 -S'send_event(${1:FsmPid}, ${2:Event}) $3' -p141908 -tp141909 -a(S'ssh_info_handler/3' -p141910 -S'ssh_info_handler(${1:Options}, ${2:Ssh}, ${3:From}) $4' -p141911 -tp141912 -a(S'start_link/4' -p141913 -S'start_link(${1:Role}, ${2:Manager}, ${3:Socket}, ${4:Options}) $5' -p141914 -tp141915 -a(S'terminate/3' -p141916 -S'terminate(${1:Reason}, ${2:StateName}, ${3:State}) $4' -p141917 -tp141918 -a(S'userauth/2' -p141919 -S'userauth() $1' -p141920 -tp141921 -asS'ball' -p141922 -(lp141923 -(S'init/0' -p141924 -S'init() $1' -p141925 -tp141926 -a(S'start/0' -p141927 -S'start() $1' -p141928 -tp141929 -asS'slave' -p141930 -(lp141931 -(S'pseudo/1' -p141932 -S'pseudo(${1:Param1}) $2' -p141933 -tp141934 -a(S'pseudo/2' -p141935 -S'pseudo(${1:Master}, ${2:ServerList}) $3' -p141936 -tp141937 -a(S'relay/1' -p141938 -S'relay(${1:Pid}) $2' -p141939 -tp141940 -a(S'slave_start/1' -p141941 -S'slave_start(${1:Param1}) $2' -p141942 -tp141943 -a(S'start/1' -p141944 -S'start(${1:Host}) $2' -p141945 -tp141946 -a(S'start/2' -p141947 -S'start(${1:Host}, ${2:Name}) $3' -p141948 -tp141949 -a(S'start/3' -p141950 -S'start(${1:Host}, ${2:Name}, ${3:Args}) $4' -p141951 -tp141952 -a(S'start/5' -p141953 -S'start(${1:Host0}, ${2:Name}, ${3:Args}, ${4:LinkTo}, ${5:Prog}) $6' -p141954 -tp141955 -a(S'start_link/1' -p141956 -S'start_link(${1:Host}) $2' -p141957 -tp141958 -a(S'start_link/2' -p141959 -S'start_link(${1:Host}, ${2:Name}) $3' -p141960 -tp141961 -a(S'start_link/3' -p141962 -S'start_link(${1:Host}, ${2:Name}, ${3:Args}) $4' -p141963 -tp141964 -a(S'stop/1' -p141965 -S'stop(${1:Node}) $2' -p141966 -tp141967 -a(S'wait_for_master_to_die/2' -p141968 -S'wait_for_master_to_die(${1:Master}, ${2:Waiter}) $3' -p141969 -tp141970 -a(S'wait_for_slave/7' -p141971 -S'wait_for_slave(${1:Parent}, ${2:Host}, ${3:Name}, ${4:Node}, ${5:Args}, ${6:LinkTo}, ${7:Prog}) $8' -p141972 -tp141973 -asS'tv_pw' -p141974 -(lp141975 -(S'pw/1' -p141976 -S'pw(${1:Master}) $2' -p141977 -tp141978 -asS'ordsets' -p141979 -(lp141980 -(S'add_element/2' -p141981 -S'add_element(${1:Element}, ${2:Ordset1}) $3' -p141982 -tp141983 -a(S'del_element/2' -p141984 -S'del_element(${1:Element}, ${2:Ordset1}) $3' -p141985 -tp141986 -a(S'filter/2' -p141987 -S'filter(${1:Pred}, ${2:Ordset1}) $3' -p141988 -tp141989 -a(S'fold/3' -p141990 -S'fold(${1:Function}, ${2:Acc0}, ${3:Ordset}) $4' -p141991 -tp141992 -a(S'from_list/1' -p141993 -S'from_list(${1:List}) $2' -p141994 -tp141995 -a(S'intersection/1' -p141996 -S'intersection(${1:OrdsetList}) $2' -p141997 -tp141998 -a(S'intersection/2' -p141999 -S'intersection(${1:Ordset1}, ${2:Ordset2}) $3' -p142000 -tp142001 -a(S'is_disjoint/2' -p142002 -S'is_disjoint(${1:Ordset1}, ${2:Ordset2}) $3' -p142003 -tp142004 -a(S'is_element/2' -p142005 -S'is_element(${1:Element}, ${2:Ordset}) $3' -p142006 -tp142007 -a(S'is_set/1' -p142008 -S'is_set(${1:Ordset}) $2' -p142009 -tp142010 -a(S'is_subset/2' -p142011 -S'is_subset(${1:Ordset1}, ${2:Ordset2}) $3' -p142012 -tp142013 -a(S'new/0' -p142014 -S'new() $1' -p142015 -tp142016 -a(S'size/1' -p142017 -S'size(${1:Ordset}) $2' -p142018 -tp142019 -a(S'subtract/2' -p142020 -S'subtract(${1:Ordset1}, ${2:Ordset2}) $3' -p142021 -tp142022 -a(S'to_list/1' -p142023 -S'to_list(${1:Ordset}) $2' -p142024 -tp142025 -a(S'union/1' -p142026 -S'union(${1:OrdsetList}) $2' -p142027 -tp142028 -a(S'union/2' -p142029 -S'union(${1:Ordset1}, ${2:Ordset2}) $3' -p142030 -tp142031 -asS'ic_enum_java' -p142032 -(lp142033 -(S'gen/3' -p142034 -S'gen(${1:G}, ${2:N}, ${3:X}) $4' -p142035 -tp142036 -asS'wxMoveEvent' -p142037 -(lp142038 -(S'getId/1' -p142039 -S'getId(${1:This}) $2' -p142040 -tp142041 -a(S'getPosition/1' -p142042 -S'getPosition(${1:This}) $2' -p142043 -tp142044 -a(S'getSkipped/1' -p142045 -S'getSkipped(${1:This}) $2' -p142046 -tp142047 -a(S'getTimestamp/1' -p142048 -S'getTimestamp(${1:This}) $2' -p142049 -tp142050 -a(S'isCommandEvent/1' -p142051 -S'isCommandEvent(${1:This}) $2' -p142052 -tp142053 -a(S'parent_class/1' -p142054 -S'parent_class(${1:Param1}) $2' -p142055 -tp142056 -a(S'resumePropagation/2' -p142057 -S'resumePropagation(${1:This}, ${2:PropagationLevel}) $3' -p142058 -tp142059 -a(S'shouldPropagate/1' -p142060 -S'shouldPropagate(${1:This}) $2' -p142061 -tp142062 -a(S'skip/1' -p142063 -S'skip(${1:This}) $2' -p142064 -tp142065 -a(S'skip/2' -p142066 -S'skip(${1:This}, ${2:Options}) $3' -p142067 -tp142068 -a(S'stopPropagation/1' -p142069 -S'stopPropagation(${1:This}) $2' -p142070 -tp142071 -asS'tv_pd' -p142072 -(lp142073 -(S'pd/2' -p142074 -S'pd(${1:Master}, ${2:ErrMsgMode}) $3' -p142075 -tp142076 -asS'tv_pg' -p142077 -(lp142078 -(S'pg/1' -p142079 -S'pg(${1:ParentPid}) $2' -p142080 -tp142081 -asS'wxGridCellRenderer' -p142082 -(lp142083 -(S'draw/8' -p142084 -S'draw(${1:This}, ${2:Grid}, ${3:Attr}, ${4:Dc}, ${5:Rect}, ${6:Row}, ${7:Col}, ${8:IsSelected}) $9' -p142085 -tp142086 -a(S'getBestSize/6' -p142087 -S'getBestSize(${1:This}, ${2:Grid}, ${3:Attr}, ${4:Dc}, ${5:Row}, ${6:Col}) $7' -p142088 -tp142089 -a(S'parent_class/1' -p142090 -S'parent_class(${1:Param1}) $2' -p142091 -tp142092 -asS'tv_pb' -p142093 -(lp142094 -(S'pb/1' -p142095 -S'pb(${1:ParentPid}) $2' -p142096 -tp142097 -asS'tv_pc' -p142098 -(lp142099 -(S'pc/7' -p142100 -S'pc(${1:Master}, ${2:Node}, ${3:LocalNode}, ${4:TableId}, ${5:KindOfTable}, ${6:TableName}, ${7:ErrMsgMode}) $8' -p142101 -tp142102 -a(S'send_data/2' -p142103 -S'send_data(${1:Msg}, ${2:ProcVars}) $3' -p142104 -tp142105 -asS'beam_dead' -p142106 -(lp142107 -(S'module/2' -p142108 -S'module(${1:Param1}, ${2:Param2}) $3' -p142109 -tp142110 -asS'i' -p142111 -(lp142112 -(S'help/0' -p142113 -S'help() $1' -p142114 -tp142115 -a(S'ia/1' -p142116 -S'ia(${1:Pid}) $2' -p142117 -tp142118 -a(S'ia/2' -p142119 -S'ia(${1:Pid}, ${2:Fnk}) $3' -p142120 -tp142121 -a(S'ia/3' -p142122 -S'ia(${1:X}, ${2:Y}, ${3:Z}) $4' -p142123 -tp142124 -a(S'ia/4' -p142125 -S'ia(${1:X}, ${2:Y}, ${3:Z}, ${4:Fnk}) $5' -p142126 -tp142127 -a(S'iaa/1' -p142128 -S'iaa(${1:Flag}) $2' -p142129 -tp142130 -a(S'iaa/2' -p142131 -S'iaa(${1:Flag}, ${2:Fnk}) $3' -p142132 -tp142133 -a(S'ib/2' -p142134 -S'ib(${1:Module}, ${2:Line}) $3' -p142135 -tp142136 -a(S'ib/3' -p142137 -S'ib(${1:Module}, ${2:Function}, ${3:Arity}) $4' -p142138 -tp142139 -a(S'ib/4' -p142140 -S'ib(${1:Module}, ${2:Function}, ${3:Arity}, ${4:Cond}) $5' -p142141 -tp142142 -a(S'iba/3' -p142143 -S'iba(${1:Mod}, ${2:Line}, ${3:Action}) $4' -p142144 -tp142145 -a(S'ibc/3' -p142146 -S'ibc(${1:Mod}, ${2:Line}, ${3:Fnk}) $4' -p142147 -tp142148 -a(S'ibd/2' -p142149 -S'ibd(${1:Mod}, ${2:Line}) $3' -p142150 -tp142151 -a(S'ibe/2' -p142152 -S'ibe(${1:Mod}, ${2:Line}) $3' -p142153 -tp142154 -a(S'ic/0' -p142155 -S'ic() $1' -p142156 -tp142157 -a(S'ii/1' -p142158 -S'ii(${1:Module}) $2' -p142159 -tp142160 -a(S'ii/2' -p142161 -S'ii(${1:Module}, ${2:Param2}) $3' -p142162 -tp142163 -a(S'il/0' -p142164 -S'il() $1' -p142165 -tp142166 -a(S'im/0' -p142167 -S'im() $1' -p142168 -tp142169 -a(S'ini/1' -p142170 -S'ini(${1:Module}) $2' -p142171 -tp142172 -a(S'ini/2' -p142173 -S'ini(${1:Module}, ${2:Param2}) $3' -p142174 -tp142175 -a(S'inq/1' -p142176 -S'inq(${1:Module}) $2' -p142177 -tp142178 -a(S'ip/0' -p142179 -S'ip() $1' -p142180 -tp142181 -a(S'ipb/0' -p142182 -S'ipb() $1' -p142183 -tp142184 -a(S'ipb/1' -p142185 -S'ipb(${1:Module}) $2' -p142186 -tp142187 -a(S'iq/1' -p142188 -S'iq(${1:Module}) $2' -p142189 -tp142190 -a(S'ir/0' -p142191 -S'ir() $1' -p142192 -tp142193 -a(S'ir/1' -p142194 -S'ir(${1:Module}) $2' -p142195 -tp142196 -a(S'ir/2' -p142197 -S'ir(${1:Module}, ${2:Line}) $3' -p142198 -tp142199 -a(S'ir/3' -p142200 -S'ir(${1:Module}, ${2:Function}, ${3:Arity}) $4' -p142201 -tp142202 -a(S'ist/1' -p142203 -S'ist(${1:Module}) $2' -p142204 -tp142205 -a(S'iv/0' -p142206 -S'iv() $1' -p142207 -tp142208 -asS'tv_main' -p142209 -(lp142210 -(S'get_ets_tables/1' -p142211 -S'get_ets_tables(${1:SysTabHidden}) $2' -p142212 -tp142213 -a(S'get_mnesia_tables/1' -p142214 -S'get_mnesia_tables(${1:SysTabHidden}) $2' -p142215 -tp142216 -a(S'init/0' -p142217 -S'init() $1' -p142218 -tp142219 -a(S'start/0' -p142220 -S'start() $1' -p142221 -tp142222 -asS'megaco_text_parser_v2' -p142223 -(lp142224 -(S'format_error/1' -p142225 -S'format_error(${1:Message}) $2' -p142226 -tp142227 -a(S'parse/1' -p142228 -S'parse(${1:Tokens}) $2' -p142229 -tp142230 -a(S'parse_and_scan/1' -p142231 -S'parse_and_scan(${1:Param1}) $2' -p142232 -tp142233 -asS'megaco_text_parser_v3' -p142234 -(lp142235 -(S'format_error/1' -p142236 -S'format_error(${1:Message}) $2' -p142237 -tp142238 -a(S'parse/1' -p142239 -S'parse(${1:Tokens}) $2' -p142240 -tp142241 -a(S'parse_and_scan/1' -p142242 -S'parse_and_scan(${1:Param1}) $2' -p142243 -tp142244 -asS'sets' -p142245 -(lp142246 -(S'add_element/2' -p142247 -S'add_element(${1:Element}, ${2:Set1}) $3' -p142248 -tp142249 -a(S'del_element/2' -p142250 -S'del_element(${1:Element}, ${2:Set1}) $3' -p142251 -tp142252 -a(S'filter/2' -p142253 -S'filter(${1:Pred}, ${2:Set1}) $3' -p142254 -tp142255 -a(S'fold/3' -p142256 -S'fold(${1:Function}, ${2:Acc0}, ${3:Set}) $4' -p142257 -tp142258 -a(S'from_list/1' -p142259 -S'from_list(${1:List}) $2' -p142260 -tp142261 -a(S'intersection/1' -p142262 -S'intersection(${1:SetList}) $2' -p142263 -tp142264 -a(S'intersection/2' -p142265 -S'intersection(${1:Set1}, ${2:Set2}) $3' -p142266 -tp142267 -a(S'is_disjoint/2' -p142268 -S'is_disjoint(${1:Set1}, ${2:Set2}) $3' -p142269 -tp142270 -a(S'is_element/2' -p142271 -S'is_element(${1:Element}, ${2:Set}) $3' -p142272 -tp142273 -a(S'is_set/1' -p142274 -S'is_set(${1:Set}) $2' -p142275 -tp142276 -a(S'is_subset/2' -p142277 -S'is_subset(${1:Set1}, ${2:Set2}) $3' -p142278 -tp142279 -a(S'new/0' -p142280 -S'new() $1' -p142281 -tp142282 -a(S'size/1' -p142283 -S'size(${1:Set}) $2' -p142284 -tp142285 -a(S'subtract/2' -p142286 -S'subtract(${1:Set1}, ${2:Set2}) $3' -p142287 -tp142288 -a(S'to_list/1' -p142289 -S'to_list(${1:Set}) $2' -p142290 -tp142291 -a(S'union/1' -p142292 -S'union(${1:SetList}) $2' -p142293 -tp142294 -a(S'union/2' -p142295 -S'union(${1:Set1}, ${2:Set2}) $3' -p142296 -tp142297 -asS'crypto_app' -p142298 -(lp142299 -(S'start/2' -p142300 -S'start(${1:Param1}, ${2:Param2}) $3' -p142301 -tp142302 -a(S'stop/1' -p142303 -S'stop(${1:Param1}) $2' -p142304 -tp142305 -asS'iceval' -p142306 -(lp142307 -(S'check_tk/3' -p142308 -S'check_tk(${1:Param1}, ${2:Param2}, ${3:V}) $4' -p142309 -tp142310 -a(S'eval_const/5' -p142311 -S'eval_const(${1:G}, ${2:S}, ${3:N}, ${4:TK}, ${5:Expr}) $6' -p142312 -tp142313 -a(S'eval_e/5' -p142314 -S'eval_e(${1:G}, ${2:S}, ${3:N}, ${4:Tk}, ${5:Val}) $6' -p142315 -tp142316 -a(S'get_val/1' -p142317 -S'get_val(${1:X}) $2' -p142318 -tp142319 -a(S'mk_val/1' -p142320 -S'mk_val(${1:V}) $2' -p142321 -tp142322 -asS'CosFileTransfer_Directory_impl' -p142323 -(lp142324 -(S"'_get_associated_session'/2" -p142325 -S"'_get_associated_session'(${1:Param1}, ${2:State}) $3" -p142326 -tp142327 -a(S"'_get_complete_file_name'/2" -p142328 -S"'_get_complete_file_name'(${1:Param1}, ${2:State}) $3" -p142329 -tp142330 -a(S"'_get_name'/2" -p142331 -S"'_get_name'(${1:Param1}, ${2:State}) $3" -p142332 -tp142333 -a(S"'_get_parent'/2" -p142334 -S"'_get_parent'(${1:Param1}, ${2:State}) $3" -p142335 -tp142336 -a(S'define_properties/3' -p142337 -S'define_properties(${1:Param1}, ${2:State}, ${3:Properties}) $4' -p142338 -tp142339 -a(S'define_properties_with_modes/3' -p142340 -S'define_properties_with_modes(${1:Param1}, ${2:State}, ${3:PropertyDefs}) $4' -p142341 -tp142342 -a(S'define_property/4' -p142343 -S'define_property(${1:Param1}, ${2:State}, ${3:Name}, ${4:Value}) $5' -p142344 -tp142345 -a(S'define_property_with_mode/5' -p142346 -S'define_property_with_mode(${1:Param1}, ${2:State}, ${3:Name}, ${4:Value}, ${5:Mode}) $6' -p142347 -tp142348 -a(S'delete_all_properties/2' -p142349 -S'delete_all_properties(${1:Param1}, ${2:State}) $3' -p142350 -tp142351 -a(S'delete_properties/3' -p142352 -S'delete_properties(${1:Param1}, ${2:State}, ${3:Names}) $4' -p142353 -tp142354 -a(S'delete_property/3' -p142355 -S'delete_property(${1:Param1}, ${2:State}, ${3:Name}) $4' -p142356 -tp142357 -a(S'get_all_properties/3' -p142358 -S'get_all_properties(${1:Param1}, ${2:State}, ${3:Max}) $4' -p142359 -tp142360 -a(S'get_all_property_names/3' -p142361 -S'get_all_property_names(${1:Param1}, ${2:State}, ${3:Max}) $4' -p142362 -tp142363 -a(S'get_allowed_properties/2' -p142364 -S'get_allowed_properties(${1:Param1}, ${2:State}) $3' -p142365 -tp142366 -a(S'get_allowed_property_types/2' -p142367 -S'get_allowed_property_types(${1:Param1}, ${2:State}) $3' -p142368 -tp142369 -a(S'get_number_of_properties/2' -p142370 -S'get_number_of_properties(${1:Param1}, ${2:State}) $3' -p142371 -tp142372 -a(S'get_properties/3' -p142373 -S'get_properties(${1:Param1}, ${2:State}, ${3:Names}) $4' -p142374 -tp142375 -a(S'get_property_mode/3' -p142376 -S'get_property_mode(${1:Param1}, ${2:State}, ${3:Name}) $4' -p142377 -tp142378 -a(S'get_property_modes/3' -p142379 -S'get_property_modes(${1:Param1}, ${2:State}, ${3:Names}) $4' -p142380 -tp142381 -a(S'get_property_value/3' -p142382 -S'get_property_value(${1:Param1}, ${2:State}, ${3:Name}) $4' -p142383 -tp142384 -a(S'init/1' -p142385 -S'init(${1:Param1}) $2' -p142386 -tp142387 -a(S'is_property_defined/3' -p142388 -S'is_property_defined(${1:Param1}, ${2:State}, ${3:Name}) $4' -p142389 -tp142390 -a(S'list/3' -p142391 -S'list(${1:OE_This}, ${2:State}, ${3:Max}) $4' -p142392 -tp142393 -a(S'set_property_mode/4' -p142394 -S'set_property_mode(${1:Param1}, ${2:State}, ${3:Name}, ${4:Mode}) $5' -p142395 -tp142396 -a(S'set_property_modes/3' -p142397 -S'set_property_modes(${1:Param1}, ${2:State}, ${3:PropertyModes}) $4' -p142398 -tp142399 -a(S'terminate/2' -p142400 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p142401 -tp142402 -asS'wxChoicebook' -p142403 -(lp142404 -(S'addPage/3' -p142405 -S'addPage(${1:This}, ${2:Page}, ${3:Text}) $4' -p142406 -tp142407 -a(S'addPage/4' -p142408 -S'addPage(${1:This}, ${2:Page}, ${3:Text}, ${4:Param4}) $5' -p142409 -tp142410 -a(S'advanceSelection/1' -p142411 -S'advanceSelection(${1:This}) $2' -p142412 -tp142413 -a(S'advanceSelection/2' -p142414 -S'advanceSelection(${1:This}, ${2:Param2}) $3' -p142415 -tp142416 -a(S'assignImageList/2' -p142417 -S'assignImageList(${1:This}, ${2:ImageList}) $3' -p142418 -tp142419 -a(S'cacheBestSize/2' -p142420 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p142421 -tp142422 -a(S'captureMouse/1' -p142423 -S'captureMouse(${1:This}) $2' -p142424 -tp142425 -a(S'center/1' -p142426 -S'center(${1:This}) $2' -p142427 -tp142428 -a(S'center/2' -p142429 -S'center(${1:This}, ${2:Options}) $3' -p142430 -tp142431 -a(S'centerOnParent/1' -p142432 -S'centerOnParent(${1:This}) $2' -p142433 -tp142434 -a(S'centerOnParent/2' -p142435 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p142436 -tp142437 -a(S'centre/1' -p142438 -S'centre(${1:This}) $2' -p142439 -tp142440 -a(S'centre/2' -p142441 -S'centre(${1:This}, ${2:Options}) $3' -p142442 -tp142443 -a(S'centreOnParent/1' -p142444 -S'centreOnParent(${1:This}) $2' -p142445 -tp142446 -a(S'centreOnParent/2' -p142447 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p142448 -tp142449 -a(S'changeSelection/2' -p142450 -S'changeSelection(${1:This}, ${2:N}) $3' -p142451 -tp142452 -a(S'clearBackground/1' -p142453 -S'clearBackground(${1:This}) $2' -p142454 -tp142455 -a(S'clientToScreen/2' -p142456 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p142457 -tp142458 -a(S'clientToScreen/3' -p142459 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p142460 -tp142461 -a(S'close/1' -p142462 -S'close(${1:This}) $2' -p142463 -tp142464 -a(S'close/2' -p142465 -S'close(${1:This}, ${2:Options}) $3' -p142466 -tp142467 -a(S'connect/2' -p142468 -S'connect(${1:This}, ${2:EventType}) $3' -p142469 -tp142470 -a(S'connect/3' -p142471 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p142472 -tp142473 -a(S'convertDialogToPixels/2' -p142474 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p142475 -tp142476 -a(S'convertPixelsToDialog/2' -p142477 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p142478 -tp142479 -a(S'create/3' -p142480 -S'create(${1:This}, ${2:Parent}, ${3:Id}) $4' -p142481 -tp142482 -a(S'create/4' -p142483 -S'create(${1:This}, ${2:Parent}, ${3:Id}, ${4:Param4}) $5' -p142484 -tp142485 -a(S'deleteAllPages/1' -p142486 -S'deleteAllPages(${1:This}) $2' -p142487 -tp142488 -a(S'deletePage/2' -p142489 -S'deletePage(${1:This}, ${2:N}) $3' -p142490 -tp142491 -a(S'destroy/1' -p142492 -S'destroy(${1:This}) $2' -p142493 -tp142494 -a(S'destroyChildren/1' -p142495 -S'destroyChildren(${1:This}) $2' -p142496 -tp142497 -a(S'disable/1' -p142498 -S'disable(${1:This}) $2' -p142499 -tp142500 -a(S'disconnect/1' -p142501 -S'disconnect(${1:This}) $2' -p142502 -tp142503 -a(S'disconnect/2' -p142504 -S'disconnect(${1:This}, ${2:EventType}) $3' -p142505 -tp142506 -a(S'disconnect/3' -p142507 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p142508 -tp142509 -a(S'enable/1' -p142510 -S'enable(${1:This}) $2' -p142511 -tp142512 -a(S'enable/2' -p142513 -S'enable(${1:This}, ${2:Options}) $3' -p142514 -tp142515 -a(S'findWindow/2' -p142516 -S'findWindow(${1:This}, ${2:Winid}) $3' -p142517 -tp142518 -a(S'fit/1' -p142519 -S'fit(${1:This}) $2' -p142520 -tp142521 -a(S'fitInside/1' -p142522 -S'fitInside(${1:This}) $2' -p142523 -tp142524 -a(S'freeze/1' -p142525 -S'freeze(${1:This}) $2' -p142526 -tp142527 -a(S'getAcceleratorTable/1' -p142528 -S'getAcceleratorTable(${1:This}) $2' -p142529 -tp142530 -a(S'getBackgroundColour/1' -p142531 -S'getBackgroundColour(${1:This}) $2' -p142532 -tp142533 -a(S'getBackgroundStyle/1' -p142534 -S'getBackgroundStyle(${1:This}) $2' -p142535 -tp142536 -a(S'getBestSize/1' -p142537 -S'getBestSize(${1:This}) $2' -p142538 -tp142539 -a(S'getCaret/1' -p142540 -S'getCaret(${1:This}) $2' -p142541 -tp142542 -a(S'getCharHeight/1' -p142543 -S'getCharHeight(${1:This}) $2' -p142544 -tp142545 -a(S'getCharWidth/1' -p142546 -S'getCharWidth(${1:This}) $2' -p142547 -tp142548 -a(S'getChildren/1' -p142549 -S'getChildren(${1:This}) $2' -p142550 -tp142551 -a(S'getClientSize/1' -p142552 -S'getClientSize(${1:This}) $2' -p142553 -tp142554 -a(S'getContainingSizer/1' -p142555 -S'getContainingSizer(${1:This}) $2' -p142556 -tp142557 -a(S'getCurrentPage/1' -p142558 -S'getCurrentPage(${1:This}) $2' -p142559 -tp142560 -a(S'getCursor/1' -p142561 -S'getCursor(${1:This}) $2' -p142562 -tp142563 -a(S'getDropTarget/1' -p142564 -S'getDropTarget(${1:This}) $2' -p142565 -tp142566 -a(S'getEventHandler/1' -p142567 -S'getEventHandler(${1:This}) $2' -p142568 -tp142569 -a(S'getExtraStyle/1' -p142570 -S'getExtraStyle(${1:This}) $2' -p142571 -tp142572 -a(S'getFont/1' -p142573 -S'getFont(${1:This}) $2' -p142574 -tp142575 -a(S'getForegroundColour/1' -p142576 -S'getForegroundColour(${1:This}) $2' -p142577 -tp142578 -a(S'getGrandParent/1' -p142579 -S'getGrandParent(${1:This}) $2' -p142580 -tp142581 -a(S'getHandle/1' -p142582 -S'getHandle(${1:This}) $2' -p142583 -tp142584 -a(S'getHelpText/1' -p142585 -S'getHelpText(${1:This}) $2' -p142586 -tp142587 -a(S'getId/1' -p142588 -S'getId(${1:This}) $2' -p142589 -tp142590 -a(S'getImageList/1' -p142591 -S'getImageList(${1:This}) $2' -p142592 -tp142593 -a(S'getLabel/1' -p142594 -S'getLabel(${1:This}) $2' -p142595 -tp142596 -a(S'getMaxSize/1' -p142597 -S'getMaxSize(${1:This}) $2' -p142598 -tp142599 -a(S'getMinSize/1' -p142600 -S'getMinSize(${1:This}) $2' -p142601 -tp142602 -a(S'getName/1' -p142603 -S'getName(${1:This}) $2' -p142604 -tp142605 -a(S'getPage/2' -p142606 -S'getPage(${1:This}, ${2:N}) $3' -p142607 -tp142608 -a(S'getPageCount/1' -p142609 -S'getPageCount(${1:This}) $2' -p142610 -tp142611 -a(S'getPageImage/2' -p142612 -S'getPageImage(${1:This}, ${2:N}) $3' -p142613 -tp142614 -a(S'getPageText/2' -p142615 -S'getPageText(${1:This}, ${2:N}) $3' -p142616 -tp142617 -a(S'getParent/1' -p142618 -S'getParent(${1:This}) $2' -p142619 -tp142620 -a(S'getPosition/1' -p142621 -S'getPosition(${1:This}) $2' -p142622 -tp142623 -a(S'getRect/1' -p142624 -S'getRect(${1:This}) $2' -p142625 -tp142626 -a(S'getScreenPosition/1' -p142627 -S'getScreenPosition(${1:This}) $2' -p142628 -tp142629 -a(S'getScreenRect/1' -p142630 -S'getScreenRect(${1:This}) $2' -p142631 -tp142632 -a(S'getScrollPos/2' -p142633 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p142634 -tp142635 -a(S'getScrollRange/2' -p142636 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p142637 -tp142638 -a(S'getScrollThumb/2' -p142639 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p142640 -tp142641 -a(S'getSelection/1' -p142642 -S'getSelection(${1:This}) $2' -p142643 -tp142644 -a(S'getSize/1' -p142645 -S'getSize(${1:This}) $2' -p142646 -tp142647 -a(S'getSizer/1' -p142648 -S'getSizer(${1:This}) $2' -p142649 -tp142650 -a(S'getTextExtent/2' -p142651 -S'getTextExtent(${1:This}, ${2:String}) $3' -p142652 -tp142653 -a(S'getTextExtent/3' -p142654 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p142655 -tp142656 -a(S'getToolTip/1' -p142657 -S'getToolTip(${1:This}) $2' -p142658 -tp142659 -a(S'getUpdateRegion/1' -p142660 -S'getUpdateRegion(${1:This}) $2' -p142661 -tp142662 -a(S'getVirtualSize/1' -p142663 -S'getVirtualSize(${1:This}) $2' -p142664 -tp142665 -a(S'getWindowStyleFlag/1' -p142666 -S'getWindowStyleFlag(${1:This}) $2' -p142667 -tp142668 -a(S'getWindowVariant/1' -p142669 -S'getWindowVariant(${1:This}) $2' -p142670 -tp142671 -a(S'hasCapture/1' -p142672 -S'hasCapture(${1:This}) $2' -p142673 -tp142674 -a(S'hasScrollbar/2' -p142675 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p142676 -tp142677 -a(S'hasTransparentBackground/1' -p142678 -S'hasTransparentBackground(${1:This}) $2' -p142679 -tp142680 -a(S'hide/1' -p142681 -S'hide(${1:This}) $2' -p142682 -tp142683 -a(S'hitTest/2' -p142684 -S'hitTest(${1:This}, ${2:Pt}) $3' -p142685 -tp142686 -a(S'inheritAttributes/1' -p142687 -S'inheritAttributes(${1:This}) $2' -p142688 -tp142689 -a(S'initDialog/1' -p142690 -S'initDialog(${1:This}) $2' -p142691 -tp142692 -a(S'insertPage/4' -p142693 -S'insertPage(${1:This}, ${2:N}, ${3:Page}, ${4:Text}) $5' -p142694 -tp142695 -a(S'insertPage/5' -p142696 -S'insertPage(${1:This}, ${2:N}, ${3:Page}, ${4:Text}, ${5:Param5}) $6' -p142697 -tp142698 -a(S'invalidateBestSize/1' -p142699 -S'invalidateBestSize(${1:This}) $2' -p142700 -tp142701 -a(S'isEnabled/1' -p142702 -S'isEnabled(${1:This}) $2' -p142703 -tp142704 -a(S'isExposed/2' -p142705 -S'isExposed(${1:This}, ${2:Pt}) $3' -p142706 -tp142707 -a(S'isExposed/3' -p142708 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p142709 -tp142710 -a(S'isExposed/5' -p142711 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p142712 -tp142713 -a(S'isRetained/1' -p142714 -S'isRetained(${1:This}) $2' -p142715 -tp142716 -a(S'isShown/1' -p142717 -S'isShown(${1:This}) $2' -p142718 -tp142719 -a(S'isTopLevel/1' -p142720 -S'isTopLevel(${1:This}) $2' -p142721 -tp142722 -a(S'layout/1' -p142723 -S'layout(${1:This}) $2' -p142724 -tp142725 -a(S'lineDown/1' -p142726 -S'lineDown(${1:This}) $2' -p142727 -tp142728 -a(S'lineUp/1' -p142729 -S'lineUp(${1:This}) $2' -p142730 -tp142731 -a(S'lower/1' -p142732 -S'lower(${1:This}) $2' -p142733 -tp142734 -a(S'makeModal/1' -p142735 -S'makeModal(${1:This}) $2' -p142736 -tp142737 -a(S'makeModal/2' -p142738 -S'makeModal(${1:This}, ${2:Options}) $3' -p142739 -tp142740 -a(S'move/2' -p142741 -S'move(${1:This}, ${2:Pt}) $3' -p142742 -tp142743 -a(S'move/3' -p142744 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p142745 -tp142746 -a(S'move/4' -p142747 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p142748 -tp142749 -a(S'moveAfterInTabOrder/2' -p142750 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p142751 -tp142752 -a(S'moveBeforeInTabOrder/2' -p142753 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p142754 -tp142755 -a(S'navigate/1' -p142756 -S'navigate(${1:This}) $2' -p142757 -tp142758 -a(S'navigate/2' -p142759 -S'navigate(${1:This}, ${2:Options}) $3' -p142760 -tp142761 -a(S'new/0' -p142762 -S'new() $1' -p142763 -tp142764 -a(S'new/2' -p142765 -S'new(${1:Parent}, ${2:Id}) $3' -p142766 -tp142767 -a(S'new/3' -p142768 -S'new(${1:Parent}, ${2:Id}, ${3:Param3}) $4' -p142769 -tp142770 -a(S'pageDown/1' -p142771 -S'pageDown(${1:This}) $2' -p142772 -tp142773 -a(S'pageUp/1' -p142774 -S'pageUp(${1:This}) $2' -p142775 -tp142776 -a(S'parent_class/1' -p142777 -S'parent_class(${1:Param1}) $2' -p142778 -tp142779 -a(S'popEventHandler/1' -p142780 -S'popEventHandler(${1:This}) $2' -p142781 -tp142782 -a(S'popEventHandler/2' -p142783 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p142784 -tp142785 -a(S'popupMenu/2' -p142786 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p142787 -tp142788 -a(S'popupMenu/3' -p142789 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p142790 -tp142791 -a(S'popupMenu/4' -p142792 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p142793 -tp142794 -a(S'raise/1' -p142795 -S'raise(${1:This}) $2' -p142796 -tp142797 -a(S'refresh/1' -p142798 -S'refresh(${1:This}) $2' -p142799 -tp142800 -a(S'refresh/2' -p142801 -S'refresh(${1:This}, ${2:Options}) $3' -p142802 -tp142803 -a(S'refreshRect/2' -p142804 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p142805 -tp142806 -a(S'refreshRect/3' -p142807 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p142808 -tp142809 -a(S'releaseMouse/1' -p142810 -S'releaseMouse(${1:This}) $2' -p142811 -tp142812 -a(S'removeChild/2' -p142813 -S'removeChild(${1:This}, ${2:Child}) $3' -p142814 -tp142815 -a(S'removePage/2' -p142816 -S'removePage(${1:This}, ${2:N}) $3' -p142817 -tp142818 -a(S'reparent/2' -p142819 -S'reparent(${1:This}, ${2:NewParent}) $3' -p142820 -tp142821 -a(S'screenToClient/1' -p142822 -S'screenToClient(${1:This}) $2' -p142823 -tp142824 -a(S'screenToClient/2' -p142825 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p142826 -tp142827 -a(S'scrollLines/2' -p142828 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p142829 -tp142830 -a(S'scrollPages/2' -p142831 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p142832 -tp142833 -a(S'scrollWindow/3' -p142834 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p142835 -tp142836 -a(S'scrollWindow/4' -p142837 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p142838 -tp142839 -a(S'setAcceleratorTable/2' -p142840 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p142841 -tp142842 -a(S'setAutoLayout/2' -p142843 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p142844 -tp142845 -a(S'setBackgroundColour/2' -p142846 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p142847 -tp142848 -a(S'setBackgroundStyle/2' -p142849 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p142850 -tp142851 -a(S'setCaret/2' -p142852 -S'setCaret(${1:This}, ${2:Caret}) $3' -p142853 -tp142854 -a(S'setClientSize/2' -p142855 -S'setClientSize(${1:This}, ${2:Size}) $3' -p142856 -tp142857 -a(S'setClientSize/3' -p142858 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p142859 -tp142860 -a(S'setContainingSizer/2' -p142861 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p142862 -tp142863 -a(S'setCursor/2' -p142864 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p142865 -tp142866 -a(S'setDropTarget/2' -p142867 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p142868 -tp142869 -a(S'setExtraStyle/2' -p142870 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p142871 -tp142872 -a(S'setFocus/1' -p142873 -S'setFocus(${1:This}) $2' -p142874 -tp142875 -a(S'setFocusFromKbd/1' -p142876 -S'setFocusFromKbd(${1:This}) $2' -p142877 -tp142878 -a(S'setFont/2' -p142879 -S'setFont(${1:This}, ${2:Font}) $3' -p142880 -tp142881 -a(S'setForegroundColour/2' -p142882 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p142883 -tp142884 -a(S'setHelpText/2' -p142885 -S'setHelpText(${1:This}, ${2:Text}) $3' -p142886 -tp142887 -a(S'setId/2' -p142888 -S'setId(${1:This}, ${2:Winid}) $3' -p142889 -tp142890 -a(S'setImageList/2' -p142891 -S'setImageList(${1:This}, ${2:ImageList}) $3' -p142892 -tp142893 -a(S'setLabel/2' -p142894 -S'setLabel(${1:This}, ${2:Label}) $3' -p142895 -tp142896 -a(S'setMaxSize/2' -p142897 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p142898 -tp142899 -a(S'setMinSize/2' -p142900 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p142901 -tp142902 -a(S'setName/2' -p142903 -S'setName(${1:This}, ${2:Name}) $3' -p142904 -tp142905 -a(S'setOwnBackgroundColour/2' -p142906 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p142907 -tp142908 -a(S'setOwnFont/2' -p142909 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p142910 -tp142911 -a(S'setOwnForegroundColour/2' -p142912 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p142913 -tp142914 -a(S'setPageImage/3' -p142915 -S'setPageImage(${1:This}, ${2:N}, ${3:ImageId}) $4' -p142916 -tp142917 -a(S'setPageSize/2' -p142918 -S'setPageSize(${1:This}, ${2:Size}) $3' -p142919 -tp142920 -a(S'setPageText/3' -p142921 -S'setPageText(${1:This}, ${2:N}, ${3:StrText}) $4' -p142922 -tp142923 -a(S'setPalette/2' -p142924 -S'setPalette(${1:This}, ${2:Pal}) $3' -p142925 -tp142926 -a(S'setScrollPos/3' -p142927 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p142928 -tp142929 -a(S'setScrollPos/4' -p142930 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p142931 -tp142932 -a(S'setScrollbar/5' -p142933 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p142934 -tp142935 -a(S'setScrollbar/6' -p142936 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p142937 -tp142938 -a(S'setSelection/2' -p142939 -S'setSelection(${1:This}, ${2:N}) $3' -p142940 -tp142941 -a(S'setSize/2' -p142942 -S'setSize(${1:This}, ${2:Rect}) $3' -p142943 -tp142944 -a(S'setSize/3' -p142945 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p142946 -tp142947 -a(S'setSize/5' -p142948 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p142949 -tp142950 -a(S'setSize/6' -p142951 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p142952 -tp142953 -a(S'setSizeHints/2' -p142954 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p142955 -tp142956 -a(S'setSizeHints/3' -p142957 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p142958 -tp142959 -a(S'setSizeHints/4' -p142960 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p142961 -tp142962 -a(S'setSizer/2' -p142963 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p142964 -tp142965 -a(S'setSizer/3' -p142966 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p142967 -tp142968 -a(S'setSizerAndFit/2' -p142969 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p142970 -tp142971 -a(S'setSizerAndFit/3' -p142972 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p142973 -tp142974 -a(S'setThemeEnabled/2' -p142975 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p142976 -tp142977 -a(S'setToolTip/2' -p142978 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p142979 -tp142980 -a(S'setVirtualSize/2' -p142981 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p142982 -tp142983 -a(S'setVirtualSize/3' -p142984 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p142985 -tp142986 -a(S'setVirtualSizeHints/2' -p142987 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p142988 -tp142989 -a(S'setVirtualSizeHints/3' -p142990 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p142991 -tp142992 -a(S'setVirtualSizeHints/4' -p142993 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p142994 -tp142995 -a(S'setWindowStyle/2' -p142996 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p142997 -tp142998 -a(S'setWindowStyleFlag/2' -p142999 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p143000 -tp143001 -a(S'setWindowVariant/2' -p143002 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p143003 -tp143004 -a(S'shouldInheritColours/1' -p143005 -S'shouldInheritColours(${1:This}) $2' -p143006 -tp143007 -a(S'show/1' -p143008 -S'show(${1:This}) $2' -p143009 -tp143010 -a(S'show/2' -p143011 -S'show(${1:This}, ${2:Options}) $3' -p143012 -tp143013 -a(S'thaw/1' -p143014 -S'thaw(${1:This}) $2' -p143015 -tp143016 -a(S'transferDataFromWindow/1' -p143017 -S'transferDataFromWindow(${1:This}) $2' -p143018 -tp143019 -a(S'transferDataToWindow/1' -p143020 -S'transferDataToWindow(${1:This}) $2' -p143021 -tp143022 -a(S'update/1' -p143023 -S'update(${1:This}) $2' -p143024 -tp143025 -a(S'updateWindowUI/1' -p143026 -S'updateWindowUI(${1:This}) $2' -p143027 -tp143028 -a(S'updateWindowUI/2' -p143029 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p143030 -tp143031 -a(S'validate/1' -p143032 -S'validate(${1:This}) $2' -p143033 -tp143034 -a(S'warpPointer/3' -p143035 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p143036 -tp143037 -asS'CosPropertyService_PropertySetDef' -p143038 -(lp143039 -(S'code_change/3' -p143040 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p143041 -tp143042 -a(S'define_properties/2' -p143043 -S'define_properties(${1:OE_THIS}, ${2:Nproperties}) $3' -p143044 -tp143045 -a(S'define_properties/3' -p143046 -S'define_properties(${1:OE_THIS}, ${2:OE_Options}, ${3:Nproperties}) $4' -p143047 -tp143048 -a(S'define_properties_with_modes/2' -p143049 -S'define_properties_with_modes(${1:OE_THIS}, ${2:Property_defs}) $3' -p143050 -tp143051 -a(S'define_properties_with_modes/3' -p143052 -S'define_properties_with_modes(${1:OE_THIS}, ${2:OE_Options}, ${3:Property_defs}) $4' -p143053 -tp143054 -a(S'define_property/3' -p143055 -S'define_property(${1:OE_THIS}, ${2:Property_name}, ${3:Property_value}) $4' -p143056 -tp143057 -a(S'define_property/4' -p143058 -S'define_property(${1:OE_THIS}, ${2:OE_Options}, ${3:Property_name}, ${4:Property_value}) $5' -p143059 -tp143060 -a(S'define_property_with_mode/4' -p143061 -S'define_property_with_mode(${1:OE_THIS}, ${2:Property_name}, ${3:Property_value}, ${4:Property_mode}) $5' -p143062 -tp143063 -a(S'define_property_with_mode/5' -p143064 -S'define_property_with_mode(${1:OE_THIS}, ${2:OE_Options}, ${3:Property_name}, ${4:Property_value}, ${5:Property_mode}) $6' -p143065 -tp143066 -a(S'delete_all_properties/1' -p143067 -S'delete_all_properties(${1:OE_THIS}) $2' -p143068 -tp143069 -a(S'delete_all_properties/2' -p143070 -S'delete_all_properties(${1:OE_THIS}, ${2:OE_Options}) $3' -p143071 -tp143072 -a(S'delete_properties/2' -p143073 -S'delete_properties(${1:OE_THIS}, ${2:Property_names}) $3' -p143074 -tp143075 -a(S'delete_properties/3' -p143076 -S'delete_properties(${1:OE_THIS}, ${2:OE_Options}, ${3:Property_names}) $4' -p143077 -tp143078 -a(S'delete_property/2' -p143079 -S'delete_property(${1:OE_THIS}, ${2:Property_name}) $3' -p143080 -tp143081 -a(S'delete_property/3' -p143082 -S'delete_property(${1:OE_THIS}, ${2:OE_Options}, ${3:Property_name}) $4' -p143083 -tp143084 -a(S'get_all_properties/2' -p143085 -S'get_all_properties(${1:OE_THIS}, ${2:How_many}) $3' -p143086 -tp143087 -a(S'get_all_properties/3' -p143088 -S'get_all_properties(${1:OE_THIS}, ${2:OE_Options}, ${3:How_many}) $4' -p143089 -tp143090 -a(S'get_all_property_names/2' -p143091 -S'get_all_property_names(${1:OE_THIS}, ${2:How_many}) $3' -p143092 -tp143093 -a(S'get_all_property_names/3' -p143094 -S'get_all_property_names(${1:OE_THIS}, ${2:OE_Options}, ${3:How_many}) $4' -p143095 -tp143096 -a(S'get_allowed_properties/1' -p143097 -S'get_allowed_properties(${1:OE_THIS}) $2' -p143098 -tp143099 -a(S'get_allowed_properties/2' -p143100 -S'get_allowed_properties(${1:OE_THIS}, ${2:OE_Options}) $3' -p143101 -tp143102 -a(S'get_allowed_property_types/1' -p143103 -S'get_allowed_property_types(${1:OE_THIS}) $2' -p143104 -tp143105 -a(S'get_allowed_property_types/2' -p143106 -S'get_allowed_property_types(${1:OE_THIS}, ${2:OE_Options}) $3' -p143107 -tp143108 -a(S'get_number_of_properties/1' -p143109 -S'get_number_of_properties(${1:OE_THIS}) $2' -p143110 -tp143111 -a(S'get_number_of_properties/2' -p143112 -S'get_number_of_properties(${1:OE_THIS}, ${2:OE_Options}) $3' -p143113 -tp143114 -a(S'get_properties/2' -p143115 -S'get_properties(${1:OE_THIS}, ${2:Property_names}) $3' -p143116 -tp143117 -a(S'get_properties/3' -p143118 -S'get_properties(${1:OE_THIS}, ${2:OE_Options}, ${3:Property_names}) $4' -p143119 -tp143120 -a(S'get_property_mode/2' -p143121 -S'get_property_mode(${1:OE_THIS}, ${2:Property_name}) $3' -p143122 -tp143123 -a(S'get_property_mode/3' -p143124 -S'get_property_mode(${1:OE_THIS}, ${2:OE_Options}, ${3:Property_name}) $4' -p143125 -tp143126 -a(S'get_property_modes/2' -p143127 -S'get_property_modes(${1:OE_THIS}, ${2:Property_names}) $3' -p143128 -tp143129 -a(S'get_property_modes/3' -p143130 -S'get_property_modes(${1:OE_THIS}, ${2:OE_Options}, ${3:Property_names}) $4' -p143131 -tp143132 -a(S'get_property_value/2' -p143133 -S'get_property_value(${1:OE_THIS}, ${2:Property_name}) $3' -p143134 -tp143135 -a(S'get_property_value/3' -p143136 -S'get_property_value(${1:OE_THIS}, ${2:OE_Options}, ${3:Property_name}) $4' -p143137 -tp143138 -a(S'handle_call/3' -p143139 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p143140 -tp143141 -a(S'handle_cast/2' -p143142 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p143143 -tp143144 -a(S'handle_info/2' -p143145 -S'handle_info(${1:Param1}, ${2:State}) $3' -p143146 -tp143147 -a(S'init/1' -p143148 -S'init(${1:Env}) $2' -p143149 -tp143150 -a(S'is_property_defined/2' -p143151 -S'is_property_defined(${1:OE_THIS}, ${2:Property_name}) $3' -p143152 -tp143153 -a(S'is_property_defined/3' -p143154 -S'is_property_defined(${1:OE_THIS}, ${2:OE_Options}, ${3:Property_name}) $4' -p143155 -tp143156 -a(S'oe_create/0' -p143157 -S'oe_create() $1' -p143158 -tp143159 -a(S'oe_create/1' -p143160 -S'oe_create(${1:Env}) $2' -p143161 -tp143162 -a(S'oe_create/2' -p143163 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p143164 -tp143165 -a(S'oe_create_link/0' -p143166 -S'oe_create_link() $1' -p143167 -tp143168 -a(S'oe_create_link/1' -p143169 -S'oe_create_link(${1:Env}) $2' -p143170 -tp143171 -a(S'oe_create_link/2' -p143172 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p143173 -tp143174 -a(S'oe_get_interface/0' -p143175 -S'oe_get_interface() $1' -p143176 -tp143177 -a(S'oe_is_a/1' -p143178 -S'oe_is_a(${1:Param1}) $2' -p143179 -tp143180 -a(S'oe_tc/1' -p143181 -S'oe_tc(${1:Param1}) $2' -p143182 -tp143183 -a(S'set_property_mode/3' -p143184 -S'set_property_mode(${1:OE_THIS}, ${2:Property_name}, ${3:Property_mode}) $4' -p143185 -tp143186 -a(S'set_property_mode/4' -p143187 -S'set_property_mode(${1:OE_THIS}, ${2:OE_Options}, ${3:Property_name}, ${4:Property_mode}) $5' -p143188 -tp143189 -a(S'set_property_modes/2' -p143190 -S'set_property_modes(${1:OE_THIS}, ${2:Property_modes}) $3' -p143191 -tp143192 -a(S'set_property_modes/3' -p143193 -S'set_property_modes(${1:OE_THIS}, ${2:OE_Options}, ${3:Property_modes}) $4' -p143194 -tp143195 -a(S'terminate/2' -p143196 -S'terminate(${1:Reason}, ${2:State}) $3' -p143197 -tp143198 -a(S'typeID/0' -p143199 -S'typeID() $1' -p143200 -tp143201 -asS'wxControl' -p143202 -(lp143203 -(S'cacheBestSize/2' -p143204 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p143205 -tp143206 -a(S'captureMouse/1' -p143207 -S'captureMouse(${1:This}) $2' -p143208 -tp143209 -a(S'center/1' -p143210 -S'center(${1:This}) $2' -p143211 -tp143212 -a(S'center/2' -p143213 -S'center(${1:This}, ${2:Options}) $3' -p143214 -tp143215 -a(S'centerOnParent/1' -p143216 -S'centerOnParent(${1:This}) $2' -p143217 -tp143218 -a(S'centerOnParent/2' -p143219 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p143220 -tp143221 -a(S'centre/1' -p143222 -S'centre(${1:This}) $2' -p143223 -tp143224 -a(S'centre/2' -p143225 -S'centre(${1:This}, ${2:Options}) $3' -p143226 -tp143227 -a(S'centreOnParent/1' -p143228 -S'centreOnParent(${1:This}) $2' -p143229 -tp143230 -a(S'centreOnParent/2' -p143231 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p143232 -tp143233 -a(S'clearBackground/1' -p143234 -S'clearBackground(${1:This}) $2' -p143235 -tp143236 -a(S'clientToScreen/2' -p143237 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p143238 -tp143239 -a(S'clientToScreen/3' -p143240 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p143241 -tp143242 -a(S'close/1' -p143243 -S'close(${1:This}) $2' -p143244 -tp143245 -a(S'close/2' -p143246 -S'close(${1:This}, ${2:Options}) $3' -p143247 -tp143248 -a(S'connect/2' -p143249 -S'connect(${1:This}, ${2:EventType}) $3' -p143250 -tp143251 -a(S'connect/3' -p143252 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p143253 -tp143254 -a(S'convertDialogToPixels/2' -p143255 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p143256 -tp143257 -a(S'convertPixelsToDialog/2' -p143258 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p143259 -tp143260 -a(S'destroyChildren/1' -p143261 -S'destroyChildren(${1:This}) $2' -p143262 -tp143263 -a(S'disable/1' -p143264 -S'disable(${1:This}) $2' -p143265 -tp143266 -a(S'disconnect/1' -p143267 -S'disconnect(${1:This}) $2' -p143268 -tp143269 -a(S'disconnect/2' -p143270 -S'disconnect(${1:This}, ${2:EventType}) $3' -p143271 -tp143272 -a(S'disconnect/3' -p143273 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p143274 -tp143275 -a(S'enable/1' -p143276 -S'enable(${1:This}) $2' -p143277 -tp143278 -a(S'enable/2' -p143279 -S'enable(${1:This}, ${2:Options}) $3' -p143280 -tp143281 -a(S'findWindow/2' -p143282 -S'findWindow(${1:This}, ${2:Winid}) $3' -p143283 -tp143284 -a(S'fit/1' -p143285 -S'fit(${1:This}) $2' -p143286 -tp143287 -a(S'fitInside/1' -p143288 -S'fitInside(${1:This}) $2' -p143289 -tp143290 -a(S'freeze/1' -p143291 -S'freeze(${1:This}) $2' -p143292 -tp143293 -a(S'getAcceleratorTable/1' -p143294 -S'getAcceleratorTable(${1:This}) $2' -p143295 -tp143296 -a(S'getBackgroundColour/1' -p143297 -S'getBackgroundColour(${1:This}) $2' -p143298 -tp143299 -a(S'getBackgroundStyle/1' -p143300 -S'getBackgroundStyle(${1:This}) $2' -p143301 -tp143302 -a(S'getBestSize/1' -p143303 -S'getBestSize(${1:This}) $2' -p143304 -tp143305 -a(S'getCaret/1' -p143306 -S'getCaret(${1:This}) $2' -p143307 -tp143308 -a(S'getCharHeight/1' -p143309 -S'getCharHeight(${1:This}) $2' -p143310 -tp143311 -a(S'getCharWidth/1' -p143312 -S'getCharWidth(${1:This}) $2' -p143313 -tp143314 -a(S'getChildren/1' -p143315 -S'getChildren(${1:This}) $2' -p143316 -tp143317 -a(S'getClientSize/1' -p143318 -S'getClientSize(${1:This}) $2' -p143319 -tp143320 -a(S'getContainingSizer/1' -p143321 -S'getContainingSizer(${1:This}) $2' -p143322 -tp143323 -a(S'getCursor/1' -p143324 -S'getCursor(${1:This}) $2' -p143325 -tp143326 -a(S'getDropTarget/1' -p143327 -S'getDropTarget(${1:This}) $2' -p143328 -tp143329 -a(S'getEventHandler/1' -p143330 -S'getEventHandler(${1:This}) $2' -p143331 -tp143332 -a(S'getExtraStyle/1' -p143333 -S'getExtraStyle(${1:This}) $2' -p143334 -tp143335 -a(S'getFont/1' -p143336 -S'getFont(${1:This}) $2' -p143337 -tp143338 -a(S'getForegroundColour/1' -p143339 -S'getForegroundColour(${1:This}) $2' -p143340 -tp143341 -a(S'getGrandParent/1' -p143342 -S'getGrandParent(${1:This}) $2' -p143343 -tp143344 -a(S'getHandle/1' -p143345 -S'getHandle(${1:This}) $2' -p143346 -tp143347 -a(S'getHelpText/1' -p143348 -S'getHelpText(${1:This}) $2' -p143349 -tp143350 -a(S'getId/1' -p143351 -S'getId(${1:This}) $2' -p143352 -tp143353 -a(S'getLabel/1' -p143354 -S'getLabel(${1:This}) $2' -p143355 -tp143356 -a(S'getMaxSize/1' -p143357 -S'getMaxSize(${1:This}) $2' -p143358 -tp143359 -a(S'getMinSize/1' -p143360 -S'getMinSize(${1:This}) $2' -p143361 -tp143362 -a(S'getName/1' -p143363 -S'getName(${1:This}) $2' -p143364 -tp143365 -a(S'getParent/1' -p143366 -S'getParent(${1:This}) $2' -p143367 -tp143368 -a(S'getPosition/1' -p143369 -S'getPosition(${1:This}) $2' -p143370 -tp143371 -a(S'getRect/1' -p143372 -S'getRect(${1:This}) $2' -p143373 -tp143374 -a(S'getScreenPosition/1' -p143375 -S'getScreenPosition(${1:This}) $2' -p143376 -tp143377 -a(S'getScreenRect/1' -p143378 -S'getScreenRect(${1:This}) $2' -p143379 -tp143380 -a(S'getScrollPos/2' -p143381 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p143382 -tp143383 -a(S'getScrollRange/2' -p143384 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p143385 -tp143386 -a(S'getScrollThumb/2' -p143387 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p143388 -tp143389 -a(S'getSize/1' -p143390 -S'getSize(${1:This}) $2' -p143391 -tp143392 -a(S'getSizer/1' -p143393 -S'getSizer(${1:This}) $2' -p143394 -tp143395 -a(S'getTextExtent/2' -p143396 -S'getTextExtent(${1:This}, ${2:String}) $3' -p143397 -tp143398 -a(S'getTextExtent/3' -p143399 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p143400 -tp143401 -a(S'getToolTip/1' -p143402 -S'getToolTip(${1:This}) $2' -p143403 -tp143404 -a(S'getUpdateRegion/1' -p143405 -S'getUpdateRegion(${1:This}) $2' -p143406 -tp143407 -a(S'getVirtualSize/1' -p143408 -S'getVirtualSize(${1:This}) $2' -p143409 -tp143410 -a(S'getWindowStyleFlag/1' -p143411 -S'getWindowStyleFlag(${1:This}) $2' -p143412 -tp143413 -a(S'getWindowVariant/1' -p143414 -S'getWindowVariant(${1:This}) $2' -p143415 -tp143416 -a(S'hasCapture/1' -p143417 -S'hasCapture(${1:This}) $2' -p143418 -tp143419 -a(S'hasScrollbar/2' -p143420 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p143421 -tp143422 -a(S'hasTransparentBackground/1' -p143423 -S'hasTransparentBackground(${1:This}) $2' -p143424 -tp143425 -a(S'hide/1' -p143426 -S'hide(${1:This}) $2' -p143427 -tp143428 -a(S'inheritAttributes/1' -p143429 -S'inheritAttributes(${1:This}) $2' -p143430 -tp143431 -a(S'initDialog/1' -p143432 -S'initDialog(${1:This}) $2' -p143433 -tp143434 -a(S'invalidateBestSize/1' -p143435 -S'invalidateBestSize(${1:This}) $2' -p143436 -tp143437 -a(S'isEnabled/1' -p143438 -S'isEnabled(${1:This}) $2' -p143439 -tp143440 -a(S'isExposed/2' -p143441 -S'isExposed(${1:This}, ${2:Pt}) $3' -p143442 -tp143443 -a(S'isExposed/3' -p143444 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p143445 -tp143446 -a(S'isExposed/5' -p143447 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p143448 -tp143449 -a(S'isRetained/1' -p143450 -S'isRetained(${1:This}) $2' -p143451 -tp143452 -a(S'isShown/1' -p143453 -S'isShown(${1:This}) $2' -p143454 -tp143455 -a(S'isTopLevel/1' -p143456 -S'isTopLevel(${1:This}) $2' -p143457 -tp143458 -a(S'layout/1' -p143459 -S'layout(${1:This}) $2' -p143460 -tp143461 -a(S'lineDown/1' -p143462 -S'lineDown(${1:This}) $2' -p143463 -tp143464 -a(S'lineUp/1' -p143465 -S'lineUp(${1:This}) $2' -p143466 -tp143467 -a(S'lower/1' -p143468 -S'lower(${1:This}) $2' -p143469 -tp143470 -a(S'makeModal/1' -p143471 -S'makeModal(${1:This}) $2' -p143472 -tp143473 -a(S'makeModal/2' -p143474 -S'makeModal(${1:This}, ${2:Options}) $3' -p143475 -tp143476 -a(S'move/2' -p143477 -S'move(${1:This}, ${2:Pt}) $3' -p143478 -tp143479 -a(S'move/3' -p143480 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p143481 -tp143482 -a(S'move/4' -p143483 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p143484 -tp143485 -a(S'moveAfterInTabOrder/2' -p143486 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p143487 -tp143488 -a(S'moveBeforeInTabOrder/2' -p143489 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p143490 -tp143491 -a(S'navigate/1' -p143492 -S'navigate(${1:This}) $2' -p143493 -tp143494 -a(S'navigate/2' -p143495 -S'navigate(${1:This}, ${2:Options}) $3' -p143496 -tp143497 -a(S'pageDown/1' -p143498 -S'pageDown(${1:This}) $2' -p143499 -tp143500 -a(S'pageUp/1' -p143501 -S'pageUp(${1:This}) $2' -p143502 -tp143503 -a(S'parent_class/1' -p143504 -S'parent_class(${1:Param1}) $2' -p143505 -tp143506 -a(S'popEventHandler/1' -p143507 -S'popEventHandler(${1:This}) $2' -p143508 -tp143509 -a(S'popEventHandler/2' -p143510 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p143511 -tp143512 -a(S'popupMenu/2' -p143513 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p143514 -tp143515 -a(S'popupMenu/3' -p143516 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p143517 -tp143518 -a(S'popupMenu/4' -p143519 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p143520 -tp143521 -a(S'raise/1' -p143522 -S'raise(${1:This}) $2' -p143523 -tp143524 -a(S'refresh/1' -p143525 -S'refresh(${1:This}) $2' -p143526 -tp143527 -a(S'refresh/2' -p143528 -S'refresh(${1:This}, ${2:Options}) $3' -p143529 -tp143530 -a(S'refreshRect/2' -p143531 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p143532 -tp143533 -a(S'refreshRect/3' -p143534 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p143535 -tp143536 -a(S'releaseMouse/1' -p143537 -S'releaseMouse(${1:This}) $2' -p143538 -tp143539 -a(S'removeChild/2' -p143540 -S'removeChild(${1:This}, ${2:Child}) $3' -p143541 -tp143542 -a(S'reparent/2' -p143543 -S'reparent(${1:This}, ${2:NewParent}) $3' -p143544 -tp143545 -a(S'screenToClient/1' -p143546 -S'screenToClient(${1:This}) $2' -p143547 -tp143548 -a(S'screenToClient/2' -p143549 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p143550 -tp143551 -a(S'scrollLines/2' -p143552 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p143553 -tp143554 -a(S'scrollPages/2' -p143555 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p143556 -tp143557 -a(S'scrollWindow/3' -p143558 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p143559 -tp143560 -a(S'scrollWindow/4' -p143561 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p143562 -tp143563 -a(S'setAcceleratorTable/2' -p143564 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p143565 -tp143566 -a(S'setAutoLayout/2' -p143567 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p143568 -tp143569 -a(S'setBackgroundColour/2' -p143570 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p143571 -tp143572 -a(S'setBackgroundStyle/2' -p143573 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p143574 -tp143575 -a(S'setCaret/2' -p143576 -S'setCaret(${1:This}, ${2:Caret}) $3' -p143577 -tp143578 -a(S'setClientSize/2' -p143579 -S'setClientSize(${1:This}, ${2:Size}) $3' -p143580 -tp143581 -a(S'setClientSize/3' -p143582 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p143583 -tp143584 -a(S'setContainingSizer/2' -p143585 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p143586 -tp143587 -a(S'setCursor/2' -p143588 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p143589 -tp143590 -a(S'setDropTarget/2' -p143591 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p143592 -tp143593 -a(S'setExtraStyle/2' -p143594 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p143595 -tp143596 -a(S'setFocus/1' -p143597 -S'setFocus(${1:This}) $2' -p143598 -tp143599 -a(S'setFocusFromKbd/1' -p143600 -S'setFocusFromKbd(${1:This}) $2' -p143601 -tp143602 -a(S'setFont/2' -p143603 -S'setFont(${1:This}, ${2:Font}) $3' -p143604 -tp143605 -a(S'setForegroundColour/2' -p143606 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p143607 -tp143608 -a(S'setHelpText/2' -p143609 -S'setHelpText(${1:This}, ${2:Text}) $3' -p143610 -tp143611 -a(S'setId/2' -p143612 -S'setId(${1:This}, ${2:Winid}) $3' -p143613 -tp143614 -a(S'setLabel/2' -p143615 -S'setLabel(${1:This}, ${2:Label}) $3' -p143616 -tp143617 -a(S'setMaxSize/2' -p143618 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p143619 -tp143620 -a(S'setMinSize/2' -p143621 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p143622 -tp143623 -a(S'setName/2' -p143624 -S'setName(${1:This}, ${2:Name}) $3' -p143625 -tp143626 -a(S'setOwnBackgroundColour/2' -p143627 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p143628 -tp143629 -a(S'setOwnFont/2' -p143630 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p143631 -tp143632 -a(S'setOwnForegroundColour/2' -p143633 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p143634 -tp143635 -a(S'setPalette/2' -p143636 -S'setPalette(${1:This}, ${2:Pal}) $3' -p143637 -tp143638 -a(S'setScrollPos/3' -p143639 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p143640 -tp143641 -a(S'setScrollPos/4' -p143642 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p143643 -tp143644 -a(S'setScrollbar/5' -p143645 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p143646 -tp143647 -a(S'setScrollbar/6' -p143648 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p143649 -tp143650 -a(S'setSize/2' -p143651 -S'setSize(${1:This}, ${2:Rect}) $3' -p143652 -tp143653 -a(S'setSize/3' -p143654 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p143655 -tp143656 -a(S'setSize/5' -p143657 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p143658 -tp143659 -a(S'setSize/6' -p143660 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p143661 -tp143662 -a(S'setSizeHints/2' -p143663 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p143664 -tp143665 -a(S'setSizeHints/3' -p143666 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p143667 -tp143668 -a(S'setSizeHints/4' -p143669 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p143670 -tp143671 -a(S'setSizer/2' -p143672 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p143673 -tp143674 -a(S'setSizer/3' -p143675 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p143676 -tp143677 -a(S'setSizerAndFit/2' -p143678 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p143679 -tp143680 -a(S'setSizerAndFit/3' -p143681 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p143682 -tp143683 -a(S'setThemeEnabled/2' -p143684 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p143685 -tp143686 -a(S'setToolTip/2' -p143687 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p143688 -tp143689 -a(S'setVirtualSize/2' -p143690 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p143691 -tp143692 -a(S'setVirtualSize/3' -p143693 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p143694 -tp143695 -a(S'setVirtualSizeHints/2' -p143696 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p143697 -tp143698 -a(S'setVirtualSizeHints/3' -p143699 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p143700 -tp143701 -a(S'setVirtualSizeHints/4' -p143702 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p143703 -tp143704 -a(S'setWindowStyle/2' -p143705 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p143706 -tp143707 -a(S'setWindowStyleFlag/2' -p143708 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p143709 -tp143710 -a(S'setWindowVariant/2' -p143711 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p143712 -tp143713 -a(S'shouldInheritColours/1' -p143714 -S'shouldInheritColours(${1:This}) $2' -p143715 -tp143716 -a(S'show/1' -p143717 -S'show(${1:This}) $2' -p143718 -tp143719 -a(S'show/2' -p143720 -S'show(${1:This}, ${2:Options}) $3' -p143721 -tp143722 -a(S'thaw/1' -p143723 -S'thaw(${1:This}) $2' -p143724 -tp143725 -a(S'transferDataFromWindow/1' -p143726 -S'transferDataFromWindow(${1:This}) $2' -p143727 -tp143728 -a(S'transferDataToWindow/1' -p143729 -S'transferDataToWindow(${1:This}) $2' -p143730 -tp143731 -a(S'update/1' -p143732 -S'update(${1:This}) $2' -p143733 -tp143734 -a(S'updateWindowUI/1' -p143735 -S'updateWindowUI(${1:This}) $2' -p143736 -tp143737 -a(S'updateWindowUI/2' -p143738 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p143739 -tp143740 -a(S'validate/1' -p143741 -S'validate(${1:This}) $2' -p143742 -tp143743 -a(S'warpPointer/3' -p143744 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p143745 -tp143746 -asS'snmpm_user_default' -p143747 -(lp143748 -(S'handle_agent/5' -p143749 -S'handle_agent(${1:Addr}, ${2:Port}, ${3:Type}, ${4:SnmpInfo}, ${5:UserData}) $6' -p143750 -tp143751 -a(S'handle_error/3' -p143752 -S'handle_error(${1:ReqId}, ${2:Reason}, ${3:UserData}) $4' -p143753 -tp143754 -a(S'handle_inform/3' -p143755 -S'handle_inform(${1:TargetName}, ${2:SnmpInform}, ${3:UserData}) $4' -p143756 -tp143757 -a(S'handle_pdu/4' -p143758 -S'handle_pdu(${1:TargetName}, ${2:ReqId}, ${3:SnmpResponse}, ${4:UserData}) $5' -p143759 -tp143760 -a(S'handle_report/3' -p143761 -S'handle_report(${1:TargetName}, ${2:SnmpReport}, ${3:UserData}) $4' -p143762 -tp143763 -a(S'handle_trap/3' -p143764 -S'handle_trap(${1:TargetName}, ${2:SnmpTrap}, ${3:UserData}) $4' -p143765 -tp143766 -asS'ic_error' -p143767 -(lp143768 -(S'error/2' -p143769 -S'error(${1:G}, ${2:Err}) $3' -p143770 -tp143771 -a(S'fatal_error/2' -p143772 -S'fatal_error(${1:G}, ${2:Err}) $3' -p143773 -tp143774 -a(S'get_error_count/1' -p143775 -S'get_error_count(${1:G}) $2' -p143776 -tp143777 -a(S'init_errors/1' -p143778 -S'init_errors(${1:G}) $2' -p143779 -tp143780 -a(S'return/1' -p143781 -S'return(${1:G}) $2' -p143782 -tp143783 -a(S'warn/2' -p143784 -S'warn(${1:G}, ${2:Warn}) $3' -p143785 -tp143786 -asS'ct_event' -p143787 -(lp143788 -(S'add_handler/0' -p143789 -S'add_handler() $1' -p143790 -tp143791 -a(S'add_handler/1' -p143792 -S'add_handler(${1:Args}) $2' -p143793 -tp143794 -a(S'code_change/3' -p143795 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p143796 -tp143797 -a(S'handle_call/2' -p143798 -S'handle_call(${1:Param1}, ${2:State}) $3' -p143799 -tp143800 -a(S'handle_event/2' -p143801 -S'handle_event(${1:Event}, ${2:Param2}) $3' -p143802 -tp143803 -a(S'handle_info/2' -p143804 -S'handle_info(${1:Param1}, ${2:State}) $3' -p143805 -tp143806 -a(S'init/1' -p143807 -S'init(${1:RecvPids}) $2' -p143808 -tp143809 -a(S'is_alive/0' -p143810 -S'is_alive() $1' -p143811 -tp143812 -a(S'notify/1' -p143813 -S'notify(${1:Event}) $2' -p143814 -tp143815 -a(S'start_link/0' -p143816 -S'start_link() $1' -p143817 -tp143818 -a(S'stop/0' -p143819 -S'stop() $1' -p143820 -tp143821 -a(S'sync_notify/1' -p143822 -S'sync_notify(${1:Event}) $2' -p143823 -tp143824 -a(S'terminate/2' -p143825 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p143826 -tp143827 -asS'megaco_ber_bin_media_gateway_control_v2' -p143828 -(lp143829 -(S"'dec_ActionReply'/2" -p143830 -S"'dec_ActionReply'(${1:Tlv}, ${2:TagIn}) $3" -p143831 -tp143832 -a(S"'dec_ActionRequest'/2" -p143833 -S"'dec_ActionRequest'(${1:Tlv}, ${2:TagIn}) $3" -p143834 -tp143835 -a(S"'dec_AmmDescriptor'/2" -p143836 -S"'dec_AmmDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p143837 -tp143838 -a(S"'dec_AmmRequest'/2" -p143839 -S"'dec_AmmRequest'(${1:Tlv}, ${2:TagIn}) $3" -p143840 -tp143841 -a(S"'dec_AmmsReply'/2" -p143842 -S"'dec_AmmsReply'(${1:Tlv}, ${2:TagIn}) $3" -p143843 -tp143844 -a(S"'dec_AuditDescriptor'/2" -p143845 -S"'dec_AuditDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p143846 -tp143847 -a(S"'dec_AuditReply'/2" -p143848 -S"'dec_AuditReply'(${1:Tlv}, ${2:TagIn}) $3" -p143849 -tp143850 -a(S"'dec_AuditRequest'/2" -p143851 -S"'dec_AuditRequest'(${1:Tlv}, ${2:TagIn}) $3" -p143852 -tp143853 -a(S"'dec_AuditResult'/2" -p143854 -S"'dec_AuditResult'(${1:Tlv}, ${2:TagIn}) $3" -p143855 -tp143856 -a(S"'dec_AuditReturnParameter'/2" -p143857 -S"'dec_AuditReturnParameter'(${1:Tlv}, ${2:TagIn}) $3" -p143858 -tp143859 -a(S"'dec_AuthData'/2" -p143860 -S"'dec_AuthData'(${1:Tlv}, ${2:TagIn}) $3" -p143861 -tp143862 -a(S"'dec_AuthenticationHeader'/2" -p143863 -S"'dec_AuthenticationHeader'(${1:Tlv}, ${2:TagIn}) $3" -p143864 -tp143865 -a(S"'dec_Command'/2" -p143866 -S"'dec_Command'(${1:Tlv}, ${2:TagIn}) $3" -p143867 -tp143868 -a(S"'dec_CommandReply'/2" -p143869 -S"'dec_CommandReply'(${1:Tlv}, ${2:TagIn}) $3" -p143870 -tp143871 -a(S"'dec_CommandRequest'/2" -p143872 -S"'dec_CommandRequest'(${1:Tlv}, ${2:TagIn}) $3" -p143873 -tp143874 -a(S"'dec_ContextAttrAuditRequest'/2" -p143875 -S"'dec_ContextAttrAuditRequest'(${1:Tlv}, ${2:TagIn}) $3" -p143876 -tp143877 -a(S"'dec_ContextID'/2" -p143878 -S"'dec_ContextID'(${1:Tlv}, ${2:TagIn}) $3" -p143879 -tp143880 -a(S"'dec_ContextRequest'/2" -p143881 -S"'dec_ContextRequest'(${1:Tlv}, ${2:TagIn}) $3" -p143882 -tp143883 -a(S"'dec_DigitMapDescriptor'/2" -p143884 -S"'dec_DigitMapDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p143885 -tp143886 -a(S"'dec_DigitMapName'/2" -p143887 -S"'dec_DigitMapName'(${1:Tlv}, ${2:TagIn}) $3" -p143888 -tp143889 -a(S"'dec_DigitMapValue'/2" -p143890 -S"'dec_DigitMapValue'(${1:Tlv}, ${2:TagIn}) $3" -p143891 -tp143892 -a(S"'dec_DomainName'/2" -p143893 -S"'dec_DomainName'(${1:Tlv}, ${2:TagIn}) $3" -p143894 -tp143895 -a(S"'dec_ErrorCode'/2" -p143896 -S"'dec_ErrorCode'(${1:Tlv}, ${2:TagIn}) $3" -p143897 -tp143898 -a(S"'dec_ErrorDescriptor'/2" -p143899 -S"'dec_ErrorDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p143900 -tp143901 -a(S"'dec_ErrorText'/2" -p143902 -S"'dec_ErrorText'(${1:Tlv}, ${2:TagIn}) $3" -p143903 -tp143904 -a(S"'dec_EventBufferControl'/2" -p143905 -S"'dec_EventBufferControl'(${1:Tlv}, ${2:TagIn}) $3" -p143906 -tp143907 -a(S"'dec_EventBufferDescriptor'/2" -p143908 -S"'dec_EventBufferDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p143909 -tp143910 -a(S"'dec_EventDM'/2" -p143911 -S"'dec_EventDM'(${1:Tlv}, ${2:TagIn}) $3" -p143912 -tp143913 -a(S"'dec_EventName'/2" -p143914 -S"'dec_EventName'(${1:Tlv}, ${2:TagIn}) $3" -p143915 -tp143916 -a(S"'dec_EventParameter'/2" -p143917 -S"'dec_EventParameter'(${1:Tlv}, ${2:TagIn}) $3" -p143918 -tp143919 -a(S"'dec_EventSpec'/2" -p143920 -S"'dec_EventSpec'(${1:Tlv}, ${2:TagIn}) $3" -p143921 -tp143922 -a(S"'dec_EventsDescriptor'/2" -p143923 -S"'dec_EventsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p143924 -tp143925 -a(S"'dec_H221NonStandard'/2" -p143926 -S"'dec_H221NonStandard'(${1:Tlv}, ${2:TagIn}) $3" -p143927 -tp143928 -a(S"'dec_IP4Address'/2" -p143929 -S"'dec_IP4Address'(${1:Tlv}, ${2:TagIn}) $3" -p143930 -tp143931 -a(S"'dec_IP6Address'/2" -p143932 -S"'dec_IP6Address'(${1:Tlv}, ${2:TagIn}) $3" -p143933 -tp143934 -a(S"'dec_IndAudDigitMapDescriptor'/2" -p143935 -S"'dec_IndAudDigitMapDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p143936 -tp143937 -a(S"'dec_IndAudEventBufferDescriptor'/2" -p143938 -S"'dec_IndAudEventBufferDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p143939 -tp143940 -a(S"'dec_IndAudEventsDescriptor'/2" -p143941 -S"'dec_IndAudEventsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p143942 -tp143943 -a(S"'dec_IndAudLocalControlDescriptor'/2" -p143944 -S"'dec_IndAudLocalControlDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p143945 -tp143946 -a(S"'dec_IndAudLocalRemoteDescriptor'/2" -p143947 -S"'dec_IndAudLocalRemoteDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p143948 -tp143949 -a(S"'dec_IndAudMediaDescriptor'/2" -p143950 -S"'dec_IndAudMediaDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p143951 -tp143952 -a(S"'dec_IndAudPackagesDescriptor'/2" -p143953 -S"'dec_IndAudPackagesDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p143954 -tp143955 -a(S"'dec_IndAudPropertyGroup'/2" -p143956 -S"'dec_IndAudPropertyGroup'(${1:Tlv}, ${2:TagIn}) $3" -p143957 -tp143958 -a(S"'dec_IndAudPropertyParm'/2" -p143959 -S"'dec_IndAudPropertyParm'(${1:Tlv}, ${2:TagIn}) $3" -p143960 -tp143961 -a(S"'dec_IndAudSeqSigList'/2" -p143962 -S"'dec_IndAudSeqSigList'(${1:Tlv}, ${2:TagIn}) $3" -p143963 -tp143964 -a(S"'dec_IndAudSignal'/2" -p143965 -S"'dec_IndAudSignal'(${1:Tlv}, ${2:TagIn}) $3" -p143966 -tp143967 -a(S"'dec_IndAudSignalsDescriptor'/2" -p143968 -S"'dec_IndAudSignalsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p143969 -tp143970 -a(S"'dec_IndAudStatisticsDescriptor'/2" -p143971 -S"'dec_IndAudStatisticsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p143972 -tp143973 -a(S"'dec_IndAudStreamDescriptor'/2" -p143974 -S"'dec_IndAudStreamDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p143975 -tp143976 -a(S"'dec_IndAudStreamParms'/2" -p143977 -S"'dec_IndAudStreamParms'(${1:Tlv}, ${2:TagIn}) $3" -p143978 -tp143979 -a(S"'dec_IndAudTerminationStateDescriptor'/2" -p143980 -S"'dec_IndAudTerminationStateDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p143981 -tp143982 -a(S"'dec_IndAuditParameter'/2" -p143983 -S"'dec_IndAuditParameter'(${1:Tlv}, ${2:TagIn}) $3" -p143984 -tp143985 -a(S"'dec_LocalControlDescriptor'/2" -p143986 -S"'dec_LocalControlDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p143987 -tp143988 -a(S"'dec_LocalRemoteDescriptor'/2" -p143989 -S"'dec_LocalRemoteDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p143990 -tp143991 -a(S"'dec_MId'/2" -p143992 -S"'dec_MId'(${1:Tlv}, ${2:TagIn}) $3" -p143993 -tp143994 -a(S"'dec_MediaDescriptor'/2" -p143995 -S"'dec_MediaDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p143996 -tp143997 -a(S"'dec_MegacoMessage'/2" -p143998 -S"'dec_MegacoMessage'(${1:Tlv}, ${2:TagIn}) $3" -p143999 -tp144000 -a(S"'dec_Message'/2" -p144001 -S"'dec_Message'(${1:Tlv}, ${2:TagIn}) $3" -p144002 -tp144003 -a(S"'dec_ModemDescriptor'/2" -p144004 -S"'dec_ModemDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p144005 -tp144006 -a(S"'dec_ModemType'/2" -p144007 -S"'dec_ModemType'(${1:Tlv}, ${2:TagIn}) $3" -p144008 -tp144009 -a(S"'dec_MuxDescriptor'/2" -p144010 -S"'dec_MuxDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p144011 -tp144012 -a(S"'dec_MuxType'/2" -p144013 -S"'dec_MuxType'(${1:Tlv}, ${2:TagIn}) $3" -p144014 -tp144015 -a(S"'dec_Name'/2" -p144016 -S"'dec_Name'(${1:Tlv}, ${2:TagIn}) $3" -p144017 -tp144018 -a(S"'dec_NonStandardData'/2" -p144019 -S"'dec_NonStandardData'(${1:Tlv}, ${2:TagIn}) $3" -p144020 -tp144021 -a(S"'dec_NonStandardIdentifier'/2" -p144022 -S"'dec_NonStandardIdentifier'(${1:Tlv}, ${2:TagIn}) $3" -p144023 -tp144024 -a(S"'dec_NotifyCompletion'/2" -p144025 -S"'dec_NotifyCompletion'(${1:Tlv}, ${2:TagIn}) $3" -p144026 -tp144027 -a(S"'dec_NotifyReply'/2" -p144028 -S"'dec_NotifyReply'(${1:Tlv}, ${2:TagIn}) $3" -p144029 -tp144030 -a(S"'dec_NotifyRequest'/2" -p144031 -S"'dec_NotifyRequest'(${1:Tlv}, ${2:TagIn}) $3" -p144032 -tp144033 -a(S"'dec_ObservedEvent'/2" -p144034 -S"'dec_ObservedEvent'(${1:Tlv}, ${2:TagIn}) $3" -p144035 -tp144036 -a(S"'dec_ObservedEventsDescriptor'/2" -p144037 -S"'dec_ObservedEventsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p144038 -tp144039 -a(S"'dec_PackagesDescriptor'/2" -p144040 -S"'dec_PackagesDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p144041 -tp144042 -a(S"'dec_PackagesItem'/2" -p144043 -S"'dec_PackagesItem'(${1:Tlv}, ${2:TagIn}) $3" -p144044 -tp144045 -a(S"'dec_PathName'/2" -p144046 -S"'dec_PathName'(${1:Tlv}, ${2:TagIn}) $3" -p144047 -tp144048 -a(S"'dec_PkgdName'/2" -p144049 -S"'dec_PkgdName'(${1:Tlv}, ${2:TagIn}) $3" -p144050 -tp144051 -a(S"'dec_PropertyGroup'/2" -p144052 -S"'dec_PropertyGroup'(${1:Tlv}, ${2:TagIn}) $3" -p144053 -tp144054 -a(S"'dec_PropertyParm'/2" -p144055 -S"'dec_PropertyParm'(${1:Tlv}, ${2:TagIn}) $3" -p144056 -tp144057 -a(S"'dec_Relation'/2" -p144058 -S"'dec_Relation'(${1:Tlv}, ${2:TagIn}) $3" -p144059 -tp144060 -a(S"'dec_RequestID'/2" -p144061 -S"'dec_RequestID'(${1:Tlv}, ${2:TagIn}) $3" -p144062 -tp144063 -a(S"'dec_RequestedActions'/2" -p144064 -S"'dec_RequestedActions'(${1:Tlv}, ${2:TagIn}) $3" -p144065 -tp144066 -a(S"'dec_RequestedEvent'/2" -p144067 -S"'dec_RequestedEvent'(${1:Tlv}, ${2:TagIn}) $3" -p144068 -tp144069 -a(S"'dec_SecondEventsDescriptor'/2" -p144070 -S"'dec_SecondEventsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p144071 -tp144072 -a(S"'dec_SecondRequestedActions'/2" -p144073 -S"'dec_SecondRequestedActions'(${1:Tlv}, ${2:TagIn}) $3" -p144074 -tp144075 -a(S"'dec_SecondRequestedEvent'/2" -p144076 -S"'dec_SecondRequestedEvent'(${1:Tlv}, ${2:TagIn}) $3" -p144077 -tp144078 -a(S"'dec_SecurityParmIndex'/2" -p144079 -S"'dec_SecurityParmIndex'(${1:Tlv}, ${2:TagIn}) $3" -p144080 -tp144081 -a(S"'dec_SeqSigList'/2" -p144082 -S"'dec_SeqSigList'(${1:Tlv}, ${2:TagIn}) $3" -p144083 -tp144084 -a(S"'dec_SequenceNum'/2" -p144085 -S"'dec_SequenceNum'(${1:Tlv}, ${2:TagIn}) $3" -p144086 -tp144087 -a(S"'dec_ServiceChangeAddress'/2" -p144088 -S"'dec_ServiceChangeAddress'(${1:Tlv}, ${2:TagIn}) $3" -p144089 -tp144090 -a(S"'dec_ServiceChangeMethod'/2" -p144091 -S"'dec_ServiceChangeMethod'(${1:Tlv}, ${2:TagIn}) $3" -p144092 -tp144093 -a(S"'dec_ServiceChangeParm'/2" -p144094 -S"'dec_ServiceChangeParm'(${1:Tlv}, ${2:TagIn}) $3" -p144095 -tp144096 -a(S"'dec_ServiceChangeProfile'/2" -p144097 -S"'dec_ServiceChangeProfile'(${1:Tlv}, ${2:TagIn}) $3" -p144098 -tp144099 -a(S"'dec_ServiceChangeReply'/2" -p144100 -S"'dec_ServiceChangeReply'(${1:Tlv}, ${2:TagIn}) $3" -p144101 -tp144102 -a(S"'dec_ServiceChangeRequest'/2" -p144103 -S"'dec_ServiceChangeRequest'(${1:Tlv}, ${2:TagIn}) $3" -p144104 -tp144105 -a(S"'dec_ServiceChangeResParm'/2" -p144106 -S"'dec_ServiceChangeResParm'(${1:Tlv}, ${2:TagIn}) $3" -p144107 -tp144108 -a(S"'dec_ServiceChangeResult'/2" -p144109 -S"'dec_ServiceChangeResult'(${1:Tlv}, ${2:TagIn}) $3" -p144110 -tp144111 -a(S"'dec_ServiceState'/2" -p144112 -S"'dec_ServiceState'(${1:Tlv}, ${2:TagIn}) $3" -p144113 -tp144114 -a(S"'dec_SigParameter'/2" -p144115 -S"'dec_SigParameter'(${1:Tlv}, ${2:TagIn}) $3" -p144116 -tp144117 -a(S"'dec_Signal'/2" -p144118 -S"'dec_Signal'(${1:Tlv}, ${2:TagIn}) $3" -p144119 -tp144120 -a(S"'dec_SignalName'/2" -p144121 -S"'dec_SignalName'(${1:Tlv}, ${2:TagIn}) $3" -p144122 -tp144123 -a(S"'dec_SignalRequest'/2" -p144124 -S"'dec_SignalRequest'(${1:Tlv}, ${2:TagIn}) $3" -p144125 -tp144126 -a(S"'dec_SignalType'/2" -p144127 -S"'dec_SignalType'(${1:Tlv}, ${2:TagIn}) $3" -p144128 -tp144129 -a(S"'dec_SignalsDescriptor'/2" -p144130 -S"'dec_SignalsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p144131 -tp144132 -a(S"'dec_StatisticsDescriptor'/2" -p144133 -S"'dec_StatisticsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p144134 -tp144135 -a(S"'dec_StatisticsParameter'/2" -p144136 -S"'dec_StatisticsParameter'(${1:Tlv}, ${2:TagIn}) $3" -p144137 -tp144138 -a(S"'dec_StreamDescriptor'/2" -p144139 -S"'dec_StreamDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p144140 -tp144141 -a(S"'dec_StreamID'/2" -p144142 -S"'dec_StreamID'(${1:Tlv}, ${2:TagIn}) $3" -p144143 -tp144144 -a(S"'dec_StreamMode'/2" -p144145 -S"'dec_StreamMode'(${1:Tlv}, ${2:TagIn}) $3" -p144146 -tp144147 -a(S"'dec_StreamParms'/2" -p144148 -S"'dec_StreamParms'(${1:Tlv}, ${2:TagIn}) $3" -p144149 -tp144150 -a(S"'dec_SubtractRequest'/2" -p144151 -S"'dec_SubtractRequest'(${1:Tlv}, ${2:TagIn}) $3" -p144152 -tp144153 -a(S"'dec_TerminationAudit'/2" -p144154 -S"'dec_TerminationAudit'(${1:Tlv}, ${2:TagIn}) $3" -p144155 -tp144156 -a(S"'dec_TerminationID'/2" -p144157 -S"'dec_TerminationID'(${1:Tlv}, ${2:TagIn}) $3" -p144158 -tp144159 -a(S"'dec_TerminationIDList'/2" -p144160 -S"'dec_TerminationIDList'(${1:Tlv}, ${2:TagIn}) $3" -p144161 -tp144162 -a(S"'dec_TerminationStateDescriptor'/2" -p144163 -S"'dec_TerminationStateDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p144164 -tp144165 -a(S"'dec_TimeNotation'/2" -p144166 -S"'dec_TimeNotation'(${1:Tlv}, ${2:TagIn}) $3" -p144167 -tp144168 -a(S"'dec_TopologyRequest'/2" -p144169 -S"'dec_TopologyRequest'(${1:Tlv}, ${2:TagIn}) $3" -p144170 -tp144171 -a(S"'dec_Transaction'/2" -p144172 -S"'dec_Transaction'(${1:Tlv}, ${2:TagIn}) $3" -p144173 -tp144174 -a(S"'dec_TransactionAck'/2" -p144175 -S"'dec_TransactionAck'(${1:Tlv}, ${2:TagIn}) $3" -p144176 -tp144177 -a(S"'dec_TransactionId'/2" -p144178 -S"'dec_TransactionId'(${1:Tlv}, ${2:TagIn}) $3" -p144179 -tp144180 -a(S"'dec_TransactionPending'/2" -p144181 -S"'dec_TransactionPending'(${1:Tlv}, ${2:TagIn}) $3" -p144182 -tp144183 -a(S"'dec_TransactionReply'/2" -p144184 -S"'dec_TransactionReply'(${1:Tlv}, ${2:TagIn}) $3" -p144185 -tp144186 -a(S"'dec_TransactionRequest'/2" -p144187 -S"'dec_TransactionRequest'(${1:Tlv}, ${2:TagIn}) $3" -p144188 -tp144189 -a(S"'dec_TransactionResponseAck'/2" -p144190 -S"'dec_TransactionResponseAck'(${1:Tlv}, ${2:TagIn}) $3" -p144191 -tp144192 -a(S"'dec_Value'/2" -p144193 -S"'dec_Value'(${1:Tlv}, ${2:TagIn}) $3" -p144194 -tp144195 -a(S"'dec_WildcardField'/2" -p144196 -S"'dec_WildcardField'(${1:Tlv}, ${2:TagIn}) $3" -p144197 -tp144198 -a(S"'enc_ActionReply'/2" -p144199 -S"'enc_ActionReply'(${1:Val}, ${2:TagIn}) $3" -p144200 -tp144201 -a(S"'enc_ActionRequest'/2" -p144202 -S"'enc_ActionRequest'(${1:Val}, ${2:TagIn}) $3" -p144203 -tp144204 -a(S"'enc_AmmDescriptor'/2" -p144205 -S"'enc_AmmDescriptor'(${1:Val}, ${2:TagIn}) $3" -p144206 -tp144207 -a(S"'enc_AmmRequest'/2" -p144208 -S"'enc_AmmRequest'(${1:Val}, ${2:TagIn}) $3" -p144209 -tp144210 -a(S"'enc_AmmsReply'/2" -p144211 -S"'enc_AmmsReply'(${1:Val}, ${2:TagIn}) $3" -p144212 -tp144213 -a(S"'enc_AuditDescriptor'/2" -p144214 -S"'enc_AuditDescriptor'(${1:Val}, ${2:TagIn}) $3" -p144215 -tp144216 -a(S"'enc_AuditReply'/2" -p144217 -S"'enc_AuditReply'(${1:Val}, ${2:TagIn}) $3" -p144218 -tp144219 -a(S"'enc_AuditRequest'/2" -p144220 -S"'enc_AuditRequest'(${1:Val}, ${2:TagIn}) $3" -p144221 -tp144222 -a(S"'enc_AuditResult'/2" -p144223 -S"'enc_AuditResult'(${1:Val}, ${2:TagIn}) $3" -p144224 -tp144225 -a(S"'enc_AuditReturnParameter'/2" -p144226 -S"'enc_AuditReturnParameter'(${1:Val}, ${2:TagIn}) $3" -p144227 -tp144228 -a(S"'enc_AuthData'/2" -p144229 -S"'enc_AuthData'(${1:Val}, ${2:TagIn}) $3" -p144230 -tp144231 -a(S"'enc_AuthenticationHeader'/2" -p144232 -S"'enc_AuthenticationHeader'(${1:Val}, ${2:TagIn}) $3" -p144233 -tp144234 -a(S"'enc_Command'/2" -p144235 -S"'enc_Command'(${1:Val}, ${2:TagIn}) $3" -p144236 -tp144237 -a(S"'enc_CommandReply'/2" -p144238 -S"'enc_CommandReply'(${1:Val}, ${2:TagIn}) $3" -p144239 -tp144240 -a(S"'enc_CommandRequest'/2" -p144241 -S"'enc_CommandRequest'(${1:Val}, ${2:TagIn}) $3" -p144242 -tp144243 -a(S"'enc_ContextAttrAuditRequest'/2" -p144244 -S"'enc_ContextAttrAuditRequest'(${1:Val}, ${2:TagIn}) $3" -p144245 -tp144246 -a(S"'enc_ContextID'/2" -p144247 -S"'enc_ContextID'(${1:Val}, ${2:TagIn}) $3" -p144248 -tp144249 -a(S"'enc_ContextRequest'/2" -p144250 -S"'enc_ContextRequest'(${1:Val}, ${2:TagIn}) $3" -p144251 -tp144252 -a(S"'enc_DigitMapDescriptor'/2" -p144253 -S"'enc_DigitMapDescriptor'(${1:Val}, ${2:TagIn}) $3" -p144254 -tp144255 -a(S"'enc_DigitMapName'/2" -p144256 -S"'enc_DigitMapName'(${1:Val}, ${2:TagIn}) $3" -p144257 -tp144258 -a(S"'enc_DigitMapValue'/2" -p144259 -S"'enc_DigitMapValue'(${1:Val}, ${2:TagIn}) $3" -p144260 -tp144261 -a(S"'enc_DomainName'/2" -p144262 -S"'enc_DomainName'(${1:Val}, ${2:TagIn}) $3" -p144263 -tp144264 -a(S"'enc_ErrorCode'/2" -p144265 -S"'enc_ErrorCode'(${1:Val}, ${2:TagIn}) $3" -p144266 -tp144267 -a(S"'enc_ErrorDescriptor'/2" -p144268 -S"'enc_ErrorDescriptor'(${1:Val}, ${2:TagIn}) $3" -p144269 -tp144270 -a(S"'enc_ErrorText'/2" -p144271 -S"'enc_ErrorText'(${1:Val}, ${2:TagIn}) $3" -p144272 -tp144273 -a(S"'enc_EventBufferControl'/2" -p144274 -S"'enc_EventBufferControl'(${1:Val}, ${2:TagIn}) $3" -p144275 -tp144276 -a(S"'enc_EventBufferDescriptor'/2" -p144277 -S"'enc_EventBufferDescriptor'(${1:Val}, ${2:TagIn}) $3" -p144278 -tp144279 -a(S"'enc_EventDM'/2" -p144280 -S"'enc_EventDM'(${1:Val}, ${2:TagIn}) $3" -p144281 -tp144282 -a(S"'enc_EventName'/2" -p144283 -S"'enc_EventName'(${1:Val}, ${2:TagIn}) $3" -p144284 -tp144285 -a(S"'enc_EventParameter'/2" -p144286 -S"'enc_EventParameter'(${1:Val}, ${2:TagIn}) $3" -p144287 -tp144288 -a(S"'enc_EventSpec'/2" -p144289 -S"'enc_EventSpec'(${1:Val}, ${2:TagIn}) $3" -p144290 -tp144291 -a(S"'enc_EventsDescriptor'/2" -p144292 -S"'enc_EventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p144293 -tp144294 -a(S"'enc_H221NonStandard'/2" -p144295 -S"'enc_H221NonStandard'(${1:Val}, ${2:TagIn}) $3" -p144296 -tp144297 -a(S"'enc_IP4Address'/2" -p144298 -S"'enc_IP4Address'(${1:Val}, ${2:TagIn}) $3" -p144299 -tp144300 -a(S"'enc_IP6Address'/2" -p144301 -S"'enc_IP6Address'(${1:Val}, ${2:TagIn}) $3" -p144302 -tp144303 -a(S"'enc_IndAudDigitMapDescriptor'/2" -p144304 -S"'enc_IndAudDigitMapDescriptor'(${1:Val}, ${2:TagIn}) $3" -p144305 -tp144306 -a(S"'enc_IndAudEventBufferDescriptor'/2" -p144307 -S"'enc_IndAudEventBufferDescriptor'(${1:Val}, ${2:TagIn}) $3" -p144308 -tp144309 -a(S"'enc_IndAudEventsDescriptor'/2" -p144310 -S"'enc_IndAudEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p144311 -tp144312 -a(S"'enc_IndAudLocalControlDescriptor'/2" -p144313 -S"'enc_IndAudLocalControlDescriptor'(${1:Val}, ${2:TagIn}) $3" -p144314 -tp144315 -a(S"'enc_IndAudLocalRemoteDescriptor'/2" -p144316 -S"'enc_IndAudLocalRemoteDescriptor'(${1:Val}, ${2:TagIn}) $3" -p144317 -tp144318 -a(S"'enc_IndAudMediaDescriptor'/2" -p144319 -S"'enc_IndAudMediaDescriptor'(${1:Val}, ${2:TagIn}) $3" -p144320 -tp144321 -a(S"'enc_IndAudPackagesDescriptor'/2" -p144322 -S"'enc_IndAudPackagesDescriptor'(${1:Val}, ${2:TagIn}) $3" -p144323 -tp144324 -a(S"'enc_IndAudPropertyGroup'/2" -p144325 -S"'enc_IndAudPropertyGroup'(${1:Val}, ${2:TagIn}) $3" -p144326 -tp144327 -a(S"'enc_IndAudPropertyParm'/2" -p144328 -S"'enc_IndAudPropertyParm'(${1:Val}, ${2:TagIn}) $3" -p144329 -tp144330 -a(S"'enc_IndAudSeqSigList'/2" -p144331 -S"'enc_IndAudSeqSigList'(${1:Val}, ${2:TagIn}) $3" -p144332 -tp144333 -a(S"'enc_IndAudSignal'/2" -p144334 -S"'enc_IndAudSignal'(${1:Val}, ${2:TagIn}) $3" -p144335 -tp144336 -a(S"'enc_IndAudSignalsDescriptor'/2" -p144337 -S"'enc_IndAudSignalsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p144338 -tp144339 -a(S"'enc_IndAudStatisticsDescriptor'/2" -p144340 -S"'enc_IndAudStatisticsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p144341 -tp144342 -a(S"'enc_IndAudStreamDescriptor'/2" -p144343 -S"'enc_IndAudStreamDescriptor'(${1:Val}, ${2:TagIn}) $3" -p144344 -tp144345 -a(S"'enc_IndAudStreamParms'/2" -p144346 -S"'enc_IndAudStreamParms'(${1:Val}, ${2:TagIn}) $3" -p144347 -tp144348 -a(S"'enc_IndAudTerminationStateDescriptor'/2" -p144349 -S"'enc_IndAudTerminationStateDescriptor'(${1:Val}, ${2:TagIn}) $3" -p144350 -tp144351 -a(S"'enc_IndAuditParameter'/2" -p144352 -S"'enc_IndAuditParameter'(${1:Val}, ${2:TagIn}) $3" -p144353 -tp144354 -a(S"'enc_LocalControlDescriptor'/2" -p144355 -S"'enc_LocalControlDescriptor'(${1:Val}, ${2:TagIn}) $3" -p144356 -tp144357 -a(S"'enc_LocalRemoteDescriptor'/2" -p144358 -S"'enc_LocalRemoteDescriptor'(${1:Val}, ${2:TagIn}) $3" -p144359 -tp144360 -a(S"'enc_MId'/2" -p144361 -S"'enc_MId'(${1:Val}, ${2:TagIn}) $3" -p144362 -tp144363 -a(S"'enc_MediaDescriptor'/2" -p144364 -S"'enc_MediaDescriptor'(${1:Val}, ${2:TagIn}) $3" -p144365 -tp144366 -a(S"'enc_MegacoMessage'/2" -p144367 -S"'enc_MegacoMessage'(${1:Val}, ${2:TagIn}) $3" -p144368 -tp144369 -a(S"'enc_Message'/2" -p144370 -S"'enc_Message'(${1:Val}, ${2:TagIn}) $3" -p144371 -tp144372 -a(S"'enc_ModemDescriptor'/2" -p144373 -S"'enc_ModemDescriptor'(${1:Val}, ${2:TagIn}) $3" -p144374 -tp144375 -a(S"'enc_ModemType'/2" -p144376 -S"'enc_ModemType'(${1:Val}, ${2:TagIn}) $3" -p144377 -tp144378 -a(S"'enc_MuxDescriptor'/2" -p144379 -S"'enc_MuxDescriptor'(${1:Val}, ${2:TagIn}) $3" -p144380 -tp144381 -a(S"'enc_MuxType'/2" -p144382 -S"'enc_MuxType'(${1:Val}, ${2:TagIn}) $3" -p144383 -tp144384 -a(S"'enc_Name'/2" -p144385 -S"'enc_Name'(${1:Val}, ${2:TagIn}) $3" -p144386 -tp144387 -a(S"'enc_NonStandardData'/2" -p144388 -S"'enc_NonStandardData'(${1:Val}, ${2:TagIn}) $3" -p144389 -tp144390 -a(S"'enc_NonStandardIdentifier'/2" -p144391 -S"'enc_NonStandardIdentifier'(${1:Val}, ${2:TagIn}) $3" -p144392 -tp144393 -a(S"'enc_NotifyCompletion'/2" -p144394 -S"'enc_NotifyCompletion'(${1:Val}, ${2:TagIn}) $3" -p144395 -tp144396 -a(S"'enc_NotifyReply'/2" -p144397 -S"'enc_NotifyReply'(${1:Val}, ${2:TagIn}) $3" -p144398 -tp144399 -a(S"'enc_NotifyRequest'/2" -p144400 -S"'enc_NotifyRequest'(${1:Val}, ${2:TagIn}) $3" -p144401 -tp144402 -a(S"'enc_ObservedEvent'/2" -p144403 -S"'enc_ObservedEvent'(${1:Val}, ${2:TagIn}) $3" -p144404 -tp144405 -a(S"'enc_ObservedEventsDescriptor'/2" -p144406 -S"'enc_ObservedEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p144407 -tp144408 -a(S"'enc_PackagesDescriptor'/2" -p144409 -S"'enc_PackagesDescriptor'(${1:Val}, ${2:TagIn}) $3" -p144410 -tp144411 -a(S"'enc_PackagesItem'/2" -p144412 -S"'enc_PackagesItem'(${1:Val}, ${2:TagIn}) $3" -p144413 -tp144414 -a(S"'enc_PathName'/2" -p144415 -S"'enc_PathName'(${1:Val}, ${2:TagIn}) $3" -p144416 -tp144417 -a(S"'enc_PkgdName'/2" -p144418 -S"'enc_PkgdName'(${1:Val}, ${2:TagIn}) $3" -p144419 -tp144420 -a(S"'enc_PropertyGroup'/2" -p144421 -S"'enc_PropertyGroup'(${1:Val}, ${2:TagIn}) $3" -p144422 -tp144423 -a(S"'enc_PropertyParm'/2" -p144424 -S"'enc_PropertyParm'(${1:Val}, ${2:TagIn}) $3" -p144425 -tp144426 -a(S"'enc_Relation'/2" -p144427 -S"'enc_Relation'(${1:Val}, ${2:TagIn}) $3" -p144428 -tp144429 -a(S"'enc_RequestID'/2" -p144430 -S"'enc_RequestID'(${1:Val}, ${2:TagIn}) $3" -p144431 -tp144432 -a(S"'enc_RequestedActions'/2" -p144433 -S"'enc_RequestedActions'(${1:Val}, ${2:TagIn}) $3" -p144434 -tp144435 -a(S"'enc_RequestedEvent'/2" -p144436 -S"'enc_RequestedEvent'(${1:Val}, ${2:TagIn}) $3" -p144437 -tp144438 -a(S"'enc_SecondEventsDescriptor'/2" -p144439 -S"'enc_SecondEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p144440 -tp144441 -a(S"'enc_SecondRequestedActions'/2" -p144442 -S"'enc_SecondRequestedActions'(${1:Val}, ${2:TagIn}) $3" -p144443 -tp144444 -a(S"'enc_SecondRequestedEvent'/2" -p144445 -S"'enc_SecondRequestedEvent'(${1:Val}, ${2:TagIn}) $3" -p144446 -tp144447 -a(S"'enc_SecurityParmIndex'/2" -p144448 -S"'enc_SecurityParmIndex'(${1:Val}, ${2:TagIn}) $3" -p144449 -tp144450 -a(S"'enc_SeqSigList'/2" -p144451 -S"'enc_SeqSigList'(${1:Val}, ${2:TagIn}) $3" -p144452 -tp144453 -a(S"'enc_SequenceNum'/2" -p144454 -S"'enc_SequenceNum'(${1:Val}, ${2:TagIn}) $3" -p144455 -tp144456 -a(S"'enc_ServiceChangeAddress'/2" -p144457 -S"'enc_ServiceChangeAddress'(${1:Val}, ${2:TagIn}) $3" -p144458 -tp144459 -a(S"'enc_ServiceChangeMethod'/2" -p144460 -S"'enc_ServiceChangeMethod'(${1:Val}, ${2:TagIn}) $3" -p144461 -tp144462 -a(S"'enc_ServiceChangeParm'/2" -p144463 -S"'enc_ServiceChangeParm'(${1:Val}, ${2:TagIn}) $3" -p144464 -tp144465 -a(S"'enc_ServiceChangeProfile'/2" -p144466 -S"'enc_ServiceChangeProfile'(${1:Val}, ${2:TagIn}) $3" -p144467 -tp144468 -a(S"'enc_ServiceChangeReply'/2" -p144469 -S"'enc_ServiceChangeReply'(${1:Val}, ${2:TagIn}) $3" -p144470 -tp144471 -a(S"'enc_ServiceChangeRequest'/2" -p144472 -S"'enc_ServiceChangeRequest'(${1:Val}, ${2:TagIn}) $3" -p144473 -tp144474 -a(S"'enc_ServiceChangeResParm'/2" -p144475 -S"'enc_ServiceChangeResParm'(${1:Val}, ${2:TagIn}) $3" -p144476 -tp144477 -a(S"'enc_ServiceChangeResult'/2" -p144478 -S"'enc_ServiceChangeResult'(${1:Val}, ${2:TagIn}) $3" -p144479 -tp144480 -a(S"'enc_ServiceState'/2" -p144481 -S"'enc_ServiceState'(${1:Val}, ${2:TagIn}) $3" -p144482 -tp144483 -a(S"'enc_SigParameter'/2" -p144484 -S"'enc_SigParameter'(${1:Val}, ${2:TagIn}) $3" -p144485 -tp144486 -a(S"'enc_Signal'/2" -p144487 -S"'enc_Signal'(${1:Val}, ${2:TagIn}) $3" -p144488 -tp144489 -a(S"'enc_SignalName'/2" -p144490 -S"'enc_SignalName'(${1:Val}, ${2:TagIn}) $3" -p144491 -tp144492 -a(S"'enc_SignalRequest'/2" -p144493 -S"'enc_SignalRequest'(${1:Val}, ${2:TagIn}) $3" -p144494 -tp144495 -a(S"'enc_SignalType'/2" -p144496 -S"'enc_SignalType'(${1:Val}, ${2:TagIn}) $3" -p144497 -tp144498 -a(S"'enc_SignalsDescriptor'/2" -p144499 -S"'enc_SignalsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p144500 -tp144501 -a(S"'enc_StatisticsDescriptor'/2" -p144502 -S"'enc_StatisticsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p144503 -tp144504 -a(S"'enc_StatisticsParameter'/2" -p144505 -S"'enc_StatisticsParameter'(${1:Val}, ${2:TagIn}) $3" -p144506 -tp144507 -a(S"'enc_StreamDescriptor'/2" -p144508 -S"'enc_StreamDescriptor'(${1:Val}, ${2:TagIn}) $3" -p144509 -tp144510 -a(S"'enc_StreamID'/2" -p144511 -S"'enc_StreamID'(${1:Val}, ${2:TagIn}) $3" -p144512 -tp144513 -a(S"'enc_StreamMode'/2" -p144514 -S"'enc_StreamMode'(${1:Val}, ${2:TagIn}) $3" -p144515 -tp144516 -a(S"'enc_StreamParms'/2" -p144517 -S"'enc_StreamParms'(${1:Val}, ${2:TagIn}) $3" -p144518 -tp144519 -a(S"'enc_SubtractRequest'/2" -p144520 -S"'enc_SubtractRequest'(${1:Val}, ${2:TagIn}) $3" -p144521 -tp144522 -a(S"'enc_TerminationAudit'/2" -p144523 -S"'enc_TerminationAudit'(${1:Val}, ${2:TagIn}) $3" -p144524 -tp144525 -a(S"'enc_TerminationID'/2" -p144526 -S"'enc_TerminationID'(${1:Val}, ${2:TagIn}) $3" -p144527 -tp144528 -a(S"'enc_TerminationIDList'/2" -p144529 -S"'enc_TerminationIDList'(${1:Val}, ${2:TagIn}) $3" -p144530 -tp144531 -a(S"'enc_TerminationStateDescriptor'/2" -p144532 -S"'enc_TerminationStateDescriptor'(${1:Val}, ${2:TagIn}) $3" -p144533 -tp144534 -a(S"'enc_TimeNotation'/2" -p144535 -S"'enc_TimeNotation'(${1:Val}, ${2:TagIn}) $3" -p144536 -tp144537 -a(S"'enc_TopologyRequest'/2" -p144538 -S"'enc_TopologyRequest'(${1:Val}, ${2:TagIn}) $3" -p144539 -tp144540 -a(S"'enc_Transaction'/2" -p144541 -S"'enc_Transaction'(${1:Val}, ${2:TagIn}) $3" -p144542 -tp144543 -a(S"'enc_TransactionAck'/2" -p144544 -S"'enc_TransactionAck'(${1:Val}, ${2:TagIn}) $3" -p144545 -tp144546 -a(S"'enc_TransactionId'/2" -p144547 -S"'enc_TransactionId'(${1:Val}, ${2:TagIn}) $3" -p144548 -tp144549 -a(S"'enc_TransactionPending'/2" -p144550 -S"'enc_TransactionPending'(${1:Val}, ${2:TagIn}) $3" -p144551 -tp144552 -a(S"'enc_TransactionReply'/2" -p144553 -S"'enc_TransactionReply'(${1:Val}, ${2:TagIn}) $3" -p144554 -tp144555 -a(S"'enc_TransactionRequest'/2" -p144556 -S"'enc_TransactionRequest'(${1:Val}, ${2:TagIn}) $3" -p144557 -tp144558 -a(S"'enc_TransactionResponseAck'/2" -p144559 -S"'enc_TransactionResponseAck'(${1:Val}, ${2:TagIn}) $3" -p144560 -tp144561 -a(S"'enc_Value'/2" -p144562 -S"'enc_Value'(${1:Val}, ${2:TagIn}) $3" -p144563 -tp144564 -a(S"'enc_WildcardField'/2" -p144565 -S"'enc_WildcardField'(${1:Val}, ${2:TagIn}) $3" -p144566 -tp144567 -a(S'decode/2' -p144568 -S'decode(${1:Type}, ${2:Data}) $3' -p144569 -tp144570 -a(S'decode_disp/2' -p144571 -S'decode_disp(${1:Type}, ${2:Data}) $3' -p144572 -tp144573 -a(S'decode_message_acts_partial/1' -p144574 -S'decode_message_acts_partial(${1:Bytes}) $2' -p144575 -tp144576 -a(S'decode_message_mId/1' -p144577 -S'decode_message_mId(${1:Bytes}) $2' -p144578 -tp144579 -a(S'decode_message_trans_partial/1' -p144580 -S'decode_message_trans_partial(${1:Bytes}) $2' -p144581 -tp144582 -a(S'decode_message_version/1' -p144583 -S'decode_message_version(${1:Bytes}) $2' -p144584 -tp144585 -a(S'decode_part/2' -p144586 -S'decode_part(${1:Type}, ${2:Data0}) $3' -p144587 -tp144588 -a(S'encode/2' -p144589 -S'encode(${1:Type}, ${2:Data}) $3' -p144590 -tp144591 -a(S'encode_disp/2' -p144592 -S'encode_disp(${1:Type}, ${2:Data}) $3' -p144593 -tp144594 -a(S'encoding_rule/0' -p144595 -S'encoding_rule() $1' -p144596 -tp144597 -a(S'info/0' -p144598 -S'info() $1' -p144599 -tp144600 -asS'megaco_ber_bin_media_gateway_control_v3' -p144601 -(lp144602 -(S"'dec_ActionReply'/2" -p144603 -S"'dec_ActionReply'(${1:Tlv}, ${2:TagIn}) $3" -p144604 -tp144605 -a(S"'dec_ActionRequest'/2" -p144606 -S"'dec_ActionRequest'(${1:Tlv}, ${2:TagIn}) $3" -p144607 -tp144608 -a(S"'dec_AmmDescriptor'/2" -p144609 -S"'dec_AmmDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p144610 -tp144611 -a(S"'dec_AmmRequest'/2" -p144612 -S"'dec_AmmRequest'(${1:Tlv}, ${2:TagIn}) $3" -p144613 -tp144614 -a(S"'dec_AmmsReply'/2" -p144615 -S"'dec_AmmsReply'(${1:Tlv}, ${2:TagIn}) $3" -p144616 -tp144617 -a(S"'dec_AuditDescriptor'/2" -p144618 -S"'dec_AuditDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p144619 -tp144620 -a(S"'dec_AuditReply'/2" -p144621 -S"'dec_AuditReply'(${1:Tlv}, ${2:TagIn}) $3" -p144622 -tp144623 -a(S"'dec_AuditRequest'/2" -p144624 -S"'dec_AuditRequest'(${1:Tlv}, ${2:TagIn}) $3" -p144625 -tp144626 -a(S"'dec_AuditResult'/2" -p144627 -S"'dec_AuditResult'(${1:Tlv}, ${2:TagIn}) $3" -p144628 -tp144629 -a(S"'dec_AuditReturnParameter'/2" -p144630 -S"'dec_AuditReturnParameter'(${1:Tlv}, ${2:TagIn}) $3" -p144631 -tp144632 -a(S"'dec_AuthData'/2" -p144633 -S"'dec_AuthData'(${1:Tlv}, ${2:TagIn}) $3" -p144634 -tp144635 -a(S"'dec_AuthenticationHeader'/2" -p144636 -S"'dec_AuthenticationHeader'(${1:Tlv}, ${2:TagIn}) $3" -p144637 -tp144638 -a(S"'dec_Command'/2" -p144639 -S"'dec_Command'(${1:Tlv}, ${2:TagIn}) $3" -p144640 -tp144641 -a(S"'dec_CommandReply'/2" -p144642 -S"'dec_CommandReply'(${1:Tlv}, ${2:TagIn}) $3" -p144643 -tp144644 -a(S"'dec_CommandRequest'/2" -p144645 -S"'dec_CommandRequest'(${1:Tlv}, ${2:TagIn}) $3" -p144646 -tp144647 -a(S"'dec_ContextAttrAuditRequest'/2" -p144648 -S"'dec_ContextAttrAuditRequest'(${1:Tlv}, ${2:TagIn}) $3" -p144649 -tp144650 -a(S"'dec_ContextID'/2" -p144651 -S"'dec_ContextID'(${1:Tlv}, ${2:TagIn}) $3" -p144652 -tp144653 -a(S"'dec_ContextRequest'/2" -p144654 -S"'dec_ContextRequest'(${1:Tlv}, ${2:TagIn}) $3" -p144655 -tp144656 -a(S"'dec_DigitMapDescriptor'/2" -p144657 -S"'dec_DigitMapDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p144658 -tp144659 -a(S"'dec_DigitMapName'/2" -p144660 -S"'dec_DigitMapName'(${1:Tlv}, ${2:TagIn}) $3" -p144661 -tp144662 -a(S"'dec_DigitMapValue'/2" -p144663 -S"'dec_DigitMapValue'(${1:Tlv}, ${2:TagIn}) $3" -p144664 -tp144665 -a(S"'dec_DomainName'/2" -p144666 -S"'dec_DomainName'(${1:Tlv}, ${2:TagIn}) $3" -p144667 -tp144668 -a(S"'dec_ErrorCode'/2" -p144669 -S"'dec_ErrorCode'(${1:Tlv}, ${2:TagIn}) $3" -p144670 -tp144671 -a(S"'dec_ErrorDescriptor'/2" -p144672 -S"'dec_ErrorDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p144673 -tp144674 -a(S"'dec_ErrorText'/2" -p144675 -S"'dec_ErrorText'(${1:Tlv}, ${2:TagIn}) $3" -p144676 -tp144677 -a(S"'dec_EventBufferControl'/2" -p144678 -S"'dec_EventBufferControl'(${1:Tlv}, ${2:TagIn}) $3" -p144679 -tp144680 -a(S"'dec_EventBufferDescriptor'/2" -p144681 -S"'dec_EventBufferDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p144682 -tp144683 -a(S"'dec_EventDM'/2" -p144684 -S"'dec_EventDM'(${1:Tlv}, ${2:TagIn}) $3" -p144685 -tp144686 -a(S"'dec_EventName'/2" -p144687 -S"'dec_EventName'(${1:Tlv}, ${2:TagIn}) $3" -p144688 -tp144689 -a(S"'dec_EventParameter'/2" -p144690 -S"'dec_EventParameter'(${1:Tlv}, ${2:TagIn}) $3" -p144691 -tp144692 -a(S"'dec_EventSpec'/2" -p144693 -S"'dec_EventSpec'(${1:Tlv}, ${2:TagIn}) $3" -p144694 -tp144695 -a(S"'dec_EventsDescriptor'/2" -p144696 -S"'dec_EventsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p144697 -tp144698 -a(S"'dec_H221NonStandard'/2" -p144699 -S"'dec_H221NonStandard'(${1:Tlv}, ${2:TagIn}) $3" -p144700 -tp144701 -a(S"'dec_IP4Address'/2" -p144702 -S"'dec_IP4Address'(${1:Tlv}, ${2:TagIn}) $3" -p144703 -tp144704 -a(S"'dec_IP6Address'/2" -p144705 -S"'dec_IP6Address'(${1:Tlv}, ${2:TagIn}) $3" -p144706 -tp144707 -a(S"'dec_IndAudDigitMapDescriptor'/2" -p144708 -S"'dec_IndAudDigitMapDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p144709 -tp144710 -a(S"'dec_IndAudEventBufferDescriptor'/2" -p144711 -S"'dec_IndAudEventBufferDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p144712 -tp144713 -a(S"'dec_IndAudEventsDescriptor'/2" -p144714 -S"'dec_IndAudEventsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p144715 -tp144716 -a(S"'dec_IndAudLocalControlDescriptor'/2" -p144717 -S"'dec_IndAudLocalControlDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p144718 -tp144719 -a(S"'dec_IndAudLocalRemoteDescriptor'/2" -p144720 -S"'dec_IndAudLocalRemoteDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p144721 -tp144722 -a(S"'dec_IndAudMediaDescriptor'/2" -p144723 -S"'dec_IndAudMediaDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p144724 -tp144725 -a(S"'dec_IndAudPackagesDescriptor'/2" -p144726 -S"'dec_IndAudPackagesDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p144727 -tp144728 -a(S"'dec_IndAudPropertyGroup'/2" -p144729 -S"'dec_IndAudPropertyGroup'(${1:Tlv}, ${2:TagIn}) $3" -p144730 -tp144731 -a(S"'dec_IndAudPropertyParm'/2" -p144732 -S"'dec_IndAudPropertyParm'(${1:Tlv}, ${2:TagIn}) $3" -p144733 -tp144734 -a(S"'dec_IndAudSeqSigList'/2" -p144735 -S"'dec_IndAudSeqSigList'(${1:Tlv}, ${2:TagIn}) $3" -p144736 -tp144737 -a(S"'dec_IndAudSignal'/2" -p144738 -S"'dec_IndAudSignal'(${1:Tlv}, ${2:TagIn}) $3" -p144739 -tp144740 -a(S"'dec_IndAudSignalsDescriptor'/2" -p144741 -S"'dec_IndAudSignalsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p144742 -tp144743 -a(S"'dec_IndAudStatisticsDescriptor'/2" -p144744 -S"'dec_IndAudStatisticsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p144745 -tp144746 -a(S"'dec_IndAudStreamDescriptor'/2" -p144747 -S"'dec_IndAudStreamDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p144748 -tp144749 -a(S"'dec_IndAudStreamParms'/2" -p144750 -S"'dec_IndAudStreamParms'(${1:Tlv}, ${2:TagIn}) $3" -p144751 -tp144752 -a(S"'dec_IndAudTerminationStateDescriptor'/2" -p144753 -S"'dec_IndAudTerminationStateDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p144754 -tp144755 -a(S"'dec_IndAuditParameter'/2" -p144756 -S"'dec_IndAuditParameter'(${1:Tlv}, ${2:TagIn}) $3" -p144757 -tp144758 -a(S"'dec_LocalControlDescriptor'/2" -p144759 -S"'dec_LocalControlDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p144760 -tp144761 -a(S"'dec_LocalRemoteDescriptor'/2" -p144762 -S"'dec_LocalRemoteDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p144763 -tp144764 -a(S"'dec_MId'/2" -p144765 -S"'dec_MId'(${1:Tlv}, ${2:TagIn}) $3" -p144766 -tp144767 -a(S"'dec_MediaDescriptor'/2" -p144768 -S"'dec_MediaDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p144769 -tp144770 -a(S"'dec_MegacoMessage'/2" -p144771 -S"'dec_MegacoMessage'(${1:Tlv}, ${2:TagIn}) $3" -p144772 -tp144773 -a(S"'dec_Message'/2" -p144774 -S"'dec_Message'(${1:Tlv}, ${2:TagIn}) $3" -p144775 -tp144776 -a(S"'dec_ModemDescriptor'/2" -p144777 -S"'dec_ModemDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p144778 -tp144779 -a(S"'dec_ModemType'/2" -p144780 -S"'dec_ModemType'(${1:Tlv}, ${2:TagIn}) $3" -p144781 -tp144782 -a(S"'dec_MuxDescriptor'/2" -p144783 -S"'dec_MuxDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p144784 -tp144785 -a(S"'dec_MuxType'/2" -p144786 -S"'dec_MuxType'(${1:Tlv}, ${2:TagIn}) $3" -p144787 -tp144788 -a(S"'dec_Name'/2" -p144789 -S"'dec_Name'(${1:Tlv}, ${2:TagIn}) $3" -p144790 -tp144791 -a(S"'dec_NonStandardData'/2" -p144792 -S"'dec_NonStandardData'(${1:Tlv}, ${2:TagIn}) $3" -p144793 -tp144794 -a(S"'dec_NonStandardIdentifier'/2" -p144795 -S"'dec_NonStandardIdentifier'(${1:Tlv}, ${2:TagIn}) $3" -p144796 -tp144797 -a(S"'dec_NotifyBehaviour'/2" -p144798 -S"'dec_NotifyBehaviour'(${1:Tlv}, ${2:TagIn}) $3" -p144799 -tp144800 -a(S"'dec_NotifyCompletion'/2" -p144801 -S"'dec_NotifyCompletion'(${1:Tlv}, ${2:TagIn}) $3" -p144802 -tp144803 -a(S"'dec_NotifyReply'/2" -p144804 -S"'dec_NotifyReply'(${1:Tlv}, ${2:TagIn}) $3" -p144805 -tp144806 -a(S"'dec_NotifyRequest'/2" -p144807 -S"'dec_NotifyRequest'(${1:Tlv}, ${2:TagIn}) $3" -p144808 -tp144809 -a(S"'dec_ObservedEvent'/2" -p144810 -S"'dec_ObservedEvent'(${1:Tlv}, ${2:TagIn}) $3" -p144811 -tp144812 -a(S"'dec_ObservedEventsDescriptor'/2" -p144813 -S"'dec_ObservedEventsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p144814 -tp144815 -a(S"'dec_PackagesDescriptor'/2" -p144816 -S"'dec_PackagesDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p144817 -tp144818 -a(S"'dec_PackagesItem'/2" -p144819 -S"'dec_PackagesItem'(${1:Tlv}, ${2:TagIn}) $3" -p144820 -tp144821 -a(S"'dec_PathName'/2" -p144822 -S"'dec_PathName'(${1:Tlv}, ${2:TagIn}) $3" -p144823 -tp144824 -a(S"'dec_PkgdName'/2" -p144825 -S"'dec_PkgdName'(${1:Tlv}, ${2:TagIn}) $3" -p144826 -tp144827 -a(S"'dec_PropertyGroup'/2" -p144828 -S"'dec_PropertyGroup'(${1:Tlv}, ${2:TagIn}) $3" -p144829 -tp144830 -a(S"'dec_PropertyParm'/2" -p144831 -S"'dec_PropertyParm'(${1:Tlv}, ${2:TagIn}) $3" -p144832 -tp144833 -a(S"'dec_RegulatedEmbeddedDescriptor'/2" -p144834 -S"'dec_RegulatedEmbeddedDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p144835 -tp144836 -a(S"'dec_Relation'/2" -p144837 -S"'dec_Relation'(${1:Tlv}, ${2:TagIn}) $3" -p144838 -tp144839 -a(S"'dec_RequestID'/2" -p144840 -S"'dec_RequestID'(${1:Tlv}, ${2:TagIn}) $3" -p144841 -tp144842 -a(S"'dec_RequestedActions'/2" -p144843 -S"'dec_RequestedActions'(${1:Tlv}, ${2:TagIn}) $3" -p144844 -tp144845 -a(S"'dec_RequestedEvent'/2" -p144846 -S"'dec_RequestedEvent'(${1:Tlv}, ${2:TagIn}) $3" -p144847 -tp144848 -a(S"'dec_SecondEventsDescriptor'/2" -p144849 -S"'dec_SecondEventsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p144850 -tp144851 -a(S"'dec_SecondRequestedActions'/2" -p144852 -S"'dec_SecondRequestedActions'(${1:Tlv}, ${2:TagIn}) $3" -p144853 -tp144854 -a(S"'dec_SecondRequestedEvent'/2" -p144855 -S"'dec_SecondRequestedEvent'(${1:Tlv}, ${2:TagIn}) $3" -p144856 -tp144857 -a(S"'dec_SecurityParmIndex'/2" -p144858 -S"'dec_SecurityParmIndex'(${1:Tlv}, ${2:TagIn}) $3" -p144859 -tp144860 -a(S"'dec_SegmentNumber'/2" -p144861 -S"'dec_SegmentNumber'(${1:Tlv}, ${2:TagIn}) $3" -p144862 -tp144863 -a(S"'dec_SegmentReply'/2" -p144864 -S"'dec_SegmentReply'(${1:Tlv}, ${2:TagIn}) $3" -p144865 -tp144866 -a(S"'dec_SelectLogic'/2" -p144867 -S"'dec_SelectLogic'(${1:Tlv}, ${2:TagIn}) $3" -p144868 -tp144869 -a(S"'dec_SeqSigList'/2" -p144870 -S"'dec_SeqSigList'(${1:Tlv}, ${2:TagIn}) $3" -p144871 -tp144872 -a(S"'dec_SequenceNum'/2" -p144873 -S"'dec_SequenceNum'(${1:Tlv}, ${2:TagIn}) $3" -p144874 -tp144875 -a(S"'dec_ServiceChangeAddress'/2" -p144876 -S"'dec_ServiceChangeAddress'(${1:Tlv}, ${2:TagIn}) $3" -p144877 -tp144878 -a(S"'dec_ServiceChangeMethod'/2" -p144879 -S"'dec_ServiceChangeMethod'(${1:Tlv}, ${2:TagIn}) $3" -p144880 -tp144881 -a(S"'dec_ServiceChangeParm'/2" -p144882 -S"'dec_ServiceChangeParm'(${1:Tlv}, ${2:TagIn}) $3" -p144883 -tp144884 -a(S"'dec_ServiceChangeProfile'/2" -p144885 -S"'dec_ServiceChangeProfile'(${1:Tlv}, ${2:TagIn}) $3" -p144886 -tp144887 -a(S"'dec_ServiceChangeReply'/2" -p144888 -S"'dec_ServiceChangeReply'(${1:Tlv}, ${2:TagIn}) $3" -p144889 -tp144890 -a(S"'dec_ServiceChangeRequest'/2" -p144891 -S"'dec_ServiceChangeRequest'(${1:Tlv}, ${2:TagIn}) $3" -p144892 -tp144893 -a(S"'dec_ServiceChangeResParm'/2" -p144894 -S"'dec_ServiceChangeResParm'(${1:Tlv}, ${2:TagIn}) $3" -p144895 -tp144896 -a(S"'dec_ServiceChangeResult'/2" -p144897 -S"'dec_ServiceChangeResult'(${1:Tlv}, ${2:TagIn}) $3" -p144898 -tp144899 -a(S"'dec_ServiceState'/2" -p144900 -S"'dec_ServiceState'(${1:Tlv}, ${2:TagIn}) $3" -p144901 -tp144902 -a(S"'dec_SigParameter'/2" -p144903 -S"'dec_SigParameter'(${1:Tlv}, ${2:TagIn}) $3" -p144904 -tp144905 -a(S"'dec_Signal'/2" -p144906 -S"'dec_Signal'(${1:Tlv}, ${2:TagIn}) $3" -p144907 -tp144908 -a(S"'dec_SignalDirection'/2" -p144909 -S"'dec_SignalDirection'(${1:Tlv}, ${2:TagIn}) $3" -p144910 -tp144911 -a(S"'dec_SignalName'/2" -p144912 -S"'dec_SignalName'(${1:Tlv}, ${2:TagIn}) $3" -p144913 -tp144914 -a(S"'dec_SignalRequest'/2" -p144915 -S"'dec_SignalRequest'(${1:Tlv}, ${2:TagIn}) $3" -p144916 -tp144917 -a(S"'dec_SignalType'/2" -p144918 -S"'dec_SignalType'(${1:Tlv}, ${2:TagIn}) $3" -p144919 -tp144920 -a(S"'dec_SignalsDescriptor'/2" -p144921 -S"'dec_SignalsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p144922 -tp144923 -a(S"'dec_StatisticsDescriptor'/2" -p144924 -S"'dec_StatisticsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p144925 -tp144926 -a(S"'dec_StatisticsParameter'/2" -p144927 -S"'dec_StatisticsParameter'(${1:Tlv}, ${2:TagIn}) $3" -p144928 -tp144929 -a(S"'dec_StreamDescriptor'/2" -p144930 -S"'dec_StreamDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p144931 -tp144932 -a(S"'dec_StreamID'/2" -p144933 -S"'dec_StreamID'(${1:Tlv}, ${2:TagIn}) $3" -p144934 -tp144935 -a(S"'dec_StreamMode'/2" -p144936 -S"'dec_StreamMode'(${1:Tlv}, ${2:TagIn}) $3" -p144937 -tp144938 -a(S"'dec_StreamParms'/2" -p144939 -S"'dec_StreamParms'(${1:Tlv}, ${2:TagIn}) $3" -p144940 -tp144941 -a(S"'dec_SubtractRequest'/2" -p144942 -S"'dec_SubtractRequest'(${1:Tlv}, ${2:TagIn}) $3" -p144943 -tp144944 -a(S"'dec_TermListAuditResult'/2" -p144945 -S"'dec_TermListAuditResult'(${1:Tlv}, ${2:TagIn}) $3" -p144946 -tp144947 -a(S"'dec_TerminationAudit'/2" -p144948 -S"'dec_TerminationAudit'(${1:Tlv}, ${2:TagIn}) $3" -p144949 -tp144950 -a(S"'dec_TerminationID'/2" -p144951 -S"'dec_TerminationID'(${1:Tlv}, ${2:TagIn}) $3" -p144952 -tp144953 -a(S"'dec_TerminationIDList'/2" -p144954 -S"'dec_TerminationIDList'(${1:Tlv}, ${2:TagIn}) $3" -p144955 -tp144956 -a(S"'dec_TerminationStateDescriptor'/2" -p144957 -S"'dec_TerminationStateDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p144958 -tp144959 -a(S"'dec_TimeNotation'/2" -p144960 -S"'dec_TimeNotation'(${1:Tlv}, ${2:TagIn}) $3" -p144961 -tp144962 -a(S"'dec_TopologyRequest'/2" -p144963 -S"'dec_TopologyRequest'(${1:Tlv}, ${2:TagIn}) $3" -p144964 -tp144965 -a(S"'dec_Transaction'/2" -p144966 -S"'dec_Transaction'(${1:Tlv}, ${2:TagIn}) $3" -p144967 -tp144968 -a(S"'dec_TransactionAck'/2" -p144969 -S"'dec_TransactionAck'(${1:Tlv}, ${2:TagIn}) $3" -p144970 -tp144971 -a(S"'dec_TransactionId'/2" -p144972 -S"'dec_TransactionId'(${1:Tlv}, ${2:TagIn}) $3" -p144973 -tp144974 -a(S"'dec_TransactionPending'/2" -p144975 -S"'dec_TransactionPending'(${1:Tlv}, ${2:TagIn}) $3" -p144976 -tp144977 -a(S"'dec_TransactionReply'/2" -p144978 -S"'dec_TransactionReply'(${1:Tlv}, ${2:TagIn}) $3" -p144979 -tp144980 -a(S"'dec_TransactionRequest'/2" -p144981 -S"'dec_TransactionRequest'(${1:Tlv}, ${2:TagIn}) $3" -p144982 -tp144983 -a(S"'dec_TransactionResponseAck'/2" -p144984 -S"'dec_TransactionResponseAck'(${1:Tlv}, ${2:TagIn}) $3" -p144985 -tp144986 -a(S"'dec_Value'/2" -p144987 -S"'dec_Value'(${1:Tlv}, ${2:TagIn}) $3" -p144988 -tp144989 -a(S"'dec_WildcardField'/2" -p144990 -S"'dec_WildcardField'(${1:Tlv}, ${2:TagIn}) $3" -p144991 -tp144992 -a(S"'enc_ActionReply'/2" -p144993 -S"'enc_ActionReply'(${1:Val}, ${2:TagIn}) $3" -p144994 -tp144995 -a(S"'enc_ActionRequest'/2" -p144996 -S"'enc_ActionRequest'(${1:Val}, ${2:TagIn}) $3" -p144997 -tp144998 -a(S"'enc_AmmDescriptor'/2" -p144999 -S"'enc_AmmDescriptor'(${1:Val}, ${2:TagIn}) $3" -p145000 -tp145001 -a(S"'enc_AmmRequest'/2" -p145002 -S"'enc_AmmRequest'(${1:Val}, ${2:TagIn}) $3" -p145003 -tp145004 -a(S"'enc_AmmsReply'/2" -p145005 -S"'enc_AmmsReply'(${1:Val}, ${2:TagIn}) $3" -p145006 -tp145007 -a(S"'enc_AuditDescriptor'/2" -p145008 -S"'enc_AuditDescriptor'(${1:Val}, ${2:TagIn}) $3" -p145009 -tp145010 -a(S"'enc_AuditReply'/2" -p145011 -S"'enc_AuditReply'(${1:Val}, ${2:TagIn}) $3" -p145012 -tp145013 -a(S"'enc_AuditRequest'/2" -p145014 -S"'enc_AuditRequest'(${1:Val}, ${2:TagIn}) $3" -p145015 -tp145016 -a(S"'enc_AuditResult'/2" -p145017 -S"'enc_AuditResult'(${1:Val}, ${2:TagIn}) $3" -p145018 -tp145019 -a(S"'enc_AuditReturnParameter'/2" -p145020 -S"'enc_AuditReturnParameter'(${1:Val}, ${2:TagIn}) $3" -p145021 -tp145022 -a(S"'enc_AuthData'/2" -p145023 -S"'enc_AuthData'(${1:Val}, ${2:TagIn}) $3" -p145024 -tp145025 -a(S"'enc_AuthenticationHeader'/2" -p145026 -S"'enc_AuthenticationHeader'(${1:Val}, ${2:TagIn}) $3" -p145027 -tp145028 -a(S"'enc_Command'/2" -p145029 -S"'enc_Command'(${1:Val}, ${2:TagIn}) $3" -p145030 -tp145031 -a(S"'enc_CommandReply'/2" -p145032 -S"'enc_CommandReply'(${1:Val}, ${2:TagIn}) $3" -p145033 -tp145034 -a(S"'enc_CommandRequest'/2" -p145035 -S"'enc_CommandRequest'(${1:Val}, ${2:TagIn}) $3" -p145036 -tp145037 -a(S"'enc_ContextAttrAuditRequest'/2" -p145038 -S"'enc_ContextAttrAuditRequest'(${1:Val}, ${2:TagIn}) $3" -p145039 -tp145040 -a(S"'enc_ContextID'/2" -p145041 -S"'enc_ContextID'(${1:Val}, ${2:TagIn}) $3" -p145042 -tp145043 -a(S"'enc_ContextRequest'/2" -p145044 -S"'enc_ContextRequest'(${1:Val}, ${2:TagIn}) $3" -p145045 -tp145046 -a(S"'enc_DigitMapDescriptor'/2" -p145047 -S"'enc_DigitMapDescriptor'(${1:Val}, ${2:TagIn}) $3" -p145048 -tp145049 -a(S"'enc_DigitMapName'/2" -p145050 -S"'enc_DigitMapName'(${1:Val}, ${2:TagIn}) $3" -p145051 -tp145052 -a(S"'enc_DigitMapValue'/2" -p145053 -S"'enc_DigitMapValue'(${1:Val}, ${2:TagIn}) $3" -p145054 -tp145055 -a(S"'enc_DomainName'/2" -p145056 -S"'enc_DomainName'(${1:Val}, ${2:TagIn}) $3" -p145057 -tp145058 -a(S"'enc_ErrorCode'/2" -p145059 -S"'enc_ErrorCode'(${1:Val}, ${2:TagIn}) $3" -p145060 -tp145061 -a(S"'enc_ErrorDescriptor'/2" -p145062 -S"'enc_ErrorDescriptor'(${1:Val}, ${2:TagIn}) $3" -p145063 -tp145064 -a(S"'enc_ErrorText'/2" -p145065 -S"'enc_ErrorText'(${1:Val}, ${2:TagIn}) $3" -p145066 -tp145067 -a(S"'enc_EventBufferControl'/2" -p145068 -S"'enc_EventBufferControl'(${1:Val}, ${2:TagIn}) $3" -p145069 -tp145070 -a(S"'enc_EventBufferDescriptor'/2" -p145071 -S"'enc_EventBufferDescriptor'(${1:Val}, ${2:TagIn}) $3" -p145072 -tp145073 -a(S"'enc_EventDM'/2" -p145074 -S"'enc_EventDM'(${1:Val}, ${2:TagIn}) $3" -p145075 -tp145076 -a(S"'enc_EventName'/2" -p145077 -S"'enc_EventName'(${1:Val}, ${2:TagIn}) $3" -p145078 -tp145079 -a(S"'enc_EventParameter'/2" -p145080 -S"'enc_EventParameter'(${1:Val}, ${2:TagIn}) $3" -p145081 -tp145082 -a(S"'enc_EventSpec'/2" -p145083 -S"'enc_EventSpec'(${1:Val}, ${2:TagIn}) $3" -p145084 -tp145085 -a(S"'enc_EventsDescriptor'/2" -p145086 -S"'enc_EventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p145087 -tp145088 -a(S"'enc_H221NonStandard'/2" -p145089 -S"'enc_H221NonStandard'(${1:Val}, ${2:TagIn}) $3" -p145090 -tp145091 -a(S"'enc_IP4Address'/2" -p145092 -S"'enc_IP4Address'(${1:Val}, ${2:TagIn}) $3" -p145093 -tp145094 -a(S"'enc_IP6Address'/2" -p145095 -S"'enc_IP6Address'(${1:Val}, ${2:TagIn}) $3" -p145096 -tp145097 -a(S"'enc_IndAudDigitMapDescriptor'/2" -p145098 -S"'enc_IndAudDigitMapDescriptor'(${1:Val}, ${2:TagIn}) $3" -p145099 -tp145100 -a(S"'enc_IndAudEventBufferDescriptor'/2" -p145101 -S"'enc_IndAudEventBufferDescriptor'(${1:Val}, ${2:TagIn}) $3" -p145102 -tp145103 -a(S"'enc_IndAudEventsDescriptor'/2" -p145104 -S"'enc_IndAudEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p145105 -tp145106 -a(S"'enc_IndAudLocalControlDescriptor'/2" -p145107 -S"'enc_IndAudLocalControlDescriptor'(${1:Val}, ${2:TagIn}) $3" -p145108 -tp145109 -a(S"'enc_IndAudLocalRemoteDescriptor'/2" -p145110 -S"'enc_IndAudLocalRemoteDescriptor'(${1:Val}, ${2:TagIn}) $3" -p145111 -tp145112 -a(S"'enc_IndAudMediaDescriptor'/2" -p145113 -S"'enc_IndAudMediaDescriptor'(${1:Val}, ${2:TagIn}) $3" -p145114 -tp145115 -a(S"'enc_IndAudPackagesDescriptor'/2" -p145116 -S"'enc_IndAudPackagesDescriptor'(${1:Val}, ${2:TagIn}) $3" -p145117 -tp145118 -a(S"'enc_IndAudPropertyGroup'/2" -p145119 -S"'enc_IndAudPropertyGroup'(${1:Val}, ${2:TagIn}) $3" -p145120 -tp145121 -a(S"'enc_IndAudPropertyParm'/2" -p145122 -S"'enc_IndAudPropertyParm'(${1:Val}, ${2:TagIn}) $3" -p145123 -tp145124 -a(S"'enc_IndAudSeqSigList'/2" -p145125 -S"'enc_IndAudSeqSigList'(${1:Val}, ${2:TagIn}) $3" -p145126 -tp145127 -a(S"'enc_IndAudSignal'/2" -p145128 -S"'enc_IndAudSignal'(${1:Val}, ${2:TagIn}) $3" -p145129 -tp145130 -a(S"'enc_IndAudSignalsDescriptor'/2" -p145131 -S"'enc_IndAudSignalsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p145132 -tp145133 -a(S"'enc_IndAudStatisticsDescriptor'/2" -p145134 -S"'enc_IndAudStatisticsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p145135 -tp145136 -a(S"'enc_IndAudStreamDescriptor'/2" -p145137 -S"'enc_IndAudStreamDescriptor'(${1:Val}, ${2:TagIn}) $3" -p145138 -tp145139 -a(S"'enc_IndAudStreamParms'/2" -p145140 -S"'enc_IndAudStreamParms'(${1:Val}, ${2:TagIn}) $3" -p145141 -tp145142 -a(S"'enc_IndAudTerminationStateDescriptor'/2" -p145143 -S"'enc_IndAudTerminationStateDescriptor'(${1:Val}, ${2:TagIn}) $3" -p145144 -tp145145 -a(S"'enc_IndAuditParameter'/2" -p145146 -S"'enc_IndAuditParameter'(${1:Val}, ${2:TagIn}) $3" -p145147 -tp145148 -a(S"'enc_LocalControlDescriptor'/2" -p145149 -S"'enc_LocalControlDescriptor'(${1:Val}, ${2:TagIn}) $3" -p145150 -tp145151 -a(S"'enc_LocalRemoteDescriptor'/2" -p145152 -S"'enc_LocalRemoteDescriptor'(${1:Val}, ${2:TagIn}) $3" -p145153 -tp145154 -a(S"'enc_MId'/2" -p145155 -S"'enc_MId'(${1:Val}, ${2:TagIn}) $3" -p145156 -tp145157 -a(S"'enc_MediaDescriptor'/2" -p145158 -S"'enc_MediaDescriptor'(${1:Val}, ${2:TagIn}) $3" -p145159 -tp145160 -a(S"'enc_MegacoMessage'/2" -p145161 -S"'enc_MegacoMessage'(${1:Val}, ${2:TagIn}) $3" -p145162 -tp145163 -a(S"'enc_Message'/2" -p145164 -S"'enc_Message'(${1:Val}, ${2:TagIn}) $3" -p145165 -tp145166 -a(S"'enc_ModemDescriptor'/2" -p145167 -S"'enc_ModemDescriptor'(${1:Val}, ${2:TagIn}) $3" -p145168 -tp145169 -a(S"'enc_ModemType'/2" -p145170 -S"'enc_ModemType'(${1:Val}, ${2:TagIn}) $3" -p145171 -tp145172 -a(S"'enc_MuxDescriptor'/2" -p145173 -S"'enc_MuxDescriptor'(${1:Val}, ${2:TagIn}) $3" -p145174 -tp145175 -a(S"'enc_MuxType'/2" -p145176 -S"'enc_MuxType'(${1:Val}, ${2:TagIn}) $3" -p145177 -tp145178 -a(S"'enc_Name'/2" -p145179 -S"'enc_Name'(${1:Val}, ${2:TagIn}) $3" -p145180 -tp145181 -a(S"'enc_NonStandardData'/2" -p145182 -S"'enc_NonStandardData'(${1:Val}, ${2:TagIn}) $3" -p145183 -tp145184 -a(S"'enc_NonStandardIdentifier'/2" -p145185 -S"'enc_NonStandardIdentifier'(${1:Val}, ${2:TagIn}) $3" -p145186 -tp145187 -a(S"'enc_NotifyBehaviour'/2" -p145188 -S"'enc_NotifyBehaviour'(${1:Val}, ${2:TagIn}) $3" -p145189 -tp145190 -a(S"'enc_NotifyCompletion'/2" -p145191 -S"'enc_NotifyCompletion'(${1:Val}, ${2:TagIn}) $3" -p145192 -tp145193 -a(S"'enc_NotifyReply'/2" -p145194 -S"'enc_NotifyReply'(${1:Val}, ${2:TagIn}) $3" -p145195 -tp145196 -a(S"'enc_NotifyRequest'/2" -p145197 -S"'enc_NotifyRequest'(${1:Val}, ${2:TagIn}) $3" -p145198 -tp145199 -a(S"'enc_ObservedEvent'/2" -p145200 -S"'enc_ObservedEvent'(${1:Val}, ${2:TagIn}) $3" -p145201 -tp145202 -a(S"'enc_ObservedEventsDescriptor'/2" -p145203 -S"'enc_ObservedEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p145204 -tp145205 -a(S"'enc_PackagesDescriptor'/2" -p145206 -S"'enc_PackagesDescriptor'(${1:Val}, ${2:TagIn}) $3" -p145207 -tp145208 -a(S"'enc_PackagesItem'/2" -p145209 -S"'enc_PackagesItem'(${1:Val}, ${2:TagIn}) $3" -p145210 -tp145211 -a(S"'enc_PathName'/2" -p145212 -S"'enc_PathName'(${1:Val}, ${2:TagIn}) $3" -p145213 -tp145214 -a(S"'enc_PkgdName'/2" -p145215 -S"'enc_PkgdName'(${1:Val}, ${2:TagIn}) $3" -p145216 -tp145217 -a(S"'enc_PropertyGroup'/2" -p145218 -S"'enc_PropertyGroup'(${1:Val}, ${2:TagIn}) $3" -p145219 -tp145220 -a(S"'enc_PropertyParm'/2" -p145221 -S"'enc_PropertyParm'(${1:Val}, ${2:TagIn}) $3" -p145222 -tp145223 -a(S"'enc_RegulatedEmbeddedDescriptor'/2" -p145224 -S"'enc_RegulatedEmbeddedDescriptor'(${1:Val}, ${2:TagIn}) $3" -p145225 -tp145226 -a(S"'enc_Relation'/2" -p145227 -S"'enc_Relation'(${1:Val}, ${2:TagIn}) $3" -p145228 -tp145229 -a(S"'enc_RequestID'/2" -p145230 -S"'enc_RequestID'(${1:Val}, ${2:TagIn}) $3" -p145231 -tp145232 -a(S"'enc_RequestedActions'/2" -p145233 -S"'enc_RequestedActions'(${1:Val}, ${2:TagIn}) $3" -p145234 -tp145235 -a(S"'enc_RequestedEvent'/2" -p145236 -S"'enc_RequestedEvent'(${1:Val}, ${2:TagIn}) $3" -p145237 -tp145238 -a(S"'enc_SecondEventsDescriptor'/2" -p145239 -S"'enc_SecondEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p145240 -tp145241 -a(S"'enc_SecondRequestedActions'/2" -p145242 -S"'enc_SecondRequestedActions'(${1:Val}, ${2:TagIn}) $3" -p145243 -tp145244 -a(S"'enc_SecondRequestedEvent'/2" -p145245 -S"'enc_SecondRequestedEvent'(${1:Val}, ${2:TagIn}) $3" -p145246 -tp145247 -a(S"'enc_SecurityParmIndex'/2" -p145248 -S"'enc_SecurityParmIndex'(${1:Val}, ${2:TagIn}) $3" -p145249 -tp145250 -a(S"'enc_SegmentNumber'/2" -p145251 -S"'enc_SegmentNumber'(${1:Val}, ${2:TagIn}) $3" -p145252 -tp145253 -a(S"'enc_SegmentReply'/2" -p145254 -S"'enc_SegmentReply'(${1:Val}, ${2:TagIn}) $3" -p145255 -tp145256 -a(S"'enc_SelectLogic'/2" -p145257 -S"'enc_SelectLogic'(${1:Val}, ${2:TagIn}) $3" -p145258 -tp145259 -a(S"'enc_SeqSigList'/2" -p145260 -S"'enc_SeqSigList'(${1:Val}, ${2:TagIn}) $3" -p145261 -tp145262 -a(S"'enc_SequenceNum'/2" -p145263 -S"'enc_SequenceNum'(${1:Val}, ${2:TagIn}) $3" -p145264 -tp145265 -a(S"'enc_ServiceChangeAddress'/2" -p145266 -S"'enc_ServiceChangeAddress'(${1:Val}, ${2:TagIn}) $3" -p145267 -tp145268 -a(S"'enc_ServiceChangeMethod'/2" -p145269 -S"'enc_ServiceChangeMethod'(${1:Val}, ${2:TagIn}) $3" -p145270 -tp145271 -a(S"'enc_ServiceChangeParm'/2" -p145272 -S"'enc_ServiceChangeParm'(${1:Val}, ${2:TagIn}) $3" -p145273 -tp145274 -a(S"'enc_ServiceChangeProfile'/2" -p145275 -S"'enc_ServiceChangeProfile'(${1:Val}, ${2:TagIn}) $3" -p145276 -tp145277 -a(S"'enc_ServiceChangeReply'/2" -p145278 -S"'enc_ServiceChangeReply'(${1:Val}, ${2:TagIn}) $3" -p145279 -tp145280 -a(S"'enc_ServiceChangeRequest'/2" -p145281 -S"'enc_ServiceChangeRequest'(${1:Val}, ${2:TagIn}) $3" -p145282 -tp145283 -a(S"'enc_ServiceChangeResParm'/2" -p145284 -S"'enc_ServiceChangeResParm'(${1:Val}, ${2:TagIn}) $3" -p145285 -tp145286 -a(S"'enc_ServiceChangeResult'/2" -p145287 -S"'enc_ServiceChangeResult'(${1:Val}, ${2:TagIn}) $3" -p145288 -tp145289 -a(S"'enc_ServiceState'/2" -p145290 -S"'enc_ServiceState'(${1:Val}, ${2:TagIn}) $3" -p145291 -tp145292 -a(S"'enc_SigParameter'/2" -p145293 -S"'enc_SigParameter'(${1:Val}, ${2:TagIn}) $3" -p145294 -tp145295 -a(S"'enc_Signal'/2" -p145296 -S"'enc_Signal'(${1:Val}, ${2:TagIn}) $3" -p145297 -tp145298 -a(S"'enc_SignalDirection'/2" -p145299 -S"'enc_SignalDirection'(${1:Val}, ${2:TagIn}) $3" -p145300 -tp145301 -a(S"'enc_SignalName'/2" -p145302 -S"'enc_SignalName'(${1:Val}, ${2:TagIn}) $3" -p145303 -tp145304 -a(S"'enc_SignalRequest'/2" -p145305 -S"'enc_SignalRequest'(${1:Val}, ${2:TagIn}) $3" -p145306 -tp145307 -a(S"'enc_SignalType'/2" -p145308 -S"'enc_SignalType'(${1:Val}, ${2:TagIn}) $3" -p145309 -tp145310 -a(S"'enc_SignalsDescriptor'/2" -p145311 -S"'enc_SignalsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p145312 -tp145313 -a(S"'enc_StatisticsDescriptor'/2" -p145314 -S"'enc_StatisticsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p145315 -tp145316 -a(S"'enc_StatisticsParameter'/2" -p145317 -S"'enc_StatisticsParameter'(${1:Val}, ${2:TagIn}) $3" -p145318 -tp145319 -a(S"'enc_StreamDescriptor'/2" -p145320 -S"'enc_StreamDescriptor'(${1:Val}, ${2:TagIn}) $3" -p145321 -tp145322 -a(S"'enc_StreamID'/2" -p145323 -S"'enc_StreamID'(${1:Val}, ${2:TagIn}) $3" -p145324 -tp145325 -a(S"'enc_StreamMode'/2" -p145326 -S"'enc_StreamMode'(${1:Val}, ${2:TagIn}) $3" -p145327 -tp145328 -a(S"'enc_StreamParms'/2" -p145329 -S"'enc_StreamParms'(${1:Val}, ${2:TagIn}) $3" -p145330 -tp145331 -a(S"'enc_SubtractRequest'/2" -p145332 -S"'enc_SubtractRequest'(${1:Val}, ${2:TagIn}) $3" -p145333 -tp145334 -a(S"'enc_TermListAuditResult'/2" -p145335 -S"'enc_TermListAuditResult'(${1:Val}, ${2:TagIn}) $3" -p145336 -tp145337 -a(S"'enc_TerminationAudit'/2" -p145338 -S"'enc_TerminationAudit'(${1:Val}, ${2:TagIn}) $3" -p145339 -tp145340 -a(S"'enc_TerminationID'/2" -p145341 -S"'enc_TerminationID'(${1:Val}, ${2:TagIn}) $3" -p145342 -tp145343 -a(S"'enc_TerminationIDList'/2" -p145344 -S"'enc_TerminationIDList'(${1:Val}, ${2:TagIn}) $3" -p145345 -tp145346 -a(S"'enc_TerminationStateDescriptor'/2" -p145347 -S"'enc_TerminationStateDescriptor'(${1:Val}, ${2:TagIn}) $3" -p145348 -tp145349 -a(S"'enc_TimeNotation'/2" -p145350 -S"'enc_TimeNotation'(${1:Val}, ${2:TagIn}) $3" -p145351 -tp145352 -a(S"'enc_TopologyRequest'/2" -p145353 -S"'enc_TopologyRequest'(${1:Val}, ${2:TagIn}) $3" -p145354 -tp145355 -a(S"'enc_Transaction'/2" -p145356 -S"'enc_Transaction'(${1:Val}, ${2:TagIn}) $3" -p145357 -tp145358 -a(S"'enc_TransactionAck'/2" -p145359 -S"'enc_TransactionAck'(${1:Val}, ${2:TagIn}) $3" -p145360 -tp145361 -a(S"'enc_TransactionId'/2" -p145362 -S"'enc_TransactionId'(${1:Val}, ${2:TagIn}) $3" -p145363 -tp145364 -a(S"'enc_TransactionPending'/2" -p145365 -S"'enc_TransactionPending'(${1:Val}, ${2:TagIn}) $3" -p145366 -tp145367 -a(S"'enc_TransactionReply'/2" -p145368 -S"'enc_TransactionReply'(${1:Val}, ${2:TagIn}) $3" -p145369 -tp145370 -a(S"'enc_TransactionRequest'/2" -p145371 -S"'enc_TransactionRequest'(${1:Val}, ${2:TagIn}) $3" -p145372 -tp145373 -a(S"'enc_TransactionResponseAck'/2" -p145374 -S"'enc_TransactionResponseAck'(${1:Val}, ${2:TagIn}) $3" -p145375 -tp145376 -a(S"'enc_Value'/2" -p145377 -S"'enc_Value'(${1:Val}, ${2:TagIn}) $3" -p145378 -tp145379 -a(S"'enc_WildcardField'/2" -p145380 -S"'enc_WildcardField'(${1:Val}, ${2:TagIn}) $3" -p145381 -tp145382 -a(S'decode/2' -p145383 -S'decode(${1:Type}, ${2:Data}) $3' -p145384 -tp145385 -a(S'decode_disp/2' -p145386 -S'decode_disp(${1:Type}, ${2:Data}) $3' -p145387 -tp145388 -a(S'decode_message_acts_partial/1' -p145389 -S'decode_message_acts_partial(${1:Bytes}) $2' -p145390 -tp145391 -a(S'decode_message_mId/1' -p145392 -S'decode_message_mId(${1:Bytes}) $2' -p145393 -tp145394 -a(S'decode_message_trans_partial/1' -p145395 -S'decode_message_trans_partial(${1:Bytes}) $2' -p145396 -tp145397 -a(S'decode_message_version/1' -p145398 -S'decode_message_version(${1:Bytes}) $2' -p145399 -tp145400 -a(S'decode_part/2' -p145401 -S'decode_part(${1:Type}, ${2:Data0}) $3' -p145402 -tp145403 -a(S'encode/2' -p145404 -S'encode(${1:Type}, ${2:Data}) $3' -p145405 -tp145406 -a(S'encode_disp/2' -p145407 -S'encode_disp(${1:Type}, ${2:Data}) $3' -p145408 -tp145409 -a(S'encoding_rule/0' -p145410 -S'encoding_rule() $1' -p145411 -tp145412 -a(S'info/0' -p145413 -S'info() $1' -p145414 -tp145415 -asS'megaco_ber_bin_media_gateway_control_v1' -p145416 -(lp145417 -(S"'dec_ActionReply'/2" -p145418 -S"'dec_ActionReply'(${1:Tlv}, ${2:TagIn}) $3" -p145419 -tp145420 -a(S"'dec_ActionRequest'/2" -p145421 -S"'dec_ActionRequest'(${1:Tlv}, ${2:TagIn}) $3" -p145422 -tp145423 -a(S"'dec_AmmDescriptor'/2" -p145424 -S"'dec_AmmDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p145425 -tp145426 -a(S"'dec_AmmRequest'/2" -p145427 -S"'dec_AmmRequest'(${1:Tlv}, ${2:TagIn}) $3" -p145428 -tp145429 -a(S"'dec_AmmsReply'/2" -p145430 -S"'dec_AmmsReply'(${1:Tlv}, ${2:TagIn}) $3" -p145431 -tp145432 -a(S"'dec_AuditDescriptor'/2" -p145433 -S"'dec_AuditDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p145434 -tp145435 -a(S"'dec_AuditReply'/2" -p145436 -S"'dec_AuditReply'(${1:Tlv}, ${2:TagIn}) $3" -p145437 -tp145438 -a(S"'dec_AuditRequest'/2" -p145439 -S"'dec_AuditRequest'(${1:Tlv}, ${2:TagIn}) $3" -p145440 -tp145441 -a(S"'dec_AuditResult'/2" -p145442 -S"'dec_AuditResult'(${1:Tlv}, ${2:TagIn}) $3" -p145443 -tp145444 -a(S"'dec_AuditReturnParameter'/2" -p145445 -S"'dec_AuditReturnParameter'(${1:Tlv}, ${2:TagIn}) $3" -p145446 -tp145447 -a(S"'dec_AuthData'/2" -p145448 -S"'dec_AuthData'(${1:Tlv}, ${2:TagIn}) $3" -p145449 -tp145450 -a(S"'dec_AuthenticationHeader'/2" -p145451 -S"'dec_AuthenticationHeader'(${1:Tlv}, ${2:TagIn}) $3" -p145452 -tp145453 -a(S"'dec_Command'/2" -p145454 -S"'dec_Command'(${1:Tlv}, ${2:TagIn}) $3" -p145455 -tp145456 -a(S"'dec_CommandReply'/2" -p145457 -S"'dec_CommandReply'(${1:Tlv}, ${2:TagIn}) $3" -p145458 -tp145459 -a(S"'dec_CommandRequest'/2" -p145460 -S"'dec_CommandRequest'(${1:Tlv}, ${2:TagIn}) $3" -p145461 -tp145462 -a(S"'dec_ContextAttrAuditRequest'/2" -p145463 -S"'dec_ContextAttrAuditRequest'(${1:Tlv}, ${2:TagIn}) $3" -p145464 -tp145465 -a(S"'dec_ContextID'/2" -p145466 -S"'dec_ContextID'(${1:Tlv}, ${2:TagIn}) $3" -p145467 -tp145468 -a(S"'dec_ContextRequest'/2" -p145469 -S"'dec_ContextRequest'(${1:Tlv}, ${2:TagIn}) $3" -p145470 -tp145471 -a(S"'dec_DigitMapDescriptor'/2" -p145472 -S"'dec_DigitMapDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p145473 -tp145474 -a(S"'dec_DigitMapName'/2" -p145475 -S"'dec_DigitMapName'(${1:Tlv}, ${2:TagIn}) $3" -p145476 -tp145477 -a(S"'dec_DigitMapValue'/2" -p145478 -S"'dec_DigitMapValue'(${1:Tlv}, ${2:TagIn}) $3" -p145479 -tp145480 -a(S"'dec_DomainName'/2" -p145481 -S"'dec_DomainName'(${1:Tlv}, ${2:TagIn}) $3" -p145482 -tp145483 -a(S"'dec_ErrorCode'/2" -p145484 -S"'dec_ErrorCode'(${1:Tlv}, ${2:TagIn}) $3" -p145485 -tp145486 -a(S"'dec_ErrorDescriptor'/2" -p145487 -S"'dec_ErrorDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p145488 -tp145489 -a(S"'dec_ErrorText'/2" -p145490 -S"'dec_ErrorText'(${1:Tlv}, ${2:TagIn}) $3" -p145491 -tp145492 -a(S"'dec_EventBufferControl'/2" -p145493 -S"'dec_EventBufferControl'(${1:Tlv}, ${2:TagIn}) $3" -p145494 -tp145495 -a(S"'dec_EventBufferDescriptor'/2" -p145496 -S"'dec_EventBufferDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p145497 -tp145498 -a(S"'dec_EventDM'/2" -p145499 -S"'dec_EventDM'(${1:Tlv}, ${2:TagIn}) $3" -p145500 -tp145501 -a(S"'dec_EventName'/2" -p145502 -S"'dec_EventName'(${1:Tlv}, ${2:TagIn}) $3" -p145503 -tp145504 -a(S"'dec_EventParameter'/2" -p145505 -S"'dec_EventParameter'(${1:Tlv}, ${2:TagIn}) $3" -p145506 -tp145507 -a(S"'dec_EventSpec'/2" -p145508 -S"'dec_EventSpec'(${1:Tlv}, ${2:TagIn}) $3" -p145509 -tp145510 -a(S"'dec_EventsDescriptor'/2" -p145511 -S"'dec_EventsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p145512 -tp145513 -a(S"'dec_H221NonStandard'/2" -p145514 -S"'dec_H221NonStandard'(${1:Tlv}, ${2:TagIn}) $3" -p145515 -tp145516 -a(S"'dec_IP4Address'/2" -p145517 -S"'dec_IP4Address'(${1:Tlv}, ${2:TagIn}) $3" -p145518 -tp145519 -a(S"'dec_IP6Address'/2" -p145520 -S"'dec_IP6Address'(${1:Tlv}, ${2:TagIn}) $3" -p145521 -tp145522 -a(S"'dec_LocalControlDescriptor'/2" -p145523 -S"'dec_LocalControlDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p145524 -tp145525 -a(S"'dec_LocalRemoteDescriptor'/2" -p145526 -S"'dec_LocalRemoteDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p145527 -tp145528 -a(S"'dec_MId'/2" -p145529 -S"'dec_MId'(${1:Tlv}, ${2:TagIn}) $3" -p145530 -tp145531 -a(S"'dec_MediaDescriptor'/2" -p145532 -S"'dec_MediaDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p145533 -tp145534 -a(S"'dec_MegacoMessage'/2" -p145535 -S"'dec_MegacoMessage'(${1:Tlv}, ${2:TagIn}) $3" -p145536 -tp145537 -a(S"'dec_Message'/2" -p145538 -S"'dec_Message'(${1:Tlv}, ${2:TagIn}) $3" -p145539 -tp145540 -a(S"'dec_ModemDescriptor'/2" -p145541 -S"'dec_ModemDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p145542 -tp145543 -a(S"'dec_ModemType'/2" -p145544 -S"'dec_ModemType'(${1:Tlv}, ${2:TagIn}) $3" -p145545 -tp145546 -a(S"'dec_MuxDescriptor'/2" -p145547 -S"'dec_MuxDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p145548 -tp145549 -a(S"'dec_MuxType'/2" -p145550 -S"'dec_MuxType'(${1:Tlv}, ${2:TagIn}) $3" -p145551 -tp145552 -a(S"'dec_Name'/2" -p145553 -S"'dec_Name'(${1:Tlv}, ${2:TagIn}) $3" -p145554 -tp145555 -a(S"'dec_NonStandardData'/2" -p145556 -S"'dec_NonStandardData'(${1:Tlv}, ${2:TagIn}) $3" -p145557 -tp145558 -a(S"'dec_NonStandardIdentifier'/2" -p145559 -S"'dec_NonStandardIdentifier'(${1:Tlv}, ${2:TagIn}) $3" -p145560 -tp145561 -a(S"'dec_NotifyCompletion'/2" -p145562 -S"'dec_NotifyCompletion'(${1:Tlv}, ${2:TagIn}) $3" -p145563 -tp145564 -a(S"'dec_NotifyReply'/2" -p145565 -S"'dec_NotifyReply'(${1:Tlv}, ${2:TagIn}) $3" -p145566 -tp145567 -a(S"'dec_NotifyRequest'/2" -p145568 -S"'dec_NotifyRequest'(${1:Tlv}, ${2:TagIn}) $3" -p145569 -tp145570 -a(S"'dec_ObservedEvent'/2" -p145571 -S"'dec_ObservedEvent'(${1:Tlv}, ${2:TagIn}) $3" -p145572 -tp145573 -a(S"'dec_ObservedEventsDescriptor'/2" -p145574 -S"'dec_ObservedEventsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p145575 -tp145576 -a(S"'dec_PackagesDescriptor'/2" -p145577 -S"'dec_PackagesDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p145578 -tp145579 -a(S"'dec_PackagesItem'/2" -p145580 -S"'dec_PackagesItem'(${1:Tlv}, ${2:TagIn}) $3" -p145581 -tp145582 -a(S"'dec_PathName'/2" -p145583 -S"'dec_PathName'(${1:Tlv}, ${2:TagIn}) $3" -p145584 -tp145585 -a(S"'dec_PkgdName'/2" -p145586 -S"'dec_PkgdName'(${1:Tlv}, ${2:TagIn}) $3" -p145587 -tp145588 -a(S"'dec_PropertyGroup'/2" -p145589 -S"'dec_PropertyGroup'(${1:Tlv}, ${2:TagIn}) $3" -p145590 -tp145591 -a(S"'dec_PropertyParm'/2" -p145592 -S"'dec_PropertyParm'(${1:Tlv}, ${2:TagIn}) $3" -p145593 -tp145594 -a(S"'dec_Relation'/2" -p145595 -S"'dec_Relation'(${1:Tlv}, ${2:TagIn}) $3" -p145596 -tp145597 -a(S"'dec_RequestID'/2" -p145598 -S"'dec_RequestID'(${1:Tlv}, ${2:TagIn}) $3" -p145599 -tp145600 -a(S"'dec_RequestedActions'/2" -p145601 -S"'dec_RequestedActions'(${1:Tlv}, ${2:TagIn}) $3" -p145602 -tp145603 -a(S"'dec_RequestedEvent'/2" -p145604 -S"'dec_RequestedEvent'(${1:Tlv}, ${2:TagIn}) $3" -p145605 -tp145606 -a(S"'dec_SecondEventsDescriptor'/2" -p145607 -S"'dec_SecondEventsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p145608 -tp145609 -a(S"'dec_SecondRequestedActions'/2" -p145610 -S"'dec_SecondRequestedActions'(${1:Tlv}, ${2:TagIn}) $3" -p145611 -tp145612 -a(S"'dec_SecondRequestedEvent'/2" -p145613 -S"'dec_SecondRequestedEvent'(${1:Tlv}, ${2:TagIn}) $3" -p145614 -tp145615 -a(S"'dec_SecurityParmIndex'/2" -p145616 -S"'dec_SecurityParmIndex'(${1:Tlv}, ${2:TagIn}) $3" -p145617 -tp145618 -a(S"'dec_SeqSigList'/2" -p145619 -S"'dec_SeqSigList'(${1:Tlv}, ${2:TagIn}) $3" -p145620 -tp145621 -a(S"'dec_SequenceNum'/2" -p145622 -S"'dec_SequenceNum'(${1:Tlv}, ${2:TagIn}) $3" -p145623 -tp145624 -a(S"'dec_ServiceChangeAddress'/2" -p145625 -S"'dec_ServiceChangeAddress'(${1:Tlv}, ${2:TagIn}) $3" -p145626 -tp145627 -a(S"'dec_ServiceChangeMethod'/2" -p145628 -S"'dec_ServiceChangeMethod'(${1:Tlv}, ${2:TagIn}) $3" -p145629 -tp145630 -a(S"'dec_ServiceChangeParm'/2" -p145631 -S"'dec_ServiceChangeParm'(${1:Tlv}, ${2:TagIn}) $3" -p145632 -tp145633 -a(S"'dec_ServiceChangeProfile'/2" -p145634 -S"'dec_ServiceChangeProfile'(${1:Tlv}, ${2:TagIn}) $3" -p145635 -tp145636 -a(S"'dec_ServiceChangeReply'/2" -p145637 -S"'dec_ServiceChangeReply'(${1:Tlv}, ${2:TagIn}) $3" -p145638 -tp145639 -a(S"'dec_ServiceChangeRequest'/2" -p145640 -S"'dec_ServiceChangeRequest'(${1:Tlv}, ${2:TagIn}) $3" -p145641 -tp145642 -a(S"'dec_ServiceChangeResParm'/2" -p145643 -S"'dec_ServiceChangeResParm'(${1:Tlv}, ${2:TagIn}) $3" -p145644 -tp145645 -a(S"'dec_ServiceChangeResult'/2" -p145646 -S"'dec_ServiceChangeResult'(${1:Tlv}, ${2:TagIn}) $3" -p145647 -tp145648 -a(S"'dec_ServiceState'/2" -p145649 -S"'dec_ServiceState'(${1:Tlv}, ${2:TagIn}) $3" -p145650 -tp145651 -a(S"'dec_SigParameter'/2" -p145652 -S"'dec_SigParameter'(${1:Tlv}, ${2:TagIn}) $3" -p145653 -tp145654 -a(S"'dec_Signal'/2" -p145655 -S"'dec_Signal'(${1:Tlv}, ${2:TagIn}) $3" -p145656 -tp145657 -a(S"'dec_SignalName'/2" -p145658 -S"'dec_SignalName'(${1:Tlv}, ${2:TagIn}) $3" -p145659 -tp145660 -a(S"'dec_SignalRequest'/2" -p145661 -S"'dec_SignalRequest'(${1:Tlv}, ${2:TagIn}) $3" -p145662 -tp145663 -a(S"'dec_SignalType'/2" -p145664 -S"'dec_SignalType'(${1:Tlv}, ${2:TagIn}) $3" -p145665 -tp145666 -a(S"'dec_SignalsDescriptor'/2" -p145667 -S"'dec_SignalsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p145668 -tp145669 -a(S"'dec_StatisticsDescriptor'/2" -p145670 -S"'dec_StatisticsDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p145671 -tp145672 -a(S"'dec_StatisticsParameter'/2" -p145673 -S"'dec_StatisticsParameter'(${1:Tlv}, ${2:TagIn}) $3" -p145674 -tp145675 -a(S"'dec_StreamDescriptor'/2" -p145676 -S"'dec_StreamDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p145677 -tp145678 -a(S"'dec_StreamID'/2" -p145679 -S"'dec_StreamID'(${1:Tlv}, ${2:TagIn}) $3" -p145680 -tp145681 -a(S"'dec_StreamMode'/2" -p145682 -S"'dec_StreamMode'(${1:Tlv}, ${2:TagIn}) $3" -p145683 -tp145684 -a(S"'dec_StreamParms'/2" -p145685 -S"'dec_StreamParms'(${1:Tlv}, ${2:TagIn}) $3" -p145686 -tp145687 -a(S"'dec_SubtractRequest'/2" -p145688 -S"'dec_SubtractRequest'(${1:Tlv}, ${2:TagIn}) $3" -p145689 -tp145690 -a(S"'dec_TerminationAudit'/2" -p145691 -S"'dec_TerminationAudit'(${1:Tlv}, ${2:TagIn}) $3" -p145692 -tp145693 -a(S"'dec_TerminationID'/2" -p145694 -S"'dec_TerminationID'(${1:Tlv}, ${2:TagIn}) $3" -p145695 -tp145696 -a(S"'dec_TerminationIDList'/2" -p145697 -S"'dec_TerminationIDList'(${1:Tlv}, ${2:TagIn}) $3" -p145698 -tp145699 -a(S"'dec_TerminationStateDescriptor'/2" -p145700 -S"'dec_TerminationStateDescriptor'(${1:Tlv}, ${2:TagIn}) $3" -p145701 -tp145702 -a(S"'dec_TimeNotation'/2" -p145703 -S"'dec_TimeNotation'(${1:Tlv}, ${2:TagIn}) $3" -p145704 -tp145705 -a(S"'dec_TopologyRequest'/2" -p145706 -S"'dec_TopologyRequest'(${1:Tlv}, ${2:TagIn}) $3" -p145707 -tp145708 -a(S"'dec_Transaction'/2" -p145709 -S"'dec_Transaction'(${1:Tlv}, ${2:TagIn}) $3" -p145710 -tp145711 -a(S"'dec_TransactionAck'/2" -p145712 -S"'dec_TransactionAck'(${1:Tlv}, ${2:TagIn}) $3" -p145713 -tp145714 -a(S"'dec_TransactionId'/2" -p145715 -S"'dec_TransactionId'(${1:Tlv}, ${2:TagIn}) $3" -p145716 -tp145717 -a(S"'dec_TransactionPending'/2" -p145718 -S"'dec_TransactionPending'(${1:Tlv}, ${2:TagIn}) $3" -p145719 -tp145720 -a(S"'dec_TransactionReply'/2" -p145721 -S"'dec_TransactionReply'(${1:Tlv}, ${2:TagIn}) $3" -p145722 -tp145723 -a(S"'dec_TransactionRequest'/2" -p145724 -S"'dec_TransactionRequest'(${1:Tlv}, ${2:TagIn}) $3" -p145725 -tp145726 -a(S"'dec_TransactionResponseAck'/2" -p145727 -S"'dec_TransactionResponseAck'(${1:Tlv}, ${2:TagIn}) $3" -p145728 -tp145729 -a(S"'dec_Value'/2" -p145730 -S"'dec_Value'(${1:Tlv}, ${2:TagIn}) $3" -p145731 -tp145732 -a(S"'dec_WildcardField'/2" -p145733 -S"'dec_WildcardField'(${1:Tlv}, ${2:TagIn}) $3" -p145734 -tp145735 -a(S"'enc_ActionReply'/2" -p145736 -S"'enc_ActionReply'(${1:Val}, ${2:TagIn}) $3" -p145737 -tp145738 -a(S"'enc_ActionRequest'/2" -p145739 -S"'enc_ActionRequest'(${1:Val}, ${2:TagIn}) $3" -p145740 -tp145741 -a(S"'enc_AmmDescriptor'/2" -p145742 -S"'enc_AmmDescriptor'(${1:Val}, ${2:TagIn}) $3" -p145743 -tp145744 -a(S"'enc_AmmRequest'/2" -p145745 -S"'enc_AmmRequest'(${1:Val}, ${2:TagIn}) $3" -p145746 -tp145747 -a(S"'enc_AmmsReply'/2" -p145748 -S"'enc_AmmsReply'(${1:Val}, ${2:TagIn}) $3" -p145749 -tp145750 -a(S"'enc_AuditDescriptor'/2" -p145751 -S"'enc_AuditDescriptor'(${1:Val}, ${2:TagIn}) $3" -p145752 -tp145753 -a(S"'enc_AuditReply'/2" -p145754 -S"'enc_AuditReply'(${1:Val}, ${2:TagIn}) $3" -p145755 -tp145756 -a(S"'enc_AuditRequest'/2" -p145757 -S"'enc_AuditRequest'(${1:Val}, ${2:TagIn}) $3" -p145758 -tp145759 -a(S"'enc_AuditResult'/2" -p145760 -S"'enc_AuditResult'(${1:Val}, ${2:TagIn}) $3" -p145761 -tp145762 -a(S"'enc_AuditReturnParameter'/2" -p145763 -S"'enc_AuditReturnParameter'(${1:Val}, ${2:TagIn}) $3" -p145764 -tp145765 -a(S"'enc_AuthData'/2" -p145766 -S"'enc_AuthData'(${1:Val}, ${2:TagIn}) $3" -p145767 -tp145768 -a(S"'enc_AuthenticationHeader'/2" -p145769 -S"'enc_AuthenticationHeader'(${1:Val}, ${2:TagIn}) $3" -p145770 -tp145771 -a(S"'enc_Command'/2" -p145772 -S"'enc_Command'(${1:Val}, ${2:TagIn}) $3" -p145773 -tp145774 -a(S"'enc_CommandReply'/2" -p145775 -S"'enc_CommandReply'(${1:Val}, ${2:TagIn}) $3" -p145776 -tp145777 -a(S"'enc_CommandRequest'/2" -p145778 -S"'enc_CommandRequest'(${1:Val}, ${2:TagIn}) $3" -p145779 -tp145780 -a(S"'enc_ContextAttrAuditRequest'/2" -p145781 -S"'enc_ContextAttrAuditRequest'(${1:Val}, ${2:TagIn}) $3" -p145782 -tp145783 -a(S"'enc_ContextID'/2" -p145784 -S"'enc_ContextID'(${1:Val}, ${2:TagIn}) $3" -p145785 -tp145786 -a(S"'enc_ContextRequest'/2" -p145787 -S"'enc_ContextRequest'(${1:Val}, ${2:TagIn}) $3" -p145788 -tp145789 -a(S"'enc_DigitMapDescriptor'/2" -p145790 -S"'enc_DigitMapDescriptor'(${1:Val}, ${2:TagIn}) $3" -p145791 -tp145792 -a(S"'enc_DigitMapName'/2" -p145793 -S"'enc_DigitMapName'(${1:Val}, ${2:TagIn}) $3" -p145794 -tp145795 -a(S"'enc_DigitMapValue'/2" -p145796 -S"'enc_DigitMapValue'(${1:Val}, ${2:TagIn}) $3" -p145797 -tp145798 -a(S"'enc_DomainName'/2" -p145799 -S"'enc_DomainName'(${1:Val}, ${2:TagIn}) $3" -p145800 -tp145801 -a(S"'enc_ErrorCode'/2" -p145802 -S"'enc_ErrorCode'(${1:Val}, ${2:TagIn}) $3" -p145803 -tp145804 -a(S"'enc_ErrorDescriptor'/2" -p145805 -S"'enc_ErrorDescriptor'(${1:Val}, ${2:TagIn}) $3" -p145806 -tp145807 -a(S"'enc_ErrorText'/2" -p145808 -S"'enc_ErrorText'(${1:Val}, ${2:TagIn}) $3" -p145809 -tp145810 -a(S"'enc_EventBufferControl'/2" -p145811 -S"'enc_EventBufferControl'(${1:Val}, ${2:TagIn}) $3" -p145812 -tp145813 -a(S"'enc_EventBufferDescriptor'/2" -p145814 -S"'enc_EventBufferDescriptor'(${1:Val}, ${2:TagIn}) $3" -p145815 -tp145816 -a(S"'enc_EventDM'/2" -p145817 -S"'enc_EventDM'(${1:Val}, ${2:TagIn}) $3" -p145818 -tp145819 -a(S"'enc_EventName'/2" -p145820 -S"'enc_EventName'(${1:Val}, ${2:TagIn}) $3" -p145821 -tp145822 -a(S"'enc_EventParameter'/2" -p145823 -S"'enc_EventParameter'(${1:Val}, ${2:TagIn}) $3" -p145824 -tp145825 -a(S"'enc_EventSpec'/2" -p145826 -S"'enc_EventSpec'(${1:Val}, ${2:TagIn}) $3" -p145827 -tp145828 -a(S"'enc_EventsDescriptor'/2" -p145829 -S"'enc_EventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p145830 -tp145831 -a(S"'enc_H221NonStandard'/2" -p145832 -S"'enc_H221NonStandard'(${1:Val}, ${2:TagIn}) $3" -p145833 -tp145834 -a(S"'enc_IP4Address'/2" -p145835 -S"'enc_IP4Address'(${1:Val}, ${2:TagIn}) $3" -p145836 -tp145837 -a(S"'enc_IP6Address'/2" -p145838 -S"'enc_IP6Address'(${1:Val}, ${2:TagIn}) $3" -p145839 -tp145840 -a(S"'enc_LocalControlDescriptor'/2" -p145841 -S"'enc_LocalControlDescriptor'(${1:Val}, ${2:TagIn}) $3" -p145842 -tp145843 -a(S"'enc_LocalRemoteDescriptor'/2" -p145844 -S"'enc_LocalRemoteDescriptor'(${1:Val}, ${2:TagIn}) $3" -p145845 -tp145846 -a(S"'enc_MId'/2" -p145847 -S"'enc_MId'(${1:Val}, ${2:TagIn}) $3" -p145848 -tp145849 -a(S"'enc_MediaDescriptor'/2" -p145850 -S"'enc_MediaDescriptor'(${1:Val}, ${2:TagIn}) $3" -p145851 -tp145852 -a(S"'enc_MegacoMessage'/2" -p145853 -S"'enc_MegacoMessage'(${1:Val}, ${2:TagIn}) $3" -p145854 -tp145855 -a(S"'enc_Message'/2" -p145856 -S"'enc_Message'(${1:Val}, ${2:TagIn}) $3" -p145857 -tp145858 -a(S"'enc_ModemDescriptor'/2" -p145859 -S"'enc_ModemDescriptor'(${1:Val}, ${2:TagIn}) $3" -p145860 -tp145861 -a(S"'enc_ModemType'/2" -p145862 -S"'enc_ModemType'(${1:Val}, ${2:TagIn}) $3" -p145863 -tp145864 -a(S"'enc_MuxDescriptor'/2" -p145865 -S"'enc_MuxDescriptor'(${1:Val}, ${2:TagIn}) $3" -p145866 -tp145867 -a(S"'enc_MuxType'/2" -p145868 -S"'enc_MuxType'(${1:Val}, ${2:TagIn}) $3" -p145869 -tp145870 -a(S"'enc_Name'/2" -p145871 -S"'enc_Name'(${1:Val}, ${2:TagIn}) $3" -p145872 -tp145873 -a(S"'enc_NonStandardData'/2" -p145874 -S"'enc_NonStandardData'(${1:Val}, ${2:TagIn}) $3" -p145875 -tp145876 -a(S"'enc_NonStandardIdentifier'/2" -p145877 -S"'enc_NonStandardIdentifier'(${1:Val}, ${2:TagIn}) $3" -p145878 -tp145879 -a(S"'enc_NotifyCompletion'/2" -p145880 -S"'enc_NotifyCompletion'(${1:Val}, ${2:TagIn}) $3" -p145881 -tp145882 -a(S"'enc_NotifyReply'/2" -p145883 -S"'enc_NotifyReply'(${1:Val}, ${2:TagIn}) $3" -p145884 -tp145885 -a(S"'enc_NotifyRequest'/2" -p145886 -S"'enc_NotifyRequest'(${1:Val}, ${2:TagIn}) $3" -p145887 -tp145888 -a(S"'enc_ObservedEvent'/2" -p145889 -S"'enc_ObservedEvent'(${1:Val}, ${2:TagIn}) $3" -p145890 -tp145891 -a(S"'enc_ObservedEventsDescriptor'/2" -p145892 -S"'enc_ObservedEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p145893 -tp145894 -a(S"'enc_PackagesDescriptor'/2" -p145895 -S"'enc_PackagesDescriptor'(${1:Val}, ${2:TagIn}) $3" -p145896 -tp145897 -a(S"'enc_PackagesItem'/2" -p145898 -S"'enc_PackagesItem'(${1:Val}, ${2:TagIn}) $3" -p145899 -tp145900 -a(S"'enc_PathName'/2" -p145901 -S"'enc_PathName'(${1:Val}, ${2:TagIn}) $3" -p145902 -tp145903 -a(S"'enc_PkgdName'/2" -p145904 -S"'enc_PkgdName'(${1:Val}, ${2:TagIn}) $3" -p145905 -tp145906 -a(S"'enc_PropertyGroup'/2" -p145907 -S"'enc_PropertyGroup'(${1:Val}, ${2:TagIn}) $3" -p145908 -tp145909 -a(S"'enc_PropertyParm'/2" -p145910 -S"'enc_PropertyParm'(${1:Val}, ${2:TagIn}) $3" -p145911 -tp145912 -a(S"'enc_Relation'/2" -p145913 -S"'enc_Relation'(${1:Val}, ${2:TagIn}) $3" -p145914 -tp145915 -a(S"'enc_RequestID'/2" -p145916 -S"'enc_RequestID'(${1:Val}, ${2:TagIn}) $3" -p145917 -tp145918 -a(S"'enc_RequestedActions'/2" -p145919 -S"'enc_RequestedActions'(${1:Val}, ${2:TagIn}) $3" -p145920 -tp145921 -a(S"'enc_RequestedEvent'/2" -p145922 -S"'enc_RequestedEvent'(${1:Val}, ${2:TagIn}) $3" -p145923 -tp145924 -a(S"'enc_SecondEventsDescriptor'/2" -p145925 -S"'enc_SecondEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p145926 -tp145927 -a(S"'enc_SecondRequestedActions'/2" -p145928 -S"'enc_SecondRequestedActions'(${1:Val}, ${2:TagIn}) $3" -p145929 -tp145930 -a(S"'enc_SecondRequestedEvent'/2" -p145931 -S"'enc_SecondRequestedEvent'(${1:Val}, ${2:TagIn}) $3" -p145932 -tp145933 -a(S"'enc_SecurityParmIndex'/2" -p145934 -S"'enc_SecurityParmIndex'(${1:Val}, ${2:TagIn}) $3" -p145935 -tp145936 -a(S"'enc_SeqSigList'/2" -p145937 -S"'enc_SeqSigList'(${1:Val}, ${2:TagIn}) $3" -p145938 -tp145939 -a(S"'enc_SequenceNum'/2" -p145940 -S"'enc_SequenceNum'(${1:Val}, ${2:TagIn}) $3" -p145941 -tp145942 -a(S"'enc_ServiceChangeAddress'/2" -p145943 -S"'enc_ServiceChangeAddress'(${1:Val}, ${2:TagIn}) $3" -p145944 -tp145945 -a(S"'enc_ServiceChangeMethod'/2" -p145946 -S"'enc_ServiceChangeMethod'(${1:Val}, ${2:TagIn}) $3" -p145947 -tp145948 -a(S"'enc_ServiceChangeParm'/2" -p145949 -S"'enc_ServiceChangeParm'(${1:Val}, ${2:TagIn}) $3" -p145950 -tp145951 -a(S"'enc_ServiceChangeProfile'/2" -p145952 -S"'enc_ServiceChangeProfile'(${1:Val}, ${2:TagIn}) $3" -p145953 -tp145954 -a(S"'enc_ServiceChangeReply'/2" -p145955 -S"'enc_ServiceChangeReply'(${1:Val}, ${2:TagIn}) $3" -p145956 -tp145957 -a(S"'enc_ServiceChangeRequest'/2" -p145958 -S"'enc_ServiceChangeRequest'(${1:Val}, ${2:TagIn}) $3" -p145959 -tp145960 -a(S"'enc_ServiceChangeResParm'/2" -p145961 -S"'enc_ServiceChangeResParm'(${1:Val}, ${2:TagIn}) $3" -p145962 -tp145963 -a(S"'enc_ServiceChangeResult'/2" -p145964 -S"'enc_ServiceChangeResult'(${1:Val}, ${2:TagIn}) $3" -p145965 -tp145966 -a(S"'enc_ServiceState'/2" -p145967 -S"'enc_ServiceState'(${1:Val}, ${2:TagIn}) $3" -p145968 -tp145969 -a(S"'enc_SigParameter'/2" -p145970 -S"'enc_SigParameter'(${1:Val}, ${2:TagIn}) $3" -p145971 -tp145972 -a(S"'enc_Signal'/2" -p145973 -S"'enc_Signal'(${1:Val}, ${2:TagIn}) $3" -p145974 -tp145975 -a(S"'enc_SignalName'/2" -p145976 -S"'enc_SignalName'(${1:Val}, ${2:TagIn}) $3" -p145977 -tp145978 -a(S"'enc_SignalRequest'/2" -p145979 -S"'enc_SignalRequest'(${1:Val}, ${2:TagIn}) $3" -p145980 -tp145981 -a(S"'enc_SignalType'/2" -p145982 -S"'enc_SignalType'(${1:Val}, ${2:TagIn}) $3" -p145983 -tp145984 -a(S"'enc_SignalsDescriptor'/2" -p145985 -S"'enc_SignalsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p145986 -tp145987 -a(S"'enc_StatisticsDescriptor'/2" -p145988 -S"'enc_StatisticsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p145989 -tp145990 -a(S"'enc_StatisticsParameter'/2" -p145991 -S"'enc_StatisticsParameter'(${1:Val}, ${2:TagIn}) $3" -p145992 -tp145993 -a(S"'enc_StreamDescriptor'/2" -p145994 -S"'enc_StreamDescriptor'(${1:Val}, ${2:TagIn}) $3" -p145995 -tp145996 -a(S"'enc_StreamID'/2" -p145997 -S"'enc_StreamID'(${1:Val}, ${2:TagIn}) $3" -p145998 -tp145999 -a(S"'enc_StreamMode'/2" -p146000 -S"'enc_StreamMode'(${1:Val}, ${2:TagIn}) $3" -p146001 -tp146002 -a(S"'enc_StreamParms'/2" -p146003 -S"'enc_StreamParms'(${1:Val}, ${2:TagIn}) $3" -p146004 -tp146005 -a(S"'enc_SubtractRequest'/2" -p146006 -S"'enc_SubtractRequest'(${1:Val}, ${2:TagIn}) $3" -p146007 -tp146008 -a(S"'enc_TerminationAudit'/2" -p146009 -S"'enc_TerminationAudit'(${1:Val}, ${2:TagIn}) $3" -p146010 -tp146011 -a(S"'enc_TerminationID'/2" -p146012 -S"'enc_TerminationID'(${1:Val}, ${2:TagIn}) $3" -p146013 -tp146014 -a(S"'enc_TerminationIDList'/2" -p146015 -S"'enc_TerminationIDList'(${1:Val}, ${2:TagIn}) $3" -p146016 -tp146017 -a(S"'enc_TerminationStateDescriptor'/2" -p146018 -S"'enc_TerminationStateDescriptor'(${1:Val}, ${2:TagIn}) $3" -p146019 -tp146020 -a(S"'enc_TimeNotation'/2" -p146021 -S"'enc_TimeNotation'(${1:Val}, ${2:TagIn}) $3" -p146022 -tp146023 -a(S"'enc_TopologyRequest'/2" -p146024 -S"'enc_TopologyRequest'(${1:Val}, ${2:TagIn}) $3" -p146025 -tp146026 -a(S"'enc_Transaction'/2" -p146027 -S"'enc_Transaction'(${1:Val}, ${2:TagIn}) $3" -p146028 -tp146029 -a(S"'enc_TransactionAck'/2" -p146030 -S"'enc_TransactionAck'(${1:Val}, ${2:TagIn}) $3" -p146031 -tp146032 -a(S"'enc_TransactionId'/2" -p146033 -S"'enc_TransactionId'(${1:Val}, ${2:TagIn}) $3" -p146034 -tp146035 -a(S"'enc_TransactionPending'/2" -p146036 -S"'enc_TransactionPending'(${1:Val}, ${2:TagIn}) $3" -p146037 -tp146038 -a(S"'enc_TransactionReply'/2" -p146039 -S"'enc_TransactionReply'(${1:Val}, ${2:TagIn}) $3" -p146040 -tp146041 -a(S"'enc_TransactionRequest'/2" -p146042 -S"'enc_TransactionRequest'(${1:Val}, ${2:TagIn}) $3" -p146043 -tp146044 -a(S"'enc_TransactionResponseAck'/2" -p146045 -S"'enc_TransactionResponseAck'(${1:Val}, ${2:TagIn}) $3" -p146046 -tp146047 -a(S"'enc_Value'/2" -p146048 -S"'enc_Value'(${1:Val}, ${2:TagIn}) $3" -p146049 -tp146050 -a(S"'enc_WildcardField'/2" -p146051 -S"'enc_WildcardField'(${1:Val}, ${2:TagIn}) $3" -p146052 -tp146053 -a(S'decode/2' -p146054 -S'decode(${1:Type}, ${2:Data}) $3' -p146055 -tp146056 -a(S'decode_disp/2' -p146057 -S'decode_disp(${1:Type}, ${2:Data}) $3' -p146058 -tp146059 -a(S'decode_message_acts_partial/1' -p146060 -S'decode_message_acts_partial(${1:Bytes}) $2' -p146061 -tp146062 -a(S'decode_message_mId/1' -p146063 -S'decode_message_mId(${1:Bytes}) $2' -p146064 -tp146065 -a(S'decode_message_trans_partial/1' -p146066 -S'decode_message_trans_partial(${1:Bytes}) $2' -p146067 -tp146068 -a(S'decode_message_version/1' -p146069 -S'decode_message_version(${1:Bytes}) $2' -p146070 -tp146071 -a(S'decode_part/2' -p146072 -S'decode_part(${1:Type}, ${2:Data0}) $3' -p146073 -tp146074 -a(S'encode/2' -p146075 -S'encode(${1:Type}, ${2:Data}) $3' -p146076 -tp146077 -a(S'encode_disp/2' -p146078 -S'encode_disp(${1:Type}, ${2:Data}) $3' -p146079 -tp146080 -a(S'encoding_rule/0' -p146081 -S'encoding_rule() $1' -p146082 -tp146083 -a(S'info/0' -p146084 -S'info() $1' -p146085 -tp146086 -asS'wxTextDataObject' -p146087 -(lp146088 -(S'destroy/1' -p146089 -S'destroy(${1:This}) $2' -p146090 -tp146091 -a(S'getText/1' -p146092 -S'getText(${1:This}) $2' -p146093 -tp146094 -a(S'getTextLength/1' -p146095 -S'getTextLength(${1:This}) $2' -p146096 -tp146097 -a(S'new/0' -p146098 -S'new() $1' -p146099 -tp146100 -a(S'new/1' -p146101 -S'new(${1:Param1}) $2' -p146102 -tp146103 -a(S'parent_class/1' -p146104 -S'parent_class(${1:Param1}) $2' -p146105 -tp146106 -a(S'setText/2' -p146107 -S'setText(${1:This}, ${2:Text}) $3' -p146108 -tp146109 -asS'mod_security' -p146110 -(lp146111 -(S'block_user/4' -p146112 -S'block_user(${1:User}, ${2:Port}, ${3:Dir}, ${4:Time}) $5' -p146113 -tp146114 -a(S'block_user/5' -p146115 -S'block_user(${1:User}, ${2:Addr}, ${3:Port}, ${4:Dir}, ${5:Time}) $6' -p146116 -tp146117 -a(S'do/1' -p146118 -S'do(${1:Info}) $2' -p146119 -tp146120 -a(S'list_auth_users/1' -p146121 -S'list_auth_users(${1:Port}) $2' -p146122 -tp146123 -a(S'list_auth_users/2' -p146124 -S'list_auth_users(${1:Port}, ${2:Dir}) $3' -p146125 -tp146126 -a(S'list_auth_users/3' -p146127 -S'list_auth_users(${1:Addr}, ${2:Port}, ${3:Dir}) $4' -p146128 -tp146129 -a(S'list_blocked_users/1' -p146130 -S'list_blocked_users(${1:Port}) $2' -p146131 -tp146132 -a(S'list_blocked_users/2' -p146133 -S'list_blocked_users(${1:Port}, ${2:Dir}) $3' -p146134 -tp146135 -a(S'list_blocked_users/3' -p146136 -S'list_blocked_users(${1:Addr}, ${2:Port}, ${3:Dir}) $4' -p146137 -tp146138 -a(S'load/2' -p146139 -S'load(${1:Param1}, ${2:Param2}) $3' -p146140 -tp146141 -a(S'remove/1' -p146142 -S'remove(${1:ConfigDB}) $2' -p146143 -tp146144 -a(S'store/2' -p146145 -S'store(${1:Param1}, ${2:Param2}) $3' -p146146 -tp146147 -a(S'unblock_user/2' -p146148 -S'unblock_user(${1:User}, ${2:Port}) $3' -p146149 -tp146150 -a(S'unblock_user/3' -p146151 -S'unblock_user(${1:User}, ${2:Port}, ${3:Dir}) $4' -p146152 -tp146153 -a(S'unblock_user/4' -p146154 -S'unblock_user(${1:User}, ${2:Addr}, ${3:Port}, ${4:Dir}) $5' -p146155 -tp146156 -asS'wxRadioButton' -p146157 -(lp146158 -(S'cacheBestSize/2' -p146159 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p146160 -tp146161 -a(S'captureMouse/1' -p146162 -S'captureMouse(${1:This}) $2' -p146163 -tp146164 -a(S'center/1' -p146165 -S'center(${1:This}) $2' -p146166 -tp146167 -a(S'center/2' -p146168 -S'center(${1:This}, ${2:Options}) $3' -p146169 -tp146170 -a(S'centerOnParent/1' -p146171 -S'centerOnParent(${1:This}) $2' -p146172 -tp146173 -a(S'centerOnParent/2' -p146174 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p146175 -tp146176 -a(S'centre/1' -p146177 -S'centre(${1:This}) $2' -p146178 -tp146179 -a(S'centre/2' -p146180 -S'centre(${1:This}, ${2:Options}) $3' -p146181 -tp146182 -a(S'centreOnParent/1' -p146183 -S'centreOnParent(${1:This}) $2' -p146184 -tp146185 -a(S'centreOnParent/2' -p146186 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p146187 -tp146188 -a(S'clearBackground/1' -p146189 -S'clearBackground(${1:This}) $2' -p146190 -tp146191 -a(S'clientToScreen/2' -p146192 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p146193 -tp146194 -a(S'clientToScreen/3' -p146195 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p146196 -tp146197 -a(S'close/1' -p146198 -S'close(${1:This}) $2' -p146199 -tp146200 -a(S'close/2' -p146201 -S'close(${1:This}, ${2:Options}) $3' -p146202 -tp146203 -a(S'connect/2' -p146204 -S'connect(${1:This}, ${2:EventType}) $3' -p146205 -tp146206 -a(S'connect/3' -p146207 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p146208 -tp146209 -a(S'convertDialogToPixels/2' -p146210 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p146211 -tp146212 -a(S'convertPixelsToDialog/2' -p146213 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p146214 -tp146215 -a(S'create/4' -p146216 -S'create(${1:This}, ${2:Parent}, ${3:Id}, ${4:Label}) $5' -p146217 -tp146218 -a(S'create/5' -p146219 -S'create(${1:This}, ${2:Parent}, ${3:Id}, ${4:Label}, ${5:Param5}) $6' -p146220 -tp146221 -a(S'destroy/1' -p146222 -S'destroy(${1:This}) $2' -p146223 -tp146224 -a(S'destroyChildren/1' -p146225 -S'destroyChildren(${1:This}) $2' -p146226 -tp146227 -a(S'disable/1' -p146228 -S'disable(${1:This}) $2' -p146229 -tp146230 -a(S'disconnect/1' -p146231 -S'disconnect(${1:This}) $2' -p146232 -tp146233 -a(S'disconnect/2' -p146234 -S'disconnect(${1:This}, ${2:EventType}) $3' -p146235 -tp146236 -a(S'disconnect/3' -p146237 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p146238 -tp146239 -a(S'enable/1' -p146240 -S'enable(${1:This}) $2' -p146241 -tp146242 -a(S'enable/2' -p146243 -S'enable(${1:This}, ${2:Options}) $3' -p146244 -tp146245 -a(S'findWindow/2' -p146246 -S'findWindow(${1:This}, ${2:Winid}) $3' -p146247 -tp146248 -a(S'fit/1' -p146249 -S'fit(${1:This}) $2' -p146250 -tp146251 -a(S'fitInside/1' -p146252 -S'fitInside(${1:This}) $2' -p146253 -tp146254 -a(S'freeze/1' -p146255 -S'freeze(${1:This}) $2' -p146256 -tp146257 -a(S'getAcceleratorTable/1' -p146258 -S'getAcceleratorTable(${1:This}) $2' -p146259 -tp146260 -a(S'getBackgroundColour/1' -p146261 -S'getBackgroundColour(${1:This}) $2' -p146262 -tp146263 -a(S'getBackgroundStyle/1' -p146264 -S'getBackgroundStyle(${1:This}) $2' -p146265 -tp146266 -a(S'getBestSize/1' -p146267 -S'getBestSize(${1:This}) $2' -p146268 -tp146269 -a(S'getCaret/1' -p146270 -S'getCaret(${1:This}) $2' -p146271 -tp146272 -a(S'getCharHeight/1' -p146273 -S'getCharHeight(${1:This}) $2' -p146274 -tp146275 -a(S'getCharWidth/1' -p146276 -S'getCharWidth(${1:This}) $2' -p146277 -tp146278 -a(S'getChildren/1' -p146279 -S'getChildren(${1:This}) $2' -p146280 -tp146281 -a(S'getClientSize/1' -p146282 -S'getClientSize(${1:This}) $2' -p146283 -tp146284 -a(S'getContainingSizer/1' -p146285 -S'getContainingSizer(${1:This}) $2' -p146286 -tp146287 -a(S'getCursor/1' -p146288 -S'getCursor(${1:This}) $2' -p146289 -tp146290 -a(S'getDropTarget/1' -p146291 -S'getDropTarget(${1:This}) $2' -p146292 -tp146293 -a(S'getEventHandler/1' -p146294 -S'getEventHandler(${1:This}) $2' -p146295 -tp146296 -a(S'getExtraStyle/1' -p146297 -S'getExtraStyle(${1:This}) $2' -p146298 -tp146299 -a(S'getFont/1' -p146300 -S'getFont(${1:This}) $2' -p146301 -tp146302 -a(S'getForegroundColour/1' -p146303 -S'getForegroundColour(${1:This}) $2' -p146304 -tp146305 -a(S'getGrandParent/1' -p146306 -S'getGrandParent(${1:This}) $2' -p146307 -tp146308 -a(S'getHandle/1' -p146309 -S'getHandle(${1:This}) $2' -p146310 -tp146311 -a(S'getHelpText/1' -p146312 -S'getHelpText(${1:This}) $2' -p146313 -tp146314 -a(S'getId/1' -p146315 -S'getId(${1:This}) $2' -p146316 -tp146317 -a(S'getLabel/1' -p146318 -S'getLabel(${1:This}) $2' -p146319 -tp146320 -a(S'getMaxSize/1' -p146321 -S'getMaxSize(${1:This}) $2' -p146322 -tp146323 -a(S'getMinSize/1' -p146324 -S'getMinSize(${1:This}) $2' -p146325 -tp146326 -a(S'getName/1' -p146327 -S'getName(${1:This}) $2' -p146328 -tp146329 -a(S'getParent/1' -p146330 -S'getParent(${1:This}) $2' -p146331 -tp146332 -a(S'getPosition/1' -p146333 -S'getPosition(${1:This}) $2' -p146334 -tp146335 -a(S'getRect/1' -p146336 -S'getRect(${1:This}) $2' -p146337 -tp146338 -a(S'getScreenPosition/1' -p146339 -S'getScreenPosition(${1:This}) $2' -p146340 -tp146341 -a(S'getScreenRect/1' -p146342 -S'getScreenRect(${1:This}) $2' -p146343 -tp146344 -a(S'getScrollPos/2' -p146345 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p146346 -tp146347 -a(S'getScrollRange/2' -p146348 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p146349 -tp146350 -a(S'getScrollThumb/2' -p146351 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p146352 -tp146353 -a(S'getSize/1' -p146354 -S'getSize(${1:This}) $2' -p146355 -tp146356 -a(S'getSizer/1' -p146357 -S'getSizer(${1:This}) $2' -p146358 -tp146359 -a(S'getTextExtent/2' -p146360 -S'getTextExtent(${1:This}, ${2:String}) $3' -p146361 -tp146362 -a(S'getTextExtent/3' -p146363 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p146364 -tp146365 -a(S'getToolTip/1' -p146366 -S'getToolTip(${1:This}) $2' -p146367 -tp146368 -a(S'getUpdateRegion/1' -p146369 -S'getUpdateRegion(${1:This}) $2' -p146370 -tp146371 -a(S'getValue/1' -p146372 -S'getValue(${1:This}) $2' -p146373 -tp146374 -a(S'getVirtualSize/1' -p146375 -S'getVirtualSize(${1:This}) $2' -p146376 -tp146377 -a(S'getWindowStyleFlag/1' -p146378 -S'getWindowStyleFlag(${1:This}) $2' -p146379 -tp146380 -a(S'getWindowVariant/1' -p146381 -S'getWindowVariant(${1:This}) $2' -p146382 -tp146383 -a(S'hasCapture/1' -p146384 -S'hasCapture(${1:This}) $2' -p146385 -tp146386 -a(S'hasScrollbar/2' -p146387 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p146388 -tp146389 -a(S'hasTransparentBackground/1' -p146390 -S'hasTransparentBackground(${1:This}) $2' -p146391 -tp146392 -a(S'hide/1' -p146393 -S'hide(${1:This}) $2' -p146394 -tp146395 -a(S'inheritAttributes/1' -p146396 -S'inheritAttributes(${1:This}) $2' -p146397 -tp146398 -a(S'initDialog/1' -p146399 -S'initDialog(${1:This}) $2' -p146400 -tp146401 -a(S'invalidateBestSize/1' -p146402 -S'invalidateBestSize(${1:This}) $2' -p146403 -tp146404 -a(S'isEnabled/1' -p146405 -S'isEnabled(${1:This}) $2' -p146406 -tp146407 -a(S'isExposed/2' -p146408 -S'isExposed(${1:This}, ${2:Pt}) $3' -p146409 -tp146410 -a(S'isExposed/3' -p146411 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p146412 -tp146413 -a(S'isExposed/5' -p146414 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p146415 -tp146416 -a(S'isRetained/1' -p146417 -S'isRetained(${1:This}) $2' -p146418 -tp146419 -a(S'isShown/1' -p146420 -S'isShown(${1:This}) $2' -p146421 -tp146422 -a(S'isTopLevel/1' -p146423 -S'isTopLevel(${1:This}) $2' -p146424 -tp146425 -a(S'layout/1' -p146426 -S'layout(${1:This}) $2' -p146427 -tp146428 -a(S'lineDown/1' -p146429 -S'lineDown(${1:This}) $2' -p146430 -tp146431 -a(S'lineUp/1' -p146432 -S'lineUp(${1:This}) $2' -p146433 -tp146434 -a(S'lower/1' -p146435 -S'lower(${1:This}) $2' -p146436 -tp146437 -a(S'makeModal/1' -p146438 -S'makeModal(${1:This}) $2' -p146439 -tp146440 -a(S'makeModal/2' -p146441 -S'makeModal(${1:This}, ${2:Options}) $3' -p146442 -tp146443 -a(S'move/2' -p146444 -S'move(${1:This}, ${2:Pt}) $3' -p146445 -tp146446 -a(S'move/3' -p146447 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p146448 -tp146449 -a(S'move/4' -p146450 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p146451 -tp146452 -a(S'moveAfterInTabOrder/2' -p146453 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p146454 -tp146455 -a(S'moveBeforeInTabOrder/2' -p146456 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p146457 -tp146458 -a(S'navigate/1' -p146459 -S'navigate(${1:This}) $2' -p146460 -tp146461 -a(S'navigate/2' -p146462 -S'navigate(${1:This}, ${2:Options}) $3' -p146463 -tp146464 -a(S'new/0' -p146465 -S'new() $1' -p146466 -tp146467 -a(S'new/3' -p146468 -S'new(${1:Parent}, ${2:Id}, ${3:Label}) $4' -p146469 -tp146470 -a(S'new/4' -p146471 -S'new(${1:Parent}, ${2:Id}, ${3:Label}, ${4:Param4}) $5' -p146472 -tp146473 -a(S'pageDown/1' -p146474 -S'pageDown(${1:This}) $2' -p146475 -tp146476 -a(S'pageUp/1' -p146477 -S'pageUp(${1:This}) $2' -p146478 -tp146479 -a(S'parent_class/1' -p146480 -S'parent_class(${1:Param1}) $2' -p146481 -tp146482 -a(S'popEventHandler/1' -p146483 -S'popEventHandler(${1:This}) $2' -p146484 -tp146485 -a(S'popEventHandler/2' -p146486 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p146487 -tp146488 -a(S'popupMenu/2' -p146489 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p146490 -tp146491 -a(S'popupMenu/3' -p146492 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p146493 -tp146494 -a(S'popupMenu/4' -p146495 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p146496 -tp146497 -a(S'raise/1' -p146498 -S'raise(${1:This}) $2' -p146499 -tp146500 -a(S'refresh/1' -p146501 -S'refresh(${1:This}) $2' -p146502 -tp146503 -a(S'refresh/2' -p146504 -S'refresh(${1:This}, ${2:Options}) $3' -p146505 -tp146506 -a(S'refreshRect/2' -p146507 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p146508 -tp146509 -a(S'refreshRect/3' -p146510 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p146511 -tp146512 -a(S'releaseMouse/1' -p146513 -S'releaseMouse(${1:This}) $2' -p146514 -tp146515 -a(S'removeChild/2' -p146516 -S'removeChild(${1:This}, ${2:Child}) $3' -p146517 -tp146518 -a(S'reparent/2' -p146519 -S'reparent(${1:This}, ${2:NewParent}) $3' -p146520 -tp146521 -a(S'screenToClient/1' -p146522 -S'screenToClient(${1:This}) $2' -p146523 -tp146524 -a(S'screenToClient/2' -p146525 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p146526 -tp146527 -a(S'scrollLines/2' -p146528 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p146529 -tp146530 -a(S'scrollPages/2' -p146531 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p146532 -tp146533 -a(S'scrollWindow/3' -p146534 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p146535 -tp146536 -a(S'scrollWindow/4' -p146537 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p146538 -tp146539 -a(S'setAcceleratorTable/2' -p146540 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p146541 -tp146542 -a(S'setAutoLayout/2' -p146543 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p146544 -tp146545 -a(S'setBackgroundColour/2' -p146546 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p146547 -tp146548 -a(S'setBackgroundStyle/2' -p146549 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p146550 -tp146551 -a(S'setCaret/2' -p146552 -S'setCaret(${1:This}, ${2:Caret}) $3' -p146553 -tp146554 -a(S'setClientSize/2' -p146555 -S'setClientSize(${1:This}, ${2:Size}) $3' -p146556 -tp146557 -a(S'setClientSize/3' -p146558 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p146559 -tp146560 -a(S'setContainingSizer/2' -p146561 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p146562 -tp146563 -a(S'setCursor/2' -p146564 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p146565 -tp146566 -a(S'setDropTarget/2' -p146567 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p146568 -tp146569 -a(S'setExtraStyle/2' -p146570 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p146571 -tp146572 -a(S'setFocus/1' -p146573 -S'setFocus(${1:This}) $2' -p146574 -tp146575 -a(S'setFocusFromKbd/1' -p146576 -S'setFocusFromKbd(${1:This}) $2' -p146577 -tp146578 -a(S'setFont/2' -p146579 -S'setFont(${1:This}, ${2:Font}) $3' -p146580 -tp146581 -a(S'setForegroundColour/2' -p146582 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p146583 -tp146584 -a(S'setHelpText/2' -p146585 -S'setHelpText(${1:This}, ${2:Text}) $3' -p146586 -tp146587 -a(S'setId/2' -p146588 -S'setId(${1:This}, ${2:Winid}) $3' -p146589 -tp146590 -a(S'setLabel/2' -p146591 -S'setLabel(${1:This}, ${2:Label}) $3' -p146592 -tp146593 -a(S'setMaxSize/2' -p146594 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p146595 -tp146596 -a(S'setMinSize/2' -p146597 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p146598 -tp146599 -a(S'setName/2' -p146600 -S'setName(${1:This}, ${2:Name}) $3' -p146601 -tp146602 -a(S'setOwnBackgroundColour/2' -p146603 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p146604 -tp146605 -a(S'setOwnFont/2' -p146606 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p146607 -tp146608 -a(S'setOwnForegroundColour/2' -p146609 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p146610 -tp146611 -a(S'setPalette/2' -p146612 -S'setPalette(${1:This}, ${2:Pal}) $3' -p146613 -tp146614 -a(S'setScrollPos/3' -p146615 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p146616 -tp146617 -a(S'setScrollPos/4' -p146618 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p146619 -tp146620 -a(S'setScrollbar/5' -p146621 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p146622 -tp146623 -a(S'setScrollbar/6' -p146624 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p146625 -tp146626 -a(S'setSize/2' -p146627 -S'setSize(${1:This}, ${2:Rect}) $3' -p146628 -tp146629 -a(S'setSize/3' -p146630 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p146631 -tp146632 -a(S'setSize/5' -p146633 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p146634 -tp146635 -a(S'setSize/6' -p146636 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p146637 -tp146638 -a(S'setSizeHints/2' -p146639 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p146640 -tp146641 -a(S'setSizeHints/3' -p146642 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p146643 -tp146644 -a(S'setSizeHints/4' -p146645 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p146646 -tp146647 -a(S'setSizer/2' -p146648 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p146649 -tp146650 -a(S'setSizer/3' -p146651 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p146652 -tp146653 -a(S'setSizerAndFit/2' -p146654 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p146655 -tp146656 -a(S'setSizerAndFit/3' -p146657 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p146658 -tp146659 -a(S'setThemeEnabled/2' -p146660 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p146661 -tp146662 -a(S'setToolTip/2' -p146663 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p146664 -tp146665 -a(S'setValue/2' -p146666 -S'setValue(${1:This}, ${2:Val}) $3' -p146667 -tp146668 -a(S'setVirtualSize/2' -p146669 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p146670 -tp146671 -a(S'setVirtualSize/3' -p146672 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p146673 -tp146674 -a(S'setVirtualSizeHints/2' -p146675 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p146676 -tp146677 -a(S'setVirtualSizeHints/3' -p146678 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p146679 -tp146680 -a(S'setVirtualSizeHints/4' -p146681 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p146682 -tp146683 -a(S'setWindowStyle/2' -p146684 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p146685 -tp146686 -a(S'setWindowStyleFlag/2' -p146687 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p146688 -tp146689 -a(S'setWindowVariant/2' -p146690 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p146691 -tp146692 -a(S'shouldInheritColours/1' -p146693 -S'shouldInheritColours(${1:This}) $2' -p146694 -tp146695 -a(S'show/1' -p146696 -S'show(${1:This}) $2' -p146697 -tp146698 -a(S'show/2' -p146699 -S'show(${1:This}, ${2:Options}) $3' -p146700 -tp146701 -a(S'thaw/1' -p146702 -S'thaw(${1:This}) $2' -p146703 -tp146704 -a(S'transferDataFromWindow/1' -p146705 -S'transferDataFromWindow(${1:This}) $2' -p146706 -tp146707 -a(S'transferDataToWindow/1' -p146708 -S'transferDataToWindow(${1:This}) $2' -p146709 -tp146710 -a(S'update/1' -p146711 -S'update(${1:This}) $2' -p146712 -tp146713 -a(S'updateWindowUI/1' -p146714 -S'updateWindowUI(${1:This}) $2' -p146715 -tp146716 -a(S'updateWindowUI/2' -p146717 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p146718 -tp146719 -a(S'validate/1' -p146720 -S'validate(${1:This}) $2' -p146721 -tp146722 -a(S'warpPointer/3' -p146723 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p146724 -tp146725 -asS'CosTime_UTO_impl' -p146726 -(lp146727 -(S"'_get_inaccuracy'/2" -p146728 -S"'_get_inaccuracy'(${1:Param1}, ${2:State}) $3" -p146729 -tp146730 -a(S"'_get_tdf'/2" -p146731 -S"'_get_tdf'(${1:Param1}, ${2:State}) $3" -p146732 -tp146733 -a(S"'_get_time'/2" -p146734 -S"'_get_time'(${1:Param1}, ${2:State}) $3" -p146735 -tp146736 -a(S"'_get_utc_time'/2" -p146737 -S"'_get_utc_time'(${1:Param1}, ${2:State}) $3" -p146738 -tp146739 -a(S'absolute_time/2' -p146740 -S'absolute_time(${1:Param1}, ${2:State}) $3' -p146741 -tp146742 -a(S'code_change/3' -p146743 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p146744 -tp146745 -a(S'compare_time/4' -p146746 -S'compare_time(${1:Param1}, ${2:State}, ${3:Param3}, ${4:Uto}) $5' -p146747 -tp146748 -a(S'handle_info/2' -p146749 -S'handle_info(${1:Param1}, ${2:State}) $3' -p146750 -tp146751 -a(S'init/1' -p146752 -S'init(${1:Param1}) $2' -p146753 -tp146754 -a(S'interval/2' -p146755 -S'interval(${1:Param1}, ${2:State}) $3' -p146756 -tp146757 -a(S'terminate/2' -p146758 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p146759 -tp146760 -a(S'time_to_interval/3' -p146761 -S'time_to_interval(${1:Param1}, ${2:State}, ${3:Uto}) $4' -p146762 -tp146763 -asS'CosNotifyChannelAdmin_ConnectionAlreadyActive' -p146764 -(lp146765 -(S'id/0' -p146766 -S'id() $1' -p146767 -tp146768 -a(S'name/0' -p146769 -S'name() $1' -p146770 -tp146771 -a(S'tc/0' -p146772 -S'tc() $1' -p146773 -tp146774 -asS'dbg_wx_mon_win' -p146775 -(lp146776 -(S'add_break/3' -p146777 -S'add_break(${1:WinInfo}, ${2:Menu}, ${3:Param3}) $4' -p146778 -tp146779 -a(S'add_module/3' -p146780 -S'add_module(${1:WinInfo}, ${2:MenuName}, ${3:Mod}) $4' -p146781 -tp146782 -a(S'add_process/6' -p146783 -S'add_process(${1:WinInfo}, ${2:Pid}, ${3:Name}, ${4:Param4}, ${5:Status}, ${6:Info}) $7' -p146784 -tp146785 -a(S'clear_breaks/1' -p146786 -S'clear_breaks(${1:WinInfo}) $2' -p146787 -tp146788 -a(S'clear_breaks/2' -p146789 -S'clear_breaks(${1:WinInfo}, ${2:Mod}) $3' -p146790 -tp146791 -a(S'clear_processes/1' -p146792 -S'clear_processes(${1:WinInfo}) $2' -p146793 -tp146794 -a(S'create_win/3' -p146795 -S'create_win(${1:Param1}, ${2:Title}, ${3:Menus}) $4' -p146796 -tp146797 -a(S'delete_break/2' -p146798 -S'delete_break(${1:WinInfo}, ${2:Point}) $3' -p146799 -tp146800 -a(S'delete_module/2' -p146801 -S'delete_module(${1:WinInfo}, ${2:Mod}) $3' -p146802 -tp146803 -a(S'enable/2' -p146804 -S'enable(${1:MenuItems}, ${2:Bool}) $3' -p146805 -tp146806 -a(S'get_window/1' -p146807 -S'get_window(${1:WinInfo}) $2' -p146808 -tp146809 -a(S'handle_event/2' -p146810 -S'handle_event(${1:Param1}, ${2:Param2}) $3' -p146811 -tp146812 -a(S'init/0' -p146813 -S'init() $1' -p146814 -tp146815 -a(S'is_enabled/1' -p146816 -S'is_enabled(${1:MenuItem}) $2' -p146817 -tp146818 -a(S'select/2' -p146819 -S'select(${1:MenuItem}, ${2:Bool}) $3' -p146820 -tp146821 -a(S'show_option/3' -p146822 -S'show_option(${1:WinInfo}, ${2:Option}, ${3:Value}) $4' -p146823 -tp146824 -a(S'update_break/2' -p146825 -S'update_break(${1:WinInfo}, ${2:Param2}) $3' -p146826 -tp146827 -a(S'update_process/4' -p146828 -S'update_process(${1:WinInfo}, ${2:Pid}, ${3:Status}, ${4:Info}) $5' -p146829 -tp146830 -asS'inviso_as_lib' -p146831 -(lp146832 -(S'inhibit_autostart/1' -p146833 -S'inhibit_autostart(${1:Node}) $2' -p146834 -tp146835 -a(S'set_repeat/2' -p146836 -S'set_repeat(${1:Node}, ${2:N}) $3' -p146837 -tp146838 -a(S'set_repeat_2/2' -p146839 -S'set_repeat_2(${1:FileName}, ${2:NewTerms}) $3' -p146840 -tp146841 -a(S'setup_autostart/7' -p146842 -S'setup_autostart(${1:Node}, ${2:Repeat}, ${3:Options}, ${4:TracerData}, ${5:CmdFiles}, ${6:Bindings}, ${7:Translations}) $8' -p146843 -tp146844 -a(S'setup_autostart/8' -p146845 -S'setup_autostart(${1:Node}, ${2:Repeat}, ${3:Options}, ${4:TracerData}, ${5:CmdFiles}, ${6:Bindings}, ${7:Translations}, ${8:RTtag}) $9' -p146846 -tp146847 -a(S'setup_autostart/9' -p146848 -S'setup_autostart(${1:Node}, ${2:Repeat}, ${3:Options}, ${4:TracerData}, ${5:CmdFiles}, ${6:Bindings}, ${7:Translations}, ${8:RTtag}, ${9:Dbg}) $10' -p146849 -tp146850 -asS'observer_procinfo' -p146851 -(lp146852 -(S'code_change/3' -p146853 -S'code_change(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p146854 -tp146855 -a(S'handle_call/3' -p146856 -S'handle_call(${1:Call}, ${2:From}, ${3:Param3}) $4' -p146857 -tp146858 -a(S'handle_cast/2' -p146859 -S'handle_cast(${1:Cast}, ${2:Param2}) $3' -p146860 -tp146861 -a(S'handle_event/2' -p146862 -S'handle_event(${1:Event}, ${2:State}) $3' -p146863 -tp146864 -a(S'handle_info/2' -p146865 -S'handle_info(${1:Param1}, ${2:State}) $3' -p146866 -tp146867 -a(S'init/1' -p146868 -S'init(${1:Param1}) $2' -p146869 -tp146870 -a(S'start/3' -p146871 -S'start(${1:Process}, ${2:ParentFrame}, ${3:Parent}) $4' -p146872 -tp146873 -a(S'terminate/2' -p146874 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p146875 -tp146876 -asS'gs_packer' -p146877 -(lp146878 -(S'pack/2' -p146879 -S'pack(${1:Size}, ${2:SpecSizes}) $3' -p146880 -tp146881 -asS'CosTime_TimeService' -p146882 -(lp146883 -(S'code_change/3' -p146884 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p146885 -tp146886 -a(S'handle_call/3' -p146887 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p146888 -tp146889 -a(S'handle_cast/2' -p146890 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p146891 -tp146892 -a(S'handle_info/2' -p146893 -S'handle_info(${1:Info}, ${2:State}) $3' -p146894 -tp146895 -a(S'init/1' -p146896 -S'init(${1:Env}) $2' -p146897 -tp146898 -a(S'new_interval/3' -p146899 -S'new_interval(${1:OE_THIS}, ${2:Lower}, ${3:Upper}) $4' -p146900 -tp146901 -a(S'new_interval/4' -p146902 -S'new_interval(${1:OE_THIS}, ${2:OE_Options}, ${3:Lower}, ${4:Upper}) $5' -p146903 -tp146904 -a(S'new_universal_time/4' -p146905 -S'new_universal_time(${1:OE_THIS}, ${2:Time}, ${3:Inaccuracy}, ${4:Tdf}) $5' -p146906 -tp146907 -a(S'new_universal_time/5' -p146908 -S'new_universal_time(${1:OE_THIS}, ${2:OE_Options}, ${3:Time}, ${4:Inaccuracy}, ${5:Tdf}) $6' -p146909 -tp146910 -a(S'oe_create/0' -p146911 -S'oe_create() $1' -p146912 -tp146913 -a(S'oe_create/1' -p146914 -S'oe_create(${1:Env}) $2' -p146915 -tp146916 -a(S'oe_create/2' -p146917 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p146918 -tp146919 -a(S'oe_create_link/0' -p146920 -S'oe_create_link() $1' -p146921 -tp146922 -a(S'oe_create_link/1' -p146923 -S'oe_create_link(${1:Env}) $2' -p146924 -tp146925 -a(S'oe_create_link/2' -p146926 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p146927 -tp146928 -a(S'oe_get_interface/0' -p146929 -S'oe_get_interface() $1' -p146930 -tp146931 -a(S'oe_is_a/1' -p146932 -S'oe_is_a(${1:Param1}) $2' -p146933 -tp146934 -a(S'oe_tc/1' -p146935 -S'oe_tc(${1:Param1}) $2' -p146936 -tp146937 -a(S'secure_universal_time/1' -p146938 -S'secure_universal_time(${1:OE_THIS}) $2' -p146939 -tp146940 -a(S'secure_universal_time/2' -p146941 -S'secure_universal_time(${1:OE_THIS}, ${2:OE_Options}) $3' -p146942 -tp146943 -a(S'terminate/2' -p146944 -S'terminate(${1:Reason}, ${2:State}) $3' -p146945 -tp146946 -a(S'typeID/0' -p146947 -S'typeID() $1' -p146948 -tp146949 -a(S'universal_time/1' -p146950 -S'universal_time(${1:OE_THIS}) $2' -p146951 -tp146952 -a(S'universal_time/2' -p146953 -S'universal_time(${1:OE_THIS}, ${2:OE_Options}) $3' -p146954 -tp146955 -a(S'uto_from_utc/2' -p146956 -S'uto_from_utc(${1:OE_THIS}, ${2:Utc}) $3' -p146957 -tp146958 -a(S'uto_from_utc/3' -p146959 -S'uto_from_utc(${1:OE_THIS}, ${2:OE_Options}, ${3:Utc}) $4' -p146960 -tp146961 -asS'dets_v8' -p146962 -(lp146963 -(S'bulk_input/3' -p146964 -S'bulk_input(${1:Head}, ${2:InitFun}, ${3:Cntrs}) $4' -p146965 -tp146966 -a(S'cache_segps/3' -p146967 -S'cache_segps(${1:Fd}, ${2:FileName}, ${3:M}) $4' -p146968 -tp146969 -a(S'check_file_header/2' -p146970 -S'check_file_header(${1:FH}, ${2:Fd}) $3' -p146971 -tp146972 -a(S'db_hash/2' -p146973 -S'db_hash(${1:Key}, ${2:Head}) $3' -p146974 -tp146975 -a(S'do_perform_save/1' -p146976 -S'do_perform_save(${1:H}) $2' -p146977 -tp146978 -a(S'file_info/1' -p146979 -S'file_info(${1:FH}) $2' -p146980 -tp146981 -a(S'find_object/2' -p146982 -S'find_object(${1:Head}, ${2:Object}) $3' -p146983 -tp146984 -a(S'fsck_input/4' -p146985 -S'fsck_input(${1:Head}, ${2:Fd}, ${3:Cntrs}, ${4:Param4}) $5' -p146986 -tp146987 -a(S'init_freelist/2' -p146988 -S'init_freelist(${1:Head}, ${2:Param2}) $3' -p146989 -tp146990 -a(S'initiate_file/11' -p146991 -S'initiate_file() $1' -p146992 -tp146993 -a(S'mark_dirty/1' -p146994 -S'mark_dirty(${1:Head}) $2' -p146995 -tp146996 -a(S'may_grow/3' -p146997 -S'may_grow(${1:Head}, ${2:N}, ${3:How}) $4' -p146998 -tp146999 -a(S'no_slots/1' -p147000 -S'no_slots(${1:Param1}) $2' -p147001 -tp147002 -a(S'output_objs/4' -p147003 -S'output_objs(${1:OldVersion}, ${2:Head}, ${3:SlotNumbers}, ${4:Cntrs}) $5' -p147004 -tp147005 -a(S're_hash/2' -p147006 -S're_hash(${1:Head}, ${2:SlotStart}) $3' -p147007 -tp147008 -a(S'read_file_header/2' -p147009 -S'read_file_header(${1:Fd}, ${2:FileName}) $3' -p147010 -tp147011 -a(S'scan_objs/8' -p147012 -S'scan_objs(${1:Param1}, ${2:Bin}, ${3:From}, ${4:To}, ${5:L}, ${6:Ts}, ${7:R}, ${8:Param8}) $9' -p147013 -tp147014 -a(S'slot_objs/2' -p147015 -S'slot_objs(${1:H}, ${2:Slot}) $3' -p147016 -tp147017 -a(S'sz2pos/1' -p147018 -S'sz2pos(${1:N}) $2' -p147019 -tp147020 -a(S'table_parameters/1' -p147021 -S'table_parameters(${1:Param1}) $2' -p147022 -tp147023 -a(S'v_segments/1' -p147024 -S'v_segments(${1:H}) $2' -p147025 -tp147026 -a(S'write_cache/1' -p147027 -S'write_cache(${1:Head}) $2' -p147028 -tp147029 -asS'dets_v9' -p147030 -(lp147031 -(S'bchunk_init/2' -p147032 -S'bchunk_init(${1:Head}, ${2:InitFun}) $3' -p147033 -tp147034 -a(S'bulk_input/3' -p147035 -S'bulk_input(${1:Head}, ${2:InitFun}, ${3:Param3}) $4' -p147036 -tp147037 -a(S'cache_segps/3' -p147038 -S'cache_segps(${1:Fd}, ${2:FileName}, ${3:M}) $4' -p147039 -tp147040 -a(S'check_file_header/2' -p147041 -S'check_file_header(${1:FH}, ${2:Fd}) $3' -p147042 -tp147043 -a(S'compact_init/3' -p147044 -S'compact_init(${1:ReadHead}, ${2:WriteHead}, ${3:TableParameters}) $4' -p147045 -tp147046 -a(S'db_hash/2' -p147047 -S'db_hash(${1:Key}, ${2:Head}) $3' -p147048 -tp147049 -a(S'do_perform_save/1' -p147050 -S'do_perform_save(${1:H}) $2' -p147051 -tp147052 -a(S'file_info/1' -p147053 -S'file_info(${1:FH}) $2' -p147054 -tp147055 -a(S'find_object/2' -p147056 -S'find_object(${1:Head}, ${2:Object}) $3' -p147057 -tp147058 -a(S'fsck_input/4' -p147059 -S'fsck_input(${1:Head}, ${2:Fd}, ${3:Cntrs}, ${4:FileHeader}) $5' -p147060 -tp147061 -a(S'init_freelist/2' -p147062 -S'init_freelist(${1:Head}, ${2:Param2}) $3' -p147063 -tp147064 -a(S'initiate_file/11' -p147065 -S'initiate_file() $1' -p147066 -tp147067 -a(S'mark_dirty/1' -p147068 -S'mark_dirty(${1:Head}) $2' -p147069 -tp147070 -a(S'may_grow/3' -p147071 -S'may_grow(${1:Head}, ${2:N}, ${3:How}) $4' -p147072 -tp147073 -a(S'no_slots/1' -p147074 -S'no_slots(${1:Head}) $2' -p147075 -tp147076 -a(S'output_objs/4' -p147077 -S'output_objs() $1' -p147078 -tp147079 -a(S'prep_table_copy/9' -p147080 -S'prep_table_copy(${1:Fd}, ${2:Tab}, ${3:Fname}, ${4:Type}, ${5:Kp}, ${6:Ram}, ${7:CacheSz}, ${8:Auto}, ${9:Parms}) $10' -p147081 -tp147082 -a(S'read_bchunks/2' -p147083 -S'read_bchunks(${1:Head}, ${2:L}) $3' -p147084 -tp147085 -a(S'read_file_header/2' -p147086 -S'read_file_header(${1:Fd}, ${2:FileName}) $3' -p147087 -tp147088 -a(S'scan_objs/8' -p147089 -S'scan_objs(${1:Head}, ${2:Bin}, ${3:From}, ${4:To}, ${5:L}, ${6:Ts}, ${7:R}, ${8:Type}) $9' -p147090 -tp147091 -a(S'slot_objs/2' -p147092 -S'slot_objs(${1:H}, ${2:Slot}) $3' -p147093 -tp147094 -a(S'table_parameters/1' -p147095 -S'table_parameters(${1:Head}) $2' -p147096 -tp147097 -a(S'try_bchunk_header/2' -p147098 -S'try_bchunk_header(${1:ParmsBin}, ${2:Head}) $3' -p147099 -tp147100 -a(S'v_segments/1' -p147101 -S'v_segments(${1:H}) $2' -p147102 -tp147103 -a(S'write_cache/1' -p147104 -S'write_cache(${1:Head}) $2' -p147105 -tp147106 -asS'sofs' -p147107 -(lp147108 -(S'a_function/1' -p147109 -S'a_function(${1:Tuples}) $2' -p147110 -tp147111 -a(S'a_function/2' -p147112 -S'a_function(${1:Tuples}, ${2:Type}) $3' -p147113 -tp147114 -a(S'canonical_relation/1' -p147115 -S'canonical_relation(${1:SetOfSets}) $2' -p147116 -tp147117 -a(S'composite/2' -p147118 -S'composite(${1:Function1}, ${2:Function2}) $3' -p147119 -tp147120 -a(S'constant_function/2' -p147121 -S'constant_function(${1:Set}, ${2:AnySet}) $3' -p147122 -tp147123 -a(S'converse/1' -p147124 -S'converse(${1:BinRel1}) $2' -p147125 -tp147126 -a(S'difference/2' -p147127 -S'difference(${1:Set1}, ${2:Set2}) $3' -p147128 -tp147129 -a(S'digraph_to_family/1' -p147130 -S'digraph_to_family(${1:Graph}) $2' -p147131 -tp147132 -a(S'digraph_to_family/2' -p147133 -S'digraph_to_family(${1:Graph}, ${2:Type}) $3' -p147134 -tp147135 -a(S'domain/1' -p147136 -S'domain(${1:BinRel}) $2' -p147137 -tp147138 -a(S'drestriction/2' -p147139 -S'drestriction(${1:BinRel1}, ${2:Set}) $3' -p147140 -tp147141 -a(S'drestriction/3' -p147142 -S'drestriction(${1:SetFun}, ${2:Set1}, ${3:Set2}) $4' -p147143 -tp147144 -a(S'empty_set/0' -p147145 -S'empty_set() $1' -p147146 -tp147147 -a(S'extension/3' -p147148 -S'extension(${1:BinRel1}, ${2:Set}, ${3:AnySet}) $4' -p147149 -tp147150 -a(S'fam2rel/1' -p147151 -S'fam2rel(${1:Family}) $2' -p147152 -tp147153 -a(S'family/1' -p147154 -S'family(${1:Tuples}) $2' -p147155 -tp147156 -a(S'family/2' -p147157 -S'family(${1:Tuples}, ${2:Type}) $3' -p147158 -tp147159 -a(S'family_difference/2' -p147160 -S'family_difference(${1:Family1}, ${2:Family2}) $3' -p147161 -tp147162 -a(S'family_domain/1' -p147163 -S'family_domain(${1:Family1}) $2' -p147164 -tp147165 -a(S'family_field/1' -p147166 -S'family_field(${1:Family1}) $2' -p147167 -tp147168 -a(S'family_intersection/1' -p147169 -S'family_intersection(${1:Family1}) $2' -p147170 -tp147171 -a(S'family_intersection/2' -p147172 -S'family_intersection(${1:Family1}, ${2:Family2}) $3' -p147173 -tp147174 -a(S'family_projection/2' -p147175 -S'family_projection(${1:SetFun}, ${2:Family1}) $3' -p147176 -tp147177 -a(S'family_range/1' -p147178 -S'family_range(${1:Family1}) $2' -p147179 -tp147180 -a(S'family_specification/2' -p147181 -S'family_specification(${1:Fun}, ${2:Family1}) $3' -p147182 -tp147183 -a(S'family_to_digraph/1' -p147184 -S'family_to_digraph(${1:Family}) $2' -p147185 -tp147186 -a(S'family_to_digraph/2' -p147187 -S'family_to_digraph(${1:Family}, ${2:GraphType}) $3' -p147188 -tp147189 -a(S'family_to_relation/1' -p147190 -S'family_to_relation(${1:Family}) $2' -p147191 -tp147192 -a(S'family_union/1' -p147193 -S'family_union(${1:Family1}) $2' -p147194 -tp147195 -a(S'family_union/2' -p147196 -S'family_union(${1:Family1}, ${2:Family2}) $3' -p147197 -tp147198 -a(S'field/1' -p147199 -S'field(${1:BinRel}) $2' -p147200 -tp147201 -a(S'from_external/2' -p147202 -S'from_external(${1:ExternalSet}, ${2:Type}) $3' -p147203 -tp147204 -a(S'from_sets/1' -p147205 -S'from_sets(${1:ListOfSets}) $2' -p147206 -tp147207 -a(S'from_term/1' -p147208 -S'from_term(${1:Term}) $2' -p147209 -tp147210 -a(S'from_term/2' -p147211 -S'from_term(${1:Term}, ${2:Type}) $3' -p147212 -tp147213 -a(S'image/2' -p147214 -S'image(${1:BinRel}, ${2:Set1}) $3' -p147215 -tp147216 -a(S'intersection/1' -p147217 -S'intersection(${1:SetOfSets}) $2' -p147218 -tp147219 -a(S'intersection/2' -p147220 -S'intersection(${1:Set1}, ${2:Set2}) $3' -p147221 -tp147222 -a(S'intersection_of_family/1' -p147223 -S'intersection_of_family(${1:Family}) $2' -p147224 -tp147225 -a(S'inverse/1' -p147226 -S'inverse(${1:Function1}) $2' -p147227 -tp147228 -a(S'inverse_image/2' -p147229 -S'inverse_image(${1:BinRel}, ${2:Set1}) $3' -p147230 -tp147231 -a(S'is_a_function/1' -p147232 -S'is_a_function(${1:BinRel}) $2' -p147233 -tp147234 -a(S'is_disjoint/2' -p147235 -S'is_disjoint(${1:Set1}, ${2:Set2}) $3' -p147236 -tp147237 -a(S'is_empty_set/1' -p147238 -S'is_empty_set(${1:AnySet}) $2' -p147239 -tp147240 -a(S'is_equal/2' -p147241 -S'is_equal(${1:AnySet1}, ${2:AnySet2}) $3' -p147242 -tp147243 -a(S'is_set/1' -p147244 -S'is_set(${1:AnySet}) $2' -p147245 -tp147246 -a(S'is_sofs_set/1' -p147247 -S'is_sofs_set(${1:Term}) $2' -p147248 -tp147249 -a(S'is_subset/2' -p147250 -S'is_subset(${1:Set1}, ${2:Set2}) $3' -p147251 -tp147252 -a(S'is_type/1' -p147253 -S'is_type(${1:Term}) $2' -p147254 -tp147255 -a(S'join/4' -p147256 -S'join(${1:Relation1}, ${2:I}, ${3:Relation2}, ${4:J}) $5' -p147257 -tp147258 -a(S'multiple_relative_product/2' -p147259 -S'multiple_relative_product(${1:TupleOfBinRels}, ${2:BinRel1}) $3' -p147260 -tp147261 -a(S'no_elements/1' -p147262 -S'no_elements(${1:ASet}) $2' -p147263 -tp147264 -a(S'partition/1' -p147265 -S'partition(${1:SetOfSets}) $2' -p147266 -tp147267 -a(S'partition/2' -p147268 -S'partition(${1:Set1}, ${2:Set2}) $3' -p147269 -tp147270 -a(S'partition/3' -p147271 -S'partition(${1:SetFun}, ${2:Set1}, ${3:Set2}) $4' -p147272 -tp147273 -a(S'partition_family/2' -p147274 -S'partition_family(${1:SetFun}, ${2:Set}) $3' -p147275 -tp147276 -a(S'product/1' -p147277 -S'product(${1:TupleOfSets}) $2' -p147278 -tp147279 -a(S'product/2' -p147280 -S'product(${1:Set1}, ${2:Set2}) $3' -p147281 -tp147282 -a(S'projection/2' -p147283 -S'projection(${1:SetFun}, ${2:Set1}) $3' -p147284 -tp147285 -a(S'range/1' -p147286 -S'range(${1:BinRel}) $2' -p147287 -tp147288 -a(S'rel2fam/1' -p147289 -S'rel2fam(${1:R}) $2' -p147290 -tp147291 -a(S'relation/1' -p147292 -S'relation(${1:Tuples}) $2' -p147293 -tp147294 -a(S'relation/2' -p147295 -S'relation(${1:Tuples}, ${2:Type}) $3' -p147296 -tp147297 -a(S'relation_to_family/1' -p147298 -S'relation_to_family(${1:BinRel}) $2' -p147299 -tp147300 -a(S'relative_product/1' -p147301 -S'relative_product(${1:ListOfBinRels}) $2' -p147302 -tp147303 -a(S'relative_product/2' -p147304 -S'relative_product(${1:ListOfBinRels}, ${2:BinRel1}) $3' -p147305 -tp147306 -a(S'relative_product1/2' -p147307 -S'relative_product1(${1:BinRel1}, ${2:BinRel2}) $3' -p147308 -tp147309 -a(S'restriction/2' -p147310 -S'restriction(${1:BinRel1}, ${2:Set}) $3' -p147311 -tp147312 -a(S'restriction/3' -p147313 -S'restriction(${1:SetFun}, ${2:Set1}, ${3:Set2}) $4' -p147314 -tp147315 -a(S'set/1' -p147316 -S'set(${1:Terms}) $2' -p147317 -tp147318 -a(S'set/2' -p147319 -S'set(${1:Terms}, ${2:Type}) $3' -p147320 -tp147321 -a(S'specification/2' -p147322 -S'specification(${1:Fun}, ${2:Set1}) $3' -p147323 -tp147324 -a(S'strict_relation/1' -p147325 -S'strict_relation(${1:BinRel1}) $2' -p147326 -tp147327 -a(S'substitution/2' -p147328 -S'substitution(${1:SetFun}, ${2:Set1}) $3' -p147329 -tp147330 -a(S'symdiff/2' -p147331 -S'symdiff(${1:Set1}, ${2:Set2}) $3' -p147332 -tp147333 -a(S'symmetric_partition/2' -p147334 -S'symmetric_partition(${1:Set1}, ${2:Set2}) $3' -p147335 -tp147336 -a(S'to_external/1' -p147337 -S'to_external(${1:AnySet}) $2' -p147338 -tp147339 -a(S'to_sets/1' -p147340 -S'to_sets(${1:ASet}) $2' -p147341 -tp147342 -a(S'type/1' -p147343 -S'type(${1:Term}) $2' -p147344 -tp147345 -a(S'union/1' -p147346 -S'union(${1:SetOfSets}) $2' -p147347 -tp147348 -a(S'union/2' -p147349 -S'union(${1:Set1}, ${2:Set2}) $3' -p147350 -tp147351 -a(S'union_of_family/1' -p147352 -S'union_of_family(${1:Family}) $2' -p147353 -tp147354 -a(S'weak_relation/1' -p147355 -S'weak_relation(${1:BinRel1}) $2' -p147356 -tp147357 -asS'dialyzer_callgraph' -p147358 -(lp147359 -(S'add_edges/2' -p147360 -S'add_edges(${1:Edges}, ${2:CG}) $3' -p147361 -tp147362 -a(S'all_nodes/1' -p147363 -S'all_nodes(${1:Param1}) $2' -p147364 -tp147365 -a(S'cleanup/1' -p147366 -S'cleanup(${1:Param1}) $2' -p147367 -tp147368 -a(S'delete/1' -p147369 -S'delete(${1:DG}) $2' -p147370 -tp147371 -a(S'finalize/1' -p147372 -S'finalize(${1:CG}) $2' -p147373 -tp147374 -a(S'get_behaviour_api_calls/1' -p147375 -S'get_behaviour_api_calls(${1:Callgraph}) $2' -p147376 -tp147377 -a(S'get_digraph/1' -p147378 -S'get_digraph(${1:Param1}) $2' -p147379 -tp147380 -a(S'get_named_tables/1' -p147381 -S'get_named_tables(${1:Param1}) $2' -p147382 -tp147383 -a(S'get_public_tables/1' -p147384 -S'get_public_tables(${1:Param1}) $2' -p147385 -tp147386 -a(S'get_race_code/1' -p147387 -S'get_race_code(${1:Param1}) $2' -p147388 -tp147389 -a(S'get_race_detection/1' -p147390 -S'get_race_detection(${1:Param1}) $2' -p147391 -tp147392 -a(S'in_neighbours/2' -p147393 -S'in_neighbours(${1:V}, ${2:DG}) $3' -p147394 -tp147395 -a(S'is_escaping/2' -p147396 -S'is_escaping(${1:Label}, ${2:Param2}) $3' -p147397 -tp147398 -a(S'is_self_rec/2' -p147399 -S'is_self_rec(${1:MfaOrLabel}, ${2:Param2}) $3' -p147400 -tp147401 -a(S'lookup_call_site/2' -p147402 -S'lookup_call_site(${1:Param1}, ${2:Param2}) $3' -p147403 -tp147404 -a(S'lookup_label/2' -p147405 -S'lookup_label(${1:Label}, ${2:Param2}) $3' -p147406 -tp147407 -a(S'lookup_name/2' -p147408 -S'lookup_name(${1:Param1}, ${2:Param2}) $3' -p147409 -tp147410 -a(S'lookup_rec_var/2' -p147411 -S'lookup_rec_var(${1:Param1}, ${2:Param2}) $3' -p147412 -tp147413 -a(S'module_deps/1' -p147414 -S'module_deps(${1:Param1}) $2' -p147415 -tp147416 -a(S'module_postorder_from_funs/2' -p147417 -S'module_postorder_from_funs(${1:Funs}, ${2:CG}) $3' -p147418 -tp147419 -a(S'modules/1' -p147420 -S'modules(${1:Param1}) $2' -p147421 -tp147422 -a(S'new/0' -p147423 -S'new() $1' -p147424 -tp147425 -a(S'non_local_calls/1' -p147426 -S'non_local_calls(${1:Param1}) $2' -p147427 -tp147428 -a(S'put_behaviour_api_calls/2' -p147429 -S'put_behaviour_api_calls(${1:Calls}, ${2:Callgraph}) $3' -p147430 -tp147431 -a(S'put_digraph/2' -p147432 -S'put_digraph(${1:Digraph}, ${2:Callgraph}) $3' -p147433 -tp147434 -a(S'put_named_tables/2' -p147435 -S'put_named_tables(${1:NamedTables}, ${2:Callgraph}) $3' -p147436 -tp147437 -a(S'put_public_tables/2' -p147438 -S'put_public_tables(${1:PublicTables}, ${2:Callgraph}) $3' -p147439 -tp147440 -a(S'put_race_code/2' -p147441 -S'put_race_code(${1:RaceCode}, ${2:Callgraph}) $3' -p147442 -tp147443 -a(S'put_race_detection/2' -p147444 -S'put_race_detection(${1:RaceDetection}, ${2:Callgraph}) $3' -p147445 -tp147446 -a(S'race_code_new/1' -p147447 -S'race_code_new(${1:Callgraph}) $2' -p147448 -tp147449 -a(S'remove_external/1' -p147450 -S'remove_external(${1:CG}) $2' -p147451 -tp147452 -a(S'renew_race_info/4' -p147453 -S'renew_race_info(${1:CG}, ${2:RaceCode}, ${3:PublicTables}, ${4:NamedTables}) $5' -p147454 -tp147455 -a(S'reset_from_funs/2' -p147456 -S'reset_from_funs(${1:Funs}, ${2:CG}) $3' -p147457 -tp147458 -a(S'scan_core_tree/2' -p147459 -S'scan_core_tree(${1:Param1}, ${2:Param2}) $3' -p147460 -tp147461 -a(S'strip_module_deps/2' -p147462 -S'strip_module_deps(${1:ModDeps}, ${2:StripSet}) $3' -p147463 -tp147464 -a(S'take_scc/1' -p147465 -S'take_scc(${1:CG}) $2' -p147466 -tp147467 -a(S'to_dot/2' -p147468 -S'to_dot(${1:CG}, ${2:File}) $3' -p147469 -tp147470 -a(S'to_ps/3' -p147471 -S'to_ps(${1:CG}, ${2:File}, ${3:Args}) $4' -p147472 -tp147473 -asS'tv_utils' -p147474 -(lp147475 -(S'notify/3' -p147476 -S'notify(${1:S}, ${2:Title}, ${3:Strings}) $4' -p147477 -tp147478 -asS'observer_sys_wx' -p147479 -(lp147480 -(S'code_change/3' -p147481 -S'code_change(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p147482 -tp147483 -a(S'handle_call/3' -p147484 -S'handle_call(${1:Msg}, ${2:Param2}, ${3:State}) $4' -p147485 -tp147486 -a(S'handle_cast/2' -p147487 -S'handle_cast(${1:Msg}, ${2:State}) $3' -p147488 -tp147489 -a(S'handle_event/2' -p147490 -S'handle_event(${1:Event}, ${2:State}) $3' -p147491 -tp147492 -a(S'handle_info/2' -p147493 -S'handle_info(${1:Info}, ${2:State}) $3' -p147494 -tp147495 -a(S'init/1' -p147496 -S'init(${1:Param1}) $2' -p147497 -tp147498 -a(S'start_link/2' -p147499 -S'start_link(${1:Notebook}, ${2:Parent}) $3' -p147500 -tp147501 -a(S'terminate/2' -p147502 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p147503 -tp147504 -asS'erl_boot_server' -p147505 -(lp147506 -(S'add_slave/1' -p147507 -S'add_slave(${1:Slave}) $2' -p147508 -tp147509 -a(S'add_subnet/2' -p147510 -S'add_subnet(${1:Mask}, ${2:Addr}) $3' -p147511 -tp147512 -a(S'boot_accept/3' -p147513 -S'boot_accept(${1:Server}, ${2:Listen}, ${3:Tag}) $4' -p147514 -tp147515 -a(S'boot_init/1' -p147516 -S'boot_init(${1:Tag}) $2' -p147517 -tp147518 -a(S'code_change/3' -p147519 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p147520 -tp147521 -a(S'delete_slave/1' -p147522 -S'delete_slave(${1:Slave}) $2' -p147523 -tp147524 -a(S'delete_subnet/2' -p147525 -S'delete_subnet(${1:Mask}, ${2:Addr}) $3' -p147526 -tp147527 -a(S'handle_call/3' -p147528 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:S0}) $4' -p147529 -tp147530 -a(S'handle_cast/2' -p147531 -S'handle_cast(${1:Param1}, ${2:Slaves}) $3' -p147532 -tp147533 -a(S'handle_info/2' -p147534 -S'handle_info(${1:Param1}, ${2:S0}) $3' -p147535 -tp147536 -a(S'init/1' -p147537 -S'init(${1:Slaves}) $2' -p147538 -tp147539 -a(S'start/1' -p147540 -S'start(${1:Slaves}) $2' -p147541 -tp147542 -a(S'start_link/1' -p147543 -S'start_link(${1:Slaves}) $2' -p147544 -tp147545 -a(S'terminate/2' -p147546 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p147547 -tp147548 -a(S'which_slaves/0' -p147549 -S'which_slaves() $1' -p147550 -tp147551 -a(S'would_be_booted/1' -p147552 -S'would_be_booted(${1:Addr}) $2' -p147553 -tp147554 -asS'snmpa_mpd' -p147555 -(lp147556 -(S'counters/0' -p147557 -S'counters() $1' -p147558 -tp147559 -a(S'discarded_pdu/1' -p147560 -S'discarded_pdu(${1:Variable}) $2' -p147561 -tp147562 -a(S'generate_discovery_msg/4' -p147563 -S'generate_discovery_msg(${1:NoteStore}, ${2:Pdu}, ${3:MsgData}, ${4:To}) $5' -p147564 -tp147565 -a(S'generate_msg/5' -p147566 -S'generate_msg(${1:Vsn}, ${2:NoteStore}, ${3:Pdu}, ${4:ACMData}, ${5:To}) $6' -p147567 -tp147568 -a(S'generate_msg/6' -p147569 -S'generate_msg(${1:Vsn}, ${2:Param2}, ${3:Pdu}, ${4:Param4}, ${5:LocalEngineID}, ${6:To}) $7' -p147570 -tp147571 -a(S'generate_req_id/0' -p147572 -S'generate_req_id() $1' -p147573 -tp147574 -a(S'generate_response_msg/5' -p147575 -S'generate_response_msg(${1:Vsn}, ${2:RePdu}, ${3:Type}, ${4:ACMData}, ${5:Log}) $6' -p147576 -tp147577 -a(S'generate_response_msg/6' -p147578 -S'generate_response_msg(${1:Vsn}, ${2:RePdu}, ${3:Type}, ${4:ACMData}, ${5:Log}, ${6:N}) $7' -p147579 -tp147580 -a(S'inc/1' -p147581 -S'inc(${1:Name}) $2' -p147582 -tp147583 -a(S'init/1' -p147584 -S'init(${1:Vsns}) $2' -p147585 -tp147586 -a(S'process_packet/6' -p147587 -S'process_packet(${1:Packet}, ${2:TDomain}, ${3:TAddress}, ${4:State}, ${5:NoteStore}, ${6:Log}) $7' -p147588 -tp147589 -a(S'process_packet/7' -p147590 -S'process_packet() $1' -p147591 -tp147592 -a(S'process_taddrs/1' -p147593 -S'process_taddrs(${1:Dests}) $2' -p147594 -tp147595 -a(S'reset/0' -p147596 -S'reset() $1' -p147597 -tp147598 -asS'CosEventChannelAdmin_ProxyPullConsumer_impl' -p147599 -(lp147600 -(S'code_change/3' -p147601 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p147602 -tp147603 -a(S'connect_pull_supplier/3' -p147604 -S'connect_pull_supplier(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p147605 -tp147606 -a(S'disconnect_pull_consumer/2' -p147607 -S'disconnect_pull_consumer(${1:Param1}, ${2:State}) $3' -p147608 -tp147609 -a(S'handle_info/2' -p147610 -S'handle_info(${1:Param1}, ${2:State}) $3' -p147611 -tp147612 -a(S'init/1' -p147613 -S'init(${1:Param1}) $2' -p147614 -tp147615 -a(S'terminate/2' -p147616 -S'terminate(${1:Param1}, ${2:State}) $3' -p147617 -tp147618 -asS'ic_options' -p147619 -(lp147620 -(S'add_opt/3' -p147621 -S'add_opt(${1:G}, ${2:KList}, ${3:Val}) $4' -p147622 -tp147623 -a(S'allowed_opt/2' -p147624 -S'allowed_opt(${1:Param1}, ${2:V}) $3' -p147625 -tp147626 -a(S'defaultBe/0' -p147627 -S'defaultBe() $1' -p147628 -tp147629 -a(S'float_to_version/1' -p147630 -S'float_to_version(${1:Param1}) $2' -p147631 -tp147632 -a(S'get_opt/2' -p147633 -S'get_opt(${1:G}, ${2:K}) $3' -p147634 -tp147635 -a(S'read_cfg/2' -p147636 -S'read_cfg(${1:G}, ${2:Opts}) $3' -p147637 -tp147638 -a(S'which_opts/1' -p147639 -S'which_opts(${1:G}) $2' -p147640 -tp147641 -asS'wxTreeEvent' -p147642 -(lp147643 -(S'allow/1' -p147644 -S'allow(${1:This}) $2' -p147645 -tp147646 -a(S'getClientData/1' -p147647 -S'getClientData(${1:This}) $2' -p147648 -tp147649 -a(S'getExtraLong/1' -p147650 -S'getExtraLong(${1:This}) $2' -p147651 -tp147652 -a(S'getId/1' -p147653 -S'getId(${1:This}) $2' -p147654 -tp147655 -a(S'getInt/1' -p147656 -S'getInt(${1:This}) $2' -p147657 -tp147658 -a(S'getItem/1' -p147659 -S'getItem(${1:This}) $2' -p147660 -tp147661 -a(S'getKeyCode/1' -p147662 -S'getKeyCode(${1:This}) $2' -p147663 -tp147664 -a(S'getKeyEvent/1' -p147665 -S'getKeyEvent(${1:This}) $2' -p147666 -tp147667 -a(S'getLabel/1' -p147668 -S'getLabel(${1:This}) $2' -p147669 -tp147670 -a(S'getOldItem/1' -p147671 -S'getOldItem(${1:This}) $2' -p147672 -tp147673 -a(S'getPoint/1' -p147674 -S'getPoint(${1:This}) $2' -p147675 -tp147676 -a(S'getSelection/1' -p147677 -S'getSelection(${1:This}) $2' -p147678 -tp147679 -a(S'getSkipped/1' -p147680 -S'getSkipped(${1:This}) $2' -p147681 -tp147682 -a(S'getString/1' -p147683 -S'getString(${1:This}) $2' -p147684 -tp147685 -a(S'getTimestamp/1' -p147686 -S'getTimestamp(${1:This}) $2' -p147687 -tp147688 -a(S'isAllowed/1' -p147689 -S'isAllowed(${1:This}) $2' -p147690 -tp147691 -a(S'isChecked/1' -p147692 -S'isChecked(${1:This}) $2' -p147693 -tp147694 -a(S'isCommandEvent/1' -p147695 -S'isCommandEvent(${1:This}) $2' -p147696 -tp147697 -a(S'isEditCancelled/1' -p147698 -S'isEditCancelled(${1:This}) $2' -p147699 -tp147700 -a(S'isSelection/1' -p147701 -S'isSelection(${1:This}) $2' -p147702 -tp147703 -a(S'parent_class/1' -p147704 -S'parent_class(${1:Param1}) $2' -p147705 -tp147706 -a(S'resumePropagation/2' -p147707 -S'resumePropagation(${1:This}, ${2:PropagationLevel}) $3' -p147708 -tp147709 -a(S'setInt/2' -p147710 -S'setInt(${1:This}, ${2:I}) $3' -p147711 -tp147712 -a(S'setString/2' -p147713 -S'setString(${1:This}, ${2:S}) $3' -p147714 -tp147715 -a(S'setToolTip/2' -p147716 -S'setToolTip(${1:This}, ${2:ToolTip}) $3' -p147717 -tp147718 -a(S'shouldPropagate/1' -p147719 -S'shouldPropagate(${1:This}) $2' -p147720 -tp147721 -a(S'skip/1' -p147722 -S'skip(${1:This}) $2' -p147723 -tp147724 -a(S'skip/2' -p147725 -S'skip(${1:This}, ${2:Options}) $3' -p147726 -tp147727 -a(S'stopPropagation/1' -p147728 -S'stopPropagation(${1:This}) $2' -p147729 -tp147730 -a(S'veto/1' -p147731 -S'veto(${1:This}) $2' -p147732 -tp147733 -asS'CosNotification_Property' -p147734 -(lp147735 -(S'id/0' -p147736 -S'id() $1' -p147737 -tp147738 -a(S'name/0' -p147739 -S'name() $1' -p147740 -tp147741 -a(S'tc/0' -p147742 -S'tc() $1' -p147743 -tp147744 -asS'diameter_codec' -p147745 -(lp147746 -(S'collect_avps/1' -p147747 -S'collect_avps(${1:Bin}) $2' -p147748 -tp147749 -a(S'decode/2' -p147750 -S'decode(${1:Mod}, ${2:Pkt}) $3' -p147751 -tp147752 -a(S'decode/3' -p147753 -S'decode(${1:Param1}, ${2:Param2}, ${3:Pkt}) $4' -p147754 -tp147755 -a(S'decode_header/1' -p147756 -S'decode_header(${1:Param1}) $2' -p147757 -tp147758 -a(S'encode/2' -p147759 -S'encode(${1:Mod}, ${2:Pkt}) $3' -p147760 -tp147761 -a(S'hop_by_hop_id/2' -p147762 -S'hop_by_hop_id(${1:Id}, ${2:Param2}) $3' -p147763 -tp147764 -a(S'msg_id/1' -p147765 -S'msg_id(${1:Param1}) $2' -p147766 -tp147767 -a(S'msg_name/1' -p147768 -S'msg_name(${1:Hdr}) $2' -p147769 -tp147770 -a(S'pack_avp/1' -p147771 -S'pack_avp(${1:A}) $2' -p147772 -tp147773 -a(S'pack_avp/2' -p147774 -S'pack_avp() $1' -p147775 -tp147776 -a(S'sequence_numbers/1' -p147777 -S'sequence_numbers(${1:Param1}) $2' -p147778 -tp147779 -asS'erl_ddll' -p147780 -(lp147781 -(S'format_error/1' -p147782 -S'format_error(${1:ErrorDesc}) $2' -p147783 -tp147784 -a(S'info/0' -p147785 -S'info() $1' -p147786 -tp147787 -a(S'info/1' -p147788 -S'info(${1:Name}) $2' -p147789 -tp147790 -a(S'load/2' -p147791 -S'load(${1:Path}, ${2:Name}) $3' -p147792 -tp147793 -a(S'load_driver/2' -p147794 -S'load_driver(${1:Path}, ${2:Name}) $3' -p147795 -tp147796 -a(S'reload/2' -p147797 -S'reload(${1:Path}, ${2:Name}) $3' -p147798 -tp147799 -a(S'reload_driver/2' -p147800 -S'reload_driver(${1:Path}, ${2:Name}) $3' -p147801 -tp147802 -a(S'start/0' -p147803 -S'start() $1' -p147804 -tp147805 -a(S'stop/0' -p147806 -S'stop() $1' -p147807 -tp147808 -a(S'unload/1' -p147809 -S'unload(${1:Name}) $2' -p147810 -tp147811 -a(S'unload_driver/1' -p147812 -S'unload_driver(${1:Name}) $2' -p147813 -tp147814 -asS'erl_prim_loader' -p147815 -(lp147816 -(S'get_cwd/0' -p147817 -S'get_cwd() $1' -p147818 -tp147819 -a(S'get_cwd/1' -p147820 -S'get_cwd(${1:Drive}) $2' -p147821 -tp147822 -a(S'get_file/1' -p147823 -S'get_file(${1:Filename}) $2' -p147824 -tp147825 -a(S'get_files/2' -p147826 -S'get_files(${1:ModFiles}, ${2:Fun}) $3' -p147827 -tp147828 -a(S'get_path/0' -p147829 -S'get_path() $1' -p147830 -tp147831 -a(S'list_dir/1' -p147832 -S'list_dir(${1:Dir}) $2' -p147833 -tp147834 -a(S'prim_get_cwd/2' -p147835 -S'prim_get_cwd(${1:PS}, ${2:Param2}) $3' -p147836 -tp147837 -a(S'prim_get_file/2' -p147838 -S'prim_get_file(${1:PS}, ${2:File}) $3' -p147839 -tp147840 -a(S'prim_init/0' -p147841 -S'prim_init() $1' -p147842 -tp147843 -a(S'prim_list_dir/2' -p147844 -S'prim_list_dir(${1:PS}, ${2:Dir}) $3' -p147845 -tp147846 -a(S'prim_read_file_info/2' -p147847 -S'prim_read_file_info(${1:PS}, ${2:File}) $3' -p147848 -tp147849 -a(S'read_file_info/1' -p147850 -S'read_file_info(${1:Filename}) $2' -p147851 -tp147852 -a(S'release_archives/0' -p147853 -S'release_archives() $1' -p147854 -tp147855 -a(S'set_path/1' -p147856 -S'set_path(${1:Path}) $2' -p147857 -tp147858 -a(S'set_primary_archive/3' -p147859 -S'set_primary_archive(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p147860 -tp147861 -a(S'start/3' -p147862 -S'start(${1:Id}, ${2:Loader}, ${3:Hosts}) $4' -p147863 -tp147864 -asS'ETraP_Server_impl' -p147865 -(lp147866 -(S'code_change/3' -p147867 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p147868 -tp147869 -a(S'commit/2' -p147870 -S'commit(${1:Param1}, ${2:Param2}) $3' -p147871 -tp147872 -a(S'commit_one_phase/2' -p147873 -S'commit_one_phase(${1:Param1}, ${2:Param2}) $3' -p147874 -tp147875 -a(S'create_subtransaction/2' -p147876 -S'create_subtransaction(${1:Self}, ${2:Param2}) $3' -p147877 -tp147878 -a(S'forget/2' -p147879 -S'forget(${1:Param1}, ${2:LogName}) $3' -p147880 -tp147881 -a(S'get_coordinator/2' -p147882 -S'get_coordinator(${1:Self}, ${2:State}) $3' -p147883 -tp147884 -a(S'get_parent_status/2' -p147885 -S'get_parent_status(${1:Param1}, ${2:Param2}) $3' -p147886 -tp147887 -a(S'get_status/2' -p147888 -S'get_status(${1:Param1}, ${2:Param2}) $3' -p147889 -tp147890 -a(S'get_terminator/2' -p147891 -S'get_terminator(${1:Self}, ${2:Param2}) $3' -p147892 -tp147893 -a(S'get_top_level_status/2' -p147894 -S'get_top_level_status(${1:Param1}, ${2:Param2}) $3' -p147895 -tp147896 -a(S'get_transaction_name/2' -p147897 -S'get_transaction_name(${1:Param1}, ${2:Param2}) $3' -p147898 -tp147899 -a(S'get_txcontext/2' -p147900 -S'get_txcontext(${1:Param1}, ${2:Param2}) $3' -p147901 -tp147902 -a(S'handle_call/3' -p147903 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p147904 -tp147905 -a(S'handle_cast/2' -p147906 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p147907 -tp147908 -a(S'handle_info/2' -p147909 -S'handle_info(${1:Info}, ${2:Param2}) $3' -p147910 -tp147911 -a(S'hash_top_level_tran/2' -p147912 -S'hash_top_level_tran(${1:Self}, ${2:Param2}) $3' -p147913 -tp147914 -a(S'hash_transaction/2' -p147915 -S'hash_transaction(${1:Self}, ${2:Param2}) $3' -p147916 -tp147917 -a(S'init/1' -p147918 -S'init(${1:Env}) $2' -p147919 -tp147920 -a(S'is_ancestor_transaction/3' -p147921 -S'is_ancestor_transaction(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p147922 -tp147923 -a(S'is_descendant_transaction/3' -p147924 -S'is_descendant_transaction(${1:Self}, ${2:Param2}, ${3:Coordinator}) $4' -p147925 -tp147926 -a(S'is_related_transaction/3' -p147927 -S'is_related_transaction(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p147928 -tp147929 -a(S'is_same_transaction/3' -p147930 -S'is_same_transaction(${1:Self}, ${2:Param2}, ${3:Coordinator}) $4' -p147931 -tp147932 -a(S'is_top_level_transaction/2' -p147933 -S'is_top_level_transaction(${1:Param1}, ${2:Param2}) $3' -p147934 -tp147935 -a(S'prepare/2' -p147936 -S'prepare(${1:RegResources}, ${2:Alarm}) $3' -p147937 -tp147938 -a(S'register_resource/3' -p147939 -S'register_resource(${1:Self}, ${2:Param2}, ${3:Resource}) $4' -p147940 -tp147941 -a(S'register_subtran_aware/3' -p147942 -S'register_subtran_aware(${1:Self}, ${2:Param2}, ${3:SubTrAwareResource}) $4' -p147943 -tp147944 -a(S'register_synchronization/3' -p147945 -S'register_synchronization(${1:Param1}, ${2:Param2}, ${3:Param3}) $4' -p147946 -tp147947 -a(S'replay_completion/3' -p147948 -S'replay_completion(${1:Param1}, ${2:Param2}, ${3:Resource}) $4' -p147949 -tp147950 -a(S'rollback/2' -p147951 -S'rollback(${1:Self}, ${2:Param2}) $3' -p147952 -tp147953 -a(S'rollback_only/2' -p147954 -S'rollback_only(${1:Self}, ${2:Param2}) $3' -p147955 -tp147956 -a(S'terminate/2' -p147957 -S'terminate(${1:Reason}, ${2:Param2}) $3' -p147958 -tp147959 -asS'orber_ifr_enumdef' -p147960 -(lp147961 -(S"'_get_absolute_name'/1" -p147962 -S"'_get_absolute_name'() $1" -p147963 -tp147964 -a(S"'_get_containing_repository'/1" -p147965 -S"'_get_containing_repository'() $1" -p147966 -tp147967 -a(S"'_get_def_kind'/1" -p147968 -S"'_get_def_kind'() $1" -p147969 -tp147970 -a(S"'_get_defined_in'/1" -p147971 -S"'_get_defined_in'() $1" -p147972 -tp147973 -a(S"'_get_id'/1" -p147974 -S"'_get_id'() $1" -p147975 -tp147976 -a(S"'_get_members'/1" -p147977 -S"'_get_members'() $1" -p147978 -tp147979 -a(S"'_get_name'/1" -p147980 -S"'_get_name'() $1" -p147981 -tp147982 -a(S"'_get_type'/1" -p147983 -S"'_get_type'() $1" -p147984 -tp147985 -a(S"'_get_version'/1" -p147986 -S"'_get_version'() $1" -p147987 -tp147988 -a(S"'_set_id'/2" -p147989 -S"'_set_id'() $1" -p147990 -tp147991 -a(S"'_set_members'/2" -p147992 -S"'_set_members'() $1" -p147993 -tp147994 -a(S"'_set_name'/2" -p147995 -S"'_set_name'() $1" -p147996 -tp147997 -a(S"'_set_version'/2" -p147998 -S"'_set_version'() $1" -p147999 -tp148000 -a(S'cleanup_for_destroy/1' -p148001 -S'cleanup_for_destroy() $1' -p148002 -tp148003 -a(S'describe/1' -p148004 -S'describe() $1' -p148005 -tp148006 -a(S'destroy/1' -p148007 -S'destroy() $1' -p148008 -tp148009 -a(S'move/4' -p148010 -S'move() $1' -p148011 -tp148012 -asS'CosNotifyChannelAdmin_ConsumerAdmin' -p148013 -(lp148014 -(S"'_get_MyChannel'/1" -p148015 -S"'_get_MyChannel'(${1:OE_THIS}) $2" -p148016 -tp148017 -a(S"'_get_MyChannel'/2" -p148018 -S"'_get_MyChannel'(${1:OE_THIS}, ${2:OE_Options}) $3" -p148019 -tp148020 -a(S"'_get_MyID'/1" -p148021 -S"'_get_MyID'(${1:OE_THIS}) $2" -p148022 -tp148023 -a(S"'_get_MyID'/2" -p148024 -S"'_get_MyID'(${1:OE_THIS}, ${2:OE_Options}) $3" -p148025 -tp148026 -a(S"'_get_MyOperator'/1" -p148027 -S"'_get_MyOperator'(${1:OE_THIS}) $2" -p148028 -tp148029 -a(S"'_get_MyOperator'/2" -p148030 -S"'_get_MyOperator'(${1:OE_THIS}, ${2:OE_Options}) $3" -p148031 -tp148032 -a(S"'_get_lifetime_filter'/1" -p148033 -S"'_get_lifetime_filter'(${1:OE_THIS}) $2" -p148034 -tp148035 -a(S"'_get_lifetime_filter'/2" -p148036 -S"'_get_lifetime_filter'(${1:OE_THIS}, ${2:OE_Options}) $3" -p148037 -tp148038 -a(S"'_get_priority_filter'/1" -p148039 -S"'_get_priority_filter'(${1:OE_THIS}) $2" -p148040 -tp148041 -a(S"'_get_priority_filter'/2" -p148042 -S"'_get_priority_filter'(${1:OE_THIS}, ${2:OE_Options}) $3" -p148043 -tp148044 -a(S"'_get_pull_suppliers'/1" -p148045 -S"'_get_pull_suppliers'(${1:OE_THIS}) $2" -p148046 -tp148047 -a(S"'_get_pull_suppliers'/2" -p148048 -S"'_get_pull_suppliers'(${1:OE_THIS}, ${2:OE_Options}) $3" -p148049 -tp148050 -a(S"'_get_push_suppliers'/1" -p148051 -S"'_get_push_suppliers'(${1:OE_THIS}) $2" -p148052 -tp148053 -a(S"'_get_push_suppliers'/2" -p148054 -S"'_get_push_suppliers'(${1:OE_THIS}, ${2:OE_Options}) $3" -p148055 -tp148056 -a(S"'_set_lifetime_filter'/2" -p148057 -S"'_set_lifetime_filter'(${1:OE_THIS}, ${2:OE_Value}) $3" -p148058 -tp148059 -a(S"'_set_lifetime_filter'/3" -p148060 -S"'_set_lifetime_filter'(${1:OE_THIS}, ${2:OE_Options}, ${3:OE_Value}) $4" -p148061 -tp148062 -a(S"'_set_priority_filter'/2" -p148063 -S"'_set_priority_filter'(${1:OE_THIS}, ${2:OE_Value}) $3" -p148064 -tp148065 -a(S"'_set_priority_filter'/3" -p148066 -S"'_set_priority_filter'(${1:OE_THIS}, ${2:OE_Options}, ${3:OE_Value}) $4" -p148067 -tp148068 -a(S'add_filter/2' -p148069 -S'add_filter(${1:OE_THIS}, ${2:New_filter}) $3' -p148070 -tp148071 -a(S'add_filter/3' -p148072 -S'add_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:New_filter}) $4' -p148073 -tp148074 -a(S'callAny/3' -p148075 -S'callAny(${1:OE_THIS}, ${2:Event}, ${3:Stat}) $4' -p148076 -tp148077 -a(S'callAny/4' -p148078 -S'callAny(${1:OE_THIS}, ${2:OE_Options}, ${3:Event}, ${4:Stat}) $5' -p148079 -tp148080 -a(S'callSeq/3' -p148081 -S'callSeq(${1:OE_THIS}, ${2:Events}, ${3:Stat}) $4' -p148082 -tp148083 -a(S'callSeq/4' -p148084 -S'callSeq(${1:OE_THIS}, ${2:OE_Options}, ${3:Events}, ${4:Stat}) $5' -p148085 -tp148086 -a(S'code_change/3' -p148087 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p148088 -tp148089 -a(S'destroy/1' -p148090 -S'destroy(${1:OE_THIS}) $2' -p148091 -tp148092 -a(S'destroy/2' -p148093 -S'destroy(${1:OE_THIS}, ${2:OE_Options}) $3' -p148094 -tp148095 -a(S'get_all_filters/1' -p148096 -S'get_all_filters(${1:OE_THIS}) $2' -p148097 -tp148098 -a(S'get_all_filters/2' -p148099 -S'get_all_filters(${1:OE_THIS}, ${2:OE_Options}) $3' -p148100 -tp148101 -a(S'get_filter/2' -p148102 -S'get_filter(${1:OE_THIS}, ${2:Filter}) $3' -p148103 -tp148104 -a(S'get_filter/3' -p148105 -S'get_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:Filter}) $4' -p148106 -tp148107 -a(S'get_proxy_supplier/2' -p148108 -S'get_proxy_supplier(${1:OE_THIS}, ${2:Proxy_id}) $3' -p148109 -tp148110 -a(S'get_proxy_supplier/3' -p148111 -S'get_proxy_supplier(${1:OE_THIS}, ${2:OE_Options}, ${3:Proxy_id}) $4' -p148112 -tp148113 -a(S'get_qos/1' -p148114 -S'get_qos(${1:OE_THIS}) $2' -p148115 -tp148116 -a(S'get_qos/2' -p148117 -S'get_qos(${1:OE_THIS}, ${2:OE_Options}) $3' -p148118 -tp148119 -a(S'handle_call/3' -p148120 -S'handle_call(${1:Param1}, ${2:OE_From}, ${3:OE_State}) $4' -p148121 -tp148122 -a(S'handle_cast/2' -p148123 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p148124 -tp148125 -a(S'handle_info/2' -p148126 -S'handle_info(${1:Info}, ${2:State}) $3' -p148127 -tp148128 -a(S'init/1' -p148129 -S'init(${1:Env}) $2' -p148130 -tp148131 -a(S'obtain_notification_pull_supplier/2' -p148132 -S'obtain_notification_pull_supplier(${1:OE_THIS}, ${2:Ctype}) $3' -p148133 -tp148134 -a(S'obtain_notification_pull_supplier/3' -p148135 -S'obtain_notification_pull_supplier(${1:OE_THIS}, ${2:OE_Options}, ${3:Ctype}) $4' -p148136 -tp148137 -a(S'obtain_notification_push_supplier/2' -p148138 -S'obtain_notification_push_supplier(${1:OE_THIS}, ${2:Ctype}) $3' -p148139 -tp148140 -a(S'obtain_notification_push_supplier/3' -p148141 -S'obtain_notification_push_supplier(${1:OE_THIS}, ${2:OE_Options}, ${3:Ctype}) $4' -p148142 -tp148143 -a(S'obtain_pull_supplier/1' -p148144 -S'obtain_pull_supplier(${1:OE_THIS}) $2' -p148145 -tp148146 -a(S'obtain_pull_supplier/2' -p148147 -S'obtain_pull_supplier(${1:OE_THIS}, ${2:OE_Options}) $3' -p148148 -tp148149 -a(S'obtain_push_supplier/1' -p148150 -S'obtain_push_supplier(${1:OE_THIS}) $2' -p148151 -tp148152 -a(S'obtain_push_supplier/2' -p148153 -S'obtain_push_supplier(${1:OE_THIS}, ${2:OE_Options}) $3' -p148154 -tp148155 -a(S'oe_create/0' -p148156 -S'oe_create() $1' -p148157 -tp148158 -a(S'oe_create/1' -p148159 -S'oe_create(${1:Env}) $2' -p148160 -tp148161 -a(S'oe_create/2' -p148162 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p148163 -tp148164 -a(S'oe_create_link/0' -p148165 -S'oe_create_link() $1' -p148166 -tp148167 -a(S'oe_create_link/1' -p148168 -S'oe_create_link(${1:Env}) $2' -p148169 -tp148170 -a(S'oe_create_link/2' -p148171 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p148172 -tp148173 -a(S'oe_get_interface/0' -p148174 -S'oe_get_interface() $1' -p148175 -tp148176 -a(S'oe_is_a/1' -p148177 -S'oe_is_a(${1:Param1}) $2' -p148178 -tp148179 -a(S'oe_tc/1' -p148180 -S'oe_tc(${1:Param1}) $2' -p148181 -tp148182 -a(S'remove_all_filters/1' -p148183 -S'remove_all_filters(${1:OE_THIS}) $2' -p148184 -tp148185 -a(S'remove_all_filters/2' -p148186 -S'remove_all_filters(${1:OE_THIS}, ${2:OE_Options}) $3' -p148187 -tp148188 -a(S'remove_filter/2' -p148189 -S'remove_filter(${1:OE_THIS}, ${2:Filter}) $3' -p148190 -tp148191 -a(S'remove_filter/3' -p148192 -S'remove_filter(${1:OE_THIS}, ${2:OE_Options}, ${3:Filter}) $4' -p148193 -tp148194 -a(S'set_qos/2' -p148195 -S'set_qos(${1:OE_THIS}, ${2:Qos}) $3' -p148196 -tp148197 -a(S'set_qos/3' -p148198 -S'set_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Qos}) $4' -p148199 -tp148200 -a(S'subscription_change/3' -p148201 -S'subscription_change(${1:OE_THIS}, ${2:Added}, ${3:Removed}) $4' -p148202 -tp148203 -a(S'subscription_change/4' -p148204 -S'subscription_change(${1:OE_THIS}, ${2:OE_Options}, ${3:Added}, ${4:Removed}) $5' -p148205 -tp148206 -a(S'terminate/2' -p148207 -S'terminate(${1:Reason}, ${2:State}) $3' -p148208 -tp148209 -a(S'typeID/0' -p148210 -S'typeID() $1' -p148211 -tp148212 -a(S'validate_qos/2' -p148213 -S'validate_qos(${1:OE_THIS}, ${2:Required_qos}) $3' -p148214 -tp148215 -a(S'validate_qos/3' -p148216 -S'validate_qos(${1:OE_THIS}, ${2:OE_Options}, ${3:Required_qos}) $4' -p148217 -tp148218 -asS'snmpm_network_interface_filter' -p148219 -(lp148220 -(S'behaviour_info/1' -p148221 -S'behaviour_info(${1:Param1}) $2' -p148222 -tp148223 -a(S'verify/1' -p148224 -S'verify(${1:Module}) $2' -p148225 -tp148226 -asS'erl_parse' -p148227 -(lp148228 -(S'abstract/1' -p148229 -S'abstract(${1:Data}) $2' -p148230 -tp148231 -a(S'abstract/2' -p148232 -S'abstract(${1:T}, ${2:Line}) $3' -p148233 -tp148234 -a(S'format_error/1' -p148235 -S'format_error(${1:Message}) $2' -p148236 -tp148237 -a(S'func_prec/0' -p148238 -S'func_prec() $1' -p148239 -tp148240 -a(S'get_attribute/2' -p148241 -S'get_attribute(${1:L}, ${2:Name}) $3' -p148242 -tp148243 -a(S'get_attributes/1' -p148244 -S'get_attributes(${1:L}) $2' -p148245 -tp148246 -a(S'inop_prec/1' -p148247 -S'inop_prec(${1:Param1}) $2' -p148248 -tp148249 -a(S'max_prec/0' -p148250 -S'max_prec() $1' -p148251 -tp148252 -a(S'normalise/1' -p148253 -S'normalise(${1:AbsTerm}) $2' -p148254 -tp148255 -a(S'package_segments/1' -p148256 -S'package_segments(${1:Name}) $2' -p148257 -tp148258 -a(S'parse/1' -p148259 -S'parse(${1:Tokens}) $2' -p148260 -tp148261 -a(S'parse_and_scan/1' -p148262 -S'parse_and_scan(${1:Param1}) $2' -p148263 -tp148264 -a(S'parse_exprs/1' -p148265 -S'parse_exprs(${1:Tokens}) $2' -p148266 -tp148267 -a(S'parse_form/1' -p148268 -S'parse_form(${1:Tokens}) $2' -p148269 -tp148270 -a(S'parse_term/1' -p148271 -S'parse_term(${1:Tokens}) $2' -p148272 -tp148273 -a(S'preop_prec/1' -p148274 -S'preop_prec(${1:Param1}) $2' -p148275 -tp148276 -a(S'set_line/2' -p148277 -S'set_line(${1:L}, ${2:F}) $3' -p148278 -tp148279 -a(S'tokens/1' -p148280 -S'tokens(${1:AbsTerm}) $2' -p148281 -tp148282 -a(S'tokens/2' -p148283 -S'tokens(${1:AbsTerm}, ${2:MoreTokens}) $3' -p148284 -tp148285 -asS'diameter_capx' -p148286 -(lp148287 -(S'build_CER/1' -p148288 -S'build_CER(${1:Caps}) $2' -p148289 -tp148290 -a(S'make_caps/2' -p148291 -S'make_caps(${1:Caps}, ${2:Opts}) $3' -p148292 -tp148293 -a(S'recv_CEA/2' -p148294 -S'recv_CEA(${1:CEA}, ${2:Svc}) $3' -p148295 -tp148296 -a(S'recv_CER/2' -p148297 -S'recv_CER(${1:CER}, ${2:Svc}) $3' -p148298 -tp148299 -asS'asn1rt_nif' -p148300 -(lp148301 -(S'decode_ber_tlv/1' -p148302 -S'decode_ber_tlv(${1:Param1}) $2' -p148303 -tp148304 -a(S'encode_ber_tlv/1' -p148305 -S'encode_ber_tlv(${1:Param1}) $2' -p148306 -tp148307 -a(S'encode_per_complete/1' -p148308 -S'encode_per_complete(${1:Param1}) $2' -p148309 -tp148310 -asS'megaco_tcp_sup' -p148311 -(lp148312 -(S'init/1' -p148313 -S'init(${1:Param1}) $2' -p148314 -tp148315 -a(S'start_accept_child/2' -p148316 -S'start_accept_child(${1:SupPid}, ${2:Data}) $3' -p148317 -tp148318 -a(S'start_link/0' -p148319 -S'start_link() $1' -p148320 -tp148321 -a(S'terminate/2' -p148322 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p148323 -tp148324 -a(S'which_accept_sup/1' -p148325 -S'which_accept_sup(${1:Pid}) $2' -p148326 -tp148327 -a(S'which_connection_sup/1' -p148328 -S'which_connection_sup(${1:Pid}) $2' -p148329 -tp148330 -asS'ct_master_event' -p148331 -(lp148332 -(S'add_handler/0' -p148333 -S'add_handler() $1' -p148334 -tp148335 -a(S'add_handler/1' -p148336 -S'add_handler(${1:Args}) $2' -p148337 -tp148338 -a(S'code_change/3' -p148339 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p148340 -tp148341 -a(S'handle_call/2' -p148342 -S'handle_call(${1:Param1}, ${2:State}) $3' -p148343 -tp148344 -a(S'handle_event/2' -p148345 -S'handle_event(${1:Param1}, ${2:State}) $3' -p148346 -tp148347 -a(S'handle_info/2' -p148348 -S'handle_info(${1:Param1}, ${2:State}) $3' -p148349 -tp148350 -a(S'init/1' -p148351 -S'init(${1:Param1}) $2' -p148352 -tp148353 -a(S'notify/1' -p148354 -S'notify(${1:Event}) $2' -p148355 -tp148356 -a(S'start_link/0' -p148357 -S'start_link() $1' -p148358 -tp148359 -a(S'stop/0' -p148360 -S'stop() $1' -p148361 -tp148362 -a(S'sync_notify/1' -p148363 -S'sync_notify(${1:Event}) $2' -p148364 -tp148365 -a(S'terminate/2' -p148366 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p148367 -tp148368 -asS'snmpa_mib_data' -p148369 -(lp148370 -(S'backup/2' -p148371 -S'backup(${1:Param1}, ${2:BackupDir}) $3' -p148372 -tp148373 -a(S'close/1' -p148374 -S'close(${1:Param1}) $2' -p148375 -tp148376 -a(S'code_change/2' -p148377 -S'code_change(${1:Param1}, ${2:State}) $3' -p148378 -tp148379 -a(S'dump/1' -p148380 -S'dump(${1:Param1}) $2' -p148381 -tp148382 -a(S'dump/2' -p148383 -S'dump(${1:Param1}, ${2:File}) $3' -p148384 -tp148385 -a(S'info/1' -p148386 -S'info(${1:MibData}) $2' -p148387 -tp148388 -a(S'info/2' -p148389 -S'info(${1:Param1}, ${2:Param2}) $3' -p148390 -tp148391 -a(S'load_mib/4' -p148392 -S'load_mib(${1:MibData}, ${2:FileName}, ${3:Param3}, ${4:Param4}) $5' -p148393 -tp148394 -a(S'lookup/2' -p148395 -S'lookup(${1:D}, ${2:Oid}) $3' -p148396 -tp148397 -a(S'new/0' -p148398 -S'new() $1' -p148399 -tp148400 -a(S'new/1' -p148401 -S'new(${1:Storage}) $2' -p148402 -tp148403 -a(S'next/3' -p148404 -S'next(${1:D}, ${2:Oid}, ${3:MibView}) $4' -p148405 -tp148406 -a(S'register_subagent/3' -p148407 -S'register_subagent(${1:MibData}, ${2:Oid}, ${3:Pid}) $4' -p148408 -tp148409 -a(S'sync/1' -p148410 -S'sync() $1' -p148411 -tp148412 -a(S'unload_mib/4' -p148413 -S'unload_mib(${1:MibData}, ${2:FileName}, ${3:Param3}, ${4:Param4}) $5' -p148414 -tp148415 -a(S'unregister_subagent/2' -p148416 -S'unregister_subagent(${1:MibData}, ${2:Pid}) $3' -p148417 -tp148418 -a(S'whereis_mib/2' -p148419 -S'whereis_mib(${1:Param1}, ${2:Name}) $3' -p148420 -tp148421 -a(S'which_mib/2' -p148422 -S'which_mib(${1:D}, ${2:Oid}) $3' -p148423 -tp148424 -a(S'which_mibs/1' -p148425 -S'which_mibs(${1:Param1}) $2' -p148426 -tp148427 -asS'megaco_ber_media_gateway_control_prev3a' -p148428 -(lp148429 -(S"'dec_ActionReply'/2" -p148430 -S"'dec_ActionReply'(${1:Bytes}, ${2:OptOrMand}) $3" -p148431 -tp148432 -a(S"'dec_ActionReply'/3" -p148433 -S"'dec_ActionReply'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148434 -tp148435 -a(S"'dec_ActionRequest'/2" -p148436 -S"'dec_ActionRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p148437 -tp148438 -a(S"'dec_ActionRequest'/3" -p148439 -S"'dec_ActionRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148440 -tp148441 -a(S"'dec_AmmDescriptor'/2" -p148442 -S"'dec_AmmDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p148443 -tp148444 -a(S"'dec_AmmDescriptor'/3" -p148445 -S"'dec_AmmDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148446 -tp148447 -a(S"'dec_AmmRequest'/2" -p148448 -S"'dec_AmmRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p148449 -tp148450 -a(S"'dec_AmmRequest'/3" -p148451 -S"'dec_AmmRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148452 -tp148453 -a(S"'dec_AmmsReply'/2" -p148454 -S"'dec_AmmsReply'(${1:Bytes}, ${2:OptOrMand}) $3" -p148455 -tp148456 -a(S"'dec_AmmsReply'/3" -p148457 -S"'dec_AmmsReply'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148458 -tp148459 -a(S"'dec_AuditDescriptor'/2" -p148460 -S"'dec_AuditDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p148461 -tp148462 -a(S"'dec_AuditDescriptor'/3" -p148463 -S"'dec_AuditDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148464 -tp148465 -a(S"'dec_AuditReply'/2" -p148466 -S"'dec_AuditReply'(${1:Bytes}, ${2:OptOrMand}) $3" -p148467 -tp148468 -a(S"'dec_AuditReply'/3" -p148469 -S"'dec_AuditReply'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148470 -tp148471 -a(S"'dec_AuditRequest'/2" -p148472 -S"'dec_AuditRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p148473 -tp148474 -a(S"'dec_AuditRequest'/3" -p148475 -S"'dec_AuditRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148476 -tp148477 -a(S"'dec_AuditResult'/2" -p148478 -S"'dec_AuditResult'(${1:Bytes}, ${2:OptOrMand}) $3" -p148479 -tp148480 -a(S"'dec_AuditResult'/3" -p148481 -S"'dec_AuditResult'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148482 -tp148483 -a(S"'dec_AuditReturnParameter'/2" -p148484 -S"'dec_AuditReturnParameter'(${1:Bytes}, ${2:OptOrMand}) $3" -p148485 -tp148486 -a(S"'dec_AuditReturnParameter'/3" -p148487 -S"'dec_AuditReturnParameter'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148488 -tp148489 -a(S"'dec_AuthData'/2" -p148490 -S"'dec_AuthData'(${1:Bytes}, ${2:OptOrMand}) $3" -p148491 -tp148492 -a(S"'dec_AuthData'/3" -p148493 -S"'dec_AuthData'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148494 -tp148495 -a(S"'dec_AuthenticationHeader'/2" -p148496 -S"'dec_AuthenticationHeader'(${1:Bytes}, ${2:OptOrMand}) $3" -p148497 -tp148498 -a(S"'dec_AuthenticationHeader'/3" -p148499 -S"'dec_AuthenticationHeader'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148500 -tp148501 -a(S"'dec_Command'/2" -p148502 -S"'dec_Command'(${1:Bytes}, ${2:OptOrMand}) $3" -p148503 -tp148504 -a(S"'dec_Command'/3" -p148505 -S"'dec_Command'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148506 -tp148507 -a(S"'dec_CommandReply'/2" -p148508 -S"'dec_CommandReply'(${1:Bytes}, ${2:OptOrMand}) $3" -p148509 -tp148510 -a(S"'dec_CommandReply'/3" -p148511 -S"'dec_CommandReply'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148512 -tp148513 -a(S"'dec_CommandRequest'/2" -p148514 -S"'dec_CommandRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p148515 -tp148516 -a(S"'dec_CommandRequest'/3" -p148517 -S"'dec_CommandRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148518 -tp148519 -a(S"'dec_ContextAttrAuditRequest'/2" -p148520 -S"'dec_ContextAttrAuditRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p148521 -tp148522 -a(S"'dec_ContextAttrAuditRequest'/3" -p148523 -S"'dec_ContextAttrAuditRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148524 -tp148525 -a(S"'dec_ContextID'/2" -p148526 -S"'dec_ContextID'(${1:Bytes}, ${2:OptOrMand}) $3" -p148527 -tp148528 -a(S"'dec_ContextID'/3" -p148529 -S"'dec_ContextID'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148530 -tp148531 -a(S"'dec_ContextRequest'/2" -p148532 -S"'dec_ContextRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p148533 -tp148534 -a(S"'dec_ContextRequest'/3" -p148535 -S"'dec_ContextRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148536 -tp148537 -a(S"'dec_DigitMapDescriptor'/2" -p148538 -S"'dec_DigitMapDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p148539 -tp148540 -a(S"'dec_DigitMapDescriptor'/3" -p148541 -S"'dec_DigitMapDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148542 -tp148543 -a(S"'dec_DigitMapName'/2" -p148544 -S"'dec_DigitMapName'(${1:Bytes}, ${2:OptOrMand}) $3" -p148545 -tp148546 -a(S"'dec_DigitMapName'/3" -p148547 -S"'dec_DigitMapName'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148548 -tp148549 -a(S"'dec_DigitMapValue'/2" -p148550 -S"'dec_DigitMapValue'(${1:Bytes}, ${2:OptOrMand}) $3" -p148551 -tp148552 -a(S"'dec_DigitMapValue'/3" -p148553 -S"'dec_DigitMapValue'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148554 -tp148555 -a(S"'dec_DomainName'/2" -p148556 -S"'dec_DomainName'(${1:Bytes}, ${2:OptOrMand}) $3" -p148557 -tp148558 -a(S"'dec_DomainName'/3" -p148559 -S"'dec_DomainName'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148560 -tp148561 -a(S"'dec_ErrorCode'/2" -p148562 -S"'dec_ErrorCode'(${1:Bytes}, ${2:OptOrMand}) $3" -p148563 -tp148564 -a(S"'dec_ErrorCode'/3" -p148565 -S"'dec_ErrorCode'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148566 -tp148567 -a(S"'dec_ErrorDescriptor'/2" -p148568 -S"'dec_ErrorDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p148569 -tp148570 -a(S"'dec_ErrorDescriptor'/3" -p148571 -S"'dec_ErrorDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148572 -tp148573 -a(S"'dec_ErrorText'/2" -p148574 -S"'dec_ErrorText'(${1:Bytes}, ${2:OptOrMand}) $3" -p148575 -tp148576 -a(S"'dec_ErrorText'/3" -p148577 -S"'dec_ErrorText'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148578 -tp148579 -a(S"'dec_EventBufferControl'/2" -p148580 -S"'dec_EventBufferControl'(${1:Bytes}, ${2:OptOrMand}) $3" -p148581 -tp148582 -a(S"'dec_EventBufferControl'/3" -p148583 -S"'dec_EventBufferControl'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148584 -tp148585 -a(S"'dec_EventBufferDescriptor'/2" -p148586 -S"'dec_EventBufferDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p148587 -tp148588 -a(S"'dec_EventBufferDescriptor'/3" -p148589 -S"'dec_EventBufferDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148590 -tp148591 -a(S"'dec_EventDM'/2" -p148592 -S"'dec_EventDM'(${1:Bytes}, ${2:OptOrMand}) $3" -p148593 -tp148594 -a(S"'dec_EventDM'/3" -p148595 -S"'dec_EventDM'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148596 -tp148597 -a(S"'dec_EventName'/2" -p148598 -S"'dec_EventName'(${1:Bytes}, ${2:OptOrMand}) $3" -p148599 -tp148600 -a(S"'dec_EventName'/3" -p148601 -S"'dec_EventName'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148602 -tp148603 -a(S"'dec_EventParameter'/2" -p148604 -S"'dec_EventParameter'(${1:Bytes}, ${2:OptOrMand}) $3" -p148605 -tp148606 -a(S"'dec_EventParameter'/3" -p148607 -S"'dec_EventParameter'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148608 -tp148609 -a(S"'dec_EventSpec'/2" -p148610 -S"'dec_EventSpec'(${1:Bytes}, ${2:OptOrMand}) $3" -p148611 -tp148612 -a(S"'dec_EventSpec'/3" -p148613 -S"'dec_EventSpec'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148614 -tp148615 -a(S"'dec_EventsDescriptor'/2" -p148616 -S"'dec_EventsDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p148617 -tp148618 -a(S"'dec_EventsDescriptor'/3" -p148619 -S"'dec_EventsDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148620 -tp148621 -a(S"'dec_H221NonStandard'/2" -p148622 -S"'dec_H221NonStandard'(${1:Bytes}, ${2:OptOrMand}) $3" -p148623 -tp148624 -a(S"'dec_H221NonStandard'/3" -p148625 -S"'dec_H221NonStandard'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148626 -tp148627 -a(S"'dec_IP4Address'/2" -p148628 -S"'dec_IP4Address'(${1:Bytes}, ${2:OptOrMand}) $3" -p148629 -tp148630 -a(S"'dec_IP4Address'/3" -p148631 -S"'dec_IP4Address'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148632 -tp148633 -a(S"'dec_IP6Address'/2" -p148634 -S"'dec_IP6Address'(${1:Bytes}, ${2:OptOrMand}) $3" -p148635 -tp148636 -a(S"'dec_IP6Address'/3" -p148637 -S"'dec_IP6Address'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148638 -tp148639 -a(S"'dec_IndAudDigitMapDescriptor'/2" -p148640 -S"'dec_IndAudDigitMapDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p148641 -tp148642 -a(S"'dec_IndAudDigitMapDescriptor'/3" -p148643 -S"'dec_IndAudDigitMapDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148644 -tp148645 -a(S"'dec_IndAudEventBufferDescriptor'/2" -p148646 -S"'dec_IndAudEventBufferDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p148647 -tp148648 -a(S"'dec_IndAudEventBufferDescriptor'/3" -p148649 -S"'dec_IndAudEventBufferDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148650 -tp148651 -a(S"'dec_IndAudEventsDescriptor'/2" -p148652 -S"'dec_IndAudEventsDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p148653 -tp148654 -a(S"'dec_IndAudEventsDescriptor'/3" -p148655 -S"'dec_IndAudEventsDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148656 -tp148657 -a(S"'dec_IndAudLocalControlDescriptor'/2" -p148658 -S"'dec_IndAudLocalControlDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p148659 -tp148660 -a(S"'dec_IndAudLocalControlDescriptor'/3" -p148661 -S"'dec_IndAudLocalControlDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148662 -tp148663 -a(S"'dec_IndAudLocalRemoteDescriptor'/2" -p148664 -S"'dec_IndAudLocalRemoteDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p148665 -tp148666 -a(S"'dec_IndAudLocalRemoteDescriptor'/3" -p148667 -S"'dec_IndAudLocalRemoteDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148668 -tp148669 -a(S"'dec_IndAudMediaDescriptor'/2" -p148670 -S"'dec_IndAudMediaDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p148671 -tp148672 -a(S"'dec_IndAudMediaDescriptor'/3" -p148673 -S"'dec_IndAudMediaDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148674 -tp148675 -a(S"'dec_IndAudPackagesDescriptor'/2" -p148676 -S"'dec_IndAudPackagesDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p148677 -tp148678 -a(S"'dec_IndAudPackagesDescriptor'/3" -p148679 -S"'dec_IndAudPackagesDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148680 -tp148681 -a(S"'dec_IndAudPropertyGroup'/2" -p148682 -S"'dec_IndAudPropertyGroup'(${1:Bytes}, ${2:OptOrMand}) $3" -p148683 -tp148684 -a(S"'dec_IndAudPropertyGroup'/3" -p148685 -S"'dec_IndAudPropertyGroup'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148686 -tp148687 -a(S"'dec_IndAudPropertyParm'/2" -p148688 -S"'dec_IndAudPropertyParm'(${1:Bytes}, ${2:OptOrMand}) $3" -p148689 -tp148690 -a(S"'dec_IndAudPropertyParm'/3" -p148691 -S"'dec_IndAudPropertyParm'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148692 -tp148693 -a(S"'dec_IndAudSeqSigList'/2" -p148694 -S"'dec_IndAudSeqSigList'(${1:Bytes}, ${2:OptOrMand}) $3" -p148695 -tp148696 -a(S"'dec_IndAudSeqSigList'/3" -p148697 -S"'dec_IndAudSeqSigList'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148698 -tp148699 -a(S"'dec_IndAudSignal'/2" -p148700 -S"'dec_IndAudSignal'(${1:Bytes}, ${2:OptOrMand}) $3" -p148701 -tp148702 -a(S"'dec_IndAudSignal'/3" -p148703 -S"'dec_IndAudSignal'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148704 -tp148705 -a(S"'dec_IndAudSignalsDescriptor'/2" -p148706 -S"'dec_IndAudSignalsDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p148707 -tp148708 -a(S"'dec_IndAudSignalsDescriptor'/3" -p148709 -S"'dec_IndAudSignalsDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148710 -tp148711 -a(S"'dec_IndAudStatisticsDescriptor'/2" -p148712 -S"'dec_IndAudStatisticsDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p148713 -tp148714 -a(S"'dec_IndAudStatisticsDescriptor'/3" -p148715 -S"'dec_IndAudStatisticsDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148716 -tp148717 -a(S"'dec_IndAudStreamDescriptor'/2" -p148718 -S"'dec_IndAudStreamDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p148719 -tp148720 -a(S"'dec_IndAudStreamDescriptor'/3" -p148721 -S"'dec_IndAudStreamDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148722 -tp148723 -a(S"'dec_IndAudStreamParms'/2" -p148724 -S"'dec_IndAudStreamParms'(${1:Bytes}, ${2:OptOrMand}) $3" -p148725 -tp148726 -a(S"'dec_IndAudStreamParms'/3" -p148727 -S"'dec_IndAudStreamParms'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148728 -tp148729 -a(S"'dec_IndAudTerminationStateDescriptor'/2" -p148730 -S"'dec_IndAudTerminationStateDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p148731 -tp148732 -a(S"'dec_IndAudTerminationStateDescriptor'/3" -p148733 -S"'dec_IndAudTerminationStateDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148734 -tp148735 -a(S"'dec_IndAuditParameter'/2" -p148736 -S"'dec_IndAuditParameter'(${1:Bytes}, ${2:OptOrMand}) $3" -p148737 -tp148738 -a(S"'dec_IndAuditParameter'/3" -p148739 -S"'dec_IndAuditParameter'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148740 -tp148741 -a(S"'dec_LocalControlDescriptor'/2" -p148742 -S"'dec_LocalControlDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p148743 -tp148744 -a(S"'dec_LocalControlDescriptor'/3" -p148745 -S"'dec_LocalControlDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148746 -tp148747 -a(S"'dec_LocalRemoteDescriptor'/2" -p148748 -S"'dec_LocalRemoteDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p148749 -tp148750 -a(S"'dec_LocalRemoteDescriptor'/3" -p148751 -S"'dec_LocalRemoteDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148752 -tp148753 -a(S"'dec_MId'/2" -p148754 -S"'dec_MId'(${1:Bytes}, ${2:OptOrMand}) $3" -p148755 -tp148756 -a(S"'dec_MId'/3" -p148757 -S"'dec_MId'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148758 -tp148759 -a(S"'dec_MediaDescriptor'/2" -p148760 -S"'dec_MediaDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p148761 -tp148762 -a(S"'dec_MediaDescriptor'/3" -p148763 -S"'dec_MediaDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148764 -tp148765 -a(S"'dec_MegacoMessage'/2" -p148766 -S"'dec_MegacoMessage'(${1:Bytes}, ${2:OptOrMand}) $3" -p148767 -tp148768 -a(S"'dec_MegacoMessage'/3" -p148769 -S"'dec_MegacoMessage'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148770 -tp148771 -a(S"'dec_Message'/2" -p148772 -S"'dec_Message'(${1:Bytes}, ${2:OptOrMand}) $3" -p148773 -tp148774 -a(S"'dec_Message'/3" -p148775 -S"'dec_Message'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148776 -tp148777 -a(S"'dec_ModemDescriptor'/2" -p148778 -S"'dec_ModemDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p148779 -tp148780 -a(S"'dec_ModemDescriptor'/3" -p148781 -S"'dec_ModemDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148782 -tp148783 -a(S"'dec_ModemType'/2" -p148784 -S"'dec_ModemType'(${1:Bytes}, ${2:OptOrMand}) $3" -p148785 -tp148786 -a(S"'dec_ModemType'/3" -p148787 -S"'dec_ModemType'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148788 -tp148789 -a(S"'dec_MuxDescriptor'/2" -p148790 -S"'dec_MuxDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p148791 -tp148792 -a(S"'dec_MuxDescriptor'/3" -p148793 -S"'dec_MuxDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148794 -tp148795 -a(S"'dec_MuxType'/2" -p148796 -S"'dec_MuxType'(${1:Bytes}, ${2:OptOrMand}) $3" -p148797 -tp148798 -a(S"'dec_MuxType'/3" -p148799 -S"'dec_MuxType'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148800 -tp148801 -a(S"'dec_Name'/2" -p148802 -S"'dec_Name'(${1:Bytes}, ${2:OptOrMand}) $3" -p148803 -tp148804 -a(S"'dec_Name'/3" -p148805 -S"'dec_Name'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148806 -tp148807 -a(S"'dec_NonStandardData'/2" -p148808 -S"'dec_NonStandardData'(${1:Bytes}, ${2:OptOrMand}) $3" -p148809 -tp148810 -a(S"'dec_NonStandardData'/3" -p148811 -S"'dec_NonStandardData'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148812 -tp148813 -a(S"'dec_NonStandardIdentifier'/2" -p148814 -S"'dec_NonStandardIdentifier'(${1:Bytes}, ${2:OptOrMand}) $3" -p148815 -tp148816 -a(S"'dec_NonStandardIdentifier'/3" -p148817 -S"'dec_NonStandardIdentifier'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148818 -tp148819 -a(S"'dec_NotifyCompletion'/2" -p148820 -S"'dec_NotifyCompletion'(${1:Bytes}, ${2:OptOrMand}) $3" -p148821 -tp148822 -a(S"'dec_NotifyCompletion'/3" -p148823 -S"'dec_NotifyCompletion'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148824 -tp148825 -a(S"'dec_NotifyReply'/2" -p148826 -S"'dec_NotifyReply'(${1:Bytes}, ${2:OptOrMand}) $3" -p148827 -tp148828 -a(S"'dec_NotifyReply'/3" -p148829 -S"'dec_NotifyReply'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148830 -tp148831 -a(S"'dec_NotifyRequest'/2" -p148832 -S"'dec_NotifyRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p148833 -tp148834 -a(S"'dec_NotifyRequest'/3" -p148835 -S"'dec_NotifyRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148836 -tp148837 -a(S"'dec_ObservedEvent'/2" -p148838 -S"'dec_ObservedEvent'(${1:Bytes}, ${2:OptOrMand}) $3" -p148839 -tp148840 -a(S"'dec_ObservedEvent'/3" -p148841 -S"'dec_ObservedEvent'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148842 -tp148843 -a(S"'dec_ObservedEventsDescriptor'/2" -p148844 -S"'dec_ObservedEventsDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p148845 -tp148846 -a(S"'dec_ObservedEventsDescriptor'/3" -p148847 -S"'dec_ObservedEventsDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148848 -tp148849 -a(S"'dec_PackagesDescriptor'/2" -p148850 -S"'dec_PackagesDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p148851 -tp148852 -a(S"'dec_PackagesDescriptor'/3" -p148853 -S"'dec_PackagesDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148854 -tp148855 -a(S"'dec_PackagesItem'/2" -p148856 -S"'dec_PackagesItem'(${1:Bytes}, ${2:OptOrMand}) $3" -p148857 -tp148858 -a(S"'dec_PackagesItem'/3" -p148859 -S"'dec_PackagesItem'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148860 -tp148861 -a(S"'dec_PathName'/2" -p148862 -S"'dec_PathName'(${1:Bytes}, ${2:OptOrMand}) $3" -p148863 -tp148864 -a(S"'dec_PathName'/3" -p148865 -S"'dec_PathName'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148866 -tp148867 -a(S"'dec_PkgdName'/2" -p148868 -S"'dec_PkgdName'(${1:Bytes}, ${2:OptOrMand}) $3" -p148869 -tp148870 -a(S"'dec_PkgdName'/3" -p148871 -S"'dec_PkgdName'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148872 -tp148873 -a(S"'dec_PropertyGroup'/2" -p148874 -S"'dec_PropertyGroup'(${1:Bytes}, ${2:OptOrMand}) $3" -p148875 -tp148876 -a(S"'dec_PropertyGroup'/3" -p148877 -S"'dec_PropertyGroup'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148878 -tp148879 -a(S"'dec_PropertyParm'/2" -p148880 -S"'dec_PropertyParm'(${1:Bytes}, ${2:OptOrMand}) $3" -p148881 -tp148882 -a(S"'dec_PropertyParm'/3" -p148883 -S"'dec_PropertyParm'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148884 -tp148885 -a(S"'dec_Relation'/2" -p148886 -S"'dec_Relation'(${1:Bytes}, ${2:OptOrMand}) $3" -p148887 -tp148888 -a(S"'dec_Relation'/3" -p148889 -S"'dec_Relation'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148890 -tp148891 -a(S"'dec_RequestID'/2" -p148892 -S"'dec_RequestID'(${1:Bytes}, ${2:OptOrMand}) $3" -p148893 -tp148894 -a(S"'dec_RequestID'/3" -p148895 -S"'dec_RequestID'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148896 -tp148897 -a(S"'dec_RequestedActions'/2" -p148898 -S"'dec_RequestedActions'(${1:Bytes}, ${2:OptOrMand}) $3" -p148899 -tp148900 -a(S"'dec_RequestedActions'/3" -p148901 -S"'dec_RequestedActions'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148902 -tp148903 -a(S"'dec_RequestedEvent'/2" -p148904 -S"'dec_RequestedEvent'(${1:Bytes}, ${2:OptOrMand}) $3" -p148905 -tp148906 -a(S"'dec_RequestedEvent'/3" -p148907 -S"'dec_RequestedEvent'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148908 -tp148909 -a(S"'dec_SecondEventsDescriptor'/2" -p148910 -S"'dec_SecondEventsDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p148911 -tp148912 -a(S"'dec_SecondEventsDescriptor'/3" -p148913 -S"'dec_SecondEventsDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148914 -tp148915 -a(S"'dec_SecondRequestedActions'/2" -p148916 -S"'dec_SecondRequestedActions'(${1:Bytes}, ${2:OptOrMand}) $3" -p148917 -tp148918 -a(S"'dec_SecondRequestedActions'/3" -p148919 -S"'dec_SecondRequestedActions'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148920 -tp148921 -a(S"'dec_SecondRequestedEvent'/2" -p148922 -S"'dec_SecondRequestedEvent'(${1:Bytes}, ${2:OptOrMand}) $3" -p148923 -tp148924 -a(S"'dec_SecondRequestedEvent'/3" -p148925 -S"'dec_SecondRequestedEvent'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148926 -tp148927 -a(S"'dec_SecurityParmIndex'/2" -p148928 -S"'dec_SecurityParmIndex'(${1:Bytes}, ${2:OptOrMand}) $3" -p148929 -tp148930 -a(S"'dec_SecurityParmIndex'/3" -p148931 -S"'dec_SecurityParmIndex'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148932 -tp148933 -a(S"'dec_SegmentNumber'/2" -p148934 -S"'dec_SegmentNumber'(${1:Bytes}, ${2:OptOrMand}) $3" -p148935 -tp148936 -a(S"'dec_SegmentNumber'/3" -p148937 -S"'dec_SegmentNumber'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148938 -tp148939 -a(S"'dec_SeqSigList'/2" -p148940 -S"'dec_SeqSigList'(${1:Bytes}, ${2:OptOrMand}) $3" -p148941 -tp148942 -a(S"'dec_SeqSigList'/3" -p148943 -S"'dec_SeqSigList'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148944 -tp148945 -a(S"'dec_SequenceNum'/2" -p148946 -S"'dec_SequenceNum'(${1:Bytes}, ${2:OptOrMand}) $3" -p148947 -tp148948 -a(S"'dec_SequenceNum'/3" -p148949 -S"'dec_SequenceNum'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148950 -tp148951 -a(S"'dec_ServiceChangeAddress'/2" -p148952 -S"'dec_ServiceChangeAddress'(${1:Bytes}, ${2:OptOrMand}) $3" -p148953 -tp148954 -a(S"'dec_ServiceChangeAddress'/3" -p148955 -S"'dec_ServiceChangeAddress'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148956 -tp148957 -a(S"'dec_ServiceChangeMethod'/2" -p148958 -S"'dec_ServiceChangeMethod'(${1:Bytes}, ${2:OptOrMand}) $3" -p148959 -tp148960 -a(S"'dec_ServiceChangeMethod'/3" -p148961 -S"'dec_ServiceChangeMethod'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148962 -tp148963 -a(S"'dec_ServiceChangeParm'/2" -p148964 -S"'dec_ServiceChangeParm'(${1:Bytes}, ${2:OptOrMand}) $3" -p148965 -tp148966 -a(S"'dec_ServiceChangeParm'/3" -p148967 -S"'dec_ServiceChangeParm'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148968 -tp148969 -a(S"'dec_ServiceChangeProfile'/2" -p148970 -S"'dec_ServiceChangeProfile'(${1:Bytes}, ${2:OptOrMand}) $3" -p148971 -tp148972 -a(S"'dec_ServiceChangeProfile'/3" -p148973 -S"'dec_ServiceChangeProfile'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148974 -tp148975 -a(S"'dec_ServiceChangeReply'/2" -p148976 -S"'dec_ServiceChangeReply'(${1:Bytes}, ${2:OptOrMand}) $3" -p148977 -tp148978 -a(S"'dec_ServiceChangeReply'/3" -p148979 -S"'dec_ServiceChangeReply'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148980 -tp148981 -a(S"'dec_ServiceChangeRequest'/2" -p148982 -S"'dec_ServiceChangeRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p148983 -tp148984 -a(S"'dec_ServiceChangeRequest'/3" -p148985 -S"'dec_ServiceChangeRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148986 -tp148987 -a(S"'dec_ServiceChangeResParm'/2" -p148988 -S"'dec_ServiceChangeResParm'(${1:Bytes}, ${2:OptOrMand}) $3" -p148989 -tp148990 -a(S"'dec_ServiceChangeResParm'/3" -p148991 -S"'dec_ServiceChangeResParm'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148992 -tp148993 -a(S"'dec_ServiceChangeResult'/2" -p148994 -S"'dec_ServiceChangeResult'(${1:Bytes}, ${2:OptOrMand}) $3" -p148995 -tp148996 -a(S"'dec_ServiceChangeResult'/3" -p148997 -S"'dec_ServiceChangeResult'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p148998 -tp148999 -a(S"'dec_ServiceState'/2" -p149000 -S"'dec_ServiceState'(${1:Bytes}, ${2:OptOrMand}) $3" -p149001 -tp149002 -a(S"'dec_ServiceState'/3" -p149003 -S"'dec_ServiceState'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149004 -tp149005 -a(S"'dec_SigParameter'/2" -p149006 -S"'dec_SigParameter'(${1:Bytes}, ${2:OptOrMand}) $3" -p149007 -tp149008 -a(S"'dec_SigParameter'/3" -p149009 -S"'dec_SigParameter'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149010 -tp149011 -a(S"'dec_Signal'/2" -p149012 -S"'dec_Signal'(${1:Bytes}, ${2:OptOrMand}) $3" -p149013 -tp149014 -a(S"'dec_Signal'/3" -p149015 -S"'dec_Signal'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149016 -tp149017 -a(S"'dec_SignalDirection'/2" -p149018 -S"'dec_SignalDirection'(${1:Bytes}, ${2:OptOrMand}) $3" -p149019 -tp149020 -a(S"'dec_SignalDirection'/3" -p149021 -S"'dec_SignalDirection'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149022 -tp149023 -a(S"'dec_SignalName'/2" -p149024 -S"'dec_SignalName'(${1:Bytes}, ${2:OptOrMand}) $3" -p149025 -tp149026 -a(S"'dec_SignalName'/3" -p149027 -S"'dec_SignalName'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149028 -tp149029 -a(S"'dec_SignalRequest'/2" -p149030 -S"'dec_SignalRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p149031 -tp149032 -a(S"'dec_SignalRequest'/3" -p149033 -S"'dec_SignalRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149034 -tp149035 -a(S"'dec_SignalType'/2" -p149036 -S"'dec_SignalType'(${1:Bytes}, ${2:OptOrMand}) $3" -p149037 -tp149038 -a(S"'dec_SignalType'/3" -p149039 -S"'dec_SignalType'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149040 -tp149041 -a(S"'dec_SignalsDescriptor'/2" -p149042 -S"'dec_SignalsDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p149043 -tp149044 -a(S"'dec_SignalsDescriptor'/3" -p149045 -S"'dec_SignalsDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149046 -tp149047 -a(S"'dec_StatisticsDescriptor'/2" -p149048 -S"'dec_StatisticsDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p149049 -tp149050 -a(S"'dec_StatisticsDescriptor'/3" -p149051 -S"'dec_StatisticsDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149052 -tp149053 -a(S"'dec_StatisticsParameter'/2" -p149054 -S"'dec_StatisticsParameter'(${1:Bytes}, ${2:OptOrMand}) $3" -p149055 -tp149056 -a(S"'dec_StatisticsParameter'/3" -p149057 -S"'dec_StatisticsParameter'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149058 -tp149059 -a(S"'dec_StreamDescriptor'/2" -p149060 -S"'dec_StreamDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p149061 -tp149062 -a(S"'dec_StreamDescriptor'/3" -p149063 -S"'dec_StreamDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149064 -tp149065 -a(S"'dec_StreamID'/2" -p149066 -S"'dec_StreamID'(${1:Bytes}, ${2:OptOrMand}) $3" -p149067 -tp149068 -a(S"'dec_StreamID'/3" -p149069 -S"'dec_StreamID'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149070 -tp149071 -a(S"'dec_StreamMode'/2" -p149072 -S"'dec_StreamMode'(${1:Bytes}, ${2:OptOrMand}) $3" -p149073 -tp149074 -a(S"'dec_StreamMode'/3" -p149075 -S"'dec_StreamMode'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149076 -tp149077 -a(S"'dec_StreamParms'/2" -p149078 -S"'dec_StreamParms'(${1:Bytes}, ${2:OptOrMand}) $3" -p149079 -tp149080 -a(S"'dec_StreamParms'/3" -p149081 -S"'dec_StreamParms'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149082 -tp149083 -a(S"'dec_SubtractRequest'/2" -p149084 -S"'dec_SubtractRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p149085 -tp149086 -a(S"'dec_SubtractRequest'/3" -p149087 -S"'dec_SubtractRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149088 -tp149089 -a(S"'dec_TerminationAudit'/2" -p149090 -S"'dec_TerminationAudit'(${1:Bytes}, ${2:OptOrMand}) $3" -p149091 -tp149092 -a(S"'dec_TerminationAudit'/3" -p149093 -S"'dec_TerminationAudit'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149094 -tp149095 -a(S"'dec_TerminationID'/2" -p149096 -S"'dec_TerminationID'(${1:Bytes}, ${2:OptOrMand}) $3" -p149097 -tp149098 -a(S"'dec_TerminationID'/3" -p149099 -S"'dec_TerminationID'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149100 -tp149101 -a(S"'dec_TerminationIDList'/2" -p149102 -S"'dec_TerminationIDList'(${1:Bytes}, ${2:OptOrMand}) $3" -p149103 -tp149104 -a(S"'dec_TerminationIDList'/3" -p149105 -S"'dec_TerminationIDList'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149106 -tp149107 -a(S"'dec_TerminationStateDescriptor'/2" -p149108 -S"'dec_TerminationStateDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p149109 -tp149110 -a(S"'dec_TerminationStateDescriptor'/3" -p149111 -S"'dec_TerminationStateDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149112 -tp149113 -a(S"'dec_TimeNotation'/2" -p149114 -S"'dec_TimeNotation'(${1:Bytes}, ${2:OptOrMand}) $3" -p149115 -tp149116 -a(S"'dec_TimeNotation'/3" -p149117 -S"'dec_TimeNotation'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149118 -tp149119 -a(S"'dec_TopologyRequest'/2" -p149120 -S"'dec_TopologyRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p149121 -tp149122 -a(S"'dec_TopologyRequest'/3" -p149123 -S"'dec_TopologyRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149124 -tp149125 -a(S"'dec_Transaction'/2" -p149126 -S"'dec_Transaction'(${1:Bytes}, ${2:OptOrMand}) $3" -p149127 -tp149128 -a(S"'dec_Transaction'/3" -p149129 -S"'dec_Transaction'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149130 -tp149131 -a(S"'dec_TransactionAck'/2" -p149132 -S"'dec_TransactionAck'(${1:Bytes}, ${2:OptOrMand}) $3" -p149133 -tp149134 -a(S"'dec_TransactionAck'/3" -p149135 -S"'dec_TransactionAck'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149136 -tp149137 -a(S"'dec_TransactionId'/2" -p149138 -S"'dec_TransactionId'(${1:Bytes}, ${2:OptOrMand}) $3" -p149139 -tp149140 -a(S"'dec_TransactionId'/3" -p149141 -S"'dec_TransactionId'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149142 -tp149143 -a(S"'dec_TransactionPending'/2" -p149144 -S"'dec_TransactionPending'(${1:Bytes}, ${2:OptOrMand}) $3" -p149145 -tp149146 -a(S"'dec_TransactionPending'/3" -p149147 -S"'dec_TransactionPending'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149148 -tp149149 -a(S"'dec_TransactionReply'/2" -p149150 -S"'dec_TransactionReply'(${1:Bytes}, ${2:OptOrMand}) $3" -p149151 -tp149152 -a(S"'dec_TransactionReply'/3" -p149153 -S"'dec_TransactionReply'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149154 -tp149155 -a(S"'dec_TransactionRequest'/2" -p149156 -S"'dec_TransactionRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p149157 -tp149158 -a(S"'dec_TransactionRequest'/3" -p149159 -S"'dec_TransactionRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149160 -tp149161 -a(S"'dec_TransactionResponseAck'/2" -p149162 -S"'dec_TransactionResponseAck'(${1:Bytes}, ${2:OptOrMand}) $3" -p149163 -tp149164 -a(S"'dec_TransactionResponseAck'/3" -p149165 -S"'dec_TransactionResponseAck'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149166 -tp149167 -a(S"'dec_Value'/2" -p149168 -S"'dec_Value'(${1:Bytes}, ${2:OptOrMand}) $3" -p149169 -tp149170 -a(S"'dec_Value'/3" -p149171 -S"'dec_Value'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149172 -tp149173 -a(S"'dec_WildcardField'/2" -p149174 -S"'dec_WildcardField'(${1:Bytes}, ${2:OptOrMand}) $3" -p149175 -tp149176 -a(S"'dec_WildcardField'/3" -p149177 -S"'dec_WildcardField'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149178 -tp149179 -a(S"'enc_ActionReply'/2" -p149180 -S"'enc_ActionReply'(${1:Val}, ${2:TagIn}) $3" -p149181 -tp149182 -a(S"'enc_ActionRequest'/2" -p149183 -S"'enc_ActionRequest'(${1:Val}, ${2:TagIn}) $3" -p149184 -tp149185 -a(S"'enc_AmmDescriptor'/2" -p149186 -S"'enc_AmmDescriptor'(${1:Val}, ${2:TagIn}) $3" -p149187 -tp149188 -a(S"'enc_AmmRequest'/2" -p149189 -S"'enc_AmmRequest'(${1:Val}, ${2:TagIn}) $3" -p149190 -tp149191 -a(S"'enc_AmmsReply'/2" -p149192 -S"'enc_AmmsReply'(${1:Val}, ${2:TagIn}) $3" -p149193 -tp149194 -a(S"'enc_AuditDescriptor'/2" -p149195 -S"'enc_AuditDescriptor'(${1:Val}, ${2:TagIn}) $3" -p149196 -tp149197 -a(S"'enc_AuditReply'/2" -p149198 -S"'enc_AuditReply'(${1:Val}, ${2:TagIn}) $3" -p149199 -tp149200 -a(S"'enc_AuditRequest'/2" -p149201 -S"'enc_AuditRequest'(${1:Val}, ${2:TagIn}) $3" -p149202 -tp149203 -a(S"'enc_AuditResult'/2" -p149204 -S"'enc_AuditResult'(${1:Val}, ${2:TagIn}) $3" -p149205 -tp149206 -a(S"'enc_AuditReturnParameter'/2" -p149207 -S"'enc_AuditReturnParameter'(${1:Val}, ${2:TagIn}) $3" -p149208 -tp149209 -a(S"'enc_AuthData'/2" -p149210 -S"'enc_AuthData'(${1:Val}, ${2:TagIn}) $3" -p149211 -tp149212 -a(S"'enc_AuthenticationHeader'/2" -p149213 -S"'enc_AuthenticationHeader'(${1:Val}, ${2:TagIn}) $3" -p149214 -tp149215 -a(S"'enc_Command'/2" -p149216 -S"'enc_Command'(${1:Val}, ${2:TagIn}) $3" -p149217 -tp149218 -a(S"'enc_CommandReply'/2" -p149219 -S"'enc_CommandReply'(${1:Val}, ${2:TagIn}) $3" -p149220 -tp149221 -a(S"'enc_CommandRequest'/2" -p149222 -S"'enc_CommandRequest'(${1:Val}, ${2:TagIn}) $3" -p149223 -tp149224 -a(S"'enc_ContextAttrAuditRequest'/2" -p149225 -S"'enc_ContextAttrAuditRequest'(${1:Val}, ${2:TagIn}) $3" -p149226 -tp149227 -a(S"'enc_ContextID'/2" -p149228 -S"'enc_ContextID'(${1:Val}, ${2:TagIn}) $3" -p149229 -tp149230 -a(S"'enc_ContextRequest'/2" -p149231 -S"'enc_ContextRequest'(${1:Val}, ${2:TagIn}) $3" -p149232 -tp149233 -a(S"'enc_DigitMapDescriptor'/2" -p149234 -S"'enc_DigitMapDescriptor'(${1:Val}, ${2:TagIn}) $3" -p149235 -tp149236 -a(S"'enc_DigitMapName'/2" -p149237 -S"'enc_DigitMapName'(${1:Val}, ${2:TagIn}) $3" -p149238 -tp149239 -a(S"'enc_DigitMapValue'/2" -p149240 -S"'enc_DigitMapValue'(${1:Val}, ${2:TagIn}) $3" -p149241 -tp149242 -a(S"'enc_DomainName'/2" -p149243 -S"'enc_DomainName'(${1:Val}, ${2:TagIn}) $3" -p149244 -tp149245 -a(S"'enc_ErrorCode'/2" -p149246 -S"'enc_ErrorCode'(${1:Val}, ${2:TagIn}) $3" -p149247 -tp149248 -a(S"'enc_ErrorDescriptor'/2" -p149249 -S"'enc_ErrorDescriptor'(${1:Val}, ${2:TagIn}) $3" -p149250 -tp149251 -a(S"'enc_ErrorText'/2" -p149252 -S"'enc_ErrorText'(${1:Val}, ${2:TagIn}) $3" -p149253 -tp149254 -a(S"'enc_EventBufferControl'/2" -p149255 -S"'enc_EventBufferControl'(${1:Val}, ${2:TagIn}) $3" -p149256 -tp149257 -a(S"'enc_EventBufferDescriptor'/2" -p149258 -S"'enc_EventBufferDescriptor'(${1:Val}, ${2:TagIn}) $3" -p149259 -tp149260 -a(S"'enc_EventDM'/2" -p149261 -S"'enc_EventDM'(${1:Val}, ${2:TagIn}) $3" -p149262 -tp149263 -a(S"'enc_EventName'/2" -p149264 -S"'enc_EventName'(${1:Val}, ${2:TagIn}) $3" -p149265 -tp149266 -a(S"'enc_EventParameter'/2" -p149267 -S"'enc_EventParameter'(${1:Val}, ${2:TagIn}) $3" -p149268 -tp149269 -a(S"'enc_EventSpec'/2" -p149270 -S"'enc_EventSpec'(${1:Val}, ${2:TagIn}) $3" -p149271 -tp149272 -a(S"'enc_EventsDescriptor'/2" -p149273 -S"'enc_EventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p149274 -tp149275 -a(S"'enc_H221NonStandard'/2" -p149276 -S"'enc_H221NonStandard'(${1:Val}, ${2:TagIn}) $3" -p149277 -tp149278 -a(S"'enc_IP4Address'/2" -p149279 -S"'enc_IP4Address'(${1:Val}, ${2:TagIn}) $3" -p149280 -tp149281 -a(S"'enc_IP6Address'/2" -p149282 -S"'enc_IP6Address'(${1:Val}, ${2:TagIn}) $3" -p149283 -tp149284 -a(S"'enc_IndAudDigitMapDescriptor'/2" -p149285 -S"'enc_IndAudDigitMapDescriptor'(${1:Val}, ${2:TagIn}) $3" -p149286 -tp149287 -a(S"'enc_IndAudEventBufferDescriptor'/2" -p149288 -S"'enc_IndAudEventBufferDescriptor'(${1:Val}, ${2:TagIn}) $3" -p149289 -tp149290 -a(S"'enc_IndAudEventsDescriptor'/2" -p149291 -S"'enc_IndAudEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p149292 -tp149293 -a(S"'enc_IndAudLocalControlDescriptor'/2" -p149294 -S"'enc_IndAudLocalControlDescriptor'(${1:Val}, ${2:TagIn}) $3" -p149295 -tp149296 -a(S"'enc_IndAudLocalRemoteDescriptor'/2" -p149297 -S"'enc_IndAudLocalRemoteDescriptor'(${1:Val}, ${2:TagIn}) $3" -p149298 -tp149299 -a(S"'enc_IndAudMediaDescriptor'/2" -p149300 -S"'enc_IndAudMediaDescriptor'(${1:Val}, ${2:TagIn}) $3" -p149301 -tp149302 -a(S"'enc_IndAudPackagesDescriptor'/2" -p149303 -S"'enc_IndAudPackagesDescriptor'(${1:Val}, ${2:TagIn}) $3" -p149304 -tp149305 -a(S"'enc_IndAudPropertyGroup'/2" -p149306 -S"'enc_IndAudPropertyGroup'(${1:Val}, ${2:TagIn}) $3" -p149307 -tp149308 -a(S"'enc_IndAudPropertyParm'/2" -p149309 -S"'enc_IndAudPropertyParm'(${1:Val}, ${2:TagIn}) $3" -p149310 -tp149311 -a(S"'enc_IndAudSeqSigList'/2" -p149312 -S"'enc_IndAudSeqSigList'(${1:Val}, ${2:TagIn}) $3" -p149313 -tp149314 -a(S"'enc_IndAudSignal'/2" -p149315 -S"'enc_IndAudSignal'(${1:Val}, ${2:TagIn}) $3" -p149316 -tp149317 -a(S"'enc_IndAudSignalsDescriptor'/2" -p149318 -S"'enc_IndAudSignalsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p149319 -tp149320 -a(S"'enc_IndAudStatisticsDescriptor'/2" -p149321 -S"'enc_IndAudStatisticsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p149322 -tp149323 -a(S"'enc_IndAudStreamDescriptor'/2" -p149324 -S"'enc_IndAudStreamDescriptor'(${1:Val}, ${2:TagIn}) $3" -p149325 -tp149326 -a(S"'enc_IndAudStreamParms'/2" -p149327 -S"'enc_IndAudStreamParms'(${1:Val}, ${2:TagIn}) $3" -p149328 -tp149329 -a(S"'enc_IndAudTerminationStateDescriptor'/2" -p149330 -S"'enc_IndAudTerminationStateDescriptor'(${1:Val}, ${2:TagIn}) $3" -p149331 -tp149332 -a(S"'enc_IndAuditParameter'/2" -p149333 -S"'enc_IndAuditParameter'(${1:Val}, ${2:TagIn}) $3" -p149334 -tp149335 -a(S"'enc_LocalControlDescriptor'/2" -p149336 -S"'enc_LocalControlDescriptor'(${1:Val}, ${2:TagIn}) $3" -p149337 -tp149338 -a(S"'enc_LocalRemoteDescriptor'/2" -p149339 -S"'enc_LocalRemoteDescriptor'(${1:Val}, ${2:TagIn}) $3" -p149340 -tp149341 -a(S"'enc_MId'/2" -p149342 -S"'enc_MId'(${1:Val}, ${2:TagIn}) $3" -p149343 -tp149344 -a(S"'enc_MediaDescriptor'/2" -p149345 -S"'enc_MediaDescriptor'(${1:Val}, ${2:TagIn}) $3" -p149346 -tp149347 -a(S"'enc_MegacoMessage'/2" -p149348 -S"'enc_MegacoMessage'(${1:Val}, ${2:TagIn}) $3" -p149349 -tp149350 -a(S"'enc_Message'/2" -p149351 -S"'enc_Message'(${1:Val}, ${2:TagIn}) $3" -p149352 -tp149353 -a(S"'enc_ModemDescriptor'/2" -p149354 -S"'enc_ModemDescriptor'(${1:Val}, ${2:TagIn}) $3" -p149355 -tp149356 -a(S"'enc_ModemType'/2" -p149357 -S"'enc_ModemType'(${1:Val}, ${2:TagIn}) $3" -p149358 -tp149359 -a(S"'enc_MuxDescriptor'/2" -p149360 -S"'enc_MuxDescriptor'(${1:Val}, ${2:TagIn}) $3" -p149361 -tp149362 -a(S"'enc_MuxType'/2" -p149363 -S"'enc_MuxType'(${1:Val}, ${2:TagIn}) $3" -p149364 -tp149365 -a(S"'enc_Name'/2" -p149366 -S"'enc_Name'(${1:Val}, ${2:TagIn}) $3" -p149367 -tp149368 -a(S"'enc_NonStandardData'/2" -p149369 -S"'enc_NonStandardData'(${1:Val}, ${2:TagIn}) $3" -p149370 -tp149371 -a(S"'enc_NonStandardIdentifier'/2" -p149372 -S"'enc_NonStandardIdentifier'(${1:Val}, ${2:TagIn}) $3" -p149373 -tp149374 -a(S"'enc_NotifyCompletion'/2" -p149375 -S"'enc_NotifyCompletion'(${1:Val}, ${2:TagIn}) $3" -p149376 -tp149377 -a(S"'enc_NotifyReply'/2" -p149378 -S"'enc_NotifyReply'(${1:Val}, ${2:TagIn}) $3" -p149379 -tp149380 -a(S"'enc_NotifyRequest'/2" -p149381 -S"'enc_NotifyRequest'(${1:Val}, ${2:TagIn}) $3" -p149382 -tp149383 -a(S"'enc_ObservedEvent'/2" -p149384 -S"'enc_ObservedEvent'(${1:Val}, ${2:TagIn}) $3" -p149385 -tp149386 -a(S"'enc_ObservedEventsDescriptor'/2" -p149387 -S"'enc_ObservedEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p149388 -tp149389 -a(S"'enc_PackagesDescriptor'/2" -p149390 -S"'enc_PackagesDescriptor'(${1:Val}, ${2:TagIn}) $3" -p149391 -tp149392 -a(S"'enc_PackagesItem'/2" -p149393 -S"'enc_PackagesItem'(${1:Val}, ${2:TagIn}) $3" -p149394 -tp149395 -a(S"'enc_PathName'/2" -p149396 -S"'enc_PathName'(${1:Val}, ${2:TagIn}) $3" -p149397 -tp149398 -a(S"'enc_PkgdName'/2" -p149399 -S"'enc_PkgdName'(${1:Val}, ${2:TagIn}) $3" -p149400 -tp149401 -a(S"'enc_PropertyGroup'/2" -p149402 -S"'enc_PropertyGroup'(${1:Val}, ${2:TagIn}) $3" -p149403 -tp149404 -a(S"'enc_PropertyParm'/2" -p149405 -S"'enc_PropertyParm'(${1:Val}, ${2:TagIn}) $3" -p149406 -tp149407 -a(S"'enc_Relation'/2" -p149408 -S"'enc_Relation'(${1:Val}, ${2:TagIn}) $3" -p149409 -tp149410 -a(S"'enc_RequestID'/2" -p149411 -S"'enc_RequestID'(${1:Val}, ${2:TagIn}) $3" -p149412 -tp149413 -a(S"'enc_RequestedActions'/2" -p149414 -S"'enc_RequestedActions'(${1:Val}, ${2:TagIn}) $3" -p149415 -tp149416 -a(S"'enc_RequestedEvent'/2" -p149417 -S"'enc_RequestedEvent'(${1:Val}, ${2:TagIn}) $3" -p149418 -tp149419 -a(S"'enc_SecondEventsDescriptor'/2" -p149420 -S"'enc_SecondEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p149421 -tp149422 -a(S"'enc_SecondRequestedActions'/2" -p149423 -S"'enc_SecondRequestedActions'(${1:Val}, ${2:TagIn}) $3" -p149424 -tp149425 -a(S"'enc_SecondRequestedEvent'/2" -p149426 -S"'enc_SecondRequestedEvent'(${1:Val}, ${2:TagIn}) $3" -p149427 -tp149428 -a(S"'enc_SecurityParmIndex'/2" -p149429 -S"'enc_SecurityParmIndex'(${1:Val}, ${2:TagIn}) $3" -p149430 -tp149431 -a(S"'enc_SegmentNumber'/2" -p149432 -S"'enc_SegmentNumber'(${1:Val}, ${2:TagIn}) $3" -p149433 -tp149434 -a(S"'enc_SeqSigList'/2" -p149435 -S"'enc_SeqSigList'(${1:Val}, ${2:TagIn}) $3" -p149436 -tp149437 -a(S"'enc_SequenceNum'/2" -p149438 -S"'enc_SequenceNum'(${1:Val}, ${2:TagIn}) $3" -p149439 -tp149440 -a(S"'enc_ServiceChangeAddress'/2" -p149441 -S"'enc_ServiceChangeAddress'(${1:Val}, ${2:TagIn}) $3" -p149442 -tp149443 -a(S"'enc_ServiceChangeMethod'/2" -p149444 -S"'enc_ServiceChangeMethod'(${1:Val}, ${2:TagIn}) $3" -p149445 -tp149446 -a(S"'enc_ServiceChangeParm'/2" -p149447 -S"'enc_ServiceChangeParm'(${1:Val}, ${2:TagIn}) $3" -p149448 -tp149449 -a(S"'enc_ServiceChangeProfile'/2" -p149450 -S"'enc_ServiceChangeProfile'(${1:Val}, ${2:TagIn}) $3" -p149451 -tp149452 -a(S"'enc_ServiceChangeReply'/2" -p149453 -S"'enc_ServiceChangeReply'(${1:Val}, ${2:TagIn}) $3" -p149454 -tp149455 -a(S"'enc_ServiceChangeRequest'/2" -p149456 -S"'enc_ServiceChangeRequest'(${1:Val}, ${2:TagIn}) $3" -p149457 -tp149458 -a(S"'enc_ServiceChangeResParm'/2" -p149459 -S"'enc_ServiceChangeResParm'(${1:Val}, ${2:TagIn}) $3" -p149460 -tp149461 -a(S"'enc_ServiceChangeResult'/2" -p149462 -S"'enc_ServiceChangeResult'(${1:Val}, ${2:TagIn}) $3" -p149463 -tp149464 -a(S"'enc_ServiceState'/2" -p149465 -S"'enc_ServiceState'(${1:Val}, ${2:TagIn}) $3" -p149466 -tp149467 -a(S"'enc_SigParameter'/2" -p149468 -S"'enc_SigParameter'(${1:Val}, ${2:TagIn}) $3" -p149469 -tp149470 -a(S"'enc_Signal'/2" -p149471 -S"'enc_Signal'(${1:Val}, ${2:TagIn}) $3" -p149472 -tp149473 -a(S"'enc_SignalDirection'/2" -p149474 -S"'enc_SignalDirection'(${1:Val}, ${2:TagIn}) $3" -p149475 -tp149476 -a(S"'enc_SignalName'/2" -p149477 -S"'enc_SignalName'(${1:Val}, ${2:TagIn}) $3" -p149478 -tp149479 -a(S"'enc_SignalRequest'/2" -p149480 -S"'enc_SignalRequest'(${1:Val}, ${2:TagIn}) $3" -p149481 -tp149482 -a(S"'enc_SignalType'/2" -p149483 -S"'enc_SignalType'(${1:Val}, ${2:TagIn}) $3" -p149484 -tp149485 -a(S"'enc_SignalsDescriptor'/2" -p149486 -S"'enc_SignalsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p149487 -tp149488 -a(S"'enc_StatisticsDescriptor'/2" -p149489 -S"'enc_StatisticsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p149490 -tp149491 -a(S"'enc_StatisticsParameter'/2" -p149492 -S"'enc_StatisticsParameter'(${1:Val}, ${2:TagIn}) $3" -p149493 -tp149494 -a(S"'enc_StreamDescriptor'/2" -p149495 -S"'enc_StreamDescriptor'(${1:Val}, ${2:TagIn}) $3" -p149496 -tp149497 -a(S"'enc_StreamID'/2" -p149498 -S"'enc_StreamID'(${1:Val}, ${2:TagIn}) $3" -p149499 -tp149500 -a(S"'enc_StreamMode'/2" -p149501 -S"'enc_StreamMode'(${1:Val}, ${2:TagIn}) $3" -p149502 -tp149503 -a(S"'enc_StreamParms'/2" -p149504 -S"'enc_StreamParms'(${1:Val}, ${2:TagIn}) $3" -p149505 -tp149506 -a(S"'enc_SubtractRequest'/2" -p149507 -S"'enc_SubtractRequest'(${1:Val}, ${2:TagIn}) $3" -p149508 -tp149509 -a(S"'enc_TerminationAudit'/2" -p149510 -S"'enc_TerminationAudit'(${1:Val}, ${2:TagIn}) $3" -p149511 -tp149512 -a(S"'enc_TerminationID'/2" -p149513 -S"'enc_TerminationID'(${1:Val}, ${2:TagIn}) $3" -p149514 -tp149515 -a(S"'enc_TerminationIDList'/2" -p149516 -S"'enc_TerminationIDList'(${1:Val}, ${2:TagIn}) $3" -p149517 -tp149518 -a(S"'enc_TerminationStateDescriptor'/2" -p149519 -S"'enc_TerminationStateDescriptor'(${1:Val}, ${2:TagIn}) $3" -p149520 -tp149521 -a(S"'enc_TimeNotation'/2" -p149522 -S"'enc_TimeNotation'(${1:Val}, ${2:TagIn}) $3" -p149523 -tp149524 -a(S"'enc_TopologyRequest'/2" -p149525 -S"'enc_TopologyRequest'(${1:Val}, ${2:TagIn}) $3" -p149526 -tp149527 -a(S"'enc_Transaction'/2" -p149528 -S"'enc_Transaction'(${1:Val}, ${2:TagIn}) $3" -p149529 -tp149530 -a(S"'enc_TransactionAck'/2" -p149531 -S"'enc_TransactionAck'(${1:Val}, ${2:TagIn}) $3" -p149532 -tp149533 -a(S"'enc_TransactionId'/2" -p149534 -S"'enc_TransactionId'(${1:Val}, ${2:TagIn}) $3" -p149535 -tp149536 -a(S"'enc_TransactionPending'/2" -p149537 -S"'enc_TransactionPending'(${1:Val}, ${2:TagIn}) $3" -p149538 -tp149539 -a(S"'enc_TransactionReply'/2" -p149540 -S"'enc_TransactionReply'(${1:Val}, ${2:TagIn}) $3" -p149541 -tp149542 -a(S"'enc_TransactionRequest'/2" -p149543 -S"'enc_TransactionRequest'(${1:Val}, ${2:TagIn}) $3" -p149544 -tp149545 -a(S"'enc_TransactionResponseAck'/2" -p149546 -S"'enc_TransactionResponseAck'(${1:Val}, ${2:TagIn}) $3" -p149547 -tp149548 -a(S"'enc_Value'/2" -p149549 -S"'enc_Value'(${1:Val}, ${2:TagIn}) $3" -p149550 -tp149551 -a(S"'enc_WildcardField'/2" -p149552 -S"'enc_WildcardField'(${1:Val}, ${2:TagIn}) $3" -p149553 -tp149554 -a(S'decode/2' -p149555 -S'decode(${1:Type}, ${2:Data}) $3' -p149556 -tp149557 -a(S'decode_disp/2' -p149558 -S'decode_disp(${1:Type}, ${2:Data}) $3' -p149559 -tp149560 -a(S'encode/2' -p149561 -S'encode(${1:Type}, ${2:Data}) $3' -p149562 -tp149563 -a(S'encode_disp/2' -p149564 -S'encode_disp(${1:Type}, ${2:Data}) $3' -p149565 -tp149566 -a(S'encoding_rule/0' -p149567 -S'encoding_rule() $1' -p149568 -tp149569 -a(S'info/0' -p149570 -S'info() $1' -p149571 -tp149572 -asS'ETraP_Server' -p149573 -(lp149574 -(S'code_change/3' -p149575 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p149576 -tp149577 -a(S'commit/1' -p149578 -S'commit(${1:OE_THIS}) $2' -p149579 -tp149580 -a(S'commit/2' -p149581 -S'commit(${1:OE_THIS}, ${2:OE_Options}) $3' -p149582 -tp149583 -a(S'commit_one_phase/1' -p149584 -S'commit_one_phase(${1:OE_THIS}) $2' -p149585 -tp149586 -a(S'commit_one_phase/2' -p149587 -S'commit_one_phase(${1:OE_THIS}, ${2:OE_Options}) $3' -p149588 -tp149589 -a(S'create_subtransaction/1' -p149590 -S'create_subtransaction(${1:OE_THIS}) $2' -p149591 -tp149592 -a(S'create_subtransaction/2' -p149593 -S'create_subtransaction(${1:OE_THIS}, ${2:OE_Options}) $3' -p149594 -tp149595 -a(S'forget/1' -p149596 -S'forget(${1:OE_THIS}) $2' -p149597 -tp149598 -a(S'forget/2' -p149599 -S'forget(${1:OE_THIS}, ${2:OE_Options}) $3' -p149600 -tp149601 -a(S'get_coordinator/1' -p149602 -S'get_coordinator(${1:OE_THIS}) $2' -p149603 -tp149604 -a(S'get_coordinator/2' -p149605 -S'get_coordinator(${1:OE_THIS}, ${2:OE_Options}) $3' -p149606 -tp149607 -a(S'get_parent_status/1' -p149608 -S'get_parent_status(${1:OE_THIS}) $2' -p149609 -tp149610 -a(S'get_parent_status/2' -p149611 -S'get_parent_status(${1:OE_THIS}, ${2:OE_Options}) $3' -p149612 -tp149613 -a(S'get_status/1' -p149614 -S'get_status(${1:OE_THIS}) $2' -p149615 -tp149616 -a(S'get_status/2' -p149617 -S'get_status(${1:OE_THIS}, ${2:OE_Options}) $3' -p149618 -tp149619 -a(S'get_terminator/1' -p149620 -S'get_terminator(${1:OE_THIS}) $2' -p149621 -tp149622 -a(S'get_terminator/2' -p149623 -S'get_terminator(${1:OE_THIS}, ${2:OE_Options}) $3' -p149624 -tp149625 -a(S'get_top_level_status/1' -p149626 -S'get_top_level_status(${1:OE_THIS}) $2' -p149627 -tp149628 -a(S'get_top_level_status/2' -p149629 -S'get_top_level_status(${1:OE_THIS}, ${2:OE_Options}) $3' -p149630 -tp149631 -a(S'get_transaction_name/1' -p149632 -S'get_transaction_name(${1:OE_THIS}) $2' -p149633 -tp149634 -a(S'get_transaction_name/2' -p149635 -S'get_transaction_name(${1:OE_THIS}, ${2:OE_Options}) $3' -p149636 -tp149637 -a(S'get_txcontext/1' -p149638 -S'get_txcontext(${1:OE_THIS}) $2' -p149639 -tp149640 -a(S'get_txcontext/2' -p149641 -S'get_txcontext(${1:OE_THIS}, ${2:OE_Options}) $3' -p149642 -tp149643 -a(S'handle_call/3' -p149644 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:OE_State}) $4' -p149645 -tp149646 -a(S'handle_cast/2' -p149647 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p149648 -tp149649 -a(S'handle_info/2' -p149650 -S'handle_info(${1:Info}, ${2:State}) $3' -p149651 -tp149652 -a(S'hash_top_level_tran/1' -p149653 -S'hash_top_level_tran(${1:OE_THIS}) $2' -p149654 -tp149655 -a(S'hash_top_level_tran/2' -p149656 -S'hash_top_level_tran(${1:OE_THIS}, ${2:OE_Options}) $3' -p149657 -tp149658 -a(S'hash_transaction/1' -p149659 -S'hash_transaction(${1:OE_THIS}) $2' -p149660 -tp149661 -a(S'hash_transaction/2' -p149662 -S'hash_transaction(${1:OE_THIS}, ${2:OE_Options}) $3' -p149663 -tp149664 -a(S'init/1' -p149665 -S'init(${1:Env}) $2' -p149666 -tp149667 -a(S'is_ancestor_transaction/2' -p149668 -S'is_ancestor_transaction(${1:OE_THIS}, ${2:Tc}) $3' -p149669 -tp149670 -a(S'is_ancestor_transaction/3' -p149671 -S'is_ancestor_transaction(${1:OE_THIS}, ${2:OE_Options}, ${3:Tc}) $4' -p149672 -tp149673 -a(S'is_descendant_transaction/2' -p149674 -S'is_descendant_transaction(${1:OE_THIS}, ${2:Tc}) $3' -p149675 -tp149676 -a(S'is_descendant_transaction/3' -p149677 -S'is_descendant_transaction(${1:OE_THIS}, ${2:OE_Options}, ${3:Tc}) $4' -p149678 -tp149679 -a(S'is_related_transaction/2' -p149680 -S'is_related_transaction(${1:OE_THIS}, ${2:Tc}) $3' -p149681 -tp149682 -a(S'is_related_transaction/3' -p149683 -S'is_related_transaction(${1:OE_THIS}, ${2:OE_Options}, ${3:Tc}) $4' -p149684 -tp149685 -a(S'is_same_transaction/2' -p149686 -S'is_same_transaction(${1:OE_THIS}, ${2:Tc}) $3' -p149687 -tp149688 -a(S'is_same_transaction/3' -p149689 -S'is_same_transaction(${1:OE_THIS}, ${2:OE_Options}, ${3:Tc}) $4' -p149690 -tp149691 -a(S'is_top_level_transaction/1' -p149692 -S'is_top_level_transaction(${1:OE_THIS}) $2' -p149693 -tp149694 -a(S'is_top_level_transaction/2' -p149695 -S'is_top_level_transaction(${1:OE_THIS}, ${2:OE_Options}) $3' -p149696 -tp149697 -a(S'oe_create/0' -p149698 -S'oe_create() $1' -p149699 -tp149700 -a(S'oe_create/1' -p149701 -S'oe_create(${1:Env}) $2' -p149702 -tp149703 -a(S'oe_create/2' -p149704 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p149705 -tp149706 -a(S'oe_create_link/0' -p149707 -S'oe_create_link() $1' -p149708 -tp149709 -a(S'oe_create_link/1' -p149710 -S'oe_create_link(${1:Env}) $2' -p149711 -tp149712 -a(S'oe_create_link/2' -p149713 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p149714 -tp149715 -a(S'oe_get_interface/0' -p149716 -S'oe_get_interface() $1' -p149717 -tp149718 -a(S'oe_is_a/1' -p149719 -S'oe_is_a(${1:Param1}) $2' -p149720 -tp149721 -a(S'oe_tc/1' -p149722 -S'oe_tc(${1:Param1}) $2' -p149723 -tp149724 -a(S'prepare/1' -p149725 -S'prepare(${1:OE_THIS}) $2' -p149726 -tp149727 -a(S'prepare/2' -p149728 -S'prepare(${1:OE_THIS}, ${2:OE_Options}) $3' -p149729 -tp149730 -a(S'register_resource/2' -p149731 -S'register_resource(${1:OE_THIS}, ${2:R}) $3' -p149732 -tp149733 -a(S'register_resource/3' -p149734 -S'register_resource(${1:OE_THIS}, ${2:OE_Options}, ${3:R}) $4' -p149735 -tp149736 -a(S'register_subtran_aware/2' -p149737 -S'register_subtran_aware(${1:OE_THIS}, ${2:R}) $3' -p149738 -tp149739 -a(S'register_subtran_aware/3' -p149740 -S'register_subtran_aware(${1:OE_THIS}, ${2:OE_Options}, ${3:R}) $4' -p149741 -tp149742 -a(S'replay_completion/2' -p149743 -S'replay_completion(${1:OE_THIS}, ${2:R}) $3' -p149744 -tp149745 -a(S'replay_completion/3' -p149746 -S'replay_completion(${1:OE_THIS}, ${2:OE_Options}, ${3:R}) $4' -p149747 -tp149748 -a(S'rollback/1' -p149749 -S'rollback(${1:OE_THIS}) $2' -p149750 -tp149751 -a(S'rollback/2' -p149752 -S'rollback(${1:OE_THIS}, ${2:OE_Options}) $3' -p149753 -tp149754 -a(S'rollback_only/1' -p149755 -S'rollback_only(${1:OE_THIS}) $2' -p149756 -tp149757 -a(S'rollback_only/2' -p149758 -S'rollback_only(${1:OE_THIS}, ${2:OE_Options}) $3' -p149759 -tp149760 -a(S'terminate/2' -p149761 -S'terminate(${1:Reason}, ${2:State}) $3' -p149762 -tp149763 -a(S'typeID/0' -p149764 -S'typeID() $1' -p149765 -tp149766 -asS'megaco_ber_media_gateway_control_prev3c' -p149767 -(lp149768 -(S"'dec_ActionReply'/2" -p149769 -S"'dec_ActionReply'(${1:Bytes}, ${2:OptOrMand}) $3" -p149770 -tp149771 -a(S"'dec_ActionReply'/3" -p149772 -S"'dec_ActionReply'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149773 -tp149774 -a(S"'dec_ActionRequest'/2" -p149775 -S"'dec_ActionRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p149776 -tp149777 -a(S"'dec_ActionRequest'/3" -p149778 -S"'dec_ActionRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149779 -tp149780 -a(S"'dec_AmmDescriptor'/2" -p149781 -S"'dec_AmmDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p149782 -tp149783 -a(S"'dec_AmmDescriptor'/3" -p149784 -S"'dec_AmmDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149785 -tp149786 -a(S"'dec_AmmRequest'/2" -p149787 -S"'dec_AmmRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p149788 -tp149789 -a(S"'dec_AmmRequest'/3" -p149790 -S"'dec_AmmRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149791 -tp149792 -a(S"'dec_AmmsReply'/2" -p149793 -S"'dec_AmmsReply'(${1:Bytes}, ${2:OptOrMand}) $3" -p149794 -tp149795 -a(S"'dec_AmmsReply'/3" -p149796 -S"'dec_AmmsReply'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149797 -tp149798 -a(S"'dec_AuditDescriptor'/2" -p149799 -S"'dec_AuditDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p149800 -tp149801 -a(S"'dec_AuditDescriptor'/3" -p149802 -S"'dec_AuditDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149803 -tp149804 -a(S"'dec_AuditReply'/2" -p149805 -S"'dec_AuditReply'(${1:Bytes}, ${2:OptOrMand}) $3" -p149806 -tp149807 -a(S"'dec_AuditReply'/3" -p149808 -S"'dec_AuditReply'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149809 -tp149810 -a(S"'dec_AuditRequest'/2" -p149811 -S"'dec_AuditRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p149812 -tp149813 -a(S"'dec_AuditRequest'/3" -p149814 -S"'dec_AuditRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149815 -tp149816 -a(S"'dec_AuditResult'/2" -p149817 -S"'dec_AuditResult'(${1:Bytes}, ${2:OptOrMand}) $3" -p149818 -tp149819 -a(S"'dec_AuditResult'/3" -p149820 -S"'dec_AuditResult'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149821 -tp149822 -a(S"'dec_AuditReturnParameter'/2" -p149823 -S"'dec_AuditReturnParameter'(${1:Bytes}, ${2:OptOrMand}) $3" -p149824 -tp149825 -a(S"'dec_AuditReturnParameter'/3" -p149826 -S"'dec_AuditReturnParameter'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149827 -tp149828 -a(S"'dec_AuthData'/2" -p149829 -S"'dec_AuthData'(${1:Bytes}, ${2:OptOrMand}) $3" -p149830 -tp149831 -a(S"'dec_AuthData'/3" -p149832 -S"'dec_AuthData'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149833 -tp149834 -a(S"'dec_AuthenticationHeader'/2" -p149835 -S"'dec_AuthenticationHeader'(${1:Bytes}, ${2:OptOrMand}) $3" -p149836 -tp149837 -a(S"'dec_AuthenticationHeader'/3" -p149838 -S"'dec_AuthenticationHeader'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149839 -tp149840 -a(S"'dec_Command'/2" -p149841 -S"'dec_Command'(${1:Bytes}, ${2:OptOrMand}) $3" -p149842 -tp149843 -a(S"'dec_Command'/3" -p149844 -S"'dec_Command'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149845 -tp149846 -a(S"'dec_CommandReply'/2" -p149847 -S"'dec_CommandReply'(${1:Bytes}, ${2:OptOrMand}) $3" -p149848 -tp149849 -a(S"'dec_CommandReply'/3" -p149850 -S"'dec_CommandReply'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149851 -tp149852 -a(S"'dec_CommandRequest'/2" -p149853 -S"'dec_CommandRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p149854 -tp149855 -a(S"'dec_CommandRequest'/3" -p149856 -S"'dec_CommandRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149857 -tp149858 -a(S"'dec_ContextAttrAuditRequest'/2" -p149859 -S"'dec_ContextAttrAuditRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p149860 -tp149861 -a(S"'dec_ContextAttrAuditRequest'/3" -p149862 -S"'dec_ContextAttrAuditRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149863 -tp149864 -a(S"'dec_ContextID'/2" -p149865 -S"'dec_ContextID'(${1:Bytes}, ${2:OptOrMand}) $3" -p149866 -tp149867 -a(S"'dec_ContextID'/3" -p149868 -S"'dec_ContextID'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149869 -tp149870 -a(S"'dec_ContextRequest'/2" -p149871 -S"'dec_ContextRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p149872 -tp149873 -a(S"'dec_ContextRequest'/3" -p149874 -S"'dec_ContextRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149875 -tp149876 -a(S"'dec_DigitMapDescriptor'/2" -p149877 -S"'dec_DigitMapDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p149878 -tp149879 -a(S"'dec_DigitMapDescriptor'/3" -p149880 -S"'dec_DigitMapDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149881 -tp149882 -a(S"'dec_DigitMapName'/2" -p149883 -S"'dec_DigitMapName'(${1:Bytes}, ${2:OptOrMand}) $3" -p149884 -tp149885 -a(S"'dec_DigitMapName'/3" -p149886 -S"'dec_DigitMapName'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149887 -tp149888 -a(S"'dec_DigitMapValue'/2" -p149889 -S"'dec_DigitMapValue'(${1:Bytes}, ${2:OptOrMand}) $3" -p149890 -tp149891 -a(S"'dec_DigitMapValue'/3" -p149892 -S"'dec_DigitMapValue'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149893 -tp149894 -a(S"'dec_DomainName'/2" -p149895 -S"'dec_DomainName'(${1:Bytes}, ${2:OptOrMand}) $3" -p149896 -tp149897 -a(S"'dec_DomainName'/3" -p149898 -S"'dec_DomainName'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149899 -tp149900 -a(S"'dec_ErrorCode'/2" -p149901 -S"'dec_ErrorCode'(${1:Bytes}, ${2:OptOrMand}) $3" -p149902 -tp149903 -a(S"'dec_ErrorCode'/3" -p149904 -S"'dec_ErrorCode'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149905 -tp149906 -a(S"'dec_ErrorDescriptor'/2" -p149907 -S"'dec_ErrorDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p149908 -tp149909 -a(S"'dec_ErrorDescriptor'/3" -p149910 -S"'dec_ErrorDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149911 -tp149912 -a(S"'dec_ErrorText'/2" -p149913 -S"'dec_ErrorText'(${1:Bytes}, ${2:OptOrMand}) $3" -p149914 -tp149915 -a(S"'dec_ErrorText'/3" -p149916 -S"'dec_ErrorText'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149917 -tp149918 -a(S"'dec_EventBufferControl'/2" -p149919 -S"'dec_EventBufferControl'(${1:Bytes}, ${2:OptOrMand}) $3" -p149920 -tp149921 -a(S"'dec_EventBufferControl'/3" -p149922 -S"'dec_EventBufferControl'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149923 -tp149924 -a(S"'dec_EventBufferDescriptor'/2" -p149925 -S"'dec_EventBufferDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p149926 -tp149927 -a(S"'dec_EventBufferDescriptor'/3" -p149928 -S"'dec_EventBufferDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149929 -tp149930 -a(S"'dec_EventDM'/2" -p149931 -S"'dec_EventDM'(${1:Bytes}, ${2:OptOrMand}) $3" -p149932 -tp149933 -a(S"'dec_EventDM'/3" -p149934 -S"'dec_EventDM'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149935 -tp149936 -a(S"'dec_EventName'/2" -p149937 -S"'dec_EventName'(${1:Bytes}, ${2:OptOrMand}) $3" -p149938 -tp149939 -a(S"'dec_EventName'/3" -p149940 -S"'dec_EventName'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149941 -tp149942 -a(S"'dec_EventParameter'/2" -p149943 -S"'dec_EventParameter'(${1:Bytes}, ${2:OptOrMand}) $3" -p149944 -tp149945 -a(S"'dec_EventParameter'/3" -p149946 -S"'dec_EventParameter'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149947 -tp149948 -a(S"'dec_EventSpec'/2" -p149949 -S"'dec_EventSpec'(${1:Bytes}, ${2:OptOrMand}) $3" -p149950 -tp149951 -a(S"'dec_EventSpec'/3" -p149952 -S"'dec_EventSpec'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149953 -tp149954 -a(S"'dec_EventsDescriptor'/2" -p149955 -S"'dec_EventsDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p149956 -tp149957 -a(S"'dec_EventsDescriptor'/3" -p149958 -S"'dec_EventsDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149959 -tp149960 -a(S"'dec_H221NonStandard'/2" -p149961 -S"'dec_H221NonStandard'(${1:Bytes}, ${2:OptOrMand}) $3" -p149962 -tp149963 -a(S"'dec_H221NonStandard'/3" -p149964 -S"'dec_H221NonStandard'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149965 -tp149966 -a(S"'dec_IP4Address'/2" -p149967 -S"'dec_IP4Address'(${1:Bytes}, ${2:OptOrMand}) $3" -p149968 -tp149969 -a(S"'dec_IP4Address'/3" -p149970 -S"'dec_IP4Address'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149971 -tp149972 -a(S"'dec_IP6Address'/2" -p149973 -S"'dec_IP6Address'(${1:Bytes}, ${2:OptOrMand}) $3" -p149974 -tp149975 -a(S"'dec_IP6Address'/3" -p149976 -S"'dec_IP6Address'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149977 -tp149978 -a(S"'dec_IndAudDigitMapDescriptor'/2" -p149979 -S"'dec_IndAudDigitMapDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p149980 -tp149981 -a(S"'dec_IndAudDigitMapDescriptor'/3" -p149982 -S"'dec_IndAudDigitMapDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149983 -tp149984 -a(S"'dec_IndAudEventBufferDescriptor'/2" -p149985 -S"'dec_IndAudEventBufferDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p149986 -tp149987 -a(S"'dec_IndAudEventBufferDescriptor'/3" -p149988 -S"'dec_IndAudEventBufferDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149989 -tp149990 -a(S"'dec_IndAudEventsDescriptor'/2" -p149991 -S"'dec_IndAudEventsDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p149992 -tp149993 -a(S"'dec_IndAudEventsDescriptor'/3" -p149994 -S"'dec_IndAudEventsDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p149995 -tp149996 -a(S"'dec_IndAudLocalControlDescriptor'/2" -p149997 -S"'dec_IndAudLocalControlDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p149998 -tp149999 -a(S"'dec_IndAudLocalControlDescriptor'/3" -p150000 -S"'dec_IndAudLocalControlDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150001 -tp150002 -a(S"'dec_IndAudLocalRemoteDescriptor'/2" -p150003 -S"'dec_IndAudLocalRemoteDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p150004 -tp150005 -a(S"'dec_IndAudLocalRemoteDescriptor'/3" -p150006 -S"'dec_IndAudLocalRemoteDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150007 -tp150008 -a(S"'dec_IndAudMediaDescriptor'/2" -p150009 -S"'dec_IndAudMediaDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p150010 -tp150011 -a(S"'dec_IndAudMediaDescriptor'/3" -p150012 -S"'dec_IndAudMediaDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150013 -tp150014 -a(S"'dec_IndAudPackagesDescriptor'/2" -p150015 -S"'dec_IndAudPackagesDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p150016 -tp150017 -a(S"'dec_IndAudPackagesDescriptor'/3" -p150018 -S"'dec_IndAudPackagesDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150019 -tp150020 -a(S"'dec_IndAudPropertyGroup'/2" -p150021 -S"'dec_IndAudPropertyGroup'(${1:Bytes}, ${2:OptOrMand}) $3" -p150022 -tp150023 -a(S"'dec_IndAudPropertyGroup'/3" -p150024 -S"'dec_IndAudPropertyGroup'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150025 -tp150026 -a(S"'dec_IndAudPropertyParm'/2" -p150027 -S"'dec_IndAudPropertyParm'(${1:Bytes}, ${2:OptOrMand}) $3" -p150028 -tp150029 -a(S"'dec_IndAudPropertyParm'/3" -p150030 -S"'dec_IndAudPropertyParm'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150031 -tp150032 -a(S"'dec_IndAudSeqSigList'/2" -p150033 -S"'dec_IndAudSeqSigList'(${1:Bytes}, ${2:OptOrMand}) $3" -p150034 -tp150035 -a(S"'dec_IndAudSeqSigList'/3" -p150036 -S"'dec_IndAudSeqSigList'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150037 -tp150038 -a(S"'dec_IndAudSignal'/2" -p150039 -S"'dec_IndAudSignal'(${1:Bytes}, ${2:OptOrMand}) $3" -p150040 -tp150041 -a(S"'dec_IndAudSignal'/3" -p150042 -S"'dec_IndAudSignal'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150043 -tp150044 -a(S"'dec_IndAudSignalsDescriptor'/2" -p150045 -S"'dec_IndAudSignalsDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p150046 -tp150047 -a(S"'dec_IndAudSignalsDescriptor'/3" -p150048 -S"'dec_IndAudSignalsDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150049 -tp150050 -a(S"'dec_IndAudStatisticsDescriptor'/2" -p150051 -S"'dec_IndAudStatisticsDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p150052 -tp150053 -a(S"'dec_IndAudStatisticsDescriptor'/3" -p150054 -S"'dec_IndAudStatisticsDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150055 -tp150056 -a(S"'dec_IndAudStreamDescriptor'/2" -p150057 -S"'dec_IndAudStreamDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p150058 -tp150059 -a(S"'dec_IndAudStreamDescriptor'/3" -p150060 -S"'dec_IndAudStreamDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150061 -tp150062 -a(S"'dec_IndAudStreamParms'/2" -p150063 -S"'dec_IndAudStreamParms'(${1:Bytes}, ${2:OptOrMand}) $3" -p150064 -tp150065 -a(S"'dec_IndAudStreamParms'/3" -p150066 -S"'dec_IndAudStreamParms'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150067 -tp150068 -a(S"'dec_IndAudTerminationStateDescriptor'/2" -p150069 -S"'dec_IndAudTerminationStateDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p150070 -tp150071 -a(S"'dec_IndAudTerminationStateDescriptor'/3" -p150072 -S"'dec_IndAudTerminationStateDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150073 -tp150074 -a(S"'dec_IndAuditParameter'/2" -p150075 -S"'dec_IndAuditParameter'(${1:Bytes}, ${2:OptOrMand}) $3" -p150076 -tp150077 -a(S"'dec_IndAuditParameter'/3" -p150078 -S"'dec_IndAuditParameter'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150079 -tp150080 -a(S"'dec_LocalControlDescriptor'/2" -p150081 -S"'dec_LocalControlDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p150082 -tp150083 -a(S"'dec_LocalControlDescriptor'/3" -p150084 -S"'dec_LocalControlDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150085 -tp150086 -a(S"'dec_LocalRemoteDescriptor'/2" -p150087 -S"'dec_LocalRemoteDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p150088 -tp150089 -a(S"'dec_LocalRemoteDescriptor'/3" -p150090 -S"'dec_LocalRemoteDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150091 -tp150092 -a(S"'dec_MId'/2" -p150093 -S"'dec_MId'(${1:Bytes}, ${2:OptOrMand}) $3" -p150094 -tp150095 -a(S"'dec_MId'/3" -p150096 -S"'dec_MId'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150097 -tp150098 -a(S"'dec_MediaDescriptor'/2" -p150099 -S"'dec_MediaDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p150100 -tp150101 -a(S"'dec_MediaDescriptor'/3" -p150102 -S"'dec_MediaDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150103 -tp150104 -a(S"'dec_MegacoMessage'/2" -p150105 -S"'dec_MegacoMessage'(${1:Bytes}, ${2:OptOrMand}) $3" -p150106 -tp150107 -a(S"'dec_MegacoMessage'/3" -p150108 -S"'dec_MegacoMessage'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150109 -tp150110 -a(S"'dec_Message'/2" -p150111 -S"'dec_Message'(${1:Bytes}, ${2:OptOrMand}) $3" -p150112 -tp150113 -a(S"'dec_Message'/3" -p150114 -S"'dec_Message'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150115 -tp150116 -a(S"'dec_ModemDescriptor'/2" -p150117 -S"'dec_ModemDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p150118 -tp150119 -a(S"'dec_ModemDescriptor'/3" -p150120 -S"'dec_ModemDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150121 -tp150122 -a(S"'dec_ModemType'/2" -p150123 -S"'dec_ModemType'(${1:Bytes}, ${2:OptOrMand}) $3" -p150124 -tp150125 -a(S"'dec_ModemType'/3" -p150126 -S"'dec_ModemType'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150127 -tp150128 -a(S"'dec_MuxDescriptor'/2" -p150129 -S"'dec_MuxDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p150130 -tp150131 -a(S"'dec_MuxDescriptor'/3" -p150132 -S"'dec_MuxDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150133 -tp150134 -a(S"'dec_MuxType'/2" -p150135 -S"'dec_MuxType'(${1:Bytes}, ${2:OptOrMand}) $3" -p150136 -tp150137 -a(S"'dec_MuxType'/3" -p150138 -S"'dec_MuxType'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150139 -tp150140 -a(S"'dec_Name'/2" -p150141 -S"'dec_Name'(${1:Bytes}, ${2:OptOrMand}) $3" -p150142 -tp150143 -a(S"'dec_Name'/3" -p150144 -S"'dec_Name'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150145 -tp150146 -a(S"'dec_NonStandardData'/2" -p150147 -S"'dec_NonStandardData'(${1:Bytes}, ${2:OptOrMand}) $3" -p150148 -tp150149 -a(S"'dec_NonStandardData'/3" -p150150 -S"'dec_NonStandardData'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150151 -tp150152 -a(S"'dec_NonStandardIdentifier'/2" -p150153 -S"'dec_NonStandardIdentifier'(${1:Bytes}, ${2:OptOrMand}) $3" -p150154 -tp150155 -a(S"'dec_NonStandardIdentifier'/3" -p150156 -S"'dec_NonStandardIdentifier'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150157 -tp150158 -a(S"'dec_NotifyBehaviour'/2" -p150159 -S"'dec_NotifyBehaviour'(${1:Bytes}, ${2:OptOrMand}) $3" -p150160 -tp150161 -a(S"'dec_NotifyBehaviour'/3" -p150162 -S"'dec_NotifyBehaviour'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150163 -tp150164 -a(S"'dec_NotifyCompletion'/2" -p150165 -S"'dec_NotifyCompletion'(${1:Bytes}, ${2:OptOrMand}) $3" -p150166 -tp150167 -a(S"'dec_NotifyCompletion'/3" -p150168 -S"'dec_NotifyCompletion'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150169 -tp150170 -a(S"'dec_NotifyReply'/2" -p150171 -S"'dec_NotifyReply'(${1:Bytes}, ${2:OptOrMand}) $3" -p150172 -tp150173 -a(S"'dec_NotifyReply'/3" -p150174 -S"'dec_NotifyReply'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150175 -tp150176 -a(S"'dec_NotifyRequest'/2" -p150177 -S"'dec_NotifyRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p150178 -tp150179 -a(S"'dec_NotifyRequest'/3" -p150180 -S"'dec_NotifyRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150181 -tp150182 -a(S"'dec_ObservedEvent'/2" -p150183 -S"'dec_ObservedEvent'(${1:Bytes}, ${2:OptOrMand}) $3" -p150184 -tp150185 -a(S"'dec_ObservedEvent'/3" -p150186 -S"'dec_ObservedEvent'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150187 -tp150188 -a(S"'dec_ObservedEventsDescriptor'/2" -p150189 -S"'dec_ObservedEventsDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p150190 -tp150191 -a(S"'dec_ObservedEventsDescriptor'/3" -p150192 -S"'dec_ObservedEventsDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150193 -tp150194 -a(S"'dec_PackagesDescriptor'/2" -p150195 -S"'dec_PackagesDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p150196 -tp150197 -a(S"'dec_PackagesDescriptor'/3" -p150198 -S"'dec_PackagesDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150199 -tp150200 -a(S"'dec_PackagesItem'/2" -p150201 -S"'dec_PackagesItem'(${1:Bytes}, ${2:OptOrMand}) $3" -p150202 -tp150203 -a(S"'dec_PackagesItem'/3" -p150204 -S"'dec_PackagesItem'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150205 -tp150206 -a(S"'dec_PathName'/2" -p150207 -S"'dec_PathName'(${1:Bytes}, ${2:OptOrMand}) $3" -p150208 -tp150209 -a(S"'dec_PathName'/3" -p150210 -S"'dec_PathName'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150211 -tp150212 -a(S"'dec_PkgdName'/2" -p150213 -S"'dec_PkgdName'(${1:Bytes}, ${2:OptOrMand}) $3" -p150214 -tp150215 -a(S"'dec_PkgdName'/3" -p150216 -S"'dec_PkgdName'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150217 -tp150218 -a(S"'dec_PropertyGroup'/2" -p150219 -S"'dec_PropertyGroup'(${1:Bytes}, ${2:OptOrMand}) $3" -p150220 -tp150221 -a(S"'dec_PropertyGroup'/3" -p150222 -S"'dec_PropertyGroup'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150223 -tp150224 -a(S"'dec_PropertyParm'/2" -p150225 -S"'dec_PropertyParm'(${1:Bytes}, ${2:OptOrMand}) $3" -p150226 -tp150227 -a(S"'dec_PropertyParm'/3" -p150228 -S"'dec_PropertyParm'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150229 -tp150230 -a(S"'dec_RegulatedEmbeddedDescriptor'/2" -p150231 -S"'dec_RegulatedEmbeddedDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p150232 -tp150233 -a(S"'dec_RegulatedEmbeddedDescriptor'/3" -p150234 -S"'dec_RegulatedEmbeddedDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150235 -tp150236 -a(S"'dec_Relation'/2" -p150237 -S"'dec_Relation'(${1:Bytes}, ${2:OptOrMand}) $3" -p150238 -tp150239 -a(S"'dec_Relation'/3" -p150240 -S"'dec_Relation'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150241 -tp150242 -a(S"'dec_RequestID'/2" -p150243 -S"'dec_RequestID'(${1:Bytes}, ${2:OptOrMand}) $3" -p150244 -tp150245 -a(S"'dec_RequestID'/3" -p150246 -S"'dec_RequestID'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150247 -tp150248 -a(S"'dec_RequestedActions'/2" -p150249 -S"'dec_RequestedActions'(${1:Bytes}, ${2:OptOrMand}) $3" -p150250 -tp150251 -a(S"'dec_RequestedActions'/3" -p150252 -S"'dec_RequestedActions'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150253 -tp150254 -a(S"'dec_RequestedEvent'/2" -p150255 -S"'dec_RequestedEvent'(${1:Bytes}, ${2:OptOrMand}) $3" -p150256 -tp150257 -a(S"'dec_RequestedEvent'/3" -p150258 -S"'dec_RequestedEvent'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150259 -tp150260 -a(S"'dec_SecondEventsDescriptor'/2" -p150261 -S"'dec_SecondEventsDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p150262 -tp150263 -a(S"'dec_SecondEventsDescriptor'/3" -p150264 -S"'dec_SecondEventsDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150265 -tp150266 -a(S"'dec_SecondRequestedActions'/2" -p150267 -S"'dec_SecondRequestedActions'(${1:Bytes}, ${2:OptOrMand}) $3" -p150268 -tp150269 -a(S"'dec_SecondRequestedActions'/3" -p150270 -S"'dec_SecondRequestedActions'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150271 -tp150272 -a(S"'dec_SecondRequestedEvent'/2" -p150273 -S"'dec_SecondRequestedEvent'(${1:Bytes}, ${2:OptOrMand}) $3" -p150274 -tp150275 -a(S"'dec_SecondRequestedEvent'/3" -p150276 -S"'dec_SecondRequestedEvent'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150277 -tp150278 -a(S"'dec_SecurityParmIndex'/2" -p150279 -S"'dec_SecurityParmIndex'(${1:Bytes}, ${2:OptOrMand}) $3" -p150280 -tp150281 -a(S"'dec_SecurityParmIndex'/3" -p150282 -S"'dec_SecurityParmIndex'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150283 -tp150284 -a(S"'dec_SegmentNumber'/2" -p150285 -S"'dec_SegmentNumber'(${1:Bytes}, ${2:OptOrMand}) $3" -p150286 -tp150287 -a(S"'dec_SegmentNumber'/3" -p150288 -S"'dec_SegmentNumber'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150289 -tp150290 -a(S"'dec_SelectLogic'/2" -p150291 -S"'dec_SelectLogic'(${1:Bytes}, ${2:OptOrMand}) $3" -p150292 -tp150293 -a(S"'dec_SelectLogic'/3" -p150294 -S"'dec_SelectLogic'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150295 -tp150296 -a(S"'dec_SeqSigList'/2" -p150297 -S"'dec_SeqSigList'(${1:Bytes}, ${2:OptOrMand}) $3" -p150298 -tp150299 -a(S"'dec_SeqSigList'/3" -p150300 -S"'dec_SeqSigList'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150301 -tp150302 -a(S"'dec_SequenceNum'/2" -p150303 -S"'dec_SequenceNum'(${1:Bytes}, ${2:OptOrMand}) $3" -p150304 -tp150305 -a(S"'dec_SequenceNum'/3" -p150306 -S"'dec_SequenceNum'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150307 -tp150308 -a(S"'dec_ServiceChangeAddress'/2" -p150309 -S"'dec_ServiceChangeAddress'(${1:Bytes}, ${2:OptOrMand}) $3" -p150310 -tp150311 -a(S"'dec_ServiceChangeAddress'/3" -p150312 -S"'dec_ServiceChangeAddress'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150313 -tp150314 -a(S"'dec_ServiceChangeMethod'/2" -p150315 -S"'dec_ServiceChangeMethod'(${1:Bytes}, ${2:OptOrMand}) $3" -p150316 -tp150317 -a(S"'dec_ServiceChangeMethod'/3" -p150318 -S"'dec_ServiceChangeMethod'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150319 -tp150320 -a(S"'dec_ServiceChangeParm'/2" -p150321 -S"'dec_ServiceChangeParm'(${1:Bytes}, ${2:OptOrMand}) $3" -p150322 -tp150323 -a(S"'dec_ServiceChangeParm'/3" -p150324 -S"'dec_ServiceChangeParm'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150325 -tp150326 -a(S"'dec_ServiceChangeProfile'/2" -p150327 -S"'dec_ServiceChangeProfile'(${1:Bytes}, ${2:OptOrMand}) $3" -p150328 -tp150329 -a(S"'dec_ServiceChangeProfile'/3" -p150330 -S"'dec_ServiceChangeProfile'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150331 -tp150332 -a(S"'dec_ServiceChangeReply'/2" -p150333 -S"'dec_ServiceChangeReply'(${1:Bytes}, ${2:OptOrMand}) $3" -p150334 -tp150335 -a(S"'dec_ServiceChangeReply'/3" -p150336 -S"'dec_ServiceChangeReply'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150337 -tp150338 -a(S"'dec_ServiceChangeRequest'/2" -p150339 -S"'dec_ServiceChangeRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p150340 -tp150341 -a(S"'dec_ServiceChangeRequest'/3" -p150342 -S"'dec_ServiceChangeRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150343 -tp150344 -a(S"'dec_ServiceChangeResParm'/2" -p150345 -S"'dec_ServiceChangeResParm'(${1:Bytes}, ${2:OptOrMand}) $3" -p150346 -tp150347 -a(S"'dec_ServiceChangeResParm'/3" -p150348 -S"'dec_ServiceChangeResParm'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150349 -tp150350 -a(S"'dec_ServiceChangeResult'/2" -p150351 -S"'dec_ServiceChangeResult'(${1:Bytes}, ${2:OptOrMand}) $3" -p150352 -tp150353 -a(S"'dec_ServiceChangeResult'/3" -p150354 -S"'dec_ServiceChangeResult'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150355 -tp150356 -a(S"'dec_ServiceState'/2" -p150357 -S"'dec_ServiceState'(${1:Bytes}, ${2:OptOrMand}) $3" -p150358 -tp150359 -a(S"'dec_ServiceState'/3" -p150360 -S"'dec_ServiceState'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150361 -tp150362 -a(S"'dec_SigParameter'/2" -p150363 -S"'dec_SigParameter'(${1:Bytes}, ${2:OptOrMand}) $3" -p150364 -tp150365 -a(S"'dec_SigParameter'/3" -p150366 -S"'dec_SigParameter'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150367 -tp150368 -a(S"'dec_Signal'/2" -p150369 -S"'dec_Signal'(${1:Bytes}, ${2:OptOrMand}) $3" -p150370 -tp150371 -a(S"'dec_Signal'/3" -p150372 -S"'dec_Signal'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150373 -tp150374 -a(S"'dec_SignalDirection'/2" -p150375 -S"'dec_SignalDirection'(${1:Bytes}, ${2:OptOrMand}) $3" -p150376 -tp150377 -a(S"'dec_SignalDirection'/3" -p150378 -S"'dec_SignalDirection'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150379 -tp150380 -a(S"'dec_SignalName'/2" -p150381 -S"'dec_SignalName'(${1:Bytes}, ${2:OptOrMand}) $3" -p150382 -tp150383 -a(S"'dec_SignalName'/3" -p150384 -S"'dec_SignalName'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150385 -tp150386 -a(S"'dec_SignalRequest'/2" -p150387 -S"'dec_SignalRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p150388 -tp150389 -a(S"'dec_SignalRequest'/3" -p150390 -S"'dec_SignalRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150391 -tp150392 -a(S"'dec_SignalType'/2" -p150393 -S"'dec_SignalType'(${1:Bytes}, ${2:OptOrMand}) $3" -p150394 -tp150395 -a(S"'dec_SignalType'/3" -p150396 -S"'dec_SignalType'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150397 -tp150398 -a(S"'dec_SignalsDescriptor'/2" -p150399 -S"'dec_SignalsDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p150400 -tp150401 -a(S"'dec_SignalsDescriptor'/3" -p150402 -S"'dec_SignalsDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150403 -tp150404 -a(S"'dec_StatisticsDescriptor'/2" -p150405 -S"'dec_StatisticsDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p150406 -tp150407 -a(S"'dec_StatisticsDescriptor'/3" -p150408 -S"'dec_StatisticsDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150409 -tp150410 -a(S"'dec_StatisticsParameter'/2" -p150411 -S"'dec_StatisticsParameter'(${1:Bytes}, ${2:OptOrMand}) $3" -p150412 -tp150413 -a(S"'dec_StatisticsParameter'/3" -p150414 -S"'dec_StatisticsParameter'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150415 -tp150416 -a(S"'dec_StreamDescriptor'/2" -p150417 -S"'dec_StreamDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p150418 -tp150419 -a(S"'dec_StreamDescriptor'/3" -p150420 -S"'dec_StreamDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150421 -tp150422 -a(S"'dec_StreamID'/2" -p150423 -S"'dec_StreamID'(${1:Bytes}, ${2:OptOrMand}) $3" -p150424 -tp150425 -a(S"'dec_StreamID'/3" -p150426 -S"'dec_StreamID'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150427 -tp150428 -a(S"'dec_StreamMode'/2" -p150429 -S"'dec_StreamMode'(${1:Bytes}, ${2:OptOrMand}) $3" -p150430 -tp150431 -a(S"'dec_StreamMode'/3" -p150432 -S"'dec_StreamMode'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150433 -tp150434 -a(S"'dec_StreamParms'/2" -p150435 -S"'dec_StreamParms'(${1:Bytes}, ${2:OptOrMand}) $3" -p150436 -tp150437 -a(S"'dec_StreamParms'/3" -p150438 -S"'dec_StreamParms'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150439 -tp150440 -a(S"'dec_SubtractRequest'/2" -p150441 -S"'dec_SubtractRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p150442 -tp150443 -a(S"'dec_SubtractRequest'/3" -p150444 -S"'dec_SubtractRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150445 -tp150446 -a(S"'dec_TermListAuditResult'/2" -p150447 -S"'dec_TermListAuditResult'(${1:Bytes}, ${2:OptOrMand}) $3" -p150448 -tp150449 -a(S"'dec_TermListAuditResult'/3" -p150450 -S"'dec_TermListAuditResult'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150451 -tp150452 -a(S"'dec_TerminationAudit'/2" -p150453 -S"'dec_TerminationAudit'(${1:Bytes}, ${2:OptOrMand}) $3" -p150454 -tp150455 -a(S"'dec_TerminationAudit'/3" -p150456 -S"'dec_TerminationAudit'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150457 -tp150458 -a(S"'dec_TerminationID'/2" -p150459 -S"'dec_TerminationID'(${1:Bytes}, ${2:OptOrMand}) $3" -p150460 -tp150461 -a(S"'dec_TerminationID'/3" -p150462 -S"'dec_TerminationID'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150463 -tp150464 -a(S"'dec_TerminationIDList'/2" -p150465 -S"'dec_TerminationIDList'(${1:Bytes}, ${2:OptOrMand}) $3" -p150466 -tp150467 -a(S"'dec_TerminationIDList'/3" -p150468 -S"'dec_TerminationIDList'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150469 -tp150470 -a(S"'dec_TerminationStateDescriptor'/2" -p150471 -S"'dec_TerminationStateDescriptor'(${1:Bytes}, ${2:OptOrMand}) $3" -p150472 -tp150473 -a(S"'dec_TerminationStateDescriptor'/3" -p150474 -S"'dec_TerminationStateDescriptor'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150475 -tp150476 -a(S"'dec_TimeNotation'/2" -p150477 -S"'dec_TimeNotation'(${1:Bytes}, ${2:OptOrMand}) $3" -p150478 -tp150479 -a(S"'dec_TimeNotation'/3" -p150480 -S"'dec_TimeNotation'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150481 -tp150482 -a(S"'dec_TopologyRequest'/2" -p150483 -S"'dec_TopologyRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p150484 -tp150485 -a(S"'dec_TopologyRequest'/3" -p150486 -S"'dec_TopologyRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150487 -tp150488 -a(S"'dec_Transaction'/2" -p150489 -S"'dec_Transaction'(${1:Bytes}, ${2:OptOrMand}) $3" -p150490 -tp150491 -a(S"'dec_Transaction'/3" -p150492 -S"'dec_Transaction'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150493 -tp150494 -a(S"'dec_TransactionAck'/2" -p150495 -S"'dec_TransactionAck'(${1:Bytes}, ${2:OptOrMand}) $3" -p150496 -tp150497 -a(S"'dec_TransactionAck'/3" -p150498 -S"'dec_TransactionAck'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150499 -tp150500 -a(S"'dec_TransactionId'/2" -p150501 -S"'dec_TransactionId'(${1:Bytes}, ${2:OptOrMand}) $3" -p150502 -tp150503 -a(S"'dec_TransactionId'/3" -p150504 -S"'dec_TransactionId'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150505 -tp150506 -a(S"'dec_TransactionPending'/2" -p150507 -S"'dec_TransactionPending'(${1:Bytes}, ${2:OptOrMand}) $3" -p150508 -tp150509 -a(S"'dec_TransactionPending'/3" -p150510 -S"'dec_TransactionPending'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150511 -tp150512 -a(S"'dec_TransactionReply'/2" -p150513 -S"'dec_TransactionReply'(${1:Bytes}, ${2:OptOrMand}) $3" -p150514 -tp150515 -a(S"'dec_TransactionReply'/3" -p150516 -S"'dec_TransactionReply'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150517 -tp150518 -a(S"'dec_TransactionRequest'/2" -p150519 -S"'dec_TransactionRequest'(${1:Bytes}, ${2:OptOrMand}) $3" -p150520 -tp150521 -a(S"'dec_TransactionRequest'/3" -p150522 -S"'dec_TransactionRequest'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150523 -tp150524 -a(S"'dec_TransactionResponseAck'/2" -p150525 -S"'dec_TransactionResponseAck'(${1:Bytes}, ${2:OptOrMand}) $3" -p150526 -tp150527 -a(S"'dec_TransactionResponseAck'/3" -p150528 -S"'dec_TransactionResponseAck'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150529 -tp150530 -a(S"'dec_Value'/2" -p150531 -S"'dec_Value'(${1:Bytes}, ${2:OptOrMand}) $3" -p150532 -tp150533 -a(S"'dec_Value'/3" -p150534 -S"'dec_Value'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150535 -tp150536 -a(S"'dec_WildcardField'/2" -p150537 -S"'dec_WildcardField'(${1:Bytes}, ${2:OptOrMand}) $3" -p150538 -tp150539 -a(S"'dec_WildcardField'/3" -p150540 -S"'dec_WildcardField'(${1:Bytes}, ${2:OptOrMand}, ${3:TagIn}) $4" -p150541 -tp150542 -a(S"'enc_ActionReply'/2" -p150543 -S"'enc_ActionReply'(${1:Val}, ${2:TagIn}) $3" -p150544 -tp150545 -a(S"'enc_ActionRequest'/2" -p150546 -S"'enc_ActionRequest'(${1:Val}, ${2:TagIn}) $3" -p150547 -tp150548 -a(S"'enc_AmmDescriptor'/2" -p150549 -S"'enc_AmmDescriptor'(${1:Val}, ${2:TagIn}) $3" -p150550 -tp150551 -a(S"'enc_AmmRequest'/2" -p150552 -S"'enc_AmmRequest'(${1:Val}, ${2:TagIn}) $3" -p150553 -tp150554 -a(S"'enc_AmmsReply'/2" -p150555 -S"'enc_AmmsReply'(${1:Val}, ${2:TagIn}) $3" -p150556 -tp150557 -a(S"'enc_AuditDescriptor'/2" -p150558 -S"'enc_AuditDescriptor'(${1:Val}, ${2:TagIn}) $3" -p150559 -tp150560 -a(S"'enc_AuditReply'/2" -p150561 -S"'enc_AuditReply'(${1:Val}, ${2:TagIn}) $3" -p150562 -tp150563 -a(S"'enc_AuditRequest'/2" -p150564 -S"'enc_AuditRequest'(${1:Val}, ${2:TagIn}) $3" -p150565 -tp150566 -a(S"'enc_AuditResult'/2" -p150567 -S"'enc_AuditResult'(${1:Val}, ${2:TagIn}) $3" -p150568 -tp150569 -a(S"'enc_AuditReturnParameter'/2" -p150570 -S"'enc_AuditReturnParameter'(${1:Val}, ${2:TagIn}) $3" -p150571 -tp150572 -a(S"'enc_AuthData'/2" -p150573 -S"'enc_AuthData'(${1:Val}, ${2:TagIn}) $3" -p150574 -tp150575 -a(S"'enc_AuthenticationHeader'/2" -p150576 -S"'enc_AuthenticationHeader'(${1:Val}, ${2:TagIn}) $3" -p150577 -tp150578 -a(S"'enc_Command'/2" -p150579 -S"'enc_Command'(${1:Val}, ${2:TagIn}) $3" -p150580 -tp150581 -a(S"'enc_CommandReply'/2" -p150582 -S"'enc_CommandReply'(${1:Val}, ${2:TagIn}) $3" -p150583 -tp150584 -a(S"'enc_CommandRequest'/2" -p150585 -S"'enc_CommandRequest'(${1:Val}, ${2:TagIn}) $3" -p150586 -tp150587 -a(S"'enc_ContextAttrAuditRequest'/2" -p150588 -S"'enc_ContextAttrAuditRequest'(${1:Val}, ${2:TagIn}) $3" -p150589 -tp150590 -a(S"'enc_ContextID'/2" -p150591 -S"'enc_ContextID'(${1:Val}, ${2:TagIn}) $3" -p150592 -tp150593 -a(S"'enc_ContextRequest'/2" -p150594 -S"'enc_ContextRequest'(${1:Val}, ${2:TagIn}) $3" -p150595 -tp150596 -a(S"'enc_DigitMapDescriptor'/2" -p150597 -S"'enc_DigitMapDescriptor'(${1:Val}, ${2:TagIn}) $3" -p150598 -tp150599 -a(S"'enc_DigitMapName'/2" -p150600 -S"'enc_DigitMapName'(${1:Val}, ${2:TagIn}) $3" -p150601 -tp150602 -a(S"'enc_DigitMapValue'/2" -p150603 -S"'enc_DigitMapValue'(${1:Val}, ${2:TagIn}) $3" -p150604 -tp150605 -a(S"'enc_DomainName'/2" -p150606 -S"'enc_DomainName'(${1:Val}, ${2:TagIn}) $3" -p150607 -tp150608 -a(S"'enc_ErrorCode'/2" -p150609 -S"'enc_ErrorCode'(${1:Val}, ${2:TagIn}) $3" -p150610 -tp150611 -a(S"'enc_ErrorDescriptor'/2" -p150612 -S"'enc_ErrorDescriptor'(${1:Val}, ${2:TagIn}) $3" -p150613 -tp150614 -a(S"'enc_ErrorText'/2" -p150615 -S"'enc_ErrorText'(${1:Val}, ${2:TagIn}) $3" -p150616 -tp150617 -a(S"'enc_EventBufferControl'/2" -p150618 -S"'enc_EventBufferControl'(${1:Val}, ${2:TagIn}) $3" -p150619 -tp150620 -a(S"'enc_EventBufferDescriptor'/2" -p150621 -S"'enc_EventBufferDescriptor'(${1:Val}, ${2:TagIn}) $3" -p150622 -tp150623 -a(S"'enc_EventDM'/2" -p150624 -S"'enc_EventDM'(${1:Val}, ${2:TagIn}) $3" -p150625 -tp150626 -a(S"'enc_EventName'/2" -p150627 -S"'enc_EventName'(${1:Val}, ${2:TagIn}) $3" -p150628 -tp150629 -a(S"'enc_EventParameter'/2" -p150630 -S"'enc_EventParameter'(${1:Val}, ${2:TagIn}) $3" -p150631 -tp150632 -a(S"'enc_EventSpec'/2" -p150633 -S"'enc_EventSpec'(${1:Val}, ${2:TagIn}) $3" -p150634 -tp150635 -a(S"'enc_EventsDescriptor'/2" -p150636 -S"'enc_EventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p150637 -tp150638 -a(S"'enc_H221NonStandard'/2" -p150639 -S"'enc_H221NonStandard'(${1:Val}, ${2:TagIn}) $3" -p150640 -tp150641 -a(S"'enc_IP4Address'/2" -p150642 -S"'enc_IP4Address'(${1:Val}, ${2:TagIn}) $3" -p150643 -tp150644 -a(S"'enc_IP6Address'/2" -p150645 -S"'enc_IP6Address'(${1:Val}, ${2:TagIn}) $3" -p150646 -tp150647 -a(S"'enc_IndAudDigitMapDescriptor'/2" -p150648 -S"'enc_IndAudDigitMapDescriptor'(${1:Val}, ${2:TagIn}) $3" -p150649 -tp150650 -a(S"'enc_IndAudEventBufferDescriptor'/2" -p150651 -S"'enc_IndAudEventBufferDescriptor'(${1:Val}, ${2:TagIn}) $3" -p150652 -tp150653 -a(S"'enc_IndAudEventsDescriptor'/2" -p150654 -S"'enc_IndAudEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p150655 -tp150656 -a(S"'enc_IndAudLocalControlDescriptor'/2" -p150657 -S"'enc_IndAudLocalControlDescriptor'(${1:Val}, ${2:TagIn}) $3" -p150658 -tp150659 -a(S"'enc_IndAudLocalRemoteDescriptor'/2" -p150660 -S"'enc_IndAudLocalRemoteDescriptor'(${1:Val}, ${2:TagIn}) $3" -p150661 -tp150662 -a(S"'enc_IndAudMediaDescriptor'/2" -p150663 -S"'enc_IndAudMediaDescriptor'(${1:Val}, ${2:TagIn}) $3" -p150664 -tp150665 -a(S"'enc_IndAudPackagesDescriptor'/2" -p150666 -S"'enc_IndAudPackagesDescriptor'(${1:Val}, ${2:TagIn}) $3" -p150667 -tp150668 -a(S"'enc_IndAudPropertyGroup'/2" -p150669 -S"'enc_IndAudPropertyGroup'(${1:Val}, ${2:TagIn}) $3" -p150670 -tp150671 -a(S"'enc_IndAudPropertyParm'/2" -p150672 -S"'enc_IndAudPropertyParm'(${1:Val}, ${2:TagIn}) $3" -p150673 -tp150674 -a(S"'enc_IndAudSeqSigList'/2" -p150675 -S"'enc_IndAudSeqSigList'(${1:Val}, ${2:TagIn}) $3" -p150676 -tp150677 -a(S"'enc_IndAudSignal'/2" -p150678 -S"'enc_IndAudSignal'(${1:Val}, ${2:TagIn}) $3" -p150679 -tp150680 -a(S"'enc_IndAudSignalsDescriptor'/2" -p150681 -S"'enc_IndAudSignalsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p150682 -tp150683 -a(S"'enc_IndAudStatisticsDescriptor'/2" -p150684 -S"'enc_IndAudStatisticsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p150685 -tp150686 -a(S"'enc_IndAudStreamDescriptor'/2" -p150687 -S"'enc_IndAudStreamDescriptor'(${1:Val}, ${2:TagIn}) $3" -p150688 -tp150689 -a(S"'enc_IndAudStreamParms'/2" -p150690 -S"'enc_IndAudStreamParms'(${1:Val}, ${2:TagIn}) $3" -p150691 -tp150692 -a(S"'enc_IndAudTerminationStateDescriptor'/2" -p150693 -S"'enc_IndAudTerminationStateDescriptor'(${1:Val}, ${2:TagIn}) $3" -p150694 -tp150695 -a(S"'enc_IndAuditParameter'/2" -p150696 -S"'enc_IndAuditParameter'(${1:Val}, ${2:TagIn}) $3" -p150697 -tp150698 -a(S"'enc_LocalControlDescriptor'/2" -p150699 -S"'enc_LocalControlDescriptor'(${1:Val}, ${2:TagIn}) $3" -p150700 -tp150701 -a(S"'enc_LocalRemoteDescriptor'/2" -p150702 -S"'enc_LocalRemoteDescriptor'(${1:Val}, ${2:TagIn}) $3" -p150703 -tp150704 -a(S"'enc_MId'/2" -p150705 -S"'enc_MId'(${1:Val}, ${2:TagIn}) $3" -p150706 -tp150707 -a(S"'enc_MediaDescriptor'/2" -p150708 -S"'enc_MediaDescriptor'(${1:Val}, ${2:TagIn}) $3" -p150709 -tp150710 -a(S"'enc_MegacoMessage'/2" -p150711 -S"'enc_MegacoMessage'(${1:Val}, ${2:TagIn}) $3" -p150712 -tp150713 -a(S"'enc_Message'/2" -p150714 -S"'enc_Message'(${1:Val}, ${2:TagIn}) $3" -p150715 -tp150716 -a(S"'enc_ModemDescriptor'/2" -p150717 -S"'enc_ModemDescriptor'(${1:Val}, ${2:TagIn}) $3" -p150718 -tp150719 -a(S"'enc_ModemType'/2" -p150720 -S"'enc_ModemType'(${1:Val}, ${2:TagIn}) $3" -p150721 -tp150722 -a(S"'enc_MuxDescriptor'/2" -p150723 -S"'enc_MuxDescriptor'(${1:Val}, ${2:TagIn}) $3" -p150724 -tp150725 -a(S"'enc_MuxType'/2" -p150726 -S"'enc_MuxType'(${1:Val}, ${2:TagIn}) $3" -p150727 -tp150728 -a(S"'enc_Name'/2" -p150729 -S"'enc_Name'(${1:Val}, ${2:TagIn}) $3" -p150730 -tp150731 -a(S"'enc_NonStandardData'/2" -p150732 -S"'enc_NonStandardData'(${1:Val}, ${2:TagIn}) $3" -p150733 -tp150734 -a(S"'enc_NonStandardIdentifier'/2" -p150735 -S"'enc_NonStandardIdentifier'(${1:Val}, ${2:TagIn}) $3" -p150736 -tp150737 -a(S"'enc_NotifyBehaviour'/2" -p150738 -S"'enc_NotifyBehaviour'(${1:Val}, ${2:TagIn}) $3" -p150739 -tp150740 -a(S"'enc_NotifyCompletion'/2" -p150741 -S"'enc_NotifyCompletion'(${1:Val}, ${2:TagIn}) $3" -p150742 -tp150743 -a(S"'enc_NotifyReply'/2" -p150744 -S"'enc_NotifyReply'(${1:Val}, ${2:TagIn}) $3" -p150745 -tp150746 -a(S"'enc_NotifyRequest'/2" -p150747 -S"'enc_NotifyRequest'(${1:Val}, ${2:TagIn}) $3" -p150748 -tp150749 -a(S"'enc_ObservedEvent'/2" -p150750 -S"'enc_ObservedEvent'(${1:Val}, ${2:TagIn}) $3" -p150751 -tp150752 -a(S"'enc_ObservedEventsDescriptor'/2" -p150753 -S"'enc_ObservedEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p150754 -tp150755 -a(S"'enc_PackagesDescriptor'/2" -p150756 -S"'enc_PackagesDescriptor'(${1:Val}, ${2:TagIn}) $3" -p150757 -tp150758 -a(S"'enc_PackagesItem'/2" -p150759 -S"'enc_PackagesItem'(${1:Val}, ${2:TagIn}) $3" -p150760 -tp150761 -a(S"'enc_PathName'/2" -p150762 -S"'enc_PathName'(${1:Val}, ${2:TagIn}) $3" -p150763 -tp150764 -a(S"'enc_PkgdName'/2" -p150765 -S"'enc_PkgdName'(${1:Val}, ${2:TagIn}) $3" -p150766 -tp150767 -a(S"'enc_PropertyGroup'/2" -p150768 -S"'enc_PropertyGroup'(${1:Val}, ${2:TagIn}) $3" -p150769 -tp150770 -a(S"'enc_PropertyParm'/2" -p150771 -S"'enc_PropertyParm'(${1:Val}, ${2:TagIn}) $3" -p150772 -tp150773 -a(S"'enc_RegulatedEmbeddedDescriptor'/2" -p150774 -S"'enc_RegulatedEmbeddedDescriptor'(${1:Val}, ${2:TagIn}) $3" -p150775 -tp150776 -a(S"'enc_Relation'/2" -p150777 -S"'enc_Relation'(${1:Val}, ${2:TagIn}) $3" -p150778 -tp150779 -a(S"'enc_RequestID'/2" -p150780 -S"'enc_RequestID'(${1:Val}, ${2:TagIn}) $3" -p150781 -tp150782 -a(S"'enc_RequestedActions'/2" -p150783 -S"'enc_RequestedActions'(${1:Val}, ${2:TagIn}) $3" -p150784 -tp150785 -a(S"'enc_RequestedEvent'/2" -p150786 -S"'enc_RequestedEvent'(${1:Val}, ${2:TagIn}) $3" -p150787 -tp150788 -a(S"'enc_SecondEventsDescriptor'/2" -p150789 -S"'enc_SecondEventsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p150790 -tp150791 -a(S"'enc_SecondRequestedActions'/2" -p150792 -S"'enc_SecondRequestedActions'(${1:Val}, ${2:TagIn}) $3" -p150793 -tp150794 -a(S"'enc_SecondRequestedEvent'/2" -p150795 -S"'enc_SecondRequestedEvent'(${1:Val}, ${2:TagIn}) $3" -p150796 -tp150797 -a(S"'enc_SecurityParmIndex'/2" -p150798 -S"'enc_SecurityParmIndex'(${1:Val}, ${2:TagIn}) $3" -p150799 -tp150800 -a(S"'enc_SegmentNumber'/2" -p150801 -S"'enc_SegmentNumber'(${1:Val}, ${2:TagIn}) $3" -p150802 -tp150803 -a(S"'enc_SelectLogic'/2" -p150804 -S"'enc_SelectLogic'(${1:Val}, ${2:TagIn}) $3" -p150805 -tp150806 -a(S"'enc_SeqSigList'/2" -p150807 -S"'enc_SeqSigList'(${1:Val}, ${2:TagIn}) $3" -p150808 -tp150809 -a(S"'enc_SequenceNum'/2" -p150810 -S"'enc_SequenceNum'(${1:Val}, ${2:TagIn}) $3" -p150811 -tp150812 -a(S"'enc_ServiceChangeAddress'/2" -p150813 -S"'enc_ServiceChangeAddress'(${1:Val}, ${2:TagIn}) $3" -p150814 -tp150815 -a(S"'enc_ServiceChangeMethod'/2" -p150816 -S"'enc_ServiceChangeMethod'(${1:Val}, ${2:TagIn}) $3" -p150817 -tp150818 -a(S"'enc_ServiceChangeParm'/2" -p150819 -S"'enc_ServiceChangeParm'(${1:Val}, ${2:TagIn}) $3" -p150820 -tp150821 -a(S"'enc_ServiceChangeProfile'/2" -p150822 -S"'enc_ServiceChangeProfile'(${1:Val}, ${2:TagIn}) $3" -p150823 -tp150824 -a(S"'enc_ServiceChangeReply'/2" -p150825 -S"'enc_ServiceChangeReply'(${1:Val}, ${2:TagIn}) $3" -p150826 -tp150827 -a(S"'enc_ServiceChangeRequest'/2" -p150828 -S"'enc_ServiceChangeRequest'(${1:Val}, ${2:TagIn}) $3" -p150829 -tp150830 -a(S"'enc_ServiceChangeResParm'/2" -p150831 -S"'enc_ServiceChangeResParm'(${1:Val}, ${2:TagIn}) $3" -p150832 -tp150833 -a(S"'enc_ServiceChangeResult'/2" -p150834 -S"'enc_ServiceChangeResult'(${1:Val}, ${2:TagIn}) $3" -p150835 -tp150836 -a(S"'enc_ServiceState'/2" -p150837 -S"'enc_ServiceState'(${1:Val}, ${2:TagIn}) $3" -p150838 -tp150839 -a(S"'enc_SigParameter'/2" -p150840 -S"'enc_SigParameter'(${1:Val}, ${2:TagIn}) $3" -p150841 -tp150842 -a(S"'enc_Signal'/2" -p150843 -S"'enc_Signal'(${1:Val}, ${2:TagIn}) $3" -p150844 -tp150845 -a(S"'enc_SignalDirection'/2" -p150846 -S"'enc_SignalDirection'(${1:Val}, ${2:TagIn}) $3" -p150847 -tp150848 -a(S"'enc_SignalName'/2" -p150849 -S"'enc_SignalName'(${1:Val}, ${2:TagIn}) $3" -p150850 -tp150851 -a(S"'enc_SignalRequest'/2" -p150852 -S"'enc_SignalRequest'(${1:Val}, ${2:TagIn}) $3" -p150853 -tp150854 -a(S"'enc_SignalType'/2" -p150855 -S"'enc_SignalType'(${1:Val}, ${2:TagIn}) $3" -p150856 -tp150857 -a(S"'enc_SignalsDescriptor'/2" -p150858 -S"'enc_SignalsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p150859 -tp150860 -a(S"'enc_StatisticsDescriptor'/2" -p150861 -S"'enc_StatisticsDescriptor'(${1:Val}, ${2:TagIn}) $3" -p150862 -tp150863 -a(S"'enc_StatisticsParameter'/2" -p150864 -S"'enc_StatisticsParameter'(${1:Val}, ${2:TagIn}) $3" -p150865 -tp150866 -a(S"'enc_StreamDescriptor'/2" -p150867 -S"'enc_StreamDescriptor'(${1:Val}, ${2:TagIn}) $3" -p150868 -tp150869 -a(S"'enc_StreamID'/2" -p150870 -S"'enc_StreamID'(${1:Val}, ${2:TagIn}) $3" -p150871 -tp150872 -a(S"'enc_StreamMode'/2" -p150873 -S"'enc_StreamMode'(${1:Val}, ${2:TagIn}) $3" -p150874 -tp150875 -a(S"'enc_StreamParms'/2" -p150876 -S"'enc_StreamParms'(${1:Val}, ${2:TagIn}) $3" -p150877 -tp150878 -a(S"'enc_SubtractRequest'/2" -p150879 -S"'enc_SubtractRequest'(${1:Val}, ${2:TagIn}) $3" -p150880 -tp150881 -a(S"'enc_TermListAuditResult'/2" -p150882 -S"'enc_TermListAuditResult'(${1:Val}, ${2:TagIn}) $3" -p150883 -tp150884 -a(S"'enc_TerminationAudit'/2" -p150885 -S"'enc_TerminationAudit'(${1:Val}, ${2:TagIn}) $3" -p150886 -tp150887 -a(S"'enc_TerminationID'/2" -p150888 -S"'enc_TerminationID'(${1:Val}, ${2:TagIn}) $3" -p150889 -tp150890 -a(S"'enc_TerminationIDList'/2" -p150891 -S"'enc_TerminationIDList'(${1:Val}, ${2:TagIn}) $3" -p150892 -tp150893 -a(S"'enc_TerminationStateDescriptor'/2" -p150894 -S"'enc_TerminationStateDescriptor'(${1:Val}, ${2:TagIn}) $3" -p150895 -tp150896 -a(S"'enc_TimeNotation'/2" -p150897 -S"'enc_TimeNotation'(${1:Val}, ${2:TagIn}) $3" -p150898 -tp150899 -a(S"'enc_TopologyRequest'/2" -p150900 -S"'enc_TopologyRequest'(${1:Val}, ${2:TagIn}) $3" -p150901 -tp150902 -a(S"'enc_Transaction'/2" -p150903 -S"'enc_Transaction'(${1:Val}, ${2:TagIn}) $3" -p150904 -tp150905 -a(S"'enc_TransactionAck'/2" -p150906 -S"'enc_TransactionAck'(${1:Val}, ${2:TagIn}) $3" -p150907 -tp150908 -a(S"'enc_TransactionId'/2" -p150909 -S"'enc_TransactionId'(${1:Val}, ${2:TagIn}) $3" -p150910 -tp150911 -a(S"'enc_TransactionPending'/2" -p150912 -S"'enc_TransactionPending'(${1:Val}, ${2:TagIn}) $3" -p150913 -tp150914 -a(S"'enc_TransactionReply'/2" -p150915 -S"'enc_TransactionReply'(${1:Val}, ${2:TagIn}) $3" -p150916 -tp150917 -a(S"'enc_TransactionRequest'/2" -p150918 -S"'enc_TransactionRequest'(${1:Val}, ${2:TagIn}) $3" -p150919 -tp150920 -a(S"'enc_TransactionResponseAck'/2" -p150921 -S"'enc_TransactionResponseAck'(${1:Val}, ${2:TagIn}) $3" -p150922 -tp150923 -a(S"'enc_Value'/2" -p150924 -S"'enc_Value'(${1:Val}, ${2:TagIn}) $3" -p150925 -tp150926 -a(S"'enc_WildcardField'/2" -p150927 -S"'enc_WildcardField'(${1:Val}, ${2:TagIn}) $3" -p150928 -tp150929 -a(S'decode/2' -p150930 -S'decode(${1:Type}, ${2:Data}) $3' -p150931 -tp150932 -a(S'decode_disp/2' -p150933 -S'decode_disp(${1:Type}, ${2:Data}) $3' -p150934 -tp150935 -a(S'encode/2' -p150936 -S'encode(${1:Type}, ${2:Data}) $3' -p150937 -tp150938 -a(S'encode_disp/2' -p150939 -S'encode_disp(${1:Type}, ${2:Data}) $3' -p150940 -tp150941 -a(S'encoding_rule/0' -p150942 -S'encoding_rule() $1' -p150943 -tp150944 -a(S'info/0' -p150945 -S'info() $1' -p150946 -tp150947 -asS'dbg_idb' -p150948 -(lp150949 -(S'insert/3' -p150950 -S'insert(${1:DbRef}, ${2:Key}, ${3:Value}) $4' -p150951 -tp150952 -a(S'lookup/2' -p150953 -S'lookup(${1:DbRef}, ${2:Key}) $3' -p150954 -tp150955 -a(S'match_object/2' -p150956 -S'match_object(${1:DbRef}, ${2:Key}) $3' -p150957 -tp150958 -asS'httpd_request' -p150959 -(lp150960 -(S'body_data/2' -p150961 -S'body_data(${1:Headers}, ${2:Body}) $3' -p150962 -tp150963 -a(S'parse/1' -p150964 -S'parse(${1:Unknown}) $2' -p150965 -tp150966 -a(S'parse_headers/1' -p150967 -S'parse_headers(${1:Param1}) $2' -p150968 -tp150969 -a(S'parse_method/1' -p150970 -S'parse_method(${1:Param1}) $2' -p150971 -tp150972 -a(S'parse_uri/1' -p150973 -S'parse_uri(${1:Param1}) $2' -p150974 -tp150975 -a(S'parse_version/1' -p150976 -S'parse_version(${1:Param1}) $2' -p150977 -tp150978 -a(S'update_mod_data/5' -p150979 -S'update_mod_data(${1:ModData}, ${2:Method}, ${3:RequestURI}, ${4:HTTPVersion}, ${5:Headers}) $6' -p150980 -tp150981 -a(S'validate/3' -p150982 -S'validate(${1:Method}, ${2:Uri}, ${3:Version}) $4' -p150983 -tp150984 -a(S'whole_body/1' -p150985 -S'whole_body(${1:Param1}) $2' -p150986 -tp150987 -a(S'whole_body/2' -p150988 -S'whole_body(${1:Body}, ${2:Length}) $3' -p150989 -tp150990 -asS'CosFileTransfer_ProtocolSupport' -p150991 -(lp150992 -(S'id/0' -p150993 -S'id() $1' -p150994 -tp150995 -a(S'name/0' -p150996 -S'name() $1' -p150997 -tp150998 -a(S'tc/0' -p150999 -S'tc() $1' -p151000 -tp151001 -asS'snmp' -p151002 -(lp151003 -(S'add_agent_caps/2' -p151004 -S'add_agent_caps(${1:Oid}, ${2:Descr}) $3' -p151005 -tp151006 -a(S'bits_to_octet_string/1' -p151007 -S'bits_to_octet_string(${1:B}) $2' -p151008 -tp151009 -a(S'c/1' -p151010 -S'c(${1:File}) $2' -p151011 -tp151012 -a(S'c/2' -p151013 -S'c(${1:File}, ${2:Options}) $3' -p151014 -tp151015 -a(S'change_log_size/1' -p151016 -S'change_log_size(${1:NewSize}) $2' -p151017 -tp151018 -a(S'change_log_size/2' -p151019 -S'change_log_size(${1:LogName}, ${2:NewSize}) $3' -p151020 -tp151021 -a(S'compile/3' -p151022 -S'compile(${1:Input}, ${2:Output}, ${3:Options}) $4' -p151023 -tp151024 -a(S'config/0' -p151025 -S'config() $1' -p151026 -tp151027 -a(S'current_address/0' -p151028 -S'current_address() $1' -p151029 -tp151030 -a(S'current_community/0' -p151031 -S'current_community() $1' -p151032 -tp151033 -a(S'current_context/0' -p151034 -S'current_context() $1' -p151035 -tp151036 -a(S'current_net_if_data/0' -p151037 -S'current_net_if_data() $1' -p151038 -tp151039 -a(S'current_request_id/0' -p151040 -S'current_request_id() $1' -p151041 -tp151042 -a(S'date_and_time/0' -p151043 -S'date_and_time() $1' -p151044 -tp151045 -a(S'date_and_time_to_string/1' -p151046 -S'date_and_time_to_string(${1:DAT}) $2' -p151047 -tp151048 -a(S'date_and_time_to_string/2' -p151049 -S'date_and_time_to_string(${1:DAT}, ${2:Validate}) $3' -p151050 -tp151051 -a(S'date_and_time_to_string2/1' -p151052 -S'date_and_time_to_string2(${1:DAT}) $2' -p151053 -tp151054 -a(S'date_and_time_to_universal_time_dst/1' -p151055 -S'date_and_time_to_universal_time_dst(${1:Param1}) $2' -p151056 -tp151057 -a(S'del_agent_caps/1' -p151058 -S'del_agent_caps(${1:Index}) $2' -p151059 -tp151060 -a(S'disable_trace/0' -p151061 -S'disable_trace() $1' -p151062 -tp151063 -a(S'dump_mibs/0' -p151064 -S'dump_mibs() $1' -p151065 -tp151066 -a(S'dump_mibs/1' -p151067 -S'dump_mibs(${1:File}) $2' -p151068 -tp151069 -a(S'enable_trace/0' -p151070 -S'enable_trace() $1' -p151071 -tp151072 -a(S'enum_to_int/2' -p151073 -S'enum_to_int(${1:Name}, ${2:Enum}) $3' -p151074 -tp151075 -a(S'enum_to_int/3' -p151076 -S'enum_to_int(${1:Db}, ${2:Name}, ${3:Enum}) $4' -p151077 -tp151078 -a(S'get/2' -p151079 -S'get(${1:Agent}, ${2:Vars}) $3' -p151080 -tp151081 -a(S'get_agent_caps/0' -p151082 -S'get_agent_caps() $1' -p151083 -tp151084 -a(S'get_symbolic_store_db/0' -p151085 -S'get_symbolic_store_db() $1' -p151086 -tp151087 -a(S'info/1' -p151088 -S'info(${1:Prefix}) $2' -p151089 -tp151090 -a(S'int_to_enum/2' -p151091 -S'int_to_enum(${1:Name}, ${2:Int}) $3' -p151092 -tp151093 -a(S'int_to_enum/3' -p151094 -S'int_to_enum(${1:Db}, ${2:Name}, ${3:Int}) $4' -p151095 -tp151096 -a(S'is_consistent/1' -p151097 -S'is_consistent(${1:Filenames}) $2' -p151098 -tp151099 -a(S'load_mibs/2' -p151100 -S'load_mibs(${1:Agent}, ${2:Mibs}) $3' -p151101 -tp151102 -a(S'local_time_to_date_and_time_dst/1' -p151103 -S'local_time_to_date_and_time_dst(${1:Local}) $2' -p151104 -tp151105 -a(S'localize_key/3' -p151106 -S'localize_key(${1:Alg}, ${2:Key}, ${3:EngineID}) $4' -p151107 -tp151108 -a(S'log_to_io/4' -p151109 -S'log_to_io(${1:LogDir}, ${2:Mibs}, ${3:LogName}, ${4:LogFile}) $5' -p151110 -tp151111 -a(S'log_to_io/5' -p151112 -S'log_to_io(${1:LogDir}, ${2:Mibs}, ${3:LogName}, ${4:LogFile}, ${5:Start}) $6' -p151113 -tp151114 -a(S'log_to_io/6' -p151115 -S'log_to_io(${1:LogDir}, ${2:Mibs}, ${3:LogName}, ${4:LogFile}, ${5:Start}, ${6:Stop}) $7' -p151116 -tp151117 -a(S'log_to_txt/2' -p151118 -S'log_to_txt(${1:LogDir}, ${2:Mibs}) $3' -p151119 -tp151120 -a(S'log_to_txt/3' -p151121 -S'log_to_txt(${1:LogDir}, ${2:Mibs}, ${3:OutFile}) $4' -p151122 -tp151123 -a(S'log_to_txt/4' -p151124 -S'log_to_txt(${1:LogDir}, ${2:Mibs}, ${3:OutFile}, ${4:LogName}) $5' -p151125 -tp151126 -a(S'log_to_txt/5' -p151127 -S'log_to_txt(${1:LogDir}, ${2:Mibs}, ${3:OutFile}, ${4:LogName}, ${5:LogFile}) $6' -p151128 -tp151129 -a(S'log_to_txt/6' -p151130 -S'log_to_txt(${1:LogDir}, ${2:Mibs}, ${3:OutFile}, ${4:LogName}, ${5:LogFile}, ${6:Start}) $7' -p151131 -tp151132 -a(S'log_to_txt/7' -p151133 -S'log_to_txt(${1:LogDir}, ${2:Mibs}, ${3:OutFile}, ${4:LogName}, ${5:LogFile}, ${6:Start}, ${7:Stop}) $8' -p151134 -tp151135 -a(S'mib_to_hrl/1' -p151136 -S'mib_to_hrl(${1:MibName}) $2' -p151137 -tp151138 -a(S'name_to_oid/1' -p151139 -S'name_to_oid(${1:Name}) $2' -p151140 -tp151141 -a(S'name_to_oid/2' -p151142 -S'name_to_oid(${1:Db}, ${2:Name}) $3' -p151143 -tp151144 -a(S'octet_string_to_bits/1' -p151145 -S'octet_string_to_bits(${1:S}) $2' -p151146 -tp151147 -a(S'oid_to_name/1' -p151148 -S'oid_to_name(${1:OID}) $2' -p151149 -tp151150 -a(S'oid_to_name/2' -p151151 -S'oid_to_name(${1:Db}, ${2:OID}) $3' -p151152 -tp151153 -a(S'passwd2localized_key/3' -p151154 -S'passwd2localized_key(${1:Alg}, ${2:Passwd}, ${3:EngineID}) $4' -p151155 -tp151156 -a(S'print_version_info/0' -p151157 -S'print_version_info() $1' -p151158 -tp151159 -a(S'print_version_info/1' -p151160 -S'print_version_info(${1:Prefix}) $2' -p151161 -tp151162 -a(S'print_versions/1' -p151163 -S'print_versions(${1:Versions}) $2' -p151164 -tp151165 -a(S'print_versions/2' -p151166 -S'print_versions(${1:Prefix}, ${2:BadVersions}) $3' -p151167 -tp151168 -a(S'read_mib/1' -p151169 -S'read_mib(${1:FileName}) $2' -p151170 -tp151171 -a(S'register_subagent/3' -p151172 -S'register_subagent(${1:Agent}, ${2:SubTree}, ${3:SubAgent}) $4' -p151173 -tp151174 -a(S'reset_trace/1' -p151175 -S'reset_trace(${1:Module}) $2' -p151176 -tp151177 -a(S'send_notification/3' -p151178 -S'send_notification(${1:Agent}, ${2:Notification}, ${3:Recv}) $4' -p151179 -tp151180 -a(S'send_notification/4' -p151181 -S'send_notification(${1:Agent}, ${2:Notification}, ${3:Recv}, ${4:Varbinds}) $5' -p151182 -tp151183 -a(S'send_notification/5' -p151184 -S'send_notification(${1:Agent}, ${2:Notification}, ${3:Recv}, ${4:NotifyName}, ${5:Varbinds}) $6' -p151185 -tp151186 -a(S'send_notification/6' -p151187 -S'send_notification() $1' -p151188 -tp151189 -a(S'send_trap/3' -p151190 -S'send_trap(${1:Agent}, ${2:Trap}, ${3:Community}) $4' -p151191 -tp151192 -a(S'send_trap/4' -p151193 -S'send_trap(${1:Agent}, ${2:Trap}, ${3:Community}, ${4:Varbinds}) $5' -p151194 -tp151195 -a(S'set_trace/1' -p151196 -S'set_trace(${1:Module}) $2' -p151197 -tp151198 -a(S'set_trace/2' -p151199 -S'set_trace(${1:Module}, ${2:Opts}) $3' -p151200 -tp151201 -a(S'set_trace/3' -p151202 -S'set_trace(${1:Item}, ${2:Module}, ${3:Opts}) $4' -p151203 -tp151204 -a(S'start/0' -p151205 -S'start() $1' -p151206 -tp151207 -a(S'start/1' -p151208 -S'start(${1:Type}) $2' -p151209 -tp151210 -a(S'start_agent/0' -p151211 -S'start_agent() $1' -p151212 -tp151213 -a(S'start_agent/1' -p151214 -S'start_agent(${1:Type}) $2' -p151215 -tp151216 -a(S'start_manager/0' -p151217 -S'start_manager() $1' -p151218 -tp151219 -a(S'start_manager/1' -p151220 -S'start_manager(${1:Type}) $2' -p151221 -tp151222 -a(S'stop/0' -p151223 -S'stop() $1' -p151224 -tp151225 -a(S'str_apply/1' -p151226 -S'str_apply(${1:Param1}) $2' -p151227 -tp151228 -a(S'sys_up_time/1' -p151229 -S'sys_up_time(${1:Param1}) $2' -p151230 -tp151231 -a(S'system_start_time/1' -p151232 -S'system_start_time(${1:Param1}) $2' -p151233 -tp151234 -a(S'universal_time_to_date_and_time/1' -p151235 -S'universal_time_to_date_and_time(${1:UTC}) $2' -p151236 -tp151237 -a(S'unload_mibs/2' -p151238 -S'unload_mibs(${1:Agent}, ${2:Mibs}) $3' -p151239 -tp151240 -a(S'unregister_subagent/2' -p151241 -S'unregister_subagent(${1:Agent}, ${2:SubOidOrPid}) $3' -p151242 -tp151243 -a(S'validate_date_and_time/1' -p151244 -S'validate_date_and_time(${1:DateAndTime}) $2' -p151245 -tp151246 -a(S'validate_date_and_time/2' -p151247 -S'validate_date_and_time(${1:DateAndTime}, ${2:Validate}) $3' -p151248 -tp151249 -a(S'versions1/0' -p151250 -S'versions1() $1' -p151251 -tp151252 -a(S'versions2/0' -p151253 -S'versions2() $1' -p151254 -tp151255 -asS'megaco_misc_sup' -p151256 -(lp151257 -(S'init/1' -p151258 -S'init(${1:BadArg}) $2' -p151259 -tp151260 -a(S'start/0' -p151261 -S'start() $1' -p151262 -tp151263 -a(S'start/2' -p151264 -S'start(${1:Param1}, ${2:Args}) $3' -p151265 -tp151266 -a(S'start_permanent_worker/4' -p151267 -S'start_permanent_worker(${1:M}, ${2:F}, ${3:A}, ${4:Modules}) $5' -p151268 -tp151269 -a(S'stop/1' -p151270 -S'stop(${1:Param1}) $2' -p151271 -tp151272 -asS'wxTaskBarIcon' -p151273 -(lp151274 -(S'connect/2' -p151275 -S'connect(${1:This}, ${2:EventType}) $3' -p151276 -tp151277 -a(S'connect/3' -p151278 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p151279 -tp151280 -a(S'destroy/1' -p151281 -S'destroy(${1:This}) $2' -p151282 -tp151283 -a(S'disconnect/1' -p151284 -S'disconnect(${1:This}) $2' -p151285 -tp151286 -a(S'disconnect/2' -p151287 -S'disconnect(${1:This}, ${2:EventType}) $3' -p151288 -tp151289 -a(S'disconnect/3' -p151290 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p151291 -tp151292 -a(S'new/0' -p151293 -S'new() $1' -p151294 -tp151295 -a(S'parent_class/1' -p151296 -S'parent_class(${1:Param1}) $2' -p151297 -tp151298 -a(S'popupMenu/2' -p151299 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p151300 -tp151301 -a(S'removeIcon/1' -p151302 -S'removeIcon(${1:This}) $2' -p151303 -tp151304 -a(S'setIcon/2' -p151305 -S'setIcon(${1:This}, ${2:Icon}) $3' -p151306 -tp151307 -a(S'setIcon/3' -p151308 -S'setIcon(${1:This}, ${2:Icon}, ${3:Param3}) $4' -p151309 -tp151310 -asS'CosPropertyService_PropertyTypes' -p151311 -(lp151312 -(S'id/0' -p151313 -S'id() $1' -p151314 -tp151315 -a(S'name/0' -p151316 -S'name() $1' -p151317 -tp151318 -a(S'tc/0' -p151319 -S'tc() $1' -p151320 -tp151321 -asS'gstk_editor' -p151322 -(lp151323 -(S'config/3' -p151324 -S'config(${1:DB}, ${2:Gstkid}, ${3:Options}) $4' -p151325 -tp151326 -a(S'create/3' -p151327 -S'create(${1:DB}, ${2:Gstkid}, ${3:Opts}) $4' -p151328 -tp151329 -a(S'delete/2' -p151330 -S'delete(${1:DB}, ${2:Gstkid}) $3' -p151331 -tp151332 -a(S'event/5' -p151333 -S'event(${1:DB}, ${2:Gstkid}, ${3:Etype}, ${4:Edata}, ${5:Args}) $6' -p151334 -tp151335 -a(S'option/5' -p151336 -S'option(${1:Option}, ${2:Gstkid}, ${3:Param3}, ${4:DB}, ${5:Editor}) $6' -p151337 -tp151338 -a(S'read/3' -p151339 -S'read(${1:DB}, ${2:Gstkid}, ${3:Opt}) $4' -p151340 -tp151341 -a(S'read_option/5' -p151342 -S'read_option(${1:Option}, ${2:GstkId}, ${3:Param3}, ${4:DB}, ${5:Editor}) $6' -p151343 -tp151344 -asS'wxPrintDialogData' -p151345 -(lp151346 -(S'destroy/1' -p151347 -S'destroy(${1:This}) $2' -p151348 -tp151349 -a(S'enableHelp/2' -p151350 -S'enableHelp(${1:This}, ${2:Flag}) $3' -p151351 -tp151352 -a(S'enablePageNumbers/2' -p151353 -S'enablePageNumbers(${1:This}, ${2:Flag}) $3' -p151354 -tp151355 -a(S'enablePrintToFile/2' -p151356 -S'enablePrintToFile(${1:This}, ${2:Flag}) $3' -p151357 -tp151358 -a(S'enableSelection/2' -p151359 -S'enableSelection(${1:This}, ${2:Flag}) $3' -p151360 -tp151361 -a(S'getAllPages/1' -p151362 -S'getAllPages(${1:This}) $2' -p151363 -tp151364 -a(S'getCollate/1' -p151365 -S'getCollate(${1:This}) $2' -p151366 -tp151367 -a(S'getFromPage/1' -p151368 -S'getFromPage(${1:This}) $2' -p151369 -tp151370 -a(S'getMaxPage/1' -p151371 -S'getMaxPage(${1:This}) $2' -p151372 -tp151373 -a(S'getMinPage/1' -p151374 -S'getMinPage(${1:This}) $2' -p151375 -tp151376 -a(S'getNoCopies/1' -p151377 -S'getNoCopies(${1:This}) $2' -p151378 -tp151379 -a(S'getPrintData/1' -p151380 -S'getPrintData(${1:This}) $2' -p151381 -tp151382 -a(S'getPrintToFile/1' -p151383 -S'getPrintToFile(${1:This}) $2' -p151384 -tp151385 -a(S'getSelection/1' -p151386 -S'getSelection(${1:This}) $2' -p151387 -tp151388 -a(S'getToPage/1' -p151389 -S'getToPage(${1:This}) $2' -p151390 -tp151391 -a(S'isOk/1' -p151392 -S'isOk(${1:This}) $2' -p151393 -tp151394 -a(S'new/0' -p151395 -S'new() $1' -p151396 -tp151397 -a(S'new/1' -p151398 -S'new(${1:DialogData}) $2' -p151399 -tp151400 -a(S'parent_class/1' -p151401 -S'parent_class(${1:Param1}) $2' -p151402 -tp151403 -a(S'setCollate/2' -p151404 -S'setCollate(${1:This}, ${2:Flag}) $3' -p151405 -tp151406 -a(S'setFromPage/2' -p151407 -S'setFromPage(${1:This}, ${2:V}) $3' -p151408 -tp151409 -a(S'setMaxPage/2' -p151410 -S'setMaxPage(${1:This}, ${2:V}) $3' -p151411 -tp151412 -a(S'setMinPage/2' -p151413 -S'setMinPage(${1:This}, ${2:V}) $3' -p151414 -tp151415 -a(S'setNoCopies/2' -p151416 -S'setNoCopies(${1:This}, ${2:V}) $3' -p151417 -tp151418 -a(S'setPrintData/2' -p151419 -S'setPrintData(${1:This}, ${2:PrintData}) $3' -p151420 -tp151421 -a(S'setPrintToFile/2' -p151422 -S'setPrintToFile(${1:This}, ${2:Flag}) $3' -p151423 -tp151424 -a(S'setSelection/2' -p151425 -S'setSelection(${1:This}, ${2:Flag}) $3' -p151426 -tp151427 -a(S'setToPage/2' -p151428 -S'setToPage(${1:This}, ${2:V}) $3' -p151429 -tp151430 -asS'CosEventDomainAdmin_EventDomainFactory_impl' -p151431 -(lp151432 -(S'code_change/3' -p151433 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p151434 -tp151435 -a(S'create_event_domain/4' -p151436 -S'create_event_domain(${1:Param1}, ${2:State}, ${3:InitialQoS}, ${4:InitialAdmin}) $5' -p151437 -tp151438 -a(S'get_all_domains/2' -p151439 -S'get_all_domains(${1:Param1}, ${2:State}) $3' -p151440 -tp151441 -a(S'get_event_domain/3' -p151442 -S'get_event_domain(${1:Param1}, ${2:State}, ${3:DomainID}) $4' -p151443 -tp151444 -a(S'handle_info/2' -p151445 -S'handle_info(${1:Param1}, ${2:State}) $3' -p151446 -tp151447 -a(S'init/1' -p151448 -S'init(${1:Param1}) $2' -p151449 -tp151450 -a(S'terminate/2' -p151451 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p151452 -tp151453 -asS'wxImage' -p151454 -(lp151455 -(S"'Destroy'/1" -p151456 -S"'Destroy'(${1:This}) $2" -p151457 -tp151458 -a(S'blur/2' -p151459 -S'blur(${1:This}, ${2:Radius}) $3' -p151460 -tp151461 -a(S'blurHorizontal/2' -p151462 -S'blurHorizontal(${1:This}, ${2:Radius}) $3' -p151463 -tp151464 -a(S'blurVertical/2' -p151465 -S'blurVertical(${1:This}, ${2:Radius}) $3' -p151466 -tp151467 -a(S'convertAlphaToMask/1' -p151468 -S'convertAlphaToMask(${1:This}) $2' -p151469 -tp151470 -a(S'convertAlphaToMask/2' -p151471 -S'convertAlphaToMask(${1:This}, ${2:Param2}) $3' -p151472 -tp151473 -a(S'convertToGreyscale/1' -p151474 -S'convertToGreyscale(${1:This}) $2' -p151475 -tp151476 -a(S'convertToGreyscale/2' -p151477 -S'convertToGreyscale(${1:This}, ${2:Param2}) $3' -p151478 -tp151479 -a(S'convertToMono/4' -p151480 -S'convertToMono(${1:This}, ${2:R}, ${3:G}, ${4:B}) $5' -p151481 -tp151482 -a(S'copy/1' -p151483 -S'copy(${1:This}) $2' -p151484 -tp151485 -a(S'create/3' -p151486 -S'create(${1:This}, ${2:Width}, ${3:Height}) $4' -p151487 -tp151488 -a(S'create/4' -p151489 -S'create(${1:This}, ${2:Width}, ${3:Height}, ${4:Data}) $5' -p151490 -tp151491 -a(S'create/5' -p151492 -S'create(${1:This}, ${2:Width}, ${3:Height}, ${4:Data}, ${5:Alpha}) $6' -p151493 -tp151494 -a(S'create/6' -p151495 -S'create(${1:This}, ${2:Width}, ${3:Height}, ${4:Data}, ${5:Alpha}, ${6:Param6}) $7' -p151496 -tp151497 -a(S'destroy/1' -p151498 -S'destroy(${1:This}) $2' -p151499 -tp151500 -a(S'findFirstUnusedColour/1' -p151501 -S'findFirstUnusedColour(${1:This}) $2' -p151502 -tp151503 -a(S'findFirstUnusedColour/2' -p151504 -S'findFirstUnusedColour(${1:This}, ${2:Param2}) $3' -p151505 -tp151506 -a(S'getAlpha/1' -p151507 -S'getAlpha(${1:This}) $2' -p151508 -tp151509 -a(S'getAlpha/3' -p151510 -S'getAlpha(${1:This}, ${2:X}, ${3:Y}) $4' -p151511 -tp151512 -a(S'getBlue/3' -p151513 -S'getBlue(${1:This}, ${2:X}, ${3:Y}) $4' -p151514 -tp151515 -a(S'getData/1' -p151516 -S'getData(${1:This}) $2' -p151517 -tp151518 -a(S'getGreen/3' -p151519 -S'getGreen(${1:This}, ${2:X}, ${3:Y}) $4' -p151520 -tp151521 -a(S'getHeight/1' -p151522 -S'getHeight(${1:This}) $2' -p151523 -tp151524 -a(S'getImageCount/1' -p151525 -S'getImageCount(${1:Name}) $2' -p151526 -tp151527 -a(S'getImageCount/2' -p151528 -S'getImageCount(${1:Name}, ${2:Param2}) $3' -p151529 -tp151530 -a(S'getImageExtWildcard/0' -p151531 -S'getImageExtWildcard() $1' -p151532 -tp151533 -a(S'getMaskBlue/1' -p151534 -S'getMaskBlue(${1:This}) $2' -p151535 -tp151536 -a(S'getMaskGreen/1' -p151537 -S'getMaskGreen(${1:This}) $2' -p151538 -tp151539 -a(S'getMaskRed/1' -p151540 -S'getMaskRed(${1:This}) $2' -p151541 -tp151542 -a(S'getOption/2' -p151543 -S'getOption(${1:This}, ${2:Name}) $3' -p151544 -tp151545 -a(S'getOptionInt/2' -p151546 -S'getOptionInt(${1:This}, ${2:Name}) $3' -p151547 -tp151548 -a(S'getOrFindMaskColour/1' -p151549 -S'getOrFindMaskColour(${1:This}) $2' -p151550 -tp151551 -a(S'getPalette/1' -p151552 -S'getPalette(${1:This}) $2' -p151553 -tp151554 -a(S'getRed/3' -p151555 -S'getRed(${1:This}, ${2:X}, ${3:Y}) $4' -p151556 -tp151557 -a(S'getSubImage/2' -p151558 -S'getSubImage(${1:This}, ${2:Rect}) $3' -p151559 -tp151560 -a(S'getWidth/1' -p151561 -S'getWidth(${1:This}) $2' -p151562 -tp151563 -a(S'hasAlpha/1' -p151564 -S'hasAlpha(${1:This}) $2' -p151565 -tp151566 -a(S'hasMask/1' -p151567 -S'hasMask(${1:This}) $2' -p151568 -tp151569 -a(S'hasOption/2' -p151570 -S'hasOption(${1:This}, ${2:Name}) $3' -p151571 -tp151572 -a(S'initAlpha/1' -p151573 -S'initAlpha(${1:This}) $2' -p151574 -tp151575 -a(S'initStandardHandlers/0' -p151576 -S'initStandardHandlers() $1' -p151577 -tp151578 -a(S'isTransparent/3' -p151579 -S'isTransparent(${1:This}, ${2:X}, ${3:Y}) $4' -p151580 -tp151581 -a(S'isTransparent/4' -p151582 -S'isTransparent(${1:This}, ${2:X}, ${3:Y}, ${4:Param4}) $5' -p151583 -tp151584 -a(S'loadFile/2' -p151585 -S'loadFile(${1:This}, ${2:Name}) $3' -p151586 -tp151587 -a(S'loadFile/3' -p151588 -S'loadFile(${1:This}, ${2:Name}, ${3:Param3}) $4' -p151589 -tp151590 -a(S'loadFile/4' -p151591 -S'loadFile(${1:This}, ${2:Name}, ${3:Mimetype}, ${4:Param4}) $5' -p151592 -tp151593 -a(S'mirror/1' -p151594 -S'mirror(${1:This}) $2' -p151595 -tp151596 -a(S'mirror/2' -p151597 -S'mirror(${1:This}, ${2:Param2}) $3' -p151598 -tp151599 -a(S'new/0' -p151600 -S'new() $1' -p151601 -tp151602 -a(S'new/1' -p151603 -S'new(${1:Name}) $2' -p151604 -tp151605 -a(S'new/2' -p151606 -S'new(${1:Width}, ${2:Height}) $3' -p151607 -tp151608 -a(S'new/3' -p151609 -S'new(${1:Width}, ${2:Height}, ${3:Data}) $4' -p151610 -tp151611 -a(S'new/4' -p151612 -S'new(${1:Width}, ${2:Height}, ${3:Data}, ${4:Alpha}) $5' -p151613 -tp151614 -a(S'new/5' -p151615 -S'new(${1:Width}, ${2:Height}, ${3:Data}, ${4:Alpha}, ${5:Param5}) $6' -p151616 -tp151617 -a(S'ok/1' -p151618 -S'ok(${1:This}) $2' -p151619 -tp151620 -a(S'parent_class/1' -p151621 -S'parent_class(${1:Param1}) $2' -p151622 -tp151623 -a(S'removeHandler/1' -p151624 -S'removeHandler(${1:Name}) $2' -p151625 -tp151626 -a(S'replace/7' -p151627 -S'replace(${1:This}, ${2:R1}, ${3:G1}, ${4:B1}, ${5:R2}, ${6:G2}, ${7:B2}) $8' -p151628 -tp151629 -a(S'rescale/3' -p151630 -S'rescale(${1:This}, ${2:Width}, ${3:Height}) $4' -p151631 -tp151632 -a(S'rescale/4' -p151633 -S'rescale(${1:This}, ${2:Width}, ${3:Height}, ${4:Param4}) $5' -p151634 -tp151635 -a(S'resize/3' -p151636 -S'resize(${1:This}, ${2:Size}, ${3:Pos}) $4' -p151637 -tp151638 -a(S'resize/4' -p151639 -S'resize(${1:This}, ${2:Size}, ${3:Pos}, ${4:Param4}) $5' -p151640 -tp151641 -a(S'rotate/3' -p151642 -S'rotate(${1:This}, ${2:Angle}, ${3:Centre_of_rotation}) $4' -p151643 -tp151644 -a(S'rotate/4' -p151645 -S'rotate(${1:This}, ${2:Angle}, ${3:Centre_of_rotation}, ${4:Param4}) $5' -p151646 -tp151647 -a(S'rotate90/1' -p151648 -S'rotate90(${1:This}) $2' -p151649 -tp151650 -a(S'rotate90/2' -p151651 -S'rotate90(${1:This}, ${2:Param2}) $3' -p151652 -tp151653 -a(S'rotateHue/2' -p151654 -S'rotateHue(${1:This}, ${2:Angle}) $3' -p151655 -tp151656 -a(S'saveFile/2' -p151657 -S'saveFile(${1:This}, ${2:Name}) $3' -p151658 -tp151659 -a(S'saveFile/3' -p151660 -S'saveFile(${1:This}, ${2:Name}, ${3:Type}) $4' -p151661 -tp151662 -a(S'scale/3' -p151663 -S'scale(${1:This}, ${2:Width}, ${3:Height}) $4' -p151664 -tp151665 -a(S'scale/4' -p151666 -S'scale(${1:This}, ${2:Width}, ${3:Height}, ${4:Param4}) $5' -p151667 -tp151668 -a(S'setAlpha/2' -p151669 -S'setAlpha(${1:This}, ${2:Alpha}) $3' -p151670 -tp151671 -a(S'setAlpha/3' -p151672 -S'setAlpha(${1:This}, ${2:Alpha}, ${3:Param3}) $4' -p151673 -tp151674 -a(S'setAlpha/4' -p151675 -S'setAlpha(${1:This}, ${2:X}, ${3:Y}, ${4:Alpha}) $5' -p151676 -tp151677 -a(S'setData/2' -p151678 -S'setData(${1:This}, ${2:Data}) $3' -p151679 -tp151680 -a(S'setData/3' -p151681 -S'setData(${1:This}, ${2:Data}, ${3:Param3}) $4' -p151682 -tp151683 -a(S'setData/4' -p151684 -S'setData(${1:This}, ${2:Data}, ${3:New_width}, ${4:New_height}) $5' -p151685 -tp151686 -a(S'setData/5' -p151687 -S'setData(${1:This}, ${2:Data}, ${3:New_width}, ${4:New_height}, ${5:Param5}) $6' -p151688 -tp151689 -a(S'setMask/1' -p151690 -S'setMask(${1:This}) $2' -p151691 -tp151692 -a(S'setMask/2' -p151693 -S'setMask(${1:This}, ${2:Param2}) $3' -p151694 -tp151695 -a(S'setMaskColour/4' -p151696 -S'setMaskColour(${1:This}, ${2:R}, ${3:G}, ${4:B}) $5' -p151697 -tp151698 -a(S'setMaskFromImage/5' -p151699 -S'setMaskFromImage(${1:This}, ${2:Mask}, ${3:Mr}, ${4:Mg}, ${5:Mb}) $6' -p151700 -tp151701 -a(S'setOption/3' -p151702 -S'setOption(${1:This}, ${2:Name}, ${3:Value}) $4' -p151703 -tp151704 -a(S'setPalette/2' -p151705 -S'setPalette(${1:This}, ${2:Palette}) $3' -p151706 -tp151707 -a(S'setRGB/5' -p151708 -S'setRGB(${1:This}, ${2:Rect}, ${3:R}, ${4:G}, ${5:B}) $6' -p151709 -tp151710 -a(S'setRGB/6' -p151711 -S'setRGB(${1:This}, ${2:X}, ${3:Y}, ${4:R}, ${5:G}, ${6:B}) $7' -p151712 -tp151713 -a(S'size/3' -p151714 -S'size(${1:This}, ${2:Size}, ${3:Pos}) $4' -p151715 -tp151716 -a(S'size/4' -p151717 -S'size(${1:This}, ${2:Size}, ${3:Pos}, ${4:Param4}) $5' -p151718 -tp151719 -asS'pman_main' -p151720 -(lp151721 -(S'init/2' -p151722 -S'init(${1:PidCaller}, ${2:OSModuleExcluded}) $3' -p151723 -tp151724 -asS'wxFileDirPickerEvent' -p151725 -(lp151726 -(S'getClientData/1' -p151727 -S'getClientData(${1:This}) $2' -p151728 -tp151729 -a(S'getExtraLong/1' -p151730 -S'getExtraLong(${1:This}) $2' -p151731 -tp151732 -a(S'getId/1' -p151733 -S'getId(${1:This}) $2' -p151734 -tp151735 -a(S'getInt/1' -p151736 -S'getInt(${1:This}) $2' -p151737 -tp151738 -a(S'getPath/1' -p151739 -S'getPath(${1:This}) $2' -p151740 -tp151741 -a(S'getSelection/1' -p151742 -S'getSelection(${1:This}) $2' -p151743 -tp151744 -a(S'getSkipped/1' -p151745 -S'getSkipped(${1:This}) $2' -p151746 -tp151747 -a(S'getString/1' -p151748 -S'getString(${1:This}) $2' -p151749 -tp151750 -a(S'getTimestamp/1' -p151751 -S'getTimestamp(${1:This}) $2' -p151752 -tp151753 -a(S'isChecked/1' -p151754 -S'isChecked(${1:This}) $2' -p151755 -tp151756 -a(S'isCommandEvent/1' -p151757 -S'isCommandEvent(${1:This}) $2' -p151758 -tp151759 -a(S'isSelection/1' -p151760 -S'isSelection(${1:This}) $2' -p151761 -tp151762 -a(S'parent_class/1' -p151763 -S'parent_class(${1:Param1}) $2' -p151764 -tp151765 -a(S'resumePropagation/2' -p151766 -S'resumePropagation(${1:This}, ${2:PropagationLevel}) $3' -p151767 -tp151768 -a(S'setInt/2' -p151769 -S'setInt(${1:This}, ${2:I}) $3' -p151770 -tp151771 -a(S'setString/2' -p151772 -S'setString(${1:This}, ${2:S}) $3' -p151773 -tp151774 -a(S'shouldPropagate/1' -p151775 -S'shouldPropagate(${1:This}) $2' -p151776 -tp151777 -a(S'skip/1' -p151778 -S'skip(${1:This}) $2' -p151779 -tp151780 -a(S'skip/2' -p151781 -S'skip(${1:This}, ${2:Options}) $3' -p151782 -tp151783 -a(S'stopPropagation/1' -p151784 -S'stopPropagation(${1:This}) $2' -p151785 -tp151786 -asS'wxLogNull' -p151787 -(lp151788 -(S'destroy/1' -p151789 -S'destroy(${1:This}) $2' -p151790 -tp151791 -a(S'new/0' -p151792 -S'new() $1' -p151793 -tp151794 -a(S'parent_class/1' -p151795 -S'parent_class(${1:Param1}) $2' -p151796 -tp151797 -asS'ic_pp' -p151798 -(lp151799 -(S'run/2' -p151800 -S'run(${1:FileName}, ${2:Flags}) $3' -p151801 -tp151802 -asS'megaco_udp_server' -p151803 -(lp151804 -(S'code_change/3' -p151805 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p151806 -tp151807 -a(S'handle_call/3' -p151808 -S'handle_call(${1:Req}, ${2:From}, ${3:UdpRec}) $4' -p151809 -tp151810 -a(S'handle_cast/2' -p151811 -S'handle_cast(${1:Msg}, ${2:UdpRec}) $3' -p151812 -tp151813 -a(S'handle_info/2' -p151814 -S'handle_info(${1:Info}, ${2:UdpRec}) $3' -p151815 -tp151816 -a(S'handle_received_message/5' -p151817 -S'handle_received_message(${1:Mod}, ${2:RH}, ${3:Parent}, ${4:SH}, ${5:Msg}) $6' -p151818 -tp151819 -a(S'init/1' -p151820 -S'init(${1:Arg}) $2' -p151821 -tp151822 -a(S'start_link/1' -p151823 -S'start_link(${1:Arg}) $2' -p151824 -tp151825 -a(S'stop/1' -p151826 -S'stop(${1:Pid}) $2' -p151827 -tp151828 -a(S'terminate/2' -p151829 -S'terminate(${1:Reason}, ${2:State}) $3' -p151830 -tp151831 -a(S'upgrade_receive_handle/2' -p151832 -S'upgrade_receive_handle(${1:Pid}, ${2:NewHandle}) $3' -p151833 -tp151834 -asS'diameter_service_sup' -p151835 -(lp151836 -(S'init/1' -p151837 -S'init(${1:Param1}) $2' -p151838 -tp151839 -a(S'start_child/1' -p151840 -S'start_child(${1:ServiceName}) $2' -p151841 -tp151842 -a(S'start_link/0' -p151843 -S'start_link() $1' -p151844 -tp151845 -asS'orber_diagnostics' -p151846 -(lp151847 -(S'missing_modules/0' -p151848 -S'missing_modules() $1' -p151849 -tp151850 -a(S'nameservice/0' -p151851 -S'nameservice() $1' -p151852 -tp151853 -a(S'nameservice/1' -p151854 -S'nameservice(${1:Flags}) $2' -p151855 -tp151856 -a(S'objectkeys/0' -p151857 -S'objectkeys() $1' -p151858 -tp151859 -asS'mnesia_log' -p151860 -(lp151861 -(S'append/2' -p151862 -S'append(${1:Log}, ${2:Bin}) $3' -p151863 -tp151864 -a(S'backup/1' -p151865 -S'backup(${1:Opaque}) $2' -p151866 -tp151867 -a(S'backup/2' -p151868 -S'backup(${1:Opaque}, ${2:Mod}) $3' -p151869 -tp151870 -a(S'backup_checkpoint/2' -p151871 -S'backup_checkpoint(${1:Name}, ${2:Opaque}) $3' -p151872 -tp151873 -a(S'backup_checkpoint/3' -p151874 -S'backup_checkpoint(${1:Name}, ${2:Opaque}, ${3:Mod}) $4' -p151875 -tp151876 -a(S'backup_log_header/0' -p151877 -S'backup_log_header() $1' -p151878 -tp151879 -a(S'backup_master/2' -p151880 -S'backup_master(${1:ClientPid}, ${2:B}) $3' -p151881 -tp151882 -a(S'chunk_decision_log/1' -p151883 -S'chunk_decision_log(${1:Cont}) $2' -p151884 -tp151885 -a(S'chunk_decision_tab/1' -p151886 -S'chunk_decision_tab(${1:Cont}) $2' -p151887 -tp151888 -a(S'chunk_log/1' -p151889 -S'chunk_log(${1:Cont}) $2' -p151890 -tp151891 -a(S'chunk_log/2' -p151892 -S'chunk_log(${1:Log}, ${2:Cont}) $3' -p151893 -tp151894 -a(S'close_decision_log/0' -p151895 -S'close_decision_log() $1' -p151896 -tp151897 -a(S'close_decision_tab/0' -p151898 -S'close_decision_tab() $1' -p151899 -tp151900 -a(S'close_log/1' -p151901 -S'close_log(${1:Log}) $2' -p151902 -tp151903 -a(S'confirm_decision_log_dump/0' -p151904 -S'confirm_decision_log_dump() $1' -p151905 -tp151906 -a(S'confirm_log_dump/1' -p151907 -S'confirm_log_dump(${1:Updates}) $2' -p151908 -tp151909 -a(S'dcd2ets/1' -p151910 -S'dcd2ets(${1:Tab}) $2' -p151911 -tp151912 -a(S'dcd2ets/2' -p151913 -S'dcd2ets(${1:Tab}, ${2:Rep}) $3' -p151914 -tp151915 -a(S'dcd_log_header/0' -p151916 -S'dcd_log_header() $1' -p151917 -tp151918 -a(S'dcd_version/0' -p151919 -S'dcd_version() $1' -p151920 -tp151921 -a(S'dcl_log_header/0' -p151922 -S'dcl_log_header() $1' -p151923 -tp151924 -a(S'dcl_version/0' -p151925 -S'dcl_version() $1' -p151926 -tp151927 -a(S'decision_log_file/0' -p151928 -S'decision_log_file() $1' -p151929 -tp151930 -a(S'decision_log_version/0' -p151931 -S'decision_log_version() $1' -p151932 -tp151933 -a(S'decision_tab_file/0' -p151934 -S'decision_tab_file() $1' -p151935 -tp151936 -a(S'decision_tab_version/0' -p151937 -S'decision_tab_version() $1' -p151938 -tp151939 -a(S'ets2dcd/1' -p151940 -S'ets2dcd(${1:Tab}) $2' -p151941 -tp151942 -a(S'ets2dcd/2' -p151943 -S'ets2dcd(${1:Tab}, ${2:Ftype}) $3' -p151944 -tp151945 -a(S'init/0' -p151946 -S'init() $1' -p151947 -tp151948 -a(S'init_log_dump/0' -p151949 -S'init_log_dump() $1' -p151950 -tp151951 -a(S'latest_log_file/0' -p151952 -S'latest_log_file() $1' -p151953 -tp151954 -a(S'log/1' -p151955 -S'log(${1:C}) $2' -p151956 -tp151957 -a(S'log_decision/1' -p151958 -S'log_decision(${1:Decision}) $2' -p151959 -tp151960 -a(S'log_files/0' -p151961 -S'log_files() $1' -p151962 -tp151963 -a(S'open_decision_log/0' -p151964 -S'open_decision_log() $1' -p151965 -tp151966 -a(S'open_decision_tab/0' -p151967 -S'open_decision_tab() $1' -p151968 -tp151969 -a(S'open_log/4' -p151970 -S'open_log(${1:Name}, ${2:Header}, ${3:Fname}, ${4:Exists}) $5' -p151971 -tp151972 -a(S'open_log/6' -p151973 -S'open_log(${1:Name}, ${2:Header}, ${3:Fname}, ${4:Exists}, ${5:Repair}, ${6:Mode}) $7' -p151974 -tp151975 -a(S'prepare_decision_log_dump/0' -p151976 -S'prepare_decision_log_dump() $1' -p151977 -tp151978 -a(S'prepare_log_dump/1' -p151979 -S'prepare_log_dump(${1:InitBy}) $2' -p151980 -tp151981 -a(S'previous_decision_log_file/0' -p151982 -S'previous_decision_log_file() $1' -p151983 -tp151984 -a(S'previous_log_file/0' -p151985 -S'previous_log_file() $1' -p151986 -tp151987 -a(S'purge_all_logs/0' -p151988 -S'purge_all_logs() $1' -p151989 -tp151990 -a(S'purge_some_logs/0' -p151991 -S'purge_some_logs() $1' -p151992 -tp151993 -a(S'save_decision_tab/1' -p151994 -S'save_decision_tab(${1:Decisions}) $2' -p151995 -tp151996 -a(S'slog/1' -p151997 -S'slog(${1:C}) $2' -p151998 -tp151999 -a(S'stop/0' -p152000 -S'stop() $1' -p152001 -tp152002 -a(S'tab_copier/3' -p152003 -S'tab_copier(${1:Pid}, ${2:B}, ${3:Tab}) $4' -p152004 -tp152005 -a(S'trans_log_header/0' -p152006 -S'trans_log_header() $1' -p152007 -tp152008 -a(S'unsafe_close_log/1' -p152009 -S'unsafe_close_log(${1:Log}) $2' -p152010 -tp152011 -a(S'version/0' -p152012 -S'version() $1' -p152013 -tp152014 -a(S'view/0' -p152015 -S'view() $1' -p152016 -tp152017 -a(S'view/1' -p152018 -S'view(${1:File}) $2' -p152019 -tp152020 -a(S'write_trans_log_header/0' -p152021 -S'write_trans_log_header() $1' -p152022 -tp152023 -asS'orber_ifr_wstringdef' -p152024 -(lp152025 -(S"'_get_bound'/1" -p152026 -S"'_get_bound'() $1" -p152027 -tp152028 -a(S"'_get_def_kind'/1" -p152029 -S"'_get_def_kind'() $1" -p152030 -tp152031 -a(S"'_get_type'/1" -p152032 -S"'_get_type'() $1" -p152033 -tp152034 -a(S"'_set_bound'/2" -p152035 -S"'_set_bound'() $1" -p152036 -tp152037 -a(S'cleanup_for_destroy/1' -p152038 -S'cleanup_for_destroy() $1' -p152039 -tp152040 -a(S'destroy/1' -p152041 -S'destroy() $1' -p152042 -tp152043 -asS'CosFileTransfer_FileWrapper' -p152044 -(lp152045 -(S'id/0' -p152046 -S'id() $1' -p152047 -tp152048 -a(S'name/0' -p152049 -S'name() $1' -p152050 -tp152051 -a(S'tc/0' -p152052 -S'tc() $1' -p152053 -tp152054 -asS'int' -p152055 -(lp152056 -(S'action_at_break/3' -p152057 -S'action_at_break(${1:Mod}, ${2:Line}, ${3:Action}) $4' -p152058 -tp152059 -a(S'all_breaks/0' -p152060 -S'all_breaks() $1' -p152061 -tp152062 -a(S'all_breaks/1' -p152063 -S'all_breaks(${1:Mod}) $2' -p152064 -tp152065 -a(S'attach/2' -p152066 -S'attach(${1:Flags}, ${2:Function}) $3' -p152067 -tp152068 -a(S'attached/1' -p152069 -S'attached(${1:Pid}) $2' -p152070 -tp152071 -a(S'auto_attach/0' -p152072 -S'auto_attach() $1' -p152073 -tp152074 -a(S'auto_attach/1' -p152075 -S'auto_attach(${1:Param1}) $2' -p152076 -tp152077 -a(S'auto_attach/2' -p152078 -S'auto_attach(${1:Flags}, ${2:Param2}) $3' -p152079 -tp152080 -a(S'break/2' -p152081 -S'break(${1:Mod}, ${2:Line}) $3' -p152082 -tp152083 -a(S'break_in/3' -p152084 -S'break_in(${1:Mod}, ${2:Func}, ${3:Arity}) $4' -p152085 -tp152086 -a(S'clear/0' -p152087 -S'clear() $1' -p152088 -tp152089 -a(S'contents/2' -p152090 -S'contents(${1:Mod}, ${2:Pid}) $3' -p152091 -tp152092 -a(S'continue/1' -p152093 -S'continue(${1:Pid}) $2' -p152094 -tp152095 -a(S'continue/3' -p152096 -S'continue(${1:X}, ${2:Y}, ${3:Z}) $4' -p152097 -tp152098 -a(S'del_break_in/3' -p152099 -S'del_break_in(${1:Mod}, ${2:Func}, ${3:Arity}) $4' -p152100 -tp152101 -a(S'delete_break/2' -p152102 -S'delete_break(${1:Mod}, ${2:Line}) $3' -p152103 -tp152104 -a(S'disable_break/2' -p152105 -S'disable_break(${1:Mod}, ${2:Line}) $3' -p152106 -tp152107 -a(S'enable_break/2' -p152108 -S'enable_break(${1:Mod}, ${2:Line}) $3' -p152109 -tp152110 -a(S'eval/3' -p152111 -S'eval(${1:Mod}, ${2:Func}, ${3:Args}) $4' -p152112 -tp152113 -a(S'file/1' -p152114 -S'file(${1:Mod}) $2' -p152115 -tp152116 -a(S'finish/1' -p152117 -S'finish(${1:Pid}) $2' -p152118 -tp152119 -a(S'functions/1' -p152120 -S'functions(${1:Mod}) $2' -p152121 -tp152122 -a(S'get_binding/2' -p152123 -S'get_binding(${1:Var}, ${2:Bs}) $3' -p152124 -tp152125 -a(S'i/1' -p152126 -S'i(${1:AbsMods}) $2' -p152127 -tp152128 -a(S'i/2' -p152129 -S'i(${1:AbsMods}, ${2:Param2}) $3' -p152130 -tp152131 -a(S'interpretable/1' -p152132 -S'interpretable(${1:AbsMod}) $2' -p152133 -tp152134 -a(S'interpreted/0' -p152135 -S'interpreted() $1' -p152136 -tp152137 -a(S'meta/2' -p152138 -S'meta(${1:Meta}, ${2:Param2}) $3' -p152139 -tp152140 -a(S'meta/3' -p152141 -S'meta(${1:Meta}, ${2:Param2}, ${3:Trace}) $4' -p152142 -tp152143 -a(S'n/1' -p152144 -S'n(${1:AbsMods}) $2' -p152145 -tp152146 -a(S'next/1' -p152147 -S'next(${1:Pid}) $2' -p152148 -tp152149 -a(S'ni/1' -p152150 -S'ni(${1:AbsMods}) $2' -p152151 -tp152152 -a(S'ni/2' -p152153 -S'ni(${1:AbsMods}, ${2:Param2}) $3' -p152154 -tp152155 -a(S'nn/1' -p152156 -S'nn(${1:AbsMods}) $2' -p152157 -tp152158 -a(S'no_break/0' -p152159 -S'no_break() $1' -p152160 -tp152161 -a(S'no_break/1' -p152162 -S'no_break(${1:Mod}) $2' -p152163 -tp152164 -a(S'snapshot/0' -p152165 -S'snapshot() $1' -p152166 -tp152167 -a(S'stack_trace/0' -p152168 -S'stack_trace() $1' -p152169 -tp152170 -a(S'stack_trace/1' -p152171 -S'stack_trace(${1:Flag}) $2' -p152172 -tp152173 -a(S'start/0' -p152174 -S'start() $1' -p152175 -tp152176 -a(S'step/1' -p152177 -S'step(${1:Pid}) $2' -p152178 -tp152179 -a(S'stop/0' -p152180 -S'stop() $1' -p152181 -tp152182 -a(S'subscribe/0' -p152183 -S'subscribe() $1' -p152184 -tp152185 -a(S'test_at_break/3' -p152186 -S'test_at_break(${1:Mod}, ${2:Line}, ${3:Function}) $4' -p152187 -tp152188 -asS'beam_opcodes' -p152189 -(lp152190 -(S'format_number/0' -p152191 -S'format_number() $1' -p152192 -tp152193 -a(S'opcode/2' -p152194 -S'opcode(${1:Name}, ${2:Arity}) $3' -p152195 -tp152196 -a(S'opname/1' -p152197 -S'opname(${1:Number}) $2' -p152198 -tp152199 -asS'CosTransactions_PropagationContext' -p152200 -(lp152201 -(S'id/0' -p152202 -S'id() $1' -p152203 -tp152204 -a(S'name/0' -p152205 -S'name() $1' -p152206 -tp152207 -a(S'tc/0' -p152208 -S'tc() $1' -p152209 -tp152210 -asS'appmon_txt' -p152211 -(lp152212 -(S'fprint/1' -p152213 -S'fprint(${1:File}) $2' -p152214 -tp152215 -a(S'handle_call/3' -p152216 -S'handle_call(${1:Param1}, ${2:Param2}, ${3:State}) $4' -p152217 -tp152218 -a(S'handle_cast/2' -p152219 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p152220 -tp152221 -a(S'handle_info/2' -p152222 -S'handle_info(${1:Request}, ${2:State}) $3' -p152223 -tp152224 -a(S'init/1' -p152225 -S'init(${1:Opts}) $2' -p152226 -tp152227 -a(S'print/1' -p152228 -S'print(${1:Txt}) $2' -p152229 -tp152230 -a(S'start/0' -p152231 -S'start() $1' -p152232 -tp152233 -a(S'start/1' -p152234 -S'start(${1:Opts}) $2' -p152235 -tp152236 -a(S'terminate/2' -p152237 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p152238 -tp152239 -asS'reltool_target' -p152240 -(lp152241 -(S'eval_spec/3' -p152242 -S'eval_spec(${1:Spec}, ${2:SourceDir}, ${3:TargetDir}) $4' -p152243 -tp152244 -a(S'gen_app/1' -p152245 -S'gen_app() $1' -p152246 -tp152247 -a(S'gen_boot/1' -p152248 -S'gen_boot(${1:Script}) $2' -p152249 -tp152250 -a(S'gen_config/2' -p152251 -S'gen_config(${1:Sys}, ${2:InclDefs}) $3' -p152252 -tp152253 -a(S'gen_rel/2' -p152254 -S'gen_rel(${1:Rel}, ${2:Sys}) $3' -p152255 -tp152256 -a(S'gen_rel_files/2' -p152257 -S'gen_rel_files(${1:Sys}, ${2:TargetDir}) $3' -p152258 -tp152259 -a(S'gen_script/4' -p152260 -S'gen_script(${1:Rel}, ${2:Sys}, ${3:PathFlag}, ${4:Variables}) $5' -p152261 -tp152262 -a(S'gen_spec/1' -p152263 -S'gen_spec(${1:Sys}) $2' -p152264 -tp152265 -a(S'gen_target/2' -p152266 -S'gen_target(${1:Sys}, ${2:TargetDir}) $3' -p152267 -tp152268 -a(S'install/2' -p152269 -S'install(${1:RelName}, ${2:TargetDir}) $3' -p152270 -tp152271 -asS'dialyzer_cl_parse' -p152272 -(lp152273 -(S'collect_args/1' -p152274 -S'collect_args(${1:List}) $2' -p152275 -tp152276 -a(S'get_lib_dir/1' -p152277 -S'get_lib_dir(${1:Apps}) $2' -p152278 -tp152279 -a(S'start/0' -p152280 -S'start() $1' -p152281 -tp152282 -asS'et_wx_viewer' -p152283 -(lp152284 -(S'code_change/3' -p152285 -S'code_change(${1:Param1}, ${2:S}, ${3:Param3}) $4' -p152286 -tp152287 -a(S'handle_call/3' -p152288 -S'handle_call(${1:Request}, ${2:From}, ${3:S}) $4' -p152289 -tp152290 -a(S'handle_cast/2' -p152291 -S'handle_cast(${1:Msg}, ${2:S}) $3' -p152292 -tp152293 -a(S'handle_info/2' -p152294 -S'handle_info(${1:Wx}, ${2:S}) $3' -p152295 -tp152296 -a(S'init/1' -p152297 -S'init(${1:Param1}) $2' -p152298 -tp152299 -a(S'start_link/1' -p152300 -S'start_link(${1:Options}) $2' -p152301 -tp152302 -a(S'terminate/2' -p152303 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p152304 -tp152305 -asS'tv_pd_frames' -p152306 -(lp152307 -(S'create_display_frames/4' -p152308 -S'create_display_frames(${1:WindowId}, ${2:WindowWidth}, ${3:WindowHeight}, ${4:FrameP}) $5' -p152309 -tp152310 -a(S'resize_display_frames/3' -p152311 -S'resize_display_frames(${1:NewW}, ${2:NewH}, ${3:FrameP}) $4' -p152312 -tp152313 -asS'lcnt' -p152314 -(lp152315 -(S'all_conflicts/0' -p152316 -S'all_conflicts() $1' -p152317 -tp152318 -a(S'all_conflicts/1' -p152319 -S'all_conflicts(${1:Sort}) $2' -p152320 -tp152321 -a(S'apply/1' -p152322 -S'apply(${1:Fun}) $2' -p152323 -tp152324 -a(S'apply/2' -p152325 -S'apply(${1:Fun}, ${2:As}) $3' -p152326 -tp152327 -a(S'apply/3' -p152328 -S'apply(${1:M}, ${2:F}, ${3:As}) $4' -p152329 -tp152330 -a(S'clear/0' -p152331 -S'clear() $1' -p152332 -tp152333 -a(S'clear/1' -p152334 -S'clear(${1:Node}) $2' -p152335 -tp152336 -a(S'code_change/3' -p152337 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p152338 -tp152339 -a(S'collect/0' -p152340 -S'collect() $1' -p152341 -tp152342 -a(S'collect/1' -p152343 -S'collect(${1:Node}) $2' -p152344 -tp152345 -a(S'conflicts/0' -p152346 -S'conflicts() $1' -p152347 -tp152348 -a(S'conflicts/1' -p152349 -S'conflicts(${1:Opts}) $2' -p152350 -tp152351 -a(S'handle_call/3' -p152352 -S'handle_call(${1:Command}, ${2:Param2}, ${3:State}) $4' -p152353 -tp152354 -a(S'handle_cast/2' -p152355 -S'handle_cast(${1:Param1}, ${2:State}) $3' -p152356 -tp152357 -a(S'handle_info/2' -p152358 -S'handle_info(${1:Param1}, ${2:State}) $3' -p152359 -tp152360 -a(S'information/0' -p152361 -S'information() $1' -p152362 -tp152363 -a(S'init/1' -p152364 -S'init(${1:Param1}) $2' -p152365 -tp152366 -a(S'inspect/1' -p152367 -S'inspect(${1:Lock}) $2' -p152368 -tp152369 -a(S'inspect/2' -p152370 -S'inspect(${1:Lock}, ${2:Opts}) $3' -p152371 -tp152372 -a(S'load/1' -p152373 -S'load(${1:Filename}) $2' -p152374 -tp152375 -a(S'locations/0' -p152376 -S'locations() $1' -p152377 -tp152378 -a(S'locations/1' -p152379 -S'locations(${1:Opts}) $2' -p152380 -tp152381 -a(S'pid/2' -p152382 -S'pid(${1:Id}, ${2:Serial}) $3' -p152383 -tp152384 -a(S'pid/3' -p152385 -S'pid(${1:Node}, ${2:Id}, ${3:Serial}) $4' -p152386 -tp152387 -a(S'port/1' -p152388 -S'port(${1:Id}) $2' -p152389 -tp152390 -a(S'port/2' -p152391 -S'port(${1:Node}, ${2:Id}) $3' -p152392 -tp152393 -a(S'raw/0' -p152394 -S'raw() $1' -p152395 -tp152396 -a(S'rt_clear/0' -p152397 -S'rt_clear() $1' -p152398 -tp152399 -a(S'rt_clear/1' -p152400 -S'rt_clear(${1:Node}) $2' -p152401 -tp152402 -a(S'rt_collect/0' -p152403 -S'rt_collect() $1' -p152404 -tp152405 -a(S'rt_collect/1' -p152406 -S'rt_collect(${1:Node}) $2' -p152407 -tp152408 -a(S'rt_opt/1' -p152409 -S'rt_opt(${1:Param1}) $2' -p152410 -tp152411 -a(S'rt_opt/2' -p152412 -S'rt_opt(${1:Node}, ${2:Param2}) $3' -p152413 -tp152414 -a(S'save/1' -p152415 -S'save(${1:Filename}) $2' -p152416 -tp152417 -a(S'set/1' -p152418 -S'set(${1:Param1}) $2' -p152419 -tp152420 -a(S'set/2' -p152421 -S'set(${1:Option}, ${2:Value}) $3' -p152422 -tp152423 -a(S'start/0' -p152424 -S'start() $1' -p152425 -tp152426 -a(S'stop/0' -p152427 -S'stop() $1' -p152428 -tp152429 -a(S'swap_pid_keys/0' -p152430 -S'swap_pid_keys() $1' -p152431 -tp152432 -a(S'terminate/2' -p152433 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p152434 -tp152435 -asS'xmerl_xsd' -p152436 -(lp152437 -(S'file2state/1' -p152438 -S'file2state(${1:FileName}) $2' -p152439 -tp152440 -a(S'format_error/1' -p152441 -S'format_error(${1:L}) $2' -p152442 -tp152443 -a(S'print_table/1' -p152444 -S'print_table(${1:Param1}) $2' -p152445 -tp152446 -a(S'process_schema/1' -p152447 -S'process_schema(${1:Schema}) $2' -p152448 -tp152449 -a(S'process_schema/2' -p152450 -S'process_schema(${1:Schema}, ${2:Options}) $3' -p152451 -tp152452 -a(S'process_schemas/1' -p152453 -S'process_schemas(${1:Schemas}) $2' -p152454 -tp152455 -a(S'process_schemas/2' -p152456 -S'process_schemas(${1:Param1}, ${2:Options}) $3' -p152457 -tp152458 -a(S'process_validate/2' -p152459 -S'process_validate(${1:Schema}, ${2:Xml}) $3' -p152460 -tp152461 -a(S'process_validate/3' -p152462 -S'process_validate(${1:Schema}, ${2:Xml}, ${3:Opts}) $4' -p152463 -tp152464 -a(S'state2file/1' -p152465 -S'state2file(${1:Param1}) $2' -p152466 -tp152467 -a(S'state2file/2' -p152468 -S'state2file(${1:S}, ${2:FileName}) $3' -p152469 -tp152470 -a(S'validate/2' -p152471 -S'validate(${1:Xml}, ${2:State}) $3' -p152472 -tp152473 -a(S'validate/3' -p152474 -S'validate(${1:Xml}, ${2:State}, ${3:Opts}) $4' -p152475 -tp152476 -asS'oe_CosEventComm_CAdmin' -p152477 -(lp152478 -(S'code_change/3' -p152479 -S'code_change(${1:OldVsn}, ${2:State}, ${3:Extra}) $4' -p152480 -tp152481 -a(S'handle_call/3' -p152482 -S'handle_call(${1:Param1}, ${2:OE_From}, ${3:OE_State}) $4' -p152483 -tp152484 -a(S'handle_cast/2' -p152485 -S'handle_cast(${1:Param1}, ${2:OE_State}) $3' -p152486 -tp152487 -a(S'handle_info/2' -p152488 -S'handle_info(${1:Info}, ${2:State}) $3' -p152489 -tp152490 -a(S'init/1' -p152491 -S'init(${1:Env}) $2' -p152492 -tp152493 -a(S'obtain_pull_supplier/1' -p152494 -S'obtain_pull_supplier(${1:OE_THIS}) $2' -p152495 -tp152496 -a(S'obtain_pull_supplier/2' -p152497 -S'obtain_pull_supplier(${1:OE_THIS}, ${2:OE_Options}) $3' -p152498 -tp152499 -a(S'obtain_push_supplier/1' -p152500 -S'obtain_push_supplier(${1:OE_THIS}) $2' -p152501 -tp152502 -a(S'obtain_push_supplier/2' -p152503 -S'obtain_push_supplier(${1:OE_THIS}, ${2:OE_Options}) $3' -p152504 -tp152505 -a(S'oe_create/0' -p152506 -S'oe_create() $1' -p152507 -tp152508 -a(S'oe_create/1' -p152509 -S'oe_create(${1:Env}) $2' -p152510 -tp152511 -a(S'oe_create/2' -p152512 -S'oe_create(${1:Env}, ${2:RegName}) $3' -p152513 -tp152514 -a(S'oe_create_link/0' -p152515 -S'oe_create_link() $1' -p152516 -tp152517 -a(S'oe_create_link/1' -p152518 -S'oe_create_link(${1:Env}) $2' -p152519 -tp152520 -a(S'oe_create_link/2' -p152521 -S'oe_create_link(${1:Env}, ${2:RegName}) $3' -p152522 -tp152523 -a(S'oe_get_interface/0' -p152524 -S'oe_get_interface() $1' -p152525 -tp152526 -a(S'oe_is_a/1' -p152527 -S'oe_is_a(${1:Param1}) $2' -p152528 -tp152529 -a(S'oe_tc/1' -p152530 -S'oe_tc(${1:Param1}) $2' -p152531 -tp152532 -a(S'send/2' -p152533 -S'send(${1:OE_THIS}, ${2:Event}) $3' -p152534 -tp152535 -a(S'send/3' -p152536 -S'send(${1:OE_THIS}, ${2:OE_Options}, ${3:Event}) $4' -p152537 -tp152538 -a(S'send_sync/2' -p152539 -S'send_sync(${1:OE_THIS}, ${2:Event}) $3' -p152540 -tp152541 -a(S'send_sync/3' -p152542 -S'send_sync(${1:OE_THIS}, ${2:OE_Options}, ${3:Event}) $4' -p152543 -tp152544 -a(S'terminate/2' -p152545 -S'terminate(${1:Reason}, ${2:State}) $3' -p152546 -tp152547 -a(S'typeID/0' -p152548 -S'typeID() $1' -p152549 -tp152550 -asS'wxGrid' -p152551 -(lp152552 -(S'appendCols/1' -p152553 -S'appendCols(${1:This}) $2' -p152554 -tp152555 -a(S'appendCols/2' -p152556 -S'appendCols(${1:This}, ${2:Param2}) $3' -p152557 -tp152558 -a(S'appendRows/1' -p152559 -S'appendRows(${1:This}) $2' -p152560 -tp152561 -a(S'appendRows/2' -p152562 -S'appendRows(${1:This}, ${2:Param2}) $3' -p152563 -tp152564 -a(S'autoSize/1' -p152565 -S'autoSize(${1:This}) $2' -p152566 -tp152567 -a(S'autoSizeColumn/2' -p152568 -S'autoSizeColumn(${1:This}, ${2:Col}) $3' -p152569 -tp152570 -a(S'autoSizeColumn/3' -p152571 -S'autoSizeColumn(${1:This}, ${2:Col}, ${3:Param3}) $4' -p152572 -tp152573 -a(S'autoSizeColumns/1' -p152574 -S'autoSizeColumns(${1:This}) $2' -p152575 -tp152576 -a(S'autoSizeColumns/2' -p152577 -S'autoSizeColumns(${1:This}, ${2:Param2}) $3' -p152578 -tp152579 -a(S'autoSizeRow/2' -p152580 -S'autoSizeRow(${1:This}, ${2:Row}) $3' -p152581 -tp152582 -a(S'autoSizeRow/3' -p152583 -S'autoSizeRow(${1:This}, ${2:Row}, ${3:Param3}) $4' -p152584 -tp152585 -a(S'autoSizeRows/1' -p152586 -S'autoSizeRows(${1:This}) $2' -p152587 -tp152588 -a(S'autoSizeRows/2' -p152589 -S'autoSizeRows(${1:This}, ${2:Param2}) $3' -p152590 -tp152591 -a(S'beginBatch/1' -p152592 -S'beginBatch(${1:This}) $2' -p152593 -tp152594 -a(S'blockToDeviceRect/3' -p152595 -S'blockToDeviceRect(${1:This}, ${2:TopLeft}, ${3:BottomRight}) $4' -p152596 -tp152597 -a(S'cacheBestSize/2' -p152598 -S'cacheBestSize(${1:This}, ${2:Size}) $3' -p152599 -tp152600 -a(S'calcScrolledPosition/2' -p152601 -S'calcScrolledPosition(${1:This}, ${2:Pt}) $3' -p152602 -tp152603 -a(S'calcScrolledPosition/3' -p152604 -S'calcScrolledPosition(${1:This}, ${2:X}, ${3:Y}) $4' -p152605 -tp152606 -a(S'calcUnscrolledPosition/2' -p152607 -S'calcUnscrolledPosition(${1:This}, ${2:Pt}) $3' -p152608 -tp152609 -a(S'calcUnscrolledPosition/3' -p152610 -S'calcUnscrolledPosition(${1:This}, ${2:X}, ${3:Y}) $4' -p152611 -tp152612 -a(S'canDragColSize/1' -p152613 -S'canDragColSize(${1:This}) $2' -p152614 -tp152615 -a(S'canDragGridSize/1' -p152616 -S'canDragGridSize(${1:This}) $2' -p152617 -tp152618 -a(S'canDragRowSize/1' -p152619 -S'canDragRowSize(${1:This}) $2' -p152620 -tp152621 -a(S'canEnableCellControl/1' -p152622 -S'canEnableCellControl(${1:This}) $2' -p152623 -tp152624 -a(S'captureMouse/1' -p152625 -S'captureMouse(${1:This}) $2' -p152626 -tp152627 -a(S'cellToRect/2' -p152628 -S'cellToRect(${1:This}, ${2:Coords}) $3' -p152629 -tp152630 -a(S'cellToRect/3' -p152631 -S'cellToRect(${1:This}, ${2:Row}, ${3:Col}) $4' -p152632 -tp152633 -a(S'center/1' -p152634 -S'center(${1:This}) $2' -p152635 -tp152636 -a(S'center/2' -p152637 -S'center(${1:This}, ${2:Options}) $3' -p152638 -tp152639 -a(S'centerOnParent/1' -p152640 -S'centerOnParent(${1:This}) $2' -p152641 -tp152642 -a(S'centerOnParent/2' -p152643 -S'centerOnParent(${1:This}, ${2:Options}) $3' -p152644 -tp152645 -a(S'centre/1' -p152646 -S'centre(${1:This}) $2' -p152647 -tp152648 -a(S'centre/2' -p152649 -S'centre(${1:This}, ${2:Options}) $3' -p152650 -tp152651 -a(S'centreOnParent/1' -p152652 -S'centreOnParent(${1:This}) $2' -p152653 -tp152654 -a(S'centreOnParent/2' -p152655 -S'centreOnParent(${1:This}, ${2:Options}) $3' -p152656 -tp152657 -a(S'clearBackground/1' -p152658 -S'clearBackground(${1:This}) $2' -p152659 -tp152660 -a(S'clearGrid/1' -p152661 -S'clearGrid(${1:This}) $2' -p152662 -tp152663 -a(S'clearSelection/1' -p152664 -S'clearSelection(${1:This}) $2' -p152665 -tp152666 -a(S'clientToScreen/2' -p152667 -S'clientToScreen(${1:This}, ${2:Pt}) $3' -p152668 -tp152669 -a(S'clientToScreen/3' -p152670 -S'clientToScreen(${1:This}, ${2:X}, ${3:Y}) $4' -p152671 -tp152672 -a(S'close/1' -p152673 -S'close(${1:This}) $2' -p152674 -tp152675 -a(S'close/2' -p152676 -S'close(${1:This}, ${2:Options}) $3' -p152677 -tp152678 -a(S'connect/2' -p152679 -S'connect(${1:This}, ${2:EventType}) $3' -p152680 -tp152681 -a(S'connect/3' -p152682 -S'connect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p152683 -tp152684 -a(S'convertDialogToPixels/2' -p152685 -S'convertDialogToPixels(${1:This}, ${2:Sz}) $3' -p152686 -tp152687 -a(S'convertPixelsToDialog/2' -p152688 -S'convertPixelsToDialog(${1:This}, ${2:Sz}) $3' -p152689 -tp152690 -a(S'createGrid/3' -p152691 -S'createGrid(${1:This}, ${2:NumRows}, ${3:NumCols}) $4' -p152692 -tp152693 -a(S'createGrid/4' -p152694 -S'createGrid(${1:This}, ${2:NumRows}, ${3:NumCols}, ${4:Param4}) $5' -p152695 -tp152696 -a(S'deleteCols/1' -p152697 -S'deleteCols(${1:This}) $2' -p152698 -tp152699 -a(S'deleteCols/2' -p152700 -S'deleteCols(${1:This}, ${2:Param2}) $3' -p152701 -tp152702 -a(S'deleteRows/1' -p152703 -S'deleteRows(${1:This}) $2' -p152704 -tp152705 -a(S'deleteRows/2' -p152706 -S'deleteRows(${1:This}, ${2:Param2}) $3' -p152707 -tp152708 -a(S'destroy/1' -p152709 -S'destroy(${1:This}) $2' -p152710 -tp152711 -a(S'destroyChildren/1' -p152712 -S'destroyChildren(${1:This}) $2' -p152713 -tp152714 -a(S'disable/1' -p152715 -S'disable(${1:This}) $2' -p152716 -tp152717 -a(S'disableCellEditControl/1' -p152718 -S'disableCellEditControl(${1:This}) $2' -p152719 -tp152720 -a(S'disableDragColSize/1' -p152721 -S'disableDragColSize(${1:This}) $2' -p152722 -tp152723 -a(S'disableDragGridSize/1' -p152724 -S'disableDragGridSize(${1:This}) $2' -p152725 -tp152726 -a(S'disableDragRowSize/1' -p152727 -S'disableDragRowSize(${1:This}) $2' -p152728 -tp152729 -a(S'disconnect/1' -p152730 -S'disconnect(${1:This}) $2' -p152731 -tp152732 -a(S'disconnect/2' -p152733 -S'disconnect(${1:This}, ${2:EventType}) $3' -p152734 -tp152735 -a(S'disconnect/3' -p152736 -S'disconnect(${1:This}, ${2:EventType}, ${3:Options}) $4' -p152737 -tp152738 -a(S'doPrepareDC/2' -p152739 -S'doPrepareDC(${1:This}, ${2:Dc}) $3' -p152740 -tp152741 -a(S'enable/1' -p152742 -S'enable(${1:This}) $2' -p152743 -tp152744 -a(S'enable/2' -p152745 -S'enable(${1:This}, ${2:Options}) $3' -p152746 -tp152747 -a(S'enableCellEditControl/1' -p152748 -S'enableCellEditControl(${1:This}) $2' -p152749 -tp152750 -a(S'enableCellEditControl/2' -p152751 -S'enableCellEditControl(${1:This}, ${2:Param2}) $3' -p152752 -tp152753 -a(S'enableDragColSize/1' -p152754 -S'enableDragColSize(${1:This}) $2' -p152755 -tp152756 -a(S'enableDragColSize/2' -p152757 -S'enableDragColSize(${1:This}, ${2:Param2}) $3' -p152758 -tp152759 -a(S'enableDragGridSize/1' -p152760 -S'enableDragGridSize(${1:This}) $2' -p152761 -tp152762 -a(S'enableDragGridSize/2' -p152763 -S'enableDragGridSize(${1:This}, ${2:Param2}) $3' -p152764 -tp152765 -a(S'enableDragRowSize/1' -p152766 -S'enableDragRowSize(${1:This}) $2' -p152767 -tp152768 -a(S'enableDragRowSize/2' -p152769 -S'enableDragRowSize(${1:This}, ${2:Param2}) $3' -p152770 -tp152771 -a(S'enableEditing/2' -p152772 -S'enableEditing(${1:This}, ${2:Edit}) $3' -p152773 -tp152774 -a(S'enableGridLines/1' -p152775 -S'enableGridLines(${1:This}) $2' -p152776 -tp152777 -a(S'enableGridLines/2' -p152778 -S'enableGridLines(${1:This}, ${2:Param2}) $3' -p152779 -tp152780 -a(S'enableScrolling/3' -p152781 -S'enableScrolling(${1:This}, ${2:X_scrolling}, ${3:Y_scrolling}) $4' -p152782 -tp152783 -a(S'endBatch/1' -p152784 -S'endBatch(${1:This}) $2' -p152785 -tp152786 -a(S'findWindow/2' -p152787 -S'findWindow(${1:This}, ${2:Winid}) $3' -p152788 -tp152789 -a(S'fit/1' -p152790 -S'fit(${1:This}) $2' -p152791 -tp152792 -a(S'fitInside/1' -p152793 -S'fitInside(${1:This}) $2' -p152794 -tp152795 -a(S'forceRefresh/1' -p152796 -S'forceRefresh(${1:This}) $2' -p152797 -tp152798 -a(S'freeze/1' -p152799 -S'freeze(${1:This}) $2' -p152800 -tp152801 -a(S'getAcceleratorTable/1' -p152802 -S'getAcceleratorTable(${1:This}) $2' -p152803 -tp152804 -a(S'getBackgroundColour/1' -p152805 -S'getBackgroundColour(${1:This}) $2' -p152806 -tp152807 -a(S'getBackgroundStyle/1' -p152808 -S'getBackgroundStyle(${1:This}) $2' -p152809 -tp152810 -a(S'getBatchCount/1' -p152811 -S'getBatchCount(${1:This}) $2' -p152812 -tp152813 -a(S'getBestSize/1' -p152814 -S'getBestSize(${1:This}) $2' -p152815 -tp152816 -a(S'getCaret/1' -p152817 -S'getCaret(${1:This}) $2' -p152818 -tp152819 -a(S'getCellAlignment/3' -p152820 -S'getCellAlignment(${1:This}, ${2:Row}, ${3:Col}) $4' -p152821 -tp152822 -a(S'getCellBackgroundColour/3' -p152823 -S'getCellBackgroundColour(${1:This}, ${2:Row}, ${3:Col}) $4' -p152824 -tp152825 -a(S'getCellEditor/3' -p152826 -S'getCellEditor(${1:This}, ${2:Row}, ${3:Col}) $4' -p152827 -tp152828 -a(S'getCellFont/3' -p152829 -S'getCellFont(${1:This}, ${2:Row}, ${3:Col}) $4' -p152830 -tp152831 -a(S'getCellRenderer/3' -p152832 -S'getCellRenderer(${1:This}, ${2:Row}, ${3:Col}) $4' -p152833 -tp152834 -a(S'getCellTextColour/3' -p152835 -S'getCellTextColour(${1:This}, ${2:Row}, ${3:Col}) $4' -p152836 -tp152837 -a(S'getCellValue/2' -p152838 -S'getCellValue(${1:This}, ${2:Coords}) $3' -p152839 -tp152840 -a(S'getCellValue/3' -p152841 -S'getCellValue(${1:This}, ${2:Row}, ${3:Col}) $4' -p152842 -tp152843 -a(S'getCharHeight/1' -p152844 -S'getCharHeight(${1:This}) $2' -p152845 -tp152846 -a(S'getCharWidth/1' -p152847 -S'getCharWidth(${1:This}) $2' -p152848 -tp152849 -a(S'getChildren/1' -p152850 -S'getChildren(${1:This}) $2' -p152851 -tp152852 -a(S'getClientSize/1' -p152853 -S'getClientSize(${1:This}) $2' -p152854 -tp152855 -a(S'getColLabelAlignment/1' -p152856 -S'getColLabelAlignment(${1:This}) $2' -p152857 -tp152858 -a(S'getColLabelSize/1' -p152859 -S'getColLabelSize(${1:This}) $2' -p152860 -tp152861 -a(S'getColLabelValue/2' -p152862 -S'getColLabelValue(${1:This}, ${2:Col}) $3' -p152863 -tp152864 -a(S'getColMinimalAcceptableWidth/1' -p152865 -S'getColMinimalAcceptableWidth(${1:This}) $2' -p152866 -tp152867 -a(S'getContainingSizer/1' -p152868 -S'getContainingSizer(${1:This}) $2' -p152869 -tp152870 -a(S'getCursor/1' -p152871 -S'getCursor(${1:This}) $2' -p152872 -tp152873 -a(S'getDefaultCellAlignment/1' -p152874 -S'getDefaultCellAlignment(${1:This}) $2' -p152875 -tp152876 -a(S'getDefaultCellBackgroundColour/1' -p152877 -S'getDefaultCellBackgroundColour(${1:This}) $2' -p152878 -tp152879 -a(S'getDefaultCellFont/1' -p152880 -S'getDefaultCellFont(${1:This}) $2' -p152881 -tp152882 -a(S'getDefaultCellTextColour/1' -p152883 -S'getDefaultCellTextColour(${1:This}) $2' -p152884 -tp152885 -a(S'getDefaultColLabelSize/1' -p152886 -S'getDefaultColLabelSize(${1:This}) $2' -p152887 -tp152888 -a(S'getDefaultColSize/1' -p152889 -S'getDefaultColSize(${1:This}) $2' -p152890 -tp152891 -a(S'getDefaultEditor/1' -p152892 -S'getDefaultEditor(${1:This}) $2' -p152893 -tp152894 -a(S'getDefaultEditorForCell/2' -p152895 -S'getDefaultEditorForCell(${1:This}, ${2:C}) $3' -p152896 -tp152897 -a(S'getDefaultEditorForCell/3' -p152898 -S'getDefaultEditorForCell(${1:This}, ${2:Row}, ${3:Col}) $4' -p152899 -tp152900 -a(S'getDefaultEditorForType/2' -p152901 -S'getDefaultEditorForType(${1:This}, ${2:TypeName}) $3' -p152902 -tp152903 -a(S'getDefaultRenderer/1' -p152904 -S'getDefaultRenderer(${1:This}) $2' -p152905 -tp152906 -a(S'getDefaultRendererForCell/3' -p152907 -S'getDefaultRendererForCell(${1:This}, ${2:Row}, ${3:Col}) $4' -p152908 -tp152909 -a(S'getDefaultRendererForType/2' -p152910 -S'getDefaultRendererForType(${1:This}, ${2:TypeName}) $3' -p152911 -tp152912 -a(S'getDefaultRowLabelSize/1' -p152913 -S'getDefaultRowLabelSize(${1:This}) $2' -p152914 -tp152915 -a(S'getDefaultRowSize/1' -p152916 -S'getDefaultRowSize(${1:This}) $2' -p152917 -tp152918 -a(S'getDropTarget/1' -p152919 -S'getDropTarget(${1:This}) $2' -p152920 -tp152921 -a(S'getEventHandler/1' -p152922 -S'getEventHandler(${1:This}) $2' -p152923 -tp152924 -a(S'getExtraStyle/1' -p152925 -S'getExtraStyle(${1:This}) $2' -p152926 -tp152927 -a(S'getFont/1' -p152928 -S'getFont(${1:This}) $2' -p152929 -tp152930 -a(S'getForegroundColour/1' -p152931 -S'getForegroundColour(${1:This}) $2' -p152932 -tp152933 -a(S'getGrandParent/1' -p152934 -S'getGrandParent(${1:This}) $2' -p152935 -tp152936 -a(S'getGridColLabelWindow/1' -p152937 -S'getGridColLabelWindow(${1:This}) $2' -p152938 -tp152939 -a(S'getGridCornerLabelWindow/1' -p152940 -S'getGridCornerLabelWindow(${1:This}) $2' -p152941 -tp152942 -a(S'getGridCursorCol/1' -p152943 -S'getGridCursorCol(${1:This}) $2' -p152944 -tp152945 -a(S'getGridCursorRow/1' -p152946 -S'getGridCursorRow(${1:This}) $2' -p152947 -tp152948 -a(S'getGridLineColour/1' -p152949 -S'getGridLineColour(${1:This}) $2' -p152950 -tp152951 -a(S'getGridRowLabelWindow/1' -p152952 -S'getGridRowLabelWindow(${1:This}) $2' -p152953 -tp152954 -a(S'getGridWindow/1' -p152955 -S'getGridWindow(${1:This}) $2' -p152956 -tp152957 -a(S'getHandle/1' -p152958 -S'getHandle(${1:This}) $2' -p152959 -tp152960 -a(S'getHelpText/1' -p152961 -S'getHelpText(${1:This}) $2' -p152962 -tp152963 -a(S'getId/1' -p152964 -S'getId(${1:This}) $2' -p152965 -tp152966 -a(S'getLabel/1' -p152967 -S'getLabel(${1:This}) $2' -p152968 -tp152969 -a(S'getLabelBackgroundColour/1' -p152970 -S'getLabelBackgroundColour(${1:This}) $2' -p152971 -tp152972 -a(S'getLabelFont/1' -p152973 -S'getLabelFont(${1:This}) $2' -p152974 -tp152975 -a(S'getLabelTextColour/1' -p152976 -S'getLabelTextColour(${1:This}) $2' -p152977 -tp152978 -a(S'getMaxSize/1' -p152979 -S'getMaxSize(${1:This}) $2' -p152980 -tp152981 -a(S'getMinSize/1' -p152982 -S'getMinSize(${1:This}) $2' -p152983 -tp152984 -a(S'getName/1' -p152985 -S'getName(${1:This}) $2' -p152986 -tp152987 -a(S'getNumberCols/1' -p152988 -S'getNumberCols(${1:This}) $2' -p152989 -tp152990 -a(S'getNumberRows/1' -p152991 -S'getNumberRows(${1:This}) $2' -p152992 -tp152993 -a(S'getOrCreateCellAttr/3' -p152994 -S'getOrCreateCellAttr(${1:This}, ${2:Row}, ${3:Col}) $4' -p152995 -tp152996 -a(S'getParent/1' -p152997 -S'getParent(${1:This}) $2' -p152998 -tp152999 -a(S'getPosition/1' -p153000 -S'getPosition(${1:This}) $2' -p153001 -tp153002 -a(S'getRect/1' -p153003 -S'getRect(${1:This}) $2' -p153004 -tp153005 -a(S'getRowLabelAlignment/1' -p153006 -S'getRowLabelAlignment(${1:This}) $2' -p153007 -tp153008 -a(S'getRowLabelSize/1' -p153009 -S'getRowLabelSize(${1:This}) $2' -p153010 -tp153011 -a(S'getRowLabelValue/2' -p153012 -S'getRowLabelValue(${1:This}, ${2:Row}) $3' -p153013 -tp153014 -a(S'getRowMinimalAcceptableHeight/1' -p153015 -S'getRowMinimalAcceptableHeight(${1:This}) $2' -p153016 -tp153017 -a(S'getRowSize/2' -p153018 -S'getRowSize(${1:This}, ${2:Row}) $3' -p153019 -tp153020 -a(S'getScreenPosition/1' -p153021 -S'getScreenPosition(${1:This}) $2' -p153022 -tp153023 -a(S'getScreenRect/1' -p153024 -S'getScreenRect(${1:This}) $2' -p153025 -tp153026 -a(S'getScrollLineX/1' -p153027 -S'getScrollLineX(${1:This}) $2' -p153028 -tp153029 -a(S'getScrollLineY/1' -p153030 -S'getScrollLineY(${1:This}) $2' -p153031 -tp153032 -a(S'getScrollPixelsPerUnit/1' -p153033 -S'getScrollPixelsPerUnit(${1:This}) $2' -p153034 -tp153035 -a(S'getScrollPos/2' -p153036 -S'getScrollPos(${1:This}, ${2:Orient}) $3' -p153037 -tp153038 -a(S'getScrollRange/2' -p153039 -S'getScrollRange(${1:This}, ${2:Orient}) $3' -p153040 -tp153041 -a(S'getScrollThumb/2' -p153042 -S'getScrollThumb(${1:This}, ${2:Orient}) $3' -p153043 -tp153044 -a(S'getSelectedCells/1' -p153045 -S'getSelectedCells(${1:This}) $2' -p153046 -tp153047 -a(S'getSelectedCols/1' -p153048 -S'getSelectedCols(${1:This}) $2' -p153049 -tp153050 -a(S'getSelectedRows/1' -p153051 -S'getSelectedRows(${1:This}) $2' -p153052 -tp153053 -a(S'getSelectionBackground/1' -p153054 -S'getSelectionBackground(${1:This}) $2' -p153055 -tp153056 -a(S'getSelectionBlockBottomRight/1' -p153057 -S'getSelectionBlockBottomRight(${1:This}) $2' -p153058 -tp153059 -a(S'getSelectionBlockTopLeft/1' -p153060 -S'getSelectionBlockTopLeft(${1:This}) $2' -p153061 -tp153062 -a(S'getSelectionForeground/1' -p153063 -S'getSelectionForeground(${1:This}) $2' -p153064 -tp153065 -a(S'getSize/1' -p153066 -S'getSize(${1:This}) $2' -p153067 -tp153068 -a(S'getSizer/1' -p153069 -S'getSizer(${1:This}) $2' -p153070 -tp153071 -a(S'getTextExtent/2' -p153072 -S'getTextExtent(${1:This}, ${2:String}) $3' -p153073 -tp153074 -a(S'getTextExtent/3' -p153075 -S'getTextExtent(${1:This}, ${2:String}, ${3:Options}) $4' -p153076 -tp153077 -a(S'getToolTip/1' -p153078 -S'getToolTip(${1:This}) $2' -p153079 -tp153080 -a(S'getUpdateRegion/1' -p153081 -S'getUpdateRegion(${1:This}) $2' -p153082 -tp153083 -a(S'getViewStart/1' -p153084 -S'getViewStart(${1:This}) $2' -p153085 -tp153086 -a(S'getViewWidth/1' -p153087 -S'getViewWidth(${1:This}) $2' -p153088 -tp153089 -a(S'getVirtualSize/1' -p153090 -S'getVirtualSize(${1:This}) $2' -p153091 -tp153092 -a(S'getWindowStyleFlag/1' -p153093 -S'getWindowStyleFlag(${1:This}) $2' -p153094 -tp153095 -a(S'getWindowVariant/1' -p153096 -S'getWindowVariant(${1:This}) $2' -p153097 -tp153098 -a(S'gridLinesEnabled/1' -p153099 -S'gridLinesEnabled(${1:This}) $2' -p153100 -tp153101 -a(S'hasCapture/1' -p153102 -S'hasCapture(${1:This}) $2' -p153103 -tp153104 -a(S'hasScrollbar/2' -p153105 -S'hasScrollbar(${1:This}, ${2:Orient}) $3' -p153106 -tp153107 -a(S'hasTransparentBackground/1' -p153108 -S'hasTransparentBackground(${1:This}) $2' -p153109 -tp153110 -a(S'hide/1' -p153111 -S'hide(${1:This}) $2' -p153112 -tp153113 -a(S'hideCellEditControl/1' -p153114 -S'hideCellEditControl(${1:This}) $2' -p153115 -tp153116 -a(S'inheritAttributes/1' -p153117 -S'inheritAttributes(${1:This}) $2' -p153118 -tp153119 -a(S'initDialog/1' -p153120 -S'initDialog(${1:This}) $2' -p153121 -tp153122 -a(S'insertCols/1' -p153123 -S'insertCols(${1:This}) $2' -p153124 -tp153125 -a(S'insertCols/2' -p153126 -S'insertCols(${1:This}, ${2:Param2}) $3' -p153127 -tp153128 -a(S'insertRows/1' -p153129 -S'insertRows(${1:This}) $2' -p153130 -tp153131 -a(S'insertRows/2' -p153132 -S'insertRows(${1:This}, ${2:Param2}) $3' -p153133 -tp153134 -a(S'invalidateBestSize/1' -p153135 -S'invalidateBestSize(${1:This}) $2' -p153136 -tp153137 -a(S'isCellEditControlEnabled/1' -p153138 -S'isCellEditControlEnabled(${1:This}) $2' -p153139 -tp153140 -a(S'isCurrentCellReadOnly/1' -p153141 -S'isCurrentCellReadOnly(${1:This}) $2' -p153142 -tp153143 -a(S'isEditable/1' -p153144 -S'isEditable(${1:This}) $2' -p153145 -tp153146 -a(S'isEnabled/1' -p153147 -S'isEnabled(${1:This}) $2' -p153148 -tp153149 -a(S'isExposed/2' -p153150 -S'isExposed(${1:This}, ${2:Pt}) $3' -p153151 -tp153152 -a(S'isExposed/3' -p153153 -S'isExposed(${1:This}, ${2:X}, ${3:Y}) $4' -p153154 -tp153155 -a(S'isExposed/5' -p153156 -S'isExposed(${1:This}, ${2:X}, ${3:Y}, ${4:W}, ${5:H}) $6' -p153157 -tp153158 -a(S'isInSelection/2' -p153159 -S'isInSelection(${1:This}, ${2:Coords}) $3' -p153160 -tp153161 -a(S'isInSelection/3' -p153162 -S'isInSelection(${1:This}, ${2:Row}, ${3:Col}) $4' -p153163 -tp153164 -a(S'isReadOnly/3' -p153165 -S'isReadOnly(${1:This}, ${2:Row}, ${3:Col}) $4' -p153166 -tp153167 -a(S'isRetained/1' -p153168 -S'isRetained(${1:This}) $2' -p153169 -tp153170 -a(S'isSelection/1' -p153171 -S'isSelection(${1:This}) $2' -p153172 -tp153173 -a(S'isShown/1' -p153174 -S'isShown(${1:This}) $2' -p153175 -tp153176 -a(S'isTopLevel/1' -p153177 -S'isTopLevel(${1:This}) $2' -p153178 -tp153179 -a(S'isVisible/2' -p153180 -S'isVisible(${1:This}, ${2:Coords}) $3' -p153181 -tp153182 -a(S'isVisible/3' -p153183 -S'isVisible(${1:This}, ${2:Row}, ${3:Col}) $4' -p153184 -tp153185 -a(S'isVisible/4' -p153186 -S'isVisible(${1:This}, ${2:Row}, ${3:Col}, ${4:Param4}) $5' -p153187 -tp153188 -a(S'layout/1' -p153189 -S'layout(${1:This}) $2' -p153190 -tp153191 -a(S'lineDown/1' -p153192 -S'lineDown(${1:This}) $2' -p153193 -tp153194 -a(S'lineUp/1' -p153195 -S'lineUp(${1:This}) $2' -p153196 -tp153197 -a(S'lower/1' -p153198 -S'lower(${1:This}) $2' -p153199 -tp153200 -a(S'makeCellVisible/2' -p153201 -S'makeCellVisible(${1:This}, ${2:Coords}) $3' -p153202 -tp153203 -a(S'makeCellVisible/3' -p153204 -S'makeCellVisible(${1:This}, ${2:Row}, ${3:Col}) $4' -p153205 -tp153206 -a(S'makeModal/1' -p153207 -S'makeModal(${1:This}) $2' -p153208 -tp153209 -a(S'makeModal/2' -p153210 -S'makeModal(${1:This}, ${2:Options}) $3' -p153211 -tp153212 -a(S'move/2' -p153213 -S'move(${1:This}, ${2:Pt}) $3' -p153214 -tp153215 -a(S'move/3' -p153216 -S'move(${1:This}, ${2:X}, ${3:Y}) $4' -p153217 -tp153218 -a(S'move/4' -p153219 -S'move(${1:This}, ${2:X}, ${3:Y}, ${4:Options}) $5' -p153220 -tp153221 -a(S'moveAfterInTabOrder/2' -p153222 -S'moveAfterInTabOrder(${1:This}, ${2:Win}) $3' -p153223 -tp153224 -a(S'moveBeforeInTabOrder/2' -p153225 -S'moveBeforeInTabOrder(${1:This}, ${2:Win}) $3' -p153226 -tp153227 -a(S'moveCursorDown/2' -p153228 -S'moveCursorDown(${1:This}, ${2:ExpandSelection}) $3' -p153229 -tp153230 -a(S'moveCursorDownBlock/2' -p153231 -S'moveCursorDownBlock(${1:This}, ${2:ExpandSelection}) $3' -p153232 -tp153233 -a(S'moveCursorLeft/2' -p153234 -S'moveCursorLeft(${1:This}, ${2:ExpandSelection}) $3' -p153235 -tp153236 -a(S'moveCursorLeftBlock/2' -p153237 -S'moveCursorLeftBlock(${1:This}, ${2:ExpandSelection}) $3' -p153238 -tp153239 -a(S'moveCursorRight/2' -p153240 -S'moveCursorRight(${1:This}, ${2:ExpandSelection}) $3' -p153241 -tp153242 -a(S'moveCursorRightBlock/2' -p153243 -S'moveCursorRightBlock(${1:This}, ${2:ExpandSelection}) $3' -p153244 -tp153245 -a(S'moveCursorUp/2' -p153246 -S'moveCursorUp(${1:This}, ${2:ExpandSelection}) $3' -p153247 -tp153248 -a(S'moveCursorUpBlock/2' -p153249 -S'moveCursorUpBlock(${1:This}, ${2:ExpandSelection}) $3' -p153250 -tp153251 -a(S'movePageDown/1' -p153252 -S'movePageDown(${1:This}) $2' -p153253 -tp153254 -a(S'movePageUp/1' -p153255 -S'movePageUp(${1:This}) $2' -p153256 -tp153257 -a(S'navigate/1' -p153258 -S'navigate(${1:This}) $2' -p153259 -tp153260 -a(S'navigate/2' -p153261 -S'navigate(${1:This}, ${2:Options}) $3' -p153262 -tp153263 -a(S'new/0' -p153264 -S'new() $1' -p153265 -tp153266 -a(S'new/2' -p153267 -S'new(${1:Parent}, ${2:Id}) $3' -p153268 -tp153269 -a(S'new/3' -p153270 -S'new(${1:Parent}, ${2:X}, ${3:Y}) $4' -p153271 -tp153272 -a(S'new/4' -p153273 -S'new(${1:Parent}, ${2:X}, ${3:Y}, ${4:Param4}) $5' -p153274 -tp153275 -a(S'pageDown/1' -p153276 -S'pageDown(${1:This}) $2' -p153277 -tp153278 -a(S'pageUp/1' -p153279 -S'pageUp(${1:This}) $2' -p153280 -tp153281 -a(S'parent_class/1' -p153282 -S'parent_class(${1:Param1}) $2' -p153283 -tp153284 -a(S'popEventHandler/1' -p153285 -S'popEventHandler(${1:This}) $2' -p153286 -tp153287 -a(S'popEventHandler/2' -p153288 -S'popEventHandler(${1:This}, ${2:Options}) $3' -p153289 -tp153290 -a(S'popupMenu/2' -p153291 -S'popupMenu(${1:This}, ${2:Menu}) $3' -p153292 -tp153293 -a(S'popupMenu/3' -p153294 -S'popupMenu(${1:This}, ${2:Menu}, ${3:Options}) $4' -p153295 -tp153296 -a(S'popupMenu/4' -p153297 -S'popupMenu(${1:This}, ${2:Menu}, ${3:X}, ${4:Y}) $5' -p153298 -tp153299 -a(S'prepareDC/2' -p153300 -S'prepareDC(${1:This}, ${2:Dc}) $3' -p153301 -tp153302 -a(S'raise/1' -p153303 -S'raise(${1:This}) $2' -p153304 -tp153305 -a(S'refresh/1' -p153306 -S'refresh(${1:This}) $2' -p153307 -tp153308 -a(S'refresh/2' -p153309 -S'refresh(${1:This}, ${2:Options}) $3' -p153310 -tp153311 -a(S'refreshRect/2' -p153312 -S'refreshRect(${1:This}, ${2:Rect}) $3' -p153313 -tp153314 -a(S'refreshRect/3' -p153315 -S'refreshRect(${1:This}, ${2:Rect}, ${3:Options}) $4' -p153316 -tp153317 -a(S'registerDataType/4' -p153318 -S'registerDataType(${1:This}, ${2:TypeName}, ${3:Renderer}, ${4:Editor}) $5' -p153319 -tp153320 -a(S'releaseMouse/1' -p153321 -S'releaseMouse(${1:This}) $2' -p153322 -tp153323 -a(S'removeChild/2' -p153324 -S'removeChild(${1:This}, ${2:Child}) $3' -p153325 -tp153326 -a(S'reparent/2' -p153327 -S'reparent(${1:This}, ${2:NewParent}) $3' -p153328 -tp153329 -a(S'saveEditControlValue/1' -p153330 -S'saveEditControlValue(${1:This}) $2' -p153331 -tp153332 -a(S'screenToClient/1' -p153333 -S'screenToClient(${1:This}) $2' -p153334 -tp153335 -a(S'screenToClient/2' -p153336 -S'screenToClient(${1:This}, ${2:Pt}) $3' -p153337 -tp153338 -a(S'scroll/3' -p153339 -S'scroll(${1:This}, ${2:X}, ${3:Y}) $4' -p153340 -tp153341 -a(S'scrollLines/2' -p153342 -S'scrollLines(${1:This}, ${2:Lines}) $3' -p153343 -tp153344 -a(S'scrollPages/2' -p153345 -S'scrollPages(${1:This}, ${2:Pages}) $3' -p153346 -tp153347 -a(S'scrollWindow/3' -p153348 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}) $4' -p153349 -tp153350 -a(S'scrollWindow/4' -p153351 -S'scrollWindow(${1:This}, ${2:Dx}, ${3:Dy}, ${4:Options}) $5' -p153352 -tp153353 -a(S'selectAll/1' -p153354 -S'selectAll(${1:This}) $2' -p153355 -tp153356 -a(S'selectBlock/3' -p153357 -S'selectBlock(${1:This}, ${2:TopLeft}, ${3:BottomRight}) $4' -p153358 -tp153359 -a(S'selectBlock/4' -p153360 -S'selectBlock(${1:This}, ${2:TopLeft}, ${3:BottomRight}, ${4:Param4}) $5' -p153361 -tp153362 -a(S'selectBlock/5' -p153363 -S'selectBlock(${1:This}, ${2:TopRow}, ${3:LeftCol}, ${4:BottomRow}, ${5:RightCol}) $6' -p153364 -tp153365 -a(S'selectBlock/6' -p153366 -S'selectBlock(${1:This}, ${2:TopRow}, ${3:LeftCol}, ${4:BottomRow}, ${5:RightCol}, ${6:Param6}) $7' -p153367 -tp153368 -a(S'selectCol/2' -p153369 -S'selectCol(${1:This}, ${2:Col}) $3' -p153370 -tp153371 -a(S'selectCol/3' -p153372 -S'selectCol(${1:This}, ${2:Col}, ${3:Param3}) $4' -p153373 -tp153374 -a(S'selectRow/2' -p153375 -S'selectRow(${1:This}, ${2:Row}) $3' -p153376 -tp153377 -a(S'selectRow/3' -p153378 -S'selectRow(${1:This}, ${2:Row}, ${3:Param3}) $4' -p153379 -tp153380 -a(S'setAcceleratorTable/2' -p153381 -S'setAcceleratorTable(${1:This}, ${2:Accel}) $3' -p153382 -tp153383 -a(S'setAutoLayout/2' -p153384 -S'setAutoLayout(${1:This}, ${2:AutoLayout}) $3' -p153385 -tp153386 -a(S'setBackgroundColour/2' -p153387 -S'setBackgroundColour(${1:This}, ${2:Colour}) $3' -p153388 -tp153389 -a(S'setBackgroundStyle/2' -p153390 -S'setBackgroundStyle(${1:This}, ${2:Style}) $3' -p153391 -tp153392 -a(S'setCaret/2' -p153393 -S'setCaret(${1:This}, ${2:Caret}) $3' -p153394 -tp153395 -a(S'setCellAlignment/2' -p153396 -S'setCellAlignment(${1:This}, ${2:Align}) $3' -p153397 -tp153398 -a(S'setCellAlignment/4' -p153399 -S'setCellAlignment(${1:This}, ${2:Align}, ${3:Row}, ${4:Col}) $5' -p153400 -tp153401 -a(S'setCellAlignment/5' -p153402 -S'setCellAlignment(${1:This}, ${2:Row}, ${3:Col}, ${4:Horiz}, ${5:Vert}) $6' -p153403 -tp153404 -a(S'setCellBackgroundColour/2' -p153405 -S'setCellBackgroundColour(${1:This}, ${2:Col}) $3' -p153406 -tp153407 -a(S'setCellBackgroundColour/4' -p153408 -S'setCellBackgroundColour(${1:This}, ${2:Row}, ${3:Col}, ${4:Val}) $5' -p153409 -tp153410 -a(S'setCellEditor/4' -p153411 -S'setCellEditor(${1:This}, ${2:Row}, ${3:Col}, ${4:Editor}) $5' -p153412 -tp153413 -a(S'setCellFont/4' -p153414 -S'setCellFont(${1:This}, ${2:Row}, ${3:Col}, ${4:Val}) $5' -p153415 -tp153416 -a(S'setCellRenderer/4' -p153417 -S'setCellRenderer(${1:This}, ${2:Row}, ${3:Col}, ${4:Renderer}) $5' -p153418 -tp153419 -a(S'setCellTextColour/2' -p153420 -S'setCellTextColour(${1:This}, ${2:Col}) $3' -p153421 -tp153422 -a(S'setCellTextColour/4' -p153423 -S'setCellTextColour(${1:This}, ${2:Row}, ${3:Col}, ${4:Val}) $5' -p153424 -tp153425 -a(S'setCellValue/3' -p153426 -S'setCellValue(${1:This}, ${2:Coords}, ${3:S}) $4' -p153427 -tp153428 -a(S'setCellValue/4' -p153429 -S'setCellValue(${1:This}, ${2:Row}, ${3:Col}, ${4:S}) $5' -p153430 -tp153431 -a(S'setClientSize/2' -p153432 -S'setClientSize(${1:This}, ${2:Size}) $3' -p153433 -tp153434 -a(S'setClientSize/3' -p153435 -S'setClientSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p153436 -tp153437 -a(S'setColAttr/3' -p153438 -S'setColAttr(${1:This}, ${2:Col}, ${3:Attr}) $4' -p153439 -tp153440 -a(S'setColFormatBool/2' -p153441 -S'setColFormatBool(${1:This}, ${2:Col}) $3' -p153442 -tp153443 -a(S'setColFormatCustom/3' -p153444 -S'setColFormatCustom(${1:This}, ${2:Col}, ${3:TypeName}) $4' -p153445 -tp153446 -a(S'setColFormatFloat/2' -p153447 -S'setColFormatFloat(${1:This}, ${2:Col}) $3' -p153448 -tp153449 -a(S'setColFormatFloat/3' -p153450 -S'setColFormatFloat(${1:This}, ${2:Col}, ${3:Param3}) $4' -p153451 -tp153452 -a(S'setColFormatNumber/2' -p153453 -S'setColFormatNumber(${1:This}, ${2:Col}) $3' -p153454 -tp153455 -a(S'setColLabelAlignment/3' -p153456 -S'setColLabelAlignment(${1:This}, ${2:Horiz}, ${3:Vert}) $4' -p153457 -tp153458 -a(S'setColLabelSize/2' -p153459 -S'setColLabelSize(${1:This}, ${2:Height}) $3' -p153460 -tp153461 -a(S'setColLabelValue/3' -p153462 -S'setColLabelValue(${1:This}, ${2:Col}, ${3:Val}) $4' -p153463 -tp153464 -a(S'setColMinimalAcceptableWidth/2' -p153465 -S'setColMinimalAcceptableWidth(${1:This}, ${2:Width}) $3' -p153466 -tp153467 -a(S'setColMinimalWidth/3' -p153468 -S'setColMinimalWidth(${1:This}, ${2:Col}, ${3:Width}) $4' -p153469 -tp153470 -a(S'setColSize/3' -p153471 -S'setColSize(${1:This}, ${2:Col}, ${3:Width}) $4' -p153472 -tp153473 -a(S'setContainingSizer/2' -p153474 -S'setContainingSizer(${1:This}, ${2:Sizer}) $3' -p153475 -tp153476 -a(S'setCursor/2' -p153477 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p153478 -tp153479 -a(S'setDefaultCellAlignment/3' -p153480 -S'setDefaultCellAlignment(${1:This}, ${2:Horiz}, ${3:Vert}) $4' -p153481 -tp153482 -a(S'setDefaultCellBackgroundColour/2' -p153483 -S'setDefaultCellBackgroundColour(${1:This}, ${2:Val}) $3' -p153484 -tp153485 -a(S'setDefaultCellFont/2' -p153486 -S'setDefaultCellFont(${1:This}, ${2:Val}) $3' -p153487 -tp153488 -a(S'setDefaultCellTextColour/2' -p153489 -S'setDefaultCellTextColour(${1:This}, ${2:Val}) $3' -p153490 -tp153491 -a(S'setDefaultColSize/2' -p153492 -S'setDefaultColSize(${1:This}, ${2:Width}) $3' -p153493 -tp153494 -a(S'setDefaultColSize/3' -p153495 -S'setDefaultColSize(${1:This}, ${2:Width}, ${3:Param3}) $4' -p153496 -tp153497 -a(S'setDefaultEditor/2' -p153498 -S'setDefaultEditor(${1:This}, ${2:Editor}) $3' -p153499 -tp153500 -a(S'setDefaultRenderer/2' -p153501 -S'setDefaultRenderer(${1:This}, ${2:Renderer}) $3' -p153502 -tp153503 -a(S'setDefaultRowSize/2' -p153504 -S'setDefaultRowSize(${1:This}, ${2:Height}) $3' -p153505 -tp153506 -a(S'setDefaultRowSize/3' -p153507 -S'setDefaultRowSize(${1:This}, ${2:Height}, ${3:Param3}) $4' -p153508 -tp153509 -a(S'setDropTarget/2' -p153510 -S'setDropTarget(${1:This}, ${2:DropTarget}) $3' -p153511 -tp153512 -a(S'setExtraStyle/2' -p153513 -S'setExtraStyle(${1:This}, ${2:ExStyle}) $3' -p153514 -tp153515 -a(S'setFocus/1' -p153516 -S'setFocus(${1:This}) $2' -p153517 -tp153518 -a(S'setFocusFromKbd/1' -p153519 -S'setFocusFromKbd(${1:This}) $2' -p153520 -tp153521 -a(S'setFont/2' -p153522 -S'setFont(${1:This}, ${2:Font}) $3' -p153523 -tp153524 -a(S'setForegroundColour/2' -p153525 -S'setForegroundColour(${1:This}, ${2:Colour}) $3' -p153526 -tp153527 -a(S'setGridCursor/3' -p153528 -S'setGridCursor(${1:This}, ${2:Row}, ${3:Col}) $4' -p153529 -tp153530 -a(S'setGridLineColour/2' -p153531 -S'setGridLineColour(${1:This}, ${2:Val}) $3' -p153532 -tp153533 -a(S'setHelpText/2' -p153534 -S'setHelpText(${1:This}, ${2:Text}) $3' -p153535 -tp153536 -a(S'setId/2' -p153537 -S'setId(${1:This}, ${2:Winid}) $3' -p153538 -tp153539 -a(S'setLabel/2' -p153540 -S'setLabel(${1:This}, ${2:Label}) $3' -p153541 -tp153542 -a(S'setLabelBackgroundColour/2' -p153543 -S'setLabelBackgroundColour(${1:This}, ${2:Val}) $3' -p153544 -tp153545 -a(S'setLabelFont/2' -p153546 -S'setLabelFont(${1:This}, ${2:Val}) $3' -p153547 -tp153548 -a(S'setLabelTextColour/2' -p153549 -S'setLabelTextColour(${1:This}, ${2:Val}) $3' -p153550 -tp153551 -a(S'setMargins/3' -p153552 -S'setMargins(${1:This}, ${2:ExtraWidth}, ${3:ExtraHeight}) $4' -p153553 -tp153554 -a(S'setMaxSize/2' -p153555 -S'setMaxSize(${1:This}, ${2:MaxSize}) $3' -p153556 -tp153557 -a(S'setMinSize/2' -p153558 -S'setMinSize(${1:This}, ${2:MinSize}) $3' -p153559 -tp153560 -a(S'setName/2' -p153561 -S'setName(${1:This}, ${2:Name}) $3' -p153562 -tp153563 -a(S'setOwnBackgroundColour/2' -p153564 -S'setOwnBackgroundColour(${1:This}, ${2:Colour}) $3' -p153565 -tp153566 -a(S'setOwnFont/2' -p153567 -S'setOwnFont(${1:This}, ${2:Font}) $3' -p153568 -tp153569 -a(S'setOwnForegroundColour/2' -p153570 -S'setOwnForegroundColour(${1:This}, ${2:Colour}) $3' -p153571 -tp153572 -a(S'setPalette/2' -p153573 -S'setPalette(${1:This}, ${2:Pal}) $3' -p153574 -tp153575 -a(S'setReadOnly/3' -p153576 -S'setReadOnly(${1:This}, ${2:Row}, ${3:Col}) $4' -p153577 -tp153578 -a(S'setReadOnly/4' -p153579 -S'setReadOnly(${1:This}, ${2:Row}, ${3:Col}, ${4:Param4}) $5' -p153580 -tp153581 -a(S'setRowAttr/3' -p153582 -S'setRowAttr(${1:This}, ${2:Row}, ${3:Attr}) $4' -p153583 -tp153584 -a(S'setRowLabelAlignment/3' -p153585 -S'setRowLabelAlignment(${1:This}, ${2:Horiz}, ${3:Vert}) $4' -p153586 -tp153587 -a(S'setRowLabelSize/2' -p153588 -S'setRowLabelSize(${1:This}, ${2:Width}) $3' -p153589 -tp153590 -a(S'setRowLabelValue/3' -p153591 -S'setRowLabelValue(${1:This}, ${2:Row}, ${3:Val}) $4' -p153592 -tp153593 -a(S'setRowMinimalAcceptableHeight/2' -p153594 -S'setRowMinimalAcceptableHeight(${1:This}, ${2:Width}) $3' -p153595 -tp153596 -a(S'setRowMinimalHeight/3' -p153597 -S'setRowMinimalHeight(${1:This}, ${2:Row}, ${3:Width}) $4' -p153598 -tp153599 -a(S'setRowSize/3' -p153600 -S'setRowSize(${1:This}, ${2:Row}, ${3:Height}) $4' -p153601 -tp153602 -a(S'setScrollLineX/2' -p153603 -S'setScrollLineX(${1:This}, ${2:X}) $3' -p153604 -tp153605 -a(S'setScrollLineY/2' -p153606 -S'setScrollLineY(${1:This}, ${2:Y}) $3' -p153607 -tp153608 -a(S'setScrollPos/3' -p153609 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}) $4' -p153610 -tp153611 -a(S'setScrollPos/4' -p153612 -S'setScrollPos(${1:This}, ${2:Orient}, ${3:Pos}, ${4:Options}) $5' -p153613 -tp153614 -a(S'setScrollRate/3' -p153615 -S'setScrollRate(${1:This}, ${2:Xstep}, ${3:Ystep}) $4' -p153616 -tp153617 -a(S'setScrollbar/5' -p153618 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}) $6' -p153619 -tp153620 -a(S'setScrollbar/6' -p153621 -S'setScrollbar(${1:This}, ${2:Orient}, ${3:Pos}, ${4:ThumbVisible}, ${5:Range}, ${6:Options}) $7' -p153622 -tp153623 -a(S'setScrollbars/5' -p153624 -S'setScrollbars(${1:This}, ${2:PixelsPerUnitX}, ${3:PixelsPerUnitY}, ${4:NoUnitsX}, ${5:NoUnitsY}) $6' -p153625 -tp153626 -a(S'setScrollbars/6' -p153627 -S'setScrollbars(${1:This}, ${2:PixelsPerUnitX}, ${3:PixelsPerUnitY}, ${4:NoUnitsX}, ${5:NoUnitsY}, ${6:Options}) $7' -p153628 -tp153629 -a(S'setSelectionBackground/2' -p153630 -S'setSelectionBackground(${1:This}, ${2:C}) $3' -p153631 -tp153632 -a(S'setSelectionForeground/2' -p153633 -S'setSelectionForeground(${1:This}, ${2:C}) $3' -p153634 -tp153635 -a(S'setSelectionMode/2' -p153636 -S'setSelectionMode(${1:This}, ${2:Selmode}) $3' -p153637 -tp153638 -a(S'setSize/2' -p153639 -S'setSize(${1:This}, ${2:Rect}) $3' -p153640 -tp153641 -a(S'setSize/3' -p153642 -S'setSize(${1:This}, ${2:Width}, ${3:Height}) $4' -p153643 -tp153644 -a(S'setSize/5' -p153645 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}) $6' -p153646 -tp153647 -a(S'setSize/6' -p153648 -S'setSize(${1:This}, ${2:X}, ${3:Y}, ${4:Width}, ${5:Height}, ${6:Options}) $7' -p153649 -tp153650 -a(S'setSizeHints/2' -p153651 -S'setSizeHints(${1:This}, ${2:MinSize}) $3' -p153652 -tp153653 -a(S'setSizeHints/3' -p153654 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p153655 -tp153656 -a(S'setSizeHints/4' -p153657 -S'setSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p153658 -tp153659 -a(S'setSizer/2' -p153660 -S'setSizer(${1:This}, ${2:Sizer}) $3' -p153661 -tp153662 -a(S'setSizer/3' -p153663 -S'setSizer(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p153664 -tp153665 -a(S'setSizerAndFit/2' -p153666 -S'setSizerAndFit(${1:This}, ${2:Sizer}) $3' -p153667 -tp153668 -a(S'setSizerAndFit/3' -p153669 -S'setSizerAndFit(${1:This}, ${2:Sizer}, ${3:Options}) $4' -p153670 -tp153671 -a(S'setTargetWindow/2' -p153672 -S'setTargetWindow(${1:This}, ${2:Target}) $3' -p153673 -tp153674 -a(S'setThemeEnabled/2' -p153675 -S'setThemeEnabled(${1:This}, ${2:EnableTheme}) $3' -p153676 -tp153677 -a(S'setToolTip/2' -p153678 -S'setToolTip(${1:This}, ${2:Tip}) $3' -p153679 -tp153680 -a(S'setVirtualSize/2' -p153681 -S'setVirtualSize(${1:This}, ${2:Size}) $3' -p153682 -tp153683 -a(S'setVirtualSize/3' -p153684 -S'setVirtualSize(${1:This}, ${2:X}, ${3:Y}) $4' -p153685 -tp153686 -a(S'setVirtualSizeHints/2' -p153687 -S'setVirtualSizeHints(${1:This}, ${2:MinSize}) $3' -p153688 -tp153689 -a(S'setVirtualSizeHints/3' -p153690 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}) $4' -p153691 -tp153692 -a(S'setVirtualSizeHints/4' -p153693 -S'setVirtualSizeHints(${1:This}, ${2:MinW}, ${3:MinH}, ${4:Options}) $5' -p153694 -tp153695 -a(S'setWindowStyle/2' -p153696 -S'setWindowStyle(${1:This}, ${2:Style}) $3' -p153697 -tp153698 -a(S'setWindowStyleFlag/2' -p153699 -S'setWindowStyleFlag(${1:This}, ${2:Style}) $3' -p153700 -tp153701 -a(S'setWindowVariant/2' -p153702 -S'setWindowVariant(${1:This}, ${2:Variant}) $3' -p153703 -tp153704 -a(S'shouldInheritColours/1' -p153705 -S'shouldInheritColours(${1:This}) $2' -p153706 -tp153707 -a(S'show/1' -p153708 -S'show(${1:This}) $2' -p153709 -tp153710 -a(S'show/2' -p153711 -S'show(${1:This}, ${2:Options}) $3' -p153712 -tp153713 -a(S'showCellEditControl/1' -p153714 -S'showCellEditControl(${1:This}) $2' -p153715 -tp153716 -a(S'thaw/1' -p153717 -S'thaw(${1:This}) $2' -p153718 -tp153719 -a(S'transferDataFromWindow/1' -p153720 -S'transferDataFromWindow(${1:This}) $2' -p153721 -tp153722 -a(S'transferDataToWindow/1' -p153723 -S'transferDataToWindow(${1:This}) $2' -p153724 -tp153725 -a(S'update/1' -p153726 -S'update(${1:This}) $2' -p153727 -tp153728 -a(S'updateWindowUI/1' -p153729 -S'updateWindowUI(${1:This}) $2' -p153730 -tp153731 -a(S'updateWindowUI/2' -p153732 -S'updateWindowUI(${1:This}, ${2:Options}) $3' -p153733 -tp153734 -a(S'validate/1' -p153735 -S'validate(${1:This}) $2' -p153736 -tp153737 -a(S'warpPointer/3' -p153738 -S'warpPointer(${1:This}, ${2:X}, ${3:Y}) $4' -p153739 -tp153740 -a(S'xToCol/2' -p153741 -S'xToCol(${1:This}, ${2:X}) $3' -p153742 -tp153743 -a(S'xToCol/3' -p153744 -S'xToCol(${1:This}, ${2:X}, ${3:Param3}) $4' -p153745 -tp153746 -a(S'xToEdgeOfCol/2' -p153747 -S'xToEdgeOfCol(${1:This}, ${2:X}) $3' -p153748 -tp153749 -a(S'yToEdgeOfRow/2' -p153750 -S'yToEdgeOfRow(${1:This}, ${2:Y}) $3' -p153751 -tp153752 -a(S'yToRow/2' -p153753 -S'yToRow(${1:This}, ${2:Y}) $3' -p153754 -tp153755 -asS'CosFileTransfer_FileTransferSession_impl' -p153756 -(lp153757 -(S"'_get_protocols_supported'/2" -p153758 -S"'_get_protocols_supported'(${1:Param1}, ${2:State}) $3" -p153759 -tp153760 -a(S'append/4' -p153761 -S'append(${1:OE_This}, ${2:State}, ${3:SrcFile}, ${4:DestFile}) $5' -p153762 -tp153763 -a(S'code_change/3' -p153764 -S'code_change(${1:Param1}, ${2:State}, ${3:Param3}) $4' -p153765 -tp153766 -a(S'create_directory/3' -p153767 -S'create_directory() $1' -p153768 -tp153769 -a(S'create_file/3' -p153770 -S'create_file(${1:OE_This}, ${2:State}, ${3:FileNameList}) $4' -p153771 -tp153772 -a(S'delete/3' -p153773 -S'delete(${1:Param1}, ${2:State}, ${3:File}) $4' -p153774 -tp153775 -a(S'get_file/3' -p153776 -S'get_file() $1' -p153777 -tp153778 -a(S'handle_info/2' -p153779 -S'handle_info(${1:Info}, ${2:State}) $3' -p153780 -tp153781 -a(S'init/1' -p153782 -S'init(${1:Param1}) $2' -p153783 -tp153784 -a(S'insert/5' -p153785 -S'insert(${1:OE_This}, ${2:State}, ${3:SrcFile}, ${4:DestFile}, ${5:Offset}) $6' -p153786 -tp153787 -a(S'invoke_call/3' -p153788 -S'invoke_call(${1:Pid}, ${2:Op}, ${3:Args}) $4' -p153789 -tp153790 -a(S'logout/2' -p153791 -S'logout(${1:Param1}, ${2:State}) $3' -p153792 -tp153793 -a(S'oe_orber_count_children/3' -p153794 -S'oe_orber_count_children() $1' -p153795 -tp153796 -a(S'oe_orber_create_directory_current/2' -p153797 -S'oe_orber_create_directory_current() $1' -p153798 -tp153799 -a(S'oe_orber_get_content/4' -p153800 -S'oe_orber_get_content() $1' -p153801 -tp153802 -a(S'set_directory/3' -p153803 -S'set_directory(${1:Param1}, ${2:State}, ${3:Directory}) $4' -p153804 -tp153805 -a(S'terminate/2' -p153806 -S'terminate(${1:Param1}, ${2:State}) $3' -p153807 -tp153808 -a(S'transfer/4' -p153809 -S'transfer(${1:OE_This}, ${2:State}, ${3:SrcFile}, ${4:DestFile}) $5' -p153810 -tp153811 -asS'megaco_timer' -p153812 -(lp153813 -(S'init/1' -p153814 -S'init(${1:SingleWaitFor}) $2' -p153815 -tp153816 -a(S'restart/1' -p153817 -S'restart(${1:Param1}) $2' -p153818 -tp153819 -a(S'verify/1' -p153820 -S'verify(${1:Timer}) $2' -p153821 -tp153822 -asS'diameter_dict' -p153823 -(lp153824 -(S'append/3' -p153825 -S'append(${1:Key}, ${2:Value}, ${3:Dict}) $4' -p153826 -tp153827 -a(S'append_list/3' -p153828 -S'append_list() $1' -p153829 -tp153830 -a(S'erase/2' -p153831 -S'erase(${1:Key}, ${2:Dict}) $3' -p153832 -tp153833 -a(S'fetch/2' -p153834 -S'fetch(${1:Key}, ${2:Dict}) $3' -p153835 -tp153836 -a(S'fetch_keys/1' -p153837 -S'fetch_keys(${1:Dict}) $2' -p153838 -tp153839 -a(S'filter/2' -p153840 -S'filter(${1:Pred}, ${2:Dict}) $3' -p153841 -tp153842 -a(S'find/2' -p153843 -S'find(${1:Key}, ${2:Dict}) $3' -p153844 -tp153845 -a(S'fold/3' -p153846 -S'fold(${1:Fun}, ${2:Acc0}, ${3:Dict}) $4' -p153847 -tp153848 -a(S'from_list/1' -p153849 -S'from_list(${1:List}) $2' -p153850 -tp153851 -a(S'is_key/2' -p153852 -S'is_key(${1:Key}, ${2:Dict}) $3' -p153853 -tp153854 -a(S'map/2' -p153855 -S'map(${1:Fun}, ${2:Dict}) $3' -p153856 -tp153857 -a(S'merge/3' -p153858 -S'merge(${1:Fun}, ${2:Dict1}, ${3:Dict2}) $4' -p153859 -tp153860 -a(S'new/0' -p153861 -S'new() $1' -p153862 -tp153863 -a(S'store/3' -p153864 -S'store(${1:Key}, ${2:Value}, ${3:Dict}) $4' -p153865 -tp153866 -a(S'to_list/1' -p153867 -S'to_list(${1:Dict}) $2' -p153868 -tp153869 -a(S'update/3' -p153870 -S'update(${1:Key}, ${2:Fun}, ${3:Dict}) $4' -p153871 -tp153872 -a(S'update/4' -p153873 -S'update(${1:Key}, ${2:Fun}, ${3:Initial}, ${4:Dict}) $5' -p153874 -tp153875 -a(S'update_counter/3' -p153876 -S'update_counter() $1' -p153877 -tp153878 -asS'asn1ct_table' -p153879 -(lp153880 -(S'delete/1' -p153881 -S'delete(${1:Tables}) $2' -p153882 -tp153883 -a(S'exists/1' -p153884 -S'exists(${1:Table}) $2' -p153885 -tp153886 -a(S'insert/2' -p153887 -S'insert(${1:Table}, ${2:Tuple}) $3' -p153888 -tp153889 -a(S'lookup/2' -p153890 -S'lookup(${1:Table}, ${2:Key}) $3' -p153891 -tp153892 -a(S'match/2' -p153893 -S'match(${1:Table}, ${2:MatchSpec}) $3' -p153894 -tp153895 -a(S'new/1' -p153896 -S'new(${1:Table}) $2' -p153897 -tp153898 -a(S'new/2' -p153899 -S'new(${1:Table}, ${2:Options}) $3' -p153900 -tp153901 -a(S'new_reuse/1' -p153902 -S'new_reuse(${1:Table}) $2' -p153903 -tp153904 -a(S'new_reuse/2' -p153905 -S'new_reuse(${1:Table}, ${2:Options}) $3' -p153906 -tp153907 -a(S'size/1' -p153908 -S'size(${1:Table}) $2' -p153909 -tp153910 -a(S'to_list/1' -p153911 -S'to_list(${1:Table}) $2' -p153912 -tp153913 -asS'ETraP_Common' -p153914 -(lp153915 -(S'create_link/3' -p153916 -S'create_link(${1:Module}, ${2:Env}, ${3:ArgList}) $4' -p153917 -tp153918 -a(S'create_name/1' -p153919 -S'create_name(${1:Type}) $2' -p153920 -tp153921 -a(S'create_name/2' -p153922 -S'create_name(${1:Name}, ${2:Type}) $3' -p153923 -tp153924 -a(S'get_option/3' -p153925 -S'get_option(${1:Key}, ${2:OptionList}, ${3:DefaultList}) $4' -p153926 -tp153927 -a(S'is_debug_compiled/0' -p153928 -S'is_debug_compiled() $1' -p153929 -tp153930 -a(S'send_stubborn/5' -p153931 -S'send_stubborn(${1:M}, ${2:F}, ${3:A}, ${4:MaxR}, ${5:Wait}) $6' -p153932 -tp153933 -a(S'try_timeout/1' -p153934 -S'try_timeout(${1:TimeoutAt}) $2' -p153935 -tp153936 -asS'httpd_socket' -p153937 -(lp153938 -(S'close/2' -p153939 -S'close(${1:SocketType}, ${2:Socket}) $3' -p153940 -tp153941 -a(S'deliver/3' -p153942 -S'deliver(${1:SocketType}, ${2:Socket}, ${3:IOListOrBinary}) $4' -p153943 -tp153944 -a(S'peername/2' -p153945 -S'peername(${1:SocketType}, ${2:Socket}) $3' -p153946 -tp153947 -a(S'resolve/0' -p153948 -S'resolve() $1' -p153949 -tp153950 -asS'xmerl_lib' -p153951 -(lp153952 -(S'detect_charset/1' -p153953 -S'detect_charset(${1:Content}) $2' -p153954 -tp153955 -a(S'detect_charset/2' -p153956 -S'detect_charset(${1:ExtCharset}, ${2:Content}) $3' -p153957 -tp153958 -a(S'empty_tag/1' -p153959 -S'empty_tag(${1:Tag}) $2' -p153960 -tp153961 -a(S'empty_tag/2' -p153962 -S'empty_tag(${1:Tag}, ${2:Attrs}) $3' -p153963 -tp153964 -a(S'end_tag/1' -p153965 -S'end_tag(${1:Tag}) $2' -p153966 -tp153967 -a(S'expand_attributes/1' -p153968 -S'expand_attributes(${1:Attrs}) $2' -p153969 -tp153970 -a(S'expand_attributes/3' -p153971 -S'expand_attributes(${1:Param1}, ${2:Pos}, ${3:Parents}) $4' -p153972 -tp153973 -a(S'expand_content/1' -p153974 -S'expand_content(${1:Content}) $2' -p153975 -tp153976 -a(S'expand_content/3' -p153977 -S'expand_content(${1:Content}, ${2:Pos}, ${3:Parents}) $4' -p153978 -tp153979 -a(S'expand_element/1' -p153980 -S'expand_element(${1:Element}) $2' -p153981 -tp153982 -a(S'expand_element/3' -p153983 -S'expand_element(${1:Element}, ${2:Pos}, ${3:Parents}) $4' -p153984 -tp153985 -a(S'export_attribute/1' -p153986 -S'export_attribute(${1:I}) $2' -p153987 -tp153988 -a(S'export_text/1' -p153989 -S'export_text(${1:T}) $2' -p153990 -tp153991 -a(S'find_attribute/2' -p153992 -S'find_attribute(${1:Name}, ${2:Attrs}) $3' -p153993 -tp153994 -a(S'flatten_text/1' -p153995 -S'flatten_text(${1:T}) $2' -p153996 -tp153997 -a(S'foldxml/3' -p153998 -S'foldxml(${1:Fun}, ${2:Accu0}, ${3:E}) $4' -p153999 -tp154000 -a(S'is_builtin_simple_type/1' -p154001 -S'is_builtin_simple_type(${1:Param1}) $2' -p154002 -tp154003 -a(S'is_char/1' -p154004 -S'is_char(${1:Param1}) $2' -p154005 -tp154006 -a(S'is_empty_data/1' -p154007 -S'is_empty_data(${1:Param1}) $2' -p154008 -tp154009 -a(S'is_facet/1' -p154010 -S'is_facet(${1:Param1}) $2' -p154011 -tp154012 -a(S'is_letter/1' -p154013 -S'is_letter(${1:X}) $2' -p154014 -tp154015 -a(S'is_name/1' -p154016 -S'is_name(${1:A}) $2' -p154017 -tp154018 -a(S'is_namechar/1' -p154019 -S'is_namechar(${1:X}) $2' -p154020 -tp154021 -a(S'is_ncname/1' -p154022 -S'is_ncname(${1:A}) $2' -p154023 -tp154024 -a(S'is_xsd_string/1' -p154025 -S'is_xsd_string(${1:Atom}) $2' -p154026 -tp154027 -a(S'mapfoldxml/3' -p154028 -S'mapfoldxml(${1:Fun}, ${2:Accu0}, ${3:E}) $4' -p154029 -tp154030 -a(S'mapxml/2' -p154031 -S'mapxml(${1:Fun}, ${2:E}) $3' -p154032 -tp154033 -a(S'markup/2' -p154034 -S'markup(${1:Tag}, ${2:Data}) $3' -p154035 -tp154036 -a(S'markup/3' -p154037 -S'markup(${1:Tag}, ${2:Attrs}, ${3:Data}) $4' -p154038 -tp154039 -a(S'normalize_content/1' -p154040 -S'normalize_content(${1:Content}) $2' -p154041 -tp154042 -a(S'normalize_content/3' -p154043 -S'normalize_content(${1:Content}, ${2:Pos}, ${3:Parents}) $4' -p154044 -tp154045 -a(S'normalize_element/1' -p154046 -S'normalize_element(${1:Element}) $2' -p154047 -tp154048 -a(S'normalize_element/3' -p154049 -S'normalize_element(${1:Element}, ${2:Pos}, ${3:Parents}) $4' -p154050 -tp154051 -a(S'remove_whitespace/1' -p154052 -S'remove_whitespace(${1:Param1}) $2' -p154053 -tp154054 -a(S'simplify_content/1' -p154055 -S'simplify_content(${1:Param1}) $2' -p154056 -tp154057 -a(S'simplify_element/1' -p154058 -S'simplify_element(${1:Tag}) $2' -p154059 -tp154060 -a(S'start_tag/1' -p154061 -S'start_tag(${1:TagStr}) $2' -p154062 -tp154063 -a(S'start_tag/2' -p154064 -S'start_tag(${1:Tag}, ${2:Attrs}) $3' -p154065 -tp154066 -a(S'to_lower/1' -p154067 -S'to_lower(${1:Str}) $2' -p154068 -tp154069 -asS'tv_ets_rpc' -p154070 -(lp154071 -(S'all/2' -p154072 -S'all(${1:Node}, ${2:Param2}) $3' -p154073 -tp154074 -a(S'delete/4' -p154075 -S'delete(${1:Node}, ${2:Param2}, ${3:TabId}, ${4:Key}) $5' -p154076 -tp154077 -a(S'info/4' -p154078 -S'info(${1:Node}, ${2:Param2}, ${3:TabId}, ${4:What}) $5' -p154079 -tp154080 -a(S'insert/4' -p154081 -S'insert(${1:Node}, ${2:Param2}, ${3:TabId}, ${4:Object}) $5' -p154082 -tp154083 -a(S'lookup/4' -p154084 -S'lookup(${1:Node}, ${2:Param2}, ${3:TabId}, ${4:Key}) $5' -p154085 -tp154086 -a(S'new/4' -p154087 -S'new(${1:Node}, ${2:Param2}, ${3:TabName}, ${4:Options}) $5' -p154088 -tp154089 -a(S'tab2list/3' -p154090 -S'tab2list(${1:Node}, ${2:Param2}, ${3:TabId}) $4' -p154091 -tp154092 -asS'ic_cclient' -p154093 -(lp154094 -(S'do_gen/3' -p154095 -S'do_gen(${1:G}, ${2:File}, ${3:Form}) $4' -p154096 -tp154097 -asS'CosNotifyChannelAdmin_AdminLimitExceeded' -p154098 -(lp154099 -(S'id/0' -p154100 -S'id() $1' -p154101 -tp154102 -a(S'name/0' -p154103 -S'name() $1' -p154104 -tp154105 -a(S'tc/0' -p154106 -S'tc() $1' -p154107 -tp154108 -asS'wxSetCursorEvent' -p154109 -(lp154110 -(S'getCursor/1' -p154111 -S'getCursor(${1:This}) $2' -p154112 -tp154113 -a(S'getId/1' -p154114 -S'getId(${1:This}) $2' -p154115 -tp154116 -a(S'getSkipped/1' -p154117 -S'getSkipped(${1:This}) $2' -p154118 -tp154119 -a(S'getTimestamp/1' -p154120 -S'getTimestamp(${1:This}) $2' -p154121 -tp154122 -a(S'getX/1' -p154123 -S'getX(${1:This}) $2' -p154124 -tp154125 -a(S'getY/1' -p154126 -S'getY(${1:This}) $2' -p154127 -tp154128 -a(S'hasCursor/1' -p154129 -S'hasCursor(${1:This}) $2' -p154130 -tp154131 -a(S'isCommandEvent/1' -p154132 -S'isCommandEvent(${1:This}) $2' -p154133 -tp154134 -a(S'parent_class/1' -p154135 -S'parent_class(${1:Param1}) $2' -p154136 -tp154137 -a(S'resumePropagation/2' -p154138 -S'resumePropagation(${1:This}, ${2:PropagationLevel}) $3' -p154139 -tp154140 -a(S'setCursor/2' -p154141 -S'setCursor(${1:This}, ${2:Cursor}) $3' -p154142 -tp154143 -a(S'shouldPropagate/1' -p154144 -S'shouldPropagate(${1:This}) $2' -p154145 -tp154146 -a(S'skip/1' -p154147 -S'skip(${1:This}) $2' -p154148 -tp154149 -a(S'skip/2' -p154150 -S'skip(${1:This}, ${2:Options}) $3' -p154151 -tp154152 -a(S'stopPropagation/1' -p154153 -S'stopPropagation(${1:This}) $2' -p154154 -tp154155 -asS'sasl' -p154156 -(lp154157 -(S'init/1' -p154158 -S'init(${1:Param1}) $2' -p154159 -tp154160 -a(S'pred/1' -p154161 -S'pred(${1:Param1}) $2' -p154162 -tp154163 -a(S'start/2' -p154164 -S'start(${1:Param1}, ${2:Param2}) $3' -p154165 -tp154166 -a(S'stop/1' -p154167 -S'stop(${1:State}) $2' -p154168 -tp154169 -asS'CosFileTransfer_File_impl' -p154170 -(lp154171 -(S"'_get_associated_session'/2" -p154172 -S"'_get_associated_session'(${1:Param1}, ${2:State}) $3" -p154173 -tp154174 -a(S"'_get_complete_file_name'/2" -p154175 -S"'_get_complete_file_name'(${1:Param1}, ${2:State}) $3" -p154176 -tp154177 -a(S"'_get_name'/2" -p154178 -S"'_get_name'(${1:Param1}, ${2:State}) $3" -p154179 -tp154180 -a(S"'_get_parent'/2" -p154181 -S"'_get_parent'(${1:Param1}, ${2:State}) $3" -p154182 -tp154183 -a(S'define_properties/3' -p154184 -S'define_properties(${1:Param1}, ${2:State}, ${3:Properties}) $4' -p154185 -tp154186 -a(S'define_properties_with_modes/3' -p154187 -S'define_properties_with_modes(${1:Param1}, ${2:State}, ${3:PropertyDefs}) $4' -p154188 -tp154189 -a(S'define_property/4' -p154190 -S'define_property(${1:Param1}, ${2:State}, ${3:Name}, ${4:Value}) $5' -p154191 -tp154192 -a(S'define_property_with_mode/5' -p154193 -S'define_property_with_mode(${1:Param1}, ${2:State}, ${3:Name}, ${4:Value}, ${5:Mode}) $6' -p154194 -tp154195 -a(S'delete_all_properties/2' -p154196 -S'delete_all_properties(${1:Param1}, ${2:State}) $3' -p154197 -tp154198 -a(S'delete_properties/3' -p154199 -S'delete_properties(${1:Param1}, ${2:State}, ${3:Names}) $4' -p154200 -tp154201 -a(S'delete_property/3' -p154202 -S'delete_property(${1:Param1}, ${2:State}, ${3:Name}) $4' -p154203 -tp154204 -a(S'get_all_properties/3' -p154205 -S'get_all_properties(${1:Param1}, ${2:State}, ${3:Max}) $4' -p154206 -tp154207 -a(S'get_all_property_names/3' -p154208 -S'get_all_property_names(${1:Param1}, ${2:State}, ${3:Max}) $4' -p154209 -tp154210 -a(S'get_allowed_properties/2' -p154211 -S'get_allowed_properties(${1:Param1}, ${2:State}) $3' -p154212 -tp154213 -a(S'get_allowed_property_types/2' -p154214 -S'get_allowed_property_types(${1:Param1}, ${2:State}) $3' -p154215 -tp154216 -a(S'get_number_of_properties/2' -p154217 -S'get_number_of_properties(${1:Param1}, ${2:State}) $3' -p154218 -tp154219 -a(S'get_properties/3' -p154220 -S'get_properties(${1:Param1}, ${2:State}, ${3:Names}) $4' -p154221 -tp154222 -a(S'get_property_mode/3' -p154223 -S'get_property_mode(${1:Param1}, ${2:State}, ${3:Name}) $4' -p154224 -tp154225 -a(S'get_property_modes/3' -p154226 -S'get_property_modes(${1:Param1}, ${2:State}, ${3:Names}) $4' -p154227 -tp154228 -a(S'get_property_value/3' -p154229 -S'get_property_value(${1:Param1}, ${2:State}, ${3:Name}) $4' -p154230 -tp154231 -a(S'init/1' -p154232 -S'init(${1:Param1}) $2' -p154233 -tp154234 -a(S'is_property_defined/3' -p154235 -S'is_property_defined(${1:Param1}, ${2:State}, ${3:Name}) $4' -p154236 -tp154237 -a(S'set_property_mode/4' -p154238 -S'set_property_mode(${1:Param1}, ${2:State}, ${3:Name}, ${4:Mode}) $5' -p154239 -tp154240 -a(S'set_property_modes/3' -p154241 -S'set_property_modes(${1:Param1}, ${2:State}, ${3:PropertyModes}) $4' -p154242 -tp154243 -a(S'terminate/2' -p154244 -S'terminate(${1:Param1}, ${2:Param2}) $3' -p154245 -tp154246 -as. \ No newline at end of file diff --git a/completion/Erlang-Libs.sublime-completions b/completion/Erlang-Libs.sublime-completions deleted file mode 100644 index 3933bbc..0000000 --- a/completion/Erlang-Libs.sublime-completions +++ /dev/null @@ -1 +0,0 @@ -{"scope": "source.erlang", "completions": [{"trigger": "appmon", "contents": "appmon"}, {"trigger": "appmon_a", "contents": "appmon_a"}, {"trigger": "appmon_dg", "contents": "appmon_dg"}, {"trigger": "appmon_info", "contents": "appmon_info"}, {"trigger": "appmon_lb", "contents": "appmon_lb"}, {"trigger": "appmon_place", "contents": "appmon_place"}, {"trigger": "appmon_txt", "contents": "appmon_txt"}, {"trigger": "appmon_web", "contents": "appmon_web"}, {"trigger": "process_info", "contents": "process_info"}, {"trigger": "asn1_db", "contents": "asn1_db"}, {"trigger": "asn1ct", "contents": "asn1ct"}, {"trigger": "asn1ct_check", "contents": "asn1ct_check"}, {"trigger": "asn1ct_constructed_ber", "contents": "asn1ct_constructed_ber"}, {"trigger": "asn1ct_constructed_ber_bin_v2", "contents": "asn1ct_constructed_ber_bin_v2"}, {"trigger": "asn1ct_constructed_per", "contents": "asn1ct_constructed_per"}, {"trigger": "asn1ct_gen", "contents": "asn1ct_gen"}, {"trigger": "asn1ct_gen_ber", "contents": "asn1ct_gen_ber"}, {"trigger": "asn1ct_gen_ber_bin_v2", "contents": "asn1ct_gen_ber_bin_v2"}, {"trigger": "asn1ct_gen_per", "contents": "asn1ct_gen_per"}, {"trigger": "asn1ct_gen_per_rt2ct", "contents": "asn1ct_gen_per_rt2ct"}, {"trigger": "asn1ct_name", "contents": "asn1ct_name"}, {"trigger": "asn1ct_parser2", "contents": "asn1ct_parser2"}, {"trigger": "asn1ct_pretty_format", "contents": "asn1ct_pretty_format"}, {"trigger": "asn1ct_table", "contents": "asn1ct_table"}, {"trigger": "asn1ct_tok", "contents": "asn1ct_tok"}, {"trigger": "asn1ct_value", "contents": "asn1ct_value"}, {"trigger": "asn1rt", "contents": "asn1rt"}, {"trigger": "asn1rt_ber_bin", "contents": "asn1rt_ber_bin"}, {"trigger": "asn1rt_ber_bin_v2", "contents": "asn1rt_ber_bin_v2"}, {"trigger": "asn1rt_check", "contents": "asn1rt_check"}, {"trigger": "asn1rt_nif", "contents": "asn1rt_nif"}, {"trigger": "asn1rt_per_bin", "contents": "asn1rt_per_bin"}, {"trigger": "asn1rt_per_bin_rt2ct", "contents": "asn1rt_per_bin_rt2ct"}, {"trigger": "asn1rt_uper_bin", "contents": "asn1rt_uper_bin"}, {"trigger": "ct", "contents": "ct"}, {"trigger": "ct_config", "contents": "ct_config"}, {"trigger": "ct_config_plain", "contents": "ct_config_plain"}, {"trigger": "ct_config_xml", "contents": "ct_config_xml"}, {"trigger": "ct_cover", "contents": "ct_cover"}, {"trigger": "ct_event", "contents": "ct_event"}, {"trigger": "ct_framework", "contents": "ct_framework"}, {"trigger": "ct_ftp", "contents": "ct_ftp"}, {"trigger": "ct_gen_conn", "contents": "ct_gen_conn"}, {"trigger": "ct_hooks", "contents": "ct_hooks"}, {"trigger": "ct_hooks_lock", "contents": "ct_hooks_lock"}, {"trigger": "ct_logs", "contents": "ct_logs"}, {"trigger": "ct_make", "contents": "ct_make"}, {"trigger": "ct_master", "contents": "ct_master"}, {"trigger": "ct_master_event", "contents": "ct_master_event"}, {"trigger": "ct_master_logs", "contents": "ct_master_logs"}, {"trigger": "ct_master_status", "contents": "ct_master_status"}, {"trigger": "ct_repeat", "contents": "ct_repeat"}, {"trigger": "ct_rpc", "contents": "ct_rpc"}, {"trigger": "ct_run", "contents": "ct_run"}, {"trigger": "ct_slave", "contents": "ct_slave"}, {"trigger": "ct_snmp", "contents": "ct_snmp"}, {"trigger": "ct_ssh", "contents": "ct_ssh"}, {"trigger": "ct_telnet", "contents": "ct_telnet"}, {"trigger": "ct_telnet_client", "contents": "ct_telnet_client"}, {"trigger": "ct_testspec", "contents": "ct_testspec"}, {"trigger": "ct_util", "contents": "ct_util"}, {"trigger": "cth_log_redirect", "contents": "cth_log_redirect"}, {"trigger": "cth_surefire", "contents": "cth_surefire"}, {"trigger": "unix_telnet", "contents": "unix_telnet"}, {"trigger": "vts", "contents": "vts"}, {"trigger": "beam_asm", "contents": "beam_asm"}, {"trigger": "beam_block", "contents": "beam_block"}, {"trigger": "beam_bool", "contents": "beam_bool"}, {"trigger": "beam_bsm", "contents": "beam_bsm"}, {"trigger": "beam_clean", "contents": "beam_clean"}, {"trigger": "beam_dead", "contents": "beam_dead"}, {"trigger": "beam_dict", "contents": "beam_dict"}, {"trigger": "beam_disasm", "contents": "beam_disasm"}, {"trigger": "beam_except", "contents": "beam_except"}, {"trigger": "beam_flatten", "contents": "beam_flatten"}, {"trigger": "beam_jump", "contents": "beam_jump"}, {"trigger": "beam_listing", "contents": "beam_listing"}, {"trigger": "beam_opcodes", "contents": "beam_opcodes"}, {"trigger": "beam_peep", "contents": "beam_peep"}, {"trigger": "beam_receive", "contents": "beam_receive"}, {"trigger": "beam_split", "contents": "beam_split"}, {"trigger": "beam_trim", "contents": "beam_trim"}, {"trigger": "beam_type", "contents": "beam_type"}, {"trigger": "beam_utils", "contents": "beam_utils"}, {"trigger": "beam_validator", "contents": "beam_validator"}, {"trigger": "cerl", "contents": "cerl"}, {"trigger": "cerl_clauses", "contents": "cerl_clauses"}, {"trigger": "cerl_inline", "contents": "cerl_inline"}, {"trigger": "cerl_trees", "contents": "cerl_trees"}, {"trigger": "compile", "contents": "compile"}, {"trigger": "core_lib", "contents": "core_lib"}, {"trigger": "core_lint", "contents": "core_lint"}, {"trigger": "core_parse", "contents": "core_parse"}, {"trigger": "core_pp", "contents": "core_pp"}, {"trigger": "core_scan", "contents": "core_scan"}, {"trigger": "erl_bifs", "contents": "erl_bifs"}, {"trigger": "rec_env", "contents": "rec_env"}, {"trigger": "sys_core_dsetel", "contents": "sys_core_dsetel"}, {"trigger": "sys_core_fold", "contents": "sys_core_fold"}, {"trigger": "sys_core_inline", "contents": "sys_core_inline"}, {"trigger": "sys_expand_pmod", "contents": "sys_expand_pmod"}, {"trigger": "sys_pre_attributes", "contents": "sys_pre_attributes"}, {"trigger": "sys_pre_expand", "contents": "sys_pre_expand"}, {"trigger": "v3_codegen", "contents": "v3_codegen"}, {"trigger": "v3_core", "contents": "v3_core"}, {"trigger": "v3_kernel", "contents": "v3_kernel"}, {"trigger": "v3_kernel_pp", "contents": "v3_kernel_pp"}, {"trigger": "v3_life", "contents": "v3_life"}, {"trigger": "PullerConsumer_impl", "contents": "PullerConsumer_impl"}, {"trigger": "PullerSupplier_impl", "contents": "PullerSupplier_impl"}, {"trigger": "PusherConsumer_impl", "contents": "PusherConsumer_impl"}, {"trigger": "PusherSupplier_impl", "contents": "PusherSupplier_impl"}, {"trigger": "TimeBase_IntervalT", "contents": "TimeBase_IntervalT"}, {"trigger": "TimeBase_UtcT", "contents": "TimeBase_UtcT"}, {"trigger": "ETraP_Common", "contents": "ETraP_Common"}, {"trigger": "etrap_logmgr", "contents": "etrap_logmgr"}, {"trigger": "ETraP_Server", "contents": "ETraP_Server"}, {"trigger": "ETraP_Server_impl", "contents": "ETraP_Server_impl"}, {"trigger": "crypto", "contents": "crypto"}, {"trigger": "crypto_app", "contents": "crypto_app"}, {"trigger": "crypto_server", "contents": "crypto_server"}, {"trigger": "crypto_sup", "contents": "crypto_sup"}, {"trigger": "dbg_debugged", "contents": "dbg_debugged"}, {"trigger": "dbg_icmd", "contents": "dbg_icmd"}, {"trigger": "dbg_idb", "contents": "dbg_idb"}, {"trigger": "dbg_ieval", "contents": "dbg_ieval"}, {"trigger": "dbg_iload", "contents": "dbg_iload"}, {"trigger": "dbg_iserver", "contents": "dbg_iserver"}, {"trigger": "dbg_istk", "contents": "dbg_istk"}, {"trigger": "dbg_ui_break", "contents": "dbg_ui_break"}, {"trigger": "dbg_ui_break_win", "contents": "dbg_ui_break_win"}, {"trigger": "dbg_ui_edit", "contents": "dbg_ui_edit"}, {"trigger": "dbg_ui_edit_win", "contents": "dbg_ui_edit_win"}, {"trigger": "dbg_ui_filedialog_win", "contents": "dbg_ui_filedialog_win"}, {"trigger": "dbg_ui_interpret", "contents": "dbg_ui_interpret"}, {"trigger": "dbg_ui_mon", "contents": "dbg_ui_mon"}, {"trigger": "dbg_ui_mon_win", "contents": "dbg_ui_mon_win"}, {"trigger": "dbg_ui_settings", "contents": "dbg_ui_settings"}, {"trigger": "dbg_ui_trace", "contents": "dbg_ui_trace"}, {"trigger": "dbg_ui_trace_win", "contents": "dbg_ui_trace_win"}, {"trigger": "dbg_ui_view", "contents": "dbg_ui_view"}, {"trigger": "dbg_ui_win", "contents": "dbg_ui_win"}, {"trigger": "dbg_ui_winman", "contents": "dbg_ui_winman"}, {"trigger": "debugger", "contents": "debugger"}, {"trigger": "i", "contents": "i"}, {"trigger": "int", "contents": "int"}, {"trigger": "dialyzer", "contents": "dialyzer"}, {"trigger": "dialyzer_analysis_callgraph", "contents": "dialyzer_analysis_callgraph"}, {"trigger": "dialyzer_behaviours", "contents": "dialyzer_behaviours"}, {"trigger": "dialyzer_callgraph", "contents": "dialyzer_callgraph"}, {"trigger": "dialyzer_cl", "contents": "dialyzer_cl"}, {"trigger": "dialyzer_cl_parse", "contents": "dialyzer_cl_parse"}, {"trigger": "dialyzer_codeserver", "contents": "dialyzer_codeserver"}, {"trigger": "dialyzer_contracts", "contents": "dialyzer_contracts"}, {"trigger": "dialyzer_dataflow", "contents": "dialyzer_dataflow"}, {"trigger": "dialyzer_dep", "contents": "dialyzer_dep"}, {"trigger": "dialyzer_explanation", "contents": "dialyzer_explanation"}, {"trigger": "dialyzer_gui", "contents": "dialyzer_gui"}, {"trigger": "dialyzer_options", "contents": "dialyzer_options"}, {"trigger": "dialyzer_plt", "contents": "dialyzer_plt"}, {"trigger": "dialyzer_races", "contents": "dialyzer_races"}, {"trigger": "dialyzer_succ_typings", "contents": "dialyzer_succ_typings"}, {"trigger": "dialyzer_typesig", "contents": "dialyzer_typesig"}, {"trigger": "dialyzer_utils", "contents": "dialyzer_utils"}, {"trigger": "diameter", "contents": "diameter"}, {"trigger": "diameter_app", "contents": "diameter_app"}, {"trigger": "diameter_callback", "contents": "diameter_callback"}, {"trigger": "diameter_capx", "contents": "diameter_capx"}, {"trigger": "diameter_codec", "contents": "diameter_codec"}, {"trigger": "diameter_config", "contents": "diameter_config"}, {"trigger": "diameter_dbg", "contents": "diameter_dbg"}, {"trigger": "diameter_dict", "contents": "diameter_dict"}, {"trigger": "diameter_info", "contents": "diameter_info"}, {"trigger": "diameter_lib", "contents": "diameter_lib"}, {"trigger": "diameter_misc_sup", "contents": "diameter_misc_sup"}, {"trigger": "diameter_peer", "contents": "diameter_peer"}, {"trigger": "diameter_peer_fsm", "contents": "diameter_peer_fsm"}, {"trigger": "diameter_peer_fsm_sup", "contents": "diameter_peer_fsm_sup"}, {"trigger": "diameter_reg", "contents": "diameter_reg"}, {"trigger": "diameter_service", "contents": "diameter_service"}, {"trigger": "diameter_service_sup", "contents": "diameter_service_sup"}, {"trigger": "diameter_session", "contents": "diameter_session"}, {"trigger": "diameter_stats", "contents": "diameter_stats"}, {"trigger": "diameter_sup", "contents": "diameter_sup"}, {"trigger": "diameter_sync", "contents": "diameter_sync"}, {"trigger": "diameter_types", "contents": "diameter_types"}, {"trigger": "diameter_watchdog", "contents": "diameter_watchdog"}, {"trigger": "diameter_watchdog_sup", "contents": "diameter_watchdog_sup"}, {"trigger": "diameter_codegen", "contents": "diameter_codegen"}, {"trigger": "diameter_dict_scanner", "contents": "diameter_dict_scanner"}, {"trigger": "diameter_dict_util", "contents": "diameter_dict_util"}, {"trigger": "diameter_exprecs", "contents": "diameter_exprecs"}, {"trigger": "diameter_make", "contents": "diameter_make"}, {"trigger": "diameter_nowarn", "contents": "diameter_nowarn"}, {"trigger": "diameter_dict_parser", "contents": "diameter_dict_parser"}, {"trigger": "diameter_gen_base_accounting", "contents": "diameter_gen_base_accounting"}, {"trigger": "diameter_gen_base_rfc3588", "contents": "diameter_gen_base_rfc3588"}, {"trigger": "diameter_gen_relay", "contents": "diameter_gen_relay"}, {"trigger": "diameter_etcp", "contents": "diameter_etcp"}, {"trigger": "diameter_etcp_sup", "contents": "diameter_etcp_sup"}, {"trigger": "diameter_sctp", "contents": "diameter_sctp"}, {"trigger": "diameter_sctp_sup", "contents": "diameter_sctp_sup"}, {"trigger": "diameter_tcp", "contents": "diameter_tcp"}, {"trigger": "diameter_tcp_sup", "contents": "diameter_tcp_sup"}, {"trigger": "diameter_transport_sup", "contents": "diameter_transport_sup"}, {"trigger": "edoc", "contents": "edoc"}, {"trigger": "edoc_data", "contents": "edoc_data"}, {"trigger": "edoc_doclet", "contents": "edoc_doclet"}, {"trigger": "edoc_extract", "contents": "edoc_extract"}, {"trigger": "edoc_layout", "contents": "edoc_layout"}, {"trigger": "edoc_lib", "contents": "edoc_lib"}, {"trigger": "edoc_macros", "contents": "edoc_macros"}, {"trigger": "edoc_parser", "contents": "edoc_parser"}, {"trigger": "edoc_refs", "contents": "edoc_refs"}, {"trigger": "edoc_report", "contents": "edoc_report"}, {"trigger": "edoc_run", "contents": "edoc_run"}, {"trigger": "edoc_scanner", "contents": "edoc_scanner"}, {"trigger": "edoc_specs", "contents": "edoc_specs"}, {"trigger": "edoc_tags", "contents": "edoc_tags"}, {"trigger": "edoc_types", "contents": "edoc_types"}, {"trigger": "edoc_wiki", "contents": "edoc_wiki"}, {"trigger": "otpsgml_layout", "contents": "otpsgml_layout"}, {"trigger": "eldap", "contents": "eldap"}, {"trigger": "docgen_edoc_xml_cb", "contents": "docgen_edoc_xml_cb"}, {"trigger": "docgen_otp_specs", "contents": "docgen_otp_specs"}, {"trigger": "docgen_xmerl_xml_cb", "contents": "docgen_xmerl_xml_cb"}, {"trigger": "erl_prim_loader", "contents": "erl_prim_loader"}, {"trigger": "erlang", "contents": "erlang"}, {"trigger": "init", "contents": "init"}, {"trigger": "otp_ring0", "contents": "otp_ring0"}, {"trigger": "prim_file", "contents": "prim_file"}, {"trigger": "prim_inet", "contents": "prim_inet"}, {"trigger": "prim_zip", "contents": "prim_zip"}, {"trigger": "zlib", "contents": "zlib"}, {"trigger": "et", "contents": "et"}, {"trigger": "et_collector", "contents": "et_collector"}, {"trigger": "et_gs_contents_viewer", "contents": "et_gs_contents_viewer"}, {"trigger": "et_gs_viewer", "contents": "et_gs_viewer"}, {"trigger": "et_selector", "contents": "et_selector"}, {"trigger": "et_viewer", "contents": "et_viewer"}, {"trigger": "eunit", "contents": "eunit"}, {"trigger": "eunit_autoexport", "contents": "eunit_autoexport"}, {"trigger": "eunit_data", "contents": "eunit_data"}, {"trigger": "eunit_lib", "contents": "eunit_lib"}, {"trigger": "eunit_listener", "contents": "eunit_listener"}, {"trigger": "eunit_proc", "contents": "eunit_proc"}, {"trigger": "eunit_serial", "contents": "eunit_serial"}, {"trigger": "eunit_server", "contents": "eunit_server"}, {"trigger": "eunit_striptests", "contents": "eunit_striptests"}, {"trigger": "eunit_surefire", "contents": "eunit_surefire"}, {"trigger": "eunit_test", "contents": "eunit_test"}, {"trigger": "eunit_tty", "contents": "eunit_tty"}, {"trigger": "ball", "contents": "ball"}, {"trigger": "browser", "contents": "browser"}, {"trigger": "calc", "contents": "calc"}, {"trigger": "calc2", "contents": "calc2"}, {"trigger": "color_demo", "contents": "color_demo"}, {"trigger": "color_demo2", "contents": "color_demo2"}, {"trigger": "distrib_draw", "contents": "distrib_draw"}, {"trigger": "entry_demo", "contents": "entry_demo"}, {"trigger": "event_test", "contents": "event_test"}, {"trigger": "file_dialog", "contents": "file_dialog"}, {"trigger": "focus_demo", "contents": "focus_demo"}, {"trigger": "frac", "contents": "frac"}, {"trigger": "line_demo", "contents": "line_demo"}, {"trigger": "man", "contents": "man"}, {"trigger": "rubber", "contents": "rubber"}, {"trigger": "gs", "contents": "gs"}, {"trigger": "gs_frontend", "contents": "gs_frontend"}, {"trigger": "gs_make", "contents": "gs_make"}, {"trigger": "gs_packer", "contents": "gs_packer"}, {"trigger": "gs_widgets", "contents": "gs_widgets"}, {"trigger": "gse", "contents": "gse"}, {"trigger": "gstk", "contents": "gstk"}, {"trigger": "gstk_arc", "contents": "gstk_arc"}, {"trigger": "gstk_button", "contents": "gstk_button"}, {"trigger": "gstk_canvas", "contents": "gstk_canvas"}, {"trigger": "gstk_checkbutton", "contents": "gstk_checkbutton"}, {"trigger": "gstk_db", "contents": "gstk_db"}, {"trigger": "gstk_editor", "contents": "gstk_editor"}, {"trigger": "gstk_entry", "contents": "gstk_entry"}, {"trigger": "gstk_font", "contents": "gstk_font"}, {"trigger": "gstk_frame", "contents": "gstk_frame"}, {"trigger": "gstk_generic", "contents": "gstk_generic"}, {"trigger": "gstk_grid", "contents": "gstk_grid"}, {"trigger": "gstk_gridline", "contents": "gstk_gridline"}, {"trigger": "gstk_gs", "contents": "gstk_gs"}, {"trigger": "gstk_image", "contents": "gstk_image"}, {"trigger": "gstk_label", "contents": "gstk_label"}, {"trigger": "gstk_line", "contents": "gstk_line"}, {"trigger": "gstk_listbox", "contents": "gstk_listbox"}, {"trigger": "gstk_menu", "contents": "gstk_menu"}, {"trigger": "gstk_menubar", "contents": "gstk_menubar"}, {"trigger": "gstk_menubutton", "contents": "gstk_menubutton"}, {"trigger": "gstk_menuitem", "contents": "gstk_menuitem"}, {"trigger": "gstk_oval", "contents": "gstk_oval"}, {"trigger": "gstk_polygon", "contents": "gstk_polygon"}, {"trigger": "gstk_port_handler", "contents": "gstk_port_handler"}, {"trigger": "gstk_radiobutton", "contents": "gstk_radiobutton"}, {"trigger": "gstk_rectangle", "contents": "gstk_rectangle"}, {"trigger": "gstk_scale", "contents": "gstk_scale"}, {"trigger": "gstk_text", "contents": "gstk_text"}, {"trigger": "gstk_widgets", "contents": "gstk_widgets"}, {"trigger": "gstk_window", "contents": "gstk_window"}, {"trigger": "tcl2erl", "contents": "tcl2erl"}, {"trigger": "tool_file_dialog", "contents": "tool_file_dialog"}, {"trigger": "tool_utils", "contents": "tool_utils"}, {"trigger": "ic", "contents": "ic"}, {"trigger": "ic_array_java", "contents": "ic_array_java"}, {"trigger": "ic_attribute_java", "contents": "ic_attribute_java"}, {"trigger": "ic_cbe", "contents": "ic_cbe"}, {"trigger": "ic_cclient", "contents": "ic_cclient"}, {"trigger": "ic_code", "contents": "ic_code"}, {"trigger": "ic_codegen", "contents": "ic_codegen"}, {"trigger": "ic_constant_java", "contents": "ic_constant_java"}, {"trigger": "ic_cserver", "contents": "ic_cserver"}, {"trigger": "ic_enum_java", "contents": "ic_enum_java"}, {"trigger": "ic_erl_template", "contents": "ic_erl_template"}, {"trigger": "ic_erlbe", "contents": "ic_erlbe"}, {"trigger": "ic_error", "contents": "ic_error"}, {"trigger": "ic_fetch", "contents": "ic_fetch"}, {"trigger": "ic_file", "contents": "ic_file"}, {"trigger": "ic_forms", "contents": "ic_forms"}, {"trigger": "ic_genobj", "contents": "ic_genobj"}, {"trigger": "ic_java_type", "contents": "ic_java_type"}, {"trigger": "ic_jbe", "contents": "ic_jbe"}, {"trigger": "ic_noc", "contents": "ic_noc"}, {"trigger": "ic_options", "contents": "ic_options"}, {"trigger": "ic_plainbe", "contents": "ic_plainbe"}, {"trigger": "ic_pp", "contents": "ic_pp"}, {"trigger": "ic_pragma", "contents": "ic_pragma"}, {"trigger": "ic_sequence_java", "contents": "ic_sequence_java"}, {"trigger": "ic_struct_java", "contents": "ic_struct_java"}, {"trigger": "ic_symtab", "contents": "ic_symtab"}, {"trigger": "ic_union_java", "contents": "ic_union_java"}, {"trigger": "ic_util", "contents": "ic_util"}, {"trigger": "icenum", "contents": "icenum"}, {"trigger": "iceval", "contents": "iceval"}, {"trigger": "icparse", "contents": "icparse"}, {"trigger": "icpreproc", "contents": "icpreproc"}, {"trigger": "icscan", "contents": "icscan"}, {"trigger": "icstruct", "contents": "icstruct"}, {"trigger": "ictk", "contents": "ictk"}, {"trigger": "ictype", "contents": "ictype"}, {"trigger": "icunion", "contents": "icunion"}, {"trigger": "ftp", "contents": "ftp"}, {"trigger": "ftp_progress", "contents": "ftp_progress"}, {"trigger": "ftp_response", "contents": "ftp_response"}, {"trigger": "ftp_sup", "contents": "ftp_sup"}, {"trigger": "httpc", "contents": "httpc"}, {"trigger": "httpc_cookie", "contents": "httpc_cookie"}, {"trigger": "httpc_handler", "contents": "httpc_handler"}, {"trigger": "httpc_handler_sup", "contents": "httpc_handler_sup"}, {"trigger": "httpc_manager", "contents": "httpc_manager"}, {"trigger": "httpc_profile_sup", "contents": "httpc_profile_sup"}, {"trigger": "httpc_request", "contents": "httpc_request"}, {"trigger": "httpc_response", "contents": "httpc_response"}, {"trigger": "httpc_sup", "contents": "httpc_sup"}, {"trigger": "http_chunk", "contents": "http_chunk"}, {"trigger": "http_request", "contents": "http_request"}, {"trigger": "http_response", "contents": "http_response"}, {"trigger": "http_transport", "contents": "http_transport"}, {"trigger": "http_uri", "contents": "http_uri"}, {"trigger": "http_util", "contents": "http_util"}, {"trigger": "httpd", "contents": "httpd"}, {"trigger": "httpd_acceptor", "contents": "httpd_acceptor"}, {"trigger": "httpd_acceptor_sup", "contents": "httpd_acceptor_sup"}, {"trigger": "httpd_cgi", "contents": "httpd_cgi"}, {"trigger": "httpd_conf", "contents": "httpd_conf"}, {"trigger": "httpd_esi", "contents": "httpd_esi"}, {"trigger": "httpd_example", "contents": "httpd_example"}, {"trigger": "httpd_file", "contents": "httpd_file"}, {"trigger": "httpd_instance_sup", "contents": "httpd_instance_sup"}, {"trigger": "httpd_log", "contents": "httpd_log"}, {"trigger": "httpd_manager", "contents": "httpd_manager"}, {"trigger": "httpd_misc_sup", "contents": "httpd_misc_sup"}, {"trigger": "httpd_request", "contents": "httpd_request"}, {"trigger": "httpd_request_handler", "contents": "httpd_request_handler"}, {"trigger": "httpd_response", "contents": "httpd_response"}, {"trigger": "httpd_script_env", "contents": "httpd_script_env"}, {"trigger": "httpd_socket", "contents": "httpd_socket"}, {"trigger": "httpd_sup", "contents": "httpd_sup"}, {"trigger": "httpd_util", "contents": "httpd_util"}, {"trigger": "mod_actions", "contents": "mod_actions"}, {"trigger": "mod_alias", "contents": "mod_alias"}, {"trigger": "mod_auth", "contents": "mod_auth"}, {"trigger": "mod_auth_dets", "contents": "mod_auth_dets"}, {"trigger": "mod_auth_mnesia", "contents": "mod_auth_mnesia"}, {"trigger": "mod_auth_plain", "contents": "mod_auth_plain"}, {"trigger": "mod_auth_server", "contents": "mod_auth_server"}, {"trigger": "mod_browser", "contents": "mod_browser"}, {"trigger": "mod_cgi", "contents": "mod_cgi"}, {"trigger": "mod_dir", "contents": "mod_dir"}, {"trigger": "mod_disk_log", "contents": "mod_disk_log"}, {"trigger": "mod_esi", "contents": "mod_esi"}, {"trigger": "mod_get", "contents": "mod_get"}, {"trigger": "mod_head", "contents": "mod_head"}, {"trigger": "mod_htaccess", "contents": "mod_htaccess"}, {"trigger": "mod_include", "contents": "mod_include"}, {"trigger": "mod_log", "contents": "mod_log"}, {"trigger": "mod_range", "contents": "mod_range"}, {"trigger": "mod_responsecontrol", "contents": "mod_responsecontrol"}, {"trigger": "mod_security", "contents": "mod_security"}, {"trigger": "mod_security_server", "contents": "mod_security_server"}, {"trigger": "mod_trace", "contents": "mod_trace"}, {"trigger": "inets", "contents": "inets"}, {"trigger": "inets_app", "contents": "inets_app"}, {"trigger": "inets_regexp", "contents": "inets_regexp"}, {"trigger": "inets_service", "contents": "inets_service"}, {"trigger": "inets_sup", "contents": "inets_sup"}, {"trigger": "inets_trace", "contents": "inets_trace"}, {"trigger": "tftp", "contents": "tftp"}, {"trigger": "tftp_binary", "contents": "tftp_binary"}, {"trigger": "tftp_engine", "contents": "tftp_engine"}, {"trigger": "tftp_file", "contents": "tftp_file"}, {"trigger": "tftp_lib", "contents": "tftp_lib"}, {"trigger": "tftp_logger", "contents": "tftp_logger"}, {"trigger": "tftp_sup", "contents": "tftp_sup"}, {"trigger": "inviso", "contents": "inviso"}, {"trigger": "inviso_c", "contents": "inviso_c"}, {"trigger": "inviso_lfm", "contents": "inviso_lfm"}, {"trigger": "inviso_lfm_tpfreader", "contents": "inviso_lfm_tpfreader"}, {"trigger": "inviso_tool", "contents": "inviso_tool"}, {"trigger": "inviso_tool_lib", "contents": "inviso_tool_lib"}, {"trigger": "uds", "contents": "uds"}, {"trigger": "uds_dist", "contents": "uds_dist"}, {"trigger": "uds_server", "contents": "uds_server"}, {"trigger": "application", "contents": "application"}, {"trigger": "application_controller", "contents": "application_controller"}, {"trigger": "application_master", "contents": "application_master"}, {"trigger": "application_starter", "contents": "application_starter"}, {"trigger": "auth", "contents": "auth"}, {"trigger": "code", "contents": "code"}, {"trigger": "code_server", "contents": "code_server"}, {"trigger": "disk_log", "contents": "disk_log"}, {"trigger": "disk_log_1", "contents": "disk_log_1"}, {"trigger": "disk_log_server", "contents": "disk_log_server"}, {"trigger": "disk_log_sup", "contents": "disk_log_sup"}, {"trigger": "dist_ac", "contents": "dist_ac"}, {"trigger": "dist_util", "contents": "dist_util"}, {"trigger": "erl_boot_server", "contents": "erl_boot_server"}, {"trigger": "erl_ddll", "contents": "erl_ddll"}, {"trigger": "erl_distribution", "contents": "erl_distribution"}, {"trigger": "erl_epmd", "contents": "erl_epmd"}, {"trigger": "erl_reply", "contents": "erl_reply"}, {"trigger": "error_handler", "contents": "error_handler"}, {"trigger": "error_logger", "contents": "error_logger"}, {"trigger": "erts_debug", "contents": "erts_debug"}, {"trigger": "file", "contents": "file"}, {"trigger": "file_io_server", "contents": "file_io_server"}, {"trigger": "file_server", "contents": "file_server"}, {"trigger": "gen_sctp", "contents": "gen_sctp"}, {"trigger": "gen_tcp", "contents": "gen_tcp"}, {"trigger": "gen_udp", "contents": "gen_udp"}, {"trigger": "global", "contents": "global"}, {"trigger": "global_group", "contents": "global_group"}, {"trigger": "global_search", "contents": "global_search"}, {"trigger": "group", "contents": "group"}, {"trigger": "heart", "contents": "heart"}, {"trigger": "hipe_unified_loader", "contents": "hipe_unified_loader"}, {"trigger": "inet", "contents": "inet"}, {"trigger": "inet6_sctp", "contents": "inet6_sctp"}, {"trigger": "inet6_tcp", "contents": "inet6_tcp"}, {"trigger": "inet6_tcp_dist", "contents": "inet6_tcp_dist"}, {"trigger": "inet6_udp", "contents": "inet6_udp"}, {"trigger": "inet_config", "contents": "inet_config"}, {"trigger": "inet_db", "contents": "inet_db"}, {"trigger": "inet_dns", "contents": "inet_dns"}, {"trigger": "inet_gethost_native", "contents": "inet_gethost_native"}, {"trigger": "inet_hosts", "contents": "inet_hosts"}, {"trigger": "inet_parse", "contents": "inet_parse"}, {"trigger": "inet_res", "contents": "inet_res"}, {"trigger": "inet_sctp", "contents": "inet_sctp"}, {"trigger": "inet_tcp", "contents": "inet_tcp"}, {"trigger": "inet_tcp_dist", "contents": "inet_tcp_dist"}, {"trigger": "inet_udp", "contents": "inet_udp"}, {"trigger": "kernel", "contents": "kernel"}, {"trigger": "kernel_config", "contents": "kernel_config"}, {"trigger": "net", "contents": "net"}, {"trigger": "net_adm", "contents": "net_adm"}, {"trigger": "net_kernel", "contents": "net_kernel"}, {"trigger": "os", "contents": "os"}, {"trigger": "packages", "contents": "packages"}, {"trigger": "pg2", "contents": "pg2"}, {"trigger": "ram_file", "contents": "ram_file"}, {"trigger": "rpc", "contents": "rpc"}, {"trigger": "seq_trace", "contents": "seq_trace"}, {"trigger": "standard_error", "contents": "standard_error"}, {"trigger": "user", "contents": "user"}, {"trigger": "user_drv", "contents": "user_drv"}, {"trigger": "user_sup", "contents": "user_sup"}, {"trigger": "wrap_log_reader", "contents": "wrap_log_reader"}, {"trigger": "megaco", "contents": "megaco"}, {"trigger": "mnesia", "contents": "mnesia"}, {"trigger": "mnesia_backup", "contents": "mnesia_backup"}, {"trigger": "mnesia_bup", "contents": "mnesia_bup"}, {"trigger": "mnesia_checkpoint", "contents": "mnesia_checkpoint"}, {"trigger": "mnesia_checkpoint_sup", "contents": "mnesia_checkpoint_sup"}, {"trigger": "mnesia_controller", "contents": "mnesia_controller"}, {"trigger": "mnesia_dumper", "contents": "mnesia_dumper"}, {"trigger": "mnesia_event", "contents": "mnesia_event"}, {"trigger": "mnesia_frag", "contents": "mnesia_frag"}, {"trigger": "mnesia_frag_hash", "contents": "mnesia_frag_hash"}, {"trigger": "mnesia_frag_old_hash", "contents": "mnesia_frag_old_hash"}, {"trigger": "mnesia_index", "contents": "mnesia_index"}, {"trigger": "mnesia_kernel_sup", "contents": "mnesia_kernel_sup"}, {"trigger": "mnesia_late_loader", "contents": "mnesia_late_loader"}, {"trigger": "mnesia_lib", "contents": "mnesia_lib"}, {"trigger": "mnesia_loader", "contents": "mnesia_loader"}, {"trigger": "mnesia_locker", "contents": "mnesia_locker"}, {"trigger": "mnesia_log", "contents": "mnesia_log"}, {"trigger": "mnesia_monitor", "contents": "mnesia_monitor"}, {"trigger": "mnesia_recover", "contents": "mnesia_recover"}, {"trigger": "mnesia_registry", "contents": "mnesia_registry"}, {"trigger": "mnesia_schema", "contents": "mnesia_schema"}, {"trigger": "mnesia_snmp_hook", "contents": "mnesia_snmp_hook"}, {"trigger": "mnesia_snmp_sup", "contents": "mnesia_snmp_sup"}, {"trigger": "mnesia_sp", "contents": "mnesia_sp"}, {"trigger": "mnesia_subscr", "contents": "mnesia_subscr"}, {"trigger": "mnesia_sup", "contents": "mnesia_sup"}, {"trigger": "mnesia_text", "contents": "mnesia_text"}, {"trigger": "mnesia_tm", "contents": "mnesia_tm"}, {"trigger": "crashdump_viewer", "contents": "crashdump_viewer"}, {"trigger": "crashdump_viewer_html", "contents": "crashdump_viewer_html"}, {"trigger": "etop", "contents": "etop"}, {"trigger": "etop_gui", "contents": "etop_gui"}, {"trigger": "etop_tr", "contents": "etop_tr"}, {"trigger": "etop_txt", "contents": "etop_txt"}, {"trigger": "observer", "contents": "observer"}, {"trigger": "observer_lib", "contents": "observer_lib"}, {"trigger": "observer_procinfo", "contents": "observer_procinfo"}, {"trigger": "observer_tv_table", "contents": "observer_tv_table"}, {"trigger": "ttb", "contents": "ttb"}, {"trigger": "ttb_et", "contents": "ttb_et"}, {"trigger": "odbc", "contents": "odbc"}, {"trigger": "odbc_app", "contents": "odbc_app"}, {"trigger": "odbc_sup", "contents": "odbc_sup"}, {"trigger": "any", "contents": "any"}, {"trigger": "cdr_decode", "contents": "cdr_decode"}, {"trigger": "cdr_encode", "contents": "cdr_encode"}, {"trigger": "cdrlib", "contents": "cdrlib"}, {"trigger": "corba", "contents": "corba"}, {"trigger": "corba_boa", "contents": "corba_boa"}, {"trigger": "corba_object", "contents": "corba_object"}, {"trigger": "fixed", "contents": "fixed"}, {"trigger": "iop_ior", "contents": "iop_ior"}, {"trigger": "OrberApp_IFR_impl", "contents": "OrberApp_IFR_impl"}, {"trigger": "cpu_sup", "contents": "cpu_sup"}, {"trigger": "disksup", "contents": "disksup"}, {"trigger": "memsup", "contents": "memsup"}, {"trigger": "nteventlog", "contents": "nteventlog"}, {"trigger": "os_mon", "contents": "os_mon"}, {"trigger": "os_mon_mib", "contents": "os_mon_mib"}, {"trigger": "os_mon_sysinfo", "contents": "os_mon_sysinfo"}, {"trigger": "os_sup", "contents": "os_sup"}, {"trigger": "otp_mib", "contents": "otp_mib"}, {"trigger": "leex", "contents": "leex"}, {"trigger": "yecc", "contents": "yecc"}, {"trigger": "yeccparser", "contents": "yeccparser"}, {"trigger": "yeccscan", "contents": "yeccscan"}, {"trigger": "egd", "contents": "egd"}, {"trigger": "egd_font", "contents": "egd_font"}, {"trigger": "egd_png", "contents": "egd_png"}, {"trigger": "egd_primitives", "contents": "egd_primitives"}, {"trigger": "egd_render", "contents": "egd_render"}, {"trigger": "percept", "contents": "percept"}, {"trigger": "percept_analyzer", "contents": "percept_analyzer"}, {"trigger": "percept_db", "contents": "percept_db"}, {"trigger": "percept_graph", "contents": "percept_graph"}, {"trigger": "percept_html", "contents": "percept_html"}, {"trigger": "percept_image", "contents": "percept_image"}, {"trigger": "pman", "contents": "pman"}, {"trigger": "pman_buf", "contents": "pman_buf"}, {"trigger": "pman_buf_buffer", "contents": "pman_buf_buffer"}, {"trigger": "pman_buf_converter", "contents": "pman_buf_converter"}, {"trigger": "pman_buf_printer", "contents": "pman_buf_printer"}, {"trigger": "pman_buf_utils", "contents": "pman_buf_utils"}, {"trigger": "pman_main", "contents": "pman_main"}, {"trigger": "pman_module_info", "contents": "pman_module_info"}, {"trigger": "pman_options", "contents": "pman_options"}, {"trigger": "pman_process", "contents": "pman_process"}, {"trigger": "pman_relay", "contents": "pman_relay"}, {"trigger": "pman_relay_server", "contents": "pman_relay_server"}, {"trigger": "pman_shell", "contents": "pman_shell"}, {"trigger": "pman_tool", "contents": "pman_tool"}, {"trigger": "pman_win", "contents": "pman_win"}, {"trigger": "pubkey_cert", "contents": "pubkey_cert"}, {"trigger": "pubkey_cert_records", "contents": "pubkey_cert_records"}, {"trigger": "pubkey_pbe", "contents": "pubkey_pbe"}, {"trigger": "pubkey_pem", "contents": "pubkey_pem"}, {"trigger": "pubkey_ssh", "contents": "pubkey_ssh"}, {"trigger": "public_key", "contents": "public_key"}, {"trigger": "reltool", "contents": "reltool"}, {"trigger": "reltool_app_win", "contents": "reltool_app_win"}, {"trigger": "reltool_fgraph", "contents": "reltool_fgraph"}, {"trigger": "reltool_fgraph_win", "contents": "reltool_fgraph_win"}, {"trigger": "reltool_mod_win", "contents": "reltool_mod_win"}, {"trigger": "reltool_server", "contents": "reltool_server"}, {"trigger": "reltool_sys_win", "contents": "reltool_sys_win"}, {"trigger": "reltool_target", "contents": "reltool_target"}, {"trigger": "reltool_utils", "contents": "reltool_utils"}, {"trigger": "dbg", "contents": "dbg"}, {"trigger": "dyntrace", "contents": "dyntrace"}, {"trigger": "erts_alloc_config", "contents": "erts_alloc_config"}, {"trigger": "inviso_as_lib", "contents": "inviso_as_lib"}, {"trigger": "inviso_autostart", "contents": "inviso_autostart"}, {"trigger": "inviso_autostart_server", "contents": "inviso_autostart_server"}, {"trigger": "inviso_rt", "contents": "inviso_rt"}, {"trigger": "inviso_rt_lib", "contents": "inviso_rt_lib"}, {"trigger": "inviso_rt_meta", "contents": "inviso_rt_meta"}, {"trigger": "observer_backend", "contents": "observer_backend"}, {"trigger": "percept_profile", "contents": "percept_profile"}, {"trigger": "runtime_tools", "contents": "runtime_tools"}, {"trigger": "runtime_tools_sup", "contents": "runtime_tools_sup"}, {"trigger": "ttb_autostart", "contents": "ttb_autostart"}, {"trigger": "target_system", "contents": "target_system"}, {"trigger": "alarm_handler", "contents": "alarm_handler"}, {"trigger": "erlsrv", "contents": "erlsrv"}, {"trigger": "format_lib_supp", "contents": "format_lib_supp"}, {"trigger": "misc_supp", "contents": "misc_supp"}, {"trigger": "overload", "contents": "overload"}, {"trigger": "rb", "contents": "rb"}, {"trigger": "rb_format_supp", "contents": "rb_format_supp"}, {"trigger": "release_handler", "contents": "release_handler"}, {"trigger": "release_handler_1", "contents": "release_handler_1"}, {"trigger": "sasl", "contents": "sasl"}, {"trigger": "sasl_report", "contents": "sasl_report"}, {"trigger": "sasl_report_file_h", "contents": "sasl_report_file_h"}, {"trigger": "sasl_report_tty_h", "contents": "sasl_report_tty_h"}, {"trigger": "si", "contents": "si"}, {"trigger": "si_sasl_supp", "contents": "si_sasl_supp"}, {"trigger": "systools", "contents": "systools"}, {"trigger": "systools_lib", "contents": "systools_lib"}, {"trigger": "systools_make", "contents": "systools_make"}, {"trigger": "systools_rc", "contents": "systools_rc"}, {"trigger": "systools_relup", "contents": "systools_relup"}, {"trigger": "snmp_community_mib", "contents": "snmp_community_mib"}, {"trigger": "snmp_framework_mib", "contents": "snmp_framework_mib"}, {"trigger": "snmp_generic", "contents": "snmp_generic"}, {"trigger": "snmp_generic_mnesia", "contents": "snmp_generic_mnesia"}, {"trigger": "snmp_index", "contents": "snmp_index"}, {"trigger": "snmp_notification_mib", "contents": "snmp_notification_mib"}, {"trigger": "snmp_shadow_table", "contents": "snmp_shadow_table"}, {"trigger": "snmp_standard_mib", "contents": "snmp_standard_mib"}, {"trigger": "snmp_target_mib", "contents": "snmp_target_mib"}, {"trigger": "snmp_user_based_sm_mib", "contents": "snmp_user_based_sm_mib"}, {"trigger": "snmp_view_based_acm_mib", "contents": "snmp_view_based_acm_mib"}, {"trigger": "snmpa", "contents": "snmpa"}, {"trigger": "snmpa_acm", "contents": "snmpa_acm"}, {"trigger": "snmpa_agent", "contents": "snmpa_agent"}, {"trigger": "snmpa_agent_sup", "contents": "snmpa_agent_sup"}, {"trigger": "snmpa_app", "contents": "snmpa_app"}, {"trigger": "snmpa_authentication_service", "contents": "snmpa_authentication_service"}, {"trigger": "snmpa_conf", "contents": "snmpa_conf"}, {"trigger": "snmpa_discovery_handler", "contents": "snmpa_discovery_handler"}, {"trigger": "snmpa_discovery_handler_default", "contents": "snmpa_discovery_handler_default"}, {"trigger": "snmpa_error", "contents": "snmpa_error"}, {"trigger": "snmpa_error_io", "contents": "snmpa_error_io"}, {"trigger": "snmpa_error_logger", "contents": "snmpa_error_logger"}, {"trigger": "snmpa_error_report", "contents": "snmpa_error_report"}, {"trigger": "snmpa_general_db", "contents": "snmpa_general_db"}, {"trigger": "snmpa_local_db", "contents": "snmpa_local_db"}, {"trigger": "snmpa_mib", "contents": "snmpa_mib"}, {"trigger": "snmpa_mib_data", "contents": "snmpa_mib_data"}, {"trigger": "snmpa_mib_lib", "contents": "snmpa_mib_lib"}, {"trigger": "snmpa_misc_sup", "contents": "snmpa_misc_sup"}, {"trigger": "snmpa_mpd", "contents": "snmpa_mpd"}, {"trigger": "snmpa_net_if", "contents": "snmpa_net_if"}, {"trigger": "snmpa_net_if_filter", "contents": "snmpa_net_if_filter"}, {"trigger": "snmpa_network_interface", "contents": "snmpa_network_interface"}, {"trigger": "snmpa_network_interface_filter", "contents": "snmpa_network_interface_filter"}, {"trigger": "snmpa_notification_delivery_info_receiver", "contents": "snmpa_notification_delivery_info_receiver"}, {"trigger": "snmpa_notification_filter", "contents": "snmpa_notification_filter"}, {"trigger": "snmpa_set", "contents": "snmpa_set"}, {"trigger": "snmpa_set_lib", "contents": "snmpa_set_lib"}, {"trigger": "snmpa_set_mechanism", "contents": "snmpa_set_mechanism"}, {"trigger": "snmpa_supervisor", "contents": "snmpa_supervisor"}, {"trigger": "snmpa_svbl", "contents": "snmpa_svbl"}, {"trigger": "snmpa_symbolic_store", "contents": "snmpa_symbolic_store"}, {"trigger": "snmpa_target_cache", "contents": "snmpa_target_cache"}, {"trigger": "snmpa_trap", "contents": "snmpa_trap"}, {"trigger": "snmpa_usm", "contents": "snmpa_usm"}, {"trigger": "snmpa_vacm", "contents": "snmpa_vacm"}, {"trigger": "snmp", "contents": "snmp"}, {"trigger": "snmp_app", "contents": "snmp_app"}, {"trigger": "snmp_app_sup", "contents": "snmp_app_sup"}, {"trigger": "snmpc", "contents": "snmpc"}, {"trigger": "snmpc_lib", "contents": "snmpc_lib"}, {"trigger": "snmpc_mib_gram", "contents": "snmpc_mib_gram"}, {"trigger": "snmpc_mib_to_hrl", "contents": "snmpc_mib_to_hrl"}, {"trigger": "snmpc_misc", "contents": "snmpc_misc"}, {"trigger": "snmpc_tok", "contents": "snmpc_tok"}, {"trigger": "snmpm", "contents": "snmpm"}, {"trigger": "snmpm_conf", "contents": "snmpm_conf"}, {"trigger": "snmpm_config", "contents": "snmpm_config"}, {"trigger": "snmpm_misc_sup", "contents": "snmpm_misc_sup"}, {"trigger": "snmpm_mpd", "contents": "snmpm_mpd"}, {"trigger": "snmpm_net_if", "contents": "snmpm_net_if"}, {"trigger": "snmpm_net_if_filter", "contents": "snmpm_net_if_filter"}, {"trigger": "snmpm_net_if_mt", "contents": "snmpm_net_if_mt"}, {"trigger": "snmpm_network_interface", "contents": "snmpm_network_interface"}, {"trigger": "snmpm_network_interface_filter", "contents": "snmpm_network_interface_filter"}, {"trigger": "snmpm_server", "contents": "snmpm_server"}, {"trigger": "snmpm_server_sup", "contents": "snmpm_server_sup"}, {"trigger": "snmpm_supervisor", "contents": "snmpm_supervisor"}, {"trigger": "snmpm_user", "contents": "snmpm_user"}, {"trigger": "snmpm_user_default", "contents": "snmpm_user_default"}, {"trigger": "snmpm_user_old", "contents": "snmpm_user_old"}, {"trigger": "snmpm_usm", "contents": "snmpm_usm"}, {"trigger": "snmp_conf", "contents": "snmp_conf"}, {"trigger": "snmp_config", "contents": "snmp_config"}, {"trigger": "snmp_log", "contents": "snmp_log"}, {"trigger": "snmp_mini_mib", "contents": "snmp_mini_mib"}, {"trigger": "snmp_misc", "contents": "snmp_misc"}, {"trigger": "snmp_note_store", "contents": "snmp_note_store"}, {"trigger": "snmp_pdus", "contents": "snmp_pdus"}, {"trigger": "snmp_usm", "contents": "snmp_usm"}, {"trigger": "snmp_verbosity", "contents": "snmp_verbosity"}, {"trigger": "ssh", "contents": "ssh"}, {"trigger": "ssh_acceptor", "contents": "ssh_acceptor"}, {"trigger": "ssh_acceptor_sup", "contents": "ssh_acceptor_sup"}, {"trigger": "ssh_app", "contents": "ssh_app"}, {"trigger": "ssh_auth", "contents": "ssh_auth"}, {"trigger": "ssh_bits", "contents": "ssh_bits"}, {"trigger": "ssh_channel", "contents": "ssh_channel"}, {"trigger": "ssh_channel_sup", "contents": "ssh_channel_sup"}, {"trigger": "ssh_cli", "contents": "ssh_cli"}, {"trigger": "ssh_connection", "contents": "ssh_connection"}, {"trigger": "ssh_connection_handler", "contents": "ssh_connection_handler"}, {"trigger": "ssh_connection_manager", "contents": "ssh_connection_manager"}, {"trigger": "ssh_connection_sup", "contents": "ssh_connection_sup"}, {"trigger": "ssh_file", "contents": "ssh_file"}, {"trigger": "ssh_io", "contents": "ssh_io"}, {"trigger": "ssh_math", "contents": "ssh_math"}, {"trigger": "ssh_no_io", "contents": "ssh_no_io"}, {"trigger": "ssh_sftp", "contents": "ssh_sftp"}, {"trigger": "ssh_sftpd", "contents": "ssh_sftpd"}, {"trigger": "ssh_sftpd_file", "contents": "ssh_sftpd_file"}, {"trigger": "ssh_shell", "contents": "ssh_shell"}, {"trigger": "ssh_subsystem_sup", "contents": "ssh_subsystem_sup"}, {"trigger": "ssh_sup", "contents": "ssh_sup"}, {"trigger": "ssh_system_sup", "contents": "ssh_system_sup"}, {"trigger": "ssh_transport", "contents": "ssh_transport"}, {"trigger": "ssh_userreg", "contents": "ssh_userreg"}, {"trigger": "ssh_xfer", "contents": "ssh_xfer"}, {"trigger": "sshc_sup", "contents": "sshc_sup"}, {"trigger": "sshd_sup", "contents": "sshd_sup"}, {"trigger": "client_server", "contents": "client_server"}, {"trigger": "inet_tls_dist", "contents": "inet_tls_dist"}, {"trigger": "ssl", "contents": "ssl"}, {"trigger": "ssl_alert", "contents": "ssl_alert"}, {"trigger": "ssl_app", "contents": "ssl_app"}, {"trigger": "ssl_certificate", "contents": "ssl_certificate"}, {"trigger": "ssl_certificate_db", "contents": "ssl_certificate_db"}, {"trigger": "ssl_cipher", "contents": "ssl_cipher"}, {"trigger": "ssl_connection", "contents": "ssl_connection"}, {"trigger": "ssl_connection_sup", "contents": "ssl_connection_sup"}, {"trigger": "ssl_debug", "contents": "ssl_debug"}, {"trigger": "ssl_dist_sup", "contents": "ssl_dist_sup"}, {"trigger": "ssl_handshake", "contents": "ssl_handshake"}, {"trigger": "ssl_manager", "contents": "ssl_manager"}, {"trigger": "ssl_record", "contents": "ssl_record"}, {"trigger": "ssl_session", "contents": "ssl_session"}, {"trigger": "ssl_session_cache", "contents": "ssl_session_cache"}, {"trigger": "ssl_ssl2", "contents": "ssl_ssl2"}, {"trigger": "ssl_ssl3", "contents": "ssl_ssl3"}, {"trigger": "ssl_sup", "contents": "ssl_sup"}, {"trigger": "ssl_tls1", "contents": "ssl_tls1"}, {"trigger": "ssl_tls_dist_proxy", "contents": "ssl_tls_dist_proxy"}, {"trigger": "array", "contents": "array"}, {"trigger": "base64", "contents": "base64"}, {"trigger": "beam_lib", "contents": "beam_lib"}, {"trigger": "binary", "contents": "binary"}, {"trigger": "c", "contents": "c"}, {"trigger": "calendar", "contents": "calendar"}, {"trigger": "dets", "contents": "dets"}, {"trigger": "dets_server", "contents": "dets_server"}, {"trigger": "dets_sup", "contents": "dets_sup"}, {"trigger": "dets_utils", "contents": "dets_utils"}, {"trigger": "dets_v8", "contents": "dets_v8"}, {"trigger": "dets_v9", "contents": "dets_v9"}, {"trigger": "dict", "contents": "dict"}, {"trigger": "digraph", "contents": "digraph"}, {"trigger": "digraph_utils", "contents": "digraph_utils"}, {"trigger": "edlin", "contents": "edlin"}, {"trigger": "edlin_expand", "contents": "edlin_expand"}, {"trigger": "epp", "contents": "epp"}, {"trigger": "erl_bits", "contents": "erl_bits"}, {"trigger": "erl_compile", "contents": "erl_compile"}, {"trigger": "erl_eval", "contents": "erl_eval"}, {"trigger": "erl_expand_records", "contents": "erl_expand_records"}, {"trigger": "erl_internal", "contents": "erl_internal"}, {"trigger": "erl_lint", "contents": "erl_lint"}, {"trigger": "erl_parse", "contents": "erl_parse"}, {"trigger": "erl_posix_msg", "contents": "erl_posix_msg"}, {"trigger": "erl_pp", "contents": "erl_pp"}, {"trigger": "erl_scan", "contents": "erl_scan"}, {"trigger": "erl_tar", "contents": "erl_tar"}, {"trigger": "error_logger_file_h", "contents": "error_logger_file_h"}, {"trigger": "error_logger_tty_h", "contents": "error_logger_tty_h"}, {"trigger": "escript", "contents": "escript"}, {"trigger": "ets", "contents": "ets"}, {"trigger": "eval_bits", "contents": "eval_bits"}, {"trigger": "file_sorter", "contents": "file_sorter"}, {"trigger": "filelib", "contents": "filelib"}, {"trigger": "filename", "contents": "filename"}, {"trigger": "gb_sets", "contents": "gb_sets"}, {"trigger": "gb_trees", "contents": "gb_trees"}, {"trigger": "gen", "contents": "gen"}, {"trigger": "gen_event", "contents": "gen_event"}, {"trigger": "gen_fsm", "contents": "gen_fsm"}, {"trigger": "gen_server", "contents": "gen_server"}, {"trigger": "io", "contents": "io"}, {"trigger": "io_lib", "contents": "io_lib"}, {"trigger": "io_lib_format", "contents": "io_lib_format"}, {"trigger": "io_lib_fread", "contents": "io_lib_fread"}, {"trigger": "io_lib_pretty", "contents": "io_lib_pretty"}, {"trigger": "lib", "contents": "lib"}, {"trigger": "lists", "contents": "lists"}, {"trigger": "log_mf_h", "contents": "log_mf_h"}, {"trigger": "math", "contents": "math"}, {"trigger": "ms_transform", "contents": "ms_transform"}, {"trigger": "orddict", "contents": "orddict"}, {"trigger": "ordsets", "contents": "ordsets"}, {"trigger": "otp_internal", "contents": "otp_internal"}, {"trigger": "pg", "contents": "pg"}, {"trigger": "pool", "contents": "pool"}, {"trigger": "proc_lib", "contents": "proc_lib"}, {"trigger": "proplists", "contents": "proplists"}, {"trigger": "qlc", "contents": "qlc"}, {"trigger": "qlc_pt", "contents": "qlc_pt"}, {"trigger": "queue", "contents": "queue"}, {"trigger": "random", "contents": "random"}, {"trigger": "re", "contents": "re"}, {"trigger": "sets", "contents": "sets"}, {"trigger": "shell", "contents": "shell"}, {"trigger": "shell_default", "contents": "shell_default"}, {"trigger": "slave", "contents": "slave"}, {"trigger": "sofs", "contents": "sofs"}, {"trigger": "string", "contents": "string"}, {"trigger": "supervisor", "contents": "supervisor"}, {"trigger": "supervisor_bridge", "contents": "supervisor_bridge"}, {"trigger": "sys", "contents": "sys"}, {"trigger": "timer", "contents": "timer"}, {"trigger": "unicode", "contents": "unicode"}, {"trigger": "win32reg", "contents": "win32reg"}, {"trigger": "zip", "contents": "zip"}, {"trigger": "epp_dodger", "contents": "epp_dodger"}, {"trigger": "erl_comment_scan", "contents": "erl_comment_scan"}, {"trigger": "erl_prettypr", "contents": "erl_prettypr"}, {"trigger": "erl_recomment", "contents": "erl_recomment"}, {"trigger": "erl_syntax", "contents": "erl_syntax"}, {"trigger": "erl_syntax_lib", "contents": "erl_syntax_lib"}, {"trigger": "erl_tidy", "contents": "erl_tidy"}, {"trigger": "igor", "contents": "igor"}, {"trigger": "prettypr", "contents": "prettypr"}, {"trigger": "erl2html2", "contents": "erl2html2"}, {"trigger": "test_server", "contents": "test_server"}, {"trigger": "test_server_ctrl", "contents": "test_server_ctrl"}, {"trigger": "test_server_h", "contents": "test_server_h"}, {"trigger": "test_server_node", "contents": "test_server_node"}, {"trigger": "test_server_sup", "contents": "test_server_sup"}, {"trigger": "vxworks_client", "contents": "vxworks_client"}, {"trigger": "canvasbutton", "contents": "canvasbutton"}, {"trigger": "toolbar", "contents": "toolbar"}, {"trigger": "toolbar_graphics", "contents": "toolbar_graphics"}, {"trigger": "toolbar_lib", "contents": "toolbar_lib"}, {"trigger": "toolbar_toolconfig", "contents": "toolbar_toolconfig"}, {"trigger": "cover", "contents": "cover"}, {"trigger": "cover_web", "contents": "cover_web"}, {"trigger": "cprof", "contents": "cprof"}, {"trigger": "eprof", "contents": "eprof"}, {"trigger": "fprof", "contents": "fprof"}, {"trigger": "instrument", "contents": "instrument"}, {"trigger": "lcnt", "contents": "lcnt"}, {"trigger": "make", "contents": "make"}, {"trigger": "tags", "contents": "tags"}, {"trigger": "xref", "contents": "xref"}, {"trigger": "xref_base", "contents": "xref_base"}, {"trigger": "xref_compiler", "contents": "xref_compiler"}, {"trigger": "xref_parser", "contents": "xref_parser"}, {"trigger": "xref_reader", "contents": "xref_reader"}, {"trigger": "xref_scanner", "contents": "xref_scanner"}, {"trigger": "xref_utils", "contents": "xref_utils"}, {"trigger": "tv", "contents": "tv"}, {"trigger": "tv_comm_func", "contents": "tv_comm_func"}, {"trigger": "tv_db", "contents": "tv_db"}, {"trigger": "tv_db_search", "contents": "tv_db_search"}, {"trigger": "tv_db_sort", "contents": "tv_db_sort"}, {"trigger": "tv_ets_rpc", "contents": "tv_ets_rpc"}, {"trigger": "tv_etsread", "contents": "tv_etsread"}, {"trigger": "tv_info", "contents": "tv_info"}, {"trigger": "tv_io_lib", "contents": "tv_io_lib"}, {"trigger": "tv_io_lib_format", "contents": "tv_io_lib_format"}, {"trigger": "tv_io_lib_pretty", "contents": "tv_io_lib_pretty"}, {"trigger": "tv_ip", "contents": "tv_ip"}, {"trigger": "tv_main", "contents": "tv_main"}, {"trigger": "tv_mnesia_rpc", "contents": "tv_mnesia_rpc"}, {"trigger": "tv_new_table", "contents": "tv_new_table"}, {"trigger": "tv_nodewin", "contents": "tv_nodewin"}, {"trigger": "tv_pb", "contents": "tv_pb"}, {"trigger": "tv_pb_funcs", "contents": "tv_pb_funcs"}, {"trigger": "tv_pc", "contents": "tv_pc"}, {"trigger": "tv_pc_graph_ctrl", "contents": "tv_pc_graph_ctrl"}, {"trigger": "tv_pc_menu_handling", "contents": "tv_pc_menu_handling"}, {"trigger": "tv_pd", "contents": "tv_pd"}, {"trigger": "tv_pd_display", "contents": "tv_pd_display"}, {"trigger": "tv_pd_frames", "contents": "tv_pd_frames"}, {"trigger": "tv_pd_scale", "contents": "tv_pd_scale"}, {"trigger": "tv_pg", "contents": "tv_pg"}, {"trigger": "tv_pg_gridfcns", "contents": "tv_pg_gridfcns"}, {"trigger": "tv_poll_dialog", "contents": "tv_poll_dialog"}, {"trigger": "tv_pw", "contents": "tv_pw"}, {"trigger": "tv_pw_window", "contents": "tv_pw_window"}, {"trigger": "tv_rec_edit", "contents": "tv_rec_edit"}, {"trigger": "tv_table_owner", "contents": "tv_table_owner"}, {"trigger": "tv_utils", "contents": "tv_utils"}, {"trigger": "typer", "contents": "typer"}, {"trigger": "webtool", "contents": "webtool"}, {"trigger": "webtool_sup", "contents": "webtool_sup"}, {"trigger": "gl", "contents": "gl"}, {"trigger": "glu", "contents": "glu"}, {"trigger": "xmerl", "contents": "xmerl"}, {"trigger": "xmerl_b64Bin", "contents": "xmerl_b64Bin"}, {"trigger": "xmerl_b64Bin_scan", "contents": "xmerl_b64Bin_scan"}, {"trigger": "xmerl_eventp", "contents": "xmerl_eventp"}, {"trigger": "xmerl_html", "contents": "xmerl_html"}, {"trigger": "xmerl_lib", "contents": "xmerl_lib"}, {"trigger": "xmerl_otpsgml", "contents": "xmerl_otpsgml"}, {"trigger": "xmerl_regexp", "contents": "xmerl_regexp"}, {"trigger": "xmerl_sax_old_dom", "contents": "xmerl_sax_old_dom"}, {"trigger": "xmerl_sax_parser", "contents": "xmerl_sax_parser"}, {"trigger": "xmerl_sax_parser_latin1", "contents": "xmerl_sax_parser_latin1"}, {"trigger": "xmerl_sax_parser_list", "contents": "xmerl_sax_parser_list"}, {"trigger": "xmerl_sax_parser_utf16be", "contents": "xmerl_sax_parser_utf16be"}, {"trigger": "xmerl_sax_parser_utf16le", "contents": "xmerl_sax_parser_utf16le"}, {"trigger": "xmerl_sax_parser_utf8", "contents": "xmerl_sax_parser_utf8"}, {"trigger": "xmerl_sax_simple_dom", "contents": "xmerl_sax_simple_dom"}, {"trigger": "xmerl_scan", "contents": "xmerl_scan"}, {"trigger": "xmerl_sgml", "contents": "xmerl_sgml"}, {"trigger": "xmerl_simple", "contents": "xmerl_simple"}, {"trigger": "xmerl_text", "contents": "xmerl_text"}, {"trigger": "xmerl_ucs", "contents": "xmerl_ucs"}, {"trigger": "xmerl_uri", "contents": "xmerl_uri"}, {"trigger": "xmerl_validate", "contents": "xmerl_validate"}, {"trigger": "xmerl_xlate", "contents": "xmerl_xlate"}, {"trigger": "xmerl_xml", "contents": "xmerl_xml"}, {"trigger": "xmerl_xpath", "contents": "xmerl_xpath"}, {"trigger": "xmerl_xpath_lib", "contents": "xmerl_xpath_lib"}, {"trigger": "xmerl_xpath_parse", "contents": "xmerl_xpath_parse"}, {"trigger": "xmerl_xpath_pred", "contents": "xmerl_xpath_pred"}, {"trigger": "xmerl_xpath_scan", "contents": "xmerl_xpath_scan"}, {"trigger": "xmerl_xs", "contents": "xmerl_xs"}, {"trigger": "xmerl_xsd", "contents": "xmerl_xsd"}, {"trigger": "xmerl_xsd_type", "contents": "xmerl_xsd_type"}, {"trigger": "abs/1", "contents": "abs(${1:Number}) $2"}, {"trigger": "atom_to_binary/2", "contents": "atom_to_binary(${1:Atom}, ${2:Encoding}) $3"}, {"trigger": "atom_to_list/1", "contents": "atom_to_list(${1:Atom}) $2"}, {"trigger": "binary_part/2", "contents": "binary_part(${1:Subject}, ${2:PosLen}) $3"}, {"trigger": "binary_part/3", "contents": "binary_part(${1:Subject}, ${2:Start}, ${3:Length}) $4"}, {"trigger": "binary_to_atom/2", "contents": "binary_to_atom(${1:Binary}, ${2:Encoding}) $3"}, {"trigger": "binary_to_existing_atom/2", "contents": "binary_to_existing_atom(${1:Binary}, ${2:Encoding}) $3"}, {"trigger": "binary_to_list/1", "contents": "binary_to_list(${1:Binary}) $2"}, {"trigger": "binary_to_list/3", "contents": "binary_to_list(${1:Binary}, ${2:Start}, ${3:Stop}) $4"}, {"trigger": "bitstring_to_list/1", "contents": "bitstring_to_list(${1:Bitstring}) $2"}, {"trigger": "binary_to_term/2", "contents": "binary_to_term(${1:Binary}, ${2:Opts}) $3"}, {"trigger": "bit_size/1", "contents": "bit_size(${1:Bitstring}) $2"}, {"trigger": "byte_size/1", "contents": "byte_size(${1:Bitstring}) $2"}, {"trigger": "check_old_code/1", "contents": "check_old_code(${1:Module}) $2"}, {"trigger": "check_process_code/2", "contents": "check_process_code(${1:Pid}, ${2:Module}) $3"}, {"trigger": "date/0", "contents": "date() $1"}, {"trigger": "delete_module/1", "contents": "delete_module(${1:Module}) $2"}, {"trigger": "demonitor/1", "contents": "demonitor(${1:MonitorRef}) $2"}, {"trigger": "demonitor/2", "contents": "demonitor(${1:MonitorRef}, ${2:OptionList}) $3"}, {"trigger": "element/2", "contents": "element(${1:N}, ${2:Tuple}) $3"}, {"trigger": "erase/0", "contents": "erase() $1"}, {"trigger": "erase/1", "contents": "erase(${1:Key}) $2"}, {"trigger": "error/1", "contents": "error(${1:Reason}) $2"}, {"trigger": "error/2", "contents": "error(${1:Reason}, ${2:Args}) $3"}, {"trigger": "exit/1", "contents": "exit(${1:Reason}) $2"}, {"trigger": "exit/2", "contents": "exit(${1:Reason}, ${2:Args}) $3"}, {"trigger": "float/1", "contents": "float(${1:Number}) $2"}, {"trigger": "float_to_list/1", "contents": "float_to_list(${1:Float}) $2"}, {"trigger": "garbage_collect/0", "contents": "garbage_collect() $1"}, {"trigger": "garbage_collect/1", "contents": "garbage_collect(${1:Pid}) $2"}, {"trigger": "get/0", "contents": "get() $1"}, {"trigger": "get/1", "contents": "get(${1:Key}) $2"}, {"trigger": "get_keys/1", "contents": "get_keys(${1:Val}) $2"}, {"trigger": "group_leader/0", "contents": "group_leader() $1"}, {"trigger": "group_leader/2", "contents": "group_leader(${1:GroupLeader}, ${2:Pid}) $3"}, {"trigger": "halt/0", "contents": "halt() $1"}, {"trigger": "halt/1", "contents": "halt(${1:Status}) $2"}, {"trigger": "halt/2", "contents": "halt(${1:Status}, ${2:Options}) $3"}, {"trigger": "hd/1", "contents": "hd(${1:List}) $2"}, {"trigger": "integer_to_list/1", "contents": "integer_to_list(${1:Integer}) $2"}, {"trigger": "iolist_to_binary/1", "contents": "iolist_to_binary(${1:IoListOrBinary}) $2"}, {"trigger": "iolist_size/1", "contents": "iolist_size(${1:Item}) $2"}, {"trigger": "is_alive/0", "contents": "is_alive() $1"}, {"trigger": "is_atom/1", "contents": "is_atom(${1:Term}) $2"}, {"trigger": "is_binary/1", "contents": "is_binary(${1:Term}) $2"}, {"trigger": "is_bitstring/1", "contents": "is_bitstring(${1:Term}) $2"}, {"trigger": "is_boolean/1", "contents": "is_boolean(${1:Term}) $2"}, {"trigger": "is_float/1", "contents": "is_float(${1:Term}) $2"}, {"trigger": "is_function/1", "contents": "is_function(${1:Term}) $2"}, {"trigger": "is_function/2", "contents": "is_function(${1:Term}, ${2:Arity}) $3"}, {"trigger": "is_integer/1", "contents": "is_integer(${1:Term}) $2"}, {"trigger": "is_list/1", "contents": "is_list(${1:Term}) $2"}, {"trigger": "is_number/1", "contents": "is_number(${1:Term}) $2"}, {"trigger": "is_pid/1", "contents": "is_pid(${1:Term}) $2"}, {"trigger": "is_port/1", "contents": "is_port(${1:Term}) $2"}, {"trigger": "is_process_alive/1", "contents": "is_process_alive(${1:Pid}) $2"}, {"trigger": "is_record/2", "contents": "is_record(${1:Term}, ${2:RecordTag}) $3"}, {"trigger": "is_record/3", "contents": "is_record(${1:Term}, ${2:RecordTag}, ${3:Size}) $4"}, {"trigger": "is_reference/1", "contents": "is_reference(${1:Term}) $2"}, {"trigger": "is_tuple/1", "contents": "is_tuple(${1:Term}) $2"}, {"trigger": "length/1", "contents": "length(${1:List}) $2"}, {"trigger": "link/1", "contents": "link(${1:Pid}) $2"}, {"trigger": "list_to_atom/1", "contents": "list_to_atom(${1:String}) $2"}, {"trigger": "list_to_binary/1", "contents": "list_to_binary(${1:IoList}) $2"}, {"trigger": "list_to_bitstring/1", "contents": "list_to_bitstring(${1:BitstringList}) $2"}, {"trigger": "list_to_existing_atom/1", "contents": "list_to_existing_atom(${1:String}) $2"}, {"trigger": "list_to_float/1", "contents": "list_to_float(${1:String}) $2"}, {"trigger": "list_to_integer/1", "contents": "list_to_integer(${1:String}) $2"}, {"trigger": "list_to_pid/1", "contents": "list_to_pid(${1:String}) $2"}, {"trigger": "list_to_tuple/1", "contents": "list_to_tuple(${1:List}) $2"}, {"trigger": "load_module/2", "contents": "load_module(${1:Module}, ${2:Binary}) $3"}, {"trigger": "make_ref/0", "contents": "make_ref() $1"}, {"trigger": "module_loaded/1", "contents": "module_loaded(${1:Module}) $2"}, {"trigger": "monitor/2", "contents": "monitor(${1:Type}, ${2:Item}) $3"}, {"trigger": "monitor_node/2", "contents": "monitor_node(${1:Node}, ${2:Flag}) $3"}, {"trigger": "node/0", "contents": "node() $1"}, {"trigger": "node/1", "contents": "node(${1:Arg}) $2"}, {"trigger": "nodes/1", "contents": "nodes(${1:Arg}) $2"}, {"trigger": "now/0", "contents": "now() $1"}, {"trigger": "open_port/2", "contents": "open_port(${1:PortName}, ${2:PortSettings}) $3"}, {"trigger": "pid_to_list/1", "contents": "pid_to_list(${1:Pid}) $2"}, {"trigger": "port_close/1", "contents": "port_close(${1:Port}) $2"}, {"trigger": "port_command/2", "contents": "port_command(${1:Port}, ${2:Data}) $3"}, {"trigger": "port_command/3", "contents": "port_command(${1:Port}, ${2:Data}, ${3:OptionList}) $4"}, {"trigger": "port_connect/2", "contents": "port_connect(${1:Port}, ${2:Pid}) $3"}, {"trigger": "port_control/3", "contents": "port_control(${1:Port}, ${2:Operation}, ${3:Data}) $4"}, {"trigger": "pre_loaded/0", "contents": "pre_loaded() $1"}, {"trigger": "process_flag/2", "contents": "process_flag(${1:Flag}, ${2:Value}) $3"}, {"trigger": "process_flag/3", "contents": "process_flag(${1:Pid}, ${2:Flag}, ${3:Value}) $4"}, {"trigger": "process_info/1", "contents": "process_info(${1:Pid}) $2"}, {"trigger": "process_info/2", "contents": "process_info(${1:Pid}, ${2:ItemSpec}) $3"}, {"trigger": "processes/0", "contents": "processes() $1"}, {"trigger": "purge_module/1", "contents": "purge_module(${1:Module}) $2"}, {"trigger": "put/2", "contents": "put(${1:Key}, ${2:Val}) $3"}, {"trigger": "register/2", "contents": "put(${1:RegName}, ${2:PidOrPort}) $3"}, {"trigger": "registered/0", "contents": "registered() $1"}, {"trigger": "round/1", "contents": "round(${1:Number}) $2"}, {"trigger": "self/0", "contents": "self() $1"}, {"trigger": "setelement/3", "contents": "setelement(${1:Index}, ${2:Tuple1}, ${3:Value}) $4"}, {"trigger": "size/1", "contents": "size(${1:Item}) $2"}, {"trigger": "spawn/3", "contents": "spawn(${1:Module}, ${2:Function}) $3, ${3:Args}) $4"}, {"trigger": "spawn_link/3", "contents": "spawn_link(${1:Module}, ${2:Function}, ${3:Args}) $4"}, {"trigger": "split_binary/2", "contents": "split_binary(${1:Bin}, ${2:Pos}) $3"}, {"trigger": "statistics/1", "contents": "statistics(${1:Type}) $2"}, {"trigger": "term_to_binary/1", "contents": "term_to_binary(${1:Term}) $2"}, {"trigger": "term_to_binary/2", "contents": "term_to_binary(${1:Term}, ${2:Options}) $3"}, {"trigger": "throw/1", "contents": "throw(${1:Any}) $2"}, {"trigger": "time/0", "contents": "time() $1"}, {"trigger": "tl/1", "contents": "tl(${1:List1}) $2"}, {"trigger": "trunc/1", "contents": "trunc(${1:Number}) $2"}, {"trigger": "tuple_size/1", "contents": "tuple_size(${1:Tuple}) $2"}, {"trigger": "tuple_to_list/1", "contents": "tuple_to_list(${1:Tuple}) $2"}, {"trigger": "unlink/1", "contents": "unlink(${1:Id}) $2"}, {"trigger": "unregister/1", "contents": "unregister(${1:RegName}) $2"}, {"trigger": "whereis/1", "contents": "whereis(${1:RegName}) $2"}]} \ No newline at end of file diff --git a/completion/Erlang-Libs.sublime-completions.full b/completion/Erlang-Libs.sublime-completions.full deleted file mode 100644 index 8cc485a..0000000 --- a/completion/Erlang-Libs.sublime-completions.full +++ /dev/null @@ -1,1739 +0,0 @@ -{ "scope": "source.erlang", "completions": [ -{ "trigger": "appmon", "contents": "appmon" }, -{ "trigger": "appmon_a", "contents": "appmon_a" }, -{ "trigger": "appmon_dg", "contents": "appmon_dg" }, -{ "trigger": "appmon_info", "contents": "appmon_info" }, -{ "trigger": "appmon_lb", "contents": "appmon_lb" }, -{ "trigger": "appmon_place", "contents": "appmon_place" }, -{ "trigger": "appmon_txt", "contents": "appmon_txt" }, -{ "trigger": "appmon_web", "contents": "appmon_web" }, -{ "trigger": "process_info", "contents": "process_info" }, -{ "trigger": "asn1_db", "contents": "asn1_db" }, -{ "trigger": "asn1ct", "contents": "asn1ct" }, -{ "trigger": "asn1ct_check", "contents": "asn1ct_check" }, -{ "trigger": "asn1ct_constructed_ber", "contents": "asn1ct_constructed_ber" }, -{ "trigger": "asn1ct_constructed_ber_bin_v2", "contents": "asn1ct_constructed_ber_bin_v2" }, -{ "trigger": "asn1ct_constructed_per", "contents": "asn1ct_constructed_per" }, -{ "trigger": "asn1ct_gen", "contents": "asn1ct_gen" }, -{ "trigger": "asn1ct_gen_ber", "contents": "asn1ct_gen_ber" }, -{ "trigger": "asn1ct_gen_ber_bin_v2", "contents": "asn1ct_gen_ber_bin_v2" }, -{ "trigger": "asn1ct_gen_per", "contents": "asn1ct_gen_per" }, -{ "trigger": "asn1ct_gen_per_rt2ct", "contents": "asn1ct_gen_per_rt2ct" }, -{ "trigger": "asn1ct_name", "contents": "asn1ct_name" }, -{ "trigger": "asn1ct_parser2", "contents": "asn1ct_parser2" }, -{ "trigger": "asn1ct_pretty_format", "contents": "asn1ct_pretty_format" }, -{ "trigger": "asn1ct_table", "contents": "asn1ct_table" }, -{ "trigger": "asn1ct_tok", "contents": "asn1ct_tok" }, -{ "trigger": "asn1ct_value", "contents": "asn1ct_value" }, -{ "trigger": "asn1rt", "contents": "asn1rt" }, -{ "trigger": "asn1rt_ber_bin", "contents": "asn1rt_ber_bin" }, -{ "trigger": "asn1rt_ber_bin_v2", "contents": "asn1rt_ber_bin_v2" }, -{ "trigger": "asn1rt_check", "contents": "asn1rt_check" }, -{ "trigger": "asn1rt_nif", "contents": "asn1rt_nif" }, -{ "trigger": "asn1rt_per_bin", "contents": "asn1rt_per_bin" }, -{ "trigger": "asn1rt_per_bin_rt2ct", "contents": "asn1rt_per_bin_rt2ct" }, -{ "trigger": "asn1rt_uper_bin", "contents": "asn1rt_uper_bin" }, -{ "trigger": "ct", "contents": "ct" }, -{ "trigger": "ct_config", "contents": "ct_config" }, -{ "trigger": "ct_config_plain", "contents": "ct_config_plain" }, -{ "trigger": "ct_config_xml", "contents": "ct_config_xml" }, -{ "trigger": "ct_cover", "contents": "ct_cover" }, -{ "trigger": "ct_event", "contents": "ct_event" }, -{ "trigger": "ct_framework", "contents": "ct_framework" }, -{ "trigger": "ct_ftp", "contents": "ct_ftp" }, -{ "trigger": "ct_gen_conn", "contents": "ct_gen_conn" }, -{ "trigger": "ct_hooks", "contents": "ct_hooks" }, -{ "trigger": "ct_hooks_lock", "contents": "ct_hooks_lock" }, -{ "trigger": "ct_logs", "contents": "ct_logs" }, -{ "trigger": "ct_make", "contents": "ct_make" }, -{ "trigger": "ct_master", "contents": "ct_master" }, -{ "trigger": "ct_master_event", "contents": "ct_master_event" }, -{ "trigger": "ct_master_logs", "contents": "ct_master_logs" }, -{ "trigger": "ct_master_status", "contents": "ct_master_status" }, -{ "trigger": "ct_repeat", "contents": "ct_repeat" }, -{ "trigger": "ct_rpc", "contents": "ct_rpc" }, -{ "trigger": "ct_run", "contents": "ct_run" }, -{ "trigger": "ct_slave", "contents": "ct_slave" }, -{ "trigger": "ct_snmp", "contents": "ct_snmp" }, -{ "trigger": "ct_ssh", "contents": "ct_ssh" }, -{ "trigger": "ct_telnet", "contents": "ct_telnet" }, -{ "trigger": "ct_telnet_client", "contents": "ct_telnet_client" }, -{ "trigger": "ct_testspec", "contents": "ct_testspec" }, -{ "trigger": "ct_util", "contents": "ct_util" }, -{ "trigger": "cth_log_redirect", "contents": "cth_log_redirect" }, -{ "trigger": "cth_surefire", "contents": "cth_surefire" }, -{ "trigger": "unix_telnet", "contents": "unix_telnet" }, -{ "trigger": "vts", "contents": "vts" }, -{ "trigger": "beam_asm", "contents": "beam_asm" }, -{ "trigger": "beam_block", "contents": "beam_block" }, -{ "trigger": "beam_bool", "contents": "beam_bool" }, -{ "trigger": "beam_bsm", "contents": "beam_bsm" }, -{ "trigger": "beam_clean", "contents": "beam_clean" }, -{ "trigger": "beam_dead", "contents": "beam_dead" }, -{ "trigger": "beam_dict", "contents": "beam_dict" }, -{ "trigger": "beam_disasm", "contents": "beam_disasm" }, -{ "trigger": "beam_except", "contents": "beam_except" }, -{ "trigger": "beam_flatten", "contents": "beam_flatten" }, -{ "trigger": "beam_jump", "contents": "beam_jump" }, -{ "trigger": "beam_listing", "contents": "beam_listing" }, -{ "trigger": "beam_opcodes", "contents": "beam_opcodes" }, -{ "trigger": "beam_peep", "contents": "beam_peep" }, -{ "trigger": "beam_receive", "contents": "beam_receive" }, -{ "trigger": "beam_split", "contents": "beam_split" }, -{ "trigger": "beam_trim", "contents": "beam_trim" }, -{ "trigger": "beam_type", "contents": "beam_type" }, -{ "trigger": "beam_utils", "contents": "beam_utils" }, -{ "trigger": "beam_validator", "contents": "beam_validator" }, -{ "trigger": "cerl", "contents": "cerl" }, -{ "trigger": "cerl_clauses", "contents": "cerl_clauses" }, -{ "trigger": "cerl_inline", "contents": "cerl_inline" }, -{ "trigger": "cerl_trees", "contents": "cerl_trees" }, -{ "trigger": "compile", "contents": "compile" }, -{ "trigger": "core_lib", "contents": "core_lib" }, -{ "trigger": "core_lint", "contents": "core_lint" }, -{ "trigger": "core_parse", "contents": "core_parse" }, -{ "trigger": "core_pp", "contents": "core_pp" }, -{ "trigger": "core_scan", "contents": "core_scan" }, -{ "trigger": "erl_bifs", "contents": "erl_bifs" }, -{ "trigger": "rec_env", "contents": "rec_env" }, -{ "trigger": "sys_core_dsetel", "contents": "sys_core_dsetel" }, -{ "trigger": "sys_core_fold", "contents": "sys_core_fold" }, -{ "trigger": "sys_core_inline", "contents": "sys_core_inline" }, -{ "trigger": "sys_expand_pmod", "contents": "sys_expand_pmod" }, -{ "trigger": "sys_pre_attributes", "contents": "sys_pre_attributes" }, -{ "trigger": "sys_pre_expand", "contents": "sys_pre_expand" }, -{ "trigger": "v3_codegen", "contents": "v3_codegen" }, -{ "trigger": "v3_core", "contents": "v3_core" }, -{ "trigger": "v3_kernel", "contents": "v3_kernel" }, -{ "trigger": "v3_kernel_pp", "contents": "v3_kernel_pp" }, -{ "trigger": "v3_life", "contents": "v3_life" }, -{ "trigger": "cosEventApp", "contents": "cosEventApp" }, -{ "trigger": "CosEventChannelAdmin_AlreadyConnected", "contents": "CosEventChannelAdmin_AlreadyConnected" }, -{ "trigger": "CosEventChannelAdmin_ConsumerAdmin", "contents": "CosEventChannelAdmin_ConsumerAdmin" }, -{ "trigger": "CosEventChannelAdmin_EventChannel", "contents": "CosEventChannelAdmin_EventChannel" }, -{ "trigger": "CosEventChannelAdmin_ProxyPullConsumer", "contents": "CosEventChannelAdmin_ProxyPullConsumer" }, -{ "trigger": "CosEventChannelAdmin_ProxyPullConsumer_impl", "contents": "CosEventChannelAdmin_ProxyPullConsumer_impl" }, -{ "trigger": "CosEventChannelAdmin_ProxyPullSupplier", "contents": "CosEventChannelAdmin_ProxyPullSupplier" }, -{ "trigger": "CosEventChannelAdmin_ProxyPushConsumer", "contents": "CosEventChannelAdmin_ProxyPushConsumer" }, -{ "trigger": "CosEventChannelAdmin_ProxyPushConsumer_impl", "contents": "CosEventChannelAdmin_ProxyPushConsumer_impl" }, -{ "trigger": "CosEventChannelAdmin_ProxyPushSupplier", "contents": "CosEventChannelAdmin_ProxyPushSupplier" }, -{ "trigger": "CosEventChannelAdmin_SupplierAdmin", "contents": "CosEventChannelAdmin_SupplierAdmin" }, -{ "trigger": "CosEventChannelAdmin_SupplierAdmin_impl", "contents": "CosEventChannelAdmin_SupplierAdmin_impl" }, -{ "trigger": "CosEventChannelAdmin_TypeError", "contents": "CosEventChannelAdmin_TypeError" }, -{ "trigger": "CosEventComm_Disconnected", "contents": "CosEventComm_Disconnected" }, -{ "trigger": "CosEventComm_PullConsumer", "contents": "CosEventComm_PullConsumer" }, -{ "trigger": "CosEventComm_PullSupplier", "contents": "CosEventComm_PullSupplier" }, -{ "trigger": "CosEventComm_PushConsumer", "contents": "CosEventComm_PushConsumer" }, -{ "trigger": "CosEventComm_PushSupplier", "contents": "CosEventComm_PushSupplier" }, -{ "trigger": "oe_cosEventApp", "contents": "oe_cosEventApp" }, -{ "trigger": "oe_CosEventChannelAdmin", "contents": "oe_CosEventChannelAdmin" }, -{ "trigger": "oe_CosEventComm", "contents": "oe_CosEventComm" }, -{ "trigger": "oe_CosEventComm_CAdmin", "contents": "oe_CosEventComm_CAdmin" }, -{ "trigger": "oe_CosEventComm_CAdmin_impl", "contents": "oe_CosEventComm_CAdmin_impl" }, -{ "trigger": "oe_CosEventComm_Channel", "contents": "oe_CosEventComm_Channel" }, -{ "trigger": "oe_CosEventComm_Channel_impl", "contents": "oe_CosEventComm_Channel_impl" }, -{ "trigger": "oe_CosEventComm_Event", "contents": "oe_CosEventComm_Event" }, -{ "trigger": "oe_CosEventComm_PullerS", "contents": "oe_CosEventComm_PullerS" }, -{ "trigger": "oe_CosEventComm_PullerS_impl", "contents": "oe_CosEventComm_PullerS_impl" }, -{ "trigger": "oe_CosEventComm_PusherS", "contents": "oe_CosEventComm_PusherS" }, -{ "trigger": "oe_CosEventComm_PusherS_impl", "contents": "oe_CosEventComm_PusherS_impl" }, -{ "trigger": "CosEventDomainAdmin", "contents": "CosEventDomainAdmin" }, -{ "trigger": "CosEventDomainAdmin_AlreadyExists", "contents": "CosEventDomainAdmin_AlreadyExists" }, -{ "trigger": "CosEventDomainAdmin_Connection", "contents": "CosEventDomainAdmin_Connection" }, -{ "trigger": "CosEventDomainAdmin_ConnectionIDSeq", "contents": "CosEventDomainAdmin_ConnectionIDSeq" }, -{ "trigger": "CosEventDomainAdmin_ConnectionNotFound", "contents": "CosEventDomainAdmin_ConnectionNotFound" }, -{ "trigger": "CosEventDomainAdmin_CycleCreationForbidden", "contents": "CosEventDomainAdmin_CycleCreationForbidden" }, -{ "trigger": "CosEventDomainAdmin_CycleSeq", "contents": "CosEventDomainAdmin_CycleSeq" }, -{ "trigger": "CosEventDomainAdmin_DiamondCreationForbidden", "contents": "CosEventDomainAdmin_DiamondCreationForbidden" }, -{ "trigger": "CosEventDomainAdmin_DiamondSeq", "contents": "CosEventDomainAdmin_DiamondSeq" }, -{ "trigger": "CosEventDomainAdmin_DomainIDSeq", "contents": "CosEventDomainAdmin_DomainIDSeq" }, -{ "trigger": "CosEventDomainAdmin_DomainNotFound", "contents": "CosEventDomainAdmin_DomainNotFound" }, -{ "trigger": "CosEventDomainAdmin_EventDomain", "contents": "CosEventDomainAdmin_EventDomain" }, -{ "trigger": "CosEventDomainAdmin_EventDomain_impl", "contents": "CosEventDomainAdmin_EventDomain_impl" }, -{ "trigger": "CosEventDomainAdmin_EventDomainFactory", "contents": "CosEventDomainAdmin_EventDomainFactory" }, -{ "trigger": "CosEventDomainAdmin_EventDomainFactory_impl", "contents": "CosEventDomainAdmin_EventDomainFactory_impl" }, -{ "trigger": "CosEventDomainAdmin_MemberIDSeq", "contents": "CosEventDomainAdmin_MemberIDSeq" }, -{ "trigger": "CosEventDomainAdmin_RouteSeq", "contents": "CosEventDomainAdmin_RouteSeq" }, -{ "trigger": "cosEventDomainApp", "contents": "cosEventDomainApp" }, -{ "trigger": "oe_CosEventDomainAdmin", "contents": "oe_CosEventDomainAdmin" }, -{ "trigger": "CosFileTransfer", "contents": "CosFileTransfer" }, -{ "trigger": "CosFileTransfer_AccessLevel", "contents": "CosFileTransfer_AccessLevel" }, -{ "trigger": "CosFileTransfer_CommandNotImplementedException", "contents": "CosFileTransfer_CommandNotImplementedException" }, -{ "trigger": "CosFileTransfer_Directory", "contents": "CosFileTransfer_Directory" }, -{ "trigger": "CosFileTransfer_Directory_impl", "contents": "CosFileTransfer_Directory_impl" }, -{ "trigger": "CosFileTransfer_File", "contents": "CosFileTransfer_File" }, -{ "trigger": "CosFileTransfer_File_impl", "contents": "CosFileTransfer_File_impl" }, -{ "trigger": "CosFileTransfer_FileIterator", "contents": "CosFileTransfer_FileIterator" }, -{ "trigger": "CosFileTransfer_FileIterator_impl", "contents": "CosFileTransfer_FileIterator_impl" }, -{ "trigger": "CosFileTransfer_FileList", "contents": "CosFileTransfer_FileList" }, -{ "trigger": "CosFileTransfer_FileNameList", "contents": "CosFileTransfer_FileNameList" }, -{ "trigger": "CosFileTransfer_FileNotFoundException", "contents": "CosFileTransfer_FileNotFoundException" }, -{ "trigger": "CosFileTransfer_FileTransferSession", "contents": "CosFileTransfer_FileTransferSession" }, -{ "trigger": "CosFileTransfer_FileTransferSession_impl", "contents": "CosFileTransfer_FileTransferSession_impl" }, -{ "trigger": "CosFileTransfer_FileWrapper", "contents": "CosFileTransfer_FileWrapper" }, -{ "trigger": "CosFileTransfer_IllegalOperationException", "contents": "CosFileTransfer_IllegalOperationException" }, -{ "trigger": "CosFileTransfer_ProtocolAddressList", "contents": "CosFileTransfer_ProtocolAddressList" }, -{ "trigger": "CosFileTransfer_ProtocolSupport", "contents": "CosFileTransfer_ProtocolSupport" }, -{ "trigger": "CosFileTransfer_RequestFailureException", "contents": "CosFileTransfer_RequestFailureException" }, -{ "trigger": "CosFileTransfer_SessionException", "contents": "CosFileTransfer_SessionException" }, -{ "trigger": "CosFileTransfer_SupportedProtocolAddresses", "contents": "CosFileTransfer_SupportedProtocolAddresses" }, -{ "trigger": "CosFileTransfer_TransferException", "contents": "CosFileTransfer_TransferException" }, -{ "trigger": "CosFileTransfer_VirtualFileSystem", "contents": "CosFileTransfer_VirtualFileSystem" }, -{ "trigger": "CosFileTransfer_VirtualFileSystem_ContentList", "contents": "CosFileTransfer_VirtualFileSystem_ContentList" }, -{ "trigger": "CosFileTransfer_VirtualFileSystem_impl", "contents": "CosFileTransfer_VirtualFileSystem_impl" }, -{ "trigger": "cosFileTransferApp", "contents": "cosFileTransferApp" }, -{ "trigger": "cosFileTransferNATIVE_file", "contents": "cosFileTransferNATIVE_file" }, -{ "trigger": "oe_CosFileTransfer", "contents": "oe_CosFileTransfer" }, -{ "trigger": "CosNotification", "contents": "CosNotification" }, -{ "trigger": "CosNotification_AdminPropertiesAdmin", "contents": "CosNotification_AdminPropertiesAdmin" }, -{ "trigger": "CosNotification_Common", "contents": "CosNotification_Common" }, -{ "trigger": "CosNotification_EventBatch", "contents": "CosNotification_EventBatch" }, -{ "trigger": "cosNotification_eventDB", "contents": "cosNotification_eventDB" }, -{ "trigger": "CosNotification_EventHeader", "contents": "CosNotification_EventHeader" }, -{ "trigger": "CosNotification_EventType", "contents": "CosNotification_EventType" }, -{ "trigger": "CosNotification_EventTypeSeq", "contents": "CosNotification_EventTypeSeq" }, -{ "trigger": "cosNotification_Filter", "contents": "cosNotification_Filter" }, -{ "trigger": "CosNotification_FixedEventHeader", "contents": "CosNotification_FixedEventHeader" }, -{ "trigger": "cosNotification_Grammar", "contents": "cosNotification_Grammar" }, -{ "trigger": "CosNotification_NamedPropertyRange", "contents": "CosNotification_NamedPropertyRange" }, -{ "trigger": "CosNotification_NamedPropertyRangeSeq", "contents": "CosNotification_NamedPropertyRangeSeq" }, -{ "trigger": "CosNotification_Property", "contents": "CosNotification_Property" }, -{ "trigger": "CosNotification_PropertyError", "contents": "CosNotification_PropertyError" }, -{ "trigger": "CosNotification_PropertyErrorSeq", "contents": "CosNotification_PropertyErrorSeq" }, -{ "trigger": "CosNotification_PropertyRange", "contents": "CosNotification_PropertyRange" }, -{ "trigger": "CosNotification_PropertySeq", "contents": "CosNotification_PropertySeq" }, -{ "trigger": "CosNotification_QoSAdmin", "contents": "CosNotification_QoSAdmin" }, -{ "trigger": "cosNotification_Scanner", "contents": "cosNotification_Scanner" }, -{ "trigger": "CosNotification_StructuredEvent", "contents": "CosNotification_StructuredEvent" }, -{ "trigger": "CosNotification_UnsupportedAdmin", "contents": "CosNotification_UnsupportedAdmin" }, -{ "trigger": "CosNotification_UnsupportedQoS", "contents": "CosNotification_UnsupportedQoS" }, -{ "trigger": "cosNotificationApp", "contents": "cosNotificationApp" }, -{ "trigger": "CosNotifyChannelAdmin_AdminIDSeq", "contents": "CosNotifyChannelAdmin_AdminIDSeq" }, -{ "trigger": "CosNotifyChannelAdmin_AdminLimit", "contents": "CosNotifyChannelAdmin_AdminLimit" }, -{ "trigger": "CosNotifyChannelAdmin_AdminLimitExceeded", "contents": "CosNotifyChannelAdmin_AdminLimitExceeded" }, -{ "trigger": "CosNotifyChannelAdmin_AdminNotFound", "contents": "CosNotifyChannelAdmin_AdminNotFound" }, -{ "trigger": "CosNotifyChannelAdmin_ChannelIDSeq", "contents": "CosNotifyChannelAdmin_ChannelIDSeq" }, -{ "trigger": "CosNotifyChannelAdmin_ChannelNotFound", "contents": "CosNotifyChannelAdmin_ChannelNotFound" }, -{ "trigger": "CosNotifyChannelAdmin_ConnectionAlreadyActive", "contents": "CosNotifyChannelAdmin_ConnectionAlreadyActive" }, -{ "trigger": "CosNotifyChannelAdmin_ConnectionAlreadyInactive", "contents": "CosNotifyChannelAdmin_ConnectionAlreadyInactive" }, -{ "trigger": "CosNotifyChannelAdmin_ConsumerAdmin", "contents": "CosNotifyChannelAdmin_ConsumerAdmin" }, -{ "trigger": "CosNotifyChannelAdmin_ConsumerAdmin_impl", "contents": "CosNotifyChannelAdmin_ConsumerAdmin_impl" }, -{ "trigger": "CosNotifyChannelAdmin_EventChannel", "contents": "CosNotifyChannelAdmin_EventChannel" }, -{ "trigger": "CosNotifyChannelAdmin_EventChannel_impl", "contents": "CosNotifyChannelAdmin_EventChannel_impl" }, -{ "trigger": "CosNotifyChannelAdmin_EventChannelFactory", "contents": "CosNotifyChannelAdmin_EventChannelFactory" }, -{ "trigger": "CosNotifyChannelAdmin_EventChannelFactory_impl", "contents": "CosNotifyChannelAdmin_EventChannelFactory_impl" }, -{ "trigger": "CosNotifyChannelAdmin_NotConnected", "contents": "CosNotifyChannelAdmin_NotConnected" }, -{ "trigger": "CosNotifyChannelAdmin_ProxyConsumer", "contents": "CosNotifyChannelAdmin_ProxyConsumer" }, -{ "trigger": "CosNotifyChannelAdmin_ProxyIDSeq", "contents": "CosNotifyChannelAdmin_ProxyIDSeq" }, -{ "trigger": "CosNotifyChannelAdmin_ProxyNotFound", "contents": "CosNotifyChannelAdmin_ProxyNotFound" }, -{ "trigger": "CosNotifyChannelAdmin_ProxyPullConsumer", "contents": "CosNotifyChannelAdmin_ProxyPullConsumer" }, -{ "trigger": "CosNotifyChannelAdmin_ProxyPullSupplier", "contents": "CosNotifyChannelAdmin_ProxyPullSupplier" }, -{ "trigger": "CosNotifyChannelAdmin_ProxyPushConsumer", "contents": "CosNotifyChannelAdmin_ProxyPushConsumer" }, -{ "trigger": "CosNotifyChannelAdmin_ProxyPushSupplier", "contents": "CosNotifyChannelAdmin_ProxyPushSupplier" }, -{ "trigger": "CosNotifyChannelAdmin_ProxySupplier", "contents": "CosNotifyChannelAdmin_ProxySupplier" }, -{ "trigger": "CosNotifyChannelAdmin_SequenceProxyPullConsumer", "contents": "CosNotifyChannelAdmin_SequenceProxyPullConsumer" }, -{ "trigger": "CosNotifyChannelAdmin_SequenceProxyPullSupplier", "contents": "CosNotifyChannelAdmin_SequenceProxyPullSupplier" }, -{ "trigger": "CosNotifyChannelAdmin_SequenceProxyPushConsumer", "contents": "CosNotifyChannelAdmin_SequenceProxyPushConsumer" }, -{ "trigger": "CosNotifyChannelAdmin_SequenceProxyPushSupplier", "contents": "CosNotifyChannelAdmin_SequenceProxyPushSupplier" }, -{ "trigger": "CosNotifyChannelAdmin_StructuredProxyPullConsumer", "contents": "CosNotifyChannelAdmin_StructuredProxyPullConsumer" }, -{ "trigger": "CosNotifyChannelAdmin_StructuredProxyPullSupplier", "contents": "CosNotifyChannelAdmin_StructuredProxyPullSupplier" }, -{ "trigger": "CosNotifyChannelAdmin_StructuredProxyPushConsumer", "contents": "CosNotifyChannelAdmin_StructuredProxyPushConsumer" }, -{ "trigger": "CosNotifyChannelAdmin_StructuredProxyPushSupplier", "contents": "CosNotifyChannelAdmin_StructuredProxyPushSupplier" }, -{ "trigger": "CosNotifyChannelAdmin_SupplierAdmin", "contents": "CosNotifyChannelAdmin_SupplierAdmin" }, -{ "trigger": "CosNotifyChannelAdmin_SupplierAdmin_impl", "contents": "CosNotifyChannelAdmin_SupplierAdmin_impl" }, -{ "trigger": "CosNotifyComm_InvalidEventType", "contents": "CosNotifyComm_InvalidEventType" }, -{ "trigger": "CosNotifyComm_NotifyPublish", "contents": "CosNotifyComm_NotifyPublish" }, -{ "trigger": "CosNotifyComm_NotifySubscribe", "contents": "CosNotifyComm_NotifySubscribe" }, -{ "trigger": "CosNotifyComm_PullConsumer", "contents": "CosNotifyComm_PullConsumer" }, -{ "trigger": "CosNotifyComm_PullSupplier", "contents": "CosNotifyComm_PullSupplier" }, -{ "trigger": "CosNotifyComm_PushConsumer", "contents": "CosNotifyComm_PushConsumer" }, -{ "trigger": "CosNotifyComm_PushSupplier", "contents": "CosNotifyComm_PushSupplier" }, -{ "trigger": "CosNotifyComm_SequencePullConsumer", "contents": "CosNotifyComm_SequencePullConsumer" }, -{ "trigger": "CosNotifyComm_SequencePullSupplier", "contents": "CosNotifyComm_SequencePullSupplier" }, -{ "trigger": "CosNotifyComm_SequencePushConsumer", "contents": "CosNotifyComm_SequencePushConsumer" }, -{ "trigger": "CosNotifyComm_SequencePushSupplier", "contents": "CosNotifyComm_SequencePushSupplier" }, -{ "trigger": "CosNotifyComm_StructuredPullConsumer", "contents": "CosNotifyComm_StructuredPullConsumer" }, -{ "trigger": "CosNotifyComm_StructuredPullSupplier", "contents": "CosNotifyComm_StructuredPullSupplier" }, -{ "trigger": "CosNotifyComm_StructuredPushConsumer", "contents": "CosNotifyComm_StructuredPushConsumer" }, -{ "trigger": "CosNotifyComm_StructuredPushSupplier", "contents": "CosNotifyComm_StructuredPushSupplier" }, -{ "trigger": "CosNotifyFilter_CallbackIDSeq", "contents": "CosNotifyFilter_CallbackIDSeq" }, -{ "trigger": "CosNotifyFilter_CallbackNotFound", "contents": "CosNotifyFilter_CallbackNotFound" }, -{ "trigger": "CosNotifyFilter_ConstraintExp", "contents": "CosNotifyFilter_ConstraintExp" }, -{ "trigger": "CosNotifyFilter_ConstraintExpSeq", "contents": "CosNotifyFilter_ConstraintExpSeq" }, -{ "trigger": "CosNotifyFilter_ConstraintIDSeq", "contents": "CosNotifyFilter_ConstraintIDSeq" }, -{ "trigger": "CosNotifyFilter_ConstraintInfo", "contents": "CosNotifyFilter_ConstraintInfo" }, -{ "trigger": "CosNotifyFilter_ConstraintInfoSeq", "contents": "CosNotifyFilter_ConstraintInfoSeq" }, -{ "trigger": "CosNotifyFilter_ConstraintNotFound", "contents": "CosNotifyFilter_ConstraintNotFound" }, -{ "trigger": "CosNotifyFilter_DuplicateConstraintID", "contents": "CosNotifyFilter_DuplicateConstraintID" }, -{ "trigger": "CosNotifyFilter_Filter", "contents": "CosNotifyFilter_Filter" }, -{ "trigger": "CosNotifyFilter_Filter_impl", "contents": "CosNotifyFilter_Filter_impl" }, -{ "trigger": "CosNotifyFilter_FilterAdmin", "contents": "CosNotifyFilter_FilterAdmin" }, -{ "trigger": "CosNotifyFilter_FilterFactory", "contents": "CosNotifyFilter_FilterFactory" }, -{ "trigger": "CosNotifyFilter_FilterFactory_impl", "contents": "CosNotifyFilter_FilterFactory_impl" }, -{ "trigger": "CosNotifyFilter_FilterIDSeq", "contents": "CosNotifyFilter_FilterIDSeq" }, -{ "trigger": "CosNotifyFilter_FilterNotFound", "contents": "CosNotifyFilter_FilterNotFound" }, -{ "trigger": "CosNotifyFilter_InvalidConstraint", "contents": "CosNotifyFilter_InvalidConstraint" }, -{ "trigger": "CosNotifyFilter_InvalidGrammar", "contents": "CosNotifyFilter_InvalidGrammar" }, -{ "trigger": "CosNotifyFilter_InvalidValue", "contents": "CosNotifyFilter_InvalidValue" }, -{ "trigger": "CosNotifyFilter_MappingConstraintInfo", "contents": "CosNotifyFilter_MappingConstraintInfo" }, -{ "trigger": "CosNotifyFilter_MappingConstraintInfoSeq", "contents": "CosNotifyFilter_MappingConstraintInfoSeq" }, -{ "trigger": "CosNotifyFilter_MappingConstraintPair", "contents": "CosNotifyFilter_MappingConstraintPair" }, -{ "trigger": "CosNotifyFilter_MappingConstraintPairSeq", "contents": "CosNotifyFilter_MappingConstraintPairSeq" }, -{ "trigger": "CosNotifyFilter_MappingFilter", "contents": "CosNotifyFilter_MappingFilter" }, -{ "trigger": "CosNotifyFilter_MappingFilter_impl", "contents": "CosNotifyFilter_MappingFilter_impl" }, -{ "trigger": "CosNotifyFilter_UnsupportedFilterableData", "contents": "CosNotifyFilter_UnsupportedFilterableData" }, -{ "trigger": "oe_CosNotification", "contents": "oe_CosNotification" }, -{ "trigger": "oe_cosNotificationAppComm", "contents": "oe_cosNotificationAppComm" }, -{ "trigger": "oe_CosNotificationComm_Event", "contents": "oe_CosNotificationComm_Event" }, -{ "trigger": "oe_CosNotifyChannelAdmin", "contents": "oe_CosNotifyChannelAdmin" }, -{ "trigger": "oe_CosNotifyComm", "contents": "oe_CosNotifyComm" }, -{ "trigger": "oe_CosNotifyFilter", "contents": "oe_CosNotifyFilter" }, -{ "trigger": "PullerConsumer_impl", "contents": "PullerConsumer_impl" }, -{ "trigger": "PullerSupplier_impl", "contents": "PullerSupplier_impl" }, -{ "trigger": "PusherConsumer_impl", "contents": "PusherConsumer_impl" }, -{ "trigger": "PusherSupplier_impl", "contents": "PusherSupplier_impl" }, -{ "trigger": "cosProperty", "contents": "cosProperty" }, -{ "trigger": "CosPropertyService_ConflictingProperty", "contents": "CosPropertyService_ConflictingProperty" }, -{ "trigger": "CosPropertyService_ConstraintNotSupported", "contents": "CosPropertyService_ConstraintNotSupported" }, -{ "trigger": "CosPropertyService_FixedProperty", "contents": "CosPropertyService_FixedProperty" }, -{ "trigger": "CosPropertyService_InvalidPropertyName", "contents": "CosPropertyService_InvalidPropertyName" }, -{ "trigger": "CosPropertyService_MultipleExceptions", "contents": "CosPropertyService_MultipleExceptions" }, -{ "trigger": "CosPropertyService_Properties", "contents": "CosPropertyService_Properties" }, -{ "trigger": "CosPropertyService_PropertiesIterator", "contents": "CosPropertyService_PropertiesIterator" }, -{ "trigger": "CosPropertyService_PropertiesIterator_impl", "contents": "CosPropertyService_PropertiesIterator_impl" }, -{ "trigger": "CosPropertyService_Property", "contents": "CosPropertyService_Property" }, -{ "trigger": "CosPropertyService_PropertyDef", "contents": "CosPropertyService_PropertyDef" }, -{ "trigger": "CosPropertyService_PropertyDefs", "contents": "CosPropertyService_PropertyDefs" }, -{ "trigger": "CosPropertyService_PropertyException", "contents": "CosPropertyService_PropertyException" }, -{ "trigger": "CosPropertyService_PropertyExceptions", "contents": "CosPropertyService_PropertyExceptions" }, -{ "trigger": "CosPropertyService_PropertyMode", "contents": "CosPropertyService_PropertyMode" }, -{ "trigger": "CosPropertyService_PropertyModes", "contents": "CosPropertyService_PropertyModes" }, -{ "trigger": "CosPropertyService_PropertyNames", "contents": "CosPropertyService_PropertyNames" }, -{ "trigger": "CosPropertyService_PropertyNamesIterator", "contents": "CosPropertyService_PropertyNamesIterator" }, -{ "trigger": "CosPropertyService_PropertyNamesIterator_impl", "contents": "CosPropertyService_PropertyNamesIterator_impl" }, -{ "trigger": "CosPropertyService_PropertyNotFound", "contents": "CosPropertyService_PropertyNotFound" }, -{ "trigger": "CosPropertyService_PropertySet", "contents": "CosPropertyService_PropertySet" }, -{ "trigger": "CosPropertyService_PropertySetDef", "contents": "CosPropertyService_PropertySetDef" }, -{ "trigger": "CosPropertyService_PropertySetDef_impl", "contents": "CosPropertyService_PropertySetDef_impl" }, -{ "trigger": "CosPropertyService_PropertySetDefFactory", "contents": "CosPropertyService_PropertySetDefFactory" }, -{ "trigger": "CosPropertyService_PropertySetDefFactory_impl", "contents": "CosPropertyService_PropertySetDefFactory_impl" }, -{ "trigger": "CosPropertyService_PropertySetFactory", "contents": "CosPropertyService_PropertySetFactory" }, -{ "trigger": "CosPropertyService_PropertySetFactory_impl", "contents": "CosPropertyService_PropertySetFactory_impl" }, -{ "trigger": "CosPropertyService_PropertyTypes", "contents": "CosPropertyService_PropertyTypes" }, -{ "trigger": "CosPropertyService_ReadOnlyProperty", "contents": "CosPropertyService_ReadOnlyProperty" }, -{ "trigger": "CosPropertyService_UnsupportedMode", "contents": "CosPropertyService_UnsupportedMode" }, -{ "trigger": "CosPropertyService_UnsupportedProperty", "contents": "CosPropertyService_UnsupportedProperty" }, -{ "trigger": "CosPropertyService_UnsupportedTypeCode", "contents": "CosPropertyService_UnsupportedTypeCode" }, -{ "trigger": "oe_CosProperty", "contents": "oe_CosProperty" }, -{ "trigger": "cosTime", "contents": "cosTime" }, -{ "trigger": "CosTime_TimeService", "contents": "CosTime_TimeService" }, -{ "trigger": "CosTime_TimeService_impl", "contents": "CosTime_TimeService_impl" }, -{ "trigger": "CosTime_TimeUnavailable", "contents": "CosTime_TimeUnavailable" }, -{ "trigger": "CosTime_TIO", "contents": "CosTime_TIO" }, -{ "trigger": "CosTime_TIO_impl", "contents": "CosTime_TIO_impl" }, -{ "trigger": "CosTime_UTO", "contents": "CosTime_UTO" }, -{ "trigger": "CosTime_UTO_impl", "contents": "CosTime_UTO_impl" }, -{ "trigger": "CosTimerEvent_TimerEventHandler", "contents": "CosTimerEvent_TimerEventHandler" }, -{ "trigger": "CosTimerEvent_TimerEventHandler_impl", "contents": "CosTimerEvent_TimerEventHandler_impl" }, -{ "trigger": "CosTimerEvent_TimerEventService", "contents": "CosTimerEvent_TimerEventService" }, -{ "trigger": "CosTimerEvent_TimerEventService_impl", "contents": "CosTimerEvent_TimerEventService_impl" }, -{ "trigger": "CosTimerEvent_TimerEventT", "contents": "CosTimerEvent_TimerEventT" }, -{ "trigger": "oe_CosTime", "contents": "oe_CosTime" }, -{ "trigger": "oe_CosTimerEvent", "contents": "oe_CosTimerEvent" }, -{ "trigger": "oe_TimeBase", "contents": "oe_TimeBase" }, -{ "trigger": "TimeBase_IntervalT", "contents": "TimeBase_IntervalT" }, -{ "trigger": "TimeBase_UtcT", "contents": "TimeBase_UtcT" }, -{ "trigger": "cosTransactions", "contents": "cosTransactions" }, -{ "trigger": "CosTransactions_Control", "contents": "CosTransactions_Control" }, -{ "trigger": "CosTransactions_Coordinator", "contents": "CosTransactions_Coordinator" }, -{ "trigger": "CosTransactions_HeuristicCommit", "contents": "CosTransactions_HeuristicCommit" }, -{ "trigger": "CosTransactions_HeuristicHazard", "contents": "CosTransactions_HeuristicHazard" }, -{ "trigger": "CosTransactions_HeuristicMixed", "contents": "CosTransactions_HeuristicMixed" }, -{ "trigger": "CosTransactions_HeuristicRollback", "contents": "CosTransactions_HeuristicRollback" }, -{ "trigger": "CosTransactions_Inactive", "contents": "CosTransactions_Inactive" }, -{ "trigger": "CosTransactions_InvalidControl", "contents": "CosTransactions_InvalidControl" }, -{ "trigger": "CosTransactions_NotPrepared", "contents": "CosTransactions_NotPrepared" }, -{ "trigger": "CosTransactions_NoTransaction", "contents": "CosTransactions_NoTransaction" }, -{ "trigger": "CosTransactions_NotSubtransaction", "contents": "CosTransactions_NotSubtransaction" }, -{ "trigger": "CosTransactions_otid_t", "contents": "CosTransactions_otid_t" }, -{ "trigger": "CosTransactions_PropagationContext", "contents": "CosTransactions_PropagationContext" }, -{ "trigger": "CosTransactions_RecoveryCoordinator", "contents": "CosTransactions_RecoveryCoordinator" }, -{ "trigger": "CosTransactions_Resource", "contents": "CosTransactions_Resource" }, -{ "trigger": "CosTransactions_SubtransactionAwareResource", "contents": "CosTransactions_SubtransactionAwareResource" }, -{ "trigger": "CosTransactions_SubtransactionsUnavailable", "contents": "CosTransactions_SubtransactionsUnavailable" }, -{ "trigger": "CosTransactions_SynchronizationUnavailable", "contents": "CosTransactions_SynchronizationUnavailable" }, -{ "trigger": "CosTransactions_Terminator", "contents": "CosTransactions_Terminator" }, -{ "trigger": "CosTransactions_Terminator_impl", "contents": "CosTransactions_Terminator_impl" }, -{ "trigger": "CosTransactions_TransactionFactory", "contents": "CosTransactions_TransactionFactory" }, -{ "trigger": "CosTransactions_TransactionFactory_impl", "contents": "CosTransactions_TransactionFactory_impl" }, -{ "trigger": "CosTransactions_TransIdentity", "contents": "CosTransactions_TransIdentity" }, -{ "trigger": "CosTransactions_Unavailable", "contents": "CosTransactions_Unavailable" }, -{ "trigger": "CosTransactions_WrongTransaction", "contents": "CosTransactions_WrongTransaction" }, -{ "trigger": "ETraP_Common", "contents": "ETraP_Common" }, -{ "trigger": "etrap_logmgr", "contents": "etrap_logmgr" }, -{ "trigger": "ETraP_Server", "contents": "ETraP_Server" }, -{ "trigger": "ETraP_Server_impl", "contents": "ETraP_Server_impl" }, -{ "trigger": "oe_CosTransactions", "contents": "oe_CosTransactions" }, -{ "trigger": "crypto", "contents": "crypto" }, -{ "trigger": "crypto_app", "contents": "crypto_app" }, -{ "trigger": "crypto_server", "contents": "crypto_server" }, -{ "trigger": "crypto_sup", "contents": "crypto_sup" }, -{ "trigger": "dbg_debugged", "contents": "dbg_debugged" }, -{ "trigger": "dbg_icmd", "contents": "dbg_icmd" }, -{ "trigger": "dbg_idb", "contents": "dbg_idb" }, -{ "trigger": "dbg_ieval", "contents": "dbg_ieval" }, -{ "trigger": "dbg_iload", "contents": "dbg_iload" }, -{ "trigger": "dbg_iserver", "contents": "dbg_iserver" }, -{ "trigger": "dbg_istk", "contents": "dbg_istk" }, -{ "trigger": "dbg_ui_break", "contents": "dbg_ui_break" }, -{ "trigger": "dbg_ui_break_win", "contents": "dbg_ui_break_win" }, -{ "trigger": "dbg_ui_edit", "contents": "dbg_ui_edit" }, -{ "trigger": "dbg_ui_edit_win", "contents": "dbg_ui_edit_win" }, -{ "trigger": "dbg_ui_filedialog_win", "contents": "dbg_ui_filedialog_win" }, -{ "trigger": "dbg_ui_interpret", "contents": "dbg_ui_interpret" }, -{ "trigger": "dbg_ui_mon", "contents": "dbg_ui_mon" }, -{ "trigger": "dbg_ui_mon_win", "contents": "dbg_ui_mon_win" }, -{ "trigger": "dbg_ui_settings", "contents": "dbg_ui_settings" }, -{ "trigger": "dbg_ui_trace", "contents": "dbg_ui_trace" }, -{ "trigger": "dbg_ui_trace_win", "contents": "dbg_ui_trace_win" }, -{ "trigger": "dbg_ui_view", "contents": "dbg_ui_view" }, -{ "trigger": "dbg_ui_win", "contents": "dbg_ui_win" }, -{ "trigger": "dbg_ui_winman", "contents": "dbg_ui_winman" }, -{ "trigger": "dbg_wx_break", "contents": "dbg_wx_break" }, -{ "trigger": "dbg_wx_break_win", "contents": "dbg_wx_break_win" }, -{ "trigger": "dbg_wx_code", "contents": "dbg_wx_code" }, -{ "trigger": "dbg_wx_filedialog_win", "contents": "dbg_wx_filedialog_win" }, -{ "trigger": "dbg_wx_interpret", "contents": "dbg_wx_interpret" }, -{ "trigger": "dbg_wx_mon", "contents": "dbg_wx_mon" }, -{ "trigger": "dbg_wx_mon_win", "contents": "dbg_wx_mon_win" }, -{ "trigger": "dbg_wx_settings", "contents": "dbg_wx_settings" }, -{ "trigger": "dbg_wx_src_view", "contents": "dbg_wx_src_view" }, -{ "trigger": "dbg_wx_trace", "contents": "dbg_wx_trace" }, -{ "trigger": "dbg_wx_trace_win", "contents": "dbg_wx_trace_win" }, -{ "trigger": "dbg_wx_view", "contents": "dbg_wx_view" }, -{ "trigger": "dbg_wx_win", "contents": "dbg_wx_win" }, -{ "trigger": "dbg_wx_winman", "contents": "dbg_wx_winman" }, -{ "trigger": "debugger", "contents": "debugger" }, -{ "trigger": "i", "contents": "i" }, -{ "trigger": "int", "contents": "int" }, -{ "trigger": "dialyzer", "contents": "dialyzer" }, -{ "trigger": "dialyzer_analysis_callgraph", "contents": "dialyzer_analysis_callgraph" }, -{ "trigger": "dialyzer_behaviours", "contents": "dialyzer_behaviours" }, -{ "trigger": "dialyzer_callgraph", "contents": "dialyzer_callgraph" }, -{ "trigger": "dialyzer_cl", "contents": "dialyzer_cl" }, -{ "trigger": "dialyzer_cl_parse", "contents": "dialyzer_cl_parse" }, -{ "trigger": "dialyzer_codeserver", "contents": "dialyzer_codeserver" }, -{ "trigger": "dialyzer_contracts", "contents": "dialyzer_contracts" }, -{ "trigger": "dialyzer_dataflow", "contents": "dialyzer_dataflow" }, -{ "trigger": "dialyzer_dep", "contents": "dialyzer_dep" }, -{ "trigger": "dialyzer_explanation", "contents": "dialyzer_explanation" }, -{ "trigger": "dialyzer_gui", "contents": "dialyzer_gui" }, -{ "trigger": "dialyzer_gui_wx", "contents": "dialyzer_gui_wx" }, -{ "trigger": "dialyzer_options", "contents": "dialyzer_options" }, -{ "trigger": "dialyzer_plt", "contents": "dialyzer_plt" }, -{ "trigger": "dialyzer_races", "contents": "dialyzer_races" }, -{ "trigger": "dialyzer_succ_typings", "contents": "dialyzer_succ_typings" }, -{ "trigger": "dialyzer_typesig", "contents": "dialyzer_typesig" }, -{ "trigger": "dialyzer_utils", "contents": "dialyzer_utils" }, -{ "trigger": "diameter", "contents": "diameter" }, -{ "trigger": "diameter_app", "contents": "diameter_app" }, -{ "trigger": "diameter_callback", "contents": "diameter_callback" }, -{ "trigger": "diameter_capx", "contents": "diameter_capx" }, -{ "trigger": "diameter_codec", "contents": "diameter_codec" }, -{ "trigger": "diameter_config", "contents": "diameter_config" }, -{ "trigger": "diameter_dbg", "contents": "diameter_dbg" }, -{ "trigger": "diameter_dict", "contents": "diameter_dict" }, -{ "trigger": "diameter_info", "contents": "diameter_info" }, -{ "trigger": "diameter_lib", "contents": "diameter_lib" }, -{ "trigger": "diameter_misc_sup", "contents": "diameter_misc_sup" }, -{ "trigger": "diameter_peer", "contents": "diameter_peer" }, -{ "trigger": "diameter_peer_fsm", "contents": "diameter_peer_fsm" }, -{ "trigger": "diameter_peer_fsm_sup", "contents": "diameter_peer_fsm_sup" }, -{ "trigger": "diameter_reg", "contents": "diameter_reg" }, -{ "trigger": "diameter_service", "contents": "diameter_service" }, -{ "trigger": "diameter_service_sup", "contents": "diameter_service_sup" }, -{ "trigger": "diameter_session", "contents": "diameter_session" }, -{ "trigger": "diameter_stats", "contents": "diameter_stats" }, -{ "trigger": "diameter_sup", "contents": "diameter_sup" }, -{ "trigger": "diameter_sync", "contents": "diameter_sync" }, -{ "trigger": "diameter_types", "contents": "diameter_types" }, -{ "trigger": "diameter_watchdog", "contents": "diameter_watchdog" }, -{ "trigger": "diameter_watchdog_sup", "contents": "diameter_watchdog_sup" }, -{ "trigger": "diameter_codegen", "contents": "diameter_codegen" }, -{ "trigger": "diameter_dict_scanner", "contents": "diameter_dict_scanner" }, -{ "trigger": "diameter_dict_util", "contents": "diameter_dict_util" }, -{ "trigger": "diameter_exprecs", "contents": "diameter_exprecs" }, -{ "trigger": "diameter_make", "contents": "diameter_make" }, -{ "trigger": "diameter_nowarn", "contents": "diameter_nowarn" }, -{ "trigger": "diameter_dict_parser", "contents": "diameter_dict_parser" }, -{ "trigger": "diameter_gen_base_accounting", "contents": "diameter_gen_base_accounting" }, -{ "trigger": "diameter_gen_base_rfc3588", "contents": "diameter_gen_base_rfc3588" }, -{ "trigger": "diameter_gen_relay", "contents": "diameter_gen_relay" }, -{ "trigger": "diameter_etcp", "contents": "diameter_etcp" }, -{ "trigger": "diameter_etcp_sup", "contents": "diameter_etcp_sup" }, -{ "trigger": "diameter_sctp", "contents": "diameter_sctp" }, -{ "trigger": "diameter_sctp_sup", "contents": "diameter_sctp_sup" }, -{ "trigger": "diameter_tcp", "contents": "diameter_tcp" }, -{ "trigger": "diameter_tcp_sup", "contents": "diameter_tcp_sup" }, -{ "trigger": "diameter_transport_sup", "contents": "diameter_transport_sup" }, -{ "trigger": "edoc", "contents": "edoc" }, -{ "trigger": "edoc_data", "contents": "edoc_data" }, -{ "trigger": "edoc_doclet", "contents": "edoc_doclet" }, -{ "trigger": "edoc_extract", "contents": "edoc_extract" }, -{ "trigger": "edoc_layout", "contents": "edoc_layout" }, -{ "trigger": "edoc_lib", "contents": "edoc_lib" }, -{ "trigger": "edoc_macros", "contents": "edoc_macros" }, -{ "trigger": "edoc_parser", "contents": "edoc_parser" }, -{ "trigger": "edoc_refs", "contents": "edoc_refs" }, -{ "trigger": "edoc_report", "contents": "edoc_report" }, -{ "trigger": "edoc_run", "contents": "edoc_run" }, -{ "trigger": "edoc_scanner", "contents": "edoc_scanner" }, -{ "trigger": "edoc_specs", "contents": "edoc_specs" }, -{ "trigger": "edoc_tags", "contents": "edoc_tags" }, -{ "trigger": "edoc_types", "contents": "edoc_types" }, -{ "trigger": "edoc_wiki", "contents": "edoc_wiki" }, -{ "trigger": "otpsgml_layout", "contents": "otpsgml_layout" }, -{ "trigger": "eldap", "contents": "eldap" }, -{ "trigger": "docgen_edoc_xml_cb", "contents": "docgen_edoc_xml_cb" }, -{ "trigger": "docgen_otp_specs", "contents": "docgen_otp_specs" }, -{ "trigger": "docgen_xmerl_xml_cb", "contents": "docgen_xmerl_xml_cb" }, -{ "trigger": "erl_prim_loader", "contents": "erl_prim_loader" }, -{ "trigger": "erlang", "contents": "erlang" }, -{ "trigger": "init", "contents": "init" }, -{ "trigger": "otp_ring0", "contents": "otp_ring0" }, -{ "trigger": "prim_file", "contents": "prim_file" }, -{ "trigger": "prim_inet", "contents": "prim_inet" }, -{ "trigger": "prim_zip", "contents": "prim_zip" }, -{ "trigger": "zlib", "contents": "zlib" }, -{ "trigger": "et", "contents": "et" }, -{ "trigger": "et_collector", "contents": "et_collector" }, -{ "trigger": "et_gs_contents_viewer", "contents": "et_gs_contents_viewer" }, -{ "trigger": "et_gs_viewer", "contents": "et_gs_viewer" }, -{ "trigger": "et_selector", "contents": "et_selector" }, -{ "trigger": "et_viewer", "contents": "et_viewer" }, -{ "trigger": "et_wx_contents_viewer", "contents": "et_wx_contents_viewer" }, -{ "trigger": "et_wx_viewer", "contents": "et_wx_viewer" }, -{ "trigger": "eunit", "contents": "eunit" }, -{ "trigger": "eunit_autoexport", "contents": "eunit_autoexport" }, -{ "trigger": "eunit_data", "contents": "eunit_data" }, -{ "trigger": "eunit_lib", "contents": "eunit_lib" }, -{ "trigger": "eunit_listener", "contents": "eunit_listener" }, -{ "trigger": "eunit_proc", "contents": "eunit_proc" }, -{ "trigger": "eunit_serial", "contents": "eunit_serial" }, -{ "trigger": "eunit_server", "contents": "eunit_server" }, -{ "trigger": "eunit_striptests", "contents": "eunit_striptests" }, -{ "trigger": "eunit_surefire", "contents": "eunit_surefire" }, -{ "trigger": "eunit_test", "contents": "eunit_test" }, -{ "trigger": "eunit_tty", "contents": "eunit_tty" }, -{ "trigger": "ball", "contents": "ball" }, -{ "trigger": "browser", "contents": "browser" }, -{ "trigger": "calc", "contents": "calc" }, -{ "trigger": "calc2", "contents": "calc2" }, -{ "trigger": "color_demo", "contents": "color_demo" }, -{ "trigger": "color_demo2", "contents": "color_demo2" }, -{ "trigger": "distrib_draw", "contents": "distrib_draw" }, -{ "trigger": "entry_demo", "contents": "entry_demo" }, -{ "trigger": "event_test", "contents": "event_test" }, -{ "trigger": "file_dialog", "contents": "file_dialog" }, -{ "trigger": "focus_demo", "contents": "focus_demo" }, -{ "trigger": "frac", "contents": "frac" }, -{ "trigger": "line_demo", "contents": "line_demo" }, -{ "trigger": "man", "contents": "man" }, -{ "trigger": "rubber", "contents": "rubber" }, -{ "trigger": "gs", "contents": "gs" }, -{ "trigger": "gs_frontend", "contents": "gs_frontend" }, -{ "trigger": "gs_make", "contents": "gs_make" }, -{ "trigger": "gs_packer", "contents": "gs_packer" }, -{ "trigger": "gs_widgets", "contents": "gs_widgets" }, -{ "trigger": "gse", "contents": "gse" }, -{ "trigger": "gstk", "contents": "gstk" }, -{ "trigger": "gstk_arc", "contents": "gstk_arc" }, -{ "trigger": "gstk_button", "contents": "gstk_button" }, -{ "trigger": "gstk_canvas", "contents": "gstk_canvas" }, -{ "trigger": "gstk_checkbutton", "contents": "gstk_checkbutton" }, -{ "trigger": "gstk_db", "contents": "gstk_db" }, -{ "trigger": "gstk_editor", "contents": "gstk_editor" }, -{ "trigger": "gstk_entry", "contents": "gstk_entry" }, -{ "trigger": "gstk_font", "contents": "gstk_font" }, -{ "trigger": "gstk_frame", "contents": "gstk_frame" }, -{ "trigger": "gstk_generic", "contents": "gstk_generic" }, -{ "trigger": "gstk_grid", "contents": "gstk_grid" }, -{ "trigger": "gstk_gridline", "contents": "gstk_gridline" }, -{ "trigger": "gstk_gs", "contents": "gstk_gs" }, -{ "trigger": "gstk_image", "contents": "gstk_image" }, -{ "trigger": "gstk_label", "contents": "gstk_label" }, -{ "trigger": "gstk_line", "contents": "gstk_line" }, -{ "trigger": "gstk_listbox", "contents": "gstk_listbox" }, -{ "trigger": "gstk_menu", "contents": "gstk_menu" }, -{ "trigger": "gstk_menubar", "contents": "gstk_menubar" }, -{ "trigger": "gstk_menubutton", "contents": "gstk_menubutton" }, -{ "trigger": "gstk_menuitem", "contents": "gstk_menuitem" }, -{ "trigger": "gstk_oval", "contents": "gstk_oval" }, -{ "trigger": "gstk_polygon", "contents": "gstk_polygon" }, -{ "trigger": "gstk_port_handler", "contents": "gstk_port_handler" }, -{ "trigger": "gstk_radiobutton", "contents": "gstk_radiobutton" }, -{ "trigger": "gstk_rectangle", "contents": "gstk_rectangle" }, -{ "trigger": "gstk_scale", "contents": "gstk_scale" }, -{ "trigger": "gstk_text", "contents": "gstk_text" }, -{ "trigger": "gstk_widgets", "contents": "gstk_widgets" }, -{ "trigger": "gstk_window", "contents": "gstk_window" }, -{ "trigger": "tcl2erl", "contents": "tcl2erl" }, -{ "trigger": "tool_file_dialog", "contents": "tool_file_dialog" }, -{ "trigger": "tool_utils", "contents": "tool_utils" }, -{ "trigger": "ic", "contents": "ic" }, -{ "trigger": "ic_array_java", "contents": "ic_array_java" }, -{ "trigger": "ic_attribute_java", "contents": "ic_attribute_java" }, -{ "trigger": "ic_cbe", "contents": "ic_cbe" }, -{ "trigger": "ic_cclient", "contents": "ic_cclient" }, -{ "trigger": "ic_code", "contents": "ic_code" }, -{ "trigger": "ic_codegen", "contents": "ic_codegen" }, -{ "trigger": "ic_constant_java", "contents": "ic_constant_java" }, -{ "trigger": "ic_cserver", "contents": "ic_cserver" }, -{ "trigger": "ic_enum_java", "contents": "ic_enum_java" }, -{ "trigger": "ic_erl_template", "contents": "ic_erl_template" }, -{ "trigger": "ic_erlbe", "contents": "ic_erlbe" }, -{ "trigger": "ic_error", "contents": "ic_error" }, -{ "trigger": "ic_fetch", "contents": "ic_fetch" }, -{ "trigger": "ic_file", "contents": "ic_file" }, -{ "trigger": "ic_forms", "contents": "ic_forms" }, -{ "trigger": "ic_genobj", "contents": "ic_genobj" }, -{ "trigger": "ic_java_type", "contents": "ic_java_type" }, -{ "trigger": "ic_jbe", "contents": "ic_jbe" }, -{ "trigger": "ic_noc", "contents": "ic_noc" }, -{ "trigger": "ic_options", "contents": "ic_options" }, -{ "trigger": "ic_plainbe", "contents": "ic_plainbe" }, -{ "trigger": "ic_pp", "contents": "ic_pp" }, -{ "trigger": "ic_pragma", "contents": "ic_pragma" }, -{ "trigger": "ic_sequence_java", "contents": "ic_sequence_java" }, -{ "trigger": "ic_struct_java", "contents": "ic_struct_java" }, -{ "trigger": "ic_symtab", "contents": "ic_symtab" }, -{ "trigger": "ic_union_java", "contents": "ic_union_java" }, -{ "trigger": "ic_util", "contents": "ic_util" }, -{ "trigger": "icenum", "contents": "icenum" }, -{ "trigger": "iceval", "contents": "iceval" }, -{ "trigger": "icparse", "contents": "icparse" }, -{ "trigger": "icpreproc", "contents": "icpreproc" }, -{ "trigger": "icscan", "contents": "icscan" }, -{ "trigger": "icstruct", "contents": "icstruct" }, -{ "trigger": "ictk", "contents": "ictk" }, -{ "trigger": "ictype", "contents": "ictype" }, -{ "trigger": "icunion", "contents": "icunion" }, -{ "trigger": "ftp", "contents": "ftp" }, -{ "trigger": "ftp_progress", "contents": "ftp_progress" }, -{ "trigger": "ftp_response", "contents": "ftp_response" }, -{ "trigger": "ftp_sup", "contents": "ftp_sup" }, -{ "trigger": "httpc", "contents": "httpc" }, -{ "trigger": "httpc_cookie", "contents": "httpc_cookie" }, -{ "trigger": "httpc_handler", "contents": "httpc_handler" }, -{ "trigger": "httpc_handler_sup", "contents": "httpc_handler_sup" }, -{ "trigger": "httpc_manager", "contents": "httpc_manager" }, -{ "trigger": "httpc_profile_sup", "contents": "httpc_profile_sup" }, -{ "trigger": "httpc_request", "contents": "httpc_request" }, -{ "trigger": "httpc_response", "contents": "httpc_response" }, -{ "trigger": "httpc_sup", "contents": "httpc_sup" }, -{ "trigger": "http_chunk", "contents": "http_chunk" }, -{ "trigger": "http_request", "contents": "http_request" }, -{ "trigger": "http_response", "contents": "http_response" }, -{ "trigger": "http_transport", "contents": "http_transport" }, -{ "trigger": "http_uri", "contents": "http_uri" }, -{ "trigger": "http_util", "contents": "http_util" }, -{ "trigger": "httpd", "contents": "httpd" }, -{ "trigger": "httpd_acceptor", "contents": "httpd_acceptor" }, -{ "trigger": "httpd_acceptor_sup", "contents": "httpd_acceptor_sup" }, -{ "trigger": "httpd_cgi", "contents": "httpd_cgi" }, -{ "trigger": "httpd_conf", "contents": "httpd_conf" }, -{ "trigger": "httpd_esi", "contents": "httpd_esi" }, -{ "trigger": "httpd_example", "contents": "httpd_example" }, -{ "trigger": "httpd_file", "contents": "httpd_file" }, -{ "trigger": "httpd_instance_sup", "contents": "httpd_instance_sup" }, -{ "trigger": "httpd_log", "contents": "httpd_log" }, -{ "trigger": "httpd_manager", "contents": "httpd_manager" }, -{ "trigger": "httpd_misc_sup", "contents": "httpd_misc_sup" }, -{ "trigger": "httpd_request", "contents": "httpd_request" }, -{ "trigger": "httpd_request_handler", "contents": "httpd_request_handler" }, -{ "trigger": "httpd_response", "contents": "httpd_response" }, -{ "trigger": "httpd_script_env", "contents": "httpd_script_env" }, -{ "trigger": "httpd_socket", "contents": "httpd_socket" }, -{ "trigger": "httpd_sup", "contents": "httpd_sup" }, -{ "trigger": "httpd_util", "contents": "httpd_util" }, -{ "trigger": "mod_actions", "contents": "mod_actions" }, -{ "trigger": "mod_alias", "contents": "mod_alias" }, -{ "trigger": "mod_auth", "contents": "mod_auth" }, -{ "trigger": "mod_auth_dets", "contents": "mod_auth_dets" }, -{ "trigger": "mod_auth_mnesia", "contents": "mod_auth_mnesia" }, -{ "trigger": "mod_auth_plain", "contents": "mod_auth_plain" }, -{ "trigger": "mod_auth_server", "contents": "mod_auth_server" }, -{ "trigger": "mod_browser", "contents": "mod_browser" }, -{ "trigger": "mod_cgi", "contents": "mod_cgi" }, -{ "trigger": "mod_dir", "contents": "mod_dir" }, -{ "trigger": "mod_disk_log", "contents": "mod_disk_log" }, -{ "trigger": "mod_esi", "contents": "mod_esi" }, -{ "trigger": "mod_get", "contents": "mod_get" }, -{ "trigger": "mod_head", "contents": "mod_head" }, -{ "trigger": "mod_htaccess", "contents": "mod_htaccess" }, -{ "trigger": "mod_include", "contents": "mod_include" }, -{ "trigger": "mod_log", "contents": "mod_log" }, -{ "trigger": "mod_range", "contents": "mod_range" }, -{ "trigger": "mod_responsecontrol", "contents": "mod_responsecontrol" }, -{ "trigger": "mod_security", "contents": "mod_security" }, -{ "trigger": "mod_security_server", "contents": "mod_security_server" }, -{ "trigger": "mod_trace", "contents": "mod_trace" }, -{ "trigger": "inets", "contents": "inets" }, -{ "trigger": "inets_app", "contents": "inets_app" }, -{ "trigger": "inets_regexp", "contents": "inets_regexp" }, -{ "trigger": "inets_service", "contents": "inets_service" }, -{ "trigger": "inets_sup", "contents": "inets_sup" }, -{ "trigger": "inets_trace", "contents": "inets_trace" }, -{ "trigger": "tftp", "contents": "tftp" }, -{ "trigger": "tftp_binary", "contents": "tftp_binary" }, -{ "trigger": "tftp_engine", "contents": "tftp_engine" }, -{ "trigger": "tftp_file", "contents": "tftp_file" }, -{ "trigger": "tftp_lib", "contents": "tftp_lib" }, -{ "trigger": "tftp_logger", "contents": "tftp_logger" }, -{ "trigger": "tftp_sup", "contents": "tftp_sup" }, -{ "trigger": "inviso", "contents": "inviso" }, -{ "trigger": "inviso_c", "contents": "inviso_c" }, -{ "trigger": "inviso_lfm", "contents": "inviso_lfm" }, -{ "trigger": "inviso_lfm_tpfreader", "contents": "inviso_lfm_tpfreader" }, -{ "trigger": "inviso_tool", "contents": "inviso_tool" }, -{ "trigger": "inviso_tool_lib", "contents": "inviso_tool_lib" }, -{ "trigger": "uds", "contents": "uds" }, -{ "trigger": "uds_dist", "contents": "uds_dist" }, -{ "trigger": "uds_server", "contents": "uds_server" }, -{ "trigger": "application", "contents": "application" }, -{ "trigger": "application_controller", "contents": "application_controller" }, -{ "trigger": "application_master", "contents": "application_master" }, -{ "trigger": "application_starter", "contents": "application_starter" }, -{ "trigger": "auth", "contents": "auth" }, -{ "trigger": "code", "contents": "code" }, -{ "trigger": "code_server", "contents": "code_server" }, -{ "trigger": "disk_log", "contents": "disk_log" }, -{ "trigger": "disk_log_1", "contents": "disk_log_1" }, -{ "trigger": "disk_log_server", "contents": "disk_log_server" }, -{ "trigger": "disk_log_sup", "contents": "disk_log_sup" }, -{ "trigger": "dist_ac", "contents": "dist_ac" }, -{ "trigger": "dist_util", "contents": "dist_util" }, -{ "trigger": "erl_boot_server", "contents": "erl_boot_server" }, -{ "trigger": "erl_ddll", "contents": "erl_ddll" }, -{ "trigger": "erl_distribution", "contents": "erl_distribution" }, -{ "trigger": "erl_epmd", "contents": "erl_epmd" }, -{ "trigger": "erl_reply", "contents": "erl_reply" }, -{ "trigger": "error_handler", "contents": "error_handler" }, -{ "trigger": "error_logger", "contents": "error_logger" }, -{ "trigger": "erts_debug", "contents": "erts_debug" }, -{ "trigger": "file", "contents": "file" }, -{ "trigger": "file_io_server", "contents": "file_io_server" }, -{ "trigger": "file_server", "contents": "file_server" }, -{ "trigger": "gen_sctp", "contents": "gen_sctp" }, -{ "trigger": "gen_tcp", "contents": "gen_tcp" }, -{ "trigger": "gen_udp", "contents": "gen_udp" }, -{ "trigger": "global", "contents": "global" }, -{ "trigger": "global_group", "contents": "global_group" }, -{ "trigger": "global_search", "contents": "global_search" }, -{ "trigger": "group", "contents": "group" }, -{ "trigger": "heart", "contents": "heart" }, -{ "trigger": "hipe_unified_loader", "contents": "hipe_unified_loader" }, -{ "trigger": "inet", "contents": "inet" }, -{ "trigger": "inet6_sctp", "contents": "inet6_sctp" }, -{ "trigger": "inet6_tcp", "contents": "inet6_tcp" }, -{ "trigger": "inet6_tcp_dist", "contents": "inet6_tcp_dist" }, -{ "trigger": "inet6_udp", "contents": "inet6_udp" }, -{ "trigger": "inet_config", "contents": "inet_config" }, -{ "trigger": "inet_db", "contents": "inet_db" }, -{ "trigger": "inet_dns", "contents": "inet_dns" }, -{ "trigger": "inet_gethost_native", "contents": "inet_gethost_native" }, -{ "trigger": "inet_hosts", "contents": "inet_hosts" }, -{ "trigger": "inet_parse", "contents": "inet_parse" }, -{ "trigger": "inet_res", "contents": "inet_res" }, -{ "trigger": "inet_sctp", "contents": "inet_sctp" }, -{ "trigger": "inet_tcp", "contents": "inet_tcp" }, -{ "trigger": "inet_tcp_dist", "contents": "inet_tcp_dist" }, -{ "trigger": "inet_udp", "contents": "inet_udp" }, -{ "trigger": "kernel", "contents": "kernel" }, -{ "trigger": "kernel_config", "contents": "kernel_config" }, -{ "trigger": "net", "contents": "net" }, -{ "trigger": "net_adm", "contents": "net_adm" }, -{ "trigger": "net_kernel", "contents": "net_kernel" }, -{ "trigger": "os", "contents": "os" }, -{ "trigger": "packages", "contents": "packages" }, -{ "trigger": "pg2", "contents": "pg2" }, -{ "trigger": "ram_file", "contents": "ram_file" }, -{ "trigger": "rpc", "contents": "rpc" }, -{ "trigger": "seq_trace", "contents": "seq_trace" }, -{ "trigger": "standard_error", "contents": "standard_error" }, -{ "trigger": "user", "contents": "user" }, -{ "trigger": "user_drv", "contents": "user_drv" }, -{ "trigger": "user_sup", "contents": "user_sup" }, -{ "trigger": "wrap_log_reader", "contents": "wrap_log_reader" }, -{ "trigger": "megaco", "contents": "megaco" }, -{ "trigger": "megaco_ber_bin_drv_media_gateway_control_prev3a", "contents": "megaco_ber_bin_drv_media_gateway_control_prev3a" }, -{ "trigger": "megaco_ber_bin_drv_media_gateway_control_prev3b", "contents": "megaco_ber_bin_drv_media_gateway_control_prev3b" }, -{ "trigger": "megaco_ber_bin_drv_media_gateway_control_prev3c", "contents": "megaco_ber_bin_drv_media_gateway_control_prev3c" }, -{ "trigger": "megaco_ber_bin_drv_media_gateway_control_v1", "contents": "megaco_ber_bin_drv_media_gateway_control_v1" }, -{ "trigger": "megaco_ber_bin_drv_media_gateway_control_v2", "contents": "megaco_ber_bin_drv_media_gateway_control_v2" }, -{ "trigger": "megaco_ber_bin_drv_media_gateway_control_v3", "contents": "megaco_ber_bin_drv_media_gateway_control_v3" }, -{ "trigger": "megaco_ber_bin_encoder", "contents": "megaco_ber_bin_encoder" }, -{ "trigger": "megaco_ber_bin_media_gateway_control_prev3a", "contents": "megaco_ber_bin_media_gateway_control_prev3a" }, -{ "trigger": "megaco_ber_bin_media_gateway_control_prev3b", "contents": "megaco_ber_bin_media_gateway_control_prev3b" }, -{ "trigger": "megaco_ber_bin_media_gateway_control_prev3c", "contents": "megaco_ber_bin_media_gateway_control_prev3c" }, -{ "trigger": "megaco_ber_bin_media_gateway_control_v1", "contents": "megaco_ber_bin_media_gateway_control_v1" }, -{ "trigger": "megaco_ber_bin_media_gateway_control_v2", "contents": "megaco_ber_bin_media_gateway_control_v2" }, -{ "trigger": "megaco_ber_bin_media_gateway_control_v3", "contents": "megaco_ber_bin_media_gateway_control_v3" }, -{ "trigger": "megaco_ber_encoder", "contents": "megaco_ber_encoder" }, -{ "trigger": "megaco_ber_media_gateway_control_prev3a", "contents": "megaco_ber_media_gateway_control_prev3a" }, -{ "trigger": "megaco_ber_media_gateway_control_prev3b", "contents": "megaco_ber_media_gateway_control_prev3b" }, -{ "trigger": "megaco_ber_media_gateway_control_prev3c", "contents": "megaco_ber_media_gateway_control_prev3c" }, -{ "trigger": "megaco_ber_media_gateway_control_v1", "contents": "megaco_ber_media_gateway_control_v1" }, -{ "trigger": "megaco_ber_media_gateway_control_v2", "contents": "megaco_ber_media_gateway_control_v2" }, -{ "trigger": "megaco_ber_media_gateway_control_v3", "contents": "megaco_ber_media_gateway_control_v3" }, -{ "trigger": "megaco_binary_encoder", "contents": "megaco_binary_encoder" }, -{ "trigger": "megaco_binary_encoder_lib", "contents": "megaco_binary_encoder_lib" }, -{ "trigger": "megaco_binary_name_resolver_prev3a", "contents": "megaco_binary_name_resolver_prev3a" }, -{ "trigger": "megaco_binary_name_resolver_prev3b", "contents": "megaco_binary_name_resolver_prev3b" }, -{ "trigger": "megaco_binary_name_resolver_prev3c", "contents": "megaco_binary_name_resolver_prev3c" }, -{ "trigger": "megaco_binary_name_resolver_v1", "contents": "megaco_binary_name_resolver_v1" }, -{ "trigger": "megaco_binary_name_resolver_v2", "contents": "megaco_binary_name_resolver_v2" }, -{ "trigger": "megaco_binary_name_resolver_v3", "contents": "megaco_binary_name_resolver_v3" }, -{ "trigger": "megaco_binary_term_id", "contents": "megaco_binary_term_id" }, -{ "trigger": "megaco_binary_term_id_gen", "contents": "megaco_binary_term_id_gen" }, -{ "trigger": "megaco_binary_transformer_prev3a", "contents": "megaco_binary_transformer_prev3a" }, -{ "trigger": "megaco_binary_transformer_prev3b", "contents": "megaco_binary_transformer_prev3b" }, -{ "trigger": "megaco_binary_transformer_prev3c", "contents": "megaco_binary_transformer_prev3c" }, -{ "trigger": "megaco_binary_transformer_v1", "contents": "megaco_binary_transformer_v1" }, -{ "trigger": "megaco_binary_transformer_v2", "contents": "megaco_binary_transformer_v2" }, -{ "trigger": "megaco_binary_transformer_v3", "contents": "megaco_binary_transformer_v3" }, -{ "trigger": "megaco_per_bin_drv_media_gateway_control_prev3a", "contents": "megaco_per_bin_drv_media_gateway_control_prev3a" }, -{ "trigger": "megaco_per_bin_drv_media_gateway_control_prev3b", "contents": "megaco_per_bin_drv_media_gateway_control_prev3b" }, -{ "trigger": "megaco_per_bin_drv_media_gateway_control_prev3c", "contents": "megaco_per_bin_drv_media_gateway_control_prev3c" }, -{ "trigger": "megaco_per_bin_drv_media_gateway_control_v1", "contents": "megaco_per_bin_drv_media_gateway_control_v1" }, -{ "trigger": "megaco_per_bin_drv_media_gateway_control_v2", "contents": "megaco_per_bin_drv_media_gateway_control_v2" }, -{ "trigger": "megaco_per_bin_drv_media_gateway_control_v3", "contents": "megaco_per_bin_drv_media_gateway_control_v3" }, -{ "trigger": "megaco_per_bin_encoder", "contents": "megaco_per_bin_encoder" }, -{ "trigger": "megaco_per_bin_media_gateway_control_prev3a", "contents": "megaco_per_bin_media_gateway_control_prev3a" }, -{ "trigger": "megaco_per_bin_media_gateway_control_prev3b", "contents": "megaco_per_bin_media_gateway_control_prev3b" }, -{ "trigger": "megaco_per_bin_media_gateway_control_prev3c", "contents": "megaco_per_bin_media_gateway_control_prev3c" }, -{ "trigger": "megaco_per_bin_media_gateway_control_v1", "contents": "megaco_per_bin_media_gateway_control_v1" }, -{ "trigger": "megaco_per_bin_media_gateway_control_v2", "contents": "megaco_per_bin_media_gateway_control_v2" }, -{ "trigger": "megaco_per_bin_media_gateway_control_v3", "contents": "megaco_per_bin_media_gateway_control_v3" }, -{ "trigger": "megaco_per_encoder", "contents": "megaco_per_encoder" }, -{ "trigger": "megaco_per_media_gateway_control_prev3a", "contents": "megaco_per_media_gateway_control_prev3a" }, -{ "trigger": "megaco_per_media_gateway_control_prev3b", "contents": "megaco_per_media_gateway_control_prev3b" }, -{ "trigger": "megaco_per_media_gateway_control_prev3c", "contents": "megaco_per_media_gateway_control_prev3c" }, -{ "trigger": "megaco_per_media_gateway_control_v1", "contents": "megaco_per_media_gateway_control_v1" }, -{ "trigger": "megaco_per_media_gateway_control_v2", "contents": "megaco_per_media_gateway_control_v2" }, -{ "trigger": "megaco_per_media_gateway_control_v3", "contents": "megaco_per_media_gateway_control_v3" }, -{ "trigger": "megaco_config", "contents": "megaco_config" }, -{ "trigger": "megaco_config_misc", "contents": "megaco_config_misc" }, -{ "trigger": "megaco_digit_map", "contents": "megaco_digit_map" }, -{ "trigger": "megaco_edist_compress", "contents": "megaco_edist_compress" }, -{ "trigger": "megaco_encoder", "contents": "megaco_encoder" }, -{ "trigger": "megaco_erl_dist_encoder", "contents": "megaco_erl_dist_encoder" }, -{ "trigger": "megaco_erl_dist_encoder_mc", "contents": "megaco_erl_dist_encoder_mc" }, -{ "trigger": "megaco_filter", "contents": "megaco_filter" }, -{ "trigger": "megaco_messenger", "contents": "megaco_messenger" }, -{ "trigger": "megaco_messenger_misc", "contents": "megaco_messenger_misc" }, -{ "trigger": "megaco_misc_sup", "contents": "megaco_misc_sup" }, -{ "trigger": "megaco_monitor", "contents": "megaco_monitor" }, -{ "trigger": "megaco_sdp", "contents": "megaco_sdp" }, -{ "trigger": "megaco_stats", "contents": "megaco_stats" }, -{ "trigger": "megaco_sup", "contents": "megaco_sup" }, -{ "trigger": "megaco_timer", "contents": "megaco_timer" }, -{ "trigger": "megaco_trans_sender", "contents": "megaco_trans_sender" }, -{ "trigger": "megaco_trans_sup", "contents": "megaco_trans_sup" }, -{ "trigger": "megaco_transport", "contents": "megaco_transport" }, -{ "trigger": "megaco_user_default", "contents": "megaco_user_default" }, -{ "trigger": "megaco_flex_scanner", "contents": "megaco_flex_scanner" }, -{ "trigger": "megaco_flex_scanner_handler", "contents": "megaco_flex_scanner_handler" }, -{ "trigger": "megaco_tcp", "contents": "megaco_tcp" }, -{ "trigger": "megaco_tcp_accept", "contents": "megaco_tcp_accept" }, -{ "trigger": "megaco_tcp_accept_sup", "contents": "megaco_tcp_accept_sup" }, -{ "trigger": "megaco_tcp_connection", "contents": "megaco_tcp_connection" }, -{ "trigger": "megaco_tcp_connection_sup", "contents": "megaco_tcp_connection_sup" }, -{ "trigger": "megaco_tcp_sup", "contents": "megaco_tcp_sup" }, -{ "trigger": "megaco_compact_text_encoder", "contents": "megaco_compact_text_encoder" }, -{ "trigger": "megaco_compact_text_encoder_prev3a", "contents": "megaco_compact_text_encoder_prev3a" }, -{ "trigger": "megaco_compact_text_encoder_prev3b", "contents": "megaco_compact_text_encoder_prev3b" }, -{ "trigger": "megaco_compact_text_encoder_prev3c", "contents": "megaco_compact_text_encoder_prev3c" }, -{ "trigger": "megaco_compact_text_encoder_v1", "contents": "megaco_compact_text_encoder_v1" }, -{ "trigger": "megaco_compact_text_encoder_v2", "contents": "megaco_compact_text_encoder_v2" }, -{ "trigger": "megaco_compact_text_encoder_v3", "contents": "megaco_compact_text_encoder_v3" }, -{ "trigger": "megaco_pretty_text_encoder", "contents": "megaco_pretty_text_encoder" }, -{ "trigger": "megaco_pretty_text_encoder_prev3a", "contents": "megaco_pretty_text_encoder_prev3a" }, -{ "trigger": "megaco_pretty_text_encoder_prev3b", "contents": "megaco_pretty_text_encoder_prev3b" }, -{ "trigger": "megaco_pretty_text_encoder_prev3c", "contents": "megaco_pretty_text_encoder_prev3c" }, -{ "trigger": "megaco_pretty_text_encoder_v1", "contents": "megaco_pretty_text_encoder_v1" }, -{ "trigger": "megaco_pretty_text_encoder_v2", "contents": "megaco_pretty_text_encoder_v2" }, -{ "trigger": "megaco_pretty_text_encoder_v3", "contents": "megaco_pretty_text_encoder_v3" }, -{ "trigger": "megaco_text_mini_decoder", "contents": "megaco_text_mini_decoder" }, -{ "trigger": "megaco_text_mini_parser", "contents": "megaco_text_mini_parser" }, -{ "trigger": "megaco_text_parser_prev3a", "contents": "megaco_text_parser_prev3a" }, -{ "trigger": "megaco_text_parser_prev3b", "contents": "megaco_text_parser_prev3b" }, -{ "trigger": "megaco_text_parser_prev3c", "contents": "megaco_text_parser_prev3c" }, -{ "trigger": "megaco_text_parser_v1", "contents": "megaco_text_parser_v1" }, -{ "trigger": "megaco_text_parser_v2", "contents": "megaco_text_parser_v2" }, -{ "trigger": "megaco_text_parser_v3", "contents": "megaco_text_parser_v3" }, -{ "trigger": "megaco_text_scanner", "contents": "megaco_text_scanner" }, -{ "trigger": "megaco_udp", "contents": "megaco_udp" }, -{ "trigger": "megaco_udp_server", "contents": "megaco_udp_server" }, -{ "trigger": "megaco_udp_sup", "contents": "megaco_udp_sup" }, -{ "trigger": "mnesia", "contents": "mnesia" }, -{ "trigger": "mnesia_backup", "contents": "mnesia_backup" }, -{ "trigger": "mnesia_bup", "contents": "mnesia_bup" }, -{ "trigger": "mnesia_checkpoint", "contents": "mnesia_checkpoint" }, -{ "trigger": "mnesia_checkpoint_sup", "contents": "mnesia_checkpoint_sup" }, -{ "trigger": "mnesia_controller", "contents": "mnesia_controller" }, -{ "trigger": "mnesia_dumper", "contents": "mnesia_dumper" }, -{ "trigger": "mnesia_event", "contents": "mnesia_event" }, -{ "trigger": "mnesia_frag", "contents": "mnesia_frag" }, -{ "trigger": "mnesia_frag_hash", "contents": "mnesia_frag_hash" }, -{ "trigger": "mnesia_frag_old_hash", "contents": "mnesia_frag_old_hash" }, -{ "trigger": "mnesia_index", "contents": "mnesia_index" }, -{ "trigger": "mnesia_kernel_sup", "contents": "mnesia_kernel_sup" }, -{ "trigger": "mnesia_late_loader", "contents": "mnesia_late_loader" }, -{ "trigger": "mnesia_lib", "contents": "mnesia_lib" }, -{ "trigger": "mnesia_loader", "contents": "mnesia_loader" }, -{ "trigger": "mnesia_locker", "contents": "mnesia_locker" }, -{ "trigger": "mnesia_log", "contents": "mnesia_log" }, -{ "trigger": "mnesia_monitor", "contents": "mnesia_monitor" }, -{ "trigger": "mnesia_recover", "contents": "mnesia_recover" }, -{ "trigger": "mnesia_registry", "contents": "mnesia_registry" }, -{ "trigger": "mnesia_schema", "contents": "mnesia_schema" }, -{ "trigger": "mnesia_snmp_hook", "contents": "mnesia_snmp_hook" }, -{ "trigger": "mnesia_snmp_sup", "contents": "mnesia_snmp_sup" }, -{ "trigger": "mnesia_sp", "contents": "mnesia_sp" }, -{ "trigger": "mnesia_subscr", "contents": "mnesia_subscr" }, -{ "trigger": "mnesia_sup", "contents": "mnesia_sup" }, -{ "trigger": "mnesia_text", "contents": "mnesia_text" }, -{ "trigger": "mnesia_tm", "contents": "mnesia_tm" }, -{ "trigger": "crashdump_viewer", "contents": "crashdump_viewer" }, -{ "trigger": "crashdump_viewer_html", "contents": "crashdump_viewer_html" }, -{ "trigger": "etop", "contents": "etop" }, -{ "trigger": "etop_gui", "contents": "etop_gui" }, -{ "trigger": "etop_tr", "contents": "etop_tr" }, -{ "trigger": "etop_txt", "contents": "etop_txt" }, -{ "trigger": "observer", "contents": "observer" }, -{ "trigger": "observer_app_wx", "contents": "observer_app_wx" }, -{ "trigger": "observer_lib", "contents": "observer_lib" }, -{ "trigger": "observer_perf_wx", "contents": "observer_perf_wx" }, -{ "trigger": "observer_pro_wx", "contents": "observer_pro_wx" }, -{ "trigger": "observer_procinfo", "contents": "observer_procinfo" }, -{ "trigger": "observer_sys_wx", "contents": "observer_sys_wx" }, -{ "trigger": "observer_trace_wx", "contents": "observer_trace_wx" }, -{ "trigger": "observer_traceoptions_wx", "contents": "observer_traceoptions_wx" }, -{ "trigger": "observer_tv_table", "contents": "observer_tv_table" }, -{ "trigger": "observer_tv_wx", "contents": "observer_tv_wx" }, -{ "trigger": "observer_wx", "contents": "observer_wx" }, -{ "trigger": "ttb", "contents": "ttb" }, -{ "trigger": "ttb_et", "contents": "ttb_et" }, -{ "trigger": "odbc", "contents": "odbc" }, -{ "trigger": "odbc_app", "contents": "odbc_app" }, -{ "trigger": "odbc_sup", "contents": "odbc_sup" }, -{ "trigger": "any", "contents": "any" }, -{ "trigger": "cdr_decode", "contents": "cdr_decode" }, -{ "trigger": "cdr_encode", "contents": "cdr_encode" }, -{ "trigger": "cdrlib", "contents": "cdrlib" }, -{ "trigger": "corba", "contents": "corba" }, -{ "trigger": "corba_boa", "contents": "corba_boa" }, -{ "trigger": "corba_object", "contents": "corba_object" }, -{ "trigger": "fixed", "contents": "fixed" }, -{ "trigger": "iop_ior", "contents": "iop_ior" }, -{ "trigger": "orber", "contents": "orber" }, -{ "trigger": "orber_acl", "contents": "orber_acl" }, -{ "trigger": "orber_diagnostics", "contents": "orber_diagnostics" }, -{ "trigger": "orber_env", "contents": "orber_env" }, -{ "trigger": "orber_exceptions", "contents": "orber_exceptions" }, -{ "trigger": "orber_ifr", "contents": "orber_ifr" }, -{ "trigger": "orber_ifr_aliasdef", "contents": "orber_ifr_aliasdef" }, -{ "trigger": "orber_ifr_arraydef", "contents": "orber_ifr_arraydef" }, -{ "trigger": "orber_ifr_attributedef", "contents": "orber_ifr_attributedef" }, -{ "trigger": "orber_ifr_constantdef", "contents": "orber_ifr_constantdef" }, -{ "trigger": "orber_ifr_contained", "contents": "orber_ifr_contained" }, -{ "trigger": "orber_ifr_container", "contents": "orber_ifr_container" }, -{ "trigger": "orber_ifr_enumdef", "contents": "orber_ifr_enumdef" }, -{ "trigger": "orber_ifr_exceptiondef", "contents": "orber_ifr_exceptiondef" }, -{ "trigger": "orber_ifr_fixeddef", "contents": "orber_ifr_fixeddef" }, -{ "trigger": "orber_ifr_idltype", "contents": "orber_ifr_idltype" }, -{ "trigger": "orber_ifr_interfacedef", "contents": "orber_ifr_interfacedef" }, -{ "trigger": "orber_ifr_irobject", "contents": "orber_ifr_irobject" }, -{ "trigger": "orber_ifr_moduledef", "contents": "orber_ifr_moduledef" }, -{ "trigger": "orber_ifr_operationdef", "contents": "orber_ifr_operationdef" }, -{ "trigger": "orber_ifr_orb", "contents": "orber_ifr_orb" }, -{ "trigger": "orber_ifr_primitivedef", "contents": "orber_ifr_primitivedef" }, -{ "trigger": "orber_ifr_repository", "contents": "orber_ifr_repository" }, -{ "trigger": "orber_ifr_sequencedef", "contents": "orber_ifr_sequencedef" }, -{ "trigger": "orber_ifr_stringdef", "contents": "orber_ifr_stringdef" }, -{ "trigger": "orber_ifr_structdef", "contents": "orber_ifr_structdef" }, -{ "trigger": "orber_ifr_typecode", "contents": "orber_ifr_typecode" }, -{ "trigger": "orber_ifr_typedef", "contents": "orber_ifr_typedef" }, -{ "trigger": "orber_ifr_uniondef", "contents": "orber_ifr_uniondef" }, -{ "trigger": "orber_ifr_utils", "contents": "orber_ifr_utils" }, -{ "trigger": "orber_ifr_wstringdef", "contents": "orber_ifr_wstringdef" }, -{ "trigger": "orber_iiop", "contents": "orber_iiop" }, -{ "trigger": "orber_iiop_inproxy", "contents": "orber_iiop_inproxy" }, -{ "trigger": "orber_iiop_inrequest", "contents": "orber_iiop_inrequest" }, -{ "trigger": "orber_iiop_insup", "contents": "orber_iiop_insup" }, -{ "trigger": "orber_iiop_net", "contents": "orber_iiop_net" }, -{ "trigger": "orber_iiop_net_accept", "contents": "orber_iiop_net_accept" }, -{ "trigger": "orber_iiop_outproxy", "contents": "orber_iiop_outproxy" }, -{ "trigger": "orber_iiop_outsup", "contents": "orber_iiop_outsup" }, -{ "trigger": "orber_iiop_pm", "contents": "orber_iiop_pm" }, -{ "trigger": "orber_iiop_socketsup", "contents": "orber_iiop_socketsup" }, -{ "trigger": "orber_iiop_tracer", "contents": "orber_iiop_tracer" }, -{ "trigger": "orber_iiop_tracer_silent", "contents": "orber_iiop_tracer_silent" }, -{ "trigger": "orber_iiop_tracer_stealth", "contents": "orber_iiop_tracer_stealth" }, -{ "trigger": "orber_initial_references", "contents": "orber_initial_references" }, -{ "trigger": "orber_objectkeys", "contents": "orber_objectkeys" }, -{ "trigger": "orber_pi", "contents": "orber_pi" }, -{ "trigger": "orber_request_number", "contents": "orber_request_number" }, -{ "trigger": "orber_socket", "contents": "orber_socket" }, -{ "trigger": "orber_tb", "contents": "orber_tb" }, -{ "trigger": "orber_tc", "contents": "orber_tc" }, -{ "trigger": "orber_typedefs", "contents": "orber_typedefs" }, -{ "trigger": "orber_web", "contents": "orber_web" }, -{ "trigger": "orber_web_server", "contents": "orber_web_server" }, -{ "trigger": "OrberApp_IFR_impl", "contents": "OrberApp_IFR_impl" }, -{ "trigger": "cpu_sup", "contents": "cpu_sup" }, -{ "trigger": "disksup", "contents": "disksup" }, -{ "trigger": "memsup", "contents": "memsup" }, -{ "trigger": "nteventlog", "contents": "nteventlog" }, -{ "trigger": "os_mon", "contents": "os_mon" }, -{ "trigger": "os_mon_mib", "contents": "os_mon_mib" }, -{ "trigger": "os_mon_sysinfo", "contents": "os_mon_sysinfo" }, -{ "trigger": "os_sup", "contents": "os_sup" }, -{ "trigger": "otp_mib", "contents": "otp_mib" }, -{ "trigger": "leex", "contents": "leex" }, -{ "trigger": "yecc", "contents": "yecc" }, -{ "trigger": "yeccparser", "contents": "yeccparser" }, -{ "trigger": "yeccscan", "contents": "yeccscan" }, -{ "trigger": "egd", "contents": "egd" }, -{ "trigger": "egd_font", "contents": "egd_font" }, -{ "trigger": "egd_png", "contents": "egd_png" }, -{ "trigger": "egd_primitives", "contents": "egd_primitives" }, -{ "trigger": "egd_render", "contents": "egd_render" }, -{ "trigger": "percept", "contents": "percept" }, -{ "trigger": "percept_analyzer", "contents": "percept_analyzer" }, -{ "trigger": "percept_db", "contents": "percept_db" }, -{ "trigger": "percept_graph", "contents": "percept_graph" }, -{ "trigger": "percept_html", "contents": "percept_html" }, -{ "trigger": "percept_image", "contents": "percept_image" }, -{ "trigger": "pman", "contents": "pman" }, -{ "trigger": "pman_buf", "contents": "pman_buf" }, -{ "trigger": "pman_buf_buffer", "contents": "pman_buf_buffer" }, -{ "trigger": "pman_buf_converter", "contents": "pman_buf_converter" }, -{ "trigger": "pman_buf_printer", "contents": "pman_buf_printer" }, -{ "trigger": "pman_buf_utils", "contents": "pman_buf_utils" }, -{ "trigger": "pman_main", "contents": "pman_main" }, -{ "trigger": "pman_module_info", "contents": "pman_module_info" }, -{ "trigger": "pman_options", "contents": "pman_options" }, -{ "trigger": "pman_process", "contents": "pman_process" }, -{ "trigger": "pman_relay", "contents": "pman_relay" }, -{ "trigger": "pman_relay_server", "contents": "pman_relay_server" }, -{ "trigger": "pman_shell", "contents": "pman_shell" }, -{ "trigger": "pman_tool", "contents": "pman_tool" }, -{ "trigger": "pman_win", "contents": "pman_win" }, -{ "trigger": "pubkey_cert", "contents": "pubkey_cert" }, -{ "trigger": "pubkey_cert_records", "contents": "pubkey_cert_records" }, -{ "trigger": "pubkey_pbe", "contents": "pubkey_pbe" }, -{ "trigger": "pubkey_pem", "contents": "pubkey_pem" }, -{ "trigger": "pubkey_ssh", "contents": "pubkey_ssh" }, -{ "trigger": "public_key", "contents": "public_key" }, -{ "trigger": "reltool", "contents": "reltool" }, -{ "trigger": "reltool_app_win", "contents": "reltool_app_win" }, -{ "trigger": "reltool_fgraph", "contents": "reltool_fgraph" }, -{ "trigger": "reltool_fgraph_win", "contents": "reltool_fgraph_win" }, -{ "trigger": "reltool_mod_win", "contents": "reltool_mod_win" }, -{ "trigger": "reltool_server", "contents": "reltool_server" }, -{ "trigger": "reltool_sys_win", "contents": "reltool_sys_win" }, -{ "trigger": "reltool_target", "contents": "reltool_target" }, -{ "trigger": "reltool_utils", "contents": "reltool_utils" }, -{ "trigger": "dbg", "contents": "dbg" }, -{ "trigger": "dyntrace", "contents": "dyntrace" }, -{ "trigger": "erts_alloc_config", "contents": "erts_alloc_config" }, -{ "trigger": "inviso_as_lib", "contents": "inviso_as_lib" }, -{ "trigger": "inviso_autostart", "contents": "inviso_autostart" }, -{ "trigger": "inviso_autostart_server", "contents": "inviso_autostart_server" }, -{ "trigger": "inviso_rt", "contents": "inviso_rt" }, -{ "trigger": "inviso_rt_lib", "contents": "inviso_rt_lib" }, -{ "trigger": "inviso_rt_meta", "contents": "inviso_rt_meta" }, -{ "trigger": "observer_backend", "contents": "observer_backend" }, -{ "trigger": "percept_profile", "contents": "percept_profile" }, -{ "trigger": "runtime_tools", "contents": "runtime_tools" }, -{ "trigger": "runtime_tools_sup", "contents": "runtime_tools_sup" }, -{ "trigger": "ttb_autostart", "contents": "ttb_autostart" }, -{ "trigger": "target_system", "contents": "target_system" }, -{ "trigger": "alarm_handler", "contents": "alarm_handler" }, -{ "trigger": "erlsrv", "contents": "erlsrv" }, -{ "trigger": "format_lib_supp", "contents": "format_lib_supp" }, -{ "trigger": "misc_supp", "contents": "misc_supp" }, -{ "trigger": "overload", "contents": "overload" }, -{ "trigger": "rb", "contents": "rb" }, -{ "trigger": "rb_format_supp", "contents": "rb_format_supp" }, -{ "trigger": "release_handler", "contents": "release_handler" }, -{ "trigger": "release_handler_1", "contents": "release_handler_1" }, -{ "trigger": "sasl", "contents": "sasl" }, -{ "trigger": "sasl_report", "contents": "sasl_report" }, -{ "trigger": "sasl_report_file_h", "contents": "sasl_report_file_h" }, -{ "trigger": "sasl_report_tty_h", "contents": "sasl_report_tty_h" }, -{ "trigger": "si", "contents": "si" }, -{ "trigger": "si_sasl_supp", "contents": "si_sasl_supp" }, -{ "trigger": "systools", "contents": "systools" }, -{ "trigger": "systools_lib", "contents": "systools_lib" }, -{ "trigger": "systools_make", "contents": "systools_make" }, -{ "trigger": "systools_rc", "contents": "systools_rc" }, -{ "trigger": "systools_relup", "contents": "systools_relup" }, -{ "trigger": "snmp_community_mib", "contents": "snmp_community_mib" }, -{ "trigger": "snmp_framework_mib", "contents": "snmp_framework_mib" }, -{ "trigger": "snmp_generic", "contents": "snmp_generic" }, -{ "trigger": "snmp_generic_mnesia", "contents": "snmp_generic_mnesia" }, -{ "trigger": "snmp_index", "contents": "snmp_index" }, -{ "trigger": "snmp_notification_mib", "contents": "snmp_notification_mib" }, -{ "trigger": "snmp_shadow_table", "contents": "snmp_shadow_table" }, -{ "trigger": "snmp_standard_mib", "contents": "snmp_standard_mib" }, -{ "trigger": "snmp_target_mib", "contents": "snmp_target_mib" }, -{ "trigger": "snmp_user_based_sm_mib", "contents": "snmp_user_based_sm_mib" }, -{ "trigger": "snmp_view_based_acm_mib", "contents": "snmp_view_based_acm_mib" }, -{ "trigger": "snmpa", "contents": "snmpa" }, -{ "trigger": "snmpa_acm", "contents": "snmpa_acm" }, -{ "trigger": "snmpa_agent", "contents": "snmpa_agent" }, -{ "trigger": "snmpa_agent_sup", "contents": "snmpa_agent_sup" }, -{ "trigger": "snmpa_app", "contents": "snmpa_app" }, -{ "trigger": "snmpa_authentication_service", "contents": "snmpa_authentication_service" }, -{ "trigger": "snmpa_conf", "contents": "snmpa_conf" }, -{ "trigger": "snmpa_discovery_handler", "contents": "snmpa_discovery_handler" }, -{ "trigger": "snmpa_discovery_handler_default", "contents": "snmpa_discovery_handler_default" }, -{ "trigger": "snmpa_error", "contents": "snmpa_error" }, -{ "trigger": "snmpa_error_io", "contents": "snmpa_error_io" }, -{ "trigger": "snmpa_error_logger", "contents": "snmpa_error_logger" }, -{ "trigger": "snmpa_error_report", "contents": "snmpa_error_report" }, -{ "trigger": "snmpa_general_db", "contents": "snmpa_general_db" }, -{ "trigger": "snmpa_local_db", "contents": "snmpa_local_db" }, -{ "trigger": "snmpa_mib", "contents": "snmpa_mib" }, -{ "trigger": "snmpa_mib_data", "contents": "snmpa_mib_data" }, -{ "trigger": "snmpa_mib_lib", "contents": "snmpa_mib_lib" }, -{ "trigger": "snmpa_misc_sup", "contents": "snmpa_misc_sup" }, -{ "trigger": "snmpa_mpd", "contents": "snmpa_mpd" }, -{ "trigger": "snmpa_net_if", "contents": "snmpa_net_if" }, -{ "trigger": "snmpa_net_if_filter", "contents": "snmpa_net_if_filter" }, -{ "trigger": "snmpa_network_interface", "contents": "snmpa_network_interface" }, -{ "trigger": "snmpa_network_interface_filter", "contents": "snmpa_network_interface_filter" }, -{ "trigger": "snmpa_notification_delivery_info_receiver", "contents": "snmpa_notification_delivery_info_receiver" }, -{ "trigger": "snmpa_notification_filter", "contents": "snmpa_notification_filter" }, -{ "trigger": "snmpa_set", "contents": "snmpa_set" }, -{ "trigger": "snmpa_set_lib", "contents": "snmpa_set_lib" }, -{ "trigger": "snmpa_set_mechanism", "contents": "snmpa_set_mechanism" }, -{ "trigger": "snmpa_supervisor", "contents": "snmpa_supervisor" }, -{ "trigger": "snmpa_svbl", "contents": "snmpa_svbl" }, -{ "trigger": "snmpa_symbolic_store", "contents": "snmpa_symbolic_store" }, -{ "trigger": "snmpa_target_cache", "contents": "snmpa_target_cache" }, -{ "trigger": "snmpa_trap", "contents": "snmpa_trap" }, -{ "trigger": "snmpa_usm", "contents": "snmpa_usm" }, -{ "trigger": "snmpa_vacm", "contents": "snmpa_vacm" }, -{ "trigger": "snmp", "contents": "snmp" }, -{ "trigger": "snmp_app", "contents": "snmp_app" }, -{ "trigger": "snmp_app_sup", "contents": "snmp_app_sup" }, -{ "trigger": "snmpc", "contents": "snmpc" }, -{ "trigger": "snmpc_lib", "contents": "snmpc_lib" }, -{ "trigger": "snmpc_mib_gram", "contents": "snmpc_mib_gram" }, -{ "trigger": "snmpc_mib_to_hrl", "contents": "snmpc_mib_to_hrl" }, -{ "trigger": "snmpc_misc", "contents": "snmpc_misc" }, -{ "trigger": "snmpc_tok", "contents": "snmpc_tok" }, -{ "trigger": "snmpm", "contents": "snmpm" }, -{ "trigger": "snmpm_conf", "contents": "snmpm_conf" }, -{ "trigger": "snmpm_config", "contents": "snmpm_config" }, -{ "trigger": "snmpm_misc_sup", "contents": "snmpm_misc_sup" }, -{ "trigger": "snmpm_mpd", "contents": "snmpm_mpd" }, -{ "trigger": "snmpm_net_if", "contents": "snmpm_net_if" }, -{ "trigger": "snmpm_net_if_filter", "contents": "snmpm_net_if_filter" }, -{ "trigger": "snmpm_net_if_mt", "contents": "snmpm_net_if_mt" }, -{ "trigger": "snmpm_network_interface", "contents": "snmpm_network_interface" }, -{ "trigger": "snmpm_network_interface_filter", "contents": "snmpm_network_interface_filter" }, -{ "trigger": "snmpm_server", "contents": "snmpm_server" }, -{ "trigger": "snmpm_server_sup", "contents": "snmpm_server_sup" }, -{ "trigger": "snmpm_supervisor", "contents": "snmpm_supervisor" }, -{ "trigger": "snmpm_user", "contents": "snmpm_user" }, -{ "trigger": "snmpm_user_default", "contents": "snmpm_user_default" }, -{ "trigger": "snmpm_user_old", "contents": "snmpm_user_old" }, -{ "trigger": "snmpm_usm", "contents": "snmpm_usm" }, -{ "trigger": "snmp_conf", "contents": "snmp_conf" }, -{ "trigger": "snmp_config", "contents": "snmp_config" }, -{ "trigger": "snmp_log", "contents": "snmp_log" }, -{ "trigger": "snmp_mini_mib", "contents": "snmp_mini_mib" }, -{ "trigger": "snmp_misc", "contents": "snmp_misc" }, -{ "trigger": "snmp_note_store", "contents": "snmp_note_store" }, -{ "trigger": "snmp_pdus", "contents": "snmp_pdus" }, -{ "trigger": "snmp_usm", "contents": "snmp_usm" }, -{ "trigger": "snmp_verbosity", "contents": "snmp_verbosity" }, -{ "trigger": "ssh", "contents": "ssh" }, -{ "trigger": "ssh_acceptor", "contents": "ssh_acceptor" }, -{ "trigger": "ssh_acceptor_sup", "contents": "ssh_acceptor_sup" }, -{ "trigger": "ssh_app", "contents": "ssh_app" }, -{ "trigger": "ssh_auth", "contents": "ssh_auth" }, -{ "trigger": "ssh_bits", "contents": "ssh_bits" }, -{ "trigger": "ssh_channel", "contents": "ssh_channel" }, -{ "trigger": "ssh_channel_sup", "contents": "ssh_channel_sup" }, -{ "trigger": "ssh_cli", "contents": "ssh_cli" }, -{ "trigger": "ssh_connection", "contents": "ssh_connection" }, -{ "trigger": "ssh_connection_handler", "contents": "ssh_connection_handler" }, -{ "trigger": "ssh_connection_manager", "contents": "ssh_connection_manager" }, -{ "trigger": "ssh_connection_sup", "contents": "ssh_connection_sup" }, -{ "trigger": "ssh_file", "contents": "ssh_file" }, -{ "trigger": "ssh_io", "contents": "ssh_io" }, -{ "trigger": "ssh_math", "contents": "ssh_math" }, -{ "trigger": "ssh_no_io", "contents": "ssh_no_io" }, -{ "trigger": "ssh_sftp", "contents": "ssh_sftp" }, -{ "trigger": "ssh_sftpd", "contents": "ssh_sftpd" }, -{ "trigger": "ssh_sftpd_file", "contents": "ssh_sftpd_file" }, -{ "trigger": "ssh_shell", "contents": "ssh_shell" }, -{ "trigger": "ssh_subsystem_sup", "contents": "ssh_subsystem_sup" }, -{ "trigger": "ssh_sup", "contents": "ssh_sup" }, -{ "trigger": "ssh_system_sup", "contents": "ssh_system_sup" }, -{ "trigger": "ssh_transport", "contents": "ssh_transport" }, -{ "trigger": "ssh_userreg", "contents": "ssh_userreg" }, -{ "trigger": "ssh_xfer", "contents": "ssh_xfer" }, -{ "trigger": "sshc_sup", "contents": "sshc_sup" }, -{ "trigger": "sshd_sup", "contents": "sshd_sup" }, -{ "trigger": "client_server", "contents": "client_server" }, -{ "trigger": "inet_tls_dist", "contents": "inet_tls_dist" }, -{ "trigger": "ssl", "contents": "ssl" }, -{ "trigger": "ssl_alert", "contents": "ssl_alert" }, -{ "trigger": "ssl_app", "contents": "ssl_app" }, -{ "trigger": "ssl_certificate", "contents": "ssl_certificate" }, -{ "trigger": "ssl_certificate_db", "contents": "ssl_certificate_db" }, -{ "trigger": "ssl_cipher", "contents": "ssl_cipher" }, -{ "trigger": "ssl_connection", "contents": "ssl_connection" }, -{ "trigger": "ssl_connection_sup", "contents": "ssl_connection_sup" }, -{ "trigger": "ssl_debug", "contents": "ssl_debug" }, -{ "trigger": "ssl_dist_sup", "contents": "ssl_dist_sup" }, -{ "trigger": "ssl_handshake", "contents": "ssl_handshake" }, -{ "trigger": "ssl_manager", "contents": "ssl_manager" }, -{ "trigger": "ssl_record", "contents": "ssl_record" }, -{ "trigger": "ssl_session", "contents": "ssl_session" }, -{ "trigger": "ssl_session_cache", "contents": "ssl_session_cache" }, -{ "trigger": "ssl_ssl2", "contents": "ssl_ssl2" }, -{ "trigger": "ssl_ssl3", "contents": "ssl_ssl3" }, -{ "trigger": "ssl_sup", "contents": "ssl_sup" }, -{ "trigger": "ssl_tls1", "contents": "ssl_tls1" }, -{ "trigger": "ssl_tls_dist_proxy", "contents": "ssl_tls_dist_proxy" }, -{ "trigger": "array", "contents": "array" }, -{ "trigger": "base64", "contents": "base64" }, -{ "trigger": "beam_lib", "contents": "beam_lib" }, -{ "trigger": "binary", "contents": "binary" }, -{ "trigger": "c", "contents": "c" }, -{ "trigger": "calendar", "contents": "calendar" }, -{ "trigger": "dets", "contents": "dets" }, -{ "trigger": "dets_server", "contents": "dets_server" }, -{ "trigger": "dets_sup", "contents": "dets_sup" }, -{ "trigger": "dets_utils", "contents": "dets_utils" }, -{ "trigger": "dets_v8", "contents": "dets_v8" }, -{ "trigger": "dets_v9", "contents": "dets_v9" }, -{ "trigger": "dict", "contents": "dict" }, -{ "trigger": "digraph", "contents": "digraph" }, -{ "trigger": "digraph_utils", "contents": "digraph_utils" }, -{ "trigger": "edlin", "contents": "edlin" }, -{ "trigger": "edlin_expand", "contents": "edlin_expand" }, -{ "trigger": "epp", "contents": "epp" }, -{ "trigger": "erl_bits", "contents": "erl_bits" }, -{ "trigger": "erl_compile", "contents": "erl_compile" }, -{ "trigger": "erl_eval", "contents": "erl_eval" }, -{ "trigger": "erl_expand_records", "contents": "erl_expand_records" }, -{ "trigger": "erl_internal", "contents": "erl_internal" }, -{ "trigger": "erl_lint", "contents": "erl_lint" }, -{ "trigger": "erl_parse", "contents": "erl_parse" }, -{ "trigger": "erl_posix_msg", "contents": "erl_posix_msg" }, -{ "trigger": "erl_pp", "contents": "erl_pp" }, -{ "trigger": "erl_scan", "contents": "erl_scan" }, -{ "trigger": "erl_tar", "contents": "erl_tar" }, -{ "trigger": "error_logger_file_h", "contents": "error_logger_file_h" }, -{ "trigger": "error_logger_tty_h", "contents": "error_logger_tty_h" }, -{ "trigger": "escript", "contents": "escript" }, -{ "trigger": "ets", "contents": "ets" }, -{ "trigger": "eval_bits", "contents": "eval_bits" }, -{ "trigger": "file_sorter", "contents": "file_sorter" }, -{ "trigger": "filelib", "contents": "filelib" }, -{ "trigger": "filename", "contents": "filename" }, -{ "trigger": "gb_sets", "contents": "gb_sets" }, -{ "trigger": "gb_trees", "contents": "gb_trees" }, -{ "trigger": "gen", "contents": "gen" }, -{ "trigger": "gen_event", "contents": "gen_event" }, -{ "trigger": "gen_fsm", "contents": "gen_fsm" }, -{ "trigger": "gen_server", "contents": "gen_server" }, -{ "trigger": "io", "contents": "io" }, -{ "trigger": "io_lib", "contents": "io_lib" }, -{ "trigger": "io_lib_format", "contents": "io_lib_format" }, -{ "trigger": "io_lib_fread", "contents": "io_lib_fread" }, -{ "trigger": "io_lib_pretty", "contents": "io_lib_pretty" }, -{ "trigger": "lib", "contents": "lib" }, -{ "trigger": "lists", "contents": "lists" }, -{ "trigger": "log_mf_h", "contents": "log_mf_h" }, -{ "trigger": "math", "contents": "math" }, -{ "trigger": "ms_transform", "contents": "ms_transform" }, -{ "trigger": "orddict", "contents": "orddict" }, -{ "trigger": "ordsets", "contents": "ordsets" }, -{ "trigger": "otp_internal", "contents": "otp_internal" }, -{ "trigger": "pg", "contents": "pg" }, -{ "trigger": "pool", "contents": "pool" }, -{ "trigger": "proc_lib", "contents": "proc_lib" }, -{ "trigger": "proplists", "contents": "proplists" }, -{ "trigger": "qlc", "contents": "qlc" }, -{ "trigger": "qlc_pt", "contents": "qlc_pt" }, -{ "trigger": "queue", "contents": "queue" }, -{ "trigger": "random", "contents": "random" }, -{ "trigger": "re", "contents": "re" }, -{ "trigger": "sets", "contents": "sets" }, -{ "trigger": "shell", "contents": "shell" }, -{ "trigger": "shell_default", "contents": "shell_default" }, -{ "trigger": "slave", "contents": "slave" }, -{ "trigger": "sofs", "contents": "sofs" }, -{ "trigger": "string", "contents": "string" }, -{ "trigger": "supervisor", "contents": "supervisor" }, -{ "trigger": "supervisor_bridge", "contents": "supervisor_bridge" }, -{ "trigger": "sys", "contents": "sys" }, -{ "trigger": "timer", "contents": "timer" }, -{ "trigger": "unicode", "contents": "unicode" }, -{ "trigger": "win32reg", "contents": "win32reg" }, -{ "trigger": "zip", "contents": "zip" }, -{ "trigger": "epp_dodger", "contents": "epp_dodger" }, -{ "trigger": "erl_comment_scan", "contents": "erl_comment_scan" }, -{ "trigger": "erl_prettypr", "contents": "erl_prettypr" }, -{ "trigger": "erl_recomment", "contents": "erl_recomment" }, -{ "trigger": "erl_syntax", "contents": "erl_syntax" }, -{ "trigger": "erl_syntax_lib", "contents": "erl_syntax_lib" }, -{ "trigger": "erl_tidy", "contents": "erl_tidy" }, -{ "trigger": "igor", "contents": "igor" }, -{ "trigger": "prettypr", "contents": "prettypr" }, -{ "trigger": "erl2html2", "contents": "erl2html2" }, -{ "trigger": "test_server", "contents": "test_server" }, -{ "trigger": "test_server_ctrl", "contents": "test_server_ctrl" }, -{ "trigger": "test_server_h", "contents": "test_server_h" }, -{ "trigger": "test_server_node", "contents": "test_server_node" }, -{ "trigger": "test_server_sup", "contents": "test_server_sup" }, -{ "trigger": "vxworks_client", "contents": "vxworks_client" }, -{ "trigger": "canvasbutton", "contents": "canvasbutton" }, -{ "trigger": "toolbar", "contents": "toolbar" }, -{ "trigger": "toolbar_graphics", "contents": "toolbar_graphics" }, -{ "trigger": "toolbar_lib", "contents": "toolbar_lib" }, -{ "trigger": "toolbar_toolconfig", "contents": "toolbar_toolconfig" }, -{ "trigger": "cover", "contents": "cover" }, -{ "trigger": "cover_web", "contents": "cover_web" }, -{ "trigger": "cprof", "contents": "cprof" }, -{ "trigger": "eprof", "contents": "eprof" }, -{ "trigger": "fprof", "contents": "fprof" }, -{ "trigger": "instrument", "contents": "instrument" }, -{ "trigger": "lcnt", "contents": "lcnt" }, -{ "trigger": "make", "contents": "make" }, -{ "trigger": "tags", "contents": "tags" }, -{ "trigger": "xref", "contents": "xref" }, -{ "trigger": "xref_base", "contents": "xref_base" }, -{ "trigger": "xref_compiler", "contents": "xref_compiler" }, -{ "trigger": "xref_parser", "contents": "xref_parser" }, -{ "trigger": "xref_reader", "contents": "xref_reader" }, -{ "trigger": "xref_scanner", "contents": "xref_scanner" }, -{ "trigger": "xref_utils", "contents": "xref_utils" }, -{ "trigger": "tv", "contents": "tv" }, -{ "trigger": "tv_comm_func", "contents": "tv_comm_func" }, -{ "trigger": "tv_db", "contents": "tv_db" }, -{ "trigger": "tv_db_search", "contents": "tv_db_search" }, -{ "trigger": "tv_db_sort", "contents": "tv_db_sort" }, -{ "trigger": "tv_ets_rpc", "contents": "tv_ets_rpc" }, -{ "trigger": "tv_etsread", "contents": "tv_etsread" }, -{ "trigger": "tv_info", "contents": "tv_info" }, -{ "trigger": "tv_io_lib", "contents": "tv_io_lib" }, -{ "trigger": "tv_io_lib_format", "contents": "tv_io_lib_format" }, -{ "trigger": "tv_io_lib_pretty", "contents": "tv_io_lib_pretty" }, -{ "trigger": "tv_ip", "contents": "tv_ip" }, -{ "trigger": "tv_main", "contents": "tv_main" }, -{ "trigger": "tv_mnesia_rpc", "contents": "tv_mnesia_rpc" }, -{ "trigger": "tv_new_table", "contents": "tv_new_table" }, -{ "trigger": "tv_nodewin", "contents": "tv_nodewin" }, -{ "trigger": "tv_pb", "contents": "tv_pb" }, -{ "trigger": "tv_pb_funcs", "contents": "tv_pb_funcs" }, -{ "trigger": "tv_pc", "contents": "tv_pc" }, -{ "trigger": "tv_pc_graph_ctrl", "contents": "tv_pc_graph_ctrl" }, -{ "trigger": "tv_pc_menu_handling", "contents": "tv_pc_menu_handling" }, -{ "trigger": "tv_pd", "contents": "tv_pd" }, -{ "trigger": "tv_pd_display", "contents": "tv_pd_display" }, -{ "trigger": "tv_pd_frames", "contents": "tv_pd_frames" }, -{ "trigger": "tv_pd_scale", "contents": "tv_pd_scale" }, -{ "trigger": "tv_pg", "contents": "tv_pg" }, -{ "trigger": "tv_pg_gridfcns", "contents": "tv_pg_gridfcns" }, -{ "trigger": "tv_poll_dialog", "contents": "tv_poll_dialog" }, -{ "trigger": "tv_pw", "contents": "tv_pw" }, -{ "trigger": "tv_pw_window", "contents": "tv_pw_window" }, -{ "trigger": "tv_rec_edit", "contents": "tv_rec_edit" }, -{ "trigger": "tv_table_owner", "contents": "tv_table_owner" }, -{ "trigger": "tv_utils", "contents": "tv_utils" }, -{ "trigger": "typer", "contents": "typer" }, -{ "trigger": "webtool", "contents": "webtool" }, -{ "trigger": "webtool_sup", "contents": "webtool_sup" }, -{ "trigger": "wx", "contents": "wx" }, -{ "trigger": "wx_object", "contents": "wx_object" }, -{ "trigger": "wxe_master", "contents": "wxe_master" }, -{ "trigger": "wxe_server", "contents": "wxe_server" }, -{ "trigger": "wxe_util", "contents": "wxe_util" }, -{ "trigger": "gl", "contents": "gl" }, -{ "trigger": "glu", "contents": "glu" }, -{ "trigger": "wx_misc", "contents": "wx_misc" }, -{ "trigger": "wxAcceleratorEntry", "contents": "wxAcceleratorEntry" }, -{ "trigger": "wxAcceleratorTable", "contents": "wxAcceleratorTable" }, -{ "trigger": "wxArtProvider", "contents": "wxArtProvider" }, -{ "trigger": "wxAuiDockArt", "contents": "wxAuiDockArt" }, -{ "trigger": "wxAuiManager", "contents": "wxAuiManager" }, -{ "trigger": "wxAuiManagerEvent", "contents": "wxAuiManagerEvent" }, -{ "trigger": "wxAuiNotebook", "contents": "wxAuiNotebook" }, -{ "trigger": "wxAuiNotebookEvent", "contents": "wxAuiNotebookEvent" }, -{ "trigger": "wxAuiPaneInfo", "contents": "wxAuiPaneInfo" }, -{ "trigger": "wxAuiTabArt", "contents": "wxAuiTabArt" }, -{ "trigger": "wxBitmap", "contents": "wxBitmap" }, -{ "trigger": "wxBitmapButton", "contents": "wxBitmapButton" }, -{ "trigger": "wxBitmapDataObject", "contents": "wxBitmapDataObject" }, -{ "trigger": "wxBoxSizer", "contents": "wxBoxSizer" }, -{ "trigger": "wxBrush", "contents": "wxBrush" }, -{ "trigger": "wxBufferedDC", "contents": "wxBufferedDC" }, -{ "trigger": "wxBufferedPaintDC", "contents": "wxBufferedPaintDC" }, -{ "trigger": "wxButton", "contents": "wxButton" }, -{ "trigger": "wxCalendarCtrl", "contents": "wxCalendarCtrl" }, -{ "trigger": "wxCalendarDateAttr", "contents": "wxCalendarDateAttr" }, -{ "trigger": "wxCalendarEvent", "contents": "wxCalendarEvent" }, -{ "trigger": "wxCaret", "contents": "wxCaret" }, -{ "trigger": "wxCheckBox", "contents": "wxCheckBox" }, -{ "trigger": "wxCheckListBox", "contents": "wxCheckListBox" }, -{ "trigger": "wxChildFocusEvent", "contents": "wxChildFocusEvent" }, -{ "trigger": "wxChoice", "contents": "wxChoice" }, -{ "trigger": "wxChoicebook", "contents": "wxChoicebook" }, -{ "trigger": "wxClientDC", "contents": "wxClientDC" }, -{ "trigger": "wxClipboard", "contents": "wxClipboard" }, -{ "trigger": "wxCloseEvent", "contents": "wxCloseEvent" }, -{ "trigger": "wxColourData", "contents": "wxColourData" }, -{ "trigger": "wxColourDialog", "contents": "wxColourDialog" }, -{ "trigger": "wxColourPickerCtrl", "contents": "wxColourPickerCtrl" }, -{ "trigger": "wxColourPickerEvent", "contents": "wxColourPickerEvent" }, -{ "trigger": "wxComboBox", "contents": "wxComboBox" }, -{ "trigger": "wxCommandEvent", "contents": "wxCommandEvent" }, -{ "trigger": "wxContextMenuEvent", "contents": "wxContextMenuEvent" }, -{ "trigger": "wxControl", "contents": "wxControl" }, -{ "trigger": "wxControlWithItems", "contents": "wxControlWithItems" }, -{ "trigger": "wxCursor", "contents": "wxCursor" }, -{ "trigger": "wxDataObject", "contents": "wxDataObject" }, -{ "trigger": "wxDateEvent", "contents": "wxDateEvent" }, -{ "trigger": "wxDatePickerCtrl", "contents": "wxDatePickerCtrl" }, -{ "trigger": "wxDC", "contents": "wxDC" }, -{ "trigger": "wxDialog", "contents": "wxDialog" }, -{ "trigger": "wxDirDialog", "contents": "wxDirDialog" }, -{ "trigger": "wxDirPickerCtrl", "contents": "wxDirPickerCtrl" }, -{ "trigger": "wxDisplayChangedEvent", "contents": "wxDisplayChangedEvent" }, -{ "trigger": "wxEraseEvent", "contents": "wxEraseEvent" }, -{ "trigger": "wxEvent", "contents": "wxEvent" }, -{ "trigger": "wxEvtHandler", "contents": "wxEvtHandler" }, -{ "trigger": "wxFileDataObject", "contents": "wxFileDataObject" }, -{ "trigger": "wxFileDialog", "contents": "wxFileDialog" }, -{ "trigger": "wxFileDirPickerEvent", "contents": "wxFileDirPickerEvent" }, -{ "trigger": "wxFilePickerCtrl", "contents": "wxFilePickerCtrl" }, -{ "trigger": "wxFindReplaceData", "contents": "wxFindReplaceData" }, -{ "trigger": "wxFindReplaceDialog", "contents": "wxFindReplaceDialog" }, -{ "trigger": "wxFlexGridSizer", "contents": "wxFlexGridSizer" }, -{ "trigger": "wxFocusEvent", "contents": "wxFocusEvent" }, -{ "trigger": "wxFont", "contents": "wxFont" }, -{ "trigger": "wxFontData", "contents": "wxFontData" }, -{ "trigger": "wxFontDialog", "contents": "wxFontDialog" }, -{ "trigger": "wxFontPickerCtrl", "contents": "wxFontPickerCtrl" }, -{ "trigger": "wxFontPickerEvent", "contents": "wxFontPickerEvent" }, -{ "trigger": "wxFrame", "contents": "wxFrame" }, -{ "trigger": "wxGauge", "contents": "wxGauge" }, -{ "trigger": "wxGBSizerItem", "contents": "wxGBSizerItem" }, -{ "trigger": "wxGenericDirCtrl", "contents": "wxGenericDirCtrl" }, -{ "trigger": "wxGLCanvas", "contents": "wxGLCanvas" }, -{ "trigger": "wxGraphicsBrush", "contents": "wxGraphicsBrush" }, -{ "trigger": "wxGraphicsContext", "contents": "wxGraphicsContext" }, -{ "trigger": "wxGraphicsFont", "contents": "wxGraphicsFont" }, -{ "trigger": "wxGraphicsMatrix", "contents": "wxGraphicsMatrix" }, -{ "trigger": "wxGraphicsObject", "contents": "wxGraphicsObject" }, -{ "trigger": "wxGraphicsPath", "contents": "wxGraphicsPath" }, -{ "trigger": "wxGraphicsPen", "contents": "wxGraphicsPen" }, -{ "trigger": "wxGraphicsRenderer", "contents": "wxGraphicsRenderer" }, -{ "trigger": "wxGrid", "contents": "wxGrid" }, -{ "trigger": "wxGridBagSizer", "contents": "wxGridBagSizer" }, -{ "trigger": "wxGridCellAttr", "contents": "wxGridCellAttr" }, -{ "trigger": "wxGridCellBoolEditor", "contents": "wxGridCellBoolEditor" }, -{ "trigger": "wxGridCellBoolRenderer", "contents": "wxGridCellBoolRenderer" }, -{ "trigger": "wxGridCellChoiceEditor", "contents": "wxGridCellChoiceEditor" }, -{ "trigger": "wxGridCellEditor", "contents": "wxGridCellEditor" }, -{ "trigger": "wxGridCellFloatEditor", "contents": "wxGridCellFloatEditor" }, -{ "trigger": "wxGridCellFloatRenderer", "contents": "wxGridCellFloatRenderer" }, -{ "trigger": "wxGridCellNumberEditor", "contents": "wxGridCellNumberEditor" }, -{ "trigger": "wxGridCellNumberRenderer", "contents": "wxGridCellNumberRenderer" }, -{ "trigger": "wxGridCellRenderer", "contents": "wxGridCellRenderer" }, -{ "trigger": "wxGridCellStringRenderer", "contents": "wxGridCellStringRenderer" }, -{ "trigger": "wxGridCellTextEditor", "contents": "wxGridCellTextEditor" }, -{ "trigger": "wxGridEvent", "contents": "wxGridEvent" }, -{ "trigger": "wxGridSizer", "contents": "wxGridSizer" }, -{ "trigger": "wxHelpEvent", "contents": "wxHelpEvent" }, -{ "trigger": "wxHtmlEasyPrinting", "contents": "wxHtmlEasyPrinting" }, -{ "trigger": "wxHtmlLinkEvent", "contents": "wxHtmlLinkEvent" }, -{ "trigger": "wxHtmlWindow", "contents": "wxHtmlWindow" }, -{ "trigger": "wxIcon", "contents": "wxIcon" }, -{ "trigger": "wxIconBundle", "contents": "wxIconBundle" }, -{ "trigger": "wxIconizeEvent", "contents": "wxIconizeEvent" }, -{ "trigger": "wxIdleEvent", "contents": "wxIdleEvent" }, -{ "trigger": "wxImage", "contents": "wxImage" }, -{ "trigger": "wxImageList", "contents": "wxImageList" }, -{ "trigger": "wxJoystickEvent", "contents": "wxJoystickEvent" }, -{ "trigger": "wxKeyEvent", "contents": "wxKeyEvent" }, -{ "trigger": "wxLayoutAlgorithm", "contents": "wxLayoutAlgorithm" }, -{ "trigger": "wxListbook", "contents": "wxListbook" }, -{ "trigger": "wxListBox", "contents": "wxListBox" }, -{ "trigger": "wxListCtrl", "contents": "wxListCtrl" }, -{ "trigger": "wxListEvent", "contents": "wxListEvent" }, -{ "trigger": "wxListItem", "contents": "wxListItem" }, -{ "trigger": "wxListItemAttr", "contents": "wxListItemAttr" }, -{ "trigger": "wxListView", "contents": "wxListView" }, -{ "trigger": "wxLogNull", "contents": "wxLogNull" }, -{ "trigger": "wxMask", "contents": "wxMask" }, -{ "trigger": "wxMaximizeEvent", "contents": "wxMaximizeEvent" }, -{ "trigger": "wxMDIChildFrame", "contents": "wxMDIChildFrame" }, -{ "trigger": "wxMDIClientWindow", "contents": "wxMDIClientWindow" }, -{ "trigger": "wxMDIParentFrame", "contents": "wxMDIParentFrame" }, -{ "trigger": "wxMemoryDC", "contents": "wxMemoryDC" }, -{ "trigger": "wxMenu", "contents": "wxMenu" }, -{ "trigger": "wxMenuBar", "contents": "wxMenuBar" }, -{ "trigger": "wxMenuEvent", "contents": "wxMenuEvent" }, -{ "trigger": "wxMenuItem", "contents": "wxMenuItem" }, -{ "trigger": "wxMessageDialog", "contents": "wxMessageDialog" }, -{ "trigger": "wxMiniFrame", "contents": "wxMiniFrame" }, -{ "trigger": "wxMirrorDC", "contents": "wxMirrorDC" }, -{ "trigger": "wxMouseCaptureChangedEvent", "contents": "wxMouseCaptureChangedEvent" }, -{ "trigger": "wxMouseEvent", "contents": "wxMouseEvent" }, -{ "trigger": "wxMoveEvent", "contents": "wxMoveEvent" }, -{ "trigger": "wxMultiChoiceDialog", "contents": "wxMultiChoiceDialog" }, -{ "trigger": "wxNavigationKeyEvent", "contents": "wxNavigationKeyEvent" }, -{ "trigger": "wxNcPaintEvent", "contents": "wxNcPaintEvent" }, -{ "trigger": "wxNotebook", "contents": "wxNotebook" }, -{ "trigger": "wxNotebookEvent", "contents": "wxNotebookEvent" }, -{ "trigger": "wxNotifyEvent", "contents": "wxNotifyEvent" }, -{ "trigger": "wxPageSetupDialog", "contents": "wxPageSetupDialog" }, -{ "trigger": "wxPageSetupDialogData", "contents": "wxPageSetupDialogData" }, -{ "trigger": "wxPaintDC", "contents": "wxPaintDC" }, -{ "trigger": "wxPaintEvent", "contents": "wxPaintEvent" }, -{ "trigger": "wxPalette", "contents": "wxPalette" }, -{ "trigger": "wxPaletteChangedEvent", "contents": "wxPaletteChangedEvent" }, -{ "trigger": "wxPanel", "contents": "wxPanel" }, -{ "trigger": "wxPasswordEntryDialog", "contents": "wxPasswordEntryDialog" }, -{ "trigger": "wxPen", "contents": "wxPen" }, -{ "trigger": "wxPickerBase", "contents": "wxPickerBase" }, -{ "trigger": "wxPostScriptDC", "contents": "wxPostScriptDC" }, -{ "trigger": "wxPreviewCanvas", "contents": "wxPreviewCanvas" }, -{ "trigger": "wxPreviewControlBar", "contents": "wxPreviewControlBar" }, -{ "trigger": "wxPreviewFrame", "contents": "wxPreviewFrame" }, -{ "trigger": "wxPrintData", "contents": "wxPrintData" }, -{ "trigger": "wxPrintDialog", "contents": "wxPrintDialog" }, -{ "trigger": "wxPrintDialogData", "contents": "wxPrintDialogData" }, -{ "trigger": "wxPrinter", "contents": "wxPrinter" }, -{ "trigger": "wxPrintout", "contents": "wxPrintout" }, -{ "trigger": "wxPrintPreview", "contents": "wxPrintPreview" }, -{ "trigger": "wxProgressDialog", "contents": "wxProgressDialog" }, -{ "trigger": "wxQueryNewPaletteEvent", "contents": "wxQueryNewPaletteEvent" }, -{ "trigger": "wxRadioBox", "contents": "wxRadioBox" }, -{ "trigger": "wxRadioButton", "contents": "wxRadioButton" }, -{ "trigger": "wxRegion", "contents": "wxRegion" }, -{ "trigger": "wxSashEvent", "contents": "wxSashEvent" }, -{ "trigger": "wxSashLayoutWindow", "contents": "wxSashLayoutWindow" }, -{ "trigger": "wxSashWindow", "contents": "wxSashWindow" }, -{ "trigger": "wxScreenDC", "contents": "wxScreenDC" }, -{ "trigger": "wxScrollBar", "contents": "wxScrollBar" }, -{ "trigger": "wxScrolledWindow", "contents": "wxScrolledWindow" }, -{ "trigger": "wxScrollEvent", "contents": "wxScrollEvent" }, -{ "trigger": "wxScrollWinEvent", "contents": "wxScrollWinEvent" }, -{ "trigger": "wxSetCursorEvent", "contents": "wxSetCursorEvent" }, -{ "trigger": "wxShowEvent", "contents": "wxShowEvent" }, -{ "trigger": "wxSingleChoiceDialog", "contents": "wxSingleChoiceDialog" }, -{ "trigger": "wxSizeEvent", "contents": "wxSizeEvent" }, -{ "trigger": "wxSizer", "contents": "wxSizer" }, -{ "trigger": "wxSizerFlags", "contents": "wxSizerFlags" }, -{ "trigger": "wxSizerItem", "contents": "wxSizerItem" }, -{ "trigger": "wxSlider", "contents": "wxSlider" }, -{ "trigger": "wxSpinButton", "contents": "wxSpinButton" }, -{ "trigger": "wxSpinCtrl", "contents": "wxSpinCtrl" }, -{ "trigger": "wxSpinEvent", "contents": "wxSpinEvent" }, -{ "trigger": "wxSplashScreen", "contents": "wxSplashScreen" }, -{ "trigger": "wxSplitterEvent", "contents": "wxSplitterEvent" }, -{ "trigger": "wxSplitterWindow", "contents": "wxSplitterWindow" }, -{ "trigger": "wxStaticBitmap", "contents": "wxStaticBitmap" }, -{ "trigger": "wxStaticBox", "contents": "wxStaticBox" }, -{ "trigger": "wxStaticBoxSizer", "contents": "wxStaticBoxSizer" }, -{ "trigger": "wxStaticLine", "contents": "wxStaticLine" }, -{ "trigger": "wxStaticText", "contents": "wxStaticText" }, -{ "trigger": "wxStatusBar", "contents": "wxStatusBar" }, -{ "trigger": "wxStdDialogButtonSizer", "contents": "wxStdDialogButtonSizer" }, -{ "trigger": "wxStyledTextCtrl", "contents": "wxStyledTextCtrl" }, -{ "trigger": "wxStyledTextEvent", "contents": "wxStyledTextEvent" }, -{ "trigger": "wxSysColourChangedEvent", "contents": "wxSysColourChangedEvent" }, -{ "trigger": "wxSystemOptions", "contents": "wxSystemOptions" }, -{ "trigger": "wxSystemSettings", "contents": "wxSystemSettings" }, -{ "trigger": "wxTaskBarIcon", "contents": "wxTaskBarIcon" }, -{ "trigger": "wxTaskBarIconEvent", "contents": "wxTaskBarIconEvent" }, -{ "trigger": "wxTextAttr", "contents": "wxTextAttr" }, -{ "trigger": "wxTextCtrl", "contents": "wxTextCtrl" }, -{ "trigger": "wxTextDataObject", "contents": "wxTextDataObject" }, -{ "trigger": "wxTextEntryDialog", "contents": "wxTextEntryDialog" }, -{ "trigger": "wxToggleButton", "contents": "wxToggleButton" }, -{ "trigger": "wxToolBar", "contents": "wxToolBar" }, -{ "trigger": "wxToolbook", "contents": "wxToolbook" }, -{ "trigger": "wxToolTip", "contents": "wxToolTip" }, -{ "trigger": "wxTopLevelWindow", "contents": "wxTopLevelWindow" }, -{ "trigger": "wxTreebook", "contents": "wxTreebook" }, -{ "trigger": "wxTreeCtrl", "contents": "wxTreeCtrl" }, -{ "trigger": "wxTreeEvent", "contents": "wxTreeEvent" }, -{ "trigger": "wxUpdateUIEvent", "contents": "wxUpdateUIEvent" }, -{ "trigger": "wxWindow", "contents": "wxWindow" }, -{ "trigger": "wxWindowCreateEvent", "contents": "wxWindowCreateEvent" }, -{ "trigger": "wxWindowDC", "contents": "wxWindowDC" }, -{ "trigger": "wxWindowDestroyEvent", "contents": "wxWindowDestroyEvent" }, -{ "trigger": "wxXmlResource", "contents": "wxXmlResource" }, -{ "trigger": "xmerl", "contents": "xmerl" }, -{ "trigger": "xmerl_b64Bin", "contents": "xmerl_b64Bin" }, -{ "trigger": "xmerl_b64Bin_scan", "contents": "xmerl_b64Bin_scan" }, -{ "trigger": "xmerl_eventp", "contents": "xmerl_eventp" }, -{ "trigger": "xmerl_html", "contents": "xmerl_html" }, -{ "trigger": "xmerl_lib", "contents": "xmerl_lib" }, -{ "trigger": "xmerl_otpsgml", "contents": "xmerl_otpsgml" }, -{ "trigger": "xmerl_regexp", "contents": "xmerl_regexp" }, -{ "trigger": "xmerl_sax_old_dom", "contents": "xmerl_sax_old_dom" }, -{ "trigger": "xmerl_sax_parser", "contents": "xmerl_sax_parser" }, -{ "trigger": "xmerl_sax_parser_latin1", "contents": "xmerl_sax_parser_latin1" }, -{ "trigger": "xmerl_sax_parser_list", "contents": "xmerl_sax_parser_list" }, -{ "trigger": "xmerl_sax_parser_utf16be", "contents": "xmerl_sax_parser_utf16be" }, -{ "trigger": "xmerl_sax_parser_utf16le", "contents": "xmerl_sax_parser_utf16le" }, -{ "trigger": "xmerl_sax_parser_utf8", "contents": "xmerl_sax_parser_utf8" }, -{ "trigger": "xmerl_sax_simple_dom", "contents": "xmerl_sax_simple_dom" }, -{ "trigger": "xmerl_scan", "contents": "xmerl_scan" }, -{ "trigger": "xmerl_sgml", "contents": "xmerl_sgml" }, -{ "trigger": "xmerl_simple", "contents": "xmerl_simple" }, -{ "trigger": "xmerl_text", "contents": "xmerl_text" }, -{ "trigger": "xmerl_ucs", "contents": "xmerl_ucs" }, -{ "trigger": "xmerl_uri", "contents": "xmerl_uri" }, -{ "trigger": "xmerl_validate", "contents": "xmerl_validate" }, -{ "trigger": "xmerl_xlate", "contents": "xmerl_xlate" }, -{ "trigger": "xmerl_xml", "contents": "xmerl_xml" }, -{ "trigger": "xmerl_xpath", "contents": "xmerl_xpath" }, -{ "trigger": "xmerl_xpath_lib", "contents": "xmerl_xpath_lib" }, -{ "trigger": "xmerl_xpath_parse", "contents": "xmerl_xpath_parse" }, -{ "trigger": "xmerl_xpath_pred", "contents": "xmerl_xpath_pred" }, -{ "trigger": "xmerl_xpath_scan", "contents": "xmerl_xpath_scan" }, -{ "trigger": "xmerl_xs", "contents": "xmerl_xs" }, -{ "trigger": "xmerl_xsd", "contents": "xmerl_xsd" }, -{ "trigger": "xmerl_xsd_type", "contents": "xmerl_xsd_type" }, -{ "trigger": "abs/1", "contents": "abs(${1:Number}) $2" }, -{ "trigger": "atom_to_binary/2", "contents": "atom_to_binary(${1:Atom}, ${2:Encoding}) $3" }, -{ "trigger": "atom_to_list/1", "contents": "atom_to_list(${1:Atom}) $2" }, -{ "trigger": "binary_part/2", "contents": "binary_part(${1:Subject}, ${2:PosLen}) $3" }, -{ "trigger": "binary_part/3", "contents": "binary_part(${1:Subject}, ${2:Start}, ${3:Length}) $4" }, -{ "trigger": "binary_to_atom/2", "contents": "binary_to_atom(${1:Binary}, ${2:Encoding}) $3" }, -{ "trigger": "binary_to_existing_atom/2", "contents": "binary_to_existing_atom(${1:Binary}, ${2:Encoding}) $3" }, -{ "trigger": "binary_to_list/1", "contents": "binary_to_list(${1:Binary}) $2" }, -{ "trigger": "binary_to_list/3", "contents": "binary_to_list(${1:Binary}, ${2:Start}, ${3:Stop}) $4" }, -{ "trigger": "bitstring_to_list/1", "contents": "bitstring_to_list(${1:Bitstring}) $2" }, -{ "trigger": "binary_to_term/2", "contents": "binary_to_term(${1:Binary}, ${2:Opts}) $3" }, -{ "trigger": "bit_size/1", "contents": "bit_size(${1:Bitstring}) $2" }, -{ "trigger": "byte_size/1", "contents": "byte_size(${1:Bitstring}) $2" }, -{ "trigger": "check_old_code/1", "contents": "check_old_code(${1:Module}) $2" }, -{ "trigger": "check_process_code/2", "contents": "check_process_code(${1:Pid}, ${2:Module}) $3" }, -{ "trigger": "date/0", "contents": "date() $1" }, -{ "trigger": "delete_module/1", "contents": "delete_module(${1:Module}) $2" }, -{ "trigger": "demonitor/1", "contents": "demonitor(${1:MonitorRef}) $2" }, -{ "trigger": "demonitor/2", "contents": "demonitor(${1:MonitorRef}, ${2:OptionList}) $3" }, -{ "trigger": "element/2", "contents": "element(${1:N}, ${2:Tuple}) $3" }, -{ "trigger": "erase/0", "contents": "erase() $1" }, -{ "trigger": "erase/1", "contents": "erase(${1:Key}) $2" }, -{ "trigger": "error/1", "contents": "error(${1:Reason}) $2" }, -{ "trigger": "error/2", "contents": "error(${1:Reason}, ${2:Args}) $3" }, -{ "trigger": "exit/1", "contents": "exit(${1:Reason}) $2" }, -{ "trigger": "exit/2", "contents": "exit(${1:Reason}, ${2:Args}) $3" }, -{ "trigger": "float/1", "contents": "float(${1:Number}) $2" }, -{ "trigger": "float_to_list/1", "contents": "float_to_list(${1:Float}) $2" }, -{ "trigger": "garbage_collect/0", "contents": "garbage_collect() $1" }, -{ "trigger": "garbage_collect/1", "contents": "garbage_collect(${1:Pid}) $2" }, -{ "trigger": "get/0", "contents": "get() $1" }, -{ "trigger": "get/1", "contents": "get(${1:Key}) $2" }, -{ "trigger": "get_keys/1", "contents": "get_keys(${1:Val}) $2" }, -{ "trigger": "group_leader/0", "contents": "group_leader() $1" }, -{ "trigger": "group_leader/2", "contents": "group_leader(${1:GroupLeader}, ${2:Pid}) $3" }, -{ "trigger": "halt/0", "contents": "halt() $1" }, -{ "trigger": "halt/1", "contents": "halt(${1:Status}) $2" }, -{ "trigger": "halt/2", "contents": "halt(${1:Status}, ${2:Options}) $3" }, -{ "trigger": "hd/1", "contents": "hd(${1:List}) $2" }, -{ "trigger": "integer_to_list/1", "contents": "integer_to_list(${1:Integer}) $2" }, -{ "trigger": "iolist_to_binary/1", "contents": "iolist_to_binary(${1:IoListOrBinary}) $2" }, -{ "trigger": "iolist_size/1", "contents": "iolist_size(${1:Item}) $2" }, -{ "trigger": "is_alive/0", "contents": "is_alive() $1" }, -{ "trigger": "is_atom/1", "contents": "is_atom(${1:Term}) $2" }, -{ "trigger": "is_binary/1", "contents": "is_binary(${1:Term}) $2" }, -{ "trigger": "is_bitstring/1", "contents": "is_bitstring(${1:Term}) $2" }, -{ "trigger": "is_boolean/1", "contents": "is_boolean(${1:Term}) $2" }, -{ "trigger": "is_float/1", "contents": "is_float(${1:Term}) $2" }, -{ "trigger": "is_function/1", "contents": "is_function(${1:Term}) $2" }, -{ "trigger": "is_function/2", "contents": "is_function(${1:Term}, ${2:Arity}) $3" }, -{ "trigger": "is_integer/1", "contents": "is_integer(${1:Term}) $2" }, -{ "trigger": "is_list/1", "contents": "is_list(${1:Term}) $2" }, -{ "trigger": "is_number/1", "contents": "is_number(${1:Term}) $2" }, -{ "trigger": "is_pid/1", "contents": "is_pid(${1:Term}) $2" }, -{ "trigger": "is_port/1", "contents": "is_port(${1:Term}) $2" }, -{ "trigger": "is_process_alive/1", "contents": "is_process_alive(${1:Pid}) $2" }, -{ "trigger": "is_record/2", "contents": "is_record(${1:Term}, ${2:RecordTag}) $3" }, -{ "trigger": "is_record/3", "contents": "is_record(${1:Term}, ${2:RecordTag}, ${3:Size}) $4" }, -{ "trigger": "is_reference/1", "contents": "is_reference(${1:Term}) $2" }, -{ "trigger": "is_tuple/1", "contents": "is_tuple(${1:Term}) $2" }, -{ "trigger": "length/1", "contents": "length(${1:List}) $2" }, -{ "trigger": "link/1", "contents": "link(${1:Pid}) $2" }, -{ "trigger": "list_to_atom/1", "contents": "list_to_atom(${1:String}) $2" }, -{ "trigger": "list_to_binary/1", "contents": "list_to_binary(${1:IoList}) $2" }, -{ "trigger": "list_to_bitstring/1", "contents": "list_to_bitstring(${1:BitstringList}) $2" }, -{ "trigger": "list_to_existing_atom/1", "contents": "list_to_existing_atom(${1:String}) $2" }, -{ "trigger": "list_to_float/1", "contents": "list_to_float(${1:String}) $2" }, -{ "trigger": "list_to_integer/1", "contents": "list_to_integer(${1:String}) $2" }, -{ "trigger": "list_to_pid/1", "contents": "list_to_pid(${1:String}) $2" }, -{ "trigger": "list_to_tuple/1", "contents": "list_to_tuple(${1:List}) $2" }, -{ "trigger": "load_module/2", "contents": "load_module(${1:Module}, ${2:Binary}) $3" }, -{ "trigger": "make_ref/0", "contents": "make_ref() $1" }, -{ "trigger": "module_loaded/1", "contents": "module_loaded(${1:Module}) $2" }, -{ "trigger": "monitor/2", "contents": "monitor(${1:Type}, ${2:Item}) $3" }, -{ "trigger": "monitor_node/2", "contents": "monitor_node(${1:Node}, ${2:Flag}) $3" }, -{ "trigger": "node/0", "contents": "node() $1" }, -{ "trigger": "node/1", "contents": "node(${1:Arg}) $2" }, -{ "trigger": "nodes/1", "contents": "nodes(${1:Arg}) $2" }, -{ "trigger": "now/0", "contents": "now() $1" }, -{ "trigger": "open_port/2", "contents": "open_port(${1:PortName}, ${2:PortSettings}) $3" }, -{ "trigger": "pid_to_list/1", "contents": "pid_to_list(${1:Pid}) $2" }, -{ "trigger": "port_close/1", "contents": "port_close(${1:Port}) $2" }, -{ "trigger": "port_command/2", "contents": "port_command(${1:Port}, ${2:Data}) $3" }, -{ "trigger": "port_command/3", "contents": "port_command(${1:Port}, ${2:Data}, ${3:OptionList}) $4" }, -{ "trigger": "port_connect/2", "contents": "port_connect(${1:Port}, ${2:Pid}) $3" }, -{ "trigger": "port_control/3", "contents": "port_control(${1:Port}, ${2:Operation}, ${3:Data}) $4" }, -{ "trigger": "pre_loaded/0", "contents": "pre_loaded() $1" }, -{ "trigger": "process_flag/2", "contents": "process_flag(${1:Flag}, ${2:Value}) $3" }, -{ "trigger": "process_flag/3", "contents": "process_flag(${1:Pid}, ${2:Flag}, ${3:Value}) $4" }, -{ "trigger": "process_info/1", "contents": "process_info(${1:Pid}) $2" }, -{ "trigger": "process_info/2", "contents": "process_info(${1:Pid}, ${2:ItemSpec}) $3" }, -{ "trigger": "processes/0", "contents": "processes() $1" }, -{ "trigger": "purge_module/1", "contents": "purge_module(${1:Module}) $2" }, -{ "trigger": "put/2", "contents": "put(${1:Key}, ${2:Val}) $3" }, -{ "trigger": "register/2", "contents": "put(${1:RegName}, ${2:PidOrPort}) $3" }, -{ "trigger": "registered/0", "contents": "registered() $1" }, -{ "trigger": "round/1", "contents": "round(${1:Number}) $2" }, -{ "trigger": "self/0", "contents": "self() $1" }, -{ "trigger": "setelement/3", "contents": "setelement(${1:Index}, ${2:Tuple1}, ${3:Value}) $4" }, -{ "trigger": "size/1", "contents": "size(${1:Item}) $2" }, -{ "trigger": "spawn/3", "contents": "spawn(${1:Module}, ${2:Function}) $3, ${3:Args}) $4" }, -{ "trigger": "spawn_link/3", "contents": "spawn_link(${1:Module}, ${2:Function}, ${3:Args}) $4" }, -{ "trigger": "split_binary/2", "contents": "split_binary(${1:Bin}, ${2:Pos}) $3" }, -{ "trigger": "statistics/1", "contents": "statistics(${1:Type}) $2" }, -{ "trigger": "term_to_binary/1", "contents": "term_to_binary(${1:Term}) $2" }, -{ "trigger": "term_to_binary/2", "contents": "term_to_binary(${1:Term}, ${2:Options}) $3" }, -{ "trigger": "throw/1", "contents": "throw(${1:Any}) $2" }, -{ "trigger": "time/0", "contents": "time() $1" }, -{ "trigger": "tl/1", "contents": "tl(${1:List1}) $2" }, -{ "trigger": "trunc/1", "contents": "trunc(${1:Number}) $2" }, -{ "trigger": "tuple_size/1", "contents": "tuple_size(${1:Tuple}) $2" }, -{ "trigger": "tuple_to_list/1", "contents": "tuple_to_list(${1:Tuple}) $2" }, -{ "trigger": "unlink/1", "contents": "unlink(${1:Id}) $2" }, -{ "trigger": "unregister/1", "contents": "unregister(${1:RegName}) $2" }, -{ "trigger": "whereis/1", "contents": "whereis(${1:RegName}) $2" } -]} \ No newline at end of file diff --git a/completion/Erlang.sublime-settings b/completion/Erlang.sublime-settings deleted file mode 100644 index a99d6af..0000000 --- a/completion/Erlang.sublime-settings +++ /dev/null @@ -1,4 +0,0 @@ -{ - // trigger autocomplete - "auto_complete_triggers": [ {"selector": "source.erlang", "characters": ":"} ] -} \ No newline at end of file diff --git a/sublimerl.py b/sublimerl.py new file mode 100644 index 0000000..594cfcf --- /dev/null +++ b/sublimerl.py @@ -0,0 +1,19 @@ +import sublime +import sublime_plugin +import os +import sys + +from .sublimerl_lib.sublimerl_completion import SublimErlModuleNameCompletions +from .sublimerl_lib import * + +# globals +SUBLIMERL_VERSION = '0.5.1' + +def plugin_loaded(): + """Called directly from sublime on plugin load + """ + # package_folder = os.path.dirname(__file__) + # if os.path.exists(os.path.join(package_folder, 'sublimerl_lib')): + # sys.path.append(os.path.join(package_folder, 'sublimerl_lib')) + + SublimErlModuleNameCompletions().set_completions_threaded() diff --git a/sublimerl_completion.py b/sublimerl_completion.py deleted file mode 100644 index 1c8d33e..0000000 --- a/sublimerl_completion.py +++ /dev/null @@ -1,264 +0,0 @@ -# ========================================================================================================== -# SublimErl - A Sublime Text 2 Plugin for Erlang Integrated Testing & Code Completion -# -# Copyright (C) 2013, Roberto Ostinelli . -# All rights reserved. -# -# BSD License -# -# Redistribution and use in source and binary forms, with or without modification, are permitted provided -# that the following conditions are met: -# -# * Redistributions of source code must retain the above copyright notice, this list of conditions and the -# following disclaimer. -# * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and -# the following disclaimer in the documentation and/or other materials provided with the distribution. -# * Neither the name of the authors nor the names of its contributors may be used to endorse or promote -# products derived from this software without specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A -# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -# POSSIBILITY OF SUCH DAMAGE. -# ========================================================================================================== - -# imports -import sublime, sublime_plugin -import os, threading, pickle, json, re -from sublimerl_core import SUBLIMERL, SublimErlProjectLoader - -SUBLIMERL_COMPLETIONS = { - 'erlang_libs': { - 'completions': {}, - 'load_in_progress': False, - 'rebuilt': False - }, - 'current_project': { - 'completions': {}, - 'load_in_progress': False, - 'rebuild_in_progress': False - } -} - -# erlang module name completions -class SublimErlModuleNameCompletions(): - - def set_completions(self): - # if errors occurred - if SUBLIMERL.plugin_path == None: return - # load json - completions_full_path = os.path.join(SUBLIMERL.plugin_path, 'completion', 'Erlang-Libs.sublime-completions.full') - if os.path.exists(completions_full_path): - f = open(completions_full_path) - file_json = json.load(f) - f.close() - # filter - - completions = [] - for m in file_json['completions']: - valid = True - for regex in SUBLIMERL.completion_skip_erlang_libs: - if re.search(regex, m['trigger']): - valid = False - break - if valid == True: completions.append(m) - # generate completion file - file_json['completions'] = completions - f = open(os.path.join(SUBLIMERL.plugin_path, 'completion', 'Erlang-Libs.sublime-completions'), 'w') - f.write(json.dumps(file_json)) - f.close() - - def set_completions_threaded(self): - this = self - class SublimErlThread(threading.Thread): - def run(self): - this.set_completions() - SublimErlThread().start() - -SublimErlModuleNameCompletions().set_completions_threaded() - - -# completions -class SublimErlCompletions(SublimErlProjectLoader): - - def get_available_completions(self): - # load current erlang libs - if SUBLIMERL_COMPLETIONS['erlang_libs']['completions'] == {}: self.load_erlang_lib_completions() - # start rebuilding: only done once per sublimerl session - # [i.e. needs sublime text restart to regenerate erlang completions] - self.generate_erlang_lib_completions() - # generate & load project files - self.generate_project_completions() - - def get_completion_filename(self, code_type): - if code_type == 'erlang_libs': return 'Erlang-Libs' - elif code_type == 'current_project': return 'Current-Project' - - def load_erlang_lib_completions(self): - self.load_completions('erlang_libs') - - def load_current_project_completions(self): - self.load_completions('current_project') - - def load_completions(self, code_type): - # check lock - global SUBLIMERL_COMPLETIONS - if SUBLIMERL_COMPLETIONS[code_type]['load_in_progress'] == True: return - # set lock - SUBLIMERL_COMPLETIONS[code_type]['load_in_progress'] = True - # load - this = self - class SublimErlThread(threading.Thread): - def run(self): - global SUBLIMERL_COMPLETIONS - # load completetions from file - disasm_filepath = os.path.join(SUBLIMERL.plugin_path, "completion", "%s.disasm" % this.get_completion_filename(code_type)) - if os.path.exists(disasm_filepath): - # load file - f = open(disasm_filepath, 'r') - completions = pickle.load(f) - f.close() - # set - SUBLIMERL_COMPLETIONS[code_type]['completions'] = completions - - # release lock - SUBLIMERL_COMPLETIONS[code_type]['load_in_progress'] = False - - SublimErlThread().start() - - def generate_erlang_lib_completions(self): - # check lock - global SUBLIMERL_COMPLETIONS - if SUBLIMERL_COMPLETIONS['erlang_libs']['rebuilt'] == True: return - # set lock - SUBLIMERL_COMPLETIONS['erlang_libs']['rebuilt'] = True - - # rebuild - this = self - class SublimErlThread(threading.Thread): - def run(self): - # get dirs - dest_file_base = os.path.join(SUBLIMERL.completions_path, "Erlang-Libs") - # get erlang libs info - current_erlang_libs = [name for name in os.listdir(SUBLIMERL.erlang_libs_path) if os.path.isdir(os.path.join(SUBLIMERL.erlang_libs_path, name))] - # read file of previous erlang libs - dirinfo_path = os.path.join(SUBLIMERL.completions_path, "Erlang-Libs.dirinfo") - if os.path.exists(dirinfo_path): - f = open(dirinfo_path, 'rb') - erlang_libs = pickle.load(f) - f.close() - if current_erlang_libs == erlang_libs: - # same erlang libs, do not regenerate - return - # different erlang libs -> regenerate - this.status("Regenerating Erlang lib completions...") - # set cwd - os.chdir(SUBLIMERL.support_path) - # start gen - this.execute_os_command("python sublimerl_libparser.py %s %s" % (this.shellquote(SUBLIMERL.erlang_libs_path), this.shellquote(dest_file_base))) - # rename file to .full - os.rename("%s.sublime-completions" % dest_file_base, "%s.sublime-completions.full" % dest_file_base) - # save dir information - f = open(dirinfo_path, 'wb') - pickle.dump(current_erlang_libs, f) - f.close() - # regenerate completions based on options - SublimErlModuleNameCompletions().set_completions() - # trigger event to reload completions - this.load_erlang_lib_completions() - this.status("Finished regenerating Erlang lib completions.") - - SublimErlThread().start() - - def generate_project_completions(self): - # check lock - global SUBLIMERL_COMPLETIONS - if SUBLIMERL_COMPLETIONS['current_project']['rebuild_in_progress'] == True: return - # set lock - SUBLIMERL_COMPLETIONS['current_project']['rebuild_in_progress'] = True - - # rebuild - this = self - class SublimErlThread(threading.Thread): - def run(self): - global SUBLIMERL_COMPLETIONS - this.status("Regenerating Project completions...") - # get dir - dest_file_base = os.path.join(SUBLIMERL.completions_path, "Current-Project") - # set cwd - os.chdir(SUBLIMERL.support_path) - # start gen - this.execute_os_command("python sublimerl_libparser.py %s %s" % (this.shellquote(this.project_root), this.shellquote(dest_file_base))) - # release lock - SUBLIMERL_COMPLETIONS['current_project']['rebuild_in_progress'] = False - # trigger event to reload completions - this.load_current_project_completions() - this.status("Finished regenerating Project completions.") - - SublimErlThread().start() - - -# listener -class SublimErlCompletionsListener(sublime_plugin.EventListener): - - # CALLBACK ON VIEW SAVE - def on_post_save(self, view): - # check init successful - if SUBLIMERL.initialized == False: return - # ensure context matches - caret = view.sel()[0].a - if not ('source.erlang' in view.scope_name(caret) and sublime.platform() != 'windows'): return - # init - completions = SublimErlCompletions(view) - # compile saved file & reload completions - class SublimErlThread(threading.Thread): - def run(self): - # trigger event to reload completions - completions.generate_project_completions() - SublimErlThread().start() - - # CALLBACK ON VIEW LOADED - def on_load(self, view): - # check init successful - if SUBLIMERL.initialized == False: return - # only trigger within erlang - caret = view.sel()[0].a - if not ('source.erlang' in view.scope_name(caret) and sublime.platform() != 'windows'): return - # init - completions = SublimErlCompletions(view) - # get completions - class SublimErlThread(threading.Thread): - def run(self): - # trigger event to reload completions - completions.get_available_completions() - SublimErlThread().start() - - # CALLBACK ON QUERY COMPLETIONS - def on_query_completions(self, view, prefix, locations): - # check init successful - if SUBLIMERL.initialized == False: return - # only trigger within erlang - if not view.match_selector(locations[0], "source.erlang"): return [] - - # only trigger if : was hit - pt = locations[0] - len(prefix) - 1 - ch = view.substr(sublime.Region(pt, pt + 1)) - if ch != ':': return [] - - # get function name that triggered the autocomplete - function_name = view.substr(view.word(pt)) - if function_name.strip() == ':': return - # check for existance - global SUBLIMERL_COMPLETIONS - if SUBLIMERL_COMPLETIONS['erlang_libs']['completions'].has_key(function_name): - available_completions = SUBLIMERL_COMPLETIONS['erlang_libs']['completions'][function_name] - elif SUBLIMERL_COMPLETIONS['current_project']['completions'].has_key(function_name): - available_completions = SUBLIMERL_COMPLETIONS['current_project']['completions'][function_name] - else: return - - # return snippets - return (available_completions, sublime.INHIBIT_WORD_COMPLETIONS | sublime.INHIBIT_EXPLICIT_COMPLETIONS) diff --git a/sublimerl_core.py b/sublimerl_core.py deleted file mode 100644 index fc2cd25..0000000 --- a/sublimerl_core.py +++ /dev/null @@ -1,345 +0,0 @@ -# ========================================================================================================== -# SublimErl - A Sublime Text 2 Plugin for Erlang Integrated Testing & Code Completion -# -# Copyright (C) 2013, Roberto Ostinelli . -# All rights reserved. -# -# BSD License -# -# Redistribution and use in source and binary forms, with or without modification, are permitted provided -# that the following conditions are met: -# -# * Redistributions of source code must retain the above copyright notice, this list of conditions and the -# following disclaimer. -# * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and -# the following disclaimer in the documentation and/or other materials provided with the distribution. -# * Neither the name of the authors nor the names of its contributors may be used to endorse or promote -# products derived from this software without specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A -# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -# POSSIBILITY OF SUCH DAMAGE. -# ========================================================================================================== - -# globals -SUBLIMERL_VERSION = '0.5.1' - -# imports -import sublime, sublime_plugin -import os, subprocess, re - -# plugin initialized (Sublime might need to be restarted if some env configs / preferences change) -class SublimErlGlobal(): - - def __init__(self): - # default - self.initialized = False - self.init_errors = [] - - self.plugin_path = None - self.completions_path = None - self.support_path = None - - self.erl_path = None - self.escript_path = None - self.rebar_path = None - self.dialyzer_path = None - self.erlang_libs_path = None - - self.last_test = None - self.last_test_type = None - self.test_in_progress = False - - self.env = None - self.settings = None - self.completion_skip_erlang_libs = None - - # initialize - self.set_settings() - self.set_env() - self.set_completion_skip_erlang_libs() - - if self.set_paths() == True and self.set_erlang_libs_path() == True: - # available - self.initialized = True - - def set_settings(self): - self.settings = sublime.load_settings('SublimErl.sublime-settings') - - def set_env(self): - # TODO: enhance the finding of paths - self.env = os.environ.copy() - if sublime.platform() == 'osx': - # get relevant file paths - etc_paths = ['/etc/paths'] - for f in os.listdir('/etc/paths.d'): - etc_paths.append(os.path.join('/etc/paths.d', f)) - # bash profile - bash_profile_path = os.path.join(os.getenv('HOME'), '.bash_profile') - # get env paths - additional_paths = "%s:%s" % (self._readfiles_one_path_per_line(etc_paths), self._readfiles_exported_paths([bash_profile_path])) - # add - self.env['PATH'] = self.env['PATH'] + additional_paths - - def _readfiles_one_path_per_line(self, file_paths): - concatenated_paths = [] - for file_path in file_paths: - if os.path.exists(file_path): - f = open(file_path, 'r') - paths = f.read() - f.close() - paths = paths.split('\n') - for path in paths: - concatenated_paths.append(path.strip()) - return ':'.join(concatenated_paths) - - def _readfiles_exported_paths(self, file_paths): - concatenated_paths = [] - for file_path in file_paths: - if os.path.exists(file_path): - p = subprocess.Popen(". %s; echo $PATH" % file_path, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True) - path, stderr = p.communicate() - concatenated_paths.append(path.strip()) - return ''.join(concatenated_paths) - - def set_paths(self): - - def log(message): - self.init_errors.append(message) - print "SublimErl Init Error: %s" % message - - def test_path(path): - return path != None and os.path.exists(path) - - # erl check - self.erl_path = self.settings.get('erl_path', self.get_exe_path('erl')) - if test_path(self.erl_path) == False: - log("Erlang binary (erl) cannot be found.") - - # escript check - self.escript_path = self.settings.get('escript_path', self.get_exe_path('escript')) - if test_path(self.escript_path) == False: - log("Erlang binary (escript) cannot be found.") - - # rebar - self.rebar_path = self.settings.get('rebar_path', self.get_exe_path('rebar')) - if test_path(self.rebar_path) == False: - log("Rebar cannot be found, please download and install from .") - return False - return False - - # dialyzer check - self.dialyzer_path = self.settings.get('dialyzer_path', self.get_exe_path('dialyzer')) - if test_path(self.dialyzer_path) == False: - log("Erlang Dyalizer cannot be found.") - return False - - # paths - self.plugin_path = os.path.join(sublime.packages_path(), 'SublimErl') - self.completions_path = os.path.join(self.plugin_path, "completion") - self.support_path = os.path.join(self.plugin_path, "support") - - return True - - def strip_code_for_parsing(self, code): - code = self.strip_comments(code) - code = self.strip_quoted_content(code) - return self.strip_record_with_dots(code) - - def strip_comments(self, code): - # strip comments but keep the same character count - return re.sub(re.compile(r"%(.*)\n"), lambda m: (len(m.group(0)) - 1) * ' ' + '\n', code) - - def strip_quoted_content(self, code): - # strip quoted content - regex = re.compile(r"(\"([^\"]*)\")", re.MULTILINE + re.DOTALL) - for m in regex.finditer(code): - code = code[:m.start()] + (len(m.groups()[0]) * ' ') + code[m.end():] - return code - - def strip_record_with_dots(self, code): - # strip records with dot notation - return re.sub(re.compile(r"(\.[a-z]+)"), lambda m: len(m.group(0)) * ' ', code) - - def get_erlang_module_name(self, view): - # find module declaration and get module name - module_region = view.find(r"^\s*-\s*module\s*\(\s*(?:[a-zA-Z0-9_]+)\s*\)\s*\.", 0) - if module_region != None: - m = re.match(r"^\s*-\s*module\s*\(\s*([a-zA-Z0-9_]+)\s*\)\s*\.", view.substr(module_region)) - return m.group(1) - - def get_exe_path(self, name): - retcode, data = self.execute_os_command('which %s' % name) - data = data.strip() - if retcode == 0 and len(data) > 0: - return data - - def set_erlang_libs_path(self): - # run escript to get erlang lib path - os.chdir(self.support_path) - escript_command = "sublimerl_utility.erl lib_dir" - retcode, data = self.execute_os_command('%s %s' % (self.escript_path, escript_command)) - self.erlang_libs_path = data - return self.erlang_libs_path != '' - - def set_completion_skip_erlang_libs(self): - self.completion_skip_erlang_libs = self.settings.get('completion_skip_erlang_libs', []) - - def execute_os_command(self, os_cmd): - # start proc - p = subprocess.Popen(os_cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True, env=self.env) - stdout, stderr = p.communicate() - return (p.returncode, stdout) - - - def shellquote(self, s): - return "'" + s.replace("'", "'\\''") + "'" - - -# initialize -SUBLIMERL = SublimErlGlobal() - - -# project loader -class SublimErlProjectLoader(): - - def __init__(self, view): - # init - self.view = view - self.window = view.window() - self.status_buffer = '' - - self.erlang_module_name = None - self.project_root = None - self.test_root = None - self.app_name = None - - self.set_erlang_module_name() - self.set_project_roots() - self.set_app_name() - - def set_erlang_module_name(self): - self.erlang_module_name = SUBLIMERL.get_erlang_module_name(self.view) - - def set_project_roots(self): - # get project & file roots - current_file_path = os.path.dirname(self.view.file_name()) - project_root, file_test_root = self.find_project_roots(current_file_path) - - if project_root == file_test_root == None: - self.project_root = self.test_root = None - return - - # save - self.project_root = os.path.abspath(project_root) - self.test_root = os.path.abspath(file_test_root) - - def find_project_roots(self, current_dir, project_root_candidate=None, file_test_root_candidate=None): - # if rebar.config or an ebin directory exists, save as potential candidate - if os.path.exists(os.path.join(current_dir, 'rebar.config')) or os.path.exists(os.path.join(current_dir, 'ebin')): - # set project root candidate - project_root_candidate = current_dir - # set test root candidate if none set yet - if file_test_root_candidate == None: file_test_root_candidate = current_dir - - current_dir_split = current_dir.split(os.sep) - # if went up to root, stop and return current candidate - if len(current_dir_split) < 2: return (project_root_candidate, file_test_root_candidate) - # walk up directory - current_dir_split.pop() - return self.find_project_roots(os.sep.join(current_dir_split), project_root_candidate, file_test_root_candidate) - - def set_app_name(self): - # get app file - src_path = os.path.join(self.test_root, 'src') - for f in os.listdir(src_path): - if f.endswith('.app.src'): - app_file_path = os.path.join(src_path, f) - self.app_name = self.find_app_name(app_file_path) - - def find_app_name(self, app_file_path): - f = open(app_file_path, 'rb') - app_desc = f.read() - f.close() - m = re.search(r"{\s*application\s*,\s*('?[A-Za-z0-9_]+'?)\s*,\s*\[", app_desc) - if m: - return m.group(1) - - def update_status(self): - if len(self.status_buffer): - sublime.status_message(self.status_buffer) - self.status_buffer = '' - - def status(self, text): - self.status_buffer += text - sublime.set_timeout(self.update_status, 0) - - def log(self, text): - pass - - def get_test_env(self): - env = SUBLIMERL.env.copy() - env['PATH'] = "%s:%s:" % (env['PATH'], self.project_root) - return env - - def compile_source(self, skip_deps=False): - # compile to ebin - options = 'skip_deps=true' if skip_deps else '' - retcode, data = self.execute_os_command('%s compile %s' % (SUBLIMERL.rebar_path, options), dir_type='project', block=True, log=False) - return (retcode, data) - - def shellquote(self, s): - return SUBLIMERL.shellquote(s) - - def execute_os_command(self, os_cmd, dir_type=None, block=False, log=True): - # set dir - if dir_type == 'project': os.chdir(self.project_root) - elif dir_type == 'test': os.chdir(self.test_root) - - if log == True: self.log("%s$ %s\n\n" % (os.getcwd(), os_cmd)) - - # start proc - current_env = self.get_test_env() - p = subprocess.Popen(os_cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True, env=current_env) - if block == True: - stdout, stderr = p.communicate() - return (p.returncode, stdout) - else: - stdout = [] - for line in p.stdout: - self.log(line) - stdout.append(line) - return (p.returncode, ''.join(stdout)) - - -# common text command class -class SublimErlTextCommand(sublime_plugin.TextCommand): - def run(self, edit): - # run only if context matches - if self._context_match(): - # check - if SUBLIMERL.initialized == False: - # self.log("SublimErl could not be initialized:\n\n%s\n" % '\n'.join(SUBLIMERL.init_errors)) - print "SublimErl could not be initialized:\n\n%s\n" % '\n'.join(SUBLIMERL.init_errors) - return - else: - return self.run_command(edit) - - def _context_match(self): - # context matches if lang is source.erlang and if platform is not windows - caret = self.view.sel()[0].a - if 'source.erlang' in self.view.scope_name(caret) and sublime.platform() != 'windows': return True - else: return False - - def is_enabled(self): - # context menu - if self._context_match(): return self.show_contextual_menu() - - def show_contextual_menu(self): - # can be overridden - return True diff --git a/sublimerl_function_search.py b/sublimerl_function_search.py deleted file mode 100644 index 22d4eb7..0000000 --- a/sublimerl_function_search.py +++ /dev/null @@ -1,103 +0,0 @@ -# ========================================================================================================== -# SublimErl - A Sublime Text 2 Plugin for Erlang Integrated Testing & Code Completion -# -# Copyright (C) 2013, Roberto Ostinelli . -# All rights reserved. -# -# BSD License -# -# Redistribution and use in source and binary forms, with or without modification, are permitted provided -# that the following conditions are met: -# -# * Redistributions of source code must retain the above copyright notice, this list of conditions and the -# following disclaimer. -# * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and -# the following disclaimer in the documentation and/or other materials provided with the distribution. -# * Neither the name of the authors nor the names of its contributors may be used to endorse or promote -# products derived from this software without specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A -# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -# POSSIBILITY OF SUCH DAMAGE. -# ========================================================================================================== - - -# imports -import sublime -import os, time, threading, pickle -from sublimerl_core import SUBLIMERL, SublimErlTextCommand, SublimErlProjectLoader -from sublimerl_completion import SUBLIMERL_COMPLETIONS - - -# main autoformat -class SublimErlFunctionSearch(): - - def __init__(self, view): - # init - self.view = view - self.window = view.window() - self.search_completions = [] - - def show(self): - # get completions - self.set_search_completions() - # strip out just the function name to be displayed - completions = [] - for name, filepath, lineno in self.search_completions: - completions.append(name) - # open quick panel - sublime.active_window().show_quick_panel(completions, self.on_select) - - def set_search_completions(self): - # load file - searches_filepath = os.path.join(SUBLIMERL.plugin_path, "completion", "Current-Project.searches") - f = open(searches_filepath, 'r') - searches = pickle.load(f) - f.close() - self.search_completions = searches - - def on_select(self, index): - # get file and line - name, filepath, lineno = self.search_completions[index] - # open module at function position - self.open_file_and_goto_line(filepath, lineno) - - def open_file_and_goto_line(self, filepath, line): - # open file - self.new_view = self.window.open_file(filepath) - # wait until file is loaded before going to the appropriate line - this = self - self.check_file_loading() - class SublimErlThread(threading.Thread): - def run(self): - # wait until file has done loading - s = 0 - while this.is_loading and s < 3: - time.sleep(0.1) - sublime.set_timeout(this.check_file_loading, 0) - s += 1 - # goto line - def goto_line(): - # goto line - this.new_view.run_command("goto_line", {"line": line} ) - # remove unused attrs - del this.new_view - del this.is_loading - if not this.is_loading: sublime.set_timeout(goto_line, 0) - - SublimErlThread().start() - - def check_file_loading(self): - self.is_loading = self.new_view.is_loading() - - -# repeat last test -class SublimErlFunctionSearchCommand(SublimErlTextCommand): - def run_command(self, edit): - search = SublimErlFunctionSearch(self.view) - search.show() diff --git a/sublimerl_lib/__init__.py b/sublimerl_lib/__init__.py new file mode 100644 index 0000000..eb4c03c --- /dev/null +++ b/sublimerl_lib/__init__.py @@ -0,0 +1,14 @@ +from .sublimerl_completion import SublimErlCompletionsListener +from .sublimerl_formatter import SublimErlAutoFormatCommand +from .sublimerl_autocompiler import SublimErlAutocompilerListener +from .sublimerl_tests_integration import SublimErlDialyzerCommand, SublimErlTestCommand, SublimErlRedoCommand, SublimErlCtResultsCommand +from .sublimerl_function_search import SublimErlFunctionSearchCommand + +__all__ = ["SublimErlCompletionsListener", + "SublimErlAutoFormatCommand", + "SublimErlAutocompilerListener", + "SublimErlDialyzerCommand", + "SublimErlTestCommand", + "SublimErlRedoCommand", + "SublimErlCtResultsCommand", + "SublimErlFunctionSearchCommand"] diff --git a/sublimerl_autocompiler.py b/sublimerl_lib/sublimerl_autocompiler.py similarity index 50% rename from sublimerl_autocompiler.py rename to sublimerl_lib/sublimerl_autocompiler.py index 1df5c65..85127d4 100644 --- a/sublimerl_autocompiler.py +++ b/sublimerl_lib/sublimerl_autocompiler.py @@ -1,4 +1,4 @@ -# ========================================================================================================== +# ======================================================================== # SublimErl - A Sublime Text 2 Plugin for Erlang Integrated Testing & Code Completion # # Copyright (C) 2013, Roberto Ostinelli . @@ -24,69 +24,68 @@ # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE # POSSIBILITY OF SUCH DAMAGE. -# ========================================================================================================== +# ======================================================================== # imports -import sublime, sublime_plugin -import os, threading -from sublimerl_core import SUBLIMERL, SublimErlProjectLoader +import sublime +import sublime_plugin +import os +import threading +from .sublimerl_core import * # test runner class SublimErlAutocompiler(SublimErlProjectLoader): - def __init__(self, view): - # init super - SublimErlProjectLoader.__init__(self, view) - # init - self.panel_name = 'sublimerl_autocompiler' - self.panel_buffer = '' - # setup panel - self.setup_panel() + def __init__(self, view): + # init super + SublimErlProjectLoader.__init__(self, view) + # init + self.panel_name = 'sublimerl_autocompiler' + self.panel_buffer = '' + + def update_panel(self): + if len(self.panel_buffer): + panel_edit = self.panel.begin_edit() + self.panel.insert(panel_edit, self.panel.size(), self.panel_buffer) + self.panel.end_edit(panel_edit) + self.panel.show(self.panel.size()) + self.panel_buffer = '' + self.window.run_command( + "show_panel", {"panel": "output.%s" % self.panel_name}) - def setup_panel(self): - self.panel = self.window.get_output_panel(self.panel_name) - self.panel.settings().set("syntax", os.path.join(SUBLIMERL.plugin_path, "theme", "SublimErlAutocompile.hidden-tmLanguage")) - self.panel.settings().set("color_scheme", os.path.join(SUBLIMERL.plugin_path, "theme", "SublimErlAutocompile.hidden-tmTheme")) + def hide_panel(self): + self.window.run_command("hide_panel") - def update_panel(self): - if len(self.panel_buffer): - panel_edit = self.panel.begin_edit() - self.panel.insert(panel_edit, self.panel.size(), self.panel_buffer) - self.panel.end_edit(panel_edit) - self.panel.show(self.panel.size()) - self.panel_buffer = '' - self.window.run_command("show_panel", {"panel": "output.%s" % self.panel_name}) + def log(self, text): + self.panel_buffer += text.encode('utf-8') + sublime.set_timeout(self.update_panel, 0) - def hide_panel(self): - self.window.run_command("hide_panel") + def compile(self): + retcode, data = self.compile_source(skip_deps=True) + if retcode != 0: + self.log(data) + else: + sublime.set_timeout(self.hide_panel, 0) - def log(self, text): - self.panel_buffer += text.encode('utf-8') - sublime.set_timeout(self.update_panel, 0) +# listener - def compile(self): - retcode, data = self.compile_source(skip_deps=True) - if retcode != 0: - self.log(data) - else: - sublime.set_timeout(self.hide_panel, 0) -# listener class SublimErlAutocompilerListener(sublime_plugin.EventListener): - # CALLBACK ON VIEW SAVE - def on_post_save(self, view): - # check init successful - if SUBLIMERL.initialized == False: return - # ensure context matches - caret = view.sel()[0].a - if not ('source.erlang' in view.scope_name(caret) and sublime.platform() != 'windows'): return - # init - autocompiler = SublimErlAutocompiler(view) - # compile saved file & reload completions - class SublimErlThread(threading.Thread): - def run(self): - # compile - autocompiler.compile() - SublimErlThread().start() + # CALLBACK ON VIEW SAVE + def on_post_save(self, view): + # ensure context matches + caret = view.sel()[0].a + if not ('source.erlang' in view.scope_name(caret) and sublime.platform() != 'windows'): + return + # init + autocompiler = SublimErlAutocompiler(view) + # compile saved file & reload completions + + class SublimErlThread(threading.Thread): + + def run(self): + # compile + autocompiler.compile() + SublimErlThread().start() diff --git a/sublimerl_lib/sublimerl_completion.py b/sublimerl_lib/sublimerl_completion.py new file mode 100644 index 0000000..47d9e7a --- /dev/null +++ b/sublimerl_lib/sublimerl_completion.py @@ -0,0 +1,320 @@ +# ======================================================================== +# SublimErl - A Sublime Text 2 Plugin for Erlang Integrated Testing & Code Completion +# +# Copyright (C) 2013, Roberto Ostinelli . +# All rights reserved. +# +# BSD License +# +# Redistribution and use in source and binary forms, with or without modification, are permitted provided +# that the following conditions are met: +# +# * Redistributions of source code must retain the above copyright notice, this list of conditions and the +# following disclaimer. +# * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and +# the following disclaimer in the documentation and/or other materials provided with the distribution. +# * Neither the name of the authors nor the names of its contributors may be used to endorse or promote +# products derived from this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A +# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR +# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED +# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. +# ======================================================================== + +# imports +import sublime +import sublime_plugin +import os +import threading +import pickle +import json +import re +from .sublimerl_core import * + +SUBLIMERL_COMPLETIONS = { + 'erlang_libs': { + 'completions': {}, + 'load_in_progress': False, + 'rebuilt': False + }, + 'current_project': { + 'completions': {}, + 'load_in_progress': False, + 'rebuild_in_progress': False + } +} + +# erlang module name completions +class SublimErlModuleNameCompletions(): + + def set_completions(self): + ''' + Generate Erlang-Libs.sublime-completions file. + ''' + plugin_path = get_plugin_path() + # if errors occurred + if plugin_path == None: + return + # load json + completions_full_path = os.path.join( + plugin_path, 'completion', 'Erlang-Libs.sublime-completions.full') + if os.path.exists(completions_full_path): + f = open(completions_full_path) + file_json = json.load(f) + f.close() + # filter + + completions = [] + for m in file_json['completions']: + valid = True + for regex in get_completion_skip_erlang_libs(): + if re.search(regex, m['trigger']): + valid = False + break + if valid == True: + completions.append(m) + # generate completion file + file_json['completions'] = completions + f = open(os.path.join(plugin_path, + 'completion', 'Erlang-Libs.sublime-completions'), 'w') + f.write(json.dumps(file_json)) + f.close() + + def set_completions_threaded(self): + this = self + + class SublimErlThread(threading.Thread): + + def run(self): + this.set_completions() + SublimErlThread().start() + + +# completions +class SublimErlCompletions(SublimErlProjectLoader): + + def get_completion_filename(self, code_type): + if code_type == 'erlang_libs': + return 'Erlang-Libs' + elif code_type == 'current_project': + return 'Current-Project' + + def get_available_completions(self): + ''' + Load erlang lib completions and project completions. + ''' + # load current erlang libs + if SUBLIMERL_COMPLETIONS['erlang_libs']['completions'] == {}: + self.load_erlang_lib_completions() + # start rebuilding: only done once per sublimerl session + # [i.e. needs sublime text restart to regenerate erlang completions] + self.generate_erlang_lib_completions() + # generate & load project files + self.generate_project_completions() + + def load_erlang_lib_completions(self): + self.load_completions('erlang_libs') + + def load_current_project_completions(self): + self.load_completions('current_project') + + def load_completions(self, code_type): + ''' + Load completions from pickled file(Erlang-Libs.disasm). + ''' + # check lock + global SUBLIMERL_COMPLETIONS + if SUBLIMERL_COMPLETIONS[code_type]['load_in_progress'] == True: + return + # set lock + SUBLIMERL_COMPLETIONS[code_type]['load_in_progress'] = True + # load + this = self + + class SublimErlThread(threading.Thread): + + def run(self): + global SUBLIMERL_COMPLETIONS + # load completetions from file + disasm_filepath = os.path.join( + get_plugin_path(), "completion", "%s.disasm" % this.get_completion_filename(code_type)) + if os.path.exists(disasm_filepath): + # load file + f = open(disasm_filepath, 'rb') + completions = pickle.load(f) + f.close() + # set + SUBLIMERL_COMPLETIONS[code_type][ + 'completions'] = completions + + # release lock + SUBLIMERL_COMPLETIONS[code_type]['load_in_progress'] = False + + SublimErlThread().start() + + def generate_erlang_lib_completions(self): + ''' + Generate erlang lib completions and store it into Erlang-Libs.disasm. + ''' + # check lock + global SUBLIMERL_COMPLETIONS + if SUBLIMERL_COMPLETIONS['erlang_libs']['rebuilt'] == True: + return + # set lock + SUBLIMERL_COMPLETIONS['erlang_libs']['rebuilt'] = True + + # rebuild + this = self + + class SublimErlThread(threading.Thread): + + def run(self): + # get dirs + dest_file_base = os.path.join( + get_completions_path(), "Erlang-Libs") + # get erlang libs info + erlang_libs_path = get_erlang_libs_path() + current_erlang_libs = [name for name in os.listdir(erlang_libs_path) if os.path.isdir( + os.path.join(erlang_libs_path, name))] + # read file of previous erlang libs + dirinfo_path = os.path.join( + get_completions_path(), "Erlang-Libs.dirinfo") + if os.path.exists(dirinfo_path): + f = open(dirinfo_path, 'rb') + erlang_libs = pickle.load(f) + f.close() + if current_erlang_libs == erlang_libs: + # same erlang libs, do not regenerate + return + # different erlang libs -> regenerate + this.status("Regenerating Erlang lib completions...") + # set cwd + os.chdir(get_support_path()) + # start gen + this.execute_os_command("python sublimerl_libparser.py %s %s" % ( + this.shellquote(get_erlang_libs_path()), this.shellquote(dest_file_base))) + # rename file to .full + os.rename("%s.sublime-completions" % dest_file_base, + "%s.sublime-completions.full" % dest_file_base) + # save dir information + f = open(dirinfo_path, 'wb') + pickle.dump(current_erlang_libs, f) + f.close() + # regenerate completions based on options + SublimErlModuleNameCompletions().set_completions() + # trigger event to reload completions + this.load_erlang_lib_completions() + this.status("Finished regenerating Erlang lib completions.") + + SublimErlThread().start() + + def generate_project_completions(self): + # check lock + global SUBLIMERL_COMPLETIONS + if SUBLIMERL_COMPLETIONS['current_project']['rebuild_in_progress'] == True: + return + # set lock + SUBLIMERL_COMPLETIONS['current_project']['rebuild_in_progress'] = True + + # rebuild + this = self + + class SublimErlThread(threading.Thread): + + def run(self): + global SUBLIMERL_COMPLETIONS + this.status("Regenerating Project completions...") + # get dir + dest_file_base = os.path.join( + get_completions_path(), "Current-Project") + # set cwd + os.chdir(get_support_path()) + # start gen + this.execute_os_command("python sublimerl_libparser.py %s %s" % ( + this.shellquote(this.project_root), this.shellquote(dest_file_base))) + # release lock + SUBLIMERL_COMPLETIONS['current_project'][ + 'rebuild_in_progress'] = False + # trigger event to reload completions + this.load_current_project_completions() + this.status("Finished regenerating Project completions.") + + SublimErlThread().start() + + +# listener +class SublimErlCompletionsListener(sublime_plugin.EventListener): + # CALLBACK ON VIEW SAVE + + def on_post_save(self, view): + # ensure context matches + caret = view.sel()[0].a + if not ('source.erlang' in view.scope_name(caret) and sublime.platform() != 'windows'): + return + # init + completions = SublimErlCompletions(view) + # compile saved file & reload completions + + class SublimErlThread(threading.Thread): + + def run(self): + # trigger event to reload completions + completions.generate_project_completions() + SublimErlThread().start() + + # CALLBACK ON VIEW LOADED + def on_load(self, view): + # only trigger within erlang + caret = view.sel()[0].a + if not ('source.erlang' in view.scope_name(caret) and sublime.platform() != 'windows'): + return + # init + completions = SublimErlCompletions(view) + # get completions + class SublimErlThread(threading.Thread): + + def run(self): + # trigger event to reload completions + completions.get_available_completions() + SublimErlThread().start() + + # CALLBACK ON QUERY COMPLETIONS + def on_query_completions(self, view, prefix, locations): + # only trigger within erlang + if not view.match_selector(locations[0], "source.erlang"): + return [] + + # check lock + global SUBLIMERL_COMPLETIONS + if SUBLIMERL_COMPLETIONS['erlang_libs']['rebuilt'] == False: + # refresh completions + completions = SublimErlCompletions(view) + # get completions + completions.get_available_completions() + + # only trigger if : was hit + pt = locations[0] - len(prefix) - 1 + ch = view.substr(sublime.Region(pt, pt + 1)) + if ch != ':': + return [] + + # get function name that triggered the autocomplete + function_name = view.substr(view.word(pt)) + if function_name.strip() == ':': + return + # check for existance + if function_name in SUBLIMERL_COMPLETIONS['erlang_libs']['completions']: + available_completions = SUBLIMERL_COMPLETIONS[ + 'erlang_libs']['completions'][function_name] + elif function_name in SUBLIMERL_COMPLETIONS['current_project']['completions']: + available_completions = SUBLIMERL_COMPLETIONS[ + 'current_project']['completions'][function_name] + else: + return + # return snippets + return (available_completions, sublime.INHIBIT_WORD_COMPLETIONS | sublime.INHIBIT_EXPLICIT_COMPLETIONS) diff --git a/sublimerl_lib/sublimerl_core.py b/sublimerl_lib/sublimerl_core.py new file mode 100644 index 0000000..81905b5 --- /dev/null +++ b/sublimerl_lib/sublimerl_core.py @@ -0,0 +1,373 @@ +# ======================================================================== +# SublimErl - A Sublime Text 2 Plugin for Erlang Integrated Testing & Code Completion +# +# Copyright (C) 2013, Roberto Ostinelli . +# All rights reserved. +# +# BSD License +# +# Redistribution and use in source and binary forms, with or without modification, are permitted provided +# that the following conditions are met: +# +# * Redistributions of source code must retain the above copyright notice, this list of conditions and the +# following disclaimer. +# * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and +# the following disclaimer in the documentation and/or other materials provided with the distribution. +# * Neither the name of the authors nor the names of its contributors may be used to endorse or promote +# products derived from this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A +# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR +# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED +# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. +# ======================================================================== + +# globals +SUBLIMERL_VERSION = '0.5.1' + +# imports +import sublime +import sublime_plugin +import os +import subprocess +import re + + +def readfiles_one_path_per_line(file_paths): + concatenated_paths = [] + for file_path in file_paths: + if os.path.exists(file_path): + f = open(file_path, 'r') + paths = f.read() + f.close() + paths = paths.split('\n') + for path in paths: + concatenated_paths.append(path.strip()) + return ':'.join(concatenated_paths) + + +def readfiles_exported_paths(file_paths): + concatenated_paths = [] + for file_path in file_paths: + if os.path.exists(file_path): + p = subprocess.Popen( + ". %s; echo $PATH" % file_path, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True) + path, stderr = p.communicate() + concatenated_paths.append(path.strip()) + return ''.join(concatenated_paths) + + +def strip_code_for_parsing(code): + code = strip_comments(code) + code = strip_quoted_content(code) + return strip_record_with_dots(code) + + +def strip_comments(code): + # strip comments but keep the same character count + return re.sub(re.compile(r"%(.*)\n"), lambda m: (len(m.group(0)) - 1) * ' ' + '\n', code) + + +def strip_quoted_content(code): + # strip quoted content + regex = re.compile(r"(\"([^\"]*)\")", re.MULTILINE + re.DOTALL) + for m in regex.finditer(code): + code = code[:m.start()] + (len(m.groups()[0]) * ' ') + code[m.end():] + return code + + +def strip_record_with_dots(code): + # strip records with dot notation + return re.sub(re.compile(r"(\.[a-z]+)"), lambda m: len(m.group(0)) * ' ', code) + + +def get_erlang_module_name(view): + # find module declaration and get module name + module_region = view.find( + r"^\s*-\s*module\s*\(\s*(?:[a-zA-Z0-9_]+)\s*\)\s*\.", 0) + if module_region != None: + m = re.match( + r"^\s*-\s*module\s*\(\s*([a-zA-Z0-9_]+)\s*\)\s*\.", view.substr(module_region)) + return m.group(1) + + +def get_exe_path(name): + retcode, data = execute_os_command('which %s' % name) + data = data.strip() + if retcode == 0 and len(data) > 0: + return data + + +def execute_os_command(os_cmd): + # start proc + p = subprocess.Popen( + os_cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True, env=get_env()) + stdout, stderr = p.communicate() + return (p.returncode, stdout.decode('utf8')) + + +def shellquote(s): + return "'" + s.replace("'", "'\\''") + "'" + + +def check_env(): + def test_path(path): + return path != None and os.path.exists(path) + + settings = sublime.load_settings('SublimErl.sublime-settings') + # erl check + erl_path = get_erl_path() + if test_path(erl_path) == False: + log("Erlang binary (erl) cannot be found.") + + # escript check + escript_path = get_escript_path() + if test_path(escript_path) == False: + log("Erlang binary (escript) cannot be found.") + + # rebar + rebar_path = get_rebar_path() + if test_path(rebar_path) == False: + log("Rebar cannot be found, please download and install from .") + return False + + # dialyzer check + dialyzer_path = get_dialyzer_path() + if test_path(dialyzer_path) == False: + log("Erlang Dyalizer cannot be found.") + return False + + +def get_plugin_path(): + plugin_path = os.path.join(sublime.packages_path(), 'SublimErl') + return plugin_path + + +def get_completions_path(): + completions_path = os.path.join(get_plugin_path(), "completion") + return completions_path + + +def get_support_path(): + support_path = os.path.join(get_plugin_path(), "support") + return support_path + + +def get_erl_path(): + settings = sublime.load_settings('SublimErl.sublime-settings') + erl_path = settings.get('erl_path', get_exe_path('erl')) + return erl_path + + +def get_escript_path(): + settings = sublime.load_settings('SublimErl.sublime-settings') + escript_path = settings.get( + 'escript_path', get_exe_path('escript')) + return escript_path + + +def get_rebar_path(): + settings = sublime.load_settings('SublimErl.sublime-settings') + rebar_path = settings.get( + 'rebar_path', get_exe_path('rebar')) + return rebar_path + + +def get_dialyzer_path(): + settings = sublime.load_settings('SublimErl.sublime-settings') + dialyzer_path = settings.get( + 'dialyzer_path', get_exe_path('dialyzer')) + return dialyzer_path + + +def get_erlang_libs_path(): + # run escript to get erlang lib path + os.chdir(get_support_path()) + escript_command = "sublimerl_utility.erl lib_dir" + retcode, data = execute_os_command( + '%s %s' % (get_escript_path(), escript_command)) + return data + + +def get_completion_skip_erlang_libs(): + settings = sublime.load_settings('SublimErl.sublime-settings') + return settings.get( + 'completion_skip_erlang_libs', []) + + +def get_env(): + # TODO: enhance the finding of paths + env = os.environ.copy() + if sublime.platform() == 'osx': + # get relevant file paths + etc_paths = ['/etc/paths'] + for f in os.listdir('/etc/paths.d'): + etc_paths.append(os.path.join('/etc/paths.d', f)) + # bash profile + bash_profile_path = os.path.join( + os.getenv('HOME'), '.bash_profile') + # get env paths + additional_paths = "%s:%s" % (readfiles_one_path_per_line( + etc_paths), readfiles_exported_paths([bash_profile_path])) + # add + env['PATH'] = env['PATH'] + additional_paths + return env + + +# project loader +class SublimErlProjectLoader(): + + def __init__(self, view): + # init + self.view = view + self.window = view.window() + self.status_buffer = '' + + self.erlang_module_name = None + self.project_root = None + self.test_root = None + self.app_name = None + + self.set_erlang_module_name() + self.set_project_roots() + self.set_app_name() + + def set_erlang_module_name(self): + self.erlang_module_name = get_erlang_module_name( + self.view) + + def set_project_roots(self): + # get project & file roots + current_file_path = os.path.dirname(self.view.file_name()) + project_root, file_test_root = self.find_project_roots( + current_file_path) + + if project_root == file_test_root == None: + self.project_root = self.test_root = os.path.abspath( + os.path.dirname(self.view.file_name())) + else: + self.project_root = os.path.abspath(project_root) + self.test_root = os.path.abspath(file_test_root) + + def find_project_roots(self, current_dir, project_root_candidate=None, file_test_root_candidate=None): + # if rebar.config or an ebin directory exists, save as potential + # candidate + if os.path.exists(os.path.join(current_dir, 'rebar.config')) or os.path.exists(os.path.join(current_dir, 'ebin')): + # set project root candidate + project_root_candidate = current_dir + # set test root candidate if none set yet + if file_test_root_candidate == None: + file_test_root_candidate = current_dir + + current_dir_split = current_dir.split(os.sep) + # if went up to root, stop and return current candidate + if len(current_dir_split) < 2: + return (project_root_candidate, file_test_root_candidate) + # walk up directory + current_dir_split.pop() + return self.find_project_roots(os.sep.join(current_dir_split), project_root_candidate, file_test_root_candidate) + + def set_app_name(self): + # get app file + src_path = os.path.join(self.test_root, 'src') + if os.path.isdir(src_path): + for f in os.listdir(src_path): + if f.endswith('.app.src'): + app_file_path = os.path.join(src_path, f) + self.app_name = self.find_app_name(app_file_path) + return + basename = os.path.basename(self.view.file_name()) + self.app_name = os.path.splitext(basename)[0] + + def find_app_name(self, app_file_path): + f = open(app_file_path, 'rb') + app_desc = f.read() + f.close() + m = re.search( + r"{\s*application\s*,\s*('?[A-Za-z0-9_]+'?)\s*,\s*\[", app_desc) + if m: + return m.group(1) + + def update_status(self): + if len(self.status_buffer): + sublime.status_message(self.status_buffer) + self.status_buffer = '' + + def status(self, text): + self.status_buffer += text + sublime.set_timeout(self.update_status, 0) + + def log(self, text): + pass + + def get_test_env(self): + env = get_env().copy() + env['PATH'] = "%s:%s:" % (env['PATH'], self.project_root) + return env + + def compile_source(self, skip_deps=False): + # compile to ebin + options = 'skip_deps=true' if skip_deps else '' + retcode, data = self.execute_os_command('%s compile %s' % ( + get_rebar_path(), options), dir_type='project', block=True, log=False) + return (retcode, data) + + def shellquote(self, s): + return shellquote(s) + + def execute_os_command(self, os_cmd, dir_type=None, block=False, log=True): + # set dir + if dir_type == 'project': + os.chdir(self.project_root) + elif dir_type == 'test': + os.chdir(self.test_root) + + if log == True: + self.log("%s$ %s\n\n" % (os.getcwd(), os_cmd)) + + # start proc + current_env = self.get_test_env() + p = subprocess.Popen(os_cmd, stdout=subprocess.PIPE, + stderr=subprocess.PIPE, shell=True, env=current_env) + if block == True: + stdout, stderr = p.communicate() + return (p.returncode, stdout.decode('utf8')) + else: + stdout = [] + for line in p.stdout: + self.log(line.decode('utf8')) + stdout.append(line.decode('utf8')) + return (p.returncode, ''.join(stdout)) + + +# common text command class +class SublimErlTextCommand(sublime_plugin.TextCommand): + + def run(self, edit): + # run only if context matches + if self._context_match(): + return self.run_command(edit) + + def _context_match(self): + # context matches if lang is source.erlang and if platform is not + # windows + caret = self.view.sel()[0].a + if 'source.erlang' in self.view.scope_name(caret) and sublime.platform() != 'windows': + return True + else: + return False + + def is_enabled(self): + # context menu + if self._context_match(): + return self.show_contextual_menu() + else: + return False + + def show_contextual_menu(self): + # can be overridden + return True diff --git a/sublimerl_formatter.py b/sublimerl_lib/sublimerl_formatter.py similarity index 63% rename from sublimerl_formatter.py rename to sublimerl_lib/sublimerl_formatter.py index 0d2995f..ea96eb6 100644 --- a/sublimerl_formatter.py +++ b/sublimerl_lib/sublimerl_formatter.py @@ -29,42 +29,42 @@ # imports import sublime, sublime_plugin, os, tempfile -from sublimerl_core import SUBLIMERL, SublimErlTextCommand, SublimErlProjectLoader +from .sublimerl_core import * # main autoformat class SublimErlAutoFormat(): - def __init__(self, view, edit): - self.view = view - self.edit = edit + def __init__(self, view, edit): + self.view = view + self.edit = edit - def format(self): - # save current caret position - current_region = self.view.sel()[0] - # save current file contents to temp file - region_full = sublime.Region(0, self.view.size()) - content = self.view.substr(region_full).encode('utf-8') - temp = tempfile.NamedTemporaryFile(delete=False) - temp.write(content) - temp.close() - # call erlang formatter - os.chdir(SUBLIMERL.support_path) - escript_command = "sublimerl_formatter.erl %s" % SUBLIMERL.shellquote(temp.name) - retcode, data = SUBLIMERL.execute_os_command('%s %s' % (SUBLIMERL.escript_path, escript_command)) - # delete temp file - os.remove(temp.name) - if retcode == 0: - # substitute text - self.view.replace(self.edit, region_full, data.decode('utf-8')) - # reset caret to original position - self.view.sel().clear() - self.view.sel().add(current_region) - self.view.show(current_region) + def format(self): + # save current caret position + current_region = self.view.sel()[0] + # save current file contents to temp file + region_full = sublime.Region(0, self.view.size()) + content = self.view.substr(region_full).encode('utf-8') + temp = tempfile.NamedTemporaryFile(delete=False) + temp.write(content) + temp.close() + # call erlang formatter + os.chdir(get_support_path()) + escript_command = "sublimerl_formatter.erl %s" % shellquote(temp.name) + retcode, data = execute_os_command('%s %s' % (get_escript_path(), escript_command)) + # delete temp file + os.remove(temp.name) + if retcode == 0: + # substitute text + self.view.replace(self.edit, region_full, data) + # reset caret to original position + self.view.sel().clear() + self.view.sel().add(current_region) + self.view.show(current_region) # format command class SublimErlAutoFormatCommand(SublimErlTextCommand): - def run_command(self, edit): - formatter = SublimErlAutoFormat(self.view, edit) - formatter.format() + def run_command(self, edit): + formatter = SublimErlAutoFormat(self.view, edit) + formatter.format() diff --git a/sublimerl_lib/sublimerl_function_search.py b/sublimerl_lib/sublimerl_function_search.py new file mode 100644 index 0000000..97759b6 --- /dev/null +++ b/sublimerl_lib/sublimerl_function_search.py @@ -0,0 +1,103 @@ +# ========================================================================================================== +# SublimErl - A Sublime Text 2 Plugin for Erlang Integrated Testing & Code Completion +# +# Copyright (C) 2013, Roberto Ostinelli . +# All rights reserved. +# +# BSD License +# +# Redistribution and use in source and binary forms, with or without modification, are permitted provided +# that the following conditions are met: +# +# * Redistributions of source code must retain the above copyright notice, this list of conditions and the +# following disclaimer. +# * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and +# the following disclaimer in the documentation and/or other materials provided with the distribution. +# * Neither the name of the authors nor the names of its contributors may be used to endorse or promote +# products derived from this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A +# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR +# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED +# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. +# ========================================================================================================== + + +# imports +import sublime +import os, time, threading, pickle +from .sublimerl_core import * +from .sublimerl_completion import SUBLIMERL_COMPLETIONS + + +# main autoformat +class SublimErlFunctionSearch(): + + def __init__(self, view): + # init + self.view = view + self.window = view.window() + self.search_completions = [] + + def show(self): + # get completions + self.set_search_completions() + # strip out just the function name to be displayed + completions = [] + for name, filepath, lineno in self.search_completions: + completions.append(name) + # open quick panel + sublime.active_window().show_quick_panel(completions, self.on_select) + + def set_search_completions(self): + # load file + searches_filepath = os.path.join(get_plugin_path(), "completion", "Current-Project.searches") + f = open(searches_filepath, 'rb') + searches = pickle.load(f) + f.close() + self.search_completions = searches + + def on_select(self, index): + # get file and line + name, filepath, lineno = self.search_completions[index] + # open module at function position + self.open_file_and_goto_line(filepath, lineno) + + def open_file_and_goto_line(self, filepath, line): + # open file + self.new_view = self.window.open_file(filepath) + # wait until file is loaded before going to the appropriate line + this = self + self.check_file_loading() + class SublimErlThread(threading.Thread): + def run(self): + # wait until file has done loading + s = 0 + while this.is_loading and s < 3: + time.sleep(0.1) + sublime.set_timeout(this.check_file_loading, 0) + s += 1 + # goto line + def goto_line(): + # goto line + this.new_view.run_command("goto_line", {"line": line} ) + # remove unused attrs + del this.new_view + del this.is_loading + if not this.is_loading: sublime.set_timeout(goto_line, 0) + + SublimErlThread().start() + + def check_file_loading(self): + self.is_loading = self.new_view.is_loading() + + +# repeat last test +class SublimErlFunctionSearchCommand(SublimErlTextCommand): + def run_command(self, edit): + search = SublimErlFunctionSearch(self.view) + search.show() diff --git a/sublimerl_lib/sublimerl_tests_integration.py b/sublimerl_lib/sublimerl_tests_integration.py new file mode 100644 index 0000000..9178fd1 --- /dev/null +++ b/sublimerl_lib/sublimerl_tests_integration.py @@ -0,0 +1,453 @@ +# ======================================================================== +# SublimErl - A Sublime Text 2 Plugin for Erlang Integrated Testing & Code Completion +# +# Copyright (C) 2013, Roberto Ostinelli . +# All rights reserved. +# +# BSD License +# +# Redistribution and use in source and binary forms, with or without modification, are permitted provided +# that the following conditions are met: +# +# * Redistributions of source code must retain the above copyright notice, this list of conditions and the +# following disclaimer. +# * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and +# the following disclaimer in the documentation and/or other materials provided with the distribution. +# * Neither the name of the authors nor the names of its contributors may be used to endorse or promote +# products derived from this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A +# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR +# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED +# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. +# ======================================================================== + + +# imports +import sublime +import os +import subprocess +import re +import threading +import webbrowser +from .sublimerl_core import * + +test_in_progress = False +last_test = None +last_test_type = None + +# test runner + + +class SublimErlTestRunner(SublimErlProjectLoader): + + def __init__(self, view): + # init super + SublimErlProjectLoader.__init__(self, view) + + # init + self.initialized = False + self.panel_name = 'sublimerl_tests' + self.panel_buffer = '' + + global test_in_progress + # don't proceed if a test is already running + if test_in_progress == True: + return + test_in_progress = True + + # setup panel + self.setup_panel() + # run + if self.init_tests() == True: + self.initialized = True + else: + test_in_progress = False + + def setup_panel(self): + self.panel = self.window.get_output_panel(self.panel_name) + self.panel.settings().set("syntax", os.path.join( + get_plugin_path(), "theme", "SublimErlTests.hidden-tmLanguage")) + self.panel.settings().set("color_scheme", os.path.join( + get_plugin_path(), "theme", "SublimErlTests.hidden-tmTheme")) + + def update_panel(self): + if len(self.panel_buffer): + panel_edit = self.panel.begin_edit() + self.panel.insert(panel_edit, self.panel.size(), self.panel_buffer) + self.panel.end_edit(panel_edit) + self.panel.show(self.panel.size()) + self.panel_buffer = '' + self.window.run_command( + "show_panel", {"panel": "output.%s" % self.panel_name}) + + def log(self, text): + self.panel_buffer += text + sublime.set_timeout(self.update_panel, 0) + + def log_error(self, error_text): + self.log("Error => %s\n[ABORTED]\n" % error_text) + + def init_tests(self): + # file saved? + if self.view.is_scratch(): + self.log_error("Please save this file to proceed.") + return False + elif os.path.splitext(self.view.file_name())[1] != '.erl': + self.log_error("This is not a .erl file.") + return False + + # check module name + if self.erlang_module_name == None: + self.log_error( + "Cannot find a -module declaration: please add one to proceed.") + return False + + # save project's root paths + if self.project_root == None or self.test_root == None: + self.log_error( + "This code does not seem to be part of an OTP compilant project.") + return False + + # all ok + return True + + def compile_eunit_no_run(self): + # call rebar to compile - HACK: passing in a non-existing suite forces + # rebar to not run the test suite + os_cmd = '%s eunit suites=sublimerl_unexisting_test' % get_rebar_path() + if self.app_name: + os_cmd += ' apps=%s' % self.app_name + retcode, data = self.execute_os_command( + os_cmd, dir_type='project', block=True, log=False) + + if re.search(r"There were no tests to run", data) != None: + # expected error returned (due to the hack) + return 0 + # send the data to panel + self.log(data) + + def reset_last_test(self): + global last_test, last_test_type + last_test = None + last_test_type = None + + def start_test(self, new=True): + # do not continue if no previous test exists and a redo was asked + global last_test + if last_test == None and new == False: + return + # set test + if new == True: + self.reset_last_test() + # test callback + self.log("Starting tests (SublimErl v%s).\n" % SUBLIMERL_VERSION) + self.start_test_cmd(new) + + def start_test_cmd(self, new): + # placeholder for inheritance + pass + + def on_test_ended(self): + global test_in_progress + test_in_progress = False + + +# dialyzer test runner +class SublimErlDialyzerTestRunner(SublimErlTestRunner): + + def start_test_cmd(self, new): + global last_test, last_test_type + + if new == True: + # save test module + module_tests_name = self.erlang_module_name + last_test = module_tests_name + last_test_type = 'dialyzer' + else: + # retrieve test module + module_tests_name = last_test + + # run test + this = self + filename = self.view.file_name() + + class SublimErlThread(threading.Thread): + + def run(self): + this.dialyzer_test(module_tests_name, filename) + SublimErlThread().start() + + def dialyzer_test(self, module_tests_name, filename): + # run dialyzer for file + self.log("Running Dialyzer tests for \"%s\".\n\n" % filename) + # compile eunit + self.compile_eunit_no_run() + # run dialyzer + retcode, data = self.execute_os_command( + '%s -n .eunit/%s.beam' % (get_dialyzer_path(), module_tests_name), dir_type='test', block=False) + # interpret + self.interpret_test_results(retcode, data) + + def interpret_test_results(self, retcode, data): + # get outputs + if re.search(r"passed successfully", data): + self.log("\n=> TEST(S) PASSED.\n") + else: + self.log("\n=> TEST(S) FAILED.\n") + + # free test + self.on_test_ended() + + +# eunit test runner +class SublimErlEunitTestRunner(SublimErlTestRunner): + + def start_test_cmd(self, new): + global last_test, last_test_type + + # run test + if new == True: + # get test module name + pos = self.erlang_module_name.find("_tests") + if pos == -1: + # tests are in the same file + module_name = self.erlang_module_name + else: + # tests are in different files + module_name = self.erlang_module_name[0:pos] + + # get function name depending on cursor position + function_name = self.get_test_function_name() + + # save test + module_tests_name = self.erlang_module_name + last_test = ( + module_name, module_tests_name, function_name) + last_test_type = 'eunit' + + else: + # retrieve test info + module_name, module_tests_name, function_name = last_test + + # run test + this = self + + class SublimErlThread(threading.Thread): + + def run(self): + this.eunit_test(module_name, module_tests_name, function_name) + SublimErlThread().start() + + def get_test_function_name(self): + # get current line position + cursor_position = self.view.sel()[0].a + # get module content + region_full = sublime.Region(0, self.view.size()) + module = strip_code_for_parsing(self.view.substr(region_full)) + # parse regions + regex = re.compile( + r"([a-z0-9][a-zA-Z0-9_]*_test(_)?\s*\(\s*\)\s*->[^.]*\.)", re.MULTILINE) + for m in regex.finditer(module): + if m.start() <= cursor_position and cursor_position <= m.end(): + function_content = m.groups()[0] + return function_content[:function_content.index('(')] + + def eunit_test(self, module_name, module_tests_name, function_name): + if function_name != None: + # specific function provided, start single test + self.log("Running test \"%s:%s/0\" for target module \"%s.erl\".\n\n" % + (module_tests_name, function_name, module_name)) + # compile source code and run single test + self.compile_eunit_run_suite(module_tests_name, function_name) + else: + # run all test functions in file + if module_tests_name != module_name: + self.log("Running all tests in module \"%s.erl\" for target module \"%s.erl\".\n\n" % ( + module_tests_name, module_name)) + else: + self.log( + "Running all tests for target module \"%s.erl\".\n\n" % module_name) + # compile all source code and test module + self.compile_eunit_run_suite(module_tests_name) + + def compile_eunit_run_suite(self, suite, function_name=None): + os_cmd = '%s eunit suites=%s' % (get_rebar_path(), suite) + + if function_name != None: + os_cmd += ' tests=%s' % function_name + if self.app_name: + os_cmd += ' apps=%s' % self.app_name + + os_cmd += ' skip_deps=true' + + retcode, data = self.execute_os_command( + os_cmd, dir_type='project', block=False) + # interpret + self.interpret_test_results(retcode, data) + + def interpret_test_results(self, retcode, data): + # get outputs + if re.search(r"Test passed.", data): + # single test passed + self.log("\n=> TEST PASSED.\n") + + elif re.search(r"All \d+ tests passed.", data): + # multiple tests passed + passed_count = re.search(r"All (\d+) tests passed.", data).group(1) + self.log("\n=> %s TESTS PASSED.\n" % passed_count) + + elif re.search(r"Failed: \d+.", data): + # some tests failed + failed_count = re.search(r"Failed: (\d+).", data).group(1) + self.log("\n=> %s TEST(S) FAILED.\n" % failed_count) + + elif re.search(r"There were no tests to run.", data): + self.log("\n=> NO TESTS TO RUN.\n") + + else: + self.log(data) + self.log("\n=> TEST(S) FAILED.\n") + + # free test + self.on_test_ended() + + +# eunit test runner +class SublimErlCtTestRunner(SublimErlTestRunner): + + def start_test_cmd(self, new): + global last_test, last_test_type + + # run test + if new == True: + pos = self.erlang_module_name.find("_SUITE") + module_tests_name = self.erlang_module_name[0:pos] + + # save test + last_test = module_tests_name + last_test_type = 'ct' + + else: + module_tests_name = last_test + + # run test + this = self + + class SublimErlThread(threading.Thread): + + def run(self): + this.ct_test(module_tests_name) + SublimErlThread().start() + + def ct_test(self, module_tests_name): + # run CT for suite + self.log( + "Running tests of Common Tests SUITE \"%s_SUITE.erl\".\n\n" % module_tests_name) + os_cmd = '%s ct suites=%s skip_deps=true' % ( + get_rebar_path(), module_tests_name) + # compile all source code + self.compile_source() + # run suite + retcode, data = self.execute_os_command( + os_cmd, dir_type='test', block=False) + # interpret + self.interpret_test_results(retcode, data) + + def interpret_test_results(self, retcode, data): + # get outputs + if re.search(r"DONE.", data): + # test passed + passed_count = re.search( + r"(\d+) ok, 0 failed(?:, 1 skipped)? of \d+ test cases", data).group(1) + if int(passed_count) > 0: + self.log("=> %s TEST(S) PASSED.\n" % passed_count) + else: + self.log("=> NO TESTS TO RUN.\n") + + elif re.search(r"ERROR: One or more tests failed", data): + failed_count = re.search( + r"\d+ ok, (\d+) failed(?:, 1 skipped)? of \d+ test cases", data).group(1) + self.log("\n=> %s TEST(S) FAILED.\n" % failed_count) + + else: + self.log("\n=> TEST(S) FAILED.\n") + + # free test + self.on_test_ended() + + +# Commands +# test runners +class SublimErlTestRunners(): + + def dialyzer_test(self, view): + test_runner = SublimErlDialyzerTestRunner(view) + if test_runner.initialized == False: + return + test_runner.start_test() + + def ct_or_eunit_test(self, view, new=True): + global last_test_type + if last_test_type == 'ct' or get_erlang_module_name(view).find("_SUITE") != -1: + # ct + test_runner = SublimErlCtTestRunner(view) + else: + # eunit + test_runner = SublimErlEunitTestRunner(view) + + if test_runner.initialized == False: + return + test_runner.start_test(new=new) + + +# dialyzer tests +class SublimErlDialyzerCommand(SublimErlTextCommand): + + def run_command(self, edit): + SublimErlTestRunners().dialyzer_test(self.view) + + +# start new test +class SublimErlTestCommand(SublimErlTextCommand): + + def run_command(self, edit): + SublimErlTestRunners().ct_or_eunit_test(self.view) + + +# repeat last test +class SublimErlRedoCommand(SublimErlTextCommand): + + def run_command(self, edit): + # init + global last_test_type + if last_test_type == 'dialyzer': + SublimErlTestRunners().dialyzer_test(self.view, new=False) + elif last_test_type == 'eunit' or last_test_type == 'ct': + SublimErlTestRunners().ct_or_eunit_test(self.view, new=False) + + def show_contextual_menu(self): + global last_test + return last_test != None + + +# open CT results +class SublimErlCtResultsCommand(SublimErlTextCommand): + + def run_command(self, edit): + # open CT results + loader = SublimErlProjectLoader(self.view) + index_path = os.path.abspath( + os.path.join(loader.project_root, 'logs', 'index.html')) + if os.path.exists(index_path): + webbrowser.open(index_path) + + def show_contextual_menu(self): + loader = SublimErlProjectLoader(self.view) + index_path = os.path.abspath( + os.path.join(loader.project_root, 'logs', 'index.html')) + return os.path.exists(index_path) diff --git a/sublimerl_man.py b/sublimerl_man.py deleted file mode 100644 index 061015e..0000000 --- a/sublimerl_man.py +++ /dev/null @@ -1,101 +0,0 @@ -# ========================================================================================================== -# SublimErl - A Sublime Text 2 Plugin for Erlang Integrated Testing & Code Completion -# -# Copyright (C) 2013, Roberto Ostinelli . -# All rights reserved. -# -# BSD License -# -# Redistribution and use in source and binary forms, with or without modification, are permitted provided -# that the following conditions are met: -# -# * Redistributions of source code must retain the above copyright notice, this list of conditions and the -# following disclaimer. -# * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and -# the following disclaimer in the documentation and/or other materials provided with the distribution. -# * Neither the name of the authors nor the names of its contributors may be used to endorse or promote -# products derived from this software without specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A -# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -# POSSIBILITY OF SUCH DAMAGE. -# ========================================================================================================== - - -# imports -import sublime -import os -from sublimerl_core import SUBLIMERL, SublimErlTextCommand, SublimErlGlobal - - -# show man -class SublimErlMan(): - - def __init__(self, view): - # init - self.view = view - self.window = view.window() - self.module_names = [] - - self.panel_name = 'sublimerl_man' - self.panel_buffer = '' - # setup panel - self.setup_panel() - - def setup_panel(self): - self.panel = self.window.get_output_panel(self.panel_name) - self.panel.settings().set("syntax", os.path.join(SUBLIMERL.plugin_path, "theme", "SublimErlAutocompile.hidden-tmLanguage")) - self.panel.settings().set("color_scheme", os.path.join(SUBLIMERL.plugin_path, "theme", "SublimErlAutocompile.hidden-tmTheme")) - - def update_panel(self): - if len(self.panel_buffer): - panel_edit = self.panel.begin_edit() - self.panel.insert(panel_edit, self.panel.size(), self.panel_buffer) - self.panel.end_edit(panel_edit) - self.panel.show(self.panel.size()) - self.panel_buffer = '' - self.window.run_command("show_panel", {"panel": "output.%s" % self.panel_name}) - - def hide_panel(self): - self.window.run_command("hide_panel") - - def log(self, text): - self.panel_buffer += text - sublime.set_timeout(self.update_panel, 0) - - def show(self): - # set modules - self.set_module_names() - # open quick panel - sublime.active_window().show_quick_panel(self.module_names, self.on_select) - - def set_module_names(self): - # load file - modules_filepath = os.path.join(SUBLIMERL.plugin_path, "completion", "Erlang-libs.sublime-completions") - f = open(modules_filepath, 'r') - contents = eval(f.read()) - f.close() - # strip out just the module names to be displayed - module_names = [] - for t in contents['completions']: - module_names.append(t['trigger']) - self.module_names = module_names - - def on_select(self, index): - # get file and line - module_name = self.module_names[index] - # open man - retcode, data = SUBLIMERL.execute_os_command("%s -man %s | col -b" % (SUBLIMERL.erl_path, module_name)) - if retcode == 0: self.log(data) - - -# man command -class SublimErlManCommand(SublimErlTextCommand): - def run_command(self, edit): - man = SublimErlMan(self.view) - man.show() diff --git a/sublimerl_tests_integration.py b/sublimerl_tests_integration.py deleted file mode 100644 index 6f7c728..0000000 --- a/sublimerl_tests_integration.py +++ /dev/null @@ -1,403 +0,0 @@ -# ========================================================================================================== -# SublimErl - A Sublime Text 2 Plugin for Erlang Integrated Testing & Code Completion -# -# Copyright (C) 2013, Roberto Ostinelli . -# All rights reserved. -# -# BSD License -# -# Redistribution and use in source and binary forms, with or without modification, are permitted provided -# that the following conditions are met: -# -# * Redistributions of source code must retain the above copyright notice, this list of conditions and the -# following disclaimer. -# * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and -# the following disclaimer in the documentation and/or other materials provided with the distribution. -# * Neither the name of the authors nor the names of its contributors may be used to endorse or promote -# products derived from this software without specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A -# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -# POSSIBILITY OF SUCH DAMAGE. -# ========================================================================================================== - - -# imports -import sublime -import os, subprocess, re, threading, webbrowser -from sublimerl_core import SUBLIMERL_VERSION, SUBLIMERL, SublimErlTextCommand, SublimErlProjectLoader - - -# test runner -class SublimErlTestRunner(SublimErlProjectLoader): - - def __init__(self, view): - # init super - SublimErlProjectLoader.__init__(self, view) - - # init - self.initialized = False - self.panel_name = 'sublimerl_tests' - self.panel_buffer = '' - - # don't proceed if a test is already running - global SUBLIMERL - if SUBLIMERL.test_in_progress == True: return - SUBLIMERL.test_in_progress = True - - # setup panel - self.setup_panel() - # run - if self.init_tests() == True: - self.initialized = True - else: - SUBLIMERL.test_in_progress = False - - def setup_panel(self): - self.panel = self.window.get_output_panel(self.panel_name) - self.panel.settings().set("syntax", os.path.join(SUBLIMERL.plugin_path, "theme", "SublimErlTests.hidden-tmLanguage")) - self.panel.settings().set("color_scheme", os.path.join(SUBLIMERL.plugin_path, "theme", "SublimErlTests.hidden-tmTheme")) - - def update_panel(self): - if len(self.panel_buffer): - panel_edit = self.panel.begin_edit() - self.panel.insert(panel_edit, self.panel.size(), self.panel_buffer) - self.panel.end_edit(panel_edit) - self.panel.show(self.panel.size()) - self.panel_buffer = '' - self.window.run_command("show_panel", {"panel": "output.%s" % self.panel_name}) - - def log(self, text): - self.panel_buffer += text.encode('utf-8') - sublime.set_timeout(self.update_panel, 0) - - def log_error(self, error_text): - self.log("Error => %s\n[ABORTED]\n" % error_text) - - def init_tests(self): - if SUBLIMERL.initialized == False: - self.log("SublimErl could not be initialized:\n\n%s\n" % '\n'.join(SUBLIMERL.init_errors)) - - # file saved? - if self.view.is_scratch(): - self.log_error("Please save this file to proceed.") - return False - elif os.path.splitext(self.view.file_name())[1] != '.erl': - self.log_error("This is not a .erl file.") - return False - - # check module name - if self.erlang_module_name == None: - self.log_error("Cannot find a -module declaration: please add one to proceed.") - return False - - # save project's root paths - if self.project_root == None or self.test_root == None: - self.log_error("This code does not seem to be part of an OTP compilant project.") - return False - - # all ok - return True - - def compile_eunit_no_run(self): - # call rebar to compile - HACK: passing in a non-existing suite forces rebar to not run the test suite - os_cmd = '%s eunit suites=sublimerl_unexisting_test' % SUBLIMERL.rebar_path - if self.app_name: os_cmd += ' apps=%s' % self.app_name - retcode, data = self.execute_os_command(os_cmd, dir_type='project', block=True, log=False) - - if re.search(r"There were no tests to run", data) != None: - # expected error returned (due to the hack) - return 0 - # send the data to panel - self.log(data) - - def reset_last_test(self): - global SUBLIMERL - - SUBLIMERL.last_test = None - SUBLIMERL.last_test_type = None - - def start_test(self, new=True): - # do not continue if no previous test exists and a redo was asked - if SUBLIMERL.last_test == None and new == False: return - # set test - if new == True: self.reset_last_test() - # test callback - self.log("Starting tests (SublimErl v%s).\n" % SUBLIMERL_VERSION) - self.start_test_cmd(new) - - def start_test_cmd(self, new): - # placeholder for inheritance - pass - - def on_test_ended(self): - global SUBLIMERL - SUBLIMERL.test_in_progress = False - - -# dialyzer test runner -class SublimErlDialyzerTestRunner(SublimErlTestRunner): - - def start_test_cmd(self, new): - global SUBLIMERL - - if new == True: - # save test module - module_tests_name = self.erlang_module_name - - SUBLIMERL.last_test = module_tests_name - SUBLIMERL.last_test_type = 'dialyzer' - else: - # retrieve test module - module_tests_name = SUBLIMERL.last_test - - # run test - this = self - filename = self.view.file_name() - class SublimErlThread(threading.Thread): - def run(self): - this.dialyzer_test(module_tests_name, filename) - SublimErlThread().start() - - def dialyzer_test(self, module_tests_name, filename): - # run dialyzer for file - self.log("Running Dialyzer tests for \"%s\".\n\n" % filename) - # compile eunit - self.compile_eunit_no_run() - # run dialyzer - retcode, data = self.execute_os_command('%s -n .eunit/%s.beam' % (SUBLIMERL.dialyzer_path, module_tests_name), dir_type='test', block=False) - # interpret - self.interpret_test_results(retcode, data) - - def interpret_test_results(self, retcode, data): - # get outputs - if re.search(r"passed successfully", data): - self.log("\n=> TEST(S) PASSED.\n") - else: - self.log("\n=> TEST(S) FAILED.\n") - - # free test - self.on_test_ended() - - -# eunit test runner -class SublimErlEunitTestRunner(SublimErlTestRunner): - - def start_test_cmd(self, new): - global SUBLIMERL - - # run test - if new == True: - # get test module name - pos = self.erlang_module_name.find("_tests") - if pos == -1: - # tests are in the same file - module_name = self.erlang_module_name - else: - # tests are in different files - module_name = self.erlang_module_name[0:pos] - - # get function name depending on cursor position - function_name = self.get_test_function_name() - - # save test - module_tests_name = self.erlang_module_name - SUBLIMERL.last_test = (module_name, module_tests_name, function_name) - SUBLIMERL.last_test_type = 'eunit' - - else: - # retrieve test info - module_name, module_tests_name, function_name = SUBLIMERL.last_test - - # run test - this = self - class SublimErlThread(threading.Thread): - def run(self): - this.eunit_test(module_name, module_tests_name, function_name) - SublimErlThread().start() - - def get_test_function_name(self): - # get current line position - cursor_position = self.view.sel()[0].a - # get module content - region_full = sublime.Region(0, self.view.size()) - module = SUBLIMERL.strip_code_for_parsing(self.view.substr(region_full)) - # parse regions - regex = re.compile(r"([a-z0-9][a-zA-Z0-9_]*_test(_)?\s*\(\s*\)\s*->[^.]*\.)", re.MULTILINE) - for m in regex.finditer(module): - if m.start() <= cursor_position and cursor_position <= m.end(): - function_content = m.groups()[0] - return function_content[:function_content.index('(')] - - def eunit_test(self, module_name, module_tests_name, function_name): - if function_name != None: - # specific function provided, start single test - self.log("Running test \"%s:%s/0\" for target module \"%s.erl\".\n\n" % (module_tests_name, function_name, module_name)) - # compile source code and run single test - self.compile_eunit_run_suite(module_tests_name, function_name) - else: - # run all test functions in file - if module_tests_name != module_name: - self.log("Running all tests in module \"%s.erl\" for target module \"%s.erl\".\n\n" % (module_tests_name, module_name)) - else: - self.log("Running all tests for target module \"%s.erl\".\n\n" % module_name) - # compile all source code and test module - self.compile_eunit_run_suite(module_tests_name) - - def compile_eunit_run_suite(self, suite, function_name=None): - os_cmd = '%s eunit suites=%s' % (SUBLIMERL.rebar_path, suite) - - if function_name != None: os_cmd += ' tests=%s' % function_name - if self.app_name: os_cmd += ' apps=%s' % self.app_name - - os_cmd += ' skip_deps=true' - - retcode, data = self.execute_os_command(os_cmd, dir_type='project', block=False) - # interpret - self.interpret_test_results(retcode, data) - - def interpret_test_results(self, retcode, data): - # get outputs - if re.search(r"Test passed.", data): - # single test passed - self.log("\n=> TEST PASSED.\n") - - elif re.search(r"All \d+ tests passed.", data): - # multiple tests passed - passed_count = re.search(r"All (\d+) tests passed.", data).group(1) - self.log("\n=> %s TESTS PASSED.\n" % passed_count) - - elif re.search(r"Failed: \d+.", data): - # some tests failed - failed_count = re.search(r"Failed: (\d+).", data).group(1) - self.log("\n=> %s TEST(S) FAILED.\n" % failed_count) - - elif re.search(r"There were no tests to run.", data): - self.log("\n=> NO TESTS TO RUN.\n") - - else: - self.log(data) - self.log("\n=> TEST(S) FAILED.\n") - - # free test - self.on_test_ended() - - -# eunit test runner -class SublimErlCtTestRunner(SublimErlTestRunner): - - def start_test_cmd(self, new): - global SUBLIMERL - - # run test - if new == True: - pos = self.erlang_module_name.find("_SUITE") - module_tests_name = self.erlang_module_name[0:pos] - - # save test - SUBLIMERL.last_test = module_tests_name - SUBLIMERL.last_test_type = 'ct' - - else: - module_tests_name = SUBLIMERL.last_test - - # run test - this = self - class SublimErlThread(threading.Thread): - def run(self): - this.ct_test(module_tests_name) - SublimErlThread().start() - - def ct_test(self, module_tests_name): - # run CT for suite - self.log("Running tests of Common Tests SUITE \"%s_SUITE.erl\".\n\n" % module_tests_name) - os_cmd = '%s ct suites=%s skip_deps=true' % (SUBLIMERL.rebar_path, module_tests_name) - # compile all source code - self.compile_source() - # run suite - retcode, data = self.execute_os_command(os_cmd, dir_type='test', block=False) - # interpret - self.interpret_test_results(retcode, data) - - def interpret_test_results(self, retcode, data): - # get outputs - if re.search(r"DONE.", data): - # test passed - passed_count = re.search(r"(\d+) ok, 0 failed(?:, 1 skipped)? of \d+ test cases", data).group(1) - if int(passed_count) > 0: - self.log("=> %s TEST(S) PASSED.\n" % passed_count) - else: - self.log("=> NO TESTS TO RUN.\n") - - elif re.search(r"ERROR: One or more tests failed", data): - failed_count = re.search(r"\d+ ok, (\d+) failed(?:, 1 skipped)? of \d+ test cases", data).group(1) - self.log("\n=> %s TEST(S) FAILED.\n" % failed_count) - - else: - self.log("\n=> TEST(S) FAILED.\n") - - # free test - self.on_test_ended() - - -### Commands -# test runners -class SublimErlTestRunners(): - - def dialyzer_test(self, view): - test_runner = SublimErlDialyzerTestRunner(view) - if test_runner.initialized == False: return - test_runner.start_test() - - def ct_or_eunit_test(self, view, new=True): - if SUBLIMERL.last_test_type == 'ct' or SUBLIMERL.get_erlang_module_name(view).find("_SUITE") != -1: - # ct - test_runner = SublimErlCtTestRunner(view) - else: - # eunit - test_runner = SublimErlEunitTestRunner(view) - - if test_runner.initialized == False: return - test_runner.start_test(new=new) - - -# dialyzer tests -class SublimErlDialyzerCommand(SublimErlTextCommand): - def run_command(self, edit): - SublimErlTestRunners().dialyzer_test(self.view) - - -# start new test -class SublimErlTestCommand(SublimErlTextCommand): - def run_command(self, edit): - SublimErlTestRunners().ct_or_eunit_test(self.view) - - -# repeat last test -class SublimErlRedoCommand(SublimErlTextCommand): - def run_command(self, edit): - # init - if SUBLIMERL.last_test_type == 'dialyzer': SublimErlTestRunners().dialyzer_test(self.view, new=False) - elif SUBLIMERL.last_test_type == 'eunit' or SUBLIMERL.last_test_type == 'ct': SublimErlTestRunners().ct_or_eunit_test(self.view, new=False) - - def show_contextual_menu(self): - return SUBLIMERL.last_test != None - - -# open CT results -class SublimErlCtResultsCommand(SublimErlTextCommand): - def run_command(self, edit): - # open CT results - loader = SublimErlProjectLoader(self.view) - index_path = os.path.abspath(os.path.join(loader.project_root, 'logs', 'index.html')) - if os.path.exists(index_path): webbrowser.open(index_path) - - def show_contextual_menu(self): - loader = SublimErlProjectLoader(self.view) - index_path = os.path.abspath(os.path.join(loader.project_root, 'logs', 'index.html')) - return os.path.exists(index_path) diff --git a/support/sublimerl_formatter.erl b/support/sublimerl_formatter.erl index 9c4344f..0fc6707 100644 --- a/support/sublimerl_formatter.erl +++ b/support/sublimerl_formatter.erl @@ -41,16 +41,16 @@ % command line exposure main([FilePath]) -> - Lines = read_file(FilePath), - Formatted = source_indentation(Lines), - io:format("~s", [Formatted]); + Lines = read_file(FilePath), + Formatted = source_indentation(Lines), + io:format("~s", [Formatted]); main(_) -> - halt(1). + halt(1). read_file(File) -> {ok, FileDev} = file:open(File, [raw, read, read_ahead]), - Lines = read_file([],FileDev), + Lines = read_file([],FileDev), file:close(FileDev), Lines. @@ -64,7 +64,7 @@ read_file(Lines, FileDev) -> source_indentation(Lines) -> try - Source = lists:flatten(Lines), + Source = lists:flatten(Lines), Tokens = tokenize_source(Source), lists:flatten(source_indentation(Tokens, Lines, 1, [])) catch @@ -73,7 +73,7 @@ source_indentation(Lines) -> end. source_indentation(_Tokens, [], _Pos, FormattedLines) -> - lists:reverse(FormattedLines); + lists:reverse(FormattedLines); source_indentation(Tokens, [Line|Lines], Pos, FormattedLines) -> try % compute indent for line in Pos @@ -81,7 +81,7 @@ source_indentation(Tokens, [Line|Lines], Pos, FormattedLines) -> {IndentTab, _IndentCol} = indentation_between(PrevToks, NextToks), % reformat line NewLine = string:copies("\t", IndentTab) ++ - re:replace(Line, "\\A[ \t]+", "", [{return, list}]), + re:replace(Line, "\\A[ \t]+", "", [{return, list}]), source_indentation(Tokens, Lines, Pos + 1, [NewLine|FormattedLines]) catch throw:scan_error -> @@ -113,15 +113,14 @@ split_prev_block(Tokens, Line) -> {lists:reverse(PrevToks3), NextToks}. category(Token) -> - {category, Cat} = erl_scan:token_info(Token, category), - Cat. + element(1, Token). line(Token) -> - {line, Line} = erl_scan:token_info(Token, line), + {Line, _} = element(2, Token), Line. column(Token) -> - {column, Col} = erl_scan:token_info(Token, column), + {_, Col} = element(2, Token), Col. indentation_between([], _) -> diff --git a/support/sublimerl_libparser.py b/support/sublimerl_libparser.py index c84bb28..294f1b1 100644 --- a/support/sublimerl_libparser.py +++ b/support/sublimerl_libparser.py @@ -30,466 +30,501 @@ class SublimErlLibParser(): - def __init__(self): - # compile default regexes - self.regex = { - 'all': re.compile(r"(.*)", re.MULTILINE), - 'export_section': re.compile(r"^\s*-\s*export\s*\(\s*\[\s*([^\]]*)\s*\]\s*\)\s*\.", re.DOTALL + re.MULTILINE), - 'varname': re.compile(r"^[A-Z][a-zA-Z0-9_]*$"), - '{': re.compile(r"\{.*\}"), - '<<': re.compile(r"<<.*>>"), - '[': re.compile(r"\[.*\]") - } - - def strip_comments(self, code): - # strip comments but keep the same character count - return re.sub(re.compile(r"%(.*)\n"), lambda m: (len(m.group(0)) - 1) * ' ' + '\n', code) - - def generate_completions(self, starting_dir, dest_file_base): - # init - disasms = {} - completions = [] - searches = [] - # loop directory - rel_dirs = [] - for root, dirnames, filenames in os.walk(starting_dir): - if 'reltool.config' in filenames: - # found a release directory, we will ignore autocompletion for these files - rel_dirs.append(root) - # loop filenames ending in .erl - for filename in fnmatch.filter(filenames, r"*.erl"): - if '.eunit' not in root.split('/'): - # exclude eunit files - filepath = os.path.join(root, filename) - # check if in release directory - if not (True in [filepath.find(rel_dir) != -1 for rel_dir in rel_dirs]): - # not in a release directory, get module name - module_name, module_ext = os.path.splitext(filename) - # get module content - f = open(filepath, 'r') - module = self.strip_comments(f.read()) - f.close() - # get completions - module_completions, line_numbers = self.get_completions(module) - if len(module_completions) > 0: - # set disasm - disasms[module_name] = sorted(module_completions, key=lambda k: k[0]) - # set searches - for i in range(0, len(module_completions)): - function, completion = module_completions[i] - searches.append(("%s:%s" % (module_name, function), filepath, line_numbers[i])) - # set module completions - completions.append("{ \"trigger\": \"%s\", \"contents\": \"%s\" }" % (module_name, module_name)) - - # add BIF completions? - if disasms.has_key('erlang'): - # we are generating erlang disasm - bif_completions = self.bif_completions() - for k in bif_completions.keys(): - disasms[k].extend(bif_completions[k]) - # sort - disasms[k] = sorted(disasms[k], key=lambda k: k[0]) - # erlang completions - for c in bif_completions['erlang']: - completions.append("{ \"trigger\": \"%s\", \"contents\": \"%s\" }" % (c[0], c[1])) - else: - # we are generating project disasm -> write to files: searches - f_searches = open("%s.searches" % dest_file_base, 'wb') - pickle.dump(sorted(searches, key=lambda k: k[0]), f_searches) - f_searches.close() - - # write to files: disasms - f_disasms = open("%s.disasm" % dest_file_base, 'wb') - pickle.dump(disasms, f_disasms) - f_disasms.close() - # write to files: completions - f_completions = open("%s.sublime-completions" % dest_file_base, 'wb') - if len(completions) > 0: - f_completions.write("{ \"scope\": \"source.erlang\", \"completions\": [\n" + ',\n'.join(completions) + "\n]}") - else: - f_completions.write("{}") - f_completions.close() - - def get_completions(self, module): - # get export portion in code module - - all_completions = [] - all_line_numbers = [] - for m in self.regex['export_section'].finditer(module): - export_section = m.groups()[0] - if export_section: - # get list of exports - exports = self.get_code_list(export_section) - if len(exports) > 0: - # add to existing completions - completions, line_numbers = self.generate_module_completions(module, exports) - all_completions.extend(completions) - all_line_numbers.extend(line_numbers) - # return all_completions - return (all_completions, all_line_numbers) - - def bif_completions(self): - # default BIFs not available in modules - return { - 'erlang': [ - ('abs/1', 'abs(${1:Number}) $2'), - ('atom_to_binary/2', 'atom_to_binary(${1:Atom}, ${2:Encoding}) $3'), - ('atom_to_list/1', 'atom_to_list(${1:Atom}) $2'), - ('binary_part/2', 'binary_part(${1:Subject}, ${2:PosLen}) $3'), - ('binary_part/3', 'binary_part(${1:Subject}, ${2:Start}, ${3:Length}) $4'), - ('binary_to_atom/2', 'binary_to_atom(${1:Binary}, ${2:Encoding}) $3'), - ('binary_to_existing_atom/2', 'binary_to_existing_atom(${1:Binary}, ${2:Encoding}) $3'), - ('binary_to_list/1', 'binary_to_list(${1:Binary}) $2'), - ('binary_to_list/3', 'binary_to_list(${1:Binary}, ${2:Start}, ${3:Stop}) $4'), - ('bitstring_to_list/1', 'bitstring_to_list(${1:Bitstring}) $2'), - ('binary_to_term/2', 'binary_to_term(${1:Binary}, ${2:Opts}) $3'), - ('bit_size/1', 'bit_size(${1:Bitstring}) $2'), - ('byte_size/1', 'byte_size(${1:Bitstring}) $2'), - ('check_old_code/1', 'check_old_code(${1:Module}) $2'), - ('check_process_code/2', 'check_process_code(${1:Pid}, ${2:Module}) $3'), - ('date/0', 'date() $1'), - ('delete_module/1', 'delete_module(${1:Module}) $2'), - ('demonitor/1', 'demonitor(${1:MonitorRef}) $2'), - ('demonitor/2', 'demonitor(${1:MonitorRef}, ${2:OptionList}) $3'), - ('element/2', 'element(${1:N}, ${2:Tuple}) $3'), - ('erase/0', 'erase() $1'), - ('erase/1', 'erase(${1:Key}) $2'), - ('error/1', 'error(${1:Reason}) $2'), - ('error/2', 'error(${1:Reason}, ${2:Args}) $3'), - ('exit/1', 'exit(${1:Reason}) $2'), - ('exit/2', 'exit(${1:Reason}, ${2:Args}) $3'), - ('float/1', 'float(${1:Number}) $2'), - ('float_to_list/1', 'float_to_list(${1:Float}) $2'), - ('garbage_collect/0', 'garbage_collect() $1'), - ('garbage_collect/1', 'garbage_collect(${1:Pid}) $2'), - ('get/0', 'get() $1'), - ('get/1', 'get(${1:Key}) $2'), - ('get_keys/1', 'get_keys(${1:Val}) $2'), - ('group_leader/0', 'group_leader() $1'), - ('group_leader/2', 'group_leader(${1:GroupLeader}, ${2:Pid}) $3'), - ('halt/0', 'halt() $1'), - ('halt/1', 'halt(${1:Status}) $2'), - ('halt/2', 'halt(${1:Status}, ${2:Options}) $3'), - ('hd/1', 'hd(${1:List}) $2'), - ('integer_to_list/1', 'integer_to_list(${1:Integer}) $2'), - ('iolist_to_binary/1', 'iolist_to_binary(${1:IoListOrBinary}) $2'), - ('iolist_size/1', 'iolist_size(${1:Item}) $2'), - ('is_alive/0', 'is_alive() $1'), - ('is_atom/1', 'is_atom(${1:Term}) $2'), - ('is_binary/1', 'is_binary(${1:Term}) $2'), - ('is_bitstring/1', 'is_bitstring(${1:Term}) $2'), - ('is_boolean/1', 'is_boolean(${1:Term}) $2'), - ('is_float/1', 'is_float(${1:Term}) $2'), - ('is_function/1', 'is_function(${1:Term}) $2'), - ('is_function/2', 'is_function(${1:Term}, ${2:Arity}) $3'), - ('is_integer/1', 'is_integer(${1:Term}) $2'), - ('is_list/1', 'is_list(${1:Term}) $2'), - ('is_number/1', 'is_number(${1:Term}) $2'), - ('is_pid/1', 'is_pid(${1:Term}) $2'), - ('is_port/1', 'is_port(${1:Term}) $2'), - ('is_process_alive/1', 'is_process_alive(${1:Pid}) $2'), - ('is_record/2', 'is_record(${1:Term}, ${2:RecordTag}) $3'), - ('is_record/3', 'is_record(${1:Term}, ${2:RecordTag}, ${3:Size}) $4'), - ('is_reference/1', 'is_reference(${1:Term}) $2'), - ('is_tuple/1', 'is_tuple(${1:Term}) $2'), - ('length/1', 'length(${1:List}) $2'), - ('link/1', 'link(${1:Pid}) $2'), - ('list_to_atom/1', 'list_to_atom(${1:String}) $2'), - ('list_to_binary/1', 'list_to_binary(${1:IoList}) $2'), - ('list_to_bitstring/1', 'list_to_bitstring(${1:BitstringList}) $2'), - ('list_to_existing_atom/1', 'list_to_existing_atom(${1:String}) $2'), - ('list_to_float/1', 'list_to_float(${1:String}) $2'), - ('list_to_integer/1', 'list_to_integer(${1:String}) $2'), - ('list_to_pid/1', 'list_to_pid(${1:String}) $2'), - ('list_to_tuple/1', 'list_to_tuple(${1:List}) $2'), - ('load_module/2', 'load_module(${1:Module}, ${2:Binary}) $3'), - ('make_ref/0', 'make_ref() $1'), - ('module_loaded/1', 'module_loaded(${1:Module}) $2'), - ('monitor/2', 'monitor(${1:Type}, ${2:Item}) $3'), - ('monitor_node/2', 'monitor_node(${1:Node}, ${2:Flag}) $3'), - ('node/0', 'node() $1'), - ('node/1', 'node(${1:Arg}) $2'), - ('nodes/1', 'nodes(${1:Arg}) $2'), - ('now/0', 'now() $1'), - ('open_port/2', 'open_port(${1:PortName}, ${2:PortSettings}) $3'), - ('pid_to_list/1', 'pid_to_list(${1:Pid}) $2'), - ('port_close/1', 'port_close(${1:Port}) $2'), - ('port_command/2', 'port_command(${1:Port}, ${2:Data}) $3'), - ('port_command/3', 'port_command(${1:Port}, ${2:Data}, ${3:OptionList}) $4'), - ('port_connect/2', 'port_connect(${1:Port}, ${2:Pid}) $3'), - ('port_control/3', 'port_control(${1:Port}, ${2:Operation}, ${3:Data}) $4'), - ('pre_loaded/0', 'pre_loaded() $1'), - ('process_flag/2', 'process_flag(${1:Flag}, ${2:Value}) $3'), - ('process_flag/3', 'process_flag(${1:Pid}, ${2:Flag}, ${3:Value}) $4'), - ('process_info/1', 'process_info(${1:Pid}) $2'), - ('process_info/2', 'process_info(${1:Pid}, ${2:ItemSpec}) $3'), - ('processes/0', 'processes() $1'), - ('purge_module/1', 'purge_module(${1:Module}) $2'), - ('put/2', 'put(${1:Key}, ${2:Val}) $3'), - ('register/2', 'put(${1:RegName}, ${2:PidOrPort}) $3'), - ('registered/0', 'registered() $1'), - ('round/1', 'round(${1:Number}) $2'), - ('self/0', 'self() $1'), - ('setelement/3', 'setelement(${1:Index}, ${2:Tuple1}, ${3:Value}) $4'), - ('size/1', 'size(${1:Item}) $2'), - ('spawn/3', 'spawn(${1:Module}, ${2:Function}) $3, ${3:Args}) $4'), - ('spawn_link/3', 'spawn_link(${1:Module}, ${2:Function}, ${3:Args}) $4'), - ('split_binary/2', 'split_binary(${1:Bin}, ${2:Pos}) $3'), - ('statistics/1', 'statistics(${1:Type}) $2'), - ('term_to_binary/1', 'term_to_binary(${1:Term}) $2'), - ('term_to_binary/2', 'term_to_binary(${1:Term}, ${2:Options}) $3'), - ('throw/1', 'throw(${1:Any}) $2'), - ('time/0', 'time() $1'), - ('tl/1', 'tl(${1:List1}) $2'), - ('trunc/1', 'trunc(${1:Number}) $2'), - ('tuple_size/1', 'tuple_size(${1:Tuple}) $2'), - ('tuple_to_list/1', 'tuple_to_list(${1:Tuple}) $2'), - ('unlink/1', 'unlink(${1:Id}) $2'), - ('unregister/1', 'unregister(${1:RegName}) $2'), - ('whereis/1', 'whereis(${1:RegName}) $2') - ], - 'lists': [ - ('member/2', 'member(${1:Elem}, ${2:List}) $3'), - ('reverse/2', 'reverse(${1:List1}, ${2:Tail}) $3'), - ('keymember/3', 'keymember(${1:Key}, ${2:N}, ${3:TupleList}) $4'), - ('keysearch/3', 'keysearch(${1:Key}, ${2:N}, ${3:TupleList}) $4'), - ('keyfind/3', 'keyfind(${1:Key}, ${2:N}, ${3:TupleList}) $4') - ] - } - - def generate_module_completions(self, module, exports): - # get exports for a module - - completions = [] - line_numbers = [] - for export in exports: - # split param count definition - fun = export.split('/') - if len(fun) == 2: - # get params - params, lineno = self.generate_params(fun, module) - if params != None: - # add - completions.append((export, '%s%s' % (fun[0].strip(), params))) - line_numbers.append(lineno) - return (completions, line_numbers) - - def generate_params(self, fun, module): - # generate params for a specific function name - - # get params count - arity = int(fun[1]) - # init - current_params = [] - lineno = 0 - # get params - regex = re.compile(r"%s\((.*)\)\s*->" % re.escape(fun[0]), re.MULTILINE) - for m in regex.finditer(module): - params = m.groups()[0] - # strip out the eventual condition part ('when') - params = params.split('when')[0].strip() - if params[-1:] == ')': params = params[:-1] - # split - params = self.split_params(params) - if len(params) == arity: - # function definition has the correct arity - # get match line number if this is not a -spec line - spec_def_pos = module.rfind('-spec', 0, m.start()) - not_a_spec_definition = spec_def_pos == -1 or len(module[spec_def_pos + 5:m.start()].strip()) > 0 - if not_a_spec_definition and lineno == 0: lineno = module.count('\n', 0, m.start()) + 1 - # add to params - if current_params != []: - for i in range(0, len(params)): - if current_params[i] == '*' and self.regex['varname'].search(params[i]): - # found a valid variable name - current_params[i] = params[i] - else: - # init params - current_params = params - # ensure current params have variable names - for i in range(0, len(current_params)): - if current_params[i] == '*': - current_params[i] = '${%d:Param%d}' % (i + 1, i + 1) - else: - current_params[i] = '${%d:%s}' % (i + 1, current_params[i]) - # return - return ('(' + ', '.join(current_params) + ') $%d' % (len(current_params) + 1), lineno) - - def split_params(self, params): - # return list of params, with proper variable name or wildcard if invalid - - # replace content of graffles with * - params = self.regex['{'].sub("*", params) - # replace content of <<>> with * - params = self.regex['<<'].sub("*", params) - # replace content of [] with * - params = self.regex['['].sub("*", params) - # take away comments and split per line - params = self.get_code_list(params) - for p in range(0, len(params)): - # split on = - splitted_param = params[p].split('=') - if len(splitted_param) > 1: - params[p] = splitted_param[1].strip() - # spit on :: for spec declarations - params[p] = params[p].split('::')[0] - # convert to * where necessary - if not self.regex['varname'].search(params[p]): - params[p] = '*' - # return - return params - - def get_code_list(self, code): - # loop every line and add code lines - cleaned_code_list = [] - for m in self.regex['all'].finditer(code): - groups = m.groups() - for i in range(0, len(groups)): - code_line = groups[i].strip() - if len(code_line) > 0: - code_lines = code_line.split(',') - for code_line in code_lines: - code_line = code_line.strip() - if len(code_line) > 0: - cleaned_code_list.append(code_line) - return cleaned_code_list + def __init__(self): + # compile default regexes + self.regex = { + 'export_all': re.compile(r'^\s*-\s*compile\s*\(\s*\[\s*export_all\s*\]\s*\)\s*\.', re.MULTILINE + re.DOTALL), + 'all': re.compile(r"(.*)", re.MULTILINE), + 'export_section': re.compile(r"^\s*-\s*export\s*\(\s*\[\s*([^\]]*)\s*\]\s*\)\s*\.", re.DOTALL + re.MULTILINE), + 'varname': re.compile(r"^[A-Z][a-zA-Z0-9_]*$"), + '{': re.compile(r"\{.*\}"), + '<<': re.compile(r"<<.*>>"), + '[': re.compile(r"\[.*\]") + } + + def strip_comments(self, code): + # strip comments but keep the same character count + return re.sub(re.compile(r"%(.*)\n"), lambda m: (len(m.group(0)) - 1) * ' ' + '\n', code) + + def get_all_functions(self, module): + ''' + Get all functions in module. + ''' + regex = re.compile(r"^\s*([a-z_@]+)\((.*)\)\s*->", re.MULTILINE) + result = regex.findall(module) + funcs = [i[0] for i in result] + params = [i[1] for i in result] + param_count = [] + for p in params: + if p.strip(' ') == '': + param_count.append('/0') + else: + param_count.append('/'+str(p.count(',')+1)) + funcs = [a+b for a,b in zip(funcs, param_count)] + # remove duplicated funcs + funcs = list(set(funcs)) + return funcs + + def generate_completions(self, starting_dir, dest_file_base): + # init + disasms = {} + completions = [] + searches = [] + # loop directory + rel_dirs = [] + for root, dirnames, filenames in os.walk(starting_dir): + if 'reltool.config' in filenames: + # found a release directory, we will ignore autocompletion for these files + rel_dirs.append(root) + # loop filenames ending in .erl + for filename in fnmatch.filter(filenames, r"*.erl"): + if '.eunit' not in root.split('/'): + # exclude eunit files + filepath = os.path.join(root, filename) + # check if in release directory + if not (True in [filepath.find(rel_dir) != -1 for rel_dir in rel_dirs]): + # not in a release directory, get module name + module_name, module_ext = os.path.splitext(filename) + print 'reading:' + filepath + # get module content + f = open(filepath, 'r') + module = self.strip_comments(f.read()) + f.close() + # get completions + module_completions, line_numbers = self.get_completions(module) + print module_completions + if len(module_completions) > 0: + # set disasm + disasms[module_name] = sorted(module_completions, key=lambda k: k[0]) + # set searches + for i in range(0, len(module_completions)): + function, completion = module_completions[i] + searches.append(("%s:%s" % (module_name, function), filepath, line_numbers[i])) + # set module completions + completions.append("{ \"trigger\": \"%s\", \"contents\": \"%s\" }" % (module_name, module_name)) + + # add BIF completions? + if disasms.has_key('erlang'): + # we are generating erlang disasm + bif_completions = self.bif_completions() + for k in bif_completions.keys(): + disasms[k].extend(bif_completions[k]) + # sort + disasms[k] = sorted(disasms[k], key=lambda k: k[0]) + # erlang completions + for c in bif_completions['erlang']: + completions.append("{ \"trigger\": \"%s\", \"contents\": \"%s\" }" % (c[0], c[1])) + else: + # we are generating project disasm -> write to files: searches + f_searches = open("%s.searches" % dest_file_base, 'wb') + pickle.dump(sorted(searches, key=lambda k: k[0]), f_searches) + f_searches.close() + + # write to files: disasms + f_disasms = open("%s.disasm" % dest_file_base, 'wb') + pickle.dump(disasms, f_disasms) + f_disasms.close() + # write to files: completions + f_completions = open("%s.sublime-completions" % dest_file_base, 'wb') + if len(completions) > 0: + f_completions.write("{ \"scope\": \"source.erlang\", \"completions\": [\n" + ',\n'.join(completions) + "\n]}") + else: + f_completions.write("{}") + f_completions.close() + + def get_completions(self, module): + # get export portion in code module + + all_completions = [] + all_line_numbers = [] + # if compile([export_all]) is defined, then generate completions for all functions. + if self.regex['export_all'].search(module): + all_functions = self.get_all_functions(module) + for m in all_functions: + # get list of exports + exports = self.get_code_list(m) + if len(exports) > 0: + # add to existing completions + completions, line_numbers = self.generate_module_completions(module, exports) + all_completions.extend(completions) + all_line_numbers.extend(line_numbers) + else: + for m in self.regex['export_section'].finditer(module): + export_section = m.groups()[0] + if export_section: + # get list of exports + exports = self.get_code_list(export_section) + if len(exports) > 0: + # add to existing completions + completions, line_numbers = self.generate_module_completions(module, exports) + all_completions.extend(completions) + all_line_numbers.extend(line_numbers) + + # return all_completions + return (all_completions, all_line_numbers) + + def bif_completions(self): + # default BIFs not available in modules + return { + 'erlang': [ + ('abs/1', 'abs(${1:Number})$2'), + ('atom_to_binary/2', 'atom_to_binary(${1:Atom}, ${2:Encoding})$3'), + ('atom_to_list/1', 'atom_to_list(${1:Atom})$2'), + ('binary_part/2', 'binary_part(${1:Subject}, ${2:PosLen})$3'), + ('binary_part/3', 'binary_part(${1:Subject}, ${2:Start}, ${3:Length})$4'), + ('binary_to_atom/2', 'binary_to_atom(${1:Binary}, ${2:Encoding})$3'), + ('binary_to_existing_atom/2', 'binary_to_existing_atom(${1:Binary}, ${2:Encoding})$3'), + ('binary_to_list/1', 'binary_to_list(${1:Binary})$2'), + ('binary_to_list/3', 'binary_to_list(${1:Binary}, ${2:Start}, ${3:Stop})$4'), + ('bitstring_to_list/1', 'bitstring_to_list(${1:Bitstring})$2'), + ('binary_to_term/2', 'binary_to_term(${1:Binary}, ${2:Opts})$3'), + ('bit_size/1', 'bit_size(${1:Bitstring})$2'), + ('byte_size/1', 'byte_size(${1:Bitstring})$2'), + ('check_old_code/1', 'check_old_code(${1:Module})$2'), + ('check_process_code/2', 'check_process_code(${1:Pid}, ${2:Module})$3'), + ('date/0', 'date()$1'), + ('delete_module/1', 'delete_module(${1:Module})$2'), + ('demonitor/1', 'demonitor(${1:MonitorRef})$2'), + ('demonitor/2', 'demonitor(${1:MonitorRef}, ${2:OptionList})$3'), + ('element/2', 'element(${1:N}, ${2:Tuple})$3'), + ('erase/0', 'erase()$1'), + ('erase/1', 'erase(${1:Key})$2'), + ('error/1', 'error(${1:Reason})$2'), + ('error/2', 'error(${1:Reason}, ${2:Args})$3'), + ('exit/1', 'exit(${1:Reason})$2'), + ('exit/2', 'exit(${1:Reason}, ${2:Args})$3'), + ('float/1', 'float(${1:Number})$2'), + ('float_to_list/1', 'float_to_list(${1:Float})$2'), + ('garbage_collect/0', 'garbage_collect()$1'), + ('garbage_collect/1', 'garbage_collect(${1:Pid})$2'), + ('get/0', 'get()$1'), + ('get/1', 'get(${1:Key})$2'), + ('get_keys/1', 'get_keys(${1:Val})$2'), + ('group_leader/0', 'group_leader()$1'), + ('group_leader/2', 'group_leader(${1:GroupLeader}, ${2:Pid})$3'), + ('halt/0', 'halt()$1'), + ('halt/1', 'halt(${1:Status})$2'), + ('halt/2', 'halt(${1:Status}, ${2:Options})$3'), + ('hd/1', 'hd(${1:List})$2'), + ('integer_to_list/1', 'integer_to_list(${1:Integer})$2'), + ('iolist_to_binary/1', 'iolist_to_binary(${1:IoListOrBinary})$2'), + ('iolist_size/1', 'iolist_size(${1:Item})$2'), + ('is_alive/0', 'is_alive()$1'), + ('is_atom/1', 'is_atom(${1:Term})$2'), + ('is_binary/1', 'is_binary(${1:Term})$2'), + ('is_bitstring/1', 'is_bitstring(${1:Term})$2'), + ('is_boolean/1', 'is_boolean(${1:Term})$2'), + ('is_float/1', 'is_float(${1:Term})$2'), + ('is_function/1', 'is_function(${1:Term})$2'), + ('is_function/2', 'is_function(${1:Term}, ${2:Arity})$3'), + ('is_integer/1', 'is_integer(${1:Term})$2'), + ('is_list/1', 'is_list(${1:Term})$2'), + ('is_number/1', 'is_number(${1:Term})$2'), + ('is_pid/1', 'is_pid(${1:Term})$2'), + ('is_port/1', 'is_port(${1:Term})$2'), + ('is_process_alive/1', 'is_process_alive(${1:Pid})$2'), + ('is_record/2', 'is_record(${1:Term}, ${2:RecordTag})$3'), + ('is_record/3', 'is_record(${1:Term}, ${2:RecordTag}, ${3:Size})$4'), + ('is_reference/1', 'is_reference(${1:Term})$2'), + ('is_tuple/1', 'is_tuple(${1:Term})$2'), + ('length/1', 'length(${1:List})$2'), + ('link/1', 'link(${1:Pid})$2'), + ('list_to_atom/1', 'list_to_atom(${1:String})$2'), + ('list_to_binary/1', 'list_to_binary(${1:IoList})$2'), + ('list_to_bitstring/1', 'list_to_bitstring(${1:BitstringList})$2'), + ('list_to_existing_atom/1', 'list_to_existing_atom(${1:String})$2'), + ('list_to_float/1', 'list_to_float(${1:String})$2'), + ('list_to_integer/1', 'list_to_integer(${1:String})$2'), + ('list_to_pid/1', 'list_to_pid(${1:String})$2'), + ('list_to_tuple/1', 'list_to_tuple(${1:List})$2'), + ('load_module/2', 'load_module(${1:Module}, ${2:Binary})$3'), + ('make_ref/0', 'make_ref()$1'), + ('module_loaded/1', 'module_loaded(${1:Module})$2'), + ('monitor/2', 'monitor(${1:Type}, ${2:Item})$3'), + ('monitor_node/2', 'monitor_node(${1:Node}, ${2:Flag})$3'), + ('node/0', 'node()$1'), + ('node/1', 'node(${1:Arg})$2'), + ('nodes/1', 'nodes(${1:Arg})$2'), + ('now/0', 'now()$1'), + ('open_port/2', 'open_port(${1:PortName}, ${2:PortSettings})$3'), + ('pid_to_list/1', 'pid_to_list(${1:Pid})$2'), + ('port_close/1', 'port_close(${1:Port})$2'), + ('port_command/2', 'port_command(${1:Port}, ${2:Data})$3'), + ('port_command/3', 'port_command(${1:Port}, ${2:Data}, ${3:OptionList})$4'), + ('port_connect/2', 'port_connect(${1:Port}, ${2:Pid})$3'), + ('port_control/3', 'port_control(${1:Port}, ${2:Operation}, ${3:Data})$4'), + ('pre_loaded/0', 'pre_loaded()$1'), + ('process_flag/2', 'process_flag(${1:Flag}, ${2:Value})$3'), + ('process_flag/3', 'process_flag(${1:Pid}, ${2:Flag}, ${3:Value})$4'), + ('process_info/1', 'process_info(${1:Pid})$2'), + ('process_info/2', 'process_info(${1:Pid}, ${2:ItemSpec})$3'), + ('processes/0', 'processes()$1'), + ('purge_module/1', 'purge_module(${1:Module})$2'), + ('put/2', 'put(${1:Key}, ${2:Val})$3'), + ('register/2', 'register(${1:RegName}, ${2:PidOrPort})$3'), + ('registered/0', 'registered()$1'), + ('round/1', 'round(${1:Number})$2'), + ('self/0', 'self()$1'), + ('setelement/3', 'setelement(${1:Index}, ${2:Tuple1}, ${3:Value})$4'), + ('size/1', 'size(${1:Item})$2'), + ('spawn/3', 'spawn(${1:Module}, ${2:Function}, ${3:Args})$4'), + ('spawn_link/3', 'spawn_link(${1:Module}, ${2:Function}, ${3:Args})$4'), + ('split_binary/2', 'split_binary(${1:Bin}, ${2:Pos})$3'), + ('statistics/1', 'statistics(${1:Type})$2'), + ('term_to_binary/1', 'term_to_binary(${1:Term})$2'), + ('term_to_binary/2', 'term_to_binary(${1:Term}, ${2:Options})$3'), + ('throw/1', 'throw(${1:Any})$2'), + ('time/0', 'time()$1'), + ('tl/1', 'tl(${1:List1})$2'), + ('trunc/1', 'trunc(${1:Number})$2'), + ('tuple_size/1', 'tuple_size(${1:Tuple})$2'), + ('tuple_to_list/1', 'tuple_to_list(${1:Tuple})$2'), + ('unlink/1', 'unlink(${1:Id})$2'), + ('unregister/1', 'unregister(${1:RegName})$2'), + ('whereis/1', 'whereis(${1:RegName})$2') + ], + 'lists': [ + ('member/2', 'member(${1:Elem}, ${2:List})$3'), + ('reverse/2', 'reverse(${1:List1}, ${2:Tail})$3'), + ('keymember/3', 'keymember(${1:Key}, ${2:N}, ${3:TupleList})$4'), + ('keysearch/3', 'keysearch(${1:Key}, ${2:N}, ${3:TupleList})$4'), + ('keyfind/3', 'keyfind(${1:Key}, ${2:N}, ${3:TupleList})$4') + ] + } + + def generate_module_completions(self, module, exports): + # get exports for a module + + completions = [] + line_numbers = [] + for export in exports: + # split param count definition + fun = export.split('/') + if len(fun) == 2: + # get params + params, lineno = self.generate_params(fun, module) + if params != None: + # add + completions.append((export, '%s%s' % (fun[0].strip(), params))) + line_numbers.append(lineno) + return (completions, line_numbers) + + def generate_params(self, fun, module): + # generate params for a specific function name + + # get params count + arity = int(fun[1]) + # init + current_params = [] + lineno = 0 + # get params + regex = re.compile(r"%s\((.*)\)\s*->" % re.escape(fun[0]), re.MULTILINE) + for m in regex.finditer(module): + params = m.groups()[0] + # strip out the eventual condition part ('when') + params = params.split('when')[0].strip() + if params[-1:] == ')': params = params[:-1] + # split + params = self.split_params(params) + if len(params) == arity: + # function definition has the correct arity + # get match line number if this is not a -spec line + spec_def_pos = module.rfind('-spec', 0, m.start()) + not_a_spec_definition = spec_def_pos == -1 or len(module[spec_def_pos + 5:m.start()].strip()) > 0 + if not_a_spec_definition and lineno == 0: lineno = module.count('\n', 0, m.start()) + 1 + # add to params + if current_params != []: + for i in range(0, len(params)): + if current_params[i] == '*' and self.regex['varname'].search(params[i]): + # found a valid variable name + current_params[i] = params[i] + else: + # init params + current_params = params + # ensure current params have variable names + for i in range(0, len(current_params)): + if current_params[i] == '*': + current_params[i] = '${%d:Param%d}' % (i + 1, i + 1) + else: + current_params[i] = '${%d:%s}' % (i + 1, current_params[i]) + # return + return ('(' + ', '.join(current_params) + ')$%d' % (len(current_params) + 1), lineno) + + def split_params(self, params): + # return list of params, with proper variable name or wildcard if invalid + + # replace content of graffles with * + params = self.regex['{'].sub("*", params) + # replace content of <<>> with * + params = self.regex['<<'].sub("*", params) + # replace content of [] with * + params = self.regex['['].sub("*", params) + # take away comments and split per line + params = self.get_code_list(params) + for p in range(0, len(params)): + # split on = + splitted_param = params[p].split('=') + if len(splitted_param) > 1: + params[p] = splitted_param[1].strip() + # spit on :: for spec declarations + params[p] = params[p].split('::')[0] + # convert to * where necessary + if not self.regex['varname'].search(params[p]): + params[p] = '*' + # return + return params + + def get_code_list(self, code): + # loop every line and add code lines + cleaned_code_list = [] + for m in self.regex['all'].finditer(code): + groups = m.groups() + for i in range(0, len(groups)): + code_line = groups[i].strip() + if len(code_line) > 0: + code_lines = code_line.split(',') + for code_line in code_lines: + code_line = code_line.strip() + if len(code_line) > 0: + cleaned_code_list.append(code_line) + return cleaned_code_list class TestSequenceFunctions(unittest.TestCase): - def setUp(self): - self.parser = SublimErlLibParser() - - def test_split_params(self): - fixtures = [ - ("One, Two, Three", ["One", "Two", "Three"]), - ("One", ["One"]), - ("One, <<>>, Three", ["One", "*", "Three"]), - ("One, [], Three", ["One", "*", "Three"]), - ("One, {TwoA, TwoB}, Three", ["One", "*", "Three"]), - ("One, {TwoA, TwoB, {TwoC, TwoD}}, Three", ["One", "*", "Three"]), - ("One, {TwoA, TwoB, {TwoC, TwoD}} = Two, Three", ["One", "Two", "Three"]), - ("One, {TwoA, TwoB, {TwoC, TwoD} = TwoE} = Two, Three", ["One", "Two", "Three"]), - ("#client{name=Name} = Client", ["Client"]), - ] - for f in range(0, len(fixtures)): - self.assertEqual(self.parser.split_params(fixtures[f][0]), fixtures[f][1]) - - def test_generate_params(self): - fixtures = [ - (('start', '3'),""" - start(One, Two, Three) -> ok. - - """, ("(${1:One}, ${2:Two}, ${3:Three}) $4", 2)), - (('start', '3'),""" - start(One, <<>>, Three) -> ok; - start(One, Two, Three) -> ok. - - """, ("(${1:One}, ${2:Two}, ${3:Three}) $4", 2)), - (('start', '3'),""" - start(One, {Abc, Cde}, Three) -> ok; - start(One, Two, Three) -> ok. - - """, ("(${1:One}, ${2:Two}, ${3:Three}) $4", 2)), - (('start', '3'),""" - start(One, <>, Three) -> ok - - """, ("(${1:One}, ${2:Param2}, ${3:Three}) $4", 2)), - (('start', '3'),""" - start(One, [Abc|R] = Two, Three) -> ok - - """, ("(${1:One}, ${2:Two}, ${3:Three}) $4", 2)), - (('start', '3'),""" - start(One, [Abc|R], Three) -> ok - - """, ("(${1:One}, ${2:Param2}, ${3:Three}) $4", 2)), - (('start', '3'),""" - start(One, [Abc, R], Three) -> ok - - """, ("(${1:One}, ${2:Param2}, ${3:Three}) $4", 2)), - (('start', '3'),""" - start(One, Two, Three, Four) -> ok. - start(One, {Abc, Cde} = Two, Three) -> ok; - start(One, <<>>, Three) -> ok. - - """, ("(${1:One}, ${2:Two}, ${3:Three}) $4", 3)), - (('start', '0'),""" - -spec start() -> ok. - start() -> ok; - """, ("() $1", 3)), - (('start', '1'),""" - start(#client{name=Name} = Client) -> ok. - - """, ("(${1:Client}) $2", 2)), - (('start', '2'),""" - start(Usr, Opts) when is_binary(Usr), is_list(Opts) -> ok. - - """, ("(${1:Usr}, ${2:Opts}) $3", 2)), - (('start', '1'),""" - start( << _:3/bytes,Body/binary >> = Data) -> ok. - - """, ("(${1:Data}) $2", 2)), - (('start', '2'),""" - start(Usr, Opts) when is_binary(Usr), is_list(Opts) -> ok. - - """, ("(${1:Usr}, ${2:Opts}) $3", 2)), - ] - for f in range(0, len(fixtures)): - self.assertEqual(self.parser.generate_params(fixtures[f][0], fixtures[f][1]), fixtures[f][2]) - - def test_get_completions(self): - fixtures = [ - (""" - -export([zero/0, one/1, two/2, three/3, four/4]). - - zero() -> ok. - one(One) -> ok. - two(Two1, Two2) -> ok. - three(Three1, Three2, Three3) -> ok. - four(Four1, <<>>, Four3, Four4) -> ok; - four(Four1, {Four2A, Four2B, <<>>} = Four2, Four3, Four4) -> ok; - """, - ([ - ('zero/0', 'zero() $1'), - ('one/1', 'one(${1:One}) $2'), - ('two/2', 'two(${1:Two1}, ${2:Two2}) $3'), - ('three/3', 'three(${1:Three1}, ${2:Three2}, ${3:Three3}) $4'), - ('four/4', 'four(${1:Four1}, ${2:Four2}, ${3:Four3}, ${4:Four4}) $5') - ], [4, 5, 6, 7, 8])), - - (""" - -export([zero/0]). - -export([one/1, two/2, three/3, four/4]). - - zero() -> three(Three1wrong, Three2wrong, Three3wrong). - one(One) -> ok. - two(Two1, Two2) -> ok. - -spec three(ThreeParam1::list(), ThreeParam2::list(), ThreeParam3::atom()) -> ok. - three(Three1, Three2, Three3) -> ok. - four(Four1, <<>>, Four3, Four4) -> ok; - four(Four1, {Four2A, Four2B, <<>>} = Four2, Four3, Four4) -> ok; - """, - ([ - ('zero/0', 'zero() $1'), - ('one/1', 'one(${1:One}) $2'), - ('two/2', 'two(${1:Two1}, ${2:Two2}) $3'), - ('three/3', 'three(${1:ThreeParam1}, ${2:ThreeParam2}, ${3:ThreeParam3}) $4'), - ('four/4', 'four(${1:Four1}, ${2:Four2}, ${3:Four3}, ${4:Four4}) $5') - ], [5, 6, 7, 9, 10])) - ] - for f in range(0, len(fixtures)): - self.assertEqual(self.parser.get_completions(fixtures[f][0]), fixtures[f][1]) + def setUp(self): + self.parser = SublimErlLibParser() + + def test_split_params(self): + fixtures = [ + ("One, Two, Three", ["One", "Two", "Three"]), + ("One", ["One"]), + ("One, <<>>, Three", ["One", "*", "Three"]), + ("One, [], Three", ["One", "*", "Three"]), + ("One, {TwoA, TwoB}, Three", ["One", "*", "Three"]), + ("One, {TwoA, TwoB, {TwoC, TwoD}}, Three", ["One", "*", "Three"]), + ("One, {TwoA, TwoB, {TwoC, TwoD}} = Two, Three", ["One", "Two", "Three"]), + ("One, {TwoA, TwoB, {TwoC, TwoD} = TwoE} = Two, Three", ["One", "Two", "Three"]), + ("#client{name=Name} = Client", ["Client"]), + ] + for f in range(0, len(fixtures)): + self.assertEqual(self.parser.split_params(fixtures[f][0]), fixtures[f][1]) + + def test_generate_params(self): + fixtures = [ + (('start', '3'),""" + start(One, Two, Three) -> ok. + + """, ("(${1:One}, ${2:Two}, ${3:Three})$4", 2)), + (('start', '3'),""" + start(One, <<>>, Three) -> ok; + start(One, Two, Three) -> ok. + + """, ("(${1:One}, ${2:Two}, ${3:Three})$4", 2)), + (('start', '3'),""" + start(One, {Abc, Cde}, Three) -> ok; + start(One, Two, Three) -> ok. + + """, ("(${1:One}, ${2:Two}, ${3:Three})$4", 2)), + (('start', '3'),""" + start(One, <>, Three) -> ok + + """, ("(${1:One}, ${2:Param2}, ${3:Three})$4", 2)), + (('start', '3'),""" + start(One, [Abc|R] = Two, Three) -> ok + + """, ("(${1:One}, ${2:Two}, ${3:Three})$4", 2)), + (('start', '3'),""" + start(One, [Abc|R], Three) -> ok + + """, ("(${1:One}, ${2:Param2}, ${3:Three})$4", 2)), + (('start', '3'),""" + start(One, [Abc, R], Three) -> ok + + """, ("(${1:One}, ${2:Param2}, ${3:Three})$4", 2)), + (('start', '3'),""" + start(One, Two, Three, Four) -> ok. + start(One, {Abc, Cde} = Two, Three) -> ok; + start(One, <<>>, Three) -> ok. + + """, ("(${1:One}, ${2:Two}, ${3:Three})$4", 3)), + (('start', '0'),""" + -spec start() -> ok. + start() -> ok; + """, ("()$1", 3)), + (('start', '1'),""" + start(#client{name=Name} = Client) -> ok. + + """, ("(${1:Client})$2", 2)), + (('start', '2'),""" + start(Usr, Opts) when is_binary(Usr), is_list(Opts) -> ok. + + """, ("(${1:Usr}, ${2:Opts})$3", 2)), + (('start', '1'),""" + start( << _:3/bytes,Body/binary >> = Data) -> ok. + + """, ("(${1:Data})$2", 2)), + (('start', '2'),""" + start(Usr, Opts) when is_binary(Usr), is_list(Opts) -> ok. + + """, ("(${1:Usr}, ${2:Opts})$3", 2)), + ] + for f in range(0, len(fixtures)): + self.assertEqual(self.parser.generate_params(fixtures[f][0], fixtures[f][1]), fixtures[f][2]) + + def test_get_completions(self): + fixtures = [ + (""" + -export([zero/0, one/1, two/2, three/3, four/4]). + + zero() -> ok. + one(One) -> ok. + two(Two1, Two2) -> ok. + three(Three1, Three2, Three3) -> ok. + four(Four1, <<>>, Four3, Four4) -> ok; + four(Four1, {Four2A, Four2B, <<>>} = Four2, Four3, Four4) -> ok; + """, + ([ + ('zero/0', 'zero()$1'), + ('one/1', 'one(${1:One})$2'), + ('two/2', 'two(${1:Two1}, ${2:Two2})$3'), + ('three/3', 'three(${1:Three1}, ${2:Three2}, ${3:Three3})$4'), + ('four/4', 'four(${1:Four1}, ${2:Four2}, ${3:Four3}, ${4:Four4})$5') + ], [4, 5, 6, 7, 8])), + + (""" + -export([zero/0]). + -export([one/1, two/2, three/3, four/4]). + + zero() -> three(Three1wrong, Three2wrong, Three3wrong). + one(One) -> ok. + two(Two1, Two2) -> ok. + -spec three(ThreeParam1::list(), ThreeParam2::list(), ThreeParam3::atom()) -> ok. + three(Three1, Three2, Three3) -> ok. + four(Four1, <<>>, Four3, Four4) -> ok; + four(Four1, {Four2A, Four2B, <<>>} = Four2, Four3, Four4) -> ok; + """, + ([ + ('zero/0', 'zero()$1'), + ('one/1', 'one(${1:One})$2'), + ('two/2', 'two(${1:Two1}, ${2:Two2})$3'), + ('three/3', 'three(${1:ThreeParam1}, ${2:ThreeParam2}, ${3:ThreeParam3})$4'), + ('four/4', 'four(${1:Four1}, ${2:Four2}, ${3:Four3}, ${4:Four4})$5') + ], [5, 6, 7, 9, 10])) + ] + for f in range(0, len(fixtures)): + self.assertEqual(self.parser.get_completions(fixtures[f][0]), fixtures[f][1]) if __name__ == '__main__': - if (len(sys.argv) == 2): - if sys.argv[1] == 'test': - sys.argv = [sys.argv[0]] - unittest.main() - - elif (len(sys.argv) == 3): - starting_dir = sys.argv[1] - dest_file_base = sys.argv[2] - parser = SublimErlLibParser() - parser.generate_completions(starting_dir, dest_file_base) + if (len(sys.argv) == 2): + if sys.argv[1] == 'test': + sys.argv = [sys.argv[0]] + unittest.main() + + elif (len(sys.argv) == 3): + starting_dir = sys.argv[1] + dest_file_base = sys.argv[2] + parser = SublimErlLibParser() + parser.generate_completions(starting_dir, dest_file_base) diff --git a/support/sublimerl_utility.erl b/support/sublimerl_utility.erl index 5625e85..20a0fcf 100644 --- a/support/sublimerl_utility.erl +++ b/support/sublimerl_utility.erl @@ -34,6 +34,6 @@ % command line exposure main(["lib_dir"]) -> - io:format("~s", [code:lib_dir()]); + io:format("~s", [code:lib_dir()]); main(_) -> - halt(1). + halt(1).