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

1 2 3

  /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/tools/opt/
AnalysisWrappers.cpp 41 Instruction *UI = dyn_cast<Instruction>(U);
42 if (!UI) continue;
44 CallSite CS(cast<Value>(UI));
55 errs() << *UI;
  /external/llvm/lib/Transforms/Scalar/
Reg2Mem.cpp 52 const Instruction *UI = cast<Instruction>(U);
53 if (UI->getParent() != BB || isa<PHINode>(UI))
Float2Int.cpp 387 Instruction *UI = dyn_cast<Instruction>(U);
388 if (!UI || SeenInsts.find(UI) == SeenInsts.end()) {
LICM.cpp 539 const Instruction *UI = cast<Instruction>(U);
540 if (const PHINode *PN = dyn_cast<PHINode>(UI)) {
562 if (CurLoop->contains(UI))
626 Value::user_iterator UI = I.user_begin();
627 auto *User = cast<Instruction>(*UI);
638 Use &U = UI.getUse();
    [all...]
  /external/avahi/avahi-ui-sharp/
ServiceDialog.cs 9 namespace Avahi.UI
13 [DllImport ("avahi-ui")]
16 [DllImport ("avahi-ui")]
19 [DllImport ("avahi-ui")]
22 [DllImport ("avahi-ui")]
25 [DllImport ("avahi-ui")]
28 [DllImport ("avahi-ui")]
31 [DllImport ("avahi-ui")]
34 [DllImport ("avahi-ui")]
37 [DllImport ("avahi-ui")]
    [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/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);
174 void Dumper::printUnwindCode(const UnwindInfo& UI, ArrayRef<UnwindCode> UC) {
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.getFlags(), makeArrayRef(UnwindFlags))
    [all...]
  /external/llvm/lib/CodeGen/
GlobalMerge.cpp 283 Use *UI, *UE;
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());
MachineRegisterInfo.cpp 325 use_nodbg_iterator UI = use_nodbg_begin(RegNo);
326 if (UI == use_nodbg_end())
328 return ++UI == use_nodbg_end();
SjLjEHPrepare.cpp 300 Instruction *UI = cast<Instruction>(U);
301 if (UI->getParent() != BB || isa<PHINode>(UI))
302 Users.push_back(UI);
TailDuplication.cpp 268 MachineRegisterInfo::use_iterator UI = MRI->use_begin(VReg);
269 while (UI != MRI->use_end()) {
270 MachineOperand &UseMO = *UI;
272 ++UI;
    [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyIndVar.cpp 481 Instruction *UI = cast<Instruction>(U);
487 if (UI != Def && Simplified.insert(UI).second)
488 SimpleIVUsers.push_back(std::make_pair(UI, Def));
LoopUtils.cpp 286 Instruction *UI = cast<Instruction>(U);
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/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_;
  /frameworks/base/tools/preload2/src/com/android/preload/ui/
UI.java 17 package com.android.preload.ui;
44 public class UI extends JFrame {
52 public UI(ListModel<Client> clientListModel,
  /toolchain/binutils/binutils-2.25/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/llvm/lib/IR/
Value.cpp 97 const_use_iterator UI = use_begin(), E = use_end();
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();
107 for (; N; --N, ++UI)
108 if (UI == E) return false; // Too few.
121 const_user_iterator UI = user_begin(), UE = user_end();
122 for (; BI != BE && UI != UE; ++BI, ++UI) {
    [all...]
  /external/llvm/include/llvm/Analysis/
LoopInfo.h 740 auto *UI = cast<Instruction>(U.getUser());
741 auto *UBB = isa<PHINode>(UI) ? cast<PHINode>(UI)->getIncomingBlock(U)
742 : UI->getParent();
  /external/llvm/include/llvm/IR/
Value.h 154 use_iterator_impl<Use> UI;
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/Transforms/IPO/
ArgumentPromotion.cpp 519 // Couldn't we just do increment the UI iterator earlier and erase the
675 Instruction *UI = cast<Instruction>(U);
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());
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
AlphabeticIndexTest.java 374 StringBuilder UI = new StringBuilder();
391 UI.setLength(0);
392 UI.append(desiredLocale + "\t");
398 showLabelAtTop(UI, bucket.getLabel());
401 logln(UI.toString());
433 showLabelInList(UI, bucket.getLabel());
435 showIndexedItem(UI, item.getName(), item.getData());
437 logln(UI.toString());
455 StringBuilder UI = new StringBuilder();
458 showLabelInList(UI, bucket.getLabel())
    [all...]
  /external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
AlphabeticIndexTest.java 370 StringBuilder UI = new StringBuilder();
387 UI.setLength(0);
388 UI.append(desiredLocale + "\t");
394 showLabelAtTop(UI, bucket.getLabel());
397 logln(UI.toString());
429 showLabelInList(UI, bucket.getLabel());
431 showIndexedItem(UI, item.getName(), item.getData());
433 logln(UI.toString());
451 StringBuilder UI = new StringBuilder();
454 showLabelInList(UI, bucket.getLabel())
    [all...]
  /external/clang/utils/TableGen/
ClangAttrEmitter.cpp 792 for (const auto &UI : uniques) {
793 OS << " case " << getAttrName() << "Attr::" << UI << ":\n";
794 OS << " OS << \" " << UI << "\";\n";
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineRegisterInfo.h 437 use_iterator UI = use_begin(RegNo);
438 if (UI == use_end())
440 return ++UI == use_end();
    [all...]

Completed in 734 milliseconds

1 2 3