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

1 2 3 4 5 6 7 8 91011>>

  /cts/tests/tests/slice/src/android/slice/cts/
Launcher.java 15 package android.slice.cts;
  /frameworks/support/slices/core/src/main/java/androidx/slice/
SliceSpecs.java 17 package androidx.slice;
22 * Constants for each of the slice specs
29 * Most basic slice, only has icon, title, and summary.
31 public static final SliceSpec BASIC = new SliceSpec("androidx.slice.BASIC", 1);
37 public static final SliceSpec LIST = new SliceSpec("androidx.slice.LIST", 1);
43 public static final SliceSpec MESSAGING = new SliceSpec("androidx.slice.MESSAGING", 1);
SliceConvert.java 16 package androidx.slice;
19 import static android.app.slice.SliceItem.FORMAT_ACTION;
20 import static android.app.slice.SliceItem.FORMAT_IMAGE;
21 import static android.app.slice.SliceItem.FORMAT_INT;
22 import static android.app.slice.SliceItem.FORMAT_LONG;
23 import static android.app.slice.SliceItem.FORMAT_REMOTE_INPUT;
24 import static android.app.slice.SliceItem.FORMAT_SLICE;
25 import static android.app.slice.SliceItem.FORMAT_TEXT;
35 * Convert between {@link androidx.slice.Slice} and {@link android.app.slice.Slice
    [all...]
  /frameworks/support/slices/view/src/androidTest/java/androidx/slice/render/
SliceRenderActivity.java 17 package androidx.slice.render;
25 public static final String ACTION_RENDER_DONE = "androidx.slice.render.RENDER_DONE";
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue18906.go 20 slice = array[1:]
33 if slice[y] != 255 {
19 slice = array[1:] var
  /prebuilts/go/linux-x86/test/fixedbugs/
issue18906.go 20 slice = array[1:]
33 if slice[y] != 255 {
19 slice = array[1:] var
  /external/tensorflow/tensorflow/compiler/tf2xla/kernels/
unpack_op.cc 77 auto slice = ctx->builder()->Slice(input, start_indices, limit_indices, variable
80 auto result = ctx->builder()->Reshape(slice, output_shape.dim_sizes());
  /frameworks/base/services/core/java/com/android/server/slice/
DirtyTracker.java 15 package com.android.server.slice;
  /frameworks/base/services/tests/uiservicestests/src/com/android/server/slice/
PackageMatchingCacheTest.java 15 package com.android.server.slice;
29 import com.android.server.slice.SliceManagerService.PackageMatchingCache;
  /frameworks/support/slices/core/src/androidTest/java/androidx/slice/
SliceTestProvider.java 17 package androidx.slice;
19 import static android.app.slice.Slice.HINT_LARGE;
20 import static android.app.slice.Slice.HINT_LIST;
21 import static android.app.slice.Slice.HINT_NO_TINT;
22 import static android.app.slice.Slice.HINT_TITLE;
29 import androidx.slice.Slice.Builder
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
slice.go 11 type slice struct { type
17 // An notInHeapSlice is a slice backed by go:notinheap memory.
24 // maxElems is a lookup table containing the maximum capacity for a slice.
25 // The index is the size of the slice element.
38 // maxSliceCap returns the maximum capacity for a slice.
46 func makeslice(et *_type, len, cap int) slice {
62 return slice{p, len, cap}
65 func makeslice64(et *_type, len64, cap64 int64) slice {
79 // growslice handles slice growth during append.
80 // It is passed the slice element type, the old slice, and the desired new minimum capacity
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/issue4879.dir/
a.go 13 type slice []int type
25 root: unsafe.Pointer(&slice{}),
  /prebuilts/go/darwin-x86/test/
named1.go 19 type Slice []byte
21 var slice Slice var
61 asString(String(slice)) // ok
slice3err.go 10 var slice []int var
20 _ = array[::] // ERROR "middle index required in 3-index slice" "final index required in 3-index slice"
21 _ = array[i::] // ERROR "middle index required in 3-index slice" "final index required in 3-index slice"
22 _ = array[:j:] // ERROR "final index required in 3-index slice"
23 _ = array[i:j:] // ERROR "final index required in 3-index slice"
24 _ = array[::k] // ERROR "middle index required in 3-index slice"
25 _ = array[i::k] // ERROR "middle index required in 3-index slice"
29 _ = slice[:
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
slice.go 11 type slice struct { type
17 // An notInHeapSlice is a slice backed by go:notinheap memory.
24 // maxElems is a lookup table containing the maximum capacity for a slice.
25 // The index is the size of the slice element.
38 // maxSliceCap returns the maximum capacity for a slice.
46 func makeslice(et *_type, len, cap int) slice {
62 return slice{p, len, cap}
65 func makeslice64(et *_type, len64, cap64 int64) slice {
79 // growslice handles slice growth during append.
80 // It is passed the slice element type, the old slice, and the desired new minimum capacity
    [all...]
  /prebuilts/go/linux-x86/test/fixedbugs/issue4879.dir/
a.go 13 type slice []int type
25 root: unsafe.Pointer(&slice{}),
  /prebuilts/go/linux-x86/test/
named1.go 19 type Slice []byte
21 var slice Slice var
61 asString(String(slice)) // ok
slice3err.go 10 var slice []int var
20 _ = array[::] // ERROR "middle index required in 3-index slice" "final index required in 3-index slice"
21 _ = array[i::] // ERROR "middle index required in 3-index slice" "final index required in 3-index slice"
22 _ = array[:j:] // ERROR "final index required in 3-index slice"
23 _ = array[i:j:] // ERROR "final index required in 3-index slice"
24 _ = array[::k] // ERROR "middle index required in 3-index slice"
25 _ = array[i::k] // ERROR "middle index required in 3-index slice"
29 _ = slice[:
    [all...]
  /tools/apksig/src/main/java/com/android/apksig/util/
DataSource.java 109 DataSource slice(long offset, long size); method in interface:DataSource
  /frameworks/support/slices/builders/src/main/java/androidx/slice/builders/impl/
MessagingV1Impl.java 17 package androidx.slice.builders.impl;
19 import static android.app.slice.Slice.SUBTYPE_MESSAGE;
26 import androidx.slice.Slice;
27 import androidx.slice.SliceSpec;
37 public MessagingV1Impl(Slice.Builder b, SliceSpec spec) {
51 public void apply(Slice.Builder builder) {
78 android.app.slice.Slice.SUBTYPE_SOURCE)
    [all...]
  /external/llvm/include/llvm/DebugInfo/CodeView/
StreamRef.h 27 // Use StreamRef.slice() instead.
53 Buffer = Buffer.slice(0, MaxLength);
82 StreamRef slice(uint32_t Offset, uint32_t Len) const { function in class:llvm::codeview::StreamRef
  /external/perfetto/include/perfetto/tracing/core/
slice.h 33 struct Slice {
34 Slice() : start(nullptr), size(0) {}
35 Slice(const void* st, size_t sz) : start(st), size(sz) {}
38 explicit Slice(std::unique_ptr<std::string> str)
41 Slice(Slice&& other) noexcept = default;
43 // Create a Slice which owns |size| bytes of memory.
44 static Slice Allocate(size_t size) {
45 Slice slice; local
    [all...]
  /external/perfetto/src/tracing/core/
trace_packet_unittest.cc 56 auto slice = tp.slices().begin(); local
57 ASSERT_NE(tp.slices().end(), slice);
58 ASSERT_EQ(ser_buf.data(), slice->start);
59 ASSERT_EQ(ser_buf.size(), slice->size);
60 ASSERT_EQ(tp.slices().end(), ++slice);
78 auto slice = tp.slices().begin(); local
79 ASSERT_NE(tp.slices().end(), slice);
80 ASSERT_EQ(ser_buf.data(), slice->start);
81 ASSERT_EQ(3u, slice->size);
83 ASSERT_NE(tp.slices().end(), ++slice);
    [all...]
  /external/tensorflow/tensorflow/core/util/
tensor_slice_set.h 17 // tensor and then "query" if we have data for a given slice.
48 // Register a new slice for the tensor. The "tag" is an arbitrary string
49 // associated with the slice (in one application it denotes the name of the
50 // file that contains the slice); the "data" points to the data of the tensor
51 // slice (it can be a nullptr).
53 // the data is always available during the life time of the tensor slice set
55 Status Register(const TensorSlice& slice, const string& tag,
58 // Query about a new slice: checks if we have data for "slice" and if we have
59 // the data and "data" is not nullptr, fill "data" with the slice data. Th
73 TensorSlice slice; member in struct:tensorflow::checkpoint::TensorSliceSet::SliceInfo
    [all...]
  /frameworks/base/core/java/android/app/slice/
SliceMetrics.java 17 package android.app.slice;
30 * This is called by SliceView, so Slice developers should
33 * @see androidx.slice.widget.SliceView
42 * An object to be used throughout the life of a slice to register events.
52 * To be called whenever the slice becomes visible to the user.
56 mLogMaker.setCategory(MetricsEvent.SLICE)
63 * To be called whenever the slice becomes invisible to the user.
67 mLogMaker.setCategory(MetricsEvent.SLICE)
74 * To be called whenever the user invokes a discrete action via a slice.
81 * @see androidx.slice.widget.EventInfo#actionTyp
    [all...]

Completed in 597 milliseconds

1 2 3 4 5 6 7 8 91011>>