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

1 2

  /external/jmonkeyengine/engine/src/core/com/jme3/font/
BitmapCharacterSet.java 36 import com.jme3.util.IntMap;
37 import com.jme3.util.IntMap.Entry;
47 private IntMap<IntMap<BitmapCharacter>> characters;
62 for (Entry<IntMap<BitmapCharacter>> entry : characters) {
66 IntMap<BitmapCharacter> charset = entry.getValue();
72 protected void writeCharset(OutputCapsule oc, int style, IntMap<BitmapCharacter> charset) throws IOException {
103 private IntMap<BitmapCharacter> readCharset(InputCapsule ic, int style) throws IOException {
104 IntMap<BitmapCharacter> charset = new IntMap<BitmapCharacter>();
    [all...]
BitmapCharacter.java 36 import com.jme3.util.IntMap;
37 import com.jme3.util.IntMap.Entry;
52 private IntMap<Integer> kerning = new IntMap<Integer>();
  /external/regex-re2/re2/
prefilter_tree.h 24 typedef SparseArray<int> IntMap;
74 IntMap* parents;
89 IntMap* regexps) const;
prefilter_tree.cc 105 IntMap* parents = entries_[i].parents;
112 for (IntMap::iterator it = parents->begin(); it != parents->end(); ++it)
117 for (IntMap::iterator it = parents->begin();
211 // Create parent IntMap for the entries.
221 entry->parents = new IntMap(node_map_.size());
247 IntMap uniq_child(node_map_.size());
293 IntMap regexps_map(prefilter_vec_.size());
300 for (IntMap::iterator it = regexps_map.begin();
312 IntMap* regexps) const {
313 IntMap count(entries_.size())
    [all...]
  /external/ceres-solver/internal/ceres/
canonical_views_clustering.cc 45 typedef HashMap<int, int> IntMap;
63 IntMap* membership);
71 IntMap* membership) const;
77 IntMap view_to_canonical_view_;
87 IntMap* membership) {
100 IntMap* membership) {
213 IntMap* membership) const {
217 IntMap center_to_cluster_id;
228 IntMap::const_iterator it =
  /external/chromium_org/third_party/re2/re2/
prefilter_tree.h 26 typedef SparseArray<int> IntMap;
92 IntMap* regexps) const;
prefilter_tree.cc 300 IntMap regexps_map(prefilter_vec_.size());
307 for (IntMap::iterator it = regexps_map.begin();
319 IntMap* regexps) const {
320 IntMap count(entries_.size());
321 IntMap work(entries_.size());
324 for (IntMap::iterator it = work.begin(); it != work.end(); ++it) {
  /external/jmonkeyengine/engine/src/core/com/jme3/util/
IntMap.java 35 import com.jme3.util.IntMap.Entry;
46 public final class IntMap<T> implements Iterable<Entry<T>>, Cloneable {
52 public IntMap() {
56 public IntMap(int initialCapacity) {
60 public IntMap(int initialCapacity, float loadFactor) {
81 public IntMap<T> clone(){
83 IntMap<T> clone = (IntMap<T>) super.clone();
  /external/jmonkeyengine/engine/src/jogg/com/jme3/audio/plugins/
CachedOggStream.java 35 import com.jme3.util.IntMap;
62 private IntMap<OggPage> oggPages = new IntMap<OggPage>();
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/rmi/
ObjectStore.java 38 import com.jme3.util.IntMap;
39 import com.jme3.util.IntMap.Entry;
77 private IntMap<Invocation> pendingInvocations = new IntMap<Invocation>();
80 private IntMap<LocalObject> localObjects = new IntMap<LocalObject>();
84 private IntMap<RemoteObject> remoteObjectsById = new IntMap<RemoteObject>();
  /external/jmonkeyengine/engine/src/core/com/jme3/shader/
Shader.java 38 import com.jme3.util.IntMap;
39 import com.jme3.util.IntMap.Entry;
71 private IntMap<Attribute> attribs;
222 attribs = new IntMap<Attribute>();
236 //attribs = new IntMap<Attribute>();
257 attribs = (IntMap<Attribute>) ic.readIntSavableMap("attribs", null);
  /external/jmonkeyengine/engine/src/tools/jme3tools/optimize/
TriangleCollector.java 41 import com.jme3.util.IntMap;
42 import com.jme3.util.IntMap.Entry;
133 IntMap<VertexBuffer> bufs = in.getBuffers();
193 IntMap<VertexBuffer> inbufs = in.getBuffers();
221 IntMap<VertexBuffer> outbufs = out.getBuffers();
  /external/jmonkeyengine/engine/src/core/com/jme3/export/
InputCapsule.java 35 import com.jme3.util.IntMap;
133 public IntMap<? extends Savable> readIntSavableMap(String name, IntMap<? extends Savable> defVal) throws IOException;
OutputCapsule.java 35 import com.jme3.util.IntMap;
132 public void writeIntSavableMap(IntMap<? extends Savable> map, String name, IntMap<? extends Savable> defVal) throws IOException;
  /external/jmonkeyengine/engine/src/core/com/jme3/input/
InputManager.java 39 import com.jme3.util.IntMap;
40 import com.jme3.util.IntMap.Entry;
101 private final IntMap<ArrayList<Mapping>> bindings = new IntMap<ArrayList<Mapping>>();
103 private final IntMap<Long> pressedButtons = new IntMap<Long>();
104 private final IntMap<Float> axisValues = new IntMap<Float>();
    [all...]
  /external/jmonkeyengine/engine/src/lwjgl/com/jme3/input/lwjgl/
JInputJoyInput.java 9 import com.jme3.util.IntMap;
26 private IntMap<Controller> indicesToController;
71 indicesToController = new IntMap<Controller>();
  /external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/
ModelConverter.java 40 import com.jme3.util.IntMap;
41 import com.jme3.util.IntMap.Entry;
139 IntMap<VertexBuffer> bufs = mesh.getBuffers();
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/
Mesh.java 51 import com.jme3.util.IntMap;
52 import com.jme3.util.IntMap.Entry;
169 private IntMap<VertexBuffer> buffers = new IntMap<VertexBuffer>();
235 clone.buffers = new IntMap<VertexBuffer>();
    [all...]
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/export/binary/
BinaryOutputCapsule.java 37 import com.jme3.util.IntMap;
38 import com.jme3.util.IntMap.Entry;
383 public void writeIntSavableMap(IntMap<? extends Savable> map,
384 String name, IntMap<? extends Savable> defVal)
817 protected void writeIntSavableMap(IntMap<? extends Savable> array)
BinaryInputCapsule.java 39 import com.jme3.util.IntMap;
568 private IntMap<Savable> intSavableMapFromKV(int[] keys, Savable[] values) {
573 IntMap<Savable> map = new IntMap<Savable>(keys.length);
676 public IntMap<? extends Savable> readIntSavableMap(String name, IntMap<? extends Savable> defVal)
689 return (IntMap<Savable>) value;
    [all...]
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/scene/plugins/
OBJLoader.java 48 import com.jme3.util.IntMap;
78 protected final IntMap<Vertex> indexVertMap = new IntMap<Vertex>(100);
  /external/jmonkeyengine/engine/src/lwjgl/com/jme3/renderer/lwjgl/
LwjglGL1Renderer.java 26 import com.jme3.util.IntMap;
27 import com.jme3.util.IntMap.Entry;
    [all...]
  /external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/
MeshLoader.java 48 import com.jme3.util.IntMap;
49 import com.jme3.util.IntMap.Entry;
111 private IntMap<List<VertexBuffer>> lodLevels = new IntMap<List<VertexBuffer>>();
264 // IntMap<VertexBuffer> sharedBufs = sharedMesh.getBuffers();
  /external/jmonkeyengine/engine/src/xml/com/jme3/export/xml/
DOMOutputCapsule.java 40 import com.jme3.util.IntMap;
41 import com.jme3.util.IntMap.Entry;
667 public void writeIntSavableMap(IntMap<? extends Savable> map, String name, IntMap<? extends Savable> defVal) throws IOException {
DOMInputCapsule.java 39 import com.jme3.util.IntMap;
    [all...]

Completed in 621 milliseconds

1 2