HomeSort by relevance Sort by last modified time
    Searched refs:_kinds (Results 1 - 3 of 3) sorted by null

  /system/media/camera/docs/
metadata_model_test.py 58 section._kinds = [kind_static, kind_dynamic]
92 section._kinds = [kind_static]
metadata_model.py 489 if idx >= len(section._kinds):
491 section._kinds.append(kind)
494 kind = section._kinds[idx]
500 for kind in section._kinds:
683 self._kinds = kinds[:]
694 return (i for i in self._kinds)
703 self._kinds = new_lst
    [all...]
  /external/clang/bindings/python/clang/
cindex.py 483 _kinds = [] variable in class:CursorKind
487 if value >= len(CursorKind._kinds):
488 CursorKind._kinds += [None] * (value - len(CursorKind._kinds) + 1)
489 if CursorKind._kinds[value] is not None:
492 CursorKind._kinds[value] = self
510 if id >= len(CursorKind._kinds) or CursorKind._kinds[id] is None:
512 return CursorKind._kinds[id]
517 return filter(None, CursorKind._kinds)
1403 _kinds = [] variable in class:TypeKind
    [all...]

Completed in 52 milliseconds