HomeSort by relevance Sort by last modified time
    Searched refs:CFIndex (Results 1 - 25 of 97) sorted by null

1 2 3 4

  /external/webkit/Source/JavaScriptGlue/
JSBase.h 41 CFIndex RetainCount() const;
49 CFIndex fRetainCount;
JSBase.cpp 54 CFIndex JSBase::RetainCount() const
JavaScriptGlue.cpp 134 CFIndex JSGetRetainCount(JSTypeRef ref)
136 CFIndex result = -1;
454 CFIndex arrayCount = CFArrayGetCount((CFArrayRef)data);
497 CFIndex arrayCount = CFArrayGetCount((CFArrayRef)data);
518 CFIndex arrayCount = CFArrayGetCount((CFArrayRef)data);
571 CFIndex count = CFDictionaryGetCount((CFDictionaryRef)data);
602 CFIndex count = array ? CFArrayGetCount(array) : 0;
604 CFIndex i;
627 CFIndex count = array ? CFArrayGetCount(array) : 0;
630 CFIndex i
    [all...]
  /external/webkit/Source/WebCore/loader/cf/
SubresourceLoaderCF.cpp 44 CFIndex arrayCount = CFArrayGetCount(dataArray);
45 for (CFIndex i = 0; i < arrayCount; ++i) {
  /external/webkit/Source/WebCore/platform/graphics/win/
QTCFDictionary.h 40 typedef CFDictionaryRef (* QTCFDictonaryCreateFromDataCallback)(CFAllocatorRef, const UInt8*, CFIndex);
  /external/clang/test/Analysis/
CFNumber.c 4 typedef signed long CFIndex;
15 typedef CFIndex CFNumberType;
cfref_PR2519.c 5 typedef signed long CFIndex;
19 extern CFDictionaryRef CFDictionaryCreate(CFAllocatorRef allocator, const void **keys, const void **values, CFIndex numValues, const CFDictionaryKeyCallBacks *keyCallBacks, const CFDictionaryValueCallBacks *valueCallBacks);
21 typedef CFIndex CFNumberType;
uninit-vals-ps.c 69 typedef signed long CFIndex;
70 typedef CFIndex CFNumberType;
  /external/webkit/Source/WebCore/platform/graphics/mac/
ComplexTextController.h 93 ALWAYS_INLINE CFIndex indexAt(size_t i) const;
94 CFIndex indexEnd() const { return m_indexEnd; }
95 CFIndex endOffsetAt(size_t i) const { ASSERT(!m_isMonotonic); return m_glyphEndOffsets[i]; }
125 Vector<CFIndex, 64> m_coreTextIndicesVector;
126 const CFIndex* m_coreTextIndices;
129 Vector<CFIndex, 64> m_atsuiIndices;
131 CFIndex m_indexEnd;
132 Vector<CFIndex, 64> m_glyphEndOffsets;
GlyphPageTreeNodeMac.cpp 77 CFIndex runCount = CFArrayGetCount(runArray);
84 Vector<CFIndex, 512> indexVector;
91 for (CFIndex r = 0; r < runCount && !done ; ++r) {
103 CFIndex glyphCount = CTRunGetGlyphCount(ctRun);
110 const CFIndex* stringIndices = CTRunGetStringIndicesPtr(ctRun);
117 for (CFIndex i = 0; i < glyphCount; ++i) {
118 if (stringIndices[i] >= static_cast<CFIndex>(length)) {
  /external/compiler-rt/BlocksRuntime/tests/
dispatch_async.c 20 __block CFIndex counter;
  /external/webkit/Source/WebCore/loader/mac/
ResourceLoaderMac.mm 65 CFIndex arrayCount = CFArrayGetCount(dataArray);
66 for (CFIndex i = 0; i < arrayCount; ++i) {
  /external/webkit/Source/WebCore/platform/text/cf/
StringCF.cpp 35 CFIndex size = CFStringGetLength(str);
StringImplCF.cpp 56 static void* allocate(CFIndex size, CFOptionFlags, void*)
71 static void* reallocate(void* pointer, CFIndex newSize, CFOptionFlags, void*)
105 static CFIndex preferredSize(CFIndex size, CFOptionFlags, void*)
  /external/webkit/Source/WebCore/platform/cf/
SharedBufferCF.cpp 107 CFIndex bytesLeft = bytesToCopy;
110 CFIndex dataLen = CFDataGetLength(it->get());
FileSystemCF.cpp 45 CFIndex size = CFStringGetMaximumSizeOfFileSystemRepresentation(cfString.get());
  /external/webkit/Source/WebCore/platform/mac/
KURLMac.mm 40 CFIndex bytesLength = CFURLGetBytes(reinterpret_cast<CFURLRef>(url), 0, 0);
WebCoreSystemInterface.mm 83 CFIndex (*formRead)(CFReadStreamRef, UInt8 *, CFIndex, CFStreamError *, Boolean *, void *),
123 CFIndex (*wkGetHyphenationLocationBeforeIndex)(CFStringRef string, CFIndex index);
127 CTLineRef (*wkCreateCTLineWithUniCharProvider)(const UniChar* (*provide)(CFIndex stringIndex, CFIndex* charCount, CFDictionaryRef* attributes, void*), void (*dispose)(const UniChar* chars, void*), void*);
129 CTTypesetterRef (*wkCreateCTTypesetterWithUniCharProviderAndOptions)(const UniChar* (*provide)(CFIndex stringIndex, CFIndex* charCount, CFDictionaryRef* attributes, void*), void (*dispose)(const UniChar* chars, void*), void*, CFDictionaryRef options);
WebCoreSystemInterface.h 100 CFIndex (*formRead)(CFReadStreamRef, UInt8 *, CFIndex, CFStreamError *, Boolean *, void *),
190 extern CFIndex (*wkGetHyphenationLocationBeforeIndex)(CFStringRef string, CFIndex index);
202 extern CTLineRef (*wkCreateCTLineWithUniCharProvider)(const UniChar* (*provide)(CFIndex stringIndex, CFIndex* charCount, CFDictionaryRef* attributes, void*), void (*dispose)(const UniChar* chars, void*), void*);
204 extern CTTypesetterRef (*wkCreateCTTypesetterWithUniCharProviderAndOptions)(const UniChar* (*provide)(CFIndex stringIndex, CFIndex* charCount, CFDictionaryRef* attributes, void*), void (*dispose)(const UniChar* chars, void*), void*, CFDictionaryRef options);
  /external/webkit/Source/WebCore/platform/text/mac/
StringMac.mm 32 CFIndex size = CFStringGetLength(reinterpret_cast<CFStringRef>(str));
  /external/webkit/Source/WebKit2/UIProcess/cf/
WebBackForwardListCF.cpp 91 CFNumberRef cfIndex = (CFNumberRef)CFDictionaryGetValue(dictionary, SessionHistoryCurrentIndexKey());
92 if (!cfIndex || CFGetTypeID(cfIndex) != CFNumberGetTypeID()) {
97 CFIndex currentIndex;
98 if (!CFNumberGetValue(cfIndex, kCFNumberCFIndexType, &currentIndex)) {
109 CFIndex size = CFArrayGetCount(cfEntries);
110 if (currentIndex != static_cast<CFIndex>(NoCurrentItemIndex) && currentIndex >= size) {
115 if (currentIndex == static_cast<CFIndex>(NoCurrentItemIndex) && size) {
122 for (CFIndex i = 0; i < size; ++i) {
  /external/webkit/Source/WebCore/platform/network/cf/
CookieJarCFNet.cpp 97 CFIndex count = CFArrayGetCount(unfilteredCookies);
99 for (CFIndex i = 0; i < count; ++i) {
193 CFIndex count = CFArrayGetCount(cookiesCF.get());
196 for (CFIndex i = 0; i < count; i++) {
226 CFIndex count = CFArrayGetCount(cookiesCF.get());
227 for (CFIndex i = 0; i < count; i++) {
246 CFIndex count = CFArrayGetCount(cookiesCF.get());
247 for (CFIndex i = 0; i < count; ++i) {
264 CFIndex count = CFArrayGetCount(cookiesCF.get());
265 for (CFIndex i = count - 1; i >=0; i--)
    [all...]
ProxyServerCFNet.cpp 50 CFIndex numProxies = CFArrayGetCount(proxiesForURL.get());
51 for (CFIndex i = 0; i < numProxies; ++i) {
ResourceRequestCFNet.cpp 96 CFIndex oldHeaderFieldCount = CFDictionaryGetCount(oldHeaderFields.get());
100 for (CFIndex i = 0; i < oldHeaderFieldCount; ++i)
178 CFIndex headerCount = CFDictionaryGetCount(headers);
190 CFIndex count = CFArrayGetCount(encodingFallbacks.get());
191 for (CFIndex i = 0; i < count; ++i) {
192 CFStringEncoding encoding = reinterpret_cast<CFIndex>(CFArrayGetValueAtIndex(encodingFallbacks.get(), i));
  /external/webkit/Source/WebKit/win/
MarshallingHelpers.cpp 87 return CFStringCreateWithCharacters(0, (const UniChar*)(str ? str : TEXT("")), (CFIndex)(str ? wcslen(str) : 0));
99 CFIndex length = CFStringGetLength(str);
157 CFIndex size = CFArrayGetCount(inArray);
160 for (CFIndex i=0; i<size; i++) {
173 CFIndex size = CFArrayGetCount(inArray);
176 for (CFIndex i=0; i<size; i++) {
213 CFIndex size = CFArrayGetCount(inArray);
216 for (CFIndex i=0; i<size; i++) {

Completed in 1062 milliseconds

1 2 3 4