HomeSort by relevance Sort by last modified time
    Searched defs:UI (Results 1 - 25 of 130) sorted by null

1 2 3 4 5 6

  /external/llvm/tools/opt/
AnalysisWrappers.cpp 41 Instruction *UI = dyn_cast<Instruction>(U);
42 if (!UI) continue;
44 CallSite CS(cast<Value>(UI));
55 errs() << *UI;
  /frameworks/base/tests/JankBench/app/src/main/java/com/android/benchmark/registry/
BenchmarkCategory.java 28 @IntDef({BenchmarkCategory.GENERIC, BenchmarkCategory.UI, BenchmarkCategory.COMPUTE})
31 int UI = 1;
  /external/llvm/lib/Transforms/Scalar/
Reg2Mem.cpp 52 const Instruction *UI = cast<Instruction>(U);
53 if (UI->getParent() != BB || isa<PHINode>(UI))
Float2Int.cpp 375 Instruction *UI = dyn_cast<Instruction>(U);
376 if (!UI || SeenInsts.find(UI) == SeenInsts.end()) {
  /prebuilts/go/darwin-x86/src/cmd/vendor/github.com/google/pprof/internal/plugin/
plugin.go 34 UI UI
174 // A UI manages user interactions.
175 type UI interface {
182 // For line-based UI, Print writes to standard error.
188 // For line-based UI, PrintErr writes to standard error.
191 // IsTerminal returns whether the UI is known to be tied to an
195 // SetAutoComplete instructs the UI to call complete(cmd) to obtain
196 // the auto-completion of cmd, if the UI supports auto-completion at all.
  /prebuilts/go/linux-x86/src/cmd/vendor/github.com/google/pprof/internal/plugin/
plugin.go 34 UI UI
174 // A UI manages user interactions.
175 type UI interface {
182 // For line-based UI, Print writes to standard error.
188 // For line-based UI, PrintErr writes to standard error.
191 // IsTerminal returns whether the UI is known to be tied to an
195 // SetAutoComplete instructs the UI to call complete(cmd) to obtain
196 // the auto-completion of cmd, if the UI supports auto-completion at all.
  /prebuilts/go/darwin-x86/src/cmd/vendor/github.com/google/pprof/driver/
driver.go 50 UI: o.UI,
61 UI UI
188 // A UI manages user interactions.
189 type UI interface {
196 // For line-based UI, Print writes to standard error.
202 // For line-based UI, PrintErr writes to standard error.
205 // IsTerminal returns whether the UI is known to be tied to an
209 // SetAutoComplete instructs the UI to call complete(cmd) to obtai
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vendor/github.com/google/pprof/driver/
driver.go 50 UI: o.UI,
61 UI UI
188 // A UI manages user interactions.
189 type UI interface {
196 // For line-based UI, Print writes to standard error.
202 // For line-based UI, PrintErr writes to standard error.
205 // IsTerminal returns whether the UI is known to be tied to an
209 // SetAutoComplete instructs the UI to call complete(cmd) to obtai
    [all...]
  /external/llvm/lib/Analysis/
SparsePropagation.cpp 308 Instruction *UI = cast<Instruction>(U);
309 if (BBExecutable.count(UI->getParent())) // Inst is executable?
310 visitInst(*UI);
  /external/llvm/lib/CodeGen/
SafeStackColoring.cpp 69 auto *UI = dyn_cast<Instruction>(U);
70 if (!UI)
73 if (!readMarker(UI, &IsStart))
77 BBMarkerSet[UI->getParent()][UI] = {AllocaNo, IsStart};
78 Markers.push_back(UI);
GlobalMerge.cpp 293 Use *UI, *UE;
297 UI = &*CE->use_begin();
300 UI = &U;
301 UE = UI->getNext();
308 for (; UI != UE; UI = UI->getNext()) {
309 Instruction *I = dyn_cast<Instruction>(UI->getUser());
MachineRegisterInfo.cpp 355 use_nodbg_iterator UI = use_nodbg_begin(RegNo);
356 if (UI == use_nodbg_end())
358 return ++UI == use_nodbg_end();
SjLjEHPrepare.cpp 272 Instruction *UI = cast<Instruction>(U);
273 if (UI->getParent() != &BB || isa<PHINode>(UI))
274 Users.push_back(UI);
  /external/llvm/tools/llvm-readobj/
Win64EHDumper.cpp 45 static uint64_t getOffsetOfLSDA(const UnwindInfo& UI) {
46 return static_cast<const char*>(UI.getLanguageSpecificData())
47 - reinterpret_cast<const char*>(&UI);
180 void Dumper::printUnwindCode(const UnwindInfo& UI, ArrayRef<UnwindCode> UC) {
202 if (UI.getFrameRegister() == 0)
205 OS << " reg=" << getUnwindRegisterName(UI.getFrameRegister())
206 << format(", offset=0x%X", UI.getFrameOffset() * 16);
238 off_t Offset, const UnwindInfo &UI) {
240 SW.printNumber("Version", UI.getVersion());
241 SW.printFlags("Flags", UI.getFlags(), makeArrayRef(UnwindFlags))
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
MachineRegisterInfo.cpp 159 use_iterator UI = use_begin(RegNo);
160 if (UI == use_end())
162 return ++UI == use_end();
166 use_nodbg_iterator UI = use_nodbg_begin(RegNo);
167 if (UI == use_nodbg_end())
169 return ++UI == use_nodbg_end();
177 for (use_iterator UI = use_begin(Reg), UE = use_end(); UI != UE; ++UI)
178 UI.getOperand().setIsKill(false)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/VMCore/
Value.cpp 89 const_use_iterator UI = use_begin(), E = use_end();
91 for (; N; --N, ++UI)
92 if (UI == E) return false; // Too few.
93 return UI == E;
100 const_use_iterator UI = use_begin(), E = use_end();
102 for (; N; --N, ++UI)
103 if (UI == E) return false; // Too few.
  /external/webrtc/webrtc/examples/peerconnection/client/
main_wnd.h 43 enum UI {
55 virtual UI current_ui() = 0;
94 virtual UI current_ui() { return ui_; }
181 UI ui_;
  /toolchain/binutils/binutils-2.27/bfd/
pe-mips.c 718 #define UI(x) (*_bfd_error_handler) (_("%B: unimplemented %s\n"), \
729 UI ("refhalf");
791 UI ("gprel");
795 UI ("section");
799 UI ("secrel");
803 UI ("secrello");
807 UI ("secrelhi");
  /external/libvncserver/webclients/novnc/include/
ui.js 13 var UI;
19 window.onscriptsload = function () { UI.load(); };
20 window.onload = function () { UI.keyboardinputReset(); };
25 var UI = {
42 // UI.init to setup the UI/menus
44 WebUtil.initSettings(UI.start, callback);
47 // Render default UI and initialize settings menu
49 UI.isTouchDevice = 'ontouchstart' in document.documentElement;
56 UI.addOption($D('noVNC_stylesheet'),sheets[i].title, sheets[i].title)
    [all...]
  /external/llvm/lib/IR/
Value.cpp 100 const_use_iterator UI = use_begin(), E = use_end();
102 for (; N; --N, ++UI)
103 if (UI == E) return false; // Too few.
104 return UI == E;
108 const_use_iterator UI = use_begin(), E = use_end();
110 for (; N; --N, ++UI)
111 if (UI == E) return false; // Too few.
124 const_user_iterator UI = user_begin(), UE = user_end();
125 for (; BI != BE && UI != UE; ++BI, ++UI) {
    [all...]
  /external/llvm/lib/Transforms/Utils/
LoopUtils.cpp 293 Instruction *UI = cast<Instruction>(U);
296 BasicBlock *Parent = UI->getParent();
319 if (VisitedInsts.insert(UI).second) {
320 if (isa<PHINode>(UI))
321 PHIs.push_back(UI);
323 NonPHIs.push_back(UI);
324 } else if (!isa<PHINode>(UI) &&
325 ((!isa<FCmpInst>(UI) && !isa<ICmpInst>(UI) &&
326 !isa<SelectInst>(UI)) ||
    [all...]
SimplifyIndVar.cpp 559 Instruction *UI = cast<Instruction>(U);
565 if (UI != Def && Simplified.insert(UI).second)
566 SimpleIVUsers.push_back(std::make_pair(UI, Def));
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
MemCpyOptimizer.cpp 635 User *UI = srcUseList.pop_back_val();
637 if (isa<BitCastInst>(UI)) {
638 for (User::use_iterator I = UI->use_begin(), E = UI->use_end();
641 } else if (GetElementPtrInst *G = dyn_cast<GetElementPtrInst>(UI)) {
643 for (User::use_iterator I = UI->use_begin(), E = UI->use_end();
648 } else if (UI != C && UI != cpy) {
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
Local.cpp 305 Value::use_iterator UI = I->use_begin();
307 if (UI == UE)
310 User *TheUse = *UI;
311 for (++UI; UI != UE; ++UI) {
312 if (*UI != TheUse)
578 for (Value::use_iterator UI = BBI->use_begin(), E = BBI->use_end();
579 UI != E; ++UI) {
    [all...]
  /external/llvm/include/llvm/Analysis/
LoopInfo.h 713 auto *UI = cast<Instruction>(U.getUser());
714 auto *UBB = isa<PHINode>(UI) ? cast<PHINode>(UI)->getIncomingBlock(U)
715 : UI->getParent();

Completed in 344 milliseconds

1 2 3 4 5 6