Searched defs:begin (Results 1 - 25 of 402) sorted by relevance

1234567891011>>

/external/chromium/chrome/browser/extensions/
H A Dextension_i18n_api.cc34 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())
H A Dpending_extension_manager.h55 const_iterator begin() const { return pending_extension_map_.begin(); } function in class:PendingExtensionManager
H A Dextension_process_manager.h89 const_iterator begin() const { return all_hosts_.begin(); } function in class:ExtensionProcessManager
/external/chromium/chrome/browser/automation/
H A Dautomation_provider_list.h26 const_iterator begin() { function in class:AutomationProviderList
27 return automation_providers_.begin();
/external/chromium/chrome/browser/ui/gtk/
H A Daccelerators_gtk.h23 const_iterator const begin() { function in class:AcceleratorsGtk
24 return all_accelerators_.begin();
/external/webkit/Source/JavaScriptCore/heap/
H A DConservativeRoots.cpp47 void ConservativeRoots::add(void* begin, void* end) argument
49 ASSERT(begin <= end);
50 ASSERT((static_cast<char*>(end) - static_cast<char*>(begin)) < 0x1000000);
51 ASSERT(isPointerAligned(begin));
54 for (char** it = static_cast<char**>(begin); it != static_cast<char**>(end); ++it)
/external/astl/tests/
H A Dtest_memory.cpp40 const char *begin = kSrc; local
42 const char *end = begin + kLen;
47 res = std::uninitialized_copy(begin, end, dest);
59 const CtorDtorCounter *begin = kSrc; local
60 const CtorDtorCounter *end = begin + kLen;
66 res = std::uninitialized_copy(begin, end, dest);
/external/chromium/chrome/browser/
H A Dbackground_application_list_model.h74 ExtensionList::const_iterator begin() const { function in class:BackgroundApplicationListModel
75 return extensions_.begin();
/external/chromium/chrome/browser/prefs/
H A Dvalue_map_pref_store.cc43 ValueMapPrefStore::iterator ValueMapPrefStore::begin() { function in class:ValueMapPrefStore
44 return prefs_.begin();
51 ValueMapPrefStore::const_iterator ValueMapPrefStore::begin() const { function in class:ValueMapPrefStore
52 return prefs_.begin();
/external/chromium/chrome/browser/sync/sessions/
H A Dtest_util.cc12 SyncerStep begin, SyncerStep end) {
18 SyncerStep begin, SyncerStep end) {
26 SyncerStep begin, SyncerStep end) {
37 SyncerStep begin, SyncerStep end) {
11 SimulateHasMoreToSync(sessions::SyncSession* session, SyncerStep begin, SyncerStep end) argument
17 SimulateDownloadUpdatesFailed(sessions::SyncSession* session, SyncerStep begin, SyncerStep end) argument
25 SimulateCommitFailed(sessions::SyncSession* session, SyncerStep begin, SyncerStep end) argument
36 SimulateSuccess(sessions::SyncSession* session, SyncerStep begin, SyncerStep end) argument
/external/chromium/googleurl/src/
H A Durl_canon_internal_file.h50 // spec is returned (after the colon when a drive spec is found, the begin
53 static int FileDoDriveSpec(const CHAR* spec, int begin, int end, argument
57 int num_slashes = CountConsecutiveSlashes(spec, begin, end);
58 int after_slashes = begin + num_slashes;
61 return begin; // Haven't consumed any characters
81 static void FileDoPath(const CHAR* spec, int begin, int end, argument
84 // canonicalizer expects the input to begin in a slash already so
86 int num_slashes = CountConsecutiveSlashes(spec, begin, end);
87 int after_slashes = begin + num_slashes;
115 new_parsed->scheme.begin
[all...]
H A Durl_parse_internal.h50 // Given an already-initialized begin index and length, this shrinks the range
52 // indicate the length of untrimmed data from |*begin|, but rather the position
53 // in the input string (so the string starts at character |*begin| in the spec,
56 inline void TrimURL(const CHAR* spec, int* begin, int* len) { argument
58 while (*begin < *len && ShouldTrimFromURL(spec[*begin]))
59 (*begin)++;
63 while (*len > *begin && ShouldTrimFromURL(spec[*len - 1]))
/external/chromium/net/base/
H A Ddata_url.cc21 std::string::const_iterator begin = url.spec().begin(); local
24 std::string::const_iterator after_colon = std::find(begin, end, ':');
88 temp_data.erase(std::remove_if(temp_data.begin(), temp_data.end(),
/external/chromium/net/url_request/
H A Durl_request_job_tracker.h88 JobIterator begin() const { function in class:net::URLRequestJobTracker
89 return active_jobs_.begin();
/external/clang/include/clang/AST/
H A DUsuallyTinyPtrVector.h42 iterator begin() const;
52 UsuallyTinyPtrVector<T>::begin() const { function in class:clang::UsuallyTinyPtrVector
/external/clang/include/clang/Index/
H A DHandlers.h60 /// I = TURes.begin(), E = TURes.end(); I != E; ++I) { ....
74 iterator begin() const { return Store.begin(); } function in class:clang::idx::Storing
/external/clang/lib/ARCMigrate/
H A DTransforms.h86 void clearRefsIn(iterator begin, iterator end, ExprSet &refs) { argument
87 for (; begin != end; ++begin)
88 clearRefsIn(*begin, refs);
/external/libvpx/vpx_ports/
H A Dvpx_timer.h49 LARGE_INTEGER begin, end; member in struct:vpx_usec_timer
51 struct timeval begin, end;
60 QueryPerformanceCounter(&t->begin);
62 gettimeofday(&t->begin, NULL);
84 diff.QuadPart = t->end.QuadPart - t->begin.QuadPart;
93 timersub(&t->end, &t->begin, &diff);
/external/llvm/include/llvm/ADT/
H A DPriorityQueue.h36 PriorityQueue(Iterator begin, Iterator end, argument
39 : std::priority_queue<T, Sequence, Compare>(begin, end, compare, sequence)
50 std::find(this->c.begin(), this->c.end(), t) - this->c.begin();
72 std::make_heap(this->c.begin(), this->c.end(), this->comp);
/external/llvm/include/llvm/CodeGen/
H A DGCMetadataPrinter.h59 /// begin/end - Iterate over the collected function metadata.
60 iterator begin() { return S->begin(); } function in class:llvm::GCMetadataPrinter
/external/llvm/include/llvm/
H A DValueSymbolTable.h90 inline iterator begin() { return vmap.begin(); } function in class:llvm::ValueSymbolTable
93 inline const_iterator begin() const { return vmap.begin(); } function in class:llvm::ValueSymbolTable
/external/protobuf/src/google/protobuf/stubs/
H A Dstl_util-inl.h52 void STLDeleteContainerPointers(ForwardIterator begin, argument
54 while (begin != end) {
55 ForwardIterator temp = begin;
56 ++begin;
85 return str->empty() ? NULL : &*str->begin();
90 // hash_set, or any other STL container which defines sensible begin(), end(),
101 STLDeleteContainerPointers(container->begin(), container->end());
112 for (typename T::iterator i = v->begin(); i != v->end(); ++i) {
/external/webkit/Source/JavaScriptCore/wtf/
H A DSentinelLinkedList.h53 iterator begin();
72 template <typename Node> inline typename SentinelLinkedList<Node>::iterator SentinelLinkedList<Node>::begin() function in class:WTF::SentinelLinkedList
/external/webkit/Source/WebCore/platform/leveldb/
H A DLevelDBSlice.h38 LevelDBSlice(const char* begin, const char* end) argument
39 : m_begin(begin)
56 const char* begin() const { return m_begin; } function in class:WebCore::LevelDBSlice
/external/webkit/Source/WebCore/platform/sql/
H A DSQLiteTransaction.cpp48 void SQLiteTransaction::begin() function in class:WebCore::SQLiteTransaction

Completed in 2047 milliseconds

1234567891011>>