/external/chromium/base/memory/ |
ref_counted.h | 234 scoped_refptr(const scoped_refptr<U>& r) : ptr_(r.get()) { 244 T* get() const { return ptr_; } function in class:scoped_refptr 276 return *this = r.get();
|
/external/chromium/base/win/ |
event_trace_provider.h | 71 EVENT_TRACE_HEADER* get() { return& header; } function in class:base::win::EtwMofEvent
|
/external/chromium/chrome/browser/resources/touch_ntp/standalone/ |
standalone_hack.js | 207 * Get index into apps of an application object 221 * Get an application object given the application ID 522 get: classListGetter,
|
/external/chromium/chrome/common/extensions/ |
update_manifest.cc | 102 xmlDocPtr get() { function in class:ScopedXmlDocument 136 // Get the updatecheck node. 162 // Get the version. 169 if (!version.get()) { 176 // Get the minimum browser version (not required). 181 if (!browser_min_version.get()) { 213 if (!document.get()) { 218 xmlNode *root = xmlDocGetRootElement(document.get());
|
/external/chromium/net/http/ |
http_auth_gssapi_posix.h | 204 gss_ctx_id_t get() const { return security_context_; } function in class:net::ScopedSecurityContext
|
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/ |
WebViewFindApisTestBase.java | 87 return future.get(10, TimeUnit.SECONDS); 115 return future.get(10, TimeUnit.SECONDS); 145 public int get(long timeout, TimeUnit unit) throws Throwable { method in class:WebViewFindApisTestBase.IntegerFuture
|
/external/chromium_org/base/android/java/src/org/chromium/base/ |
ThreadUtils.java | 69 task.get(); 103 return task.get();
|
/external/chromium_org/base/ |
bind_helpers.h | 183 // To get around this, we play a dirty trick with multiple inheritance. 296 T* get() const { return ptr_; } function in class:base::internal::UnretainedWrapper 305 const T& get() const { return *ptr_; } function in class:base::internal::ConstRefWrapper 336 T* get() const { return ptr_; } function in class:base::internal::OwnedWrapper 348 // It is needed to get around the fact that Bind() takes a const reference to 396 return unretained.get(); 404 return const_ref.get(); 411 static ForwardType Unwrap(const scoped_refptr<T>& o) { return o.get(); } 424 return o.get();
|
/external/chromium_org/base/containers/ |
scoped_ptr_hash_map.h | 113 Value* get(const Key& k) const { function in class:base::ScopedPtrHashMap
|
/external/chromium_org/base/memory/ |
ref_counted.h | 243 scoped_refptr(const scoped_refptr<U>& r) : ptr_(r.get()) { 253 T* get() const { return ptr_; } function in class:scoped_refptr 281 return *this = r.get();
|
scoped_vector.h | 74 std::vector<T*>& get() { return v_; } function in class:ScopedVector 75 const std::vector<T*>& get() const { return v_; } function in class:ScopedVector
|
weak_ptr.h | 120 return flag_.get() && !flag_->HasOneRef(); 145 // otherwise get instantiated separately for each distinct instantiation of 203 T* get() const { return ref_.is_valid() ? ptr_ : NULL; } function in class:base::WeakPtr 206 DCHECK(get() != NULL); 207 return *get(); 210 DCHECK(get() != NULL); 211 return get(); 225 operator Testable() const { return get() ? &WeakPtr::ptr_ : NULL; }
|
/external/chromium_org/base/win/ |
event_trace_provider.h | 75 EVENT_TRACE_HEADER* get() { return& header; } function in class:base::win::EtwMofEvent
|
/external/chromium_org/chrome/browser/mac/ |
security_wrappers.h | 99 CrSKeychainItemAttributesAndData* get() const { function in class:chrome::ScopedCrSKeychainItemAttributesAndData 100 return attributes_and_data_.get();
|
/external/chromium_org/chrome/test/functional/perf/endure_graphs/ |
endure_plotter.js | 43 Rows.prototype.get = function(i) { 265 // Get data for the revision number(s) to plot. 268 var row = dataRows.get(i); 344 var row = rows.get(i); 352 // Get the revision number to plot. 355 // Since the last graph (test run) might still be in progress, get the 408 var info = eventRows.get(index); 421 // Get data for the events to display, if one was requested in the params.
|
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/ |
MonthPicker.java | 34 init(cal.get(Calendar.YEAR), cal.get(Calendar.MONTH), null); 83 return getCurrentDate().get(Calendar.MONTH); 93 return getMaxDate().get(Calendar.YEAR); 98 return getMinDate().get(Calendar.YEAR); 104 if (year == getMaxDate().get(Calendar.YEAR)) { 105 return getMaxDate().get(Calendar.MONTH); 112 if (year == getMinDate().get(Calendar.YEAR)) { 113 return getMinDate().get(Calendar.MONTH);
|
/external/chromium_org/net/http/ |
http_auth_gssapi_posix.h | 217 gss_ctx_id_t get() const { return security_context_; } function in class:net::ScopedSecurityContext
|
/external/chromium_org/ppapi/cpp/ |
var.h | 238 /// it does not call into the browser to get the object description. 255 /// - If NULL is passed, we return NULL from get() and do nothing. 258 /// var from get and have the output value take ownership of that var. 261 /// from get, and nothing else should change. 265 /// foo_interface->Bar(a, b, Var::OutException(exception).get()); 287 PP_Var* get() { function in class:pp::Var::OutException 309 // get a compilation error.
|
/external/chromium_org/sync/android/java/src/org/chromium/sync/signin/ |
ChromeSigninController.java | 51 public static ChromeSigninController get(Context context) { method in class:ChromeSigninController
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
Dictionary.cpp | 124 value = options->Get(v8Key); 130 bool Dictionary::get(const String& key, v8::Local<v8::Value>& value) const function in class:WebCore::Dictionary 135 bool Dictionary::get(const String& key, bool& value) const function in class:WebCore::Dictionary 151 get(key, value); 155 bool Dictionary::get(const String& key, int32_t& value) const function in class:WebCore::Dictionary 168 bool Dictionary::get(const String& key, double& value, bool& hasValue) const function in class:WebCore::Dictionary 184 bool Dictionary::get(const String& key, double& value) const function in class:WebCore::Dictionary 187 return get(key, value, unused); 195 if (!get(key, value, hasValue) && hasValue) { 202 bool Dictionary::get(const String& key, String& value) cons function in class:WebCore::Dictionary 226 bool Dictionary::get(const String& key, ScriptValue& value) const function in class:WebCore::Dictionary 244 bool Dictionary::get(const String& key, unsigned short& value) const function in class:WebCore::Dictionary 257 bool Dictionary::get(const String& key, short& value) const function in class:WebCore::Dictionary 270 bool Dictionary::get(const String& key, unsigned& value) const function in class:WebCore::Dictionary 283 bool Dictionary::get(const String& key, unsigned long& value) const function in class:WebCore::Dictionary 296 bool Dictionary::get(const String& key, unsigned long long& value) const function in class:WebCore::Dictionary 310 bool Dictionary::get(const String& key, RefPtr<DOMWindow>& value) const function in class:WebCore::Dictionary 328 bool Dictionary::get(const String& key, RefPtr<Storage>& value) const function in class:WebCore::Dictionary 340 bool Dictionary::get(const String& key, MessagePortArray& value) const function in class:WebCore::Dictionary 362 bool Dictionary::get(const String& key, HashSet<AtomicString>& value) const function in class:WebCore::Dictionary 414 bool Dictionary::get(const String& key, RefPtr<Uint8Array>& value) const function in class:WebCore::Dictionary 426 bool Dictionary::get(const String& key, RefPtr<ArrayBufferView>& value) const function in class:WebCore::Dictionary 438 bool Dictionary::get(const String& key, RefPtr<MIDIPort>& value) const function in class:WebCore::Dictionary 450 bool Dictionary::get(const String& key, RefPtr<MediaKeyError>& value) const function in class:WebCore::Dictionary 462 bool Dictionary::get(const String& key, RefPtr<TrackBase>& value) const function in class:WebCore::Dictionary 482 bool Dictionary::get(const String& key, RefPtr<SpeechRecognitionError>& value) const function in class:WebCore::Dictionary 494 bool Dictionary::get(const String& key, RefPtr<SpeechRecognitionResult>& value) const function in class:WebCore::Dictionary 506 bool Dictionary::get(const String& key, RefPtr<SpeechRecognitionResultList>& value) const function in class:WebCore::Dictionary 518 bool Dictionary::get(const String& key, RefPtr<MediaStream>& value) const function in class:WebCore::Dictionary 530 bool Dictionary::get(const String& key, RefPtr<EventTarget>& value) const function in class:WebCore::Dictionary 555 bool Dictionary::get(const String& key, Dictionary& value) const function in class:WebCore::Dictionary 588 bool Dictionary::get(const String& key, Vector<String>& value) const function in class:WebCore::Dictionary 626 bool Dictionary::get(const String& key, ArrayValue& value) const function in class:WebCore::Dictionary 660 bool Dictionary::get(const String& key, RefPtr<DOMError>& value) const function in class:WebCore::Dictionary 677 bool Dictionary::get(const String& key, OwnPtr<VoidCallback>& value) const function in class:WebCore::Dictionary [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/ |
CodeGeneratorFrontend.py | 117 def get(self, domain_name, type_name): member in class:TypeMap 141 return type_map.get(domain_name, type_name).get_raw_type_js() 228 json_parameters = json_event.get("parameters") 252 optional = json_parameter.get("optional")
|
/external/chromium_org/third_party/WebKit/Source/platform/ |
JSONValues.cpp | 275 RefPtr<JSONValue> value = get(name); 283 RefPtr<JSONValue> value = get(name); 291 RefPtr<JSONValue> value = get(name); 299 RefPtr<JSONValue> value = get(name); 305 PassRefPtr<JSONValue> JSONObjectBase::get(const String& name) const function in class:WebCore::JSONObjectBase 380 PassRefPtr<JSONValue> JSONArrayBase::get(size_t index) function in class:WebCore::JSONArrayBase
|
Length.cpp | 140 CalculationValue* get(int index) function in class:WebCore::CalculationValueHandleMap 143 return m_map.get(index); 149 CalculationValue* value = m_map.get(index); 186 return calcHandles().get(calculationHandle());
|
/external/chromium_org/third_party/WebKit/Source/platform/text/ |
TextBreakIterator.h | 33 // Note: The returned iterator is good only until you get another iterator, with the exception of acquireLineBreakIterator. 128 TextBreakIterator* get(unsigned priorContextLength) function in class:WebCore::LazyLineBreakIterator 141 return this->get(priorContextLength);
|
/external/chromium_org/third_party/WebKit/Source/wtf/ |
HashIterators.h | 46 const ValueType* get() const { return (const ValueType*)m_impl.get(); } function in struct:WTF::HashTableConstIteratorAdapter 47 const ValueType& operator*() const { return *get(); } 48 const ValueType* operator->() const { return get(); } 69 ValueType* get() const { return (ValueType*)m_impl.get(); } function in struct:WTF::HashTableIteratorAdapter 70 ValueType& operator*() const { return *get(); } 71 ValueType* operator->() const { return get(); } 94 const KeyType* get() const { return &(m_impl.get()->key); function in struct:WTF::HashTableConstKeysIterator 111 const MappedType* get() const { return &(m_impl.get()->value); } function in struct:WTF::HashTableConstValuesIterator 129 KeyType* get() const { return &(m_impl.get()->key); } function in struct:WTF::HashTableKeysIterator 152 MappedType* get() const { return &(m_impl.get()->value); } function in struct:WTF::HashTableValuesIterator [all...] |