HomeSort by relevance Sort by last modified time
    Searched defs:get (Results 1426 - 1450 of 2528) sorted by null

<<51525354555657585960>>

  /external/jmonkeyengine/engine/src/core/com/jme3/util/
ListMap.java 44 * get/put speed.
53 System.out.println(map.get("bob"));
62 System.out.println(map.get("ghi"));
124 // return entries.get(index);
129 // return entries.get(index).value;
134 // return entries.get(index).key;
156 // ListMapEntry<K,V> entry = entries.get(i);
166 // if (valEq(entries.get(i).value, value))
172 public V get(Object key) { method in class:ListMap
173 return backingMap.get( (K) key);
    [all...]
SafeArrayList.java 257 public final E get(int index) { method in class:SafeArrayList
261 return buffer.get(index);
TempVars.java 43 * these temp variables with TempVars.get(), all retrieved TempVars
57 * Every time TempVars.get() is called, a new entry is added to the stack,
96 public static TempVars get() { method in class:TempVars
97 TempVarsStack stack = varsLocal.get();
130 TempVarsStack stack = varsLocal.get();
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/export/binary/
BinaryOutputCapsule.java 393 if (cObj.nameFields.get(name) == null)
396 byte alias = cObj.nameFields.get(name).alias;
684 write(value.get(x));
796 write(new Savable[] { key, array.get(key) });
881 writeForBuffer(value.get());
898 writeForBuffer(value.get());
914 writeForBuffer(value.get());
930 writeForBuffer(value.get());
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/util/
Converter.java 202 newMatrix.m00 = oldMatrix.get(0, 0);
203 newMatrix.m01 = oldMatrix.get(0, 1);
204 newMatrix.m02 = oldMatrix.get(0, 2);
205 newMatrix.m10 = oldMatrix.get(1, 0);
206 newMatrix.m11 = oldMatrix.get(1, 1);
207 newMatrix.m12 = oldMatrix.get(1, 2);
208 newMatrix.m20 = oldMatrix.get(2, 0);
209 newMatrix.m21 = oldMatrix.get(2, 1);
210 newMatrix.m22 = oldMatrix.get(2, 2);
240 float tempFloat = vertices.get();
    [all...]
  /external/jmonkeyengine/engine/src/xml/com/jme3/export/xml/
DOMOutputCapsule.java 455 Element el = writtenSavables.get(object);
637 Savable value = map.get(key);
659 Savable s = map.get(key);
701 buf.append(value.get());
731 buf.append(value.get());
757 buf.append(value.get());
787 buf.append(value.get());
  /external/llvm/include/llvm/ADT/
IntervalMap.h 520 /// get - Dereference as a NodeT reference.
522 NodeT &get() const { function in class:llvm::IntervalMapImpl::NodeRef
734 /// safeLookup - Get the subtree containing x, Assuming that x is in range.
760 // path to get there from the root.
815 /// subtree - Get the subtree referenced from Level. When the path is
866 /// getLeftSibling - Get the left sibling node at Level, or a null NodeRef.
867 /// @param Level Get the sibling to node(Level).
883 /// getLeftSibling - Get the left sibling node at Level, or a null NodeRef.
884 /// @param Level Get the sinbling to node(Level).
    [all...]
  /external/llvm/include/llvm/IR/
Use.h 92 /// If implicit conversion to Value* doesn't work, the get() method returns
94 Value *get() const { return Val; } function in class:llvm::Use
155 return Val.get();
161 return Val.get();
  /external/llvm/include/llvm/Support/
CallSite.h 53 CallSiteBase(ValTy *II) { *this = get(II); }
55 /// CallSiteBase::get - This static method is sort of like a constructor. It
60 static CallSiteBase get(ValTy *V) { function in class:llvm::CallSiteBase
168 /// getCallingConv/setCallingConv - get or set the calling convention of the
177 /// getAttributes/setAttributes - get or set the parameter attributes of
274 if (AI->get() == Arg)
ErrorOr.h 92 T &get() const { return *Storage; } function in class:llvm::ReferenceStorage
120 /// getError<UserData>() may be called to get either the stored user data, or
209 new (get()) storage_type(moveIfMoveConstructible<storage_type>(Val));
260 get()->~storage_type();
265 assert(IsValid && "Cannot get the error of a default constructed ErrorOr!");
266 assert(HasError && "Cannot get an error if none exists!");
289 return toPointer(get());
293 return *get();
304 // Get the other value.
306 new (get()) storage_type(*Other.get())
374 storage_type *get() { function in class:llvm::ErrorOr
380 const storage_type *get() const { function in class:llvm::ErrorOr
    [all...]
  /external/llvm/lib/CodeGen/
InterferenceCache.h 123 /// get - Return an up to date BlockInterference.
124 BlockInterference *get(unsigned MBBNum) { function in class:llvm::InterferenceCache::Entry
146 // get - Get a valid entry for PhysReg.
147 Entry *get(unsigned PhysReg);
197 setEntry(Cache.get(PhysReg));
202 Current = CacheEntry ? CacheEntry->get(MBBNum) : &NoInterference;
  /external/llvm/lib/Support/
Timer.cpp 34 // would get destroyed before the Statistic, causing havoc to ensue. We "fix"
208 Timer &get(StringRef Name, StringRef GroupName) { function in class:__anon21926::Name2PairMap
243 : TimeRegion(!Enabled ? 0 : &NamedGroupedTimers->get(Name, GroupName)) {}
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_graph.cpp 41 reinterpret_cast<Node *>(it->get())->cut();
235 virtual void *get() const { return nodes[pos]; } function in class:nv50_ir::DFSIterator
266 reinterpret_cast<Graph::Node *>(it->get())->tag = 0;
278 virtual void *get() const { return nodes[pos]; } function in class:nv50_ir::CFGIterator
344 Node *node = reinterpret_cast<Node *>(it->get());
nv50_ir_graph.h 31 #define ITER_NODE(x) reinterpret_cast<Graph::Node *>((x).get())
32 #define ITER_EDGE(x) reinterpret_cast<Graph::Edge *>((x).get())
91 virtual void *get() const { return e; } function in class:nv50_ir::Graph::EdgeIterator
  /external/mesa3d/src/glsl/
list.h 212 * Get a pointer to the structure containing an exec_node
214 * Given a pointer to an \c exec_node embedded in a structure, get a pointer to
233 void *get() function in class:iterator
262 exec_node *get() function in class:exec_list_iterator
  /external/mockito/src/org/mockito/internal/stubbing/
InvocationContainerImpl.java 110 addAnswer(answersForStubbing.get(i), i != 0);
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/mdat/
SampleList.java 40 // first we get all sample from the 'normal' MP4 part.
81 List<TrackExtendsBox> trackExtendsBoxes = movieExtendsBoxes.get(0).getBoxes(TrackExtendsBox.class);
110 nuOffsets[i + offsets.length] = keys.get(i);
111 nuSizes[i + sizes.length] = offsets2Sizes.get(keys.get(i));
167 public ByteBuffer get(int index) { method in class:SampleList
173 long start = mdatStartCache.get(mediaDataBox);
174 long end = mdatEndCache.get(mediaDataBox);
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/sampleentry/
SampleEntry.java 117 content.get(new byte[6]); // ignore 6 reserved bytes;
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/samplegrouping/
RateShareEntry.java 75 public ByteBuffer get() { method in class:RateShareEntry
  /external/nist-sip/java/gov/nist/core/
NameValueList.java 160 NameValue nv2 = (NameValue) other.hmap.get(key);
181 * Get the NameValue record given a name.
186 return (NameValue) this.hmap.get(name.toLowerCase());
249 * Get a list of parameter names.
259 * Get the parameter as a String.
308 * @see java.util.Map#get(java.lang.Object)
310 public NameValue get(Object key) { method in class:NameValueList
311 return this.hmap.get(key.toString().toLowerCase());
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
SpdyWriter.java 42 Platform.get().newDeflaterOutputStream(nameValueBlockBuffer, deflater, true));
128 out.writeInt(settings.get(i));
  /external/regex-re2/util/
sparse_array.h 167 inline Value get(int i, Value defaultv) const;
181 // Get the value at index i from the array..
335 Value SparseArray<Value>::get(int i, Value defaultv) const { function in class:re2::SparseArray
  /external/replicaisland/src/com/replica/replicaisland/
EventReporter.java 48 recordEvent(mProcessedEvents.get(x));
100 connection.setRequestMethod("GET");
GameObjectCollisionSystem.java 61 mRecordPool.release(mObjects.get(x));
106 final CollisionVolumeRecord record = mObjects.get(x);
119 final CollisionVolumeRecord other = mObjects.get(y);
209 final CollisionVolume attackVolume = attackVolumes.get(x);
214 final CollisionVolume vulnerabilityVolume = vulnerabilityVolumes.get(y);
247 CollisionVolume volume = record.attackVolumes.get(y);
260 CollisionVolume volume = record.vulnerabilityVolumes.get(y);
LevelTree.java 68 public static final Level get(int row, int index) { method in class:LevelTree
69 return levels.get(row).levels.get(index);
199 final ArrayList<Level> row = levels.get(x).levels;
202 final Level level = row.get(y);
221 final LevelGroup group = levels.get(x);
224 final Level level = group.levels.get(y);
241 final LevelGroup group = levels.get(levelRow);
244 final Level level = group.levels.get(y);
255 final LevelGroup group = levels.get(row)
    [all...]

Completed in 633 milliseconds

<<51525354555657585960>>