Home
last modified time | relevance | path

Searched refs:IntMap (Results 1 – 25 of 40) sorted by relevance

12

/external/jmonkeyengine/engine/src/core/com/jme3/font/
DBitmapCharacterSet.java36 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) { in write()
66 IntMap<BitmapCharacter> charset = entry.getValue(); in write()
72 …protected void writeCharset(OutputCapsule oc, int style, IntMap<BitmapCharacter> charset) throws I… in writeCharset()
103 private IntMap<BitmapCharacter> readCharset(InputCapsule ic, int style) throws IOException { in readCharset()
104 IntMap<BitmapCharacter> charset = new IntMap<BitmapCharacter>(); in readCharset()
117 characters = new IntMap<IntMap<BitmapCharacter>>(); in BitmapCharacterSet()
125 IntMap<BitmapCharacter> map = getCharacterSet(style); in getCharacter()
[all …]
DBitmapCharacter.java36 import com.jme3.util.IntMap;
37 import com.jme3.util.IntMap.Entry;
52 private IntMap<Integer> kerning = new IntMap<Integer>();
/external/ceres-solver/internal/ceres/
Dcanonical_views_clustering.cc48 typedef HashMap<int, int> IntMap; typedef
66 IntMap* membership);
74 IntMap* membership) const;
80 IntMap view_to_canonical_view_;
90 IntMap* membership) { in ComputeCanonicalViewsClustering()
103 IntMap* membership) { in ComputeClustering()
216 IntMap* membership) const { in ComputeClusterMembership()
220 IntMap center_to_cluster_id; in ComputeClusterMembership()
231 IntMap::const_iterator it = in ComputeClusterMembership()
/external/regex-re2/re2/
Dprefilter_tree.cc105 IntMap* parents = entries_[i].parents; in Compile()
112 for (IntMap::iterator it = parents->begin(); it != parents->end(); ++it) in Compile()
117 for (IntMap::iterator it = parents->begin(); in Compile()
221 entry->parents = new IntMap(node_map_.size()); in AssignUniqueIds()
247 IntMap uniq_child(node_map_.size()); in AssignUniqueIds()
293 IntMap regexps_map(prefilter_vec_.size()); in RegexpsGivenStrings()
300 for (IntMap::iterator it = regexps_map.begin(); in RegexpsGivenStrings()
312 IntMap* regexps) const { in PropagateMatch()
313 IntMap count(entries_.size()); in PropagateMatch()
314 IntMap work(entries_.size()); in PropagateMatch()
[all …]
Dprefilter_tree.h24 typedef SparseArray<int> IntMap; typedef
74 IntMap* parents;
89 IntMap* regexps) const;
/external/jmonkeyengine/engine/src/core/com/jme3/util/
DIntMap.java35 import com.jme3.util.IntMap.Entry;
46 public final class IntMap<T> implements Iterable<Entry<T>>, Cloneable { class
52 public IntMap() { in IntMap() method in IntMap
56 public IntMap(int initialCapacity) { in IntMap() method in IntMap
60 public IntMap(int initialCapacity, float loadFactor) { in IntMap() method in IntMap
81 public IntMap<T> clone(){ in clone()
83 IntMap<T> clone = (IntMap<T>) super.clone(); in clone()
/external/libgdx/extensions/gdx-controllers/gdx-controllers-gwt/src/com/badlogic/gdx/controllers/gwt/support/
DGamepadSupport.java19 import com.badlogic.gdx.utils.IntMap;
30 private static IntMap<Gamepad> gamepads = new IntMap<Gamepad>();
31 private static IntMap<Gamepad> gamepadsTemp = new IntMap<Gamepad>();
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/decals/
DPluggableGroupStrategy.java20 import com.badlogic.gdx.utils.IntMap;
25 private IntMap<GroupPlug> plugs = new IntMap<GroupPlug>();
/external/libgdx/gdx/src/com/badlogic/gdx/maps/tiled/
DTiledMapTileSet.java21 import com.badlogic.gdx.utils.IntMap;
28 private IntMap<TiledMapTile> tiles;
49 tiles = new IntMap<TiledMapTile>(); in TiledMapTileSet()
/external/jmonkeyengine/engine/src/networking/com/jme3/network/rmi/
DObjectStore.java38 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/libgdx/gdx/src/com/badlogic/gdx/utils/
DIntMap.java31 public class IntMap<V> implements Iterable<IntMap.Entry<V>> { class
55 public IntMap () { in IntMap() method in IntMap
61 public IntMap (int initialCapacity) { in IntMap() method in IntMap
68 public IntMap (int initialCapacity, float loadFactor) { in IntMap() method in IntMap
88 public IntMap (IntMap<? extends V> map) { in IntMap() method in IntMap
171 public void putAll (IntMap<V> map) { in putAll()
573 if (!(obj instanceof IntMap)) return false; in equals()
574 IntMap<V> other = (IntMap)obj; in equals()
712 final IntMap<V> map;
716 public MapIterator (IntMap<V> map) { in MapIterator()
[all …]
/external/jmonkeyengine/engine/src/tools/jme3tools/optimize/
DTriangleCollector.java41 import com.jme3.util.IntMap;
42 import com.jme3.util.IntMap.Entry;
133 IntMap<VertexBuffer> bufs = in.getBuffers(); in gatherTris()
193 IntMap<VertexBuffer> inbufs = in.getBuffers(); in gatherTris()
221 IntMap<VertexBuffer> outbufs = out.getBuffers(); in gatherTris()
/external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tiledmappacker/
DTileSetLayout.java27 import com.badlogic.gdx.utils.IntMap;
34 private final IntMap<Vector2> imageTilePositions;
54 imageTilePositions = new IntMap<Vector2>(); in TileSetLayout()
/external/libgdx/extensions/gdx-controllers/gdx-controllers-android/src/com/badlogic/gdx/controllers/android/
DAndroidControllers.java34 import com.badlogic.gdx.utils.IntMap;
35 import com.badlogic.gdx.utils.IntMap.Entry;
40 private final IntMap<AndroidController> controllerMap = new IntMap<AndroidController>();
187 IntMap<AndroidController> removedControllers = new IntMap<AndroidController>(); in gatherControllers()
/external/jmonkeyengine/engine/src/jogg/com/jme3/audio/plugins/
DCachedOggStream.java35 import com.jme3.util.IntMap;
62 private IntMap<OggPage> oggPages = new IntMap<OggPage>();
/external/jmonkeyengine/engine/src/core/com/jme3/shader/
DShader.java38 import com.jme3.util.IntMap;
39 import com.jme3.util.IntMap.Entry;
71 private IntMap<Attribute> attribs;
222 attribs = new IntMap<Attribute>(); in Shader()
257 attribs = (IntMap<Attribute>) ic.readIntSavableMap("attribs", null); in read()
/external/jmonkeyengine/engine/src/core/com/jme3/input/
DInputManager.java39 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>();
/external/jmonkeyengine/engine/src/core/com/jme3/export/
DInputCapsule.java35 import com.jme3.util.IntMap;
133 …public IntMap<? extends Savable> readIntSavableMap(String name, IntMap<? extends Savable> defVal) … in readIntSavableMap()
DOutputCapsule.java35 import com.jme3.util.IntMap;
132 …public void writeIntSavableMap(IntMap<? extends Savable> map, String name, IntMap<? extends Savabl… in writeIntSavableMap()
/external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/
DModelConverter.java40 import com.jme3.util.IntMap;
41 import com.jme3.util.IntMap.Entry;
139 IntMap<VertexBuffer> bufs = mesh.getBuffers(); in optimize()
/external/jmonkeyengine/engine/src/core/com/jme3/scene/
DMesh.java51 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>(); in deepClone()
1072 IntMap<Integer> oldIndicesToNewIndices = new IntMap<Integer>(numIndices); in extractVertexData()
1244 public IntMap<VertexBuffer> getBuffers(){ in getBuffers()
1300 buffers = (IntMap<VertexBuffer>) in.readIntSavableMap("buffers", null); in read()
/external/jmonkeyengine/engine/src/lwjgl/com/jme3/input/lwjgl/
DJInputJoyInput.java9 import com.jme3.util.IntMap;
26 private IntMap<Controller> indicesToController;
71 indicesToController = new IntMap<Controller>(); in loadJoysticks()
/external/libgdx/extensions/gdx-controllers/gdx-controllers-gwt/src/com/badlogic/gdx/controllers/gwt/
DGwtControllers.java27 import com.badlogic.gdx.utils.IntMap;
33 private final IntMap<GwtController> controllerMap = new IntMap<GwtController>();
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
DDeviceInfoTest.java22 import com.badlogic.gdx.utils.IntMap;
/external/libgdx/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/audio/
DOpenALAudio.java34 import com.badlogic.gdx.utils.IntMap;
46 private IntMap<Long> sourceToSoundId;
87 sourceToSoundId = new IntMap<Long>(); in OpenALAudio()

12