HomeSort by relevance Sort by last modified time
    Searched defs:User (Results 26 - 50 of 94) sorted by null

12 3 4

  /external/clang/test/Sema/
attr-availability.c 98 enum User {
  /external/llvm/lib/Target/AArch64/
AArch64AddressTypePromotion.cpp 220 for (const User *U : SExt->users()) {
291 Instruction *User = dyn_cast<Instruction>(U.getUser());
292 assert(User && "User of sext is not an Instruction!");
293 User->setOperand(U.getOperandNo(), SExt);
441 for (const User *U : SExt->users()) {
  /external/autotest/frontend/afe/
resources.py 133 class User(resource_lib.InstanceEntry):
134 model = models.User
141 username = models.User.current_user().login
142 return cls(request, models.User.objects.get(login=username))
150 rep = super(User, self).short_representation()
156 rep = super(User, self).full_representation()
169 queryset = models.User.objects.all()
170 entry_class = User
217 related_classes = {'user': User, 'acl': Acl
    [all...]
models.py 27 # job options and user preferences
203 if not User.current_user().is_superuser():
209 if not User.current_user().is_superuser():
245 if not User.current_user().is_superuser():
251 if not User.current_user().is_superuser():
288 2) the current user's default drone set, or
299 user = User.current_user()
300 user_drone_set_name = user.drone_set and user.drone_set.nam
1635 def user(self): member in class:Job
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypes.cpp 365 SDNode *User = *UI;
366 int NodeId = User->getNodeId();
371 User->setNodeId(NodeId-1);
375 Worklist.push_back(User);
389 User->setNodeId(User->getNumOperands() - 1);
392 if (User->getNumOperands() == 1)
393 Worklist.push_back(User);
    [all...]
ScheduleDAGFast.cpp 662 DenseMap<SDNode*, SDNode*> GluedMap; // Cache glue to its user
737 SDNode *User = findGluedUser(N);
738 if (User) {
740 GluedMap.insert(std::make_pair(N, User));
755 // Glue user must be scheduled together with the glue operand. So other
FastISel.cpp 382 bool FastISel::selectBinaryOp(const User *I, unsigned ISDOpcode) {
484 bool FastISel::selectGetElementPtr(const User *I) {
    [all...]
SelectionDAGISel.cpp 560 // user of LDI->second.
    [all...]
  /external/llvm/lib/IR/
Value.cpp 10 // This file implements the Value, ValueHandle, and User classes.
127 const Instruction *User = dyn_cast<Instruction>(*UI);
128 if (User && User->getParent() == BB)
Constants.cpp 422 for (const User *U : users()) {
471 const Constant *User = dyn_cast<Constant>(C->user_back());
472 if (!User) return false; // Non-constant usage;
473 if (!removeDeadUsersOfConstant(User))
490 const Constant *User = dyn_cast<Constant>(*I);
491 if (!User) {
497 if (!removeDeadUsersOfConstant(User)) {
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LICM.cpp 538 for (const User *U : I.users()) {
583 for (User::op_iterator OI = New->op_begin(), OE = New->op_end(); OI != OE;
627 auto *User = cast<Instruction>(*UI);
628 if (!DT->isReachableFromEntry(User->getParent())) {
629 User->replaceUsesOfWith(&I, UndefValue::get(I.getType()));
632 // The user must be a PHI node.
633 PHINode *PN = cast<PHINode>(User);
    [all...]
JumpThreading.cpp     [all...]
LoopRerollPass.cpp 456 for (User *U : I->users()) {
528 for (User *U : C->users()) {
529 // The only in-loop user can be the initial PHI.
584 Instruction *User = cast<Instruction>(U.getUser());
585 if (PHINode *PN = dyn_cast<PHINode>(User)) {
591 if (L->contains(User) && !Exclude.count(User)) {
592 Queue.push_back(User);
596 // We also want to collect single-user "feeder" values.
597 for (User::op_iterator OI = I->op_begin()
    [all...]
StructurizeCFG.cpp 386 for (User *U : Condition->users())
893 Instruction *User = cast<Instruction>(U.getUser());
894 if (User->getParent() == BB) {
897 } else if (PHINode *UserPN = dyn_cast<PHINode>(User)) {
902 if (DT->dominates(&*II, User))
  /external/llvm/lib/Transforms/Utils/
SSAUpdater.cpp 179 Instruction *User = cast<Instruction>(U.getUser());
182 if (PHINode *UserPN = dyn_cast<PHINode>(User))
185 V = GetValueInMiddleOfBlock(User->getParent());
196 Instruction *User = cast<Instruction>(U.getUser());
199 if (PHINode *UserPN = dyn_cast<PHINode>(User))
202 V = GetValueAtEndOfBlock(User->getParent());
349 for (Instruction *User : Insts)
350 UsesByBlock[User->getParent()].push_back(User);
358 for (Instruction *User : Insts)
    [all...]
PromoteMemoryToRegister.cpp 57 for (const User *U : AI->users()) {
126 Instruction *User = cast<Instruction>(*UI++);
128 if (StoreInst *SI = dyn_cast<StoreInst>(User)) {
134 LoadInst *LI = cast<LoadInst>(User);
143 OnlyBlock = User->getParent();
144 else if (OnlyBlock != User->getParent())
448 for (User *U : AI->users())
    [all...]
  /external/autotest/server/
frontend.py 63 def __init__(self, path, user, server, print_log, debug, reply_debug):
67 user: username to connect as
72 if not user and utils.is_in_container():
73 user = GLOBAL_CONFIG.get_config_value('SSP', 'user', default=None)
74 if not user:
75 user = getpass.getuser()
83 self.user = user
87 headers = {'AUTHORIZATION': self.user}
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/s3/
key.py 41 from boto.s3.user import User
54 :ivar metadata: A dictionary containing user metadata that you
87 # The object metadata fields a user can set, other than custom metadata
97 # Metadata fields, whether user-settable or not, other than custom
236 # means that it represents an explicit version and the user is
504 self.owner = User(self)
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
InstrProfiling.cpp 404 // for which case there is no need to emit the user function.
418 auto *User = Function::Create(FunctionType::get(Int32Ty, false),
421 User->addFnAttr(Attribute::NoInline);
422 if (Options.NoRedZone) User->addFnAttr(Attribute::NoRedZone);
423 User->setVisibility(GlobalValue::HiddenVisibility);
425 IRBuilder<> IRB(BasicBlock::Create(M->getContext(), "", User));
429 // Mark the user variable as used so that it isn't stripped out.
430 UsedVars.push_back(User);
  /frameworks/data-binding/compiler/src/test/java/android/databinding/tool/expr/
ExprModelTest.java 194 IdentifierExpr user = lb local
195 .addVariable("user", "android.databinding.tool.expr.ExprModelTest.User",
197 MathExpr parsed = parse(lb, "user.name + \" \" + (user.lastName ?? \"\")", MathExpr.class);
202 assertSame(user, readNow.get(0));
204 justRead.add(user);
206 assertEquals(2, readNow.size()); //user.name && user.lastName
208 // user.lastname (T, F), user.name + "
727 IdentifierExpr user = lb.addVariable("user", User.class.getCanonicalName(), local
733 assertExactMatch(getShouldRead(), user, fieldGet); local
    [all...]
  /external/valgrind/memcheck/
mc_errors.c 150 } User;
535 if (!extra->Err.User.isAddrErr)
541 extra->Err.User.isAddrErr
544 VG_(pp_addrinfo_mc)(VG_(get_error_address)(err), &extra->Err.User.ai,
546 if (extra->Err.User.origin_ec && !extra->Err.User.isAddrErr)
547 mc_pp_origin( extra->Err.User.origin_ec,
548 extra->Err.User.otag & 3 );
551 extra->Err.User.isAddrErr
554 VG_(pp_addrinfo_mc)(VG_(get_error_address)(err), &extra->Err.User.ai
    [all...]
  /external/clang/lib/Sema/
AnalysisBasedWarnings.cpp 710 const Expr *User = Use.getUser();
828 S.Diag(User->getLocStart(), diag::note_uninit_var_use)
829 << IsCapturedByBlock << User->getSourceRange();
    [all...]
  /external/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h 233 /// User - The user of this value.
234 SDNode *User;
243 SDUse() : Val(), User(nullptr), Prev(nullptr), Next(nullptr) {}
253 SDNode *getUser() { return User; }
284 void setUser(SDNode *p) { User = p; }
554 /// Retrieve a pointer to the current user node.
564 /// Retrieve the operand # of this use in its user.
672 /// If this node has a glue value with a user, return
673 /// the user (there is at most one). Otherwise return NULL
    [all...]
  /external/llvm/lib/Target/AMDGPU/
SIISelLowering.cpp 760 // TODO: Add GridWorkGroupCount user SGPRs when used. For now with HSA we read
807 // resource. For the HSA ABI, this will be the first 4 user SGPR
    [all...]
  /external/llvm/lib/Target/ARM/
ARMConstantIslandPass.cpp 172 /// CPUser - One user of a constant pool, keeping the machine instruction
    [all...]

Completed in 579 milliseconds

12 3 4