HomeSort by relevance Sort by last modified time
    Searched refs:Structure (Results 1 - 25 of 150) sorted by null

1 2 3 4 5 6

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_anon.py 11 class Y(Structure):
26 lambda: type(Structure)("Name",
27 (Structure,),
33 lambda: type(Structure)("Name",
34 (Structure,),
39 class ANON_S(Structure):
47 class Y(Structure):
test_struct_fields.py 5 # Structure/Union classes must get 'finalized' sooner or
10 # 3. The type is used as field of another Structure/Union.
16 class X(Structure):
23 class X(Structure):
28 class X(Structure):
34 class X(Structure):
36 class Y(Structure):
41 class X(Structure):
test_structures.py 8 class X(Structure):
25 class X(Structure):
63 class X(Structure):
78 class X(Structure):
83 class Y(Structure):
89 class SI(Structure):
95 class IS(Structure):
102 class XX(Structure):
112 class X(Structure):
122 class XX(Structure)
    [all...]
test_internals.py 39 class X(Structure):
51 class X(Structure):
54 class Y(Structure):
67 class X(Structure):
70 class Y(Structure):
89 class X(Structure):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_anon.py 11 class Y(Structure):
26 lambda: type(Structure)("Name",
27 (Structure,),
33 lambda: type(Structure)("Name",
34 (Structure,),
39 class ANON_S(Structure):
47 class Y(Structure):
test_struct_fields.py 5 # Structure/Union classes must get 'finalized' sooner or
10 # 3. The type is used as field of another Structure/Union.
16 class X(Structure):
23 class X(Structure):
28 class X(Structure):
34 class X(Structure):
36 class Y(Structure):
41 class X(Structure):
test_structures.py 8 class X(Structure):
25 class X(Structure):
63 class X(Structure):
78 class X(Structure):
83 class Y(Structure):
89 class SI(Structure):
95 class IS(Structure):
102 class XX(Structure):
112 class X(Structure):
122 class XX(Structure)
    [all...]
test_internals.py 39 class X(Structure):
51 class X(Structure):
54 class Y(Structure):
67 class X(Structure):
70 class Y(Structure):
89 class X(Structure):
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/modifiers/
Modifier.java 6 import com.jme3.scene.plugins.blender.file.Structure;
46 protected boolean validate(Structure modifierStructure, BlenderContext blenderContext) {
47 Structure modifierData = (Structure)modifierStructure.getFieldValue("modifier");
ModifierHelper.java 46 import com.jme3.scene.plugins.blender.file.Structure;
74 * the object structure
81 public Collection<Modifier> readModifiers(Structure objectStructure, BlenderContext blenderContext) throws BlenderFileException {
83 Structure modifiersListBase = (Structure) objectStructure.getFieldValue("modifiers");
84 List<Structure> modifiers = modifiersListBase.evaluateListBase(blenderContext);
85 for (Structure modifierStructure : modifiers) {
120 public boolean shouldBeLoaded(Structure structure, BlenderContext blenderContext) {
129 * the object's structure
    [all...]
ArmatureModifier.java 33 import com.jme3.scene.plugins.blender.file.Structure;
76 * the structure of the object
78 * the structure of the modifier
85 public ArmatureModifier(Structure objectStructure, Structure modifierStructure, BlenderContext blenderContext) throws BlenderFileException {
86 Structure meshStructure = ((Pointer) objectStructure.getFieldValue("data")).fetchData(blenderContext.getInputStream()).get(0);
98 Structure armatureObject = pArmatureObject.fetchData(blenderContext.getInputStream()).get(0);
101 Structure armatureStructure = ((Pointer) armatureObject.getFieldValue("data")).fetchData(blenderContext.getInputStream()).get(0);
103 Structure pose = ((Pointer) armatureObject.getFieldValue("pose")).fetchData(blenderContext.getInputStream()).get(0);
104 List<Structure> chanbase = ((Structure) pose.getFieldValue("chanbase")).evaluateListBase(blenderContext);
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/
_endian.py 21 # if typ is structure
22 if issubclass(typ, Structure):
26 class _swapped_meta(type(Structure)):
40 # Note: The Structure metaclass checks for the *presence* (not the
47 LittleEndianStructure = Structure
49 class BigEndianStructure(Structure):
50 """Structure with big endian byte order"""
57 BigEndianStructure = Structure
58 class LittleEndianStructure(Structure):
59 """Structure with little endian byte order""
    [all...]
wintypes.py 98 # Some important structure definitions
100 class RECT(Structure):
107 class _SMALL_RECT(Structure):
114 class _COORD(Structure):
118 class POINT(Structure):
123 class SIZE(Structure):
131 class FILETIME(Structure):
136 class MSG(Structure):
146 class WIN32_FIND_DATAA(Structure):
158 class WIN32_FIND_DATAW(Structure)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/
_endian.py 21 # if typ is structure
22 if issubclass(typ, Structure):
26 class _swapped_meta(type(Structure)):
40 # Note: The Structure metaclass checks for the *presence* (not the
47 LittleEndianStructure = Structure
49 class BigEndianStructure(Structure):
50 """Structure with big endian byte order"""
57 BigEndianStructure = Structure
58 class LittleEndianStructure(Structure):
59 """Structure with little endian byte order""
    [all...]
wintypes.py 98 # Some important structure definitions
100 class RECT(Structure):
107 class _SMALL_RECT(Structure):
114 class _COORD(Structure):
118 class POINT(Structure):
123 class SIZE(Structure):
131 class FILETIME(Structure):
136 class MSG(Structure):
146 class WIN32_FIND_DATAA(Structure):
158 class WIN32_FIND_DATAW(Structure)
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/
ArmatureHelper.java 50 import com.jme3.scene.plugins.blender.file.Structure;
78 * This method builds the object's bones structure.
81 * the structure containing the bones' data
94 public void buildBones(Structure boneStructure, Bone parent, List<Bone> result, Matrix4f arbt, final Map<Long, Structure> bonesPoseChannels, BlenderContext blenderContext) throws BlenderFileException {
120 * a bPose structure of the object
126 public Map<Integer, Integer> getGroupToBoneIndexMap(Structure defBaseStructure, Skeleton skeleton, BlenderContext blenderContext) throws BlenderFileException {
130 List<Structure> deformGroups = defBaseStructure.evaluateListBase(blenderContext);// bDeformGroup
132 for (Structure deformGroup : deformGroups) {
145 public boolean shouldBeLoaded(Structure structure, BlenderContext blenderContext) {
    [all...]
IpoHelper.java 13 import com.jme3.scene.plugins.blender.file.Structure;
41 * the structure with ipo definition
49 public Ipo fromIpoStructure(Structure ipoStructure, BlenderContext blenderContext) throws BlenderFileException {
50 Structure curvebase = (Structure) ipoStructure.getFieldValue("curve");
54 List<Structure> curves = curvebase.evaluateListBase(blenderContext);// IpoCurve
58 for (Structure curve : curves) {
60 List<Structure> bezTriples = pBezTriple.fetchData(blenderContext.getInputStream());
76 * the structure with action definition
84 public Ipo fromAction(Structure actionStructure, BlenderContext blenderContext) throws BlenderFileException {
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
ConstraintHelper.java 16 import com.jme3.scene.plugins.blender.file.Structure;
68 * This method reads constraints for for the given structure. The
72 * the structure we read constraint's for
77 public void loadConstraints(Structure objectStructure, BlenderContext blenderContext) throws BlenderFileException {
84 List<Structure> actions = pActions.fetchData(blenderContext.getInputStream());
85 for (Structure action : actions) {
86 Structure chanbase = (Structure) action.getFieldValue("chanbase");
87 List<Structure> actionChannels = chanbase.evaluateListBase(blenderContext);
88 for (Structure actionChannel : actionChannels) {
    [all...]
ConstraintNull.java 6 import com.jme3.scene.plugins.blender.file.Structure;
18 * the constraint's structure (bConstraint clss in blender 2.49).
29 public ConstraintNull(Structure constraintStructure, Long ownerOMA,
ConstraintAction.java 6 import com.jme3.scene.plugins.blender.file.Structure;
21 * the constraint's structure (bConstraint clss in blender 2.49).
32 public ConstraintAction(Structure constraintStructure, Long ownerOMA,
ConstraintChildOf.java 6 import com.jme3.scene.plugins.blender.file.Structure;
21 * the constraint's structure (bConstraint clss in blender 2.49).
32 public ConstraintChildOf(Structure constraintStructure, Long ownerOMA,
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/
DnaBlockData.java 51 private final Structure[] structures;
52 /** A map that helps finding a structure by type. */
53 private final Map<String, Structure> structuresMap;
129 structures = new Structure[amount];
130 structuresMap = new HashMap<String, Structure>(amount);
132 structures[i] = new Structure(inputStream, names, types, blenderContext);
149 * This method returns the structure of the given index.
151 * the index of the structure
152 * @return the structure of the given index
154 public Structure getStructure(int index) {
    [all...]
Structure.java 42 * A class representing a single structure in the file.
45 public class Structure implements Cloneable {
49 /** The address of the block that fills the structure. */
51 /** The type of the structure. */
54 * The fields of the structure. Each field consists of a pair: name-type.
59 * Constructor that copies the data of the structure.
60 * @param structure
61 * the structure to copy.
63 * the blender context of the structure
67 private Structure(Structure structure, BlenderContext blenderContext) throws CloneNotSupportedException
186 Structure structure = first.fetchData(blenderContext.getInputStream()).get(0); local
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/materials/
MaterialContext.java 8 import com.jme3.scene.plugins.blender.file.Structure;
40 /* package */final List<Structure> mTexs;
41 /* package */final List<Structure> textures;
43 /* package */final Map<Texture, Structure> textureToMTexMap;
62 /* package */MaterialContext(Structure structure, BlenderContext blenderContext) throws BlenderFileException {
63 name = structure.getName();
65 int mode = ((Number) structure.getFieldValue("mode")).intValue();
70 int diff_shader = ((Number) structure.getFieldValue("diff_shader")).intValue();
74 float r = ((Number) structure.getFieldValue("r")).floatValue()
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/
AbstractBlenderHelper.java 38 import com.jme3.scene.plugins.blender.file.Structure;
143 * This method loads the properties if they are available and defined for the structure.
144 * @param structure
145 * the structure we read the properties from
152 protected Properties loadProperties(Structure structure, BlenderContext blenderContext) throws BlenderFileException {
154 Structure id = (Structure) structure.getFieldValue("ID");
158 Structure propertiesStructure = pProperties.fetchData(blenderContext.getInputStream()).get(0);
    [all...]

Completed in 753 milliseconds

1 2 3 4 5 6