Home
last modified time | relevance | path

Searched refs:pos_set (Results 1 – 25 of 43) sorted by relevance

12

/dports/biology/hisat2/hisat2-2.2.1/evaluation/tests/repeat/
H A Dgenerate_repeats.py67 pos_seq, pos_set = repeats[i] variable
71 while k1 < len(pos_set) and k2 < len(pos_set2):
72 _pos, _pos2 = pos_set[k1], pos_set2[k2]
82 if num_close > min(len(pos_set), len(pos_set2)) * 0.95:
87 print pos_set
173 def print_rep_info(rep_name, rep_pos, rep_len, pos_set, pos_seq): argument
174 print >> file, ">%s*0\trep\t%d\t%d\t%d\t0" % (rep_name, rep_pos, rep_len, len(pos_set))
175 for i in xrange(0, len(pos_set), 10):
178 if j >= len(pos_set):
190 pos = convert(pos_set[j])
[all …]
/dports/devel/bison/bison-3.7.6/src/
H A Dtables.c118 static bitset pos_set = NULL; variable
157 BITSET_FOR_EACH (biter, pos_set, i, 0)
186 const int old_size = bitset_size (pos_set); in pos_set_set()
188 bitset_resize (pos_set, new_size); in pos_set_set()
195 bitset_set (pos_set, i); in pos_set_set()
197 bitset_reset (pos_set, i); in pos_set_set()
201 else if (bitset_size (pos_set) <= bitno) in pos_set_set()
203 bitset_resize (pos_set, bitno + 1); in pos_set_set()
204 bitset_set (pos_set, bitno); in pos_set_set()
211 return bitset_test (pos_set, bitno); in pos_set_test()
[all …]
/dports/japanese/uim-mozc/mozc-2.23.2815.102.01/src/gui/word_register_dialog/
H A Dword_register_dialog.cc145 std::vector<string> pos_set; in WordRegisterDialog() local
146 pos_list_provider_->GetPOSList(&pos_set); in WordRegisterDialog()
147 CHECK(!pos_set.empty()); in WordRegisterDialog()
149 for (size_t i = 0; i < pos_set.size(); ++i) { in WordRegisterDialog()
150 CHECK(!pos_set[i].empty()); in WordRegisterDialog()
151 PartOfSpeechcomboBox->addItem(pos_set[i].c_str()); in WordRegisterDialog()
/dports/japanese/mozc-tool/mozc-2.23.2815.102.01/src/gui/word_register_dialog/
H A Dword_register_dialog.cc145 std::vector<string> pos_set; in WordRegisterDialog() local
146 pos_list_provider_->GetPOSList(&pos_set); in WordRegisterDialog()
147 CHECK(!pos_set.empty()); in WordRegisterDialog()
149 for (size_t i = 0; i < pos_set.size(); ++i) { in WordRegisterDialog()
150 CHECK(!pos_set[i].empty()); in WordRegisterDialog()
151 PartOfSpeechcomboBox->addItem(pos_set[i].c_str()); in WordRegisterDialog()
/dports/japanese/mozc-server/mozc-2.23.2815.102.01/src/gui/word_register_dialog/
H A Dword_register_dialog.cc145 std::vector<string> pos_set; in WordRegisterDialog() local
146 pos_list_provider_->GetPOSList(&pos_set); in WordRegisterDialog()
147 CHECK(!pos_set.empty()); in WordRegisterDialog()
149 for (size_t i = 0; i < pos_set.size(); ++i) { in WordRegisterDialog()
150 CHECK(!pos_set[i].empty()); in WordRegisterDialog()
151 PartOfSpeechcomboBox->addItem(pos_set[i].c_str()); in WordRegisterDialog()
/dports/japanese/fcitx-mozc/mozc-2.23.2815.102.01/src/gui/word_register_dialog/
H A Dword_register_dialog.cc145 std::vector<string> pos_set; in WordRegisterDialog() local
146 pos_list_provider_->GetPOSList(&pos_set); in WordRegisterDialog()
147 CHECK(!pos_set.empty()); in WordRegisterDialog()
149 for (size_t i = 0; i < pos_set.size(); ++i) { in WordRegisterDialog()
150 CHECK(!pos_set[i].empty()); in WordRegisterDialog()
151 PartOfSpeechcomboBox->addItem(pos_set[i].c_str()); in WordRegisterDialog()
/dports/japanese/ibus-mozc/mozc-2.23.2815.102.01/src/gui/word_register_dialog/
H A Dword_register_dialog.cc145 std::vector<string> pos_set; in WordRegisterDialog() local
146 pos_list_provider_->GetPOSList(&pos_set); in WordRegisterDialog()
147 CHECK(!pos_set.empty()); in WordRegisterDialog()
149 for (size_t i = 0; i < pos_set.size(); ++i) { in WordRegisterDialog()
150 CHECK(!pos_set[i].empty()); in WordRegisterDialog()
151 PartOfSpeechcomboBox->addItem(pos_set[i].c_str()); in WordRegisterDialog()
/dports/japanese/mozc-el/mozc-2.23.2815.102.01/src/gui/word_register_dialog/
H A Dword_register_dialog.cc145 std::vector<string> pos_set; in WordRegisterDialog() local
146 pos_list_provider_->GetPOSList(&pos_set); in WordRegisterDialog()
147 CHECK(!pos_set.empty()); in WordRegisterDialog()
149 for (size_t i = 0; i < pos_set.size(); ++i) { in WordRegisterDialog()
150 CHECK(!pos_set[i].empty()); in WordRegisterDialog()
151 PartOfSpeechcomboBox->addItem(pos_set[i].c_str()); in WordRegisterDialog()
/dports/emulators/mednafen/mednafen/src/
H A DFileStream.cpp360 LARGE_INTEGER pos_set; in truncate() local
364 pos_set.QuadPart = 0; in truncate()
365 if(!SetFilePointerEx(fhand, pos_set, &pos_save, FILE_CURRENT)) in truncate()
372 pos_set.QuadPart = length; in truncate()
373 if(!SetFilePointerEx(fhand, pos_set, nullptr, FILE_BEGIN)) in truncate()
/dports/lang/ocaml/ocaml-4.05.0/testsuite/tests/tool-lexyacc/
H A Dlexgen.ml179 (fun (act, pos_set as act_pos_set) trans ->
181 OnChars pos -> (act, pos :: pos_set)
182 | ToAction act1 -> if act1 < act then (act1, pos_set)
213 let transition_from chars follow pos_set =
223 pos_set;
/dports/lang/ocaml-nox11/ocaml-4.05.0/testsuite/tests/tool-lexyacc/
H A Dlexgen.ml179 (fun (act, pos_set as act_pos_set) trans ->
181 OnChars pos -> (act, pos :: pos_set)
182 | ToAction act1 -> if act1 < act then (act1, pos_set)
213 let transition_from chars follow pos_set =
223 pos_set;
/dports/lang/mosml/mosml-ver-2.10.1/src/lex/
H A DLexgen.sml167 (fn trans => fn (act_pos_set as (act, pos_set)) =>
169 OnChars pos => (act, pos :: pos_set)
170 | ToAction act1 => if act1 < act then (act1, pos_set)
209 fun transition_from chars follow pos_set =
219 pos_set;
/dports/graphics/gifmerge/gifmerge-1.33/
H A Dgifmerge.c92 int pos_set = 0; variable
156 fprintf(stderr,"Position: %d %d\n",xpos,ypos), pos_set = 1;
158 pos_set = 0, fprintf(stderr,"NoPositioning\n");
524 tmp = GIF_Get_Short(fp,fout,0); if(!pos_set) xpos = tmp;
526 tmp = GIF_Get_Short(fp,fout,0); if(!pos_set) ypos = tmp;
/dports/cad/yosys/yosys-yosys-0.12/techlibs/common/
H A Dsimlib.v1729 wire [WIDTH-1:0] pos_set = SET_POLARITY ? SET : ~SET; net
1738 else if (pos_set[i])
1815 wire [WIDTH-1:0] pos_set = SET_POLARITY ? SET : ~SET; net
1821 always @(posedge pos_set[i], posedge pos_clr[i], posedge pos_clk)
1824 else if (pos_set[i])
1848 wire [WIDTH-1:0] pos_set = SET_POLARITY ? SET : ~SET; net
1854 always @(posedge pos_set[i], posedge pos_clr[i], posedge pos_clk)
1857 else if (pos_set[i])
2096 wire [WIDTH-1:0] pos_set = SET_POLARITY ? SET : ~SET; net
2105 else if (pos_set[i])
/dports/math/libmesh/libmesh-1.6.2/contrib/fparser/fpoptimizer/
H A Dconstantfolding.cc569 std::vector<CodeTree<Value_t> > pos_set; in ConstantFolding() local
575 { pos_set.push_back(p.GetParam(a)); } in ConstantFolding()
580 std::cout << "Abs: mul group has " << pos_set.size() in ConstantFolding()
583 if(!pos_set.empty() || !neg_set.empty()) in ConstantFolding()
614 mulgroup.AddParamsMove(pos_set); in ConstantFolding()
/dports/devel/efl/efl-1.25.1/src/lib/emotion/
H A Demotion_modules.h78 void (*pos_set) (void *ef, double pos); member
H A Demotion_modules.c473 EMOTION_ENGINE_INSTANCE_CALL(inst, pos_set, pos); in emotion_engine_instance_pos_set()
/dports/graphics/darktable/darktable-3.6.1/src/lua/
H A Dtypes.c272 int pos_set = lua_gettop(L); // points at __get in autotype_newindex() local
293 lua_remove(L, pos_set); in autotype_newindex()
294 return (lua_gettop(L) - pos_set + 1); in autotype_newindex()
/dports/graphics/darktable38/darktable-3.8.0/src/lua/
H A Dtypes.c272 int pos_set = lua_gettop(L); // points at __get in autotype_newindex() local
293 lua_remove(L, pos_set); in autotype_newindex()
294 return (lua_gettop(L) - pos_set + 1); in autotype_newindex()
/dports/textproc/zorba/zorba-2.7.0/src/runtime/full_text/
H A Dapply.cpp268 ft_pos_set pos_set; in join_includes() local
269 covered_include_positions( includes, pos_set ); in join_includes()
271 if ( !ztd::contains( pos_set, pos ) ) { in join_includes()
/dports/devel/py-pyxb/PyXB-1.2.6/pyxb/utils/
H A Dfac.py1460 def _PosConcatPosSet (cls, pos, pos_set): argument
1462 return frozenset([ pos + _mp for _mp in pos_set ])
/dports/lang/ocaml/ocaml-4.05.0/lex/
H A Dlexgen.ml1159 let pos_set = firstpos le.lex_regexp in
1161 prerr_string "trans={" ; dtransset pos_set ; prerr_endline "}" ;
1163 let init_state = create_init_state pos_set in
/dports/lang/ocaml-nox11/ocaml-4.05.0/lex/
H A Dlexgen.ml1159 let pos_set = firstpos le.lex_regexp in
1161 prerr_string "trans={" ; dtransset pos_set ; prerr_endline "}" ;
1163 let init_state = create_init_state pos_set in
/dports/x11-toolkits/gtk20/gtk+-2.24.33/gtk/
H A Dgtkwindow.c8067 gboolean size_set, pos_set; in gtk_window_parse_geometry() local
8121 pos_set = FALSE; in gtk_window_parse_geometry()
8126 pos_set = TRUE; in gtk_window_parse_geometry()
8129 if (size_set || pos_set) in gtk_window_parse_geometry()
8136 if (pos_set) in gtk_window_parse_geometry()
/dports/print/scribus-devel/scribus-1.5.7/scribus/third_party/fparser/
H A Dfpoptimizer.cc7099 std::vector<CodeTree> pos_set; in ConstantFolding() local
7105 { pos_set.push_back(p.GetParam(a)); } in ConstantFolding()
7110 std::cout << "Abs: mul group has " << pos_set.size() in ConstantFolding()
7113 if(!pos_set.empty() || !neg_set.empty()) in ConstantFolding()
7144 mulgroup.AddParamsMove(pos_set); in ConstantFolding()

12