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

1 2

  /external/caliper/caliper/src/main/java/com/google/caliper/model/
Defaults.java 21 import java.util.UUID;
28 static final UUID UUID = new UUID(0L, 0L);
  /external/llvm/unittests/IR/
DebugTypeODRUniquingTest.cpp 28 MDString &UUID = *MDString::get(Context, "string");
32 Context, UUID, dwarf::DW_TAG_class_type, nullptr, nullptr, 0, nullptr,
37 EXPECT_FALSE(DICompositeType::getODRTypeIfExists(Context, UUID));
41 Context, UUID, dwarf::DW_TAG_class_type, nullptr, nullptr, 0, nullptr,
43 EXPECT_EQ(UUID.getString(), CT.getIdentifier());
46 EXPECT_EQ(&CT, DICompositeType::getODRTypeIfExists(Context, UUID));
48 &CT, DICompositeType::getODRType(Context, UUID, dwarf::DW_TAG_class_type,
52 Context, UUID, dwarf::DW_TAG_class_type,
58 EXPECT_FALSE(DICompositeType::getODRTypeIfExists(Context, UUID));
62 EXPECT_FALSE(DICompositeType::getODRTypeIfExists(Context, UUID));
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/IR/
DebugTypeODRUniquingTest.cpp 28 MDString &UUID = *MDString::get(Context, "string");
32 Context, UUID, dwarf::DW_TAG_class_type, nullptr, nullptr, 0, nullptr,
37 EXPECT_FALSE(DICompositeType::getODRTypeIfExists(Context, UUID));
41 Context, UUID, dwarf::DW_TAG_class_type, nullptr, nullptr, 0, nullptr,
43 EXPECT_EQ(UUID.getString(), CT.getIdentifier());
46 EXPECT_EQ(&CT, DICompositeType::getODRTypeIfExists(Context, UUID));
48 Context, UUID, dwarf::DW_TAG_class_type, nullptr, nullptr,
53 Context, UUID, dwarf::DW_TAG_class_type,
59 EXPECT_FALSE(DICompositeType::getODRTypeIfExists(Context, UUID));
63 EXPECT_FALSE(DICompositeType::getODRTypeIfExists(Context, UUID));
    [all...]
  /external/e2fsprogs/lib/uuid/
uuid_time.c 2 * uuid_time.c --- Interpret the time field from a uuid. This program
3 * violates the UUID abstraction barrier by reaching into the guts
4 * of a UUID and interpreting it.
42 #define UUID MYUUID
61 struct uuid uuid; local
65 uuid_unpack(uu, &uuid);
67 high = uuid.time_mid | ((uuid.time_hi_and_version & 0xFFF) << 16);
68 clock_reg = uuid.time_low | ((uint64_t) high << 32)
82 struct uuid uuid; local
90 struct uuid uuid; local
    [all...]
tst_uuid.c 2 * tst_uuid.c --- test program from the UUID library
40 #define UUID MYUUID
46 #include <uuid/uuid.h>
48 static int test_uuid(const char * uuid, int isValid)
54 parsedOk = uuid_parse(uuid, uuidBits) == 0;
56 printf("%s is %s", uuid, validStr[isValid]);
85 printf("UUID generate = %s\n", str);
86 printf("UUID: ");
92 printf("UUID type = %d, UUID variant = %d\n", type, variant)
    [all...]
gen_uuid.c 2 * gen_uuid.c --- generate a DCE-compatible uuid
47 #define UUID MYUUID
494 * Try using the uuidd daemon to generate the UUID
583 struct uuid uu;
610 THREAD_LOCAL struct uuid uu;
653 struct uuid uu;
676 /* No real reason to use the daemon for random uuid's -- yet */
  /external/libchrome/device/bluetooth/bluez/
bluetooth_service_attribute_value_bluez.h 23 // For example, a UUID can have the sizes, 2, 4 or 16 bytes.
24 // value: This is the raw value of the attribute. For example, for a UUID, it
25 // will be the string representation of the UUID. For a sequence, it
29 enum Type { NULLTYPE = 0, UINT, INT, UUID, STRING, BOOL, SEQUENCE, URL };
  /external/caliper/caliper/src/test/java/com/google/caliper/runner/
ServerSocketServiceTest.java 35 import java.util.UUID;
58 UUID id = UUID.randomUUID();
67 UUID id = UUID.randomUUID();
82 UUID id = UUID.randomUUID();
96 service.getConnection(UUID.randomUUID());
108 private OpenedSocket openConnectionAndIdentify(UUID id) throws IOException {
  /external/mockito/src/test/java/org/mockito/internal/util/reflection/
BeanPropertySetterTest.java 13 import java.util.UUID;
40 Field theField = someBean.getClass().getDeclaredField("UUID");
41 UUID valueToInject = new UUID(0L, 0L);
49 assertSame(valueToInject, someBean.UUID);
153 private UUID UUID;
156 public void setUUID(UUID UUID) {
158 this.UUID = UUID
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
uuid.py 1 r"""UUID objects (universally unique identifiers) according to RFC 4122.
3 This module provides immutable UUID objects (class UUID) and the functions
8 Note that uuid1() may compromise privacy since it creates a UUID containing
9 the computer's network address. uuid4() creates a random UUID.
13 >>> import uuid
15 # make a UUID based on the host ID and current time
16 >>> uuid.uuid1()
17 UUID('a8098c1a-f86e-11da-bd1a-00112444be1e')
19 # make a UUID using an MD5 hash of a namespace UUID and a name
    [all...]
  /external/python/cpython2/Lib/
uuid.py 1 r"""UUID objects (universally unique identifiers) according to RFC 4122.
3 This module provides immutable UUID objects (class UUID) and the functions
8 Note that uuid1() may compromise privacy since it creates a UUID containing
9 the computer's network address. uuid4() creates a random UUID.
13 >>> import uuid
15 # make a UUID based on the host ID and current time
16 >>> uuid.uuid1()
17 UUID('a8098c1a-f86e-11da-bd1a-00112444be1e')
19 # make a UUID using an MD5 hash of a namespace UUID and a nam
    [all...]
  /external/python/cpython3/Lib/
uuid.py 1 r"""UUID objects (universally unique identifiers) according to RFC 4122.
3 This module provides immutable UUID objects (class UUID) and the functions
8 Note that uuid1() may compromise privacy since it creates a UUID containing
9 the computer's network address. uuid4() creates a random UUID.
13 >>> import uuid
15 # make a UUID based on the host ID and current time
16 >>> uuid.uuid1() # doctest: +SKIP
17 UUID('a8098c1a-f86e-11da-bd1a-00112444be1e')
19 # make a UUID using an MD5 hash of a namespace UUID and a nam
    [all...]
  /frameworks/av/include/media/
MediaExtractorPluginHelper.h 441 : invalid_uuid_string("uuid: bad digits");
455 static_assert(N == 37, "uuid: wrong length");
486 // (e.g. UUID("7d613858-5837-4a38-84c5-332d1cddee27") is the same as
490 #define UUID(str) []{ constexpr media_uuid_t uuid = constUUID(str); return uuid; }()
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/BinaryFormat/
COFF.h 84 uint8_t UUID[16];
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Bitcode/Reader/
MetadataLoader.cpp 184 void addTypeRef(MDString &UUID, DICompositeType &CT);
296 void BitcodeReaderMetadataList::addTypeRef(MDString &UUID,
298 assert(CT.getRawIdentifier() == &UUID && "Mismatched UUID");
300 OldTypeRefs.FwdDecls.insert(std::make_pair(&UUID, &CT));
302 OldTypeRefs.Final.insert(std::make_pair(&UUID, &CT));
306 auto *UUID = dyn_cast_or_null<MDString>(MaybeUUID);
307 if (LLVM_LIKELY(!UUID))
310 if (auto *CT = OldTypeRefs.Final.lookup(UUID))
313 auto &Ref = OldTypeRefs.Unknown[UUID];
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/DWARF/
DWARFContext.cpp 74 /// Dump the UUID load command.
80 raw_ostream::uuid_t UUID;
82 if (LC.C.cmdsize < sizeof(UUID) + sizeof(LC.C)) {
83 OS << "error: UUID load command is too short.\n";
86 OS << "UUID: ";
87 memcpy(&UUID, LC.Ptr+sizeof(LC.C), sizeof(UUID));
88 OS.write_uuid(UUID);
315 // Print UUID header.
    [all...]
  /frameworks/av/media/libmediaplayer2/nuplayer2/
NuPlayer2.cpp 3152 uint8_t *uuid; local
    [all...]
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayer.cpp 2901 uint8_t *uuid; local
    [all...]
  /external/llvm/include/llvm/Object/
COFF.h 80 uint8_t UUID[16];
    [all...]
  /external/llvm/include/llvm/Support/
COFF.h 73 uint8_t UUID[16];
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 174 void addTypeRef(MDString &UUID, DICompositeType &CT);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Object/
COFF.h 94 uint8_t UUID[16];
    [all...]
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
COFF.h 78 uint8_t UUID[16];
  /external/caliper/lib/
gson-2.2.2.jar 
  /external/cldr/tools/java/libs/
gson.jar 

Completed in 4107 milliseconds

1 2