/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/model/ |
ComponentResultsElement.java | 27 import org.eclipse.ui.views.properties.IPropertyDescriptor; 28 import org.eclipse.ui.views.properties.PropertyDescriptor; 29 import org.eclipse.ui.views.properties.TextPropertyDescriptor; 106 * @see org.eclipse.ui.views.properties.IPropertySource#getPropertyDescriptors() 124 * @see org.eclipse.ui.views.properties.IPropertySource#getPropertyValue(java.lang.Object)
|
ResultsElement.java | 32 import org.eclipse.ui.views.properties.ComboBoxPropertyDescriptor; 33 import org.eclipse.ui.views.properties.IPropertyDescriptor; 34 import org.eclipse.ui.views.properties.IPropertySource; 35 import org.eclipse.ui.views.properties.PropertyDescriptor; 36 import org.eclipse.ui.views.properties.TextPropertyDescriptor; 305 * @see org.eclipse.ui.views.properties.IPropertySource#getPropertyDescriptors() 323 * @see org.eclipse.ui.views.properties.IPropertySource#getPropertyValue(java.lang.Object)
|
/external/v8/test/mjsunit/ |
const-redecl.js | 54 // delete to get rid of any added properties. 56 // Collect the global properties before the call. 57 var properties = []; 58 for (var key in this) properties.push(key); 74 // Get rid of any introduced global properties before 77 if (properties.indexOf(key) == -1) delete this[key];
|
array-pop.js | 62 // Check that pop works on inherited properties. 85 // Check that pop works on inherited properties for 110 // Check that pop works on inherited properties for
|
/external/webkit/Source/WebCore/bindings/v8/custom/ |
V8StorageCustom.cpp | 42 // Get an array containing the names of indexed properties in a collection. 47 v8::Handle<v8::Array> properties = v8::Array::New(length); local 52 properties->Set(v8::Integer::New(i), v8String(key)); 55 return properties;
|
/external/wpa_supplicant_8/wpa_supplicant/dbus/ |
dbus_new_introspect.c | 129 struct dl_list *list, const struct wpa_dbus_property_desc *properties) 133 for (dsc = properties; dsc && dsc->dbus_property; dsc++) { 146 * Iterates over all methods, signals, and properties registered with an 156 extract_interfaces_properties(list, obj_dsc->properties); 250 * Iterates over all methods, signals and properties registered with
|
dbus_new_helpers.c | 36 /* Only return properties for the requested D-Bus interface */ 41 /* Skip write-only properties */ 72 * get_all_properties - Responds for GetAll properties calls on object 74 * @interface: interface name which properties will be returned 75 * @property_dsc: list of object's properties 76 * Returns: Message with dict of variants as argument with properties values 78 * Iterates over all properties registered with object and execute getters 81 * with properties names as keys and theirs values as values. 108 if (!fill_dict_with_properties(&dict_iter, obj_dsc->properties, 114 "No readable properties" [all...] |
/frameworks/base/include/androidfw/ |
InputTransport.h | 91 PointerProperties properties; member in struct:android::InputMessage::Body::Motion::Pointer 98 return pointers[index].properties.id; 361 uint32_t id = msg->body.motion.pointers[i].properties.id;
|
/sdk/build/ |
tools.atree | 26 sdk/files/tools_source.properties tools/source.properties 78 external/qemu/android/avd/hardware-properties.ini tools/lib/hardware-properties.ini 137 # We're skipping the build and src/ trees (except for src/proguard/ant/task.properties) 147 prebuilts/tools/common/proguard/proguard4.7/src/proguard/ant/task.properties tools/proguard/ant/task.properties
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/ |
Sdk.java | 353 * Initializes a new project with a target. This creates the <code>project.properties</code> 370 ProjectPropertiesWorkingCopy properties = null; local 373 properties = state.getProperties().makeWorkingCopy(); 376 if (properties == null) { 383 properties = ProjectProperties.create(location.toOSString(), PropertyType.PROJECT); 387 properties.setProperty(ProjectProperties.PROPERTY_TARGET, target.hashString()); 388 properties.save(); 413 // load the project.properties from the project folder. 422 ProjectProperties properties = ProjectProperties.load(projectLocation, local 424 if (properties == null) [all...] |
/sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/ui/ |
PropertyViewer.java | 63 for (Property property : mSelectedNode.viewNode.properties) { 124 return mSelectedNode.viewNode.properties 125 .toArray(new Property[mSelectedNode.viewNode.properties.size()]);
|
/cts/tests/tests/view/src/android/view/cts/ |
MotionEventTest.java | 482 PointerProperties properties = new PointerProperties(); local 484 assertEquals(MotionEvent.INVALID_POINTER_ID, properties.id); 485 assertEquals(MotionEvent.TOOL_TYPE_UNKNOWN, properties.toolType); 489 PointerProperties properties = new PointerProperties(); local 490 properties.id = 1; 491 properties.toolType = MotionEvent.TOOL_TYPE_MOUSE; 493 PointerProperties copy = new PointerProperties(properties); 499 PointerProperties properties = new PointerProperties(); local 500 properties.id = 1; 501 properties.toolType = MotionEvent.TOOL_TYPE_MOUSE [all...] |
/hardware/ril/mock-ril/src/cpp/ |
protobuf_v8.cpp | 132 Local<Object> NewObject(Handle<Value> properties) const { 133 DBG("Type::NewObjext(properties) EX:"); 134 return Constructor()->NewInstance(1, &properties); 244 Handle<Array> properties = Array::New(descriptor->field_count()); local 276 properties->Set(i, value); 280 return NewObject(properties); 404 Handle<Array> properties = to_array->Call(src, 0, NULL).As<Array>(); local 407 Handle<Value> value = properties->Get(i);
|
/external/webkit/Source/WebCore/inspector/front-end/ |
inspector.css | 821 .console-group-messages .section .properties li .info { 863 .console-formatted-object .properties, .console-formatted-node .properties { 1381 .section .properties, .event-bar .event-properties { 1385 .section.expanded .properties, .event-bar.expanded .event-properties { 1390 .section.no-affect .properties li { 1394 .section.no-affect .properties li.editing { 1398 .properties-tree [all...] |
ConsoleView.js | 376 function evaluatedProperties(properties) 380 for (var i = 0; properties && i < properties.length; ++i) 381 propertyNames[properties[i].name] = true; 398 _reportCompletions: function(bestMatchOnly, completionsReadyCallback, dotNotation, bracketNotation, prefix, properties) { 407 properties.sort(); 409 for (var i = 0; i < properties.length; ++i) { 410 var property = properties[i]; 549 // There is no expression, so the completion should happen against global properties. 658 _printArray: function(elem, properties) [all...] |
/ndk/build/core/ |
add-application.mk | 63 # check whether APP_PLATFORM is defined. If not, look for project.properties in 69 _local_props := $(strip $(wildcard $(APP_PROJECT_PATH)/project.properties)) 71 # NOTE: project.properties was called default.properties before 72 _local_props := $(strip $(wildcard $(APP_PROJECT_PATH)/default.properties))
|
/external/v8/src/ |
mirror-debugger.js | 165 // Different kind of properties. 616 * properties are requested 629 // Find all the named properties. 635 // Get names for named interceptor properties if any. 646 // Find all the indexed properties. 652 // Get names for indexed interceptor properties. 667 // Copy names for named properties. 674 // Copy names for indexed properties. 686 * Return the properties for this object as an array of PropertyMirror objects. 688 * properties are requeste [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.core.contenttype_3.4.100.v20100505-1235.jar | |
/external/bluetooth/bluez/gdbus/ |
object.c | 50 const GDBusPropertyTable *properties; member in struct:interface_data 502 const GDBusPropertyTable *properties, 512 iface->properties = properties; 676 const GDBusPropertyTable *properties, 692 properties, user_data, destroy);
|
/frameworks/base/libs/androidfw/ |
Input.cpp | 503 PointerProperties& properties = mPointerProperties.editTop(); local 504 properties.id = parcel->readInt32(); 505 properties.toolType = parcel->readInt32(); 542 const PointerProperties& properties = mPointerProperties.itemAt(i); local 543 parcel->writeInt32(properties.id); 544 parcel->writeInt32(properties.toolType);
|
/external/emma/core/java12/com/vladium/logging/ |
Logger.java | 16 import java.util.Properties; 569 final Properties properties = Property.getAppProperties (IAppConstants.APP_NAME_LC, Logger.class.getClassLoader ()); typedefs 575 final String _level = properties.getProperty (AppLoggers.PROPERTY_VERBOSITY_LEVEL, 584 final String _filter = properties.getProperty (AppLoggers.PROPERTY_VERBOSITY_FILTER);
|
/external/smali/baksmali/src/main/java/org/jf/baksmali/ |
main.java | 41 import java.util.Properties; 65 InputStream templateStream = baksmali.class.getClassLoader().getResourceAsStream("baksmali.properties"); 66 Properties properties = new Properties(); typedefs 69 properties.load(templateStream); 70 version = properties.getProperty("application.version");
|
/external/smali/smali/src/main/java/org/jf/smali/ |
main.java | 48 import java.util.Properties; 69 InputStream templateStream = main.class.getClassLoader().getResourceAsStream("smali.properties"); 70 Properties properties = new Properties(); typedefs 73 properties.load(templateStream); 74 version = properties.getProperty("application.version");
|
/sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/device/ |
ViewNode.java | 48 public List<Property> properties = new ArrayList<Property>(); field in class:ViewNode 171 properties.add(property); 180 Collections.sort(properties, new Comparator<ViewNode.Property>() {
|
/device/samsung/tuna/audio/ |
ril_interface.c | 24 #include <cutils/properties.h>
|