Home
last modified time | relevance | path

Searched refs:creator (Results 1 – 25 of 182) sorted by relevance

12345678

/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/
DDiskLruCacheTest.java156 DiskLruCache.Editor creator = cache.edit("k1"); in writeAndReadEntry() local
157 setString(creator, 0, "ABC"); in writeAndReadEntry()
158 setString(creator, 1, "DE"); in writeAndReadEntry()
159 assertNull(creator.newSource(0)); in writeAndReadEntry()
160 assertNull(creator.newSource(1)); in writeAndReadEntry()
161 creator.commit(); in writeAndReadEntry()
169 DiskLruCache.Editor creator = cache.edit("k1"); in readAndWriteEntryAcrossCacheOpenAndClose() local
170 setString(creator, 0, "A"); in readAndWriteEntryAcrossCacheOpenAndClose()
171 setString(creator, 1, "B"); in readAndWriteEntryAcrossCacheOpenAndClose()
172 creator.commit(); in readAndWriteEntryAcrossCacheOpenAndClose()
[all …]
/external/guice/core/test/com/google/inject/
DSuperclassTest.java33 Provider<Sub> creator = injector.getProvider(Sub.class); in testSuperclassInjection() local
34 Sub sub = creator.get(); in testSuperclassInjection()
35 sub = creator.get(); in testSuperclassInjection()
36 sub = creator.get(); in testSuperclassInjection()
37 sub = creator.get(); in testSuperclassInjection()
38 sub = creator.get(); in testSuperclassInjection()
/external/python/cpython3/Lib/xml/dom/
Ddomreg.py51 creator = None
65 for creator in registered.values():
66 dom = creator()
70 for creator in well_known_implementations.keys():
72 dom = getDOMImplementation(name = creator)
/external/python/cpython2/Lib/xml/dom/
Ddomreg.py53 creator = None
67 for creator in registered.values():
68 dom = creator()
72 for creator in well_known_implementations.keys():
74 dom = getDOMImplementation(name = creator)
/external/valgrind/drd/
Ddrd_segment.c63 const DrdThreadId creator, in sg_init() argument
70 tl_assert(creator == DRD_INVALID_THREADID in sg_init()
71 || DRD_(IsValidDrdThreadId)(creator)); in sg_init()
73 creator_sg = (creator != DRD_INVALID_THREADID in sg_init()
74 ? DRD_(thread_get_segment)(creator) : 0); in sg_init()
117 Segment* DRD_(sg_new)(const DrdThreadId creator, const DrdThreadId created) in DRD_()
127 sg_init(sg, creator, created); in DRD_()
/external/python/cpython2/Mac/Modules/
DMacOS.c295 PyObject *creator, *type, *res; in MacOS_GetCreatorAndType() local
320 creator = PyString_FromStringAndSize( in MacOS_GetCreatorAndType()
323 res = Py_BuildValue("OO", creator, type); in MacOS_GetCreatorAndType()
324 Py_DECREF(creator); in MacOS_GetCreatorAndType()
353 creator = PyString_FromStringAndSize((char*)&(finfo->fileCreator), 4); in MacOS_GetCreatorAndType()
356 res = Py_BuildValue("OO", creator, type); in MacOS_GetCreatorAndType()
357 Py_DECREF(creator); in MacOS_GetCreatorAndType()
367 ResType creator, type; in MacOS_SetCreatorAndType() local
374 PyMac_GetFSRef, &ref, PyMac_GetOSType, &creator, PyMac_GetOSType, &type)) { in MacOS_SetCreatorAndType()
381 PyMac_GetFSSpec, &fss, PyMac_GetOSType, &creator, PyMac_GetOSType, &type)) in MacOS_SetCreatorAndType()
[all …]
Dicgluemodule.c314 OSType type, creator; in ici_ICMapTypeCreator() local
320 PyMac_GetOSType, &creator, in ici_ICMapTypeCreator()
323 if ((err=ICMapTypeCreator(self->inst, type, creator, filename, &entry)) != 0 ) in ici_ICMapTypeCreator()
360 newiciobject(OSType creator) in newiciobject() argument
368 if ((err=ICStart(&self->inst, creator)) != 0 ) { in newiciobject()
430 OSType creator; in ic_ICStart() local
432 if (!PyArg_ParseTuple(args, "O&", PyMac_GetOSType, &creator)) in ic_ICStart()
434 return (PyObject *)newiciobject(creator); in ic_ICStart()
/external/guice/extensions/servlet/src/com/google/inject/servlet/
DServletScopes.java62 public <T> Provider<T> scope(final Key<T> key, final Provider<T> creator) {
90 t = creator.get();
111 return creator.get();
122 t = creator.get();
133 return String.format("%s[%s]", creator, REQUEST);
148 public <T> Provider<T> scope(final Key<T> key, final Provider<T> creator) {
161 t = creator.get();
171 return String.format("%s[%s]", creator, SESSION);
/external/caliper/caliper/src/test/java/com/google/caliper/runner/
DBenchmarkCreatorTest.java34 BenchmarkCreator creator = new BenchmarkCreator(PublicDefaultConstructorNoParamBenchmark.class, in publicDefaultConstructorNoParamBenchmark() local
37 Object benchmarkInstance = creator.createBenchmarkInstance(); in publicDefaultConstructorNoParamBenchmark()
46 BenchmarkCreator creator = new BenchmarkCreator( in publicDefaultConstructorWithParamBenchmark() local
50 Object benchmarkInstance = creator.createBenchmarkInstance(); in publicDefaultConstructorWithParamBenchmark()
/external/python/cpython2/Doc/library/
Dic.rst39 Create an Internet Config object. The signature is a 4-character creator code of
49 maptypecreator(type, creator[, filename])
99 The mapping entry is returned as a tuple ``(version, type, creator, postcreator,
101 is the entry version number, *type* is the 4-character filetype, *creator* is
102 the 4-character creator type, *postcreator* is the 4-character creator code of
111 .. method:: IC.maptypecreator(type, creator[, filename])
113 Return the mapping entry for files with given 4-character *type* and *creator*
115 correct entry (if the creator code is ``'????'``, for instance).
123 result, set its creator and type correctly based on its extension. The finder
Dmacos.rst81 Return the file creator and file type as two four-character strings. The *file*
89 .. function:: SetCreatorAndType(file, creator, type)
91 Set the file creator and file type. The *file* parameter can be a pathname or an
92 ``FSSpec`` or ``FSRef`` object. *creator* and *type* must be four character
/external/python/cpython2/Mac/Modules/icn/
D_Icnmodule.c802 OSType creator; in Icn_GetIconRef() local
810 PyMac_GetOSType, &creator, in Icn_GetIconRef()
814 creator, in Icn_GetIconRef()
859 OSType creator; in Icn_RegisterIconRefFromIconFamily() local
867 PyMac_GetOSType, &creator, in Icn_RegisterIconRefFromIconFamily()
871 _err = RegisterIconRefFromIconFamily(creator, in Icn_RegisterIconRefFromIconFamily()
885 OSType creator; in Icn_RegisterIconRefFromResource() local
894 PyMac_GetOSType, &creator, in Icn_RegisterIconRefFromResource()
899 _err = RegisterIconRefFromResource(creator, in Icn_RegisterIconRefFromResource()
914 OSType creator; in Icn_RegisterIconRefFromFSRef() local
[all …]
/external/vulkan-validation-layers/
D.gitignore32 *.creator
33 *.creator.user
/external/syslinux/gpxe/src/arch/i386/interface/pxe/
Dpxe_preboot.c143 struct pxe_dhcp_packet_creator *creator; in pxenv_get_cached_info() local
166 creator = &pxe_dhcp_packet_creators[idx]; in pxenv_get_cached_info()
167 if ( ( rc = creator->create ( pxe_netdev, info, in pxenv_get_cached_info()
/external/tensorflow/tensorflow/core/framework/
Dresource_mgr.h139 std::function<Status(T**)> creator) TF_MUST_USE_RESULT;
239 T** value, std::function<Status(T**)> creator);
383 std::function<Status(T**)> creator) { in LookupOrCreate() argument
389 s = creator(resource); in LookupOrCreate()
476 T** value, std::function<Status(T**)> creator) { in LookupOrCreateResource() argument
479 creator); in LookupOrCreateResource()
/external/libxml2/
Dcheck-xinclude-test-suite.py173 creator = case.prop('creator')
174 if creator != None:
175 print "=>", creator
/external/python/cpython2/Lib/plat-mac/
Dic.py223 def maptypecreator(self, type, creator, filename=""): argument
224 return self.ic.ICMapTypeCreator(type, creator, filename)
250 def maptypecreator(type, creator, filename=""): argument
253 return _dft_ic.maptypecreator(type, creator, filename)
Dbundlebuilder.py91 creator = None variable in BundleBuilder
132 if self.creator is None:
134 self.creator = plist.CFBundleSignature
136 self.creator = "????"
137 plist.CFBundleSignature = self.creator
183 assert len(self.type) == len(self.creator) == 4, \
187 f.write(self.type + self.creator)
887 builder.creator = arg
/external/guice/core/src/com/google/inject/internal/
DScoping.java234 InternalFactory<? extends T> creator, Object source, Scoping scoping) {
237 return creator;
243 = scope.scope(key, new ProviderToInternalFactoryAdapter<T>(injector, creator));
DSingletonScope.java102 public <T> Provider<T> scope(final Key<T> key, final Provider<T> creator) { in scope() argument
145 T provided = creator.get(); in scope()
335 return String.format("%s[%s]", creator, Scopes.SINGLETON); in scope()
/external/python/cpython2/Lib/email/test/data/
Dmsg_22.txt16 ; x-mac-creator="474B4F4E"
30 ; x-mac-creator="474B4F4E"
/external/python/cpython3/Lib/test/test_email/data/
Dmsg_22.txt16 ; x-mac-creator="474B4F4E"
30 ; x-mac-creator="474B4F4E"
/external/valgrind/drd/tests/
Dfp_race_xml.stderr.exp31 <trace><text>drd_pre_thread_create creator = 0, created = 1</text></trace>
33 <trace><text>drd_pre_thread_create creator = 1, created = 2</text></trace>
/external/caliper/caliper/src/main/java/com/google/caliper/runner/
DExperimentModule.java65 static Object provideRunningBenchmark(BenchmarkCreator creator) { in provideRunningBenchmark() argument
66 return creator.createBenchmarkInstance(); in provideRunningBenchmark()
/external/skqp/tools/shape/
Dusing_skia_and_harfbuzz.cpp110 StringOption creator = StringOption("-t", "PDF creator", "---"); member
122 &keywords, &creator, &font_file, &font_size, &left_margin, in Config()
186 pdf_info.fCreator = config.creator.value.c_str(); in MakePDFDocument()

12345678