/external/chromium_org/content/public/browser/ |
color_chooser.h | 19 virtual void End() = 0;
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/detail/ |
finder.hpp | 20 #include <boost/range/end.hpp> 33 Returns a pair <begin,end> marking the subsequence in the sequence. 34 If the find fails, functor returns <End,End> 44 m_Search(::boost::begin(Search), ::boost::end(Search)), m_Comp(Comp) {} 56 ForwardIteratorT End ) const 63 OuterIt!=End; 68 return result_type( End, End ); 73 InnerIt!=End && SubstrIt!=m_Search.end() [all...] |
sequence.hpp | 18 #include <boost/range/end.hpp> 33 ForwardIteratorT End ) 35 Input.insert( At, Begin, End ); 44 ::boost::algorithm::detail::insert( Input, At, ::boost::begin(Insert), ::boost::end(Insert) ); 75 ForwardIteratorT End ) 80 for(; InsertIt!=End && InputIt!=To; InsertIt++, InputIt++ ) 85 if ( InsertIt!=End ) 88 Input.insert( InputIt, InsertIt, End ); 111 ForwardIteratorT End ) 114 if ( Begin!=End ) [all...] |
/external/llvm/utils/count/ |
count.c | 15 char Buffer[4096], *End; 22 Count = strtol(argv[1], &End, 10); 23 if (*End != '\0' && End != argv[1]) {
|
/external/valgrind/main/drd/tests/ |
unit_bitmap.stderr.exp | 2 End of DRD BM unit test.
|
/external/llvm/include/llvm/Support/ |
SMLoc.h | 49 SMLoc Start, End; 52 SMRange(SMLoc St, SMLoc En) : Start(St), End(En) { 53 assert(Start.isValid() == End.isValid() && 54 "Start and end should either both be valid or both be invalid!"); 60 } // end namespace llvm
|
Allocator.h | 114 } // End namespace detail. 142 : CurPtr(nullptr), End(nullptr), BytesAllocated(0), Allocator() {} 145 : CurPtr(nullptr), End(nullptr), BytesAllocated(0), 151 : CurPtr(Old.CurPtr), End(Old.End), Slabs(std::move(Old.Slabs)), 155 Old.CurPtr = Old.End = nullptr; 162 DeallocateSlabs(Slabs.begin(), Slabs.end()); 167 DeallocateSlabs(Slabs.begin(), Slabs.end()); 171 End = RHS.End; [all...] |
/external/llvm/unittests/Support/ |
IteratorTest.cpp | 29 test_iterator Begin, End; 31 End = test_iterator(V.end()); 44 EXPECT_NE(I, End); 45 EXPECT_GT(End, I); 46 EXPECT_LT(I, End); 57 EXPECT_EQ(End, I); 70 test_iterator Begin, End; 72 End = test_iterator(V.end()); [all...] |
/external/clang/test/Analysis/ |
cxx-for-range-cfg.cpp | 11 T *End;
|
/external/llvm/lib/IR/ |
User.cpp | 50 Use *End = Begin + N; 51 (void) new(End) Use::UserRef(const_cast<User*>(this), 1); 52 return Use::initTags(Begin, End); 62 Use *End = Start + Us; 63 User *Obj = reinterpret_cast<User*>(End); 66 Use::initTags(Start, End); 90 } // End llvm namespace
|
/external/clang/include/clang/Analysis/Support/ |
BumpVector.h | 54 T *Begin, *End, *Capacity; 58 : Begin(nullptr), End(nullptr), Capacity(nullptr) { 65 destroy_range(Begin, End); 86 iterator end() { return End; } function in class:clang::BumpVector 87 const_iterator end() const { return End; } function in class:clang::BumpVector 90 reverse_iterator rbegin() { return reverse_iterator(end()); } 91 const_reverse_iterator rbegin() const{ return const_reverse_iterator(end()); } 95 bool empty() const { return Begin == End; } [all...] |
/external/clang/include/clang/AST/ |
ASTVector.h | 35 T *Begin, *End; 38 void setEnd(T *P) { this->End = P; } 48 ASTVector() : Begin(nullptr), End(nullptr), Capacity(nullptr, false) {} 50 ASTVector(ASTVector &&O) : Begin(O.Begin), End(O.End), Capacity(O.Capacity) { 51 O.Begin = O.End = nullptr; 57 : Begin(nullptr), End(nullptr), Capacity(nullptr, false) { 65 swap(End, O.End); 73 destroy_range(Begin, End); 94 iterator end() { return End; } function in class:clang::ASTVector 95 const_iterator end() const { return End; } function in class:clang::ASTVector [all...] |
DeclLookups.h | 27 StoredDeclsMap::iterator It, End; 37 StoredDeclsMap::iterator End) 38 : It(It), End(End) {} 51 } while (It != End && 76 return lookups_range(all_lookups_iterator(Map->begin(), Map->end()), 77 all_lookups_iterator(Map->end(), Map->end())); 86 return lookups().end(); 92 return lookups_range(all_lookups_iterator(Map->begin(), Map->end()), [all...] |
/external/chromium_org/cc/debug/ |
paint_time_counter.h | 33 RingBufferType::Iterator End() const { return ring_buffer_.End(); }
|
/external/chromium_org/cc/resources/ |
memory_history.h | 43 RingBufferType::Iterator End() const { return ring_buffer_.End(); }
|
/external/chromium_org/tools/gyp/tools/Xcode/Specifications/ |
gyp.xclangspec | 54 End = "'"; 170 End = "}"; 185 End = "]"; 216 End = "\n";
|
/external/llvm/include/llvm/MC/MCAnalysis/ |
MCAtom.h | 44 /// \brief Get the end address, i.e. the last one inside the atom. 45 uint64_t getEndAddr() const { return End; } 75 uint64_t Begin, End; 79 : Kind(K), Name("(unknown)"), Parent(P), Begin(B), End(E) { } 84 /// \brief Remap the atom, using the given range, updating Begin/End. 98 /// The bounds for the resulting atoms are returned in {L,R}{Begin,End}. 139 const_iterator end() const { return Insts.end(); } function in class:llvm::MCTextAtom 157 MCTextAtom(MCModule *P, uint64_t Begin, uint64_t End) 158 : MCAtom(TextAtom, P, Begin, End), NextInstAddress(Begin) { [all...] |
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/ |
SQLTransactionState.h | 34 End = 0, 47 NumberOfStates // Always keep this at the end of the list.
|
SQLTransactionStateMachine.cpp | 38 case SQLTransactionState::End: 39 return "end";
|
/external/clang/test/CodeGenCXX/ |
alloca-align.cpp | 4 int Start, End;
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
DebugLocEntry.h | 22 // Begin and end symbols for the address range that this location is valid. 24 const MCSymbol *End; 97 DebugLocEntry() : Begin(nullptr), End(nullptr), Unit(nullptr) {} 100 : Begin(B), End(E), Unit(U) { 109 if ((End == Next.Begin && Values == Next.Values)) { 110 End = Next.End; 116 const MCSymbol *getEndSym() const { return End; }
|
/external/llvm/include/llvm/ADT/ |
StringExtras.h | 169 inline std::string join_impl(IteratorT Begin, IteratorT End, 172 if (Begin == End) 176 while (++Begin != End) { 184 inline std::string join_impl(IteratorT Begin, IteratorT End, 187 if (Begin == End) 190 size_t Len = (std::distance(Begin, End) - 1) * Separator.size(); 191 for (IteratorT I = Begin; I != End; ++I) 195 while (++Begin != End) { 202 /// Joins the strings in the range [Begin, End), adding Separator between 205 inline std::string join(IteratorT Begin, IteratorT End, StringRef Separator) [all...] |
/external/clang/include/clang/Rewrite/Core/ |
RewriteRope.h | 66 RopePiece(RopeRefCountString *Str, unsigned Start, unsigned End) 67 : StrData(Str), StartOffs(Start), EndOffs(End) { 124 // end iterator 171 iterator end() const { return iterator(); } function in class:clang::RopePieceBTree 213 iterator end() const { return Chunks.end(); } function in class:clang::RewriteRope 220 void assign(const char *Start, const char *End) { 222 if (Start != End) 223 Chunks.insert(0, MakeRopeString(Start, End)); 226 void insert(unsigned Offset, const char *Start, const char *End) { [all...] |
/external/chromium_org/third_party/skia/tools/lua/ |
bitmap_statistics.lua | 3 end 5 function string.endsWith(String,End) 6 return End=='' or string.sub(String,-string.len(End))==End 7 end 20 end 24 end 42 end 47 end [all...] |
/external/llvm/lib/MC/MCAnalysis/ |
MCModule.cpp | 29 assert(Begin <= NewAtom->End && "Creating MCAtom with endpoints reversed?"); 34 assert((I == atom_end() || (*I)->getBeginAddr() > NewAtom->End) 41 MCTextAtom *MCModule::createTextAtom(uint64_t Begin, uint64_t End) { 42 MCTextAtom *NewAtom = new MCTextAtom(this, Begin, End); 47 MCDataAtom *MCModule::createDataAtom(uint64_t Begin, uint64_t End) { 48 MCDataAtom *NewAtom = new MCDataAtom(this, Begin, End); 67 assert((NewI == atom_end() || (*NewI)->getBeginAddr() > Atom->End) 73 Atom->End = NewEnd; 115 I = std::lower_bound(BBsByAtom.begin(), BBsByAtom.end(), 117 for (; I != BBsByAtom.end() && (*I)->getInsts() == TA; ++I) [all...] |