Searched defs:UI (Results 1 - 25 of 58) sorted by relevance

123

/external/libvncserver/webclients/novnc/include/
H A Dui.js13 var UI; variable
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
[all...]
/external/llvm/tools/opt/
H A DAnalysisWrappers.cpp41 Instruction *UI = dyn_cast<Instruction>(U); variable
42 if (!UI) continue;
44 CallSite CS(cast<Value>(UI));
55 errs() << *UI;
/external/llvm/lib/Transforms/Scalar/
H A DReg2Mem.cpp52 const Instruction *UI = cast<Instruction>(U); local
53 if (UI->getParent() != BB || isa<PHINode>(UI))
H A DFloat2Int.cpp375 Instruction *UI = dyn_cast<Instruction>(U); local
376 if (!UI || SeenInsts.find(UI) == SeenInsts.end()) {
/external/llvm/lib/Analysis/
H A DSparsePropagation.cpp308 Instruction *UI = cast<Instruction>(U); local
309 if (BBExecutable.count(UI->getParent())) // Inst is executable?
310 visitInst(*UI);
/external/llvm/lib/CodeGen/
H A DSafeStackColoring.cpp69 auto *UI = dyn_cast<Instruction>(U); local
70 if (!UI)
73 if (!readMarker(UI, &IsStart))
77 BBMarkerSet[UI->getParent()][UI] = {AllocaNo, IsStart};
78 Markers.push_back(UI);
H A DGlobalMerge.cpp293 Use *UI, *UE; local
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());
H A DMachineRegisterInfo.cpp355 use_nodbg_iterator UI = use_nodbg_begin(RegNo); local
356 if (UI == use_nodbg_end())
358 return ++UI == use_nodbg_end();
H A DSjLjEHPrepare.cpp272 Instruction *UI = cast<Instruction>(U); local
273 if (UI->getParent() != &BB || isa<PHINode>(UI))
274 Users.push_back(UI);
H A DTailDuplicator.cpp177 MachineRegisterInfo::use_iterator UI = MRI->use_begin(VReg); local
178 while (UI != MRI->use_end()) {
179 MachineOperand &UseMO = *UI;
181 ++UI;
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DMachineRegisterInfo.cpp159 use_iterator UI = use_begin(RegNo); local
160 if (UI == use_end())
162 return ++UI == use_end();
166 use_nodbg_iterator UI = use_nodbg_begin(RegNo); local
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
[all...]
H A DTailDuplication.cpp243 MachineRegisterInfo::use_iterator UI = MRI->use_begin(VReg); local
244 while (UI != MRI->use_end()) {
245 MachineOperand &UseMO = UI.getOperand();
246 MachineInstr *UseMI = &*UI;
247 ++UI;
274 MachineRegisterInfo::use_iterator UI = MRI->use_begin(Src); local
275 if (++UI == MRI->use_end()) {
321 for (MachineRegisterInfo::use_iterator UI = MRI->use_begin(Reg),
322 UE = MRI->use_end(); UI != UE; ++UI) {
[all...]
/external/llvm/tools/llvm-readobj/
H A DWin64EHDumper.cpp45 static uint64_t getOffsetOfLSDA(const UnwindInfo& UI) { argument
46 return static_cast<const char*>(UI.getLanguageSpecificData())
47 - reinterpret_cast<const char*>(&UI);
180 void Dumper::printUnwindCode(const UnwindInfo& UI, ArrayRef<UnwindCode> UC) { argument
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
237 printUnwindInfo(const Context &Ctx, const coff_section *Section, off_t Offset, const UnwindInfo &UI) argument
301 const auto UI = reinterpret_cast<const UnwindInfo*>(Contents.data() + Offset); local
[all...]
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DValue.cpp89 const_use_iterator UI = use_begin(), E = use_end(); local
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(); local
102 for (; N; --N, ++UI)
103 if (UI == E) return false; // Too few.
/external/webrtc/webrtc/examples/peerconnection/client/
H A Dmain_wnd.h43 enum UI { enum in class:MainWindow
55 virtual UI current_ui() = 0;
94 virtual UI current_ui() { return ui_; }
181 UI ui_;
/external/clang/test/CodeGen/
H A Dxcore-stringtype.c31 unsigned short US, signed short SS, int I, unsigned int UI,
30 builtinType(_Bool B, char C, unsigned char UC, signed char SC, short S, unsigned short US, signed short SS, int I, unsigned int UI, signed int SI, long L, unsigned long UL, signed long SL, long long LL, unsigned long long ULL, signed long long SLL, float F, double D, long double LD) argument
/external/llvm/lib/Transforms/Utils/
H A DSimplifyIndVar.cpp559 Instruction *UI = cast<Instruction>(U); local
565 if (UI != Def && Simplified.insert(UI).second)
566 SimpleIVUsers.push_back(std::make_pair(UI, Def));
H A DLoopUtils.cpp293 Instruction *UI = cast<Instruction>(U); local
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...]
/external/llvm/tools/llvm-objdump/
H A DCOFFDump.cpp475 static void printWin64EHUnwindInfo(const Win64EH::UnwindInfo *UI) { argument
479 outs() << " Version: " << static_cast<int>(UI->getVersion()) << "\n";
480 outs() << " Flags: " << static_cast<int>(UI->getFlags());
481 if (UI->getFlags()) {
482 if (UI->getFlags() & UNW_ExceptionHandler)
484 if (UI->getFlags() & UNW_TerminateHandler)
486 if (UI->getFlags() & UNW_ChainInfo)
490 outs() << " Size of prolog: " << static_cast<int>(UI->PrologSize) << "\n";
491 outs() << " Number of Codes: " << static_cast<int>(UI->NumCodes) << "\n";
493 if (UI
[all...]
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
H A DLocal.cpp305 Value::use_iterator UI = I->use_begin(); local
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/IR/
H A DValue.h158 use_iterator_impl<Use> UI; member in class:llvm::Value::user_iterator_impl
159 explicit user_iterator_impl(Use *U) : UI(U) {}
165 bool operator==(const user_iterator_impl &x) const { return UI == x.UI; }
172 ++UI;
183 return UI->getUser();
189 return user_iterator_impl<const UserTy>(*UI);
192 Use &getUse() const { return *UI; }
/external/llvm/lib/IR/
H A DValue.cpp100 const_use_iterator UI = use_begin(), E = use_end(); local
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(); local
110 for (; N; --N, ++UI)
111 if (UI == E) return false; // Too few.
124 const_user_iterator UI = user_begin(), UE = user_end(); local
125 for (; BI != BE && UI != UE; ++BI, ++UI) {
411 use_iterator UI = use_begin(), E = use_end(); local
[all...]
/external/llvm/lib/Transforms/IPO/
H A DArgumentPromotion.cpp545 // Couldn't we just do increment the UI iterator earlier and erase the
701 Instruction *UI = cast<Instruction>(U); local
703 if (LoadInst *L = dyn_cast<LoadInst>(UI))
706 SrcTy = cast<GetElementPtrInst>(UI)->getSourceElementType();
708 Indices.reserve(UI->getNumOperands() - 1);
712 for (User::op_iterator II = UI->op_begin() + 1, IE = UI->op_end();
720 if (LoadInst *L = dyn_cast<LoadInst>(UI))
724 OrigLoad = cast<LoadInst>(UI->user_back());
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp635 User *UI = srcUseList.pop_back_val(); local
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) {
/external/clang/utils/TableGen/
H A DClangAttrEmitter.cpp900 for (const auto &UI : uniques) {
901 OS << " case " << getAttrName() << "Attr::" << UI << ":\n";
902 OS << " OS << \" " << UI << "\";\n"; variable

Completed in 668 milliseconds

123