Searched defs:has (Results 1 - 25 of 47) sorted by relevance

12

/external/chromium_org/v8/test/mjsunit/
H A Ddelete.js28 // We use the has() function to avoid relying on a functioning
30 function has(o, k) { return typeof o[k] !== 'undefined'; } function
54 assertTrue(has(o, 'x'));
55 assertTrue(has(o, 'y'));
57 assertFalse(has(o, 'x'));
58 assertTrue(has(o, 'y'));
60 assertFalse(has(o, 'x'));
61 assertFalse(has(o, 'y'));
73 assertFalse(has(o, String.fromCharCode(i)), "deleted (" + i + ")");
74 assertTrue(has(
[all...]
/external/fio/
H A Dconfigure108 has() { function
323 if has clang; then
/external/chromium_org/chrome/test/chromeos/utilities/
H A Dvm_setup_state.py7 import pyauto_functional # has to be imported before pyauto namespace
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DIntSet.java44 boolean has(int value); method in interface:IntSet
H A DListIntSet.java56 public boolean has(int value) { method in class:ListIntSet
H A DBitIntSet.java45 * Ensures that the bit set has the capacity to represent the given value.
66 public boolean has(int value) { method in class:BitIntSet
/external/chromium_org/chromeos/accelerometer/
H A Daccelerometer_reader.h36 bool has[ui::ACCELEROMETER_SOURCE_COUNT]; member in struct:chromeos::AccelerometerReader::ConfigurationData
/external/chromium_org/ui/accelerometer/
H A Daccelerometer_types.h51 // Returns true if |source| has a valid value in this update.
52 bool has(AccelerometerSource source) const { function in class:ui::AccelerometerUpdate
/external/droiddriver/src/com/google/android/droiddriver/
H A DDroidDriver.java31 boolean has(Finder finder); method in interface:DroidDriver
56 boolean has(Finder finder, long timeoutMillis); method in interface:DroidDriver
/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DFetchUtils.cpp22 bool has(const String& name) const function in class:blink::__anon11070::ForbiddenHeaderNames
143 return ForbiddenHeaderNames::get()->has(name);
/external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
H A DFetchHeaderList.cpp108 bool FetchHeaderList::has(const String& name) const function in class:blink::FetchHeaderList
H A DHeaders.cpp164 bool Headers::has(const String& name, ExceptionState& exceptionState) function in class:blink::Headers
166 // "The has(|name|) method, when invoked, must run these steps:"
174 return m_headerList->has(name);
H A DCacheStorage.cpp63 // FIXME: Remove this once content's WebServiceWorkerCache implementation has landed.
170 ScriptPromise CacheStorage::has(ScriptState* scriptState, const String& cacheName) function in class:blink::CacheStorage
/external/chromium_org/third_party/skia/src/gpu/gl/
H A DGrGLExtensions.cpp103 bool GrGLExtensions::has(const char ext[]) const { function in class:GrGLExtensions
/external/droiddriver/src/com/google/android/droiddriver/base/
H A DBaseDroidDriver.java44 public boolean has(Finder finder) { method in class:BaseDroidDriver
55 public boolean has(Finder finder, long timeoutMillis) { method in class:BaseDroidDriver
/external/skia/src/gpu/gl/
H A DGrGLExtensions.cpp103 bool GrGLExtensions::has(const char ext[]) const { function in class:GrGLExtensions
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DImageQualityController.cpp63 bool ImageQualityController::has(RenderObject* renderer) function in class:blink::ImageQualityController
197 // Live resize has ended, paint in HQ and remove this object from the list.
232 // This object has been resized to two different sizes while the timer
/external/chromium_org/third_party/WebKit/Source/modules/webmidi/
H A DMIDIPortMap.h31 bool has(const String& key) const { return m_entries.contains(key); } function in class:blink::MIDIPortMap
122 return has(key) ? m_entries.get(key) : 0;
/external/clang/test/SemaCXX/
H A Dcxx0x-nontrivial-union.cpp26 int &i; // expected-error {{union member 'i' has reference type 'int &'}}
70 bool has; member in struct:optional::optional
73 optional() : has(false) {}
75 optional(U &&...u) : has(true), value(forward<U>(u)...) {}
77 optional(const optional &o) : has(o.has) {
78 if (has) new (&value) T(o.value);
80 optional(optional &&o) : has(o.has) {
81 if (has) ne
[all...]
/external/clang/test/CodeGenCXX/
H A Dreferences.cpp213 HasX has; member in struct:N2::HasXContainer
229 const X &xr = getZ().has.x;
/external/protobuf/src/google/protobuf/
H A Dextension_set_heavy.cc73 bool has = false; local
75 has = iter->second.GetSize() > 0;
77 has = !iter->second.is_cleared;
80 if (has) {
275 // but MessageLite has no SpaceUsed(), so we must directly call
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Dextension_set_heavy.cc76 bool has = false; local
78 has = iter->second.GetSize() > 0;
80 has = !iter->second.is_cleared;
83 if (has) {
316 // but MessageLite has no SpaceUsed(), so we must directly call
/external/chromium_org/v8/src/
H A Dobject-observe.js67 has: function(key) {
/external/clang/test/CXX/temp/temp.decls/temp.friend/
H A Dp1.cpp64 template <typename T> friend bool has(const A&);
66 template <typename T> bool has(const A &x) { function in namespace:test1
/external/google-tv-pairing-protocol/java/src/com/google/polo/json/
H A DJSONObject.java277 * For example, if an object has a method named <code>"getName"</code>, and
281 * @param bean An object that has getter methods that should be used
302 * @param bean An object that has getter methods that should be used
391 * @param object An object that has fields that should be used to make a
696 public boolean has(String key) { method in class:JSONObject
1421 * Make a JSON text of an Object value. If the object has an

Completed in 5060 milliseconds

12