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

1 2

  /external/chromium_org/ui/app_list/
app_list_menu.h 44 AppListViewDelegate::Users users_;
app_list_view_delegate.h 58 typedef std::vector<User> Users;
152 // Returns the list of users (for AppListMenu).
153 virtual const Users& GetUsers() const = 0;
  /external/chromium_org/ui/app_list/test/
app_list_test_view_delegate.h 31 void SetUsers(const Users& users) {
32 users_ = users;
84 virtual const Users& GetUsers() const OVERRIDE;
101 Users users_;
app_list_test_view_delegate.cc 109 const AppListViewDelegate::Users& AppListTestViewDelegate::GetUsers() const {
  /external/chromium_org/athena/home/
app_list_view_delegate.h 61 virtual const Users& GetUsers() const OVERRIDE;
66 Users users_;
app_list_view_delegate.cc 181 const app_list::AppListViewDelegate::Users&
  /external/llvm/lib/Transforms/IPO/
PartialInlining.cpp 132 std::vector<User *> Users(duplicateFunction->user_begin(),
134 for (std::vector<User*>::iterator UI = Users.begin(), UE = Users.end();
142 // users (function pointers, etc.) back to the original function.
166 for (User *U : currFunc->users())
  /development/ide/xcode/ports/
skia_mac.cp 22 // /Users/caryclark/android/device/build/ide/xcode/animatorTest/build/Debug/animatorTest.app/Contents/MacOS/animatorTest
24 // /Users/caryclark/android/device/jsapps
26 // /Users/caryclark/android/
  /external/chromium_org/chrome/browser/ui/app_list/
app_list_view_delegate.h 111 virtual const Users& GetUsers() const OVERRIDE;
169 Users users_;
  /external/chromium_org/net/third_party/nss/patches/
applypatches.sh 10 patches_dir=/Users/wtc/chrome1/src/net/third_party/nss/patches
  /external/chromium_org/third_party/icu/source/config/
test-icu-config.sh 47 icu-config --prefix=/Users/srl/II --cflags
  /external/icu/icu4c/source/config/
test-icu-config.sh 47 icu-config --prefix=/Users/srl/II --cflags
  /external/chromium_org/sandbox/win/src/
sid_unittest.cc 62 ATL::Sids::Users().GetPSID()));
  /external/llvm/lib/Target/XCore/
XCoreLowerThreadLocal.cpp 162 for (User *U : GV->users())
204 SmallVector<User *, 16> Users(GV->user_begin(), GV->user_end());
205 for (unsigned I = 0, E = Users.size(); I != E; ++I) {
206 User *U = Users[I];
  /external/llvm/lib/Transforms/Scalar/
LoopRerollPass.cpp 323 DenseSet<Instruction *> &Users);
328 DenseSet<Instruction *> &Users);
358 for (User *U : I->users())
429 for (User *U : C->users())
460 // Collect the set of all users of the provided root instruction. This set of
461 // users contains not only the direct users of the root instruction, but also
462 // all users of those users, and so on. There are two exceptions:
465 // use set (even if they are users). This is used, for example, to exclud
    [all...]
  /external/llvm/lib/Transforms/Utils/
CodeExtractor.cpp 176 for (User *U : II->users())
358 // Rewrite all users of the inputs in the extracted region to use the
373 std::vector<User*> Users(inputs[i]->user_begin(), inputs[i]->user_end());
374 for (std::vector<User*>::iterator use = Users.begin(), useE = Users.end();
393 std::vector<User*> Users(header->user_begin(), header->user_end());
394 for (unsigned i = 0, e = Users.size(); i != e; ++i)
397 if (TerminatorInst *TI = dyn_cast<TerminatorInst>(Users[i]))
505 std::vector<User*> Users(outputs[i]->user_begin(), outputs[i]->user_end());
506 for (unsigned u = 0, e = Users.size(); u != e; ++u)
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64CollectLOH.cpp 756 // Check the number of users of ADRP.
757 const SetOfMachineInstr *Users =
760 if (Users->size() > 1) {
    [all...]
AArch64PromoteConstant.cpp 116 typedef SmallVector<Value::user_iterator, 4> Users;
118 typedef DenseMap<Instruction *, Users> InsertionPoints;
515 Users &DominatedUsers = IPI->second;
  /external/llvm/lib/CodeGen/
SjLjEHPrepare.cpp 308 // Avoid iterator invalidation by copying users to a temporary vector.
309 SmallVector<Instruction *, 16> Users;
310 for (User *U : Inst->users()) {
313 Users.push_back(UI);
319 while (!Users.empty()) {
320 Instruction *U = Users.back();
321 Users.pop_back();
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
R600KernelParameters.cpp 300 std::vector<User*> Users(V->use_begin(), V->use_end());
302 for (int i = 0; i < int(Users.size()); i++) {
303 Value* V2 = dyn_cast<Value>(Users[i]);
  /external/mesa3d/src/gallium/drivers/radeon/
R600KernelParameters.cpp 300 std::vector<User*> Users(V->use_begin(), V->use_end());
302 for (int i = 0; i < int(Users.size()); i++) {
303 Value* V2 = dyn_cast<Value>(Users[i]);
  /external/chromium_org/ash/shell/
app_list.cc 246 virtual const Users& GetUsers() const OVERRIDE {
366 Users users_;
  /external/chromium_org/v8/test/webkit/fast/regex/
parentheses.js 130 shouldBe("regexp27.exec('file:///Users/Someone/Desktop/HelloWorld/index.html')", "['file:///Users/Someone/Desktop/HelloWorld/index.html','file','//','',undefined,undefined,undefined,'',undefined,'/Users/Someone/Desktop/HelloWorld/index.html',undefined,undefined]");
149 shouldBe("regexp28.exec('file:///Users/Someone/Desktop/HelloWorld/index.html')", "['file:','file',undefined,undefined,undefined,undefined,undefined]");
  /external/llvm/lib/Transforms/Vectorize/
BBVectorize.cpp 284 bool trackUsesOfI(DenseSet<Value *> &Users,
750 // users of the pair are also paired. This defines a (directed) forest
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp 735 for (User *U : PN->users()) {
740 // Otherwise, we can replace *all* users with the new PHI we form.
    [all...]

Completed in 1075 milliseconds

1 2