HomeSort by relevance Sort by last modified time
    Searched full:factory (Results 1 - 25 of 5046) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/misc/common/swig/include/2.0.11/octave/
factory.i 1 %include <typemaps/factory.swg>
  /prebuilts/misc/common/swig/include/2.0.11/perl5/
factory.i 1 %include <typemaps/factory.swg>
  /prebuilts/misc/common/swig/include/2.0.11/python/
factory.i 1 %include <typemaps/factory.swg>
  /prebuilts/misc/common/swig/include/2.0.11/ruby/
factory.i 1 %include <typemaps/factory.swg>
  /prebuilts/misc/common/swig/include/2.0.11/tcl/
factory.i 1 %include <typemaps/factory.swg>
  /libcore/luni/src/test/java/tests/org/w3c/dom/
DocumentBuilderSettingStrategy.java 19 public abstract void applySetting(DocumentBuilderFactory factory,
22 public abstract boolean hasSetting(DOMDocumentBuilderFactory factory);
25 public void applySetting(DocumentBuilderFactory factory,
27 factory.setCoalescing(value);
30 public boolean hasSetting(DOMDocumentBuilderFactory factory) {
31 return factory.isCoalescing();
37 public void applySetting(DocumentBuilderFactory factory, boolean value) {
38 factory.setExpandEntityReferences(value);
41 public boolean hasSetting(DOMDocumentBuilderFactory factory) {
42 return factory.isExpandEntityReferences()
    [all...]
DOMDocumentBuilderFactory.java 15 private DocumentBuilderFactory factory = null; field in class:DOMDocumentBuilderFactory
24 factory = DocumentBuilderFactory.newInstance();
26 if (factory == null) {
32 settings[i].applySetting(factory);
36 builder = factory.newDocumentBuilder();
56 return factory.isCoalescing();
60 return factory.isExpandEntityReferences();
64 return factory.isIgnoringElementContentWhitespace();
68 return factory.isNamespaceAware();
72 return factory.isValidating()
    [all...]
  /external/chromium_org/base/message_loop/
message_loop_test.h 14 // RUN_MESSAGE_LOOP_TESTS(UI, factory). Factory is a function called to create
21 void RunTest_PostTask(MessagePumpFactory factory);
22 void RunTest_PostDelayedTask_Basic(MessagePumpFactory factory);
23 void RunTest_PostDelayedTask_InDelayOrder(MessagePumpFactory factory);
24 void RunTest_PostDelayedTask_InPostOrder(MessagePumpFactory factory);
25 void RunTest_PostDelayedTask_InPostOrder_2(MessagePumpFactory factory);
26 void RunTest_PostDelayedTask_InPostOrder_3(MessagePumpFactory factory);
27 void RunTest_PostDelayedTask_SharedTimer(MessagePumpFactory factory);
28 void RunTest_EnsureDeletion(MessagePumpFactory factory);
    [all...]
  /external/chromium_org/third_party/skia/src/ports/
SkFontMgr_default_dw.cpp 4 SkFontMgr* SkFontMgr::Factory() {
SkFontMgr_default_gdi.cpp 4 SkFontMgr* SkFontMgr::Factory() {
  /external/nist-sip/java/gov/nist/javax/sip/message/
package.html 3 Class definitions for SIP messages and message factory.
  /external/skia/src/ports/
SkFontMgr_default_dw.cpp 4 SkFontMgr* SkFontMgr::Factory() {
SkFontMgr_default_gdi.cpp 4 SkFontMgr* SkFontMgr::Factory() {
  /libcore/dom/src/test/java/org/w3c/domts/
DocumentBuilderSettingStrategy.java 38 DocumentBuilderFactory factory,
41 public abstract boolean hasSetting(DOMTestDocumentBuilderFactory factory);
45 public void applySetting(DocumentBuilderFactory factory, boolean value)
47 factory.setCoalescing(value);
50 public boolean hasSetting(DOMTestDocumentBuilderFactory factory) {
51 return factory.isCoalescing();
59 public void applySetting(DocumentBuilderFactory factory, boolean value)
61 factory.setExpandEntityReferences(value);
64 public boolean hasSetting(DOMTestDocumentBuilderFactory factory) {
65 return factory.isExpandEntityReferences()
    [all...]
  /external/chromium_org/net/proxy/
dhcp_proxy_script_fetcher_factory_unittest.cc 14 DhcpProxyScriptFetcherFactory factory; local
15 factory.set_enabled(false);
16 scoped_ptr<DhcpProxyScriptFetcher> fetcher(factory.Create(NULL));
22 DhcpProxyScriptFetcherFactory factory; local
23 factory.set_enabled(true);
26 scoped_ptr<DhcpProxyScriptFetcher> fetcher(factory.Create(context.get()));
40 DhcpProxyScriptFetcherFactory factory; local
42 EXPECT_TRUE(factory.enabled());
44 EXPECT_FALSE(factory.enabled());
47 factory.set_enabled(false)
    [all...]
  /cts/tests/tests/text/src/android/text/cts/
Spannable_FactoryTest.java 22 import android.text.Spannable.Factory;
28 Factory factory = Spannable.Factory.getInstance(); local
30 Spannable spannable = factory.newSpannable(text);
36 factory.newSpannable(null);
43 Spannable.Factory factory = Spannable.Factory.getInstance(); local
44 assertNotNull(factory);
    [all...]
  /external/chromium_org/third_party/webrtc/base/
referencecountedsingletonfactory_unittest.cc 42 ReferenceCountedSingletonFactory<MyExistenceWatcher> *factory) {
43 rcsf_ptr<MyExistenceWatcher> ptr(factory);
49 TestReferenceCountedSingletonFactory factory; local
51 DoCreateAndGoOutOfScope(&factory);
56 TestReferenceCountedSingletonFactory factory; local
57 rcsf_ptr<MyExistenceWatcher> ptr(&factory);
60 DoCreateAndGoOutOfScope(&factory);
65 TestReferenceCountedSingletonFactory factory; local
66 rcsf_ptr<MyExistenceWatcher> one(&factory), two(&factory);
72 TestReferenceCountedSingletonFactory factory; local
83 TestReferenceCountedSingletonFactory factory; local
93 TestReferenceCountedSingletonFactory factory; local
103 TestReferenceCountedSingletonFactory factory; local
119 TestReferenceCountedSingletonFactory factory; local
    [all...]
  /external/deqp/framework/common/
tcuFactoryRegistry.hpp 52 void registerFactory (AbstractFactory* factory);
81 template<class Factory>
92 void registerFactory (Factory* factory) { m_registry.registerFactory(factory); }
94 Factory* getFactoryByName (const std::string& name);
95 const Factory* getFactoryByName (const std::string& name) const;
97 Factory* getFactoryByIndex (size_t index);
98 const Factory* getFactoryByIndex (size_t index) const;
100 Factory* getDefaultFactory (void) { return getFactoryByIndex(0);
    [all...]
  /external/chromium_org/google_apis/gcm/engine/
connection_factory_impl_unittest.cc 105 // A connection factory that stubs out network requests and overrides the
266 TestConnectionFactoryImpl* factory() { return &factory_; } function in class:gcm::ConnectionFactoryImplTest
290 factory()->SetConnectionListener(this);
291 factory()->Initialize(
321 ConnectionHandler* handler = factory()->GetConnectionHandler();
323 EXPECT_FALSE(factory()->IsEndpointReachable());
329 factory()->SetConnectResult(net::OK);
330 factory()->Connect();
331 EXPECT_TRUE(factory()->NextRetryAttempt().is_null());
332 EXPECT_EQ(factory()->GetCurrentEndpoint(), BuildEndpoints()[0])
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
DefaultSuggestionViewFactory.java 30 * Suggestion view factory for Google suggestions.
40 mDefaultFactory = new DefaultSuggestionView.Factory(context);
41 addFactory(new WebSearchSuggestionView.Factory(context));
47 protected final void addFactory(SuggestionViewFactory factory) {
48 mFactories.addFirst(factory);
56 for (SuggestionViewFactory factory : mFactories) {
57 mViewTypes.addAll(factory.getSuggestionViewTypes());
66 for (SuggestionViewFactory factory : mFactories) {
67 if (factory.canCreateView(suggestion)) {
68 return factory.getView(suggestion, userQuery, convertView, parent)
    [all...]
  /external/chromium_org/chrome/browser/ui/views/frame/
native_browser_frame_factory.cc 11 NativeBrowserFrameFactory* factory = NULL; member in namespace:__anon9830
19 if (!factory)
20 factory = new NativeBrowserFrameFactory;
21 return factory->Create(browser_frame, browser_view);
26 delete factory;
27 factory = new_factory;
  /external/chromium_org/third_party/skia/tests/
GrContextFactoryTest.cpp 13 DEF_GPUTEST(GrContextFactoryTest, reporter, factory) {
15 factory->destroyContexts();
19 NULL == factory->getGLContext(GrContextFactory::kNative_GLContextType));
22 factory->get(GrContextFactory::kNative_GLContextType);
24 factory->getGLContext(GrContextFactory::kNative_GLContextType) != NULL);
29 NULL == factory->getGLContext(GrContextFactory::kNull_GLContextType));
  /external/skia/tests/
GrContextFactoryTest.cpp 13 DEF_GPUTEST(GrContextFactoryTest, reporter, factory) {
15 factory->destroyContexts();
19 NULL == factory->getGLContext(GrContextFactory::kNative_GLContextType));
22 factory->get(GrContextFactory::kNative_GLContextType);
24 factory->getGLContext(GrContextFactory::kNative_GLContextType) != NULL);
29 NULL == factory->getGLContext(GrContextFactory::kNull_GLContextType));
  /external/chromium_org/components/cronet/android/java/src/org/chromium/net/
HttpUrlRequestFactory.java 15 * A factory for {@link HttpUrlRequest}'s, which uses the best HTTP stack
26 HttpUrlRequestFactory factory = null; local
28 factory = createChromiumFactory(context, config);
30 if (factory == null) {
32 factory = new HttpUrlConnectionUrlRequestFactory(context, config);
34 Log.i(TAG, "Using network stack: " + factory.getName());
35 return factory;
39 * Returns true if the factory is enabled.
44 * Returns a human-readable name of the factory.
64 HttpUrlRequestFactory factory = null local
    [all...]
  /external/chromium_org/content/browser/frame_host/
render_frame_host_factory.h 20 // A factory for creating RenderFrameHosts. There is a global factory function
25 // Creates a new RenderFrameHostImpl using the currently registered factory,
26 // or a regular RenderFrameHostImpl if no factory is registered.
35 // Returns true if there is currently a globally-registered factory.
52 // Registers a factory to be called when new RenderFrameHostImpls are created.
53 // We have only one global factory, so there must be no factory registered
55 static void RegisterFactory(RenderFrameHostFactory* factory);
57 // Unregister the previously registered factory. With no factory registered
    [all...]

Completed in 2451 milliseconds

1 2 3 4 5 6 7 8 91011>>