HomeSort by relevance Sort by last modified time
    Searched refs:properties (Results 1 - 25 of 1306) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/Python/tests/
t025lexerRulePropertyRef.py 20 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[0
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
MatchResult.cpp 48 visitor->trace(properties);
51 void MatchResult::addMatchedProperties(const StylePropertySet* properties, unsigned linkMatchType, PropertyWhitelistType propertyWhitelistType)
55 newProperties.properties = const_cast<StylePropertySet*>(properties);
  /external/lzma/CPP/7zip/UI/Common/
SetProperties.h 8 HRESULT SetProperties(IUnknown *unknown, const CObjectVector<CProperty> &properties);
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSProperty.cpp 64 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()[TopSide]
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/extensions/browser/api/bluetooth_low_energy/
utils.cc 15 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).release())
41 std::vector<CharacteristicProperty> properties = local
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/editor/structure/property/
PropertyListIntersector.java 38 public void intersect(Property[] properties) {
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(); local
63 properties.add(compositeProperty);
67 return properties.toArray(new Property[properties.size()]);
98 public boolean add(Property[] properties) {
99 for (Property property : properties) {
112 Property properties[] = m_properties.toArray(new Property[m_properties.size()]); local
    [all...]
  /development/build/
sdk-android-arm64-v8a.atree 20 ${HOST_OUT}/development/sys-img-${TARGET_CPU_ABI}/images_arm64-v8a_source.properties system-images/${PLATFORM_NAME}/${TARGET_CPU_ABI}/source.properties
sdk-android-armeabi.atree 20 ${HOST_OUT}/development/sys-img-${TARGET_CPU_ABI}/images_armeabi_source.properties system-images/${PLATFORM_NAME}/${TARGET_CPU_ABI}/source.properties
sdk-android-mips.atree 21 development/sys-img-${TARGET_CPU_ABI}/images_mips_source.properties system-images/${PLATFORM_NAME}/${TARGET_CPU_ABI}/source.properties
sdk-android-x86.atree 20 ${HOST_OUT}/development/sys-img-${TARGET_CPU_ABI}/images_${TARGET_ARCH}_source.properties system-images/${PLATFORM_NAME}/${TARGET_CPU_ABI}/source.properties
sdk-android-x86_64.atree 20 ${HOST_OUT}/development/sys-img-${TARGET_CPU_ABI}/images_${TARGET_ARCH}_source.properties system-images/${PLATFORM_NAME}/${TARGET_CPU_ABI}/source.properties
sdk-android-armeabi-v7a.atree 21 ${HOST_OUT}/development/sys-img-${TARGET_CPU_ABI}/images_armeabi-v7a_source.properties system-images/${PLATFORM_NAME}/${TARGET_CPU_ABI}/source.properties
  /external/chromium_org/base/win/
shortcut.cc 46 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.description.c_str())))
297 ShortcutProperties properties; local
    [all...]
  /external/chromium_org/v8/src/compiler/
operator.cc 14 SimpleOperator::SimpleOperator(Opcode opcode, Properties properties,
17 : Operator(opcode, properties, mnemonic),
  /external/emma/core/java12/com/vladium/emma/data/
CoverageOptionsFactory.java 11 import java.util.Properties;
26 public static CoverageOptions create (final Properties properties)
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)
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
    [all...]
  /external/bluetooth/bluedroid/test/suite/support/
adapter.c 26 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);
property.h 23 bt_property_t *property_copy_array(const bt_property_t *properties, size_t count);
32 void property_free_array(bt_property_t *properties, size_t count);
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/
generate_supported_css.py 39 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/base/test/
test_shortcut_win.cc 51 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.options & ShortcutProperties::PROPERTIES_ICON)
    [all...]
  /external/chromium_org/device/bluetooth/
bluetooth_gatt_connection_chromeos.cc 48 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/
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/chrome/browser/
shell_integration_win_unittest.cc 30 base::win::ShortcutProperties properties; member in struct:__anon9300::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...]
  /cts/tests/tests/calendarcommon/src/android/calendarcommon2/cts/
Calendarcommon2Test.java 38 List<ICalendar.Property> properties = local
40 assertTrue(properties == null);
47 properties = component.getProperties(RecurrenceSet.CTS_PROPERTY_NAME);
48 assertTrue(properties.size() == 1);
  /device/google/atv/sdk/
atv_sdk.atree 17 # Override source.properties in development/build/sdk-android-${TARGET_CPU_ABI}.atree
18 ${HOST_OUT}/device/google/atv/sdk/images_${TARGET_CPU_ABI}_source.properties system-images/${PLATFORM_NAME}/${TARGET_CPU_ABI}/source.properties
  /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);

Completed in 620 milliseconds

1 2 3 4 5 6 7 8 91011>>