HomeSort by relevance Sort by last modified time
    Searched refs:End (Results 1 - 25 of 1096) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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...]
  /toolchain/binutils/binutils-2.25/binutils/testsuite/binutils-all/
testranges-ia64.d 9 Offset Begin End
11 00000000 <End of list>
13 00000010 <End of list>
testranges.d 9 Offset Begin End
11 00000000 <End of list>
13 00000010 <End of list>
  /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/drd/tests/
unit_bitmap.stderr.exp 2 End of DRD BM unit test.
  /external/llvm/lib/Support/
StreamingMemoryObject.cpp 20 RawMemoryObject(const unsigned char *Start, const unsigned char *End) :
21 FirstChar(Start), LastChar(End) {
22 assert(LastChar >= FirstChar && "Invalid start/end range");
55 uint64_t End = Address + Size;
56 if (End > BufferSize)
57 End = BufferSize;
59 assert(static_cast<int64_t>(End - Address) >= 0);
60 Size = End - Address;
98 uint64_t End = Address + Size;
99 if (End > MaxAddress
    [all...]
StringExtras.cpp 43 StringRef::size_type End = Source.find_first_of(Delimiters, Start);
45 return std::make_pair(Source.slice(Start, End), Source.substr(End));
  /external/llvm/include/llvm/Support/
SMLoc.h 50 SMLoc Start, End;
53 SMRange(SMLoc St, SMLoc En) : Start(St), End(En) {
54 assert(Start.isValid() == End.isValid() &&
55 "Start and end should either both be valid or both be invalid!");
61 } // end namespace llvm
BranchProbability.h 64 ProbabilityIter End);
69 static void normalizeEdgeWeights(WeightListIter Begin, WeightListIter End);
182 ProbabilityIter End) {
183 if (Begin == End)
187 uint64_t Sum = std::accumulate(Begin, End, uint64_t(0),
204 std::replace_if(Begin, End,
213 BranchProbability BP(1, std::distance(Begin, End));
214 std::fill(Begin, End, BP);
218 for (auto I = Begin; I != End; ++I)
224 WeightListIter 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/clang/include/clang/Analysis/Support/
BumpVector.h 59 T *Begin, *End, *Capacity;
63 : Begin(nullptr), End(nullptr), Capacity(nullptr) {
70 destroy_range(Begin, End);
91 iterator end() { return End; } function in class:clang::BumpVector
92 const_iterator end() const { return End; } function in class:clang::BumpVector
95 reverse_iterator rbegin() { return reverse_iterator(end()); }
96 const_reverse_iterator rbegin() const{ return const_reverse_iterator(end()); }
100 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()));
89 return lookups().end();
95 return lookups_range(all_lookups_iterator(Map->begin(), Map->end()),
    [all...]
  /external/clang/include/clang/Rewrite/Core/
RewriteRope.h 67 unsigned End)
68 : StrData(std::move(Str)), StartOffs(Start), EndOffs(End) {}
100 // end iterator
147 iterator end() const { return iterator(); } function in class:clang::RopePieceBTree
183 iterator end() const { return Chunks.end(); } function in class:clang::RewriteRope
190 void assign(const char *Start, const char *End) {
192 if (Start != End)
193 Chunks.insert(0, MakeRopeString(Start, End));
196 void insert(unsigned Offset, const char *Start, const char *End) {
    [all...]
  /external/clang/test/CodeGenCXX/
alloca-align.cpp 4 int Start, 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/llvm/lib/MC/
MCSection.cpp 27 if (!End)
28 End = Ctx.createTempSymbol("sec_end", true);
29 return End;
32 bool MCSection::hasEnded() const { return End && End->isInSection(); }
59 return end();
63 SubsectionFragmentMap.end(),
66 if (MI != SubsectionFragmentMap.end()) {
72 if (MI == SubsectionFragmentMap.end())
73 IP = end();
105 MCSection::iterator MCSection::end() { return Fragments.end(); } function in class:MCSection
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DebugLocEntry.h 26 /// Begin and end symbols for the address range that this location is valid.
28 const MCSymbol *End;
88 : Begin(B), End(E) {
102 End = Next.End;
115 if ((End == Next.Begin && Values == Next.Values)) {
116 End = Next.End;
123 const MCSymbol *getEndSym() const { return End; }
126 Values.append(Vals.begin(), Vals.end());
    [all...]
  /external/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/include/llvm/MC/
MCWinEH.h 35 const MCSymbol *End;
49 : Begin(nullptr), End(nullptr), ExceptionHandler(nullptr),
54 : Begin(BeginFuncEHLabel), End(nullptr), ExceptionHandler(nullptr),
60 : Begin(BeginFuncEHLabel), End(nullptr), ExceptionHandler(nullptr),
  /external/llvm/lib/AsmParser/
LLLexer.h 89 uint64_t atoull(const char *Buffer, const char *End);
90 uint64_t HexIntToVal(const char *Buffer, const char *End);
91 void HexToIntPair(const char *Buffer, const char *End, uint64_t Pair[2]);
92 void FP80HexToIntPair(const char *Buff, const char *End, uint64_t Pair[2]);
94 } // end namespace llvm
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_fog.c 97 GLfloat end = ctx->Fog.End; local
103 if (ctx->Fog.Start == ctx->Fog.End)
106 d = 1.0F / (ctx->Fog.End - ctx->Fog.Start);
107 temp = (end - z) * d;
  /art/runtime/gc/space/
malloc_space.cc 39 uint8_t* begin, uint8_t* end, uint8_t* limit, size_t growth_limit,
42 : ContinuousMemMapAllocSpace(name, mem_map, begin, end, limit, kGcRetentionPolicyAlwaysCollect),
50 CHECK_ALIGNED(reinterpret_cast<uintptr_t>(mem_map->End()), kGcCardSize);
132 uint8_t* original_end = End();
166 SetEnd(reinterpret_cast<uint8_t*>(RoundUp(reinterpret_cast<uintptr_t>(End()), kPageSize)));
168 DCHECK_ALIGNED(End(), accounting::CardTable::kCardSize);
170 DCHECK_ALIGNED(End(), kPageSize);
179 << "End " << reinterpret_cast<const void*>(End()) << "\n"
192 std::unique_ptr<MemMap> mem_map(GetMemMap()->RemapAtEnd(End(), alloc_space_name
198 uint8_t* end = mem_map->Begin() + starting_size_; local
    [all...]

Completed in 690 milliseconds

1 2 3 4 5 6 7 8 91011>>