Home
last modified time | relevance | path

Searched defs:o (Results 1 – 25 of 1950) sorted by relevance

12345678910>>...78

/external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/structurals/
DExecutionVisitor.java125 public void visitAALOAD(final AALOAD o) { in visitAALOAD()
139 public void visitAASTORE(final AASTORE o) { in visitAASTORE()
146 public void visitACONST_NULL(final ACONST_NULL o) { in visitACONST_NULL()
151 public void visitALOAD(final ALOAD o) { in visitALOAD()
156 public void visitANEWARRAY(final ANEWARRAY o) { in visitANEWARRAY()
162 public void visitARETURN(final ARETURN o) { in visitARETURN()
167 public void visitARRAYLENGTH(final ARRAYLENGTH o) { in visitARRAYLENGTH()
174 public void visitASTORE(final ASTORE o) { in visitASTORE()
181 public void visitATHROW(final ATHROW o) { in visitATHROW()
193 public void visitBALOAD(final BALOAD o) { in visitBALOAD()
[all …]
DInstConstraintVisitor.java151 private void indexOfInt(final Instruction o, final Type index) { in indexOfInt()
163 private void referenceTypeIsInitialized(final Instruction o, final ReferenceType r) { in referenceTypeIsInitialized()
170 private void valueOfInt(final Instruction o, final Type value) { in valueOfInt()
181 private boolean arrayrefOfArrayType(final Instruction o, final Type arrayref) { in arrayrefOfArrayType()
206 private void _visitStackAccessor(final Instruction o) { in _visitStackAccessor()
231 public void visitLoadClass(final LoadClass o) { in visitLoadClass()
247 public void visitStackConsumer(final StackConsumer o) { in visitStackConsumer()
255 public void visitStackProducer(final StackProducer o) { in visitStackProducer()
269 public void visitCPInstruction(final CPInstruction o) { in visitCPInstruction()
281 public void visitFieldInstruction(final FieldInstruction o) { in visitFieldInstruction()
[all …]
/external/guava/guava-tests/test/com/google/common/eventbus/outside/
DAnnotatedSubscriberFinderTests.java71 public void notASubscriber(Object o) { in notASubscriber()
76 public void subscriber(Object o) { in subscriber()
99 public abstract void overriddenAndAnnotatedInSubclass(Object o); in overriddenAndAnnotatedInSubclass()
102 public abstract void overriddenInSubclass(Object o); in overriddenInSubclass()
111 public void overriddenAndAnnotatedInSubclass(Object o) { in overriddenAndAnnotatedInSubclass()
116 public void overriddenInSubclass(Object o) { in overriddenInSubclass()
146 public void notOverriddenInSubclass(Object o) { in notOverriddenInSubclass()
151 public void overriddenNotAnnotatedInSubclass(Object o) { in overriddenNotAnnotatedInSubclass()
156 public void overriddenAndAnnotatedInSubclass(Object o) { in overriddenAndAnnotatedInSubclass()
161 public void differentlyOverriddenNotAnnotatedInSubclass(Object o) { in differentlyOverriddenNotAnnotatedInSubclass()
[all …]
/external/flatbuffers/tests/MyGame/Example/
DMonster.java22 …public Vec3 pos(Vec3 obj) { int o = __offset(4); return o != 0 ? obj.__assign(o + bb_pos, bb) : nu… in pos() local
23 public short mana() { int o = __offset(6); return o != 0 ? bb.getShort(o + bb_pos) : 150; } in mana() local
24 …public boolean mutateMana(short mana) { int o = __offset(6); if (o != 0) { bb.putShort(o + bb_pos,… in mutateMana() local
25 public short hp() { int o = __offset(8); return o != 0 ? bb.getShort(o + bb_pos) : 100; } in hp() local
26 …public boolean mutateHp(short hp) { int o = __offset(8); if (o != 0) { bb.putShort(o + bb_pos, hp)… in mutateHp() local
27 public String name() { int o = __offset(10); return o != 0 ? __string(o + bb_pos) : null; } in name() local
30 …public int inventory(int j) { int o = __offset(14); return o != 0 ? bb.get(__vector(o) + j * 1) & … in inventory() local
31 public int inventoryLength() { int o = __offset(14); return o != 0 ? __vector_len(o) : 0; } in inventoryLength() local
34 …public boolean mutateInventory(int j, int inventory) { int o = __offset(14); if (o != 0) { bb.put(… in mutateInventory() local
35 public byte color() { int o = __offset(16); return o != 0 ? bb.get(o + bb_pos) : 8; } in color() local
[all …]
DTypeAliases.java17 public byte i8() { int o = __offset(4); return o != 0 ? bb.get(o + bb_pos) : 0; } in i8() local
18 …public boolean mutateI8(byte i8) { int o = __offset(4); if (o != 0) { bb.put(o + bb_pos, i8); retu… in mutateI8() local
19 public int u8() { int o = __offset(6); return o != 0 ? bb.get(o + bb_pos) & 0xFF : 0; } in u8() local
20 …public boolean mutateU8(int u8) { int o = __offset(6); if (o != 0) { bb.put(o + bb_pos, (byte)u8);… in mutateU8() local
21 public short i16() { int o = __offset(8); return o != 0 ? bb.getShort(o + bb_pos) : 0; } in i16() local
22 …public boolean mutateI16(short i16) { int o = __offset(8); if (o != 0) { bb.putShort(o + bb_pos, i… in mutateI16() local
23 public int u16() { int o = __offset(10); return o != 0 ? bb.getShort(o + bb_pos) & 0xFFFF : 0; } in u16() local
24 …public boolean mutateU16(int u16) { int o = __offset(10); if (o != 0) { bb.putShort(o + bb_pos, (s… in mutateU16() local
25 public int i32() { int o = __offset(12); return o != 0 ? bb.getInt(o + bb_pos) : 0; } in i32() local
26 …public boolean mutateI32(int i32) { int o = __offset(12); if (o != 0) { bb.putInt(o + bb_pos, i32)… in mutateI32() local
[all …]
/external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/statics/
DPass3aVerifier.java520 public void visitLoadClass(final LoadClass o) { in visitLoadClass()
542 public void visitLDC(final LDC o) { in visitLDC()
561 public void visitLDC2_W(final LDC2_W o) { in visitLDC2_W()
576 private ObjectType getObjectType(final FieldInstruction o) { in getObjectType()
588 public void visitFieldInstruction(final FieldInstruction o) { in visitFieldInstruction()
662 public void visitInvokeInstruction(final InvokeInstruction o) { in visitInvokeInstruction()
741 public void visitINSTANCEOF(final INSTANCEOF o) { in visitINSTANCEOF()
751 public void visitCHECKCAST(final CHECKCAST o) { in visitCHECKCAST()
761 public void visitNEW(final NEW o) { in visitNEW()
779 public void visitMULTIANEWARRAY(final MULTIANEWARRAY o) { in visitMULTIANEWARRAY()
[all …]
/external/objenesis/main/src/test/java/org/objenesis/
DObjenesisTest.java36 Objenesis o = new ObjenesisStd(); in testObjenesis() local
44 Objenesis o = new ObjenesisStd(false); in testObjenesis_WithoutCache() local
54 Objenesis o = new ObjenesisStd(); in testNewInstance() local
60 Objenesis o = new ObjenesisStd(); in testGetInstantiatorOf() local
72 Objenesis o = new ObjenesisStd(); in testGetInstantiatorOf_primitive() local
79 Objenesis o = new ObjenesisStd() {}; in testToString() local
/external/flatbuffers/tests/MyGame/
DMonsterExtra.java17 …public float testfNan() { int o = __offset(4); return o != 0 ? bb.getFloat(o + bb_pos) : Float.NaN… in testfNan() local
18 …public boolean mutateTestfNan(float testf_nan) { int o = __offset(4); if (o != 0) { bb.putFloat(o … in mutateTestfNan() local
19 …public float testfPinf() { int o = __offset(6); return o != 0 ? bb.getFloat(o + bb_pos) : Float.PO… in testfPinf() local
20 …public boolean mutateTestfPinf(float testf_pinf) { int o = __offset(6); if (o != 0) { bb.putFloat(… in mutateTestfPinf() local
21 …public float testfNinf() { int o = __offset(8); return o != 0 ? bb.getFloat(o + bb_pos) : Float.NE… in testfNinf() local
22 …public boolean mutateTestfNinf(float testf_ninf) { int o = __offset(8); if (o != 0) { bb.putFloat(… in mutateTestfNinf() local
23 …public double testdNan() { int o = __offset(10); return o != 0 ? bb.getDouble(o + bb_pos) : Double… in testdNan() local
24 …public boolean mutateTestdNan(double testd_nan) { int o = __offset(10); if (o != 0) { bb.putDouble… in mutateTestdNan() local
25 …public double testdPinf() { int o = __offset(12); return o != 0 ? bb.getDouble(o + bb_pos) : Doubl… in testdPinf() local
26 …public boolean mutateTestdPinf(double testd_pinf) { int o = __offset(12); if (o != 0) { bb.putDoub… in mutateTestdPinf() local
[all …]
/external/antlr/runtime/JavaScript/src/org/
Dantlr.js81 var o= /** @lends org.antlr.env.ua */ { variable
266 isArray: function(o) { argument
279 isBoolean: function(o) { argument
288 isFunction: function(o) { argument
297 isNull: function(o) { argument
306 isNumber: function(o) { argument
316 isObject: function(o) { argument
325 isString: function(o) { argument
334 isUndefined: function(o) { argument
480 isValue: function(o) { argument
/external/lua/src/
Dlobject.h123 #define val_(o) ((o)->value_) argument
127 #define rttype(o) ((o)->tt_) argument
133 #define ttype(o) (rttype(o) & 0x3F) argument
136 #define ttnov(o) (novariant(rttype(o))) argument
140 #define checktag(o,t) (rttype(o) == (t)) argument
141 #define checktype(o,t) (ttnov(o) == (t)) argument
142 #define ttisnumber(o) checktype((o), LUA_TNUMBER) argument
143 #define ttisfloat(o) checktag((o), LUA_TNUMFLT) argument
144 #define ttisinteger(o) checktag((o), LUA_TNUMINT) argument
145 #define ttisnil(o) checktag((o), LUA_TNIL) argument
[all …]
/external/python/cpython2/Objects/
Dcapsule.c68 PyCapsule_IsValid(PyObject *o, const char *name) in PyCapsule_IsValid()
80 PyCapsule_GetPointer(PyObject *o, const char *name) in PyCapsule_GetPointer()
98 PyCapsule_GetName(PyObject *o) in PyCapsule_GetName()
110 PyCapsule_GetDestructor(PyObject *o) in PyCapsule_GetDestructor()
122 PyCapsule_GetContext(PyObject *o) in PyCapsule_GetContext()
134 PyCapsule_SetPointer(PyObject *o, void *pointer) in PyCapsule_SetPointer()
153 PyCapsule_SetName(PyObject *o, const char *name) in PyCapsule_SetName()
167 PyCapsule_SetDestructor(PyObject *o, PyCapsule_Destructor destructor) in PyCapsule_SetDestructor()
181 PyCapsule_SetContext(PyObject *o, void *context) in PyCapsule_SetContext()
257 capsule_dealloc(PyObject *o) in capsule_dealloc()
[all …]
/external/python/cpython3/Objects/
Dcapsule.c68 PyCapsule_IsValid(PyObject *o, const char *name) in PyCapsule_IsValid()
80 PyCapsule_GetPointer(PyObject *o, const char *name) in PyCapsule_GetPointer()
98 PyCapsule_GetName(PyObject *o) in PyCapsule_GetName()
110 PyCapsule_GetDestructor(PyObject *o) in PyCapsule_GetDestructor()
122 PyCapsule_GetContext(PyObject *o) in PyCapsule_GetContext()
134 PyCapsule_SetPointer(PyObject *o, void *pointer) in PyCapsule_SetPointer()
153 PyCapsule_SetName(PyObject *o, const char *name) in PyCapsule_SetName()
167 PyCapsule_SetDestructor(PyObject *o, PyCapsule_Destructor destructor) in PyCapsule_SetDestructor()
181 PyCapsule_SetContext(PyObject *o, void *context) in PyCapsule_SetContext()
257 capsule_dealloc(PyObject *o) in capsule_dealloc()
[all …]
Dgenobject.c848 gen_is_coroutine(PyObject *o) in gen_is_coroutine()
868 _PyCoro_GetAwaitableIter(PyObject *o) in _PyCoro_GetAwaitableIter()
1236 #define _PyAsyncGenWrappedValue_CheckExact(o) \ argument
1239 #define PyAsyncGenASend_CheckExact(o) \ argument
1252 async_gen_repr(PyAsyncGenObject *o) in async_gen_repr()
1260 async_gen_init_hooks(PyAsyncGenObject *o) in async_gen_init_hooks()
1298 async_gen_anext(PyAsyncGenObject *o) in async_gen_anext()
1308 async_gen_asend(PyAsyncGenObject *o, PyObject *arg) in async_gen_asend()
1318 async_gen_aclose(PyAsyncGenObject *o, PyObject *arg) in async_gen_aclose()
1327 async_gen_athrow(PyAsyncGenObject *o, PyObject *args) in async_gen_athrow()
[all …]
/external/tensorflow/tensorflow/python/distribute/
Dvalues.py320 def __add__(self, o): return self.get() + o argument
321 def __radd__(self, o): return o + self.get() argument
322 def __sub__(self, o): return self.get() - o argument
323 def __rsub__(self, o): return o - self.get() argument
324 def __mul__(self, o): return self.get() * o argument
325 def __rmul__(self, o): return o * self.get() argument
326 def __truediv__(self, o): return self.get() / o argument
327 def __rtruediv__(self, o): return o / self.get() argument
329 def __floordiv__(self, o): argument
332 def __rfloordiv__(self, o): return o // self.get() argument
[all …]
/external/tensorflow/tensorflow/compiler/xla/python/
Dxla_data.i178 PyObject* o = PySequence_GetItem($input, i); variable
239 PyObject* o = PySequence_GetItem($input, i); variable
328 PyObject* o = PySequence_GetItem($input, i); variable
348 PyObject* o = PySequence_GetItem($input, i); variable
397 PyObject* o = PySequence_GetItem($input, i); variable
643 PyObject* o = PySequence_GetItem($input, i); variable
Dnumpy_bridge.cc169 static int NumpyTypenum(PyObject* o) { in NumpyTypenum()
197 static string PyObjectCppStr(PyObject* o) { in PyObjectCppStr()
202 string PyObjectCppRepr(PyObject* o) { in PyObjectCppRepr()
207 StatusOr<Shape> XlaShapeFromPyShape(PyObject* o) { in XlaShapeFromPyShape()
307 static absl::optional<string> GetAttrAsString(PyObject* o, in GetAttrAsString()
324 static absl::optional<int32> GetAttrAsInt32(PyObject* o, in GetAttrAsInt32()
349 StatusOr<OpMetadata> OpMetadataFromPyObject(PyObject* o) { in OpMetadataFromPyObject()
398 StatusOr<Literal> XlaLiteralFromPyObject(PyObject* o) { in XlaLiteralFromPyObject()
539 long PyIntOrPyLongToLong(PyObject* o) { // NOLINT in PyIntOrPyLongToLong()
547 bool CheckPyIntOrLong(PyObject* o) { in CheckPyIntOrLong()
[all …]
/external/mockito/src/test/java/org/mockito/internal/hamcrest/
DMatcherGenericTypeExtractorTest.java23 public boolean matches(Object o) { in matches()
31 public boolean matches(Object o) { in matches()
39 public boolean matches(Object o) { in matches()
48 public boolean matches(Object o) { in matches()
56 public boolean matches(Object o) { in matches()
65 public boolean matches(Object o) { in matches()
75 public boolean matches(Object o) { in matches()
86 public boolean matches(Object o) { in matches()
/external/adhd/cras/src/server/
Dbuffer_share.c73 struct id_offset *o; in buffer_share_add_id() local
94 struct id_offset *o; in buffer_share_rm_id() local
127 struct id_offset *o = &mix->wr_idx[i]; in buffer_share_get_new_write_point() local
135 struct id_offset *o = &mix->wr_idx[i]; in buffer_share_get_new_write_point() local
149 struct id_offset *o; in get_id_offset() local
162 struct id_offset *o = get_id_offset(mix, id); in buffer_share_id_offset() local
169 struct id_offset *o = get_id_offset(mix, id); in buffer_share_get_data() local
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
DBaseDexReader.java310 int o = offset; in readSmallUint() local
317 int o = offset; in readOptionalUint() local
328 int o = offset; in readUshort() local
339 int o = offset; in readUbyte() local
346 int o = offset; in readLong() local
353 int o = offset; in readInt() local
360 int o = offset; in readShort() local
367 int o = offset; in readByte() local
385 int o = dexBuf.baseOffset + offset; in readSizedInt() local
416 int o = dexBuf.baseOffset + offset; in readSizedSmallUint() local
[all …]
/external/noto-fonts/emoji-compat/src/java/androidx/text/emoji/flatbuffer/
DMetadataItem.java51 int o = __offset(4); in id() local
56 int o = __offset(6); in emojiStyle() local
61 int o = __offset(8); in sdkAdded() local
66 int o = __offset(10); in compatAdded() local
71 int o = __offset(12); in width() local
76 int o = __offset(14); in height() local
81 int o = __offset(16); in codepoints() local
86 int o = __offset(16); in codepointsLength() local
156 int o = builder.endObject(); in endMetadataItem() local
/external/clang/include/clang/Basic/
DPlistSupport.h39 inline raw_ostream &Indent(raw_ostream &o, const unsigned indent) { in Indent()
45 inline raw_ostream &EmitPlistHeader(raw_ostream &o) { in EmitPlistHeader()
54 inline raw_ostream &EmitInteger(raw_ostream &o, int64_t value) { in EmitInteger()
61 inline raw_ostream &EmitString(raw_ostream &o, StringRef s) { in EmitString()
90 inline void EmitLocation(raw_ostream &o, const SourceManager &SM, in EmitLocation()
106 inline void EmitRange(raw_ostream &o, const SourceManager &SM, in EmitRange()
/external/python/cpython3/Include/
Dcontext.h20 #define PyContext_CheckExact(o) (Py_TYPE(o) == &PyContext_Type) argument
21 #define PyContextVar_CheckExact(o) (Py_TYPE(o) == &PyContextVar_Type) argument
22 #define PyContextToken_CheckExact(o) (Py_TYPE(o) == &PyContextToken_Type) argument
/external/libchrome/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
DBindingsHelper.java138 public static int hashCode(Object o) { in hashCode()
148 public static int hashCode(boolean o) { in hashCode()
155 public static int hashCode(long o) { in hashCode()
162 public static int hashCode(float o) { in hashCode()
169 public static int hashCode(double o) { in hashCode()
176 public static int hashCode(int o) { in hashCode()
/external/tensorflow/tensorflow/examples/android/jni/
Dimageutils_jni.cc69 jint* const o = env->GetIntArrayElements(output, &outputCopy); in IMAGEUTILS_METHOD() local
92 jint* const o = env->GetIntArrayElements(output, &outputCopy); in IMAGEUTILS_METHOD() local
122 jbyte* const o = env->GetByteArrayElements(output, &outputCopy); in IMAGEUTILS_METHOD() local
139 jbyte* const o = env->GetByteArrayElements(output, &outputCopy); in IMAGEUTILS_METHOD() local
156 jbyte* const o = env->GetByteArrayElements(output, &outputCopy); in IMAGEUTILS_METHOD() local
/external/libchrome/base/
Dbind_internal.h68 explicit UnretainedWrapper(T* o) : ptr_(o) {} in UnretainedWrapper()
78 explicit ConstRefWrapper(const T& o) : ptr_(&o) {} in ConstRefWrapper()
88 explicit RetainedRefWrapper(T* o) : ptr_(o) {} in RetainedRefWrapper()
89 explicit RetainedRefWrapper(scoped_refptr<T> o) : ptr_(std::move(o)) {} in RetainedRefWrapper()
114 explicit OwnedWrapper(T* o) : ptr_(o) {} in OwnedWrapper()

12345678910>>...78