HomeSort by relevance Sort by last modified time
    Searched refs:properties (Results 1 - 25 of 4057) 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...]
  /cts/hostsidetests/incident/src/com/android/server/cts/
SystemPropertiesTest.java 22 * Tests system properties has correct incident filters.
27 static void verifySystemPropertiesProto(SystemPropertiesProto properties, final int filterLevel) {
30 assertTrue(properties.getExtraPropertiesCount() > 0);
32 assertEquals(0, properties.getExtraPropertiesCount());
35 assertEquals(filterLevel == PRIVACY_AUTO, properties.getPersist().getSysTimezone().isEmpty());
37 assertFalse(properties.getRo().getBuild().getDisplayId().isEmpty());
  /external/robolectric/v1/
find-android.sh 10 echo "sdk.dir=$ANDROID_HOME" > local.properties
  /external/lzma/CPP/7zip/UI/Common/
SetProperties.h 8 HRESULT SetProperties(IUnknown *unknown, const CObjectVector<CProperty> &properties);
  /hardware/interfaces/drm/1.0/default/
LegacyPluginPath.cpp 19 #include <cutils/properties.h>
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/util/
PropertiesHelperTest.java 5 import java.util.Properties;
20 Properties properties = new Properties(); local
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/
full.py 9 '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_storage='gerrit')
    [all...]
  /frameworks/base/location/java/android/location/
LocationProvider.java 59 public LocationProvider(String name, ProviderProperties properties) {
64 mProperties = properties;
85 public static boolean propertiesMeetCriteria(String name, ProviderProperties properties,
91 if (properties == null) {
98 criteria.getAccuracy() < properties.mAccuracy) {
102 criteria.getPowerRequirement() < properties.mPowerRequirement) {
105 if (criteria.isAltitudeRequired() && !properties.mSupportsAltitude) {
108 if (criteria.isSpeedRequired() && !properties.mSupportsSpeed) {
111 if (criteria.isBearingRequired() && !properties.mSupportsBearing) {
114 if (!criteria.isCostAllowed() && properties.mHasMonetaryCost)
    [all...]
  /frameworks/base/libs/hwui/pipeline/skia/
RenderNodeDrawable.cpp 92 return mRenderNode->properties();
98 if ((!mInReorderingSection) || MathUtils::isZero(mRenderNode->properties().getZ())) {
105 if (CC_UNLIKELY(Properties::skpCaptureEnabled)) {
112 // event that the properties change and it becomes visible.
122 const RenderProperties& properties = this->getNodeProperties(); local
125 displayList->containsProjectionReceiver() ? &properties.getOutline() : nullptr;
126 if (!properties.getProjectBackwards()) {
143 static bool layerNeedsPaint(const LayerProperties& properties, float alphaMultiplier,
146 if (alphaMultiplier < 1.0f || properties.alpha() < 255 ||
147 properties.xferMode() != SkBlendMode::kSrcOver || properties.colorFilter() != nullptr)
182 const RenderProperties& properties = renderNode->properties(); local
    [all...]
  /external/skia/infra/bots/recipes/
upload_skiaserve.py 16 '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(
  /external/skqp/infra/bots/recipes/
upload_skiaserve.py 16 '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(
  /libcore/ojluni/src/main/java/java/util/
PropertyResourceBundle.java 56 * <code>PropertyResourceBundle</code>. Instead, you supply properties
58 * will automatically look for the appropriate properties file and create a
69 * therefore is the content of the file "MyResources_de.properties"
119 * @see Properties
137 Properties properties = new Properties(); local
138 properties.load(stream);
139 lookup = new HashMap(properties);
158 Properties properties = new Properties() local
    [all...]
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/internal/
DefaultManifestFactoryTest.java 5 import java.util.Properties;
20 Properties properties = new Properties(); local
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() local
58 Properties properties = new Properties(); local
    [all...]
  /external/skqp/infra/bots/recipe_modules/core/examples/
full.py 9 '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.tryserver
    [all...]
  /frameworks/base/libs/hwui/tests/unit/
SkiaRenderPropertiesTests.cpp 78 [](RenderProperties& properties) {
79 properties.setClipToBounds(true);
80 properties.setClipBounds(android::uirenderer::Rect(10, 20, 300, 400));
90 [](RenderProperties& properties) {
91 properties.mutableRevealClip().set(true, 50, 50, 25);
100 [](RenderProperties& properties) {
101 properties.mutableOutline().setShouldClip(true);
102 properties.mutableOutline().setRoundRect(10, 20, 30, 40, 5.0f, 0.5f);
111 [](RenderProperties& properties) {
112 properties.setLeftTopRightBottom(10, 10, 110, 110)
    [all...]
  /hardware/qcom/gps/msm8909w_3100/utils/platform_lib_abstractions/loc_pla/src/
platform_lib_property_service.cpp 31 #include <cutils/properties.h>
  /hardware/qcom/gps/msm8998/utils/platform_lib_abstractions/loc_pla/src/
platform_lib_property_service.cpp 33 #include <cutils/properties.h>
  /external/caliper/caliper/src/main/java/com/google/caliper/bridge/
VmPropertiesLogMessage.java 28 * 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) {
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/
Host.java 35 * 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", properties
102 private final SortedMap<String, String> properties = Maps.newTreeMap(); field in class:Host.Builder
    [all...]
VmSpec.java 39 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
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
DecimalFormat.java 50 * the specification for more information on how all the properties in DecimalFormat fit together.
91 * <h3>Properties and Symbols</h3>
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 ma
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DecimalFormat.java 49 * the specification for more information on how all the properties in DecimalFormat fit together.
90 * <h3>Properties and Symbols</h3>
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 ma
    [all...]
  /external/deqp/external/vulkancts/framework/vulkan/
vkQueryUtil.cpp 97 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[0])
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/
build.properties 91 global.build.properties ${basedir}/../global.build.properties
92 user.build.properties ${basedir}/../user.build.properties
  /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...]

Completed in 799 milliseconds

1 2 3 4 5 6 7 8 91011>>