/external/v8/test/mjsunit/ |
local-load-from-eval.js | 28 // Tests loads of local properties from eval.
|
/external/webkit/LayoutTests/fast/js/resources/ |
const.js | 115 // Make sure we don't override properties placed on the global object
|
/external/webkit/Source/WebCore/inspector/ |
InjectedScript.cpp | 84 void InjectedScript::getProperties(ErrorString* errorString, const String& objectId, bool ignoreHasOwnProperty, RefPtr<InspectorArray>* properties) 96 *properties = result->asArray();
|
/external/webkit/Tools/iExploder/iexploder-1.7.2/tools/ |
update_html_tags_from_sources.sh | 28 grep -v "^#" $src_dir/Source/WebCore/css/CSSPropertyNames.in > ${tmp_prefix}.css-properties 57 | awk '{ print $1 }' > ${tmp_prefix}.css-properties 83 grep '{"' $src_dir/src/cssparser.cc | cut -d\" -f2 > ${tmp_prefix}.css-properties 101 grep "g_ascii_strncasecmp" $src_dir/gtkhtml/htmlstyle.c | cut -d\" -f2 | cut -d" " -f1 | sed s/://g > ${tmp_prefix}.css-properties 109 types="css-properties css-values html-attrs html-tags html-values protocols headers mime-types css-pseudo css-atrules"
|
/frameworks/base/core/java/android/server/ |
BluetoothEventLoop.java | 178 private void addDevice(String address, String[] properties) { 181 deviceProperties.addProperties(address, properties); 211 * @param properties an array of property keys and value strings 215 private void onDeviceFound(String address, String[] properties) { 216 if (properties == null) { 217 Log.e(TAG, "ERROR: Remote device properties are null"); 220 addDevice(address, properties); 273 String[] properties = mBluetoothService.getRemoteDeviceProperties(address); local 274 if (properties != null) { 275 addDevice(address, properties); [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/ |
BaseViewRule.java | 73 /** List of recently edited properties */ 76 /** Maximum number of recent properties to track and list */ 420 RuleAction properties = RuleAction.createChoices("properties", "Other Properties", //$NON-NLS-1$ local 469 actions.add(properties); 531 * Creates a list of properties that are commonly edited for views of the 536 Map<String, Prop> properties = getPropertyMetadata(selectedNode); local 548 Prop property = properties.get(attribute); 579 * Creates a list of recently modified properties that apply to the given selected nod 584 Map<String, Prop> properties = getPropertyMetadata(selectedNode); local 602 Map<String, Prop> properties = getPropertyMetadata(selectedNode); local [all...] |
/sdk/emulator/tools/ |
Android.mk | 31 # to setup various system properties sent by the emulator program.
|
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/ |
ViewHierarchyLoader.java | 173 node.properties.add(property); 182 Collections.sort(node.properties, new Comparator<ViewNode.Property>() {
|
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/ |
PlatformTarget.java | 62 * @param properties the platform properties 74 Map<String, String> properties) { 79 mProperties = Collections.unmodifiableMap(properties); 346 * The representation is also purposely compact. It does not describe _all_ the properties
|
/external/v8/src/ |
regexp.js | 286 // ecma_2/RegExp/properties-001.js. 296 // Getters for the static properties lastMatch, lastParen, leftContext, and 297 // rightContext of the RegExp constructor. The properties are computed based 362 // The properties $1..$9 are the first nine capturing substrings of the last 419 // The properties input, $input, and $_ are aliases for each other. When this 437 // The properties multiline and $* are aliases for each other. When this 458 // Static properties set by a successful match.
|
/external/wpa_supplicant_8/wpa_supplicant/dbus/ |
dbus_new.c | 39 * @properties: Whether to add second argument with object properties 44 const char *sig_name, int properties) 66 if (properties) { 153 * @properties: Whether to add second argument with object properties 159 const char *sig_name, int properties) 182 if (properties) { 300 * @properties: determines if add second argument with object properties [all...] |
/external/libxslt/libxslt/ |
templates.c | 504 ret = target->properties; 611 * (Don't assign the result to @target->properties; if 634 if (target->properties) { 635 last = target->properties; 696 target->properties = copy; 800 return(target->properties);
|
/frameworks/opt/calendar/src/com/android/calendarcommon/ |
RecurrenceSet.java | 32 * Contains the RRULEs, RDATE, EXRULEs, and EXDATE properties. 484 List<ICalendar.Property> properties = component.getProperties(name); local 485 if (properties == null || properties.isEmpty()) { 489 if (properties.size() == 1) { 490 return properties.get(0).getValue();
|
/external/chromium/chrome/browser/debugger/ |
devtools_manager.cc | 306 DevToolsRuntimeProperties properties; local 310 properties = DevToolsRuntimeProperties(it->second.begin(), 313 IPC::Message* m = new DevToolsAgentMsg_Attach(properties);
|
/external/webkit/Source/WebCore/css/ |
CSSParser.h | 82 bool parseShorthand(int propId, const int* properties, int numProperties, bool important); 83 bool parse4Values(int propId, const int* properties, bool important); 103 bool parseFillShorthand(int propId, const int* properties, int numProperties, bool important); 160 // CSS3 Parsing Routines (for properties specific to CSS3)
|
/frameworks/base/core/java/android/os/ |
Debug.java | [all...] |
/frameworks/base/media/java/android/mtp/ |
MtpPropertyGroup.java | 56 // list of all properties in this group 67 // constructs a property group for a list of properties 69 int[] properties) { 75 int count = properties.length; 81 mProperties[i] = createProperty(properties[i], columns); 191 // for now we are only reading properties from the "objects" table 254 // for now we are only reading properties from the "objects" table 343 // iterate over all properties in the query for the given object
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/ |
ProjectState.java | 40 * <p>This gives raw access to the properties (from <code>project.properties</code>), as well 111 * <p/>This is identical to the value defined in the main project's project.properties. 177 ProjectState(IProject project, ProjectProperties properties) { 178 if (project == null || properties == null) { 183 mProperties = properties; 243 * Reloads the content of the properties. 479 * <li>Update the main project's <code>project.properties</code> with the new relative path 501 // one in the project properties (trailing separator could be different 515 // update the project.properties fil [all...] |
/external/libxml2/ |
tree.c | 1159 cur->properties = XML_DOC_USERBUILT; [all...] |
/dalvik/vm/native/ |
dalvik_system_VMRuntime.cpp | 155 ArrayObject* result = dvmCreateStringArray(*gDvm.properties); 222 { "properties", "()[Ljava/lang/String;",
|
/development/tools/emulator/system/camera/ |
EmulatedCameraFactory.cpp | 25 #include <cutils/properties.h>
|
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/ |
TestHelper_Connection1.java | 36 import java.util.Properties; 226 public Properties getClientInfo() throws SQLException { 239 public void setClientInfo(Properties properties)
|
/external/bluetooth/bluez/gdbus/ |
gdbus.h | 117 const GDBusPropertyTable *properties,
|
/external/harfbuzz/src/ |
harfbuzz-shaper-private.h | 134 HB_Bool HB_OpenTypeShape(HB_ShaperItem *item, const hb_uint32 *properties);
|
/external/v8/test/mjsunit/regress/ |
regress-969.js | 77 // properties. 104 // properties.
|