HomeSort by relevance Sort by last modified time
    Searched defs:User (Results 1 - 25 of 94) sorted by null

1 2 3 4

  /art/test/048-reflect-v8/src/
User.java 29 public class User {
  /external/llvm/include/llvm/IR/
User.h 1 //===-- llvm/User.h - User class definition ---------------------*- C++ -*-===//
11 // Each instance of the Value class keeps track of what User's have handles
31 /// \brief Compile-time customization of User operands.
37 class User : public Value {
38 User(const User &) = delete;
47 /// Allocate a User with an operand pointer co-allocated.
53 /// Allocate a User with the operands co-allocated.
58 /// Allocate a User with the operands co-allocated. If DescBytes is non-zer
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/s3/
deletemarker.py 22 from boto.s3.user import User
35 self.owner = User(self)
user.py 22 class User(object):
acl.py 22 from boto.s3.user import User
58 self.owner = User(self)
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/gs/
user.py 23 class User(object):
cors.py 23 from boto.gs.user import User
acl.py 22 from boto.gs.user import User
101 self.owner = User(self)
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/
resultset.py 22 from boto.s3.user import User
74 self.owner = User()
  /frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/vo/
User.java 7 public class User extends BaseObservable {
9 private User friend;
15 public User getFriend() {
19 public void setFriend(User friend) {
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/
user.py 27 """Factory function for creating User objects."""
29 if isinstance(name, User):
33 return User(qpol_policy, name)
36 return User(qpol_policy, qpol.qpol_user_t(qpol_policy, str(name)))
38 raise exception.InvalidUser("{0} is not a valid user".format(name))
41 class User(symbol.PolicySymbol):
43 """A user."""
47 """The user's set of roles."""
57 # will confuse, especially for role set equality user queries.
65 """The user's default MLS level.""
    [all...]
  /external/autotest/frontend/
apache_auth.py 1 from django.contrib.auth.models import User, Group, check_password
16 doing the real authentication. Also ensures logged-in user exists in
17 frontend.afe.models.User database.
21 user = User.objects.get(username=username)
22 except User.DoesNotExist:
24 user = User(username=username,
26 user.is_staff = True
27 user.save() # need to save before adding group
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/sts/
credentials.py 146 :ivar federated_user_arn: ARN specifying federated user using credentials.
147 :ivar federated_user_id: The ID of the federated user using credentials.
182 :ivar user: The assumed role user.
185 def __init__(self, connection=None, credentials=None, user=None):
188 self.user = user
195 self.user = User()
196 return self.user
    [all...]
  /external/chromium-trace/catapult/third_party/webapp2/tests/
extras_appengine_auth_models_test.py 13 class User(model.Model):
23 self.register_model('User', models.User)
28 m = models.User
29 success, user = m.create_user(auth_id='auth_id_1', password_raw='foo')
31 self.assertTrue(user is not None)
32 self.assertTrue(user.password is not None)
34 # user.key.id() is required to retrieve the auth token
35 user_id = user.key.id()
39 self.assertEqual(m.get_by_auth_id('auth_id_1'), user)
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/server/
Authentication.java 39 /** A successful Authentication with User information.
41 public interface User extends Authentication
96 * order to redirect the user to the original URL.
  /external/llvm/include/llvm/Analysis/
ObjCARCInstKind.h 29 /// of a User or CallOrUser).
53 User, ///< could "use" a pointer
59 /// \brief Test if the given class is a kind of user.
110 return isa<InvokeInst>(V) ? ARCInstKind::CallOrUser : ARCInstKind::User;
  /frameworks/data-binding/samples/BindingDemo/app/src/main/java/com/android/example/bindingdemo/vo/
User.java 11 public class User extends BaseObservable {
25 public User(String name, String lastName, int photoResource, int group) {
  /external/chromium-trace/catapult/third_party/webapp2/webapp2_extras/appengine/auth/
models.py 29 For example, suppose we have a model `User` with three properties that
32 class User(model.Model):
37 To ensure property uniqueness when creating a new `User`, we first create
39 save the new `User` record::
45 'User.username.%s' % username,
46 'User.auth_id.%s' % auth_id,
47 'User.email.%s' % email,
54 # The unique values were created, so we can save the user.
55 user = User(username=username, auth_id=auth_id, email=email
133 user = model.StringProperty(required=True, indexed=False) variable in class:UserToken
    [all...]
  /external/clang/include/clang/Analysis/Analyses/
UninitializedValues.h 39 const Expr *User;
55 UninitUse(const Expr *User, bool AlwaysUninit)
56 : User(User), UninitAfterCall(false), UninitAfterDecl(false),
67 const Expr *getUser() const { return User; }
  /external/llvm/lib/Analysis/
IVUsers.cpp 122 // Add this IV user to the Processed set before returning false to ensure that
152 // call this a user.
158 Instruction *User = cast<Instruction>(U.getUser());
159 if (!UniqueUsers.insert(User).second)
163 if (isa<PHINode>(User) && Processed.count(User))
168 BasicBlock *UseBB = User->getParent();
170 if (PHINode *PHI = dyn_cast<PHINode>(User)) {
182 // If User is already in Processed, we don't want to recurse into it again,
185 if (LI->getLoopFor(User->getParent()) != L)
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGSDNodes.cpp 110 static void CheckForPhysRegDependency(SDNode *Def, SDNode *User, unsigned Op,
114 if (Op != 2 || User->getOpcode() != ISD::CopyToReg)
117 unsigned Reg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
121 unsigned ResNo = User->getOperand(2).getResNo();
222 SDNode *User = *I;
223 if (User == Node || !Visited.insert(User).second)
226 if (!TII->areLoadsFromSameBasePtr(Base, User, Offset1, Offset2) ||
233 O2SMap.insert(std::make_pair(Offset2, User));
236 Base = User;
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64PromoteConstant.cpp 332 Instruction *User = cast<Instruction>(Use.getUser());
334 // If this user is a phi, the insertion point is in the related
336 if (PHINode *PhiInst = dyn_cast<PHINode>(User))
339 return User;
422 Instruction *User = dyn_cast<Instruction>(Use.getUser());
424 // If the user is not an Instruction, we cannot modify it.
425 if (!User)
429 if (!shouldConvertUse(Val, User, Use.getOperandNo()))
433 DEBUG(User->print(dbgs()));
  /external/llvm/lib/Transforms/Utils/
LCSSA.cpp 79 Instruction *User = cast<Instruction>(U.getUser());
80 BasicBlock *UserBB = User->getParent();
81 if (PHINode *PN = dyn_cast<PHINode>(User))
161 Instruction *User = cast<Instruction>(UseToRewrite->getUser());
162 BasicBlock *UserBB = User->getParent();
163 if (PHINode *PN = dyn_cast<PHINode>(User))
  /external/clang/include/clang/Basic/
VirtualFileSystem.h 36 uint32_t User;
49 llvm::sys::TimeValue MTime, uint32_t User, uint32_t Group,
67 uint32_t getUser() const { return User; }
  /external/clang/test/CXX/temp/temp.decls/temp.friend/
p1.cpp 93 template <class T> class User;
97 friend class User<bool>;
103 template <class T> class User {
118 template class User<bool>;
119 template class User<int>; // expected-note {{requested here}}

Completed in 1420 milliseconds

1 2 3 4