HomeSort by relevance Sort by last modified time
    Searched defs:properties (Results 101 - 125 of 1756) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/guice/examples/src/example/xml/
XmlBeanModule.java 145 beanBuilder.properties.add(
180 final List<Property> properties = new ArrayList<Property>(); field in class:XmlBeanModule.BeanBuilder
193 .bind(type).toProvider(new BeanProvider<T>(type, properties));
200 final List<Property> properties; field in class:XmlBeanModule.BeanProvider
202 BeanProvider(Class<T> type, List<Property> properties) {
204 this.properties = properties;
210 for (Property property : properties) {
  /libcore/luni/src/test/java/libcore/java/lang/
SystemTest.java 27 import java.util.Properties;
155 // Android-specific: The RI does not have a concept of immutable properties.
169 Properties p = new Properties();
201 // All the immutable properties should be reset.
203 // Non-standard properties are cleared.
210 Properties newProperties = new Properties();
218 // Android-specific: The RI makes the setProperties() argument the system properties object,
219 // Android makes a new Properties object and copies the properties
232 Properties properties = System.getProperties(); local
    [all...]
  /bionic/libc/bionic/
wctype.cpp 92 static const char* const properties[WC_TYPE_MAX] = { local
98 if (!strcmp(properties[i], property)) {
  /cts/tools/testng/
gen-test-list-xml.py 85 properties = property(_get_properties, _set_properties, doc="Get/set additional XML properties such as appPackageName (as a dict)") variable in class:BaseNode
96 if self.properties:
97 for key, value in self.properties.iteritems():
107 #TODO: print all the properties
189 root.properties = xml_properties
  /external/autotest/client/cros/cellular/pseudomodem/
dbus_std_ifaces.py 7 - org.freedesktop.DBus.Properties
48 == org.freedesktop.DBus.Properties ==
51 properties. Each instance holds a mapping from DBus interface names to
88 def properties(self): member in class:DBusProperties
233 @returns: A dictionary, containing the properties of the given DBus
261 @param interface_name: The interface the changed properties belong to.
262 @param changed_properties: Dictionary containing the changed properties
264 @param invalidated_properties: List of properties that were invalidated
265 when properties changed.
268 logging.info(('Properties Changed on interface: %s Changed Properties:
    [all...]
  /external/autotest/client/cros/networking/
mm1_proxy.py 210 """@return org.freedesktop.DBus.Properties DBus interface."""
214 def properties(self, iface): member in class:ModemProxy
215 """Return the properties associated with the specified interface.
217 @param iface: Name of interface to retrieve the properties from.
218 @return array of properties.
231 sim_path = self.properties(mm1_constants.I_MODEM).get('Sim')
237 sim_proxy.properties(mm1_constants.I_SIM)
272 lambda: self.properties(mm1_constants.I_MODEM)[
278 self.properties(mm1_constants.I_MODEM)[
299 """@return org.freedesktop.DBus.Properties DBus interface.""
309 def properties(self, iface=mm1_constants.I_SIM): member in class:SimProxy
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiBufferViewCreateTests.cpp 102 VkFormatProperties properties; local
115 m_context.getInstanceInterface().getPhysicalDeviceFormatProperties(m_context.getPhysicalDevice(), m_testCase.format, &properties);
116 if (!(properties.bufferFeatures & m_testCase.features))
  /external/guice/core/test/com/google/inject/name/
NamesTest.java 33 import java.util.Properties;
59 final Properties teams = new Properties();
74 final Map<String, String> properties = ImmutableMap.of( local
79 Names.bindProperties(binder(), properties);
88 Properties defaults = new Properties();
92 final Properties teams = new Properties(defaults);
  /external/guice/core/test/com/googlecode/guice/
OSGiContainerTest.java 36 import java.util.Properties;
48 // build properties passed from Ant
67 // verify properties
77 Properties instructions = new Properties();
112 private static void buildBundle(String name, Properties instructions, String classpath)
138 Properties properties = new Properties(); local
139 properties.setProperty("org.osgi.framework.storage", BUILD_TEST_DIR + "/bundle.cache")
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/security/
SpnegoLoginService.java 21 import java.util.Properties;
99 Properties properties = new Properties(); local
101 properties.load(resource.getInputStream());
103 _targetName = properties.getProperty("targetName");
  /external/ksoap2/ksoap2-j2se/src/main/java/org/ksoap2/transport/
HttpsServiceConnectionSE.java 76 Map properties = connection.getHeaderFields(); local
77 Set keys = properties.keySet();
82 List values = (List) properties.get(key);
ServiceConnectionSE.java 84 Map properties = connection.getHeaderFields(); local
85 Set keys = properties.keySet();
90 List values = (List) properties.get(key);
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_scan.h 88 } properties[TGSI_PROPERTY_COUNT]; member in struct:tgsi_shader_info
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/introspector/
PropertyUtils.java 47 Map<String, Property> properties = new LinkedHashMap<String, Property>(); local
55 && !properties.containsKey(field.getName())) {
56 properties.put(field.getName(), new FieldProperty(field));
62 // add JavaBean properties
67 properties.put(property.getName(), new MethodProperty(property));
77 properties.put(field.getName(), new FieldProperty(field));
86 if (properties.isEmpty() && inaccessableFieldsExist) {
87 throw new YAMLException("No JavaBean properties found in " + type.getName());
89 propertiesCache.put(type, properties);
90 return properties;
102 Set<Property> properties = createPropertySet(type, bAccess); local
109 Set<Property> properties = new TreeSet<Property>(); local
126 Map<String, Property> properties = getPropertiesMap(type, bAccess); local
    [all...]
  /external/snakeyaml/src/test/java/examples/collections/
TypeSafeMapImplementationsTest.java 21 import java.util.Properties;
31 * Test different Map implementations as JavaBean properties
40 Properties props = new Properties();
64 Properties props = parsed.getProperties();
72 private Properties properties; field in class:TypeSafeMapImplementationsTest.MapBean
87 public Properties getProperties() {
88 return properties;
91 public void setProperties(Properties properties)
    [all...]
  /external/v8/test/unittests/compiler/
common-operator-unittest.cc 10 #include "src/compiler/operator-properties.h"
27 Operator::Properties properties; member in struct:v8::internal::compiler::__anon24479::SharedOperator
43 #define SHARED(Name, properties, value_input_count, effect_input_count, \
47 &CommonOperatorBuilder::Name, IrOpcode::k##Name, properties, \
102 TEST_P(CommonSharedOperatorTest, Properties) {
106 EXPECT_EQ(sop.properties, op->properties());
177 EXPECT_EQ(Operator::kKontrol, op->properties());
194 EXPECT_EQ(Operator::kNoThrow, op->properties());
    [all...]
js-operator-unittest.cc 8 #include "src/compiler/operator-properties.h"
49 Operator::Properties properties; member in struct:v8::internal::compiler::__anon24493::SharedOperator
61 #define SHARED(Name, properties, value_input_count, frame_state_input_count, \
65 &JSOperatorBuilder::Name, IrOpcode::kJS##Name, properties, \
140 TEST_P(JSSharedOperatorTest, Properties) {
144 EXPECT_EQ(sop.properties, op->properties());
163 Operator::Properties properties; member in struct:v8::internal::compiler::__anon24494::SharedOperatorWithLanguageMode
    [all...]
  /frameworks/av/services/radio/
RadioService.h 51 virtual status_t listModules(struct radio_properties *properties,
70 struct radio_properties properties);
87 const struct radio_properties properties() const { return mProperties; } function in class:android::RadioService::Module
96 const struct radio_properties mProperties; // cached hardware module properties
202 static void convertProperties(radio_properties_t *properties,
  /frameworks/base/libs/hwui/tests/unit/
VectorDrawableTests.cpp 396 //TODO: Also need to test property sync and dirty flag when properties change.
398 VectorDrawable::Group::GroupProperties* properties = group.mutateProperties(); local
400 EXPECT_EQ(0.0f, properties->getTranslateX());
401 properties->setTranslateX(1.0f);
402 EXPECT_EQ(1.0f, properties->getTranslateX());
404 EXPECT_EQ(0.0f, properties->getTranslateY());
405 properties->setTranslateY(1.0f);
406 EXPECT_EQ(1.0f, properties->getTranslateY());
408 EXPECT_EQ(0.0f, properties->getRotation());
409 properties->setRotation(1.0f)
    [all...]
  /frameworks/base/packages/DocumentsUI/tests/src/com/android/documentsui/dirlist/
DocumentHolderTest.java 76 PointerProperties properties[] = new PointerProperties[] { local
79 properties[0].toolType = tooltype;
95 properties, // pointer properties
  /frameworks/wilhelm/src/itf/
IEnvironmentalReverb.c 643 // note that it's unnecessary to verify that any level stored inside the "properties" struct
650 SLEnvironmentalReverbSettings properties = *pProperties; local
651 if (!(properties.roomLevel <= 0))
653 if (!(properties.roomHFLevel <= 0))
655 if (!(100 <= properties.decayTime && properties.decayTime <= 20000))
657 if (!(100 <= properties.decayHFRatio && properties.decayHFRatio <= 2000))
659 if (!(properties.reflectionsLevel <= 1000))
661 if (!(/* 0 <= properties.reflectionsDelay && */ properties.reflectionsDelay <= 300)
    [all...]
  /hardware/libhardware/include/hardware/
bt_common_types.h 69 * If |type| is |BTGATT_DB_CHARACTERISTIC|, this contains the properties of
72 uint8_t properties; member in struct:__anon31133
  /libcore/ojluni/src/main/java/java/util/jar/
Pack200.java 55 * // Initialize the state by setting the desired properties
56 * Map p = packer.properties();
176 * by their properties below.
178 * engine properties (using {@link #properties}) and storing
179 * the modified properties on the map.
246 * of its name and other transmitted properties.
339 * additional properties with distinct strings appended, to
340 * make a family of properties with the common prefix.
354 * Map p = packer.properties();
545 SortedMap<String,String> properties(); method in interface:Pack200.Packer
676 SortedMap<String,String> properties(); method in interface:Pack200.Unpacker
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
ServiceDeclaration.java 37 int properties = 0; field in class:ServiceDeclaration.Entry
57 Entry(UUID uuid, int properties, int permissions, int instance) {
62 this.properties = properties;
98 void addCharacteristic(UUID uuid, int properties, int permissions) {
100 mEntries.add(new Entry(uuid, properties, permissions, 0 /*instance*/));
  /packages/services/Car/tests/libvehiclenetwork-native-test/
VehicleNetworkAudioHelperTest.cpp 47 vehicle_prop_config_t const * properties = getTestPropertiesForAudio(); local
49 mAudioProperties->getList().push_back(properties + i);

Completed in 1455 milliseconds

1 2 3 45 6 7 8 91011>>