/external/chromium_org/ui/app_list/ |
H A D | app_list_view_delegate.cc | 9 AppListViewDelegate::User::User() : active(false) { function in class:app_list::AppListViewDelegate::User 12 AppListViewDelegate::User::~User() {}
|
H A D | app_list_view_delegate.h | 42 struct APP_LIST_EXPORT User { struct in class:app_list::AppListViewDelegate 43 User(); 44 ~User(); 58 typedef std::vector<User> Users;
|
/external/llvm/include/llvm/IR/ |
H A D | 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 31 /// for use of the User class 35 class User : public Value { class in namespace:llvm 36 User(const User &) LLVM_DELETED_FUNCTION; 42 /// NumOperands - The number of values used by this User. 46 /// OperandList - This is a pointer to the array of Uses for this User. 54 User(Typ function in class:llvm::User [all...] |
H A D | OperandTraits.h | 11 // layout of various User subclasses. It also provides the means for accessing 18 #include "llvm/IR/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_org/chrome/common/mac/ |
H A D | launchd.h | 23 User = 1, // ~/Library/Launch* enumerator in enum:Launchd::Domain
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/ |
H A D | user_unittest.py | 32 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_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, '')), 113 (("Continue? [Y/n]: ", False), (User.DEFAULT_YES, 'q')), 114 (("Continue? [y/N]: ", True), (User [all...] |
H A D | user.py | 54 class User(object): class in inherits: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/components/user_manager/ |
H A D | user.cc | 31 bool User::IsSupervised() const { 35 void User::SetIsSupervised(bool is_supervised) { 39 class RegularUser : public User { 44 // Overridden from User: 61 class GuestUser : public User { 66 // Overridden from User: 73 class KioskAppUser : public User { 78 // Overridden from User: 85 class SupervisedUser : public User { 90 // Overridden from User 204 User::User(const std::string& email) function in class:user_manager::User [all...] |
H A D | user.h | 41 class USER_MANAGER_EXPORT User : public UserInfo { class in namespace:user_manager 43 // User OAuth token status according to the last check. 168 // Do not allow anyone else to create new User instances. 169 static User* CreateRegularUser(const std::string& email); 170 static User* CreateGuestUser(); 171 static User* CreateKioskAppUser(const std::string& kiosk_app_username); 172 static User* CreateSupervisedUser(const std::string& username); 173 static User* CreateRetailModeUser(); 174 static User* CreatePublicAccountUser(const std::string& email); 176 explicit User(cons [all...] |
/external/clang/include/clang/Analysis/Analyses/ |
H A D | UninitializedValues.h | 39 const Expr *User; member in class:clang::UninitUse 55 UninitUse(const Expr *User, bool AlwaysUninit) argument 56 : User(User), UninitAfterCall(false), UninitAfterDecl(false), 67 const Expr *getUser() const { return User; }
|
/external/llvm/lib/Analysis/ |
H A D | ScalarEvolutionNormalization.cpp | 21 /// 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); 133 IVUseShouldUsePostIncValue(User, OperandValToReplac 229 TransformSubExpr(const SCEV *S, Instruction *User, Value *OperandValToReplace) argument 245 TransformForPostIncUse(TransformKind Kind, const SCEV *S, Instruction *User, Value *OperandValToReplace, PostIncLoopSet &Loops, ScalarEvolution &SE, DominatorTree &DT) argument [all...] |
H A D | IVUsers.cpp | 147 Instruction *User = cast<Instruction>(U.getUser()); local 148 if (!UniqueUsers.insert(User)) 152 if (isa<PHINode>(User) && Processed.count(User)) 157 BasicBlock *UseBB = User->getParent(); 159 if (PHINode *PHI = dyn_cast<PHINode>(User)) { 171 // If User is already in Processed, we don't want to recurse into it again, 174 if (LI->getLoopFor(User->getParent()) != L) { 175 if (isa<PHINode>(User) || Processed.count(User) || 233 AddUser(Instruction *User, Value *Operand) argument [all...] |
/external/llvm/lib/Transforms/Utils/ |
H A D | LCSSA.cpp | 70 Instruction *User = cast<Instruction>(U.getUser()); local 71 BasicBlock *UserBB = User->getParent(); 72 if (PHINode *PN = dyn_cast<PHINode>(User)) 143 Instruction *User = cast<Instruction>(UsesToRewrite[i]->getUser()); local 144 BasicBlock *UserBB = User->getParent(); 145 if (PHINode *PN = dyn_cast<PHINode>(User))
|
H A D | PromoteMemoryToRegister.cpp | 66 for (const User *U : AI->users()) { 135 Instruction *User = cast<Instruction>(*UI++); local 137 if (StoreInst *SI = dyn_cast<StoreInst>(User)) { 143 LoadInst *LI = cast<LoadInst>(User); 152 OnlyBlock = User->getParent(); 153 else if (OnlyBlock != User->getParent()) 456 for (User *U : AI->users())
|
H A D | SSAUpdater.cpp | 177 Instruction *User = cast<Instruction>(U.getUser()); local 180 if (PHINode *UserPN = dyn_cast<PHINode>(User)) 183 V = GetValueInMiddleOfBlock(User->getParent()); 194 Instruction *User = cast<Instruction>(U.getUser()); local 197 if (PHINode *UserPN = dyn_cast<PHINode>(User)) 200 V = GetValueAtEndOfBlock(User->getParent()); 349 Instruction *User = Insts[i]; local 350 UsesByBlock[User->getParent()].push_back(User); 360 Instruction *User local 458 Instruction *User = Insts[i]; local [all...] |
/external/clang/include/clang/Basic/ |
H A D | VirtualFileSystem.h | 36 uint32_t User; member in class:clang::vfs::Status 49 llvm::sys::TimeValue MTime, uint32_t User, uint32_t Group, 63 uint32_t getUser() const { return User; }
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
H A D | ScheduleDAGSDNodes.cpp | 111 static void CheckForPhysRegDependency(SDNode *Def, SDNode *User, unsigned Op, argument 115 if (Op != 2 || User->getOpcode() != ISD::CopyToReg) 118 unsigned Reg = cast<RegisterSDNode>(User->getOperand(1))->getReg(); 122 unsigned ResNo = User->getOperand(2).getResNo(); 228 SDNode *User = *I; local 229 if (User == Node || !Visited.insert(User)) 232 if (!TII->areLoadsFromSameBasePtr(Base, User, Offset1, Offset2) || 239 O2SMap.insert(std::make_pair(Offset2, User)); 242 Base = User; [all...] |
H A D | LegalizeTypes.cpp | 355 SDNode *User = *UI; local 356 int NodeId = User->getNodeId(); 361 User->setNodeId(NodeId-1); 365 Worklist.push_back(User); 379 User->setNodeId(User->getNumOperands() - 1); 382 if (User->getNumOperands() == 1) 383 Worklist.push_back(User);
|
H A D | ScheduleDAGFast.cpp | 733 SDNode *User = findGluedUser(N); local 734 if (User) { 736 GluedMap.insert(std::make_pair(N, User));
|
/external/llvm/lib/Target/AArch64/ |
H A D | AArch64AddressTypePromotion.cpp | 217 for (const User *U : SExt->users()) { 288 Instruction *User = dyn_cast<Instruction>(U.getUser()); local 289 assert(User && "User of sext is not an Instruction!"); 290 User->setOperand(U.getOperandNo(), SExt); 438 for (const User *U : SExt->users()) {
|
/external/clang/test/CXX/temp/temp.decls/temp.friend/ |
H A D | p1.cpp | 93 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/IR/ |
H A D | Value.cpp | 10 // This file implements the Value, ValueHandle, and User classes. 128 const Instruction *User = dyn_cast<Instruction>(*UI); local 129 if (User && User->getParent() == BB) 520 for (User::const_op_iterator I = GEP->op_begin()+1,
|
/external/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombinePHI.cpp | 260 for (User *U : AI->users()) { 561 PHIUsageRecord(unsigned pn, unsigned Sh, Instruction *User) argument 562 : PHIId(pn), Shift(Sh), Inst(User) {} 652 for (User *U : PN->users()) {
|
/external/clang/lib/CodeGen/ |
H A D | CodeGenPGO.cpp | 795 auto *User = llvm::Function::Create(llvm::FunctionType::get(Int32Ty, false), local 798 User->addFnAttr(llvm::Attribute::NoInline); 800 User->addFnAttr(llvm::Attribute::NoRedZone); 801 CGBuilderTy Builder(llvm::BasicBlock::Create(CGM.getLLVMContext(), "", User)); 807 CGM.addUsedGlobal(User);
|
/external/llvm/lib/Transforms/Scalar/ |
H A D | JumpThreading.cpp | 1449 Instruction *User = cast<Instruction>(U.getUser()); local 1450 if (PHINode *UserPN = dyn_cast<PHINode>(User)) { 1453 } else if (User->getParent() == BB) 1602 Instruction *User = cast<Instruction>(U.getUser()); local 1603 if (PHINode *UserPN = dyn_cast<PHINode>(User)) { 1606 } else if (User->getParent() == BB)
|