HomeSort by relevance Sort by last modified time
    Searched refs:property (Results 76 - 100 of 280) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/
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/webkit/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/WebCore/page/animation/
KeyframeAnimation.h 56 bool hasAnimationForProperty(int property) const;
AnimationControllerPrivate.h 76 bool pauseTransitionAtTime(RenderObject*, const String& property, double t);
  /frameworks/base/awt/org/apache/harmony/awt/gl/font/
AndroidFontManager.java 79 * property file.
81 * RuntimeException is thrown if font property contains incorrect format of
84 * @return true is success, false if font property doesn't exist or doesn't
111 // Component Font Mappings property name
112 String property = FONT_MAPPING_KEYS[0].replaceAll("LogicalFontName", lName).replaceAll("StyleName", styleName).replaceAll("ComponentIndex", String.valueOf(numComp)); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ local
113 value = props.getProperty(property);
117 property = FONT_MAPPING_KEYS[1].replaceAll("LogicalFontName", lName).replaceAll("ComponentIndex", String.valueOf(numComp)); //$NON-NLS-1$ //$NON-NLS-2$
118 value = props.getProperty(property);
134 // Component Font Character Encodings property value
137 // Exclusion Ranges property valu
    [all...]
  /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) {
  /sdk/sdkmanager/app/src/com/android/sdkmanager/
Main.java 59 /** Java property that defines the location of the sdk/tools directory. */
61 /** Java property that defines the working directory. On Windows the current working directory
138 // We get passed a property for the tools dir
162 errorAndExit("The tools directory property is not set, please make sure you are executing %1$s",
166 // We might get passed a property for the working directory
1051 HardwareProperty property = hwProperties[i]; local
    [all...]
  /frameworks/base/core/java/android/pim/
ICalendar.java 77 private final LinkedHashMap<String, ArrayList<Property>> mPropsMap =
78 new LinkedHashMap<String, ArrayList<Property>>();
135 * Adds a Property to this component.
138 public void addProperty(Property prop) {
140 ArrayList<Property> props = mPropsMap.get(name);
142 props = new ArrayList<Property>();
149 * Returns a set of the property names within this component.
150 * @return A set of property names within this component.
159 * @param name The name of the property that should be returned.
162 public List<Property> getProperties(String name)
489 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...]
  /dalvik/libcore/security/src/main/java/java/security/
Security.java 148 * the name of the property.
149 * @return value of the property.
434 * Returns the value of the security property named by the argument.
442 * the name of the requested security property.
443 * @return the value of the security property.
456 String property = secprops.getProperty(key); local
457 if (property != null) {
458 property = property.trim();
460 return property;
    [all...]
  /external/webkit/WebCore/inspector/front-end/
InjectedScript.js 150 // original property from the real style declaration. If this represents
160 // Notify caller that the property was successfully deleted.
188 // Set the property on the real style declaration.
362 var property = {};
364 property.name = name;
365 property.priority = style.getPropertyPriority(name);
366 property.implicit = style.isPropertyImplicit(name);
368 property.shorthand = shorthand;
373 property.value = style.getPropertyValue(name);
374 result.properties.push(property);
    [all...]
inspectorSyntaxHighlight.css 41 .webkit-css-property, .webkit-css-at-rule {
  /external/v8/src/
mirror-debugger.js 156 const PROPERTY_TYPE = 'property';
183 // Different attributes for a property.
351 * Check whether the mirror reflects a property.
352 * @returns {boolean} True if the mirror reflects a property
611 * Return the property names for this object.
616 * @return {Array} Property names for this object
628 // Get the local property names.
688 * @return {Array} Property mirrors for this object
694 properties[i] = this.property(names[i]);
701 ObjectMirror.prototype.property = function(name)
    [all...]
  /external/webkit/JavaScriptCore/bytecompiler/
BytecodeGenerator.cpp 260 globalObject->removeDirect(function->ident()); // Make sure our new function is not shadowed by an old property.
    [all...]
  /external/v8/test/mjsunit/regress/
regress-186.js 42 // Add property called __proto__ to the extension object.
51 // Add const property called __proto__ to the extension object.
60 // Assign to the global __proto__ property.
regress-crbug-3184.js 29 for (property in source) dest[property] = source[property];
regress-386.js 34 // Adding i in the second call to the constructor creates a real property,
36 // and changes i from a map transition to a real property. There was
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/
DdmsPlugin.java 205 // get the name of the property that changed.
206 String property = event.getProperty();
208 if (PreferenceInitializer.ATTR_DEBUG_PORT_BASE.equals(property)) {
211 } else if (PreferenceInitializer.ATTR_SELECTED_DEBUG_PORT.equals(property)) {
214 } else if (PreferenceInitializer.ATTR_THREAD_INTERVAL.equals(property)) {
217 } else if (PreferenceInitializer.ATTR_LOG_LEVEL.equals(property)) {
220 } else if (PreferenceInitializer.ATTR_TIME_OUT.equals(property)) {
  /external/webkit/JavaScriptCore/jit/
JITPropertyAccess.cpp 56 unsigned property = currentInstruction[2].u.operand; local
61 stubCall.addArgument(Imm32(property));
69 unsigned property = currentInstruction[2].u.operand; local
74 stubCall.addArgument(ImmPtr(&m_codeBlock->identifier(property)));
82 unsigned property = currentInstruction[2].u.operand; local
87 stubCall.addArgument(ImmPtr(&m_codeBlock->identifier(property)));
96 unsigned property = currentInstruction[3].u.operand; local
100 stubCall.addArgument(ImmPtr(&m_codeBlock->identifier(property)));
120 unsigned property = currentInstruction[3].u.operand; local
124 stubCall.addArgument(property);
136 unsigned property = currentInstruction[2].u.operand; local
275 unsigned property = currentInstruction[3].u.operand; local
298 unsigned property = currentInstruction[3].u.operand; local
315 unsigned property = currentInstruction[2].u.operand; local
349 unsigned property = currentInstruction[2].u.operand; local
979 unsigned property = currentInstruction[3].u.operand; local
1007 unsigned property = currentInstruction[3].u.operand; local
    [all...]
  /external/bluetooth/bluez/network/
connection.c 155 const char *property = ""; local
161 DBUS_TYPE_STRING, &property);
164 DBUS_TYPE_STRING, &property);
477 const char *property; local
506 property = nc ? nc->dev : "";
507 dict_append_entry(&dict, "Device", DBUS_TYPE_STRING, &property);
510 property = nc ? bnep_uuid(nc->id) : "";
511 dict_append_entry(&dict, "UUID", DBUS_TYPE_STRING, &property);
  /external/v8/test/mjsunit/
mirror-regexp.js 73 assertEquals(mirror.property(p).attributes(),
91 assertEquals(mirror.property(p).propertyType(),
94 assertEquals(mirror.property(p).value().handle(),
97 assertEquals(mirror.property(p).value().value(),
  /external/webkit/LayoutTests/storage/
sql-data-types.js 24 writeMessageToLog("PASS: property '" + propName + "' ok, type was " + typeof result);
27 writeMessageToLog("FAIL: property '" + propName + "' failed."

Completed in 481 milliseconds

1 2 34 5 6 7 8 91011>>