HomeSort by relevance Sort by last modified time
    Searched full:begin (Results 251 - 275 of 8072) sorted by null

<<11121314151617181920>>

  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/debug/
vector 174 begin()
175 { return iterator(_Base::begin(), this); }
178 begin() const
179 { return const_iterator(_Base::begin(), this); }
199 { return reverse_iterator(begin()); }
203 { return const_reverse_iterator(begin()); }
208 { return const_iterator(_Base::begin(), this); }
220 { return const_reverse_iterator(begin()); }
232 this->_M_invalidate_if(_After_nth(__sz, _M_base().begin()));
356 difference_type __offset = __position - begin();
    [all...]
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/debug/
vector 174 begin()
175 { return iterator(_Base::begin(), this); }
178 begin() const
179 { return const_iterator(_Base::begin(), this); }
199 { return reverse_iterator(begin()); }
203 { return const_reverse_iterator(begin()); }
208 { return const_iterator(_Base::begin(), this); }
220 { return const_reverse_iterator(begin()); }
232 this->_M_invalidate_if(_After_nth(__sz, _M_base().begin()));
356 difference_type __offset = __position - begin();
    [all...]
  /prebuilt/ndk/android-ndk-r7/sources/cxx-stl/gnu-libstdc++/include/debug/
vector 174 begin()
175 { return iterator(_Base::begin(), this); }
178 begin() const
179 { return const_iterator(_Base::begin(), this); }
199 { return reverse_iterator(begin()); }
203 { return const_reverse_iterator(begin()); }
208 { return const_iterator(_Base::begin(), this); }
220 { return const_reverse_iterator(begin()); }
232 this->_M_invalidate_if(_After_nth(__sz, _M_base().begin()));
356 difference_type __offset = __position - begin();
    [all...]
  /packages/apps/Email/emailcommon/src/org/apache/james/mime4j/decoder/
