Searched defs:factory (Results 151 - 175 of 354) sorted by relevance

1234567891011>>

/external/deqp/modules/egl/
H A DteglPreservingSwapTests.cpp331 const eglu::NativeWindowFactory& factory = eglu::selectNativeWindowFactory(m_eglTestCtx.getNativeDisplayFactory(), m_testCtx.getCommandLine()); local
333 m_window = factory.createWindow(&m_eglTestCtx.getNativeDisplay(), m_eglDisplay, config, DE_NULL, eglu::WindowParams(480, 480, eglu::parseWindowVisibility(m_testCtx.getCommandLine())));
/external/icu/icu4c/source/test/intltest/
H A Dsvccoll.cpp386 TestFactory* factory = new TestFactory(info); local
387 if (!factory) {
398 URegistryKey key = Collator::registerFactory(factory, status);
457 errln("failed to unregister factory");
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
H A DTransliterator.java182 * In general, client code should use the factory method <code>getInstance()</code> to obtain an instance of a
1717 * Register a factory object with the given ID. The factory
1725 * @param factory the factory object
1728 public static void registerFactory(String ID, Factory factory) { argument
1729 registry.put(ID, factory, true);
1988 * The factory interface for transliterators. Transliterator
1989 * subclasses can register factory objects for IDs using the
1991 * factory objec
[all...]
H A DTransliteratorRegistry.java326 * Register an ID and a factory function pointer. This adds an
331 Transliterator.Factory factory,
333 registerEntry(ID, factory, visible);
330 put(String ID, Transliterator.Factory factory, boolean visible) argument
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DPluralRulesTest.java56 PluralRulesFactory factory = PluralRulesFactory.NORMAL; field in class:PluralRulesTest
84 PluralRules rules = factory.forLocale(locale);
314 main: for (ULocale locale : factory.getAvailableULocales()) {
315 PluralRules rules = factory.forLocale(locale);
458 PluralRules rules = factory.forLocale(ULocale.US);
463 rules = factory.forLocale(ULocale.JAPAN);
468 rules = factory.forLocale(ULocale.createCanonical("ru"));
496 ULocale[] locales = factory.getAvailableULocales();
588 for (ULocale locale : factory.getAvailableULocales()) {
592 PluralRules rules = factory
[all...]
/external/opencv/cv/src/
H A Dcvcorner.cpp229 double factorx, factory; local
313 factory = factorx = 1./factorx;
315 factory = -factory;
362 double dy = dydata[j]*factory;
377 double dy = dydata[j]*factory;
/external/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_unittest.cc532 // Construct a new version of the dynamic message via the factory.
533 DynamicMessageFactory factory; local
535 message1.reset(factory.GetPrototype(
/external/protobuf/src/google/protobuf/io/
H A Dcoded_stream.h425 // You must also provide a MessageFactory. This factory will be used to
426 // construct Message objects representing extensions. The factory's
430 // If the provided factory might return instances of protocol-compiler-
432 // a generated type, then the given factory MUST have this property: If
434 // DescriptorPool::generated_pool(), the factory MUST return the same
436 // is, given a descriptor for a generated type, the factory must return an
438 // given a descriptor for a type that is NOT in generated_pool, the factory
455 // If either pool or factory is NULL, both must be NULL.
460 MessageFactory* factory);
467 // factory ha
1147 SetExtensionRegistry(const DescriptorPool* pool, MessageFactory* factory) argument
[all...]
/external/sfntly/cpp/src/sfntly/
H A Dfont.cc215 CALLER_ATTACH Font::Builder* Font::Builder::GetOTFBuilder(FontFactory* factory, argument
217 FontBuilderPtr builder = new Builder(factory);
223 FontFactory* factory,
226 FontBuilderPtr builder = new Builder(factory);
232 FontFactory* factory) {
233 FontBuilderPtr builder = new Builder(factory);
317 Font::Builder::Builder(FontFactory* factory) argument
318 : factory_(factory),
222 GetOTFBuilder( FontFactory* factory, WritableFontData* wfd, int32_t offset_to_offset_table) argument
231 GetOTFBuilder( FontFactory* factory) argument
/external/skia/dm/
H A DDM.cpp249 push_src("gm", "", new GMSrc(r->factory()));
622 // Despite its name, factory() is returning a reference to
624 const skiatest::Test& test = r->factory();
651 GrContextFactory factory; local
652 test->proc(&reporter, &factory);
/external/skia/include/core/
H A DSkBitmap.h227 void allocPixels(const SkImageInfo& info, SkPixelRefFactory* factory, SkColorTable* ctable) { argument
228 if (!this->tryAllocPixels(info, factory, ctable)) {
/external/skia/samplecode/
H A DSampleFilterFuzz.cpp410 SkRTreeFactory factory; local
414 &factory, 0);
/external/skia/src/core/
H A DSkResourceCache.cpp148 SkResourceCacheDiscardableAllocator(SkResourceCache::DiscardableFactory factory) { argument
149 SkASSERT(factory);
150 fFactory = factory;
183 SkResourceCache::SkResourceCache(DiscardableFactory factory) { argument
185 fDiscardableFactory = factory;
187 fAllocator = SkNEW_ARGS(SkResourceCacheDiscardableAllocator, (factory));
/external/skia/tests/
H A DDeferredCanvasTest.cpp708 static void TestDeferredCanvasSurface(skiatest::Reporter* reporter, GrContextFactory* factory) { argument
710 bool useGpu = SkToBool(factory);
730 GrContext* context = factory->get(glCtxType);
790 static void TestDeferredCanvasSetSurface(skiatest::Reporter* reporter, GrContextFactory* factory) { argument
794 bool useGpu = SkToBool(factory);
814 GrContext* context = factory->get(glCtxType);
940 DEF_GPUTEST(DeferredCanvas_GPU, reporter, factory) {
941 if (factory != NULL) {
942 TestDeferredCanvasSurface(reporter, factory);
943 TestDeferredCanvasSetSurface(reporter, factory);
[all...]
H A DSurfaceTest.cpp98 // Test the wrapped factory for SkSurface by creating a texture using ctx and then treat it as
236 static void test_imagepeek(skiatest::Reporter* reporter, GrContextFactory* factory) { argument
253 ctx = factory->get(GrContextFactory::kNative_GLContextType);
286 GrContextFactory* factory) {
316 context = factory->get(glCtxType);
576 DEF_GPUTEST(Surface, reporter, factory) {
587 test_imagepeek(reporter, factory);
588 test_canvaspeek(reporter, factory);
592 if (factory) {
598 GrContext* context = factory
285 test_canvaspeek(skiatest::Reporter* reporter, GrContextFactory* factory) argument
[all...]
/external/v8/src/
H A Dcode-stubs.cc10 #include "src/factory.h"
93 ic = isolate()->factory()->CopyCode(ic);
101 Factory* factory = isolate()->factory(); local
129 Handle<Code> new_object = factory->NewCode(
362 Factory* factory = isolate->factory(); local
365 factory->strict_compare_ic_string() :
366 factory->compare_ic_string(),
372 Factory* factory local
[all...]
H A Dexecution.cc64 ? isolate->factory()->js_construct_entry_code()
65 : isolate->factory()->js_entry_code();
197 Factory* factory = isolate->factory(); local
217 return factory->undefined_value();
270 return isolate->factory()->undefined_value();
537 Handle<Object> time_obj = isolate->factory()->NewNumber(time);
561 Factory* factory = isolate->factory(); local
565 return factory
[all...]
H A Djson-parser.h34 factory_(isolate_->factory()),
175 inline Factory* factory() { return factory_; } function in class:v8::internal::BASE_EMBEDDED
212 Factory* factory = this->factory(); local
218 array = factory->NewJSArray(0);
232 array = factory->NewJSArray(0);
236 array = factory->NewJSArray(0);
240 Handle<Object> name = factory->LookupSingleCharacterStringFromCode(c0_);
241 Handle<FixedArray> element = factory->NewFixedArray(1);
243 array = factory
450 Factory* factory = isolate()->factory(); local
594 NewRawString(Factory* factory, int length, PretenureFlag pretenure) argument
601 NewRawString(Factory* factory, int length, PretenureFlag pretenure) argument
[all...]
H A Dpreparser.cc97 int pos, Scanner* scanner, PreParserFactory* factory) {
96 ExpressionFromString( int pos, Scanner* scanner, PreParserFactory* factory) argument
H A Dscopeinfo.cc52 Factory* factory = zone->isolate()->factory(); local
53 Handle<ScopeInfo> scope_info = factory->NewScopeInfo(length);
/external/v8/src/x64/
H A Dbuiltins-x64.cc9 #include "src/code-factory.h"
205 Factory* factory = masm->isolate()->factory(); local
252 factory->allocation_memento_map());
383 __ Cmp(rcx, masm->isolate()->factory()->undefined_value());
626 __ Push(masm->isolate()->factory()->ToBoolean(concurrent));
813 __ Push(masm->isolate()->factory()->undefined_value());
/external/v8/src/x87/
H A Dcodegen-x87.cc248 __ cmp(edi, Immediate(masm->isolate()->factory()->empty_fixed_array()));
268 Immediate(masm->isolate()->factory()->fixed_double_array_map()));
312 __ cmp(ebx, masm->isolate()->factory()->the_hole_value());
362 __ cmp(edi, Immediate(masm->isolate()->factory()->empty_fixed_array()));
379 Immediate(masm->isolate()->factory()->fixed_array_map()));
427 masm->isolate()->factory()->the_hole_value());
455 Factory* factory,
489 Immediate(factory->empty_string()));
454 Generate(MacroAssembler* masm, Factory* factory, Register string, Register index, Register result, Label* call_runtime) argument
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3collections.c100 static void newPool (pANTLR3_VECTOR_FACTORY factory);
101 static void closeVectorFactory (pANTLR3_VECTOR_FACTORY factory);
102 static pANTLR3_VECTOR newVector (pANTLR3_VECTOR_FACTORY factory);
103 static void returnVector (pANTLR3_VECTOR_FACTORY factory, pANTLR3_VECTOR vector);
1125 // Assume that this is not a factory made vector
1432 /// Vector factory creation
1437 pANTLR3_VECTOR_FACTORY factory; local
1439 // Allocate memory for the factory
1441 factory = (pANTLR3_VECTOR_FACTORY)ANTLR3_MALLOC((size_t)(sizeof(ANTLR3_VECTOR_FACTORY)));
1443 if (factory
1478 returnVector(pANTLR3_VECTOR_FACTORY factory, pANTLR3_VECTOR vector) argument
1495 newPool(pANTLR3_VECTOR_FACTORY factory) argument
1525 closeVectorFactory(pANTLR3_VECTOR_FACTORY factory) argument
1638 newVector(pANTLR3_VECTOR_FACTORY factory) argument
[all...]
/external/deqp/framework/platform/X11/
H A DtcuX11GlxPlatform.cpp114 GLXContext createContext (const GlxContextFactory& factory,
166 GlxRenderContext (const GlxContextFactory& factory,
297 GLXContext GlxVisual::createContext (const GlxContextFactory& factory, argument
331 return TCU_CHECK_GLX(factory.m_glXCreateContextAttribsARB(
615 GlxRenderContext::GlxRenderContext (const GlxContextFactory& factory, argument
617 : m_glxDisplay (factory.getEventState(), DE_NULL)
620 , m_GLXContext (m_glxVisual.createContext(factory, config.type))
/external/deqp/modules/glshared/
H A DglsFboCompletenessTests.cpp386 CheckerFactory& factory)
389 , m_verifier (m_ctxFormats, factory, renderCtx)
384 Context(TestContext& testCtx, RenderContext& renderCtx, CheckerFactory& factory) argument

Completed in 2148 milliseconds

1234567891011>>