Home
last modified time | relevance | path

Searched refs:need_space (Results 1 – 25 of 181) sorted by relevance

12345678

/dports/net/arataga/oess-2.2.3/dev/cpp_util_2/hex_dumps/h/
H A Dstring_dumper.hpp71 const size_t need_space = what.size() * 3; in operator <<() local
72 if( need_space ) in operator <<()
74 std::vector< std::string::value_type > buf( need_space, 0 ); in operator <<()
135 const size_t need_space = what.size() * 4; in operator <<() local
136 if( need_space ) in operator <<()
138 std::vector< char > buf( need_space + 1, 0 ); in operator <<()
206 const size_t need_space = what.size() * 2; in operator <<() local
207 if( need_space ) in operator <<()
209 std::vector< std::string::value_type > buf( need_space + 1, 0 ); in operator <<()
/dports/textproc/groff/groff-1.22.4/src/libs/libgroff/
H A Derror.cpp39 int need_space = 0; in do_error_with_file_and_line() local
42 need_space = 1; in do_error_with_file_and_line()
51 need_space = 1; in do_error_with_file_and_line()
53 if (need_space) { in do_error_with_file_and_line()
55 need_space = 0; in do_error_with_file_and_line()
60 need_space = 1; in do_error_with_file_and_line()
66 need_space = 1; in do_error_with_file_and_line()
69 if (need_space) in do_error_with_file_and_line()
/dports/japanese/groff/groff-1.18.1.1/src/libs/libgroff/
H A Derror.cc38 int need_space = 0; in do_error_with_file_and_line() local
41 need_space = 1; in do_error_with_file_and_line()
47 need_space = 1; in do_error_with_file_and_line()
52 need_space = 1; in do_error_with_file_and_line()
58 need_space = 1; in do_error_with_file_and_line()
61 if (need_space) in do_error_with_file_and_line()
/dports/graphics/plotutils/plotutils-2.6/pic2plot/libgroff/
H A Derror.cc23 int need_space = 0; in do_error_with_file_and_line() local
28 need_space = 1; in do_error_with_file_and_line()
35 need_space = 1; in do_error_with_file_and_line()
41 need_space = 1; in do_error_with_file_and_line()
47 need_space = 1; in do_error_with_file_and_line()
50 if (need_space) in do_error_with_file_and_line()
/dports/mail/im/im-153/IM/
H A DIso2022jp.pm53 my($groupcolon, $need_space, $need_encode) = (0, 0, 0);
76 $need_space, 1).$c;
105 $need_space, 1).$c;
110 $need_space = 1;
133 $need_space = 0;
149 $need_space, 1).' ';
155 $need_space = 1;
164 $need_space = 1;
187 $need_space, 1).' '.$c;
192 $need_space = 1;
[all …]
/dports/print/simple-fb2-reader/simple-fb2-reader-1.1.3/src/formats/fb2/FictionBook/body/section/table/
H A Dtr.c80 glong need_space = cell_len - (space_pos % cell_len)-1; in td_word_wrap() local
82 str_len = str_len + need_space; in td_word_wrap()
85 if(need_space > 0) in td_word_wrap()
86 g_string_insert_len(cells_buff[i], insert_pos, spaces, need_space); in td_word_wrap()
122 glong need_space = (*max_height+1) * cells_table[i]; in td_fill_spaces() local
123 glong tail = need_space % MAX_CELL_LENGTH; in td_fill_spaces()
127 for(glong j=0; j<need_space; j+=MAX_CELL_LENGTH) in td_fill_spaces()
/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/src/connect/services/
H A Dns_job_serializer.cpp52 bool need_space = false; in SaveJobInput() local
57 need_space = true; in SaveJobInput()
61 if (need_space) in SaveJobInput()
65 need_space = true; in SaveJobInput()
69 if (need_space) in SaveJobInput()
/dports/biology/ncbi-blast+/ncbi-blast-2.12.0+-src/c++/src/connect/services/
H A Dns_job_serializer.cpp52 bool need_space = false; in SaveJobInput() local
57 need_space = true; in SaveJobInput()
61 if (need_space) in SaveJobInput()
65 need_space = true; in SaveJobInput()
69 if (need_space) in SaveJobInput()
/dports/japanese/groff/groff-1.18.1.1/src/devices/grops/
H A Dps.cc126 need_space = 0; in special()
139 need_space = 0; in simple_comment()
160 need_space = 0; in end_comment()
193 need_space = 0; in put_delimiter()
295 need_space = 0; in put_string()
315 need_space = 1; in put_number()
334 need_space = 1; in put_fix_number()
354 need_space = 1; in put_float()
372 need_space = 1; in put_symbol()
392 need_space = 1; in put_color()
[all …]
/dports/devel/gnucflow/cflow-1.6/src/
H A Dparser.c344 if (need_space) in save_token()
348 need_space = 1; in save_token()
351 if (need_space) in save_token()
365 need_space = 1; in save_token()
368 if (need_space) in save_token()
371 need_space = 0; in save_token()
375 need_space = 1; in save_token()
380 need_space = 0; in save_token()
387 need_space = 1; in save_token()
394 need_space = 1; in save_token()
[all …]
/dports/devel/z88dk/z88dk/src/z80asm/lib/
H A Dstr.c180 int need_space; in Str_append_vsprintf() local
191 need_space = vsnprintf(str->data + str->len, free_space, format, argptr); in Str_append_vsprintf()
193 need_space = -1; in Str_append_vsprintf()
196 ok = need_space >= 0 && need_space < free_space; in Str_append_vsprintf()
200 str->len += need_space; in Str_append_vsprintf()
/dports/textproc/groff/groff-1.22.4/src/devices/grops/
H A Dps.cpp132 need_space = 0; in special()
145 need_space = 0; in simple_comment()
166 need_space = 0; in end_comment()
199 need_space = 0; in put_delimiter()
285 need_space = 0; in put_string()
305 need_space = 1; in put_number()
324 need_space = 1; in put_fix_number()
349 need_space = 1; in put_float()
367 need_space = 1; in put_symbol()
387 need_space = 1; in put_color()
[all …]
/dports/net/wireshark-lite/wireshark-3.6.1/tools/
H A Dhtml2text.py44 self.need_space = False
85 self.need_space = False
138 self.need_space = True
139 if self.need_space and data.strip() and self.text_block:
142 self.need_space = data[-1:].isspace()
/dports/net/wireshark/wireshark-3.6.1/tools/
H A Dhtml2text.py44 self.need_space = False
85 self.need_space = False
138 self.need_space = True
139 if self.need_space and data.strip() and self.text_block:
142 self.need_space = data[-1:].isspace()
/dports/net/tshark-lite/wireshark-3.6.1/tools/
H A Dhtml2text.py44 self.need_space = False
85 self.need_space = False
138 self.need_space = True
139 if self.need_space and data.strip() and self.text_block:
142 self.need_space = data[-1:].isspace()
/dports/net/tshark/wireshark-3.6.1/tools/
H A Dhtml2text.py44 self.need_space = False
85 self.need_space = False
138 self.need_space = True
139 if self.need_space and data.strip() and self.text_block:
142 self.need_space = data[-1:].isspace()
/dports/x11-toolkits/gtk30/gtk+-3.24.31/gtk/
H A Dgtkimcontextsimple.c439 gboolean *need_space) in dead_key_to_unicode() argument
448 case GDK_KEY_dead_##keysym: *need_space = sp; return unicode; in dead_key_to_unicode()
499 *need_space = FALSE; in dead_key_to_unicode()
555 gboolean need_space; in no_sequence_matches() local
567 ch = dead_key_to_unicode (priv->compose_buffer[j], &need_space); in no_sequence_matches()
570 if (need_space) in no_sequence_matches()
584 ch = dead_key_to_unicode (priv->compose_buffer[0], &need_space); in no_sequence_matches()
587 if (need_space) in no_sequence_matches()
1116 gboolean need_space; in gtk_im_context_simple_get_preedit_string() local
1120 ch = dead_key_to_unicode (priv->compose_buffer[i], &need_space); in gtk_im_context_simple_get_preedit_string()
[all …]
/dports/lang/micropython/micropython-1.17/py/
H A Dmakecompresseddata.py66 need_space = False
70 need_space = False
72 if need_space:
74 need_space = True
/dports/lang/nx/nsf2.3.0/generic/
H A DnsfError.c346 bool need_space = NSF_FALSE; in NsfObjWrongArgs() local
357 need_space = NSF_TRUE; in NsfObjWrongArgs()
361 if (need_space) { in NsfObjWrongArgs()
369 need_space = NSF_TRUE; in NsfObjWrongArgs()
372 if (need_space) { in NsfObjWrongArgs()
/dports/games/gemrb/gemrb-0.9.0/tools/tlk_convert/
H A Dtlk_convert.py28 def convert_to_utf8(tlk_name, codec = "GBK", need_space = True): argument
37 if need_space:
/dports/lang/spidermonkey60/firefox-60.9.0/servo/components/style/values/computed/
H A Dimage.rs135 let mut need_space = false; in to_css() localVariable
138 need_space = true; in to_css()
141 if need_space { in to_css()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/tools/blinkpy/third_party/
H A Dpep8.py653 need_space = False
663 if need_space:
666 if need_space is not True and not need_space[1]:
669 need_space = False
675 if need_space is True or need_space[1]:
686 need_space = False
692 need_space = True
699 need_space = None
701 need_space = None
703 if need_space is None:
[all …]
/dports/devel/pep8/pep8-1.7.1/
H A Dpep8.py669 need_space = False
679 if need_space:
682 if need_space is not True and not need_space[1]:
685 need_space = False
691 if need_space is True or need_space[1]:
702 need_space = False
708 need_space = True
715 need_space = None
717 need_space = None
719 if need_space is None:
[all …]
/dports/devel/gdb/gdb-11.1/gdb/
H A Dlocation.c238 int need_space = 0; in explicit_to_string_internal() local
247 need_space = 1; in explicit_to_string_internal()
252 if (need_space) in explicit_to_string_internal()
259 need_space = 1; in explicit_to_string_internal()
264 if (need_space) in explicit_to_string_internal()
269 need_space = 1; in explicit_to_string_internal()
274 if (need_space) in explicit_to_string_internal()
/dports/java/eclipse-pydev/eclipse-pydev-8.2.0/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/third_party/pep8/
H A Dpycodestyle.py728 need_space = False
738 if need_space:
741 if need_space is not True and not need_space[1]:
744 need_space = False
750 if need_space is True or need_space[1]:
761 need_space = False
767 need_space = True
774 need_space = None
776 need_space = None
778 if need_space is None:
[all …]

12345678