Searched defs:operator (Results 1 - 25 of 29) sorted by relevance

12

/packages/inputmethods/LatinIME/native/jni/src/suggest/core/dicnode/
H A Ddic_node.cpp31 DicNode &DicNode::operator=(const DicNode &dicNode) {
H A Ddic_node_vector.h69 DicNode *operator[](const int id) {
H A Ddic_node_priority_queue.h108 bool operator ()(const DicNode *left, const DicNode *right) const {
/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/internal/
H A Dbiginteger.h55 BigInteger& operator=(const BigInteger &rhs)
64 BigInteger& operator=(uint64_t u) {
70 BigInteger& operator+=(uint64_t u) {
87 BigInteger& operator*=(uint64_t u) {
105 BigInteger& operator*=(uint32_t u) {
128 BigInteger& operator<<=(size_t shift) {
154 bool operator==(const BigInteger& rhs) const {
158 bool operator==(const Type rhs) const {
H A Ddiyfp.h61 DiyFp operator-(const DiyFp& rhs) const {
65 DiyFp operator*(const DiyFp& rhs) const {
H A Dstack.h62 Stack& operator=(Stack&& rhs) {
181 // Prohibit copy constructor & assignment operator.
183 Stack& operator=(const Stack&);
/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
H A Ddocument.h164 Iterator& operator++(){ ++ptr_; return *this; }
165 Iterator& operator--(){ --ptr_; return *this; }
166 Iterator operator++(int){ Iterator old(*this); ++ptr_; return old; }
167 Iterator operator--(int){ Iterator old(*this); --ptr_; return old; }
172 Iterator operator+(DifferenceType n) const { return Iterator(ptr_+n); }
173 Iterator operator-(DifferenceType n) const { return Iterator(ptr_-n); }
175 Iterator& operator+=(DifferenceType n) { ptr_+=n; return *this; }
176 Iterator& operator-=(DifferenceType n) { ptr_-=n; return *this; }
181 bool operator==(ConstIterator that) const { return ptr_ == that.ptr_; }
182 bool operator!
[all...]
H A Dstringbuffer.h43 GenericStringBuffer& operator=(GenericStringBuffer&& rhs) {
77 // Prohibit copy constructor & assignment operator.
79 GenericStringBuffer& operator=(const GenericStringBuffer&);
H A Dpointer.h169 //! Assignment operator.
170 GenericPointer& operator=(const GenericPointer& rhs) {
316 //! Equality operator.
320 bool operator==(const GenericPointer& rhs) const {
336 //! Inequality operator.
340 bool operator!=(const GenericPointer& rhs) const { return !(*this == rhs); }
/packages/inputmethods/LatinIME/native/jni/src/utils/
H A Dint_array_view.h71 AK_FORCE_INLINE int operator[](const size_t index) const {
H A Dprofiler.h54 operator bool() const { return false; }
/packages/apps/LegacyCamera/jni/feature_stab/src/dbregtest/
H A DPgmImage.cpp57 PgmImage& PgmImage::operator= (const PgmImage &im)
241 std::ostream& operator<< (std::ostream& o, const PgmImage& im)
/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/error/
H A Derror.h114 operator bool() const { return !IsError(); }
118 bool operator==(const ParseResult& that) const { return code_ == that.code_; }
119 bool operator==(ParseErrorCode code) const { return code_ == code; }
120 friend bool operator==(ParseErrorCode code, const ParseResult & err) { return code == err.code_; }
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/dicnode/internal/
H A Ddic_node_state.h38 DicNodeState &operator=(const DicNodeState& src) {
/packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/v4/content/
H A Dlanguage_model_dict_content.h69 const WordIdAndProbabilityEntry operator*() const {
75 bool operator!=(const EntryIterator &other) const {
79 const EntryIterator &operator++() {
211 bool operator()(const EntryInfoToTurncate &left,
/packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
H A Dunittest.h98 unsigned operator()() {
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/result/
H A Dsuggested_word.h31 bool operator()(const SuggestedWord &left, const SuggestedWord &right) {
/packages/providers/ContactsProvider/src/com/android/providers/contacts/util/
H A DDbQueryUtils.java48 private static String getClauseWithOperator(String field, String operator, String value) { argument
52 clause.append(" ").append(operator).append(" ");
58 private static String getClauseWithOperator(String field, String operator, long value) { argument
62 clause.append(" ").append(operator).append(" ");
/packages/inputmethods/LatinIME/native/jni/src/dictionary/utils/
H A Dtrie_map.h107 this->operator++();
110 const IterationResult operator*() const {
114 bool operator!=(const TrieMapIterator &other) const {
119 const TrieMapIterator &operator++() {
/packages/apps/Test/connectivity/sl4n/rapidjson/example/serialize/
H A Dserialize.cpp70 Dependent& operator=(const Dependent& rhs) {
/packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/backward/v402/
H A Dver4_patricia_trie_writing_helper.h111 bool operator()(const DictProbability &left, const DictProbability &right) {
/packages/apps/Camera2/jni/
H A Dtinyplanet.cc44 unsigned char* operator()(int x, int y) {
47 const unsigned char* operator()(int x, int y) const {
H A Djpegutil.cpp120 bool jpegutil::Transform::operator==(const Transform& other) const {
/packages/apps/Gallery2/jni/filters/
H A Dtinyplanet.cc43 unsigned char* operator()(int x, int y) {
46 const unsigned char* operator()(int x, int y) const {
/packages/services/Telephony/src/com/android/phone/
H A DNotificationMgr.java569 * @param operator is the numeric operator number
571 private void showNetworkSelection(String operator) { argument
572 if (DBG) log("showNetworkSelection(" + operator + ")...");
578 mContext.getString(R.string.notification_network_selection_text, operator))
619 * Update notification about no service of user selected operator
628 // empty is auto mode, otherwise it is the operator alpha name
629 // in case there is no operator name, check the operator numeric

Completed in 515 milliseconds

12