/external/owasp/sanitizer/src/main/org/owasp/html/ |
D | CssSchema.java | 46 static final class Property { class in CssSchema 56 private Property( in Property() method in CssSchema.Property 73 static final Property DISALLOWED = new Property( 76 private final ImmutableMap<String, Property> properties; 78 private CssSchema(ImmutableMap<String, Property> properties) { in CssSchema() 93 ImmutableMap.Builder<String, Property> propertiesBuilder = in withProperties() 96 Property prop = DEFINITIONS.get(propertyName); in withProperties() 111 Map<String, Property> properties = Maps.newLinkedHashMap(); in union() 128 Property forKey(String propertyName) { in forKey() 130 Property property = properties.get(propertyName); in forKey() [all …]
|
/external/libchrome/dbus/ |
D | property.h | 378 class CHROME_DBUS_EXPORT Property : public PropertyBase { 380 Property() {} in Property() function 381 ~Property() override {} in ~Property() 462 CHROME_DBUS_EXPORT Property<uint8_t>::Property(); 464 CHROME_DBUS_EXPORT bool Property<uint8_t>::PopValueFromReader( 467 CHROME_DBUS_EXPORT void Property<uint8_t>::AppendSetValueToWriter( 469 extern template class CHROME_DBUS_EXPORT Property<uint8_t>; 472 CHROME_DBUS_EXPORT Property<bool>::Property(); 474 CHROME_DBUS_EXPORT bool Property<bool>::PopValueFromReader( 477 CHROME_DBUS_EXPORT void Property<bool>::AppendSetValueToWriter( [all …]
|
D | property.cc | 305 Property<uint8_t>::Property() in Property() function in dbus::Property 309 bool Property<uint8_t>::PopValueFromReader(MessageReader* reader) { in PopValueFromReader() 314 void Property<uint8_t>::AppendSetValueToWriter(MessageWriter* writer) { in AppendSetValueToWriter() 323 Property<bool>::Property() : value_(false) { in Property() function in dbus::Property 327 bool Property<bool>::PopValueFromReader(MessageReader* reader) { in PopValueFromReader() 332 void Property<bool>::AppendSetValueToWriter(MessageWriter* writer) { in AppendSetValueToWriter() 341 Property<int16_t>::Property() in Property() function in dbus::Property 345 bool Property<int16_t>::PopValueFromReader(MessageReader* reader) { in PopValueFromReader() 350 void Property<int16_t>::AppendSetValueToWriter(MessageWriter* writer) { in AppendSetValueToWriter() 359 Property<uint16_t>::Property() in Property() function in dbus::Property [all …]
|
/external/libchrome-gestures/include/ |
D | prop_registry.h | 19 class Property; variable 25 void Register(Property* prop); 26 void Unregister(Property* prop); 31 const std::set<Property*>& props() const { return props_; } in props() 41 std::set<Property*> props_; 47 class Property { 49 Property(PropRegistry* parent, const char* name) in Property() function 52 virtual ~Property() { in ~Property() 73 reinterpret_cast<Property*>(data)->HandleGesturesPropWillRead(); in StaticHandleGesturesPropWillRead() 79 reinterpret_cast<Property*>(data)->HandleGesturesPropWritten(); in StaticHandleGesturesPropWritten() [all …]
|
/external/grpc-grpc-java/alts/src/main/java/io/grpc/alts/internal/ |
D | TsiPeer.java | 27 private final List<Property<?>> properties; 29 public TsiPeer(List<Property<?>> properties) { in TsiPeer() 33 public List<Property<?>> getProperties() { in getProperties() 38 public Property<?> getProperty(String name) { in getProperty() 39 for (Property<?> property : properties) { in getProperty() 53 public abstract static class Property<T> { class in TsiPeer 57 public Property(@Nonnull String name, @Nonnull T value) { in Property() method in TsiPeer.Property 77 public static final class SignedInt64Property extends Property<Long> { 84 public static final class UnsignedInt64Property extends Property<BigInteger> { 91 public static final class DoubleProperty extends Property<Double> { [all …]
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/introspector/ |
D | PropertyUtils.java | 35 …private final Map<Class<?>, Map<String, Property>> propertiesCache = new HashMap<Class<?>, Map<Str… 36 …private final Map<Class<?>, Set<Property>> readableProperties = new HashMap<Class<?>, Set<Property… 41 protected Map<String, Property> getPropertiesMap(Class<?> type, BeanAccess bAccess) in getPropertiesMap() 47 Map<String, Property> properties = new LinkedHashMap<String, Property>(); in getPropertiesMap() 93 public Set<Property> getProperties(Class<? extends Object> type) throws IntrospectionException { in getProperties() 97 public Set<Property> getProperties(Class<? extends Object> type, BeanAccess bAccess) in getProperties() 102 Set<Property> properties = createPropertySet(type, bAccess); in getProperties() 107 protected Set<Property> createPropertySet(Class<? extends Object> type, BeanAccess bAccess) in createPropertySet() 109 Set<Property> properties = new TreeSet<Property>(); in createPropertySet() 110 Collection<Property> props = getPropertiesMap(type, bAccess).values(); in createPropertySet() [all …]
|
D | Property.java | 31 public abstract class Property implements Comparable<Property> { class 36 public Property(String name, Class<?> type) { in Property() method in Property 56 public int compareTo(Property o) { in compareTo() 79 if (other instanceof Property) { in equals() 80 Property p = (Property) other; in equals()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/ |
D | CryptoServicesRegistrar.java | 94 …localSetGlobalProperty(Property.DSA_DEFAULT_PARAMS, def512Params, def768Params, def1024Params, def… in localSetGlobalProperty() 95 …localSetGlobalProperty(Property.DH_DEFAULT_PARAMS, toDH(def512Params), toDH(def768Params), toDH(de… in localSetGlobalProperty() 165 public static <T> T getProperty(Property property) in getProperty() 177 private static Object[] lookupProperty(Property property) in lookupProperty() 201 public static <T> T[] getSizedProperty(Property property) in getSizedProperty() 222 public static <T> T getSizedProperty(Property property, int size) in getSizedProperty() 268 public static <T> void setThreadProperty(Property property, T... propertyValue) in setThreadProperty() 289 public static <T> void setGlobalProperty(Property property, T... propertyValue) in setGlobalProperty() 296 private static <T> void localSetThread(Property property, T[] propertyValue) in localSetThread() 309 private static <T> void localSetGlobalProperty(Property property, T... propertyValue) in localSetGlobalProperty() [all …]
|
/external/snakeyaml/src/patches/android/ |
D | PropertyUtils.patch | 22 - protected Map<String, Property> getPropertiesMap(Class<?> type, BeanAccess bAccess) 24 + protected Map<String, Property> getPropertiesMap(Class<?> type, BeanAccess bAccess) { 29 Map<String, Property> properties = new LinkedHashMap<String, Property>(); 82 - public Set<Property> getProperties(Class<? extends Object> type) throws IntrospectionException… 83 + public Set<Property> getProperties(Class<? extends Object> type) { 87 - public Set<Property> getProperties(Class<? extends Object> type, BeanAccess bAccess) 89 + public Set<Property> getProperties(Class<? extends Object> type, BeanAccess bAccess) { 97 - protected Set<Property> createPropertySet(Class<? extends Object> type, BeanAccess bAccess) 99 + protected Set<Property> createPropertySet(Class<? extends Object> type, BeanAccess bAccess) { 100 Set<Property> properties = new TreeSet<Property>(); [all …]
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/crypto/ |
D | CryptoServicesRegistrar.java | 96 …localSetGlobalProperty(Property.DSA_DEFAULT_PARAMS, def512Params, def768Params, def1024Params, def… in localSetGlobalProperty() 97 …localSetGlobalProperty(Property.DH_DEFAULT_PARAMS, toDH(def512Params), toDH(def768Params), toDH(de… in localSetGlobalProperty() 167 public static <T> T getProperty(Property property) in getProperty() 179 private static Object[] lookupProperty(Property property) in lookupProperty() 203 public static <T> T[] getSizedProperty(Property property) in getSizedProperty() 224 public static <T> T getSizedProperty(Property property, int size) in getSizedProperty() 270 public static <T> void setThreadProperty(Property property, T... propertyValue) in setThreadProperty() 291 public static <T> void setGlobalProperty(Property property, T... propertyValue) in setGlobalProperty() 298 private static <T> void localSetThread(Property property, T[] propertyValue) in localSetThread() 311 private static <T> void localSetGlobalProperty(Property property, T... propertyValue) in localSetGlobalProperty() [all …]
|
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/crypto/ |
D | CryptoServicesRegistrar.java | 96 …localSetGlobalProperty(Property.DSA_DEFAULT_PARAMS, def512Params, def768Params, def1024Params, def… in localSetGlobalProperty() 97 …localSetGlobalProperty(Property.DH_DEFAULT_PARAMS, toDH(def512Params), toDH(def768Params), toDH(de… in localSetGlobalProperty() 167 public static <T> T getProperty(Property property) in getProperty() 179 private static Object[] lookupProperty(Property property) in lookupProperty() 203 public static <T> T[] getSizedProperty(Property property) in getSizedProperty() 224 public static <T> T getSizedProperty(Property property, int size) in getSizedProperty() 270 public static <T> void setThreadProperty(Property property, T... propertyValue) in setThreadProperty() 291 public static <T> void setGlobalProperty(Property property, T... propertyValue) in setGlobalProperty() 298 private static <T> void localSetThread(Property property, T[] propertyValue) in localSetThread() 311 private static <T> void localSetGlobalProperty(Property property, T... propertyValue) in localSetGlobalProperty() [all …]
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | hlo_module_metadata_test.cc | 26 using ::testing::Property; 48 ElementsAre(Property(&HloPassMetadata::start_timestamp_usec, 1234))); in TEST() 59 ElementsAre(Property(&HloPassMetadata::end_timestamp_usec, 4321))); in TEST() 70 ElementsAre(Property(&HloPassMetadata::end_timestamp_usec, 0), in TEST() 71 Property(&HloPassMetadata::end_timestamp_usec, 111))); in TEST() 76 ElementsAre(Property(&HloPassMetadata::end_timestamp_usec, 222), in TEST() 77 Property(&HloPassMetadata::end_timestamp_usec, 111))); in TEST() 97 ElementsAre(Property(&HloPassMetadata::pass_name, StrEq("fake name")))); in TEST() 107 ElementsAre(Property(&HloPassMetadata::pass_name, StrEq("")), in TEST() 108 Property(&HloPassMetadata::pass_name, StrEq("fake name")))); in TEST() [all …]
|
/external/angle/third_party/abseil-cpp/absl/log/internal/ |
D | test_matchers.cc | 46 using ::testing::Property; 104 return Property("source_filename", &absl::LogEntry::source_filename, in SourceFilename() 110 return Property("source_basename", &absl::LogEntry::source_basename, in SourceBasename() 116 return Property("source_line", &absl::LogEntry::source_line, source_line); in SourceLine() 121 return Property("prefix", &absl::LogEntry::prefix, prefix); in Prefix() 126 return Property("log_severity", &absl::LogEntry::log_severity, log_severity); in LogSeverity() 131 return Property("timestamp", &absl::LogEntry::timestamp, timestamp); in Timestamp() 135 return Property("timestamp", &absl::LogEntry::timestamp, in TimestampInMatchWindow() 143 return Property("tid", &absl::LogEntry::tid, tid); in ThreadID() 149 return Property("text_message_with_prefix_and_newline", in TextMessageWithPrefixAndNewline() [all …]
|
/external/cronet/third_party/abseil-cpp/absl/log/internal/ |
D | test_matchers.cc | 46 using ::testing::Property; 104 return Property("source_filename", &absl::LogEntry::source_filename, in SourceFilename() 110 return Property("source_basename", &absl::LogEntry::source_basename, in SourceBasename() 116 return Property("source_line", &absl::LogEntry::source_line, source_line); in SourceLine() 121 return Property("prefix", &absl::LogEntry::prefix, prefix); in Prefix() 126 return Property("log_severity", &absl::LogEntry::log_severity, log_severity); in LogSeverity() 131 return Property("timestamp", &absl::LogEntry::timestamp, timestamp); in Timestamp() 135 return Property("timestamp", &absl::LogEntry::timestamp, in TimestampInMatchWindow() 143 return Property("tid", &absl::LogEntry::tid, tid); in ThreadID() 149 return Property("text_message_with_prefix_and_newline", in TextMessageWithPrefixAndNewline() [all …]
|
/external/libkmsxx/kms++/src/ |
D | property.cpp | 14 Property::Property(Card& card, uint32_t id) in Property() function in kms::Property 41 Property::~Property() in ~Property() 47 const string& Property::name() const in name() 52 bool Property::is_immutable() const in is_immutable() 57 bool Property::is_pending() const in is_pending() 62 vector<uint64_t> Property::get_values() const in get_values() 68 map<uint64_t, string> Property::get_enums() const in get_enums() 80 vector<uint32_t> Property::get_blob_ids() const in get_blob_ids()
|
/external/grpc-grpc/test/cpp/ext/filters/census/ |
D | stats_plugin_end2end_test.cc | 199 ::testing::AllOf(::testing::Property(&Distribution::count, 1), in TEST_F() 200 ::testing::Property(&Distribution::mean, in TEST_F() 205 ::testing::AllOf(::testing::Property(&Distribution::count, 1), in TEST_F() 206 ::testing::Property(&Distribution::mean, in TEST_F() 211 ::testing::AllOf(::testing::Property(&Distribution::count, 1), in TEST_F() 212 ::testing::Property(&Distribution::mean, in TEST_F() 217 ::testing::AllOf(::testing::Property(&Distribution::count, 1), in TEST_F() 218 ::testing::Property(&Distribution::mean, in TEST_F() 249 ::testing::Property(&Distribution::count, 1), in TEST_F() 250 ::testing::Property(&Distribution::mean, ::testing::Gt(0.0)), in TEST_F() [all …]
|
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/struct/ |
D | TestBackRefsWithPolymorphic.java | 26 extends Property<PropertySheet> 36 interface Property<T> extends Entity interface in TestBackRefsWithPolymorphic 52 void addProperty(Property property); in addProperty() 53 Map<String, Property> getProperties(); in getProperties() 54 void setProperties(Map<String, Property> properties); in setProperties() 59 extends Property<String> 87 implements Property<T> 146 private Map<String, Property> m_properties; 148 @Override public void addProperty(Property property) in addProperty() 151 m_properties = new TreeMap<String, Property>(); in addProperty() [all …]
|
/external/webrtc/third_party/abseil-cpp/absl/log/internal/ |
D | test_matchers.cc | 37 return Property("source_filename", &absl::LogEntry::source_filename, in SourceFilename() 43 return Property("source_basename", &absl::LogEntry::source_basename, in SourceBasename() 49 return Property("source_line", &absl::LogEntry::source_line, source_line); in SourceLine() 54 return Property("prefix", &absl::LogEntry::prefix, prefix); in Prefix() 59 return Property("log_severity", &absl::LogEntry::log_severity, log_severity); in LogSeverity() 64 return Property("timestamp", &absl::LogEntry::timestamp, timestamp); in Timestamp() 68 return Property("timestamp", &absl::LogEntry::timestamp, in TimestampInMatchWindow() 77 return Property("tid", &absl::LogEntry::tid, tid); in ThreadID() 83 return Property("text_message_with_prefix_and_newline", in TextMessageWithPrefixAndNewline() 90 return Property("text_message_with_prefix", in TextMessageWithPrefix() [all …]
|
/external/flatbuffers/tests/FlatBuffers.Test.Swift/Tests/FlatBuffers.Test.SwiftTests/ |
D | MutatingBool_generated.swift | 7 public struct Property: NativeStruct, Verifiable, FlatbuffersInitializable, NativeObject { struct 33 try verifier.inBuffer(position: position, of: Property.self) in verify<T>() 37 extension Property: Encodable { extension 62 public mutating func unpack() -> Property { in unpack() 63 return Property(&self) in unpack() 65 public static func pack(_ builder: inout FlatBufferBuilder, obj: inout Property?) -> Offset { in pack() 70 public static func pack(_ builder: inout FlatBufferBuilder, obj: inout Property) -> Offset { in pack() 92 …public var b: Property? { let o = _accessor.offset(VTOFFSET.b.v); return o == 0 ? nil : _accessor.… 95 …public static func add(b: Property?, _ fbb: inout FlatBufferBuilder) { guard let b = b else { retu… in add() 99 b: Property? = nil [all …]
|
/external/webrtc/modules/rtp_rtcp/source/ |
D | rtp_sender_unittest.cc | 92 using ::testing::Property; 322 Pointee(Property(&RtpPacketToSend::packet_type, in TEST_F() 324 Pointee(Property(&RtpPacketToSend::padding_size, kPaddingSize)))))); in TEST_F() 331 AllOf(Pointee(Property(&RtpPacketToSend::packet_type, in TEST_F() 333 Pointee(Property(&RtpPacketToSend::padding_size, in TEST_F() 344 Pointee(Property(&RtpPacketToSend::Ssrc, kSsrc)), in TEST_F() 345 Pointee(Property(&RtpPacketToSend::capture_time, now)))))); in TEST_F() 361 Pointee(Property(&RtpPacketToSend::Ssrc, kSsrc)), in TEST_F() 362 Pointee(Property(&RtpPacketToSend::SequenceNumber, kSeqNum)), in TEST_F() 363 Pointee(Property(&RtpPacketToSend::capture_time, in TEST_F() [all …]
|
/external/emma/core/java12/com/vladium/emma/data/ |
D | CoverageOptionsFactory.java | 15 import com.vladium.util.Property; 29 … Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_EXCLUDE_SYNTHETIC_METHODS, in create() 33 … Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_EXCLUDE_BRIDGE_METHODS, in create() 37 … Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_DO_SUID_COMPENSATION, in create() 46 … Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_EXCLUDE_SYNTHETIC_METHODS, in create() 50 … Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_EXCLUDE_BRIDGE_METHODS, in create() 54 … Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_DO_SUID_COMPENSATION, in create()
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue29/ |
D | FlexibleScalarStylesInJavaBeanTest.java | 32 import org.yaml.snakeyaml.introspector.Property; 79 protected Set<Property> getProperties(Class<? extends Object> type) in getProperties() 82 Set<Property> standard = super.getProperties(type); in getProperties() 83 Set<Property> sorted = new TreeSet<Property>(new PropertyComparator()); in getProperties() 91 private class PropertyComparator implements Comparator<Property> { 92 public int compare(Property o1, Property o2) { in compare() 106 private int compareByName(Property o1, Property o2, String name) { in compareByName() 117 protected NodeTuple representJavaBeanProperty(Object javaBean, Property property, in representJavaBeanProperty()
|
/external/cronet/net/dns/public/ |
D | dns_over_https_server_config_unittest.cc | 27 EXPECT_THAT(parsed, testing::Optional(testing::Property( in TEST() 32 EXPECT_THAT(parsed, testing::Optional(testing::Property( in TEST() 37 EXPECT_THAT(parsed, testing::Optional(testing::Property( in TEST() 42 EXPECT_THAT(parsed, testing::Optional(testing::Property( in TEST() 49 EXPECT_THAT(parsed, testing::Optional(testing::Property( in TEST() 54 EXPECT_THAT(parsed, testing::Optional(testing::Property( in TEST() 81 EXPECT_THAT(parsed, testing::Optional(testing::Property( in TEST() 103 EXPECT_THAT(parsed, testing::Optional(testing::Property( 105 EXPECT_THAT(parsed, testing::Optional(testing::Property(
|
/external/testng/src/main/java/org/testng/ |
D | ReporterConfig.java | 29 private List<Property> m_properties = Lists.newArrayList(); 36 public void addProperty(Property property) { in addProperty() 40 public List<Property> getProperties() { in getProperties() 59 ReporterConfig.Property property = m_properties.get(i); in serialize() 86 Property property = new Property(); in deserialize() 107 for (ReporterConfig.Property property : m_properties) { in newReporterInstance() 114 public static class Property { class in ReporterConfig 139 for (Property prop : m_properties) { in toString()
|
/external/cronet/net/third_party/quiche/src/quiche/quic/tools/ |
D | connect_udp_tunnel_test.cc | 44 using ::testing::Property; 162 AllOf(Property(&QuicBackendResponse::response_type, in TEST_F() 164 Property(&QuicBackendResponse::headers, in TEST_F() 167 Property(&QuicBackendResponse::trailers, IsEmpty()), in TEST_F() 168 Property(&QuicBackendResponse::body, IsEmpty())))); in TEST_F() 194 AllOf(Property(&QuicBackendResponse::response_type, in TEST_F() 196 Property(&QuicBackendResponse::headers, in TEST_F() 199 Property(&QuicBackendResponse::trailers, IsEmpty()), in TEST_F() 200 Property(&QuicBackendResponse::body, IsEmpty())))); in TEST_F() 235 AllOf(Property(&QuicBackendResponse::response_type, in TEST_F() [all …]
|