/third_party/icu/tools/cldr/cldr-to-icu/src/test/java/org/unicode/icu/tool/cldrtoicu/mapper/ |
H A D | RbnfMapperTest.java | 5 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 D | mmap.rs | 32 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 D | command_path.cc | 19 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 D | bn_rand.c | 20 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 D | bn_rand.c | 20 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 D | test-tls-cert-regression.js | 53 `-----BEGIN RSA PRIVATE KEY----- 67 -----END RSA PRIVATE KEY-----`;
|
H A D | test-tls-cert-ext-encoding.js | 22 -----BEGIN RSA PRIVATE KEY----- 48 -----END RSA PRIVATE KEY-----
|
H A D | test-crypto-sign-verify.js | 44 `-----BEGIN RSA PRIVATE KEY----- 46 -----END RSA PRIVATE KEY-----`);
|
/third_party/skia/third_party/externals/swiftshader/src/Common/ |
H A D | Resource.hpp | 25 PRIVATE, // Renderer access, shared by multiple threads if read-only enumerator
|
/third_party/rust/crates/rustix/src/backend/linux_raw/thread/ |
H A D | futex.rs | 7 const PRIVATE = linux_raw_sys::general::FUTEX_PRIVATE_FLAG; consts
|
/third_party/node/deps/npm/node_modules/@sigstore/core/dist/asn1/ |
H A D | tag.js | 36 PRIVATE: 0x03,
|
/third_party/skia/platform_tools/android/tradefed/ |
H A D | upload_dm_results.py | 28 ACL = gs_utils.GSUtils.PredefinedACL.PRIVATE
|
/third_party/rust/crates/rustix/src/backend/linux_raw/mm/ |
H A D | types.rs | 53 const PRIVATE = linux_raw_sys::general::MAP_PRIVATE; consts
|
/third_party/skia/third_party/externals/angle2/util/posix/ |
H A D | crash_handler_posix.cpp | 156 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 D | page-types.c | 430 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 D | VertexDataManager.cpp | 315 mapPtr = (char*)mVertexBuffer->lock(sw::PRIVATE) + mWritePosition; in map()
|
/third_party/rust/crates/rustix/src/backend/libc/mm/ |
H A D | types.rs | 70 const PRIVATE = c::MAP_PRIVATE; consts
|
/third_party/skia/third_party/externals/swiftshader/src/Renderer/ |
H A D | Renderer.cpp | 276 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 D | Sampler.cpp | 122 mipmap.buffer[face] = surface->lockInternal(-border, -border, 0, LOCK_UNLOCKED, PRIVATE); in setTextureLevel()
|
H A D | VertexProcessor.cpp | 198 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 D | PixelProcessor.cpp | 166 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 D | RubyRepeatedField.java | 178 @JRubyMethod(visibility = org.jruby.runtime.Visibility.PRIVATE)
|
/third_party/rust/crates/rustix/src/backend/linux_raw/fs/ |
H A D | types.rs | 713 const PRIVATE = linux_raw_sys::general::MS_PRIVATE; consts
|
/third_party/rust/crates/rustix/src/backend/libc/fs/ |
H A D | types.rs | 1188 const PRIVATE = c::MS_PRIVATE; consts
|
/third_party/rust/crates/rust-openssl/openssl/src/ |
H A D | nid.rs | 702 pub const PRIVATE: Nid = Nid(ffi::NID_Private); consts
|