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

1 2

  /external/sfntly/cpp/src/sfntly/data/
font_data.h 74 // Makes a slice of this FontData. The returned slice will share the data with
76 // @param offset the start of the slice
77 // @param length the number of bytes in the slice
78 // @return a slice of the original FontData
79 virtual CALLER_ATTACH FontData* Slice(int32_t offset, int32_t length) = 0;
81 // Makes a bottom bound only slice of this array. The returned slice will
83 // @param offset the start of the slice
84 // @return a slice of the original FontDat
    [all...]
writable_font_data.h 182 // Makes a slice of this FontData. The returned slice will share the data with
184 // @param offset the start of the slice
185 // @param length the number of bytes in the slice
186 // @return a slice of the original FontData
187 virtual CALLER_ATTACH FontData* Slice(int32_t offset, int32_t length);
189 // Makes a bottom bound only slice of this array. The returned slice will
191 // @param offset the start of the slice
192 // @return a slice of the original FontDat
    [all...]
readable_font_data.h 251 // Makes a slice of this FontData. The returned slice will share the data with
253 // @param offset the start of the slice
254 // @param length the number of bytes in the slice
255 // @return a slice of the original FontData
257 virtual CALLER_ATTACH FontData* Slice(int32_t offset, int32_t length);
259 // Makes a bottom bound only slice of this array. The returned slice will
261 // @param offset the start of the slice
262 // @return a slice of the original FontDat
    [all...]
