/external/libvncserver/webclients/novnc/include/ |
H A D | ui.js | 13 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 D | AnalysisWrappers.cpp | 41 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 D | Reg2Mem.cpp | 52 const Instruction *UI = cast<Instruction>(U); local 53 if (UI->getParent() != BB || isa<PHINode>(UI))
|
H A D | Float2Int.cpp | 387 Instruction *UI = dyn_cast<Instruction>(U); local 388 if (!UI || SeenInsts.find(UI) == SeenInsts.end()) {
|
H A D | LICM.cpp | 539 const Instruction *UI = cast<Instruction>(U); local 540 if (const PHINode *PN = dyn_cast<PHINode>(UI)) { 562 if (CurLoop->contains(UI)) 626 Value::user_iterator UI = I.user_begin(); local 627 auto *User = cast<Instruction>(*UI); 638 Use &U = UI.getUse(); 889 Instruction *UI = dyn_cast<Instruction>(U); local 890 if (!UI || !CurLoop->contains(UI)) 895 if (const LoadInst *load = dyn_cast<LoadInst>(UI)) { [all...] |
/external/lldb/utils/vim-lldb/python-vim-lldb/ |
H A D | vim_ui.py | 2 # LLDB UI state in the Vim user interface. 16 class UI: class in inherits: 18 """ Declare UI state variables """ 42 """ Activate UI: display default set of panes """ 46 """ Returns a list of buffers that are not a part of the LLDB UI. That is, they 235 ui = UI()
|
H A D | lldb_controller.py | 9 from vim_ui import UI namespace 56 # servicing LLDB events from the main UI thread. Usually, we only process events that are already 59 # Vim UI is "blocked". Lower numbers will make Vim more responsive, but LLDB will be delayed and higher 60 # numbers will mean that LLDB events are processed faster, but the Vim UI may appear less responsive at 67 """ Creates the LLDB SBDebugger object and initializes the UI class. """ 75 self.ui = UI() 104 """ Perform a step command and block the UI for eventDelayStep seconds in order to process 107 the main thread to avoid the appearance of a "hang". If this happens, the UI will 256 # Since the UI is responsbile for placing signs at bp locations, we have to 271 """ process pending events and update UI o [all...] |
/external/llvm/lib/Analysis/ |
H A D | SparsePropagation.cpp | 308 Instruction *UI = cast<Instruction>(U); local 309 if (BBExecutable.count(UI->getParent())) // Inst is executable? 310 visitInst(*UI);
|
/external/avahi/avahi-ui-sharp/ |
H A D | ServiceDialog.cs | 9 namespace Avahi.UI
|
/external/llvm/tools/llvm-readobj/ |
H A D | Win64EHDumper.cpp | 45 static uint64_t getOffsetOfLSDA(const UnwindInfo& UI) { argument 46 return static_cast<const char*>(UI.getLanguageSpecificData()) 47 - reinterpret_cast<const char*>(&UI); 174 void Dumper::printUnwindCode(const UnwindInfo& UI, ArrayRef<UnwindCode> UC) { argument 196 if (UI.getFrameRegister() == 0) 199 OS << " reg=" << getUnwindRegisterName(UI.getFrameRegister()) 200 << format(", offset=0x%X", UI.getFrameOffset() * 16); 232 off_t Offset, const UnwindInfo &UI) { 234 SW.printNumber("Version", UI.getVersion()); 235 SW.printFlags("Flags", UI 231 printUnwindInfo(const Context &Ctx, const coff_section *Section, off_t Offset, const UnwindInfo &UI) argument 295 const auto UI = reinterpret_cast<const UnwindInfo*>(Contents.data() + Offset); local [all...] |
/external/webrtc/webrtc/examples/peerconnection/client/ |
H A D | main_wnd.h | 43 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 D | xcore-stringtype.c | 31 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/CodeGen/ |
H A D | GlobalMerge.cpp | 283 Use *UI, *UE; local 287 UI = &*CE->use_begin(); 290 UI = &U; 291 UE = UI->getNext(); 298 for (; UI != UE; UI = UI->getNext()) { 299 Instruction *I = dyn_cast<Instruction>(UI->getUser());
|
H A D | MachineRegisterInfo.cpp | 325 use_nodbg_iterator UI = use_nodbg_begin(RegNo); local 326 if (UI == use_nodbg_end()) 328 return ++UI == use_nodbg_end();
|
H A D | SjLjEHPrepare.cpp | 300 Instruction *UI = cast<Instruction>(U); local 301 if (UI->getParent() != BB || isa<PHINode>(UI)) 302 Users.push_back(UI);
|
H A D | TailDuplication.cpp | 268 MachineRegisterInfo::use_iterator UI = MRI->use_begin(VReg); local 269 while (UI != MRI->use_end()) { 270 MachineOperand &UseMO = *UI; 272 ++UI;
|
/external/llvm/lib/Transforms/Utils/ |
H A D | SimplifyIndVar.cpp | 481 Instruction *UI = cast<Instruction>(U); local 487 if (UI != Def && Simplified.insert(UI).second) 488 SimpleIVUsers.push_back(std::make_pair(UI, Def));
|
H A D | LoopUtils.cpp | 286 Instruction *UI = cast<Instruction>(U); local 289 BasicBlock *Parent = UI->getParent(); 312 if (VisitedInsts.insert(UI).second) { 313 if (isa<PHINode>(UI)) 314 PHIs.push_back(UI); 316 NonPHIs.push_back(UI); 317 } else if (!isa<PHINode>(UI) && 318 ((!isa<FCmpInst>(UI) && !isa<ICmpInst>(UI) && 319 !isa<SelectInst>(UI)) || [all...] |
/external/llvm/tools/llvm-objdump/ |
H A D | COFFDump.cpp | 402 static void printWin64EHUnwindInfo(const Win64EH::UnwindInfo *UI) { argument 406 outs() << " Version: " << static_cast<int>(UI->getVersion()) << "\n"; 407 outs() << " Flags: " << static_cast<int>(UI->getFlags()); 408 if (UI->getFlags()) { 409 if (UI->getFlags() & UNW_ExceptionHandler) 411 if (UI->getFlags() & UNW_TerminateHandler) 413 if (UI->getFlags() & UNW_ChainInfo) 417 outs() << " Size of prolog: " << static_cast<int>(UI->PrologSize) << "\n"; 418 outs() << " Number of Codes: " << static_cast<int>(UI->NumCodes) << "\n"; 420 if (UI [all...] |
/external/llvm/include/llvm/IR/ |
H A D | Value.h | 154 use_iterator_impl<Use> UI; member in class:llvm::Value::user_iterator_impl 155 explicit user_iterator_impl(Use *U) : UI(U) {} 161 bool operator==(const user_iterator_impl &x) const { return UI == x.UI; } 168 ++UI; 179 return UI->getUser(); 185 return user_iterator_impl<const UserTy>(*UI); 188 Use &getUse() const { return *UI; }
|
/external/llvm/lib/IR/ |
H A D | Value.cpp | 97 const_use_iterator UI = use_begin(), E = use_end(); local 99 for (; N; --N, ++UI) 100 if (UI == E) return false; // Too few. 101 return UI == E; 105 const_use_iterator UI = use_begin(), E = use_end(); local 107 for (; N; --N, ++UI) 108 if (UI == E) return false; // Too few. 121 const_user_iterator UI = user_begin(), UE = user_end(); local 122 for (; BI != BE && UI != UE; ++BI, ++UI) { 402 use_iterator UI = use_begin(), E = use_end(); local [all...] |
/external/llvm/lib/Transforms/IPO/ |
H A D | ArgumentPromotion.cpp | 519 // Couldn't we just do increment the UI iterator earlier and erase the 675 Instruction *UI = cast<Instruction>(U); local 677 if (LoadInst *L = dyn_cast<LoadInst>(UI)) 680 SrcTy = cast<GetElementPtrInst>(UI)->getSourceElementType(); 682 Indices.reserve(UI->getNumOperands() - 1); 686 for (User::op_iterator II = UI->op_begin() + 1, IE = UI->op_end(); 694 if (LoadInst *L = dyn_cast<LoadInst>(UI)) 698 OrigLoad = cast<LoadInst>(UI->user_back());
|
/external/clang/utils/TableGen/ |
H A D | ClangAttrEmitter.cpp | 792 for (const auto &UI : uniques) { 793 OS << " case " << getAttrName() << "Attr::" << UI << ":\n"; 794 OS << " OS << \" " << UI << "\";\n"; variable
|
/external/llvm/include/llvm/Analysis/ |
H A D | LoopInfo.h | 740 auto *UI = cast<Instruction>(U.getUser()); local 741 auto *UBB = isa<PHINode>(UI) ? cast<PHINode>(UI)->getIncomingBlock(U) 742 : UI->getParent();
|
/external/llvm/include/llvm/CodeGen/ |
H A D | MachineRegisterInfo.h | 437 use_iterator UI = use_begin(RegNo); local 438 if (UI == use_end()) 440 return ++UI == use_end();
|