Searched
refs:get (Results
501 -
525 of
4892) sorted by null
<<21222324252627282930>>
/external/apache-http/src/org/apache/http/conn/scheme/ |
SchemeRegistry.java | 78 Scheme found = get(name); 114 public synchronized final Scheme get(String name) { method in class:SchemeRegistry 120 Scheme found = registeredSchemes.get(name); 128 * using {@link #getScheme(String) getScheme} or {@link #get get}.
|
/external/chromium/base/ |
message_pump_libevent.cc | 170 if (evt.get() == NULL) { 175 int old_interest_mask = evt.get()->ev_events & 182 event_del(evt.get()); 186 if (EVENT_FD(evt.get()) != fd) { 187 NOTREACHED() << "FDs don't match" << EVENT_FD(evt.get()) << "!=" << fd; 193 event_set(evt.get(), fd, event_mask, OnLibeventNotification, delegate); 196 if (event_base_set(event_base_, evt.get()) != 0) { 201 if (event_add(evt.get(), NULL) != 0) { 269 event_set(timer_event.get(), -1, 0, timer_callback, event_base_); 270 event_base_set(event_base_, timer_event.get()); [all...] |
singleton.h | 55 // 1. FooClass* ptr = Singleton<FooClass>::get(); 58 // 3. Singleton<FooClass>::get()->Bar(); 97 // (a) Every call to get(), operator->() and operator*() incurs some overhead 99 // initialized. You may wish to cache the result of get(); it will not 114 static Type* get() { function in class:Singleton 126 // Object isn't created yet, maybe we will get to create it, let's try... 131 // will ever get here. Threads might be spinning on us, and they will 136 // synchronization between different threads calling get(). 169 return *get(); 173 return get(); [all...] |