HomeSort by relevance Sort by last modified time
    Searched full:operator (Results 526 - 550 of 13411) sorted by null

<<21222324252627282930>>

  /external/stlport/test/eh/
SortClass.h 39 bool operator<( const TestClass& rhs ) const
45 bool operator==( const TestClass& rhs ) const
58 inline bool operator>( const SortClass& lhs, const SortClass& rhs ) {
62 inline bool operator<=( const SortClass& lhs, const SortClass& rhs ) {
66 inline bool operator>=( const SortClass& lhs, const SortClass& rhs ) {
70 inline bool operator != ( const SortClass& lhs, const SortClass& rhs ) {
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/atomics/atomics.types.generic/
integral.pass.cpp 21 // operator integral() const volatile;
22 // operator integral() const;
62 // atomic& operator=(const atomic&) = delete;
63 // atomic& operator=(const atomic&) volatile = delete;
64 // integral operator=(integral desr) volatile;
65 // integral operator=(integral desr);
67 // integral operator++(int) volatile;
68 // integral operator++(int);
69 // integral operator--(int) volatile;
70 // integral operator--(int)
    [all...]
  /external/chromium_org/cc/layers/
layer_position_constraint.cc 15 bool LayerPositionConstraint::operator==(
24 bool LayerPositionConstraint::operator!=(
  /external/chromium_org/chrome/renderer/safe_browsing/
test_utils.h 12 // operator== or ContainerEq, since hash_map's equality operator may return
  /external/chromium_org/content/browser/renderer_host/media/
video_capture_controller_event_handler.cc 13 bool VideoCaptureControllerID::operator<(
18 bool VideoCaptureControllerID::operator==(
  /external/chromium_org/content/public/browser/android/
synchronous_compositor.cc 12 bool SynchronousCompositorMemoryPolicy::operator==(
18 bool SynchronousCompositorMemoryPolicy::operator!=(
  /external/chromium_org/third_party/WebKit/Source/wtf/
FastAllocBase.h 32 // Provides customizable overrides of fastMalloc/fastFree and operator new/delete
56 void* operator new(size_t, void* p) { return p; } \
57 void* operator new[](size_t, void* p) { return p; } \
59 void* operator new(size_t size) \
64 void operator delete(void* p) \
69 void* operator new[](size_t size) \
74 void operator delete[](void* p) \
78 void* operator new(size_t, NotNullTag, void* location) \
  /external/chromium_org/third_party/angle/src/compiler/
Common.h 28 void* operator new(size_t s) { return GetGlobalPoolAllocator()->allocate(s); } \
29 void* operator new(size_t, void *_Where) { return (_Where); } \
30 void operator delete(void*) { } \
31 void operator delete(void *, void *) { } \
32 void* operator new[](size_t s) { return GetGlobalPoolAllocator()->allocate(s); } \
33 void* operator new[](size_t, void *_Where) { return (_Where); } \
34 void operator delete[](void*) { } \
35 void operator delete[](void *, void *) { }
InfoSink.h 44 TInfoSinkBase& operator<<(const T& t) {
50 // Override << operator for specific types. It is faster to append strings
52 TInfoSinkBase& operator<<(char c) {
56 TInfoSinkBase& operator<<(const char* str) {
60 TInfoSinkBase& operator<<(const TPersistString& str) {
64 TInfoSinkBase& operator<<(const TString& str) {
69 TInfoSinkBase& operator<<(float f) {
88 TInfoSinkBase& operator<<(bool b) {
  /external/chromium_org/third_party/angle/src/compiler/preprocessor/
pp_utils.h 12 // A macro to disallow the copy constructor and operator= functions
16 void operator=(const TypeName&)
  /external/chromium_org/third_party/skia/src/pathops/
SkPathOpsPoint.cpp 9 SkDVector operator-(const SkDPoint& a, const SkDPoint& b) {
14 SkDPoint operator+(const SkDPoint& a, const SkDVector& b) {
  /external/chromium_org/v8/test/mjsunit/regress/
regress-145201.js 35 function item(operator) {
36 binary(operator, 1, false);
37 binary(operator, 1, true);
38 binary(operator, '{}', false);
39 binary(operator, '{}', true);
40 binary(operator, '"x"', false);
41 binary(operator, '"x"', true);
42 unary(operator, "");
  /external/clang/test/Analysis/
conditional-operator.cpp 5 // Test that the analyzer does not crash on GNU extension operator "?:".
14 // TODO: We are not precise when processing the "?:" operator in C++.
  /external/clang/test/CXX/temp/temp.decls/temp.class.spec/temp.class.spec.mfunc/
p1.cpp 13 operator T*();
26 template<class X> A<X*, 2>::operator X*() { return 0; }
  /external/clang/test/CXX/temp/temp.decls/temp.fct/temp.func.order/
p3.cpp 8 int &operator==(const U& other) const;
12 float &operator==(const T&, const X<U>&);
  /external/clang/test/CodeGenCXX/
mangle-unnameable-conversions.cpp 6 operator id<T[N]>&();
8 operator id<T (U::*)()>() const;
  /external/clang/test/PCH/
cxx-method.cpp 8 S::operator char *() { return 0; }
10 S::operator const char *() { return 0; }
irgen-rdar13114142.mm 25 OOArray operator & (const OOPattern & pattern) {
28 OOArray operator & (OOString, OOString);
  /external/clang/test/SemaTemplate/
class-template-id-2.cpp 17 operator N::A<int>();
22 operator A<int>();
overload-uneval.cpp 33 inline operator B *() const { return concrete(i); }
34 inline bool operator!=(const It &o) const { return i !=
  /external/compiler-rt/lib/msan/
msan_new_delete.cc 40 void *operator new(size_t size) { OPERATOR_NEW_BODY; }
41 void *operator new[](size_t size) { OPERATOR_NEW_BODY; }
42 void *operator new(size_t size, std::nothrow_t const&) { OPERATOR_NEW_BODY; }
43 void *operator new[](size_t size, std::nothrow_t const&) { OPERATOR_NEW_BODY; }
48 void operator delete(void *ptr) { OPERATOR_DELETE_BODY; }
49 void operator delete[](void *ptr) { OPERATOR_DELETE_BODY; }
50 void operator delete(void *ptr, std::nothrow_t const&) { OPERATOR_DELETE_BODY; }
51 void operator delete[](void *ptr, std::nothrow_t const&) {
  /external/compiler-rt/lib/tsan/lit_tests/
malloc_stack.cc 23 // CHECK: #0 operator new
25 // CHECK: #0 operator new
  /external/skia/src/pathops/
SkPathOpsPoint.cpp 9 SkDVector operator-(const SkDPoint& a, const SkDPoint& b) {
14 SkDPoint operator+(const SkDPoint& a, const SkDVector& b) {
  /external/stlport/stlport/stl/
_relops_cont.h 7 inline bool _STLP_CALL operator==(const _STLP_TEMPLATE_CONTAINER& __x,
15 inline bool _STLP_CALL operator<(const _STLP_TEMPLATE_CONTAINER& __x,
  /external/valgrind/main/massif/tests/
realloc.stderr.exp 4 Massif: operator new(unsigned)
5 Massif: operator new(unsigned long)
7 Massif: operator new[](unsigned)
8 Massif: operator new[](unsigned long)
14 Massif: operator new(unsigned, std::nothrow_t const&)
15 Massif: operator new[](unsigned, std::nothrow_t const&)
16 Massif: operator new(unsigned long, std::nothrow_t const&)
17 Massif: operator new[](unsigned long, std::nothrow_t const&)

Completed in 1919 milliseconds

<<21222324252627282930>>