Searched refs:level (Results 26 - 50 of 1602) sorted by relevance

1234567891011>>

/macosx-10.9.5/bind9-45.100/bind9/lib/isc/nothreads/include/isc/
H A Dthread.h29 isc_thread_setconcurrency(unsigned int level);
/macosx-10.9.5/ntp-88/lib/isc/nothreads/include/isc/
H A Dthread.h29 isc_thread_setconcurrency(unsigned int level);
/macosx-10.9.5/ruby-104/ruby/lib/rexml/formatters/
H A Dpretty.rb22 # An integer greater than 0. The indentation of each level will be
31 @level = 0
39 output << ' '*@level
61 old_level = @level
62 @level = 0
64 @level = old_level
73 @level += @indentation
79 @level -= @indentation
80 output << ' '*@level
91 s = wrap(s, @width - @level)
[all...]
H A Dtransitive.rb17 @level = 0
31 output << ' '*@level
40 @level += @indentation
44 @level -= @indentation
47 output << ' '*@level
/macosx-10.9.5/CPANInternal-140/Test-Simple/t/Builder/
H A Ddone_testing.t8 $tb->level(0);
H A Ddone_testing_with_number.t8 $tb->level(0);
H A DBuilder.t15 my $default_lvl = $Test->level;
16 $Test->level(0);
19 $Test->ok( $default_lvl == 1, 'level()' );
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/C/
H A DWKBatteryStatus.cpp46 WKBatteryStatusRef WKBatteryStatusCreate(bool isCharging, double chargingTime, double dischargingTime, double level) argument
49 RefPtr<WebBatteryStatus> status = WebBatteryStatus::create(isCharging, chargingTime, dischargingTime, level);
H A DWKBatteryStatus.h37 WK_EXPORT WKBatteryStatusRef WKBatteryStatusCreate(bool isCharging, double chargingTime, double dischargingTime, double level);
/macosx-10.9.5/dcerpc-58/dcerpc/ncklib/
H A Drpcdbg.h108 * of which can be set to some debug "level". The switches are represented
177 * A vector of "debug levels", one level per "debug switch".
184 * Tests whether a particular debug switch is set at a particular level (or
187 #define RPC_DBG(switch, level) (rpc_g_dbg_switches[(int) (switch)] >= (level))
192 * Tests whether a particular debug switch is set at exactly a particular level
194 #define RPC_DBG_EXACT(switch, level) (rpc_g_dbg_switches[(int) (switch)] == (level))
205 * A macro that prints debug info based on a debug switch's level. Note
214 #define RPC_DBG_ADD_PRINTF(switch, level, parg
[all...]
/macosx-10.9.5/bind9-45.100/bind9/contrib/idn/idnkit-1.0-src/lib/
H A Dlog.c70 static void log(int level, const char *fmt, va_list args);
71 static void log_to_stderr(int level, const char *buf);
129 idn_log_setlevel(int level) { argument
130 if (level >= 0)
131 log_level = level;
155 int level = atoi(s); local
156 if (level >= 0)
157 log_level = level;
168 log(int level, const char *fmt, va_list args) { argument
173 if (log_level < level)
186 log_to_stderr(int level, const char *buf) argument
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/Shared/
H A DWebBatteryStatus.cpp36 WebBatteryStatus::WebBatteryStatus(bool isCharging, double chargingTime, double dischargingTime, double level) argument
41 m_data.level = level;
53 encoder << level; local
64 if (!decoder.decode(result.level))
/macosx-10.9.5/dcerpc-58/dcerpc/idl_compiler/
H A Direpscp.c363 ** Returns immediate nesting level of the specified scope kind.
369 int IR_in_scope /* Returns data kind nesting level */
375 int level;
377 level = ctx_p->scope;
378 while (level > 0 && ctx_p->scope_a[level].scope_k == scope)
379 level--;
381 return ctx_p->scope - level;
390 int IR_in_scope_parent /* Returns data kind nesting level */
396 int level;
374 int level; local
395 int level; local
422 int level; local
447 int level; local
479 int level; local
505 int level; /* Scope level */ local
[all...]
/macosx-10.9.5/groff-38/groff/src/roff/grog/
H A Dgrog.pl28 local($filename, $level) = @_;
33 exit 1 unless $level;
41 $soelim++ if $level;
48 $soelim++ if $level;
55 $soelim++ if $level;
63 $soelim++ if $level;
69 $soelim++ if $level;
70 &process($1, $level);
76 $soelim++ if $level;
82 $soelim++ if $level;
[all...]
/macosx-10.9.5/ruby-104/ruby/lib/irb/
H A Dnotifier.rb20 "undefined notifier level: %d is specified"
22 "unrecognized notifier level: %s is specified"
109 # the appropriate level for output.
130 # The given +prefix+ will be assigned to the notifier, and +level+ will
134 def def_notifier(level, prefix = "")
135 notifier = LeveledNotifier.new(self, level, prefix)
136 @notifiers[level] = notifier
142 alias level level_notifier
171 alias level= level_notifier=
182 # The given +level
[all...]
/macosx-10.9.5/Heimdal-323.92.1/cf/
H A Dw32-hh-toc-from-info.pl80 my $level = shift;
84 print TOC ' 'x$level;
90 process_li_element($_, $level + 1);
93 print TOC ' 'x$level;
101 my $level = shift;
110 print TOC " "x$level;
116 process_ul_element($_, $level + 1);
/macosx-10.9.5/ruby-104/ruby/ext/socket/
H A Dconstants.c57 rsock_level_arg(int family, VALUE level) argument
61 return constant_arg(level, rsock_ip_level_to_int, "unknown protocol level");
64 return constant_arg(level, rsock_unknown_level_to_int, "unknown protocol level");
69 rsock_optname_arg(int family, int level, VALUE optname) argument
72 switch (level) {
74 return constant_arg(optname, rsock_so_optname_to_int, "unknown socket level option name");
76 return constant_arg(optname, rsock_ip_optname_to_int, "unknown IP level option name");
79 return constant_arg(optname, rsock_ipv6_optname_to_int, "unknown IPv6 level optio
100 rsock_cmsg_type_arg(int family, int level, VALUE type) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/Modules/battery/
H A DBatteryStatus.h33 static PassRefPtr<BatteryStatus> create(bool charging, double chargingTime, double dischargingTime, double level);
38 double level() const { return m_level; } function in class:WebCore::BatteryStatus
42 BatteryStatus(bool charging, double chargingTime, double dischargingTime, double level);
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/examples/logger/
H A Dlogtotext.tcl14 set config(elide,level) 0
15 foreach level [logger::levels] {
16 set config(elide,$level) 0
30 foreach level [logger::levels] {
31 interp alias {} insertLogLine_$level {} insertLogLine $level
32 ${mylogger}::logproc $level insertLogLine_$level
37 proc sendMessageToLog {level} {
38 ${::mylogger}::$level
[all...]
/macosx-10.9.5/bind9-45.100/bind9/contrib/zkt/
H A Ddomaincmp.h41 extern int isparentdomain (const char *child, const char *parent, int level);
H A Dlog.h66 extern const char *lg_lvl2str (lg_lvl_t level);
67 extern lg_lvl_t lg_lvl2syslog (lg_lvl_t level);
75 extern void lg_args (lg_lvl_t level, int argc, char * const argv[]);
76 extern void lg_mesg (int level, char *fmt, ...);
/macosx-10.9.5/cups-372.4/cups/cups/
H A Ddebug-private.h51 * If the first character is a digit, then it represents the "log level" of the
52 * message from 0 to 9. The default level is 1. The following defines the
83 # define DEBUG_set(logfile,level,filter) _cups_debug_set(logfile,level,filter,1)
88 # define DEBUG_set(logfile,level,filter)
102 const char *level, const char *filter,
/macosx-10.9.5/dcerpc-58/dcerpc/libdcethread/
H A Ddcethread-debug.h90 #define DCETHREAD_DEBUG(level, ...) (dcethread__debug_printf(__FILE__, __LINE__, level, __VA_ARGS__))
98 void dcethread__debug_printf(const char* file, unsigned int line, int level, const char* fmt, ...)
104 void dcethread__default_log_callback (const char* file, unsigned int line, int level, const char* str, void* data);
/macosx-10.9.5/ruby-104/ruby/
H A Dvm_debug.h29 VALUE ruby_debug_print_value(int level, int debug_level, const char *header, VALUE v);
30 ID ruby_debug_print_id(int level, int debug_level, const char *header, ID id);
31 NODE *ruby_debug_print_node(int level, int debug_level, const char *header, const NODE *node);
32 int ruby_debug_print_indent(int level, int debug_level, int indent_level);
/macosx-10.9.5/tcl-102/tcl_ext/incrtcl/incrTcl/itcl/tests/old/
H A Duplevel.test19 proc uplevelTest_show_var {level var} {
20 return "$var>>[uplevel $level set $var]"
36 test {"uplevel" can access global variables (via relative level)} {
50 test {"uplevel" can access local variables (via relative level)} {
59 test {"uplevel" can access local variables (via relative level)} {
71 test {"uplevel" can access local variables (via explicit level)} {
129 test {"info level" works across scope boundaries} {
132 info level
139 test {"info level" works across scope boundaries} {
142 info level
[all...]

Completed in 346 milliseconds

1234567891011>>