/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
ClassDefsSection.java | 177 TypeList interfaces = c.getInterfaces(); local 178 int sz = interfaces.size(); 180 idx = orderItems0(interfaces.getType(i), idx, maxDepth);
|
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/ |
AddDelegateTransformer.java | 50 public void begin_class(int version, int access, String className, Type superType, Type[] interfaces, String sourceFile) { 54 Type[] all = TypeUtils.add(interfaces, TypeUtils.getTypes(delegateIf)); 70 super.begin_class(version, access, className, superType, interfaces, sourceFile);
|
/external/mockito/src/org/mockito/internal/creation/jmock/ |
ClassImposterizer.java | 84 public Class<?> createProxyClass(Class<?> mockedType, Class<?>... interfaces) {
100 enhancer.setInterfaces(prepend(mockedType, interfaces));
103 enhancer.setInterfaces(interfaces);
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/ |
PoolClassDef.java | 46 @Nonnull final TypeListPool.Key<SortedSet<String>> interfaces; field in class:PoolClassDef 59 interfaces = new TypeListPool.Key<SortedSet<String>>(ImmutableSortedSet.copyOf(classDef.getInterfaces())); 81 return interfaces.types;
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
wsddisco.h | 18 #warning COM interfaces layout in this header has not been verified. 19 #warning COM interfaces with incorrect layout may not work at all. 48 #warning COM interfaces layout in this header has not been verified. 49 #warning COM interfaces with incorrect layout may not work at all. 78 #warning COM interfaces layout in this header has not been verified. 79 #warning COM interfaces with incorrect layout may not work at all. 126 #warning COM interfaces layout in this header has not been verified. 127 #warning COM interfaces with incorrect layout may not work at all. 160 #warning COM interfaces layout in this header has not been verified. 161 #warning COM interfaces with incorrect layout may not work at all [all...] |
mpeg2data.h | 39 #warning COM interfaces layout in this header has not been verified. 40 #warning COM interfaces with incorrect layout may not work at all. 79 #warning COM interfaces layout in this header has not been verified. 80 #warning COM interfaces with incorrect layout may not work at all. 111 #warning COM interfaces layout in this header has not been verified. 112 #warning COM interfaces with incorrect layout may not work at all.
|
adhoc.h | 75 #warning COM interfaces layout in this header has not been verified. 76 #warning COM interfaces with incorrect layout may not work at all. 119 #warning COM interfaces layout in this header has not been verified. 120 #warning COM interfaces with incorrect layout may not work at all. 155 #warning COM interfaces layout in this header has not been verified. 156 #warning COM interfaces with incorrect layout may not work at all. 189 #warning COM interfaces layout in this header has not been verified. 190 #warning COM interfaces with incorrect layout may not work at all. 239 #warning COM interfaces layout in this header has not been verified. 240 #warning COM interfaces with incorrect layout may not work at all [all...] |
functiondiscoveryapi.h | 43 #warning COM interfaces layout in this header has not been verified. 44 #warning COM interfaces with incorrect layout may not work at all. 103 #warning COM interfaces layout in this header has not been verified. 104 #warning COM interfaces with incorrect layout may not work at all. 143 #warning COM interfaces layout in this header has not been verified. 144 #warning COM interfaces with incorrect layout may not work at all. 175 #warning COM interfaces layout in this header has not been verified. 176 #warning COM interfaces with incorrect layout may not work at all.
|
dvbsiparser.h | 193 #warning COM interfaces layout in this header has not been verified. 194 #warning COM interfaces with incorrect layout may not work at all. 261 #warning COM interfaces layout in this header has not been verified. 262 #warning COM interfaces with incorrect layout may not work at all. 335 #warning COM interfaces layout in this header has not been verified. 336 #warning COM interfaces with incorrect layout may not work at all. 375 #warning COM interfaces layout in this header has not been verified. 376 #warning COM interfaces with incorrect layout may not work at all. 411 #warning COM interfaces layout in this header has not been verified. 412 #warning COM interfaces with incorrect layout may not work at all [all...] |
/system/core/adf/libadf/include/adf/ |
adf.h | 68 * Atomically posts a new display configuration to the specified interfaces. 74 adf_id_t *interfaces, size_t n_interfaces, 89 * Enumerates all interfaces belonging to an ADF device. 93 ssize_t adf_interfaces(struct adf_device *dev, adf_id_t **interfaces); 96 * Enumerates all interfaces which can be attached to the specified overlay 102 adf_id_t overlay_engine, adf_id_t **interfaces); 104 * Filters a list of interfaces by type. 106 * Returns the number of matching interfaces, and sets out to a list of matching 115 * Filters a list of interfaces by flag.
|
/development/tools/mkstubs/src/com/android/mkstubs/ |
FilterClassAdapter.java | 46 String superName, String[] interfaces) { 49 super.visit(version, access, name, signature, superName, interfaces);
|
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/ |
KeyPairGenerator4Test.java | 27 import java.security.interfaces.DSAPublicKey; 28 import java.security.interfaces.DSAParams;
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dh/ |
KeyFactorySpi.java | 11 import javax.crypto.interfaces.DHPrivateKey; 12 import javax.crypto.interfaces.DHPublicKey;
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/ |
BCRSAPrivateKey.java | 7 import java.security.interfaces.RSAPrivateKey; 19 import org.bouncycastle.jce.interfaces.PKCS12BagAttributeCarrier;
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/ |
JCERSAPrivateKey.java | 7 import java.security.interfaces.RSAPrivateKey; 19 import org.bouncycastle.jce.interfaces.PKCS12BagAttributeCarrier;
|
/external/chromium_org/chrome/browser/local_discovery/ |
service_discovery_host_client.cc | 27 net::InterfaceIndexFamilyList interfaces(net::GetMDnsInterfacesToBind()); 29 for (size_t i = 0; i < interfaces.size(); ++i) { 30 DCHECK(interfaces[i].second == net::ADDRESS_FAMILY_IPV4 || 31 interfaces[i].second == net::ADDRESS_FAMILY_IPV6); 34 net::ConvertAddressFamily(interfaces[i].second), SOCK_DGRAM, 38 << "Can't create socket, family=" << interfaces[i].second; 42 socket.interface_index = interfaces[i].first; 43 socket.address_family = interfaces[i].second;
|
/external/chromium_org/content/shell/renderer/test_runner/ |
MockWebMediaStreamCenter.cpp | 46 MockWebMediaStreamCenter::MockWebMediaStreamCenter(WebMediaStreamCenterClient* client, TestInterfaces* interfaces) 47 : m_interfaces(interfaces)
|
/external/javassist/src/main/javassist/bytecode/ |
ClassFileWriter.java | 120 * @param interfaces implemented interfaces. 128 int[] interfaces, AttributeWriter aw) { 133 if (interfaces == null) 136 int n = interfaces.length; 139 output.writeShort(interfaces[i]); 163 * @param interfaces implemented interfaces. 172 int[] interfaces, AttributeWriter aw) 180 if (interfaces == null [all...] |
/frameworks/wilhelm/tools/hashgen/ |
Makefile | 56 part5gen : part5gen.o OpenSLES_IID.o interfaces.o 57 gcc -o $@ $(CFLAGS) part5gen.o OpenSLES_IID.o interfaces.o
|
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/ |
KeyPairGenerator4Test.java | 25 import java.security.interfaces.DSAPublicKey; 26 import java.security.interfaces.DSAParams;
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/ |
ClassProto.java | 59 * A class "prototype". This contains things like the interfaces, the superclass, the vtable and the instance fields 106 * Returns the set of interfaces that this class implements as a Map<String, ClassDef>. 108 * The ClassDef value will be present only for the interfaces that this class directly implements (including any 109 * interfaces transitively implemented), but not for any interfaces that are only implemented by a superclass of 112 * For any interfaces that are only implemented by a superclass (or the class itself, if the class is an interface), 117 * @return the set of interfaces that this class implements as a Map<String, ClassDef>. 128 LinkedHashMap<String, ClassDef> interfaces = Maps.newLinkedHashMap(); 132 if (!interfaces.containsKey(interfaceType)) { 136 interfaces.put(interfaceType, interfaceDef) [all...] |
/external/chromium_org/third_party/webrtc/video_engine/test/auto_test/source/ |
vie_autotest_codec.cc | 139 TbInterfaces interfaces("ViECodecStandardTest"); 141 TbCaptureDevice capture_device = TbCaptureDevice(interfaces); 144 webrtc::VideoEngine* video_engine = interfaces.video_engine; 145 webrtc::ViEBase* base = interfaces.base; 146 webrtc::ViECapture* capture = interfaces.capture; 147 webrtc::ViERender* render = interfaces.render; 148 webrtc::ViECodec* codec = interfaces.codec; 149 webrtc::ViERTP_RTCP* rtp_rtcp = interfaces.rtp_rtcp; 150 webrtc::ViENetwork* network = interfaces.network; 298 TbInterfaces interfaces("ViECodecExtendedTest") [all...] |
/cts/tools/signature-tools/ |
sig-check | 79 java.security.interfaces \ 93 javax.crypto.interfaces \
|
sig-create | 76 java.security.interfaces \ 90 javax.crypto.interfaces \
|
/development/tools/rmtypedefs/src/com/android/tools/rmtypedefs/ |
RmTypeDefs.java | 289 String[] interfaces) { 291 mAnnotation = interfaces != null && interfaces.length >= 1 292 && ANNOTATION.equals(interfaces[0]);
|