HomeSort by relevance Sort by last modified time
    Searched refs:properties (Results 51 - 75 of 876) sorted by null

1 23 4 5 6 7 8 91011>>

  /ndk/tests/build/project-properties/jni/
Android.mk 6 $(call ndk_log,Test OK: Correct target platform retrieved from project.properties: $(TARGET_PLATFORM))
  /development/tools/emulator/system/camera/
EmulatedQemuCamera2.cpp 26 #include <cutils/properties.h>
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/support/
TestUtils.java 28 import java.util.Properties;
75 Properties properties = System.getProperties(); local
77 properties.remove(key);
79 properties.setProperty(key, value);
81 System.setProperties(properties);
85 * Creates security properties file.
88 * passed custom properties.
91 * security properties to be added to properties fil
    [all...]
  /external/emma/core/java12/com/vladium/emma/
AppLoggers.java 36 public static Logger create (final String appName, final IProperties properties, final Logger base)
38 if (properties == null)
39 throw new IllegalArgumentException ("null input: properties");
45 final String _level = properties.getProperty (PROPERTY_VERBOSITY_LEVEL,
54 final String _filter = properties.getProperty (PROPERTY_VERBOSITY_FILTER);
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/libnfc-nci/src/adaptation/
OverrideLog.cpp 26 #include <cutils/properties.h>
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Statements/
forin-001.js 102 var properties = new Array();
105 for ( properties[properties.length] in object ) {
106 values[values.length] = object[properties[properties.length-1]];
119 "properties.length",
121 properties.length );
125 "object["+properties[0]+"]",
127 object[properties[0]] );
267 var properties = new Array()
    [all...]
  /external/webkit/Source/WebCore/css/
