Searched defs:begin (Results 26 - 48 of 48) sorted by relevance

12

/frameworks/compile/mclinker/lib/Support/
H A DDirectory.cpp127 Directory::iterator Directory::begin() function in class:Directory
131 PathCache::iterator iter = m_Cache.begin();
H A DPath.cpp158 size_t begin=pSepPos; local
168 if(begin!=pSepPos)
169 m_PathName.erase(begin+1,pSepPos-begin-1);
/frameworks/compile/slang/
H A Dslang_rs_context.cpp138 for (clang::DeclContext::lookup_const_iterator I = R.begin(), E = R.end();
173 ExportForEachList::iterator begin = mExportForEach.begin(); local
175 for (ExportForEachList::iterator I = begin, E = mExportForEach.end();
180 if (I == begin) {
239 for (NeedExportTypeSet::const_iterator EI = mNeedExportTypes.begin(),
269 for (ExportableList::iterator I = mExportables.begin(),
/frameworks/compile/mclinker/include/mcld/
H A DInputTree.h158 iterator begin() function in class:mcld::BinaryTree
167 const_iterator begin() const function in class:mcld::BinaryTree
H A DModule.h79 const_obj_iterator obj_begin() const { return m_ObjectList.begin(); }
80 obj_iterator obj_begin() { return m_ObjectList.begin(); }
88 const_lib_iterator lib_begin() const { return m_LibraryList.begin(); }
89 lib_iterator lib_begin() { return m_LibraryList.begin(); }
97 const_input_iterator input_begin() const { return m_MainTree.begin(); }
98 input_iterator input_begin() { return m_MainTree.begin(); }
110 iterator begin() { return m_SectionTable.begin(); } function in class:mcld::Module
111 const_iterator begin() const { return m_SectionTable.begin(); } function in class:mcld::Module
[all...]
/frameworks/compile/mclinker/include/mcld/LD/
H A DELFSegment.h43 iterator begin() { return m_SectionList.begin(); } function in class:mcld::ELFSegment
44 const_iterator begin() const { return m_SectionList.begin(); } function in class:mcld::ELFSegment
H A DEhFrame.h118 const_fde_iterator begin() const { return m_FDEs.begin(); } function in class:mcld::EhFrame::CIE
119 fde_iterator begin() { return m_FDEs.begin(); } function in class:mcld::EhFrame::CIE
197 const_cie_iterator cie_begin() const { return m_CIEs.begin(); }
198 cie_iterator cie_begin() { return m_CIEs.begin(); }
/frameworks/compile/mclinker/include/mcld/Object/
H A DSectionMap.h46 const_dot_iterator dot_begin() const { return m_DotAssignments.begin(); }
47 dot_iterator dot_begin() { return m_DotAssignments.begin(); }
95 const_iterator begin() const { return m_InputList.begin(); } function in class:mcld::SectionMap::Output
96 iterator begin() { return m_InputList.begin(); } function in class:mcld::SectionMap::Output
113 const_dot_iterator dot_begin() const { return m_DotAssignments.begin(); }
114 dot_iterator dot_begin() { return m_DotAssignments.begin(); }
177 const_iterator begin() const { return m_OutputDescList.begin(); } function in class:mcld::SectionMap
178 iterator begin() { return m_OutputDescList.begin(); } function in class:mcld::SectionMap
[all...]
/frameworks/compile/mclinker/include/mcld/Support/
H A DGCFactory.h171 iterator begin() function in class:mcld::GCFactoryBase
174 const_iterator begin() const function in class:mcld::GCFactoryBase
179 begin():
185 begin():
/frameworks/compile/mclinker/lib/LD/
H A DGNUArchiveReader.cpp53 const char* str = region.begin();
82 const char* str = region.begin();
169 reinterpret_cast<const Archive::MemberHeader*>(header_region.begin());
185 size_t begin = 1; local
189 name_field.substr(begin, end - begin).getAsInteger(10, name_offset);
193 begin = end + 1;
194 end = name_field.find_first_of(' ', begin);
195 name_field.substr(begin, end - begin)
[all...]
/frameworks/compile/mclinker/lib/MC/
H A DSymbolCategory.cpp81 std::swap(m_OutputSymbols[current->begin],
85 current->begin++;
126 pos = current->begin;
139 pos = current->begin;
167 current->next->begin--;
186 std::swap(m_OutputSymbols[current->begin], m_OutputSymbols[pos]);
187 pos = current->begin;
188 current->begin++;
216 m_pDynamic->begin--;
221 m_pDynamic->begin
311 SymbolCategory::iterator SymbolCategory::begin() function in class:SymbolCategory
321 SymbolCategory::const_iterator SymbolCategory::begin() const function in class:SymbolCategory
[all...]
/frameworks/base/core/java/android/provider/
H A DBrowser.java482 * Delete all history items from begin to end.
485 * @param begin First date to remove. If -1, all dates before end.
487 * @param end Last date to remove. If -1, all dates after begin.
491 long begin, long end) {
494 if (-1 == begin) {
501 whereClause = date + " >= " + Long.toString(begin);
503 whereClause = date + " >= " + Long.toString(begin) + " AND " + date
490 deleteHistoryTimeFrame(ContentResolver cr, long begin, long end) argument
H A DCalendarContract.java1745 * @param begin The start of the time range to query in UTC millis since
1752 long begin, long end) {
1754 ContentUris.appendId(builder, begin);
1770 * @param begin The start of the time range to query in UTC millis since
1781 long begin, long end, String searchQuery) {
1783 ContentUris.appendId(builder, begin);
1791 * The content:// style URL for querying an instance range. The begin
1807 * term. The begin, end, and search string should be appended as path
1823 private static final String DEFAULT_SORT_ORDER = "begin ASC";
1829 public static final String BEGIN = "begin";
1751 query(ContentResolver cr, String[] projection, long begin, long end) argument
1780 query(ContentResolver cr, String[] projection, long begin, long end, String searchQuery) argument
2263 insert(ContentResolver cr, long eventId, long begin, long end, long alarmTime, int minutes) argument
2413 alarmExists(ContentResolver cr, long eventId, long begin, long alarmTime) argument
[all...]
/frameworks/base/opengl/java/android/opengl/
H A DEGLLogWrapper.java49 begin("eglChooseConfig");
66 begin("eglCopyBuffers");
80 begin("eglCreateContext");
96 begin("eglCreatePbufferSurface");
111 begin("eglCreatePixmapSurface");
127 begin("eglCreateWindowSurface");
142 begin("eglDestroyContext");
154 begin("eglDestroySurface");
167 begin("eglGetConfigAttrib");
182 begin("eglGetConfig
392 private void begin(String name) { method in class:EGLLogWrapper
[all...]
H A DGLLogWrapper.java69 private void begin(String name) { method in class:GLLogWrapper
1178 begin("glActiveTexture");
1186 begin("glAlphaFunc");
1195 begin("glAlphaFuncx");
1204 begin("glBindTexture");
1213 begin("glBlendFunc");
1223 begin("glClear");
1232 begin("glClearColor");
1244 begin("glClearColor");
1256 begin("glClearDepth
[all...]
/frameworks/compile/mclinker/include/mcld/ADT/
H A DBinTree.h272 // | begin |
301 for (data = pClient.begin(); data!=dEnd; ++data ) {
420 iterator begin() function in class:mcld::BinaryTree
426 const_iterator begin() const function in class:mcld::BinaryTree
/frameworks/compile/mclinker/include/mcld/Script/
H A DOutputSectDesc.h169 const_iterator begin() const { return m_OutputSectCmds.begin(); } function in class:mcld::OutputSectDesc
170 iterator begin() { return m_OutputSectCmds.begin(); } function in class:mcld::OutputSectDesc
/frameworks/native/services/sensorservice/
H A Dvec.h314 iterator begin() { return base::v; } function in class:android::vec
316 const_iterator begin() const { return base::v; } function in class:android::vec
/frameworks/base/core/tests/overlaytests/
H A Dtestrunner.py118 def begin(self, type, name): member in class:VerbosePrinter
138 def begin(self, type, name): member in class:QuietPrinter
478 printer.begin(TASK_INSTRUMENTATION_TEST, current_test)
656 printer.begin(TASK_INSTRUMENTATION, name)
666 printer.begin(type, name)
/frameworks/native/libs/ui/
H A DRegion.cpp92 static void reverseRectsResolvingJunctions(const Rect* begin, const Rect* end, argument
103 } while (current->top == lastTop && current >= begin);
111 while (current >= begin) {
191 reverseRectsResolvingJunctions(r.begin(), r.end(), reversed, direction_RTL);
194 reverseRectsResolvingJunctions(reversed.begin(), reversed.end(),
230 const_iterator cur = begin();
260 return begin() == region.begin();
494 const_iterator cur = reg.begin();
624 Region::const_iterator head = dst.begin();
779 Region::const_iterator Region::begin() const { function in class:android::Region
[all...]
/frameworks/base/libs/hwui/
H A DPathTessellator.cpp245 const Vector2& normal, Vertex* buffer, int& currentIndex, bool begin) {
252 referencePoint += rotated * (begin ? -1 : 1);
432 const Vertex* point = isFirst ? vertices.begin() : (vertices.end() - 1);
531 b) 2, 2 * roundDivOff | First half of begin cap's perimeter
541 b) 2, 2*(rD - rDO + 1), | Last half of begin cap's perimeter
244 storeBeginEnd(const PaintInfo& paintInfo, const Vertex& center, const Vector2& normal, Vertex* buffer, int& currentIndex, bool begin) argument
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DGraphRunner.java928 void begin() { method in class:GraphRunner
/frameworks/native/opengl/libagl/
H A Degl.cpp281 const_iterator begin() const { return storage; } function in struct:android::egl_window_surface_v2_t::Region
462 Region::const_iterator cur = clip.begin();

Completed in 190 milliseconds

12