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

<<101102103104105106107108109110>>

  /external/clang/lib/AST/
DeclCXX.cpp 180 // A copy/move assignment operator for class X is trivial if it is
211 // A copy/move assignment operator for class X is trivial if [...]
213 // -- the assignment operator selected to copy/move each direct base
215 // FIXME: C++0x: We need to only consider the selected operator instead
354 // A user-declared copy assignment operator is a non-static non-template
363 assert(FnType && "Overloaded operator has no prototype.");
387 // Save this copy-assignment operator. It might be "the one".
449 // A copy/move assignment operator for class X is trivial if [...]
589 // copy assignment operator [...].
593 // This is a copy assignment operator
    [all...]
  /external/clang/lib/CodeGen/
CGCleanup.h 453 EHScope *operator->() const { return get(); }
454 EHScope &operator*() const { return *get(); }
456 iterator &operator++() {
487 iterator operator++(int) {
489 operator++();
496 bool operator==(iterator other) const { return Ptr == other.Ptr; }
497 bool operator!=(iterator other) const { return Ptr != other.Ptr; }
  /external/clang/test/CodeGenCXX/
temporaries.cpp 47 // Function call operator
52 D operator()();
66 E operator+(const E&);
67 E operator!();
100 operator A();
257 struct B { operator A(); };
481 struct C { operator A() const; };
  /external/icu4c/i18n/
regexcst.txt 356 # Could be a '&' intersection operator, if a set follows.
357 # Could be the start of a '&&' operator.
366 # Could be a start of "&&" operator or a literal
377 # Could be a '-' difference operator, if a [set] follows.
378 # Could be the start of a '--' operator.
391 # A trailing "--" is still a difference operator.
403 # Have scanned "[literals-" Could be a range or a -- operator or a literal
  /external/llvm/docs/tutorial/
OCamlLangImpl2.html 59 "http://en.wikipedia.org/wiki/Operator-precedence_parser">Operator-Precedence
105 (* variant for a binary operator. *)
218 descent parsers. For a better example, the parenthesis operator is defined like
318 "http://en.wikipedia.org/wiki/Operator-precedence_parser">Operator-Precedence
324 (* binop_precedence - This holds the precedence for each binary operator that is
328 (* precedence - Get the precedence of the pending binary operator token. *)
347 token, or -1 if the token is not a binary operator. Having a <tt>Hashtbl.t</tt>
354 The basic idea of operator precedence parsing is to break down an expressio
    [all...]
  /external/stlport/src/
locale.cpp 46 bool locale::operator()(const string& __x,
51 bool locale::operator()(const wstring& __x,
172 // Try to use a normalize locale name in order to have the == operator
366 // Assignment operator. Much like the copy constructor: just a bit of
368 const locale& locale::operator=(const locale& L) _STLP_NOTHROW {
393 bool locale::operator==(const locale& L) const {
398 bool locale::operator!=(const locale& L) const {
  /external/stlport/stlport/stl/
_hashtable.h 129 reference operator*() const {
134 _Self& operator++() {
138 _Self operator++(int) {
144 bool operator == (const_iterator __rhs) const {
147 bool operator != (const_iterator __rhs) const {
351 _Self& operator= (const _Self& __ht) {
584 // this is for hash_map::operator[]
  /external/stlport/test/eh/
test_insert.h 112 const T& operator()( const T& x ) const { return x; }
117 const typename _Pair::first_type& operator()(const _Pair& __x) const {
346 void operator()( C& c ) const
383 void operator()( C& c ) const
412 void operator()( C& c ) const
436 void operator()( C& c ) const
518 void operator()( C& c ) const
  /external/stlport/test/unit/
set_test.cpp 215 bool operator () (SetTestClass const& lhs, SetTestClass const& rhs) const {
370 bool operator () (Key lhs, Key rhs) const
373 bool operator () (Key lhs, int rhs) const
376 bool operator () (int lhs, Key rhs) const
382 bool operator () (Key const volatile *lhs, Key const volatile *rhs) const
385 bool operator () (Key const volatile *lhs, int rhs) const
388 bool operator () (int lhs, Key const volatile *rhs) const
  /external/webkit/Source/JavaScriptCore/runtime/
JSValue.h 139 operator bool() const;
140 bool operator==(const JSValue& other) const;
141 bool operator!=(const JSValue& other) const;
461 inline bool operator==(const JSValue a, const JSCell* b) { return a == JSValue(b); }
462 inline bool operator==(const JSCell* a, const JSValue b) { return JSValue(a) == b; }
464 inline bool operator!=(const JSValue a, const JSCell* b) { return a != JSValue(b); }
465 inline bool operator!=(const JSCell* a, const JSValue b) { return JSValue(a) != b; }
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/
11.5.3.js 24 ECMA Section: 11.5.3 Applying the % operator
27 The binary % operator is said to yield the remainder of its operands from
29 is the divisor. In C and C++, the remainder operator accepts only integral
33 operator is not the same as the "remainder" operation defined by IEEE 754.
36 to that of the usual integer remainder operator. Instead the ECMAScript
38 analogous to that of the Java integer remainder operator; this may be
62 writeHeaderToLog( SECTION + " Applying the % operator");
  /external/webkit/Source/WebCore/rendering/style/
SVGRenderStyle.h 52 bool operator==(const SVGRenderStyle&) const;
53 bool operator!=(const SVGRenderStyle& o) const { return !(*this == o); }
330 bool operator==(const InheritedFlags& other) const
347 bool operator!=(const InheritedFlags& other) const
369 // 32 bit non-inherited, don't add to the struct, or the operator will break.
370 bool operator==(const NonInheritedFlags &other) const { return _niflags == other._niflags; }
371 bool operator!=(const NonInheritedFlags &other) const { return _niflags != other._niflags; }
  /frameworks/base/tools/aapt/
AaptAssets.h 111 inline bool operator<(const AaptGroupEntry& o) const { return compare(o) < 0; }
112 inline bool operator<=(const AaptGroupEntry& o) const { return compare(o) <= 0; }
113 inline bool operator==(const AaptGroupEntry& o) const { return compare(o) == 0; }
114 inline bool operator!=(const AaptGroupEntry& o) const { return compare(o) != 0; }
115 inline bool operator>=(const AaptGroupEntry& o) const { return compare(o) >= 0; }
116 inline bool operator>(const AaptGroupEntry& o) const { return compare(o) > 0; }
342 AaptSymbolEntry operator=(const AaptSymbolEntry& o)
  /ndk/sources/cxx-stl/stlport/src/
locale.cpp 46 bool locale::operator()(const string& __x,
51 bool locale::operator()(const wstring& __x,
172 // Try to use a normalize locale name in order to have the == operator
366 // Assignment operator. Much like the copy constructor: just a bit of
368 const locale& locale::operator=(const locale& L) _STLP_NOTHROW {
393 bool locale::operator==(const locale& L) const {
398 bool locale::operator!=(const locale& L) const {
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_hashtable.h 129 reference operator*() const {
134 _Self& operator++() {
138 _Self operator++(int) {
144 bool operator == (const_iterator __rhs) const {
147 bool operator != (const_iterator __rhs) const {
351 _Self& operator= (const _Self& __ht) {
584 // this is for hash_map::operator[]
  /ndk/tests/device/test-gnustl-full/unit/
set_test.cpp 215 bool operator () (SetTestClass const& lhs, SetTestClass const& rhs) const {
370 bool operator () (Key lhs, Key rhs) const
373 bool operator () (Key lhs, int rhs) const
376 bool operator () (int lhs, Key rhs) const
382 bool operator () (Key const volatile *lhs, Key const volatile *rhs) const
385 bool operator () (Key const volatile *lhs, int rhs) const
388 bool operator () (int lhs, Key const volatile *rhs) const
  /ndk/tests/device/test-stlport/unit/
set_test.cpp 215 bool operator () (SetTestClass const& lhs, SetTestClass const& rhs) const {
370 bool operator () (Key lhs, Key rhs) const
373 bool operator () (Key lhs, int rhs) const
376 bool operator () (int lhs, Key rhs) const
382 bool operator () (Key const volatile *lhs, Key const volatile *rhs) const
385 bool operator () (Key const volatile *lhs, int rhs) const
388 bool operator () (int lhs, Key const volatile *rhs) const
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/gp_hash_table_map_/
gp_ht_map_.hpp 288 operator[](const_key_reference r_key)
476 const size_type hash = ranged_probe_fn_base::operator()(key);
483 const size_type pos = ranged_probe_fn_base::operator()(key, hash, i);
497 if (hash_eq_fn_base::operator()(PB_DS_V2F(p_e->m_value), key))
522 comp_hash pos_hash_pair = ranged_probe_fn_base::operator()(key);
530 ranged_probe_fn_base::operator()(key, pos_hash_pair.second, i);
545 if (hash_eq_fn_base::operator()(PB_DS_V2F(p_e->m_value),
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/gp_hash_table_map_/
gp_ht_map_.hpp 288 operator[](const_key_reference r_key)
476 const size_type hash = ranged_probe_fn_base::operator()(key);
483 const size_type pos = ranged_probe_fn_base::operator()(key, hash, i);
497 if (hash_eq_fn_base::operator()(PB_DS_V2F(p_e->m_value), key))
522 comp_hash pos_hash_pair = ranged_probe_fn_base::operator()(key);
530 ranged_probe_fn_base::operator()(key, pos_hash_pair.second, i);
545 if (hash_eq_fn_base::operator()(PB_DS_V2F(p_e->m_value),
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/
_hashtable.h 129 reference operator*() const {
134 _Self& operator++() {
138 _Self operator++(int) {
144 bool operator == (const_iterator __rhs) const {
147 bool operator != (const_iterator __rhs) const {
351 _Self& operator= (const _Self& __ht) {
584 // this is for hash_map::operator[]
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/gp_hash_table_map_/
gp_ht_map_.hpp 288 operator[](const_key_reference r_key)
476 const size_type hash = ranged_probe_fn_base::operator()(key);
483 const size_type pos = ranged_probe_fn_base::operator()(key, hash, i);
497 if (hash_eq_fn_base::operator()(PB_DS_V2F(p_e->m_value), key))
522 comp_hash pos_hash_pair = ranged_probe_fn_base::operator()(key);
530 ranged_probe_fn_base::operator()(key, pos_hash_pair.second, i);
545 if (hash_eq_fn_base::operator()(PB_DS_V2F(p_e->m_value),
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/
_hashtable.h 129 reference operator*() const {
134 _Self& operator++() {
138 _Self operator++(int) {
144 bool operator == (const_iterator __rhs) const {
147 bool operator != (const_iterator __rhs) const {
351 _Self& operator= (const _Self& __ht) {
584 // this is for hash_map::operator[]
  /external/clang/lib/Sema/
SemaExprCXX.cpp 770 /// operator delete[] for the given type has a size_t parameter.
777 // Try to find an operator delete[] in class scope.
787 // Very likely: there's no operator delete[].
790 // If it's ambiguous, it should be illegal to call operator delete[]
807 // If class T does not declare [an operator delete[] with one
809 // named operator delete[] with exactly two parameters, the
    [all...]
  /external/chromium/testing/gmock/include/gmock/
gmock-actions.h 355 operator Action<F>() const {
456 // This template type conversion operator allows Return(x) to be
459 operator Action<F>() const {
485 // has a type conversion operator template. In that case, value_(value)
539 // This template type conversion operator allows ReturnRef(x) to be
542 operator Action<F>() const {
587 // This template type conversion operator allows ReturnRefOfCopy(x) to be
590 operator Action<F>() const {
629 // This template type conversion operator allows DoDefault() to be
632 operator Action<F>() const { return Action<F>(NULL);
    [all...]
  /external/webkit/Source/JavaScriptCore/icu/unicode/
utypes.h 180 * Tricky Preprocessor use - ## operator replaces macro paramters with the literal string
258 * to implement polymorphic clone() or operator==() defines two methods,
260 * operator==(). Nothing else should be done with them.
430 /* Global delete operator */
448 * The operator implementations crash; this is intentional and used for library debugging.
457 * Global operator new, defined only inside ICU4C, must not be used.
462 operator new(size_t /*size*/) {
469 * Global operator new[], defined only inside ICU4C, must not be used.
474 operator new[](size_t /*size*/) {
481 * Global operator delete, defined only inside ICU4C, must not be used
    [all...]

Completed in 5409 milliseconds

<<101102103104105106107108109110>>