writable_font_data.cc 166 CALLER_ATTACH FontData* WritableFontData::Slice(int32_t offset,
175 FontDataPtr slice = new WritableFontData(this, offset, length); local
176 return slice.Detach();
179 CALLER_ATTACH FontData* WritableFontData::Slice(int32_t offset) {
187 FontDataPtr slice = new WritableFontData(this, offset); local
188 return slice.Detach();
readable_font_data.cc 257 CALLER_ATTACH FontData* ReadableFontData::Slice(int32_t offset,
266 FontDataPtr slice = new ReadableFontData(this, offset, length); local
267 return slice.Detach();
270 CALLER_ATTACH FontData* ReadableFontData::Slice(int32_t offset) {
278 FontDataPtr slice = new ReadableFontData(this, offset); local
279 return slice.Detach();
  /libcore/luni/src/main/java/java/util/concurrent/
CopyOnWriteArrayList.java 472 * single snapshot object representing the current slice. This permits reads
482 private volatile Slice slice; field in class:CopyOnWriteArrayList.CowSubList
485 this.slice = new Slice(expectedElements, from, to);
489 Slice slice = this.slice; local
490 return slice.to - slice.from
494 Slice slice = this.slice; local
500 Slice slice = this.slice; local
516 Slice slice = this.slice; local
526 Slice slice = this.slice; local
534 Slice slice = this.slice; local
546 Slice slice = this.slice; local
553 Slice slice = this.slice; local
    [all...]
  /external/sfntly/cpp/src/sfntly/table/bitmap/
index_sub_table_format2.cc 33 ReadableFontDataPtr slice; local
34 slice.Attach(down_cast<ReadableFontData*>(
35 data_->Slice(EblcTable::Offset::kIndexSubTable2_bigGlyphMetrics,
37 BigGlyphMetricsPtr output = new BigGlyphMetrics(slice);
114 data.Attach(down_cast<WritableFontData*>(InternalWriteData()->Slice(
141 data->Slice(index_sub_table_offset, length)));
164 data->Slice(index_sub_table_offset, length)));
198 InternalReadData()->Slice(size)));
199 target.Attach(down_cast<WritableFontData*>(new_data->Slice(size)));
202 WritableFontDataPtr slice; local
    [all...]
index_sub_table_format5.cc 64 data.Attach(down_cast<ReadableFontData*>(data_->Slice(
143 data->Slice(index_sub_table_offset, length)));
166 data->Slice(index_sub_table_offset, length)));
206 source.Attach(down_cast<ReadableFontData*>(InternalReadData()->Slice(
208 target.Attach(down_cast<WritableFontData*>(new_data->Slice(
214 WritableFontDataPtr slice; local
215 slice.Attach(down_cast<WritableFontData*>(new_data->Slice(size)));
216 size += BigMetrics()->SubSerialize(slice);
239 data.Attach(down_cast<WritableFontData*>(InternalWriteData()->Slice(
    [all...]
index_sub_table_format1.cc 123 data->Slice(index_sub_table_offset, length)));
147 data->Slice(index_sub_table_offset, length)));
190 source.Attach(down_cast<ReadableFontData*>(InternalReadData()->Slice(
192 target.Attach(down_cast<WritableFontData*>(new_data->Slice(
index_sub_table_format3.cc 136 data->Slice(index_sub_table_offset, length)));
159 data->Slice(index_sub_table_offset, length)));
202 source.Attach(down_cast<ReadableFontData*>(InternalReadData()->Slice(
204 target.Attach(down_cast<WritableFontData*>(new_data->Slice(
eblc_table.cc 72 data->Slice(Offset::kBitmapSizeTableArrayStart +
167 new_data->Slice(index_sub_table_offset)));
186 new_data->Slice(size_table_offset)));
302 data->Slice(Offset::kBitmapSizeTableArrayStart +
ebdt_table.cc 38 glyph_data.Attach(down_cast<ReadableFontData*>(data_->Slice(offset, length)));
110 WritableFontDataPtr slice; local
111 slice.Attach(down_cast<WritableFontData*>(new_data->Slice(size)));
112 size += glyph_entry->second->SubSerialize(slice);
223 ReadableFontDataPtr slice; local
224 slice.Attach(down_cast<ReadableFontData*>(data->Slice(
228 slice, info->format()));
index_sub_table_format4.cc 170 data->Slice(index_sub_table_offset, length)));
193 data->Slice(index_sub_table_offset, length)));
237 source.Attach(down_cast<ReadableFontData*>(InternalReadData()->Slice(
239 target.Attach(down_cast<WritableFontData*>(new_data->Slice(
  /external/sfntly/cpp/src/test/
font_data_test.cc 260 ReadableFontDataPtr slice; local
261 slice.Attach(down_cast<ReadableFontData*>(rfd->Slice(trim, length)));
262 EXPECT_TRUE(ReadComparison(trim, length, rfd, slice));
277 w_slice.Attach(down_cast<WritableFontData*>(wfd->Slice(trim, length)));
278 r_slice.Attach(down_cast<ReadableFontData*>(rfd->Slice(trim, length)));
286 w_slice.Attach(down_cast<WritableFontData*>(wfd->Slice(trim, length)));
287 r_slice.Attach(down_cast<ReadableFontData*>(rfd->Slice(trim, length)));
294 w_slice.Attach(down_cast<WritableFontData*>(wfd->Slice(trim, length)));
295 r_slice.Attach(down_cast<ReadableFontData*>(rfd->Slice(trim, length)))
    [all...]
  /external/opencv/otherlibs/highgui/
grfmt_exr.cpp 231 frame.insert( "BY", Slice( m_type,
238 frame.insert( "Y", Slice( m_type,
245 frame.insert( "RY", Slice( m_type,
254 frame.insert( "Y", Slice( m_type,
257 frame.insert( "Y", Slice( m_type,
260 frame.insert( "Y", Slice( m_type,
270 frame.insert( "Y", Slice( m_type,
280 frame.insert( "B", Slice( m_type,
287 frame.insert( "G", Slice( m_type,
294 frame.insert( "R", Slice( m_type
    [all...]
  /external/llvm/lib/Transforms/Scalar/
SROA.cpp 133 /// \brief A used slice of an alloca.
135 /// This structure represents a slice of an alloca used by some instruction. It
139 class Slice {
146 /// \brief Storage for both the use of this slice and whether it can be
151 Slice() : BeginOffset(), EndOffset() {}
152 Slice(uint64_t BeginOffset, uint64_t EndOffset, Use *U, bool IsSplittable)
173 bool operator<(const Slice &RHS) const {
186 friend LLVM_ATTRIBUTE_UNUSED bool operator<(const Slice &LHS,
191 const Slice &RHS) {
195 bool operator==(const Slice &RHS) const
    [all...]
  /external/sfntly/cpp/src/sfntly/table/truetype/
glyph_table.cc 154 data.Attach(new_data->Slice(size));
217 sliced_data.Attach(down_cast<ReadableFontData*>(data->Slice(offset, length)));
310 sliced_data.Attach(down_cast<ReadableFontData*>(data->Slice(offset, length)));
353 data_->Slice(instructions_offset_, InstructionSize()));
613 data_->Slice(instructions_offset_, InstructionSize()));
  /external/v8/test/mjsunit/
string-charcodeat.js 48 function Slice() {
147 TestStringType(Slice, false);
array-elements-from-array-prototype-chain.js 92 var sliced = a.slice(3, 10)
93 // Slice must keep intact a and reify holes at indices 0--2 and 4--6.
array-elements-from-array-prototype.js 92 var sliced = a.slice(3, 10)
93 // Slice must keep intact a and reify holes at indices 0--2 and 4--6.
array-elements-from-object-prototype.js 92 var sliced = a.slice(3, 10)
93 // Slice must keep intact a and reify holes at indices 0--2 and 4--6.
  /external/sfntly/cpp/src/sfntly/table/core/
cmap_table.cc 399 data->Slice(offset,
413 data->Slice(offset,
564 data->Slice(offset, data->ReadUShort(
575 data->Slice(offset, data->ReadUShort(
921 (data->Slice(offset,
935 (data->Slice(offset,
1144 FontDataPtr slice; local
    [all...]
  /art/cmdline/
cmdline_parser.h 522 TokenRange possible_name = arguments_list.Slice(i);
587 TokenRange exact_range = possible_name.Slice(0, max_tokens);
token_range.h 240 // Length is trimmed so that the Slice does not go out of range.
241 TokenRange Slice(size_t offset, size_t length = std::string::npos) const {
  /external/llvm/unittests/ADT/
SmallStringTest.cpp 108 TEST_F(SmallStringTest, Slice) {
110 EXPECT_EQ("l", theString.slice(2, 3));
111 EXPECT_EQ("ell", theString.slice(1, 4));
112 EXPECT_EQ("llo", theString.slice(2, 100));
113 EXPECT_EQ("", theString.slice(2, 1));
114 EXPECT_EQ("", theString.slice(10, 20));

Completed in 2171 milliseconds

1 2