Searched refs:rhs (Results 1 – 10 of 10) sorted by relevance
/development/vndk/tools/sourcedr/blueprint/tests/ |
D | test_ast.py | 235 rhs = List([String('c'), String('d')]) 236 expr = Concat(lhs, rhs) 239 self.assertIs(expr.rhs, rhs) 253 rhs = String('b') 254 expr = Concat(lhs, rhs) 257 self.assertIs(expr.rhs, rhs)
|
/development/vndk/tools/sourcedr/blueprint/ |
D | blueprint.py | 421 def __eq__(self, rhs): argument 423 return self.value == rhs.value 464 def __eq__(self, rhs): argument 466 return self.value == rhs.value 529 def __init__(self, lhs, rhs): argument 532 self.rhs = rhs 536 return '(' + repr(self.lhs) + ' + ' + repr(self.rhs) + ')' 542 rhs = self.rhs.eval(env) 543 if isinstance(lhs, List) and isinstance(rhs, List): 544 return List(itertools.chain(lhs, rhs)) [all …]
|
/development/vndk/tools/header-checker/src/repr/ |
D | ir_dumper.cpp | 57 auto &&compare = [](const T *lhs, const T *rhs) { in SortAbiElements() argument 58 return lhs->GetLinkerSetKey() < rhs->GetLinkerSetKey(); in SortAbiElements()
|
/development/vndk/tools/header-checker/src/dumper/ |
D | fixed_argv.h | 111 FixedArgvAccess& operator=(const FixedArgvAccess &rhs) = delete;
|
/development/samples/browseable/XYZTouristAttractions/Application/src/com.example.android.xyztouristattractions/ui/ |
D | AttractionListFragment.java | 122 public int compare(Attraction lhs, Attraction rhs) { in loadAttractionsFromLocation() 126 rhs.location, curLatLng); in loadAttractionsFromLocation()
|
/development/apps/CustomLocale/src/com/android/customlocale2/ |
D | CustomLocaleActivity.java | 240 public int compare(LocaleInfo lhs, LocaleInfo rhs) { in setupLocaleList() 241 return lhs.getLocale().compareTo(rhs.getLocale()); in setupLocaleList()
|
/development/samples/browseable/Camera2Video/src/com.example.android.camera2video/ |
D | Camera2VideoFragment.java | 698 public int compare(Size lhs, Size rhs) { in compare() argument 701 (long) rhs.getWidth() * rhs.getHeight()); in compare()
|
/development/samples/browseable/Camera2Basic/src/com.example.android.camera2basic/ |
D | Camera2BasicFragment.java | 963 public int compare(Size lhs, Size rhs) { in compare() argument 966 (long) rhs.getWidth() * rhs.getHeight()); in compare()
|
/development/samples/browseable/Camera2Raw/src/com.example.android.camera2raw/ |
D | Camera2RawFragment.java | 1513 public int compare(Size lhs, Size rhs) { in compare() argument 1516 (long) rhs.getWidth() * rhs.getHeight()); in compare()
|
/development/vndk/tools/definition-tool/ |
D | vndk_definition_tool.py | 551 def __eq__(self, rhs): argument 552 return all(getattr(self, a) == getattr(rhs, a) for a in self.__slots__) 2105 def __lt__(self, rhs): argument 2106 return self.path < rhs.path
|