Searched defs:at (Results 1 - 5 of 5) sorted by relevance

/frameworks/compile/mclinker/include/mcld/MC/
H A DSymbolCategory.h48 LDSymbol& at(size_t pPosition) function in class:mcld::SymbolCategory
49 { return *m_OutputSymbols.at(pPosition); }
51 const LDSymbol& at(size_t pPosition) const function in class:mcld::SymbolCategory
52 { return *m_OutputSymbols.at(pPosition); }
/frameworks/base/core/java/android/content/res/
H A DTypedArray.java6 * You may obtain a copy of the License at
100 * @param at The index you would like to returned, ranging from 0 to
103 * @return The index at the given offset, which can be used with
106 public int getIndex(int at) { argument
111 return mIndices[1+at];
126 * Retrieve the styled string value for the attribute at <var>index</var>.
158 * Retrieve the string value for the attribute at <var>index</var>.
191 * Retrieve the string value for the attribute at <var>index</var>, but
224 * Retrieve the string value for the attribute at <var>index</var> that is
263 * Retrieve the boolean value for the attribute at <va
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DTintTypedArray.java6 * You may obtain a copy of the License at
76 public int getIndex(int at) { argument
77 return mWrapped.getIndex(at);
/frameworks/base/core/java/android/content/
H A DSyncRequest.java6 * You may obtain a copy of the License at
45 * Specifies a point in the future at which the sync must have been scheduled to run.
112 * @return the last point in time at which this sync must scheduled.
193 * Earliest point of displacement into the future at which this sync can
197 /** Displacement into the future at which this sync must occur. */
289 * Schedule a periodic sync every hour at any point in time during that hour.
320 private void setupInterval(long at, long before) { argument
321 if (before > at) {
325 mSyncRunTimeSecs = at;
/frameworks/base/core/jni/
H A Dandroid_media_AudioTrack.cpp6 * You may obtain a copy of the License at
165 AudioTrack* const at = local
167 return sp<AudioTrack>(at);
170 static sp<AudioTrack> setAudioTrack(JNIEnv* env, jobject thiz, const sp<AudioTrack>& at) argument
175 if (at.get()) {
176 at->incStrong((void*)setAudioTrack);
181 env->SetLongField(thiz, javaAudioTrackFields.nativeTrackInJavaObj, (jlong)at.get());
516 // give the data to the native AudioTrack object (the data starts at the offset)

Completed in 1253 milliseconds