Home
last modified time | relevance | path

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

12

/tools/test/graphicsbenchmark/apps/sample_app/src/cpp/
Dvecmath.h77 Vec2 operator*(const Vec2& rhs) const {
84 Vec2 operator/(const Vec2& rhs) const {
91 Vec2 operator+(const Vec2& rhs) const {
98 Vec2 operator-(const Vec2& rhs) const {
105 Vec2& operator+=(const Vec2& rhs) {
111 Vec2& operator-=(const Vec2& rhs) {
117 Vec2& operator*=(const Vec2& rhs) {
123 Vec2& operator/=(const Vec2& rhs) {
130 friend Vec2 operator-(const Vec2& rhs) { return Vec2(rhs) *= -1; }
132 friend Vec2 operator*(const float lhs, const Vec2& rhs) {
[all …]
/tools/dexter/slicer/export/slicer/
Dintrusive_list.h34 bool operator==(Iterator other) const { return p_ == other.p_; }
35 bool operator!=(Iterator other) const { return p_ != other.p_; }
37 T* operator*() const {
42 Iterator operator++() {
48 Iterator operator++(int) {
50 operator++();
54 Iterator operator--() {
60 Iterator operator--(int) {
62 operator--();
75 IntrusiveList& operator=(const IntrusiveList&) = delete; variable
Ddex_ir.h87 void* operator new(size_t size) { in new()
91 void* operator new[](size_t size) {
95 void operator delete(void* ptr) { in delete()
99 void operator delete[](void* ptr) {
105 Node& operator=(const Node&) = delete; member
420 DexFile& operator=(const DexFile&) = delete; member
Dwriter.h39 Section& operator=(const Section&) = delete; variable
83 Index& operator=(const Index&) = delete; variable
112 T& operator[](int i) {
183 Writer& operator=(const Writer&) = delete; variable
Dscopeguard.h53 ScopeGuard& operator=(const ScopeGuard&) = delete; variable
54 ScopeGuard& operator=(ScopeGuard&&) = delete; variable
62 ScopeGuard<T> operator<<(T closure)
Dcode_ir.h80 Visitor& operator=(const Visitor&) = delete; variable
120 Node& operator=(const Node&) = delete; member
411 CodeIr& operator=(const CodeIr&) = delete; member
Darrayview.h32 ArrayView& operator=(const ArrayView&) = default; variable
41 T& operator[](size_t i) const {
Dbuffer.h44 Buffer& operator=(const Buffer&) = delete; variable
52 Buffer& operator=(Buffer&& b) {
Dchronometer.h45 Chronometer& operator=(const Chronometer&) = delete; variable
Ddex_ir_builder.h53 Builder& operator=(const Builder&) = delete; variable
/tools/test/connectivity/acts/framework/acts/test_utils/tel/
Dtel_lookup_tables.py28 def network_preference_for_generation(generation, operator, phone_type=None): argument
30 return _TelTables.operator_network_tbl[operator][generation][
42 def rat_family_for_generation(generation, operator, phone_type=None): argument
44 return _TelTables.operator_network_tbl[operator][generation][
101 def get_voice_mail_check_number(operator): argument
102 return _TelTables.voice_mail_number_tbl.get(operator)
105 def get_voice_mail_count_check_function(operator): argument
107 operator, check_tmo_voice_mail_count)
110 def get_voice_mail_delete_digit(operator): argument
111 return _TelTables.voice_mail_delete_digit_tbl.get(operator, "7")
[all …]
Dtel_subscription_utils.py333 operator = get_operatorname_from_slot_index(ad, 0)
335 ad.log.info("Current DDS is already on %s", operator)
337 ad.log.info("Setting DDS on %s", operator)
349 operator = get_operatorname_from_slot_index(ad, 1)
351 ad.log.info("Current DDS is already on %s", operator)
353 ad.log.info("Setting DDS on %s", operator)
Dtel_test_utils.py249 operator = ad.adb.getprop("gsm.sim.operator.alpha")
250 if "," in operator:
251 operator = operator.strip()[0]
252 return operator
477 def get_phone_number_by_secret_code(ad, operator): argument
478 if "T-Mobile" in operator:
/tools/test/connectivity/acts_tests/tests/google/tel/live/
DTelLiveDSDSVoiceTest.py1374 operator = get_operatorname_from_slot_index(ads[0], i)
1375 self.log.info("Slot %d - Sub %s - %s", i, sub_id, operator)
1376 if self.dds_operator == operator:
1377 ads[0].log.info("Setting DDS on %s", operator)
1523 operator = get_operatorname_from_slot_index(ads[0], i)
1524 self.log.info("Slot %d - Sub %s - %s", i, sub_id, operator)
1525 if self.dds_operator == operator:
1526 ads[0].log.info("Setting DDS on %s", operator)
1727 operator = get_operatorname_from_slot_index(ad, i)
1728 ad.log.info("Slot %d - Sub %s - %s", i, sub_id, operator)
[all …]
DTelLiveStressTest.py975 operator = get_operatorname_from_slot_index(ad, i)
978 ad.log.info("Slot %d - Sub %s - %s - %d", i, sub_id, operator, carrier_id)
991 operator = get_operatorname_from_slot_index(ad, i)
992 ad.log.info("Slot %d - Sub %s - %s", i, sub_id, operator)
/tools/test/connectivity/acts/tests/google/wifi/
DWifiTetheringTest.py109 operator = get_operator_name(self.log, dut)
110 return operator in carrier_supports_tethering
121 operator = get_operator_name(self.log, dut)
122 self.log.info("Carrier is %s" % operator)
123 return operator in carrier_supports_ipv6
DWifiPasspointTest.py373 operator = get_operator_name(self.log, self.dut)
374 asserts.skip_if(operator not in carriers,
/tools/test/connectivity/acts/framework/acts/test_utils/net/
Dnet_test_utils.py320 operator = get_operator_name("log", dut)
321 return operator in carrier_supports_ipv6
331 operator = get_operator_name(self.log, dut)
332 return operator in carrier_supports_tethering
/tools/apkzlib/src/test/java/com/android/tools/build/apkzlib/sign/
DSignatureTestUtils.java42 import org.bouncycastle.operator.ContentSigner;
43 import org.bouncycastle.operator.jcajce.JcaContentSignerBuilder;
/tools/test/connectivity/acts_tests/tests/google/net/
DBluetoothTetheringTest.py163 operator = nutils.get_operator_name(self.log, self.hotspot_device)
164 self.log.info("Carrier is %s" % operator)
/tools/repohooks/tools/
Dcpplint.py4171 operator = None
4198 operator = token
4216 if not (lhs and operator and rhs):
4244 _CHECK_REPLACEMENT[check_macro][operator],
4245 check_macro, operator))
Dpylintrc60 # operator. Joining a lot of strings can lead to a maximum recursion error in
117 old-ne-operator,
/tools/metalava/
DFORMAT.md256 includes special modifiers, such as sealed, inline, operator, infix, etc:
259 method public static operator int get(android.graphics.Bitmap, int x, int y);
/tools/dexter/dexter/
Ddexter.h35 Dexter& operator=(const Dexter&) = delete; variable
Ddissasembler.h78 DexDissasembler& operator=(const DexDissasembler&) = delete; variable

12