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

1 2 3

  /external/clang/test/SemaCXX/
abstract.cpp 20 static_assert(__is_abstract(D), "D inherits from an abstract class");
26 static_assert(!__is_abstract(E), "E inherits from an abstract class but implements f");
28 C *d = new C; // expected-error {{allocating an object of abstract class type 'C'}}
30 C c; // expected-error {{variable type 'C' is an abstract class}}
31 void t1(C c); // expected-error {{parameter type 'C' is an abstract class}}
32 void t2(C); // expected-error {{parameter type 'C' is an abstract class}}
35 C c; // expected-error {{field type 'C' is an abstract class}}
41 C(); // expected-error {{allocating an object of abstract class type 'C'}}
42 t3(C()); // expected-error {{allocating an object of abstract class type 'C'}}
45 C e1[2]; // expected-error {{array of abstract class type 'C'}
    [all...]
new-delete.cpp 58 struct abstract { struct
59 virtual ~abstract() = 0;
417 void f(A *x) { delete x; } // expected-warning {{delete called on 'PR10504::A' that is abstract but has non-virtual destructor}}
  /external/proguard/examples/dictionaries/
keywords.txt 49 abstract
  /prebuilts/tools/common/proguard/proguard4.7/examples/dictionaries/
keywords.txt 49 abstract
  /external/blktrace/btreplay/doc/
Makefile 8 btreplay.dvi: btreplay.tex abstract.tex
  /external/elfutils/tests/
run-addrscopes.sh 47 x (abstract)
48 y (abstract)
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
LookaheadStream.h 38 public abstract class LookaheadStream<T> extends FastQueue<T> {
65 public abstract T nextElement();
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
BaseTreeAdaptor.as 222 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/qemu/android/tools/
gen-hw-config.py 70 self.abstract = ""
93 elif key == 'abstract':
94 self.abstract = val
152 varAbstract = quoteStringForC(item.abstract)
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/new_instance/d/
TestAbstractClass.d 20 .class abstract public dot.junit.opcodes.new_instance.d.TestAbstractClass
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_virtual/d/
T_invoke_virtual_24.d 18 .method public abstract test()V
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_virtual_range/d/
T_invoke_virtual_range_24.d 18 .method public abstract test()V
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-php/lib/oauth/
OAuth.php 59 abstract class OAuthSignatureMethod {
64 abstract public function get_name();
76 abstract public function build_signature($request, $consumer, $token);
161 abstract class OAuthSignatureMethod_RSA_SHA1 extends OAuthSignatureMethod {
172 protected abstract function fetch_public_cert(&$request);
178 protected abstract function fetch_private_cert(&$request);
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-php/lib/oauth/
OAuth.php 59 abstract class OAuthSignatureMethod {
64 abstract public function get_name();
76 abstract public function build_signature($request, $consumer, $token);
161 abstract class OAuthSignatureMethod_RSA_SHA1 extends OAuthSignatureMethod {
172 protected abstract function fetch_public_cert(&$request);
178 protected abstract function fetch_private_cert(&$request);
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
util.rb 66 def abstract( name, message = nil ) method in class:ANTLR3.Util
67 message ||= "abstract method -- #{ self.class }::#{ name } has not been implemented"
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_direct/d/
T_invoke_direct_26.d 18 .method public abstract test()V
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_direct_range/d/
T_invoke_direct_range_26.d 18 .method public abstract test()V
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_static/d/
T_invoke_static_24.d 18 .method public abstract test()V
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_static_range/d/
T_invoke_static_range_24.d 18 .method public abstract test()V
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_super/d/
T_invoke_super_24.d 18 .method public abstract test()V
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_super_range/d/
T_invoke_super_range_24.d 18 .method public abstract test()V
  /external/chromium_org/third_party/jinja2/
nodes.py 70 d.setdefault('abstract', False)
124 abstract = True variable in class:Node
127 if self.abstract:
128 raise TypeError('abstract nodes are not instanciable')
244 abstract = True variable in class:Stmt
249 abstract = True variable in class:Helper
348 abstract = True variable in class:Expr
372 abstract = True variable in class:BinExpr
391 abstract = True variable in class:UnaryExpr
423 abstract = Tru variable in class:Literal
    [all...]
  /external/lzma/CS/7zip/Compress/LZMA/
LzmaBase.cs 5 internal abstract class Base
  /ndk/build/tools/
prebuilt-common.sh 200 # $2: small abstract for the option
258 option_set_attr $optname abstract "$2"
266 # $3: small abstract for the option
280 # $3: small abstract for the option
340 local opt text abstract default
355 abstract=`option_get_attr $opt abstract`
358 echo " $text $abstract [$default]"
360 echo " $text $abstract"
    [all...]
  /external/chromium_org/v8/test/webkit/fast/js/
reserved-words-strict.js 51 "abstract",

Completed in 6621 milliseconds

1 2 3