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

123

/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/tcpdump/
H A Dnetbios.h15 #define UI 0x03 /* 802.2 flags */ macro
/external/chromium_org/chrome/browser/ui/android/
H A Dlogin_prompt_android.cc33 DCHECK_CURRENTLY_ON(BrowserThread::UI); variable
43 DCHECK_CURRENTLY_ON(BrowserThread::UI); variable
/external/chromium_org/chrome/browser/ui/views/
H A Dlogin_prompt_views.cc25 // the UI thread) to the net::URLRequest (on the I/O thread).
57 DCHECK_CURRENTLY_ON(content::BrowserThread::UI); variable
68 DCHECK_CURRENTLY_ON(content::BrowserThread::UI); variable
82 DCHECK_CURRENTLY_ON(content::BrowserThread::UI); variable
88 DCHECK_CURRENTLY_ON(content::BrowserThread::UI); variable
111 DCHECK_CURRENTLY_ON(content::BrowserThread::UI); variable
121 // or CancelAuth (say, if the request was cancelled before the UI thread got
122 // control). However, that's OK since any UI interaction in those functions
123 // will occur via an InvokeLater on the UI thread, which is guaranteed
/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 DLICM.cpp513 Instruction *UI = cast<Instruction>(U); local
514 if (PHINode *PN = dyn_cast<PHINode>(UI)) {
536 if (CurLoop->contains(UI))
818 Instruction *UI = dyn_cast<Instruction>(U); local
819 if (!UI || !CurLoop->contains(UI))
824 if (LoadInst *load = dyn_cast<LoadInst>(UI)) {
828 } else if (StoreInst *store = dyn_cast<StoreInst>(UI)) {
831 if (UI->getOperand(1) != ASIV)
847 if (isGuaranteedToExecute(*UI)) {
[all...]
/external/lldb/utils/vim-lldb/python-vim-lldb/
H A Dvim_ui.py2 # 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 Dlldb_controller.py9 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/chromium_org/content/public/browser/
H A Dbrowser_thread.h66 UI, enumerator in enum:content::BrowserThread::ID
268 struct DeleteOnUIThread : public DeleteOnThread<UI> { };
/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);
H A DLoopInfo.cpp183 Instruction *UI = cast<Instruction>(U.getUser()); local
184 BasicBlock *UserBB = UI->getParent();
185 if (PHINode *P = dyn_cast<PHINode>(UI))
/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);
175 void Dumper::printUnwindCode(const UnwindInfo& UI, ArrayRef<UnwindCode> UC) { argument
197 if (UI.getFrameRegister() == 0)
200 OS << " reg=" << getUnwindRegisterName(UI.getFrameRegister())
201 << format(", offset=0x%X", UI.getFrameOffset() * 16);
233 off_t Offset, const UnwindInfo &UI) {
235 SW.printNumber("Version", UI.getVersion());
236 SW.printFlags("Flags", UI
232 printUnwindInfo(const Context &Ctx, const coff_section *Section, off_t Offset, const UnwindInfo &UI) argument
296 const auto UI = reinterpret_cast<const UnwindInfo*>(Contents.data() + Offset); local
[all...]
/external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/client/
H A Dmain_wnd.h60 enum UI { enum in class:MainWindow
72 virtual UI current_ui() = 0;
110 virtual UI current_ui() { return ui_; }
197 UI ui_;
/external/llvm/lib/CodeGen/
H A DMachineRegisterInfo.cpp321 use_nodbg_iterator UI = use_nodbg_begin(RegNo); local
322 if (UI == use_nodbg_end())
324 return ++UI == use_nodbg_end();
H A DSjLjEHPrepare.cpp311 Instruction *UI = cast<Instruction>(U); local
312 if (UI->getParent() != BB || isa<PHINode>(UI))
313 Users.push_back(UI);
H A DTailDuplication.cpp267 MachineRegisterInfo::use_iterator UI = MRI->use_begin(VReg); local
268 while (UI != MRI->use_end()) {
269 MachineOperand &UseMO = *UI;
271 ++UI;
/external/llvm/lib/Transforms/Utils/
H A DSimplifyIndVar.cpp345 Instruction *UI = cast<Instruction>(U); local
351 if (UI != Def && Simplified.insert(UI))
352 SimpleIVUsers.push_back(std::make_pair(UI, Def));
/external/llvm/tools/llvm-objdump/
H A DCOFFDump.cpp410 static void printWin64EHUnwindInfo(const Win64EH::UnwindInfo *UI) { argument
414 outs() << " Version: " << static_cast<int>(UI->getVersion()) << "\n";
415 outs() << " Flags: " << static_cast<int>(UI->getFlags());
416 if (UI->getFlags()) {
417 if (UI->getFlags() & UNW_ExceptionHandler)
419 if (UI->getFlags() & UNW_TerminateHandler)
421 if (UI->getFlags() & UNW_ChainInfo)
425 outs() << " Size of prolog: " << static_cast<int>(UI->PrologSize) << "\n";
426 outs() << " Number of Codes: " << static_cast<int>(UI->NumCodes) << "\n";
428 if (UI
[all...]
/external/chromium_org/extensions/browser/
H A Dextension_function_dispatcher.cc51 // The ApiActivityMonitor can only be accessed from the main (UI) thread. If
53 if (!BrowserThread::CurrentlyOn(BrowserThread::UI)) {
54 BrowserThread::PostTask(BrowserThread::UI,
161 DCHECK_CURRENTLY_ON(BrowserThread::UI); variable
/external/clang/test/CodeGen/
H A Dxcore-stringtype.c23 unsigned short US, signed short SS, int I, unsigned int UI,
22 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/IR/
H A DValue.cpp93 const_use_iterator UI = use_begin(), E = use_end(); local
95 for (; N; --N, ++UI)
96 if (UI == E) return false; // Too few.
97 return UI == E;
104 const_use_iterator UI = use_begin(), E = use_end(); local
106 for (; N; --N, ++UI)
107 if (UI == E) return false; // Too few.
122 const_user_iterator UI = user_begin(), UE = user_end(); local
123 for (; BI != BE && UI != UE; ++BI, ++UI) {
[all...]
/external/chromium_org/third_party/openssl/openssl/crypto/
H A Dossl_typ.h166 typedef struct ui_st UI; typedef in typeref:struct:ui_st
/external/chromium_org/third_party/openssl/openssl/include/openssl/
H A Dossl_typ.h166 typedef struct ui_st UI; typedef in typeref:struct:ui_st
/external/llvm/lib/Transforms/IPO/
H A DArgumentPromotion.cpp402 // Couldn't we just do increment the UI iterator earlier and erase the
564 Instruction *UI = cast<Instruction>(U); local
565 assert(isa<LoadInst>(UI) || isa<GetElementPtrInst>(UI));
567 Indices.reserve(UI->getNumOperands() - 1);
571 for (User::op_iterator II = UI->op_begin() + 1, IE = UI->op_end();
579 if (LoadInst *L = dyn_cast<LoadInst>(UI))
583 OrigLoad = cast<LoadInst>(UI->user_back());
/external/openssl/crypto/
H A Dossl_typ.h166 typedef struct ui_st UI; typedef in typeref:struct:ui_st

Completed in 606 milliseconds

123