| /third_party/skia/third_party/externals/spirv-cross/reference/shaders/asm/geom/ |
| D | inout-split-access-chain-handle.asm.geom | 10 void Copy(inout Data inputStream[3]) 12 inputStream[0].ApiPerspectivePosition = gl_in[0].gl_Position; 17 Data inputStream[3]; 18 Data param[3] = inputStream; 20 inputStream = param; 21 gl_Position = inputStream[0].ApiPerspectivePosition;
|
| /third_party/node/deps/npm/node_modules/cacache/lib/content/ |
| D | write.js | 57 this.inputStream = new Minipass() 58 this.inputStream.on('error', er => this.emit('error', er)) 59 this.inputStream.on('drain', () => this.emit('drain')) 66 this.inputStream, 71 return this.inputStream.write(chunk, encoding, cb) 75 this.inputStream.end(() => { 101 async function handleContent (inputStream, cache, opts) { argument 104 const res = await pipeToTmp(inputStream, cache, tmp.target, opts) 119 async function pipeToTmp (inputStream, cache, tmpTarget, opts) { argument 129 new Pipeline(inputStream, outStream).promise(), [all …]
|
| /third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/charsetdet/ |
| D | DetectingViewer.java | 277 private CharsetMatch[] detect(BufferedInputStream inputStream) in detect() argument 282 det.setText(inputStream); in detect() 291 private void show(InputStream inputStream, CharsetMatch[] matches, String title) in show() argument 306 inputStream.reset(); in show() 314 while ((bytesRead = inputStream.read(bytes, offset, 1024)) >= 0) { in show() 327 isr = new InputStreamReader(inputStream, encoding); in show() 358 BufferedInputStream inputStream = openFile(file); in doOpenFile() local 360 if (inputStream != null) { in doOpenFile() 361 CharsetMatch[] matches = detect(inputStream); in doOpenFile() 363 show(inputStream, matches, file.getName()); in doOpenFile() [all …]
|
| /third_party/skia/platform_tools/android/apps/skottie/skottielib/src/main/java/org/skia/skottie/ |
| D | SkottieView.java | 122 public void setSource(InputStream inputStream) { in setSource() argument 123 mAnimation = setSourceHelper(inputStream); in setSource() 127 InputStream inputStream = mBackingView.getResources().openRawResource(resId); in setSource() local 128 mAnimation = setSourceHelper(inputStream); in setSource() 132 InputStream inputStream = context.getContentResolver().openInputStream(uri); in setSource() local 133 mAnimation = setSourceHelper(inputStream); in setSource() 136 private SkottieAnimation setSourceHelper(InputStream inputStream) { in setSourceHelper() argument 150 … .createAnimation(((TextureView) mBackingView), inputStream, mBackgroundColor, mRepeatCount); in setSourceHelper() 153 … .createAnimation(((SurfaceView) mBackingView), inputStream, mBackgroundColor, mRepeatCount); in setSourceHelper()
|
| /third_party/node/test/known_issues/ |
| D | test-repl-require-context.js | 8 const inputStream = new stream.PassThrough(); constant 12 input: inputStream, 27 inputStream.write('const isObject = (obj) => obj.constructor === Object;\n'); 28 inputStream.write('isObject({});\n'); 29 inputStream.write(`require('${fixture}').isObject({});\n`);
|
| /third_party/node/test/parallel/ |
| D | test-repl-definecommand.js | 10 const inputStream = new stream.PassThrough(); constant 17 input: inputStream, 37 inputStream.write('.help\n'); 40 inputStream.write('.say1 node developer\n'); 45 inputStream.write('.say2 node developer\n');
|
| D | test-repl-multiline.js | 9 const inputStream = new ArrayStream(); 17 input: inputStream, 36 inputStream.run(input);
|
| D | test-repl-preview.js | 52 const promise = repl.inputStream.wait(); 54 repl.inputStream.run(cmd); 68 repl.inputStream.run([
|
| D | test-repl-load-multiline-no-trailing-newline.js | 27 const inputStream = new ArrayStream(); constant 34 input: inputStream,
|
| D | test-repl-load-multiline.js | 27 const inputStream = new ArrayStream(); constant 34 input: inputStream,
|
| D | test-repl-pretty-stack.js | 13 const inputStream = new ArrayStream(); 20 input: inputStream,
|
| D | test-repl-pretty-custom-stack.js | 13 const inputStream = new ArrayStream(); 20 input: inputStream,
|
| D | test-repl-use-global.js | 66 const inputStream = new stream.PassThrough(); 69 input: inputStream,
|
| D | test-repl-underscore.js | 225 const inputStream = new stream.PassThrough(); 234 input: inputStream,
|
| /third_party/protobuf/java/core/src/test/java/com/google/protobuf/ |
| D | CodedInputStreamTest.java | 962 CodedInputStream inputStream = inputType.newDecoder(rawInput); in testReadByteArray() local 964 byte[] result = inputStream.readByteArray(); in testReadByteArray() 966 result = inputStream.readByteArray(); in testReadByteArray() 969 result = inputStream.readByteArray(); in testReadByteArray() 972 result = inputStream.readByteArray(); in testReadByteArray() 1050 CodedInputStream inputStream = inputType.newDecoder(rawInput); in testReadByteBuffer() local 1052 ByteBuffer result = inputStream.readByteBuffer(); in testReadByteBuffer() 1054 result = inputStream.readByteBuffer(); in testReadByteBuffer() 1057 result = inputStream.readByteBuffer(); in testReadByteBuffer() 1060 result = inputStream.readByteBuffer(); in testReadByteBuffer() [all …]
|
| /third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
| D | CharsetMatch.java | 47 InputStream inputStream = fInputStream; in getReader() local 49 if (inputStream == null) { in getReader() 50 inputStream = new ByteArrayInputStream(fRawInput, 0, fRawLength); in getReader() 54 inputStream.reset(); in getReader() 55 return new InputStreamReader(inputStream, getName()); in getReader()
|
| /third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
| D | CharsetMatch.java | 48 InputStream inputStream = fInputStream; in getReader() local 50 if (inputStream == null) { in getReader() 51 inputStream = new ByteArrayInputStream(fRawInput, 0, fRawLength); in getReader() 55 inputStream.reset(); in getReader() 56 return new InputStreamReader(inputStream, getName()); in getReader()
|
| /third_party/libphonenumber/tools/java/data/src/com/google/i18n/phonenumbers/ |
| D | CombineGeoData.java | 50 private final InputStream inputStream; field in CombineGeoData 55 public CombineGeoData(InputStream inputStream, OutputStream outputStream, String lineSeparator) { in CombineGeoData() argument 56 this.inputStream = inputStream; in CombineGeoData() 61 public CombineGeoData(InputStream inputStream, OutputStream outputStream) { in CombineGeoData() argument 62 this(inputStream, outputStream, System.getProperty("line.separator")); in CombineGeoData() 87 BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(inputStream)); in parseInput()
|
| /third_party/skia/third_party/externals/spirv-cross/shaders/asm/geom/ |
| D | inout-split-access-chain-handle.asm.geom | 19 OpName %inputStream "inputStream" 25 OpName %inputStream_0 "inputStream" 82 %inputStream = OpFunctionParameter %_ptr_Function__arr_Data_uint_3 86 %28 = OpAccessChain %_ptr_Function__Data %inputStream %int_0
|
| /third_party/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/metadata/init/ |
| D | ClassPathResourceMetadataLoader.java | 35 InputStream inputStream = in loadMetadata() local 37 if (inputStream == null) { in loadMetadata() 40 return inputStream; in loadMetadata()
|
| D | MetadataParser.java | 101 private void close(InputStream inputStream) { in close() argument 103 inputStream.close(); in close()
|
| /third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/charsetdet/sbcs/ |
| D | InputFile.java | 35 private InputStreamReader inputStream; field in InputFile 62 inputStream = new InputStreamReader(fileStream, "UTF8"); in open() 74 inputStream.close(); in close() 101 charsRead = inputStream.read(buffer, 0, buffer.length); in read()
|
| /third_party/skia/platform_tools/android/apps/AndroidKit/src/main/java/org/skia/androidkit/util/ |
| D | SkottieView.java | 103 InputStream inputStream = context.getResources().openRawResource(resID); in SkottieView() local 104 mRenderer = new SkottieRenderer(makeAnimation(inputStream), background); in SkottieView() 166 InputStream inputStream = context.getResources().openRawResource(resID); in setSource() local 167 mRenderer = new SkottieRenderer(makeAnimation(inputStream), background); in setSource()
|
| /third_party/libphonenumber/java/libphonenumber/test/com/google/i18n/phonenumbers/metadata/ |
| D | PhoneMetadataCollectionUtil.java | 17 InputStream inputStream = new ByteArrayInputStream(outputStream.toByteArray()); in toInputStream() local 19 return inputStream; in toInputStream()
|
| /third_party/skia/third_party/externals/angle2/src/tests/preprocessor_tests/ |
| D | define_test.cpp | 1096 std::stringstream inputStream; in TEST_F() local 1099 inputStream << "#define b(x) x\n"; in TEST_F() 1100 inputStream << "#define a0(x) foo x\n"; in TEST_F() 1103 inputStream << "#define a" << i << "(x) b(a" << (i - 1) << "(x))\n"; in TEST_F() 1105 inputStream << "a19(y)\n"; in TEST_F() 1113 preprocess(inputStream.str().c_str(), settings); in TEST_F()
|