Home
last modified time | relevance | path

Searched refs:userList (Results 1 – 4 of 4) sorted by relevance

/external/autotest/frontend/client/src/autotest/afe/
DJobOwnerFilter.java26 private ExtendedListBox userList = new ExtendedListBox(); field in JobOwnerFilter
39 userList.addChangeHandler(this); in JobOwnerFilter()
43 selectUserPanel.add(userList); in JobOwnerFilter()
54 userList.setEnabled(event.getSource() == selectUserRadio); in onValueChange()
73 userList.addItem(user); in populateUserList()
76 userList.selectByName(currentUser); in populateUserList()
82 return new JSONString(userList.getSelectedName()); in getMatchValue()
/external/connectedappssdk/testing/sdk/src/main/java/com/google/android/enterprise/connectedapps/testing/
DInstrumentedTestUtilities.java194 String userList = runCommandWithOutput("pm list users"); in getWorkProfileUserId() local
197 Matcher matcher = USERINFO_PATTERN.matcher(userList); in getWorkProfileUserId()
207 throw new IllegalStateException("No non-system user found: " + userList); in getWorkProfileUserId()
/external/ltp/testcases/network/nfsv4/acl/
Drandom_gen.py187 userList = uList
191 usr = userList.pop(n)
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/exc/
DBasicExceptionTest.java140 public ArrayList<User> userList; field in BasicExceptionTest.Users