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

1 2

  /external/tcpdump/
netbios.h 15 #define UI 0x03 /* 802.2 flags */
  /external/llvm/tools/llvm-objdump/
COFFDump.cpp 306 const Win64EH::UnwindInfo *UI =
313 outs() << " Version: " << static_cast<int>(UI->getVersion()) << "\n";
314 outs() << " Flags: " << static_cast<int>(UI->getFlags());
315 if (UI->getFlags()) {
316 if (UI->getFlags() & UNW_ExceptionHandler)
318 if (UI->getFlags() & UNW_TerminateHandler)
320 if (UI->getFlags() & UNW_ChainInfo)
325 << static_cast<int>(UI->PrologSize) << "\n";
327 << static_cast<int>(UI->NumCodes) << "\n";
329 if (UI->getFrameRegister())
    [all...]
  /external/llvm/lib/CodeGen/
MachineRegisterInfo.cpp 265 use_nodbg_iterator UI = use_nodbg_begin(RegNo);
266 if (UI == use_nodbg_end())
268 return ++UI == use_nodbg_end();
276 for (use_iterator UI = use_begin(Reg), UE = use_end(); UI != UE; ++UI)
277 UI.getOperand().setIsKill(false);
TailDuplication.cpp 253 MachineRegisterInfo::use_iterator UI = MRI->use_begin(VReg);
254 while (UI != MRI->use_end()) {
255 MachineOperand &UseMO = UI.getOperand();
256 MachineInstr *UseMI = &*UI;
257 ++UI;
331 for (MachineRegisterInfo::use_iterator UI = MRI->use_begin(Reg),
332 UE = MRI->use_end(); UI != UE; ++UI) {
333 MachineInstr *UseMI = &*UI;
    [all...]
  /external/llvm/lib/IR/
Value.cpp 93 const_use_iterator UI = use_begin(), E = use_end();
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();
106 for (; N; --N, ++UI)
107 if (UI == E) return false; // Too few.
  /packages/apps/Browser/src/com/android/browser/
UI.java 33 * UI interface definitions
35 public interface UI {
  /external/llvm/include/llvm/CodeGen/
MachineRegisterInfo.h 229 use_iterator UI = use_begin(RegNo);
230 if (UI == use_end())
232 return ++UI == use_end();
  /external/llvm/lib/Transforms/Utils/
Local.cpp 358 Value::use_iterator UI = I->use_begin();
360 if (UI == UE)
363 User *TheUse = *UI;
364 for (++UI; UI != UE; ++UI) {
365 if (*UI != TheUse)
618 for (Value::use_iterator UI = BBI->use_begin(), E = BBI->use_end();
619 UI != E; ++UI) {
    [all...]
  /external/llvm/lib/Transforms/Scalar/
MemCpyOptimizer.cpp 654 User *UI = srcUseList.pop_back_val();
656 if (isa<BitCastInst>(UI)) {
657 for (User::use_iterator I = UI->use_begin(), E = UI->use_end();
660 } else if (GetElementPtrInst *G = dyn_cast<GetElementPtrInst>(UI)) {
662 for (User::use_iterator I = UI->use_begin(), E = UI->use_end();
667 } else if (UI != C && UI != cpy) {
    [all...]
  /external/openssl/crypto/
ossl_typ.h 166 typedef struct ui_st UI;
  /external/openssl/include/openssl/
ossl_typ.h 166 typedef struct ui_st UI;
  /external/clang/lib/Sema/
AnalysisBasedWarnings.cpp     [all...]
SemaLookup.cpp 752 UnqualUsingDirectiveSet::const_iterator UI, UEnd;
753 llvm::tie(UI, UEnd) = UDirs.getNamespacesFor(NS);
755 for (; UI != UEnd; ++UI)
756 if (LookupDirect(S, R, UI->getNominatedNamespace()))
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 315 Value::use_iterator UI = Placeholder->use_begin();
316 User *U = *UI;
321 UI.getUse().set(RealVal);
    [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp 178 for (Value::const_use_iterator UI = C->use_begin(), E = C->use_end(); UI != E;
179 ++UI)
180 if (const Constant *CU = dyn_cast<Constant>(*UI)) {
194 for (Value::const_use_iterator UI = V->use_begin(), E = V->use_end(); UI != E;
195 ++UI) {
196 const User *U = *UI;
401 for (Value::use_iterator UI = GV->use_begin(), E = GV->use_end();
402 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 212 * This API does not access disk, and should be safe to invoke from the UI thread.
440 * performed on the UI thread because they are always unblocking.
487 * An optional name that can be used in the UI to represent this directory,
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp 332 Value::use_iterator UI = Placeholder->use_begin();
333 User *U = *UI;
338 UI.getUse().set(RealVal);
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp 612 Value::use_iterator UI = Placeholder->use_begin();
613 User *U = *UI;
618 UI.getUse().set(RealVal);
    [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...]
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/13/
android.jar 

Completed in 1084 milliseconds

1 2