Searched defs:begin (Results 201 - 225 of 787) sorted by relevance

1234567891011>>

/external/chromium_org/tools/gn/
H A Dtrace.h42 base::TimeTicks begin() const { return begin_; } function in class:TraceItem
/external/chromium_org/tools/ipc_fuzzer/message_lib/
H A Dmessage_file_reader.cc109 const char* begin = file_data_.begin(); local
111 const char* message_tail = IPC::Message::FindNext(begin, end);
117 size_t msglen = message_tail - begin;
124 IPC::Message const_message(begin, msglen);
170 MessageVector::iterator it = messages_->begin();
193 for (MessageVector::iterator it = messages_->begin();
/external/chromium_org/url/third_party/mozilla/
H A Durl_parse.h24 Component() : begin(0), len(-1) {}
27 Component(int b, int l) : begin(b), len(l) {}
30 return begin + len;
46 begin = 0;
51 return begin == other.begin && len == other.len;
54 int begin; // Byte offset in the string of this component. member in struct:url::Component
58 // Helper that returns a component created with the given begin and ending
60 inline Component MakeRange(int begin, int end) { argument
61 return Component(begin, en
[all...]
/external/chromium_org/v8/src/
H A Dfactory.h201 int begin,
205 Handle<String> NewSubString(Handle<String> str, int begin, int end) { argument
206 if (begin == 0 && end == str->length()) return str;
207 return NewProperSubString(str, begin, end);
/external/clang/include/clang/AST/
H A DASTUnresolvedSet.h44 iterator begin() { return iterator(Decls.begin()); } function in class:clang::ASTUnresolvedSet
47 const_iterator begin() const { return const_iterator(Decls.begin()); } function in class:clang::ASTUnresolvedSet
58 for (DeclsTy::iterator I = Decls.begin(), E = Decls.end(); I != E; ++I) {
/external/clang/include/clang/Basic/
H A DFileSystemStatCache.h119 iterator begin() const { return StatCalls.begin(); } function in class:clang::MemorizeStatCalls
H A DSourceManagerInternals.h123 iterator begin() { return LineEntries.begin(); } function in class:clang::LineTableInfo
/external/clang/include/clang/Driver/
H A DJob.h150 iterator begin() { return Jobs.begin(); } function in class:clang::driver::JobList
151 const_iterator begin() const { return Jobs.begin(); } function in class:clang::driver::JobList
H A DMultilib.h69 /// All elements begin with either '+' or '-'
140 iterator begin() { return Multilibs.begin(); } function in class:clang::driver::MultilibSet
141 const_iterator begin() const { return Multilibs.begin(); } function in class:clang::driver::MultilibSet
/external/clang/include/clang/Serialization/
H A DContinuousRangeMap.h74 iterator I = std::lower_bound(Rep.begin(), Rep.end(), Val, Compare());
86 iterator begin() { return Rep.begin(); } function in class:clang::ContinuousRangeMap
88 const_iterator begin() const { return Rep.begin(); } function in class:clang::ContinuousRangeMap
92 iterator I = std::upper_bound(Rep.begin(), Rep.end(), K, Compare());
95 if (I == Rep.begin())
119 std::sort(Self.Rep.begin(), Self.Rep.end(), Compare());
H A DModuleManager.h110 ModuleIterator begin() { return Chain.begin(); } function in class:clang::serialization::ModuleManager
116 ModuleConstIterator begin() const { return Chain.begin(); } function in class:clang::serialization::ModuleManager
/external/clang/lib/StaticAnalyzer/Core/
H A DSVals.cpp162 nonloc::CompoundVal::iterator nonloc::CompoundVal::begin() const { function in class:nonloc::CompoundVal
163 return getValue()->begin();
283 for (nonloc::CompoundVal::iterator I=C.begin(), E=C.end(); I!=E; ++I) {
/external/clang/test/Analysis/
H A Dcxx11-crashes.cpp63 bool begin(double *it) { function
/external/clang/test/Analysis/inlining/
H A Dcontainers.cpp30 clang_analyzer_eval(set.begin().impl == set.end().impl);
39 sub.useIterator(sub.begin());
51 clang_analyzer_eval(w1.begin().impl.impl == w1.begin().impl.impl);
119 iterator begin() { function in class:MySet
194 wrapped_iterator begin() { function in class:BeginOnlySet
199 return IterImpl(impl.begin());
221 return impl.begin();
243 return impl.begin();
267 return iterator{impl.begin()
[all...]
/external/clang/test/CXX/stmt.stmt/stmt.iter/stmt.ranged/
H A Dp1.cpp4 int begin; member in struct:pr12960
6 for (int& it : x) { // expected-error {{invalid range expression of type 'int'; no viable 'begin' function available}}
17 auto begin(T &&t) -> decltype(t.begin()) { return t.begin(); } // expected-note 2{{ignored: substitution failure}}
22 auto begin(T &&t) -> decltype(t.alt_begin()) { return t.alt_begin(); } // expected-note {{selected 'begin' template [with T = }} \
29 int begin(int);
37 int *begin(); // expected-note 3{{selected 'begin' functio
[all...]
/external/clang/test/Index/
H A Dannotate-tokens-cxx0x.cpp54 const _E* begin() const {return __begin_;} function in class:std::initializer_list
/external/clang/test/SemaCXX/
H A Dcxx0x-initializer-scalars.cpp33 const _E* begin() const {return __begin_;} function in class:std::initializer_list
/external/compiler-rt/lib/lsan/
H A Dlsan_common_linux.cc65 uptr begin = info->dlpi_addr + phdr->p_vaddr; local
66 uptr end = begin + phdr->p_memsz;
69 if (begin <= allocator_begin && allocator_begin < end) {
72 if (begin < allocator_begin)
73 ScanRangeForPointers(begin, allocator_begin, frontier, "GLOBAL",
79 ScanRangeForPointers(begin, end, frontier, "GLOBAL", kReachable);
/external/gtest/src/
H A Dgtest-printers.cc252 // The array starts at begin, the length is len, it may include '\0' characters
256 const CharType* begin, size_t len, ostream* os) {
261 const CharType cur = begin[index];
274 // 'begin'. CharType must be either char or wchar_t.
277 const CharType* begin, size_t len, ostream* os) {
285 if (len > 0 && begin[len - 1] == '\0') {
286 PrintCharsAsStringTo(begin, len - 1, os);
294 PrintCharsAsStringTo(begin, len, os);
298 // Prints a (const) char array of 'len' elements, starting at address 'begin'.
299 void UniversalPrintArray(const char* begin, size_ argument
255 PrintCharsAsStringTo( const CharType* begin, size_t len, ostream* os) argument
276 UniversalPrintCharArray( const CharType* begin, size_t len, ostream* os) argument
305 UniversalPrintArray(const wchar_t* begin, size_t len, ostream* os) argument
[all...]
/external/javassist/src/main/javassist/bytecode/stackmap/
H A DLiveness.java231 protected void analyze(CodeIterator ci, int begin, int end) argument
234 ci.begin();
235 ci.move(begin);
/external/libvorbis/lib/
H A Denvelope.h46 int begin; member in struct:__anon24743
/external/libvorbis/vq/
H A Dhuffbuild.c25 static int getval(FILE *in,int begin,int n,int group,int max){ argument
35 for(i=1;i<=begin;i++)
44 return(getval(in,begin,n,group,max));
53 "huffbuild <input>.vqd <begin,n,group>|<lorange-hirange> [noguard]\n"
54 " where begin,n,group is first scalar, \n"
65 int i,j,k,begin,n,subn,guard=1; local
85 begin=0;
87 begin=atoi(argv[2]);
139 long val=getval(file,begin,n,subn,maxval);
/external/lldb/source/Breakpoint/
H A DBreakpointLocationCollection.cpp84 return std::find_if(m_break_loc_collection.begin(), m_break_loc_collection.end(), // Search full range
91 return std::find_if(m_break_loc_collection.begin(), m_break_loc_collection.end(), // Search full range
154 begin = m_break_loc_collection.begin(), local
157 for (pos = begin; pos != end; ++pos)
169 begin = m_break_loc_collection.begin(), local
174 for (pos = begin; pos != end; ++pos)
189 begin = m_break_loc_collection.begin(), local
[all...]
/external/lldb/source/DataFormatters/
H A DTypeCategoryMap.cpp90 ActiveCategoriesList::iterator iter = m_active_categories.begin();
144 MapIterator iter = m_map.begin();
167 for (pos = m_map.begin(); pos != end; pos++)
186 ActiveCategoriesIterator begin, end = m_active_categories.end(); local
190 for (begin = m_active_categories.begin(); begin != end; begin++)
192 lldb::TypeCategoryImplSP category_sp = *begin;
214 ActiveCategoriesIterator begin, en local
243 ActiveCategoriesIterator begin, end = m_active_categories.end(); local
[all...]
/external/lldb/source/Symbol/
H A DVariableList.cpp57 std::copy(variable_list->m_variables.begin(), // source begin
85 m_variables.erase (m_variables.begin() + idx);
94 for (pos = m_variables.begin(); pos != end; ++pos)
97 return std::distance (m_variables.begin(), pos);
107 for (pos = m_variables.begin(); pos != end; ++pos)
123 for (pos = m_variables.begin(); pos != end; ++pos)
144 for (pos = m_variables.begin(); pos != end; ++pos)
163 const iterator begin = m_variables.begin(); local
[all...]

Completed in 492 milliseconds

1234567891011>>