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

1 2 3

  /external/chromium-trace/catapult/telemetry/telemetry/timeline/
slice_unittest.py 7 from telemetry.timeline.slice import Slice
15 top = Slice(None, 'cat', 'top', 0, duration=10, thread_timestamp=0,
17 a = Slice(None, 'cat', 'a', 1, duration=2, thread_timestamp=0.5,
19 x = Slice(None, 'cat', 'x', 1.5, duration=0.25, thread_timestamp=0.75,
21 b = Slice(None, 'cat', 'b', 5, duration=2, thread_timestamp=None,
slice.py 8 class Slice(timeline_event.TimelineEvent):
9 """A Slice represents an interval of time plus parameters associated
13 Slice. These must be kept in sync.
19 super(Slice, self).__init__(
54 in child events. Returns None if the slice or any of its children does not
  /external/opencv3/3rdparty/openexr/IlmImf/
ImfFrameBuffer.cpp 39 // class Slice
52 Slice::Slice (PixelType t,
77 FrameBuffer::insert (const char name[], const Slice &slice)
82 "Frame buffer slice name cannot be an empty string.");
85 _map[name] = slice;
90 FrameBuffer::insert (const string &name, const Slice &slice)
92 insert (name.c_str(), slice);
    [all...]
ImfFrameBuffer.h 42 // class Slice
57 // Description of a single slice of the frame buffer:
62 // component is called a "slice".
65 struct Slice
100 // slice only if
111 // Default value, used to fill the slice when a file without
112 // a channel that corresponds to this slice is read.
138 Slice (PixelType type = HALF,
155 // Add a slice
159 const Slice &slice)
308 FrameBuffer::Iterator::slice () const function in class:Imf::FrameBuffer::Iterator
359 FrameBuffer::ConstIterator::slice () const function in class:Imf::FrameBuffer::ConstIterator
    [all...]
  /external/sfntly/cpp/src/sfntly/data/
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();
  /external/v8/test/mjsunit/
string-charcodeat.js 48 function Slice() {
147 TestStringType(Slice, false);
  /external/webrtc/webrtc/common_audio/
channel_buffer.h 103 // Sets the |slice| pointers to the |start_frame| position for each channel.
104 // Returns |slice| for convenience.
105 const T* const* Slice(T** slice, size_t start_frame) const {
108 slice[i] = &channels_[i][start_frame];
109 return slice;
111 T** Slice(T** slice, size_t start_frame) {
113 return const_cast<T**>(t->Slice(slice, start_frame))
    [all...]
  /external/llvm/lib/Transforms/Scalar/
SROA.cpp 127 /// \brief A used slice of an alloca.
129 /// This structure represents a slice of an alloca used by some instruction. It
133 class Slice {
140 /// \brief Storage for both the use of this slice and whether it can be
145 Slice() : BeginOffset(), EndOffset() {}
146 Slice(uint64_t BeginOffset, uint64_t EndOffset, Use *U, bool IsSplittable)
167 bool operator<(const Slice &RHS) const {
180 friend LLVM_ATTRIBUTE_UNUSED bool operator<(const Slice &LHS,
185 const Slice &RHS) {
189 bool operator==(const Slice &RHS) const
    [all...]
  /external/opencv3/3rdparty/jinja2/
nodes.py 671 class Slice(Expr):
672 """Represents a slice object. This must only be used as argument for
683 return slice(const(self.start), const(self.stop), const(self.step))
  /libcore/luni/src/main/java/java/util/concurrent/
CopyOnWriteArrayList.java 519 * single snapshot object representing the current slice. This permits reads
529 private volatile Slice slice; field in class:CopyOnWriteArrayList.CowSubList
532 this.slice = new Slice(expectedElements, from, to);
536 Slice slice = this.slice; local
537 return slice.to - slice.from
541 Slice slice = this.slice; local
547 Slice slice = this.slice; local
563 Slice slice = this.slice; local
573 Slice slice = this.slice; local
581 Slice slice = this.slice; local
593 Slice slice = this.slice; local
600 Slice slice = this.slice; local
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/compiler/
ast.py 1171 class Slice(Node):
1197 return "Slice(%s, %s, %s, %s)" % (repr(self.expr), repr(self.flags), repr(self.lower), repr(self.upper))
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/compiler/
ast.py 1171 class Slice(Node):
1197 return "Slice(%s, %s, %s, %s)" % (repr(self.expr), repr(self.flags), repr(self.lower), repr(self.upper))
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
ast.py 1171 class Slice(Node):
1197 return "Slice(%s, %s, %s, %s)" % (repr(self.expr), repr(self.flags), repr(self.lower), repr(self.upper))
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
ast.py 1171 class Slice(Node):
1197 return "Slice(%s, %s, %s, %s)" % (repr(self.expr), repr(self.flags), repr(self.lower), repr(self.upper))
    [all...]
  /prebuilts/gdb/darwin-x86/include/python2.7/
Python-ast.h 291 slice_ty slice; member in struct:_expr::__anon44208::__anon44227
323 } Slice;
500 expr_ty _Py_Subscript(expr_ty value, slice_ty slice, expr_context_ty ctx, int
513 #define Slice(a0, a1, a2, a3) _Py_Slice(a0, a1, a2, a3)
  /prebuilts/gdb/linux-x86/include/python2.7/
Python-ast.h 291 slice_ty slice; member in struct:_expr::__anon44330::__anon44349
323 } Slice;
500 expr_ty _Py_Subscript(expr_ty value, slice_ty slice, expr_context_ty ctx, int
513 #define Slice(a0, a1, a2, a3) _Py_Slice(a0, a1, a2, a3)
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
Python-ast.h 291 slice_ty slice; member in struct:_expr::__anon72446::__anon72465
323 } Slice;
500 expr_ty _Py_Subscript(expr_ty value, slice_ty slice, expr_context_ty ctx, int
513 #define Slice(a0, a1, a2, a3) _Py_Slice(a0, a1, a2, a3)
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
Python-ast.h 291 slice_ty slice; member in struct:_expr::__anon72569::__anon72588
323 } Slice;
500 expr_ty _Py_Subscript(expr_ty value, slice_ty slice, expr_context_ty ctx, int
513 #define Slice(a0, a1, a2, a3) _Py_Slice(a0, a1, a2, a3)
  /prebuilts/gradle-plugin/com/android/tools/chartlib/chartlib/24.4.0-beta3/
chartlib-24.4.0-beta3.jar 
  /prebuilts/gradle-plugin/com/android/tools/chartlib/chartlib/24.4.0-beta6/
chartlib-24.4.0-beta6.jar 
  /prebuilts/gradle-plugin/com/android/tools/chartlib/chartlib/24.5.0/
chartlib-24.5.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/chartlib/chartlib/25.0.0/
chartlib-25.0.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/chartlib/chartlib/25.0.0-alpha1/
chartlib-25.0.0-alpha1.jar 
  /prebuilts/gradle-plugin/com/android/tools/chartlib/chartlib/25.0.0-alpha3/
chartlib-25.0.0-alpha3.jar 

Completed in 1471 milliseconds

1 2 3