Searched defs:begin (Results 1 - 25 of 38) sorted by path

12

/frameworks/av/media/libmedia/
H A DMetadata.cpp97 const size_t begin = mData->dataPosition(); local
106 mData->setDataPosition(begin);
117 const size_t begin = mData->dataPosition(); local
126 mData->setDataPosition(begin);
/frameworks/av/services/audioflinger/
H A DStateQueue.cpp73 template<typename T> T* StateQueue<T>::begin() function in class:android::StateQueue
75 ALOG_ASSERT(!mInMutation, "begin() called when in a mutation");
/frameworks/base/core/java/android/provider/
H A DBrowser.java490 * Delete all history items from begin to end.
493 * @param begin First date to remove. If -1, all dates before end.
495 * @param end Last date to remove. If -1, all dates after begin.
499 long begin, long end) {
502 if (-1 == begin) {
509 whereClause = date + " >= " + Long.toString(begin);
511 whereClause = date + " >= " + Long.toString(begin) + " AND " + date
498 deleteHistoryTimeFrame(ContentResolver cr, long begin, long end) argument
H A DCalendarContract.java1731 * @param begin The start of the time range to query in UTC millis since
1738 long begin, long end) {
1740 ContentUris.appendId(builder, begin);
1756 * @param begin The start of the time range to query in UTC millis since
1767 long begin, long end, String searchQuery) {
1769 ContentUris.appendId(builder, begin);
1777 * The content:// style URL for querying an instance range. The begin
1793 * term. The begin, end, and search string should be appended as path
1809 private static final String DEFAULT_SORT_ORDER = "begin ASC";
1815 public static final String BEGIN = "begin";
1737 query(ContentResolver cr, String[] projection, long begin, long end) argument
1766 query(ContentResolver cr, String[] projection, long begin, long end, String searchQuery) argument
2249 insert(ContentResolver cr, long eventId, long begin, long end, long alarmTime, int minutes) argument
2399 alarmExists(ContentResolver cr, long eventId, long begin, long alarmTime) argument
[all...]
/frameworks/base/media/mca/filterfw/native/base/
H A Dutilities.h49 void STLDeleteContainerPointers(ForwardIterator begin, argument
51 while (begin != end) {
52 ForwardIterator temp = begin;
53 ++begin;
64 for (typename T::iterator i = v->begin(); i != v->end(); ++i) {
/frameworks/base/media/mca/filterpacks/native/base/
H A Dutilities.h49 void STLDeleteContainerPointers(ForwardIterator begin, argument
51 while (begin != end) {
52 ForwardIterator temp = begin;
53 ++begin;
64 for (typename T::iterator i = v->begin(); i != v->end(); ++i) {
/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/linkloader/utils/
H A Dhelper.cpp26 size_t size, size_t begin, size_t end) {
27 if (end <= begin) {
32 size_t lower = begin & (~0xfUL);
38 if (i < begin) {
43 if (j == begin) {
25 dump_hex(unsigned char const *data, size_t size, size_t begin, size_t end) argument
/frameworks/compile/mclinker/include/mcld/ADT/
H A DBinTree.h275 // | begin |
304 for (data = pClient.begin(); data!=dEnd; ++data ) {
423 iterator begin() function in class:mcld::BinaryTree
429 const_iterator begin() const function in class:mcld::BinaryTree
/frameworks/compile/mclinker/include/mcld/LD/
H A DSectionData.h54 iterator begin() { return m_Fragments.begin(); } function in class:mcld::SectionData
55 const_iterator begin() const { return m_Fragments.begin(); } function in class:mcld::SectionData
H A DSectionMap.h70 iterator begin() function in class:mcld::SectionMap
71 { return m_SectMap.begin(); }
76 const_iterator begin() const function in class:mcld::SectionMap
77 { return m_SectMap.begin(); }
H A DSectionMerger.h70 iterator begin() function in class:mcld::SectionMerger
71 { return m_LDSectionMap.begin(); }
76 const_iterator begin() const function in class:mcld::SectionMerger
77 { return m_LDSectionMap.begin(); }
/frameworks/compile/mclinker/include/mcld/MC/
H A DAttributeFactory.h78 iterator begin() function in class:mcld::AttributeFactory
79 { return m_AttrSet.begin(); }
84 const_iterator begin() const function in class:mcld::AttributeFactory
85 { return m_AttrSet.begin(); }
H A DSearchDirs.h55 iterator begin() function in class:mcld::SearchDirs
56 { return m_DirList.begin(); }
61 const_iterator begin() const function in class:mcld::SearchDirs
62 { return m_DirList.begin(); }
H A DSymbolCategory.h79 iterator begin();
81 const_iterator begin() const;
114 size_t begin; member in class:mcld::SymbolCategory::Category
123 begin(0),
130 { return (end - begin); }
133 { return (begin == end); }
/frameworks/compile/mclinker/include/mcld/Support/
H A DGCFactory.h174 iterator begin() function in class:mcld::GCFactoryBase
177 const_iterator begin() const function in class:mcld::GCFactoryBase
182 begin():
188 begin():
H A DHandleToArea.h89 iterator begin() function in class:mcld::HandleToArea
90 { return m_AreaMap.begin(); }
95 const_iterator begin() const function in class:mcld::HandleToArea
96 { return m_AreaMap.begin(); }
H A DPath.h64 Path& assign(InputIterator begin, InputIterator end);
70 Path& append(InputIterator begin, InputIterator end);
138 Path& Path::assign(InputIterator begin, InputIterator end) argument
141 if (begin != end)
142 m_PathName.append<InputIterator>(begin, end);
147 Path& Path::append(InputIterator begin, InputIterator end) argument
149 if (begin == end)
152 m_PathName.append<InputIterator>(begin, end);
H A DTargetRegistry.h136 static iterator begin() { return s_TargetList.begin(); } function in class:mcld::TargetRegistry
225 for( TIter=llvm::TargetRegistry::begin(); TIter!=TEnd; ++TIter ) {
/frameworks/compile/mclinker/lib/LD/
H A DGNUArchiveReader.cpp219 size_t begin = 1; local
223 name_field.substr(begin, end - begin).getAsInteger(10, name_offset);
227 begin = end + 1;
228 end = name_field.find_first_of(' ', begin);
229 name_field.substr(begin, end - begin).getAsInteger(10, pNestedOffset);
233 begin = name_offset;
234 end = pArchiveRoot.getStrTable().find_first_of('\n', begin);
235 member_name.assign(pArchiveRoot.getStrTable().substr(begin, en
[all...]
/frameworks/compile/mclinker/lib/MC/
H A DSymbolCategory.cpp80 std::swap(m_OutputSymbols[current->begin],
84 current->begin++;
95 m_pCommon->begin++;
97 m_pWeak->begin++;
99 m_pGlobal->begin++;
130 size_t pos = current->begin;
152 current->next->begin--;
171 std::swap(m_OutputSymbols[current->begin], m_OutputSymbols[pos]);
172 pos = current->begin;
173 current->begin
248 SymbolCategory::iterator SymbolCategory::begin() function in class:SymbolCategory
258 SymbolCategory::const_iterator SymbolCategory::begin() const function in class:SymbolCategory
[all...]
/frameworks/compile/mclinker/lib/Support/
H A DDirectory.cpp123 Directory::iterator Directory::begin() function in class:Directory
127 PathCache::iterator iter = m_Cache.begin();
H A DPath.cpp134 size_t begin=pSepPos; local
139 if(begin!=pSepPos)
140 m_PathName.erase(begin+1,pSepPos-begin-1);
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMGOT.cpp46 iterator it = m_SectionData.begin();
115 (*(m_SectionData.getFragmentList().begin())).setContent(pAddress);
120 iterator begin = getGOTPLTBegin(); local
123 for (;begin != end ;++begin)
124 llvm::cast<GOTEntry>(*begin).setContent(pPLTBase);
132 ARMGOT::iterator ARMGOT::begin() function in class:ARMGOT
134 return m_SectionData.getFragmentList().begin();
137 ARMGOT::const_iterator ARMGOT::begin() const function in class:ARMGOT
139 return m_SectionData.getFragmentList().begin();
160 iterator begin = m_GOTPLTBegin; local
[all...]

Completed in 261 milliseconds

12