/external/webkit/Source/WebKit/chromium/public/ |
WebBindings.h | 71 WEBKIT_API static bool getProperty(NPP, NPObject*, NPIdentifier property, NPVariant *result); 83 WEBKIT_API static bool hasProperty(NPP, NPObject*, NPIdentifier property);
|
/external/webkit/Source/JavaScriptCore/bytecompiler/ |
BytecodeGenerator.cpp | 265 globalObject->removeDirect(*m_globalData, function->ident()); // Make sure our new function is not shadowed by an old property. [all...] |
/frameworks/base/media/mtp/ |
MtpDevice.cpp | 214 MtpProperty* property = getDevicePropDesc(propCode); local 215 if (property) 216 mDeviceProperties.push(property); 239 MtpProperty* property = getDevicePropDesc(propCode); local 240 if (property) { 241 property->print(); 242 delete property; 258 MtpProperty* property = getObjectPropDesc(prop, format); local 259 if (property) { 260 property->print() 549 MtpProperty* property = new MtpProperty; local 568 MtpProperty* property = new MtpProperty; local [all...] |
/external/webkit/PerformanceTests/SunSpider/tests/parse-only/ |
mootools-1.2.2-core-nc.js | 73 Native.genericize = function(object, property, check){ 74 if ((!check || !object[property]) && typeof object.prototype[property] == 'function') object[property] = function(){ 76 return object.prototype[property].apply(args.shift(), args); 406 afterImplement: function(property, value){ 407 window[property] = Window.Prototype[property] = value; 436 afterImplement: function(property, value){ 437 document[property] = Document.Prototype[property] = value [all...] |
/external/chromium/chrome/browser/ |
app_controller_mac.h | 57 @property(readonly, nonatomic) BOOL startupComplete;
|
/external/chromium/chrome/browser/ui/cocoa/bookmarks/ |
bookmark_bubble_controller.h | 47 @property(readonly, nonatomic) const BookmarkNode* node;
|
/external/chromium/chrome/browser/ui/cocoa/extensions/ |
browser_actions_controller.h | 65 @property(readonly, nonatomic) BrowserActionsContainerView* containerView; 94 // preference property. If no preference is found, then the width for the
|
/external/chromium/chrome/browser/ui/cocoa/ |
fullscreen_controller.h | 75 @property(readonly, nonatomic) BOOL isFullscreen;
|
/external/harfbuzz/src/ |
harfbuzz-gdef.c | 692 HB_UShort* property ) 699 if ( !gdef || !property ) 711 *property = class << 8; 730 *property = 0; 734 *property = HB_GDEF_BASE_GLYPH; 738 *property = HB_GDEF_LIGATURE; 742 *property = HB_GDEF_MARK; 746 *property = HB_GDEF_COMPONENT; 984 HB_UShort property ) 1004 switch ( property ) [all...] |
harfbuzz-gdef.h | 126 HB_UShort* property );
|
/external/qemu/hw/ |
goldfish_device.h | 47 void goldfish_battery_set_prop(int ac, int property, int value);
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/ |
picoloaddbg.lua | 17 --- valid property names
20 --- valid property names (that may occur once only)
41 --- table with symbol name number keys (specified with property mapval)
64 -- construct props table and add first mapval property
82 print("*** error: syntax error in property list")
89 print("*** error: no mapval property found")
111 io.write("*** error: invalid property name '", prop, "'\n")
122 io.write("*** error: property '", prop, "' must be unique\n"); return
|
picoloadphones.lua | 16 --- valid property names
18 --- valid property names (that may occur once only)
39 --- table with symbol name number keys (specified with property mapval)
62 -- construct props table and add first mapval property
80 print("*** error: syntax error in property list")
87 print("*** error: no mapval property found")
109 io.write("*** error: invalid property name '", prop, "'\n")
120 io.write("*** error: property '", prop, "' must be unique\n"); return
|
/external/v8/test/mjsunit/bugs/ |
bug-900066.js | 28 // When a property of the arguments array is deleted, it 30 // Re-introducing the property does not connect to the parameter.
|
/external/v8/test/mjsunit/compiler/ |
function-call.js | 38 // Call on a named property. 44 // Call on a keyed property.
|
/external/v8/test/mjsunit/regress/ |
regress-1213.js | 28 // Test that we do not allow overwriting a global property with a 29 // redeclaration that makes the property configurable (and hence
|
/external/v8/test/mjsunit/ |
this-property-assignment.js | 28 // Tests the handling of multiple assignments to the same property in a 29 // constructor that only has simple this property assignments.
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/RegExp/ |
regexp-enumerate-001.js | 42 * 99.01.25: now they also have a multiLine instance property. 53 for ( p in r ) { e[e.length] = { property:p, value:r[p] }; t.addProperty( p, r[p]) }; 57 "for ( p in r ) { e[e.length] = { property:p, value:r[p] }; e.length", 76 "Property: " + name +" already enumerated?", 81 testcases[testcases.length-1].reason = "property already enumerated";
|
/external/webkit/Source/WebCore/platform/animation/ |
AnimationList.cpp | 51 FILL_UNSET_PROPERTY(isPropertySet, property, setProperty);
|
/frameworks/base/libs/hwui/ |
TextureCache.cpp | 38 char property[PROPERTY_VALUE_MAX]; local 39 if (property_get(PROPERTY_TEXTURE_CACHE_SIZE, property, NULL) > 0) { 40 INIT_LOGD(" Setting texture cache size to %sMB", property); 41 setMaxSize(MB(atof(property)));
|
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/location/ |
TrackLabelProvider.java | 73 public boolean isLabelProperty(Object element, String property) {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/ |
AttributeDescriptorLabelProvider.java | 71 public boolean isLabelProperty(Object element, String property) {
|
/frameworks/base/media/java/android/mtp/ |
MtpPropertyGroup.java | 36 private class Property { 37 // MTP property code 44 Property(int code, int type, int column) { 57 private final Property[] mProperties; 67 // constructs a property group for a list of properties 79 mProperties = new Property[count]; 90 private Property createProperty(int code, ArrayList<String> columns) { 176 Log.e(TAG, "unsupported property " + code); 182 return new Property(code, type, columns.size() - 1); 184 return new Property(code, type, -1) 345 Property property = mProperties[propertyIndex]; local [all...] |
/frameworks/opt/calendar/src/com/android/calendarcommon/ |
ICalendar.java | 76 private final LinkedHashMap<String, ArrayList<Property>> mPropsMap = 77 new LinkedHashMap<String, ArrayList<Property>>(); 134 * Adds a Property to this component. 137 public void addProperty(Property prop) { 139 ArrayList<Property> props = mPropsMap.get(name); 141 props = new ArrayList<Property>(); 148 * Returns a set of the property names within this component. 149 * @return A set of property names within this component. 158 * @param name The name of the property that should be returned. 161 public List<Property> getProperties(String name) 488 Property property; local [all...] |
/external/apache-http/src/org/apache/commons/logging/impl/ |
LogFactoryImpl.java | 41 * <li>Use the <code>org.apache.commons.logging.Log</code> system property 104 * property identifying our {@link Log} implementation class. 111 * The deprecated system property used for backwards compatibility with 119 * of the system property which can be set true/false to 134 * of the system property which can be set true/false to 150 * of the system property which can be set true/false to 378 * To use this method instead of a system property, call 677 * system property with the provided name and return its value. 681 * or a configuration property has been set in a commons-logging.properties 684 * @return the value associated with the property, or null [all...] |