/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/ |
D | document.h | 164 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!=(ConstIterator that) const { return ptr_ != that.ptr_; } [all …]
|
D | encodedstream.h | 54 EncodedInputStream& operator=(const EncodedInputStream&); variable 88 EncodedOutputStream& operator=(const EncodedOutputStream&); variable 134 AutoUTFInputStream& operator=(const AutoUTFInputStream&); variable 238 AutoUTFOutputStream& operator=(const AutoUTFOutputStream&); variable
|
D | stringbuffer.h | 43 GenericStringBuffer& operator=(GenericStringBuffer&& rhs) { 79 GenericStringBuffer& operator=(const GenericStringBuffer&); variable
|
D | reader.h | 220 StreamLocalCopy& operator=(const StreamLocalCopy&) /* = delete */; 234 StreamLocalCopy& operator=(const StreamLocalCopy&) /* = delete */; 451 GenericReader& operator=(const GenericReader&); variable 462 ClearStackOnExit& operator=(const ClearStackOnExit&); member 629 StackStream& operator=(const StackStream&); variable 743 NumberStream& operator=(const NumberStream&);
|
/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/internal/ |
D | biginteger.h | 55 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 {
|
D | stack.h | 62 Stack& operator=(Stack&& rhs) { 183 Stack& operator=(const Stack&); variable
|
D | meta.h | 118 operator const B*() const; 119 operator const D*();
|
D | diyfp.h | 61 DiyFp operator-(const DiyFp& rhs) const { 65 DiyFp operator*(const DiyFp& rhs) const {
|
/packages/apps/Settings/tests/robotests/src/com/android/settings/network/ |
D | MobilePlanPreferenceControllerTest.java | 35 final String operator = "test_operator"; in testNoProvisionStringFormattedCorrectly() local 37 assertThat(context.getString(R.string.mobile_no_provisioning_url, operator, operator)) in testNoProvisionStringFormattedCorrectly() 38 .contains(operator); in testNoProvisionStringFormattedCorrectly()
|
/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/error/ |
D | error.h | 114 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/apps/Stk/src/com/android/stk/ |
D | StkMenuConfig.java | 126 String operator = telephony.getSimOperator(info.getSubscriptionId()); in findConfig() local 127 if (TextUtils.isEmpty(operator) || (operator.length() < 5)) { in findConfig() 132 int mcc = Integer.parseInt(operator.substring(0, 3)); in findConfig() 133 int mnc = Integer.parseInt(operator.substring(3)); in findConfig()
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/util/ |
D | DbQueryUtils.java | 48 private static String getClauseWithOperator(String field, String operator, String value) { in getClauseWithOperator() argument 52 clause.append(" ").append(operator).append(" "); in getClauseWithOperator() 58 private static String getClauseWithOperator(String field, String operator, long value) { in getClauseWithOperator() argument 62 clause.append(" ").append(operator).append(" "); in getClauseWithOperator()
|
/packages/apps/LegacyCamera/jni/feature_stab/src/dbregtest/ |
D | PgmImage.h | 30 friend std::ostream& operator<< (std::ostream& o, const PgmImage& im); 52 PgmImage& operator= (const PgmImage &im); variable 95 std::ostream& operator<< (std::ostream& o, const PgmImage& im);
|
/packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/v4/content/ |
D | language_model_dict_content.h | 69 const WordIdAndProbabilityEntry operator*() const { 75 bool operator!=(const EntryIterator &other) const { 79 const EntryIterator &operator++() { 211 bool operator()(const EntryInfoToTurncate &left,
|
/packages/inputmethods/LatinIME/native/jni/src/dictionary/utils/ |
D | trie_map.h | 107 this->operator++(); in TrieMapIterator() 110 const IterationResult operator*() const { 114 bool operator!=(const TrieMapIterator &other) const { 119 const TrieMapIterator &operator++() {
|
/packages/services/Telephony/src/com/android/phone/ |
D | NotificationMgr.java | 606 private void showNetworkSelection(String operator, int subId) { in showNetworkSelection() argument 607 if (DBG) log("showNetworkSelection(" + operator + ")..."); in showNetworkSelection() 609 if (!TextUtils.isEmpty(operator)) { in showNetworkSelection() 610 operator = String.format(" (%s)", operator); in showNetworkSelection() 616 mContext.getString(R.string.notification_network_selection_text, operator)) in showNetworkSelection()
|
/packages/services/Car/procfs-inspector/server/ |
D | directory.h | 41 operator bool() const { 59 void operator()(DIR* dir) { in operator() function
|
/packages/apps/Dialer/java/com/android/dialer/common/database/ |
D | Selection.java | 150 public Selection is(@NonNull String operator, @NonNull Object value) { in is() argument 151 return fromString(column + " " + Assert.isNotNull(operator) + " ?", value.toString()); in is()
|
/packages/services/Car/evs/app/ |
D | WindowSurface.h | 41 WindowSurface& operator=(const WindowSurface&) = delete; variable
|
/packages/apps/Test/connectivity/sl4n/rapidjson/doc/ |
D | tutorial.md | 162 Note that, when `operator[](const char*)` cannot find the member, it will fail an assertion. 164 If we are unsure whether a member exists, we need to call `HasMember()` before calling `operator[](… 248 …tructor, its type is Null. To change its type, call `SetXXX()` or assignment operator, for example: 329 … is called move assignment operator in C++11. As RapidJSON supports C++03, it adopts move semantic…
|
/packages/services/Car/tools/keventreader/server/ |
D | inputsource.h | 29 explicit operator bool() const;
|
/packages/apps/TV/jni/ |
D | mutex.h | 58 Mutex& operator=(const Mutex&); variable
|
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/result/ |
D | suggested_word.h | 31 bool operator()(const SuggestedWord &left, const SuggestedWord &right) { in operator() function
|
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/dicnode/internal/ |
D | dic_node_state.h | 38 DicNodeState &operator=(const DicNodeState& src) {
|
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/dicnode/ |
D | dic_node_vector.h | 69 DicNode *operator[](const int id) {
|