Home
last modified time | relevance | path

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

123

/dports/misc/visp/visp-3.4.0/modules/java/generator/
H A Dgen2.py416 self.isconstructor = isconstructor
496 elif self.isconstructor:
499 if self.isconstructor:
527 self.isconstructor = isconstructor
551 if self.isconstructor:
623 if not self.isconstructor:
709 if self.isconstructor:
792 if self.isconstructor:
804 if self.isconstructor:
915 if isconstructor:
[all …]
H A Dgen_java.py258 result.extend([fi for fi in sorted(self.methods) if fi.isconstructor])
259 result.extend([fi for fi in sorted(self.methods) if not fi.isconstructor])
356 self.isconstructor = self.name == self.classname
362 if self.isconstructor:
/dports/graphics/opencv/opencv-4.5.3/modules/python/src2/
H A Dgen2.py413 self.isconstructor = isconstructor
495 elif self.isconstructor:
498 if self.isconstructor:
526 self.isconstructor = isconstructor
550 if self.isconstructor:
618 if not self.isconstructor:
712 if self.isconstructor:
801 if self.isconstructor:
813 if self.isconstructor:
948 if isconstructor:
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.pde.ui/apitools/org.eclipse.pde.api.tools/src/org/eclipse/pde/api/tools/internal/builder/
H A DTagValidator.java345 boolean isconstructor = method.isConstructor(); in processMethodNode()
348 …Set<String> supportedtags = getSupportedTagNames(pkind, isconstructor ? IApiJavadocTag.MEMBER_CONS… in processMethodNode()
383 …m.UNSUPPORTED_TAG_USE, IApiMarkerConstants.UNSUPPORTED_TAG_MARKER_ID, isconstructor ? BuilderMessa… in processMethodNode()
385 …m.UNSUPPORTED_TAG_USE, IApiMarkerConstants.UNSUPPORTED_TAG_MARKER_ID, isconstructor ? BuilderMessa… in processMethodNode()
395 …m.UNSUPPORTED_TAG_USE, IApiMarkerConstants.UNSUPPORTED_TAG_MARKER_ID, isconstructor ? BuilderMessa… in processMethodNode()
397 …m.UNSUPPORTED_TAG_USE, IApiMarkerConstants.UNSUPPORTED_TAG_MARKER_ID, isconstructor ? BuilderMessa… in processMethodNode()
400 …m.UNSUPPORTED_TAG_USE, IApiMarkerConstants.UNSUPPORTED_TAG_MARKER_ID, isconstructor ? BuilderMessa… in processMethodNode()
407 …m.UNSUPPORTED_TAG_USE, IApiMarkerConstants.UNSUPPORTED_TAG_MARKER_ID, isconstructor ? BuilderMessa… in processMethodNode()
670 boolean isconstructor = parent.isConstructor(); in checkMethod()
673 …edtags = ApiPlugin.getJavadocTagManager().getAnntationsForType(pkind, isconstructor ? IApiJavadocT… in checkMethod()
[all …]
/dports/games/supertux2/SuperTux-v0.6.3-Source/external/squirrel/squirrel/
H A Dsqclass.cpp78 bool isconstructor; in NewSlot() local
79 SQVM::IsEqual(ss->_constructoridx, key, isconstructor); in NewSlot()
80 if(isconstructor) { in NewSlot()
/dports/lang/squirrel/squirrel3/squirrel/
H A Dsqclass.cpp78 bool isconstructor; in NewSlot() local
79 SQVM::IsEqual(ss->_constructoridx, key, isconstructor); in NewSlot()
80 if(isconstructor) { in NewSlot()
/dports/games/simutrans/simutrans-121.0/squirrel/squirrel/
H A Dsqclass.cc78 bool isconstructor; in NewSlot() local
79 SQVM::IsEqual(ss->_constructoridx, key, isconstructor); in NewSlot()
80 if(isconstructor) { in NewSlot()
/dports/net/kamailio/kamailio-5.4.5/src/modules/app_sqlang/squirrel/squirrel/
H A Dsqclass.cpp78 bool isconstructor; in NewSlot() local
79 SQVM::IsEqual(ss->_constructoridx, key, isconstructor); in NewSlot()
80 if(isconstructor) { in NewSlot()
/dports/net/ulxmlrpcpp/ulxmlrpcpp-1.7.5/stubber/xml2ulxr/
H A DUlxrIdlClass.cpp431 isconstructor = constructor; in setProperty()
617 if (!isconstructor) in getCppString()
652 return isconstructor; in isConstructor()
H A DUlxrIdlClass.h191 bool isconstructor; member
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/julia/gen/
H A Dparse_tree.py221 self.isconstructor = name.split('::')[-1]==classname.split('::')[-1]
295 if self.isconstructor:
364 if func.isconstructor:
H A Dgen3_cpp.py133 if self.classname!="" and not self.isconstructor and not self.isstatic:
/dports/math/gap/gap-4.11.0/lib/
H A Dmethwhy.g124 m,nam,val,erg,has,need,isconstructor;
129 isconstructor:=IS_CONSTRUCTOR(oper);
195 if j=1 and isconstructor then
203 if j=1 and isconstructor then
/dports/math/hs-Agda/Agda-2.6.2/src/full/Agda/Auto/
H A DTypecheck.hs35 isconstructor <- case elr of
41 …sdep ctx ityp args (NotM $ App Nothing (NotM OKVal) elr (NotM ALNil)) isconstructor $ \ityp _ -> m…
148 …ptrs iityp) args elimtrm isconstructor cont = mmpcase (True, prioTypecheckArgList, (Just $ RICheck…
156 (tcargs (ndfv - 1) isdep ctx (sub a (t ot)) as (addend hid a elimtrm) isconstructor cont)
179 … (tcargs 0 isdep ctx (sub elimtrm (t ot)) as (addend hid elimtrm elimtrm2) isconstructor cont)
/dports/graphics/opencv/opencv-4.5.3/modules/java/generator/
H A Dgen_java.py308 result += [fi for fi in self.methods if fi.isconstructor]
309 result += [fi for fi in self.methods if not fi.isconstructor]
396 self.isconstructor = self.name == self.classname
405 if self.isconstructor:
414 if self.isconstructor:
/dports/graphics/opencv/opencv-4.5.3/modules/js/generator/
H A Dembindgen.py273 def __init__(self, class_name, name, cname, namespace, isconstructor): argument
279 self.is_constructor = isconstructor
/dports/graphics/opencv/opencv-4.5.3/modules/objc/generator/
H A Dgen_objc.py321 result += [fi for fi in self.methods if fi.isconstructor]
322 result += [fi for fi in self.methods if not fi.isconstructor]
464 self.isconstructor = self.name == self.classname
/dports/devel/swig/swig-4.0.2/Lib/
H A Dswig.swg277 %define %$isconstructor "match"="constructor" %enddef
/dports/lang/spidermonkey78/firefox-78.9.0/js/src/jsapi-tests/binast/
H A Djit-test.ignore1528 proxy/preserve-iscallable-isconstructor.js
/dports/www/nextcloud/nextcloud/apps-pkg/accessibility/js/
H A Daccessibilityoca.js.map1 …/ `IsConstructor` abstract operation\n// https://tc39.es/ecma262/#sec-isconstructor\nmodule.export…
H A Daccessibility.js.map1 …/ `IsConstructor` abstract operation\n// https://tc39.es/ecma262/#sec-isconstructor\nmodule.export…
/dports/www/nextcloud/nextcloud/apps-pkg/settings/js/
H A Dvue-settings-nextcloud-pdf.js.map1 …/ `IsConstructor` abstract operation\n// https://tc39.es/ecma262/#sec-isconstructor\nmodule.export…
/dports/www/nextcloud/nextcloud/core/js/dist/
H A Dmaintenance.js.map1 …/ `IsConstructor` abstract operation\n// https://tc39.es/ecma262/#sec-isconstructor\nmodule.export…
/dports/www/nextcloud/nextcloud/apps-pkg/text/js/
H A Dtext-text.js.map1 …/ `IsConstructor` abstract operation\n// https://tc39.es/ecma262/#sec-isconstructor\nmodule.export…
/dports/www/nextcloud/nextcloud/apps-pkg/dav/js/
H A Dsettings-admin-caldav.js.map1 …/ `IsConstructor` abstract operation\n// https://tc39.es/ecma262/#sec-isconstructor\nmodule.export…

123