HomeSort by relevance Sort by last modified time
    Searched full:properties (Results 551 - 575 of 6891) sorted by null

<<21222324252627282930>>

  /external/chromium_org/build/android/buildbot/
bb_utils.py 78 parser.add_option('--build-properties', action='callback',
80 help='build properties in JSON format')
81 parser.add_option('--factory-properties', action='callback',
83 help='factory properties in JSON format')
88 return ['--factory-properties=%s' % json.dumps(options.factory_properties),
89 '--build-properties=%s' % json.dumps(options.build_properties)]
  /external/chromium_org/chrome/renderer/resources/extensions/
extension_custom_bindings.js 38 apiFunctions.setHandleRequest('getViews', function(properties) {
41 if (properties) {
42 if (properties.type != null) {
43 type = properties.type;
45 if (properties.windowId != null) {
46 windowId = properties.windowId;
  /external/chromium_org/chromeos/network/
policy_applicator.h 29 // Write the new configuration with the properties |shill_properties| to
58 // Called with the properties of the profile |profile_|. Requests the
59 // properties of each entry, which are processed by GetEntryCallback.
63 // Called with the properties of the profile entry |entry|. Checks whether the
76 // Adds properties to |properties_to_update|, which are enforced on an
78 // |entry_properties| are the network's current properties read from its
network_state.cc 30 bool IsCaCertNssSet(const base::DictionaryValue& properties) {
32 if (properties.GetStringWithoutPathExpansion(shill::kEapCaCertNssProperty,
39 properties.GetDictionaryWithoutPathExpansion(shill::kProviderProperty,
76 // Keep care that these properties are the same as in |GetProperties|.
157 const base::DictionaryValue& properties) {
159 bool changed = UpdateName(properties);
161 has_ca_cert_nss_ = IsCaCertNssSet(properties);
167 // Keep care that these properties are the same as in |PropertyChanged|.
179 // IPConfig properties
203 // Proxy config and ONC source are intentionally omitted: These properties ar
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAnimatedTypeAnimator.cpp 25 #include "core/svg/properties/SVGAttributeToPropertyMap.h"
33 SVGElementAnimatedProperties::SVGElementAnimatedProperties(SVGElement* element, Vector<RefPtr<SVGAnimatedProperty> >& properties)
35 , properties(properties)
94 size_t propertiesSize = it->properties.size();
96 RefPtr<SVGAnimatedProperty> property = it->properties[i];
  /external/chromium_org/v8/test/mjsunit/
enumeration-order.js 44 // Validate the enumeration order for object up to 100 named properties.
58 // properties.
61 // We enumerate indexed properties in numerical order followed by
62 // named properties in insertion order, followed by indexed properties
64 // properties of the prototype object in insertion order, and so on.
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_rss/
feedManipulation.xml 19 <property file="../properties/feedPublish.eclipse.properties"/>
21 <property file="../properties/feedPublish.emf.properties"/>
22 <property file="../properties/feedPublish.uml2.properties"/>
  /external/openfst/src/include/fst/
randequivalent.h 86 if (!(Weight::Properties() & kIdempotent) &&
87 pfst1.Properties(kCyclic, true))
96 if (!(Weight::Properties() & kIdempotent) &&
97 pfst2.Properties(kCyclic, true))
109 if (fst1.Properties(kError, false) || fst2.Properties(kError, false)) {
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
difference.h 57 if (!fst1.Properties(kAcceptor, true))
59 uint64 props1 = fst1.Properties(kFstProperties, false);
60 uint64 props2 = fst2.Properties(kFstProperties, false);
71 if (!fst1.Properties(kAcceptor, true))
73 uint64 props1 = fst1.Properties(kFstProperties, false);
74 uint64 props2 = fst2.Properties(kFstProperties, false);
  /external/v8/src/
apinatives.js 106 var properties = %GetTemplateField(data, kApiPropertyListOffset);
107 if (properties) {
111 for (var i = 0; i < properties[0]; i += 3) {
112 var name = properties[i + 1];
113 var prop_data = properties[i + 2];
114 var attributes = properties[i + 3];
  /external/v8/test/mjsunit/
enumeration-order.js 44 // Validate the enumeration order for object up to 100 named properties.
58 // properties.
61 // We enumerate indexed properties in numerical order followed by
62 // named properties in insertion order, followed by indexed properties
64 // properties of the prototype object in insertion order, and so on.
  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
ServiceDeclaration.java 39 int properties = 0; field in class:ServiceDeclaration.Entry
59 Entry(UUID uuid, int properties, int permissions, int instance) {
64 this.properties = properties;
98 void addCharacteristic(UUID uuid, int properties, int permissions) {
99 mEntries.add(new Entry(uuid, properties, permissions, 0 /*instance*/));
  /external/chromium_org/third_party/WebKit/Source/core/css/
StylePropertySerializer.cpp 43 StylePropertySerializer::StylePropertySerializer(const StylePropertySet& properties)
44 : m_propertySet(properties)
65 // Only enabled or internal properties should be part of the style.
243 // It is required because background-position-x/y are non-standard properties and WebKit generated output
313 // Shorthand and 4-values properties
402 RefPtr<CSSValue> horizontalValue = m_propertySet.getPropertyCSSValue(shorthand.properties()[0]);
403 RefPtr<CSSValue> verticalValue = m_propertySet.getPropertyCSSValue(shorthand.properties()[1]);
484 // Assume the properties are in the usual order top, right, bottom, left.
485 int topValueIndex = m_propertySet.findPropertyIndex(shorthand.properties()[0]);
486 int rightValueIndex = m_propertySet.findPropertyIndex(shorthand.properties()[1])
741 const StylePropertyShorthand properties[3] = { borderWidthShorthand(), borderStyleShorthand(), borderColorShorthand() }; local
    [all...]
RuntimeCSSEnabled.h 38 // A class storing static arrays for enabling CSS properties at
39 // runtime. By default, all properties are enabled.
43 // isCSSPropertyEnabled returns false for internal properties
  /development/ide/eclipse/
README.importing-to-eclipse.txt 12 To import the include paths, go to Project > Properties > C/C++ General >
18 To import the symbols, go to Project > Properties > C/C++ General >
25 from an XML file) by hand. Go to Project > Properties > C/C++ General >
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
SignedObjectTest.java 23 import java.util.Properties;
36 Properties prop;
46 prop = new Properties();
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
output_text.properties 19 # $Id: output_text.properties 468654 2006-10-28 07:09:23Z minchau $
24 # XSLT properties do not need namespace qualification.
28 # Xalan-specific output properties. These can be overridden in the stylesheet
  /external/chromium/chrome/common/extensions/docs/examples/apps/
hello-java.zip 
  /external/chromium_org/chrome/browser/extensions/api/networking_private/
networking_private_service_client.h 96 // Callback used to return Dictionary of network properties.
114 // Gets the properties of the network with id |network_guid|. See note on
120 // Gets the merged properties of the network with id |network_guid| from these
128 // Gets the cached read-only properties of the network with id |network_guid|.
131 // returns a subset of the properties returned by |GetProperties|. See note on
149 // Sets the |properties| of the network with id |network_guid|. See note on
152 const base::DictionaryValue& properties,
156 // Creates a new network configuration from |properties|. If |shared| is true,
162 const base::DictionaryValue& properties,
173 // Verify that Chromecast provides valid cryptographically signed properties
    [all...]
  /external/chromium_org/chrome/browser/extensions/
extension_sync_data.h 26 // A class that encapsulates the synced properties of an Extension.
53 // Version-independent properties (i.e., used even when the
60 // Version-dependent properties (i.e., should be used only when the
  /external/chromium_org/chrome/common/extensions/api/
file_browser_handler_internal.json 18 "properties": {
45 "properties": {
67 "properties": {
  /external/chromium_org/chromeos/dbus/
nfc_property_set.h 20 // get all properties, connect to the correct signal and parse it correctly.
32 // has successfully received all existing properties from the remote object.
46 // Optional callback used to notify clients when all properties were received
  /external/chromium_org/content/browser/devtools/
browser_protocol.json 11 "properties": [
22 "properties": [
32 "properties": [
  /external/chromium_org/third_party/WebKit/PerformanceTests/CSS/
CSSPropertySetterGetter.html 11 var properties = {
75 for (key in properties) {
78 div.style[key] = properties[key];
  /external/chromium_org/v8/test/intl/
utils.js 29 * Taints properties on Object.prototype so we can find security issues.
31 function taintProperties(properties) {
32 properties.forEach(function(property) {

Completed in 454 milliseconds

<<21222324252627282930>>