Home
last modified time | relevance | path

Searched refs:makeForm (Results 1 – 11 of 11) sorted by relevance

/dports/lang/kawa/kawa-3.1.1/kawa/lang/
H A DSyntaxForms.java17 public static Object makeForm (Object datum, TemplateScope scope) { in makeForm() method in SyntaxForms
140 return SyntaxForms.makeForm(datum, template.getScope()); in fromDatum()
258 car = SyntaxForms.makeForm(datum.getCar(), scope); in getCar()
264 cdr = SyntaxForms.makeForm(datum.getCdr(), scope); in getCdr()
317 car = SyntaxForms.makeForm(datum.getCar(), scope); in getCar()
323 cdr = SyntaxForms.makeForm(datum.getCdr(), scope); in getCdr()
H A DQuote.java423 car = SyntaxForms.makeForm(car, syntax.getScope()); in append$V()
H A DSyntaxTemplate.java514 return SyntaxForms.makeForm(v, templateScope); in execute()
/dports/games/pioneer/pioneer-20210723/data/pigui/modules/info-view/
H A D04-missions.lua116 local makeForm = mission:GetClick()
117 if makeForm then
122 activeMission = makeForm(mission)
/dports/java/javahelp/javahelp-3ca862d/jhMaster/JSearch/client/com/sun/java/help/search/
H A DRule.java198 makeForm(stem, expansions[i], depth); in match()
208 private void makeForm(String stem, String expansion, int depth) { in makeForm() method in Rule
/dports/www/mediawiki135/mediawiki-1.35.5/includes/specials/
H A DSpecialExpandTemplates.php102 $this->makeForm( $titleStr, $input );
157 private function makeForm( $title, $input ) { function in SpecialExpandTemplates
/dports/www/mediawiki136/mediawiki-1.36.3/includes/specials/
H A DSpecialExpandTemplates.php123 $this->makeForm( $titleStr, $input );
179 private function makeForm( $title, $input ) { function in SpecialExpandTemplates
/dports/www/mediawiki137/mediawiki-1.37.1/includes/specials/
H A DSpecialExpandTemplates.php123 $this->makeForm( $titleStr, $input );
179 private function makeForm( $title, $input ) { function in SpecialExpandTemplates
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/impexp/Classes/Controller/
H A DImportController.php101 $this->makeForm();
258 protected function makeForm(): void function in TYPO3\\CMS\\Impexp\\Controller\\ImportController
/dports/devel/tailor/tailor-06d9068d84a4e78f30579fbdc46ed22ec9d953c7/vcpx/repository/p4/
H A Dp4lib.py226 def makeForm(**kwargs): function
777 form = makeForm(**ch)
794 form = makeForm(files=files, description=description,
1666 form = makeForm(files=files, description=description,
1844 form = makeForm(**cl)
1979 form = makeForm(**lbl)
2178 form = makeForm(**br)
/dports/lang/kawa/kawa-3.1.1/kawa/standard/
H A Ddefine_alias.java55 f2 = SyntaxForms.makeForm(f2, formSyntax.getScope()); in scanForm()