Home
last modified time | relevance | path

Searched refs:NPrimitive (Results 1 – 24 of 24) sorted by relevance

/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/model/types/
H A DType.java57 …exceptions.put("OSStatus", getType("OSStatus", new NPrimitive('l'), new NPrimitive('i'))); // (l /…
58 …exceptions.put("CGFloat", getType("CGFloat", new NPrimitive('f'), new NPrimitive('d'))); // (f / d…
62 …exceptions.put("NSInteger", getType("NSInteger", new NPrimitive('i'), new NPrimitive('q'))); // (i…
64 …ltibyteGlyphPacking", getType("NSMultibyteGlyphPacking", new NPrimitive('I'), new NPrimitive('Q'))…
148 fields.add(new NField("x", new NPrimitive('d'))); in getCGPointType()
149 fields.add(new NField("y", new NPrimitive('d'))); in getCGPointType()
155 fields.add(new NField("x", new NPrimitive('f'))); in getNSPointType()
156 fields.add(new NField("y", new NPrimitive('f'))); in getNSPointType()
162 fields.add(new NField("width", new NPrimitive('d'))); in getCGSizeType()
163 fields.add(new NField("height", new NPrimitive('d'))); in getCGSizeType()
[all …]
H A DNType.java110 public static class NPrimitive extends NType{ class in NType
116 protected NPrimitive(char c){ in NPrimitive() method in NType.NPrimitive
121 … private static final Map<Character, NPrimitive> cache = new HashMap<Character, NPrimitive>();
122 public static final NPrimitive inst(final char c){ in inst()
123 if(!cache.containsKey(c)) cache.put(c, new NPrimitive(c)); in inst()
127 @Override protected boolean equals2(NType nt) { return ((NPrimitive)nt).type == type; } in equals2()
H A DTypeToJType.java45 import com.apple.internal.jobjc.generator.model.types.NType.NPrimitive;
106 protected JType accept(Type type, NPrimitive nt32, NPrimitive nt64){
H A DJType.java40 import com.apple.internal.jobjc.generator.model.types.NType.NPrimitive;
228 char t = ((NPrimitive)type.type64).type; in getLiteralSuffix()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/model/types/
H A DType.java57 …exceptions.put("OSStatus", getType("OSStatus", new NPrimitive('l'), new NPrimitive('i'))); // (l /…
58 …exceptions.put("CGFloat", getType("CGFloat", new NPrimitive('f'), new NPrimitive('d'))); // (f / d…
62 …exceptions.put("NSInteger", getType("NSInteger", new NPrimitive('i'), new NPrimitive('q'))); // (i…
64 …ltibyteGlyphPacking", getType("NSMultibyteGlyphPacking", new NPrimitive('I'), new NPrimitive('Q'))…
148 fields.add(new NField("x", new NPrimitive('d'))); in getCGPointType()
149 fields.add(new NField("y", new NPrimitive('d'))); in getCGPointType()
155 fields.add(new NField("x", new NPrimitive('f'))); in getNSPointType()
156 fields.add(new NField("y", new NPrimitive('f'))); in getNSPointType()
162 fields.add(new NField("width", new NPrimitive('d'))); in getCGSizeType()
163 fields.add(new NField("height", new NPrimitive('d'))); in getCGSizeType()
[all …]
H A DNType.java110 public static class NPrimitive extends NType{ class in NType
116 protected NPrimitive(char c){ in NPrimitive() method in NType.NPrimitive
121 … private static final Map<Character, NPrimitive> cache = new HashMap<Character, NPrimitive>();
122 public static final NPrimitive inst(final char c){ in inst()
123 if(!cache.containsKey(c)) cache.put(c, new NPrimitive(c)); in inst()
127 @Override protected boolean equals2(NType nt) { return ((NPrimitive)nt).type == type; } in equals2()
H A DTypeToJType.java45 import com.apple.internal.jobjc.generator.model.types.NType.NPrimitive;
106 protected JType accept(Type type, NPrimitive nt32, NPrimitive nt64){
H A DJType.java40 import com.apple.internal.jobjc.generator.model.types.NType.NPrimitive;
228 char t = ((NPrimitive)type.type64).type; in getLiteralSuffix()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/model/
H A DNativeEnum.java33 import com.apple.internal.jobjc.generator.model.types.NType.NPrimitive;
57 if("true".equals(ignore)) return Type.getType(null, NPrimitive.inst('i'), null); in typeForEnum()
110 @Override public Type getType() { return Type.getType(null, NPrimitive.inst('i'), null); }
119 @Override public Type getType() { return Type.getType(null, NPrimitive.inst('l'), null); }
127 @Override public Type getType() { return Type.getType(null, NPrimitive.inst('f'), null); }
136 @Override public Type getType() { return Type.getType(null, NPrimitive.inst('d'), null); }
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/model/
H A DNativeEnum.java33 import com.apple.internal.jobjc.generator.model.types.NType.NPrimitive;
57 if("true".equals(ignore)) return Type.getType(null, NPrimitive.inst('i'), null); in typeForEnum()
110 @Override public Type getType() { return Type.getType(null, NPrimitive.inst('i'), null); }
119 @Override public Type getType() { return Type.getType(null, NPrimitive.inst('l'), null); }
127 @Override public Type getType() { return Type.getType(null, NPrimitive.inst('f'), null); }
136 @Override public Type getType() { return Type.getType(null, NPrimitive.inst('d'), null); }
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/utils/
H A DNTypePrinter.java36 import com.apple.internal.jobjc.generator.model.types.NType.NPrimitive;
63 protected String accept(NPrimitive nt) { in accept()
68 if(nt.subject instanceof NPrimitive && ((NPrimitive) nt.subject).type == 'C') in accept()
H A DNTypeParser.java40 import com.apple.internal.jobjc.generator.model.types.NType.NPrimitive;
106 return NPrimitive.CODES.contains(ss.peek()); in parsePossible()
111 return NPrimitive.inst(ss.read()); in parse()
127 private static NPointer CHAR_PTR = new NPointer(NPrimitive.inst('C'));
H A DNTypeMerger.java42 import com.apple.internal.jobjc.generator.model.types.NType.NPrimitive;
141 protected NType accept(NPrimitive a, NPrimitive b) { in accept()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/utils/
H A DNTypePrinter.java36 import com.apple.internal.jobjc.generator.model.types.NType.NPrimitive;
63 protected String accept(NPrimitive nt) { in accept()
68 if(nt.subject instanceof NPrimitive && ((NPrimitive) nt.subject).type == 'C') in accept()
H A DNTypeParser.java40 import com.apple.internal.jobjc.generator.model.types.NType.NPrimitive;
106 return NPrimitive.CODES.contains(ss.peek()); in parsePossible()
111 return NPrimitive.inst(ss.read()); in parse()
127 private static NPointer CHAR_PTR = new NPointer(NPrimitive.inst('C'));
H A DNTypeMerger.java42 import com.apple.internal.jobjc.generator.model.types.NType.NPrimitive;
141 protected NType accept(NPrimitive a, NPrimitive b) { in accept()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/model/coders/
H A DComplexCoderDescriptor.java34 import com.apple.internal.jobjc.generator.model.types.NType.NPrimitive;
51 …rimitiveCoderDescriptor desc32 = PrimitiveCoderDescriptor.getCoderDescriptorFor((NPrimitive) nt32); in getCoderDescriptorFor()
52 …rimitiveCoderDescriptor desc64 = PrimitiveCoderDescriptor.getCoderDescriptorFor((NPrimitive) nt64); in getCoderDescriptorFor()
H A DPrimitiveCoderDescriptor.java30 import com.apple.internal.jobjc.generator.model.types.NType.NPrimitive;
49 public static PrimitiveCoderDescriptor getCoderDescriptorFor(NPrimitive nt) { in getCoderDescriptorFor()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/model/coders/
H A DComplexCoderDescriptor.java34 import com.apple.internal.jobjc.generator.model.types.NType.NPrimitive;
51 …rimitiveCoderDescriptor desc32 = PrimitiveCoderDescriptor.getCoderDescriptorFor((NPrimitive) nt32); in getCoderDescriptorFor()
52 …rimitiveCoderDescriptor desc64 = PrimitiveCoderDescriptor.getCoderDescriptorFor((NPrimitive) nt64); in getCoderDescriptorFor()
H A DPrimitiveCoderDescriptor.java30 import com.apple.internal.jobjc.generator.model.types.NType.NPrimitive;
49 public static PrimitiveCoderDescriptor getCoderDescriptorFor(NPrimitive nt) { in getCoderDescriptorFor()
/dports/science/py-pymol/pymol-open-source-2.4.0/layer1/
H A DRay.cpp211 return (I->NPrimitive); in RayGetNPrimitives()
6698 I->NPrimitive++; in sphere3fv()
6863 I->NPrimitive += 2; in character()
6943 I->NPrimitive++; in cylinder3fv()
7041 I->NPrimitive++; in customCylinder3fv()
7136 I->NPrimitive++; in cone3fv()
7205 I->NPrimitive++; in sausage3fv()
7311 I->NPrimitive++; in ellipsoid3fv()
7319 if (!I->NPrimitive) in setLastToNoLighting()
7495 I->NPrimitive++; in triangle3fv()
[all …]
H A DRay.h139 int NPrimitive; member
H A DCOLLADA.cpp819 for (a = 0; a <= I->NPrimitive; a++) { in RayRenderCOLLADA()
824 if (a == I->NPrimitive || in RayRenderCOLLADA()
856 if(a < I->NPrimitive){ in RayRenderCOLLADA()
/dports/science/libecpint/libecpint-1.0.7/tests/units/gshell/
H A Dgshell.cpp25 TEST_F(GShellTest, NPrimitive) { in TEST_F() argument