Searched refs:end (Results 476 - 500 of 908) sorted by relevance

<<11121314151617181920>>

/frameworks/native/services/sensorservice/
H A DSensorList.h128 if (i != mHandleMap.end()) {
/frameworks/av/cmds/stagefright/
H A Dstagefright.cpp361 printf("seeking past the end now.");
741 char *end; local
742 long x = strtol(optarg, &end, 10);
744 if (*end != '\0' || end == optarg || x <= 0) {
920 it != list.end(); ++it) {
923 itRoles != (*it).mRoles.end() ; ++itRoles) {
1001 char *end; local
1002 long sampleRate = strtol(filename + 5, &end, 10);
1004 if (end
[all...]
/frameworks/base/core/jni/
H A Dandroid_view_ThreadedRenderer.cpp119 std::for_each(mOnFinishedEvents.begin(), mOnFinishedEvents.end(), callOnFinished);
142 mAnimator->end();
195 // the animation list, 2) post a delayed message to end them at end time so their
232 mPendingVectorDrawableAnimators.end());
237 // Remove animators from the list and post a delayed message in future to end the animator
248 mPausedVDAnimators.insert(mRunningVDAnimators.begin(), mRunningVDAnimators.end());
271 for (auto it = mRunningVDAnimators.begin(); it != mRunningVDAnimators.end();) {
284 for (auto it = mPausedVDAnimators.begin(); it != mPausedVDAnimators.end();) {
295 for (auto it = mRunningVDAnimators.begin(); it != mRunningVDAnimators.end();) {
[all...]
H A DAndroidRuntime.cpp458 char* end = NULL; local
465 end = start+1;
466 while (*end != ' ' && *end != '\0') /* find end of token */
467 end++;
468 if (*end == ' ')
469 *end++ = '\0'; /* mark end, advance to indicate more */
475 start = end;
[all...]
H A Dandroid_view_RenderNodeAnimator.cpp61 // then you end up with basically a PhantomReference, which is totally not
185 static void end(JNIEnv* env, jobject clazz, jlong animatorPtr) { function in namespace:android
209 { "nEnd", "(J)V", (void*) end },
/frameworks/compile/mclinker/lib/LD/
H A DELFObjectWriter.cpp146 ELFSegmentFactory::iterator seg, segEnd = target().elfSegmentTable().end();
150 ELFSegment::iterator sect, sectEnd = (*seg)->end();
157 Module::iterator sect, sectEnd = pModule.end();
350 segEnd = target().elfSegmentTable().end();
371 Module::const_iterator section, sectEnd = pModule.end();
411 for (EhFrame::fde_iterator fi = cie.begin(), fe = cie.end(); fi != fe;
490 for (RelocData::const_iterator it = pRelocData.begin(), ie = pRelocData.end();
532 for (RelocData::const_iterator it = pRelocData.begin(), ie = pRelocData.end();
651 SectionData::const_iterator fragIter, fragEnd = pSD.end();
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsLDBackend.cpp283 SectionData::const_iterator frag_iter, frag_end = sect_data->end();
316 } // end switch
326 } // end switch
752 if (sit == elfSegmentTable().end())
754 if (sit == elfSegmentTable().end())
816 reloc != sec->getRelocData()->end();
831 ie = getBRIslandFactory()->end();
844 Fragment* exit = &*island.end();
845 if (exit == island.begin()->getParent()->end()) {
860 for (auto it = invalid_frags.begin(), ie = invalid_frags.end(); i
[all...]
/frameworks/av/media/img_utils/include/img_utils/
H A DEndianUtils.h61 EndianOutput(Output* out, Endianness end=LITTLE);
78 virtual void setEndianness(Endianness end);
/frameworks/av/media/libstagefright/
H A DDataSource.cpp133 it != gSniffers.end(); ++it) {
152 it != gSniffers.end(); ++it) {
/frameworks/av/media/libstagefright/rtsp/
H A DARTPSource.cpp155 while (it != mQueue.end() && (uint32_t)(*it)->int32Data() < seqNum) {
159 if (it != mQueue.end() && (uint32_t)(*it)->int32Data() == seqNum) {
/frameworks/base/core/java/android/text/
H A DTextLine.java481 // separator and has an associated run, but might be the end of
483 // end of the run list, and runIndex == runs.length. In this case,
504 // need to run this twice, if we cross a run boundary and end up at
544 // We're walking off the end of the line. The paragraph
551 // Else we've arrived at the end of the line. That's a strong position.
557 // we can end up at the 'lineEnd' position but the caret we want is at
571 * off the end of the line, since the returned values might not be valid
589 // Walking off end of line. Since we don't know
634 // the start or end of this span.
682 * @param end th
695 handleText(TextPaint wp, int start, int end, int contextStart, int contextEnd, boolean runIsRtl, Canvas c, float x, int top, int y, int bottom, FontMetricsInt fmi, boolean needWidth, int offset) argument
953 drawTextRun(Canvas c, TextPaint wp, int start, int end, int contextStart, int contextEnd, boolean runIsRtl, float x, int y) argument
[all...]
/frameworks/base/core/java/android/text/method/
H A DWordIterator.java58 public void setCharSequence(CharSequence charSequence, int start, int end) { argument
60 final int windowEnd = Math.min(charSequence.length(), end + WINDOW_WIDTH);
180 * If the offset is on a word boundary that can be considered the start and end of a
194 * considered the end of a word (e.g. word_ where "_" is any character that would not
198 * If the offset is on a word boundary that can be considered the start and end of a
200 * between AA and BB, this would return the end of the next word, BB.
216 * If the offset is on a word boundary that can be considered the start and end of a
248 * considered the end of a word (e.g. word_ where "_" is any character that would not be
252 * If the offset is on a word boundary that can be considered the start and end of a
255 * the end o
[all...]
/frameworks/base/core/java/android/util/
H A DMathUtils.java160 * Returns an interpolated angle in degrees between a set of start and end
164 * travel is determined by the shortest angle between the start and end
170 * @param end the ending angle in degrees
171 * @param amount the position between start and end in the range [0,1]
175 public static float lerpDeg(float start, float end, float amount) { argument
176 final float minAngle = (((end - start) + 180) % 360) - 180;
H A DSparseArray.java184 final int end = Math.min(mSize, index + size);
185 for (int i = index; i < end; i++) {
215 // Log.e("SparseArray", "gc end with " + mSize);
/frameworks/base/core/tests/utiltests/src/com/android/internal/util/
H A DBitwiseStreamsTest.java133 long end = android.os.SystemClock.elapsedRealtime();
134 Log.d(LOG_TAG, "repeated encode-decode took " + (end - start) + " ms");
/frameworks/base/libs/hwui/
H A DDamageAccumulator.cpp180 static void applyTransforms(DirtyStack* frame, DirtyStack* end) { argument
182 while (frame != end) {
/frameworks/base/libs/hwui/renderthread/
H A DCanvasContext.h137 mRenderNodes.erase(std::remove(mRenderNodes.begin(), mRenderNodes.end(), node),
138 mRenderNodes.end());
/frameworks/base/media/mca/filterfw/jni/
H A Djni_util.h125 return iter == objects_.end() ? NULL : iter->second;
154 const bool found = iter != objects_.end();
209 // which is wrapped by a Java front-end interface. Pass true to owns, if the
/frameworks/base/tools/layoutlib/bridge/src/android/text/
H A DOptimizingLineBreaker.java155 private LineMetrics computeMetrics(int start, int end) { argument
158 for (int i = start; i < end; i++) {
/frameworks/compile/mclinker/include/mcld/Support/
H A DGCFactory.h158 iterator end() { function in class:mcld::GCFactoryBase
164 const_iterator end() const { function in class:mcld::GCFactoryBase
/frameworks/compile/mclinker/lib/Object/
H A DObjectBuilder.cpp151 SectionData::FragmentListType::iterator frag, fragEnd = from_list.end();
157 to_list.splice(to_list.end(), from_list);
/frameworks/compile/mclinker/lib/Target/
H A DGNULDBackend.cpp151 if (pScript.addressMap().end() != mapping)
219 Module::iterator iter, iterEnd = pModule.end();
234 } // end of switch
445 "end",
565 if (elfSegmentTable().end() != exec_start) {
578 if (elfSegmentTable().end() != etext) {
606 if (elfSegmentTable().end() != edata) {
655 assert(tls_seg != elfSegmentTable().end());
702 Module::const_iterator sect, sectEnd = pModule.end();
705 } // end o
[all...]
/frameworks/compile/slang/
H A Dslang_rs_reflection.h160 slangAssert((mFieldIndexMap.find(F) == mFieldIndexMap.end()) &&
167 slangAssert((I != mFieldIndexMap.end()) &&
/frameworks/native/cmds/atrace/
H A Datrace.cpp447 char *end = strchr(start, ']'); local
448 if (end == NULL) {
451 *end = '\0';
547 char* end = strchr(start, ','); local
548 if (end != NULL) {
549 *end = '\0';
550 end++;
558 start = end;
1129 // matching "end" entry to show up if a task gets migrated from one CPU to
/frameworks/native/libs/gui/
H A DStreamSplitter.cpp64 for (; output != mOutputs.end(); ++output) {
151 for (; output != mOutputs.end(); ++output) {

Completed in 2700 milliseconds

<<11121314151617181920>>