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

<<11121314151617181920>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
PropertySheetPage.java 16 package com.android.ide.eclipse.adt.internal.editors.layout.properties;
22 import com.android.ide.eclipse.adt.internal.editors.layout.properties.PropertyFactory.SortingMode;
49 import org.eclipse.ui.views.properties.IPropertySheetPage;
257 "Show Advanced Properties",
XmlPropertyEditor.java 17 package com.android.ide.eclipse.adt.internal.editors.layout.properties;
91 * editing the XML properties, rendering defaults by looking up the actual colors and images,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/properties/
LibraryProperties.java 17 package com.android.ide.eclipse.adt.internal.properties;
75 * read-write copy of the properties being edited.
275 * the new properties on disk. Saving the properties on disk, via
  /system/bt/btif/src/
btif_core.c 62 #include "osi/include/properties.h"
703 bt_property_t properties[6]; local
715 BTIF_STORAGE_FILL_PROPERTY(&properties[num_props], BT_PROPERTY_BDADDR,
717 btif_storage_get_adapter_property(&properties[num_props]);
721 BTIF_STORAGE_FILL_PROPERTY(&properties[num_props], BT_PROPERTY_BDNAME,
723 btif_storage_get_adapter_property(&properties[num_props]);
727 BTIF_STORAGE_FILL_PROPERTY(&properties[num_props], BT_PROPERTY_ADAPTER_SCAN_MODE,
729 btif_storage_get_adapter_property(&properties[num_props]);
733 BTIF_STORAGE_FILL_PROPERTY(&properties[num_props], BT_PROPERTY_ADAPTER_DISCOVERY_TIMEOUT,
735 btif_storage_get_adapter_property(&properties[num_props])
    [all...]
  /system/connectivity/shill/wifi/
wifi.h 175 const KeyValueStore& properties) override;
177 void Certification(const KeyValueStore& properties) override;
180 void PropertiesChanged(const KeyValueStore& properties) override;
273 : path(path_in), properties(properties_in), is_removal(is_removal_in) {}
275 KeyValueStore properties; member in struct:shill::WiFi::ScanResult
426 const KeyValueStore& properties);
428 void CertificationTask(const KeyValueStore& properties);
430 void PropertiesChangedTask(const KeyValueStore& properties);
593 const KeyValueStore& properties,
679 // Properties
    [all...]
  /system/media/audio/include/system/
sound_trigger.h 23 #define SOUND_TRIGGER_MAX_STRING_LEN 64 /* max length of strings in properties or
92 struct sound_trigger_properties properties; member in struct:sound_trigger_module_descriptor
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.resources.compatibility_3.4.0.v20090505.jar 
org.eclipse.equinox.p2.reconciler.dropins_1.1.2.R36x_v20101111-1430.jar 
org.eclipse.core.contenttype_3.4.100.v20100505-1235.jar 
org.eclipse.osgi.util_3.2.100.v20100503.jar 
org.eclipse.equinox.p2.extensionlocation_1.2.0.v20100518.jar 
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
PropertiesTest.java 37 import java.util.Properties;
44 Properties tProps;
49 * java.util.Properties#Properties()
52 // Test for method java.util.Properties()
53 Properties p = new Properties();
56 assertTrue("Created incorrect Properties", true);
60 Properties p = new Properties();
84 Properties properties = new Properties(systemProperties); local
508 Properties properties = new Properties(); local
565 Properties properties = new Properties(defaults); local
    [all...]
  /external/guice/extensions/persist/lib/
hibernate-entitymanager.jar 
  /external/icu/tools/srcgen/currysrc/libs/
org.eclipse.core.contenttype_3.5.0.v20150421-2214.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.core.contenttype_3.4.200.v20130326-1255.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.core.contenttype_3.4.200.v20130326-1255.jar 
  /prebuilts/tools/common/m2/repository/org/apache/felix/maven-bundle-plugin/2.3.6/
maven-bundle-plugin-2.3.6.jar 
  /cts/tests/camera/src/android/hardware/camera2/cts/
AllocationTest.java 716 CameraCharacteristics properties = local
718 StaticMetadata staticInfo = new StaticMetadata(properties);
776 CameraCharacteristics properties = local
779 assertNotNull("Can't get camera properties!", properties);
782 properties.get(CameraCharacteristics.SCALER_STREAM_CONFIGURATION_MAP);
    [all...]
  /cts/tests/tests/midi/src/android/midi/cts/
MidiEchoTest.java 160 Bundle properties = info.getProperties(); local
161 String manufacturer = (String) properties.get(
165 String product = (String) properties.get(
268 Bundle properties = echoInfo.getProperties(); local
269 String tags = (String) properties.get("tags");
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiCopiesAndBlittingTests.cpp 608 VkImageFormatProperties properties; local
614 &properties) == VK_ERROR_FORMAT_NOT_SUPPORTED) ||
620 &properties) == VK_ERROR_FORMAT_NOT_SUPPORTED))
    [all...]
