Searched refs:flatArray (Results 1 – 3 of 3) sorted by relevance
/third_party/typescript/src/testRunner/unittests/tsbuild/ |
D | watchEnvironment.ts | 25 …const system = createWatchedSystem([libFile, typing, ...flatArray(allPkgFiles)], { currentDirector… 36 ...flatArray(pkgs(index => [ 42 const watchFilesDetailed = arrayToMap(flatArray(allPkgFiles), f => f.path, () => 1); 73 function flatArray<T>(arr: T[][]): readonly T[] { 114 ...flatArray(pkgs(index => [
|
/third_party/protobuf/csharp/src/Google.Protobuf/ |
D | CodedOutputStream.cs | 79 public CodedOutputStream(byte[] flatArray) : this(flatArray, 0, flatArray.Length) in CodedOutputStream() argument
|
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
D | CodedOutputStream.java | 114 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()
|