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

1 2

  /external/v8/src/
assert-scope.cc 71 template <PerThreadAssertType kType, bool kAllow>
72 PerThreadAssertScope<kType, kAllow>::PerThreadAssertScope()
79 old_state_ = data_->Get(kType);
80 data_->Set(kType, kAllow);
84 template <PerThreadAssertType kType, bool kAllow>
85 PerThreadAssertScope<kType, kAllow>::~PerThreadAssertScope() {
87 data_->Set(kType, old_state_);
96 template <PerThreadAssertType kType, bool kAllow>
97 bool PerThreadAssertScope<kType, kAllow>::IsAllowed() {
99 return data == NULL || data->Get(kType);
    [all...]
assert-scope.h 37 template <PerThreadAssertType kType, bool kAllow>
  /external/skia/src/gpu/
GrIndexBuffer.h 20 static const GrScratchKey::ResourceType kType = GrScratchKey::GenerateResourceType();
22 GrScratchKey::Builder builder(key, kType, 2);
GrVertexBuffer.h 19 static const GrScratchKey::ResourceType kType = GrScratchKey::GenerateResourceType();
21 GrScratchKey::Builder builder(key, kType, 2);
GrTexture.cpp 97 static const GrScratchKey::ResourceType kType = GrScratchKey::GenerateResourceType();
107 GrScratchKey::Builder builder(key, kType, 3);
  /external/skia/tests/
RecordTestUtils.h 23 void operator()(const U& r) { ptr = &r; type = U::kType; }
26 void operator()(const T&) { type = U::kType; }
34 REPORTER_ASSERT(r, T::kType == reader.type);
RecorderTest.cpp 27 void operator()(const T&) { ++fHistogram[T::kType]; }
30 int count() const { return fHistogram[T::kType]; }
  /system/connectivity/shill/net/
netlink_attribute.h 149 static const Type kType;
151 : NetlinkAttribute(id, id_string, kType, kMyTypeString) {}
167 static const Type kType;
169 : NetlinkAttribute(id, id_string, kType, kMyTypeString) {}
186 static const Type kType;
188 : NetlinkAttribute(id, id_string, kType, kMyTypeString) {}
204 static const Type kType;
206 : NetlinkAttribute(id, id_string, kType, kMyTypeString) {}
222 static const Type kType;
224 : NetlinkAttribute(id, id_string, kType, kMyTypeString) {
    [all...]
netlink_attribute.cc 445 const NetlinkAttribute::Type NetlinkU8Attribute::kType =
498 const NetlinkAttribute::Type NetlinkU16Attribute::kType =
552 const NetlinkAttribute::Type NetlinkU32Attribute::kType =
606 const NetlinkAttribute::Type NetlinkU64Attribute::kType =
659 const NetlinkAttribute::Type NetlinkFlagAttribute::kType =
705 const NetlinkAttribute::Type NetlinkStringAttribute::kType =
799 const NetlinkAttribute::Type NetlinkNestedAttribute::kType =
805 NetlinkAttribute(id, id_string, kType, kMyTypeString),
1026 const NetlinkAttribute::Type NetlinkRawAttribute::kType =
    [all...]
  /external/skia/gm/
nonclosedpaths.cpp 89 static const ClosureType kType[] = {
107 MakePath(&path, kType[type]);
130 MakePath(&path, kType[type]);
  /external/skia/src/core/
SkRecord.h 24 // type T which has a static const SkRecords::Type kType. That is to say, SkRecord is compatible
104 SkASSERT(Existing::kType == fRecords[i].type());
162 fTypeAndPtr = ((uint64_t)T::kType) << kTypeShift | (uintptr_t)ptr;
163 SkASSERT(this->ptr() == ptr && this->type() == T::kType);
SkRemote.cpp 543 template <typename T, Type kType>
552 SkASSERT(id.type() == kType);
557 SkASSERT(id.type() == kType);
562 SkASSERT(id.type() == kType);
573 template <typename T, Type kType>
583 SkASSERT(id.type() == kType);
588 SkASSERT(id.type() == kType);
596 SkASSERT(id.type() == kType);
711 template <typename T, Type kType>
718 SkASSERT(id.type() == kType);
    [all...]
  /system/connectivity/shill/dhcp/
dhcpv6_config.h 79 static const char kType[];
dhcpv6_config.cc 70 const char DHCPv6Config::kType[] = "dhcp6";
81 kType,
dhcpv4_config.h 124 static const char kType[];
dhcpv4_config.cc 94 const char DHCPv4Config::kType[] = "dhcp";
109 kType,
  /art/compiler/
compiled_method.h 176 kType,
213 LinkerPatch patch(literal_offset, Type::kType, target_dex_file);
277 DCHECK(patch_type_ == Type::kType);
282 DCHECK(patch_type_ == Type::kType);
  /external/skia/tools/
DumpRecord.cpp 98 switch(T::kType) { SK_RECORD_TYPES(CASE); }
  /system/connectivity/shill/
ipconfig.cc 57 const char IPConfig::kType[] = "ip";
65 type_(kType),
ipconfig.h 240 static const char kType[];
  /external/skia/include/private/
SkRecords.h 187 static const Type kType = T##_Type; \
  /frameworks/av/media/libstagefright/foundation/
AMessage.cpp 251 item->mType = kType##NAME; \
256 const Item *item = findItem(name, kType##NAME); \
  /system/connectivity/shill/vpn/
openvpn_driver_unittest.cc 848 const char kType[] = "x509-type";
854 SetArg(kOpenVPNVerifyX509TypeProperty, kType);
856 ExpectInFlags(options, vector<string> { "verify-x509-name", kName, kType });
    [all...]
  /art/runtime/
utils.cc 763 template<ClassNameType kType, char kSeparator>
776 ClassNameType type = kType;
    [all...]
  /art/dexdump/
dexdump.cc     [all...]

Completed in 2216 milliseconds

1 2