Home | History | Annotate | Download | only in test-scripts

Lines Matching refs:kind

12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
75 def _GetContainerName(kind):
80 return kind + "s"
312 def GetObjectInterface(self, kind, path):
315 FlimFlam.SHILL_DBUS_INTERFACE + "." + kind)
317 def FindElementByNameSubstring(self, kind, substring):
319 for path in properties[FlimFlam._GetContainerName(kind)]:
321 return self.GetObjectInterface(kind, path)
324 def FindElementByPropertySubstring(self, kind, prop, substring):
326 for path in properties[FlimFlam._GetContainerName(kind)]:
327 obj = self.GetObjectInterface(kind, path)
342 def GetObjectList(self, kind, properties=None):
345 return [self.GetObjectInterface(kind, path)
346 for path in properties[FlimFlam._GetContainerName(kind)]]