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

1 2 3

  /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
29 /// for use of the User class
33 class User : public Value {
34 User(const User &) LLVM_DELETED_FUNCTION;
40 /// OperandList - This is a pointer to the array of Uses for this User.
47 /// NumOperands - The number of values used by this User.
52 User(Type *ty, unsigned vty, Use *OpList, unsigned NumOps
    [all...]
  /external/llvm/tools/opt/
AnalysisWrappers.cpp 42 Instruction *User = dyn_cast<Instruction>(*UI);
43 if (!User) continue;
45 CallSite CS(cast<Value>(User));
56 errs() << *User;
  /external/chromium/chrome/common/
launchd_mac.h 23 User = 1, // ~/Library/Launch*
  /external/chromium_org/chrome/common/mac/
launchd.h 23 User = 1, // ~/Library/Launch*
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
user_unittest.py 32 from webkitpy.common.system.user import User
36 example_user_response = "example user response"
45 self.assertEqual(User.prompt("input", repeat=self.repeatsRemaining, raw_input=mock_raw_input), UserTest.example_user_response)
52 self.assertEqual(User.prompt("input", repeat=self.repeatsRemaining, raw_input=mock_raw_input), None)
61 User.prompt_with_multiple_lists,
91 User.prompt_with_list,
110 (("Continue? [Y/n]: ", True), (User.DEFAULT_YES, 'y')),
111 (("Continue? [Y/n]: ", False), (User.DEFAULT_YES, 'n')),
112 (("Continue? [Y/n]: ", True), (User.DEFAULT_YES, ''))
    [all...]
user.py 54 class User(object):
60 # User is part of SystemHost itself.
63 # FIXME: These are @classmethods because bugzilla.py doesn't have a Tool object (thus no User instance).
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/steps/
commit.py 35 from webkitpy.common.system.user import User
67 if not self._tool.user.confirm("Are you sure you want to continue?", default="n"):
94 if self._tool.user.confirm(self._commit_warning(e)):
102 username = self._tool.user.prompt("%s login: " % e.server_host, repeat=5)
106 password = self._tool.user.prompt_password("%s password for %s: " % (e.server_host, username), repeat=5)
  /external/chromium/chrome/browser/chromeos/login/
user_manager.h 36 // A class representing information about a previously logged in user.
37 class User {
39 User();
40 ~User();
42 // The email the user used to log in.
46 // Returns the name to display for this user.
49 // Tooltip contains user's display name and his email domain to distinguish
50 // this user from the other one with the same display name.
53 // The image for this user.
66 // Registers user manager preferences
    [all...]
user_manager.cc 49 // Incognito user is represented by an empty string (since some code already
62 DVLOG(1) << "Saving path to user image in Local State.";
92 // Deletes user's image file. Runs on FILE thread.
96 LOG(ERROR) << "Failed to remove user image.";
101 // Updates current user ownership on UI thread.
116 // Checks current user's ownership on file thread.
120 VLOG(1) << "Current user " << (is_owner ? "is owner" : "is not owner");
134 // Creates new remove attempt for the given user. Note, |delegate| can
200 UserManager::User::User() {
258 User user; local
513 User user; local
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/net/
credentials.py 39 from webkitpy.common.system.user import User
134 if not User().confirm("Store password in system keyring?", User.DEFAULT_NO):
141 def read_credentials(self, user=User):
151 username = user.prompt("%s login: " % self.host)
160 password = user.prompt_password("%s password for %s: " % (self.host, username))
  /external/clang/include/clang/Analysis/Analyses/
UninitializedValues.h 39 const Expr *User;
49 UninitUse(const Expr *User, bool AlwaysUninit) :
50 User(User), AlwaysUninit(AlwaysUninit) {}
57 const Expr *getUser() const { return User; }
  /external/chromium_org/chrome/browser/chromeos/login/
user.cc 5 #include "chrome/browser/chromeos/login/user.h"
30 class RegularUser : public User {
35 // Overridden from User:
43 class GuestUser : public User {
48 // Overridden from User:
55 class KioskAppUser : public User {
60 // Overridden from User:
67 class LocallyManagedUser : public User {
72 // Overridden from User:
81 class RetailModeUser : public User {
    [all...]
user.h 21 // User context data that is being exchanged between part of ChromeOS
24 // back once user homedir is mounted. |username_hash| is used to identify
25 // user homedir mount point.
43 // A class representing information about a previously logged in user.
44 // Each user has a canonical email (username), returned by |email()| and
45 // may have a different displayed email (in the raw form as entered by user),
49 class User {
51 // The user type. Used in a histogram; do not modify existing types.
53 // Regular user, has a user name and password
    [all...]
  /external/llvm/lib/Analysis/
IVUsers.cpp 116 // Add this IV user to the Processed set before returning false to ensure that
141 // call this a user.
148 Instruction *User = cast<Instruction>(*UI);
149 if (!UniqueUsers.insert(User))
153 if (isa<PHINode>(User) && Processed.count(User))
158 BasicBlock *UseBB = User->getParent();
160 if (PHINode *PHI = dyn_cast<PHINode>(User)) {
172 // If User is already in Processed, we don't want to recurse into it again,
175 if (LI->getLoopFor(User->getParent()) != L)
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
InstrEmitter.cpp 111 SDNode *User = *UI;
113 if (User->getOpcode() == ISD::CopyToReg &&
114 User->getOperand(2).getNode() == Node &&
115 User->getOperand(2).getResNo() == ResNo) {
116 unsigned DestReg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
123 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) {
124 SDValue Op = User->getOperand(i);
131 if (User->isMachineOpcode()) {
132 const MCInstrDesc &II = TII->get(User->getMachineOpcode());
195 SDNode *User = *Node->use_begin()
    [all...]
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();
224 SDNode *User = *I;
225 if (User == Node || !Visited.insert(User))
228 if (!TII->areLoadsFromSameBasePtr(Base, User, Offset1, Offset2) ||
235 O2SMap.insert(std::make_pair(Offset2, User));
238 Base = User;
    [all...]
LegalizeTypes.cpp 353 SDNode *User = *UI;
354 int NodeId = User->getNodeId();
359 User->setNodeId(NodeId-1);
363 Worklist.push_back(User);
377 User->setNodeId(User->getNumOperands() - 1);
380 if (User->getNumOperands() == 1)
381 Worklist.push_back(User);
    [all...]
  /external/llvm/lib/Transforms/Utils/
LCSSA.cpp 196 User *U = *UI;
266 Instruction *User = cast<Instruction>(UsesToRewrite[i]->getUser());
267 BasicBlock *UserBB = User->getParent();
268 if (PHINode *PN = dyn_cast<PHINode>(User))
SimplifyIndVar.cpp 275 Instruction *User = cast<Instruction>(*UI);
281 if (User != Def && Simplified.insert(User))
282 SimpleIVUsers.push_back(std::make_pair(User, Def));
LowerInvoke.cpp 341 Instruction *User = cast<Instruction>(*UI);
342 if (User->getParent() != BB || isa<PHINode>(User))
343 Users.push_back(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}}
  /external/llvm/lib/IR/
Value.cpp 10 // This file implements the Value, ValueHandle, and User classes.
128 const Instruction *User = dyn_cast<Instruction>(*UI);
129 if (User && User->getParent() == BB)
431 for (User::const_op_iterator I = GEP->op_begin()+1,
  /external/llvm/lib/CodeGen/
SjLjEHPrepare.cpp 312 Instruction *User = cast<Instruction>(*UI);
313 if (User->getParent() != BB || isa<PHINode>(User))
314 Users.push_back(User);
  /external/llvm/lib/Transforms/IPO/
ArgumentPromotion.cpp 350 for (User::op_iterator II = GEP->idx_begin(), IE = GEP->idx_end();
375 User *U = *UI;
396 for (User::op_iterator i = GEP->idx_begin(), e = GEP->idx_end();
552 Instruction *User = cast<Instruction>(*UI);
553 assert(isa<LoadInst>(User) || isa<GetElementPtrInst>(User));
555 Indices.reserve(User->getNumOperands() - 1);
559 for (User::op_iterator II = User->op_begin() + 1, IE = User->op_end()
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LICM.cpp 459 Instruction *User = cast<Instruction>(*UI);
460 if (PHINode *PN = dyn_cast<PHINode>(User)) {
466 } else if (CurLoop->contains(User)) {
    [all...]

Completed in 3353 milliseconds

1 2 3