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

/frameworks/compile/mclinker/include/mcld/MC/
H A DSymbolCategory.h51 LDSymbol& at(size_t pPosition) function in class:mcld::SymbolCategory
52 { return *m_OutputSymbols.at(pPosition); }
54 const LDSymbol& at(size_t pPosition) const function in class:mcld::SymbolCategory
55 { 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
65 * @param at The index you would like to returned, ranging from 0 to
68 * @return The index at the given offset, which can be used with
71 public int getIndex(int at) { argument
72 return mIndices[1+at];
83 * Retrieve the styled string value for the attribute at <var>index</var>.
111 * Retrieve the string value for the attribute at <var>index</var>.
140 * Retrieve the string value for the attribute at <var>index</var>, but
169 * Retrieve the string value for the attribute at <var>index</var> that is
204 * Retrieve the boolean value for the attribute at <va
[all...]
/frameworks/base/core/java/android/content/
H A DSyncRequest.java6 * You may obtain a copy of the License at
52 * Specifies a point in the future at which the sync must have been scheduled to run.
135 * @return the last point in time at which this sync must scheduled.
235 /** Earliest point of displacement into the future at which this sync can occur. */
237 /** Latest point of displacement into the future at which this sync must occur. */
336 * Schedule a periodic sync every hour at any point in time during that hour.
368 private void setupInterval(long at, long before) { argument
369 if (before > at) {
373 mSyncRunTimeSecs = at;
/frameworks/compile/mclinker/lib/Fragment/
H A DFragmentGraph.cpp58 uint32_t& FragmentGraph::ReachMatrix::at(uint32_t pX, uint32_t pY) function in class:FragmentGraph::ReachMatrix
63 uint32_t FragmentGraph::ReachMatrix::at(uint32_t pX, uint32_t pY) const function in class:FragmentGraph::ReachMatrix
247 if (0 == m_pMatrix->at(from->getIndex(), to->getIndex()))
249 ++m_pMatrix->at(from->getIndex(), to->getIndex());
259 if (0 == m_pMatrix->at(pFrom.getIndex(), to->getIndex()))
261 ++m_pMatrix->at(pFrom.getIndex(), to->getIndex());
377 uint32_t weight = m_pMatrix->at(pNode.getIndex(), node_to.getIndex());
/frameworks/base/core/jni/
H A Dandroid_media_AudioTrack.cpp6 * You may obtain a copy of the License at
176 AudioTrack* const at = local
178 return sp<AudioTrack>(at);
181 static sp<AudioTrack> setAudioTrack(JNIEnv* env, jobject thiz, const sp<AudioTrack>& at) argument
186 if (at.get()) {
187 at->incStrong((void*)setAudioTrack);
192 env->SetIntField(thiz, javaAudioTrackFields.nativeTrackInJavaObj, (int)at.get());
512 // give the data to the native AudioTrack object (the data starts at the offset)
/frameworks/ex/carousel/java/com/android/ex/carousel/
H A DCarouselController.java6 * You may obtain a copy of the License at
224 * Set the number of detail textures that can be visible at one time.
634 * If the current position is further away, it is set at maxAnimatedArc from endAngle.
715 public void setLookAt(float[] eye, float[] at, float[] up) { argument
717 mAt = at;
720 mRenderScript.setLookAt(eye, at, up);
757 * such as when it is added or when the application starts. The timer starts at the moment
769 * Tells the carousel that a touch event has started at the designated location.
796 * Tells the carousel that a touch event has stopped at the designated location.
H A DCarouselView.java6 * You may obtain a copy of the License at
71 /** The cubic curve y= (3-2x)*x^2 gradually accelerates at the origin,
285 * Set the number of detail textures that can be visible at one time.
526 public void setLookAt(float[] eye, float[] at, float[] up) { argument
527 mController.setLookAt(eye, at, up);
H A DCarouselRS.java6 * You may obtain a copy of the License at
194 * @param carouselRotationAngle the angle of rotation, in radians, at which the animation
286 public void setLookAt(float[] eye, float[] at, float[] up) { argument
289 mAtPoint[i] = at[i];
292 mScript.invoke_lookAt(eye[0], eye[1], eye[2], at[0], at[1], at[2], up[0], up[1], up[2]);
479 // an allocation of at least one card. This relies on invoke_createCards() to keep
691 if (DBG) Log.v(TAG, "getCard(): no item at index " + n);
700 if (DBG) Log.v(TAG, "getOrCreateCard(): no item at inde
[all...]

Completed in 361 milliseconds