18e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project/*
2231d4e3152a9c27a73b6ac7badbe6be673aa3ddfSteve Block * Copyright (C) 2009 Apple Inc. All rights reserved.
38e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project *
48e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * Redistribution and use in source and binary forms, with or without
58e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * modification, are permitted provided that the following conditions
68e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * are met:
78e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * 1. Redistributions of source code must retain the above copyright
88e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project *    notice, this list of conditions and the following disclaimer.
98e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * 2. Redistributions in binary form must reproduce the above copyright
108e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project *    notice, this list of conditions and the following disclaimer in the
118e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project *    documentation and/or other materials provided with the distribution.
128e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project *
138e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
148e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
158e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
168e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
178e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
188e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
198e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
208e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
218e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
228e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
238e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
248e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project */
258e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project
266c2af9490927c3c5959b5cb07461b646f8b32f6cKristian Monsen#ifndef Int16Array_h
276c2af9490927c3c5959b5cb07461b646f8b32f6cKristian Monsen#define Int16Array_h
288e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project
296c2af9490927c3c5959b5cb07461b646f8b32f6cKristian Monsen#include "IntegralTypedArrayBase.h"
30231d4e3152a9c27a73b6ac7badbe6be673aa3ddfSteve Block
31231d4e3152a9c27a73b6ac7badbe6be673aa3ddfSteve Blocknamespace WebCore {
32643ca7872b450ea4efacab6188849e5aac2ba161Steve Block
336c2af9490927c3c5959b5cb07461b646f8b32f6cKristian Monsenclass ArrayBuffer;
34643ca7872b450ea4efacab6188849e5aac2ba161Steve Block
356c2af9490927c3c5959b5cb07461b646f8b32f6cKristian Monsenclass Int16Array : public IntegralTypedArrayBase<short> {
364576aa36e9a9671459299c7963ac95aa94beaea9Shimeng (Simon) Wangpublic:
376c2af9490927c3c5959b5cb07461b646f8b32f6cKristian Monsen    static PassRefPtr<Int16Array> create(unsigned length);
386c2af9490927c3c5959b5cb07461b646f8b32f6cKristian Monsen    static PassRefPtr<Int16Array> create(short* array, unsigned length);
396c2af9490927c3c5959b5cb07461b646f8b32f6cKristian Monsen    static PassRefPtr<Int16Array> create(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length);
40643ca7872b450ea4efacab6188849e5aac2ba161Steve Block
416c2af9490927c3c5959b5cb07461b646f8b32f6cKristian Monsen    using TypedArrayBase<short>::set;
426c2af9490927c3c5959b5cb07461b646f8b32f6cKristian Monsen    using IntegralTypedArrayBase<short>::set;
43643ca7872b450ea4efacab6188849e5aac2ba161Steve Block
442fc2651226baac27029e38c9d6ef883fa32084dbSteve Block    PassRefPtr<Int16Array> subarray(int start) const;
452fc2651226baac27029e38c9d6ef883fa32084dbSteve Block    PassRefPtr<Int16Array> subarray(int start, int end) const;
464576aa36e9a9671459299c7963ac95aa94beaea9Shimeng (Simon) Wang
474576aa36e9a9671459299c7963ac95aa94beaea9Shimeng (Simon) Wangprivate:
486c2af9490927c3c5959b5cb07461b646f8b32f6cKristian Monsen    Int16Array(PassRefPtr<ArrayBuffer> buffer,
496c2af9490927c3c5959b5cb07461b646f8b32f6cKristian Monsen                    unsigned byteOffset,
506c2af9490927c3c5959b5cb07461b646f8b32f6cKristian Monsen                    unsigned length);
516c2af9490927c3c5959b5cb07461b646f8b32f6cKristian Monsen    // Make constructor visible to superclass.
526c2af9490927c3c5959b5cb07461b646f8b32f6cKristian Monsen    friend class TypedArrayBase<short>;
536c2af9490927c3c5959b5cb07461b646f8b32f6cKristian Monsen
546c2af9490927c3c5959b5cb07461b646f8b32f6cKristian Monsen    // Overridden from ArrayBufferView.
556c2af9490927c3c5959b5cb07461b646f8b32f6cKristian Monsen    virtual bool isShortArray() const { return true; }
56643ca7872b450ea4efacab6188849e5aac2ba161Steve Block};
57643ca7872b450ea4efacab6188849e5aac2ba161Steve Block
58231d4e3152a9c27a73b6ac7badbe6be673aa3ddfSteve Block} // namespace WebCore
598e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project
606c2af9490927c3c5959b5cb07461b646f8b32f6cKristian Monsen#endif // Int16Array_h
61