HomeSort by relevance Sort by last modified time
    Searched refs:INTERFACE (Results 1 - 25 of 67) sorted by null

1 2 3

  /frameworks/native/include/binder/
IInterface.h 41 template<typename INTERFACE>
42 inline sp<INTERFACE> interface_cast(const sp<IBinder>& obj)
44 return INTERFACE::asInterface(obj);
49 template<typename INTERFACE>
50 class BnInterface : public INTERFACE, public BBinder
62 template<typename INTERFACE>
63 class BpInterface : public INTERFACE, public BpRefBase
74 #define DECLARE_META_INTERFACE(INTERFACE) \
76 static android::sp<I##INTERFACE> asInterface( \
79 I##INTERFACE(); \
    [all...]
IServiceManager.h 68 template<typename INTERFACE>
69 status_t getService(const String16& name, sp<INTERFACE>* outService)
73 *outService = interface_cast<INTERFACE>(sm->getService(name));
  /cts/tools/signature-tools/src/signature/model/
Kind.java 23 CLASS("class"), INTERFACE("interface"), ANNOTATION("@interface"), ENUM(
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/reflect/
ModifierTest.java 62 assertTrue("INTERFACE returned false", Modifier.isInterface(ALL_FLAGS));
63 assertTrue("INTERFACE returned false", Modifier
64 .isInterface(Modifier.INTERFACE));
65 assertTrue("Non-INTERFACE returned true", !Modifier
188 + "volatile synchronized native strictfp interface";
196 assertEquals(512, Modifier.INTERFACE);
217 interface InterfaceClazz {
256 public interface PublicInterface {
259 protected interface ProtectedInterface {
262 private interface PrivateInterface
    [all...]
  /external/javassist/src/main/javassist/
Modifier.java 41 public static final int INTERFACE = AccessFlag.INTERFACE;
128 * Returns true if the modifiers include the <tt>interface</tt>
132 return (mod & INTERFACE) != 0;
SerialVersionUID.java 89 if ((classMods & Modifier.INTERFACE) != 0)
  /cts/tools/dasm/src/dasm/
sym.java 41 static final int INTERFACE = 41;
ReservedWords.java 48 reserved_words.put(".interface", new token(sym.DINTERFACE));
101 reserved_words.put("interface", new token(sym.INTERFACE));
  /libcore/luni/src/main/java/java/lang/reflect/
Modifier.java 74 * The {@code int} value representing the {@code interface} modifier.
76 public static final int INTERFACE = 0x200;
105 * without declaring the abstract methods that the interface would
179 * Returns true if the given modifiers contain {@link #INTERFACE}.
182 return ((modifiers & INTERFACE) != 0);
297 buf.append("interface ");
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
ModifierTest.java 53 assertTrue(Modifier.isInterface(Modifier.INTERFACE));
54 assertTrue(!Modifier.isInterface(-1 & ~Modifier.INTERFACE));
  /external/javassist/src/main/javassist/bytecode/
AccessFlag.java 34 public static final int INTERFACE = 0x0200;
ClassFile.java 115 * true if this is an interface. false if this is a class.
127 accessFlags = AccessFlag.INTERFACE | AccessFlag.ABSTRACT;
259 * Returns true if this is an interface.
262 return (accessFlags & AccessFlag.INTERFACE) != 0;
266 * Returns true if this is a final class or interface.
273 * Returns true if this is an abstract class or an interface.
294 if ((acc & AccessFlag.INTERFACE) == 0)
536 * Appends an interface to the interfaces implemented by the class.
  /external/javassist/src/main/javassist/compiler/
TokenId.java 18 public interface TokenId {
44 int INTERFACE = 325;
  /frameworks/base/tools/aidl/
aidl_language_l.l 85 interface { SET_BUFFER(INTERFACE); return INTERFACE; }
87 rpc { SET_BUFFER(INTERFACE); return RPC; }
aidl_language_y.y 22 %token INTERFACE
129 INTERFACE {
139 | ONEWAY INTERFACE {
162 INTERFACE
177 fprintf(stderr, "%s:%d: syntax error in interface declaration. Expected type name, saw \"%s\"\n",
182 fprintf(stderr, "%s:%d: syntax error in interface declaration. Expected type name, saw \"%s\"\n",
  /external/chromium_org/chrome/browser/usb/
usb_device_handle.h 59 enum TransferRecipient { DEVICE, INTERFACE, ENDPOINT, OTHER };
140 // Look up the claimed interface by endpoint. Return NULL if the interface
  /external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
glsl_parser.h 3 /* Bison interface for Yacc-like parsers in C
161 INTERFACE = 379,
362 #define INTERFACE 379
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
AccessFlags.java 46 INTERFACE(0x200, "interface", true, false, false),
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_MimeWriter.py 17 INTERFACE Seller-1;
20 DOCUMENTATION "A simple Seller interface to test ILU"
75 ("Metadata-Key", "generic-interface"),
77 ("Connection-Description", "Generic Interface for All Knowbots"),
121 INTERFACE Seller-1;
124 DOCUMENTATION "A simple Seller interface to test ILU"
136 KP-Metadata-Key: generic-interface
138 KP-Connection-Description: Generic Interface for All Knowbots
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_MimeWriter.py 17 INTERFACE Seller-1;
20 DOCUMENTATION "A simple Seller interface to test ILU"
75 ("Metadata-Key", "generic-interface"),
77 ("Connection-Description", "Generic Interface for All Knowbots"),
121 INTERFACE Seller-1;
124 DOCUMENTATION "A simple Seller interface to test ILU"
136 KP-Metadata-Key: generic-interface
138 KP-Connection-Description: Generic Interface for All Knowbots
  /cts/tests/SignatureTest/src/android/tests/sigtest/
JDiffClassDescription.java 53 INTERFACE, CLASS
111 * adds implemented interface name.
113 * @param iname name of interface
496 // this is because jdiff think a method in an interface is not abstract
497 if (JDiffType.INTERFACE.equals(mClassType)) {
796 reflectionModifier &= ~(Modifier.INTERFACE);
887 if (JDiffType.INTERFACE.equals(mClassType)) {
920 // check implements interface
948 if (!JDiffType.INTERFACE.equals(mClassType)) {
955 sb.append("interface ");
    [all...]
  /cts/tools/signature-tools/test/signature/converter/
ConvertClassTest.java 79 IApi api = convert(new CompilationUnit("a.A", "package a; public interface A{}"));
84 assertEquals(Kind.INTERFACE, sigClass.getKind());
101 IApi api = convert(new CompilationUnit("a.A", "package a; public @interface A{}"));
249 assertEquals(Kind.INTERFACE, clonable.getKind());
255 CompilationUnit interfaceSrc = new CompilationUnit("a.I", "package a; public interface I {}");
267 assertEquals(Kind.INTERFACE, sigInterface.getKind());
272 assertEquals(Kind.INTERFACE, interfaze.getClassDefinition().getKind());
279 CompilationUnit interfaceSrc = new CompilationUnit("a.I", "package a; public interface I<T> {}");
291 assertEquals(Kind.INTERFACE, sigInterface.getKind());
307 CompilationUnit interfaceSrc = new CompilationUnit("a.I", "package a; public interface I<T> {}")
    [all...]
  /cts/tests/SignatureTest/tests/src/android/tests/sigtest/tests/
JDiffClassDescriptionTest.java 259 clz.setType(JDiffClassDescription.JDiffType.INTERFACE);
263 assertEquals(clz.toSignatureString(), "public interface NormalClass.InnerInterface");
267 clz.setType(JDiffClassDescription.JDiffType.INTERFACE);
271 assertEquals(clz.toSignatureString(), "public interface NormalInterface");
  /external/chromium_org/third_party/sqlite/src/src/
lempar.c 25 /* Make sure the INTERFACE macro is defined.
27 #ifndef INTERFACE
28 # define INTERFACE 1
  /external/chromium_org/third_party/sqlite/src/tool/
lempar.c 19 /* Make sure the INTERFACE macro is defined.
21 #ifndef INTERFACE
22 # define INTERFACE 1

Completed in 943 milliseconds

1 2 3