Home
last modified time | relevance | path

Searched refs:Public (Results 1 - 25 of 220) sorted by relevance

123456789

/third_party/typescript/tests/baselines/reference/
H A DunionTypePropertyAccessibility.js6 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 DmixinAccessModifiers.js26 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 DPropertyInfoExtensionsTest.cs56 .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 DPropertyInfoExtensionsTest.cs56 .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 Dvideodsp_armv5te.S8 @ 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 Demms.asm7 ;* 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 Dimgutils.asm7 ;* 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 Dfixed_dsp.asm9 ;* 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 Dsvq1enc.asm8 ;* 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 Dvorbisdsp.asm8 ;* 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 Ddnxhdenc.asm9 ;* 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 Dg722dsp.asm9 ;* 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 Dproresdsp.asm11 ;* 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 Dhuffyuvencdsp.asm12 ;* 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 Daacencdsp.asm9 ;* 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 Dscene_sad.asm11 ;* 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 Dvf_pp7.asm9 ;* 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 Dgen-rc9 # 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 Dsndfile_save.m4 ## 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 Dsndfile_play.m4 ## 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 Dsndfile_load.m4 ## 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 Dtest_visibility.rs51 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 Drestriction.rs15 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 Drsa.rs35 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 DBenchmarkDatasetConfig.cs52 t => ((MessageDescriptor) t.GetProperty("Descriptor", BindingFlags.Static | BindingFlags.Public).GetValue(null)).FullName,
53 t => ((MessageParser) t.GetProperty("Parser", BindingFlags.Static | BindingFlags.Public).GetValue(null)));

Completed in 6 milliseconds

123456789