Searched refs:properties (Results 1 - 25 of 815) 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
/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',
15 if 'NoDEPS' in api.properties['buildername']:
24 api.properties(buildername=buildername,
29 api.properties(patch_storage='gerrit') +
30 api.properties.tryserver(
40 api.properties(buildername=buildername,
49 api.properties(buildername=buildername,
57 api.properties.tryserver(
68 api.properties(buildername=buildername,
73 api.properties(patch_storag
[all...]
/external/skia/infra/bots/recipes/
H A Dupload_skiaserve.py16 'recipe_engine/properties',
26 if api.properties.get('patch_issue') or api.properties.get('patch_set'):
33 target_arch, api.properties['revision'])
41 api.properties(buildername=builder,
50 api.properties(buildername=builder,
56 api.properties.tryserver(
H A Dandroid_compile.py11 'recipe_engine/properties',
17 buildername = api.properties['buildername']
18 issue = api.properties.get('patch_issue')
19 patchset = api.properties.get('patch_set')
43 api.properties(
55 api.properties(
/external/skqp/infra/bots/recipes/
H A Dupload_skiaserve.py16 'recipe_engine/properties',
26 if api.properties.get('patch_issue') or api.properties.get('patch_set'):
33 target_arch, api.properties['revision'])
41 api.properties(buildername=builder,
50 api.properties(buildername=builder,
56 api.properties.tryserver(
H A Dandroid_compile.py10 'recipe_engine/properties',
19 buildername = api.properties['buildername']
20 issue = api.properties.get('patch_issue')
21 patchset = api.properties.get('patch_set')
45 api.properties(
57 api.properties(
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/internal/
H A DDefaultManifestFactoryTest.java20 Properties properties = new Properties();
21 properties.put("android_merged_manifest", "gradle/AndroidManifest.xml");
22 properties.put("android_merged_resources", "gradle/res");
23 properties.put("android_merged_assets", "gradle/assets");
24 DefaultManifestFactory factory = new DefaultManifestFactory(properties);
38 Properties properties = new Properties();
39 properties.put("android_merged_manifest", "gradle/AndroidManifest.xml");
40 properties.put("android_merged_resources", "gradle/res");
41 properties.put("android_merged_assets", "gradle/assets");
42 properties
[all...]
/external/skqp/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,
46 api.properties(buildername=buildername,
54 api.properties.tryserver(
65 api.properties(buildername=buildername,
70 api.properties(patch_storage='gerrit') +
71 api.properties
[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/icu/android_icu4j/src/main/java/android/icu/text/
H A DDecimalFormat.java50 * the specification for more information on how all the properties in DecimalFormat fit together.
93 * <p>A DecimalFormat object encapsulates a set of <em>properties</em> and a set of
94 * <em>symbols</em>. Grouping size, rounding mode, and affixes are examples of properties. Locale
98 * setters in this class to set custom values for the properties.
125 * <p>A <em>pattern string</em> is a way to serialize some of the available properties for decimal
126 * formatting. However, not all properties are capable of being serialized into a pattern string;
251 // properties should be final, but clone won't work if we make it final.
259 /* final */ transient DecimalFormatProperties properties; field in class:DecimalFormat
275 * The effective properties as exported from the formatter object. Volatile because threads may
304 properties
2307 useCurrency(DecimalFormatProperties properties) argument
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DDecimalFormat.java49 * the specification for more information on how all the properties in DecimalFormat fit together.
92 * <p>A DecimalFormat object encapsulates a set of <em>properties</em> and a set of
93 * <em>symbols</em>. Grouping size, rounding mode, and affixes are examples of properties. Locale
97 * setters in this class to set custom values for the properties.
124 * <p>A <em>pattern string</em> is a way to serialize some of the available properties for decimal
125 * formatting. However, not all properties are capable of being serialized into a pattern string;
251 // properties should be final, but clone won't work if we make it final.
259 /* final */ transient DecimalFormatProperties properties; field in class:DecimalFormat
275 * The effective properties as exported from the formatter object. Volatile because threads may
305 properties
2491 useCurrency(DecimalFormatProperties properties) argument
[all...]
/external/deqp/external/vulkancts/framework/vulkan/
H A DvkQueryUtil.cpp97 vector<VkPhysicalDeviceGroupProperties> properties; local
103 properties.resize(numDeviceGroups);
106 properties[i].sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_GROUP_PROPERTIES_KHR;
107 properties[i].pNext = DE_NULL;
109 VK_CHECK(vk.enumeratePhysicalDeviceGroups(instance, &numDeviceGroups, &properties[0]));
111 if ((size_t)numDeviceGroups != properties.size())
114 return properties;
120 vector<VkQueueFamilyProperties> properties; local
126 properties.resize(numQueues);
127 vk.getPhysicalDeviceQueueFamilyProperties(physicalDevice, &numQueues, &properties[
159 VkPhysicalDeviceProperties properties; local
169 VkPhysicalDeviceMemoryProperties properties; local
179 VkFormatProperties properties; local
189 VkImageFormatProperties properties; local
200 vector<VkSparseImageFormatProperties> properties; local
278 vector<VkLayerProperties> properties; local
295 vector<VkExtensionProperties> properties; local
312 vector<VkLayerProperties> properties; local
329 vector<VkExtensionProperties> properties; local
[all...]
/external/annotation-tools/asmx/
H A Dbuild.properties91 global.build.properties ${basedir}/../global.build.properties
92 user.build.properties ${basedir}/../user.build.properties
/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/tensorflow/tensorflow/core/grappler/clusters/
H A Dutils.cc74 cudaDeviceProp properties; local
75 cudaError_t error = cudaGetDeviceProperties(&properties, gpu_id);
78 device.set_model(properties.name);
79 device.set_frequency(properties.clockRate * 1e-3);
80 device.set_num_cores(properties.multiProcessorCount);
81 device.set_num_registers(properties.regsPerMultiprocessor);
87 device.set_l1_cache_size((properties.major < 5) ? 16 * 1024 : 24 * 1024);
88 device.set_l2_cache_size(properties.l2CacheSize);
91 properties.sharedMemPerMultiprocessor);
92 device.set_memory_size(properties
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/impl/number/
H A DPatternStringParser.java50 DecimalFormatProperties properties = new DecimalFormatProperties();
51 parseToExistingPropertiesImpl(pattern, properties, ignoreRounding);
52 return properties;
60 * Parses a pattern string into an existing property bag. All properties that can be encoded into a pattern string
66 * @param properties
73 public static void parseToExistingProperties(String pattern, DecimalFormatProperties properties, argument
75 parseToExistingPropertiesImpl(pattern, properties, ignoreRounding);
78 public static void parseToExistingProperties(String pattern, DecimalFormatProperties properties) { argument
79 parseToExistingProperties(pattern, properties, PatternStringParser.IGNORE_ROUNDING_NEVER);
509 private static void parseToExistingPropertiesImpl(String pattern, DecimalFormatProperties properties, in argument
523 patternInfoToProperties(DecimalFormatProperties properties, ParsedPatternInfo patternInfo, int _ignoreRounding) argument
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
H A DPatternStringParser.java48 DecimalFormatProperties properties = new DecimalFormatProperties();
49 parseToExistingPropertiesImpl(pattern, properties, ignoreRounding);
50 return properties;
58 * Parses a pattern string into an existing property bag. All properties that can be encoded into a pattern string
64 * @param properties
71 public static void parseToExistingProperties(String pattern, DecimalFormatProperties properties, argument
73 parseToExistingPropertiesImpl(pattern, properties, ignoreRounding);
76 public static void parseToExistingProperties(String pattern, DecimalFormatProperties properties) { argument
77 parseToExistingProperties(pattern, properties, PatternStringParser.IGNORE_ROUNDING_NEVER);
507 private static void parseToExistingPropertiesImpl(String pattern, DecimalFormatProperties properties, in argument
521 patternInfoToProperties(DecimalFormatProperties properties, ParsedPatternInfo patternInfo, int _ignoreRounding) argument
[all...]

Completed in 748 milliseconds

1234567891011>>