HomeSort by relevance Sort by last modified time
    Searched full:properties (Results 1101 - 1125 of 6890) sorted by null

<<41424344454647484950>>

  /hardware/ti/omap3/dspbridge/inc/
dbdcddef.h 32 *! properties to DCD_NODEPROPS.
66 /* DCD Node Properties */
76 /* Dynamic load properties */
  /hardware/ti/omap3/dspbridge/libbridge/inc/
dbdcddef.h 32 *! properties to DCD_NODEPROPS.
66 /* DCD Node Properties */
76 /* Dynamic load properties */
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/actions/
FixProjectAction.java 42 * Action to fix the project properties:
97 return new Job("Fix Project Properties") {
103 monitor.beginTask("Fix Project Properties", 6);
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/
GLCompositeProperty.java 24 * A composite property is a container for multiple named properties, kind of like a dictionary.
118 "Values cannot be set for composite properties."); //$NON-NLS-1$
124 "Values cannot be obtained for composite properties."); //$NON-NLS-1$
  /frameworks/base/core/java/android/view/
ViewPropertyAnimator.java 28 * This class enables automatic and optimized animation of select properties on View objects.
29 * If only one or two properties on a View object are being animated, then using an
32 * appropriately. But if several properties are animated simultaneously, or if you just want a
37 * it will optimize invalidate calls to take place only once for several properties instead of each
43 * <p>This class is not constructed by the caller, but rather by the View whose properties
51 * The View whose properties are being animated by this class. This is set at
106 * A lazily-created ValueAnimator used in order to get some default animator properties
113 * properties currently being animated, as well as the cleanup after an animation is
119 * This list holds the properties that have been asked to animate. We allow the caller to
121 * enables us to run one single animator to handle several properties in parallel. Eac
    [all...]
  /external/chromium_org/chrome/common/extensions/api/
