HomeSort by relevance Sort by last modified time
    Searched full:operator (Results 501 - 525 of 6015) sorted by null

<<21222324252627282930>>

  /external/collada/include/1.4/dom/
domGles_texcombiner_command_type.h 55 * Overloaded assignment operator
57 virtual domGles_texcombiner_command_type_complexType &operator=( const domGles_texcombiner_command_type_complexType &cpy ) { (void)cpy; return *this; }
79 * Overloaded assignment operator
81 virtual domGles_texcombiner_command_type &operator=( const domGles_texcombiner_command_type &cpy ) { (void)cpy; return *this; }
  /external/collada/include/dae/
daeMemorySystem.h 48 inline void* operator new(size_t size) { return daeMemorySystem::alloc("meta", size); } \
49 inline void operator delete(void* p) { daeMemorySystem::dealloc("meta", p); } \
51 inline void* operator new(size_t, void* p) { return p; } \
52 inline void operator delete(void*, void*) { }
  /external/icu4c/layout/
GDEFMarkFilter.h 27 GDEFMarkFilter &operator=(const GDEFMarkFilter &other); // forbid copying of this class
  /external/llvm/test/Transforms/LoopRotate/
PhiRename-1.ll 11 %struct.item_set = type { i32, i32, %struct.operator*, [2 x %struct.item_set*], %struct.item_set*, i16*, %struct.Item*, %struct.Item* }
15 %struct.operator = type { i8*, i8, i32, i32, i32, i32, %struct.table* }
16 %struct.pattern = type { %struct.nonterminal*, %struct.operator*, [2 x %struct.nonterminal*] }
21 %struct.table = type { %struct.operator*, %struct.list*, i16*, [2 x %struct.dimension*], %struct.item_set** }
35 %op = alloca %struct.operator*, align 4 ; <%struct.operator**> [#uses=3]
45 %tmp45 = bitcast i8* %tmp4 to %struct.operator* ; <%struct.operator*> [#uses=1]
46 store %struct.operator* %tmp45, %struct.operator** %o
    [all...]
  /external/stlport/stlport/stl/
_raw_storage_iter.h 54 raw_storage_iterator<_ForwardIterator, _Tp>& operator*() { return *this; }
55 raw_storage_iterator<_ForwardIterator, _Tp>& operator=(const _Tp& __element) {
59 raw_storage_iterator<_ForwardIterator, _Tp>& operator++() {
63 raw_storage_iterator<_ForwardIterator, _Tp> operator++(int) {
  /external/webkit/Source/WebCore/rendering/style/
CursorList.h 41 const CursorData& operator[](int i) const { return m_vector[i]; }
42 CursorData& operator[](int i) { return m_vector[i]; }
46 bool operator==(const CursorList& o) const { return m_vector == o.m_vector; }
47 bool operator!=(const CursorList& o) const { return m_vector != o.m_vector; }
DataRef.h 35 const T& operator*() const { return *get(); }
36 const T* operator->() const { return get(); }
51 bool operator==(const DataRef<T>& o) const
58 bool operator!=(const DataRef<T>& o) const
  /libcore/luni/src/main/native/
toStringArray.cpp 26 size_t operator()() {
33 const char* operator()(size_t i) {
47 size_t operator()() {
59 const char* operator()(size_t i) {
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_raw_storage_iter.h 54 raw_storage_iterator<_ForwardIterator, _Tp>& operator*() { return *this; }
55 raw_storage_iterator<_ForwardIterator, _Tp>& operator=(const _Tp& __element) {
59 raw_storage_iterator<_ForwardIterator, _Tp>& operator++() {
63 raw_storage_iterator<_ForwardIterator, _Tp> operator++(int) {
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/list_update_policy/
counter_lu_policy_imp.hpp 44 operator()() const
45 { return (base_type::operator()(max_count)); }
50 operator()(metadata_reference r_data) const
51 { return (base_type::operator()(r_data, max_count)); }
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/list_update_policy/
counter_lu_policy_imp.hpp 44 operator()() const
45 { return (base_type::operator()(max_count)); }
50 operator()(metadata_reference r_data) const
51 { return (base_type::operator()(r_data, max_count)); }
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/
_raw_storage_iter.h 54 raw_storage_iterator<_ForwardIterator, _Tp>& operator*() { return *this; }
55 raw_storage_iterator<_ForwardIterator, _Tp>& operator=(const _Tp& __element) {
59 raw_storage_iterator<_ForwardIterator, _Tp>& operator++() {
63 raw_storage_iterator<_ForwardIterator, _Tp> operator++(int) {
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/list_update_policy/
counter_lu_policy_imp.hpp 44 operator()() const
45 { return (base_type::operator()(max_count)); }
50 operator()(metadata_reference r_data) const
51 { return (base_type::operator()(r_data, max_count)); }
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/
_raw_storage_iter.h 54 raw_storage_iterator<_ForwardIterator, _Tp>& operator*() { return *this; }
55 raw_storage_iterator<_ForwardIterator, _Tp>& operator=(const _Tp& __element) {
59 raw_storage_iterator<_ForwardIterator, _Tp>& operator++() {
63 raw_storage_iterator<_ForwardIterator, _Tp> operator++(int) {
  /external/chromium/base/memory/
scoped_ptr.h 90 // operator* and operator-> will assert() if there is no current object.
91 C& operator*() const {
95 C* operator->() const {
104 bool operator==(C* p) const { return ptr_ == p; }
105 bool operator!=(C* p) const { return ptr_ != p; }
131 template <class C2> bool operator==(scoped_ptr<C2> const& p2) const;
132 template <class C2> bool operator!=(scoped_ptr<C2> const& p2) const;
136 void operator=(const scoped_ptr&);
146 bool operator==(C* p1, const scoped_ptr<C>& p2)
    [all...]
  /external/clang/include/clang/Lex/
PreprocessingRecord.h 30 void* operator new(size_t bytes, clang::PreprocessingRecord& PR,
34 void operator delete(void* ptr, clang::PreprocessingRecord& PR,
99 void* operator new(size_t bytes, PreprocessingRecord& PR,
101 return ::operator new(bytes, PR, alignment);
104 void* operator new(size_t bytes, void* mem) throw() {
108 void operator delete(void* ptr, PreprocessingRecord& PR,
110 return ::operator delete(ptr, PR, alignment);
113 void operator delete(void*, std::size_t) throw() { }
114 void operator delete(void*, void*) throw() { }
118 void* operator new(size_t bytes) throw()
    [all...]
  /external/astl/src/
ostream.cpp 41 ostream& ostream::operator<<(const char_type *str) {
48 ostream& ostream::operator<<(char_type c) {
53 ostream& ostream::operator<<(bool val) {
62 ostream& ostream::operator<<(int val) {
69 ostream& ostream::operator<<(unsigned int val) {
76 ostream& ostream::operator<<(long int val) {
83 ostream& ostream::operator<<(unsigned long int val) {
90 ostream& ostream::operator<<(long long int val) {
97 ostream& ostream::operator<<(unsigned long long int val) {
105 ostream& ostream::operator<<(double val)
    [all...]
  /external/chromium/webkit/glue/
form_field.h 42 bool operator==(const FormField& field) const;
43 bool operator!=(const FormField& field) const;
59 std::ostream& operator<<(std::ostream& os, const FormField& field);
web_io_operators.cc 20 std::ostream& operator<<(std::ostream& out, const WebString& s) {
25 std::ostream& operator<<(std::ostream& out, const WebPoint& p) {
29 std::ostream& operator<<(std::ostream& out, const WebRect& p) {
  /external/clang/test/SemaCXX/
for-range-no-std.cpp 19 int operator*();
20 bool operator!=(iter);
21 void operator++();
warn-dangling-field.cpp 7 operator X*();
8 operator X&();
28 S3(Y y) : x1(y), x2(y) {} // no-warning: conversion operator
  /external/clang/test/SemaTemplate/
copy-ctor-assign.cpp 14 X& operator=(const X<U>& other) {
39 X1 &operator=(const X1&);
44 template<typename U> X2 &operator=(const U&);
  /external/icu4c/i18n/
decnumstr.h 39 char &operator[] (int32_t index);
40 const char &operator[] (int32_t index) const;
43 operator StringPiece() const;
  /external/oprofile/libabi/
abi.cpp 47 bool abi::operator==(abi const & other) const
53 ostream & operator<<(ostream & o, abi const & abi)
65 istream & operator>>(istream & i, abi & abi)
  /external/protobuf/src/google/protobuf/stubs/
hash.h 65 int operator()(const Key& key) {
70 inline bool operator()(const Key& a, const Key& b) const {
79 int operator()(const char* key) {
84 inline bool operator()(const char* a, const char* b) const {
111 inline bool operator()(const char* a, const char* b) const {
143 inline size_t operator()(const Key* key) const {
152 inline size_t operator()(const char* str) const {
179 inline size_t operator()(const string& key) const {
185 inline size_t operator()(const string& a, const string& b) const {
192 inline size_t operator()(const pair<First, Second>& key) const
    [all...]

Completed in 878 milliseconds

<<21222324252627282930>>