Home
last modified time | relevance | path

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

12345678910>>...19

/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/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`;
66 You can also override this method in an abstract base class:
118 :meth:`~iterator.__iter__`, as an abstract method. The implementation given
120 is also part of the ``MyIterable`` abstract base class, but it does not have
121 to be overridden in non-abstract derived classes.
138 an abstract base class can be created by simply deriving from :class:`ABC`,
152 A decorator indicating abstract methods.
156 :class:`ABCMeta` cannot be instantiated unless all of its abstract methods
157 and properties are overridden. The abstract methods can be called using any
[all …]
Dast.rst15 abstract syntax grammar. The abstract syntax itself might change with each
19 An abstract syntax tree can be generated by passing :data:`ast.PyCF_ONLY_AST` as
22 classes all inherit from :class:`ast.AST`. An abstract syntax tree can be
33 :ref:`below <abstract-grammar>`. They are defined in the :mod:`_ast` C
36 There is one class defined for each left-hand side symbol in the abstract
41 with alternatives (aka "sums"), the left-hand side class is abstract: only
99 The abstract grammar is currently defined as follows:
109 and classes for traversing abstract syntax trees:
183 A node visitor base class that walks the abstract syntax tree and calls a
211 A :class:`NodeVisitor` subclass that walks the abstract syntax tree and
/external/apache-http/api/
Dapache-http-legacy-current.txt103 public abstract interface EventHandler {
104 method public abstract void certificate(android.net.http.SslCertificate);
105 method public abstract void data(byte[], int);
106 method public abstract void endData();
107 method public abstract void error(int, java.lang.String);
108 method public abstract boolean handleSslErrorRequest(android.net.http.SslError);
109 method public abstract void headers(android.net.http.Headers);
110 method public abstract void status(int, int, int, java.lang.String);
190 public static abstract interface Headers.HeaderCallback {
191 method public abstract void header(java.lang.String, java.lang.String);
[all …]
/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/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/annotation-tools/annotation-file-utilities/tests/
DNonStandardSpacing.goal4 public abstract class NonStandardSpacing {
27 public abstract void m4 (@Anno NonStandardSpacing this);
30 public abstract void //comment
34 public abstract void /* comment
38 public abstract void m7
/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/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/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/antlr/antlr-3.4/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/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/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> {
DDeclNodes.td3 class Decl<bit abstract = 0> : AttrSubject {
4 bit Abstract = abstract;
7 class DDecl<Decl base, bit abstract = 0> : Decl<abstract> {
/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/antlr/antlr-3.4/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 …]
/external/javaparser/javaparser-testing/src/test/resources/com/github/javaparser/bulk_test_results/
Dopenjdk_src_repo_test_results.txt11 Parse error. Found "Just" <IDENTIFIER>, expected one of ";" "@" "\u001a" "abstract" "class" "defa…
20 (line 33,col 1) 'abstract' is not allowed here.
56 (line 14,col 2) Parse error. Found <EOF>, expected one of ";" "<" "@" "abstract" "boolean" "byte" …
77 (line 10,col 15) Parse error. Found "void", expected one of ";" "@" "abstract" "boolean" "byte" "c…
98 (line 10,col 15) Parse error. Found "<", expected one of ";" "@" "abstract" "boolean" "byte" "char…
138 (line 7,col 16) Parse error. Found "void", expected one of ")" "@" "abstract" "boolean" "byte" "ch…
141 (line 13,col 9) Cannot be 'abstract' and also 'private'.
148 (line 14,col 9) Cannot be 'abstract' and also 'private'.
154 (line 11,col 9) Cannot be 'abstract' and also 'private'.
155 (line 14,col 9) Cannot be 'abstract' and also 'private'.
[all …]
/external/smali/smali-integration-tests/src/test/smali/junit-tests/InstructionTests/Format35c/
DMethodsInterface.smali1 .class public abstract interface LMethodsInterface;
4 .method public abstract interfaceMethodTest()I
/external/mockftpserver/tags/2.x_Before_IDEA/src/main/groovy/org/mockftpserver/fake/filesystem/
DAbstractFileSystemEntry.groovy19 …* The abstract superclass for concrete file system entry classes representing files and directorie…
25 abstract class AbstractFileSystemEntry {
48 abstract boolean isDirectory()
/external/smali/smali-integration-tests/src/test/smali/junit-tests/InstructionTests/Format3rc/
DRangeMethodsInterface.smali1 .class public abstract interface LRangeMethodsInterface;
4 .method public abstract interfaceMethodTest(IIIIII)I

12345678910>>...19