Home
last modified time | relevance | path

Searched defs:class (Results 26 – 50 of 13994) sorted by relevance

12345678910>>...560

/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodeDisassembler.java51 addBytecodeClass(Bytecodes._goto, BytecodeGoto.class); in addBytecodeClass()
53 addBytecodeClass(Bytecodes._ifeq, BytecodeIf.class); in addBytecodeClass()
54 addBytecodeClass(Bytecodes._ifne, BytecodeIf.class); in addBytecodeClass()
55 addBytecodeClass(Bytecodes._iflt, BytecodeIf.class); in addBytecodeClass()
56 addBytecodeClass(Bytecodes._ifge, BytecodeIf.class); in addBytecodeClass()
57 addBytecodeClass(Bytecodes._ifgt, BytecodeIf.class); in addBytecodeClass()
58 addBytecodeClass(Bytecodes._ifle, BytecodeIf.class); in addBytecodeClass()
67 addBytecodeClass(Bytecodes._ifnull, BytecodeIf.class); in addBytecodeClass()
76 addBytecodeClass(Bytecodes._jsr, BytecodeJsr.class); in addBytecodeClass()
88 addBytecodeClass(Bytecodes._new, BytecodeNew.class); in addBytecodeClass()
[all …]
/dports/lang/ghc/ghc-8.10.7/libraries/ghc-prim/GHC/
H A DClasses.hs75 class IP (x :: Symbol) a | x -> a where function
145 class Eq a where function
341 class (Eq a) => Ord a where function
577 class () function
578 class (c1, c2) => (c1, c2) function
579 class (c1, c2, c3) => (c1, c2, c3) function
580 class (c1, c2, c3, c4) => (c1, c2, c3, c4) function
581 class (c1, c2, c3, c4, c5) => (c1, c2, c3, c4, c5) function
585 class (c1, c2, c3, c4, c5, c6, c7, c8, c9) function
587 class (c1, c2, c3, c4, c5, c6, c7, c8, c9, c10) function
[all …]
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/jdk/java/foreign/
H A DTestNulls.java122 addDefaultMapping(char.class, (char)0); in addDefaultMapping()
123 addDefaultMapping(byte.class, (byte)0); in addDefaultMapping()
125 addDefaultMapping(int.class, 0); in addDefaultMapping()
126 addDefaultMapping(float.class, 0f); in addDefaultMapping()
127 addDefaultMapping(long.class, 0L); in addDefaultMapping()
128 addDefaultMapping(double.class, 0d); in addDefaultMapping()
129 addDefaultMapping(boolean.class, true); in addDefaultMapping()
139 addDefaultMapping(Class.class, String.class); in addDefaultMapping()
142 … addDefaultMapping(VarHandle.class, MemoryHandles.varHandle(int.class, ByteOrder.nativeOrder())); in addDefaultMapping()
143 addDefaultMapping(MethodHandle.class, MethodHandles.identity(int.class)); in addDefaultMapping()
[all …]
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/jdk/java/foreign/
H A DTestNulls.java118 addDefaultMapping(char.class, (char)0); in addDefaultMapping()
119 addDefaultMapping(byte.class, (byte)0); in addDefaultMapping()
120 addDefaultMapping(short.class, (short)0); in addDefaultMapping()
121 addDefaultMapping(int.class, 0); in addDefaultMapping()
122 addDefaultMapping(float.class, 0f); in addDefaultMapping()
123 addDefaultMapping(long.class, 0L); in addDefaultMapping()
124 addDefaultMapping(double.class, 0d); in addDefaultMapping()
134 addDefaultMapping(Class.class, String.class); in addDefaultMapping()
137 … addDefaultMapping(VarHandle.class, MemoryHandles.varHandle(int.class, ByteOrder.nativeOrder())); in addDefaultMapping()
138 addDefaultMapping(MethodHandle.class, MethodHandles.identity(int.class)); in addDefaultMapping()
[all …]
/dports/devel/py-tables/tables-3.6.1/doc/source/usersguide/libref/
H A Dstructured_storage.rst38 Table properties
106 Table methods - other
146 Description methods
153 The Row class
163 Row methods
174 Row special methods
185 The Cols class
197 Cols properties
202 Cols methods
215 The Column class
[all …]
/dports/databases/pecl-cassandra/php-driver-61faee0/tests/unit/Cassandra/
H A DNumberTest.php432 public function testEmptyString($class) {
441 public function testInvalidString($class) {
468 public function testAdd($class) {
478 public function testSubtract($class) {
488 public function testMultiply($class) {
514 public function testDivision($class) {
535 public function testModulo($class) {
547 public function testModuloByZero($class) {
577 public function testNegation($class) {
585 public function testSquareRoot($class) {
[all …]
/dports/www/xoops/XoopsCore25-2.5.10/htdocs/class/logger/
H A Drender.php96 $class = 'even'; variable
104 $class = ($class === 'odd') ? 'even' : 'odd'; variable
110 $class = 'even'; variable
116 $class = ($class === 'odd') ? 'even' : 'odd'; variable
122 $class = 'even'; variable
137 $class = ($class === 'odd') ? 'even' : 'odd'; variable
142 $class = 'even'; variable
150 $class = ($class === 'odd') ? 'even' : 'odd'; variable
155 $class = 'even'; variable
161 $class = ($class === 'odd') ? 'even' : 'odd'; variable
[all …]
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/java.base/share/classes/java/lang/runtime/
H A DObjectMethods.java122 primitiveHashers.put(byte.class, lookup.findStatic(Byte.class, "hashCode", in primitiveHashers.put()
124 primitiveHashers.put(short.class, lookup.findStatic(Short.class, "hashCode", in primitiveHashers.put()
130 primitiveHashers.put(long.class, lookup.findStatic(Long.class, "hashCode", in primitiveHashers.put()
139 primitiveToString.put(byte.class, lookup.findStatic(Byte.class, "toString", in primitiveToString.put()
141 primitiveToString.put(short.class, lookup.findStatic(Short.class, "toString", in primitiveToString.put()
143 primitiveToString.put(char.class, lookup.findStatic(Character.class, "toString", in primitiveToString.put()
145 primitiveToString.put(int.class, lookup.findStatic(Integer.class, "toString", in primitiveToString.put()
147 primitiveToString.put(long.class, lookup.findStatic(Long.class, "toString", in primitiveToString.put()
149 primitiveToString.put(float.class, lookup.findStatic(Float.class, "toString", in primitiveToString.put()
151 primitiveToString.put(double.class, lookup.findStatic(Double.class, "toString", in primitiveToString.put()
[all …]
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/java.base/share/classes/java/lang/runtime/
H A DObjectMethods.java123 primitiveHashers.put(byte.class, lookup.findStatic(Byte.class, "hashCode", in primitiveHashers.put()
125 primitiveHashers.put(short.class, lookup.findStatic(Short.class, "hashCode", in primitiveHashers.put()
131 primitiveHashers.put(long.class, lookup.findStatic(Long.class, "hashCode", in primitiveHashers.put()
140 primitiveToString.put(byte.class, lookup.findStatic(Byte.class, "toString", in primitiveToString.put()
142 primitiveToString.put(short.class, lookup.findStatic(Short.class, "toString", in primitiveToString.put()
144 primitiveToString.put(char.class, lookup.findStatic(Character.class, "toString", in primitiveToString.put()
146 primitiveToString.put(int.class, lookup.findStatic(Integer.class, "toString", in primitiveToString.put()
148 primitiveToString.put(long.class, lookup.findStatic(Long.class, "toString", in primitiveToString.put()
150 primitiveToString.put(float.class, lookup.findStatic(Float.class, "toString", in primitiveToString.put()
152 primitiveToString.put(double.class, lookup.findStatic(Double.class, "toString", in primitiveToString.put()
[all …]
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/java.base/share/classes/java/lang/runtime/
H A DObjectMethods.java132 primitiveHashers.put(byte.class, lookup.findStatic(Byte.class, "hashCode", in primitiveHashers.put()
134 primitiveHashers.put(short.class, lookup.findStatic(Short.class, "hashCode", in primitiveHashers.put()
140 primitiveHashers.put(long.class, lookup.findStatic(Long.class, "hashCode", in primitiveHashers.put()
149 primitiveToString.put(byte.class, lookup.findStatic(Byte.class, "toString", in primitiveToString.put()
151 primitiveToString.put(short.class, lookup.findStatic(Short.class, "toString", in primitiveToString.put()
153 primitiveToString.put(char.class, lookup.findStatic(Character.class, "toString", in primitiveToString.put()
155 primitiveToString.put(int.class, lookup.findStatic(Integer.class, "toString", in primitiveToString.put()
157 primitiveToString.put(long.class, lookup.findStatic(Long.class, "toString", in primitiveToString.put()
159 primitiveToString.put(float.class, lookup.findStatic(Float.class, "toString", in primitiveToString.put()
161 primitiveToString.put(double.class, lookup.findStatic(Double.class, "toString", in primitiveToString.put()
[all …]
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/java.base/share/classes/java/lang/runtime/
H A DObjectMethods.java132 primitiveHashers.put(byte.class, lookup.findStatic(Byte.class, "hashCode", in primitiveHashers.put()
134 primitiveHashers.put(short.class, lookup.findStatic(Short.class, "hashCode", in primitiveHashers.put()
140 primitiveHashers.put(long.class, lookup.findStatic(Long.class, "hashCode", in primitiveHashers.put()
149 primitiveToString.put(byte.class, lookup.findStatic(Byte.class, "toString", in primitiveToString.put()
151 primitiveToString.put(short.class, lookup.findStatic(Short.class, "toString", in primitiveToString.put()
153 primitiveToString.put(char.class, lookup.findStatic(Character.class, "toString", in primitiveToString.put()
155 primitiveToString.put(int.class, lookup.findStatic(Integer.class, "toString", in primitiveToString.put()
157 primitiveToString.put(long.class, lookup.findStatic(Long.class, "toString", in primitiveToString.put()
159 primitiveToString.put(float.class, lookup.findStatic(Float.class, "toString", in primitiveToString.put()
161 primitiveToString.put(double.class, lookup.findStatic(Double.class, "toString", in primitiveToString.put()
[all …]
/dports/devel/inilib/inilib-1.0.7b3/doc/
H A Dsection.tex51 \subsubsection{Convenience typedefs}
61 \subsubsection{Constructors}
70 \subsubsection{Destructor}
77 \subsubsection{Assignment Operator}
98 \subsubsection{{\tt operator[]}}
107 \subsubsection[insert]{{\tt insert}}
120 \subsubsection[clear]{{\tt clear}}
128 \subsubsection[find]{{\tt find}}
145 \subsubsection[empty]{{\tt empty}}
153 \subsubsection[begin]{{\tt begin}}
[all …]
/dports/multimedia/v4l_compat/linux-5.13-rc2/include/linux/device/
H A Dclass.h54 struct class { struct
58 const struct attribute_group **class_groups; argument
65 void (*class_release)(struct class *class); argument
87 extern int __must_check __class_register(struct class *class, argument
93 #define class_register(class) \ argument
127 static inline struct device *class_find_device_by_name(struct class *class, in class_find_device_by_name()
152 class_find_device_by_fwnode(struct class *class, in class_find_device_by_fwnode()
185 class_find_device_by_acpi_dev(struct class *class, const void *adev) in class_find_device_by_acpi_dev()
213 static inline int __must_check class_create_file(struct class *class, in class_create_file()
219 static inline void class_remove_file(struct class *class, in class_remove_file()
[all …]
/dports/multimedia/libv4l/linux-5.13-rc2/include/linux/device/
H A Dclass.h54 struct class { struct
58 const struct attribute_group **class_groups; argument
65 void (*class_release)(struct class *class); argument
87 extern int __must_check __class_register(struct class *class, argument
93 #define class_register(class) \ argument
127 static inline struct device *class_find_device_by_name(struct class *class, in class_find_device_by_name()
152 class_find_device_by_fwnode(struct class *class, in class_find_device_by_fwnode()
185 class_find_device_by_acpi_dev(struct class *class, const void *adev) in class_find_device_by_acpi_dev()
213 static inline int __must_check class_create_file(struct class *class, in class_create_file()
219 static inline void class_remove_file(struct class *class, in class_remove_file()
[all …]
/dports/java/avis/avis-1.2.0/server/src/main/org/avis/federation/io/
H A DXdrAstCoding.java126 typeCodes.put (And.class, AND); in typeCodes.put()
134 typeCodes.put (MathDiv.class, DIVIDE); in typeCodes.put()
136 typeCodes.put (MathMod.class, MODULO); in typeCodes.put()
138 typeCodes.put (MathPlus.class, ADD); in typeCodes.put()
140 typeCodes.put (Nan.class, NAN); in typeCodes.put()
141 typeCodes.put (Not.class, NOT); in typeCodes.put()
142 typeCodes.put (Or.class, OR); in typeCodes.put()
143 typeCodes.put (Require.class, REQUIRE); in typeCodes.put()
144 typeCodes.put (Size.class, SIZE); in typeCodes.put()
149 typeCodes.put (StrRegex.class, REGEX); in typeCodes.put()
[all …]
/dports/multimedia/v4l-utils/linux-5.13-rc2/include/linux/device/
H A Dclass.h54 struct class { struct
58 const struct attribute_group **class_groups; argument
65 void (*class_release)(struct class *class); argument
87 extern int __must_check __class_register(struct class *class, argument
93 #define class_register(class) \ argument
127 static inline struct device *class_find_device_by_name(struct class *class, in class_find_device_by_name()
152 class_find_device_by_fwnode(struct class *class, in class_find_device_by_fwnode()
185 class_find_device_by_acpi_dev(struct class *class, const void *adev) in class_find_device_by_acpi_dev()
213 static inline int __must_check class_create_file(struct class *class, in class_create_file()
219 static inline void class_remove_file(struct class *class, in class_remove_file()
[all …]
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/jdk/java/foreign/handles/invoker_module/handle/invoker/
H A DMethodHandleInvoker.java66 addDefaultMapping(CLinker.class, CLinker.getInstance()); in addDefaultMapping()
67 addDefaultMapping(long.class, 0L); in addDefaultMapping()
68 addDefaultMapping(Path.class, Path.of("nonExistent")); in addDefaultMapping()
69 addDefaultMapping(String.class, "Hello!"); in addDefaultMapping()
70 addDefaultMapping(Runnable.class, () -> {}); in addDefaultMapping()
71 addDefaultMapping(MethodHandle.class, MethodHandles.identity(int.class)); in addDefaultMapping()
72 addDefaultMapping(Charset.class, Charset.defaultCharset()); in addDefaultMapping()
73 addDefaultMapping(MethodType.class, MethodType.methodType(void.class)); in addDefaultMapping()
74 addDefaultMapping(MemoryAddress.class, MemoryAddress.NULL); in addDefaultMapping()
75 addDefaultMapping(Addressable.class, MemoryAddress.NULL); in addDefaultMapping()
[all …]
/dports/biology/ncbi-blast+/ncbi-blast-2.12.0+-src/c++/src/app/blast/
H A Dblast_report.ini6 <td class=\"c1 l lim\"><@seq_info@></td></tr> key
20 <button class=\"cfg cnc\" >Cancel</button> \ key
25 <span class=\"alnSeqLinks\"> \ key
31 <div class=\"oneSeqAln\" id=\"aln_<@alnSeqGi@>\"> \ key
36 <div class=\"alnAll\" id=\"alnAll_<@alnSeqGi@>\"> key
53 <table class=\"alnParams\"> \ key
69 <table class=\"alnParams\"> \ key
77 <td class=\"<@aln_meth_hide@>\"><@aln_meth@></td> \ key
102 <div class=\"dlfRow\"> \ key
110 <div class=\"ui-helper-reset\" aria-live=\"assertive\" > \ key
[all …]
/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/src/app/blast/
H A Dblast_report.ini6 <td class=\"c1 l lim\"><@seq_info@></td></tr> key
20 <button class=\"cfg cnc\" >Cancel</button> \ key
25 <span class=\"alnSeqLinks\"> \ key
31 <div class=\"oneSeqAln\" id=\"aln_<@alnSeqGi@>\"> \ key
36 <div class=\"alnAll\" id=\"alnAll_<@alnSeqGi@>\"> key
53 <table class=\"alnParams\"> \ key
69 <table class=\"alnParams\"> \ key
77 <td class=\"<@aln_meth_hide@>\"><@aln_meth@></td> \ key
102 <div class=\"dlfRow\"> \ key
110 <div class=\"ui-helper-reset\" aria-live=\"assertive\" > \ key
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ua/org.eclipse.help/src/org/eclipse/help/internal/
H A DUAElementFactory.java84 classByElementName.put(Anchor.NAME, Anchor.class); in classByElementName.put()
85 classByElementName.put(Include.NAME, Include.class); in classByElementName.put()
86 classByElementName.put(Toc.NAME, Toc.class); in classByElementName.put()
87 classByElementName.put(Topic.NAME, Topic.class); in classByElementName.put()
88 classByElementName.put(Index.NAME, Index.class); in classByElementName.put()
89 classByElementName.put(IndexEntry.NAME, IndexEntry.class); in classByElementName.put()
90 classByElementName.put(Context.NAME, Context.class); in classByElementName.put()
91 classByElementName.put(CommandLink.NAME, CommandLink.class); in classByElementName.put()
92 classByElementName.put(Link.NAME, Link.class); in classByElementName.put()
93 classByElementName.put(IndexSee.NAME, IndexSee.class); in classByElementName.put()
[all …]
/dports/math/py-matplotlib/matplotlib-3.4.3/doc/api/
H A Dartist_api.rst25 Interactive
46 Clipping
60 Bulk Properties
72 Drawing
105 Figure and Axes
119 Children
129 Transform
140 Units
151 Metadata
165 Miscellaneous
/dports/security/p5-Crypt-Password-Util/Crypt-Password-Util-0.17/
H A DMETA.json70 "class" : "Dist::Zilla::Plugin::GatherDir", string
86 "class" : "Dist::Zilla::Plugin::PruneCruft", string
96 "class" : "Dist::Zilla::Plugin::MetaYAML", string
101 "class" : "Dist::Zilla::Plugin::License", string
121 "class" : "Dist::Zilla::Plugin::ExecDir", string
126 "class" : "Dist::Zilla::Plugin::ShareDir", string
141 "class" : "Dist::Zilla::Plugin::Manifest", string
191 "class" : "Dist::Zilla::Plugin::MetaJSON", string
211 "class" : "Dist::Zilla::Plugin::OurDate", string
216 "class" : "Dist::Zilla::Plugin::OurDist", string
[all …]
/dports/security/p5-Unix-setuid/Unix-setuid-0.02/
H A DMETA.json63 "class" : "Dist::Zilla::Plugin::GatherDir", string
68 "class" : "Dist::Zilla::Plugin::PruneCruft", string
78 "class" : "Dist::Zilla::Plugin::MetaYAML", string
83 "class" : "Dist::Zilla::Plugin::License", string
103 "class" : "Dist::Zilla::Plugin::ExecDir", string
108 "class" : "Dist::Zilla::Plugin::ShareDir", string
113 "class" : "Dist::Zilla::Plugin::MakeMaker", string
123 "class" : "Dist::Zilla::Plugin::Manifest", string
153 "class" : "Dist::Zilla::Plugin::MetaJSON", string
163 "class" : "Dist::Zilla::Plugin::OurDate", string
[all …]
/dports/devel/p5-Package-Generator/Package-Generator-1.106/
H A DMETA.json108 "class" : "Dist::Zilla::Plugin::PruneCruft", string
118 "class" : "Dist::Zilla::Plugin::MetaYAML", string
123 "class" : "Dist::Zilla::Plugin::License", string
128 "class" : "Dist::Zilla::Plugin::Readme", string
133 "class" : "Dist::Zilla::Plugin::ExecDir", string
138 "class" : "Dist::Zilla::Plugin::ShareDir", string
143 "class" : "Dist::Zilla::Plugin::MakeMaker", string
148 "class" : "Dist::Zilla::Plugin::Manifest", string
188 "class" : "Dist::Zilla::Plugin::MetaJSON", string
213 "class" : "Dist::Zilla::Plugin::Prereqs", string
[all …]
/dports/net/p5-Parse-Netstat/Parse-Netstat-0.14/
H A DMETA.json82 "class" : "Dist::Zilla::Plugin::GatherDir", string
98 "class" : "Dist::Zilla::Plugin::PruneCruft", string
108 "class" : "Dist::Zilla::Plugin::MetaYAML", string
113 "class" : "Dist::Zilla::Plugin::License", string
133 "class" : "Dist::Zilla::Plugin::ExecDir", string
138 "class" : "Dist::Zilla::Plugin::ShareDir", string
153 "class" : "Dist::Zilla::Plugin::Manifest", string
203 "class" : "Dist::Zilla::Plugin::IfBuilt", string
228 "class" : "Dist::Zilla::Plugin::OurDate", string
233 "class" : "Dist::Zilla::Plugin::OurDist", string
[all …]

12345678910>>...560