Home
last modified time | relevance | path

Searched refs:input_obj (Results 1 – 25 of 72) sorted by relevance

123

/dports/devel/py-prompt-toolkit2/prompt_toolkit-2.0.10/prompt_toolkit/input/
H A Dtypeahead.py49 def store_typeahead(input_obj, key_presses): argument
53 assert isinstance(input_obj, Input)
57 key = input_obj.typeahead_hash()
61 def get_typeahead(input_obj): argument
65 assert isinstance(input_obj, Input)
68 key = input_obj.typeahead_hash()
74 def clear_typeahead(input_obj): argument
78 assert isinstance(input_obj, Input)
80 key = input_obj.typeahead_hash()
/dports/devel/py-lineedit/lineedit-0.1.6/lineedit/deps/prompt_toolkit/input/
H A Dtypeahead.py49 def store_typeahead(input_obj, key_presses): argument
53 assert isinstance(input_obj, Input)
57 key = input_obj.typeahead_hash()
61 def get_typeahead(input_obj): argument
65 assert isinstance(input_obj, Input)
68 key = input_obj.typeahead_hash()
74 def clear_typeahead(input_obj): argument
78 assert isinstance(input_obj, Input)
80 key = input_obj.typeahead_hash()
/dports/devel/py-prompt-toolkit/prompt_toolkit-3.0.23/prompt_toolkit/input/
H A Dtypeahead.py49 def store_typeahead(input_obj: Input, key_presses: List[KeyPress]) -> None:
54 key = input_obj.typeahead_hash()
58 def get_typeahead(input_obj: Input) -> List[KeyPress]:
64 key = input_obj.typeahead_hash()
70 def clear_typeahead(input_obj: Input) -> None:
75 key = input_obj.typeahead_hash()
/dports/math/py-patsy/patsy-0.5.2/patsy/
H A Dtest_state.py73 for input_obj, output_obj in test_cases:
74 print(input_obj)
76 for input_chunk in input_obj:
80 for input_chunk in input_obj:
98 if np.asarray(input_obj[0]).ndim == 0:
99 all_input = np.array(input_obj)
102 all_input = pandas.concat(input_obj)
103 elif np.asarray(input_obj[0]).ndim == 1:
106 all_input = np.concatenate(input_obj)
108 all_input = np.row_stack(input_obj)
[all …]
/dports/net-mgmt/py-napalm/napalm-3.3.1/test/nxapi_plumbing/
H A Dtest_show_xml.py20 input_obj = xml_obj.find("./input")
23 assert input_obj.text == "show hostname"
33 input_obj = xml_obj.find("./input")
36 assert input_obj.text == "show version"
51 input_obj = xml_obj.find("./input")
54 assert input_obj.text == "show hostname"
/dports/net-mgmt/py-nxapi-plumbing/nxapi_plumbing-0.5.2/test/
H A Dtest_show_xml.py25 input_obj = xml_obj.find("./input")
28 assert input_obj.text == "show hostname"
38 input_obj = xml_obj.find("./input")
41 assert input_obj.text == "show version"
56 input_obj = xml_obj.find("./input")
59 assert input_obj.text == "show hostname"
/dports/graphics/xfpovray/xfpovray-1.3.1/flx/flx_util/
H A Dflx_justify_input.c39 void flx_justify_input(FL_OBJECT *input_obj, const char *string, int STYLE, int SIZE) in flx_justify_input() argument
45 if (width > input_obj->w) in flx_justify_input()
46 fl_set_input_xoffset (input_obj, width - input_obj->w + in flx_justify_input()
/dports/net/dgd-lpmud/mud/2.4.5/dgd/std/
H A Duser.c9 object input_obj; /* object for input_to */ variable
173 } else if (input_obj != 0) { in receive_message()
177 obj = input_obj; in receive_message()
179 input_obj = 0; in receive_message()
202 } else if (input_obj == 0) { in receive_message()
214 if (PRIVILEGED() && input_obj == 0) { in set_input_to()
215 input_obj = obj; in set_input_to()
/dports/graphics/blender/blender-2.91.0/extern/quadriflow/src/
H A Dmain.cpp22 std::string input_obj, output_obj; in main() local
28 input_obj = argv[i + 1]; in main()
45 printf("%d %s %s\n", faces, input_obj.c_str(), output_obj.c_str()); in main()
46 if (input_obj.size() >= 1) { in main()
47 field.Load(input_obj.c_str()); in main()
/dports/games/lm-solve/Games-LMSolve-0.8.4/lib/Games/LMSolve/Tilt/
H A DSingle.pm27 my $input_obj = Games::LMSolve::Input->new();
29 my $input_fields = $input_obj->input_board($filename, $spec);
46 $input_obj->input_horiz_vert_walls_layout($width, $height, $input_fields->{'layout'});
H A DRedBlue.pm29 my $input_obj = Games::LMSolve::Input->new();
31 my $input_fields = $input_obj->input_board($filename, $spec);
62 $input_obj->input_horiz_vert_walls_layout($width, $height, $input_fields->{'layout'});
H A DMulti.pm27 my $input_obj = Games::LMSolve::Input->new();
29 my $input_fields = $input_obj->input_board($filename, $spec);
56 $input_obj->input_horiz_vert_walls_layout($width, $height, $input_fields->{'layout'});
/dports/devel/py-testoob/testoob-1.15/src/testoob/reporting/
H A Dxslt.py56 input_obj = win32com.client.Dispatch('Microsoft.XMLDOM')
57 input_obj.loadXML(input)
58 return input_obj.transformNode(self.trans_obj)
/dports/www/firefox/firefox-99.0/testing/web-platform/tests/tools/third_party/websockets/src/websockets/
H A Dspeedups.c71 PyObject *input_obj; in apply_mask() local
95 args, kwds, "OO", kwlist, &input_obj, &mask_obj)) in apply_mask()
100 if (_PyBytesLike_AsStringAndSize(input_obj, &input, &input_len) == -1) in apply_mask()
/dports/mail/thunderbird/thunderbird-91.8.0/testing/web-platform/tests/tools/third_party/websockets/src/websockets/
H A Dspeedups.c71 PyObject *input_obj; in apply_mask() local
95 args, kwds, "OO", kwlist, &input_obj, &mask_obj)) in apply_mask()
100 if (_PyBytesLike_AsStringAndSize(input_obj, &input, &input_len) == -1) in apply_mask()
/dports/www/firefox-esr/firefox-91.8.0/testing/web-platform/tests/tools/third_party/websockets/src/websockets/
H A Dspeedups.c71 PyObject *input_obj; in apply_mask() local
95 args, kwds, "OO", kwlist, &input_obj, &mask_obj)) in apply_mask()
100 if (_PyBytesLike_AsStringAndSize(input_obj, &input, &input_len) == -1) in apply_mask()
/dports/games/lm-solve/Games-LMSolve-0.8.4/lib/Games/LMSolve/
H A DMinotaur.pm25 my $input_obj = Games::LMSolve::Input->new();
26 my $input_fields = $input_obj->input_board($filename, $spec);
49 $input_obj->input_horiz_vert_walls_layout($width, $height, $input_fields->{'layout'});
/dports/devel/py-graphql-core/graphql-core-3.1.6/tests/utilities/
H A Dtest_ast_from_value.py239 input_obj = GraphQLInputObjectType(
245 assert ast_from_value({"foo": 3, "bar": "HELLO"}, input_obj) == ObjectValueNode(
257 assert ast_from_value({"foo": None}, input_obj) == ObjectValueNode(
262 assert ast_from_value(5, input_obj) is None
/dports/devel/py-websockets/websockets-10.1/src/websockets/
H A Dspeedups.c69 PyObject *input_obj; in apply_mask() local
95 args, kwds, "OO", kwlist, &input_obj, &mask_obj)) in apply_mask()
100 if (_PyBytesLike_AsStringAndSize(input_obj, &input_tmp, &input, &input_len) == -1) in apply_mask()
/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/src/app/ssub_fork/
H A Dssub_fork.cpp217 CRef<CSerialObject> input_obj; in Run() local
218 if (!xTryReadInputFile(input_obj)) { in Run()
228 …good = input_as_seq_entry ? xTryProcessSeqEntry(input_obj, output_array) : xTryProcessSeqSubmit(in… in Run()
344 CRef<CSerialObject> input_obj = xGetInputObject(); in xTryReadInputFile() local
348 istr->Read( { input_obj, input_obj->GetThisTypeInfo() } ); in xTryReadInputFile()
349 obj = input_obj; in xTryReadInputFile()
/dports/multimedia/baka-mplayer/Baka-MPlayer-2.0.4/src/
H A Dsettings.cpp81 QJsonObject input_obj = root["input"].toObject(); in LoadIni() local
82 for(auto in : input_obj) in LoadIni()
89 root["input"] = input_obj; in LoadIni()
/dports/science/quantum-espresso/q-e-qe-6.7.0/Modules/
H A Dqexsd.f90255 geninfo_obj, input_obj) argument
269 TYPE(input_type), OPTIONAL, INTENT(OUT) :: input_obj local
334 IF (PRESENT (input_obj)) THEN
337 CALL qes_read (nodePointer, input_obj, ierr )
343 IF ( TRIM(input_obj%tagname) == 'input' ) CALL qes_reset (input_obj)
/dports/textproc/py-ttp/ttp-0.8.1/ttp/
H A Dttp.py321 self.__datums_count += len(input_obj.data)
323 for i in input_obj.data:
458 for datum in input_obj.data:
488 for datum in input_obj.data:
498 for datum in input_obj.data:
994 input_obj = _input_class(
1001 if input_obj.name in self.inputs:
1002 self.inputs[input_obj.name].load_data(data=input_obj.data)
1003 self.inputs[input_obj.name].groups_indexes += input_obj.groups_indexes
1007 del input_obj
[all …]
/dports/multimedia/librespot/librespot-0.1.3/cargo-crates/portaudio-rs-0.3.2/src/
H A Dstream.rs281 let input_cnt; let input_obj; let input_ptr; in open()
284 …Some(sp) => { input_cnt = sp.channel_count; input_obj = sp.to_ll(); input_ptr = &input_obj as *con… in open()
532 let input_obj; let input_ptr; in is_format_supported() localVariable
535 Some(sp) => { input_obj = sp.to_ll(); input_ptr = &input_obj as *const _ }, in is_format_supported()
/dports/audio/ncspot/ncspot-0.9.3/cargo-crates/portaudio-rs-0.3.2/src/
H A Dstream.rs281 let input_cnt; let input_obj; let input_ptr;
284 …Some(sp) => { input_cnt = sp.channel_count; input_obj = sp.to_ll(); input_ptr = &input_obj as *con…
532 let input_obj; let input_ptr;
535 Some(sp) => { input_obj = sp.to_ll(); input_ptr = &input_obj as *const _ },

123