HomeSort by relevance Sort by last modified time
    Searched refs:factories (Results 1 - 25 of 55) sorted by null

1 2 3

  /external/chromium_org/content/browser/webui/
web_ui_controller_factory_registry.cc 22 std::vector<WebUIControllerFactory*>* factories = g_factories.Pointer(); local
23 for (size_t i = 0; i < factories->size(); ++i) {
24 if ((*factories)[i] == factory) {
25 factories->erase(factories->begin() + i);
38 std::vector<WebUIControllerFactory*>* factories = g_factories.Pointer(); local
39 for (size_t i = 0; i < factories->size(); ++i) {
40 WebUIController* controller = (*factories)[i]->CreateWebUIControllerForURL(
50 std::vector<WebUIControllerFactory*>* factories = g_factories.Pointer(); local
51 for (size_t i = 0; i < factories->size(); ++i)
61 std::vector<WebUIControllerFactory*>* factories = g_factories.Pointer(); local
71 std::vector<WebUIControllerFactory*>* factories = g_factories.Pointer(); local
    [all...]
  /external/smack/asmack-master/static-src/custom/de/measite/smack/
Sasl.java 62 Hashtable<SaslClientFactory,Object> factories = new Hashtable<SaslClientFactory,Object>(); local
63 factories.put(new SaslClientFactory(), new Object());
64 return factories.keys();
  /external/smack/src/de/measite/smack/
Sasl.java 62 Hashtable<SaslClientFactory,Object> factories = new Hashtable<SaslClientFactory,Object>(); local
63 factories.put(new SaslClientFactory(), new Object());
64 return factories.keys();
  /external/chromium_org/v8/test/mjsunit/regress/
regress-1560.js 51 function test(factories, w) {
52 factories.forEach(function(f) { w(f(), 0); });
53 factories.forEach(function(f) { w(f(), 0); });
55 factories.forEach(function(f) { w(f(), 0); });
  /external/v8/test/mjsunit/regress/
regress-1560.js 51 function test(factories, w) {
52 factories.forEach(function(f) { w(f(), 0); });
53 factories.forEach(function(f) { w(f(), 0); });
55 factories.forEach(function(f) { w(f(), 0); });
  /external/chromium_org/third_party/icu/source/common/
serv.cpp 334 , factories(NULL)
346 , factories(NULL)
359 delete factories;
360 factories = NULL;
424 // called only by factories, treat as private
468 int32_t limit = factories->size();
473 if (factory == (const ICUServiceFactory*)factories->elementAt(i)) {
501 ICUServiceFactory* f = (ICUServiceFactory*)factories->elementAt(index++);
667 } else if (factories != NULL) {
668 for (int32_t pos = factories->size(); --pos >= 0;)
    [all...]
rbbi.cpp 1754 UStack *factories = new UStack(_deleteFactory, NULL, status); local
    [all...]
serv.h 52 * <p>ICUServiceKeys are used to communicate with factories to
55 * descriptor to use in querying the cache and factories, and
60 * and the currentID. Factories that handle complex keys,
61 * for example number format factories that generate multiple
238 * previously-registered factories.</p>
363 * ICUService will notifiy this listener when factories are added to
479 * previously-registered factories to handle the ones it does not
482 * <p>ICUService uses ICUServiceKeys to query factories and perform
501 * to receive notification when factories are added or removed from
511 * of the objects returned from get, to limit the factories that ca
    [all...]
  /external/icu4c/common/
serv.cpp 339 , factories(NULL)
349 , factories(NULL)
361 delete factories;
362 factories = NULL;
425 // called only by factories, treat as private
469 int32_t limit = factories->size();
474 if (factory == (const ICUServiceFactory*)factories->elementAt(i)) {
502 ICUServiceFactory* f = (ICUServiceFactory*)factories->elementAt(index++);
667 } else if (factories != NULL) {
668 for (int32_t pos = factories->size(); --pos >= 0;)
    [all...]
rbbi.cpp 1825 UStack *factories = new UStack(_deleteFactory, NULL, status); local
    [all...]
serv.h 52 * <p>ICUServiceKeys are used to communicate with factories to
55 * descriptor to use in querying the cache and factories, and
60 * and the currentID. Factories that handle complex keys,
61 * for example number format factories that generate multiple
239 * previously-registered factories.</p>
364 * ICUService will notifiy this listener when factories are added to
482 * previously-registered factories to handle the ones it does not
485 * <p>ICUService uses ICUServiceKeys to query factories and perform
504 * to receive notification when factories are added or removed from
514 * of the objects returned from get, to limit the factories that ca
    [all...]
  /external/chromium_org/content/renderer/media/
renderer_gpu_video_decoder_factories.cc 323 scoped_refptr<RendererGpuVideoDecoderFactories> factories = local
325 factories->message_loop_ = message_loop_;
326 factories->main_message_loop_ = main_message_loop_;
327 factories->gpu_channel_host_ = gpu_channel_host_;
328 factories->context_ = context_;
329 return factories;
rtc_video_decoder.h 52 // run on the message loop of |factories|.
55 const scoped_refptr<media::GpuVideoDecoderFactories>& factories);
114 // The meessage loop of |factories| will be saved to |vda_loop_proxy_|.
116 const scoped_refptr<media::GpuVideoDecoderFactories>& factories);
rtc_video_decoder.cc 72 const scoped_refptr<media::GpuVideoDecoderFactories>& factories)
75 factories_(factories),
76 vda_loop_proxy_(factories->GetMessageLoop()),
125 const scoped_refptr<media::GpuVideoDecoderFactories>& factories) {
138 decoder.reset(new RTCVideoDecoder(factories));
140 .reset(factories->CreateVideoDecodeAccelerator(profile, decoder.get()));
145 factories->GetMessageLoop()->DeleteSoon(FROM_HERE, decoder.release());
  /external/apache-http/src/org/apache/commons/logging/
LogFactory.java 284 protected static Hashtable factories = null; field in class:LogFactory
288 * <code>factories</code> map, but for the case where
297 * Note that <code>factories</code> is a <i>Hashtable</i> (not a HashMap),
635 * having to care about factories.
657 * having to care about factories.
692 synchronized (factories) {
699 LogFactory factory = (LogFactory) factories.get(classLoader);
702 factories.remove(classLoader);
723 synchronized (factories) {
724 Enumeration elements = factories.elements()
    [all...]
  /external/chromium_org/media/filters/
gpu_video_decoder.h 37 // The message loop of |factories| will be saved to |gvd_loop_proxy_|.
39 const scoped_refptr<GpuVideoDecoderFactories>& factories);
gpu_video_decoder.cc 55 const scoped_refptr<GpuVideoDecoderFactories>& factories)
57 gvd_loop_proxy_(factories->GetMessageLoop()),
59 factories_(factories),
  /frameworks/base/services/java/com/android/server/firewall/
IntentFirewall.java 79 FilterFactory[] factories = new FilterFactory[] { typedefs
102 factoryMap = new HashMap<String, FilterFactory>(factories.length * 4 / 3);
103 for (int i=0; i<factories.length; i++) {
104 FilterFactory factory = factories[i];
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.jdt.apt.core_3.3.401.R36_v20100727-0110.jar 
org.apache.commons.logging_1.0.4.v201005080501.jar 
  /external/robolectric/lib/main/
commons-logging-1.1.1.jar 
  /prebuilts/devtools/tools/lib/
commons-logging-1.1.1.jar 
  /prebuilts/tools/common/http-client/
commons-logging-1.1.1.jar 
  /prebuilts/tools/common/m2/repository/commons-logging/commons-logging/1.1.1/
commons-logging-1.1.1.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.equinox.common_3.4.0.v20080421-2006.jar 

Completed in 893 milliseconds

1 2 3