Home
last modified time | relevance | path

Searched refs:rhs (Results 1 – 10 of 10) sorted by relevance

/development/vndk/tools/sourcedr/blueprint/tests/
Dtest_ast.py235 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/
Dblueprint.py421 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/
Dir_dumper.cpp57 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/
Dfixed_argv.h111 FixedArgvAccess& operator=(const FixedArgvAccess &rhs) = delete;
/development/samples/browseable/XYZTouristAttractions/Application/src/com.example.android.xyztouristattractions/ui/
DAttractionListFragment.java122 public int compare(Attraction lhs, Attraction rhs) { in loadAttractionsFromLocation()
126 rhs.location, curLatLng); in loadAttractionsFromLocation()
/development/apps/CustomLocale/src/com/android/customlocale2/
DCustomLocaleActivity.java240 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/
DCamera2VideoFragment.java698 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/
DCamera2BasicFragment.java963 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/
DCamera2RawFragment.java1513 public int compare(Size lhs, Size rhs) { in compare() argument
1516 (long) rhs.getWidth() * rhs.getHeight()); in compare()
/development/vndk/tools/definition-tool/
Dvndk_definition_tool.py551 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