/external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/structurals/ |
D | ExecutionVisitor.java | 125 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 …]
|
D | InstConstraintVisitor.java | 151 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/ |
D | AnnotatedSubscriberFinderTests.java | 70 public void notASubscriber(Object o) { in notASubscriber() 75 public void subscriber(Object o) { in subscriber() 98 public abstract void overriddenAndAnnotatedInSubclass(Object o); in overriddenAndAnnotatedInSubclass() 101 public abstract void overriddenInSubclass(Object o); in overriddenInSubclass() 110 public void overriddenAndAnnotatedInSubclass(Object o) { in overriddenAndAnnotatedInSubclass() 115 public void overriddenInSubclass(Object o) { in overriddenInSubclass() 145 public void notOverriddenInSubclass(Object o) { in notOverriddenInSubclass() 150 public void overriddenNotAnnotatedInSubclass(Object o) { in overriddenNotAnnotatedInSubclass() 155 public void overriddenAndAnnotatedInSubclass(Object o) { in overriddenAndAnnotatedInSubclass() 160 public void differentlyOverriddenNotAnnotatedInSubclass(Object o) { in differentlyOverriddenNotAnnotatedInSubclass() [all …]
|
/external/guava/android/guava-tests/test/com/google/common/eventbus/outside/ |
D | AnnotatedSubscriberFinderTests.java | 70 public void notASubscriber(Object o) { in notASubscriber() 75 public void subscriber(Object o) { in subscriber() 98 public abstract void overriddenAndAnnotatedInSubclass(Object o); in overriddenAndAnnotatedInSubclass() 101 public abstract void overriddenInSubclass(Object o); in overriddenInSubclass() 110 public void overriddenAndAnnotatedInSubclass(Object o) { in overriddenAndAnnotatedInSubclass() 115 public void overriddenInSubclass(Object o) { in overriddenInSubclass() 145 public void notOverriddenInSubclass(Object o) { in notOverriddenInSubclass() 150 public void overriddenNotAnnotatedInSubclass(Object o) { in overriddenNotAnnotatedInSubclass() 155 public void overriddenAndAnnotatedInSubclass(Object o) { in overriddenAndAnnotatedInSubclass() 160 public void differentlyOverriddenNotAnnotatedInSubclass(Object o) { in differentlyOverriddenNotAnnotatedInSubclass() [all …]
|
/external/flatbuffers/tests/MyGame/Example/ |
D | Monster.java | 22 …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 …]
|
D | TypeAliases.java | 17 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/tensorflow/tensorflow/python/util/ |
D | util_wrapper.cc | 35 [](const py::handle& o) { in PYBIND11_MODULE() 47 [](const py::handle& o) { in PYBIND11_MODULE() 63 [](const py::handle& o) { in PYBIND11_MODULE() 82 [](const py::handle& o) { in PYBIND11_MODULE() 100 [](const py::handle& o) { in PYBIND11_MODULE() 118 [](const py::handle& o, bool strict) { in PYBIND11_MODULE() 127 [](const py::handle& o) { in PYBIND11_MODULE() 145 [](const py::handle& o) { in PYBIND11_MODULE() 163 [](const py::handle& o) { in PYBIND11_MODULE() 204 [](const py::handle& o, bool expand_composites) { in PYBIND11_MODULE() [all …]
|
D | util.cc | 81 bool IsString(PyObject* o) { in IsString() 93 StringPiece GetClassName(PyObject* o) { in GetClassName() 111 string PyObjectToString(PyObject* o) { in PyObjectToString() 146 int CachedLookup(PyObject* o) { in CachedLookup() 216 int IsMappingHelper(PyObject* o) { in IsMappingHelper() 227 int IsMappingViewHelper(PyObject* o) { in IsMappingViewHelper() 237 int IsObjectProxy(PyObject* o) { in IsObjectProxy() 246 int IsAttrsHelper(PyObject* o) { in IsAttrsHelper() 263 int IsIndexedSlicesHelper(PyObject* o) { in IsIndexedSlicesHelper() 273 int IsTensorHelper(PyObject* o) { in IsTensorHelper() [all …]
|
/external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/statics/ |
D | Pass3aVerifier.java | 520 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/ |
D | ObjenesisTest.java | 36 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/ |
D | MonsterExtra.java | 17 …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/ |
D | antlr.js | 81 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/ |
D | lobject.h | 123 #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/mesa3d/src/gallium/drivers/nouveau/nvc0/ |
D | drf.h | 36 #define DRF_MW_SPANS(o,drf) (DRF_LW_IDX((o),drf) != DRF_HW_IDX((o),drf)) argument 37 #define DRF_MW_SIZE(o) (sizeof((o)[0]) * 8) argument 39 #define DRF_LW_IDX(o,drf) (DRF_LO(DRF_MW(drf)) / DRF_MW_SIZE(o)) argument 40 #define DRF_LW_LO(o,drf) (DRF_LO(DRF_MW(drf)) % DRF_MW_SIZE(o)) argument 41 #define DRF_LW_HI(o,drf) (DRF_MW_SPANS((o),drf) ? (DRF_MW_SIZE(o) - 1) : DRF_HW_HI((o),drf)) argument 42 #define DRF_LW_BITS(o,drf) (DRF_LW_HI((o),drf) - DRF_LW_LO((o),drf) + 1) argument 43 #define DRF_LW_MASK(o,drf) (~0ULL >> (64 - DRF_LW_BITS((o),drf))) argument 44 #define DRF_LW_SMASK(o,drf) (DRF_LW_MASK((o),drf) << DRF_LW_LO((o),drf)) argument 45 #define DRF_LW_GET(o,drf) (((o)[DRF_LW_IDX((o),drf)] >> DRF_LW_LO((o),drf)) & DRF_LW_MASK((o),drf… argument 46 #define DRF_LW_VAL(o,drf,v) (((v) & DRF_LW_MASK((o),drf)) << DRF_LW_LO((o),drf)) argument [all …]
|
/external/protobuf/java/core/src/stubs/sun/misc/ |
D | Unsafe.java | 42 public boolean getBoolean(Object o, long offset) { /* null implementation */ return false; } in getBoolean() 44 public byte getByte(Object o, long offset) { /* null implementation */ return 0; } in getByte() 46 public float getFloat(Object o, long offset) { /* null implementation */ return 0; } in getFloat() 47 public double getDouble(Object o, long offset) { /* null implementation */ return 0; } in getDouble() 48 public int getInt(Object o, long offset) { /* null implementation */ return 0; } in getInt() 50 public long getLong(Object o, long offset) { /* null implementation */ return 0; } in getLong() 52 public Object getObject(Object o, long offset) { /* null implementation */ return null; } in getObject() 54 public void putBoolean(Object o, long offset, boolean x) { /* null implementation */ } in putBoolean() 56 public void putByte(Object o, long offset, byte x) { /* null implementation */ } in putByte() 58 public void putFloat(Object o, long offset, float x) { /* null implementation */ } in putFloat() [all …]
|
/external/python/cpython2/Objects/ |
D | capsule.c | 68 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/ |
D | capsule.c | 68 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 …]
|
D | genobject.c | 846 gen_is_coroutine(PyObject *o) in gen_is_coroutine() 866 _PyCoro_GetAwaitableIter(PyObject *o) in _PyCoro_GetAwaitableIter() 1233 #define _PyAsyncGenWrappedValue_CheckExact(o) \ argument 1236 #define PyAsyncGenASend_CheckExact(o) \ argument 1249 async_gen_repr(PyAsyncGenObject *o) in async_gen_repr() 1257 async_gen_init_hooks(PyAsyncGenObject *o) in async_gen_init_hooks() 1295 async_gen_anext(PyAsyncGenObject *o) in async_gen_anext() 1305 async_gen_asend(PyAsyncGenObject *o, PyObject *arg) in async_gen_asend() 1315 async_gen_aclose(PyAsyncGenObject *o, PyObject *arg) in async_gen_aclose() 1324 async_gen_athrow(PyAsyncGenObject *o, PyObject *args) in async_gen_athrow() [all …]
|
/external/mockito/src/test/java/org/mockito/internal/hamcrest/ |
D | MatcherGenericTypeExtractorTest.java | 23 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/ |
D | buffer_share.c | 74 struct id_offset *o; in buffer_share_add_id() local 95 struct id_offset *o; in buffer_share_rm_id() local 128 struct id_offset *o = &mix->wr_idx[i]; in buffer_share_get_new_write_point() local 136 struct id_offset *o = &mix->wr_idx[i]; in buffer_share_get_new_write_point() local 150 struct id_offset *o; in get_id_offset() local 163 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/ |
D | BaseDexReader.java | 310 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/ |
D | MetadataItem.java | 51 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/tensorflow/tensorflow/python/distribute/ |
D | values.py | 156 def __add__(self, o): argument 159 def __radd__(self, o): argument 162 def __sub__(self, o): argument 165 def __rsub__(self, o): argument 168 def __mul__(self, o): argument 171 def __rmul__(self, o): argument 174 def __truediv__(self, o): argument 177 def __rtruediv__(self, o): argument 180 def __floordiv__(self, o): argument 183 def __rfloordiv__(self, o): argument [all …]
|
/external/clang/include/clang/Basic/ |
D | PlistSupport.h | 39 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/tensorflow/tensorflow/python/keras/mixed_precision/experimental/ |
D | autocast_variable.py | 322 def __add__(self, o): argument 325 def __radd__(self, o): argument 328 def __sub__(self, o): argument 331 def __rsub__(self, o): argument 334 def __mul__(self, o): argument 337 def __rmul__(self, o): argument 340 def __truediv__(self, o): argument 343 def __rtruediv__(self, o): argument 346 def __floordiv__(self, o): argument 349 def __rfloordiv__(self, o): argument [all …]
|