Home
last modified time | relevance | path

Searched refs:flatArray (Results 1 – 3 of 3) sorted by relevance

/third_party/typescript/src/testRunner/unittests/tsbuildWatch/
DwatchEnvironment.ts13 …const system = createWatchedSystem([libFile, typing, ...flatArray(allPkgFiles)], { currentDirector…
71 function flatArray<T>(arr: T[][]): readonly T[] { function
/third_party/protobuf/csharp/src/Google.Protobuf/
DCodedOutputStream.cs79 public CodedOutputStream(byte[] flatArray) : this(flatArray, 0, flatArray.Length) in CodedOutputStream() argument
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
DCodedOutputStream.java114 public static CodedOutputStream newInstance(final byte[] flatArray) { in newInstance() argument
115 return newInstance(flatArray, 0, flatArray.length); in newInstance()
125 final byte[] flatArray, final int offset, final int length) { in newInstance() argument
126 return new ArrayEncoder(flatArray, offset, length); in newInstance()