HomeSort by relevance Sort by last modified time
    Searched refs:index (Results 176 - 200 of 12535) sorted by null

1 2 3 4 5 6 78 91011>>

  /frameworks/base/core/java/android/app/
IThumbnailRetriever.aidl 24 Bitmap getThumbnail(int index);
  /frameworks/native/opengl/tools/glgen/stubs/gles11/
glGetStringi.cpp 1 /* const GLubyte * glGetStringi ( GLenum name, GLuint index ) */
4 (JNIEnv *_env, jobject _this, jint name, jint index) {
5 const GLubyte* _chars = glGetStringi((GLenum)name, (GLuint)index);
  /frameworks/wilhelm/doc/
Makefile 1 html/index.html : Doxyfile clean
  /libcore/luni/src/main/java/java/security/cert/
CertPathValidatorException.java 27 * path instance that failed the validation and the index of the failed
40 * the index of the certificate.
42 private int index = -1; field in class:CertPathValidatorException
46 * message , cause, certification path and certificate index in the
55 * @param index
56 * the index of the failed certificate.
58 * if {@code certPath} is {@code null} and index is not {@code
61 * if {@code certPath} is not {@code null} and index is not
65 CertPath certPath, int index) {
67 // check certPath and index parameter
    [all...]
  /libcore/luni/src/main/java/java/sql/
DataTruncation.java 32 private int index = 0; field in class:DataTruncation
56 * @param index
57 * the Index value of the column value or parameter that was
70 public DataTruncation(int index, boolean parameter, boolean read,
73 this.index = index;
85 * @param index
86 * the Index value of the column value or parameter that was
103 public DataTruncation(int index, boolean parameter, boolean read,
107 this.index = index
    [all...]
  /libcore/luni/src/main/java/org/w3c/dom/
NameList.java 20 * integral index, starting from 0.
26 * Returns the <code>index</code>th name item in the collection.
27 * @param index Index into the collection.
28 * @return The name at the <code>index</code>th position in the
30 * the specified index or if the index is out of range.
32 public String getName(int index);
35 * Returns the <code>index</code>th namespaceURI item in the collection.
36 * @param index Index into the collection
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/worldclock/
CityObj.java 46 public CityObj(SharedPreferences prefs, int index) {
47 mCityName = prefs.getString(CITY_NAME + index, null);
48 mTimeZone = prefs.getString(CITY_TIME_ZONE + index, null);
49 mCityId = prefs.getString(CITY_ID + index, null);
52 public void saveCityToSharedPrefs(SharedPreferences.Editor editor, int index) {
53 editor.putString (CITY_NAME + index, mCityName);
54 editor.putString (CITY_TIME_ZONE + index, mTimeZone);
55 editor.putString (CITY_ID + index, mCityId);
  /external/chromium_org/chrome/browser/ui/tabs/
tab_strip_model_order_controller.cc 39 // Get the index of the next item opened by this tab, and insert after
41 int index = tabstrip_->GetIndexOfLastWebContentsOpenedBy( local
43 if (index != TabStripModel::kNoTab)
44 return index + 1;
58 // First see if the index being removed has any "child" tabs. If it does, we
65 int index = tabstrip_->GetIndexOfNextWebContentsOpenedBy(removed_contents, local
68 if (index != TabStripModel::kNoTab)
69 return GetValidIndex(index, removing_index);
73 int index = tabstrip_->GetIndexOfNextWebContentsOpenedBy(parent_opener, local
76 if (index != TabStripModel::kNoTab
102 int index = tabstrip_->GetIndexOfWebContents(old_contents); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
MediaController.cpp 101 for (size_t index = 1; index < m_mediaElements.size(); ++index)
102 bufferedRanges->intersectWith(m_mediaElements[index]->buffered().get());
115 for (size_t index = 1; index < m_mediaElements.size(); ++index)
116 seekableRanges->intersectWith(m_mediaElements[index]->seekable().get());
129 for (size_t index = 1; index < m_mediaElements.size(); ++index
    [all...]
  /bionic/libc/kernel/arch-x86/asm/
msr.h 21 #include <asm/msr-index.h>
  /development/ndk/platforms/android-9/arch-x86/include/asm/
msr.h 21 #include <asm/msr-index.h>
  /external/chromium_org/base/threading/
thread_local_storage_unittest.cc 93 // Create a TLS index with a destructor. Create a set of
104 for (int index = 0; index < kNumThreads; index++) {
105 values[index] = kInitialTlsValue;
106 thread_delegates[index] = new ThreadLocalStorageRunner(&values[index]);
107 threads[index] = new DelegateSimpleThread(thread_delegates[index],
109 threads[index]->Start()
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_bitmask.h 65 * Returns the bit index on success, or UTIL_BITMASK_INVALID_INDEX on out of
74 * Returns the input index on success, or UTIL_BITMASK_INVALID_INDEX on out of
79 unsigned index);
83 unsigned index);
87 unsigned index);
104 * Search for the first set bit, starting from the giving index.
110 unsigned index);
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/data/
writable_font_data.h 47 // Write a byte at the given index.
48 // @param index index into the font data
51 virtual int32_t WriteByte(int32_t index, byte_t b);
54 // @param index index into the font data
58 // @return the number of bytes actually written; -1 if the index is outside
60 virtual int32_t WriteBytes(int32_t index,
66 // @param index index into the font dat
    [all...]
  /external/chromium_org/third_party/skia/src/animator/
SkDisplayNumber.h 18 virtual bool getProperty(int index, SkScriptValue* value) const;
  /external/chromium_org/ui/app_list/views/
search_result_actions_view_delegate.h 12 // Invoked when the action button represent the action at |index| is pressed
14 virtual void OnSearchResultActionActivated(size_t index, int event_flags) = 0;
  /external/clang/bindings/python/tests/cindex/
test_index.py 7 index = Index.create()
9 # FIXME: test Index.read
12 index = Index.create()
13 assert isinstance(index, Index)
14 tu = index.parse(os.path.join(kInputsDir, 'hello.cpp'))
  /external/javassist/src/main/javassist/bytecode/
InstructionPrinter.java 150 int index = iter.u16bitAt(pos + 2); local
164 return opcodes[opcode] + " " + index;
195 private static String classInfo(ConstPool pool, int index) {
196 return "#" + index + " = Class " + pool.getClassInfo(index);
200 private static String interfaceMethodInfo(ConstPool pool, int index) {
201 return "#" + index + " = Method "
202 + pool.getInterfaceMethodrefClassName(index) + "."
203 + pool.getInterfaceMethodrefName(index) + "("
204 + pool.getInterfaceMethodrefType(index) + ")"
225 int index = (pos & ~3) + 4; local
244 int index = (pos & ~3) + 4; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_bitmask.h 65 * Returns the bit index on success, or UTIL_BITMASK_INVALID_INDEX on out of
74 * Returns the input index on success, or UTIL_BITMASK_INVALID_INDEX on out of
79 unsigned index);
83 unsigned index);
87 unsigned index);
104 * Search for the first set bit, starting from the giving index.
110 unsigned index);
  /external/sfntly/cpp/src/sfntly/data/
writable_font_data.h 47 // Write a byte at the given index.
48 // @param index index into the font data
51 virtual int32_t WriteByte(int32_t index, byte_t b);
54 // @param index index into the font data
58 // @return the number of bytes actually written; -1 if the index is outside
60 virtual int32_t WriteBytes(int32_t index,
66 // @param index index into the font dat
    [all...]
  /external/skia/src/animator/
SkDisplayNumber.h 18 virtual bool getProperty(int index, SkScriptValue* value) const;
  /frameworks/av/media/libstagefright/codecs/amrnb/common/include/
d_gain_p.h 39 * Purpose : Decodes the pitch gain using the received index.
63 * Purpose : Decodes the pitch gain using the received index.
65 * from the quantization table at the given index;
73 Word16 index /* i : index of quantization */
  /frameworks/base/core/java/android/webkit/
WebBackForwardListClient.java 34 * Notify the client that the <var>item</var> at <var>index</var> is now
37 * @param index The new history index
39 public void onIndexChanged(WebHistoryItem item, int index) { }
  /frameworks/rs/cpu_ref/linkloader/include/
ELFSectionBits.h 48 unsigned char &operator[](size_t index) {
49 return chunk[index];
52 unsigned char const &operator[](size_t index) const {
53 return chunk[index];
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/controller/
ParameterSet.java 22 Parameter getFilterParameter(int index);

Completed in 1443 milliseconds

1 2 3 4 5 6 78 91011>>