HomeSort by relevance Sort by last modified time
    Searched refs:UID (Results 26 - 50 of 56) sorted by null

12 3

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
X509Name.java 215 public static final ASN1ObjectIdentifier UID = new ASN1ObjectIdentifier("0.9.2342.19200300.100.1.1");
275 DefaultSymbols.put(UID, "UID");
306 RFC2253Symbols.put(UID, "UID");
329 DefaultLookUp.put("uid", UID);
    [all...]
  /external/llvm/include/llvm/CodeGen/
AsmPrinter.h 349 MCSymbol *GetJTSetSymbol(unsigned UID, unsigned MBBID) const;
520 const MachineBasicBlock *MBB, unsigned uid) const;
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfCompileUnit.h 69 DwarfCompileUnit(unsigned UID, DICompileUnit Node, AsmPrinter *A,
AsmPrinter.cpp     [all...]
DwarfUnit.cpp 68 DwarfUnit::DwarfUnit(unsigned UID, dwarf::Tag UnitTag, DICompileUnit Node,
70 : UniqueID(UID), CUNode(Node), UnitDie(UnitTag), DebugInfoOffset(0), Asm(A),
77 DwarfTypeUnit::DwarfTypeUnit(unsigned UID, DwarfCompileUnit &CU, AsmPrinter *A,
80 : DwarfUnit(UID, dwarf::DW_TAG_type_unit, CU.getCUNode(), A, DW, DWU),
    [all...]
DwarfCompileUnit.cpp 18 DwarfCompileUnit::DwarfCompileUnit(unsigned UID, DICompileUnit Node,
21 : DwarfUnit(UID, dwarf::DW_TAG_compile_unit, Node, A, DW, DWU),
  /packages/apps/Tag/canon/src/com/android/apps/tagcanon/
TagCanon.java 48 static final byte[] UID = new byte[] { 0x05, 0x00, 0x03, 0x08 };
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadReceiver.java 116 final int uid = intent.getIntExtra(Intent.EXTRA_UID, -1); local
118 Downloads.Impl.ALL_DOWNLOADS_CONTENT_URI, Constants.UID + "=" + uid, null);
121 Slog.d(TAG, "Deleted " + count + " downloads owned by UID " + uid);
DownloadProvider.java 87 /** URI matcher constant for the URI of all downloads belonging to the calling UID */
89 /** URI matcher constant for the URI of an individual download belonging to the calling UID */
414 Constants.UID + " INTEGER, " +
451 // Initialize the system uid
453 // Initialize the default container uid. Package name hardcoded
463 mDefContainerUid = appInfo.uid;
625 int uid = Binder.getCallingUid(); local
627 if (uid == 0 || mSystemFacade.userOwnsPackage(uid, pckg)) {
644 // UID, PID column
    [all...]
DownloadInfo.java 100 info.mUid = getInt(Constants.UID);
  /external/clang/lib/Basic/
FileManager.cpp 313 UFE.UID = NextFileUID++;
386 UFE->UID = NextFileUID++;
  /external/llvm/include/llvm/Support/
FileSystem.h 170 uid_t UID, gid_t GID, off_t Size)
171 : fs_st_dev(Dev), fs_st_ino(Ino), fs_st_mtime(MTime), fs_st_uid(UID),
  /external/libnfc-nxp/src/
phFriNfc_NdefMap.h 161 #define PH_FRINFC_NDEFMAP_TOPAZ_UID_SIZE 0x04 /**< \internal UID size returned by READID command = 4 bytes */
745 /** To store the UID */
746 uint8_t UID[PH_FRINFC_NDEFMAP_TOPAZ_UID_SIZE];
    [all...]
  /external/llvm/utils/TableGen/
X86RecognizableInstr.cpp 193 InstrUID uid) {
194 UID = uid;
198 Spec = &tables.specForUID(UID);
267 InstrUID uid)
273 RecognizableInstr recogInstr(tables, insn, uid);
898 UID, Is32Bit, IgnoresVEX_L, AddressSize);
904 UID, Is32Bit, IgnoresVEX_L, AddressSize);
    [all...]
  /packages/services/Telephony/src/com/android/phone/common/mail/store/
ImapFolder.java 133 // * OK [UIDNEXT 57576] Predicted next UID
222 public Message getMessage(String uid) throws MessagingException {
225 final String[] uids = searchForUids(ImapConstants.UID + " " + uid);
227 if (uids[i].equals(uid)) {
228 return new ImapMessage(uid, this);
254 final String uid = uids[i]; local
255 final ImapMessage message = new ImapMessage(uid, this);
284 * FLAGS - UID FETCH (FLAGS)
285 * ENVELOPE - UID FETCH (INTERNALDATE UID RFC822.SIZE FLAGS BODY.PEEK
343 final String uid = fetchList.getKeyedStringOrEmpty(ImapConstants.UID) local
    [all...]
  /packages/apps/Email/provider_src/com/android/email/mail/store/
ImapFolder.java 132 // * OK [UIDNEXT 57576] Predicted next UID
272 // Build a message map for faster UID matching
289 // No callback provided to report of UID changes; nothing more to do here
316 // If the server doesn't support UIDPLUS, try a different way to get the new UID(s)
442 public Message getMessage(String uid) throws MessagingException {
445 final String[] uids = searchForUids(ImapConstants.UID + " " + uid);
447 if (uids[i].equals(uid)) {
448 return new ImapMessage(uid, this);
597 final String uid = uids[i] local
693 final String uid = fetchList.getKeyedStringOrEmpty(ImapConstants.UID) local
    [all...]
  /external/libphonenumber/demo/war/WEB-INF/lib/
commons-fileupload-1.2.1.jar 
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
imaplib.py 78 'UID': ('SELECTED',),
438 enclosed in parentheses, eg: "(UID BODY[TEXT])".
743 def uid(self, command, *args): member in class:IMAP4
744 """Execute "command arg ..." with messages identified by UID,
747 (typ, [data]) = <instance>.uid(command, arg1, arg2, ...)
753 raise self.error("Unknown IMAP4 UID command: %s" % command)
759 name = 'UID'
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
imaplib.py 78 'UID': ('SELECTED',),
438 enclosed in parentheses, eg: "(UID BODY[TEXT])".
743 def uid(self, command, *args): member in class:IMAP4
744 """Execute "command arg ..." with messages identified by UID,
747 (typ, [data]) = <instance>.uid(command, arg1, arg2, ...)
753 raise self.error("Unknown IMAP4 UID command: %s" % command)
759 name = 'UID'
    [all...]
  /external/clang/lib/Serialization/
ASTWriter.cpp     [all...]
  /external/clang/lib/Driver/
Tools.cpp     [all...]
  /external/chromium-trace/trace-viewer/tracing/third_party/css-element-queries/test/
mootools-core-full-nocompat.js 406 var UID = Date.now();
409 return (UID++).toString(36);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
tree.h 2346 unsigned int uid; variable
2644 unsigned int uid; variable
    [all...]
  /external/llvm/tools/llvm-objdump/
MachODump.cpp     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/
pdebuild.jar 

Completed in 1077 milliseconds

12 3