Home
last modified time | relevance | path

Searched refs:submod (Results 1 – 25 of 692) sorted by relevance

12345678910>>...28

/dports/lang/racket/racket-8.3/share/pkgs/compiler-lib/compiler/demodularizer/
H A Dfind.rkt27 (define orig-path (if (pair? orig-path+submod) (car orig-path+submod) orig-path+submod))
28 (define submod (if (pair? orig-path+submod) (cdr orig-path+submod) '()))
53 (let loop ([compiled compiled] [submod submod])
56 (unless (null? submod) (raise-no-submod))
71 (unless (null? submod) (raise-no-submod))
103 (define req-path (if (pair? path/submod) (car path/submod) path/submod))
112 (define orig-path (if (pair? orig-path+submod) (car orig-path+submod) orig-path+submod))
113 (define submod (if (pair? orig-path+submod) (cdr orig-path+submod) '()))
115 (define path/submod (if (pair? submod) (cons path submod) path))
137 (define req-path (if (pair? path/submod) (car path/submod) path/submod))
[all …]
H A Dmodule-path.rkt7 (define (module-path-index->path req path submod)
8 (define mpi (module-path-index-build req path submod))
14 (define p-submod (if (pair? p) (cddr p) '()))
19 ;; Combine path back with submod
20 (if (null? p-submod)
22 (cons p-simple-path p-submod)))
24 (define (module-path-index-build req path submod)
26 (if (null? submod)
28 (module-path-index-join `(submod "." ,@submod)
/dports/sysutils/autopsy/autopsy-2.24/lib/
H A DFrame.pm71 my $submod = $::MOD_FRAME;
78 if ($submod == $::MOD_FILE) {
84 elsif ($submod == $::MOD_DATA) {
88 elsif ($submod == $::MOD_META) {
91 elsif ($submod == $::MOD_FRAME) {
98 <frame src=\"$::PROGNAME?mod=$::MOD_FRAME&view=$Frame::IMG_TABS&$Args::baseargs&submod=$submod\">
135 my $submod = Args::get_submod();
160 if ($submod == $::MOD_FILE) {
191 if ($submod == $::MOD_KWSRCH) {
243 if ($submod == $::MOD_FS) {
[all …]
/dports/www/mediawiki135/mediawiki-1.35.5/includes/api/Validator/
H A DSubmoduleDef.php58 $submod = $module->getModuleFromPath( $v );
60 $submod = null;
62 if ( !$submod ) {
110 $submod = $module->getModuleFromPath( $submodulePath );
117 if ( $submod && $submod->isDeprecated() ) {
121 if ( $submod && $submod->isInternal() ) {
165 if ( $submod && $submod->isDeprecated() ) {
168 if ( $submod && $submod->isInternal() ) {
193 $submod = $module->getModuleFromPath( $m );
194 if ( $submod && $submod->isDeprecated() ) {
[all …]
/dports/www/mediawiki137/mediawiki-1.37.1/includes/api/Validator/
H A DSubmoduleDef.php58 $submod = $module->getModuleFromPath( $v );
60 $submod = null;
62 if ( !$submod ) {
110 $submod = $module->getModuleFromPath( $submodulePath );
117 if ( $submod && $submod->isDeprecated() ) {
121 if ( $submod && $submod->isInternal() ) {
165 if ( $submod && $submod->isDeprecated() ) {
168 if ( $submod && $submod->isInternal() ) {
193 $submod = $module->getModuleFromPath( $m );
194 if ( $submod && $submod->isDeprecated() ) {
[all …]
/dports/www/mediawiki136/mediawiki-1.36.3/includes/api/Validator/
H A DSubmoduleDef.php58 $submod = $module->getModuleFromPath( $v );
60 $submod = null;
62 if ( !$submod ) {
110 $submod = $module->getModuleFromPath( $submodulePath );
117 if ( $submod && $submod->isDeprecated() ) {
121 if ( $submod && $submod->isInternal() ) {
165 if ( $submod && $submod->isDeprecated() ) {
168 if ( $submod && $submod->isInternal() ) {
193 $submod = $module->getModuleFromPath( $m );
194 if ( $submod && $submod->isDeprecated() ) {
[all …]
/dports/biology/py-python-libsbml/python-libsbml-5.19.0/libsbml_source/src/sbml/packages/comp/sbml/test/
H A DTestSBaseObjects.cpp477 Submodel submod(3, 1); in START_TEST() local
481 fail_unless(submod.isSetId()==false); in START_TEST()
484 fail_unless(submod.getId()=="ID1"); in START_TEST()
485 fail_unless(submod.isSetId()==true); in START_TEST()
487 fail_unless(submod.isSetId()==false); in START_TEST()
489 fail_unless(submod.isSetName()==false); in START_TEST()
492 fail_unless(submod.getName()=="ID1"); in START_TEST()
493 fail_unless(submod.isSetName()==true); in START_TEST()
495 fail_unless(submod.isSetName()==false); in START_TEST()
531 Deletion* del = submod.createDeletion(); in START_TEST()
[all …]
/dports/lang/racket/racket-8.3/collects/syntax/private/
H A Dmodresolve-noctc.rkt10 (eq? (car relto) 'submod))
13 [submod (if (and (pair? relto)
28 submod)]
29 [(pair? relto) (values relto submod)]
35 submod)]
44 (define (combine-submod v p)
47 (list* 'submod v p)))
56 (combine-submod base orig-p))
94 [(eq? (car s) 'submod)
99 (combine-submod d submod)]
[all …]
/dports/lang/racket-minimal/racket-8.3/collects/syntax/private/
H A Dmodresolve-noctc.rkt10 (eq? (car relto) 'submod))
13 [submod (if (and (pair? relto)
28 submod)]
29 [(pair? relto) (values relto submod)]
35 submod)]
44 (define (combine-submod v p)
47 (list* 'submod v p)))
56 (combine-submod base orig-p))
94 [(eq? (car s) 'submod)
99 (combine-submod d submod)]
[all …]
/dports/devel/cgit/cgit-1.2.3/git/t/
H A Dt3600-rm.sh282 D submod
286 M submod
290 m submod
294 ? submod
298 D submod
303 D submod
496 UU submod
620 M submod/subsubmod
715 test_i18ngrep "^warning: unable to rmdir '\''submod'\'':" actual &&
717 echo "?? submod/" >expected &&
H A Dt7003-filter-branch.sh440 submodurl="$PWD/submod" &&
456 git filter-branch --tree-filter "test -d submod && {
457 rm -rf submod &&
458 git rm -rf --quiet submod &&
459 mkdir submod &&
460 : > submod/file
468 "if git ls-files --error-unmatch -- submod > /dev/null 2>&1
469 then git update-index --cacheinfo 160000 0123456789012345678901234567890123456789 submod
/dports/devel/git-p4/git-2.34.1/t/
H A Dt3600-rm.sh296 D submod
300 M submod
304 m submod
308 ? submod
312 D submod
317 D submod
517 UU submod
641 M submod/subsubmod
736 test_i18ngrep "^warning: unable to rmdir '\''submod'\'':" actual &&
738 echo "?? submod/" >expected &&
H A Dt7003-filter-branch.sh446 submodurl="$PWD/submod" &&
462 git filter-branch --tree-filter "test -d submod && {
463 rm -rf submod &&
464 git rm -rf --quiet submod &&
465 mkdir submod &&
466 : > submod/file
475 "if git ls-files --error-unmatch -- submod > /dev/null 2>&1
476 then git update-index --cacheinfo 160000 $invalid submod
/dports/devel/git-svn/git-2.34.1/t/
H A Dt3600-rm.sh296 D submod
300 M submod
304 m submod
308 ? submod
312 D submod
317 D submod
517 UU submod
641 M submod/subsubmod
736 test_i18ngrep "^warning: unable to rmdir '\''submod'\'':" actual &&
738 echo "?? submod/" >expected &&
H A Dt7003-filter-branch.sh446 submodurl="$PWD/submod" &&
462 git filter-branch --tree-filter "test -d submod && {
463 rm -rf submod &&
464 git rm -rf --quiet submod &&
465 mkdir submod &&
466 : > submod/file
475 "if git ls-files --error-unmatch -- submod > /dev/null 2>&1
476 then git update-index --cacheinfo 160000 $invalid submod
/dports/devel/git/git-2.34.1/t/
H A Dt3600-rm.sh296 D submod
300 M submod
304 m submod
308 ? submod
312 D submod
317 D submod
517 UU submod
641 M submod/subsubmod
736 test_i18ngrep "^warning: unable to rmdir '\''submod'\'':" actual &&
738 echo "?? submod/" >expected &&
H A Dt7003-filter-branch.sh446 submodurl="$PWD/submod" &&
462 git filter-branch --tree-filter "test -d submod && {
463 rm -rf submod &&
464 git rm -rf --quiet submod &&
465 mkdir submod &&
466 : > submod/file
475 "if git ls-files --error-unmatch -- submod > /dev/null 2>&1
476 then git update-index --cacheinfo 160000 $invalid submod
/dports/devel/git-gui/git-2.34.1/t/
H A Dt3600-rm.sh296 D submod
300 M submod
304 m submod
308 ? submod
312 D submod
317 D submod
517 UU submod
641 M submod/subsubmod
736 test_i18ngrep "^warning: unable to rmdir '\''submod'\'':" actual &&
738 echo "?? submod/" >expected &&
H A Dt7003-filter-branch.sh446 submodurl="$PWD/submod" &&
462 git filter-branch --tree-filter "test -d submod && {
463 rm -rf submod &&
464 git rm -rf --quiet submod &&
465 mkdir submod &&
466 : > submod/file
475 "if git ls-files --error-unmatch -- submod > /dev/null 2>&1
476 then git update-index --cacheinfo 160000 $invalid submod
/dports/devel/git-cvs/git-2.34.1/t/
H A Dt3600-rm.sh296 D submod
300 M submod
304 m submod
308 ? submod
312 D submod
317 D submod
517 UU submod
641 M submod/subsubmod
736 test_i18ngrep "^warning: unable to rmdir '\''submod'\'':" actual &&
738 echo "?? submod/" >expected &&
H A Dt7003-filter-branch.sh446 submodurl="$PWD/submod" &&
462 git filter-branch --tree-filter "test -d submod && {
463 rm -rf submod &&
464 git rm -rf --quiet submod &&
465 mkdir submod &&
466 : > submod/file
475 "if git ls-files --error-unmatch -- submod > /dev/null 2>&1
476 then git update-index --cacheinfo 160000 $invalid submod
/dports/cad/p5-Verilog-Perl/Verilog-Perl-3.478/Netlist/
H A DCell.pm32 submod => '$', #' # Sub Module reference
63 if (!$self->submod) {
73 $self->submod($sm);
83 if (!$self->submod && Verilog::Language::is_gateprim($self->submodname)) {
86 if (!$self->submod()
98 if (!$self->submod()) {
103 if (!$self->submod()) {
108 if (!$self->submod()) {
122 if (!$self->submod() && !$self->gateprim && !$self->netlist->{link_read_nonfatal}) {
159 if ($self->submod()) {
[all …]
/dports/math/p5-Math-Prime-Util/Math-Prime-Util-0.73/
H A Dprimality.c882 T[0] = submod(submod(mont_sqrmod(S[0],n), S[5],n), S[5],n); in calc_perrin_sig()
883 T[1] = submod(submod(mont_sqrmod(S[1],n), S[4],n), S[4],n); in calc_perrin_sig()
884 T[2] = submod(submod(mont_sqrmod(S[2],n), S[3],n), S[3],n); in calc_perrin_sig()
885 T[3] = submod(submod(mont_sqrmod(S[3],n), S[2],n), S[2],n); in calc_perrin_sig()
886 T[4] = submod(submod(mont_sqrmod(S[4],n), S[1],n), S[1],n); in calc_perrin_sig()
891 T[0] = submod(submod(sqrmod(S[0],n), S[5],n), S[5],n); in calc_perrin_sig()
892 T[1] = submod(submod(sqrmod(S[1],n), S[4],n), S[4],n); in calc_perrin_sig()
893 T[2] = submod(submod(sqrmod(S[2],n), S[3],n), S[3],n); in calc_perrin_sig()
894 T[3] = submod(submod(sqrmod(S[3],n), S[2],n), S[2],n); in calc_perrin_sig()
895 T[4] = submod(submod(sqrmod(S[4],n), S[1],n), S[1],n); in calc_perrin_sig()
[all …]
/dports/misc/glow/glow-f24d960e3cc80db95ac0bc17b1900dbf60ca044a/torch_glow/torch_glow/
H A Dto_glow.py59 def set_submodule(mod, path, submod): argument
65 setattr(found_mod, path[-1], submod)
109 submod = get_submodule(model, path)
110 submod = torch.jit.trace(submod, example_inputs)
111 submod = to_glow(submod, {"forward": spec})
112 set_submodule(model, path, submod)
/dports/cad/yosys/yosys-yosys-0.12/tests/various/
H A Dsubmod.ys4 (* submod="bar" *) sub s1(a, c);
17 submod
31 (* submod="bar" *) sub s1(a, b[1]);
44 submod
58 (* submod="bar" *) sub s1(a, b[0]);
59 (* submod="bar" *) sub s2(a, c[1]);
72 submod
86 (* submod="bar" *) DFF s1(.D(d), .C(c), .Q(q[1]));
99 submod
107 (* submod="bar" *) DFF s1(.D(d), .C(c), .Q(q[1]));
[all …]

12345678910>>...28