Searched refs:masked (Results 1 - 25 of 43) sorted by relevance

12

/external/chromium_org/ash/frame/
H A Dframe_util.cc30 gfx::ImageSkia masked = local
33 gfx::ImageSkiaOperations::CreateSuperimposedImage(*holder, masked);
/external/chromium_org/third_party/WebKit/Source/modules/websockets/
H A DWebSocketFrame.cpp71 bool masked = secondByte & maskBit; local
99 size_t maskingKeyLength = masked ? maskingKeyWidthInBytes : 0;
109 if (masked) {
121 frame.masked = masked;
131 if (frame.masked) {
139 if (frame.masked) {
152 frameData.at(1) = masked ? maskBit : 0;
182 , masked(false)
194 , masked(flag
[all...]
H A DWebSocketFrame.h84 bool masked; member in struct:WebCore::WebSocketFrame
/external/chromium_org/net/websockets/
H A Dwebsocket_frame.cc33 for (char* masked = begin; masked != end; ++masked) {
34 *masked ^= masking_key.key[masking_key_offset++];
56 masked = source.masked;
79 (header.masked ? WebSocketFrameHeader::kMaskingKeyLength : 0));
98 // - Actual payload (XOR masked with masking key if MASK bit is on)
119 second_byte |= header.masked ? kMaskBit : 0u;
142 if (header.masked) {
[all...]
H A Dwebsocket_frame.h69 masked(false),
85 bool masked; member in struct:net::WebSocketFrameHeader
103 // |data| is always unmasked even if the frame is masked. The size of |data|
136 // |data| is always unmasked even if the frame is masked. |data| might be
158 // If |header->masked| is true, |masking_key| must point to a valid
H A Dwebsocket_frame_parser.cc121 bool masked = (second_byte & kMaskBit) != 0; local
152 if (masked) {
166 current_frame_header_->masked = masked;
191 if (current_frame_header_->masked) {
H A Dwebsocket_frame_parser_test.cc70 EXPECT_FALSE(header->masked);
97 EXPECT_TRUE(header->masked);
168 EXPECT_FALSE(header->masked);
214 EXPECT_FALSE(header1->masked);
281 EXPECT_TRUE(header1->masked);
360 EXPECT_FALSE(header->masked);
415 EXPECT_FALSE(header->masked);
513 EXPECT_FALSE(header->masked);
569 EXPECT_FALSE(header->masked);
H A Dwebsocket_frame_test.cc95 header.masked = true;
194 bool masked; member in struct:net::TestCase
217 header.masked = kTests[i].masked;
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorResourceAgent.h122 void didReceiveWebSocketFrame(unsigned long identifier, int opCode, bool masked, const char* payload, size_t payloadLength);
123 void didSendWebSocketFrame(unsigned long identifier, int opCode, bool masked, const char* payload, size_t payloadLength);
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dipaddress.cc325 in_addr masked; local
326 masked.s_addr = HostToNetwork32(host_order_ip & mask);
327 return IPAddress(masked);
/external/chromium_org/third_party/webrtc/base/
H A Dipaddress.cc308 in_addr masked; local
309 masked.s_addr = HostToNetwork32(host_order_ip & mask);
310 return IPAddress(masked);
/external/chromium_org/net/server/
H A Dweb_socket.cc291 bool masked = (second_byte & kMaskBit) != 0; local
310 if (client_frame && !masked) // In Hybi-17 spec client MUST mask his frame.
331 size_t actual_masking_key_length = masked ? kMaskingKeyWidthInBytes : 0;
345 if (masked) {
/external/chromium_org/ui/gfx/
H A Dskbitmap_operations.cc136 SkBitmap masked; local
137 masked.allocN32Pixels(rgb.width(), rgb.height());
138 masked.eraseARGB(0, 0, 0, 0);
142 SkAutoLockPixels lock_masked(masked);
144 for (int y = 0; y < masked.height(); ++y) {
147 uint32* dst_row = masked.getAddr32(0, y);
149 for (int x = 0; x < masked.width(); ++x) {
163 return masked;
/external/chromium_org/ui/webui/resources/css/
H A Dexpandable_bubble.css37 .expandable-bubble[masked] > .expandable-bubble-contents >
/external/chromium_org/ui/webui/resources/js/cr/ui/
H A Dexpandable_bubble.js154 this.masked = newWidth == width;
292 * Whether the title needs to be masked out towards the right, which indicates
298 cr.defineProperty(ExpandableBubble, 'masked', cr.PropertyKind.BOOL_ATTR);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_swizzle.c402 LLVMValueRef masked; local
408 masked = LLVMBuildAnd(builder, a,
411 shifted = LLVMBuildShl(builder, masked,
414 shifted = LLVMBuildLShr(builder, masked,
417 shifted = masked;
H A Dlp_bld_format_aos.c154 LLVMValueRef shifted, casted, scaled, masked; local
227 * into masked = {B, G, R, A}
230 masked = LLVMBuildAnd(builder, shifted, LLVMConstVector(masks, 4), "");
235 casted = LLVMBuildSIToFP(builder, masked, LLVMVectorType(LLVMFloatTypeInContext(gallivm->context), 4), "");
237 casted = LLVMBuildUIToFP(builder, masked, LLVMVectorType(LLVMFloatTypeInContext(gallivm->context), 4), "");
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_swizzle.c402 LLVMValueRef masked; local
408 masked = LLVMBuildAnd(builder, a,
411 shifted = LLVMBuildShl(builder, masked,
414 shifted = LLVMBuildLShr(builder, masked,
417 shifted = masked;
H A Dlp_bld_format_aos.c154 LLVMValueRef shifted, casted, scaled, masked; local
227 * into masked = {B, G, R, A}
230 masked = LLVMBuildAnd(builder, shifted, LLVMConstVector(masks, 4), "");
235 casted = LLVMBuildSIToFP(builder, masked, LLVMVectorType(LLVMFloatTypeInContext(gallivm->context), 4), "");
237 casted = LLVMBuildUIToFP(builder, masked, LLVMVectorType(LLVMFloatTypeInContext(gallivm->context), 4), "");
/external/chromium_org/chrome/test/ispy/common/
H A Dispy_utils_unittest.py25 self.masked = Image.new('RGBA', (25, 25), (210, 0, 0, 255))
184 image_tools.EncodePNG(self.masked))
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DPartitionAlloc.h327 uintptr_t masked = ~reinterpret_cast<uintptr_t>(ptr); local
329 uintptr_t masked = bswapuintptrt(reinterpret_cast<uintptr_t>(ptr));
331 return reinterpret_cast<PartitionFreelistEntry*>(masked);
/external/deqp/modules/gles2/functional/
H A Des2fDepthStencilClearTests.cpp121 DepthStencilClearCase (Context& context, const char* name, const char* description, int numIters, int numClears, bool depth, bool stencil, bool scissor, bool masked);
145 DepthStencilClearCase::DepthStencilClearCase (Context& context, const char* name, const char* description, int numIters, int numClears, bool depth, bool stencil, bool scissor, bool masked) argument
150 , m_masked (masked)
503 // iters clears depth stencil scissor masked
/external/deqp/modules/gles3/functional/
H A Des3fDepthStencilClearTests.cpp121 DepthStencilClearCase (Context& context, const char* name, const char* description, int numIters, int numClears, bool depth, bool stencil, bool scissor, bool masked);
145 DepthStencilClearCase::DepthStencilClearCase (Context& context, const char* name, const char* description, int numIters, int numClears, bool depth, bool stencil, bool scissor, bool masked) argument
150 , m_masked (masked)
506 // iters clears depth stencil scissor masked
/external/llvm/test/MC/Mips/
H A Dnacl-mask.s98 # are not masked.
160 # are not masked.
/external/nanohttpd/websocket/src/main/java/fi/iki/elonen/
H A DWebSocketFrame.java179 boolean masked = ((b & 0x80) != 0);
212 if (masked) {
303 sb.append(", ").append(isMasked() ? "masked" : "unmasked");

Completed in 654 milliseconds

12