Searched refs:properties (Results 1 - 25 of 645) 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/robolectric/v1/
H A Dfind-android.sh10 echo "sdk.dir=$ANDROID_HOME" > local.properties
H A Dfind-android.bat6 @echo "sdk.dir=%x%" >> local.properties
/external/lzma/CPP/7zip/UI/Common/
H A DSetProperties.h8 HRESULT SetProperties(IUnknown *unknown, const CObjectVector<CProperty> &properties);
/external/robolectric/v1/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/skia/infra/bots/recipe_modules/core/examples/
H A Dfull.py9 'recipe_engine/properties',
21 api.properties(buildername=buildername,
26 api.properties(patch_storage='gerrit') +
27 api.properties.tryserver(
37 api.properties(buildername=buildername,
42 api.properties(patch_storage='gerrit') +
43 api.properties.tryserver(
53 api.properties(
62 api.properties.tryserver(
75 api.properties(
[all...]
/external/deqp/external/vulkancts/framework/vulkan/
H A DvkQueryUtil.cpp54 vector<VkQueueFamilyProperties> properties; local
60 properties.resize(numQueues);
61 vk.getPhysicalDeviceQueueFamilyProperties(physicalDevice, &numQueues, &properties[0]);
63 if ((size_t)numQueues != properties.size())
67 return properties;
82 VkPhysicalDeviceProperties properties; local
84 deMemset(&properties, 0, sizeof(properties));
86 vk.getPhysicalDeviceProperties(physicalDevice, &properties);
87 return properties;
92 VkPhysicalDeviceMemoryProperties properties; local
102 VkFormatProperties properties; local
112 VkImageFormatProperties properties; local
123 vector<VkSparseImageFormatProperties> properties; local
201 vector<VkLayerProperties> properties; local
218 vector<VkExtensionProperties> properties; local
235 vector<VkLayerProperties> properties; local
252 vector<VkExtensionProperties> properties; local
[all...]
/external/caliper/caliper/src/main/java/com/google/caliper/bridge/
H A DVmPropertiesLogMessage.java28 * A message containing a selection of {@link System#getProperties() system properties} from the
34 private final ImmutableMap<String, String> properties; field in class:VmPropertiesLogMessage
40 public VmPropertiesLogMessage(ImmutableMap<String, String> properties) { argument
41 this.properties = checkNotNull(properties);
44 public ImmutableMap<String, String> properties() { method in class:VmPropertiesLogMessage
45 return properties;
54 return Objects.hashCode(properties);
63 return this.properties.equals(that.properties);
[all...]
/external/caliper/caliper/src/main/java/com/google/caliper/model/
H A DHost.java35 * The performance-informing properties of the host on which a benchmark is run.
44 private SortedMap<String, String> properties; field in class:Host
48 this.properties = Maps.newTreeMap();
52 this.properties = Maps.newTreeMap(builder.properties);
57 public ImmutableSortedMap<String, String> properties() { method in class:Host
58 return ImmutableSortedMap.copyOf(properties);
66 return this.properties.equals(that.properties);
89 .add("properties", propertie
102 private final SortedMap<String, String> properties = Maps.newTreeMap(); field in class:Host.Builder
110 addAllProperies(Map<String, String> properties) argument
[all...]
H A DVmSpec.java39 private SortedMap<String, String> properties; field in class:VmSpec
44 this.properties = Maps.newTreeMap();
49 this.properties = Maps.newTreeMap(builder.properties);
57 public ImmutableSortedMap<String, String> properties() { method in class:VmSpec
58 return ImmutableSortedMap.copyOf(properties);
66 return this.properties.equals(that.properties)
86 .add("properties", properties)
101 private final SortedMap<String, String> properties = Maps.newTreeMap(); field in class:VmSpec.Builder
119 addAllProperties(Map<String, String> properties) argument
[all...]
/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/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base.tests/
H A Dbuild.properties16 plugin.properties,\
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.tests/
H A Dbuild.properties16 plugin.properties,\
/external/robolectric/v1/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/skia/infra/bots/recipes/
H A Dupload_nano_results.py13 'recipe_engine/properties',
21 builder_name = api.properties['buildername']
42 issue = api.properties.get('patch_issue')
43 patchset = api.properties.get('patch_set')
48 'gs://%s' % api.properties['gs_bucket'], gs_path, basename))
60 api.properties(buildername=builder,
69 api.properties(buildername=builder,
74 api.properties.tryserver(
/external/chromium-trace/catapult/common/eslint/rules/
H A Dcatapult-camelcase.js28 properties: {
29 properties: {
73 let properties = options.properties || "";
75 if (properties !== "always" && properties !== "never") {
76 properties = "always";
100 // "never" check properties
101 if (properties === "never") {
123 // "never" check properties
[all...]
/external/vulkan-validation-layers/libs/vkjson/
H A Dvkjson.h37 VkLayerProperties properties; member in struct:VkJsonLayer
43 memset(&properties, 0, sizeof(VkPhysicalDeviceProperties));
49 VkPhysicalDeviceProperties properties; member in struct:VkJsonDevice
81 const VkImageFormatProperties& properties);
83 VkImageFormatProperties* properties,
93 const VkJsonAllProperties& properties) {
94 return VkJsonDeviceToJson(properties);
97 VkJsonAllProperties* properties,
99 return VkJsonDeviceFromJson(json, properties, errors);
92 VkJsonAllPropertiesToJson( const VkJsonAllProperties& properties) argument
96 VkJsonAllPropertiesFromJson(const std::string& json, VkJsonAllProperties* properties, std::string* errors) argument
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/extensions/compactnotation/
H A DCompactData.java26 private Map<String, String> properties = new HashMap<String, String>(); field in class:CompactData
37 return properties;
46 return "CompactData: " + prefix + " " + properties;
/external/skia/infra/bots/recipe_modules/isolate/tests/
H A Disolated_tests.py7 'recipe_engine/properties',
22 api.properties(
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/properties/
H A DXMPAliasInfo.java10 package com.adobe.xmp.properties;
H A DXMPProperty.java10 package com.adobe.xmp.properties;
H A DXMPPropertyInfo.java10 package com.adobe.xmp.properties;
17 * It is returned when properties are iterated with the <code>XMPIterator</code>.
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
H A Dproperties.rb15 @properties = []
18 attr_reader :properties
24 @properties << [$text, $type, $line, $pos, $index, $channel, $start, $stop]
30 example "referencing lexer rule properties" do
34 lexer.properties.should have( 3 ).things
35 text, type, line, pos, index, channel, start, stop = lexer.properties[ 0 ]
45 text, type, line, pos, index, channel, start, stop = lexer.properties[ 1 ]
55 lexer.properties.should have( 3 ).things
56 text, type, line, pos, index, channel, start, stop = lexer.properties[ 2 ]
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu/
H A Dbuild.properties18 plugin.properties,\
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/
H A Dbuild.properties18 plugin.properties,\

Completed in 949 milliseconds

1234567891011>>