HomeSort by relevance Sort by last modified time
    Searched defs:properties (Results 126 - 150 of 1756) sorted by null

1 2 3 4 56 7 8 91011>>

  /packages/services/Telecomm/src/com/android/server/telecom/
ParcelableCallUtils.java 56 int properties = convertConnectionToCallProperties(call.getConnectionProperties()); local
58 properties |= android.telecom.Call.Details.PROPERTY_CONFERENCE;
62 properties |= android.telecom.Call.Details.PROPERTY_ENTERPRISE_CALL;
125 properties,
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/SystemEvents/
Folder_Actions_Suite.py 154 """<Inheritance> - All of the properties of the superclass. """
164 """properties - every property of the Folder Actions Suite host program """
167 properties = _Prop_properties() variable
218 'properties' : _Prop_properties,
238 'properties' : _Prop_properties,
250 'properties' : _Prop_properties,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/SystemEvents/
Folder_Actions_Suite.py 154 """<Inheritance> - All of the properties of the superclass. """
164 """properties - every property of the Folder Actions Suite host program """
167 properties = _Prop_properties() variable
218 'properties' : _Prop_properties,
238 'properties' : _Prop_properties,
250 'properties' : _Prop_properties,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
BooleanXmlPropertyEditor.java 17 package com.android.ide.eclipse.adt.internal.editors.layout.properties;
39 private static final Image mTrueImage = DesignerPlugin.getImage("properties/true.png");
40 private static final Image mFalseImage = DesignerPlugin.getImage("properties/false.png");
42 DesignerPlugin.getImage("properties/BooleanNull.png");
44 DesignerPlugin.getImage("properties/BooleanUnknown.png");
ResourceValueCompleter.java 16 package com.android.ide.eclipse.adt.internal.editors.layout.properties;
52 * <li>also complete on properties
ValueCompleter.java 16 package com.android.ide.eclipse.adt.internal.editors.layout.properties;
52 * for Android properties, completing resource strings, flag values, enum
74 // for other properties and maybe both if I'm not sure)
XmlPropertyComposite.java 17 package com.android.ide.eclipse.adt.internal.editors.layout.properties;
29 * in the layout editor and the common properties are shown; editing a value
40 public XmlPropertyComposite(XmlProperty primary, XmlProperty[] properties) {
46 mProperties = properties;
109 public static XmlPropertyComposite create(Property... properties) {
111 XmlProperty[] xmlProperties = new XmlProperty[properties.length];
112 for (int i = 0; i < properties.length; i++) {
113 Property property = properties[i];
PropertyFactory.java 16 package com.android.ide.eclipse.adt.internal.editors.layout.properties;
78 * TODO: For any properties that are *set* in XML, they should NOT be labeled as
102 /** Sorting orders for the properties */
120 * Get the properties for the given list of selection items.
124 * @return the properties for the given items
137 // intersect properties
158 Property[] properties = mCache.get(node); local
160 properties = null;
162 if (properties == null) {
165 properties = new Property[0]
182 List<XmlProperty> properties = new ArrayList<XmlProperty>(attributeDescriptors.length); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/properties/
ValueCompleterTest.java 16 package com.android.ide.eclipse.adt.internal.editors.layout.properties;
  /system/bt/service/common/bluetooth/binder/
IBluetoothGattServer.cpp 86 int properties = data.readInt32(); local
91 server_if, *uuid, properties, permissions, &out_id);
230 int properties, int permissions,
238 data.writeInt32(properties);
  /system/bt/tools/bdtool/
adapter.c 27 static bt_property_t *properties = NULL; variable
39 // Returns the number of adapter properties.
47 if (properties[i].type == type) {
48 return &properties[i];
80 property_free_array(properties, property_count);
81 properties = property_copy_array(new_properties, num_properties);
154 bt_property_t *properties) {
159 parse_properties(num_properties, properties);
  /system/connectivity/shill/dhcp/
dhcp_config_unittest.cc 219 EXPECT_TRUE(config_->properties().address.empty());
237 IPConfig::Properties properties; local
238 properties.address = "1.2.3.4";
239 properties.lease_duration_seconds = 1;
243 // IPConfig properties. We need to ensure that no callbacks are left
247 config_->UpdateProperties(properties, true);
  /system/update_engine/payload_generator/
generate_delta_main.cc 235 brillo::KeyValueStore properties; local
237 PayloadSigner::ExtractPayloadProperties(payload_path, &properties));
239 printf("%s", properties.SaveToString().c_str());
241 properties.Save(base::FilePath(props_file));
242 LOG(INFO) << "Generated properties file at " << props_file;
311 "If passed, dumps the payload properties of the payload passed "
  /packages/services/Car/service/src/com/android/car/hal/
VehicleHal.java 139 VehiclePropConfigs properties = mVehicleNetwork.listProperties(); local
142 new LinkedList<VehiclePropConfig>(properties.getConfigsList());
149 Log.i(CarLog.TAG_HAL, "HalService " + service + " take properties " + taken.size());
163 mAllProperties.addAll(properties.getConfigsList());
310 writer.println("**All properties**");
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
Sdk.java 404 * and a quick checksum of the source.properties files. It's possible to have
407 * directory without altering the source.properties.)
443 * Initializes a new project with a target. This creates the <code>project.properties</code>
460 ProjectPropertiesWorkingCopy properties = null; local
463 properties = state.getProperties().makeWorkingCopy();
466 if (properties == null) {
473 properties = ProjectProperties.create(location.toOSString(), PropertyType.PROJECT);
477 properties.setProperty(ProjectProperties.PROPERTY_TARGET, target.hashString());
478 properties.save();
504 // load the project.properties from the project folder
513 ProjectProperties properties = ProjectProperties.load(projectLocation, local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/exportgradle/
BuildFileCreator.java 67 import java.util.Properties;
90 "gradle/wrapper/gradle-wrapper.properties" //$NON-NLS-1$
583 private static final String GRADLE_PROPERTIES = "gradle-wrapper.properties";
602 Properties properties = loadGradleWrapperProperties(propertiesFile); local
604 String property = properties.getProperty(GRADLEW_DISTRIBUTION_URL_PROPERTY_NAME);
610 properties.setProperty(GRADLEW_DISTRIBUTION_URL_PROPERTY_NAME, gradleDistributionUrl);
614 properties.store(out, null);
622 private static Properties loadGradleWrapperProperties(@NonNull File propertiesFile)
624 Properties properties = new Properties() local
    [all...]
  /frameworks/base/tests/SoundTriggerTestApp/src/com/android/test/soundtrigger/
TestSoundTriggerActivity.java 24 import java.util.Properties;
93 // Find meta-data in .properties files, ignore everything else.
94 if (!file.getName().endsWith(".properties")) {
98 Properties properties = new Properties(); local
99 properties.load(new FileInputStream(file));
100 createModelInfoAndWidget(properties);
102 Log.e(TAG, "Failed to load properties file " + file.getName());
108 Properties dummyModelProperties = new Properties()
    [all...]
  /external/caliper/caliper/src/main/java/com/google/caliper/config/
CaliperConfig.java 48 * Represents caliper configuration. By default, {@code ~/.caliper/config.properties} and
49 * {@code global-config.properties}.
54 @VisibleForTesting final ImmutableMap<String, String> properties; field in class:CaliperConfig
59 public CaliperConfig(ImmutableMap<String, String> properties)
61 this.properties = checkNotNull(properties);
62 this.resultProcessorConfigs = findResultProcessorConfigs(subgroupMap(properties, "results"));
102 public ImmutableMap<String, String> properties() { method in class:CaliperConfig
103 return properties;
114 .addAllOptions(getArgs(subgroupMap(properties, "vm"))
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/
extra_types.py 93 in json_value.properties])
129 properties=[
164 properties: A list of properties of a JsonObject.
178 properties = messages.MessageField(Property, 1, repeated=True) variable in class:JsonObject
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/sdb/db/
model.py 44 # look for all of the Properties and set their names
50 props = cls.properties()
111 def properties(cls, hidden=True): member in class:Model
112 properties = []
118 properties.append(prop)
123 return properties
155 # first try to initialize all properties to their default values
156 for prop in self.properties(hidden=False):
256 for prop in self.properties(hidden=False):
258 obj = {'properties': props
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
BuildMachineManager.java 25 import java.util.Properties;
129 Properties properties = null; local
134 properties = new Properties();
137 properties.load(in);
139 if (properties.containsValue(machineName)){
165 Properties cfgProperties = new Properties();
  /external/emma/core/java12/com/vladium/emma/
EMMAProperties.java 15 import java.util.Properties;
26 * A reflection of "${IAppConstants.APP_PROPERTY_RES_NAME}.properties" resource
99 * Wraps a Properties into a IProperties with the app's standard property
102 * @param properties [null results in null result]
104 public static IProperties wrap (final Properties properties)
106 if (properties == null) return null;
108 return IProperties.Factory.wrap (properties, ReportProperties.REPORT_PROPERTY_MAPPER);
112 * Retrieves application properties as classloader resource with a given name.
116 * @return properties [can be null
127 IProperties properties = (IProperties) s_properties.get (loader); local
    [all...]
  /external/emma/core/java12/com/vladium/util/
IProperties.java 18 import java.util.Properties;
49 Iterator /* String */ properties (); method in interface:IProperties
50 Properties toProperties ();
76 * Converts a java.util.Properties instance to an IProperties instance,
77 * with an optional property mapper. Note that 'properties' content is
81 * @param properties [may not be null]
83 * @return a property set based on 'properties' [never null]
85 public static IProperties wrap (final Properties properties, final IMapper mapper)
89 // always use propertyNames() for traversing java.util.Properties
208 public Iterator \/* String *\/ properties () method in class:IProperties.Factory.PropertiesImpl
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/security/
JDBCLoginService.java 29 import java.util.Properties;
50 * An example properties file for configuration is in
51 * $JETTY_HOME/etc/jdbcRealm.properties
117 Properties properties = new Properties(); local
119 properties.load(resource.getInputStream());
121 _jdbcDriver = properties.getProperty("jdbcdriver");
122 _url = properties.getProperty("url");
123 _userName = properties.getProperty("username")
    [all...]
PropertyUserStore.java 31 import java.util.Properties;
96 * returns the resource associated with the configured properties file, creating it if necessary
119 * refresh interval in seconds for how often the properties file should be checked for changes
134 Properties properties = new Properties(); local
136 properties.load(getConfigResource().getInputStream());
139 for (Map.Entry<Object, Object> entry : properties.entrySet())
217 * Depending on the value of the refresh interval, this method will either start up a scanner thread that will monitor the properties file for changes after

Completed in 1712 milliseconds

1 2 3 4 56 7 8 91011>>