/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/ |
D | InterfaceTypeImpl.java | 37 implements InterfaceType { 40 final private JDWP.InterfaceType.InvokeMethod rslt; 42 public IResult(JDWP.InterfaceType.InvokeMethod rslt) { in IResult() 58 private SoftReference<List<InterfaceType>> superinterfacesRef = null; 64 public List<InterfaceType> superinterfaces() { in superinterfaces() 65 List<InterfaceType> superinterfaces = (superinterfacesRef == null) ? null : in superinterfaces() 70 superinterfacesRef = new SoftReference<List<InterfaceType>>(superinterfaces); in superinterfaces() 75 public List<InterfaceType> subinterfaces() { in subinterfaces() 76 List<InterfaceType> subs = new ArrayList<InterfaceType>(); in subinterfaces() 78 if (refType instanceof InterfaceType) { in subinterfaces() [all …]
|
D | InvokableTypeImpl.java | 31 import com.sun.jdi.InterfaceType; 143 List<InterfaceType> interfaces = interfaces(); in isAssignableTo() 144 Iterator<InterfaceType> iter = interfaces.iterator(); in isAssignableTo() 156 final void addVisibleMethods(Map<String, Method> methodMap, Set<InterfaceType> seenInterfaces) { in addVisibleMethods() 162 Iterator<InterfaceType> iter = interfaces().iterator(); in addVisibleMethods() 177 final void addInterfaces(List<InterfaceType> list) { in addInterfaces() 178 List<InterfaceType> immediate = interfaces(); in addInterfaces() 180 Iterator<InterfaceType> iter = immediate.iterator(); in addInterfaces() 195 final List<InterfaceType> getAllInterfaces() { in getAllInterfaces() 196 List<InterfaceType> all = new ArrayList<>(); in getAllInterfaces() [all …]
|
D | ClassTypeImpl.java | 56 private List<InterfaceType> interfaces = null; 87 public List<InterfaceType> interfaces() { in interfaces() 95 public List<InterfaceType> allInterfaces() { in allInterfaces()
|
D | ArrayTypeImpl.java | 66 void addVisibleMethods(Map<String, Method> map, Set<InterfaceType> seenInterfaces) { in addVisibleMethods() 143 } else if (destType instanceof InterfaceType) { in isAssignableTo()
|
D | ObjectReferenceImpl.java | 394 if (referenceType() instanceof InterfaceType) { in invokeMethod() 395 InterfaceType type = (InterfaceType)referenceType(); in invokeMethod()
|
D | ReferenceTypeImpl.java | 514 … abstract void addVisibleMethods(Map<String, Method> methodMap, Set<InterfaceType> seenInterfaces); in addVisibleMethods() 523 addVisibleMethods(map, new HashSet<InterfaceType>()); in visibleMethods() 563 List<InterfaceType> getInterfaces() { in getInterfaces() 571 return Arrays.asList((InterfaceType[])intfs); in getInterfaces()
|
D | MethodImpl.java | 194 declaringType() instanceof InterfaceType; in isDefault()
|
D | PacketStream.java | 184 } else if (refType instanceof InterfaceType) { in writeLocation()
|
/external/libchrome/mojo/public/cpp/bindings/ |
D | thread_safe_interface_ptr.h | 263 using InterfaceType = typename InterfacePtrType::InterfaceType; 267 std::unique_ptr<ThreadSafeForwarder<InterfaceType>> forwarder) in ThreadSafeInterfacePtrBase() 293 InterfaceType* get() { return &forwarder_->proxy(); } in get() 294 InterfaceType* operator->() { return get(); } 295 InterfaceType& operator*() { return *get(); } 319 void BindOnTaskRunner(AssociatedInterfacePtrInfo<InterfaceType> ptr_info) { in BindOnTaskRunner() 325 void BindOnTaskRunner(InterfacePtrInfo<InterfaceType> ptr_info) { in BindOnTaskRunner() 337 std::unique_ptr<ThreadSafeForwarder<InterfaceType>> CreateForwarder() { in CreateForwarder() 338 return std::make_unique<ThreadSafeForwarder<InterfaceType>>( in CreateForwarder() 391 const std::unique_ptr<ThreadSafeForwarder<InterfaceType>> forwarder_;
|
D | interface_ptr.h | 42 using InterfaceType = Interface;
|
D | associated_interface_ptr.h | 33 using InterfaceType = Interface;
|
/external/google-breakpad/src/common/windows/ |
D | dia_util.h | 55 template<typename InterfaceType> 56 bool FindTable(IDiaSession* session, InterfaceType** table) { in FindTable() 57 return FindTable(__uuidof(InterfaceType), in FindTable()
|
/external/oj-libjdwp/src/share/classes/com/sun/jdi/ |
D | InterfaceType.java | 47 public interface InterfaceType extends ReferenceType { interface 59 List<InterfaceType> superinterfaces(); in superinterfaces() 70 List<InterfaceType> subinterfaces(); in subinterfaces()
|
D | ClassType.java | 66 List<InterfaceType> interfaces(); in interfaces() 79 List<InterfaceType> allInterfaces(); in allInterfaces()
|
/external/pdfium/core/fxge/win32/ |
D | fx_win32_dwrite.cpp | 17 template <typename InterfaceType> 18 inline void SafeRelease(InterfaceType** currentObject) { in SafeRelease() 24 template <typename InterfaceType> 25 inline InterfaceType* SafeAcquire(InterfaceType* newObject) { in SafeAcquire()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/InterfaceType/ |
D | InvokeMethodTestInterface.java | 19 package org.apache.harmony.jpda.tests.jdwp.InterfaceType;
|
D | InvokeMethodDebuggee.java | 19 package org.apache.harmony.jpda.tests.jdwp.InterfaceType;
|
D | InvokeMethodTest.java | 19 package org.apache.harmony.jpda.tests.jdwp.InterfaceType;
|
/external/oj-libjdwp/src/share/back/ |
D | debugDispatch.c | 72 l1Array[JDWP_COMMAND_SET(InterfaceType)] = (void *)InterfaceType_Cmds; in debugDispatch_initialize()
|
D | util.c | 613 } else if (inStream_command(in) == JDWP_COMMAND(InterfaceType, InvokeMethod)) { in sharedInvoke()
|
/external/libchrome/mojo/public/cpp/bindings/tests/ |
D | sync_method_unittest.cc | 1193 using InterfaceType = typename TypeParam::Interface; in SEQUENCED_TASK_RUNNER_TYPED_TEST_F() typedef 1195 InterfacePtrInfo<InterfaceType>(std::move(pipe.handle0), 0u)); in SEQUENCED_TASK_RUNNER_TYPED_TEST_F() 1198 this->impl_ = std::make_unique<ImplTypeFor<InterfaceType>>( in SEQUENCED_TASK_RUNNER_TYPED_TEST_F() 1199 InterfaceRequest<InterfaceType>(std::move(pipe.handle1))); in SEQUENCED_TASK_RUNNER_TYPED_TEST_F()
|
/external/scapy/scapy/contrib/ |
D | gtp_v2.uts | 226 InterfaceType=10, GRE_Key=0x1092, ipv4='127.0.0.2') 227 ie.ietype == 87 and ie.ipv4_present == 1 and ie.InterfaceType == 10 and ie.GRE_Key == 0x1092 and ie…
|
/external/libchrome/mojo/public/tools/bindings/ |
D | README.md | 95 | *`InterfaceType`* | Any user-defined Mojom interface type. This is sugar for a strong… 96 | *`InterfaceType&`* | An interface request for any user-defined Mojom interface type. T… 97 | *`associated InterfaceType`* | An associated interface handle. See [Associated Interfaces](#Asso… 98 | *`associated InterfaceType&`* | An associated interface request. See [Associated Interfaces](#Ass…
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/share/ |
D | AllTests.java | 124 suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.InterfaceType.InvokeMethodTest.class); in suite()
|
/external/oj-libjdwp/make/data/jdwp/ |
D | jdwp.spec | 1253 (CommandSet InterfaceType=5
|