Searched refs:User (Results 1 - 25 of 215) sorted by relevance

123456789

/external/llvm/include/llvm/Support/
H A DDataFlow.h17 #include "llvm/User.h"
60 template <> struct GraphTraits<Inverse<const User*> > {
62 typedef User::const_op_iterator ChildIteratorType;
64 static NodeType *getEntryNode(Inverse<const User*> G) {
69 if (const User *U = dyn_cast<User>(N))
75 if(const User *U = dyn_cast<User>(N))
81 template <> struct GraphTraits<Inverse<User*> > {
83 typedef User
[all...]
H A DGetElementPtrTypeIterator.h18 #include "llvm/User.h"
22 template<typename ItTy = User::const_op_iterator>
85 inline gep_type_iterator gep_type_begin(const User *GEP) {
89 inline gep_type_iterator gep_type_end(const User *GEP) {
92 inline gep_type_iterator gep_type_begin(const User &GEP) {
96 inline gep_type_iterator gep_type_end(const User &GEP) {
/external/llvm/lib/VMCore/
H A DUser.cpp1 //===-- User.cpp - Implement the User class -------------------------------===//
12 #include "llvm/User.h"
17 // User Class
20 void User::anchor() {}
25 void User::replaceUsesOfWith(Value *From, Value *To) {
29 "Cannot call User::replaceUsesOfWith on a constant!");
41 // User allocHungoffUses Implementation
44 Use *User::allocHungoffUses(unsigned N) const {
46 // the User
[all...]
/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...]
/external/ppp/pppd/plugins/radius/etc/
H A Ddictionary.compat6 ATTRIBUTE User-Service-Type 6 integer
19 VALUE Service-Type Shell-User 6
21 VALUE Service-Type Dialback-Login-User 3
22 VALUE Service-Type Dialback-Framed-User 4
37 VALUE Service-Type Exec-User 7
43 ATTRIBUTE User-Name-Is-Star 1035 integer
44 VALUE User-Name-Is-Star No 0
45 VALUE User-Name-Is-Star Yes 1
H A Ddictionary46 ATTRIBUTE User-Name 1 string
97 ATTRIBUTE User-Category 1029 string
100 ATTRIBUTE Strip-User-Name 1035 integer
133 # User Types
135 VALUE Service-Type Login-User 1
136 VALUE Service-Type Framed-User 2
137 VALUE Service-Type Callback-Login-User 3
138 VALUE Service-Type Callback-Framed-User 4
139 VALUE Service-Type Outbound-User 5
140 VALUE Service-Type Administrative-User
[all...]
/external/chromium/chrome/browser/chromeos/login/
H A Dmock_user_manager.h22 MOCK_CONST_METHOD0(GetUsers, std::vector<User>());
27 MOCK_CONST_METHOD0(logged_in_user, const User&());
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_controller_unittest.cc24 UserManager::User existing_user;
H A Ddom_login_display.h53 virtual void Init(const std::vector<UserManager::User>& users,
57 virtual void OnUserImageChanged(UserManager::User* user) OVERRIDE;
76 std::vector<UserManager::User> users_;
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...]
H A Ddom_login_display.cc39 void DOMLoginDisplay::Init(const std::vector<UserManager::User>& users,
59 void DOMLoginDisplay::OnUserImageChanged(UserManager::User* 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...]
H A DConstant.h17 #include "llvm/User.h"
41 class Constant : public User {
48 : User(ty, vty, Ops, NumOps) {}
119 /// User::replaceUsesOfWith (which does not work on constants) that does work
/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/qemu/distrib/sdl-1.2.15/src/timer/symbian/
H A DSDL_systimer.cpp46 start = User::TickCount();
55 TUint deltaTics = User::TickCount() - start;
61 User::After(TTimeIntervalMicroSeconds32(ms*1000));
/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/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.h380 void visit(unsigned Opcode, const User &I);
472 void visitBinary(const User &I, unsigned OpCode);
473 void visitShift(const User &I, unsigned Opcode);
474 void visitAdd(const User &I) { visitBinary(I, ISD::ADD); }
475 void visitFAdd(const User &I) { visitBinary(I, ISD::FADD); }
476 void visitSub(const User &I) { visitBinary(I, ISD::SUB); }
477 void visitFSub(const User &I);
478 void visitMul(const User &I) { visitBinary(I, ISD::MUL); }
479 void visitFMul(const User &I) { visitBinary(I, ISD::FMUL); }
480 void visitURem(const User
[all...]
/external/llvm/include/llvm/Analysis/
H A DScalarEvolutionNormalization.h70 Instruction *User,
/external/llvm/lib/Transforms/Utils/
H A DSSAUpdater.cpp209 Instruction *User = cast<Instruction>(U.getUser()); local
212 if (PHINode *UserPN = dyn_cast<PHINode>(User))
215 V = GetValueInMiddleOfBlock(User->getParent());
230 Instruction *User = cast<Instruction>(U.getUser()); local
233 if (PHINode *UserPN = dyn_cast<PHINode>(User))
236 V = GetValueAtEndOfBlock(User->getParent());
388 Instruction *User = Insts[i]; local
389 UsesByBlock[User->getParent()].push_back(User);
399 Instruction *User local
497 Instruction *User = Insts[i]; local
[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/llvm/include/llvm/CodeGen/
H A DFastISel.h42 class User;
105 bool SelectOperator(const User *I, unsigned Opcode);
362 bool SelectBinaryOp(const User *I, unsigned ISDOpcode);
364 bool SelectFNeg(const User *I);
366 bool SelectGetElementPtr(const User *I);
368 bool SelectCall(const User *I);
370 bool SelectBitCast(const User *I);
372 bool SelectCast(const User *I, unsigned Opcode);
374 bool SelectExtractValue(const User *I);
376 bool SelectInsertValue(const User *
[all...]

Completed in 548 milliseconds

123456789