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

<<101102103104105106107108109110>>

  /external/webkit/Source/JavaScriptGlue/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...]
  /external/webkit/Source/WebCore/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...]
  /external/webkit/Source/WebKit/mac/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...]
  /external/clang/test/SemaCXX/
type-traits.cpp 19 struct HasOp { void operator *(); };
20 struct HasConv { operator int(); };
21 struct HasAssign { void operator =(int); };
40 struct HasCopyAssign { HasCopyAssign operator =(const HasCopyAssign&); };
41 struct HasMoveAssign { HasMoveAssign operator =(const HasMoveAssign&&); };
62 void operator =(const HasNoThrowCopyAssign&) throw();
65 void operator =(const HasMultipleCopyAssign&) throw();
66 void operator =(volatile HasMultipleCopyAssign&);
69 void operator =(const HasMultipleNoThrowCopyAssign&) throw();
70 void operator =(volatile HasMultipleNoThrowCopyAssign&) throw()
    [all...]
  /external/tinyxml/
tinyxml.h 165 (For an unformatted stream, use the << operator.)
187 when the DOM was created from operator>>.
357 void operator=( const TiXmlBase& base ); // not allowed.
390 /** An input stream operator, for every class. Tolerant of newlines and
393 friend std::istream& operator >> (std::istream& in, TiXmlNode& base);
395 /** An output stream operator, for every class. Note that this outputs
399 The operator<< and operator>> are not completely symmetric. Writing
411 friend std::ostream& operator<< (std::ostream& out, const TiXmlNode& base);
414 friend std::string& operator<< (std::string& out, const TiXmlNode& base )
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 132 /// UnaryExprAST - Expression class for a unary operator.
142 /// BinaryExprAST - Expression class for a binary operator.
195 /// which captures its argument names as well as if it is an operator.
244 /// BinopPrecedence - This holds the precedence for each binary operator that is
248 /// GetTokPrecedence - Get the precedence of the pending binary operator token.
455 // If the current token is not an operator, it must be a primary expr.
459 // If this is a unary operator, read it.
483 // Parse the unary expression after the binary operator.
487 // If BinOp binds less tightly with RHS than the operator after RHS, let
488 // the pending operator take RHS as its LHS
    [all...]
  /external/apache-http/src/org/apache/http/impl/conn/tsccm/
ConnPoolByRoute.java 73 /** Connection operator for this pool */
74 protected final ClientConnectionOperator operator; field in class:ConnPoolByRoute
96 public ConnPoolByRoute(final ClientConnectionOperator operator, final HttpParams params) {
98 if (operator == null) {
99 throw new IllegalArgumentException("Connection operator may not be null");
101 this.operator = operator;
315 entry = createEntry(rospl, operator);
320 entry = createEntry(rospl, operator);
476 * @param op the operator for creating a connectio
    [all...]
  /external/icu4c/i18n/unicode/
search.h 262 // operator overloading ----------------------------------------------
265 * Equality operator.
272 virtual UBool operator==(const SearchIterator &that) const;
275 * Not-equal operator.
277 * @return FALSE if operator== returns TRUE, and vice versa.
280 UBool operator!=(const SearchIterator &that) const;
478 * Assignment operator. Sets this iterator to have the same behavior,
483 SearchIterator & operator=(const SearchIterator &that);
560 inline UBool SearchIterator::operator!=(const SearchIterator &that) const
562 return !operator==(that);
    [all...]
dtitvinf.h 194 * Assignment operator
197 DateIntervalInfo& operator=(const DateIntervalInfo&);
222 virtual UBool operator==(const DateIntervalInfo& other) const;
231 UBool operator!=(const DateIntervalInfo& other) const;
517 DateIntervalInfo::operator!=(const DateIntervalInfo& other) const {
518 return !operator==(other);
  /external/llvm/include/llvm/ADT/
StringRef.h 176 /// @name Operator Overloads
179 char operator[](size_t Index) const {
188 operator std::string() const {
439 inline bool operator==(StringRef LHS, StringRef RHS) {
443 inline bool operator!=(StringRef LHS, StringRef RHS) {
447 inline bool operator<(StringRef LHS, StringRef RHS) {
451 inline bool operator<=(StringRef LHS, StringRef RHS) {
455 inline bool operator>(StringRef LHS, StringRef RHS) {
459 inline bool operator>=(StringRef LHS, StringRef RHS) {
463 inline std::string &operator+=(std::string &buffer, llvm::StringRef string)
    [all...]
Twine.h 77 /// so we provide two additional methods (and accompanying operator+
343 // the compiler to be smart enough to fold operator+()/concat() down to the
497 inline Twine operator+(const Twine &LHS, const Twine &RHS) {
504 inline Twine operator+(const char *LHS, const StringRef &RHS) {
511 inline Twine operator+(const StringRef &LHS, const char *RHS) {
515 inline raw_ostream &operator<<(raw_ostream &OS, const Twine &RHS) {
  /ndk/sources/host-tools/sed-4.2.1/lib/
regex.h 119 expression or after an open-group or an alternation operator;
121 before a close-group or an alternation operator.
134 open-group, or alternation operator. */
138 immediately after an alternation or begin-group operator. */
162 /* If this bit is set, newline is an alternation operator.
179 /* If this bit is set, then | is an alternation operator, and \| is literal.
180 If not set, then \| is an alternation operator, and | is literal. */
224 immediately after an alternation or begin-group operator. */
358 /* If this bit is set, then the beginning-of-line operator doesn't match
361 If not set, then the beginning-of-line operator does match th
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
locale_classes.h 182 * @brief Assignment operator.
190 operator=(const locale& __other) throw();
224 operator==(const locale& __other) const throw ();
233 operator!=(const locale& __other) const throw ()
234 { return !(this->operator==(__other)); }
239 * Template operator to compare two strings using the compare function of
253 operator()(const basic_string<_Char, _Traits, _Alloc>& __s1,
412 operator=(const facet&); // Not defined.
449 operator=(const id&); // Not defined.
523 operator=(const _Impl&); // Not defined
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
regex.h 65 expression or after an open-group or an alternation operator;
67 before a close-group or an alternation operator.
80 open-group, or alternation operator. */
84 immediately after an alternation or begin-group operator. */
108 /* If this bit is set, newline is an alternation operator.
125 /* If this bit is set, then | is an alternation operator, and \| is literal.
126 If not set, then \| is an alternation operator, and | is literal. */
170 immediately after an alternation or begin-group operator. */
288 /* If this bit is set, then the beginning-of-line operator doesn't match
291 If not set, then the beginning-of-line operator does match th
    [all...]
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/bits/
locale_classes.h 182 * @brief Assignment operator.
190 operator=(const locale& __other) throw();
224 operator==(const locale& __other) const throw ();
233 operator!=(const locale& __other) const throw ()
234 { return !(this->operator==(__other)); }
239 * Template operator to compare two strings using the compare function of
253 operator()(const basic_string<_Char, _Traits, _Alloc>& __s1,
412 operator=(const facet&); // Not defined.
449 operator=(const id&); // Not defined.
523 operator=(const _Impl&); // Not defined
    [all...]
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/bits/
locale_classes.h 182 * @brief Assignment operator.
190 operator=(const locale& __other) throw();
224 operator==(const locale& __other) const throw ();
233 operator!=(const locale& __other) const throw ()
234 { return !(this->operator==(__other)); }
239 * Template operator to compare two strings using the compare function of
253 operator()(const basic_string<_Char, _Traits, _Alloc>& __s1,
412 operator=(const facet&); // Not defined.
449 operator=(const id&); // Not defined.
523 operator=(const _Impl&); // Not defined
    [all...]
  /external/chromium/chrome/browser/autofill/
credit_card.cc 153 operator=(credit_card);
343 void CreditCard::operator=(const CreditCard& credit_card) {
373 bool CreditCard::operator==(const CreditCard& credit_card) const {
380 bool CreditCard::operator!=(const CreditCard& credit_card) const {
381 return !operator==(credit_card);
531 std::ostream& operator<<(std::ostream& os, const CreditCard& credit_card) {
  /external/chromium/sdch/open-vcdiff/src/
headerparser.h 92 // Making these private avoids implicit copy constructor & assignment operator
94 void operator=(const ParseableChunk&);
185 // Making these private avoids implicit copy constructor & assignment operator
187 void operator=(const DeltaWindowSection&);
393 // Making these private avoids implicit copy constructor & assignment operator
395 void operator=(const VCDiffHeaderParser&);
  /external/chromium/testing/
generate_gmock_mutant.py 194 // Redirects operator() to MutantRunner<Params>::Run()
203 inline R operator()() {
208 inline R operator()(const Arg1& a) {
213 inline R operator()(const Arg1& a, const Arg2& b) {
218 inline R operator()(const Arg1& a, const Arg2& b, const Arg3& c) {
223 inline R operator()(const Arg1& a, const Arg2& b, const Arg3& c,
  /external/icu4c/i18n/
digitlst.h 134 /* assignment operator
138 DigitList& operator=(const DigitList&); // assignment operator
146 UBool operator==(const DigitList& other) const;
151 inline UBool operator!=(const DigitList& other) const { return !operator==(other); };
  /external/llvm/examples/Kaleidoscope/Chapter2/
toy.cpp 98 /// BinaryExprAST - Expression class for a binary operator.
150 /// BinopPrecedence - This holds the precedence for each binary operator that is
154 /// GetTokPrecedence - Get the precedence of the pending binary operator token.
254 // Parse the primary expression after the binary operator.
258 // If BinOp binds less tightly with RHS than the operator after RHS, let
259 // the pending operator take RHS as its LHS.
  /external/stlport/test/unit/
map_test.cpp 313 bool operator () (Key lhs, Key rhs) const
316 bool operator () (Key lhs, int rhs) const
319 bool operator () (int lhs, Key rhs) const
325 bool operator () (Key const volatile *lhs, Key const volatile *rhs) const
328 bool operator () (Key const volatile *lhs, int rhs) const
331 bool operator () (int lhs, Key const volatile *rhs) const
  /external/webkit/LayoutTests/dom/xhtml/level1/core/
xhtml-symbol.ent 109 <!-- bullet is NOT the same as bullet operator, U+2219 -->
172 <!ENTITY lowast "&#8727;"> <!-- asterisk operator, U+2217 ISOtech -->
184 <!ENTITY sim "&#8764;"> <!-- tilde operator = varies with = similar to,
186 <!-- tilde operator is NOT the same character as the tilde, U+007E,
208 <!ENTITY sdot "&#8901;"> <!-- dot operator, U+22C5 ISOamsb -->
209 <!-- dot operator is NOT the same character as U+00B7 middle dot -->
  /external/webkit/LayoutTests/dom/xhtml/level2/core/
xhtml-symbol.ent 109 <!-- bullet is NOT the same as bullet operator, U+2219 -->
172 <!ENTITY lowast "&#8727;"> <!-- asterisk operator, U+2217 ISOtech -->
184 <!ENTITY sim "&#8764;"> <!-- tilde operator = varies with = similar to,
186 <!-- tilde operator is NOT the same character as the tilde, U+007E,
208 <!ENTITY sdot "&#8901;"> <!-- dot operator, U+22C5 ISOamsb -->
209 <!-- dot operator is NOT the same character as U+00B7 middle dot -->
  /external/webkit/LayoutTests/dom/xhtml/level2/events/
xhtml-symbol.ent 109 <!-- bullet is NOT the same as bullet operator, U+2219 -->
172 <!ENTITY lowast "&#8727;"> <!-- asterisk operator, U+2217 ISOtech -->
184 <!ENTITY sim "&#8764;"> <!-- tilde operator = varies with = similar to,
186 <!-- tilde operator is NOT the same character as the tilde, U+007E,
208 <!ENTITY sdot "&#8901;"> <!-- dot operator, U+22C5 ISOamsb -->
209 <!-- dot operator is NOT the same character as U+00B7 middle dot -->

Completed in 540 milliseconds

<<101102103104105106107108109110>>