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

1 2 3 4 5

  /prebuilts/go/darwin-x86/test/fixedbugs/
issue5515.go 16 rs := Slice(b)
20 type Slice []T
22 func (s Slice) Swap(i, j int) {
  /prebuilts/go/linux-x86/test/fixedbugs/
issue5515.go 16 rs := Slice(b)
20 type Slice []T
22 func (s Slice) Swap(i, j int) {
  /prebuilts/go/darwin-x86/src/cmd/asm/internal/lex/
slice.go 9 // A Slice reads from a slice of Tokens.
10 type Slice struct {
17 func NewSlice(fileName string, line int, tokens []Token) *Slice {
18 return &Slice{
26 func (s *Slice) Next() ScanToken {
34 func (s *Slice) Text() string {
38 func (s *Slice) File() string {
42 func (s *Slice) Line() int {
46 func (s *Slice) Col() int
    [all...]
  /prebuilts/go/darwin-x86/test/
named1.go 19 type Slice []byte
21 var slice Slice var
61 asString(String(slice)) // ok
named.go 18 type Slice []byte
29 func asSlice(Slice) {}
44 func isSlice(x interface{}) { _ = x.(Slice) }
55 slice Slice = make(Slice, 10)
237 asSlice(slice)
238 isSlice(slice)
239 asSlice(make(Slice, 5))
240 isSlice(make(Slice, 5)
    [all...]
  /prebuilts/go/linux-x86/src/cmd/asm/internal/lex/
slice.go 9 // A Slice reads from a slice of Tokens.
10 type Slice struct {
17 func NewSlice(fileName string, line int, tokens []Token) *Slice {
18 return &Slice{
26 func (s *Slice) Next() ScanToken {
34 func (s *Slice) Text() string {
38 func (s *Slice) File() string {
42 func (s *Slice) Line() int {
46 func (s *Slice) Col() int
    [all...]
  /prebuilts/go/linux-x86/test/
named1.go 19 type Slice []byte
21 var slice Slice var
61 asString(String(slice)) // ok
named.go 18 type Slice []byte
29 func asSlice(Slice) {}
44 func isSlice(x interface{}) { _ = x.(Slice) }
55 slice Slice = make(Slice, 10)
237 asSlice(slice)
238 isSlice(slice)
239 asSlice(make(Slice, 5))
240 isSlice(make(Slice, 5)
    [all...]
  /external/sfntly/cpp/src/sfntly/data/
writable_font_data.cc 169 CALLER_ATTACH FontData* WritableFontData::Slice(int32_t offset,
180 FontDataPtr slice = new WritableFontData(this, offset, length); local
181 return slice.Detach();
184 CALLER_ATTACH FontData* WritableFontData::Slice(int32_t offset) {
192 FontDataPtr slice = new WritableFontData(this, offset); local
193 return slice.Detach();
readable_font_data.cc 314 CALLER_ATTACH FontData* ReadableFontData::Slice(int32_t offset,
325 FontDataPtr slice = new ReadableFontData(this, offset, length); local
326 return slice.Detach();
329 CALLER_ATTACH FontData* ReadableFontData::Slice(int32_t offset) {
337 FontDataPtr slice = new ReadableFontData(this, offset); local
338 return slice.Detach();
  /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...]
  /system/netd/libnetdutils/include/netdutils/
Slice.h 31 // Slice represents memory as a half-closed interval [base, limit).
33 // Note that without manually invoking the Slice() constructor, it is
34 // impossible to increase the size of a slice. This guarantees that
35 // applications that properly use the slice API will never access
36 // memory outside of a slice.
38 // Note that const Slice still wraps mutable memory, however copy
39 // assignment and move assignment to slice are disabled.
40 class Slice {
42 Slice() = default;
44 // Create a slice beginning at base and continuing to but not including limi
    [all...]
  /build/kati/
eval.go 90 func (ac *accessCache) Slice() []*accessedMakefile {
723 accessedMks: ev.cache.Slice(),
  /prebuilts/go/darwin-x86/src/sort/
sort.go 241 // Slice sorts the provided slice given the provided less function.
246 // The function panics if the provided interface is not a slice.
247 func Slice(slice interface{}, less func(i, j int) bool) {
248 rv := reflect.ValueOf(slice)
249 swap := reflect.Swapper(slice)
254 // SliceStable sorts the provided slice given the provided less
257 // The function panics if the provided interface is not a slice.
258 func SliceStable(slice interface{}, less func(i, j int) bool)
    [all...]
  /prebuilts/go/linux-x86/src/sort/
sort.go 241 // Slice sorts the provided slice given the provided less function.
246 // The function panics if the provided interface is not a slice.
247 func Slice(slice interface{}, less func(i, j int) bool) {
248 rv := reflect.ValueOf(slice)
249 swap := reflect.Swapper(slice)
254 // SliceStable sorts the provided slice given the provided less
257 // The function panics if the provided interface is not a slice.
258 func SliceStable(slice interface{}, less func(i, j int) bool)
    [all...]
  /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 {
167 friend LLVM_ATTRIBUTE_UNUSED bool operator<(const Slice &LHS,
172 const Slice &RHS) {
176 bool operator==(const Slice &RHS) const
    [all...]
  /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...]
  /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 }
209 // must be of unnamed slice type.
216 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 }
209 // must be of unnamed slice type.
216 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...]

Completed in 1521 milliseconds

1 2 3 4 5