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

/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-transport-unix.c49 * @param abstract #TRUE to use abstract socket namespace
55 dbus_bool_t abstract,
72 if ((abstract &&
73 !_dbus_string_append (&address, "unix:abstract=")) ||
74 (!abstract &&
82 fd = _dbus_connect_unix_socket (path, abstract, error);
132 const char *abstract = dbus_address_entry_get_value (entry, "abstract"); local
141 if (path == NULL && abstract
54 _dbus_transport_new_for_domain_socket(const char *path, dbus_bool_t abstract, DBusError *error) argument
[all...]
H A Ddbus-server-unix.c67 const char *abstract = dbus_address_entry_get_value (entry, "abstract"); local
69 if (path == NULL && tmpdir == NULL && abstract == NULL)
72 "path or tmpdir or abstract",
78 (path && abstract) ||
79 (tmpdir && abstract))
82 "cannot specify two of \"path\" and \"tmpdir\" and \"abstract\" at the same time");
116 /* Always use abstract namespace if possible with tmpdir */
135 *server_p = _dbus_server_new_for_domain_socket (abstract, TRUE, error);
196 * @param abstract #TRU
201 _dbus_server_new_for_domain_socket(const char *path, dbus_bool_t abstract, DBusError *error) argument
[all...]
H A Ddbus-sysdeps-unix.h69 dbus_bool_t abstract,
72 dbus_bool_t abstract,
H A Ddbus-sysdeps-unix.c754 * Uses abstract sockets instead of filesystem-linked sockets if
756 * On non-Linux abstract socket usage always fails.
761 * @param abstract #TRUE to use abstract namespace
767 dbus_bool_t abstract,
776 _dbus_verbose ("connecting to unix socket %s abstract=%d\n",
777 path, abstract);
791 if (abstract)
794 addr.sun_path[0] = '\0'; /* this is what says "use abstract" */
809 "Operating system does not support abstract socke
766 _dbus_connect_unix_socket(const char *path, dbus_bool_t abstract, DBusError *error) argument
904 _dbus_listen_unix_socket(const char *path, dbus_bool_t abstract, DBusError *error) argument
[all...]
/external/clang/test/SemaCXX/
H A Dabstract.cpp20 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 clas
[all...]
H A Dnew-delete.cpp58 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/
H A Dkeywords.txt49 abstract
/external/blktrace/btreplay/doc/
H A DMakefile8 btreplay.dvi: btreplay.tex abstract.tex
H A Dbtreplay.tex29 \begin{abstract}
30 \input{abstract.tex}
31 \end{abstract}
37 \input{abstract.tex}
/external/qemu/android/tools/
H A Dgen-hw-config.py70 self.abstract = ""
78 elif key == 'abstract':
79 self.abstract = val
137 varAbstract = quoteStringForC(item.abstract)
/external/collada/include/dae/
H A DdaeMetaElement.h97 * @param abstract True if this type is an inner class.
102 * @return Returns true if this element type is abstract, false otherwise.
111 * Sets if elements of this type are abstract.
112 * @param abstract True if this type is abstract.
114 void setIsAbstract( daeBool abstract ) { _isAbstract = abstract; }
/external/elfutils/libelf/
H A DMakefile.am123 noinst_HEADERS = elf.h abstract.h common.h exttypes.h gelf_xlate.h libelfP.h \
H A DMakefile311 noinst_HEADERS = elf.h abstract.h common.h exttypes.h gelf_xlate.h libelfP.h \
/external/llvm/utils/lit/lit/
H A DTestFormats.py189 abstract
/external/clang/utils/ABITest/
H A DTypeGen.py198 abstract
208 abstract
/external/clang/utils/
H A Dtoken-delta.py16 abstract
/external/qemu/android/
H A Dconsole.c345 const char* abstract; member in struct:CommandDefRec_
409 control_write( client, "%s\r\n", cmd->abstract );
415 control_write( client, " %s %-15s %s\r\n", prefix, cmd->names, cmd->abstract );
484 control_write( client, " %-15s %s\r\n", cmd->names, cmd->abstract );
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.mli18 These abstract types correlate directly to the LLVM VMCore classes. *)

Completed in 584 milliseconds