/third_party/typescript/tests/baselines/reference/ |
H A D | unionTypePropertyAccessibility.js | 6 class Public { 19 var v2: Public; 22 var v5: Default | Public; 25 var v8: Public | Protected; 26 var v9: Public | Private; 28 var v11: Default | Public | Protected; 29 var v12: Default | Public | Private; 31 var v14: Public | Private | Protected; 32 var v15: Default | Public | Private | Protected; 57 var Public [all...] |
H A D | mixinAccessModifiers.js | 26 class Public { 46 function f3(x: Private & Public) { 54 function f5(x: Protected & Public) { 58 function f6(x: Public & Public2) { 68 class C3 extends Mix(Private, Public) {} 83 class C5 extends Mix(Protected, Public) { 96 class C6 extends Mix(Public, Public2) { 187 var Public = /** @class */ (function () {
188 function Public() {
194 return Public;
[all...] |
/third_party/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/Compatibility/ |
H A D | PropertyInfoExtensionsTest.cs | 56 .GetProperty(name, BindingFlags.Instance | BindingFlags.NonPublic | BindingFlags.Public); in GetGetMethod_Success() 69 .GetProperty(name, BindingFlags.Instance | BindingFlags.NonPublic | BindingFlags.Public); in GetGetMethod_NoAccessibleGetter() 80 .GetProperty(name, BindingFlags.Instance | BindingFlags.NonPublic | BindingFlags.Public); in GetSetMethod_Success() 93 .GetProperty(name, BindingFlags.Instance | BindingFlags.NonPublic | BindingFlags.Public); in GetSetMethod_NoAccessibleGetter()
|
/third_party/protobuf/csharp/src/Google.Protobuf.Test/Compatibility/ |
H A D | PropertyInfoExtensionsTest.cs | 56 .GetProperty(name, BindingFlags.Instance | BindingFlags.NonPublic | BindingFlags.Public); in GetGetMethod_Success() 69 .GetProperty(name, BindingFlags.Instance | BindingFlags.NonPublic | BindingFlags.Public); in GetGetMethod_NoAccessibleGetter() 80 .GetProperty(name, BindingFlags.Instance | BindingFlags.NonPublic | BindingFlags.Public); in GetSetMethod_Success() 93 .GetProperty(name, BindingFlags.Instance | BindingFlags.NonPublic | BindingFlags.Public); in GetSetMethod_NoAccessibleGetter()
|
/third_party/ffmpeg/libavcodec/arm/ |
H A D | videodsp_armv5te.S | 8 @ modify it under the terms of the GNU Lesser General Public 15 @ Lesser General Public License for more details. 17 @ You should have received a copy of the GNU Lesser General Public
|
/third_party/ffmpeg/libavutil/x86/ |
H A D | emms.asm | 7 ;* modify it under the terms of the GNU Lesser General Public 14 ;* Lesser General Public License for more details. 16 ;* You should have received a copy of the GNU Lesser General Public
|
H A D | imgutils.asm | 7 ;* modify it under the terms of the GNU Lesser General Public 14 ;* Lesser General Public License for more details. 16 ;* You should have received a copy of the GNU Lesser General Public
|
H A D | fixed_dsp.asm | 9 ;* modify it under the terms of the GNU Lesser General Public 16 ;* Lesser General Public License for more details. 18 ;* You should have received a copy of the GNU Lesser General Public
|
/third_party/ffmpeg/libavcodec/x86/ |
H A D | svq1enc.asm | 8 ;* modify it under the terms of the GNU Lesser General Public 15 ;* Lesser General Public License for more details. 17 ;* You should have received a copy of the GNU Lesser General Public
|
H A D | vorbisdsp.asm | 8 ;* modify it under the terms of the GNU Lesser General Public 15 ;* Lesser General Public License for more details. 17 ;* You should have received a copy of the GNU Lesser General Public
|
H A D | dnxhdenc.asm | 9 ;* modify it under the terms of the GNU Lesser General Public 16 ;* Lesser General Public License for more details. 18 ;* You should have received a copy of the GNU Lesser General Public
|
H A D | g722dsp.asm | 9 ;* modify it under the terms of the GNU Lesser General Public 16 ;* Lesser General Public License for more details. 18 ;* You should have received a copy of the GNU Lesser General Public
|
H A D | proresdsp.asm | 11 ;* modify it under the terms of the GNU Lesser General Public 18 ;* Lesser General Public License for more details. 20 ;* You should have received a copy of the GNU Lesser General Public
|
H A D | huffyuvencdsp.asm | 12 ;* modify it under the terms of the GNU Lesser General Public 19 ;* Lesser General Public License for more details. 21 ;* You should have received a copy of the GNU Lesser General Public
|
H A D | aacencdsp.asm | 9 ;* modify it under the terms of the GNU Lesser General Public 16 ;* Lesser General Public License for more details. 18 ;* You should have received a copy of the GNU Lesser General Public
|
/third_party/ffmpeg/libavfilter/x86/ |
H A D | scene_sad.asm | 11 ;* modify it under the terms of the GNU Lesser General Public 18 ;* Lesser General Public License for more details. 20 ;* You should have received a copy of the GNU Lesser General Public
|
H A D | vf_pp7.asm | 9 ;* it under the terms of the GNU General Public License as published by 16 ;* GNU General Public License for more details. 18 ;* You should have received a copy of the GNU General Public License along
|
/third_party/ffmpeg/tools/ |
H A D | gen-rc | 9 # modify it under the terms of the GNU Lesser General Public 16 # See the GNU Lesser General Public License for more details. 18 # You should have received a copy of the GNU Lesser General Public License 74 * modify it under the terms of the GNU Lesser General Public 81 * Lesser General Public License for more details. 83 * You should have received a copy of the GNU Lesser General Public
|
/third_party/libsnd/Octave/ |
H A D | sndfile_save.m | 4 ## it under the terms of the GNU General Public License as published by 11 ## General Public License for more details. 13 ## You should have received a copy of the GNU General Public License
|
H A D | sndfile_play.m | 4 ## it under the terms of the GNU General Public License as published by 11 ## General Public License for more details. 13 ## You should have received a copy of the GNU General Public License
|
H A D | sndfile_load.m | 4 ## it under the terms of the GNU General Public License as published by 11 ## General Public License for more details. 13 ## You should have received a copy of the GNU General Public License
|
/third_party/rust/crates/syn/tests/ |
H A D | test_visibility.rs | 51 assert_vis_parse!("pub", Ok(Visibility::Public(_))); in test_pub() 81 assert_vis_parse!("pub(foo::bar)", Ok(Visibility::Public(_)) + "(foo::bar)"); in test_missing_in() 93 Ok(Visibility::Public(_)) + "(crate::A, crate::B)" in test_crate_path()
|
/third_party/rust/crates/syn/src/ |
H A D | restriction.rs | 15 Public(Token![pub]), 129 Ok(Visibility::Public(pub_token)) in parse_pub() 152 Visibility::Public(pub_token) => pub_token.to_tokens(tokens), in to_tokens()
|
/third_party/rust/crates/rust-openssl/openssl/src/ |
H A D | rsa.rs | 35 use crate::pkey::{HasPrivate, HasPublic, Private, Public}; 367 impl Rsa<Public> { 377 pub fn from_public_components(n: BigNum, e: BigNum) -> Result<Rsa<Public>, ErrorStack> { in from_public_components() 392 Rsa<Public>, 402 Rsa<Public>, 410 Rsa<Public>, 418 Rsa<Public>,
|
/third_party/protobuf/csharp/src/Google.Protobuf.Benchmarks/ |
H A D | BenchmarkDatasetConfig.cs | 52 t => ((MessageDescriptor) t.GetProperty("Descriptor", BindingFlags.Static | BindingFlags.Public).GetValue(null)).FullName, 53 t => ((MessageParser) t.GetProperty("Parser", BindingFlags.Static | BindingFlags.Public).GetValue(null)));
|