Searched defs:UI (Results 1 - 25 of 54) sorted by path

123

/external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
H A Devent_router.cc350 DCHECK_CURRENTLY_ON(BrowserThread::UI); variable
363 DCHECK_CURRENTLY_ON(BrowserThread::UI); variable
390 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
398 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
495 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
535 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
559 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
585 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
632 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
640 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
[all...]
/external/chromium_org/chrome/browser/media_galleries/linux/
H A Dmtp_device_delegate_impl_linux.cc58 DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
65 // Called on the UI thread to dispatch the request to the
74 DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
87 // Called on the UI thread to dispatch the request to the
99 DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
109 // Called on the UI thread to dispatch the request to the
121 DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
131 // Called on the UI thread to dispatch the request to the
146 DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
156 // Called on the UI threa
470 content::BrowserThread::UI, member in class:content::BrowserThread
504 content::BrowserThread::UI, member in class:content::BrowserThread
543 content::BrowserThread::UI, member in class:content::BrowserThread
574 content::BrowserThread::UI, member in class:content::BrowserThread
[all...]
/external/chromium_org/chrome/browser/ui/android/
H A Dlogin_prompt_android.cc34 DCHECK_CURRENTLY_ON(BrowserThread::UI); variable
44 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/chromium_org/content/public/browser/
H A Dbrowser_thread.h66 UI, enumerator in enum:content::BrowserThread::ID
277 struct DeleteOnUIThread : public DeleteOnThread<UI> { };
/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/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...
/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/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp1200 WeakUseVector::const_iterator UI = Uses.begin(), UE = Uses.end(); local
1201 for ( ; UI != UE; ++UI) {
1202 if (UI->isUnsafe())
1207 if (UI == UE)
1214 if (UI == Uses.begin()) {
1215 WeakUseVector::const_iterator UI2 = UI;
1221 if (!isInLoop(Ctx, PM, UI->getUseExpr()))
1239 UsesByStmt.push_back(StmtUsesPair(UI->getUseExpr(), I));
H A DSemaChecking.cpp6598 void addUsage(UsageInfo &UI, Object O, Expr *Ref, UsageKind UK) { argument
6599 Usage &U = UI.Uses[UK];
6608 void checkUsage(Object O, UsageInfo &UI, Expr *Ref, UsageKind OtherKind, argument
6610 if (UI.Diagnosed)
6613 const Usage &U = UI.Uses[OtherKind];
6626 UI.Diagnosed = true;
H A DSemaLookup.cpp769 UnqualUsingDirectiveSet::const_iterator UI, UEnd; local
770 std::tie(UI, UEnd) = UDirs.getNamespacesFor(NS);
772 for (; UI != UEnd; ++UI)
773 if (LookupDirect(S, R, UI->getNominatedNamespace()))
3179 UnqualUsingDirectiveSet::const_iterator UI, UEnd; local
3180 std::tie(UI, UEnd) = UDirs.getNamespacesFor(Entity);
3181 for (; UI != UEnd; ++UI)
3182 LookupVisibleDecls(const_cast<DeclContext *>(UI
[all...]
/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/clang/utils/TableGen/
H A DClangAttrEmitter.cpp747 for (const auto &UI : uniques) {
748 OS << " case " << getAttrName() << "Attr::" << UI << ":\n";
749 OS << " OS << \" " << UI << "\";\n"; variable
/external/lldb/utils/vim-lldb/python-vim-lldb/
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...]
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()
/external/llvm/include/llvm/CodeGen/
H A DMachineRegisterInfo.h438 use_iterator UI = use_begin(RegNo); local
439 if (UI == use_end())
441 return ++UI == use_end();
/external/llvm/include/llvm/IR/
H A DValue.h138 use_iterator_impl<Use> UI; member in class:llvm::Value::user_iterator_impl
139 explicit user_iterator_impl(Use *U) : UI(U) {}
148 bool operator==(const user_iterator_impl &x) const { return UI == x.UI; }
155 ++UI;
166 return UI->getUser();
172 return user_iterator_impl<const UserTy>(*UI);
175 Use &getUse() const { return *UI; }
179 unsigned getOperandNo() const { return UI->getOperandNo(); }
/external/llvm/include/llvm/TableGen/
H A DRecord.h105 virtual Init *convertValue( UnsetInit *UI) { return nullptr; } argument
111 virtual Init *convertValue( UnOpInit *UI) { argument
112 return convertValue((TypedInit*)UI);
114 virtual Init *convertValue( BinOpInit *UI) { argument
115 return convertValue((TypedInit*)UI);
117 virtual Init *convertValue( TernOpInit *UI) { argument
118 return convertValue((TypedInit*)UI);
153 Init *convertValue( UnsetInit *UI) override { return (Init*)UI; }
162 Init *convertValue( UnOpInit *UI) overrid
[all...]
/external/llvm/lib/Analysis/
H A DLoopInfo.cpp183 Instruction *UI = cast<Instruction>(U.getUser()); local
184 BasicBlock *UserBB = UI->getParent();
185 if (PHINode *P = dyn_cast<PHINode>(UI))
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/Bitcode/Reader/
H A DBitcodeReader.cpp352 auto UI = Placeholder->user_begin(); local
353 User *U = *UI;
358 UI.getUse().set(RealVal);
3231 for (auto UI = I->first->user_begin(), UE = I->first->user_end();
3232 UI != UE;) {
3233 if (CallInst* CI = dyn_cast<CallInst>(*UI++))
3286 for (auto UI = I->first->user_begin(), UE = I->first->user_end();
3287 UI != UE;) {
3288 if (CallInst* CI = dyn_cast<CallInst>(*UI++))
/external/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp350 const Instruction *UI = cast<Instruction>(U); local
351 if (UI->getParent() != DestBB || !isa<PHINode>(UI))
356 if (UI->getParent() == DestBB) {
357 if (const PHINode *UPN = dyn_cast<PHINode>(UI))
486 for (Value::user_iterator UI = CI->user_begin(), E = CI->user_end();
487 UI != E; ) {
488 Use &TheUse = UI.getUse();
489 Instruction *User = cast<Instruction>(*UI);
499 ++UI;
2903 Instruction *UI = cast<Instruction>(U); local
2916 Instruction *UI = cast<Instruction>(U); local
3075 Instruction *UI = cast<Instruction>(U); local
[all...]
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 DScheduleDAGInstrs.cpp419 VReg2UseMap::iterator UI = VRegUses.find(Reg); local
420 for (; UI != VRegUses.end(); ++UI) {
421 if (UI->SU == SU)
424 if (UI == VRegUses.end())

Completed in 462 milliseconds

123