HomeSort by relevance Sort by last modified time
    Searched refs:subslice (Results 1 - 7 of 7) sorted by null

  /external/flatbuffers/include/flatbuffers/
grpc.h 231 // GetMessage extracts the subslice of the buffer corresponding to the
249 // Extract a subslice of the existing slice (increment refcount)
250 grpc_slice subslice = grpc_slice_sub(slice, begin, end); local
251 // Wrap the subslice in a `Message<T>`, but don't increment refcount
252 Message<T> msg(subslice, false);
  /build/soong/android/
util.go 126 // each. It modifies the slice contents in place, and returns a subslice of the original slice.
143 // each. It modifies the slice contents in place, and returns a subslice of the original slice.
paths.go 407 // modifies the Paths slice contents in place, and returns a subslice of the original slice.
424 // modifies the Paths slice contents in place, and returns a subslice of the original slice.
513 // (including subdirectories) are in a contiguous subslice of the list, and can be found in
525 // PathsInDirectory returns a subslice of the DirectorySortedPaths as a Paths that contains all entries
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
exceptions.c 599 PyObject *subslice = NULL; local
626 subslice = PyTuple_GetSlice(args, 0, 2);
627 if (!subslice)
631 self->args = subslice;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
exceptions.c 599 PyObject *subslice = NULL; local
626 subslice = PyTuple_GetSlice(args, 0, 2);
627 if (!subslice)
631 self->args = subslice;
    [all...]
  /external/python/cpython2/Objects/
exceptions.c 593 PyObject *subslice = NULL; local
617 subslice = PyTuple_GetSlice(args, 0, 2);
618 if (!subslice)
621 Py_SETREF(self->args, subslice);
    [all...]
  /external/python/cpython3/Objects/
exceptions.c 890 PyObject *subslice = PyTuple_GetSlice(args, 0, 2); local
891 if (!subslice)
895 *p_args = args = subslice;
    [all...]

Completed in 3949 milliseconds