HomeSort by relevance Sort by last modified time
    Searched refs:property (Results 276 - 300 of 718) sorted by null

<<11121314151617181920>>

  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_new_helpers.h 37 /* property changed flags */
86 * struct wpa_dbus_property_desc - DBus property description
89 /* property name */
91 /* property interface */
93 /* property type signature in DBus type notation */
95 /* property getter function */
97 /* property setter function */
99 /* property access permissions */
143 const char *property);
dbus_new_helpers.c 230 "Property is write-only");
246 "Property is read-only");
256 char *property; local
262 /* Second argument: property name (DBUS_TYPE_STRING) */
268 dbus_message_iter_get_basic(iter, &property);
271 /* compare property names and
273 if (!os_strncmp(property_dsc->dbus_property, property,
282 wpa_printf(MSG_DEBUG, "no property handler for %s.%s on %s",
283 interface, property,
286 "No such property");
    [all...]
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
ICalendarTest.java 15 ICalendar.Property prop = new ICalendar.Property("prop1", "value1");
40 // properties should be listed in insertion order, by property name.
41 component.addProperty(new ICalendar.Property("prop2", "value3"));
42 component.addProperty(new ICalendar.Property("prop1", "value1"));
43 component.addProperty(new ICalendar.Property("prop1", "value2"));
60 child.addProperty(new ICalendar.Property("prop2", "value2"));
62 parent.addProperty(new ICalendar.Property("prop1", "value1"));
63 parent.addProperty(new ICalendar.Property("prop1", "value12"));
80 ICalendar.Property prop1 = component.getFirstProperty("PROP1")
98 ICalendar.Property property = component.getFirstProperty("DTSTART"); local
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/explorer/
FileLabelProvider.java 141 public boolean isLabelProperty(Object element, String property) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
UiModelTreeLabelProvider.java 91 public boolean isLabelProperty(Object element, String property) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ResourceLabelProvider.java 84 public boolean isLabelProperty(Object element, String property) {
  /sdk/sdkmanager/app/src/com/android/sdkmanager/
Main.java 78 /** Java property that defines the location of the sdk/tools directory. */
80 /** Java property that defines the working directory. On Windows the current working directory
168 // We get passed a property for the tools dir
192 errorAndExit("The tools directory property is not set, please make sure you are executing %1$s",
196 // We might get passed a property for the working directory
1354 HardwareProperty property = hwProperties[i]; local
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/bookmarks/
bookmark_bar_controller.h 268 @property(readonly, nonatomic) bookmarks::VisualState visualState;
269 @property(readonly, nonatomic) bookmarks::VisualState lastVisualState;
270 @property(assign, nonatomic) id<BookmarkBarControllerDelegate> delegate;
  /external/svox/pico/tts/
com_svox_picottsengine.cpp 531 int textlen; /* property string length */
551 /* Compose the property strings. */
    [all...]
  /external/webkit/Source/JavaScriptCore/qt/api/
qscriptengine_p.h 90 inline bool objectHasOwnProperty(JSObjectRef object, JSStringRef property) const;
247 inline bool QScriptEnginePrivate::objectHasOwnProperty(JSObjectRef object, JSStringRef property) const
250 return m_originalGlobalObject.objectHasOwnProperty(object, property);
qscriptoriginalglobalobject_p.h 43 inline bool objectHasOwnProperty(JSObjectRef object, JSStringRef property) const;
116 // Note that this is not the [[Prototype]] internal property (which we could
140 inline bool QScriptOriginalGlobalObject::objectHasOwnProperty(JSObjectRef object, JSStringRef property) const
144 JSValueRef propertyName[] = { JSValueMakeString(m_context, property) };
  /external/webkit/Source/JavaScriptCore/qt/tests/qscriptengine/
tst_qscriptengine.cpp 101 // a prototype property is automatically constructed
103 QScriptValue prot = fun.property("prototype", QScriptValue::ResolveLocal);
105 QVERIFY(prot.property("constructor").strictlyEquals(fun));
108 QEXPECT_FAIL("", "WebKit bug: 40613 (The JSObjectSetProperty doesn't overwrite property flags)", Continue);
125 // a prototype property is automatically constructed
127 QScriptValue prot = fun.property("prototype", QScriptValue::ResolveLocal);
129 QVERIFY(prot.property("constructor").strictlyEquals(fun));
132 QEXPECT_FAIL("", "WebKit bug: 40613 (The JSObjectSetProperty doesn't overwrite property flags)", Continue);
156 QCOMPARE(fun.property("prototype").strictlyEquals(proto), true);
159 QCOMPARE(proto.property("constructor").strictlyEquals(fun), true)
    [all...]
  /external/webkit/Source/WebCore/page/animation/
ImplicitAnimation.cpp 45 , m_transitionProperty(transition->property())
90 // to compare as different to any other style. This ensures that changes to the property
155 // If we have a keyframe animation on this property, this transition is being overridden. The keyframe
225 bool ImplicitAnimation::affectsProperty(int property) const
227 return (m_animatingProperty == property);
  /external/webkit/Source/JavaScriptCore/interpreter/
Interpreter.cpp 95 int property = vPC[2].u.operand; local
103 Identifier& ident = codeBlock->identifier(property);
125 int property = vPC[2].u.operand; local
142 Identifier& ident = codeBlock->identifier(property);
166 int property = vPC[2].u.operand; local
175 Identifier& ident = codeBlock->identifier(property);
203 int property = vPC[2].u.operand; local
221 Identifier& ident = codeBlock->identifier(property);
250 Identifier& ident = codeBlock->identifier(property);
277 int property = vPC[2].u.operand local
292 int property = vPC[3].u.operand; local
1191 Identifier& property = codeBlock->identifier(vPC[2].u.operand); local
    [all...]
  /external/webkit/Source/WebCore/dom/
