Home
last modified time | relevance | path

Searched defs:is (Results 1 – 25 of 354) sorted by relevance

12345678910>>...15

/third_party/node/deps/npm/node_modules/isexe/test/
Dbasic.js42 isexe(meow).then(function (is) { argument
48 isexe(fail).then(function (is) { argument
60 isexe(noent, { ignoreErrors: true }).then(function (is) { argument
142 isexe(meow, function (er, is) { argument
150 isexe(meow, options, function (er, is) { argument
161 isexe(mine, options, function (er, is) { argument
171 isexe(ours, options, function (er, is) { argument
182 isexe(fail, options, function (er, is) { argument
193 isexe(noent, options, function (er, is) { argument
201 isexe(noent, optionsIgnore, function (er, is) { argument
[all …]
/third_party/typescript/tests/cases/conformance/expressions/typeGuards/
DtypeGuardOfFormThisMember.ts16 isNetworked: this is (Networked & this); method in Test.FileSystemObject
59 isLeader: this is (GenericLeadGuard<T>); method
60 isFollower: this is GenericFollowerGuard<T>; property
72 isMoreSpecific: this is MoreSpecificGuard; property
DtypeGuardFunctionOfFormThis.ts96 isSupplies(): this is Crate<Supplies>; property
97 isSundries(): this is Crate<Sundries>; property
139 isLeader(): this is LeadGuard; property
140 isFollower(): this is FollowerGuard; property
DtypeGuardFunctionErrors.ts96 var b1: b is A; variable
116 new (p1: A): p1 is C; property
120 [index: number]: p1 is C; property
160 isFoo(): this is NeedsFoo<Bar>; // should error property
DtypeGuardFunction.ts42 (p1: A): p1 is C; property
54 func1(p1: A): p1 is C; variable
/third_party/rust/crates/atty/src/
Dlib.rs40 pub fn is(stream: Stream) -> bool { in is() function
53 pub fn is(stream: Stream) -> bool { in is() function
66 pub fn is(stream: Stream) -> bool { in is() function
158 pub fn is(_stream: Stream) -> bool { in is() function
/third_party/flutter/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/
DFontFactory.java127 public Font[] loadFonts(InputStream is) throws IOException { in loadFonts()
148 public Builder[] loadFontsForBuilding(InputStream is) throws IOException { in loadFontsForBuilding()
157 private Font loadSingleOTF(InputStream is) throws IOException { in loadSingleOTF()
161 private Font[] loadCollection(InputStream is) throws IOException { in loadCollection()
170 private Font.Builder loadSingleOTFForBuilding(InputStream is) throws IOException { in loadSingleOTFForBuilding()
188 private Font.Builder[] loadCollectionForBuilding(InputStream is) throws IOException { in loadCollectionForBuilding()
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/
DFontFactory.java127 public Font[] loadFonts(InputStream is) throws IOException { in loadFonts()
148 public Builder[] loadFontsForBuilding(InputStream is) throws IOException { in loadFontsForBuilding()
157 private Font loadSingleOTF(InputStream is) throws IOException { in loadSingleOTF()
161 private Font[] loadCollection(InputStream is) throws IOException { in loadCollection()
170 private Font.Builder loadSingleOTFForBuilding(InputStream is) throws IOException { in loadSingleOTFForBuilding()
188 private Font.Builder[] loadCollectionForBuilding(InputStream is) throws IOException { in loadCollectionForBuilding()
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/
Dfont_factory.cc41 void FontFactory::LoadFonts(InputStream* is, FontArray* output) { in LoadFonts()
69 void FontFactory::LoadFontsForBuilding(InputStream* is, in LoadFontsForBuilding()
107 CALLER_ATTACH Font* FontFactory::LoadSingleOTF(InputStream* is) { in LoadSingleOTF()
119 void FontFactory::LoadCollection(InputStream* is, FontArray* output) { in LoadCollection()
145 Font::Builder* FontFactory::LoadSingleOTFForBuilding(InputStream* is) { in LoadSingleOTFForBuilding()
162 void FontFactory::LoadCollectionForBuilding(InputStream* is, in LoadCollectionForBuilding()
/third_party/flutter/skia/third_party/externals/sfntly/cpp/src/sfntly/
Dfont_factory.cc41 void FontFactory::LoadFonts(InputStream* is, FontArray* output) { in LoadFonts()
69 void FontFactory::LoadFontsForBuilding(InputStream* is, in LoadFontsForBuilding()
107 CALLER_ATTACH Font* FontFactory::LoadSingleOTF(InputStream* is) { in LoadSingleOTF()
119 void FontFactory::LoadCollection(InputStream* is, FontArray* output) { in LoadCollection()
145 Font::Builder* FontFactory::LoadSingleOTFForBuilding(InputStream* is) { in LoadSingleOTFForBuilding()
162 void FontFactory::LoadCollectionForBuilding(InputStream* is, in LoadCollectionForBuilding()
/third_party/skia/third_party/externals/sfntly/cpp/src/test/
Dfile_io_test.cc46 FileInputStream is; in TestFileInputStream() local
106 FileInputStream is; in TestFontInputStreamBasic() local
133 FileInputStream is; in TestFontInputStreamTableLoading() local
Dname_editing_test.cc73 MemoryInputStream is; in TestChangeOneName() local
122 MemoryInputStream is; in TestModifyNameTableAndRevert() local
168 MemoryInputStream is; in TestRemoveOneName() local
/third_party/flutter/skia/third_party/externals/sfntly/cpp/src/test/
Dfile_io_test.cc46 FileInputStream is; in TestFileInputStream() local
106 FileInputStream is; in TestFontInputStreamBasic() local
133 FileInputStream is; in TestFontInputStreamTableLoading() local
Dname_editing_test.cc73 MemoryInputStream is; in TestChangeOneName() local
122 MemoryInputStream is; in TestModifyNameTableAndRevert() local
168 MemoryInputStream is; in TestRemoveOneName() local
/third_party/typescript/tests/cases/compiler/
DtypePredicatesInUnion.ts2 pred(x: {}): x is boolean; property
5 pred(x: {}): x is string; property
DtypePredicatesInUnion_noMatch.ts2 pred(x: {}, y: {}): x is boolean; property
5 pred(x: {}, y: {}): y is string; property
/third_party/parse5/packages/parse5/lib/tree-adapters/
Dinterface.ts218 isCommentNode(node: T['node']): node is T['commentNode']; property
225 isDocumentTypeNode(node: T['node']): node is T['documentType']; property
232 isElementNode(node: T['node']): node is T['element']; property
239 isTextNode(node: T['node']): node is T['textNode']; property
/third_party/vk-gl-cts/framework/common/
DtcuEither.hpp119 static bool is (const Either<First, Second>& either) in is() function
128 static bool is (const Either<First, Second>& either) in is() function
135 bool is (const Either<First, Second>& either) in is() function
259 bool Either<First, Second>::is (void) const in is() function in tcu::Either
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/data/
DResourceReader.java99 public ResourceReader(InputStream is, String resourceName, String encoding) { in ResourceReader()
123 public ResourceReader(InputStream is, String resourceName) { in ResourceReader()
243 InputStream is = ICUData.getStream(root, resourceName); in _reset() local
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/data/
DResourceReader.java101 public ResourceReader(InputStream is, String resourceName, String encoding) { in ResourceReader()
125 public ResourceReader(InputStream is, String resourceName) { in ResourceReader()
245 InputStream is = ICUData.getStream(root, resourceName); in _reset() local
/third_party/flutter/skia/platform_tools/android/apps/skottie/src/main/java/org/skia/skottie/
DSkottieRunner.java62 public SkottieAnimation createAnimation(TextureView view, InputStream is) { in createAnimation()
71 public SkottieAnimation createAnimation(SurfaceTexture surfaceTexture, InputStream is) { in createAnimation()
271 SkottieAnimationImpl(SurfaceTexture surfaceTexture, InputStream is) { in SkottieAnimationImpl()
275 SkottieAnimationImpl(TextureView view, InputStream is) { in SkottieAnimationImpl()
276 init(view.getSurfaceTexture(), is); in SkottieAnimationImpl() local
280 private void init(SurfaceTexture surfaceTexture, InputStream is) { in init()
502 private native long nCreateProxy(long runner, InputStream is, byte[] storage); in nCreateProxy()
/third_party/node/deps/npm/node_modules/isexe/
Dindex.js24 isexe(path, options || {}, function (er, is) { argument
34 core(path, options || {}, function (er, is) { argument
/third_party/ffmpeg/fftools/
Dffplay.c975 static void video_image_display(VideoState *is) in video_image_display()
1205 static void stream_component_close(VideoState *is, int stream_index) in stream_component_close()
1262 static void stream_close(VideoState *is) in stream_close()
1299 static void do_exit(VideoState *is) in do_exit()
1337 static int video_open(VideoState *is) in video_open()
1361 static void video_display(VideoState *is) in video_display()
1423 static int get_master_sync_type(VideoState *is) { in get_master_sync_type()
1440 static double get_master_clock(VideoState *is) in get_master_clock()
1458 static void check_external_clock_speed(VideoState *is) { in check_external_clock_speed()
1473 static void stream_seek(VideoState *is, int64_t pos, int64_t rel, int seek_by_bytes) in stream_seek()
[all …]
/third_party/typescript/tests/baselines/reference/
DtypeGuardOfFormThisMemberErrors.js107 isFSO: this is FileSystemObject; field in FileSystemObject
108 get isFile(): this is File; field in FileSystemObject
110 get isDirectory(): this is Directory; field in FileSystemObject
DtypeGuardOfFormThisMember.js182 isFSO: this is FileSystemObject; field in FileSystemObject
183 get isFile(): this is File; field in FileSystemObject
185 get isDirectory(): this is Directory; field in FileSystemObject

12345678910>>...15