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

1 2

  /external/tcpdump/
netbios.h 15 #define UI 0x03 /* 802.2 flags */
  /external/llvm/lib/CodeGen/
MachineRegisterInfo.cpp 129 use_iterator UI = use_begin(RegNo);
130 if (UI == use_end())
132 return ++UI == use_end();
136 use_nodbg_iterator UI = use_nodbg_begin(RegNo);
137 if (UI == use_nodbg_end())
139 return ++UI == use_nodbg_end();
147 for (use_iterator UI = use_begin(Reg), UE = use_end(); UI != UE; ++UI)
148 UI.getOperand().setIsKill(false)
    [all...]
ShadowStackGC.cpp 144 UnwindInst *UI = new UnwindInst(F.getContext(), CleanupBB);
175 Builder.SetInsertPoint(UI->getParent(), UI);
TailDuplication.cpp 242 MachineRegisterInfo::use_iterator UI = MRI->use_begin(VReg);
243 while (UI != MRI->use_end()) {
244 MachineOperand &UseMO = UI.getOperand();
245 MachineInstr *UseMI = &*UI;
246 ++UI;
273 MachineRegisterInfo::use_iterator UI = MRI->use_begin(Src);
274 if (++UI == MRI->use_end()) {
320 for (MachineRegisterInfo::use_iterator UI = MRI->use_begin(Reg),
321 UE = MRI->use_end(); UI != UE; ++UI) {
    [all...]
  /external/llvm/lib/VMCore/
Value.cpp 89 const_use_iterator UI = use_begin(), E = use_end();
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();
102 for (; N; --N, ++UI)
103 if (UI == E) return false; // Too few.
  /external/llvm/lib/Transforms/Scalar/
MemCpyOptimizer.cpp 635 User *UI = srcUseList.pop_back_val();
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) {
    [all...]
  /external/llvm/lib/Transforms/Utils/
Local.cpp 296 Value::use_iterator UI = I->use_begin();
298 if (UI == UE)
301 User *TheUse = *UI;
302 for (++UI; UI != UE; ++UI) {
303 if (*UI != TheUse)
569 for (Value::use_iterator UI = BBI->use_begin(), E = BBI->use_end();
570 UI != E; ++UI) {
    [all...]
  /packages/apps/Browser/src/com/android/browser/
UI.java 33 * UI interface definitions
35 public interface UI {
  /external/openssl/crypto/
ossl_typ.h 164 typedef struct ui_st UI;
  /external/openssl/include/openssl/
ossl_typ.h 164 typedef struct ui_st UI;
  /external/bluetooth/hcidump/parser/
rfcomm.h 85 #define UI 0x03 /* unnumbered information (with all data check) */
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 257 Value::use_iterator UI = Placeholder->use_begin();
258 User *U = *UI;
263 UI.getUse().set(RealVal);
    [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp 161 for (Value::const_use_iterator UI = C->use_begin(), E = C->use_end(); UI != E;
162 ++UI)
163 if (const Constant *CU = dyn_cast<Constant>(*UI)) {
177 for (Value::const_use_iterator UI = V->use_begin(), E = V->use_end(); UI != E;
178 ++UI) {
179 const User *U = *UI;
310 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E;)
    [all...]
  /frameworks/base/core/java/android/provider/
Contacts.java 188 // For now we only support a single account and the UI doesn't know what
190 // Some day when we add multiple accounts to the UI this should honor the account
223 // For now we only support a single account and the UI doesn't know what
225 // Some day when we add multiple accounts to the UI this should honor the account
    [all...]
ContactsContract.java 202 * This API does not access disk, and should be safe to invoke from the UI thread.
430 * performed on the UI thread because they are always unblocking.
477 * An optional name that can be used in the UI to represent this directory,
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp 270 Value::use_iterator UI = Placeholder->use_begin();
271 User *U = *UI;
276 UI.getUse().set(RealVal);
    [all...]
  /external/clang/lib/Sema/
SemaLookup.cpp 725 UnqualUsingDirectiveSet::const_iterator UI, UEnd;
726 llvm::tie(UI, UEnd) = UDirs.getNamespacesFor(NS);
728 for (; UI != UEnd; ++UI)
729 if (LookupDirect(S, R, UI->getNominatedNamespace()))
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]
  /external/qemu/
ppc-dis.c 816 /* The UI field in a D form instruction. */
817 #define UI TO + 1
821 #define VA UI + 1
    [all...]
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/11/
android.jar 
  /prebuilt/sdk/12/
android.jar 
  /prebuilt/sdk/13/
android.jar 
  /prebuilt/sdk/14/
android.jar 
  /prebuilt/sdk/4/
android.jar 

Completed in 1818 milliseconds

1 2