make_names.pl 163 my ($tag, $property, $value) = @_;
167 # Initialize default property values.
170 if ($property) {
171 die "Unknown property $property for tag $tag\n" if !defined($parsedTags{$tag}{$property});
175 $parsedTags{$tag}{JSInterfaceName} = $value if $property eq "interfaceName" && $parsedTags{$tag}{JSInterfaceName} eq $parsedTags{$tag}{interfaceName};
177 $parsedTags{$tag}{$property} = $value;
183 my ($attr, $property, $value) = @_;
197 if ($property) {
    [all...]
  /external/webkit/Source/WebCore/inspector/
InjectedScriptSource.js 160 var property = {};
161 property.name = propertyName + "";
165 property.value = this._wrapObject(object[propertyName], objectGroupName);
167 property.value = new InjectedScript.RemoteObject.fromException(e);
171 property.value = new InjectedScript.RemoteObject.fromObject("\u2014"); // em dash
172 property.isGetter = true;
174 properties.push(property);
189 return propertyName in object ? "Cound not delete property." : undefined;
200 // Store the result in the property.
415 // get the real DOM wrapper name from the constructor property
    [all...]
  /external/v8/test/mjsunit/
strict-mode.js 101 // Property accessor parameter named 'eval'.
104 // Property accessor parameter named 'arguments'.
349 // object literal with string literal property names
477 delete o.property;
486 Object.defineProperty(object, "property", { value: "property_value" });
492 assertEquals(object.property, "property_value");
795 o.property = "value";
807 Object.defineProperty(o, "property", { value: 7 });
809 assertThrows(function() { o.property = "new value"; }, TypeError);
810 assertThrows(function() { o.property += 10; }, TypeError)
    [all...]
  /external/harfbuzz/src/
harfbuzz-gpos.c 1018 HB_UShort index, property; local
1028 if ( CHECK_Property( gpos->gdef, IN_CURITEM(), flags, &property ) )
1578 HB_UShort index, property; local
1797 HB_UShort index, property; local
2219 HB_UShort i, j, mark_index, base_index, property, class; local
2626 HB_UShort i, j, mark_index, lig_index, property, class; local
2953 HB_UShort i, j, mark1_index, mark2_index, property, class; local
3799 HB_UShort index, property; local
3864 HB_UShort index, property; local
3975 HB_UShort index, i, j, property; local
5007 HB_UShort index, property; local
5136 HB_UShort index, property; local
5341 HB_UShort index, i, j, property; local
    [all...]
  /external/icu4c/common/
propname.cpp 23 * Get the next non-ignorable ASCII character from a property name
46 * Get the next non-ignorable EBCDIC character from a property name
69 * Unicode property names and property value names are compared "loosely".
72 * For all property names, property value names, and for property values for
248 * Load the property names data. Caller should check that data is
275 * property names data. If the data is already loaded, avoids an
294 u_getPropertyName(UProperty property,
    [all...]
  /external/webkit/Source/JavaScriptCore/parser/
JSParser.cpp 66 #define TreeProperty typename TreeBuilder::Property
1755 TreeProperty property = parseProperty<false>(context); local
1793 TreeProperty property = parseProperty<true>(context); local
2005 TreeExpression property = parseExpression(context); local
    [all...]
  /external/chromium/testing/gtest/test/
gtest-unittest-api_test.cc 136 // Records a test property to verify TestResult::GetTestProperty().
308 const TestProperty& property = tests[3]->result()->GetTestProperty(0); local
309 EXPECT_STREQ("key", property.key());
310 EXPECT_STREQ("value", property.value());
  /external/protobuf/gtest/test/
gtest-unittest-api_test.cc 142 // Records a test property to verify TestResult::GetTestProperty().
309 const TestProperty& property = tests[3]->result()->GetTestProperty(0); local
310 EXPECT_STREQ("key", property.key());
311 EXPECT_STREQ("value", property.value());
  /external/webkit/Source/JavaScriptCore/runtime/
Lookup.h 42 const char* key; // property name
86 GetFunction propertyGetter() const { ASSERT(!(m_attributes & Function)); return m_u.property.get; }
87 PutFunction propertyPutter() const { ASSERT(!(m_attributes & Function)); return m_u.property.put; }
113 } property; member in union:JSC::HashEntry::__anon13120
186 * getValueProperty in case of a non-function property, forwarding to parent if
187 * unknown property).
302 * It looks up a hash entry for the property to be set. If an entry
313 if (entry->attributes() & Function) { // function: put as override property
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsLayer.h 154 // which can be inferred from the property.
159 KeyframeValueList(AnimatedPropertyID property)
160 : m_property(property)
169 AnimatedPropertyID property() const { return m_property; } function in class:WebCore::KeyframeValueList
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
InspectorClientQt.cpp 81 QVariant inspectorJavaScriptWindowObjects = property("_q_inspectorJavaScriptWindowObjects");
221 inspectorUrl = inspector->property("_q_inspectorUrl").toUrl();
227 QVariant inspectorJavaScriptWindowObjects = inspector->property("_q_inspectorJavaScriptWindowObjects");

Completed in 1587 milliseconds

<<11121314151617181920>>