HomeSort by relevance Sort by last modified time
    Searched full:properties (Results 326 - 350 of 6890) sorted by null

<<11121314151617181920>>

  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
TestUtils.java 24 import java.util.Properties;
71 Properties properties = System.getProperties(); local
73 properties.remove(key);
75 properties.setProperty(key, value);
77 System.setProperties(properties);
  /external/chromium_org/chromeos/dbus/
bluetooth_input_client.h 24 // Structure of properties associated with bluetooth input devices.
25 struct Properties : public dbus::PropertySet {
29 Properties(dbus::ObjectProxy* object_proxy,
32 virtual ~Properties();
65 // Obtain the properties for the device with object path |object_path|,
67 virtual Properties* GetProperties(const dbus::ObjectPath& object_path) = 0;
mock_shill_manager_client.h 41 MOCK_METHOD3(ConfigureService, void(const base::DictionaryValue& properties,
46 const base::DictionaryValue& properties,
49 MOCK_METHOD3(GetService, void(const base::DictionaryValue& properties,
53 void(const VerificationProperties& properties,
57 void(const VerificationProperties& properties,
62 void(const VerificationProperties& properties,
nfc_manager_client.h 22 // Structure of properties associated with the NFC manager.
23 struct Properties : public NfcPropertySet {
27 Properties(dbus::ObjectProxy* object_proxy,
29 virtual ~Properties();
60 // Obtains the properties of the NFC manager service.
61 virtual Properties* GetProperties() = 0;
  /external/chromium_org/chromeos/network/
device_state.h 27 const base::DictionaryValue& properties) OVERRIDE;
50 const DictionaryValue& properties() const { return properties_; } function in class:chromeos::DeviceState
61 // Common Device Properties
64 // Cellular specific properties
81 // Ethernet specific properties
84 // Keep all Device properties in a dictionary. Devices are limited and should
network_state.h 38 const base::DictionaryValue& properties) OVERRIDE;
40 // Fills |dictionary| with the state properties. All the properties that are
60 // IPConfig Properties. These require an extra call to ShillIPConfigClient,
90 // Returns true if the network properties are stored in a user profile.
114 bool UpdateName(const base::DictionaryValue& properties);
116 // Network Service properties. Avoid adding any additional properties here.
118 // request properties from Shill.
132 // IPConfig properties
    [all...]
  /external/chromium_org/third_party/WebKit/Source/build/scripts/templates/
StylePropertyShorthand.h.tmpl 41 StylePropertyShorthand(CSSPropertyID id, const CSSPropertyID* properties, unsigned numProperties)
42 : m_properties(properties)
49 StylePropertyShorthand(CSSPropertyID id, const CSSPropertyID* properties, const StylePropertyShorthand** propertiesForInitialization, unsigned numProperties)
50 : m_properties(properties)
57 const CSSPropertyID* properties() const { return m_properties; }
69 {% for property_id, property in properties.items() %}
  /external/chromium_org/v8/test/webkit/fast/js/kde/
iteration.js 52 properties = "";
54 properties += (prop + "=" + obj[prop] + ";");
56 shouldBe("properties", "'a=11;b=22;'");
61 properties = "";
63 properties += prop;
64 // shouldBe("properties", "'abyx'");
  /external/harfbuzz/tests/linebreaking/
harfbuzz-qt.cpp 64 const QUnicodeTables::Properties *prop = QUnicodeTables::properties(ch);
71 const QUnicodeTables::Properties *prop = QUnicodeTables::properties(ch);
77 const QUnicodeTables::Properties *prop = QUnicodeTables::properties(ch);
  /libcore/luni/src/test/java/libcore/java/lang/
OldIntegerTest.java 19 import java.util.Properties;
23 private Properties orgProps;
38 Properties tProps = new Properties();
48 Properties tProps = new Properties();
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
TestUtils.java 25 import java.util.Properties;
72 Properties properties = System.getProperties(); local
74 properties.remove(key);
76 properties.setProperty(key, value);
78 System.setProperties(properties);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/extensions/
ExtensionsFactory.java 25 import java.util.Properties;
30 * assets/contacts_extensions.properties and loads extension classes that an app has defined. If
39 private static final String EXTENSIONS_PROPERTIES = "contacts_extensions.properties";
43 private static Properties sProperties = null;
52 sProperties = new Properties();
60 Log.d(TAG, EXTENDED_PHONE_DIRECTORIES_KEY + " not found in properties file.");
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/model/
PropertiesTableModel.java 26 private List<ViewNode.Property> properties; field in class:PropertiesTableModel
30 properties = node.properties;
58 (properties == null ? 0 : properties.size());
68 property = properties.get(row - privateProperties.size());
  /external/chromium_org/chrome/browser/
shell_integration_win_unittest.cc 30 base::win::ShortcutProperties properties; member in struct:__anon5606::ShortcutTestObject
94 shortcut_test_object.properties = *shortcut_properties;
103 // A temporary object to pass properties to
256 shortcuts_[1].properties.set_app_id(chrome_app_id_);
257 shortcuts_[3].properties.set_app_id(chrome_app_id_);
258 shortcuts_[4].properties.set_app_id(chrome_app_id_);
259 shortcuts_[5].properties.set_app_id(chrome_app_id_);
260 shortcuts_[6].properties.set_app_id(non_default_profile_chrome_app_id_);
261 shortcuts_[7].properties.set_app_id(non_default_user_data_dir_chrome_app_id_);
262 shortcuts_[8].properties.set_app_id
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
arcsort.h 25 #include "fst/lib/test-properties.h"
34 // Properties(uint64) that specifies the known properties of the
35 // sorted FST; it takes as argument the input FST's known properties
46 uint64 props = fst->Properties(kFstProperties, false);
64 fst->SetProperties(comp.Properties(props), kFstProperties);
75 using FstImpl<A>::Properties;
94 uint64 props = fst_->Properties(kCopyProperties, false);
95 SetProperties(comp_.Properties(props));
103 SetProperties(impl.Properties(), kCopyProperties)
    [all...]
  /external/chromium_org/v8/src/
apinatives.js 111 var properties = %GetTemplateField(data, kApiPropertyListOffset);
112 if (!properties) return;
116 for (var i = 1; i < properties[0];) {
117 var length = properties[i];
119 var name = properties[i + 1];
120 var prop_data = properties[i + 2];
121 var attributes = properties[i + 3];
125 var name = properties[i + 1];
126 var getter = properties[i + 2];
127 var setter = properties[i + 3]
    [all...]
  /external/openfst/src/lib/
properties.cc 0 // properties.cc
20 // string names of the properties.
22 #include <fst/properties.h>
30 // These functions determine the properties associated with the FST
32 // correspond to the operation's FST arguments. The properties
37 // Properties for a concatenatively-closed FST.
50 // Properties for a complemented FST.
62 // Properties for a composed FST.
81 // Properties for a concatenated FST.
115 // Properties for a determinized FST
    [all...]
  /external/openfst/src/include/fst/
properties.h 0 // properties.h
32 // bits are added, then the composite properties below, the property
33 // functions and property names in properties.cc, and
34 // TestProperties() in test-properties.h should be updated.
37 // BINARY PROPERTIES
53 // TRINARY PROPERTIES
55 // For each of these properties below there is a pair of property bits
142 // COMPOSITE PROPERTIES
145 // Properties of an empty machine
152 // Properties that are preserved when an FST is copie
    [all...]
  /developers/build/templates/create/_MODULE_/
proguard-project.txt 1 To enable ProGuard in your project, edit project.properties
8 # include property in project.properties.
  /developers/samples/android/connectivity/bluetooth/BluetoothLeGatt/BluetoothLeGattSample/
proguard-project.txt 1 To enable ProGuard in your project, edit project.properties
8 # include property in project.properties.
  /developers/samples/android/connectivity/network/BasicNetworking/BasicNetworkingSample/
proguard-project.txt 1 To enable ProGuard in your project, edit project.properties
8 # include property in project.properties.
  /developers/samples/android/connectivity/network/NetworkConnect/NetworkConnectSample/
proguard-project.txt 1 To enable ProGuard in your project, edit project.properties
8 # include property in project.properties.
  /developers/samples/android/connectivity/nfc/BeamLargeFiles/BeamLargeFilesSample/
proguard-project.txt 1 To enable ProGuard in your project, edit project.properties
8 # include property in project.properties.
  /developers/samples/android/connectivity/nfc/CardEmulation/CardEmulationSample/
proguard-project.txt 1 To enable ProGuard in your project, edit project.properties
8 # include property in project.properties.
  /developers/samples/android/connectivity/nfc/CardReader/CardReaderSample/
proguard-project.txt 1 To enable ProGuard in your project, edit project.properties
8 # include property in project.properties.

Completed in 1134 milliseconds

<<11121314151617181920>>