HomeSort by relevance Sort by last modified time
    Searched full:structure (Results 1 - 25 of 10193) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/e2fsprogs/tests/e_icount_normal/
name 1 inode counting structure optimized for low counts
  /external/libxml2/test/relaxng/
tutor3_7.rng 1 <element name="x" xmlns="http://relaxng.org/ns/structure/1.0"/>
tutor10_2.rng 1 <element name="foo" ns="" xmlns="http://relaxng.org/ns/structure/1.0">
pattern1.rng 1 <group xmlns="http://relaxng.org/ns/structure/1.0">
pattern2.rng 1 <group xmlns="http://relaxng.org/ns/structure/1.0">
tutor10_1.rng 2 xmlns="http://relaxng.org/ns/structure/1.0">
tutor3_2.rng 1 <element name="card" xmlns="http://relaxng.org/ns/structure/1.0">
tutor3_6.rng 1 <element name="addressBook" xmlns="http://relaxng.org/ns/structure/1.0">
tutor3_9.rng 1 <element name="card" xmlns="http://relaxng.org/ns/structure/1.0">
tutor5_3.rng 1 <element name="bad" xmlns="http://relaxng.org/ns/structure/1.0">
tutor5_4.rng 1 <element name="ok" xmlns="http://relaxng.org/ns/structure/1.0">
tutor5_5.rng 1 <element name="email" xmlns="http://relaxng.org/ns/structure/1.0">
tutor8_3.rng 1 <element name="content" xmlns="http://relaxng.org/ns/structure/1.0">
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/cameras/
CameraHelper.java 8 import com.jme3.scene.plugins.blender.file.Structure;
35 * This method converts the given structure to jme camera.
37 * @param structure
38 * camera structure
44 public Camera toCamera(Structure structure) throws BlenderFileException {
46 return this.toCamera250(structure);
48 return this.toCamera249(structure);
53 * This method converts the given structure to jme camera. Should be used form blender 2.5+.
55 * @param structure
    [all...]
  /external/e2fsprogs/tests/progs/
test_icount_cmds.ct 10 request do_create_icount, "Create an icount structure",
13 request do_free_icount, "Free an icount structure",
28 request do_get_size, "Get the size of the icount structure",
31 request do_dump, "Dump the icount structure",
34 request do_validate, "Validate the icount structure",
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/
AbstractBlenderLoader.java 48 import com.jme3.scene.plugins.blender.file.Structure;
67 * This method converts the given structure to a scene node.
68 * @param structure
69 * structure of a scene
72 public Node toScene(Structure structure) {
76 Node result = new Node(structure.getName());
78 List<Structure> base = ((Structure)structure.getFieldValue("base")).evaluateListBase(blenderContext);
    [all...]
  /external/valgrind/helgrind/tests/
t2t_laog.vgtest 2 # in the laog data structure.
  /external/kernel-headers/original/uapi/asm-arm/asm/
statfs.h 5 * With EABI there is 4 bytes of padding added to this structure.
7 * Note that user space does NOT have to pack this structure.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
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_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):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
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_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):
  /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...]
  /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...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/
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...]

Completed in 455 milliseconds

1 2 3 4 5 6 7 8 91011>>