Home
last modified time | relevance | path

Searched refs:abstract (Results 1 – 25 of 613) sorted by relevance

12345678910>>...25

/external/smali/examples/AnnotationValues/
DAnnotationWithValues.smali1 .class public abstract interface annotation LAnnotationWithValues;
5 .method public abstract booleanValue()Z
8 .method public abstract byteValue()B
11 .method public abstract charValue()C
14 .method public abstract shortValue()S
17 .method public abstract intValue()I
20 .method public abstract longValue()J
23 .method public abstract floatValue()F
26 .method public abstract doubleValue()D
29 .method public abstract stringValue()Ljava/lang/String;
[all …]
/external/turbine/javatests/com/google/turbine/lower/testdata/
Dmoremethods.test5 public abstract class MyExn extends java.lang.Throwable {
11 public abstract class Simple {
12 public abstract int f();
13 public abstract void g();
14 public abstract void h(int x);
15 public abstract void i(int x, int y);
16 public abstract <T> T j(int x, int y);
17 public abstract <T, U extends T> T k(U x, int y);
18 public abstract <T, U extends T> T l(U x, int[] y);
19 public abstract <T, U extends T> T m(U[][] x, int[] y);
[all …]
Dstrictfp.test2 strictfp abstract class Test {
3 abstract void a();
26 abstract void a();
27 abstract class N {
29 abstract void a();
39 abstract void a();
40 abstract class N {
42 abstract void a();
Dmapentry.test7 public abstract class Maps implements Map {
8 abstract class Inner {
9 abstract Set<Entry<String, Integer>> entries();
Dcanon_class_header.test17 abstract class B<K extends Comparable> extends S implements Map<K, Inner> {
23 abstract class One<K> extends TreeMap<K, Inner> {
28 abstract class Two<K> extends S<Number> implements Map<K, Inner> {
/external/kotlinx.coroutines/binary-compatibility-validator/reference-public-api/
Dkotlinx-coroutines-test.txt1 public abstract interface class kotlinx/coroutines/test/DelayController {
2 public abstract fun advanceTimeBy (J)J
3 public abstract fun advanceUntilIdle ()J
4 public abstract fun cleanupTestCoroutines ()V
5 public abstract fun getCurrentTime ()J
6 public abstract fun pauseDispatcher ()V
7 …public abstract fun pauseDispatcher (Lkotlin/jvm/functions/Function1;Lkotlin/coroutines/Continuati…
8 public abstract fun resumeDispatcher ()V
9 public abstract fun runCurrent ()V
44 public abstract interface class kotlinx/coroutines/test/TestCoroutineScope : kotlinx/coroutines/Cor…
[all …]
Dkotlinx-coroutines-core.txt1 public abstract class kotlinx/coroutines/AbstractCoroutine : kotlinx/coroutines/JobSupport, kotlin/…
35 public abstract interface class kotlinx/coroutines/CancellableContinuation : kotlin/coroutines/Cont…
36 public abstract fun cancel (Ljava/lang/Throwable;)Z
37 public abstract fun completeResume (Ljava/lang/Object;)V
38 public abstract synthetic fun initCancellability ()V
39 public abstract fun invokeOnCancellation (Lkotlin/jvm/functions/Function1;)V
40 public abstract fun isActive ()Z
41 public abstract fun isCancelled ()Z
42 public abstract fun isCompleted ()Z
43 public abstract fun resume (Ljava/lang/Object;Lkotlin/jvm/functions/Function1;)V
[all …]
/external/kotlinx.coroutines/binary-compatibility-validator/test/cases/interfaces/
Dinterfaces.txt1 public abstract interface class cases/interfaces/BaseWithImpl {
2 public abstract fun foo ()I
9 public abstract interface class cases/interfaces/DerivedWithImpl : cases/interfaces/BaseWithImpl {
10 public abstract fun foo ()I
17 public abstract interface class cases/interfaces/DerivedWithoutImpl : cases/interfaces/BaseWithImpl…
24 public abstract interface class cases/interfaces/EmptyImpls {
25 public abstract fun getProperty ()Ljava/lang/String;
/external/python/cpython3/Doc/library/
Dabc.rst15 This module provides the infrastructure for defining :term:`abstract base
16 classes <abstract base class>` (ABCs) in Python, as outlined in :pep:`3119`;
33 an abstract base class can be created by simply deriving from :class:`ABC`
44 One may also define an abstract base class by passing the metaclass
92 You can also override this method in an abstract base class:
144 :meth:`~iterator.__iter__`, as an abstract method. The implementation given
146 is also part of the ``MyIterable`` abstract base class, but it does not have
147 to be overridden in non-abstract derived classes.
167 A decorator indicating abstract methods.
171 :class:`ABCMeta` cannot be instantiated unless all of its abstract methods
[all …]
/external/kotlinx.coroutines/binary-compatibility-validator/test/cases/protected/
Dprotected.txt1 public abstract class cases/protected/PublicAbstractClass {
3 protected abstract fun getProtectedVal ()I
4 protected abstract fun getProtectedVar ()Ljava/lang/Object;
5 protected abstract fun protectedFun ()V
6 protected abstract fun setProtectedVar (Ljava/lang/Object;)V
/external/desugar/test/java/com/google/devtools/build/android/desugar/
Dinterface_with_desugared_method_bodies_disassembled_golden.txt3 …public abstract java.util.List<java.lang.String> defaultMethodReference(java.util.List<java.lang.S…
4 public abstract java.lang.String defaultInvokingBootclasspathMethods(java.lang.String);
5 …public abstract java.util.List<java.lang.String> staticMethodReference(java.util.List<java.lang.St…
6 …public abstract java.util.List<java.lang.String> lambdaCallsDefaultMethod(java.util.List<java.lang…
7 public abstract boolean startsWithS(java.lang.String);
/external/clang/test/SemaCXX/
Dabstract.cpp216 virtual void abstract() = 0;
220 virtual void abstract() = 0;
226 virtual void abstract() = 0; // expected-note {{unimplemented pure virtual method}}
230 virtual void abstract() = 0; // expected-note {{unimplemented pure virtual method}}
238 virtual void abstract() = 0; // expected-note {{unimplemented pure virtual method}}
242 virtual void abstract() = 0; // expected-note {{unimplemented pure virtual method}}
248 virtual void abstract() = 0; // expected-note {{unimplemented pure virtual method}}
252 virtual void abstract() = 0; // expected-note {{unimplemented pure virtual method}}
/external/clang/test/SemaObjCXX/
Dabstract-class-type-ivar.mm17 …eteSub _concrete; // expected-error{{instance variable type 'CppConcreteSub' is an abstract class}}
19 - (CppAbstractBase*)abstract; method
24 - (CppAbstractBase*)abstract { method
27 …/ expected-error {{synthesized instance variable type 'const CppConcreteSub' is an abstract class}}
32 CppConcreteSub sub; // expected-error {{field type 'CppConcreteSub' is an abstract class}}
/external/curl/docs/cmdline-opts/
Dabstract-unix-socket.d1 Long: abstract-unix-socket
3 Help: Connect via abstract Unix domain socket
7 Connect through an abstract Unix domain socket, instead of using the network.
8 Note: netstat shows the path of an abstract socket prefixed with '@', however
/external/kotlinx.coroutines/binary-compatibility-validator/test/cases/nestedClasses/
DnestedClasses.txt1 public abstract class cases/nestedClasses/PublicAbstractClass {
13 protected abstract interface class cases/nestedClasses/PublicAbstractClass$NestedProtectedInterface…
32 public abstract interface class cases/nestedClasses/PublicClass$NestedPublicInterface {
39 public abstract interface class cases/nestedClasses/PublicInterface {
46 public abstract interface class cases/nestedClasses/PublicInterface$NestedPublicInterface {
61 public abstract interface class cases/nestedClasses/PublicObject$NestedPublicInterface {
80 protected abstract interface class cases/nestedClasses/PublicOpenClass$NestedProtectedInterface {
/external/python/cpython2/Doc/library/
Dabc.rst16 This module provides the infrastructure for defining :term:`abstract base
17 classes <abstract base class>` (ABCs) in Python, as outlined in :pep:`3119`; see the PEP for why th…
60 You can also override this method in an abstract base class:
113 :meth:`~iterator.__iter__`, as an abstract method. The implementation given
115 is also part of the ``MyIterable`` abstract base class, but it does not have
116 to be overridden in non-abstract derived classes.
134 A decorator indicating abstract methods.
139 cannot be instantiated unless all of its abstract methods and
141 The abstract methods can be called using any of the normal 'super' call
144 Dynamically adding abstract methods to a class, or attempting to modify the
[all …]
/external/antlr/runtime/Ruby/lib/antlr3/
Dstreams.rb173 abstract :consume
180 abstract :peek
186 abstract :look
192 abstract :mark
197 abstract :index
203 abstract :rewind
208 abstract :release
213 abstract :seek
263 abstract :substring
332 abstract :to_s
[all …]
/external/clang/include/clang/Basic/
DCommentNodes.td1 class Comment<bit abstract = 0> {
2 bit Abstract = abstract;
5 class DComment<Comment base, bit abstract = 0> : Comment<abstract> {
/external/python/cpython2/PC/os2vacpp/
Dmakefile.omk352 _tkinter.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
360 almodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
368 arraymodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
376 audioop.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
384 binascii.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
392 bsddbmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
400 cdmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
408 cgensupport.obj: abstract.h ceval.h cgensupport.h classobject.h cobject.h \
416 clmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
424 cmathmodule.obj: abstract.h ceval.h classobject.h cobject.h complexobject.h \
[all …]
Dmakefile360 _tkinter.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
373 almodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
386 arraymodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
400 audioop.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
414 binascii.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
427 bsddbmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
441 cdmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
454 cgensupport.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
468 clmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h $(PY_INCLUDE)\classobject.h \
481 cmathmodule.obj: $(PY_INCLUDE)\abstract.h $(PY_INCLUDE)\ceval.h \
[all …]
/external/v8/src/objects/
Djs-collection.tq5 @abstract
18 @abstract
31 @abstract extern class JSMapIterator extends JSCollectionIterator;
39 @abstract extern class JSSetIterator extends JSCollectionIterator;
/external/icu/android_icu4j/api/intra/
Dcurrent-api.txt4 public abstract class CacheValue<V> {
58 public abstract class IDNA {
72 @Deprecated public abstract static class Normalizer.Mode {
75 public abstract class TimeZoneNames implements java.io.Serializable {
97 public abstract class BasicTimeZone extends android.icu.util.TimeZone {
98 method public abstract android.icu.util.TimeZoneTransition getNextTransition(long, boolean);
99 method public abstract android.icu.util.TimeZoneTransition getPreviousTransition(long, boolean);
100 method public abstract android.icu.util.TimeZoneRule[] getTimeZoneRules();
103 …public abstract class Calendar implements java.lang.Cloneable java.lang.Comparable<android.icu.uti…
156 …public abstract class TimeZone implements java.lang.Cloneable android.icu.util.Freezable<android.i…
[all …]
/external/llvm/test/DebugInfo/Generic/
Dmissing-abstract-variable.ll12 ; The important details are that 'x's abstract definition is first built during
14 ; variable is optimized away. No abstract definition DIE for 's' is constructed.
15 ; Then, during 'a' emission, the abstract DbgVariable for 's' is created, but
16 ; the abstract DIE isn't (since the abstract definition for 'b' is already
18 ; file there, rather than referencing an abstract definition.
67 ; abstract subprogram.
139 !1 = !DIFile(filename: "missing-abstract-variables.cc", directory: "/tmp/dbginfo")
142 !5 = !DIFile(filename: "missing-abstract-variables.cc", directory: "/tmp/dbginfo")
/external/swiftshader/third_party/llvm-7.0/llvm/test/DebugInfo/Generic/
Dmissing-abstract-variable.ll7 ; The important details are that 'x's abstract definition is first built during
9 ; variable is optimized away. No abstract definition DIE for 's' is constructed.
10 ; Then, during 'a' emission, the abstract DbgVariable for 's' is created, but
11 ; the abstract DIE isn't (since the abstract definition for 'b' is already
13 ; file there, rather than referencing an abstract definition.
62 ; abstract subprogram.
134 !1 = !DIFile(filename: "missing-abstract-variables.cc", directory: "/tmp/dbginfo")
137 !5 = !DIFile(filename: "missing-abstract-variables.cc", directory: "/tmp/dbginfo")
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/tree/
DBaseTreeAdaptor.as222 throw new Error("Not implemented - abstract function");
241 throw new Error("Not implemented - abstract function");
245 throw new Error("Not implemented - abstract function");
249 throw new Error("Not implemented - abstract function");
253 throw new Error("Not implemented - abstract function");
257 throw new Error("Not implemented - abstract function");
261 throw new Error("Not implemented - abstract function");
265 throw new Error("Not implemented - abstract function");
269 throw new Error("Not implemented - abstract function");
273 throw new Error("Not implemented - abstract function");
[all …]

12345678910>>...25