HomeSort by relevance Sort by last modified time
    Searched defs:Slice (Results 26 - 50 of 164) sorted by null

12 3 4 5 6 7

  /external/tensorflow/tensorflow/compiler/xla/service/
buffer_assignment.h 47 // of the allocation, represented by a Slice. A single BufferAllocation may hold
125 // A Slice represents a contiguous portion of a memory allocation. It is used
127 class Slice {
129 Slice() {}
130 Slice(const BufferAllocation* allocation, int64 offset, int64 size)
138 bool operator==(const Slice& other) const {
142 bool operator!=(const Slice& other) const { return !(*this == other); }
143 bool operator<(const Slice& other) const {
149 // Returns true iff this slice's memory range has a non-empty intersection
150 // with the other slice's memory range
    [all...]
  /external/tensorflow/tensorflow/core/util/sparse/
sparse_tensor.h 167 // each slice.
173 // Slice() will slice the input SparseTensor into a SparseTensor based on
178 static SparseTensor Slice(const SparseTensor& tensor,
251 // Helper for Split() that returns the slice index.
265 // Helper for Split() that returns the dimension in the slice.
279 // Helper for Split() that returns the shape given a slice index.
569 SparseTensor SparseTensor::Slice(const SparseTensor& input_tensor,
  /frameworks/base/core/java/android/app/slice/
Slice.java 17 package android.app.slice;
41 * A slice is a piece of app content and actions that can be surfaced outside of the app.
46 public final class Slice implements Parcelable {
91 * Hint that this content is a title of other content in the slice. This can also indicate that
92 * the content should be used in the shortcut representation of the slice (icon, label, action),
114 * Hint that this slice contains a number of actions that can be grouped together
127 * Hint to indicate that this content should only be displayed if the slice is presented
132 * Hint indicating this content should be shown instead of the normal content when the slice
145 * Hint that list items within this slice or subslice would appear better
150 * Hint to indicate that this slice is incomplete and an update will be sent onc
    [all...]
  /packages/experimental/SlicesApp/src/com/android/experimental/slicesapp/
SlicesProvider.java 19 import android.app.slice.Slice;
20 import android.app.slice.Slice.Builder;
21 import android.app.slice.SliceProvider;
47 mSharedPrefs = getContext().getSharedPreferences("slice", 0);
68 * Overriding onBindSlice will generate one Slice for all modes.
72 public Slice onBindSlice(Uri sliceUri) {
78 Slice.Builder b = new Builder(sliceUri);
80 b.addText("Header", null, Slice.HINT_TITLE)
    [all...]
  /prebuilts/go/darwin-x86/src/net/rpc/
server_test.go 101 func (BuiltinTypes) Slice(args *Args, reply *[]int) error {
374 // Slice
377 err = client.Call("BuiltinTypes.Slice", args, &replySlice)
379 t.Errorf("Slice: expected no error but got string %q", err.Error())
382 t.Errorf("Slice: expected %v got %v", e, replySlice)
  /prebuilts/go/linux-x86/src/net/rpc/
server_test.go 101 func (BuiltinTypes) Slice(args *Args, reply *[]int) error {
374 // Slice
377 err = client.Call("BuiltinTypes.Slice", args, &replySlice)
379 t.Errorf("Slice: expected no error but got string %q", err.Error())
382 t.Errorf("Slice: expected %v got %v", e, replySlice)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
ast.py 1171 class Slice(Node):
    [all...]
  /external/libmojo/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))
  /external/python/cpython2/Lib/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...]
  /external/tensorflow/tensorflow/compiler/xla/python/
xla_client.py 755 def Slice(self, operand, start_indices, limit_indices, strides=None):
756 """Enqueues a slice operation onto the computation.
761 the slice for each dimension.
763 (exclusive) of the slice for each dimension.
768 A ComputationDataHandle representing the added Slice op.
774 self._client.Slice(
781 """Enqueues a slice op with dynamic start indices onto the computation.
786 containing the starting indices of the slice.
787 slice_sizes: iterable of N integers containing the slice sizes in each
800 """Enqueues a dynamic update slice operation onto the computation
    [all...]
  /external/tensorflow/tensorflow/core/framework/
tensor.cc 777 Tensor Tensor::Slice(int64 start, int64 limit) const {
    [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/go/darwin-x86/src/go/types/
type.go 108 // A Slice represents a slice type.
109 type Slice struct {
113 // NewSlice returns a new slice type for the given element type.
114 func NewSlice(elem Type) *Slice { return &Slice{elem} }
116 // Elem returns the element type of slice s.
117 func (s *Slice) Elem() Type { return s.elem }
210 // must be of unnamed slice type.
217 if _, ok := params.At(n - 1).typ.(*Slice); !ok
    [all...]
  /prebuilts/go/linux-x86/src/go/types/
type.go 108 // A Slice represents a slice type.
109 type Slice struct {
113 // NewSlice returns a new slice type for the given element type.
114 func NewSlice(elem Type) *Slice { return &Slice{elem} }
116 // Elem returns the element type of slice s.
117 func (s *Slice) Elem() Type { return s.elem }
210 // must be of unnamed slice type.
217 if _, ok := params.At(n - 1).typ.(*Slice); !ok
    [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...]
  /external/tensorflow/tensorflow/compiler/xla/client/
computation_builder.cc 276 ComputationDataHandle ComputationBuilder::Slice(
312 return Slice(operand, starts, limits, strides);
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/
literal_util.cc 803 std::unique_ptr<Literal> Literal::Slice(
806 CHECK(ShapeUtil::IsArray(shape())) << "tuple is not supported for slice";
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Python-ast.h 291 slice_ty slice; member in struct:_expr::__anon4272::__anon4291
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)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Python-ast.h 291 slice_ty slice; member in struct:_expr::__anon4579::__anon4598
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/python/cpython2/Include/
Python-ast.h 291 slice_ty slice; member in struct:_expr::__anon32520::__anon32539
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/darwin-x86/include/python2.7/
Python-ast.h 291 slice_ty slice; member in struct:_expr::__anon66411::__anon66430
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::__anon66533::__anon66552
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/go/darwin-x86/src/cmd/compile/internal/types/
type.go 142 // TSLICE: Slice
275 T *Type // reference to a slice type for ... args
312 // Slice contains Type fields specific to slice types.
313 type Slice struct {
356 // Fields is a pointer to a slice of *Field.
358 // compared to a simple slice of *Field.
371 // Slice returns the entries in f as a slice.
372 // Changes to the slice entries will be reflected in f
    [all...]

Completed in 571 milliseconds

12 3 4 5 6 7