/external/llvm/include/llvm/Support/ |
DataFlow.h | 17 #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::op_iterator ChildIteratorType [all...] |
GetElementPtrTypeIterator.h | 18 #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/ |
User.cpp | 1 //===-- User.cpp - Implement the User class -------------------------------===// 12 #include "llvm/User.h" 17 // User Class 23 void User::replaceUsesOfWith(Value *From, Value *To) { 27 "Cannot call User::replaceUsesOfWith on a constant!"); 39 // User allocHungoffUses Implementation 42 Use *User::allocHungoffUses(unsigned N) const { 44 // the User. 48 (void) new(End) Use::UserRef(const_cast<User*>(this), 1) [all...] |
/external/llvm/include/llvm/ |
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 14 // * Instructions are the largest class of User's. 28 /// for use of the User class 32 class User : public Value { 33 User(const User &); // Do not implement 38 /// OperandList - This is a pointer to the array of Uses for this User. 45 /// NumOperands - The number of values used by this User [all...] |
Constant.h | 17 #include "llvm/User.h" 41 class Constant : public User { 47 : User(ty, vty, Ops, NumOps) {} 113 /// User::replaceUsesOfWith (which does not work on constants) that does work
|
OperandTraits.h | 11 // 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*) { 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 subclass that is determined by this traits clas [all...] |
/external/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_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')) [all...] |
/development/samples/SampleSyncAdapter/tests/src/com/example/android/samplesync/client/ |
UserTest.java | 18 import com.example.android.samplesync.client.User; 28 User user = local 29 new User("mjoshi", "Megha", "Joshi", "1-650-335-5681", "1-650-111-5681", 31 assertEquals("Megha", user.getFirstName()); 32 assertEquals("Joshi", user.getLastName()); 33 assertEquals("mjoshi", user.getUserName()); 34 assertEquals(1, user.getUserId()); 35 assertEquals("1-650-335-5681", user.getCellPhone()); 36 assertEquals(false, user.isDeleted()) 46 User user = User.valueOf(jsonObj); local [all...] |
/external/ppp/pppd/plugins/radius/etc/ |
dictionary.compat | 6 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
|
dictionary | 15 # Enumerated values are stored in the user file with dictionary 46 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 [all...] |
/external/chromium/chrome/browser/chromeos/login/ |
mock_user_manager.h | 22 MOCK_CONST_METHOD0(GetUsers, std::vector<User>()); 27 MOCK_CONST_METHOD0(logged_in_user, const User&());
|
dom_login_display.h | 53 virtual void Init(const std::vector<UserManager::User>& users, 57 virtual void OnUserImageChanged(UserManager::User* user) OVERRIDE; 76 std::vector<UserManager::User> users_;
|
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_controller_unittest.cc | 24 UserManager::User existing_user;
|
user_controller.h | 32 // user or first time login for a new user. ExistingUserController creates 48 // Selects user entry with specified |index|. 49 // Does nothing if current user is already selected. 59 // Creates a UserController representing new user or guest login. 62 // Creates a UserController for the specified user. 63 UserController(Delegate* delegate, const UserManager::User& user); 68 // |index| is the index of this user, and |total_user_count| the total 77 const UserManager::User& user() const { return user_; function in class:chromeos::UserController [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...] |
dom_login_display.cc | 39 void DOMLoginDisplay::Init(const std::vector<UserManager::User>& users, 59 void DOMLoginDisplay::OnUserImageChanged(UserManager::User* user) { 60 // TODO(rharrison): Update the user in the user vector 65 // TODO(rharrison): Remove the user from the user vector
|
/external/qemu/distrib/sdl-1.2.12/src/timer/epoc/ |
SDL_systimer.cpp | 48 start = User::TickCount(); 57 TUint deltaTics = User::TickCount() - start; 64 User::After(TTimeIntervalMicroSeconds32(ms*1000));
|
/external/llvm/include/llvm/Analysis/ |
ScalarEvolutionNormalization.h | 70 Instruction *User,
|
/external/llvm/lib/Analysis/ |
IVUsers.cpp | 103 // call this a user. 110 Instruction *User = cast<Instruction>(*UI); 111 if (!UniqueUsers.insert(User)) 115 if (isa<PHINode>(User) && Processed.count(User)) 122 // If User is already in Processed, we don't want to recurse into it again, 125 if (LI->getLoopFor(User->getParent()) != L) { 126 if (isa<PHINode>(User) || Processed.count(User) || 127 !AddUsersIfInteresting(User)) { [all...] |
ScalarEvolutionNormalization.cpp | 21 /// IVUseShouldUsePostIncValue - We have discovered a "User" of an IV expression 22 /// and now we need to decide whether the user should use the preinc or post-inc 23 /// value. If this user should use the post-inc version of the IV, return true. 29 static bool IVUseShouldUsePostIncValue(Instruction *User, Value *Operand, 31 // If the user is in the loop, use the preinc value. 32 if (L->contains(User)) return false; 38 // Ok, the user is outside of the loop. If it is dominated by the latch 40 if (DT->dominates(LatchBlock, User->getParent())) 47 PHINode *PN = dyn_cast<PHINode>(User); 65 Instruction *User, [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/llvm/lib/CodeGen/SelectionDAG/ |
SelectionDAGBuilder.h | 369 void visit(unsigned Opcode, const User &I); 458 void visitBinary(const User &I, unsigned OpCode); 459 void visitShift(const User &I, unsigned Opcode); 460 void visitAdd(const User &I) { visitBinary(I, ISD::ADD); } 461 void visitFAdd(const User &I) { visitBinary(I, ISD::FADD); } 462 void visitSub(const User &I) { visitBinary(I, ISD::SUB); } 463 void visitFSub(const User &I); 464 void visitMul(const User &I) { visitBinary(I, ISD::MUL); } 465 void visitFMul(const User &I) { visitBinary(I, ISD::FMUL); } 466 void visitURem(const User &I) { visitBinary(I, ISD::UREM); [all...] |
/external/llvm/include/llvm/CodeGen/ |
FastISel.h | 87 bool SelectOperator(const User *I, unsigned Opcode); 334 bool SelectBinaryOp(const User *I, unsigned ISDOpcode); 336 bool SelectFNeg(const User *I); 338 bool SelectGetElementPtr(const User *I); 340 bool SelectCall(const User *I); 342 bool SelectBitCast(const User *I); 344 bool SelectCast(const User *I, unsigned Opcode); 346 bool SelectExtractValue(const User *I);
|
/external/llvm/lib/Transforms/Utils/ |
SSAUpdater.cpp | 206 Instruction *User = cast<Instruction>(U.getUser()); 209 if (PHINode *UserPN = dyn_cast<PHINode>(User)) 212 V = GetValueInMiddleOfBlock(User->getParent()); 222 Instruction *User = cast<Instruction>(U.getUser()); 225 if (PHINode *UserPN = dyn_cast<PHINode>(User)) 228 V = GetValueAtEndOfBlock(User->getParent()); 385 Instruction *User = Insts[i]; 386 UsesByBlock[User->getParent()].push_back(User); 396 Instruction *User = Insts[i] [all...] |