Home
last modified time | relevance | path

Searched full:abstract (Results 1 – 25 of 1858) sorted by relevance

12345678910>>...75

/third_party/node/deps/npm/node_modules/es-abstract/
DREADME.md1 # es-abstract <sup>[![Version Badge][npm-version-svg]][package-url]</sup>
13 ECMAScript spec abstract operations.
14 …ions of the spec conflict, the default export will be the latest version of the abstract operation.
15 All abstract operations will also be available under an `es5`/`es2015`/`es2016` entry point, and ex…
20 var ES = require('es-abstract');
30 [package-url]: https://npmjs.org/package/es-abstract
31 [npm-version-svg]: http://versionbadg.es/ljharb/es-abstract.svg
32 [travis-svg]: https://travis-ci.org/ljharb/es-abstract.svg
33 [travis-url]: https://travis-ci.org/ljharb/es-abstract
34 [deps-svg]: https://david-dm.org/ljharb/es-abstract.svg
[all …]
Dpackage.json2 "name": "es-abstract",
16 "description": "ECMAScript spec abstract operations.",
35 "url": "git://github.com/ljharb/es-abstract.git"
40 "abstract",
42 "abstract operation",
99 ,"_resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.12.0.tgz"
101 ,"_from": "es-abstract@1.12.0"
/third_party/python/Doc/library/
Dabc.rst1 :mod:`abc` --- Abstract Base Classes
5 :synopsis: Abstract base classes according to :pep:`3119`.
15 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
57 Metaclass for defining Abstract Base Classes (ABCs).
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
[all …]
/third_party/boost/boost/units/systems/
Dabstract.hpp36 namespace abstract { namespace
60 typedef unit<length_dimension,system> length; ///< abstract unit of …
61 typedef unit<mass_dimension,system> mass; ///< abstract unit of …
62 typedef unit<time_dimension,system> time; ///< abstract unit of …
63 typedef unit<current_dimension,system> current; ///< abstract unit of …
64 typedef unit<temperature_dimension,system> temperature; ///< abstract unit of …
65 typedef unit<amount_dimension,system> amount; ///< abstract unit of …
66 typedef unit<luminous_intensity_dimension,system> luminous_intensity; ///< abstract unit of …
67 typedef unit<plane_angle_dimension,system> plane_angle; ///< abstract unit of …
68 typedef unit<solid_angle_dimension,system> solid_angle; ///< abstract unit of …
[all …]
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
DUnknownFieldSchema.java36 abstract class UnknownFieldSchema<T, B> {
39 abstract boolean shouldDiscardUnknownFields(Reader reader); in shouldDiscardUnknownFields()
42 abstract void addVarint(B fields, int number, long value); in addVarint()
45 abstract void addFixed32(B fields, int number, int value); in addFixed32()
48 abstract void addFixed64(B fields, int number, long value); in addFixed64()
51 abstract void addLengthDelimited(B fields, int number, ByteString value); in addLengthDelimited()
54 abstract void addGroup(B fields, int number, T subFieldSet); in addGroup()
57 abstract B newBuilder(); in newBuilder()
60 abstract T toImmutable(B fields); in toImmutable()
66 abstract void setToMessage(Object message, T fields); in setToMessage()
[all …]
DExtensionSchema.java36 abstract class ExtensionSchema<T extends FieldSet.FieldDescriptorLite<T>> {
39 abstract boolean hasExtensions(MessageLite prototype); in hasExtensions()
42 abstract FieldSet<T> getExtensions(Object message); in getExtensions()
45 abstract void setExtensions(Object message, FieldSet<T> extensions); in setExtensions()
48 abstract FieldSet<T> getMutableExtensions(Object message); in getMutableExtensions()
51 abstract void makeImmutable(Object message); in makeImmutable()
61 abstract <UT, UB> UB parseExtension( in parseExtension()
71 abstract int extensionNumber(Map.Entry<?, ?> extension); in extensionNumber()
74 abstract void serializeExtension(Writer writer, Map.Entry<?, ?> extension) throws IOException; in serializeExtension()
77 abstract Object findExtensionByNumber( in findExtensionByNumber()
[all …]
DExtension.java39 public abstract class Extension<ContainingType extends MessageLite, Type>
45 public abstract Message getMessageDefaultInstance(); in getMessageDefaultInstance()
48 public abstract Descriptors.FieldDescriptor getDescriptor(); in getDescriptor()
65 protected abstract ExtensionType getExtensionType(); in getExtensionType()
81 protected abstract Object fromReflectionType(Object value); in fromReflectionType()
83 protected abstract Object singularFromReflectionType(Object value); in singularFromReflectionType()
85 protected abstract Object toReflectionType(Object value); in toReflectionType()
87 protected abstract Object singularToReflectionType(Object value); in singularToReflectionType()
/third_party/boost/libs/optional/test/
Dtestable_classes.hpp29 struct Abstract struct
33 virtual ~Abstract() {} in ~Abstract() argument
34 Abstract(){} in Abstract() function
37 Abstract(Abstract const&);
38 void operator=(Abstract const&);
41 struct Impl : Abstract
56 struct concrete_type_of<Abstract>
62 struct concrete_type_of<const Abstract>
86 int& val(Abstract& a) { return a.val(); } in val()
92 const int& val(const Abstract& a) { return a.val(); } in val()
[all …]
/third_party/boost/libs/python/test/
Dvirtual_functions.cpp41 struct abstract : X struct
43 abstract(int x) : X(x) {}; in abstract() function
46 abstract& call_g(Y const& y) { return g(y); } in call_g() argument
47 virtual abstract& g(Y const& y) = 0;
57 struct abstract_callback : abstract
60 : abstract(x), self(p) in abstract_callback()
68 abstract& g(Y const& y) in g()
70 return call_method<abstract&>(self, "g", boost::ref(y)); in g()
110 class_<abstract, boost::noncopyable, abstract_callback in BOOST_PYTHON_MODULE()
111 >("abstract", init<int>()) in BOOST_PYTHON_MODULE()
[all …]
Dpointer_vector.cpp10 class Abstract class
13 virtual ~Abstract() {}; // silence compiler warningsa in ~Abstract()
17 class Concrete1 : public Abstract
23 typedef std::vector<Abstract*> ListOfObjects;
39 class_<Abstract, boost::noncopyable>("Abstract", no_init) in BOOST_PYTHON_MODULE()
40 .def("f", &Abstract::f) in BOOST_PYTHON_MODULE()
/third_party/boost/libs/units/doc/
Dabstract_reference.xml2 … id="abstract_system_reference"><title>Abstract System Reference</title><header name="boost/units/…
6 …</template><specialization><template-arg>abstract::amount_unit_tag</template-arg></specialization>…
11 …</template><specialization><template-arg>abstract::current_unit_tag</template-arg></specialization…
16 …</template><specialization><template-arg>abstract::length_unit_tag</template-arg></specialization>…
21 …</template><specialization><template-arg>abstract::luminous_intensity_unit_tag</template-arg></spe…
26 …</template><specialization><template-arg>abstract::mass_unit_tag</template-arg></specialization><m…
31 …</template><specialization><template-arg>abstract::plane_angle_unit_tag</template-arg></specializa…
36 …</template><specialization><template-arg>abstract::solid_angle_unit_tag</template-arg></specializa…
41 …</template><specialization><template-arg>abstract::temperature_unit_tag</template-arg></specializa…
46 …</template><specialization><template-arg>abstract::time_unit_tag</template-arg></specialization><m…
[all …]
/third_party/glib/gio/tests/
Dsocket-address.c19 a = g_object_new (G_TYPE_UNIX_SOCKET_ADDRESS, "abstract", FALSE, NULL); in test_unix_socket_address_construct()
24 "abstract", FALSE, in test_unix_socket_address_construct()
32 "abstract", FALSE, in test_unix_socket_address_construct()
37 /* Try explicitly setting abstract to TRUE */ in test_unix_socket_address_construct()
39 "abstract", TRUE, in test_unix_socket_address_construct()
52 * setting abstract to FALSE. in test_unix_socket_address_construct()
55 "abstract", FALSE, in test_unix_socket_address_construct()
64 "abstract", FALSE, in test_unix_socket_address_construct()
93 addr = g_unix_socket_address_new_with_type ("abstract-path\0✋", 17, in test_unix_socket_address_to_string()
96 g_assert_cmpstr (str, ==, "abstract-path\\x00\\xe2\\x9c\\x8b"); in test_unix_socket_address_to_string()
[all …]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/
DTestDataModule.java93 // public abstract boolean isDefined(String key);
95 public abstract Object getObject(String key); in getObject()
96 public abstract String getString(String key); in getString()
97 // public abstract char getChar(String key);
98 // public abstract int getInt(String key);
99 // public abstract byte getByte(String key);
100 // public abstract boolean getBoolean(String key);
102 // public abstract Object[] getObjectArray(String key);
103 // public abstract String[] getStringArray(String key);
104 // public abstract char[] getCharArray(String key);
[all …]
/third_party/boost/tools/build/doc/src/
Dabstract-target.adoc1 [[bbv2.reference.class.abstract-target]]
2 = Class abstract-target
4 Base class for all abstract targets.
8 class abstract-target {
19 link:#bbv2.reference.class.abstract-target[abstract-target]:
51 6. [[bbv2.reference.class.abstract-target.generate]] `rule generate ( property-set )`
53 Generates virtual targets for this abstract target using the specified
55 target. This is an abstract method which must be overridden by derived
/third_party/boost/libs/intrusive/test/
Dparent_from_member_test.cpp28 struct Abstract struct
34 virtual ~Abstract(){} in ~Abstract() argument
38 : public Abstract
44 Abstract *abstract() { return this; } in abstract() function
45 Abstract const *abstract() const { return this; } in abstract() function
129 //Abstract in main()
130 …BOOST_TEST(derivedpoly.abstract() == get_parent_from_member(&derivedpoly.abstract_int_, &Abstrac… in main()
131 …BOOST_TEST(derivedpoly.abstract() == get_parent_from_member(&derivedpoly.abstract_float_, &Abstrac… in main()
140 …BOOST_TEST(multiinheritance.abstract() == get_parent_from_member(&multiinheritance.abstract_int_, … in main()
141 …BOOST_TEST(multiinheritance.abstract() == get_parent_from_member(&multiinheritance.abstract_float_… in main()
[all …]
/third_party/grpc/src/csharp/Grpc.Core.Api/
DServerCallContext.cs29 public abstract class ServerCallContext
126 protected abstract Task WriteResponseHeadersAsyncCore(Metadata responseHeaders); in WriteResponseHeadersAsyncCore()
128 …protected abstract ContextPropagationToken CreatePropagationTokenCore(ContextPropagationOptions op… in CreatePropagationTokenCore()
130 protected abstract string MethodCore { get; }
132 protected abstract string HostCore { get; }
134 protected abstract string PeerCore { get; }
136 protected abstract DateTime DeadlineCore { get; }
138 protected abstract Metadata RequestHeadersCore { get; }
140 protected abstract CancellationToken CancellationTokenCore { get; }
142 protected abstract Metadata ResponseTrailersCore { get; }
[all …]
/third_party/boost/libs/proto/test/
Denv_var.cpp19 struct abstract struct
21 virtual ~abstract() = 0;
24 abstract::~abstract() {} in ~abstract()
26 struct concrete : abstract
49 BOOST_MPL_ASSERT_NOT((proto::is_env<abstract>)); in test_is_env()
50 BOOST_MPL_ASSERT_NOT((proto::is_env<abstract &>)); in test_is_env()
51 BOOST_MPL_ASSERT_NOT((proto::is_env<abstract const &>)); in test_is_env()
82 abstract &a = c; in test_as_env()
85 proto::env<proto::data_type, abstract &> e5 = proto::as_env(a); in test_as_env()
105 abstract &a = c; in test_comma()
[all …]
/third_party/python/Lib/
Dabc.py4 """Abstract Base Classes (ABCs) according to PEP 3119."""
8 """A decorator indicating abstract methods.
12 instantiated unless all of its abstract methods are overridden.
13 The abstract methods can be called using any of the normal
15 abstract methods for properties and descriptors.
29 """A decorator indicating abstract classmethods.
42 """A decorator indicating abstract staticmethods.
55 """A decorator indicating abstract properties.
72 """Metaclass for defining Abstract Base Classes (ABCs).
/third_party/glib/gio/
Dgunixsocketaddress.c40 * However, some systems support abstract socket names which are not
43 * under Linux. If you attempt to use abstract sockets on other
46 * to see if abstract names are supported.
75 char path[UNIX_PATH_MAX]; /* Not including the initial zero in abstract case, so
76 we can guarantee zero termination of abstract
243 _("Abstract UNIX domain socket addresses not supported on this system")); in g_unix_socket_address_to_native()
286 * GUnixSocketAddress:abstract: in g_unix_socket_address_class_init()
288 * Whether or not this is an abstract address in g_unix_socket_address_class_init()
292 * abstract addresses. in g_unix_socket_address_class_init()
295 g_param_spec_boolean ("abstract", in g_unix_socket_address_class_init()
[all …]
/third_party/flutter/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/opentype/component/
DVisibleSubTable.java7 public abstract class VisibleSubTable extends SubTable {
12 public abstract static class Builder<T extends SubTable> extends SubTable.Builder<T> {
24 public abstract int subSerialize(WritableFontData newData); in subSerialize()
32 public abstract int subDataSizeToSerialize(); in subDataSizeToSerialize()
35 protected abstract void subDataSet(); in subDataSet()
38 protected abstract T subBuildTable(ReadableFontData data); in subBuildTable()
/third_party/python/Lib/importlib/
Dabc.py1 """Abstract base classes related to import."""
32 """Legacy abstract base class for import finders.
44 """An abstract method that should find a module.
52 """Abstract base class for import finders on sys.meta_path."""
89 """Abstract base class for path entry finders used by PathFinder."""
138 """Abstract base class for import loaders."""
185 """Abstract base class for loaders which can return data from their
194 """Abstract method which when implemented should return the bytes for
201 """Abstract base class for loaders which support inspection about the
231 """Abstract method which should return the source code for the
[all …]
/third_party/boost/libs/numeric/conversion/doc/
Ddefinitions.qbk51 An [*abstract value] (untyped) is the conceptual information that is
59 ['Abstract] values can be [*represented] in a given type.
61 To [*represent] an abstract value `V` in a type `T` is to obtain a typed value
62 `v` which corresponds to the abstract value `V`.
67 For example, the abstract value π can be represented in the type
75 To [*abstract] a typed value `v` of type `T` is to obtain the abstract value `V`
82 Abstraction is just an abstract operation (you can't do it); but it is
152 Within this library, the term ['number] refers to an abstract numeric value.
158 * Represents numeric abstract values (i.e. numbers).
165 A numeric type is [*signed] if the abstract values it represent include negative numbers.
[all …]
/third_party/boost/libs/test/test/writing-test-ts/
Dfp-no-comparison-for-incomplete-types-test.cpp12 // no floating point comparison for abstract types.
13 struct abstract struct
15 virtual ~abstract() = 0;
16 bool operator==(const abstract &) const { return true; } in operator ==() argument
19 std::ostream &operator<<(std::ostream &ostr, const abstract &) { in operator <<() argument
24 void foo(abstract &a) in foo()
/third_party/ejdb/src/util/
Dkhash.h363 @abstract Integer hash function
369 @abstract Integer comparison function
373 @abstract 64-bit integer hash function
379 @abstract 64-bit integer comparison function
383 @abstract const char* hash function
394 @abstract Another interface to const char* hash function
400 @abstract Const char* comparison function
421 @abstract Type of the hash table.
427 @abstract Initiate a hash table.
434 @abstract Destroy a hash table.
[all …]
/third_party/iowow/src/utils/
Dkhash.h373 @abstract Integer hash function
379 @abstract Integer comparison function
383 @abstract 64-bit integer hash function
389 @abstract 64-bit integer comparison function
393 @abstract const char* hash function
404 @abstract Another interface to const char* hash function
410 @abstract Const char* comparison function
431 @abstract Type of the hash table.
437 @abstract Initiate a hash table.
444 @abstract Destroy a hash table.
[all …]

12345678910>>...75