Searched defs:property (Results 201 - 225 of 350) sorted by relevance

1234567891011>>

/external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-internal-inl.h345 // Returns true iff the test name of test property matches on key_.
1021 const TestProperty& property) {
1022 test_result->RecordProperty(property);
1020 RecordProperty(TestResult* test_result, const TestProperty& property) argument
/external/v8/src/full-codegen/
H A Dfull-codegen.cc1140 void FullCodeGenerator::EmitPropertyKey(LiteralProperty* property, argument
1142 VisitForStackValue(property->key());
1684 Property* property = callee->AsProperty(); local
1685 VisitForStackValue(property->obj());
1690 Property* property = callee->AsProperty(); local
1691 VisitForStackValue(property->obj());
1692 EmitKeyedCallWithLoadIC(expr, property->key());
/external/v8/src/regexp/
H A Dregexp-parser.cc392 return ReportError(CStrVector("Invalid property name"));
1053 bool IsExactPropertyAlias(const char* property_name, UProperty property) { argument
1054 const char* short_name = u_getPropertyName(property, U_SHORT_PROPERTY_NAME);
1058 property, static_cast<UPropertyNameChoice>(U_LONG_PROPERTY_NAME + i));
1066 UProperty property, int32_t property_value) {
1068 u_getPropertyValueName(property, property_value, U_SHORT_PROPERTY_NAME);
1074 property, property_value,
1082 bool LookupPropertyValueName(UProperty property, argument
1086 u_getPropertyValueEnum(property, property_value_name);
1089 // We require the property nam
1065 IsExactPropertyValueAlias(const char* property_value_name, UProperty property, int32_t property_value) argument
1187 UProperty property = u_getPropertyEnum(name); local
1198 UProperty property = u_getPropertyEnum(property_name); local
[all...]
/external/v8/testing/gtest/src/
H A Dgtest-internal-inl.h354 // Returns true iff the test name of test property matches on key_.
712 // context of a test or a test case, or to the global property set. If the
713 // result already contains a property with the same key, the value will be
1018 const TestProperty& property) {
1019 test_result->RecordProperty(xml_element, property);
1016 RecordProperty(TestResult* test_result, const std::string& xml_element, const TestProperty& property) argument
/external/vulkan-validation-layers/tests/gtest-1.7.0/src/
H A Dgtest-internal-inl.h353 // Returns true iff the test name of test property matches on key_.
721 // context of a test or a test case, or to the global property set. If the
722 // result already contains a property with the same key, the value will be
1027 const TestProperty& property) {
1028 test_result->RecordProperty(xml_element, property);
1025 RecordProperty(TestResult* test_result, const std::string& xml_element, const TestProperty& property) argument
/external/wpa_supplicant_8/wpa_supplicant/dbus/
H A Ddbus_new.c501 * wpas_dbus_signal_network_enabled_changed - Signals Enabled property changes
503 * @ssid: configured network which Enabled property has changed
505 * Sends PropertyChanged signals containing new value of Enabled property
1969 * wpas_dbus_signal_prop_changed - Signals change of property
1971 * @property: indicates which property has changed
1974 * depending on which property has changed.
1977 enum wpas_dbus_prop property)
1986 switch (property) {
2023 __func__, property);
1976 wpas_dbus_signal_prop_changed(struct wpa_supplicant *wpa_s, enum wpas_dbus_prop property) argument
2046 wpas_dbus_bss_signal_prop_changed(struct wpa_supplicant *wpa_s, enum wpas_dbus_bss_prop property, unsigned int id) argument
[all...]
/external/libmtp/src/
H A Dptp.c1852 * This command is called every time when a device property has been changed
2025 * This command downloads the vendor specific property codes.
2429 * This command gets the object property description.
2432 * uint16_t opc - object property code
2673 ptp_property_issupported(PTPParams* params, uint16_t property) argument
2678 if (params->deviceinfo.DevicePropertiesSupported[i]==property)
4337 {PTP_OC_GetDevicePropDesc,N_("Get device property description")},
4338 {PTP_OC_GetDevicePropValue,N_("Get device property value")},
4339 {PTP_OC_SetDevicePropValue,N_("Set device property value")},
4340 {PTP_OC_ResetDevicePropValue,N_("Reset device property valu
[all...]
H A Dlibmtp.c82 char *description; /**< Text description for the property */
83 LIBMTP_property_t id; /**< LIBMTP internal type for the property */
84 uint16_t ptp_id; /**< PTP ID for the property */
91 // This holds the global property mapping table
129 char **unicstring, uint16_t property);
414 * Create a new property mapping entry
434 * Register an MTP or PTP property for data retrieval
436 * @param description Text description of property
437 * @param id libmtp internal property id
438 * @param ptp_id PTP property i
886 LIBMTP_Get_Allowed_Property_Values(LIBMTP_mtpdevice_t *device, LIBMTP_property_t const property, LIBMTP_filetype_t const filetype, LIBMTP_allowed_values_t *allowed_vals) argument
1083 LIBMTP_Is_Property_Supported(LIBMTP_mtpdevice_t *device, LIBMTP_property_t const property, LIBMTP_filetype_t const filetype) argument
3566 get_device_unicode_property(LIBMTP_mtpdevice_t *device, char **unicstring, uint16_t property) argument
[all...]
/external/v8/src/
H A Dd8.cc238 Local<v8::Object> object, const char* property) {
239 Local<Value> value = GetValue(isolate, context, object, property);
285 Local<v8::Object> object, const char* property) {
287 String::NewFromUtf8(isolate, property, NewStringType::kNormal)
913 void Shell::RealmSharedGet(Local<String> property, argument
921 void Shell::RealmSharedSet(Local<String> property, argument
2582 Throw(isolate, "Unable to get property names");
2600 Throw(isolate, "Failed to serialize property.");
237 GetBoolean(v8::Isolate* isolate, Local<Context> context, Local<v8::Object> object, const char* property) argument
284 GetValue(v8::Isolate* isolate, Local<Context> context, Local<v8::Object> object, const char* property) argument
/external/v8/src/full-codegen/arm/
H A Dfull-codegen-arm.cc1029 // property names in a fixed array. Note: Proxies never have an enum cache,
1130 // Update the 'each' property or variable from the possibly filtered
1338 void FullCodeGenerator::EmitAccessor(ObjectLiteralProperty* property) { argument
1339 Expression* expression = (property == NULL) ? NULL : property->value();
1346 DCHECK(property->kind() == ObjectLiteral::Property::GETTER ||
1347 property->kind() == ObjectLiteral::Property::SETTER);
1348 int offset = property->kind() == ObjectLiteral::Property::GETTER ? 2 : 3;
1349 EmitSetHomeObject(expression, offset, property->GetSlot());
1381 ObjectLiteral::Property* property local
1487 ObjectLiteral::Property* property = expr->properties()->at(property_index); local
1623 Property* property = expr->target()->AsProperty(); local
1958 ClassLiteral::Property* property = lit->properties()->at(i); local
2912 Property* property = expr->expression()->AsProperty(); local
[all...]
/external/v8/src/full-codegen/arm64/
H A Dfull-codegen-arm64.cc1024 // property names in a fixed array. Note: Proxies never have an enum cache,
1119 // Update the 'each' property or variable from the possibly filtered
1324 void FullCodeGenerator::EmitAccessor(ObjectLiteralProperty* property) { argument
1325 Expression* expression = (property == NULL) ? NULL : property->value();
1332 DCHECK(property->kind() == ObjectLiteral::Property::GETTER ||
1333 property->kind() == ObjectLiteral::Property::SETTER);
1334 int offset = property->kind() == ObjectLiteral::Property::GETTER ? 2 : 3;
1335 EmitSetHomeObject(expression, offset, property->GetSlot());
1367 ObjectLiteral::Property* property local
1471 ObjectLiteral::Property* property = expr->properties()->at(property_index); local
1605 Property* property = expr->target()->AsProperty(); local
1858 ClassLiteral::Property* property = lit->properties()->at(i); local
2832 Property* property = expr->expression()->AsProperty(); local
[all...]
/external/v8/src/full-codegen/ia32/
H A Dfull-codegen-ia32.cc971 // property names in a fixed array. Note: Proxies never have an enum cache,
1060 // Update the 'each' property or variable from the possibly filtered
1259 void FullCodeGenerator::EmitAccessor(ObjectLiteralProperty* property) { argument
1260 Expression* expression = (property == NULL) ? NULL : property->value();
1266 DCHECK(property->kind() == ObjectLiteral::Property::GETTER ||
1267 property->kind() == ObjectLiteral::Property::SETTER);
1268 int offset = property->kind() == ObjectLiteral::Property::GETTER ? 2 : 3;
1269 EmitSetHomeObject(expression, offset, property->GetSlot());
1306 ObjectLiteral::Property* property local
1405 ObjectLiteral::Property* property = expr->properties()->at(property_index); local
1540 Property* property = expr->target()->AsProperty(); local
1869 ClassLiteral::Property* property = lit->properties()->at(i); local
2803 Property* property = expr->expression()->AsProperty(); local
[all...]
/external/v8/src/full-codegen/mips/
H A Dfull-codegen-mips.cc1030 // property names in a fixed array. Note: Proxies never have an enum cache,
1130 // Update the 'each' property or variable from the possibly filtered
1339 void FullCodeGenerator::EmitAccessor(ObjectLiteralProperty* property) { argument
1340 Expression* expression = (property == NULL) ? NULL : property->value();
1347 DCHECK(property->kind() == ObjectLiteral::Property::GETTER ||
1348 property->kind() == ObjectLiteral::Property::SETTER);
1349 int offset = property->kind() == ObjectLiteral::Property::GETTER ? 2 : 3;
1350 EmitSetHomeObject(expression, offset, property->GetSlot());
1381 ObjectLiteral::Property* property local
1487 ObjectLiteral::Property* property = expr->properties()->at(property_index); local
1624 Property* property = expr->target()->AsProperty(); local
1965 ClassLiteral::Property* property = lit->properties()->at(i); local
2925 Property* property = expr->expression()->AsProperty(); local
[all...]
/external/v8/src/full-codegen/mips64/
H A Dfull-codegen-mips64.cc1030 // property names in a fixed array. Note: Proxies never have an enum cache,
1131 // Update the 'each' property or variable from the possibly filtered
1340 void FullCodeGenerator::EmitAccessor(ObjectLiteralProperty* property) { argument
1341 Expression* expression = (property == NULL) ? NULL : property->value();
1348 DCHECK(property->kind() == ObjectLiteral::Property::GETTER ||
1349 property->kind() == ObjectLiteral::Property::SETTER);
1350 int offset = property->kind() == ObjectLiteral::Property::GETTER ? 2 : 3;
1351 EmitSetHomeObject(expression, offset, property->GetSlot());
1382 ObjectLiteral::Property* property local
1488 ObjectLiteral::Property* property = expr->properties()->at(property_index); local
1625 Property* property = expr->target()->AsProperty(); local
1965 ClassLiteral::Property* property = lit->properties()->at(i); local
2924 Property* property = expr->expression()->AsProperty(); local
[all...]
/external/v8/src/full-codegen/ppc/
H A Dfull-codegen-ppc.cc993 // property names in a fixed array. Note: Proxies never have an enum cache,
1089 // Convert the entry to a string or (smi) 0 if it isn't a property
1090 // any more. If the property has been removed while iterating, we
1100 // Update the 'each' property or variable from the possibly filtered
1309 void FullCodeGenerator::EmitAccessor(ObjectLiteralProperty* property) { argument
1310 Expression* expression = (property == NULL) ? NULL : property->value();
1317 DCHECK(property->kind() == ObjectLiteral::Property::GETTER ||
1318 property->kind() == ObjectLiteral::Property::SETTER);
1319 int offset = property
1352 ObjectLiteral::Property* property = expr->properties()->at(property_index); local
1456 ObjectLiteral::Property* property = expr->properties()->at(property_index); local
1592 Property* property = expr->target()->AsProperty(); local
1971 ClassLiteral::Property* property = lit->properties()->at(i); local
2922 Property* property = expr->expression()->AsProperty(); local
[all...]
/external/v8/src/full-codegen/s390/
H A Dfull-codegen-s390.cc963 // property names in a fixed array. Note: Proxies never have an enum cache,
1058 // Convert the entry to a string or (smi) 0 if it isn't a property
1059 // any more. If the property has been removed while iterating, we
1069 // Update the 'each' property or variable from the possibly filtered
1272 void FullCodeGenerator::EmitAccessor(ObjectLiteralProperty* property) { argument
1273 Expression* expression = (property == NULL) ? NULL : property->value();
1280 DCHECK(property->kind() == ObjectLiteral::Property::GETTER ||
1281 property->kind() == ObjectLiteral::Property::SETTER);
1282 int offset = property
1314 ObjectLiteral::Property* property = expr->properties()->at(property_index); local
1418 ObjectLiteral::Property* property = expr->properties()->at(property_index); local
1552 Property* property = expr->target()->AsProperty(); local
1930 ClassLiteral::Property* property = lit->properties()->at(i); local
2852 Property* property = expr->expression()->AsProperty(); local
[all...]
/external/v8/src/full-codegen/x64/
H A Dfull-codegen-x64.cc987 // property names in a fixed array. Note: Proxies never have an enum cache,
1087 // Update the 'each' property or variable from the possibly filtered
1289 void FullCodeGenerator::EmitAccessor(ObjectLiteralProperty* property) { argument
1290 Expression* expression = (property == NULL) ? NULL : property->value();
1297 DCHECK(property->kind() == ObjectLiteral::Property::GETTER ||
1298 property->kind() == ObjectLiteral::Property::SETTER);
1299 int offset = property->kind() == ObjectLiteral::Property::GETTER ? 2 : 3;
1300 EmitSetHomeObject(expression, offset, property->GetSlot());
1335 ObjectLiteral::Property* property local
1433 ObjectLiteral::Property* property = expr->properties()->at(property_index); local
1568 Property* property = expr->target()->AsProperty(); local
1861 ClassLiteral::Property* property = lit->properties()->at(i); local
2794 Property* property = expr->expression()->AsProperty(); local
[all...]
/external/v8/src/full-codegen/x87/
H A Dfull-codegen-x87.cc963 // property names in a fixed array. Note: Proxies never have an enum cache,
1052 // Update the 'each' property or variable from the possibly filtered
1251 void FullCodeGenerator::EmitAccessor(ObjectLiteralProperty* property) { argument
1252 Expression* expression = (property == NULL) ? NULL : property->value();
1258 DCHECK(property->kind() == ObjectLiteral::Property::GETTER ||
1259 property->kind() == ObjectLiteral::Property::SETTER);
1260 int offset = property->kind() == ObjectLiteral::Property::GETTER ? 2 : 3;
1261 EmitSetHomeObject(expression, offset, property->GetSlot());
1298 ObjectLiteral::Property* property local
1397 ObjectLiteral::Property* property = expr->properties()->at(property_index); local
1532 Property* property = expr->target()->AsProperty(); local
1861 ClassLiteral::Property* property = lit->properties()->at(i); local
2795 Property* property = expr->expression()->AsProperty(); local
[all...]
/external/v8/src/parsing/
H A Dparser.h355 ClassLiteralProperty* property,
696 Property* property = expression->AsProperty(); local
697 return property != NULL && property->obj()->IsVariableProxy() &&
698 property->obj()->AsVariableProxy()->is_this();
734 ObjectLiteral::Property* property) {
735 return ObjectLiteral::IsBoilerplateProperty(property);
770 V8_INLINE static Expression* GetPropertyValue(LiteralProperty* property) { argument
771 return property->value();
817 // If we assign a function literal to a property w
733 IsBoilerplateProperty( ObjectLiteral::Property* property) argument
[all...]
/external/guice/extensions/struts2/lib/
H A Djsp-api-2.1.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/servlet/ javax/servlet/jsp/ javax/servlet/jsp/resources/ ...
/external/ImageMagick/MagickCore/
H A Dxwindow.c1590 % a WM_STATE property. If such a window is found, it is returned, otherwise
1600 % window, which has a WM_STATE property otherwise the argument
1606 % o target_window: Specifies the window to find a WM_STATE property.
1887 property,
1908 property=XInternAtom(display,"_XSETROOT_ID",MagickFalse);
1909 if (property == (Atom) NULL)
1915 status=XGetWindowProperty(display,window,property,0L,1L,MagickTrue,
1922 (void) XDeleteProperty(display,window,property);
5068 If WM_COLORMAP_WINDOWS property is set or multiple colormaps, descend.
9249 property;
1867 property, local
9191 property; local
9848 XWindowByProperty(Display *display,const Window window, const Atom property) argument
[all...]
/external/clang/lib/CodeGen/
H A DCGObjCGNU.cpp147 /// LLVM type for C ptrdiff_t. Mainly used in property accessor functions.
234 /// Returns a property name and encoding string.
253 /// Push the property attributes into two structure fields.
255 ObjCPropertyDecl *property, bool isSynthesized=true, bool
257 int attrs = property->getPropertyAttributes();
270 // reuse these flags to indicate that this is a protocol property (both set
271 // has no meaning, as a property can't be both synthesized and dynamic)
374 /// Function for implementing synthesized property getters that return an
377 /// Function for implementing synthesized property setters that return an
380 /// Function used for non-object declared property getter
254 PushPropertyAttributes(std::vector<llvm::Constant*> &Fields, ObjCPropertyDecl *property, bool isSynthesized=true, bool isDynamic=true) argument
2106 ObjCPropertyDecl *property = propertyImpl->getPropertyDecl(); local
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.ant.core_3.2.200.v20100427.jar ... additionalEntries private org.eclipse.ant.core.Property[] customProperties private org.eclipse.ant.core. ...
H A Dorg.eclipse.jdt.launching_3.5.100.v20100526.jar ... IPath path public int getClasspathProperty () public void setClasspathProperty (int) int property public java.lang.String getLocation () public java. ...
/external/tcpdump/
H A Dprint-openflow-1.0.c1222 uint16_t property, plen, rate; local
1229 /* property */
1231 property = EXTRACT_16BITS(cp);
1233 ND_PRINT((ndo, "\n\t property %s", tok2str(ofpqt_str, "invalid (0x%04x)", property)));
1244 /* property-specific constraints and decoding */
1245 switch (property) {
1264 if (property == OFPQT_MIN_RATE) { /* the only case of property decoding */

Completed in 792 milliseconds

1234567891011>>