/external/webkit/WebCore/platform/cf/ |
D | BinaryPropertyList.cpp | 40 static const UInt8 booleanTrueMarkerByte = 0x09; 41 static const UInt8 oneByteIntegerMarkerByte = 0x10; 42 static const UInt8 twoByteIntegerMarkerByte = 0x11; 43 static const UInt8 fourByteIntegerMarkerByte = 0x12; 44 static const UInt8 eightByteIntegerMarkerByte = 0x13; 45 static const UInt8 asciiStringMarkerByte = 0x50; 46 static const UInt8 asciiStringWithSeparateLengthMarkerByte = 0x5F; 47 static const UInt8 unicodeStringMarkerByte = 0x60; 48 static const UInt8 unicodeStringWithSeparateLengthMarkerByte = 0x6F; 49 static const UInt8 arrayMarkerByte = 0xA0; [all …]
|
D | KURLCFNet.cpp | 46 CFURLGetBytes(url, reinterpret_cast<UInt8*>(bytes), bytesLength); in KURL() 75 …CFURLRef result = CFURLCreateAbsoluteURLWithBytes(0, reinterpret_cast<const UInt8*>(buffer.data())… in createCFURL() 77 …result = CFURLCreateAbsoluteURLWithBytes(0, reinterpret_cast<const UInt8*>(buffer.data()), buffer.… in createCFURL()
|
D | BinaryPropertyList.h | 100 virtual UInt8* buffer(size_t) = 0;
|
D | SharedBufferCF.cpp | 50 return CFDataCreate(0, reinterpret_cast<const UInt8*>(m_buffer.data()), m_buffer.size()); in createCFData()
|
/external/webkit/WebCore/history/cf/ |
D | HistoryPropertyList.h | 50 virtual UInt8* buffer(size_t); 63 UInt8* m_buffer;
|
D | HistoryPropertyList.cpp | 51 UInt8* HistoryPropertyListWriter::buffer(size_t size) in buffer() 54 m_buffer = static_cast<UInt8*>(CFAllocatorAllocate(0, size, 0)); in buffer() 61 UInt8* buffer = m_buffer; in releaseData()
|
/external/webkit/WebKit/mac/Misc/ |
D | WebNSDataExtras.m | 115 const UInt8 *bytes = [self bytes]; 279 static const UInt8 *_findEOL(const UInt8 *bytes, CFIndex len) { 293 UInt8 c = bytes[i]; 313 const UInt8 *bytes = [self bytes]; 316 const UInt8 *eol; 320 const UInt8 *line = bytes; 355 const UInt8 *colon;
|
D | WebNSURLExtras.mm | 369 const UInt8 *inBytes = static_cast<const UInt8 *>([userTypedData bytes]); 380 UInt8 c = inBytes[i]; 436 const UInt8 *bytes = static_cast<const UInt8*>([data bytes]); 452 UInt8 *buffer = (UInt8 *)malloc(URL_BYTES_BUFFER_LENGTH); 456 buffer = (UInt8 *)realloc(buffer, bytesToAllocate); 640 UInt8 *urlBytes, buffer[2048]; 644 urlBytes = static_cast<UInt8*>(malloc(numBytes)); 700 UInt8 static_buffer[URL_BYTES_BUFFER_LENGTH]; 701 UInt8 *buffer = static_buffer; 705 buffer = static_cast<UInt8 *>(malloc(bytesToAllocate)); [all …]
|
/external/webkit/JavaScriptGlue/ |
D | JavaScriptGlue.cpp | 44 static UInt8 CFJSObjectEqual(void *data1, void *data2); 104 UInt8 JSEqual(JSTypeRef ref1, JSTypeRef ref2) in JSEqual() 106 UInt8 result = false; in JSEqual() 547 UInt8 CFJSObjectEqual(void *data1, void *data2) in CFJSObjectEqual() 549 UInt8 result = false; in CFJSObjectEqual()
|
D | JSObject.cpp | 112 UInt8 JSUserObject::Equal(JSBase* other) in Equal() 114 UInt8 result = false; in Equal()
|
D | JavaScriptGlue.h | 62 typedef UInt8 (*JSObjectEqualProcPtr)(void *data1, void *data2) DEPRECATED_IN_MAC_OS_X_VERSION_10_5… 84 UInt8 JSEqual(JSTypeRef ref1, JSTypeRef ref2) DEPRECATED_IN_MAC_OS_X_VERSION_10_5_AND_LATER;
|
D | JSBase.h | 45 virtual UInt8 Equal(JSBase* other);
|
D | JSBase.cpp | 75 UInt8 JSBase::Equal(JSBase* other) in Equal()
|
D | JSObject.h | 49 virtual UInt8 Equal(JSBase* other);
|
/external/webkit/WebCore/platform/network/cf/ |
D | FormDataStreamCFNet.cpp | 144 …form->currentStream = CFReadStreamCreateWithBytesNoCopy(0, reinterpret_cast<const UInt8*>(data), s… in advanceCurrentStream() 223 static CFIndex formRead(CFReadStreamRef stream, UInt8* buffer, CFIndex bufferLength, CFStreamError*… in formRead() 333 …CFDataRef data = CFDataCreate(0, reinterpret_cast<const UInt8 *>(element.m_data.data()), element.m… in setHTTPBody() 345 …RetainPtr<CFDataRef> data(AdoptCF, CFDataCreate(0, reinterpret_cast<const UInt8*>(element.m_data.d… in setHTTPBody()
|
/external/qemu/distrib/sdl-1.2.12/src/audio/macrom/ |
D | SDL_romaudio.c | 116 static UInt8 *buffer[2]; 121 static void mix_buffer(SDL_AudioDevice *audio, UInt8 *buffer) in mix_buffer() 257 buffer[i] = (UInt8*)malloc (sizeof(UInt8) * spec->size); in Mac_OpenAudio()
|
/external/webkit/WebCore/platform/graphics/win/ |
D | FontCGWin.cpp | 63 Vector<UInt8> outline(outlineLength); in createPathForGlyph() 77 …LPTTPOLYCURVE segment = reinterpret_cast<LPTTPOLYCURVE>(reinterpret_cast<UInt8*>(subpath) + subpat… in createPathForGlyph() 279 UInt8* buffer = bitmap->buffer(); in drawGDIGlyphs() 283 UInt8 alpha = (255 - buffer[i + 1]) * fillColor.alpha() / 255; in drawGDIGlyphs()
|
D | FontDatabase.cpp | 83 …doptCF, CFURLCreateFromFileSystemRepresentation(0, reinterpret_cast<const UInt8*>(plistPath.data()… in readFontPlist()
|
/external/webkit/WebCore/platform/graphics/ |
D | GraphicsContext.h | 90 typedef unsigned char UInt8; typedef 382 UInt8* buffer() const { return m_bitmapBuffer; } in buffer() 390 UInt8* m_bitmapBuffer;
|
/external/webkit/WebKit/win/ |
D | WebDownload.cpp | 204 Vector<UInt8> footerBuffer; in extractResumeDataFromBundle() 299 const UInt8* resumeBytes = CFDataGetBytePtr(resumeData); in appendResumeDataToBundle()
|
/external/qemu/distrib/sdl-1.2.12/include/ |
D | SDL_config_macos.h | 33 typedef UInt8 uint8_t;
|
/external/freetype/include/freetype/ |
D | ftmac.h | 190 UInt8* path,
|
/external/webkit/WebKitLibraries/ |
D | WebKitSystemInterface.h | 86 CFIndex (*formRead)(CFReadStreamRef, UInt8 *, CFIndex, CFStreamError *, Boolean *, void *), 252 UInt8 WKGetNSEventKeyChar(NSEvent *);
|
/external/webkit/WebKitTools/DumpRenderTree/cg/ |
D | PixelDumpSupportCG.cpp | 65 const UInt8* data = CFDataGetBytePtr(imageData.get()); in printPNG()
|
/external/webkit/WebCore/platform/graphics/cg/ |
D | PDFDocumentImage.cpp | 75 …CFDataRef data = CFDataCreateWithBytesNoCopy(0, reinterpret_cast<const UInt8*>(this->data()->data(… in dataChanged()
|