Searched refs:properties (Results 1 - 25 of 827) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/runtime/Python/tests/
H A Dt025lexerRulePropertyRef.py20 assert len(lexer.properties) == 3, lexer.properties
22 text, type, line, pos, index, channel, start, stop = lexer.properties[0]
23 assert text == 'foobar', lexer.properties[0]
24 assert type == self.lexerModule.IDENTIFIER, lexer.properties[0]
25 assert line == 1, lexer.properties[0]
26 assert pos == 0, lexer.properties[0]
27 assert index == -1, lexer.properties[0]
28 assert channel == antlr3.DEFAULT_CHANNEL, lexer.properties[0]
29 assert start == 0, lexer.properties[
[all...]
/external/chromium_org/v8/test/intl/
H A Dutils.js29 * Taints properties on Object.prototype so we can find security issues.
31 function taintProperties(properties) {
32 properties.forEach(function(property) {
/external/chromium_org/v8/test/intl/break-iterator/
H A Dproperty-override.js41 // list of properties.
43 // First get supported properties.
44 var properties = []; variable
48 properties.push(prop);
56 assertEquals(expectedProperties.length, properties.length);
58 properties.forEach(function(prop) {
62 taintProperties(properties);
/external/chromium_org/v8/test/intl/collator/
H A Dproperty-override.js41 // properties.
43 // First get supported properties.
44 var properties = []; variable
48 properties.push(prop);
57 assertEquals(expectedProperties.length, properties.length);
59 properties.forEach(function(prop) {
63 taintProperties(properties);
/external/robolectric/
H A Dfind-android.sh10 echo "sdk.dir=$ANDROID_HOME" > local.properties
/external/lzma/CPP/7zip/UI/Common/
H A DSetProperties.h8 HRESULT SetProperties(IUnknown *unknown, const CObjectVector<CProperty> &properties);
/external/chromium_org/v8/test/intl/date-format/
H A Dproperty-override.js41 // properties.
43 // First get supported properties.
44 // Some of the properties are optional, so we request them.
45 var properties = []; variable
52 properties.push(prop);
62 assertEquals(expectedProperties.length, properties.length);
64 properties.forEach(function(prop) {
68 taintProperties(properties);
/external/chromium_org/v8/test/intl/number-format/
H A Dproperty-override.js41 // list of properties.
43 // First get supported properties.
44 var properties = []; variable
45 // Some properties are optional and won't show up in resolvedOptions if
54 properties.push(prop);
66 assertEquals(expectedProperties.length, properties.length);
68 properties.forEach(function(prop) {
72 taintProperties(properties);
/external/robolectric/src/test/java/com/xtremelabs/robolectric/util/
H A DPropertiesHelperTest.java20 Properties properties = new Properties();
21 properties.setProperty("result", "{${first.value} + ${system.value.xbf5547}}");
23 properties.setProperty("first.value", "first");
24 PropertiesHelper.doSubstitutions(properties);
25 assertEquals("{first + system}", properties.getProperty("result"));
/external/chromium_org/chrome/browser/extensions/api/bluetooth_low_energy/
H A Dutils.cc15 const std::vector<CharacteristicProperty> properties) {
18 properties.begin();
19 iter != properties.end();
28 // Copy the properties. Use Characteristic::ToValue to generate the result
29 // dictionary without the properties, to prevent json_schema_compiler from
31 std::vector<CharacteristicProperty> properties = from->properties; local
32 from->properties.clear();
35 "properties", CharacteristicPropertiesToValue(properties)
14 CharacteristicPropertiesToValue( const std::vector<CharacteristicProperty> properties) argument
41 std::vector<CharacteristicProperty> properties = local
[all...]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/editor/structure/property/
H A DPropertyListIntersector.java38 public void intersect(Property[] properties) { argument
41 for (int i = 0; i < properties.length; i++) {
42 Property property = properties[i];
48 if (!propertyGroup.add(properties)) {
59 List<Property> properties = Lists.newArrayList();
63 properties.add(compositeProperty);
67 return properties.toArray(new Property[properties.size()]);
98 public boolean add(Property[] properties) { argument
99 for (Property property : properties) {
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DMatchResult.cpp46 void MatchResult::addMatchedProperties(const StylePropertySet* properties, StyleRule* rule, unsigned linkMatchType, PropertyWhitelistType propertyWhitelistType) argument
50 newProperties.properties = const_cast<StylePropertySet*>(properties);
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/host/chrome/
H A Dtts.js40 cvox.ChromeTts.prototype.speak = function(textString, queueMode, properties) {
41 if (!properties) {
42 properties = {};
45 goog.base(this, 'speak', textString, queueMode, properties);
48 this.createMessageForProperties_(textString, queueMode, properties));
112 * @param {Object=} properties Speech properties to use for this utterance.
117 function(textString, queueMode, properties) {
122 'properties': properties};
[all...]
/external/chromium_org/base/win/
H A Dshortcut.cc46 const ShortcutProperties& properties,
52 !(properties.options & ShortcutProperties::PROPERTIES_TARGET)) {
92 if ((properties.options & ShortcutProperties::PROPERTIES_TARGET) &&
93 FAILED(i_shell_link->SetPath(properties.target.value().c_str()))) {
97 if ((properties.options & ShortcutProperties::PROPERTIES_WORKING_DIR) &&
99 properties.working_dir.value().c_str()))) {
103 if (properties.options & ShortcutProperties::PROPERTIES_ARGUMENTS) {
104 if (FAILED(i_shell_link->SetArguments(properties.arguments.c_str())))
114 if ((properties.options & ShortcutProperties::PROPERTIES_DESCRIPTION) &&
115 FAILED(i_shell_link->SetDescription(properties
45 CreateOrUpdateShortcutLink(const FilePath& shortcut_path, const ShortcutProperties& properties, ShortcutOperation operation) argument
176 ResolveShortcutProperties(const FilePath& shortcut_path, uint32 options, ShortcutProperties* properties) argument
300 ShortcutProperties properties; local
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/network_configuration/js/
H A Dnetwork_config.js33 stringifyJSON_: function(properties) {
34 return JSON.stringify(properties, undefined, 2);
37 updateActiveSettings_: function(properties) {
38 this.activeArea_.value = this.stringifyJSON_(properties);
41 updateManagedSettings_: function(properties) {
47 this.managedArea_.value = this.stringifyJSON_(properties);
49 this.extractUserSettings_(properties));
53 updateState_: function(properties) {
54 this.stateArea_.value = this.stringifyJSON_(properties);
57 extractUserSettings_: function(properties) {
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/Layout/Shapes/resources/
H A Dshapes.js25 function createFloatingNode(properties) {
32 for (prop in properties) {
33 float.style[prop] = properties[prop];
44 function createFloatingObjects(properties, floatingObjectCount) {
47 testBox.appendChild(createFloatingNode(properties));
61 function createShapeOutsideTest(properties, shapeObjectCount) {
64 var floatingObjects = createFloatingObjects(properties, shapeObjectCount);
67 description: "Testing shapes with " + properties['webkitShapeOutside'] +" using " + shapeObjectCount + " shapes.",
/external/emma/core/java12/com/vladium/emma/data/
H A DCoverageOptionsFactory.java26 public static CoverageOptions create (final Properties properties) argument
29 Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_EXCLUDE_SYNTHETIC_METHODS,
33 Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_EXCLUDE_BRIDGE_METHODS,
37 Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_DO_SUID_COMPENSATION,
43 public static CoverageOptions create (final IProperties properties) argument
46 Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_EXCLUDE_SYNTHETIC_METHODS,
50 Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_EXCLUDE_BRIDGE_METHODS,
54 Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_DO_SUID_COMPENSATION,
/external/robolectric/src/main/java/com/xtremelabs/robolectric/util/
H A DPropertiesHelper.java10 public static String doSingleSubstitution(String originalValue, Properties properties) { argument
22 if (properties != null) {
23 propertyValue = properties.getProperty(propertyName);
41 public static void doSubstitutions(Properties properties) { argument
42 Enumeration<?> propertyNames = properties.propertyNames();
45 String propertyValue = properties.getProperty(propertyName);
46 String expandedPropertyValue = doSingleSubstitution(propertyValue, properties);
47 properties.setProperty(propertyName, expandedPropertyValue);
/external/bluetooth/bluedroid/test/suite/support/
H A Dadapter.c26 static bt_property_t *properties = NULL; variable
39 if (properties[i].type == type) {
40 return &properties[i];
61 property_free_array(properties, property_count);
62 properties = property_copy_array(new_properties, num_properties);
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
H A Dconsole_tts.js30 cvox.ConsoleTts.prototype.speak = function(textString, queueMode, properties) {
41 if (properties && properties['startCallback'] != undefined) {
45 if (properties && properties['endCallback'] != undefined) {
/external/chromium_org/tools/json_schema_compiler/
H A Didl_schema.py141 properties = OrderedDict()
145 properties[k] = v
147 'properties': properties,
169 properties = OrderedDict()
172 properties['deprecated'] = self.node.GetProperty('deprecated')
175 properties[property_name.lower()] = True
182 if 'options' not in properties:
183 properties['options'] = {}
184 properties['option
[all...]
/external/chromium_org/chromeos/dbus/
H A Dshill_manager_client.cc106 const base::DictionaryValue& properties,
112 ShillClientHelper::AppendServicePropertiesDictionary(&writer, properties);
120 const base::DictionaryValue& properties,
127 ShillClientHelper::AppendServicePropertiesDictionary(&writer, properties);
134 const base::DictionaryValue& properties,
140 ShillClientHelper::AppendServicePropertiesDictionary(&writer, properties);
146 virtual void VerifyDestination(const VerificationProperties& properties,
152 writer.AppendString(properties.certificate);
153 writer.AppendString(properties.public_key);
154 writer.AppendString(properties
[all...]
/external/chromium_org/base/test/
H A Dtest_shortcut_win.cc51 const ShortcutProperties& properties) {
81 if (properties.options & ShortcutProperties::PROPERTIES_TARGET) {
84 ValidatePathsAreEqual(properties.target, base::FilePath(read_target));
87 if (properties.options & ShortcutProperties::PROPERTIES_WORKING_DIR) {
90 ValidatePathsAreEqual(properties.working_dir,
94 if (properties.options & ShortcutProperties::PROPERTIES_ARGUMENTS) {
97 EXPECT_EQ(properties.arguments, read_arguments);
100 if (properties.options & ShortcutProperties::PROPERTIES_DESCRIPTION) {
103 EXPECT_EQ(properties.description, read_description);
106 if (properties
50 ValidateShortcut(const base::FilePath& shortcut_path, const ShortcutProperties& properties) argument
[all...]
/external/chromium_org/device/bluetooth/
H A Dbluetooth_gatt_connection_chromeos.cc48 BluetoothDeviceClient::Properties* properties =
51 if (!properties || !properties->connected.value())
93 BluetoothDeviceClient::Properties* properties =
97 if (!properties) {
102 if (property_name == properties->connected.name() &&
103 !properties->connected.value())
/external/chromium_org/third_party/WebKit/Source/build/scripts/templates/
H A DStylePropertyShorthand.h.tmpl41 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() %}

Completed in 1272 milliseconds

1234567891011>>