HomeSort by relevance Sort by last modified time
    Searched refs:properties (Results 26 - 50 of 351) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/webkit/WebCore/inspector/front-end/
ObjectPropertiesSection.js 29 this.emptyPlaceholder = (emptyPlaceholder || WebInspector.UIString("No Properties"));
48 var callback = function(properties) {
49 if (!properties)
51 self.updateProperties(properties);
56 updateProperties: function(properties, rootTreeElementConstructor, rootPropertyComparer)
66 properties.push(this.extraProperties[i]);
68 properties.sort(rootPropertyComparer);
72 for (var i = 0; i < properties.length; ++i)
73 this.propertiesTreeOutline.appendChild(new rootTreeElementConstructor(properties[i]));
91 // - convert a and b to strings (not needed here, properties are all strings
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
Android.mk 8 properties.cpp \
  /build/tools/check_prereq/
check_prereq.c 20 #include <cutils/properties.h>
  /external/nist-sip/java/javax/sip/
SipFactory.java 6 import java.util.Properties;
33 public synchronized SipStack createSipStack(Properties properties)
37 String name = properties.getProperty(IP_ADDRESS_PROP);
39 name = properties.getProperty(STACK_NAME_PROP);
53 .getConstructor(new Class[] {Properties.class})
54 .newInstance(new Object[] {properties});
  /libcore/luni/src/test/java/tests/api/org/xml/sax/support/
MockFilter.java 41 private Map<String, Object> properties = new HashMap<String, Object>(); field in class:MockFilter
57 return properties.get(name);
73 properties.remove(name);
75 properties.put(name, value);
MockReader.java 53 private Map<String, Object> properties = new HashMap<String, Object>(); field in class:MockReader
84 return properties.get(name);
122 properties.remove(name);
124 properties.put(name, value);
  /system/core/toolbox/
getprop.c 3 #include <cutils/properties.h>
  /external/bluetooth/bluez/test/
test-discovery 9 def device_found(address, properties):
12 for key in properties.keys():
13 value = properties[key]
  /external/oauth/core/src/main/java/net/oauth/
OAuthAccessor.java 28 * Properties of one User of an OAuthConsumer. Properties may be added freely,
50 private final Map<String, Object> properties = new HashMap<String, Object>(); field in class:OAuthAccessor
53 return properties.get(name);
57 properties.put(name, value);
  /external/webkit/WebKitTools/Scripts/
update-iexploder-cssproperties 64 my @properties = ();
70 push(@properties, $l);
74 $result .= join("\n", sort { $a cmp $b } @properties) . "\n\n";
  /external/bluetooth/glib/tests/gobject/
ifaceproperties.c 33 /* This test tests interface properties, implementing interface
34 * properties and #GParamSpecOverride.
36 * Four properties are tested:
405 GParamSpec **properties,
413 if (properties[i] == param_spec)
427 GParamSpec **properties; local
439 /* Test setting and getting the properties
468 /* Test g_object_class_find_property() for overridden properties
477 /* Test g_object_class_list_properties() for overridden properties
479 properties = g_object_class_list_properties (object_class, &n_properties)
    [all...]
  /external/webkit/WebCore/platform/graphics/cg/
ImageSourceCG.cpp 170 RetainPtr<CFDictionaryRef> properties(AdoptCF, CGImageSourceCopyPropertiesAtIndex(m_decoder, index, imageSourceOptions()));
171 if (properties) {
173 CFNumberRef num = (CFNumberRef)CFDictionaryGetValue(properties.get(), kCGImagePropertyPixelWidth);
176 num = (CFNumberRef)CFDictionaryGetValue(properties.get(), kCGImagePropertyPixelHeight);
196 RetainPtr<CFDictionaryRef> properties(AdoptCF, CGImageSourceCopyProperties(m_decoder, imageSourceOptions()));
197 if (properties) {
198 CFDictionaryRef gifProperties = (CFDictionaryRef)CFDictionaryGetValue(properties.get(), kCGImagePropertyGIFDictionary);
246 RetainPtr<CFDictionaryRef> properties(AdoptCF, CGImageSourceCopyPropertiesAtIndex(m_decoder, index, imageSourceOptions()));
247 if (properties) {
248 CFDictionaryRef typeProperties = (CFDictionaryRef)CFDictionaryGetValue(properties.get(), kCGImagePropertyGIFDictionary)
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/
ReportProperties.java 200 // public static Properties getReportProperties (final Properties appProperties, final String reportType)
214 // public static String getReportProperty (final String type, final Map properties, final String key)
216 // if (properties == null) throw new IllegalArgumentException ("null input: properties");
227 // if (! properties.containsKey (fullKey)) // default to type-neutral lookup
231 // return (String) properties.get (fullKey);
234 // public static String getReportParameter (final String type, final Map properties, final String key, final String def)
236 // final String value = getReportProperty (type, properties, key);
242 public static ParsedProperties parseProperties (final IProperties properties, final String type
    [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/proguard/examples/
proguardall.pro 34 -adaptresourcefilenames **.properties,**.gif,**.jpg
35 -adaptresourcefilecontents proguard/ant/task.properties
proguardgui.pro 46 # class names. Notably, in this case, the GUI resource properties file will
49 -adaptresourcefilenames **.properties,**.gif,**.jpg
  /frameworks/base/cmds/bugreport/
bugreport.c 21 #include <cutils/properties.h>
  /system/media/opensles/libopensles/
IEnvironmentalReverb.c 635 SLEnvironmentalReverbSettings properties = *pProperties; local
636 if (!(SL_MILLIBEL_MIN <= properties.roomLevel && properties.roomLevel <= 0))
638 if (!(SL_MILLIBEL_MIN <= properties.roomHFLevel && properties.roomHFLevel <= 0))
640 if (!(100 <= properties.decayTime && properties.decayTime <= 20000))
642 if (!(100 <= properties.decayHFRatio && properties.decayHFRatio <= 2000))
644 if (!(SL_MILLIBEL_MIN <= properties.reflectionsLevel &
    [all...]
  /external/webkit/WebCore/css/
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, unsigned variableDependentValueCount)
74 return adoptRef(new CSSMutableStyleDeclaration(0, properties, variableDependentValueCount));
118 // Besides adding the properties, this also removes any existing properties with these IDs.
149 String getShorthandValue(const int* properties, int number) const;
150 String getCommonValue(const int* properties, int number) const;
151 String getLayeredShorthandValue(const int* properties, unsigned number) const;
152 String get4Values(const int* properties) const
    [all...]
  /external/webkit/WebKit/mac/Plugins/Hosted/
NetscapePluginHostManager.mm 225 RetainPtr<NSMutableDictionary> properties(AdoptNS, [[NSMutableDictionary alloc] init]);
228 [properties.get() setObject:mimeType forKey:@"mimeType"];
231 [properties.get() setObject:userAgent forKey:@"userAgent"];
234 [properties.get() setObject:attributeKeys forKey:@"attributeKeys"];
237 [properties.get() setObject:attributeValues forKey:@"attributeValues"];
240 [properties.get() setObject:[sourceURL absoluteString] forKey:@"sourceURL"];
242 [properties.get() setObject:[NSNumber numberWithBool:fullFrame] forKey:@"fullFrame"];
243 [properties.get() setObject:[NSNumber numberWithBool:isPrivateBrowsingEnabled] forKey:@"privateBrowsingEnabled"];
244 [properties.get() setObject:[NSNumber numberWithBool:isAcceleratedCompositingEnabled] forKey:@"acceleratedCompositingEnabled"];
246 NSData *data = [NSPropertyListSerialization dataFromPropertyList:properties.get() format:NSPropertyListBinaryFormat_v1_0 errorDescription:nil]
    [all...]
  /external/v8/test/mjsunit/
debug-handle.js 120 for (i in obj.properties) {
121 switch (obj.properties[i].name) {
123 obj.properties[i].ref = handle_o;
127 obj.properties[i].ref = handle_p;
151 for (i in obj.properties) {
152 var ref = obj.properties[i].ref;
154 switch (obj.properties[i].name) {
170 assertEquals(handle_g, obj.properties[i].ref);
180 for (i in obj.properties) {
181 refs.push(obj.properties[i].ref)
    [all...]
enumeration-order.js 44 // Validate the enumeration order for object up to 100 named properties.
58 // properties.
61 // We enumerate indexed properties in numerical order followed by
62 // named properties in insertion order, followed by indexed properties
64 // properties of the prototype object in insertion order, and so on.
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/avd/
AvdManager.java 181 * @param properties The property map. Cannot be null.
184 Map<String, String> properties) {
185 this(name, path, targetHash, target, properties, AvdStatus.OK);
198 * @param properties The property map. Can be null.
202 Map<String, String> properties, AvdStatus status) {
207 mProperties = properties == null ? null : Collections.unmodifiableMap(properties);
271 * Returns an unmodifiable map of properties for the AVD. This can be null.
294 return String.format("Failed to parse properties from %1$s",
702 // get the hardware properties for this ski
1151 Map<String, String> properties = null; local
1423 Map<String, String> properties = new HashMap<String, String>(); local
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/
shell.js 187 var properties = new Array();
189 properties[ properties.length ] = new Array( p, o[p] );
191 return properties;
  /frameworks/base/cmds/bootanimation/
bootanimation_main.cpp 19 #include <cutils/properties.h>

Completed in 516 milliseconds

12 3 4 5 6 7 8 91011>>