Searched defs:first (Results 176 - 200 of 1850) sorted by relevance

1234567891011>>

/prebuilts/gdb/linux-x86/lib/python2.7/bsddb/
H A D__init__.py119 key = _DeadlockWrap(cur.first, 0,0,0)[0]
160 kv = _DeadlockWrap(cur.first)
211 # first/next/previous/last/set_location methods.
329 def first(self): member in class:_DBWithCursor
334 rv = _DeadlockWrap(self.dbc.first)
H A Ddbshelve.py335 def first(self, flags=0): return self.get_1(flags|db.DB_FIRST) member in class:DBShelfCursor
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/support/
H A Dnasty_containers.hpp39 template <class InputIterator> nasty_vector(InputIterator first, InputIterator last) : v_(first, last) {} argument
46 void assign(InputIterator first, InputIterator last) { v_.assign(first, last); } argument
110 iterator insert(const_iterator pos, InputIterator first, InputIterator last) argument
111 { return v_.insert(pos, first, last); }
118 iterator erase(const_iterator first, const_iterator last) { return v_.erase(first, last); } argument
161 nasty_list(Iter first, Iter last) : l_(first, las argument
172 assign(Iter first, Iter last) argument
231 insert(const_iterator pos, InputIterator first, InputIterator last) argument
[all...]
H A Dtest_iterators.h343 ThrowingIterator (const T *first, const T *last, size_t index = 0, ThrowingAction action = TADereference) argument
344 : begin_(first), end_(last), current_(first), action_(action), index_(index) {}
480 NonThrowingIterator (const T *first, const T* last) argument
481 : begin_(first), end_(last), current_(first) {}
/prebuilts/ndk/current/sources/cxx-stl/stlport/src/
H A Dtime_facets.cpp171 static void __append(__iostring &buf, char *first, char *last, const ctype<char>& /* ct */) argument
172 { buf.append(first, last); }
174 static void __append(__iowstring &buf, char *first, char *last, const ctype<wchar_t>& ct) { argument
176 ct.widen(first, last, _wbuf);
177 buf.append(_wbuf, _wbuf + (last - first));
181 /* The number of days from the first day of the first ISO week of this
183 Monday; the first ISO week has the year's first Thursday. YDAY may
191 /* Add enough to the first operan
466 char first, second, third; local
[all...]
/prebuilts/ndk/current/sources/third_party/shaderc/libshaderc_util/include/libshaderc_util/
H A Dstring_piece.h81 // Returns the index of the first element that does not return true for the
94 // Returns the index of the first character that does not match any character
117 // Returns the index of the first character that matches any character in the
236 // Returns an iterator to the first element.
265 // Returns the index of the start of the first substring that matches
280 // Returns the index of the start of the first character that matches
300 size_t first = 0; local
303 fields.push_back(substr(first, field_break - first + keep_delimiter));
304 first
332 operator ==(const char* first, const string_piece second) argument
336 operator !=(const char* first, const string_piece second) argument
[all...]
/prebuilts/ndk/current/sources/third_party/shaderc/third_party/glslang/hlsl/
H A DhlslParseables.cpp209 if (!UseHlslTypes) // GLSL has column first for mat types
331 const int first = (UseHlslTypes ? 1 : 2); local
333 for (int xRows = first; xRows <=4; xRows++) {
334 for (int xCols = first; xCols <=4; xCols++) {
336 for (int yCols = first; yCols <=4; yCols++) {
373 // An empty order or type key repeats the first one. E.g: SVM,, means 3 args each of SVM.
374 // '>' as first letter of order creates an output parameter
375 // '<' as first letter of order creates an input parameter
376 // '^' as first letter of order takes transpose dimensions
377 // '#' as first lette
[all...]
/prebuilts/ndk/current/sources/third_party/shaderc/third_party/spirv-tools/source/
H A Dtext_handler.h61 inline bool operator==(const IdType& first, const IdType& second) { argument
62 return (first.bitwidth == second.bitwidth) &&
63 (first.isSigned == second.isSigned) &&
64 (first.type_class == second.type_class);
68 inline bool operator!=(const IdType& first, const IdType& second) { argument
69 return !(first == second);
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/support/
H A Dnasty_containers.hpp38 template <class InputIterator> nasty_vector(InputIterator first, InputIterator last) : v_(first, last) {} argument
45 void assign(InputIterator first, InputIterator last) { v_.assign(first, last); } argument
109 iterator insert(const_iterator pos, InputIterator first, InputIterator last) argument
110 { return v_.insert(pos, first, last); }
117 iterator erase(const_iterator first, const_iterator last) { return v_.erase(first, last); } argument
160 nasty_list(Iter first, Iter last) : l_(first, las argument
171 assign(Iter first, Iter last) argument
230 insert(const_iterator pos, InputIterator first, InputIterator last) argument
[all...]
/prebuilts/ndk/r11/sources/cxx-stl/stlport/src/
H A Dtime_facets.cpp171 static void __append(__iostring &buf, char *first, char *last, const ctype<char>& /* ct */) argument
172 { buf.append(first, last); }
174 static void __append(__iowstring &buf, char *first, char *last, const ctype<wchar_t>& ct) { argument
176 ct.widen(first, last, _wbuf);
177 buf.append(_wbuf, _wbuf + (last - first));
181 /* The number of days from the first day of the first ISO week of this
183 Monday; the first ISO week has the year's first Thursday. YDAY may
191 /* Add enough to the first operan
466 char first, second, third; local
[all...]
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/support/
H A Dnasty_containers.hpp39 template <class InputIterator> nasty_vector(InputIterator first, InputIterator last) : v_(first, last) {} argument
46 void assign(InputIterator first, InputIterator last) { v_.assign(first, last); } argument
110 iterator insert(const_iterator pos, InputIterator first, InputIterator last) argument
111 { return v_.insert(pos, first, last); }
118 iterator erase(const_iterator first, const_iterator last) { return v_.erase(first, last); } argument
161 nasty_list(Iter first, Iter last) : l_(first, las argument
172 assign(Iter first, Iter last) argument
231 insert(const_iterator pos, InputIterator first, InputIterator last) argument
[all...]
H A Dtest_iterators.h343 ThrowingIterator (const T *first, const T *last, size_t index = 0, ThrowingAction action = TADereference) argument
344 : begin_(first), end_(last), current_(first), action_(action), index_(index) {}
480 NonThrowingIterator (const T *first, const T* last) argument
481 : begin_(first), end_(last), current_(first) {}
/prebuilts/ndk/r13/sources/cxx-stl/stlport/src/
H A Dtime_facets.cpp171 static void __append(__iostring &buf, char *first, char *last, const ctype<char>& /* ct */) argument
172 { buf.append(first, last); }
174 static void __append(__iowstring &buf, char *first, char *last, const ctype<wchar_t>& ct) { argument
176 ct.widen(first, last, _wbuf);
177 buf.append(_wbuf, _wbuf + (last - first));
181 /* The number of days from the first day of the first ISO week of this
183 Monday; the first ISO week has the year's first Thursday. YDAY may
191 /* Add enough to the first operan
466 char first, second, third; local
[all...]
/prebuilts/ndk/r13/sources/third_party/shaderc/libshaderc_util/include/libshaderc_util/
H A Dstring_piece.h81 // Returns the index of the first element that does not return true for the
94 // Returns the index of the first character that does not match any character
117 // Returns the index of the first character that matches any character in the
236 // Returns an iterator to the first element.
265 // Returns the index of the start of the first substring that matches
280 // Returns the index of the start of the first character that matches
300 size_t first = 0; local
303 fields.push_back(substr(first, field_break - first + keep_delimiter));
304 first
332 operator ==(const char* first, const string_piece second) argument
336 operator !=(const char* first, const string_piece second) argument
[all...]
/prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/hlsl/
H A DhlslParseables.cpp209 if (!UseHlslTypes) // GLSL has column first for mat types
331 const int first = (UseHlslTypes ? 1 : 2); local
333 for (int xRows = first; xRows <=4; xRows++) {
334 for (int xCols = first; xCols <=4; xCols++) {
336 for (int yCols = first; yCols <=4; yCols++) {
373 // An empty order or type key repeats the first one. E.g: SVM,, means 3 args each of SVM.
374 // '>' as first letter of order creates an output parameter
375 // '<' as first letter of order creates an input parameter
376 // '^' as first letter of order takes transpose dimensions
377 // '#' as first lette
[all...]
/prebuilts/ndk/r13/sources/third_party/shaderc/third_party/spirv-tools/source/
H A Dtext_handler.h61 inline bool operator==(const IdType& first, const IdType& second) { argument
62 return (first.bitwidth == second.bitwidth) &&
63 (first.isSigned == second.isSigned) &&
64 (first.type_class == second.type_class);
68 inline bool operator!=(const IdType& first, const IdType& second) { argument
69 return !(first == second);
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/
H A D__init__.py119 key = _DeadlockWrap(cur.first, 0,0,0)[0]
160 kv = _DeadlockWrap(cur.first)
211 # first/next/previous/last/set_location methods.
329 def first(self): member in class:_DBWithCursor
334 rv = _DeadlockWrap(self.dbc.first)
H A Ddbshelve.py335 def first(self, flags=0): return self.get_1(flags|db.DB_FIRST) member in class:DBShelfCursor
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/
H A D__init__.py119 key = _DeadlockWrap(cur.first, 0,0,0)[0]
160 kv = _DeadlockWrap(cur.first)
211 # first/next/previous/last/set_location methods.
329 def first(self): member in class:_DBWithCursor
334 rv = _DeadlockWrap(self.dbc.first)
H A Ddbshelve.py335 def first(self, flags=0): return self.get_1(flags|db.DB_FIRST) member in class:DBShelfCursor
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/
H A Dassoc_container.hpp253 cc_hash_table(It first, It last) argument
254 { base_type::copy_from_range(first, last); }
260 cc_hash_table(It first, It last, const hash_fn& h) argument
262 { this->copy_from_range(first, last); }
271 cc_hash_table(It first, It last, const hash_fn& h, const eq_fn& e) argument
273 { this->copy_from_range(first, last); }
283 cc_hash_table(It first, It last, const hash_fn& h, const eq_fn& e, argument
286 { this->copy_from_range(first, last); }
297 cc_hash_table(It first, It last, const hash_fn& h, const eq_fn& e, argument
300 { this->copy_from_range(first, las
430 gp_hash_table(It first, It last) argument
438 gp_hash_table(It first, It last, const hash_fn& h) argument
449 gp_hash_table(It first, It last, const hash_fn& h, const eq_fn& e) argument
461 gp_hash_table(It first, It last, const hash_fn& h, const eq_fn& e, const comb_probe_fn& cp) argument
475 gp_hash_table(It first, It last, const hash_fn& h, const eq_fn& e, const comb_probe_fn& cp, const probe_fn& p) argument
491 gp_hash_table(It first, It last, const hash_fn& h, const eq_fn& e, const comb_probe_fn& cp, const probe_fn& p, const resize_policy& rp) argument
655 tree(It first, It last) argument
663 tree(It first, It last, const cmp_fn& c) argument
751 trie(It first, It last) argument
758 trie(It first, It last, const access_traits& t) argument
831 list_update(It first, It last) argument
[all...]
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/
H A Dassoc_container.hpp253 cc_hash_table(It first, It last) argument
254 { base_type::copy_from_range(first, last); }
260 cc_hash_table(It first, It last, const hash_fn& h) argument
262 { this->copy_from_range(first, last); }
271 cc_hash_table(It first, It last, const hash_fn& h, const eq_fn& e) argument
273 { this->copy_from_range(first, last); }
283 cc_hash_table(It first, It last, const hash_fn& h, const eq_fn& e, argument
286 { this->copy_from_range(first, last); }
297 cc_hash_table(It first, It last, const hash_fn& h, const eq_fn& e, argument
300 { this->copy_from_range(first, las
430 gp_hash_table(It first, It last) argument
438 gp_hash_table(It first, It last, const hash_fn& h) argument
449 gp_hash_table(It first, It last, const hash_fn& h, const eq_fn& e) argument
461 gp_hash_table(It first, It last, const hash_fn& h, const eq_fn& e, const comb_probe_fn& cp) argument
475 gp_hash_table(It first, It last, const hash_fn& h, const eq_fn& e, const comb_probe_fn& cp, const probe_fn& p) argument
491 gp_hash_table(It first, It last, const hash_fn& h, const eq_fn& e, const comb_probe_fn& cp, const probe_fn& p, const resize_policy& rp) argument
655 tree(It first, It last) argument
663 tree(It first, It last, const cmp_fn& c) argument
751 trie(It first, It last) argument
758 trie(It first, It last, const access_traits& t) argument
831 list_update(It first, It last) argument
[all...]
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/mingw/include/c++/4.8.3/ext/pb_ds/
H A Dassoc_container.hpp253 cc_hash_table(It first, It last) argument
254 { base_type::copy_from_range(first, last); }
260 cc_hash_table(It first, It last, const hash_fn& h) argument
262 { this->copy_from_range(first, last); }
271 cc_hash_table(It first, It last, const hash_fn& h, const eq_fn& e) argument
273 { this->copy_from_range(first, last); }
283 cc_hash_table(It first, It last, const hash_fn& h, const eq_fn& e, argument
286 { this->copy_from_range(first, last); }
297 cc_hash_table(It first, It last, const hash_fn& h, const eq_fn& e, argument
300 { this->copy_from_range(first, las
430 gp_hash_table(It first, It last) argument
438 gp_hash_table(It first, It last, const hash_fn& h) argument
449 gp_hash_table(It first, It last, const hash_fn& h, const eq_fn& e) argument
461 gp_hash_table(It first, It last, const hash_fn& h, const eq_fn& e, const comb_probe_fn& cp) argument
475 gp_hash_table(It first, It last, const hash_fn& h, const eq_fn& e, const comb_probe_fn& cp, const probe_fn& p) argument
491 gp_hash_table(It first, It last, const hash_fn& h, const eq_fn& e, const comb_probe_fn& cp, const probe_fn& p, const resize_policy& rp) argument
655 tree(It first, It last) argument
663 tree(It first, It last, const cmp_fn& c) argument
751 trie(It first, It last) argument
758 trie(It first, It last, const access_traits& t) argument
831 list_update(It first, It last) argument
[all...]
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/
H A Dassoc_container.hpp253 cc_hash_table(It first, It last) argument
254 { base_type::copy_from_range(first, last); }
260 cc_hash_table(It first, It last, const hash_fn& h) argument
262 { this->copy_from_range(first, last); }
271 cc_hash_table(It first, It last, const hash_fn& h, const eq_fn& e) argument
273 { this->copy_from_range(first, last); }
283 cc_hash_table(It first, It last, const hash_fn& h, const eq_fn& e, argument
286 { this->copy_from_range(first, last); }
297 cc_hash_table(It first, It last, const hash_fn& h, const eq_fn& e, argument
300 { this->copy_from_range(first, las
430 gp_hash_table(It first, It last) argument
438 gp_hash_table(It first, It last, const hash_fn& h) argument
449 gp_hash_table(It first, It last, const hash_fn& h, const eq_fn& e) argument
461 gp_hash_table(It first, It last, const hash_fn& h, const eq_fn& e, const comb_probe_fn& cp) argument
475 gp_hash_table(It first, It last, const hash_fn& h, const eq_fn& e, const comb_probe_fn& cp, const probe_fn& p) argument
491 gp_hash_table(It first, It last, const hash_fn& h, const eq_fn& e, const comb_probe_fn& cp, const probe_fn& p, const resize_policy& rp) argument
655 tree(It first, It last) argument
663 tree(It first, It last, const cmp_fn& c) argument
751 trie(It first, It last) argument
758 trie(It first, It last, const access_traits& t) argument
831 list_update(It first, It last) argument
[all...]
/prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/
H A Dassoc_container.hpp253 cc_hash_table(It first, It last) argument
254 { base_type::copy_from_range(first, last); }
260 cc_hash_table(It first, It last, const hash_fn& h) argument
262 { this->copy_from_range(first, last); }
271 cc_hash_table(It first, It last, const hash_fn& h, const eq_fn& e) argument
273 { this->copy_from_range(first, last); }
283 cc_hash_table(It first, It last, const hash_fn& h, const eq_fn& e, argument
286 { this->copy_from_range(first, last); }
297 cc_hash_table(It first, It last, const hash_fn& h, const eq_fn& e, argument
300 { this->copy_from_range(first, las
430 gp_hash_table(It first, It last) argument
438 gp_hash_table(It first, It last, const hash_fn& h) argument
449 gp_hash_table(It first, It last, const hash_fn& h, const eq_fn& e) argument
461 gp_hash_table(It first, It last, const hash_fn& h, const eq_fn& e, const comb_probe_fn& cp) argument
475 gp_hash_table(It first, It last, const hash_fn& h, const eq_fn& e, const comb_probe_fn& cp, const probe_fn& p) argument
491 gp_hash_table(It first, It last, const hash_fn& h, const eq_fn& e, const comb_probe_fn& cp, const probe_fn& p, const resize_policy& rp) argument
655 tree(It first, It last) argument
663 tree(It first, It last, const cmp_fn& c) argument
751 trie(It first, It last) argument
758 trie(It first, It last, const access_traits& t) argument
831 list_update(It first, It last) argument
[all...]

Completed in 1546 milliseconds

1234567891011>>