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

12

/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dratelimiter.cc37 void RateLimiter::Use(size_t used, double time) { function in class:talk_base::RateLimiter
/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:__anon1700::A
29 virtual void Use() { history += base::StringPrintf("B%d use\n", mynum); } function in struct:__anon1700::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/chromium_org/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:__anon3780::A
29 virtual void Use() OVERRIDE {
68 a3->Use();
69 a4->Use();
70 a5->Use();
71 a6->Use();
72 b0->Use();
73 (*b0).Use();
74 b0.get()->Use();
[all...]
/external/llvm/lib/Target/Hexagon/
H A DHexagonRemoveSZExtArgs.cpp65 Instruction* Use = cast<Instruction>(*UI); local
66 SExtInst* SI = new SExtInst(Arg, Use->getType());
68 (EVT::getEVT(Use->getType())));
70 Use->replaceAllUsesWith(SI);
73 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:__anon3316::A
61 virtual void Use() { *history << "B" << mynum << " use\n"; } function in class:__anon3316::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/chromium_org/testing/gtest/test/
H A Dgtest-linked_ptr_test.cc51 virtual void Use() { *history << "A" << mynum << " use\n"; } function in class:__anon10104::A
61 virtual void Use() { *history << "B" << mynum << " use\n"; } function in class:__anon10104::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:__anon17916::A
61 virtual void Use() { *history << "B" << mynum << " use\n"; } function in class:__anon17916::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/llvm/lib/CodeGen/
H A DDeadMachineInstructionElim.cpp134 MachineOperand& Use = I.getOperand(); local
135 MachineInstr *UseMI = Use.getParent();
138 assert(Use.isDebug());
H A DMachineCSE.cpp354 MachineInstr *Use = &*I; local
355 CSUses.insert(Use);
359 MachineInstr *Use = &*I; local
360 if (!CSUses.count(Use)) {
393 MachineInstr *Use = &*I; local
395 if (!Use->isCopyLike()) {
410 MachineInstr *Use = &*I; local
411 HasPHI |= Use->isPHI();
412 CSBBs.insert(Use->getParent());
/external/protobuf/gtest/test/
H A Dgtest-linked_ptr_test.cc51 virtual void Use() { *history << "A" << mynum << " use\n"; } function in class:__anon23880::A
61 virtual void Use() { *history << "B" << mynum << " use\n"; } function in class:__anon23880::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/chromium_org/net/proxy/
H A Dproxy_info.cc2 // Use of this source code is governed by a BSD-style license that can be
21 void ProxyInfo::Use(const ProxyInfo& other) { function in class:net::ProxyInfo
/external/llvm/include/llvm/IR/
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:
39 class Use;
60 class Use { class in namespace:llvm
84 Use(PrevPtrTag tag) : Val(0) { function in class:llvm::Use
[all...]
/external/chromium_org/chrome/browser/prerender/
H A Dprerender_tracker_unittest.cc2 // Use of this source code is governed by a BSD-style license that can be
59 void Use() { function in class:prerender::__anon5561::TestPrerenderContents
201 test_contents()->Use();
378 // Use (kDefaultChildId, kDefaultRouteId).
/external/chromium_org/third_party/WebKit/Source/core/loader/cache/
H A DResourceFetcher.h169 enum RevalidationPolicy { Use, Revalidate, Reload, Load }; enumerator in enum:WebCore::ResourceFetcher::RevalidationPolicy
/external/llvm/lib/Target/SystemZ/
H A DSystemZElimCompare.cpp40 : Def(false), Use(false), IndirectDef(false), IndirectUse(false) {}
45 Use |= Other.Use;
50 operator bool() const { return Def || Use; }
55 bool Use; member in struct:__anon21486::Reference
148 Ref.Use = true;
342 if (!CCRefs.Use && !SrcRefs && convertToBRCT(MI, Compare, CCUsers)) {
357 if (CCRefs.Use && CCRefs.Def)
455 if (CompleteCCUsers && CCRefs.Use)
/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 *Use, bool IsSelfLoop);
248 Thumb2SizeReduce::canAddPseudoFlagDep(MachineInstr *Use, bool FirstInSelfLoop) { argument
269 for (unsigned i = 0, e = Use->getNumOperands(); i != e; ++i) {
270 const MachineOperand &MO = Use->getOperand(i);
284 if (Use->getOpcode() == ARM::t2MOVi ||
285 Use->getOpcode() == ARM::t2MOVi16)
/external/llvm/lib/Transforms/IPO/
H A DDeadArgumentElimination.cpp151 Liveness MarkIfNotLive(RetOrArg Use, UseVector &MaybeLiveUses);
409 /// MarkIfNotLive - This checks Use for liveness in LiveValues. If Use is not
410 /// live, it adds Use to the MaybeLiveUses argument. Returns the determined
411 /// liveness of Use.
412 DAE::Liveness DAE::MarkIfNotLive(RetOrArg Use, UseVector &MaybeLiveUses) { argument
414 if (LiveFunctions.count(Use.F) || LiveValues.count(Use))
418 // Use becomes live.
419 MaybeLiveUses.push_back(Use);
439 RetOrArg Use = CreateRet(RI->getParent()->getParent(), RetValNum); local
485 RetOrArg Use = CreateArg(F, ArgNo); local
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DLICM.cpp582 Use &U = UI.getUse();
775 Instruction *Use = dyn_cast<Instruction>(*UI); local
776 if (!Use || !CurLoop->contains(Use))
781 if (LoadInst *load = dyn_cast<LoadInst>(Use)) {
785 } else if (StoreInst *store = dyn_cast<StoreInst>(Use)) {
788 if (Use->getOperand(1) != ASIV)
804 if (isGuaranteedToExecute(*Use)) {
810 GuaranteedToExecute = isGuaranteedToExecute(*Use);
818 TBAATag = Use
[all...]
/external/clang/include/clang/Sema/
H A DScopeInfo.h237 WeakUseTy(const Expr *Use, bool IsRead) : Rep(Use, IsRead) {} argument
/external/clang/lib/Analysis/
H A DUninitializedValues.cpp309 Use, enumerator in enum:__anon15166::ClassifyRefs::Class
393 classify(BO->getLHS(), Use);
402 classify(UO->getSubExpr(), Use);
417 classify(CE->getSubExpr(), Use);
470 UninitUse Use(ex, isAlwaysUninit(v));
473 if (Use.getKind() == UninitUse::Always)
474 return Use;
585 Use.addUninitBranch(Branch);
590 Use.addUninitBranch(Branch);
597 return Use;
[all...]
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/
H A Dheap-checker_unittest.cc285 static void Use(T** foo) { function
362 Use(&p); // use only hidden versions
374 Use(ptr); // use only hidden versions
384 Use(ptr);
446 Use(&foo);
448 Use(&bar);
465 Use(&a1);
466 Use(&a2);
478 Use(&arr1);
479 Use(
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/
H A Dheap-checker_unittest.cc285 static void Use(T** foo) { function
362 Use(&p); // use only hidden versions
374 Use(ptr); // use only hidden versions
384 Use(ptr);
446 Use(&foo);
448 Use(&bar);
465 Use(&a1);
466 Use(&a2);
478 Use(&arr1);
479 Use(
[all...]
/external/chromium_org/v8/src/
H A Dlithium-allocator.cc326 // end of a lifetime hole). Use at this position should be attributed to
742 void LAllocator::Use(LifetimePosition block_start, function in class:LAllocator
952 Use(block_start_position, curr_position, from, hint);
1005 Use(block_start_position, use_pos, input, NULL);
1022 Use(block_start_position, curr_position.InstructionEnd(), temp, NULL);

Completed in 697 milliseconds

12