CSSPropertyLonghand.h 40 const int* properties() const { return m_properties; } function in class:WebCore::CSSPropertyLonghand
CSSMutableStyleDeclaration.h 68 static PassRefPtr<CSSMutableStyleDeclaration> create(CSSRule* parentRule, const CSSProperty* const* properties, int numProperties)
70 return adoptRef(new CSSMutableStyleDeclaration(parentRule, properties, numProperties));
72 static PassRefPtr<CSSMutableStyleDeclaration> create(const Vector<CSSProperty>& properties)
74 return adoptRef(new CSSMutableStyleDeclaration(0, properties));
123 // Besides adding the properties, this also removes any existing properties with these IDs.
156 String getShorthandValue(const int* properties, size_t) const;
157 String getCommonValue(const int* properties, size_t) const;
158 String getLayeredShorthandValue(const int* properties, size_t) const;
159 String get4Values(const int* properties) const
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/examples/
wpas-dbus-new-signals.py 37 def interfaceAdded(interface, properties):
38 print "InterfaceAdded(%s): Ifname=%s" % (interface, properties['Ifname'])
43 def propertiesChanged(properties):
44 for i in properties:
45 print "PropertiesChanged: %s=%s" % (i, properties[i])
92 def bssAdded(bss, properties):
105 def networkAdded(network, properties):
114 def propertiesChangedInterface(properties):
115 for i in properties:
116 print "PropertiesChanged(interface): %s=%s" % (i, properties[i]
    [all...]
  /frameworks/base/core/jni/android/graphics/
RtlProperties.h 20 #include <cutils/properties.h>
  /tools/motodev/src/plugins/common/src/com/motorola/studio/android/model/manifest/dom/
AbstractBuildingBlockNode.java 69 properties.put(PROP_ENABLED, propEnabled.toString());
74 properties.put(PROP_EXPORTED, propExported.toString());
79 properties.put(PROP_PERMISSION, propPermission);
84 properties.put(PROP_PROCESS, propProcess);
AbstractUsesNode.java 68 properties.clear();
72 properties.put(PROP_NAME, propName);
74 properties.put(PROP_REQUIRED, Boolean.toString(isRequired));
76 return properties;
GrantUriPermissionNode.java 68 properties.clear();
72 properties.put(PROP_PATH, propPath);
77 properties.put(PROP_PATHPATTERN, propPathPattern);
82 properties.put(PROP_PATHPREFIX, propPathPrefix);
85 return properties;
MetadataNode.java 78 properties.clear();
80 properties.put(PROP_NAME, propName);
84 properties.put(PROP_RESOURCE, propResource);
89 properties.put(PROP_VALUE, propValue);
92 return properties;
  /frameworks/base/media/java/android/media/videoeditor/
MediaVideoItem.java 25 import android.media.videoeditor.MediaArtistNativeHelper.Properties;
117 final Properties properties; local
119 properties = mMANativeHelper.getMediaProperties(filename);
131 if ((properties.width > maxInputWidth) ||
132 (properties.height > maxInputHeight)) {
136 ", current width:" + properties.width +
137 " height:" + properties.height);
140 if (!properties.profileSupported) {
142 "Unsupported video profile " + properties.profile)
    [all...]
  /external/v8/test/mjsunit/
mirror-object.js 56 // Check the mirror properties.
69 var properties = mirror.properties();
70 assertEquals(names.length, properties.length);
71 for (var i = 0; i < properties.length; i++) {
72 assertTrue(properties[i] instanceof debug.Mirror, 'Unexpected mirror hierachy');
73 assertTrue(properties[i] instanceof debug.PropertyMirror, 'Unexpected mirror hierachy');
74 assertEquals('property', properties[i].type(), 'Unexpected mirror type');
75 assertEquals(names[i], properties[i].name(), 'Unexpected property name');
82 // If the object has some special properties don't test for these
    [all...]
  /libcore/luni/src/main/native/
java_lang_System.cpp 75 std::vector<std::string> properties; local
78 properties.push_back(std::string("user.dir=") + getcwd(path, sizeof(path)));
80 properties.push_back("android.zlib.version=" ZLIB_VERSION);
81 properties.push_back("android.openssl.version=" OPENSSL_VERSION_TEXT);
83 return toStringArray(env, properties);
  /external/webkit/Source/WebCore/inspector/front-end/
ObjectPropertiesSection.js 29 this.emptyPlaceholder = (emptyPlaceholder || WebInspector.UIString("No Properties"));
48 function callback(properties)
50 if (!properties)
52 self.updateProperties(properties);
60 updateProperties: function(properties, rootTreeElementConstructor, rootPropertyComparer)
70 properties.push(this.extraProperties[i]);
72 properties.sort(rootPropertyComparer);
76 for (var i = 0; i < properties.length; ++i) {
77 properties[i].parentObject = this.object;
78 this.propertiesTreeOutline.appendChild(new rootTreeElementConstructor(properties[i]))
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/cg/
ImageSourceCG.cpp 189 RetainPtr<CFDictionaryRef> properties(AdoptCF, CGImageSourceCopyPropertiesAtIndex(m_decoder, index, imageSourceOptions()));
190 if (properties) {
192 CFNumberRef num = (CFNumberRef)CFDictionaryGetValue(properties.get(), kCGImagePropertyPixelWidth);
195 num = (CFNumberRef)CFDictionaryGetValue(properties.get(), kCGImagePropertyPixelHeight);
210 RetainPtr<CFDictionaryRef> properties(AdoptCF, CGImageSourceCopyPropertiesAtIndex(m_decoder, 0, imageSourceOptions()));
211 if (!properties)
215 CFNumberRef num = (CFNumberRef)CFDictionaryGetValue(properties.get(), CFSTR("hotspotX"));
219 num = (CFNumberRef)CFDictionaryGetValue(properties.get(), CFSTR("hotspotY"));
235 // properties, allowing the cache to prune the partially decoded image.
247 RetainPtr<CFDictionaryRef> properties(AdoptCF, CGImageSourceCopyProperties(m_decoder, imageSourceOptions()))
    [all...]
  /external/chromium/testing/gtest/test/
gtest_stress_test.cc 78 const std::vector<TestProperty>& properties,
82 std::find_if(properties.begin(), properties.end(), matches_key);
83 ASSERT_TRUE(property != properties.end())
148 std::vector<TestProperty> properties; local
149 // We have no access to the TestResult's list of properties but we can
152 properties.push_back(result->GetTestProperty(i));
158 ExpectKeyAndValueWereRecordedForId(properties, i, "string");
159 ExpectKeyAndValueWereRecordedForId(properties, i, "int");
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/scripts/
results.properties 19 -config.properties "eclipseperfwin1,Win XP Sun 1.4.2_08 (2 GHz 512 MB),win,d:/m7perf/win;eclipseperflnx1,RHEL 3.0 Sun 1.4.2_08 (2 GHz 512 MB),linux,d:/m7perf/linux;eclipseperfwin2,Win XP Sun 1.4.2_08 (3 GHz 2 GB),win2,d:/m7perf/win2;eclipseperflnx2,RHEL 3.0 Sun 1.4.2_08 (3 GHz 2 GB),linux2,d:/m7perf/linux2" \
  /external/gtest/test/
gtest_stress_test.cc 78 const std::vector<TestProperty>& properties,
82 std::find_if(properties.begin(), properties.end(), matches_key);
83 ASSERT_TRUE(property != properties.end())
148 std::vector<TestProperty> properties; local
149 // We have no access to the TestResult's list of properties but we can
152 properties.push_back(result->GetTestProperty(i));
158 ExpectKeyAndValueWereRecordedForId(properties, i, "string");
159 ExpectKeyAndValueWereRecordedForId(properties, i, "int");
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
Android.mk 8 properties.cpp \
  /build/tools/check_prereq/
check_prereq.c 20 #include <cutils/properties.h>

Completed in 1286 milliseconds

1 23 4 5 6 7 8 91011>>