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

1 2

  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/
Pointer.java 91 List<Structure> structures = null; local
101 if (structures == null) {
102 structures = p.fetchData(inputStream);
104 structures.addAll(p.fetchData(inputStream));
110 structures = new ArrayList<Structure>(dataFileBlock.getCount());
114 structures.add(structure);
116 return structures;
118 return structures;
DnaBlockData.java 50 /** Structures available inside the file. */
51 private final Structure[] structures; field in class:DnaBlockData
118 //reading structures
127 throw new BlenderFileException("The structures amount number should be positive!");
129 structures = new Structure[amount];
132 structures[i] = new Structure(inputStream, names, types, blenderContext);
133 if (structuresMap.containsKey(structures[i].getType())) {
134 throw new BlenderFileException("Blend file seems to be corrupted! The type " + structures[i].getType() + " is defined twice!");
136 structuresMap.put(structures[i].getType(), structures[i]);
    [all...]
  /external/webkit/Source/WebCore/bindings/js/
JSDOMGlobalObject.cpp 57 JSDOMStructureMap::iterator end = structures().end();
58 for (JSDOMStructureMap::iterator it = structures().begin(); it != end; ++it)
JSDOMBinding.cpp 431 JSDOMStructureMap& structures = globalObject->structures(); local
432 return structures.get(classInfo).get();
437 JSDOMStructureMap& structures = globalObject->structures(); local
438 ASSERT(!structures.contains(classInfo));
439 return structures.set(classInfo, WriteBarrier<Structure>(globalObject->globalData(), globalObject, structure)).first->second.get();
JSDOMGlobalObject.h 52 JSDOMStructureMap& structures() { return m_structures; } function in class:WebCore::JSDOMGlobalObject
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
toy.ml 29 * target lays out data structures. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
toy.ml 29 * target lays out data structures. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
toy.ml 29 * target lays out data structures. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
toy.ml 30 * target lays out data structures. *)
  /external/mesa3d/docs/
MESA_resize_buffers.spec 59 and adjust its internal data structures. This may include
  /external/webkit/Source/JavaScriptCore/runtime/
Structure.cpp 163 printf("Number of live Structures: %d\n", liveStructureSet.size());
164 printf("Number of Structures using the single item optimization for transition map: %d\n", numberUsingSingleSlot);
165 printf("Number of Structures that are leaf nodes: %d\n", numberLeaf);
166 printf("Number of Structures that singletons: %d\n", numberSingletons);
167 printf("Number of Structures with PropertyMaps: %d\n", numberWithPropertyMaps);
169 printf("Size of a single Structures: %d\n", static_cast<unsigned>(sizeof(Structure)));
248 Vector<Structure*, 8> structures; local
249 structures.append(this);
263 structures.append(structure);
269 for (ptrdiff_t i = structures.size() - 2; i >= 0; --i)
    [all...]
  /external/sonivox/arm-hybrid-22k/lib_src/
ARM-E_interpolate_loop_gnu.s 65 @ Fetch parameters from structures
ARM-E_interpolate_noloop_gnu.s 63 @ Fetch parameters from structures
  /external/sonivox/arm-wt-22k/lib_src/
ARM-E_interpolate_loop_gnu.s 65 @ Fetch parameters from structures
ARM-E_interpolate_noloop_gnu.s 63 @ Fetch parameters from structures
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
DFA.as 6 * are generated with if-then-else structures in a specialStateTransition()
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
token.rb 39 At a minimum, tokens are data structures that bind together a chunk of text and
219 simple Struct as tokens are basically simple data structures binding together a
tree.rb 72 Trees (ASTs), tree structures that reflect the high-level syntactic and semantic
73 structures defined by the language.
670 number of different tree structures without adding rigid interface requirements
671 on customized tree structures. For example, if you want to represent trees using
933 TreeNodeStreams flatten two-dimensional tree structures into one-dimensional
    [all...]
dfa.rb 48 structures in methods. However, for certain types of decisions, ANTLR will
error.rb 563 used by:: classes that deal with tree structures
  /external/mdnsresponder/mDNSCore/
mDNSEmbeddedAPI.h 111 // Most compilers naturally pack the on-the-wire structures correctly anyway, so a plain "struct" is usually fine.
112 // In the event that structures are not packed correctly, mDNS_Init() will detect this and report an error, so the
443 // The actual definition of these structures appear in the appropriate platform support code
450 #pragma mark - DNS Message structures
498 #pragma mark - Other Packet Format Structures
625 #pragma mark - Resource Record structures
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/tree/
wizard.rb 278 to validate tree structures as well as to extract nodes that match the pattern.
  /external/elfutils/
elfutils.spec 30 symbols), readelf (to see the raw ELF file structures), and elflint
  /external/dropbear/libtommath/
bn.tex 452 It accepts a \textbf{NULL} terminated list of pointers to mp\_int structures. It will attempt to initialize them all
810 mp\_int structures. This is analogous to an absolute comparison. The function mp\_cmp\_mag() will compare two
    [all...]
  /external/v8/src/
liveedit-debugger.js 61 // Build tree structures for old and new versions of the script.
    [all...]

Completed in 919 milliseconds

1 2