/external/jmonkeyengine/engine/src/desktop/com/jme3/input/awt/ |
AwtKeyInput.java | 91 listener.onKeyEvent(eventQueue.get(i));
|
/external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/serializers/ |
SavableSerializer.java | 86 return input.get() & 0xff; 97 input.get(b, off, len);
|
/external/kernel-headers/original/linux/ |
moduleparam.h | 40 param_get_fn get; member in struct:kernel_param 56 param_get_fn get; member in struct:kparam_array 65 #define __module_param_call(prefix, name, set, get, arg, perm) \ 70 = { __param_str_##name, perm, set, get, arg } 72 #define module_param_call(name, set, get, arg, perm) \ 73 __module_param_call(MODULE_PARAM_PREFIX, name, set, get, arg, perm)
|
/external/llvm/include/llvm/ADT/ |
PointerUnion.h | 28 /// \brief Get a type based on whether two types are the same or not. For: 73 /// X = P.get<int*>(); // ok. 74 /// Y = P.get<float*>(); // runtime assertion failure. 75 /// Z = P.get<double*>(); // runtime assertion failure (regardless of tag) 77 /// Y = P.get<float*>(); // ok. 78 /// X = P.get<int*>(); // runtime assertion failure. 126 /// get<T>() - Return the value of the specified pointer type. If the 129 T get() const { 138 if (is<T>()) return get<T>(); 142 /// \brief If the union is set to the first pointer type get an addres 226 T get() const { function in struct:llvm::PointerUnion3::IsInnerUnion 239 T get() const { function in struct:llvm::PointerUnion3::IsPT3 276 T get() const { function in class:llvm::PointerUnion3 385 T get() const { function in class:llvm::PointerUnion4 [all...] |
/external/llvm/include/llvm/CodeGen/ |
LiveRangeEdit.h | 135 LiveInterval *get(unsigned idx) const { return NewRegs[idx+FirstNew]; } function in class:llvm::LiveRangeEdit
|
RegisterClassInfo.h | 41 return makeArrayRef(Order.get(), NumRegs); 71 const RCInfo &get(const TargetRegisterClass *RC) const { function in class:llvm::RegisterClassInfo 88 return get(RC).NumRegs; 95 return get(RC); 105 return get(RC).ProperSubClass; 117 /// Get the minimum register cost in RC's allocation order. 121 return get(RC).MinCost; 124 /// Get the position of the last cost change in getOrder(RC). 129 return get(RC).LastCostChange; 132 /// Get the register unit limit for the given pressure set index [all...] |
/external/llvm/include/llvm/IR/ |
Intrinsics.h | 39 // Get the intrinsic enums generated from Intrinsics.td 111 static IITDescriptor get(IITDescriptorKind K, unsigned Field) { function in struct:llvm::Intrinsic::IITDescriptor
|
Metadata.h | 41 static MDString *get(LLVMContext &Context, StringRef Str); 42 static MDString *get(LLVMContext &Context, const char *Str) { function in class:llvm::MDString 43 return get(Context, Str ? StringRef(Str) : StringRef()); 117 static MDNode *get(LLVMContext &Context, ArrayRef<Value*> Vals); 214 /// getParent - Get the module that holds this named metadata collection.
|
/external/llvm/lib/IR/ |
DebugLoc.cpp | 28 return Ctx.pImpl->ScopeRecords[ScopeIdx-1].get(); 34 return Ctx.pImpl->ScopeInlinedAtRecords[-ScopeIdx-1].first.get(); 45 return Ctx.pImpl->ScopeInlinedAtRecords[-ScopeIdx-1].second.get(); 61 Scope = Ctx.pImpl->ScopeRecords[ScopeIdx-1].get(); 69 Scope = Ctx.pImpl->ScopeInlinedAtRecords[-ScopeIdx-1].first.get(); 70 IA = Ctx.pImpl->ScopeInlinedAtRecords[-ScopeIdx-1].second.get(); 74 DebugLoc DebugLoc::get(unsigned Line, unsigned Col, function in class:DebugLoc 110 ConstantInt::get(Int32, getLine()), ConstantInt::get(Int32, getCol()), 113 return MDNode::get(Ctx2, Elts) [all...] |
/external/llvm/lib/Transforms/ObjCARC/ |
ARCRuntimeEntryPoints.h | 72 Constant *get(const EntryPointType entry) { function in class:llvm::objcarc::ARCRuntimeEntryPoints 136 FunctionType *Fty = FunctionType::get(Type::getVoidTy(C), Params, 150 FunctionType *Fty = FunctionType::get(I8X, Params, /*isVarArg=*/false); 175 FunctionType *Fty = FunctionType::get(Type::getVoidTy(C), Params,
|
/external/llvm/utils/lit/lit/ |
main.py | 85 def get(self): member in class:TestProvider 112 item = self.provider.get() 160 # Bump the GIL check interval, its more important to get any one thread to a 406 elts = byCode.get(code) 420 times[key] = times.get(key, 0.) + t.elapsed 435 N = len(byCode.get(code,[]))
|
/external/mesa3d/src/gallium/drivers/nv50/codegen/ |
nv50_ir_inlines.h | 189 if ((*it)->get() == this) 197 if ((*it)->get() == this) // don't count joined values 203 assert(defs.front()->get() == this); 357 Value *Value::get(Iterator &it) function in class:Value 359 return reinterpret_cast<Value *>(it.get()); 367 BasicBlock *BasicBlock::get(Iterator &iter) function in class:BasicBlock 369 return reinterpret_cast<BasicBlock *>(iter.get()); 372 BasicBlock *BasicBlock::get(Graph::Node *node) function in class:BasicBlock 378 Function *Function::get(Graph::Node *node) function in class:Function 387 return reinterpret_cast<LValue *>(allLValues.get(id)) [all...] |
/external/mesa3d/src/gallium/state_trackers/clover/core/ |
base.hpp | 49 cl_int get() const { function in class:clover::error 146 op, state, its, *(std::get<N>(its)++), args...); 155 return op(state, *(std::get<0>(its)++), args...); 166 return op(*(std::get<0>(its)++), args...);
|
/external/mesa3d/src/glsl/ |
loop_analysis.cpp | 65 loop_state::get(const ir_loop *ir) function in class:loop_state 72 loop_variable_state::get(const ir_variable *ir) function in class:loop_variable_state 184 loop_variable *lv = ls->get(var);
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/samplegrouping/ |
CencSampleEncryptionInformationGroupEntry.java | 46 byteBuffer.get(kid); 51 public ByteBuffer get() { method in class:CencSampleEncryptionInformationGroupEntry
|
SampleGroupDescriptionBox.java | 80 IsoTypeWriter.writeUInt32(byteBuffer, entry.get().limit()); 82 byteBuffer.put(entry.get());
|
/external/objenesis/tck/src/org/objenesis/tck/ |
TCK.java | 93 String candidateDescription = (String) descriptions.get(candidateClass); 98 String objenesisDescription = (String) descriptions.get(objenesis); 125 results.add(descriptions.get(keys.get(i)));
|
/external/okhttp/src/main/java/com/squareup/okhttp/ |
ConnectionPool.java | 145 }).get(); 179 public synchronized Connection get(Address address) { method in class:ConnectionPool 192 Platform.get().tagSocket(connection.getSocket()); 196 Platform.get().logW("Unable to tagSocket(): " + e); 229 Platform.get().untagSocket(connection.getSocket()); 232 Platform.get().logW("Unable to untagSocket(): " + e);
|
/external/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/ |
Settings.java | 92 int get(int id) { method in class:Settings 171 set(i, other.flags(i), other.get(i));
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowContentValues.java | 122 public Object get(String key) { method in class:ShadowContentValues 123 return values.get(key); 128 Object value = values.get(key); 134 Object value = values.get(key); 154 Object value = values.get(key); 174 Object value = values.get(key); 194 Object value = values.get(key); 214 Object value = values.get(key); 234 Object value = values.get(key); 254 Object value = values.get(key) [all...] |
ShadowSettings.java | 26 get(cr).put(name, value); 32 if (get(cr).get(name) instanceof Integer) { 33 return (Integer) get(cr).get(name); 41 if (get(cr).get(name) instanceof Integer) { 42 return (Integer) get(cr).get(name); 50 get(cr).put(name, value) 112 private static Map<String, Object> get(ContentResolver cr) { method in class:ShadowSettings.SettingsImpl [all...] |
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
AsyncTaskTest.java | 39 assertEquals("Result should get stored in the AsyncTask", "c", asyncTask.get(100, TimeUnit.MILLISECONDS)); 71 assertEquals("Result should get stored in the AsyncTask", "c", asyncTask.get(100, TimeUnit.MILLISECONDS)); 96 assertEquals("Result should get stored in the AsyncTask", "done", asyncTask.get(100, TimeUnit.MILLISECONDS)); 110 assertThat(asyncTask.execute("a", "b").get(), equalTo("c")); method
|
SparseArrayTest.java | 59 assertEquals(new Integer(i), sparseArray.get(KEYS[i])); 70 assertEquals(oldValue, sparseArray.get(existKey)); 73 assertEquals(newValue, sparseArray.get(existKey)); 77 sparseArray.get(NON_EXISTED_KEY, VALUE_FOR_NON_EXISTED_KEY)); 78 assertNull(sparseArray.get(NON_EXISTED_KEY)); // the default value is null 93 assertEquals(VALUES[1], sparseArray.get(KEYS[1])); 97 sparseArray.get(KEYS[1], VALUE_FOR_NON_EXISTED_KEY)); 101 assertEquals(VALUES[2], sparseArray.get(KEYS[2])); 105 sparseArray.get(KEYS[2], VALUE_FOR_NON_EXISTED_KEY)); 125 assertEquals(VALUES[i], sparseArray.get(KEYS[i])) [all...] |
/external/skia/include/core/ |
SkTInternalLList.h | 199 T* get() { return fCurr; } function in class:SkTInternalLList::Iter
|
/external/skia/tests/ |
UtilsTest.cpp | 21 int get() const { return fN; } function in class:RefClass 34 REPORTER_ASSERT(reporter, &obj == tmp.get()); 40 REPORTER_ASSERT(reporter, NULL == tmp.get());
|