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

1 2 3

  /external/lldb/source/Host/macosx/cfcpp/
CFCMutableArray.h 26 CFIndex GetCount() const;
27 CFIndex GetCountOfValue(const void *value) const;
28 CFIndex GetCountOfValue(CFRange range, const void *value) const;
29 const void * GetValueAtIndex(CFIndex idx) const;
30 bool SetValueAtIndex(CFIndex idx, const void *value);
CFCMutableSet.h 32 CFIndex GetCount() const;
33 CFIndex GetCountOfValue(const void *value) const;
CFCData.h 28 CFIndex GetLength () const;
CFCMutableArray.cpp 48 CFIndex
57 CFIndex
66 CFIndex
76 CFCMutableArray::GetValueAtIndex(CFIndex idx) const
81 const CFIndex num_array_items = ::CFArrayGetCount (array);
91 CFCMutableArray::SetValueAtIndex(CFIndex idx, const void *value)
96 const CFIndex num_array_items = ::CFArrayGetCount (array);
CFCData.cpp 50 CFIndex
76 CFIndex len = ::CFPropertyListWriteToStream (plist, stream.get(), format, NULL);
CFCMutableSet.cpp 52 CFIndex
61 CFIndex
CFCMutableDictionary.h 32 CFIndex GetCount() const;
33 CFIndex GetCountOfKey(const void *value) const;
34 CFIndex GetCountOfValue(const void *value) const;
CFCString.cpp 125 CFIndex max_utf8_str_len = CFStringGetLength (cf_str);
169 CFIndex max_length = ::CFStringGetMaximumSizeOfFileSystemRepresentation (cf_str);
188 CFIndex
CFCString.h 34 CFIndex GetLength() const;
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
StringCF.cpp 37 CFIndex size = CFStringGetLength(str);
42 CFIndex usedBufLen;
43 CFIndex convertedsize = CFStringGetBytes(str, CFRangeMake(0, size), kCFStringEncodingISOLatin1, 0, false, lcharBuffer.data(), size, &usedBufLen);
StringMac.mm 33 CFIndex size = CFStringGetLength(reinterpret_cast<CFStringRef>(str));
38 CFIndex usedBufLen;
39 CFIndex convertedsize = CFStringGetBytes(reinterpret_cast<CFStringRef>(str), CFRangeMake(0, size), kCFStringEncodingISOLatin1, 0, false, lcharBuffer.data(), size, &usedBufLen);
AtomicStringCF.cpp 41 CFIndex length = CFStringGetLength(string);
StringImplCF.cpp 54 static void* allocate(CFIndex size, CFOptionFlags, void*)
69 static void* reallocate(void* pointer, CFIndex newSize, CFOptionFlags, void*)
103 static CFIndex preferredSize(CFIndex size, CFOptionFlags, void*)
  /external/lldb/tools/debugserver/source/MacOSX/
CFData.h 32 CFIndex GetLength () const;
CFData.cpp 53 CFIndex
79 CFIndex len = ::CFPropertyListWriteToStream (plist, stream.get(), format, NULL);
CFString.cpp 129 CFIndex max_utf8_str_len = CFStringGetLength (cf_str);
158 CFIndex max_length = ::CFStringGetMaximumSizeOfFileSystemRepresentation (cf_str);
177 CFIndex
CFString.h 37 CFIndex GetLength() const;
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/
ComplexTextController.h 93 ALWAYS_INLINE CFIndex indexAt(size_t i) const;
94 CFIndex indexBegin() const { return m_indexBegin; }
95 CFIndex indexEnd() const { return m_indexEnd; }
96 CFIndex endOffsetAt(size_t i) const { ASSERT(!m_isMonotonic); return m_glyphEndOffsets[i]; }
112 Vector<CFIndex, 64> m_coreTextIndicesVector;
113 const CFIndex* m_coreTextIndices;
114 CFIndex m_indexBegin;
115 CFIndex m_indexEnd;
116 Vector<CFIndex, 64> m_glyphEndOffsets;
SimpleFontDataCoreText.cpp 131 CFIndex runCount = CFArrayGetCount(runArray);
134 Vector<CFIndex, 512> indexVector;
141 for (CFIndex r = 0; r < runCount && !done ; ++r) {
154 CFIndex glyphCount = CTRunGetGlyphCount(ctRun);
161 const CFIndex* stringIndices = CTRunGetStringIndicesPtr(ctRun);
169 for (CFIndex i = 0; i < glyphCount; ++i) {
170 if (stringIndices[i] >= static_cast<CFIndex>(length)) {
182 for (CFIndex i = 0; i < glyphCount; ++i) {
183 if (stringIndices[i] >= static_cast<CFIndex>(length)) {
ComplexTextController.cpp 135 CFIndex hitGlyphStart = complexTextRun.indexAt(j);
136 CFIndex hitGlyphEnd;
138 hitGlyphEnd = max<CFIndex>(hitGlyphStart, j + 1 < complexTextRun.glyphCount() ? complexTextRun.indexAt(j + 1) : static_cast<CFIndex>(complexTextRun.indexEnd()));
140 hitGlyphEnd = max<CFIndex>(hitGlyphStart, j > 0 ? complexTextRun.indexAt(j - 1) : static_cast<CFIndex>(complexTextRun.indexEnd()));
145 CFIndex hitIndex = hitGlyphStart + (hitGlyphEnd - hitGlyphStart) * (m_run.ltr() ? x / adjustedAdvance : 1 - x / adjustedAdvance);
327 CFIndex ComplexTextController::ComplexTextRun::indexAt(size_t i) const
339 ASSERT(indexAt(i) < static_cast<CFIndex>(m_stringLength));
345 CFIndex nextMappedIndex = m_indexEnd
    [all...]
  /external/clang/test/Analysis/
CFNumber.c 3 typedef signed long CFIndex;
14 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/compiler-rt/test/BlocksRuntime/
dispatch_async.c 20 __block CFIndex counter;
  /external/chromium_org/content/browser/gamepad/
gamepad_platform_data_fetcher_mac.h 87 CFIndex axis_minimums[blink::WebGamepad::axesLengthCap];
88 CFIndex axis_maximums[blink::WebGamepad::axesLengthCap];

Completed in 1037 milliseconds

1 2 3