Searched refs:properties (Results 1 - 25 of 886) 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/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DMatchResult.cpp48 visitor->trace(properties);
51 void MatchResult::addMatchedProperties(const StylePropertySet* properties, unsigned linkMatchType, PropertyWhitelistType propertyWhitelistType) argument
55 newProperties.properties = const_cast<StylePropertySet*>(properties);
/external/lzma/CPP/7zip/UI/Common/
H A DSetProperties.h8 HRESULT SetProperties(IUnknown *unknown, const CObjectVector<CProperty> &properties);
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSProperty.cpp64 return shorthand.properties()[logicalSide];
71 return shorthand.properties()[LeftSide];
73 return shorthand.properties()[RightSide];
75 return shorthand.properties()[BottomSide];
77 return shorthand.properties()[TopSide];
85 return shorthand.properties()[TopSide];
87 return shorthand.properties()[BottomSide];
89 return shorthand.properties()[LeftSide];
91 return shorthand.properties()[RightSide];
98 return shorthand.properties()[TopSid
165 resolveToPhysicalProperty(WritingMode writingMode, LogicalExtent logicalSide, const CSSPropertyID* properties) argument
174 static const CSSPropertyID properties[4] = { CSSPropertyBorderTop, CSSPropertyBorderRight, CSSPropertyBorderBottom, CSSPropertyBorderLeft }; local
231 const CSSPropertyID properties[2] = { CSSPropertyWidth, CSSPropertyHeight }; local
235 const CSSPropertyID properties[2] = { CSSPropertyWidth, CSSPropertyHeight }; local
239 const CSSPropertyID properties[2] = { CSSPropertyMinWidth, CSSPropertyMinHeight }; local
243 const CSSPropertyID properties[2] = { CSSPropertyMinWidth, CSSPropertyMinHeight }; local
247 const CSSPropertyID properties[2] = { CSSPropertyMaxWidth, CSSPropertyMaxHeight }; local
251 const CSSPropertyID properties[2] = { CSSPropertyMaxWidth, CSSPropertyMaxHeight }; local
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/
H A Dgenerate_supported_css.py39 properties = []
50 properties.append(entry)
51 return properties
53 properties = properties_from_file(sys.argv[1]) variable
55 f.write("WebInspector.CSSMetadata.initializeWithSupportedProperties(%s);" % json.dumps(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/extensions/browser/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/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
297 ShortcutProperties properties; local
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
H A Dconsole_tts.js30 cvox.ConsoleTts.prototype.speak = function(textString, queueMode, properties) {
40 if (properties && properties.category) {
41 logStr += ' category=' + properties.category;
46 if (properties && properties['startCallback'] != undefined) {
50 if (properties && properties['endCallback'] != undefined) {
/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/chromium_org/third_party/WebKit/Source/build/scripts/
H A Dcss_properties.py50 properties = self.in_file.name_dictionaries
52 self._aliases = {property['name']: property['alias_for'] for property in properties if property['alias_for']}
53 properties = [property for property in properties if not property['alias_for']]
55 assert len(properties) <= 1024, 'There are more than 1024 CSS Properties, you need to update CSSProperty.h/StylePropertyMetadata m_propertyID accordingly.'
58 for offset, property in enumerate(properties):
65 self._properties_list = properties
66 self._properties = {property['property_id']: property for property in properties}
/external/chromium_org/v8/src/compiler/
H A Doperator.cc14 SimpleOperator::SimpleOperator(Opcode opcode, Properties properties, argument
17 : Operator(opcode, properties, mnemonic),
/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/tools/json_schema_compiler/
H A Didl_schema.py143 properties = OrderedDict()
147 properties[k] = v
149 'properties': properties,
171 properties = OrderedDict()
174 properties['deprecated'] = self.node.GetProperty('deprecated')
176 properties['allowAmbiguousOptionalArguments'] = True
179 properties[property_name.lower()] = True
186 if 'options' not in properties:
187 properties['option
[all...]

Completed in 679 milliseconds

1234567891011>>