DecoderUtil.java 22 //BEGIN android-changed: Stubbing out logging
170 int begin = body.indexOf("=?", previousEnd); local
175 int endScan = begin + 2;
176 if (begin != -1) {
184 int end = begin == -1 ? -1 : body.indexOf("?=", endScan);
194 String sep = body.substring(previousEnd, begin);
196 String decoded = decodeEncodedWord(body, begin, end);
199 sb.append(body.substring(begin, end));
213 private static String decodeEncodedWord(String body, int begin, int end) {
214 int qm1 = body.indexOf('?', begin + 2);
    [all...]
  /external/chromium/net/base/
pem_tokenizer_unittest.cc 13 "-----BEGIN EXPECTED-BLOCK-----\n"
31 "-----BEGIN EXPECTED-BLOCK-----\r\n"
49 "-----BEGIN UNEXPECTED-BLOCK-----\n"
62 "-----BEGIN BLOCK-ONE-----\n"
65 "-----BEGIN BLOCK-TWO-----\n"
89 "-----BEGIN MISSING-FOOTER-----\n"
92 "-----BEGIN MISSING-FOOTER-----\n"
109 "-----BEGIN BLOCK-ONE-----\n"
111 "-----BEGIN BLOCK-TWO-----\n"
115 "-----BEGIN BLOCK-ONE-----\n
    [all...]
  /external/chromium/chrome/browser/importer/
nss_decryptor.cc 28 /* ***** BEGIN LICENSE BLOCK *****
155 size_t begin = i; local
162 if (end - begin < 5)
175 if (lines[begin].find(kRealmBracketBegin) != std::string::npos) {
178 if (lines[begin].find("://") == std::string::npos)
179 lines[begin] = "http://" + lines[begin];
181 size_t start = lines[begin].find(kRealmBracketBegin);
182 url = GURL(lines[begin].substr(0, start));
185 size_t end = lines[begin].rfind(kRealmBracketEnd)
    [all...]
  /packages/providers/ContactsProvider/tests/assets/testUnsynced/
legacy_contacts.sql 0 BEGIN TRANSACTION;
90 CREATE TRIGGER contact_cleanup DELETE ON people BEGIN DELETE FROM peopleLookup WHERE source = old._id;DELETE FROM peopleLookupWithPhoneticName WHERE source = old._id;DELETE FROM phones WHERE person = old._id;DELETE FROM contact_methods WHERE person = old._id;DELETE FROM organizations WHERE person = old._id;DELETE FROM groupmembership WHERE person = old._id;DELETE FROM extensions WHERE person = old._id;END;
91 CREATE TRIGGER contact_methods_INSERT_typeAndLabel AFTER INSERT ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
92 CREATE TRIGGER contact_methods_UPDATE_typeAndLabel AFTER UPDATE ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
93 CREATE TRIGGER contact_methods_delete DELETE ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END;
94 CREATE TRIGGER contact_methods_insert INSERT ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=new.person;END;
95 CREATE TRIGGER contact_methods_update UPDATE ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END;
96 CREATE TRIGGER extensions_delete DELETE ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END;
97 CREATE TRIGGER extensions_insert INSERT ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=new.person; END;
98 CREATE TRIGGER extensions_update AFTER UPDATE ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person; END
    [all...]
  /dalvik/vm/compiler/template/armv5te/
TEMPLATE_INTERPRET.S 9 * r1 - the Dalvik PC to begin interpretation.
11 * [lr, #3] contains Dalvik PC to begin interpretation
  /development/tools/emulator/opengl/shared/OpenglCodecCommon/
Android.mk 15 $(call emugl-begin-static-library,libOpenglCodecCommon)
26 $(call emugl-begin-host-static-library,libOpenglCodecCommon)
  /external/chromium/app/sql/
transaction_unittest.cc 47 EXPECT_TRUE(t.Begin());
65 EXPECT_TRUE(t.Begin());
77 EXPECT_TRUE(t2.Begin());
94 EXPECT_TRUE(outer.Begin());
100 EXPECT_TRUE(inner1.Begin());
114 EXPECT_TRUE(inner2.Begin());
122 // A third inner one will fail in Begin since one has already been rolled
127 EXPECT_FALSE(inner3.Begin());
  /external/chromium/chrome/browser/automation/
automation_provider_list.h 26 const_iterator begin() { function in class:AutomationProviderList
27 return automation_providers_.begin();
  /external/chromium/chrome/browser/status_icons/
status_tray.cc 21 STLDeleteContainerPointers(status_icons_.begin(), status_icons_.end());
34 status_icons_.begin(), status_icons_.end(), icon);
  /external/chromium/chrome/browser/ui/gtk/
accelerators_gtk.h 23 const_iterator const begin() { function in class:AcceleratorsGtk
24 return all_accelerators_.begin();
  /external/chromium/net/data/ssl/certificates/
google.chain.pem 1 -----BEGIN CERTIFICATE-----
20 -----BEGIN CERTIFICATE-----
  /external/clang/test/CodeGenObjCXX/
arc-new-delete.mm 73 // CHECK: icmp eq i8** [[BEGIN:%.*]], null
75 // CHECK: [[END:%.*]] = getelementptr inbounds i8** [[BEGIN]], i64 [[LEN]]
76 // CHECK-NEXT: icmp eq i8** [[BEGIN]], [[END]]
81 // CHECK-NEXT: icmp eq i8** [[CUR]], [[BEGIN]]
85 // CHECK: icmp eq i8** [[BEGIN:%.*]], null
87 // CHECK: [[END:%.*]] = getelementptr inbounds i8** [[BEGIN]], i64 [[LEN]]
88 // CHECK-NEXT: icmp eq i8** [[BEGIN]], [[END]]
92 // CHECK-NEXT: icmp eq i8** [[CUR]], [[BEGIN]]
  /external/openssl/apps/
client.pem 3 -----BEGIN CERTIFICATE-----
16 -----BEGIN RSA PRIVATE KEY-----
  /external/openssl/crypto/pkcs7/
server.pem 3 -----BEGIN CERTIFICATE-----
16 -----BEGIN RSA PRIVATE KEY-----
  /external/oprofile/libutil++/
glob_filter.cpp 30 cit = find_if(exclude.begin(), exclude.end(), fnmatcher(str));
34 cit = find_if(include.begin(), include.end(), fnmatcher(str));
string_filter.cpp 40 cit = find(exclude.begin(), exclude.end(), str);
44 cit = find(include.begin(), include.end(), str);
  /external/stlport/test/eh/
test.cpp 10 for(it = coll.begin(); it != coll.end(); ++it) {
24 set1.insert(aVector.begin(), aVector.end());
  /external/stlport/test/unit/
accum_test.cpp 36 int sum = accumulate(v.begin(), v.end(), 0);
44 int prod = accumulate(v.begin(), v.end(), 1, mult);
setdiff_test.cpp 59 __iota(v1.begin(), v1.end(), 0);
61 __iota(v2.begin(), v2.end(), 7);
64 set_symmetric_difference(v1.begin(), v1.end(), v2.begin(), v2.end(), back_inserter(diff));
111 __iota(v1.begin(), v1.end(), 0);
113 __iota(v2.begin(), v2.end(), 7);
116 set_difference(v1.begin(), v1.end(), v2.begin(), v2.end(), back_inserter(diff));
  /external/tinyxml/
tinyxml.dsw 14 Begin Project Dependency
29 Begin Project Dependency
  /external/webkit/LayoutTests/http/conf/
webkit-httpd.pem 1 -----BEGIN RSA PRIVATE KEY-----
16 -----BEGIN CERTIFICATE-----
  /ndk/tests/device/test-gnustl-full/unit/
accum_test.cpp 36 int sum = accumulate(v.begin(), v.end(), 0);
44 int prod = accumulate(v.begin(), v.end(), 1, mult);

Completed in 1527 milliseconds

<<11121314151617181920>>