Home
last modified time | relevance | path

Searched refs:createType (Results 1 – 25 of 355) sorted by relevance

12345678910>>...15

/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/compmod/system/codedom/
H A DCodeArrayCreateExpression.cs47 this.createType = createType; in CodeArrayCreateExpression()
55 this.createType = new CodeTypeReference(createType); in CodeArrayCreateExpression()
63 this.createType = new CodeTypeReference(createType); in CodeArrayCreateExpression()
74 this.createType = createType; in CodeArrayCreateExpression()
82 this.createType = new CodeTypeReference(createType); in CodeArrayCreateExpression()
90 this.createType = new CodeTypeReference(createType); in CodeArrayCreateExpression()
101 this.createType = createType; in CodeArrayCreateExpression()
109 this.createType = new CodeTypeReference(createType); in CodeArrayCreateExpression()
117 this.createType = new CodeTypeReference(createType); in CodeArrayCreateExpression()
132 return createType;
[all …]
H A DCodeObjectCreateExpression.cs28 private CodeTypeReference createType; field in System.CodeDom.CodeObjectCreateExpression
45 …public CodeObjectCreateExpression(CodeTypeReference createType, params CodeExpression[] parameters… in CodeObjectCreateExpression() argument
46 CreateType = createType; in CodeObjectCreateExpression()
53 public CodeObjectCreateExpression(string createType, params CodeExpression[] parameters) { in CodeObjectCreateExpression() argument
54 CreateType = new CodeTypeReference(createType); in CodeObjectCreateExpression()
61 public CodeObjectCreateExpression(Type createType, params CodeExpression[] parameters) { in CodeObjectCreateExpression() argument
62 CreateType = new CodeTypeReference(createType); in CodeObjectCreateExpression()
73 if (createType == null) {
74 createType = new CodeTypeReference("");
76 return createType;
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.CodeDom/src/System/CodeDom/
H A DCodeArrayCreateExpression.cs19 _createType = createType; in CodeArrayCreateExpression()
25 _createType = new CodeTypeReference(createType); in CodeArrayCreateExpression()
31 _createType = new CodeTypeReference(createType); in CodeArrayCreateExpression()
37 _createType = createType; in CodeArrayCreateExpression()
41 public CodeArrayCreateExpression(string createType, int size) in CodeArrayCreateExpression() argument
43 _createType = new CodeTypeReference(createType); in CodeArrayCreateExpression()
47 public CodeArrayCreateExpression(Type createType, int size) in CodeArrayCreateExpression() argument
49 _createType = new CodeTypeReference(createType); in CodeArrayCreateExpression()
55 _createType = createType; in CodeArrayCreateExpression()
61 _createType = new CodeTypeReference(createType); in CodeArrayCreateExpression()
[all …]
H A DCodeObjectCreateExpression.cs14 …public CodeObjectCreateExpression(CodeTypeReference createType, params CodeExpression[] parameters) in CodeObjectCreateExpression() argument
16 CreateType = createType; in CodeObjectCreateExpression()
20 public CodeObjectCreateExpression(string createType, params CodeExpression[] parameters) in CodeObjectCreateExpression() argument
22 CreateType = new CodeTypeReference(createType); in CodeObjectCreateExpression()
26 public CodeObjectCreateExpression(Type createType, params CodeExpression[] parameters) in CodeObjectCreateExpression() argument
28 CreateType = new CodeTypeReference(createType); in CodeObjectCreateExpression()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.framework/bundles/org.eclipse.osgi.util/src/org/osgi/util/measurement/
H A DUnit.java53 private final static long UNITY = createType(0, 0, 0, 0, 0, 0, 0, 0, 0);
70 …public final static Unit m = new Unit("m", createType(0, 0, 0, 0, 0, 0, 0, 0, 1)); …
73 …public final static Unit s = new Unit("s", createType(0, 0, 0, 0, 0, 0, 0, 1, 0)); …
77 …public final static Unit kg = new Unit("kg", createType(0, 0, 0, 0, 0, 0, 1, 0, 0)); …
85 …public final static Unit A = new Unit("A", createType(0, 0, 0, 0, 1, 0, 0, 0, 0)); …
93 …public final static Unit cd = new Unit("cd", createType(0, 0, 1, 0, 0, 0, 0, 0, 0)); …
121 …public final static Unit N = new Unit("N", createType(0, 0, 0, 0, 0, 0, 1, -2, 1)); …
148 …public final static Unit W = new Unit("W", createType(0, 0, 0, 0, 0, 0, 1, -3, 2)); …
156 …public final static Unit C = new Unit("C", createType(0, 0, 0, 0, 1, 0, 0, 1, 0)); …
165 …public final static Unit V = new Unit("V", createType(0, 0, 0, 0, -1, 0, 1, -3, 2)); …
[all …]
/dports/irc/smuxi/smuxi-1.1/lib/ServiceStack.Text/src/ServiceStack.Text/Common/
H A DDeserializeCollection.cs52 public static ICollection<string> ParseStringCollection(string value, Type createType) in ParseStringCollection() argument
55 return CreateAndPopulate(createType, items); in ParseStringCollection()
58 public static ICollection<int> ParseIntCollection(string value, Type createType) in ParseIntCollection() argument
61 return CreateAndPopulate(createType, items); in ParseIntCollection()
64 …public static ICollection<T> ParseCollection<T>(string value, Type createType, ParseStringDelegate… in ParseCollection() argument
69 return CreateAndPopulate(createType, items); in ParseCollection()
97 …private delegate object ParseCollectionDelegate(string value, Type createType, ParseStringDelegate… in ParseCollectionDelegate() argument
99 …public static object ParseCollectionType(string value, Type createType, Type elementType, ParseStr… in ParseCollectionType() argument
103 return parseDelegate(value, createType, parseFn); in ParseCollectionType()
119 return parseDelegate(value, createType, parseFn); in ParseCollectionType()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core.tests.model/src/org/eclipse/jdt/core/tests/model/
H A DCreateTypeSourceExamplesTests.java42 IDOMType type= this.domFactory.createType(); in testCreateClassWithExtends()
55 IDOMType type= this.domFactory.createType(); in testCreateClassWithImplements()
70 IDOMType type= this.domFactory.createType("class A implements I1 {\n}"); in testCreateClassWithImplements2()
83 IDOMType type= this.domFactory.createType("class A {\n}"); in testCreateClassWithImplements3()
96 IDOMType type= this.domFactory.createType("class A implements I1{\n}"); in testCreateClassWithImplements4()
108 IDOMType type= this.domFactory.createType(); in testCreateClassWithModifiers()
121 IDOMType type= this.domFactory.createType(); in testCreateEmptyClass()
135 IDOMType type= this.domFactory.createType(); in testCreateEmptyInterface()
H A DCompletionTests9.java402 createType("/Completion9_1/src/", "pack11", "X11"); in test486988_0011()
403 createType("/Completion9_1/src/", "pack12", "X12"); in test486988_0011()
413 createType("/Completion9_2/src/", "pack21", "X21"); in test486988_0011()
414 createType("/Completion9_2/src/", "pack22", "X22"); in test486988_0011()
446 createType("/Completion9_1/src/", "pack11", "X11"); in test486988_0012()
447 createType("/Completion9_1/src/", "pack12", "X12"); in test486988_0012()
457 createType("/Completion9_2/src/", "pack21", "X21"); in test486988_0012()
458 createType("/Completion9_2/src/", "pack22", "X22"); in test486988_0012()
490 createType("/Completion9_1/src/", "pack11", "X11"); in test486988_0013()
491 createType("/Completion9_1/src/", "pack12", "X12"); in test486988_0013()
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core/model/org/eclipse/jdt/core/jdom/
H A DDOMFactory.java126 public IDOMType createType() { in createType() method in DOMFactory
127 …return createType("public class AClass {"+ this.lineSeparator +"}"+ this.lineSeparator); //$NON-NL… in createType()
132 …return createType("public class AClass {"+ this.lineSeparator +"}"+ this.lineSeparator); //$NON-NL… in createClass()
137 …return createType("public interface AnInterface {"+ this.lineSeparator +"}"+ this.lineSeparator); … in createInterface()
141 public IDOMType createType(String sourceCode) { in createType() method in DOMFactory
145 return (new DOMBuilder()).createType(sourceCode.toCharArray()); in createType()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/callhierarchy/
H A DCallHierarchyTestHelper.java80 cu1.createType( in createSimpleClasses()
102 cu2.createType( in createSimpleClasses()
117 cu1.createType( in createImplicitConstructorClasses()
125 cu2.createType( in createImplicitConstructorClasses()
140 cu1.createType( in createInnerClass()
159 cu1.createType( in createAnonymousInnerClass()
175 cu2.createType( in createAnonymousInnerClass()
213 cu1.createType( in createAnonymousInnerClassInsideMethod()
239 cu1.createType( in createStaticInitializerClass()
/dports/deskutils/egroupware/egroupware/vendor/fxp/composer-asset-plugin/Tests/
H A DAssetsTest.php73 Assets::createType(null);
78 $type = Assets::createType('npm');
85 $type = Assets::createType('bower');
92 $type = Assets::createType('bower');
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/core/source/
H A DAddUnimplementedConstructorsTest.java175 fClassA= cu.createType("public class A {\n}\n", null, true, null); in testDefaultConstructorToOverride()
219 fClassA= cu.createType("public class A {\n}\n", null, true, null); in testEightConstructorsToOverride()
355 fClassA= cuA.createType("public class A {\n}\n", null, true, null); in testFiveConstructorsToOverrideWithTwoLevelsOfInheritance()
478 fClassA= cuA.createType("public class A {\n}\n", null, true, null); in testFourConstructorsToOverride()
576 fClassA= cuA.createType("public class A {\n}\n", null, true, null); in testFourConstructorsToOverrideWithOneExistingConstructor()
656 fClassA= cu.createType("public class A {\n}\n", null, true, null); in testNoConstructorsToOverrideAvailable()
730 fClassA= cuA.createType("public class A {\n}\n", null, true, null); in testNoConstructorsToOverrideWithOneExistingConstructors()
769 fClassA= cuA.createType("public class A {\n}\n", null, true, null); in testNoConstructorsToOverrideWithThreeExistingConstructors()
816 fClassA= cu.createType("public class A {\n}\n", null, true, null); in testOneConstructorToOverride()
961 fClassA= cu.createType("public class A {\n}\n", null, true, null); in testThreeConstructorsToOverride()
[all …]
H A DAddUnimplementedMethodsTest.java98 fClassA= cu.createType("public abstract class A {\n}\n", null, true, null); in setUp()
103 fInterfaceB= cu.createType("public interface B {\n}\n", null, true, null); in setUp()
107 fClassC= cu.createType("public abstract class C {\n}\n", null, true, null); in setUp()
113 fClassD= cu.createType("public abstract class D extends C {\n}\n", null, true, null); in setUp()
117 fInterfaceE= cu.createType("public interface E {\n}\n", null, true, null); in setUp()
182 IType testClass= cu.createType("public class Test3 extends D {\n}\n", null, true, null); in test3()
199 IType testClass= cu.createType("public class Test4 implements B, E {\n}\n", null, true, null); in test4()
235 IType testClass= cu.createType(buf.toString(), null, true, null); in bug119171()
271 IType testClass= cu.createType(buf.toString(), null, true, null); in bug297183()
373 IType testClass= cu.createType(buf.toString(), null, true, null);
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/junit/tests/
H A DTestRunListenerTest3.java64 IType aTestCase= createType(source, "pack", "ATestCase.java"); in testOK()
83 IType aTestCase= createType(source, "pack", "ATestCase.java"); in testFail()
139 IType aTestCase= createType(source, "pack", "ATestCase.java"); in testSimpleTest()
163 IType aTestCase= createType(source, "pack", "ATestCase.java"); in testTreeOnSessionStarted()
181 IType aTestCase= createType(source, "pack", "ATestCase.java"); in testTreeOnSessionEnded()
210 IType aTestCase= createType(source, "pack", "ATestCase.java"); in testTreeOnSecondTestStarted()
240 IType aTestCase= createType(source, "pack", "ATestCase.java"); in testTreeOnSecondTestStarted2()
283 IType aTestCase= createType(source, "pack", "ATestCase.java"); in testTreeUnrootedEnded()
338 IType aTestCase= createType(source, "test", "MyTestSuite.java"); in testTreeJUnit4TestAdapter()
H A DTestRunListenerTest4.java72 IType aTestCase= createType(source, "pack", "ATestCase.java"); in testOK()
113 IType aTestCase= createType(source, "pack", "ATestCase.java"); in testTreeOK()
136 IType aTestCase= createType(source, "pack", "ATestCase.java"); in testFail()
183 IType aTestCase= createType(source, "pack", "ATestCase.java"); in testSimpleTest()
208 IType aTestCase= createType(source, "pack", "ATestCase.java"); in testTreeOnSessionStarted()
228 IType aTestCase= createType(source, "pack", "ATestCase.java"); in testTreeOnSessionEnded()
253 IType aTestCase= createType(source, "pack", "ATestCase.java"); in testTreeOnSecondTestStarted()
280 IType aTestCase= createType(source, "pack", "ATestCase.java"); in testTreeOnSecondTestStarted2()
322 IType aTestCase= createType(source, "pack", "ATestCase.java"); in testParametrizedWithEvilChars()
H A DTestRunListenerTest5.java73 IType aTestCase= createType(source, "pack", "ATestCase.java"); in testOK()
93 IType aTestCase= createType(source, "pack", "ATestCase.java"); in testFail()
113 IType aTestCase= createType(source, "pack", "ATestCase.java"); in testTreeOnSessionStarted()
133 IType aTestCase= createType(source, "pack", "ATestCase.java"); in testTreeOnSessionEnded()
159 IType aTestCase= createType(source, "pack", "ATestCase.java"); in testThatLauncherLibGetsAdded()
/dports/devel/emscripten/emscripten-2.0.3/tests/
H A Dtest_override_system_js_lib_symbol.c20 GLuint createType = GL_UNSIGNED_BYTE; in main() local
21 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, 1, 1, 0, GL_RGBA, createType, 0); in main()
24 assert(createType == whatGotCreated); in main()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/core/
H A DTypeHierarchyTest.java71 cu1.createType("public class A {\n}\n", null, true, null); in test1()
79 IType type2= cu2.createType("public class B extends pack1.A {\n}\n", null, true, null); in test1()
97 cu1.createType("public class A {\n}\n", null, true, null); in hierarchyWithWorkingCopy1()
102 IType type2= cu2.createType("public class B extends pack1.A {\n}\n", null, true, null); in hierarchyWithWorkingCopy1()
164 cu1.createType("public class A {\n}\n", null, true, null); in hierarchyWithWorkingCopy2()
169 IType type2= cu2.createType("public class B extends pack1.A {\n}\n", null, true, null); in hierarchyWithWorkingCopy2()
233 cu1.createType("public class A {\n}\n", null, true, null); in hierarchyWithWorkingCopy3()
238 IType type2= cu2.createType("public class B extends pack1.A {\n}\n", null, true, null); in hierarchyWithWorkingCopy3()
/dports/mail/phplist/phplist-3.6.6/public_html/lists/base/vendor/symfony/symfony/src/Symfony/Component/PropertyInfo/Util/
H A DPhpDocTypeHelper.php48 $type = $this->createType((string) $varType, $nullable);
78 $type = $this->createType($varType, $nullable);
95 private function createType($docType, $nullable) function in Symfony\\Component\\PropertyInfo\\Util\\PhpDocTypeHelper
108 $collectionValueType = $this->createType(substr($docType, 0, -2), $nullable);
/dports/finance/prestashop/prestashop/vendor/symfony/symfony/src/Symfony/Component/PropertyInfo/Util/
H A DPhpDocTypeHelper.php48 $type = $this->createType((string) $varType, $nullable);
78 $type = $this->createType($varType, $nullable);
95 private function createType($docType, $nullable) function in Symfony\\Component\\PropertyInfo\\Util\\PhpDocTypeHelper
108 $collectionValueType = $this->createType(substr($docType, 0, -2), $nullable);
/dports/www/typo3-10/typo3_src-10.4.25/vendor/symfony/property-info/Util/
H A DPhpDocTypeHelper.php49 $type = $this->createType($varType, $nullable);
76 $type = $this->createType($varType, $nullable);
88 private function createType(DocType $type, bool $nullable, string $docType = null): ?Type function in Symfony\\Component\\PropertyInfo\\Util\\PhpDocTypeHelper
117 $collectionValueType = $this->createType($type, false, substr($docType, 0, -2));
/dports/www/typo3-11/typo3_src-11.5.7/vendor/symfony/property-info/Util/
H A DPhpDocTypeHelper.php55 $type = $this->createType($varType, $nullable);
82 $type = $this->createType($varType, $nullable);
94 private function createType(DocType $type, bool $nullable, string $docType = null): ?Type function in Symfony\\Component\\PropertyInfo\\Util\\PhpDocTypeHelper
125 $collectionValueType = $this->createType($type, false, substr($docType, 0, -2));
/dports/devel/grcov/grcov-0.8.2/cargo-crates/symbolic-demangle-8.3.0/vendor/swift/lib/Demangling/
H A DDemangler.cpp793 return createType( in demangleOperator()
1191 return createType(Ty); in demangleBuiltinType()
1237 return createType(FuncType); in popFunctionType()
1365 return createType(Root); in popTuple()
1404 return createType(Proto); in popProtocol()
1857 return createType(type); in demangleImplFunctionType()
1999 NodePointer AssocTy = createType( in demangleArchetype()
2079 BaseTy = createType(Base); in demangleAssociatedTypeSimple()
2100 BaseTy = createType(Base); in demangleAssociatedTypeCompound()
2896 return createType(boxTy);
[all …]
/dports/devel/gitui/gitui-0.10.1/cargo-crates/symbolic-demangle-7.4.0/vendor/swift/lib/Demangling/
H A DDemangler.cpp789 return createType( in demangleOperator()
1187 return createType(Ty); in demangleBuiltinType()
1233 return createType(FuncType); in popFunctionType()
1361 return createType(Root); in popTuple()
1400 return createType(Proto); in popProtocol()
1797 return createType(type); in demangleImplFunctionType()
1936 NodePointer AssocTy = createType( in demangleArchetype()
2014 BaseTy = createType(Base); in demangleAssociatedTypeSimple()
2035 BaseTy = createType(Base); in demangleAssociatedTypeCompound()
2823 return createType(boxTy);
[all …]
/dports/lang/gcc12-devel/gcc-12-20211205/gcc/testsuite/gdc.test/compilable/imports/
H A Dtest9672a.d13 static Type createType() in createType() function
23 return BasicType.createType(); in ValueT()

12345678910>>...15