Searched defs:Use (Results 1 - 25 of 29) sorted by relevance

12

/external/chromium/base/memory/
H A Dlinked_ptr_unittest.cc2 // Use of this source code is governed by a BSD-style license that can be
21 virtual void Use() { history += base::StringPrintf("A%d use\n", mynum); } function in struct:__anon1536::A
29 virtual void Use() { history += base::StringPrintf("B%d use\n", mynum); } function in struct:__anon1536::B
66 a3->Use();
67 a4->Use();
68 a5->Use();
69 a6->Use();
70 b0->Use();
71 (*b0).Use();
72 b0.get()->Use();
[all...]
/external/llvm/lib/Target/Hexagon/
H A DHexagonRemoveSZExtArgs.cpp59 Instruction* Use = cast<Instruction>(*UI); local
60 SExtInst* SI = new SExtInst(Arg, Use->getType());
62 (EVT::getEVT(Use->getType())));
64 Use->replaceAllUsesWith(SI);
67 Use->eraseFromParent();
/external/chromium/net/proxy/
H A Dproxy_info.cc2 // Use of this source code is governed by a BSD-style license that can be
17 void ProxyInfo::Use(const ProxyInfo& other) { function in class:net::ProxyInfo
/external/chromium/testing/gtest/test/
H A Dgtest-linked_ptr_test.cc51 virtual void Use() { *history << "A" << mynum << " use\n"; } function in class:__anon3152::A
61 virtual void Use() { *history << "B" << mynum << " use\n"; } function in class:__anon3152::B
80 // Use explicit function call notation here to suppress self-assign warning.
110 a3->Use();
111 a4->Use();
112 a5->Use();
113 a6->Use();
114 b0->Use();
115 (*b0).Use();
116 b0.get()->Use();
[all...]
/external/gtest/test/
H A Dgtest-linked_ptr_test.cc51 virtual void Use() { *history << "A" << mynum << " use\n"; } function in class:__anon5628::A
61 virtual void Use() { *history << "B" << mynum << " use\n"; } function in class:__anon5628::B
80 // Use explicit function call notation here to suppress self-assign warning.
110 a3->Use();
111 a4->Use();
112 a5->Use();
113 a6->Use();
114 b0->Use();
115 (*b0).Use();
116 b0.get()->Use();
[all...]
/external/protobuf/gtest/test/
H A Dgtest-linked_ptr_test.cc51 virtual void Use() { *history << "A" << mynum << " use\n"; } function in class:__anon10027::A
61 virtual void Use() { *history << "B" << mynum << " use\n"; } function in class:__anon10027::B
109 a3->Use();
110 a4->Use();
111 a5->Use();
112 a6->Use();
113 b0->Use();
114 (*b0).Use();
115 b0.get()->Use();
118 a0->Use();
[all...]
/external/llvm/lib/CodeGen/
H A DDeadMachineInstructionElim.cpp147 MachineOperand& Use = I.getOperand(); local
148 MachineInstr *UseMI = Use.getParent();
151 assert(Use.isDebug());
H A DMachineCSE.cpp338 MachineInstr *Use = &*I; local
339 CSUses.insert(Use);
343 MachineInstr *Use = &*I; local
344 if (!CSUses.count(Use)) {
377 MachineInstr *Use = &*I; local
379 if (!Use->isCopyLike()) {
394 MachineInstr *Use = &*I; local
395 HasPHI |= Use->isPHI();
396 CSBBs.insert(Use->getParent());
H A DLiveIntervalAnalysis.cpp46 cl::desc("Use new algorithm forcomputing live intervals"));
887 // Use a smaller arrays for local live ranges.
952 LiveRange* Use; member in struct:LiveIntervals::HMEditor::RegRanges
956 RegRanges() : Use(0), EC(0), Dead(0), Def(0) {}
1150 BR[LI->reg].Use = LR;
1296 assert((BR[LI->reg].Use == 0 || BR[LI->reg].Use == LR) &&
1298 BR[LI->reg].Use = LR;
1309 assert((BR[LI->reg].Use == 0 || BR[LI->reg].Use
[all...]
/external/llvm/include/llvm/
H A DUse.h1 //===-- llvm/Use.h - Definition of the Use class ----------------*- C++ -*-===//
10 // This defines the Use class. The Use class represents the operand of an
11 // instruction or some other User instance which refers to a Value. The Use
15 // to a Use without having to store a User pointer in every Use. A
17 // operands, and the low bits of one of the fields (Prev) of the Use
19 // a pointer to any Use. For details, see:
36 class Use;
57 class Use { class in namespace:llvm
82 Use(PrevPtrTag tag) : Val(0) { function in class:llvm::Use
[all...]
/external/webkit/Source/WebCore/loader/cache/
H A DCachedResourceLoader.h123 enum RevalidationPolicy { Use, Revalidate, Reload, Load }; enumerator in enum:WebCore::CachedResourceLoader::RevalidationPolicy
/external/clang/test/SemaTemplate/
H A Ddependent-names.cpp217 void Use() { function in namespace:PR10053::my_file2
240 void Use() { function in namespace:PR10053::my_file2_a
260 void Use() { function in namespace:PR10053::unary
/external/llvm/lib/Target/ARM/
H A DThumb2SizeReduction.cpp150 bool canAddPseudoFlagDep(MachineInstr *Def, MachineInstr *Use,
217 Thumb2SizeReduce::canAddPseudoFlagDep(MachineInstr *Def, MachineInstr *Use, argument
239 for (unsigned i = 0, e = Use->getNumOperands(); i != e; ++i) {
240 const MachineOperand &MO = Use->getOperand(i);
/external/llvm/lib/Target/PowerPC/
H A DPPCCTRLoops.cpp497 MachineOperand& Use = J.getOperand(); local
498 MachineInstr *UseMI = Use.getParent();
540 MachineOperand& Use = I.getOperand(); local
541 MachineInstr *UseMI = Use.getParent();
544 if (Use.isDebug()) // this might also be a instr -> phi -> instr case
/external/llvm/lib/Transforms/IPO/
H A DDeadArgumentElimination.cpp139 Liveness MarkIfNotLive(RetOrArg Use, UseVector &MaybeLiveUses);
353 /// MarkIfNotLive - This checks Use for liveness in LiveValues. If Use is not
354 /// live, it adds Use to the MaybeLiveUses argument. Returns the determined
355 /// liveness of Use.
356 DAE::Liveness DAE::MarkIfNotLive(RetOrArg Use, UseVector &MaybeLiveUses) { argument
358 if (LiveFunctions.count(Use.F) || LiveValues.count(Use))
362 // Use becomes live.
363 MaybeLiveUses.push_back(Use);
383 RetOrArg Use = CreateRet(RI->getParent()->getParent(), RetValNum); local
429 RetOrArg Use = CreateArg(F, ArgNo); local
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DLICM.cpp580 Use &U = UI.getUse();
769 Instruction *Use = dyn_cast<Instruction>(*UI); local
770 if (!Use || !CurLoop->contains(Use))
775 if (LoadInst *load = dyn_cast<LoadInst>(Use)) {
779 } else if (StoreInst *store = dyn_cast<StoreInst>(Use)) {
782 if (Use->getOperand(1) != ASIV)
799 if (isGuaranteedToExecute(*Use)) {
805 GuaranteedToExecute = isGuaranteedToExecute(*Use);
810 LoopUses.push_back(Use);
[all...]
H A DIndVarSimplify.cpp412 // Use a WeakVH to observe whether this happens.
645 /// caching Use* pointers.
705 Instruction *Use);
731 Instruction *Use) {
733 IRBuilder<> Builder(Use);
735 for (const Loop *L = LI->getLoopFor(Use->getParent());
1412 // narrower is likely a dead phi that has been widened. Use the wider phi
730 getExtend(Value *NarrowOper, Type *WideType, bool IsSigned, Instruction *Use) argument
/external/clang/lib/Analysis/
H A DUninitializedValues.cpp295 Use, enumerator in enum:__anon4::ClassifyRefs::Class
369 classify(BO->getLHS(), Use);
378 classify(UO->getSubExpr(), Use);
393 classify(CE->getSubExpr(), Use);
443 UninitUse Use(ex, isAlwaysUninit(v));
446 if (Use.getKind() == UninitUse::Always)
447 return Use;
558 Use.addUninitBranch(Branch);
563 Use.addUninitBranch(Branch);
570 return Use;
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGISel.cpp1535 SDUse &Use = I.getUse(); local
1536 if (Use.getResNo() == FlagResNo)
1537 return Use.getUser();
1542 /// findNonImmUse - Return true if "Use" is a non-immediate use of "Def".
1545 static bool findNonImmUse(SDNode *Use, SDNode* Def, SDNode *ImmedUse, argument
1553 // The Use may be -1 (unassigned) if it is a newly allocated node. This can
1556 if ((Use->getNodeId() < Def->getNodeId() && Use->getNodeId() != -1))
1561 if (!Visited.insert(Use))
1564 for (unsigned i = 0, e = Use
[all...]
/external/v8/src/
H A Dlithium-allocator.cc321 // end of a lifetime hole). Use at this position should be attributed to
731 void LAllocator::Use(LifetimePosition block_start, function in class:LAllocator
931 Use(block_start_position, curr_position, from, hint);
984 Use(block_start_position, use_pos, input, NULL);
1001 Use(block_start_position, curr_position.InstructionEnd(), temp, NULL);
/external/v8/tools/gcmole/
H A Dgcmole.cc644 return Use(expr, expr->getType(), THIS, env);
768 return Use(expr, expr->getDecl(), env);
772 return Use(expr, expr->getDecl(), env);
803 ExprEffect Use(const clang::Expr* parent, function in class:__anon12944::FunctionAnalyzer
816 ExprEffect Use(const clang::Expr* parent, function in class:__anon12944::FunctionAnalyzer
822 return Use(parent, var->getType(), var->getNameAsString(), env);
/external/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp488 static void DiagUninitUse(Sema &S, const VarDecl *VD, const UninitUse &Use, argument
493 for (UninitUse::branch_iterator I = Use.branch_begin(), E = Use.branch_end();
495 assert(Use.getKind() == UninitUse::Sometimes);
497 const Expr *User = Use.getUser();
618 S.Diag(Use.getUser()->getLocStart(),
619 Use.getKind() == UninitUse::Always ? diag::warn_uninit_var
622 << Use.getUser()->getSourceRange();
631 const UninitUse &Use,
634 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Use
630 DiagnoseUninitializedUse(Sema &S, const VarDecl *VD, const UninitUse &Use, bool alwaysReportSelfInit = false) argument
947 UninitUse Use = hasSelfInit ? UninitUse(vi->getUser(), false) : *vi; local
[all...]
/external/v8/src/arm/
H A Dlithium-arm.cc597 return Use(value, ToUnallocated(fixed_register));
602 return Use(value, ToUnallocated(reg));
607 return Use(value, new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER));
612 return Use(value,
619 return Use(value, new(zone()) LUnallocated(LUnallocated::WRITABLE_REGISTER));
623 LOperand* LChunkBuilder::Use(HValue* value) { function in class:v8::internal::LChunkBuilder
624 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE));
629 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE,
637 : Use(value);
665 : Use(valu
669 LOperand* LChunkBuilder::Use(HValue* value, LUnallocated* operand) { function in class:v8::internal::LChunkBuilder
[all...]
/external/v8/src/ia32/
H A Dlithium-ia32.cc592 return Use(value, ToUnallocated(fixed_register));
597 return Use(value, ToUnallocated(reg));
602 return Use(value, new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER));
607 return Use(value,
614 return Use(value, new(zone()) LUnallocated(LUnallocated::WRITABLE_REGISTER));
618 LOperand* LChunkBuilder::Use(HValue* value) { function in class:v8::internal::LChunkBuilder
619 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE));
624 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE,
632 : Use(value);
660 : Use(valu
664 LOperand* LChunkBuilder::Use(HValue* value, LUnallocated* operand) { function in class:v8::internal::LChunkBuilder
[all...]
/external/v8/src/mips/
H A Dlithium-mips.cc597 return Use(value, ToUnallocated(fixed_register));
602 return Use(value, ToUnallocated(reg));
607 return Use(value, new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER));
612 return Use(value,
619 return Use(value, new(zone()) LUnallocated(LUnallocated::WRITABLE_REGISTER));
623 LOperand* LChunkBuilder::Use(HValue* value) { function in class:v8::internal::LChunkBuilder
624 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE));
629 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE,
637 : Use(value);
665 : Use(valu
669 LOperand* LChunkBuilder::Use(HValue* value, LUnallocated* operand) { function in class:v8::internal::LChunkBuilder
[all...]

Completed in 546 milliseconds

12