/external/v8/test/mjsunit/regress/ |
regress-526.js | 28 // Test object literals with computed property and getter.
|
/external/v8/test/webkit/ |
delete-then-put-expected.txt | 32 define getter named c
|
delete-then-put.js | 45 debug("define getter named c");
|
dfg-getter.js | 25 "Tests that DFG getter caching does not break the world."
|
function-prototype-descriptor.js | 46 // Given that prototype is non-configurable, defineProperty should not be able to assign a getter to it.
|
/external/webrtc/webrtc/modules/video_coding/ |
rtt_filter.h | 28 // A getter function for the current RTT level in ms.
|
/frameworks/av/services/audiopolicy/engineconfigurable/src/ |
Strategy.h | 63 * A Policy element may implement getter/setter function for a given property.
|
Usage.h | 63 * A Policy element may implement getter/setter function for a given property.
|
/frameworks/data-binding/extensions/library/src/main/java/android/databinding/ |
BaseObservable.java | 54 * Notifies listeners that a specific property has changed. The getter for the property
|
/prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-runtime/1.0.0/ |
kotlin-runtime-1.0.0-sources.jar | |
/development/cmds/monkey/src/com/android/commands/monkey/ |
MonkeySourceNetworkVars.java | 193 VarGetter getter = VAR_MAP.get(command.get(1)); local 194 if (getter == null) { 197 return new MonkeyCommandReturn(true, getter.get());
|
/external/mockito/cglib-and-asm/src/org/mockito/cglib/beans/ |
BulkBeanEmitter.java | 67 MethodInfo getter = ReflectUtils.getMethodInfo(getters[i]); local 71 e.invoke(getter); 72 e.box(getter.getSignature().getReturnType());
|
/external/parameter-framework/upstream/xmlserializer/ |
XmlDocSource.h | 98 * Getter method. 118 * Getter method. 128 * Getter method.
|
/external/v8/test/mjsunit/ |
json2.js | 74 var getter_obj = { get getter() { 78 TestStringify('{"getter":123}', getter_obj); 98 // Test toJSON produced by a getter.
|
/frameworks/base/tools/layoutlib/bridge/src/android/animation/ |
PropertyValuesHolder_Delegate.java | 47 // We try several different types when searching for appropriate setter/getter functions. 48 // The caller may have supplied values in a type that does not match the setter/getter 51 // of primitive types (Float vs. float). But most likely, the setter/getter functions
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/random/ |
ValueServer.java | 199 /** Getter for property mode. 214 * Getter for <code>valuesFileURL<code> 238 /** Getter for property empiricalDistribution. 274 /** Getter for property mu. 288 /** Getter for property sigma.
|
/external/protobuf/java/src/main/java/com/google/protobuf/nano/ |
MessageNanoPrinter.java | 142 // 2) Fields that are accessed via getter methods (when accessors 144 // Find and print these using getter methods. 163 Method getter = null; local 165 getter = clazz.getMethod("get" + subfieldName); 170 print(subfieldName, getter.invoke(object), indentBuf, buf);
|
/external/wpa_supplicant_8/wpa_supplicant/dbus/ |
dbus_new_handlers.c | 302 * Generic getter for basic type properties. Type is required to be basic. 374 * Generic getter for array type properties. Array elements type is 467 * Generic getter for array type properties. Array elements type is 713 * Getter for "DebugLevel" property. 739 * Getter for "DebugTimestamp" property. 758 * Getter for "DebugShowKeys" property. 868 * Getter for "Interfaces" property. Handles requests 914 * Getter for "EapMethods" property. Handles requests 950 * Getter for "Capabilities" property. Handles requests by dbus clients to [all...] |
/external/v8/test/cctest/ |
test-accessors.cc | 83 Local<Script> getter; local 86 getter = v8_compile("var obj = new Fun(); obj.instance_foo;"); 87 CHECK_EQ(900, getter->Run(env.local()) 96 getter = v8_compile("obj.bar;"); 97 CHECK_EQ(907, getter->Run(env.local()) 107 getter = v8_compile("Fun.object_foo;"); 108 CHECK_EQ(902, getter->Run(env.local()) 451 // Use the throwing property setter/getter in a loop to force 649 "function getter() { return x; }" 651 "for (var i = 0; i < 4; i++) { getter(); setter(); }") [all...] |
/external/v8/src/ic/ |
handler-compiler.cc | 302 inline_followup = info->getter() != NULL && 307 Handle<Object> getter(Handle<AccessorPair>::cast(accessors)->getter(), 309 if (!getter->IsJSFunction()) break; 311 auto function = Handle<JSFunction>::cast(getter); 402 DCHECK_NOT_NULL(info->getter()); 406 AccessorPair::cast(*it->GetAccessors())->getter()));
|
/external/v8/test/mjsunit/harmony/ |
reflect.js | 59 Object.defineProperty(target, "getter", 113 assertEquals(true, Reflect.get(target, "getter")); 114 assertEquals(true, Reflect.get(target, "getter", target)); 115 assertEquals(false, Reflect.get(target, "getter", receiver)); 265 assertFalse(Reflect.set(target, "getter", value, null)); 312 assertTrue(Reflect.has(target, "getter")); 401 assertTrue(Reflect.deleteProperty(target, "getter"));
|
/toolchain/binutils/binutils-2.25/cpu/ |
m32c.cpu | [all...] |
/external/nanopb-c/generator/google/protobuf/internal/ |
python_message.py | 403 def getter(self): function in function:_AddPropertiesForRepeatedField 417 getter.__module__ = None 418 getter.__doc__ = 'Getter for %s.' % proto_field_name 427 setattr(cls, property_name, property(getter, setter, doc=doc)) 447 def getter(self): function in function:_AddPropertiesForNonRepeatedScalarField 451 getter.__module__ = None 452 getter.__doc__ = 'Getter for %s.' % proto_field_name 464 # Add a property to encapsulate the getter/setter 491 def getter(self): function in function:_AddPropertiesForNonRepeatedCompositeField [all...] |
/external/protobuf/python/google/protobuf/internal/ |
python_message.py | 419 def getter(self): function in function:_AddPropertiesForRepeatedField 433 getter.__module__ = None 434 getter.__doc__ = 'Getter for %s.' % proto_field_name 443 setattr(cls, property_name, property(getter, setter, doc=doc)) 463 def getter(self): function in function:_AddPropertiesForNonRepeatedScalarField 467 getter.__module__ = None 468 getter.__doc__ = 'Getter for %s.' % proto_field_name 487 # Add a property to encapsulate the getter/setter 514 def getter(self): function in function:_AddPropertiesForNonRepeatedCompositeField [all...] |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/ |
DisplayNameTest.java | 364 String[] codes, Object[] contextList, DisplayNameGetter getter) { 371 String name = getter.get(locale, code, context); 377 + "\t" + code + " [" + getter.get(ULocale.ENGLISH, code, context) + "]" 386 + "\t" + code + " [" + getter.get(ULocale.ENGLISH, code, context) + "]" 387 + "\t& " + otherCode + " [" + getter.get(ULocale.ENGLISH, otherCode, context) + "]" 396 + "\t" + code + "[" + getter.get(ULocale.ENGLISH, code, context) + "]"
|