/external/libusb-compat/libusb/ |
usbi.h | 25 #define LIST_ADD(begin, ent) \ 27 if (begin) { \ 28 ent->next = begin; \ 33 begin = ent; \ 36 #define LIST_DEL(begin, ent) \ 41 begin = ent->next; \
|
/external/webkit/Tools/wx/packaging/ |
wxWebKitInstaller.iss.in | 41 begin 48 '', PythonDir) then begin 52 '', PythonDir) then begin 67 begin 74 begin 78 begin
|
/ndk/sources/cxx-stl/llvm-libc++/test/containers/associative/map/map.modifiers/ |
insert_iter_iter.pass.cpp | 42 assert(m.begin()->first == 1); 43 assert(m.begin()->second == 1); 44 assert(next(m.begin())->first == 2); 45 assert(next(m.begin())->second == 1); 46 assert(next(m.begin(), 2)->first == 3); 47 assert(next(m.begin(), 2)->second == 1);
|
/external/quake/quake/src/QW/client/ |
qwcl.dsp | 26 # Begin Project
146 # Begin Target
152 # Begin Group "Source Files"
155 # Begin Source File
159 # Begin Source File
163 # Begin Source File
167 # Begin Source File
171 # Begin Source File
175 # Begin Source File
179 # Begin Source File [all...] |
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/ |
Antlr.Runtime.pas | [all...] |
/external/bison/examples/calc++/ |
location.hh | 55 : begin (b) 62 : begin (p) 71 : begin (f, l, c) 82 begin.initialize (f, l, c); 83 end = begin; 92 begin = end; 111 position begin; member in class:yy::location 117 inline const location operator+ (const location& begin, const location& end) 119 location res = begin; 125 inline const location operator+ (const location& begin, unsigned int width [all...] |
/external/chromium/chrome/browser/extensions/ |
extension_i18n_api.cc | 34 size_t begin = 0; local 37 end = acceptLanguages.find(',', begin); 38 if (end > begin) { 40 string16 acceptLang = acceptLanguages.substr(begin, end - begin); 44 begin = end + 1; 45 // 'begin >= acceptLanguages.length()' to guard against a value 47 if (end == string16::npos || begin >= acceptLanguages.length())
|
/external/libpng/projects/visualc6/ |
libpng.dsw | 14 Begin Project Dependency
29 Begin Project Dependency
|
/external/openssl/crypto/dh/ |
dh2048.pem | 1 -----BEGIN DH PARAMETERS----- 9 -----BEGIN DH PARAMETERS-----
|
/external/stlport/test/unit/ |
list_test.cpp | 62 list<int>::iterator i1 = l1.begin(); 63 list<int>::iterator i2 = l2.begin(); 67 i1 = l1.begin(); 76 CPPUNIT_ASSERT( i2 == l1.begin() ); 81 i1 = l.begin(); 102 list<int>::iterator i = l1.begin(); 104 l1.splice(i, l2, l2.begin(), l2.end()); 105 i = l1.begin(); 120 i = str.begin(); 129 i = str.begin(); [all...] |
merge_test.cpp | 58 __iota(v1.begin(), v1.end(), 0); 59 __iota(v2.begin(), v2.end(), 3); 62 merge(v1.begin(), v1.end(), v2.begin(), v2.end(), result.begin()); 85 merge(v1.begin(), v1.end(), v2.begin(), v2.end(), result.begin(), greater<int>() );
|
search_test.cpp | 57 __iota(v1.begin(), v1.end(), 0); 59 __iota(v2.begin(), v2.end(), 50); 62 location = search(v1.begin(), v1.end(), v2.begin(), v2.end()); 66 __iota(v2.begin(), v2.end(), 4); 68 location = search(v1.begin(), v1.end(), v2.begin(), v2.end()); 71 CPPUNIT_ASSERT(location - v1.begin() == 4);
|
/ndk/sources/cxx-stl/llvm-libc++/test/containers/associative/map/map.cons/ |
copy_alloc.pass.cpp | 44 assert(distance(m.begin(), m.end()) == 3); 45 assert(*m.begin() == V(1, 1)); 46 assert(*next(m.begin()) == V(2, 1)); 47 assert(*next(m.begin(), 2) == V(3, 1)); 52 assert(distance(mo.begin(), mo.end()) == 3); 53 assert(*mo.begin() == V(1, 1)); 54 assert(*next(mo.begin()) == V(2, 1)); 55 assert(*next(mo.begin(), 2) == V(3, 1));
|
/ndk/sources/cxx-stl/llvm-libc++/test/containers/associative/set/set.cons/ |
copy_alloc.pass.cpp | 44 assert(distance(m.begin(), m.end()) == 3); 45 assert(*m.begin() == 1); 46 assert(*next(m.begin()) == 2); 47 assert(*next(m.begin(), 2) == 3); 52 assert(distance(mo.begin(), mo.end()) == 3); 53 assert(*mo.begin() == 1); 54 assert(*next(mo.begin()) == 2); 55 assert(*next(mo.begin(), 2) == 3);
|
/ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/forwardlist/forwardlist.ops/ |
unique.pass.cpp | 25 C c1(std::begin(t1), std::end(t1)); 26 C c2(std::begin(t2), std::end(t2)); 35 C c1(std::begin(t1), std::end(t1)); 36 C c2(std::begin(t2), std::end(t2)); 45 C c1(std::begin(t1), std::end(t1)); 46 C c2(std::begin(t2), std::end(t2)); 63 C c1(std::begin(t1), std::end(t1)); 64 C c2(std::begin(t2), std::end(t2));
|
/ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/list/list.modifiers/ |
erase_iter.pass.cpp | 21 std::list<int>::const_iterator i = l1.begin(); 25 assert(distance(l1.begin(), l1.end()) == 2); 27 assert(*l1.begin() == 1); 28 assert(*next(l1.begin()) == 3); 32 assert(distance(l1.begin(), l1.end()) == 1); 33 assert(*l1.begin() == 1); 34 j = l1.erase(l1.begin()); 37 assert(distance(l1.begin(), l1.end()) == 0);
|
/ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/vector/vector.modifiers/ |
erase_iter.pass.cpp | 21 std::vector<int>::const_iterator i = l1.begin(); 25 assert(distance(l1.begin(), l1.end()) == 2); 27 assert(*l1.begin() == 1); 28 assert(*next(l1.begin()) == 3); 32 assert(distance(l1.begin(), l1.end()) == 1); 33 assert(*l1.begin() == 1); 34 j = l1.erase(l1.begin()); 37 assert(distance(l1.begin(), l1.end()) == 0);
|
/ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/vector.bool/ |
erase_iter.pass.cpp | 22 std::vector<bool>::const_iterator i = l1.begin(); 26 assert(distance(l1.begin(), l1.end()) == 2); 28 assert(*l1.begin() == 1); 29 assert(*next(l1.begin()) == true); 33 assert(distance(l1.begin(), l1.end()) == 1); 34 assert(*l1.begin() == true); 35 j = l1.erase(l1.begin()); 38 assert(distance(l1.begin(), l1.end()) == 0);
|
/ndk/sources/cxx-stl/llvm-libc++/test/containers/unord/unord.multiset/ |
iterators.fail.cpp | 16 // iterator begin() {return __table_.begin();} 18 // const_iterator begin() const {return __table_.begin();} 20 // const_iterator cbegin() const {return __table_.begin();} 43 assert(std::distance(c.begin(), c.end()) == c.size()); 45 C::iterator i = c.begin(); 64 assert(std::distance(c.begin(), c.end()) == c.size());
|
/ndk/sources/cxx-stl/llvm-libc++/test/containers/unord/unord.set/ |
iterators.fail.cpp | 16 // iterator begin() {return __table_.begin();} 18 // const_iterator begin() const {return __table_.begin();} 20 // const_iterator cbegin() const {return __table_.begin();} 43 assert(std::distance(c.begin(), c.end()) == c.size()); 45 C::iterator i = c.begin(); 64 assert(std::distance(c.begin(), c.end()) == c.size());
|
/ndk/tests/device/test-gnustl-full/unit/ |
list_test.cpp | 62 list<int>::iterator i1 = l1.begin(); 63 list<int>::iterator i2 = l2.begin(); 67 i1 = l1.begin(); 76 CPPUNIT_ASSERT( i2 == l1.begin() ); 81 i1 = l.begin(); 102 list<int>::iterator i = l1.begin(); 104 l1.splice(i, l2, l2.begin(), l2.end()); 105 i = l1.begin(); 120 i = str.begin(); 129 i = str.begin(); [all...] |
merge_test.cpp | 58 __iota(v1.begin(), v1.end(), 0); 59 __iota(v2.begin(), v2.end(), 3); 62 merge(v1.begin(), v1.end(), v2.begin(), v2.end(), result.begin()); 85 merge(v1.begin(), v1.end(), v2.begin(), v2.end(), result.begin(), greater<int>() );
|
search_test.cpp | 57 __iota(v1.begin(), v1.end(), 0); 59 __iota(v2.begin(), v2.end(), 50); 62 location = search(v1.begin(), v1.end(), v2.begin(), v2.end()); 66 __iota(v2.begin(), v2.end(), 4); 68 location = search(v1.begin(), v1.end(), v2.begin(), v2.end()); 71 CPPUNIT_ASSERT(location - v1.begin() == 4);
|
/ndk/tests/device/test-stlport/unit/ |
list_test.cpp | 62 list<int>::iterator i1 = l1.begin(); 63 list<int>::iterator i2 = l2.begin(); 67 i1 = l1.begin(); 76 CPPUNIT_ASSERT( i2 == l1.begin() ); 81 i1 = l.begin(); 102 list<int>::iterator i = l1.begin(); 104 l1.splice(i, l2, l2.begin(), l2.end()); 105 i = l1.begin(); 120 i = str.begin(); 129 i = str.begin(); [all...] |
merge_test.cpp | 58 __iota(v1.begin(), v1.end(), 0); 59 __iota(v2.begin(), v2.end(), 3); 62 merge(v1.begin(), v1.end(), v2.begin(), v2.end(), result.begin()); 85 merge(v1.begin(), v1.end(), v2.begin(), v2.end(), result.begin(), greater<int>() );
|