/external/v8/test/mjsunit/ |
value-wrapper.js | 120 // Run test after properties have been set to a different value.
|
/libcore/luni/src/main/java/java/util/ |
Properties.java | 51 * A {@code Properties} object is a {@code Hashtable} where the keys and values 53 * {@code Properties} list which specifies the default 54 * values to be used when a given key is not found in this {@code Properties} 60 public class Properties extends Hashtable<Object, Object> { 66 private static final String PROP_DTD_NAME = "http://java.sun.com/dtd/properties.dtd"; 69 + " <!ELEMENT properties (comment?, entry*) >" 70 + " <!ATTLIST properties version CDATA #FIXED \"1.0\" >" 76 * The default values for keys not found in this {@code Properties} 79 protected Properties defaults; 85 * Constructs a new {@code Properties} object [all...] |
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/export/ |
MultiApkExportHelper.java | 142 // look to see if there's a minor properties file 162 * usually read from export.properties. 339 * mutli-apk from the project's default.properties file. 426 // same approved (for multi-apk export) hard-properties. 441 // Because supports-screens is the highest priority properties to be 580 "Any change in the multi-apk configuration requires an increment of the versionCode in export.properties.", 583 // make a map of properties 585 String[] properties = value.split(";"); local 586 for (String prop : properties) { 612 "Any change in the multi-apk configuration requires an increment of the versionCode in export.properties." [all...] |
/external/bluetooth/bluez/src/ |
main.c | 48 #include <cutils/properties.h>
|
/external/v8/src/ |
ast.h | 789 // about an object literal's properties from the parser 818 ZoneList<Property*>* properties, 824 properties_(properties) {} 829 virtual bool IsLeaf() { return properties()->is_empty(); } 834 ZoneList<Property*>* properties() const { return properties_; } function in class:v8::internal::ObjectLiteral 1040 // Synthetic properties are property lookups introduced by the system, 1042 // properties should use the global object as receiver, not the base object [all...] |
usage-analyzer.cc | 262 ReadList(node->properties());
|
objects-debug.cc | 535 VerifyHeapPointer(properties()); 539 (map()->inobject_properties() + properties()->length() - 602 PrintF(" - inobject properties: %d\n", inobject_properties()); 790 // Make sure that this object has no properties, elements. 791 CHECK_EQ(0, properties()->length()); [all...] |
objects-inl.h | 1116 ACCESSORS(JSObject, properties, FixedArray, kPropertiesOffset) 1197 // Make sure to adjust for the number of in-object properties. These 1198 // properties do contribute to the size, but are not internal fields. 1207 // properties are at the end of the object. Therefore there is no need 1216 // properties are at the end of the object. Therefore there is no need 1224 // Access fast-case object properties at index. The use of these routines 1225 // is needed to correctly distinguish between properties stored in-object and 1226 // properties stored in the properties array. [all...] |
messages.js | 160 with_expression: "%0 has no properties", 435 * source with the following properties: 528 * the following properties: 677 // To handle DontEnum properties we guess that the method has 933 // Setup extra properties of the Error.prototype object.
|
/frameworks/base/cmds/runtime/ |
main_runtime.cpp | 18 #include <cutils/properties.h>
|
/frameworks/base/media/libmediaplayerservice/ |
MetadataRetrieverClient.cpp | 30 #include <cutils/properties.h>
|
/frameworks/base/media/libstagefright/ |
AudioSource.cpp | 28 #include <cutils/properties.h>
|
CameraSource.cpp | 31 #include <cutils/properties.h>
|
/frameworks/base/services/audioflinger/ |
AudioResampler.cpp | 24 #include <cutils/properties.h>
|
/hardware/ti/omap3/libopencorehw/ |
android_surface_output_omap34xx.cpp | 47 #include <cutils/properties.h>
|
/system/bluetooth/brcm_patchram_plus/ |
brcm_patchram_plus.c | 77 #include <cutils/properties.h>
|
/system/core/libnetutils/ |
ifc_utils.c | 37 #include <cutils/properties.h>
|
/frameworks/base/services/java/com/android/server/ |
ThrottleService.java | 64 import java.util.Properties; 326 Properties properties = new Properties(); local 329 properties.load(stream); 330 mNtpServer = properties.getProperty("NTP_SERVER", null); [all...] |
/system/media/opensles/libopensles/ |
android_Effect.cpp | 168 size = sizeof(s_reverb_settings); // struct of all reverb properties 420 // initialize reverb properties 421 SLEnvironmentalReverbSettings properties; local 423 REVERB_PARAM_PROPERTIES, &properties)) { 424 ier->mProperties = properties; 433 // properties, select which max size to pass to avoid allocating too much memory 448 // properties, select which max size to pass to avoid allocating too much memory
|
/external/gtest/test/ |
gtest_unittest.cc | 1113 const List<TestProperty>& properties = test_result.test_properties(); local 1127 const List<TestProperty>& properties = test_result.test_properties(); local 1150 const List<TestProperty>& properties = test_result.test_properties(); local [all...] |
/external/libxml2/ |
SAX2.c | 967 ctxt->myDoc->properties = XML_DOC_HTML; 984 doc->properties = 0; 986 doc->properties |= XML_DOC_OLD10; [all...] |
c14n.c | 790 for(attr = cur->properties; attr != NULL; attr = attr->next) { 1000 attr = cur->properties; 1021 attr = cur->properties; [all...] |
/external/webkit/SunSpider/tests/parse-only/ |
prototype-1.6.0.3.js | 46 var parent = null, properties = $A(arguments); 47 if (Object.isFunction(properties[0])) 48 parent = properties.shift(); 65 for (var i = 0; i < properties.length; i++) 66 klass.addMethods(properties[i]); 80 var properties = Object.keys(source); 83 properties.push("toString", "valueOf"); 85 for (var i = 0, length = properties.length; i < length; i++) { 86 var property = properties[i], value = source[property]; [all...] |
/prebuilt/common/jfreechart/ |
jfreechart-1.0.9-swt.jar | |
/external/guava/src/com/google/common/collect/ |
Maps.java | 41 import java.util.Properties; 462 * Creates an {@code ImmutableMap<String, String>} from a {@code Properties} 463 * instance. Properties normally derive from {@code Map<Object, Object>}, but 465 * a plain-old-{@code Map} out of a {@code Properties}. 467 * @param properties a {@code Properties} object to be converted 469 * {@code properties} 470 * @throws ClassCastException if any key in {@code Properties} is not a 472 * @throws NullPointerException if any key or value in {@code Properties} is 476 fromProperties(Properties properties) [all...] |