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

1 2 3 4 5 6 7 8 910

  /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
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/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
29 /// for use of the User class
33 class User : public Value {
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(Type *ty, unsigned vty, Use *OpList, unsigned NumOps
    [all...]
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/clang/include/clang/Analysis/Analyses/
UninitializedValues.h 38 const Expr *User;
48 UninitUse(const Expr *User, bool AlwaysUninit) :
49 User(User), AlwaysUninit(AlwaysUninit) {}
56 const Expr *getUser() const { return User; }
  /external/llvm/lib/Analysis/
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);
80 const SCEV *TransformSubExpr(const SCEV *S, Instruction *User,
    [all...]
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/qemu/distrib/sdl-1.2.15/src/timer/symbian/
SDL_systimer.cpp 46 start = User::TickCount();
55 TUint deltaTics = User::TickCount() - start;
61 User::After(TTimeIntervalMicroSeconds32(ms*1000));
  /external/llvm/include/llvm/Analysis/
ScalarEvolutionNormalization.h 70 Instruction *User,
  /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 380 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 &I) { visitBinary(I, ISD::UREM);
    [all...]
  /external/llvm/lib/Transforms/Utils/
SSAUpdater.cpp 209 Instruction *User = cast<Instruction>(U.getUser());
212 if (PHINode *UserPN = dyn_cast<PHINode>(User))
215 V = GetValueInMiddleOfBlock(User->getParent());
230 Instruction *User = cast<Instruction>(U.getUser());
233 if (PHINode *UserPN = dyn_cast<PHINode>(User))
236 V = GetValueAtEndOfBlock(User->getParent());
388 Instruction *User = Insts[i];
389 UsesByBlock[User->getParent()].push_back(User);
399 Instruction *User = Insts[i]
    [all...]
  /external/llvm/include/llvm/CodeGen/
FastISel.h 42 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 *I)
    [all...]

Completed in 2379 milliseconds

1 2 3 4 5 6 7 8 910