Home
last modified time | relevance | path

Searched refs:operator (Results 1 – 25 of 146) sorted by relevance

123456

/packages/modules/NeuralNetworks/common/include/nnapi/
DTypeUtils.h89 std::ostream& operator<<(std::ostream& os, const DeviceStatus& deviceStatus);
90 std::ostream& operator<<(std::ostream& os, const ExecutionPreference& executionPreference);
91 std::ostream& operator<<(std::ostream& os, const DeviceType& deviceType);
92 std::ostream& operator<<(std::ostream& os, const MeasureTiming& measureTiming);
93 std::ostream& operator<<(std::ostream& os, const OperandType& operandType);
94 std::ostream& operator<<(std::ostream& os, const Operand::LifeTime& lifetime);
95 std::ostream& operator<<(std::ostream& os, const OperationType& operationType);
96 std::ostream& operator<<(std::ostream& os, const Request::Argument::LifeTime& lifetime);
97 std::ostream& operator<<(std::ostream& os, const Priority& priority);
98 std::ostream& operator<<(std::ostream& os, const ErrorStatus& errorStatus);
[all …]
/packages/modules/StatsD/statsd/src/
DFieldValue.h164 inline bool operator==(const Field& that) const {
168 inline bool operator!=(const Field& that) const {
172 bool operator<(const Field& that) const {
252 inline bool operator!=(const Matcher& that) const {
256 inline bool operator==(const Matcher& that) const {
350 bool operator==(const Value& that) const;
351 bool operator!=(const Value& that) const;
353 bool operator<(const Value& that) const;
354 bool operator>(const Value& that) const;
355 bool operator>=(const Value& that) const;
[all …]
DHashableDimensionKey.h86 bool operator!=(const HashableDimensionKey& that) const;
88 bool operator==(const HashableDimensionKey& that) const;
90 bool operator<(const HashableDimensionKey& that) const;
110 MetricDimensionKey& operator=(const MetricDimensionKey& from) = default; variable
134 bool operator==(const MetricDimensionKey& that) const;
136 bool operator<(const MetricDimensionKey& that) const;
234 std::size_t operator()(const HashableDimensionKey& key) const {
241 std::size_t operator()(const MetricDimensionKey& key) const {
/packages/modules/NeuralNetworks/runtime/test/fuzzing/
DRandomVariable.h48 RandomVariableRange& operator=(const RandomVariableRange&) = default; variable
65 friend RandomVariableRange operator&(const RandomVariableRange& lhs,
118 RandomVariableBase& operator=(const RandomVariableBase&) = delete; member
156 RandomVariable& operator=(const RandomVariable& other) = default; variable
164 bool operator==(std::nullptr_t) const { return mVar == nullptr; }
165 bool operator!=(std::nullptr_t) const { return mVar != nullptr; }
168 friend RandomVariable operator+(const RandomVariable& lhs, const RandomVariable& rhs);
169 friend RandomVariable operator-(const RandomVariable& lhs, const RandomVariable& rhs);
170 friend RandomVariable operator*(const RandomVariable& lhs, const RandomVariable& rhs);
171 friend RandomVariable operator*(const RandomVariable& lhs, const float& rhs);
[all …]
DRandomGraphGeneratorUtils.h78 Logger& operator=(const Logger&) = delete; variable
101 LoggerStream& operator<<(const T& str) {
113 LoggerStream& operator=(const LoggerStream&) = delete; variable
193 inline std::ostream& operator<<(std::ostream& os, const RandomVariableType& type) {
204 inline std::ostream& operator<<(std::ostream& os, const RandomVariableRange& range) {
208 inline std::ostream& operator<<(std::ostream& os, const RandomOperandType& type) {
213 inline std::ostream& operator<<(std::ostream& os, const RandomVariableNode& var) {
234 inline std::ostream& operator<<(std::ostream& os, const RandomVariable& var) {
238 inline std::ostream& operator<<(std::ostream& os, const RandomOperand& op) {
252 inline operator bool() const { return mValue != 0; }
/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
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!=(ConstIterator that) const { return ptr_ != that.ptr_; }
[all …]
/packages/modules/NeuralNetworks/common/random/
Drandom_distributions.h87 ResultType operator()(Generator* gen) { in operator() function
111 ResultType operator()(Generator* gen) { in operator() function
135 ResultType operator()(Generator* gen) { in operator() function
159 ResultType operator()(Generator* gen) { in operator() function
187 ResultType operator()(Generator* gen) { in operator() function
222 ResultType operator()(Generator* gen) { in operator() function
257 ResultType operator()() { in operator() function
339 ResultType operator()(Generator* gen) { in operator() function
366 ResultType operator()(Generator* gen) { in operator() function
395 ResultType operator()(Generator* gen) { in operator() function
[all …]
/packages/modules/adb/
Dtypes.h50 Block& operator=(const Block& copy) = delete; member
51 Block& operator=(Block&& move) noexcept {
96 char& operator[](size_t idx) { return data()[idx]; }
97 const char& operator[](size_t idx) const { return data()[idx]; }
99 bool operator==(const Block& rhs) const {
150 IOVector& operator=(const IOVector& copy) = delete; member
151 IOVector& operator=(IOVector&& move) noexcept; member
290 weak_ptr& operator=(const weak_ptr& copy) {
299 weak_ptr& operator=(weak_ptr&& move) {
Dtransfer_id.h35 TransferId& operator=(const TransferId& copy) = default; member
36 TransferId& operator=(TransferId&& move) = default; member
42 bool operator==(const TransferId& rhs) const {
46 constexpr explicit operator uint64_t() const { in uint64_t()
71 size_t operator()(TransferId id) const { return hash<uint64_t>()(static_cast<uint64_t>(id)); }
/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/internal/
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 {
/packages/apps/Car/libs/car-telephony-common/src/com/android/car/telephony/common/
DQueryParam.java197 public static Condition is(String columnName, String operator, @NonNull Object value) { in is() argument
199 condition.mSelection = condition.toSelectionString(columnName, operator); in is()
207 public Condition and(String columnName, String operator, @NonNull Object value) { in and() argument
208 mSelection += wrapWithSpaces(AND) + toSelectionString(columnName, operator); in and()
216 public Condition or(String columnName, String operator, @NonNull Object value) { in or() argument
217 mSelection += wrapWithSpaces(OR) + toSelectionString(columnName, operator); in or()
/packages/modules/NeuralNetworks/runtime/include/
DNeuralNetworksWrapper.h116 SymmPerChannelQuantParams& operator=(const SymmPerChannelQuantParams& other) {
138 OperandType& operator=(const OperandType& other) {
219 Memory& operator=(const Memory&) = delete; variable
225 Memory& operator=(Memory&& other) {
269 Model& operator=(const Model&) = delete; variable
275 Model& operator=(Model&& other) {
398 Event& operator=(const Event&) = delete; variable
404 Event& operator=(Event&& other) {
484 Compilation& operator=(const Compilation&) = delete; variable
490 Compilation& operator=(Compilation&& other) {
[all …]
/packages/modules/NeuralNetworks/driver/cache/BlobCache/
DBlobCache.h163 void operator=(const BlobCache&); variable
210 bool operator<(const Blob& rhs) const;
218 void operator=(const Blob&); variable
239 bool operator<(const CacheEntry& rhs) const;
240 const CacheEntry& operator=(const CacheEntry&); variable
/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/error/
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/services/Car/cpp/watchdog/server/src/
DProcDiskStats.h63 DiskStats& operator-=(const DiskStats& rhs);
64 DiskStats& operator+=(const DiskStats& rhs);
66 size_t operator()(const DiskStats& stats) const;
69 bool operator()(const DiskStats& lhs, const DiskStats& rhs) const;
DUidIoStats.h61 IoUsage& operator-=(const IoUsage& rhs);
62 bool operator==(const IoUsage& usage) const {
87 UidIoUsage& operator-=(const UidIoUsage& rhs) {
91 bool operator==(const UidIoUsage& rhs) const { return uid == rhs.uid && ios == rhs.ios; }
/packages/apps/Stk/src/com/android/stk/
DStkMenuConfig.java127 String operator = telephony.getSimOperator(info.getSubscriptionId()); in findConfig() local
128 if (TextUtils.isEmpty(operator) || (operator.length() < 5)) { in findConfig()
133 int mcc = Integer.parseInt(operator.substring(0, 3)); in findConfig()
134 int mnc = Integer.parseInt(operator.substring(3)); in findConfig()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/util/
DDbQueryUtils.java48 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/modules/DnsResolver/tests/
Dtun_forwarder.h59 bool operator==(const v4pair& o) const;
60 bool operator<(const v4pair& o) const;
69 bool operator==(const v6pair& o) const;
70 bool operator<(const v6pair& o) const;
/packages/services/Car/cpp/telemetry/cartelemetryd/src/
DBufferedCarData.h33 BufferedCarData& operator=(BufferedCarData&& other) = default; member
34 BufferedCarData& operator=(const BufferedCarData&) = default; member
36 inline bool operator==(const BufferedCarData& rhs) const {
/packages/modules/NeuralNetworks/runtime/test/
DTestNeuralNetworksWrapper.h76 Memory& operator=(const Memory&) = delete; variable
82 Memory& operator=(Memory&& other) {
113 Model& operator=(const Model&) = delete; variable
119 Model& operator=(Model&& other) {
280 Compilation& operator=(const Compilation&) = delete; variable
286 Compilation& operator=(Compilation&& other) {
379 Execution& operator=(const Execution&) = delete; variable
385 Execution& operator=(Execution&& other) {
/packages/modules/NeuralNetworks/tools/test_generator/test_harness/include/
DTestHarness.h48 inline operator bool() const { return mValue != 0; }
254 bool operator==(std::nullptr_t) const { return mBuffer == nullptr; }
255 bool operator!=(std::nullptr_t) const { return mBuffer != nullptr; }
460 TestModelManager& operator=(const TestModelManager&) = delete; variable
511 std::ostream& operator<<(std::ostream& os, const TestOperandType& type);
512 std::ostream& operator<<(std::ostream& os, const TestOperationType& type);
/packages/apps/Settings/tests/unit/src/com/android/settings/network/
DMobilePlanPreferenceControllerTest.java44 final String operator = "test_operator"; in testNoProvisionStringFormattedCorrectly() local
47 ResourcesUtils.getResourcesString(mContext, "mobile_no_provisioning_url", operator)) in testNoProvisionStringFormattedCorrectly()
48 .contains(operator); in testNoProvisionStringFormattedCorrectly()
/packages/modules/StatsD/statsd/src/config/
DConfigKey.h47 inline bool operator<(const ConfigKey& that) const {
57 inline bool operator==(const ConfigKey& that) const {
84 std::size_t operator()(const ConfigKey& key) const {
/packages/modules/DnsResolver/
DDnsTlsServer.h60 bool operator<(const DnsTlsServer& other) const;
61 bool operator==(const DnsTlsServer& other) const;
97 bool operator()(const DnsTlsServer& x, const DnsTlsServer& y) const;

123456