/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/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/node/deps/npm/node_modules/execa/node_modules/get-stream/ |
D | index.js | 4 function getStream(inputStream, opts) { argument 5 if (!inputStream) { 25 inputStream.once('error', error); 26 inputStream.pipe(stream); 38 if (inputStream.unpipe) { 39 inputStream.unpipe(stream);
|
/third_party/node/deps/npm/node_modules/got/node_modules/get-stream/ |
D | index.js | 4 function getStream(inputStream, opts) { argument 5 if (!inputStream) { 25 inputStream.once('error', error); 26 inputStream.pipe(stream); 38 if (inputStream.unpipe) { 39 inputStream.unpipe(stream);
|
/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'); 41 inputStream.write('.say1 node developer\n'); 46 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-options.js | 56 assert.strictEqual(r1.input, r1.inputStream); 68 assert.strictEqual(r1.rli.input, r1.inputStream); 91 assert.strictEqual(r2.input, r2.inputStream); 104 assert.strictEqual(r2.rli.input, r2.inputStream);
|
D | test-repl-preview.js | 61 const promise = repl.inputStream.wait(); 63 repl.inputStream.run(cmd); 77 repl.inputStream.run([
|
/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/node/deps/npm/node_modules/cacache/lib/content/ |
D | write.js | 49 const inputStream = new PassThrough() 58 allDone = handleContent(inputStream, cache, opts, errCheck) 60 inputStream.write(c, n, cb) 62 inputStream.end(() => { 83 function handleContent (inputStream, cache, opts, errCheck) { argument 87 inputStream, cache, tmp.target, opts, errCheck 96 function pipeToTmp (inputStream, cache, tmpTarget, opts, errCheck) { argument 113 return pipe(inputStream, hashStream, outStream).then(() => {
|
/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/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/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/libxml2/ |
D | parserInternals.c | 1400 xmlParserInputPtr inputStream; in xmlNewIOInputStream() local 1405 inputStream = xmlNewInputStream(ctxt); in xmlNewIOInputStream() 1406 if (inputStream == NULL) { in xmlNewIOInputStream() 1409 inputStream->filename = NULL; in xmlNewIOInputStream() 1410 inputStream->buf = input; in xmlNewIOInputStream() 1411 xmlBufResetInput(inputStream->buf->buffer, inputStream); in xmlNewIOInputStream() 1417 return(inputStream); in xmlNewIOInputStream() 1528 xmlParserInputPtr inputStream; in xmlNewInputFromFile() local 1548 inputStream = xmlNewInputStream(ctxt); in xmlNewInputFromFile() 1549 if (inputStream == NULL) { in xmlNewInputFromFile() [all …]
|
/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()
|
/third_party/node/deps/npm/node_modules/get-stream/ |
D | index.js | 12 function getStream(inputStream, options) { argument 13 if (!inputStream) { 30 stream = pump(inputStream, bufferStream(options), error => {
|
/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/flutter/skia/third_party/externals/sdl/src/core/android/ |
D | SDL_android.c | 804 jobject inputStream; in Internal_Android_JNI_FileOpen() local 835 inputStream = (*mEnv)->CallObjectMethod(mEnv, assetManager, mid, fileNameJString); in Internal_Android_JNI_FileOpen() 840 …mid = (*mEnv)->GetMethodID(mEnv, (*mEnv)->GetObjectClass(mEnv, inputStream), "getStartOffset", "()… in Internal_Android_JNI_FileOpen() 841 ctx->hidden.androidio.offset = (*mEnv)->CallLongMethod(mEnv, inputStream, mid); in Internal_Android_JNI_FileOpen() 846 …mid = (*mEnv)->GetMethodID(mEnv, (*mEnv)->GetObjectClass(mEnv, inputStream), "getDeclaredLength", … in Internal_Android_JNI_FileOpen() 847 ctx->hidden.androidio.size = (*mEnv)->CallLongMethod(mEnv, inputStream, mid); in Internal_Android_JNI_FileOpen() 852 …mid = (*mEnv)->GetMethodID(mEnv, (*mEnv)->GetObjectClass(mEnv, inputStream), "getFileDescriptor", … in Internal_Android_JNI_FileOpen() 853 fd = (*mEnv)->CallObjectMethod(mEnv, inputStream, mid); in Internal_Android_JNI_FileOpen() 857 ctx->hidden.androidio.assetFileDescriptorRef = (*mEnv)->NewGlobalRef(mEnv, inputStream); in Internal_Android_JNI_FileOpen() 873 …inputStream = (*mEnv)->CallObjectMethod(mEnv, assetManager, mid, fileNameJString, 1 /* ACCESS_RAND… in Internal_Android_JNI_FileOpen() [all …]
|
/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/flutter/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()
|
/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()
|
/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()
|