content_settings.json 16 "properties": {
42 "properties": {
67 "properties": {
96 "properties": {
115 "properties": {
175 "properties": {
  /external/chromium_org/chromeos/dbus/
bluetooth_device_client.h 25 // Structure of properties associated with bluetooth devices.
26 struct Properties : public dbus::PropertySet {
82 Properties(dbus::ObjectProxy* object_proxy,
85 virtual ~Properties();
120 // Obtain the properties for the device with object path |object_path|,
122 virtual Properties* GetProperties(const dbus::ObjectPath& object_path) = 0;
nfc_client_unittest.cc 235 NfcManagerClient::Properties* properties = local
237 ASSERT_TRUE(properties);
241 properties,
250 NfcAdapterClient::Properties* properties = local
252 ASSERT_TRUE(properties);
257 properties,
266 NfcAdapterClient::Properties* properties local
283 NfcDeviceClient::Properties* properties = local
300 NfcTagClient::Properties* properties = local
    [all...]
  /external/chromium_org/dbus/
property_unittest.cc 31 struct Properties : public PropertySet {
37 Properties(ObjectProxy* object_proxy,
78 // Create the properties structure
79 properties_.reset(new Properties(
145 scoped_ptr<Properties> properties_;
147 // Properties updated.
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/w3c/
test_converter.py 44 Returns the list of modified properties and the modified text if the file was modifed, None otherwise."""
102 # Find properties starting with the -webkit- prefix.
109 # Ignore any prefixed properties for which an unprefixed version is supported
113 """ Searches |text| for instances of properties requiring the -webkit- prefix and adds the prefix to them.
115 Returns the list of converted properties and the modified text."""
129 # FIXME: Handle the JS versions of these properties and GetComputedStyle, too.
  /external/chromium_org/tools/json_schema_compiler/test/
content_settings.json 13 "properties": {
38 "properties": {
63 "properties": {
92 "properties": {
111 "properties": {
171 "properties": {
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/META-INF/
MANIFEST.MF 23 properties;x-internal:=true,org.eclipse.pde.internal.build.site;x-fri
63 Name: plugin.properties
75 Name: data/env.properties
93 Name: templates/packager/packager.properties
102 Name: templates/packager/packaging.properties
126 Name: templates/headless-build/build.properties
  /external/openfst/src/include/fst/
concat.h 62 uint64 props1 = fst1->Properties(kFstProperties, false);
63 uint64 props2 = fst2.Properties(kFstProperties, false);
72 if (fst2.Properties(kExpanded, false))
127 uint64 props1 = fst1.Properties(kFstProperties, false);
128 uint64 props2 = fst2->Properties(kFstProperties, false);
137 if (fst1.Properties(kExpanded, false))
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
complement.h 25 #include "fst/lib/test-properties.h"
46 using FstImpl<A>::Properties;
59 uint64 props = fst.Properties(kILabelSorted, false);
121 if (fst.Properties(props, true) != props)
136 virtual uint64 Properties(uint64 mask, bool test) const {
142 return impl_->Properties(mask);
compose.h 28 #include "fst/lib/test-properties.h"
33 // properties of FST composition (in the template parameter to
86 // properties of the FSTs being composed.
92 using FstImpl<A>::Properties;
110 uint64 props1 = fst1.Properties(kFstProperties, false);
111 uint64 props2 = fst2.Properties(kFstProperties, false);
349 bool osorted = fst1.Properties(kOLabelSorted, false);
350 bool isorted = fst2.Properties(kILabelSorted, false);
357 osorted = fst1.Properties(kOLabelSorted, true);
366 isorted = fst2.Properties(kILabelSorted, true)
    [all...]
  /frameworks/base/services/java/com/android/server/location/
LocationProviderProxy.java 103 ProviderProperties properties = null;
117 // load properties from provider
118 properties = service.getProperties();
119 if (properties == null) {
121 " has invalid locatino provider properties");
139 mProperties = properties;
  /libcore/luni/src/main/java/java/util/jar/
Pack200.java 185 * Returns a sorted map of the properties of this packer.
187 * @return the properties of the packer.
189 SortedMap<String, String> properties(); method in interface:Pack200.Packer
266 * Returns a sorted map of the properties of this unpacker.
268 * @return the properties of unpacker.
270 SortedMap<String, String> properties(); method in interface:Pack200.Unpacker
  /libcore/luni/src/main/java/java/util/logging/
MemoryHandler.java 38 * {@code MemoryHandler} will read following {@code LogManager} properties for
39 * initialization, if given properties are not defined or has invalid values,
80 * {@code LogManager} properties or default values.
121 // init other properties which are common for all Handler
128 * push level, other properties using {@code LogManager} properties or
  /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,
  /prebuilts/tools/common/m2/internal/org/slf4j/slf4j-parent/1.7.2/
slf4j-parent-1.7.2.pom 36 <properties>
42 </properties>
277 <properties>
279 </properties>
319 <properties>
321 </properties>
  /build/tools/
buildinfo.sh 3 echo "# begin build properties"
45 echo "# end build properties"
  /docs/source.android.com/src/devices/tech/input/
key-character-map-files.jd 115 name, an open curly brace, a set of properties and behaviors and a close curly brace.</p>
123 <h4 id="properties">Properties</h4>
125 key character map files more compact, several properties can be mapped to the
128 Likewise, the <code>ctrl</code>, <code>alt</code> and <code>meta</code> properties are all simultaneously assigned
130 <p>The following properties are recognized:</p>
161 <p>The following modifiers are recognized in modifier properties:</p>
181 <p>The order in which the properties are listed is significant. When mapping a key to
182 a behavior, the system scans all relevant properties in order and returns the last
184 <p>Consequently, properties that are specified later override properties that ar
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/
Antlr3.Runtime.Tests (VS2005).csproj 10 <AppDesignerFolder>Properties</AppDesignerFolder>
44 <Compile Include="Properties\AssemblyInfo.cs" />
Antlr3.Runtime.Tests (VS2008).csproj 10 <AppDesignerFolder>Properties</AppDesignerFolder>
48 <Compile Include="Properties\AssemblyInfo.cs" />
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Utility/
Antlr3.Utility (VS2005).csproj 10 <AppDesignerFolder>Properties</AppDesignerFolder>
60 <Folder Include="Properties/" />

Completed in 1222 milliseconds

<<41424344454647484950>>