HomeSort by relevance Sort by last modified time
    Searched defs:has (Results 1 - 25 of 101) sorted by null

1 2 3 4 5

  /external/clang/lib/Basic/
Sanitizers.cpp 19 bool SanitizerSet::has(SanitizerKind K) const { function in class:SanitizerSet
  /external/v8/test/mjsunit/
delete.js 28 // 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(o, String.fromCharCode(i+1)), "still here (" + i + ")")
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/util/
IntSet.java 44 boolean has(int value); method in interface:IntSet
ListIntSet.java 56 public boolean has(int value) { method in class:ListIntSet
BitIntSet.java 45 * Ensures that the bit set has the capacity to represent the given value.
66 public boolean has(int value) { method in class:BitIntSet
  /dalvik/dx/src/com/android/dx/util/
IntSet.java 44 boolean has(int value); method in interface:IntSet
ListIntSet.java 56 public boolean has(int value) { method in class:ListIntSet
BitIntSet.java 45 * Ensures that the bit set has the capacity to represent the given value.
66 public boolean has(int value) { method in class:BitIntSet
  /external/dexmaker/src/dx/java/com/android/dx/util/
IntSet.java 44 boolean has(int value); method in interface:IntSet
ListIntSet.java 56 public boolean has(int value) { method in class:ListIntSet
BitIntSet.java 45 * Ensures that the bit set has the capacity to represent the given value.
66 public boolean has(int value) { method in class:BitIntSet
  /external/droiddriver/src/io/appium/droiddriver/
DroidDriver.java 31 boolean has(Finder finder); method in interface:DroidDriver
56 boolean has(Finder finder, long timeoutMillis); method in interface:DroidDriver
  /external/fio/
configure 108 has() { function
341 if has clang; then
    [all...]
  /external/skia/src/gpu/gl/
GrGLExtensions.cpp 103 bool GrGLExtensions::has(const char ext[]) const { function in class:GrGLExtensions
  /external/chromium-trace/trace-viewer/tracing/third_party/components/webcomponentsjs/
CustomElements.js 37 has: function(key) {
  /external/droiddriver/src/io/appium/droiddriver/base/
BaseDroidDriver.java 46 public boolean has(Finder finder) { method in class:BaseDroidDriver
57 public boolean has(Finder finder, long timeoutMillis) { method in class:BaseDroidDriver
  /frameworks/opt/bitmap/src/com/android/bitmap/util/
Exif.java 62 has(jpeg, byteSize, offset + length - 1)
76 if (has(jpeg, byteSize, 1)) {
86 while (has(jpeg, byteSize, offset + 3) && (jpeg.get(offset++) & 0xFF) == 0xFF) {
108 if (length < 2 || !has(jpeg, byteSize, offset + length - 1)) {
151 // Offset has changed significantly.
203 private static boolean has(final InputStreamBuffer jpeg, final long byteSize, final int index) { method in class:Exif
208 return jpeg.has(index);
InputStreamBuffer.java 75 * or {@link #has(int)} with an index N, then some arbitrary time later call {@link #get(int)}
76 * or {@link #has(int)} with an index M < N. The wrapper may return the right value,
120 * You should always call {@link #has(int)} with the same index, unless you are sure that no
131 if (has(index)) {
159 public boolean has(final int index) throws IllegalStateException, IndexOutOfBoundsException { method in class:InputStreamBuffer
160 Trace.beginSection("has");
185 * {@link #has(int)} call will fill the buffer.
258 * @return True if the byte at the requested index has been filled. False if the wrapped
  /frameworks/opt/photoviewer/src/com/android/ex/photo/util/
Exif.java 57 has(jpeg, byteSize, offset + length - 1)
71 if (has(jpeg, byteSize, 1)) {
81 while (has(jpeg, byteSize, offset + 3) && (jpeg.get(offset++) & 0xFF) == 0xFF) {
103 if (length < 2 || !has(jpeg, byteSize, offset + length - 1)) {
146 // Offset has changed significantly.
198 private static boolean has(final InputStreamBuffer jpeg, final long byteSize, final int index) { method in class:Exif
203 return jpeg.has(index);
InputStreamBuffer.java 75 * or {@link #has(int)} with an index N, then some arbitrary time later call {@link #get(int)}
76 * or {@link #has(int)} with an index M < N. The wrapper may return the right value,
120 * You should always call {@link #has(int)} with the same index, unless you are sure that no
131 if (has(index)) {
159 public boolean has(final int index) throws IllegalStateException, IndexOutOfBoundsException { method in class:InputStreamBuffer
160 Trace.beginSection("has");
185 * {@link #has(int)} call will fill the buffer.
258 * @return True if the byte at the requested index has been filled. False if the wrapped
  /dalvik/dx/junit-tests/com/android/dx/util/
BitIntSetTest.java 32 assertTrue(set.has(0));
33 assertTrue(set.has(1));
34 assertTrue(set.has(31));
38 assertFalse(set.has(2));
39 assertFalse(set.has(7));
40 assertFalse(set.has(30));
79 assertTrue(set.has(0));
80 assertTrue(set.has(1));
81 assertTrue(set.has(31));
83 assertFalse(set.has(2))
    [all...]
ListIntSetTest.java 32 assertTrue(set.has(0));
33 assertTrue(set.has(1));
34 assertTrue(set.has(31));
38 assertFalse(set.has(2));
39 assertFalse(set.has(7));
40 assertFalse(set.has(30));
87 assertTrue(set.has(0));
88 assertTrue(set.has(1));
89 assertTrue(set.has(31));
91 assertFalse(set.has(2))
    [all...]
  /external/clang/test/SemaCXX/
cxx0x-nontrivial-union.cpp 26 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) new (&value) T(move(o.value))
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/
named_params.hpp 136 bool has( keyword<typename NP::id,false> kw ) const { return m_param.has( kw ); } function in struct:boost::nfp::nfp_detail::named_parameter_combine
137 using Rest::has;
195 bool has( keyword<unique_id,false> ) const { return !m_erased; } function in struct:boost::nfp::named_parameter
197 bool has( keyword<UnknownId,false> ) const { return false; } function in struct:boost::nfp::named_parameter
316 if( p.has(k) )
  /dalvik/dx/src/com/android/dx/ssa/
ConstCollector.java 225 Integer has = countUses.get(cst); local
226 if (has == null) {
229 countUses.put(cst, has + 1);

Completed in 600 milliseconds

1 2 3 4 5