/external/llvm/utils/unittest/googletest/include/gtest/internal/ |
gtest-internal.h | 73 // test messages via the << operator. The idea is that anything 76 // overloading the << operator. 88 // To allow STL containers (and other types that has a << operator 90 // testing::Message must access the custom << operator from the global 94 // ::operator<<;" in the definition of Message's operator<<. That fix 98 // LLVM INTERNAL CHANGE: To allow operator<< to work with both 111 operator raw_ostream&() { return ros_; } 493 // them for equality using the == operator. 761 operator bool() const { return true; [all...] |
/external/icu4c/common/unicode/ |
unistr.h | 214 * Equality operator. Performs only bitwise comparison. 220 inline UBool operator== (const UnicodeString& text) const; 223 * Inequality operator. Performs only bitwise comparison. 229 inline UBool operator!= (const UnicodeString& text) const; 232 * Greater than operator. Performs only bitwise comparison. 238 inline UBool operator> (const UnicodeString& text) const; 241 * Less than operator. Performs only bitwise comparison. 247 inline UBool operator< (const UnicodeString& text) const; 250 * Greater than or equal operator. Performs only bitwise comparison. 256 inline UBool operator>= (const UnicodeString& text) const [all...] |
brkiter.h | 121 virtual UBool operator==(const BreakIterator&) const = 0; 124 * Returns the complement of the result of operator== 126 * @return the complement of the result of operator== 129 UBool operator!=(const BreakIterator& rhs) const { return !operator==(rhs); } 540 * The assignment operator has no real implementation. 543 BreakIterator& operator=(const BreakIterator&);
|
/external/chromium/sdch/open-vcdiff/src/gtest/internal/ |
gtest-internal.h | 67 // test messages via the << operator. The idea is that anything 70 // overloading the << operator. 82 // To allow STL containers (and other types that has a << operator 84 // testing::Message must access the custom << operator from the global 88 // ::operator<<;" in the definition of Message's operator<<. That fix 472 // them for equality using the == operator.
|
/external/chromium/testing/gtest/scripts/ |
gen_gtest_pred_impl.py | 143 // and the values v1, v2, ..., must support the << operator for 394 bool operator>(int n) const { return value > Bool(n).value; } 396 Bool operator+(const Bool& rhs) const { return Bool(value + rhs.value); } 398 bool operator==(const Bool& rhs) const { return value == rhs.value; } 404 std::ostream& operator<<(std::ostream& os, const Bool& x) { 453 bool operator()(""" % DEFS 494 testing::AssertionResult operator()(""" % DEFS
|
/external/clang/include/clang/Basic/ |
DiagnosticLexKinds.td | 179 "left side of operator converted from negative value to unsigned: %0">; 181 "right side of operator converted from negative value to unsigned: %0">; 192 def ext_pp_comma_expr : Extension<"comma operator in operand of #if">; 244 def err_pp_missing_val_before_operator : Error<"missing value before operator">; 249 "operator 'defined' requires an identifier">; 258 "token is not a valid binary operator in a preprocessor subexpression">; 338 "C++ operator '%0' cannot be used as a macro name">;
|
/external/clang/include/clang/Sema/ |
Lookup.h | 305 /// e.g., when a class member access operator (5.2.5) is used 307 /// a class member access operator and a qualified-id are used to 671 iterator &operator++() { ++iter; return *this; } 672 iterator operator++(int) { return iterator(iter++); } 674 NamedDecl *operator*() const { return iter->second; } 676 bool operator==(const iterator &other) const { return iter == other.iter; } 677 bool operator!=(const iterator &other) const { return iter != other.iter; }
|
CodeCompleteConsumer.h | 183 /// access expression using the dot operator. 190 /// access expression using the arrow operator. 443 CodeCompletionString &operator=(const CodeCompletionString &); // DITTO 460 const Chunk &operator[](unsigned I) const { 732 bool operator<(const CodeCompletionResult &X, const CodeCompletionResult &Y); 734 inline bool operator>(const CodeCompletionResult &X, 739 inline bool operator<=(const CodeCompletionResult &X, 744 inline bool operator>=(const CodeCompletionResult &X, 750 raw_ostream &operator<<(raw_ostream &OS, [all...] |
/external/gtest/scripts/ |
gen_gtest_pred_impl.py | 143 // and the values v1, v2, ..., must support the << operator for 396 bool operator>(int n) const { return value > Bool(n).value; } 398 Bool operator+(const Bool& rhs) const { return Bool(value + rhs.value); } 400 bool operator==(const Bool& rhs) const { return value == rhs.value; } 406 std::ostream& operator<<(std::ostream& os, const Bool& x) { 455 bool operator()(""" % DEFS 497 testing::AssertionResult operator()(""" % DEFS
|
/external/icu4c/i18n/unicode/ |
fmtable.h | 161 * Assignment operator. 165 Formattable& operator=(const Formattable &rhs); 173 UBool operator==(const Formattable &other) const; 176 * Equality operator. 181 UBool operator!=(const Formattable& other) const 182 { return !operator==(other); } 453 Formattable& operator[](int32_t index) { return fValue.fArrayAndCount.fArray[index]; }
|
/external/llvm/examples/Kaleidoscope/Chapter3/ |
toy.cpp | 106 /// BinaryExprAST - Expression class for a binary operator. 162 /// BinopPrecedence - This holds the precedence for each binary operator that is 166 /// GetTokPrecedence - Get the precedence of the pending binary operator token. 266 // Parse the primary expression after the binary operator. 270 // If BinOp binds less tightly with RHS than the operator after RHS, let 271 // the pending operator take RHS as its LHS. 378 default: return ErrorV("invalid binary operator");
|
/external/llvm/examples/Kaleidoscope/Chapter4/ |
toy.cpp | 113 /// BinaryExprAST - Expression class for a binary operator. 169 /// BinopPrecedence - This holds the precedence for each binary operator that is 173 /// GetTokPrecedence - Get the precedence of the pending binary operator token. 273 // Parse the primary expression after the binary operator. 277 // If BinOp binds less tightly with RHS than the operator after RHS, let 278 // the pending operator take RHS as its LHS. 386 default: return ErrorV("invalid binary operator");
|
/external/llvm/lib/TableGen/ |
TGParser.cpp | 716 /// ParseOperation - Parse an operator. This returns null on error. 742 TokError("did not get type for unary operator"); 762 TokError("expected '(' after unary operator"); 777 TokError("expected list or string type argument in unary operator"); 784 TokError("expected list or string type argumnet in unary operator"); 792 TokError("expected list type argumnet in unary operator"); 797 TokError("empty list argument in unary operator"); 804 TokError("untyped list element in unary operator"); 813 assert(LHSt && "expected list type argument in unary operator"); 816 TokError("expected list type argumnet in unary operator"); [all...] |
/external/oprofile/libpp/ |
arrange_profiles.cpp | 56 bool operator<(profile_class const & lhs, 696 ostream & operator<<(ostream & out, profile_sample_files const & sample_files) 705 ostream & operator<<(ostream & out, profile_dep_set const & pdep_set) 719 ostream & operator<<(ostream & out, profile_set const & pset) 739 ostream & operator<<(ostream & out, profile_template const & ptemplate) 750 ostream & operator<<(ostream & out, profile_class const & pclass) 765 ostream & operator<<(ostream & out, profile_classes const & pclasses)
|
/external/protobuf/gtest/scripts/ |
gen_gtest_pred_impl.py | 143 // and the values v1, v2, ..., must support the << operator for 396 bool operator>(int n) const { return value > Bool(n).value; } 398 Bool operator+(const Bool& rhs) const { return Bool(value + rhs.value); } 400 bool operator==(const Bool& rhs) const { return value == rhs.value; } 406 std::ostream& operator<<(std::ostream& os, const Bool& x) { 455 bool operator()(""" % DEFS 497 testing::AssertionResult operator()(""" % DEFS
|
/external/qemu/distrib/zlib-1.2.3/ |
crc32.c | 377 unsigned long even[GF2_DIM]; /* even-power-of-two zeros operator */ 378 unsigned long odd[GF2_DIM]; /* odd-power-of-two zeros operator */ 384 /* put operator for one zero bit in odd */ 392 /* put operator for two zero bits in even */ 395 /* put operator for four zero bits in odd */ 398 /* apply len2 zeros to crc1 (first square will put the operator for one 401 /* apply zeros operator for this bit of len2 */
|
/external/zlib/ |
crc32.c | 379 unsigned long even[GF2_DIM]; /* even-power-of-two zeros operator */ 380 unsigned long odd[GF2_DIM]; /* odd-power-of-two zeros operator */ 386 /* put operator for one zero bit in odd */ 394 /* put operator for two zero bits in even */ 397 /* put operator for four zero bits in odd */ 400 /* apply len2 zeros to crc1 (first square will put the operator for one 403 /* apply zeros operator for this bit of len2 */
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/ |
cursesm.h | 74 NCursesMenuItem& operator=(const NCursesMenuItem& rhs) 167 NCursesMenuCallbackItem& operator=(const NCursesMenuCallbackItem& rhs) 314 NCursesMenu& operator=(const NCursesMenu& rhs) 318 NCursesPanel::operator=(rhs); 560 inline NCursesMenuItem* operator[](int i) const { 569 virtual NCursesMenuItem* operator()(void); 573 // Called by operator()
|
/external/chromium/base/ |
logging.h | 359 // We use the preprocessor's merging operator, "##", so that, e.g., 362 // ostream::operator<<(int) and ostream non-member streaming functions 363 // (e.g., ::operator<<(ostream&, string&): it turns out that it's 684 // as expected. The values must have operator<<(ostream, ...) [all...] |
/external/clang/test/Analysis/ |
auto-obj-dtors-cfg-output.cpp | 8 operator int() const { return 1; } 328 // CHECK: 9: [B4.8].operator int 401 // CHECK: 9: [B8.8].operator int 425 // CHECK: 7: [B2.6].operator int 467 // CHECK: 7: [B2.6].operator int 638 // CHECK: 9: [B2.8].operator int 672 // CHECK: 9: [B2.8].operator int 735 // CHECK: 7: [B2.6].operator int 778 // CHECK: 7: [B2.6].operator int
|
/external/stlport/stlport/stl/ |
_string.h | 347 _Self& operator=(const _Self& __s) { 353 _Self& operator=(const _CharT* __s) { 358 _Self& operator=(_CharT __c) 432 const_reference operator[](size_type __n) const 434 reference operator[](size_type __n) 449 public: // Append, operator+=, push_back. 451 _Self& operator+=(const _Self& __s) { return append(__s); } 452 _Self& operator+=(const _CharT* __s) { _STLP_FIX_LITERAL_BUG(__s) return append(__s); } 453 _Self& operator+=(_CharT __c) { push_back(__c); return *this; } [all...] |
/external/webkit/Source/JavaScriptCore/parser/ |
ASTBuilder.h | 61 AssignmentInfo(ExpressionNode* node, int start, int divot, int initAssignments, Operator op) 73 Operator m_op; 127 ExpressionNode* makeAssignNode(ExpressionNode* left, Operator, ExpressionNode* right, bool leftHasAssignments, bool rightHasAssignments, int start, int divot, int end); 128 ExpressionNode* makePrefixNode(ExpressionNode*, Operator, int start, int divot, int end); 129 ExpressionNode* makePostfixNode(ExpressionNode*, Operator, int start, int divot, int end); 575 void assignmentStackAppend(int& assignmentStackDepth, ExpressionNode* node, int start, int divot, int assignmentCount, Operator op) [all...] |
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
_string.h | 347 _Self& operator=(const _Self& __s) { 353 _Self& operator=(const _CharT* __s) { 358 _Self& operator=(_CharT __c) 432 const_reference operator[](size_type __n) const 434 reference operator[](size_type __n) 449 public: // Append, operator+=, push_back. 451 _Self& operator+=(const _Self& __s) { return append(__s); } 452 _Self& operator+=(const _CharT* __s) { _STLP_FIX_LITERAL_BUG(__s) return append(__s); } 453 _Self& operator+=(_CharT __c) { push_back(__c); return *this; } [all...] |
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/ |
_string.h | 347 _Self& operator=(const _Self& __s) { 353 _Self& operator=(const _CharT* __s) { 358 _Self& operator=(_CharT __c) 432 const_reference operator[](size_type __n) const 434 reference operator[](size_type __n) 449 public: // Append, operator+=, push_back. 451 _Self& operator+=(const _Self& __s) { return append(__s); } 452 _Self& operator+=(const _CharT* __s) { _STLP_FIX_LITERAL_BUG(__s) return append(__s); } 453 _Self& operator+=(_CharT __c) { push_back(__c); return *this; } [all...] |
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/ |
_string.h | 347 _Self& operator=(const _Self& __s) { 353 _Self& operator=(const _CharT* __s) { 358 _Self& operator=(_CharT __c) 432 const_reference operator[](size_type __n) const 434 reference operator[](size_type __n) 449 public: // Append, operator+=, push_back. 451 _Self& operator+=(const _Self& __s) { return append(__s); } 452 _Self& operator+=(const _CharT* __s) { _STLP_FIX_LITERAL_BUG(__s) return append(__s); } 453 _Self& operator+=(_CharT __c) { push_back(__c); return *this; } [all...] |