vktApiFeatureInfo.cpp 98 bool validateFeatureLimits(VkPhysicalDeviceProperties* properties, VkPhysicalDeviceFeatures* features, TestLog& log)
101 VkPhysicalDeviceLimits* limits = &properties->limits;
543 const vector<VkLayerProperties> properties = enumerateInstanceLayerProperties(context.getPlatformInterface()); local
546 for (size_t ndx = 0; ndx < properties.size(); ndx++)
548 log << TestLog::Message << ndx << ": " << properties[ndx] << TestLog::EndMessage;
550 layerNames.push_back(properties[ndx].layerName);
566 const vector<VkExtensionProperties> properties = enumerateInstanceExtensionProperties(context.getPlatformInterface(), DE_NULL); local
569 for (size_t ndx = 0; ndx < properties.size(); ndx++)
571 log << TestLog::Message << ndx << ": " << properties[ndx] << TestLog::EndMessage;
573 extensionNames.push_back(properties[ndx].extensionName)
586 const vector<VkExtensionProperties> properties = enumerateInstanceExtensionProperties(context.getPlatformInterface(), layer->layerName); local
610 const vector<VkLayerProperties> properties = vk::enumerateDeviceLayerProperties(context.getInstanceInterface(), context.getPhysicalDevice()); local
633 const vector<VkExtensionProperties> properties = enumerateDeviceExtensionProperties(context.getInstanceInterface(), context.getPhysicalDevice(), DE_NULL); local
653 const vector<VkExtensionProperties> properties = enumerateDeviceExtensionProperties(context.getInstanceInterface(), context.getPhysicalDevice(), layer->layerName); local
1418 const VkFormatProperties properties = getPhysicalDeviceFormatProperties(context.getInstanceInterface(), context.getPhysicalDevice(), format); local
1459 const VkFormatProperties properties = getPhysicalDeviceFormatProperties(context.getInstanceInterface(), context.getPhysicalDevice(), format); local
1810 VkImageFormatProperties properties; local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/image/
vktImageLoadStoreTests.cpp 411 const VkPhysicalDeviceProperties properties = getPhysicalDeviceProperties(context.getInstanceInterface(), context.getPhysicalDevice()); local
412 const VkDeviceSize alignment = properties.limits.minUniformBufferOffsetAlignment;
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/118/1/.cp/lib/
jarprocessor-ant.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/84/1/.cp/ant_tasks/
metadataRepository-ant.jar 
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
SoapSerializationEnvelope.java 57 public Hashtable properties = new Hashtable(); field in class:SoapSerializationEnvelope
78 * Set this variable to true if you prefer to silently skip unknown properties.
189 obj.getPropertyInfo(i, properties, info);
612 obj.getPropertyInfo(i, properties, propertyInfo);

Completed in 2289 milliseconds

<<11121314151617181920>>