HomeSort by relevance Sort by last modified time
    Searched refs:Property (Results 201 - 225 of 446) sorted by null

1 2 3 4 5 6 7 891011>>

  /system/connectivity/shill/vpn/
third_party_vpn_driver.h 102 // ErrorDetails property to |error_details|; disassociates from the service.
176 static const Property kProperties[];
  /external/v8/src/ast/
prettyprinter.cc 301 void CallPrinter::VisitProperty(Property* node) {
815 ObjectLiteralProperty* property) {
818 Visit(property->key());
820 Visit(property->value());
859 void PrettyPrinter::VisitProperty(Property* node) {
951 Print("<super-property-reference>");
1495 ObjectLiteral::Property* property = properties->at(i); local
    [all...]
ast.h 79 V(Property) \
316 // Symbols that cannot be parsed as array indices are considered property
317 // names. We do not treat symbols that can be array indexes as property
    [all...]
  /external/emma/core/java12/com/vladium/logging/
Logger.java 23 import com.vladium.util.Property;
569 final Properties properties = Property.getAppProperties (IAppConstants.APP_NAME_LC, Logger.class.getClassLoader ());
  /external/v8/src/crankshaft/
typing.cc 395 ZoneList<ObjectLiteral::Property*>* properties = expr->properties();
397 ObjectLiteral::Property* prop = properties->at(i);
400 if ((prop->kind() == ObjectLiteral::Property::MATERIALIZED_LITERAL &&
402 prop->kind() == ObjectLiteral::Property::COMPUTED) {
406 // Record type feed back for the property.
435 Property* prop = expr->target()->AsProperty();
486 void AstTyper::VisitProperty(Property* expr) {
  /external/v8/src/full-codegen/
full-codegen.h 422 // Generate code to create an iterator result object. The "value" property is
558 void EmitAccessor(ObjectLiteralProperty* property);
573 // Load a value from a named property.
575 void EmitNamedPropertyLoad(Property* expr);
577 // Load a value from super.named property.
579 void EmitNamedSuperPropertyLoad(Property* expr);
581 // Load a value from super[keyed] property.
583 void EmitKeyedSuperPropertyLoad(Property* expr);
585 // Load a value from a keyed property.
587 void EmitKeyedPropertyLoad(Property* expr)
    [all...]
  /external/v8/test/mjsunit/es6/
proxies-set.js 56 // Property does not exist on target.
62 // Property exists as writable data on target.
68 // Property exists as non-writable data on target.
180 // Trap returns trueish and property does not exist in target.
185 // Trap returns trueish and target property is configurable or writable data.
207 // Trap returns trueish but target property is frozen data.
228 // Trap returns trueish and target property is configurable accessor.
234 // Trap returns trueish and target property is non-configurable accessor.
proxies-define-property.js 48 // Step 9: Property name is passed to the trap as a string.
58 // Step 15a: Trap returns true for adding a property to a non-extensible target.
63 // Step 15b: Trap returns true for adding a non-configurable property.
68 // No exception is thrown if a non-configurable property exists on the target.
73 // Step 16a: Trap returns true for non-compatible property descriptor.
78 // Step 16b: Trap returns true for overwriting a configurable property
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
http.h 629 HTTPAPI_LINKAGE ULONG WINAPI HttpSetRequestQueueProperty(HANDLE Handle,HTTP_SERVER_PROPERTY Property,PVOID pPropertyInformation,ULONG PropertyInformationLength,ULONG Reserved,PVOID pReserved);
630 HTTPAPI_LINKAGE ULONG WINAPI HttpQueryRequestQueueProperty(HANDLE Handle,HTTP_SERVER_PROPERTY Property,PVOID pPropertyInformation,ULONG PropertyInformationLength,ULONG Reserved,PULONG pReturnLength,PVOID pReserved);
639 HTTPAPI_LINKAGE ULONG WINAPI HttpQueryServerSessionProperty(HTTP_SERVER_SESSION_ID ServerSessionId,HTTP_SERVER_PROPERTY Property,PVOID pPropertyInformation,ULONG PropertyInformationLength,PULONG pReturnLength);
640 HTTPAPI_LINKAGE ULONG WINAPI HttpQueryUrlGroupProperty(HTTP_URL_GROUP_ID UrlGroupId,HTTP_SERVER_PROPERTY Property,PVOID pPropertyInformation,ULONG PropertyInformationLength,PULONG pReturnLength);
642 HTTPAPI_LINKAGE ULONG WINAPI HttpSetServerSessionProperty(HTTP_SERVER_SESSION_ID ServerSessionId,HTTP_SERVER_PROPERTY Property,PVOID pPropertyInformation,ULONG PropertyInformationLength);
643 HTTPAPI_LINKAGE ULONG WINAPI HttpSetUrlGroupProperty(HTTP_URL_GROUP_ID UrlGroupId,HTTP_SERVER_PROPERTY Property,PVOID pPropertyInformation,ULONG PropertyInformationLength);
mmcobj.h 155 typedef struct Property Property;
195 typedef Property *PPROPERTY;
196 typedef Property **PPPROPERTY;
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfUnit.cpp     [all...]
  /external/google-breakpad/src/processor/
minidump_processor_unittest.cc 169 using ::testing::Property;
365 Property(&google_breakpad::CodeModule::code_file,
369 Property(&google_breakpad::CodeModule::code_file,
383 Property(&google_breakpad::CodeModule::code_file,
387 Property(&google_breakpad::CodeModule::code_file,
  /system/update_engine/
update_attempter_unittest.cc 67 using testing::Property;
363 EnqueueAction(Property(&AbstractAction::Type,
411 EnqueueAction(Property(&AbstractAction::Type,
482 EnqueueAction(Property(&AbstractAction::Type,
547 EnqueueAction(Property(&AbstractAction::Type,
    [all...]
  /external/google-breakpad/src/testing/test/
gmock-matchers_test.cc 112 using testing::Property;
    [all...]
gmock_link_test.h 91 // Property
161 using testing::Property;
614 // Tests the linkage of the Property matcher.
618 Matcher<const FieldHelper&> m = Property(&FieldHelper::field, Eq(0));
621 Matcher<const FieldHelper*> m2 = Property(&FieldHelper::field, Eq(0));
  /external/llvm/utils/TableGen/
CodeGenDAGPatterns.cpp     [all...]
  /external/gmock/test/
gmock_link_test.h 91 // Property
161 using testing::Property;
614 // Tests the linkage of the Property matcher.
618 Matcher<const FieldHelper&> m = Property(&FieldHelper::field, Eq(0));
621 Matcher<const FieldHelper*> m2 = Property(&FieldHelper::field, Eq(0));
gmock-matchers_test.cc 122 using testing::Property;
    [all...]
  /external/v8/src/parsing/
parser.h 340 typedef ObjectLiteral::Property* ObjectLiteralProperty;
342 typedef ZoneList<ObjectLiteral::Property*>* PropertyList;
381 static bool IsBoilerplateProperty(ObjectLiteral::Property* property) {
382 return ObjectLiteral::IsBoilerplateProperty(property);
389 static Expression* GetPropertyValue(ObjectLiteral::Property* property) {
390 return property->value();
406 // If we assign a function literal to a property we pretenure the
407 // literal so it can be added as a constant function property
    [all...]
  /frameworks/base/core/java/android/widget/
FastScroller.java 37 import android.util.Property;
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/
ReportProperties.java 21 import com.vladium.util.Property;
194 // * Creates a property view specific to 'reportType' report type.
212 // * @param type [null/empty indicates type-neutral property]
281 /* view type is no longer a user-overridable property [it is driven by SourceFile attribute presence]
292 result.setHideClasses (Property.toBoolean (hideClasses));
493 // // TODO: this kind of lookup makes the property listing confusing
  /external/v8/test/mjsunit/
mirror-error.js 77 assertTrue(found_message, 'Property message not found');
  /frameworks/base/core/java/com/android/internal/transition/
EpicenterTranslateClipReveal.java 30 import android.util.Property;
273 private static class StateProperty extends Property<View, State> {
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_build.c 1235 struct tgsi_property property; local
1249 struct tgsi_property property; local
1307 struct tgsi_property *property; local
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/oauth2client/
appengine.py 199 @property
210 class FlowProperty(db.Property):
211 """App Engine datastore Property for Flow.
213 Utility property that allows easy storage and retrieval of an
233 raise db.BadValueError('Property %s must be convertible '
244 """App Engine NDB datastore Property for Flow.
250 Utility property that allows easy storage and retrieval of an
258 value: A value to be set on the property.
265 raise TypeError('Property %s must be convertible to a flow '
269 class CredentialsProperty(db.Property)
    [all...]

Completed in 1641 milliseconds

1 2 3 4 5 6 7 891011>>