HomeSort by relevance Sort by last modified time
    Searched refs:properties (Results 1 - 25 of 3448) 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/robolectric/v1/
find-android.sh 10 echo "sdk.dir=$ANDROID_HOME" > local.properties
  /hardware/interfaces/broadcastradio/1.1/
IBroadcastRadio.hal 24 * Retrieve implementation properties.
25 * @return properties A Properties structure containing implementation
28 getProperties_1_1() generates (Properties 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"));
  /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...]
  /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...]
  /frameworks/base/libs/hwui/pipeline/skia/
RenderNodeDrawable.cpp 90 return mRenderNode->properties();
96 if ((!mInReorderingSection) || MathUtils::isZero(mRenderNode->properties().getZ())) {
110 // event that the properties change and it becomes visible.
119 const RenderProperties& properties = this->getNodeProperties(); local
122 ? &properties.getOutline() : nullptr;
123 if (!properties.getProjectBackwards()) {
140 static bool layerNeedsPaint(const LayerProperties& properties,
143 || properties.alpha() < 255
144 || properties.xferMode() != SkBlendMode::kSrcOver
145 || properties.colorFilter() != nullptr)
157 const RenderProperties& properties = renderNode->properties(); local
    [all...]
  /external/deqp/external/vulkancts/framework/vulkan/
vkQueryUtil.cpp 54 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
174 vector<VkLayerProperties> properties; local
191 vector<VkExtensionProperties> properties; local
208 vector<VkLayerProperties> properties; local
225 vector<VkExtensionProperties> properties; local
    [all...]
  /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/skia/infra/bots/recipe_modules/upload_nano_results/
example.py 10 'recipe_engine/properties',
23 api.properties(buildername=builder,
32 api.properties(buildername=builder,
42 api.properties(
48 api.properties.tryserver(
api.py 15 builder_name = self.m.properties['buildername']
36 issue = str(self.m.properties.get('issue', ''))
37 patchset = str(self.m.properties.get('patchset', ''))
38 if self.m.properties.get('patch_storage', '') == 'gerrit':
39 issue = str(self.m.properties['patch_issue'])
40 patchset = str(self.m.properties['patch_set'])
45 'gs://%s' % self.m.properties['gs_bucket'], gs_path, basename))
  /frameworks/base/libs/hwui/tests/unit/
SkiaRenderPropertiesTests.cpp 77 testProperty([](RenderProperties& properties) {
78 properties.setClipToBounds(true);
79 properties.setClipBounds(android::uirenderer::Rect(10, 20, 300, 400));
87 testProperty([](RenderProperties& properties) {
88 properties.mutableRevealClip().set(true, 50, 50, 25);
95 testProperty([](RenderProperties& properties) {
96 properties.mutableOutline().setShouldClip(true);
97 properties.mutableOutline().setRoundRect(10, 20, 30, 40, 5.0f, 0.5f);
104 testProperty([](RenderProperties& properties) {
105 properties.setLeftTopRightBottom(10, 10, 110, 110)
    [all...]
  /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/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/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base.tests/
build.properties 16 plugin.properties,\
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.tests/
build.properties 16 plugin.properties,\
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/util/
PropertiesHelper.java 4 import java.util.Properties;
10 public static String doSingleSubstitution(String originalValue, Properties properties) {
22 if (properties != null) {
23 propertyValue = properties.getProperty(propertyName);
41 public static void doSubstitutions(Properties properties) {
42 Enumeration<?> propertyNames = properties.propertyNames();
45 String propertyValue = properties.getProperty(propertyName);
46 String expandedPropertyValue = doSingleSubstitution(propertyValue, properties);
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/os/
SystemProperties_Delegate.java 43 Map<String, String> properties = Bridge.getPlatformProperties(); local
44 String value = properties.get(key);
53 Map<String, String> properties = Bridge.getPlatformProperties(); local
54 String value = properties.get(key);
64 Map<String, String> properties = Bridge.getPlatformProperties(); local
65 String value = properties.get(key);
79 Map<String, String> properties = Bridge.getPlatformProperties(); local
80 String value = properties.get(key);
97 Map<String, String> properties = Bridge.getPlatformProperties(); local
98 properties.put(key, def)
    [all...]
  /hardware/interfaces/bluetooth/1.0/default/test/
properties.cc 17 #define LOG_TAG "properties"
25 #include <cutils/properties.h>
36 struct property properties[MAX_PROPERTIES]; variable in typeref:struct:property
41 if (strncmp(properties[i].key, key, PROP_KEY_MAX) == 0) {
61 strncpy(properties[prop_index].key, key, PROP_KEY_MAX + 1);
62 strncpy(properties[prop_index].value, value, PROP_VALUE_MAX + 1);
75 int len = strlen(properties[prop_index].value);
76 memcpy(value, properties[prop_index].value, len);
  /external/vulkan-validation-layers/libs/vkjson/
vkjson.h 37 VkLayerProperties properties; member in struct:VkJsonLayer
43 memset(&properties, 0, sizeof(VkPhysicalDeviceProperties));
47 VkPhysicalDeviceProperties properties; member in struct:VkJsonDevice
75 const VkImageFormatProperties& properties);
77 VkImageFormatProperties* properties,
87 const VkJsonAllProperties& properties) {
88 return VkJsonDeviceToJson(properties);
91 VkJsonAllProperties* properties,
93 return VkJsonDeviceFromJson(json, properties, errors);

Completed in 1264 milliseconds

1 2 3 4 5 6 7 8 91011>>