| /external/skia/src/ports/ |
| D | SkTypeface_win_dw.h | 40 struct Loaders : public SkNVRefCnt<Loaders> { struct 41 Loaders(IDWriteFactory* factory, in Loaders() argument 48 Loaders(const Loaders&) = delete; 49 Loaders& operator=(const Loaders&) = delete; argument 50 Loaders(Loaders&&) = delete; 51 Loaders& operator=(Loaders&&) = delete; argument 52 ~Loaders(); 70 sk_sp<Loaders> loaders, argument 107 sk_sp<Loaders> loaders, 143 mutable sk_sp<Loaders> fLoaders;
|
| /external/python/jinja/src/jinja2/ |
| D | __init__.py | 23 from .loaders import BaseLoader 24 from .loaders import ChoiceLoader 25 from .loaders import DictLoader 26 from .loaders import FileSystemLoader 27 from .loaders import FunctionLoader 28 from .loaders import ModuleLoader 29 from .loaders import PackageLoader 30 from .loaders import PrefixLoader
|
| D | loaders.py | 37 """Baseclass for all loaders. Subclass this and override `get_source` to 103 override this method as loaders working on collections of other 104 loaders (such as :class:`PrefixLoader` or :class:`ChoiceLoader`) 406 """A loader that is passed a dict of loaders where each loader is bound 473 def __init__(self, loaders): argument 474 self.loaders = loaders 477 for loader in self.loaders: 486 for loader in self.loaders: 495 for loader in self.loaders:
|
| /external/python/jinja/tests/ |
| D | test_loader.py | 15 from jinja2 import loaders 18 from jinja2.loaders import split_template_path 69 class TestLoader(loaders.BaseLoader): 82 env = Environment(loader=loaders.DictLoader(mapping), cache_size=0) 87 loader = loaders.DictLoader(mapping) 100 loader1 = loaders.DictLoader({"foo": "one"}) 101 loader2 = loaders.DictLoader({"foo": "two"}) 109 env = Environment(loader=loaders.DictLoader(mapping)) 134 filesystem_loader = loaders.FileSystemLoader(self.searchpath) 143 filesystem_loader = loaders.FileSystemLoader(searchpath) [all …]
|
| D | conftest.py | 6 from jinja2 import loaders 25 return loaders.DictLoader({"justdict.html": "FOO"}) 31 return loaders.PackageLoader("res", "templates") 38 return loaders.FileSystemLoader(here + "/res/templates") 44 return loaders.FunctionLoader({"justfunction.html": "FOO"}.get) 50 return loaders.ChoiceLoader([dict_loader, package_loader]) 56 return loaders.PrefixLoader({"a": filesystem_loader, "b": dict_loader})
|
| /external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/core/src/main/java/com/google/android/exoplayer2/source/ |
| D | CompositeSequenceableLoader.java | 25 protected final SequenceableLoader[] loaders; field in CompositeSequenceableLoader 27 public CompositeSequenceableLoader(SequenceableLoader[] loaders) { in CompositeSequenceableLoader() argument 28 this.loaders = loaders; in CompositeSequenceableLoader() 34 for (SequenceableLoader loader : loaders) { in getBufferedPositionUs() 46 for (SequenceableLoader loader : loaders) { in getNextLoadPositionUs() 57 for (SequenceableLoader loader : loaders) { in reevaluateBuffer() 72 for (SequenceableLoader loader : loaders) { in continueLoading() 88 for (SequenceableLoader loader : loaders) { in isLoading()
|
| D | CompositeSequenceableLoaderFactory.java | 24 * @param loaders The sub-loaders that make up the {@link SequenceableLoader} to be built. 25 * @return A composite {@link SequenceableLoader} that comprises the given loaders. 27 SequenceableLoader createCompositeSequenceableLoader(SequenceableLoader... loaders); in createCompositeSequenceableLoader() argument
|
| D | DefaultCompositeSequenceableLoaderFactory.java | 23 public SequenceableLoader createCompositeSequenceableLoader(SequenceableLoader... loaders) { in createCompositeSequenceableLoader() argument 24 return new CompositeSequenceableLoader(loaders); in createCompositeSequenceableLoader()
|
| /external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/core/src/main/java/com/google/android/exoplayer2/source/ |
| D | CompositeSequenceableLoader.java | 25 protected final SequenceableLoader[] loaders; field in CompositeSequenceableLoader 27 public CompositeSequenceableLoader(SequenceableLoader[] loaders) { in CompositeSequenceableLoader() argument 28 this.loaders = loaders; in CompositeSequenceableLoader() 34 for (SequenceableLoader loader : loaders) { in getBufferedPositionUs() 46 for (SequenceableLoader loader : loaders) { in getNextLoadPositionUs() 57 for (SequenceableLoader loader : loaders) { in reevaluateBuffer() 72 for (SequenceableLoader loader : loaders) { in continueLoading() 88 for (SequenceableLoader loader : loaders) { in isLoading()
|
| D | CompositeSequenceableLoaderFactory.java | 24 * @param loaders The sub-loaders that make up the {@link SequenceableLoader} to be built. 25 * @return A composite {@link SequenceableLoader} that comprises the given loaders. 27 SequenceableLoader createCompositeSequenceableLoader(SequenceableLoader... loaders); in createCompositeSequenceableLoader() argument
|
| D | DefaultCompositeSequenceableLoaderFactory.java | 23 public SequenceableLoader createCompositeSequenceableLoader(SequenceableLoader... loaders) { in createCompositeSequenceableLoader() argument 24 return new CompositeSequenceableLoader(loaders); in createCompositeSequenceableLoader()
|
| /external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/ |
| D | CompositeResourceLoader.java | 35 private final List<ResourceLoader> loaders = new ArrayList<ResourceLoader>(); field in CompositeResourceLoader 37 public CompositeResourceLoader(Iterable<ResourceLoader> loaders) { in CompositeResourceLoader() argument 38 for (ResourceLoader loader : loaders) { in CompositeResourceLoader() 43 public CompositeResourceLoader(ResourceLoader... loaders) { in CompositeResourceLoader() argument 44 for (ResourceLoader loader : loaders) { in CompositeResourceLoader() 50 loaders.add(loader); in add() 54 for (ResourceLoader loader : loaders) { in open() 97 for (ResourceLoader loader : loaders) { in getResourceVersionId()
|
| /external/libchrome/third_party/jinja2/ |
| D | loaders.py | 3 jinja2.loaders 38 """Baseclass for all loaders. Subclass this and override `get_source` to 103 override this method as loaders working on collections of other 104 loaders (such as :class:`PrefixLoader` or :class:`ChoiceLoader`) 323 """A loader that is passed a dict of loaders where each loader is bound 390 def __init__(self, loaders): argument 391 self.loaders = loaders 394 for loader in self.loaders: 403 for loader in self.loaders: 412 for loader in self.loaders:
|
| D | __init__.py | 35 # loaders 36 from jinja2.loaders import BaseLoader, FileSystemLoader, PackageLoader, \
|
| /external/aws-sdk-java-v2/codegen/src/main/java/software/amazon/awssdk/codegen/internal/ |
| D | ClassLoaderHelper.java | 33 * thread, and if not found, via the class loaders of the optionally specified classes in the 45 * true if the class loaders of the optionally specified classes take precedence over 88 * and if not found, via the class loaders of the optionally specified classes in the order of 105 * loader of the current thread, and if not found, via the class loaders of the optionally 117 * true if the class loaders of the optionally specified classes take precedence over
|
| /external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/core/src/test/java/com/google/android/exoplayer2/source/ |
| D | CompositeSequenceableLoaderTest.java | 31 * position among all sub-loaders. 46 * position that is not {@link C#TIME_END_OF_SOURCE} among all sub-loaders. 65 * C#TIME_END_OF_SOURCE} when all sub-loaders have buffered till end-of-source. 84 * load position among all sub-loaders. 99 * load position that is not {@link C#TIME_END_OF_SOURCE} among all sub-loaders. 117 * C#TIME_END_OF_SOURCE} when all sub-loaders have next load position at end-of-source. 152 * Tests that {@link CompositeSequenceableLoader#continueLoading(long)} allows all loaders with
|
| /external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/core/src/test/java/com/google/android/exoplayer2/source/ |
| D | CompositeSequenceableLoaderTest.java | 31 * position among all sub-loaders. 46 * position that is not {@link C#TIME_END_OF_SOURCE} among all sub-loaders. 65 * C#TIME_END_OF_SOURCE} when all sub-loaders have buffered till end-of-source. 84 * load position among all sub-loaders. 99 * load position that is not {@link C#TIME_END_OF_SOURCE} among all sub-loaders. 117 * C#TIME_END_OF_SOURCE} when all sub-loaders have next load position at end-of-source. 152 * Tests that {@link CompositeSequenceableLoader#continueLoading(long)} allows all loaders with
|
| /external/apache-commons-bcel/src/site/xdoc/manual/ |
| D | application-areas.xml | 49 <subsection name="Class loaders"> 51 Class loaders are responsible for loading class files from the 74 Figure 7: Class loaders 79 Using class loaders is an elegant way of extending the Java 91 original byte code. In fact, class loaders may even create classes
|
| /external/python/cpython3/Doc/reference/ |
| D | import.rst | 205 .. _finders-and-loaders: 207 Finders and loaders 217 two conceptual objects, :term:`finders <finder>` and :term:`loaders <loader>`. 237 The following sections describe the protocol for finders and loaders in more 242 In previous versions of Python, finders returned :term:`loaders <loader>` 243 directly, whereas now they return module specs which *contain* loaders. 244 Loaders are still used during import but have fewer responsibilities. 405 loaders. These were previously performed by the 408 Loaders section in Loading 411 Module loaders provide the critical function of loading: module execution. [all …]
|
| /external/kotlinx.serialization/formats/json-tests/jvmTest/src/kotlinx/serialization/ |
| D | SerializerByTypeCacheTest.kt | 33 …* and the element class is loaded by different loaders, then some implementations of the [KType] (… 37 …ss of the cache for such cases - that different serializers for different loaders will be returned. 48 // class loaders must be different in testDifferentClassLoaders()
|
| /external/autotest/frontend/ |
| D | settings.py | 97 'django.template.loaders.filesystem.Loader', 98 'django.template.loaders.app_directories.Loader', 99 # 'django.template.loaders.eggs.Loader',
|
| /external/apache-velocity-engine/velocity-engine-core/src/main/java/org/apache/velocity/runtime/resource/loader/ |
| D | ResourceLoader.java | 40 * This is abstract class the all text resource loaders should 73 * loaders and must be called to set up common 74 * properties shared by all resource loaders 86 * these two properties are not required for all loaders. in commonInit()
|
| /external/python/setuptools/setuptools/_vendor/importlib_resources/ |
| D | _compat.py | 30 Adapt loaders to provide TraversableResources and other 34 loaders do not yet implement TraversableResources.
|
| /external/python/setuptools/pkg_resources/_vendor/importlib_resources/ |
| D | _compat.py | 30 Adapt loaders to provide TraversableResources and other 34 loaders do not yet implement TraversableResources.
|
| /external/lua/doc/ |
| D | lua.1 | 121 the path used by require to search for Lua loaders. 125 the path used by require to search for C loaders.
|