Searched refs:abstract (Results 1 - 25 of 50) sorted by relevance

12

/external/dbus/dbus/
H A Ddbus-server-unix.h32 dbus_bool_t abstract,
H A Ddbus-transport-unix.h31 dbus_bool_t abstract,
H A Ddbus-server-unix.c68 const char *abstract = dbus_address_entry_get_value (entry, "abstract"); local
70 if (path == NULL && tmpdir == NULL && abstract == NULL)
73 "path or tmpdir or abstract",
79 (path && abstract) ||
80 (tmpdir && abstract))
83 "cannot specify two of \"path\" and \"tmpdir\" and \"abstract\" at the same time");
117 /* Always use abstract namespace if possible with tmpdir */
136 *server_p = _dbus_server_new_for_domain_socket (abstract, TRUE, error);
220 * @param abstract #TRU
225 _dbus_server_new_for_domain_socket(const char *path, dbus_bool_t abstract, DBusError *error) argument
[all...]
H A Ddbus-transport-unix.c53 * @param abstract #TRUE to use abstract socket namespace
59 dbus_bool_t abstract,
76 if ((abstract &&
77 !_dbus_string_append (&address, "unix:abstract=")) ||
78 (!abstract &&
86 fd = _dbus_connect_unix_socket (path, abstract, error);
238 const char *abstract = dbus_address_entry_get_value (entry, "abstract"); local
247 if (path == NULL && abstract
58 _dbus_transport_new_for_domain_socket(const char *path, dbus_bool_t abstract, DBusError *error) argument
[all...]
H A Ddbus-sysdeps-unix.h67 dbus_bool_t abstract,
70 dbus_bool_t abstract,
/external/clang/test/SemaCXX/
H A Dabstract.cpp13 static_assert(!__is_abstract(IncompleteUnion), "unions are never abstract");
24 static_assert(__is_abstract(D), "D inherits from an abstract class");
30 static_assert(!__is_abstract(E), "E inherits from an abstract class but implements f");
32 C *d = new C; // expected-error {{allocating an object of abstract class type 'C'}}
34 C c; // expected-error {{variable type 'C' is an abstract class}}
35 void t1(C c); // expected-error {{parameter type 'C' is an abstract class}}
36 void t2(C); // expected-error {{parameter type 'C' is an abstract class}}
39 C c; // expected-error {{field type 'C' is an abstract class}}
45 C(); // expected-error {{allocating an object of abstract class type 'C'}}
46 t3(C()); // expected-error {{allocating an object of abstract clas
[all...]
H A Dnew-delete.cpp65 struct abstract { struct
66 virtual ~abstract() = 0;
424 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/
H A Dkeywords.txt49 abstract
/external/blktrace/btreplay/doc/
H A DMakefile8 btreplay.dvi: btreplay.tex abstract.tex
/external/elfutils/tests/
H A Drun-addrscopes.sh39 x (abstract)
40 y (abstract)
/external/opencv3/samples/wp8/OcvImageManipulation/PhoneXamlDirect3DApp1/PhoneXamlDirect3DApp1Comp/
H A DDirect3DBase.h6 ref class Direct3DBase abstract class
/external/opencv3/samples/wp8/OcvRotatingCube/PhoneXamlDirect3DApp1/PhoneXamlDirect3DApp1Comp/
H A DDirect3DBase.h6 ref class Direct3DBase abstract class
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DLookaheadStream.h38 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/
H A 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 functio
[all...]
/external/chromium-trace/catapult/third_party/gsutil/third_party/httplib2/
H A Dref.tex42 \begin{abstract}
50 \end{abstract}
/external/opencv3/3rdparty/jinja2/
H A Dnodes.py72 d.setdefault('abstract', False)
125 abstract = True variable in class:Node
128 if self.abstract:
129 raise TypeError('abstract nodes are not instanciable')
248 abstract = True variable in class:Stmt
253 abstract = True variable in class:Helper
352 abstract = True variable in class:Expr
376 abstract = True variable in class:BinExpr
395 abstract = True variable in class:UnaryExpr
427 abstract variable in class:Literal
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dutil.rb66 def abstract( name, message = nil ) method in class:ANTLR3.Util
67 message ||= "abstract method -- #{ self.class }::#{ name } has not been implemented"
/external/autotest/frontend/afe/
H A Drdb_model_extensions.py205 abstract = True variable in class:AbstractHostModel.Meta
/external/libmicrohttpd/src/testcurl/https/
H A Dtest_https_sni.c38 #include <gnutls/abstract.h>
/external/llvm/utils/lit/lit/formats/
H A Dbase.py84 abstract
/external/elfutils/libelf/
H A DMakefile.am122 noinst_HEADERS = elf.h abstract.h common.h exttypes.h gelf_xlate.h libelfP.h \
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.Tree.pas1135 TBaseTree = class abstract(TANTLRObject, IBaseTree, ITree)
1142 function GetTokenType: Integer; virtual; abstract;
1143 function GetText: String; virtual; abstract;
1144 function GetTokenStartIndex: Integer; virtual; abstract;
1145 procedure SetTokenStartIndex(const Value: Integer); virtual; abstract;
1146 function GetTokenStopIndex: Integer; virtual; abstract;
1147 procedure SetTokenStopIndex(const Value: Integer); virtual; abstract;
1148 function DupNode: ITree; virtual; abstract;
1184 function ToString: String; override; abstract;
1261 TBaseTreeAdaptor = class abstract(TANTLRObjec
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DRecognizerSharedState.as3 /** The set of fields needed by an abstract recognizer to recognize input
/external/clang/utils/ABITest/
H A DTypeGen.py202 abstract
212 abstract
/external/clang/utils/
H A Dtoken-delta.py16 abstract

Completed in 829 milliseconds

12