Home | History | Annotate | Download | only in internal

Lines Matching refs:Element

80 template <typename Element>
81 inline Element* GetRawPointer(Element* p) { return p; }
421 template <typename Element, size_t N>
422 class StlContainerView<Element[N]> {
424 typedef GTEST_REMOVE_CONST_(Element) RawElement;
433 static const_reference ConstReference(const Element (&array)[N]) {
434 // Ensures that Element is not a const type.
435 testing::StaticAssertTypeEq<Element, RawElement>();
438 // for this call without the cast to Element*:
450 return type(const_cast<Element*>(&array[0]), N,
456 static type Copy(const Element (&array)[N]) {
458 return type(const_cast<Element*>(&array[0]), N, RelationToSourceCopy());