Home
last modified time | relevance | path

Searched refs:itf (Results 1 – 23 of 23) sorted by relevance

/external/clang/test/SemaObjC/
Dblocks.m44 @interface itf
48 …void *P = ^(itf x) {}; // expected-error {{interface type 'itf' cannot be passed by value; did yo…
49 …P = ^itf(int x) {}; // expected-error {{interface type 'itf' cannot be returned by value; did …
50 …P = ^itf() {}; // expected-error {{interface type 'itf' cannot be returned by value; did …
51 …P = ^itf{}; // expected-error {{interface type 'itf' cannot be returned by value; did …
/external/ltp/testcases/network/multicast/mc_member/
Dmc_member_test.c114 char group[40], itf[40]; in join_group() local
136 strcpy(itf, inet_ntoa(imr->imr_interface)); in join_group()
138 itf); in join_group()
149 char group[40], itf[40]; in leave_group() local
170 strcpy(itf, inet_ntoa(imr->imr_interface)); in leave_group()
172 group, itf); in leave_group()
/external/libbrillo/brillo/dbus/
Ddbus_object_test_helpers.h27 static void HandleMethodCall(DBusInterface* itf, in HandleMethodCall() argument
30 itf->HandleMethodCall(method_call, sender); in HandleMethodCall()
58 DBusInterface* itf = object.FindInterface(method_call->GetInterface()); in CallMethod() local
60 if (!itf) { in CallMethod()
68 itf, method_call, base::Bind(&ResponseHolder::ReceiveResponse, in CallMethod()
Dexported_object_manager.cc27 DBusInterface* itf = in RegisterAsync() local
29 itf->AddSimpleMethodHandler(dbus::kObjectManagerGetManagedObjects, in RegisterAsync()
33 signal_itf_added_ = itf->RegisterSignalOfType<SignalInterfacesAdded>( in RegisterAsync()
35 signal_itf_removed_ = itf->RegisterSignalOfType<SignalInterfacesRemoved>( in RegisterAsync()
/external/clang/test/PCH/
Dobjc_exprs.h3 @class itf;
17 typedef typeof(itf*) objc_interface_ty;
18 typedef typeof(itf<foo>*) objc_qual_interface_ty;
Dobjc_exprs.m20 int *T1 = (objc_interface_ty)0; // expected-warning {{aka 'itf *'}}
21 int *T2 = (objc_qual_interface_ty)0; // expected-warning {{aka 'itf<foo> *'}}
/external/desugar/java/com/google/devtools/build/android/desugar/
DLambdaClassFixer.java231 public void visitMethodInsn(int opcode, String owner, String name, String desc, boolean itf) { in visitMethodInsn() argument
238 itf = false; // owner was interface but is now a class in visitMethodInsn()
251 super.visitMethodInsn(opcode, owner, name, desc, itf); in visitMethodInsn()
291 public void visitMethodInsn(int opcode, String owner, String name, String desc, boolean itf) { in visitMethodInsn() argument
293 opcode = itf ? Opcodes.INVOKEINTERFACE : Opcodes.INVOKEVIRTUAL; in visitMethodInsn()
296 super.visitMethodInsn(opcode, owner, name, desc, itf); in visitMethodInsn()
405 public void visitMethodInsn(int opcode, String owner, String name, String desc, boolean itf) { in visitMethodInsn() argument
410 super.visitMethodInsn(opcode, owner, name, desc, itf); in visitMethodInsn()
428 public void visitMethodInsn(int opcode, String owner, String name, String desc, boolean itf) { in visitMethodInsn() argument
446 super.visitMethodInsn(opcode, owner, name, desc, itf); in visitMethodInsn()
DDefaultMethodClassFixer.java102 Class<?> itf = loadFromInternal(direct); in stubMissingDefaultMethods() local
103 collectInterfaces(itf, allInterfaces); in stubMissingDefaultMethods()
129 private void collectInterfaces(Class<?> itf, Set<Class<?>> dest) { in collectInterfaces() argument
130 checkArgument(itf.isInterface()); in collectInterfaces()
131 if (!dest.add(itf)) { in collectInterfaces()
134 for (Class<?> implemented : itf.getInterfaces()) { in collectInterfaces()
DInterfaceDesugaring.java180 public void visitMethodInsn(int opcode, String owner, String name, String desc, boolean itf) { in visitMethodInsn() argument
182 if (itf) { in visitMethodInsn()
200 itf = false; in visitMethodInsn()
211 itf = false; in visitMethodInsn()
214 super.visitMethodInsn(opcode, owner, name, desc, itf); in visitMethodInsn()
DLongCompareMethodRewriter.java47 public void visitMethodInsn(int opcode, String owner, String name, String desc, boolean itf) { in visitMethodInsn() argument
52 super.visitMethodInsn(opcode, owner, name, desc, itf); in visitMethodInsn()
DObjectsRequireNonNullMethodRewriter.java50 public void visitMethodInsn(int opcode, String owner, String name, String desc, boolean itf) { in visitMethodInsn() argument
55 super.visitMethodInsn(opcode, owner, name, desc, itf); in visitMethodInsn()
DTryWithResourcesRewriter.java158 public void visitMethodInsn(int opcode, String owner, String name, String desc, boolean itf) { in visitMethodInsn() argument
160 super.visitMethodInsn(opcode, owner, name, desc, itf); in visitMethodInsn()
DJava7Compatibility.java106 public void visitMethodInsn(int opcode, String owner, String name, String desc, boolean itf) { in visitMethodInsn() argument
115 super.visitMethodInsn(opcode, owner, name, desc, itf); in visitMethodInsn()
/external/iproute2/include/linux/
Datm.h178 short itf; /* ATM interface */ member
225 return addr.sap_addr.itf || addr.sap_addr.vpi || addr.sap_addr.vci; in atmpvc_addr_in_use()
/external/kernel-headers/original/uapi/linux/
Datm.h178 short itf; /* ATM interface */ member
225 return addr.sap_addr.itf || addr.sap_addr.vpi || addr.sap_addr.vci; in atmpvc_addr_in_use()
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/instr/
DDuplicateFrameEliminator.java75 final String name, final String desc, final boolean itf) { in visitMethodInsn() argument
77 mv.visitMethodInsn(opcode, owner, name, desc, itf); in visitMethodInsn()
/external/selinux/python/sepolicy/
Dsepolicy.py572 itf = parser.add_parser("interface",
574 itf.add_argument("-c", "--compile", dest="compile",
577 itf.add_argument("-v", "--verbose", dest="verbose",
580 itf.add_argument("-f", "--file", dest="file",
582 group = itf.add_mutually_exclusive_group(required=True)
594 itf.set_defaults(func=interface)
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/instr/
DProbeArrayStrategyFactoryTest.java334 String name, String desc, boolean itf) { in visitMethod() argument
337 assertFalse(itf); in visitMethod()
340 assertEquals(Boolean.valueOf(itf), in visitMethod()
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/flow/
DLabelFlowAnalyzer.java184 final String name, final String desc, final boolean itf) { in visitMethodInsn() argument
/external/r8/src/main/java/com/android/tools/r8/jar/
DJarRegisterEffectsVisitor.java56 public void visitMethodInsn(int opcode, String owner, String name, String desc, boolean itf) { in visitMethodInsn() argument
/external/ppp/pppd/plugins/pppoatm/
Dtext2atm.c68 addr->sap_addr.itf = part[0]; in try_pvc()
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/
DMethodAnalyzer.java218 final String name, final String desc, final boolean itf) { in visitMethodInsn() argument
/external/trappy/doc/
D00 - Quick start.ipynb116 …\nPv5EkrtS7XBOkpWpdjj/Q5JpDd+flmT9YBdfsGBBOjo6kiQTJ07MzJkz09nZmWT7rBi1Wv3G+itf\n+Yq8qNWFdd+x0bIetX…