Searched refs:end (Results 126 - 150 of 452) sorted by relevance

1234567891011>>

/frameworks/compile/mclinker/include/mcld/MC/
H A DMCInstFragment.h76 relocation_iterator relocation_end() {return m_Relocations.end();}
77 const_relocation_iterator relocation_end() const {return m_Relocations.end();}
/frameworks/compile/mclinker/include/mcld/Support/
H A DMemoryRegion.h73 Address end() function in class:mcld::MemoryRegion
76 ConstAddress end() const function in class:mcld::MemoryRegion
H A DTargetRegistry.h122 static iterator end() { return s_TargetList.end(); } function in class:mcld::TargetRegistry
192 llvm::TargetRegistry::iterator TIter, TEnd = llvm::TargetRegistry::end();
227 } //end namespace mcld
/frameworks/compile/mclinker/unittests/
H A DHashTableTest.cpp93 EXPECT_TRUE(iter==hashTable->end());
162 EXPECT_TRUE(iter == hashTable->end());
186 EXPECT_TRUE(iter == hashTable->end());
211 EXPECT_TRUE(iter == hashTable->end());
217 EXPECT_TRUE(iter != hashTable->end());
262 HashTableTy::iterator iter, iEnd = hashTable->end();
286 HashTableTy::chain_iterator iter, iEnd = hashTable->end(key*37);
321 HashTableTy::chain_iterator iter, iEnd = hashTable->end(key);
H A DFactoriesTest.cpp66 NodeAlloc::iterator dEnd = m_pNodeAlloc->end();
87 NodeAlloc::iterator dEnd = m_pNodeAlloc->end();
109 NodeAlloc::iterator dEnd = m_pNodeAlloc->end();
145 NodeAlloc::iterator dEnd = m_pNodeAlloc->end();
212 MCLDFileFactory::iterator fEnd = m_pFileAlloc->end();
/frameworks/base/core/java/android/text/method/
H A DPasswordTransformationMethod.java89 * something strange is going on. (We might still end up with
178 public CharSequence subSequence(int start, int end) { argument
179 char[] buf = new char[end - start];
181 getChars(start, end, buf, 0);
189 public void getChars(int start, int end, char[] dest, int off) { argument
190 TextUtils.getChars(mSource, start, end, dest, off);
215 for (int i = start; i < end; i++) {
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);
/frameworks/base/core/jni/
H A Dandroid_os_SystemProperties.cpp72 char* end; local
84 result = strtol(buf, &end, 0);
85 if (end == buf) {
102 char* end; local
114 result = strtoll(buf, &end, 0);
115 if (end == buf) {
/frameworks/compile/slang/
H A Dslang_rs_context.h152 return mExportables.end();
160 return mExportVars.end();
171 return mExportFuncs.end();
180 return mExportForEach.end();
187 export_type_iterator export_types_end() { return mExportTypes.end(); }
192 return mExportTypes.end();
/frameworks/base/core/java/android/view/inputmethod/
H A DBaseInputConnection.java93 public static void setComposingSpans(Spannable text, int start, int end) { argument
94 final Object[] sps = text.getSpans(start, end, Object.class);
114 text.setSpan(COMPOSING, start, end,
249 int end = b + afterLength;
250 if (end > content.length()) end = content.length();
252 content.delete(b, end);
439 public boolean setComposingRegion(int start, int end) { argument
445 int b = end;
451 // Clip the end point
479 setSelection(int start, int end) argument
[all...]
/frameworks/base/core/java/android/net/
H A DUrlQuerySanitizer.java291 * white space will be trimmed from the beginning and end of
317 // and end of value.
342 * Trim whitespace from the beginning and end of a string.
352 int end = last;
353 while (start <= end && isWhitespace(value.charAt(start))) {
356 while (end >= start && isWhitespace(value.charAt(end))) {
357 end--;
359 if (start == 0 && end == last) {
362 return value.substring(start, end
[all...]
/frameworks/compile/mclinker/lib/LD/
H A DGNUArchiveReader.cpp172 if(haveSeen.find(archiveMemberName)==haveSeen.end())
295 char *end; local
296 long extendedNameOff = strtol(header->name+1, &end, 10);
298 if(*end == ':')
299 nestedOff = strtol(end+1, &end, 10);
301 if(*end != ' '
314 assert(0 && "p_ExtendedName substring is not end with / \n");
/frameworks/compile/slang/BitWriter_2_9/
H A DValueEnumerator.cpp37 for (Module::const_iterator I = M->begin(), E = M->end(); I != E; ++I) {
69 for (Module::const_iterator F = M->begin(), E = M->end(); F != E; ++F) {
75 for (Function::const_iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
76 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I!=E;++I){
113 assert(I != InstructionMap.end() && "Instruction is not mapped!");
124 assert(I != MDValueMap.end() && "Value not in slotcalculator!");
129 assert(I != ValueMap.end() && "Value not in slotcalculator!");
171 for (ValueSymbolTable::const_iterator VI = VST.begin(), VE = VST.end();
410 for (Function::const_iterator BB = F.begin(), E = F.end(); BB != E; ++BB) {
411 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end();
[all...]
/frameworks/compile/slang/BitWriter_2_9_func/
H A DValueEnumerator.cpp37 for (Module::const_iterator I = M->begin(), E = M->end(); I != E; ++I) {
69 for (Module::const_iterator F = M->begin(), E = M->end(); F != E; ++F) {
75 for (Function::const_iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
76 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I!=E;++I){
113 assert(I != InstructionMap.end() && "Instruction is not mapped!");
124 assert(I != MDValueMap.end() && "Value not in slotcalculator!");
129 assert(I != ValueMap.end() && "Value not in slotcalculator!");
171 for (ValueSymbolTable::const_iterator VI = VST.begin(), VE = VST.end();
410 for (Function::const_iterator BB = F.begin(), E = F.end(); BB != E; ++BB) {
411 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end();
[all...]
/frameworks/base/core/java/android/text/
H A DAutoText.java109 public static String get(CharSequence src, final int start, final int end, argument
111 return getInstance(view).lookup(src, start, end);
132 private String lookup(CharSequence src, final int start, final int end) { argument
135 for (int i = start; i < end; i++) {
140 if ((i == end - 1)
226 // end, so fill in the right hand side fields.
253 // If this is the end of the word, fill in the offset.
/frameworks/base/core/java/com/android/internal/os/
H A DLoggingPrintStream.java83 * even though they don't end in a line break
129 int end = start + count;
130 while (start < end) {
132 // way, if we end with a partial character we don't lose it.
133 int numBytes = Math.min(encodedBytes.remaining(), end - start);
340 CharSequence csq, int start, int end) {
341 builder.append(csq, start, end);
339 append( CharSequence csq, int start, int end) argument
/frameworks/base/graphics/java/android/graphics/
H A DCanvas.java1355 * @param end (end - 1) is the index of the last character in text to draw
1360 public void drawText(String text, int start, int end, float x, float y, Paint paint) { argument
1361 if ((start | end | (end - start) | (text.length() - end)) < 0) {
1364 native_drawText(mNativeCanvas, text, start, end, x, y, paint.mBidiFlags,
1369 * Draw the specified range of text, specified by start/end, with its
1375 * @param end (end
1381 drawText(CharSequence text, int start, int end, float x, float y, Paint paint) argument
1456 drawTextRun(CharSequence text, int start, int end, int contextStart, int contextEnd, float x, float y, int dir, Paint paint) argument
1732 native_drawText(int nativeCanvas, String text, int start, int end, float x, float y, int flags, int paint) argument
1736 native_drawTextRun(int nativeCanvas, String text, int start, int end, int contextStart, int contextEnd, float x, float y, int flags, int paint) argument
[all...]
/frameworks/ml/bordeaux/learning/stochastic_linear_ranker/native/
H A Dsparse_weight_vector.h117 w_.insert(vec.w_.begin(), vec.w_.end());
118 wmax_.insert(vec.wmax_.begin(), vec.wmax_.end());
119 wmin_.insert(vec.wmin_.begin(), vec.wmin_.end());
178 if (iter != w1.end()) {
195 iter != w_map.end();
/frameworks/native/libs/utils/
H A DBufferedTextOutput.cpp162 const char* const end = txt+len; local
166 while (txt < end) {
169 while (txt < end && *txt != '\n') txt++;
172 while (txt < end && *txt == '\n') txt++;
189 while (txt < end) {
/frameworks/av/media/libstagefright/rtsp/
H A DAH263Assembler.cpp59 while (it != queue->end()) {
135 while (it != mPackets.end()) {
145 while (it != mPackets.end()) {
H A DAMPEG4ElementaryAssembler.cpp77 char *end; local
78 unsigned y = strtoul(s, &end, 10);
80 if (end == s || *end != '\0') {
216 while (it != queue->end()) {
342 it != headers.end(); ++it) {
/frameworks/base/core/java/android/widget/
H A DOverScroller.java202 * Returns where the scroll will end. Valid only for "fling" scrolls.
211 * Returns where the scroll will end. Valid only for "fling" scrolls.
737 private void startSpringback(int start, int end, int velocity) { argument
742 mFinal = end;
743 final int delta = start - end;
804 private void fitOnBounceCurve(int start, int end, int velocity) { argument
808 final float distanceToEdge = Math.abs(end - start);
812 mStart = end;
816 private void startBounceAfterEdge(int start, int end, int velocity) { argument
817 mDeceleration = getDeceleration(velocity == 0 ? start - end
845 notifyEdgeReached(int start, int end, int over) argument
[all...]
/frameworks/compile/libbcc/lib/ExecutionEngine/
H A DGDBJITRegistrar.cpp144 for (RegisteredObjectBufferMap::iterator I = ObjectBufferMap.begin(), E = ObjectBufferMap.end();
156 assert(ObjectBufferMap.find(Object) == ObjectBufferMap.end()
187 if (I != ObjectBufferMap.end()) {
229 } // end namespace
/frameworks/base/obex/javax/obex/
H A DClientOperation.java415 int end = 0;
419 while (end != headerArray.length) {
421 end = ObexHelper.findHeaderEnd(headerArray, start, mMaxPacketSize
424 if (end == -1) {
440 byte[] sendHeader = new byte[end - start];
450 start = end;
/frameworks/native/opengl/libs/EGL/
H A Degl_display.cpp212 char const* end; local
215 end = strchr(start, ' ');
216 if (end) {
218 const size_t len = end - start;
233 start = end + 1;
235 } while (end);
330 // This cannot be called with the lock held because it might end-up
372 // This cannot be called with the lock held because it might end-up

Completed in 368 milliseconds

1234567891011>>