Searched defs:User (Results 1 - 25 of 58) sorted by relevance

123

/external/llvm/tools/opt/
H A DAnalysisWrappers.cpp42 Instruction *User = dyn_cast<Instruction>(*UI); local
43 if (!User) continue;
45 CallSite CS(cast<Value>(User));
56 errs() << *User;
/external/llvm/include/llvm/
H A DUser.h1 //===-- 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 { class in namespace:llvm
34 User(const User &); // Do not implement
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(Typ function in class:llvm::User
[all...]
H A DOperandTraits.h11 // layout of various User subclasses. It also provides the means for accessing
18 #include "llvm/User.h"
27 /// when it is a prefix to the User object, and the number of Use objects is
38 static unsigned operands(const User*) { argument
52 static unsigned operands(const User *U) {
62 /// when it is a prefix to the User object, and the number of Use objects is
68 return reinterpret_cast<Use*>(U) - static_cast<User*>(U)->getNumOperands();
73 static unsigned operands(const User *U) {
83 /// when it is not a prefix to the User object, but allocated at an unrelated
85 /// Assumes that the User subclas
[all...]
/external/chromium/chrome/common/
H A Dlaunchd_mac.h23 User = 1, // ~/Library/Launch* enumerator in enum:Launchd::Domain
/external/webkit/Tools/Scripts/webkitpy/common/system/
H A Duser_unittest.py32 from webkitpy.common.system.user import User namespace
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_list,
80 (("Continue? [Y/n]: ", True), (User.DEFAULT_YES, 'y')),
81 (("Continue? [Y/n]: ", False), (User.DEFAULT_YES, 'n')),
82 (("Continue? [Y/n]: ", True), (User.DEFAULT_YES, '')),
83 (("Continue? [Y/n]: ", False), (User.DEFAULT_YES, 'q')),
84 (("Continue? [y/N]: ", True), (User.DEFAULT_NO, 'y')),
85 (("Continue? [y/N]: ", False), (User
[all...]
H A Duser.py55 class User(object): class in inherits:object
59 # FIXME: These are @classmethods because bugzilla.py doesn't have a Tool object (thus no User instance).
/external/webkit/Tools/Scripts/webkitpy/tool/steps/
H A Dcommit.py33 from webkitpy.common.system.user import User namespace
/external/chromium/chrome/browser/chromeos/login/
H A Duser_manager.h37 class User { class in class:chromeos::UserManager
39 User();
40 ~User();
71 virtual std::vector<User> GetUsers() const;
94 virtual const User& logged_in_user() const;
162 User logged_in_user_;
183 typedef std::vector<UserManager::User> UserVector;
H A Duser_manager.cc200 UserManager::User::User() { function in class:chromeos::UserManager::User
205 UserManager::User::~User() {}
207 std::string UserManager::User::GetDisplayName() const {
215 std::string UserManager::User::GetNameTooltip() const {
243 std::vector<UserManager::User> UserManager::GetUsers() const {
244 std::vector<User> users;
258 User user;
292 logged_in_user_ = User();
[all...]
/external/webkit/Tools/Scripts/webkitpy/common/net/
H A Dcredentials.py38 from webkitpy.common.system.user import User namespace
132 if not User().confirm("Store password in system keyring?", User.DEFAULT_NO):
149 username = User.prompt("%s login: " % self.host)
151 password = User.prompt_password("%s password for %s: " % (self.host, username))
/external/webkit/Tools/Scripts/webkitpy/tool/commands/
H A Drebaseline.py36 from webkitpy.common.system.user import User namespace
H A Dqueries.py39 from webkitpy.common.system.user import User namespace
H A Dupload.py42 from webkitpy.common.system.user import User namespace
481 bug_title = User.prompt("Bug title: ")
/external/clang/include/clang/Analysis/Analyses/
H A DUninitializedValues.h38 const Expr *User; member in class:clang::UninitUse
48 UninitUse(const Expr *User, bool AlwaysUninit) : argument
49 User(User), AlwaysUninit(AlwaysUninit) {}
56 const Expr *getUser() const { return User; }
/external/llvm/lib/Analysis/
H A DScalarEvolutionNormalization.cpp21 /// IVUseShouldUsePostIncValue - We have discovered a "User" of an IV expression
29 static bool IVUseShouldUsePostIncValue(Instruction *User, Value *Operand, argument
32 if (L->contains(User)) return false;
40 if (DT->dominates(LatchBlock, User->getParent()))
47 PHINode *PN = dyn_cast<PHINode>(User);
80 const SCEV *TransformSubExpr(const SCEV *S, Instruction *User,
84 const SCEV *TransformImpl(const SCEV *S, Instruction *User,
92 TransformImpl(const SCEV *S, Instruction *User, Value *OperandValToReplace) { argument
96 const SCEV *N = TransformSubExpr(O, User, OperandValToReplace);
122 if (IVUseShouldUsePostIncValue(User, OperandValToReplac
198 TransformSubExpr(const SCEV *S, Instruction *User, Value *OperandValToReplace) argument
214 TransformForPostIncUse(TransformKind Kind, const SCEV *S, Instruction *User, Value *OperandValToReplace, PostIncLoopSet &Loops, ScalarEvolution &SE, DominatorTree &DT) argument
[all...]
H A DIVUsers.cpp148 Instruction *User = cast<Instruction>(*UI); local
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) {
176 if (isa<PHINode>(User) || Processed.count(User) ||
215 AddUser(Instruction *User, Value *Operand) argument
[all...]
/external/llvm/lib/Transforms/Utils/
H A DLCSSA.cpp186 User *U = *UI;
256 Instruction *User = cast<Instruction>(UsesToRewrite[i]->getUser()); local
257 BasicBlock *UserBB = User->getParent();
258 if (PHINode *PN = dyn_cast<PHINode>(User))
H A DAddrModeMatcher.cpp155 bool AddressingModeMatcher::MatchOperationAddr(User *AddrInst, unsigned Opcode,
422 User *U = *UI;
547 Instruction *User = MemoryUses[i].first; local
552 Value *Address = User->getOperand(OpNo);
H A DSimplifyIndVar.cpp275 Instruction *User = cast<Instruction>(*UI); local
281 if (User != Def && Simplified.insert(User))
282 SimpleIVUsers.push_back(std::make_pair(User, Def));
H A DLowerInvoke.cpp344 Instruction *User = cast<Instruction>(*UI); local
345 if (User->getParent() != BB || isa<PHINode>(User))
346 Users.push_back(User);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DInstrEmitter.cpp111 SDNode *User = *UI; local
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
231 SDNode *User = *UI; local
[all...]
H A DScheduleDAGSDNodes.cpp110 static void CheckForPhysRegDependency(SDNode *Def, SDNode *User, unsigned Op, argument
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; local
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...]
/external/llvm/lib/VMCore/
H A DValue.cpp10 // This file implements the Value, ValueHandle, and User classes.
125 const Instruction *User = dyn_cast<Instruction>(*I); local
126 if (User && User->getParent() == BB)
419 for (User::const_op_iterator I = GEP->op_begin()+1,
/external/clang/test/CXX/temp/temp.decls/temp.friend/
H A Dp1.cpp93 template <class T> class User;
97 friend class User<bool>;
103 template <class T> class User { class in namespace:test3
118 template class User<bool>;
119 template class User<int>; // expected-note {{requested here}}
/external/llvm/lib/CodeGen/
H A DSjLjEHPrepare.cpp309 Instruction *User = cast<Instruction>(*UI); local
310 if (User->getParent() != BB || isa<PHINode>(User))
311 Users.push_back(User);

Completed in 1586 milliseconds

123