Home
last modified time | relevance | path

Searched refs:PRIVATE (Results 1 - 25 of 26) sorted by relevance

12

/third_party/icu/tools/cldr/cldr-to-icu/src/test/java/org/unicode/icu/tool/cldrtoicu/mapper/
H A DRbnfMapperTest.java5 import static org.unicode.icu.tool.cldrtoicu.mapper.RbnfMapperTest.Access.PRIVATE;
30 PUBLIC, PRIVATE; enum constant
54 rbnfRule(SPELLOUT_RULES, "2d-year", PRIVATE, "0", "hundred;", ++idx), in testSingleRuleset()
55 rbnfRule(SPELLOUT_RULES, "2d-year", PRIVATE, "1", "oh-=%first-set=;", ++idx), in testSingleRuleset()
56 rbnfRule(SPELLOUT_RULES, "2d-year", PRIVATE, "10", "=%first-set=;", ++idx)); in testSingleRuleset()
108 rbnfRule(DURATION_RULES, "min", PRIVATE, "0", "0 minutes; 1 minute; =0= minutes;", ++idx), in testSpecials()
109 rbnfRule(DURATION_RULES, "hr", PRIVATE, "0", "0 hours; 1 hour; =0= hours;", ++idx), in testSpecials()
/third_party/rust/crates/rustix/tests/mm/
H A Dmmap.rs32 MapFlags::PRIVATE, in test_mmap()
50 MapFlags::PRIVATE, in test_mmap()
68 let addr = mmap_anonymous(null_mut(), 8192, ProtFlags::READ, MapFlags::PRIVATE).unwrap(); in test_mmap_anonymous()
83 let addr = mmap_anonymous(null_mut(), 8192, ProtFlags::READ, MapFlags::PRIVATE).unwrap(); in test_mprotect()
103 let addr = mmap_anonymous(null_mut(), 8192, ProtFlags::READ, MapFlags::PRIVATE).unwrap(); in test_mlock()
138 let addr = mmap_anonymous(null_mut(), 8192, ProtFlags::READ, MapFlags::PRIVATE).unwrap(); in test_madvise()
156 let addr = mmap_anonymous(null_mut(), 8192, ProtFlags::READ, MapFlags::PRIVATE).unwrap(); in test_msync()
/third_party/gn/src/gn/
H A Dcommand_path.cc19 enum class DepType { NONE, PUBLIC, PRIVATE, DATA }; member in commands::__anon2879::DepType
26 // [2] = C, PRIVATE
70 // PRIVATE overrides PUBLIC, and DATA overrides everything (the idea is in ClassifyPath()
72 if (path[i].second == DepType::PRIVATE) { in ClassifyPath()
74 result = DepType::PRIVATE; in ClassifyPath()
86 case DepType::PRIVATE: in StringForDepType()
236 work_queue.back().push_back(TargetDep(pair.ptr, DepType::PRIVATE)); in BreadthFirstSearch()
/third_party/node/deps/openssl/openssl/crypto/bn/
H A Dbn_rand.c20 NORMAL, TESTING, PRIVATE enumerator
122 return bnrand(PRIVATE, rnd, bits, top, bottom, strength, ctx); in BN_priv_rand_ex()
128 return bnrand(PRIVATE, rnd, bits, top, bottom, 0, NULL); in BN_priv_rand()
221 return bnrand_range(PRIVATE, r, range, strength, ctx); in BN_priv_rand_range_ex()
227 return bnrand_range(PRIVATE, r, range, 0, NULL); in BN_priv_rand_range()
/third_party/openssl/crypto/bn/
H A Dbn_rand.c20 NORMAL, TESTING, PRIVATE enumerator
122 return bnrand(PRIVATE, rnd, bits, top, bottom, strength, ctx); in BN_priv_rand_ex()
128 return bnrand(PRIVATE, rnd, bits, top, bottom, 0, NULL); in BN_priv_rand()
221 return bnrand_range(PRIVATE, r, range, strength, ctx); in BN_priv_rand_range_ex()
227 return bnrand_range(PRIVATE, r, range, 0, NULL); in BN_priv_rand_range()
/third_party/node/test/parallel/
H A Dtest-tls-cert-regression.js53 `-----BEGIN RSA PRIVATE KEY-----
67 -----END RSA PRIVATE KEY-----`;
H A Dtest-tls-cert-ext-encoding.js22 -----BEGIN RSA PRIVATE KEY-----
48 -----END RSA PRIVATE KEY-----
H A Dtest-crypto-sign-verify.js44 `-----BEGIN RSA PRIVATE KEY-----
46 -----END RSA PRIVATE KEY-----`);
/third_party/skia/third_party/externals/swiftshader/src/Common/
H A DResource.hpp25 PRIVATE, // Renderer access, shared by multiple threads if read-only enumerator
/third_party/rust/crates/rustix/src/backend/linux_raw/thread/
H A Dfutex.rs7 const PRIVATE = linux_raw_sys::general::FUTEX_PRIVATE_FLAG; consts
/third_party/node/deps/npm/node_modules/@sigstore/core/dist/asn1/
H A Dtag.js36 PRIVATE: 0x03,
/third_party/skia/platform_tools/android/tradefed/
H A Dupload_dm_results.py28 ACL = gs_utils.GSUtils.PredefinedACL.PRIVATE
/third_party/rust/crates/rustix/src/backend/linux_raw/mm/
H A Dtypes.rs53 const PRIVATE = linux_raw_sys::general::MAP_PRIVATE; consts
/third_party/skia/third_party/externals/angle2/util/posix/
H A Dcrash_handler_posix.cpp156 PRIVATE = 1 << 3, // If set, region is private, otherwise it is shared.
288 region.permissions |= MappedMemoryRegion::PRIVATE;
/third_party/ltp/testcases/kernel/mce-test/tools/
H A Dpage-types.c430 if (flags & BIT(PRIVATE)) in expand_overloaded_flags()
431 flags ^= BIT(PRIVATE) | BIT(SLOB_FREE); in expand_overloaded_flags()
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/
H A DVertexDataManager.cpp315 mapPtr = (char*)mVertexBuffer->lock(sw::PRIVATE) + mWritePosition; in map()
/third_party/rust/crates/rustix/src/backend/libc/mm/
H A Dtypes.rs70 const PRIVATE = c::MAP_PRIVATE; consts
/third_party/skia/third_party/externals/swiftshader/src/Renderer/
H A DRenderer.cpp276 sync->lock(sw::PRIVATE); in draw()
380 draw->vertexStream[i]->lock(PUBLIC, PRIVATE); in draw()
386 data->indices = (unsigned char*)context->indexBuffer->lock(PUBLIC, PRIVATE) + indexOffset; in draw()
401 draw->texture[sampler]->lock(PUBLIC, isReadWriteTexture(sampler) ? MANAGED : PRIVATE); // If the texure is both read and written, use the same read/write lock as render targets in draw()
461 draw->texture[TEXTURE_IMAGE_UNITS + sampler]->lock(PUBLIC, PRIVATE); in draw()
H A DSampler.cpp122 mipmap.buffer[face] = surface->lockInternal(-border, -border, 0, LOCK_UNLOCKED, PRIVATE); in setTextureLevel()
H A DVertexProcessor.cpp198 u[i] = uniformBufferInfo[i].buffer ? static_cast<byte*>(uniformBufferInfo[i].buffer->lock(PUBLIC, PRIVATE)) + uniformBufferInfo[i].offset : nullptr; in lockUniformBuffers()
217 t[i] = transformFeedbackInfo[i].buffer ? static_cast<byte*>(transformFeedbackInfo[i].buffer->lock(PUBLIC, PRIVATE)) + transformFeedbackInfo[i].offset : nullptr; in lockTransformFeedbackBuffers()
H A DPixelProcessor.cpp166 u[i] = uniformBufferInfo[i].buffer ? static_cast<byte*>(uniformBufferInfo[i].buffer->lock(PUBLIC, PRIVATE)) + uniformBufferInfo[i].offset : nullptr; in lockUniformBuffers()
/third_party/protobuf/ruby/src/main/java/com/google/protobuf/jruby/
H A DRubyRepeatedField.java178 @JRubyMethod(visibility = org.jruby.runtime.Visibility.PRIVATE)
/third_party/rust/crates/rustix/src/backend/linux_raw/fs/
H A Dtypes.rs713 const PRIVATE = linux_raw_sys::general::MS_PRIVATE; consts
/third_party/rust/crates/rustix/src/backend/libc/fs/
H A Dtypes.rs1188 const PRIVATE = c::MS_PRIVATE; consts
/third_party/rust/crates/rust-openssl/openssl/src/
H A Dnid.rs702 pub const PRIVATE: Nid = Nid(ffi::NID_Private); consts

Completed in 25 milliseconds

12