/external/chromium_org/tools/telemetry/telemetry/core/timeline/ |
slice_unittest.py | 7 from telemetry.core.timeline.slice import Slice 14 top = Slice(None, 'cat', 'top', 0, duration=10, thread_timestamp=0, 16 a = Slice(None, 'cat', 'a', 1, duration=2, thread_timestamp=0.5, 18 x = Slice(None, 'cat', 'x', 1.5, duration=0.25, thread_timestamp=0.75, 20 b = Slice(None, 'cat', 'b', 5, duration=2, thread_timestamp=None,
|
slice.py | 7 class Slice(timeline_event.TimelineEvent): 8 """A Slice represents an interval of time plus parameters associated 12 Slice. These must be kept in sync. 18 super(Slice, self).__init__( 46 in child events. Returns None if the slice or any of its children does not
|
/external/chromium_org/third_party/leveldatabase/src/include/leveldb/ |
slice.h | 5 // Slice is a simple structure containing a pointer into some external 6 // storage and a size. The user of a Slice must ensure that the slice 10 // Multiple threads can invoke const methods on a Slice without 12 // non-const method, all threads accessing the same Slice must use 25 class Slice { 27 // Create an empty slice. 28 Slice() : data_(""), size_(0) { } 30 // Create a slice that refers to d[0,n-1]. 31 Slice(const char* d, size_t n) : data_(d), size_(n) { [all...] |
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/data/ |
writable_font_data.cc | 168 CALLER_ATTACH FontData* WritableFontData::Slice(int32_t offset, 177 FontDataPtr slice = new WritableFontData(this, offset, length); local 178 return slice.Detach(); 181 CALLER_ATTACH FontData* WritableFontData::Slice(int32_t offset) { 189 FontDataPtr slice = new WritableFontData(this, offset); local 190 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/chromium_org/v8/test/mjsunit/ |
string-charcodeat.js | 48 function Slice() { 147 TestStringType(Slice, false);
|
/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);
|
/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...] |
/packages/apps/Settings/src/com/android/settings/widget/ |
PieChartView.java | 48 private ArrayList<Slice> mSlices = Lists.newArrayList(); 62 public class Slice { 71 public Slice(long value, int color) { 118 mSlices.add(new Slice(value, color)); 141 for (Slice slice : mSlices) { 142 slice.path.reset(); 143 slice.pathSide.reset(); 144 slice.pathOutline.reset(); 145 total += slice.value [all...] |
/external/chromium_org/third_party/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))
|
/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/python/darwin-x86/2.7.5/include/python2.7/ |
Python-ast.h | 291 slice_ty slice; member in struct:_expr::__anon60393::__anon60412 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::__anon60516::__anon60535 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)
|
/external/llvm/lib/Transforms/Scalar/ |
SROA.cpp | 114 /// \brief A used slice of an alloca. 116 /// This structure represents a slice of an alloca used by some instruction. It 120 class Slice { 127 /// \brief Storage for both the use of this slice and whether it can be 132 Slice() : BeginOffset(), EndOffset() {} 133 Slice(uint64_t BeginOffset, uint64_t EndOffset, Use *U, bool IsSplittable) 154 bool operator<(const Slice &RHS) const { 163 friend LLVM_ATTRIBUTE_UNUSED bool operator<(const Slice &LHS, 168 const Slice &RHS) { 172 bool operator==(const Slice &RHS) const [all...] |
/prebuilts/devtools/tools/lib/ |
jython-standalone-2.5.3.jar | |
/prebuilts/misc/common/jython/ |
jython.jar | |
/prebuilts/tools/common/m2/repository/org/python/jython/2.5.3/ |
jython-2.5.3.jar | |
/prebuilts/tools/common/m2/repository/org/python/jython-standalone/2.5.3/ |
jython-standalone-2.5.3.jar | |