pointer           117 Source/bindings/templates/interface.h        * a C++ pointer to the DOM object (if the object is not in oilpan) #}
pointer           599 Source/core/css/MediaQueryEvaluator.cpp     MediaValues::PointerDeviceType pointer = mediaValues.pointer();
pointer           604 Source/core/css/MediaQueryEvaluator.cpp     if (pointer == MediaValues::UnknownPointer)
pointer           613 Source/core/css/MediaQueryEvaluator.cpp     return (pointer == MediaValues::NoPointer && !number)
pointer           614 Source/core/css/MediaQueryEvaluator.cpp         || (pointer == MediaValues::TouchPointer && !number)
pointer           615 Source/core/css/MediaQueryEvaluator.cpp         || (pointer == MediaValues::MousePointer && number == 1);
pointer           620 Source/core/css/MediaQueryEvaluator.cpp     MediaValues::PointerDeviceType pointer = mediaValues.pointer();
pointer           625 Source/core/css/MediaQueryEvaluator.cpp     if (pointer == MediaValues::UnknownPointer)
pointer           629 Source/core/css/MediaQueryEvaluator.cpp         return pointer != MediaValues::NoPointer;
pointer           635 Source/core/css/MediaQueryEvaluator.cpp     return (pointer == MediaValues::NoPointer && id == CSSValueNone)
pointer           636 Source/core/css/MediaQueryEvaluator.cpp         || (pointer == MediaValues::TouchPointer && id == CSSValueCoarse)
pointer           637 Source/core/css/MediaQueryEvaluator.cpp         || (pointer == MediaValues::MousePointer && id == CSSValueFine);
pointer           140 Source/core/css/MediaValues.cpp     PointerDeviceType pointer,
pointer           157 Source/core/css/MediaValues.cpp     mediaValues->m_pointer = pointer;
pointer            57 Source/core/css/MediaValues.h     PointerDeviceType pointer() const;
pointer            52 Source/core/rendering/svg/SVGInlineTextBox.cpp     void* pointer;
pointer            57 Source/platform/Timer.cpp     TimerHeapPointer(TimerBase** pointer) : m_pointer(pointer) { }
pointer           111 Source/platform/Timer.cpp     explicit TimerHeapIterator(TimerBase** pointer) : m_pointer(pointer) { checkConsistency(); }
pointer           223 Source/platform/heap/Handle.h #define ASSERT_IS_VALID_PERSISTENT_POINTER(pointer) \
pointer           225 Source/platform/heap/Handle.h     ASSERT(!pointer || isGlobalPersistent || ThreadStateFor<ThreadingTrait<T>::Affinity>::state()->contains(pointer))
pointer           227 Source/platform/heap/Handle.h #define ASSERT_IS_VALID_PERSISTENT_POINTER(pointer)
pointer           769 Source/platform/heap/Heap.h     static BaseHeapPage* contains(void* pointer) { return contains(reinterpret_cast<Address>(pointer)); }
pointer           770 Source/platform/heap/Heap.h     static BaseHeapPage* contains(const void* pointer) { return contains(const_cast<void*>(pointer)); }
pointer          1748 Source/platform/heap/Heap.h void HeapHashTableBacking<Table>::finalize(void* pointer)
pointer          1752 Source/platform/heap/Heap.h     FinalizedHeapObjectHeader* header = FinalizedHeapObjectHeader::fromPayload(pointer);
pointer          1756 Source/platform/heap/Heap.h     Value* table = reinterpret_cast<Value*>(pointer);
pointer           467 Source/platform/heap/ThreadState.h     BaseHeapPage* contains(void* pointer) { return contains(reinterpret_cast<Address>(pointer)); }
pointer           468 Source/platform/heap/ThreadState.h     BaseHeapPage* contains(const void* pointer) { return contains(const_cast<void*>(pointer)); }
pointer           485 Source/platform/heap/Visitor.h     static void finalize(void* pointer);
pointer            51 Source/platform/scroll/ScrollableArea.cpp     void* pointer;
pointer           135 Source/platform/text/TextBreakIteratorICU.cpp static void textFixPointer(const UText* source, UText* destination, const void*& pointer)
pointer           137 Source/platform/text/TextBreakIteratorICU.cpp     if (pointer >= source->pExtra && pointer < static_cast<char*>(source->pExtra) + source->extraSize) {
pointer           139 Source/platform/text/TextBreakIteratorICU.cpp         pointer = static_cast<char*>(destination->pExtra) + (static_cast<const char*>(pointer) - static_cast<const char*>(source->pExtra));
pointer           140 Source/platform/text/TextBreakIteratorICU.cpp     } else if (pointer >= source && pointer < reinterpret_cast<const char*>(source) + source->sizeOfStruct) {
pointer           142 Source/platform/text/TextBreakIteratorICU.cpp         pointer = reinterpret_cast<char*>(destination) + (static_cast<const char*>(pointer) - reinterpret_cast<const char*>(source));
pointer            32 Source/platform/text/TextRun.cpp     const void* pointer;
pointer            63 Source/wtf/Alignment.h     inline bool isAlignedTo(const void* pointer)
pointer            65 Source/wtf/Alignment.h         return !(reinterpret_cast<uintptr_t>(pointer) & mask);
pointer            56 Source/wtf/DynamicAnnotations.h #define WTF_ANNOTATE_BENIGN_RACE(pointer, description) WTFAnnotateBenignRaceSized(__FILE__, __LINE__, pointer, sizeof(*(pointer)), description)
pointer            93 Source/wtf/DynamicAnnotations.h #define WTF_ANNOTATE_BENIGN_RACE(pointer, description)
pointer            42 Source/wtf/text/ASCIIFastPath.h inline bool isAlignedToMachineWord(const void* pointer)
pointer            44 Source/wtf/text/ASCIIFastPath.h     return !(reinterpret_cast<uintptr_t>(pointer) & machineWordAlignmentMask);
pointer            47 Source/wtf/text/ASCIIFastPath.h template<typename T> inline T* alignToMachineWord(T* pointer)
pointer            49 Source/wtf/text/ASCIIFastPath.h     return reinterpret_cast<T*>(reinterpret_cast<uintptr_t>(pointer) & ~machineWordAlignmentMask);
pointer            69 Source/wtf/text/StringImplCF.cpp static void* reallocate(void* pointer, CFIndex newSize, CFOptionFlags, void*)
pointer            72 Source/wtf/text/StringImplCF.cpp     StringImpl** header = static_cast<StringImpl**>(pointer) - 1;
pointer            87 Source/wtf/text/StringImplCF.cpp static void deallocate(void* pointer, void*)
pointer            89 Source/wtf/text/StringImplCF.cpp     StringImpl** header = static_cast<StringImpl**>(pointer) - 1;