HomeSort by relevance Sort by last modified time
    Searched refs:getter (Results 226 - 250 of 330) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRTreeWizard.h 72 @property (retain, getter=getLabel, setter=setLabel:) NSString *label;
73 @property (assign, getter=getHasTextArg, setter=setHasTextArg:) BOOL hasTextArg;
  /external/harfbuzz_ng/test/api/
test-unicode.c 448 getter_func_t getter; member in struct:__anon8480
497 g_assert_cmphex (p->getter (uf, tests[j].unicode), ==, tests[j].value);
504 if (p->getter (uf, tests[j].unicode) != tests[j].value) {
505 g_test_message ("Soft fail: Received %x, expected %x", p->getter (uf, tests[j].unicode), tests[j].value);
534 g_assert_cmphex (p->getter (uf, tests[j].unicode), ==, default_value (p->default_value, tests[j].unicode));
539 g_assert_cmphex (p->getter (uf, tests[j].unicode), ==, default_value (p->default_value, tests[j].unicode));
622 g_assert_cmphex (p->getter (uf, 'a'), ==, HB_SCRIPT_LATIN);
623 g_assert_cmphex (p->getter (uf, '0'), ==, HB_SCRIPT_UNKNOWN);
  /external/v8/test/mjsunit/regress/
regress-526.js 28 // Test object literals with computed property and getter.
regress-1355.js 29 // a property that has only a defined getter, except when in strict mode.
regress-192.js 42 // assigning to a property that has only a getter.
regress-1790.js 40 // Define getter that will delete itself upon first invocation.
  /external/webkit/Source/WebCore/page/animation/
AnimationBase.cpp 256 PropertyWrapperGetter(int prop, T (RenderStyle::*getter)() const)
258 , m_getter(getter)
280 PropertyWrapper(int prop, T (RenderStyle::*getter)() const, void (RenderStyle::*setter)(T))
281 : PropertyWrapperGetter<T>(prop, getter)
332 PropertyWrapperShadow(int prop, const ShadowData* (RenderStyle::*getter)() const, void (RenderStyle::*setter)(ShadowData*, bool))
334 , m_getter(getter)
397 PropertyWrapperMaybeInvalidColor(int prop, const Color& (RenderStyle::*getter)() const, void (RenderStyle::*setter)(const Color&))
399 , m_getter(getter)
457 FillLayerPropertyWrapperGetter(T (FillLayer::*getter)() const)
458 : m_getter(getter)
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_new_helpers.c 36 if (dsc->getter == NULL)
55 if (!dsc->getter(&entry_iter, error, user_data))
170 if (dsc->getter == NULL) {
179 if (dsc->getter(&iter, &error, user_data) == FALSE) {
635 if (!dsc->getter(&entry_iter, &error, obj_dsc->user_data)) {
  /external/webkit/Source/WebCore/bindings/scripts/
CodeGeneratorObjC.pm 826 # - GETTER
827 my $getter = "- (" . $attributeType . ")" . $attributeName . $declarationSuffix;
828 push(@headerAttributes, $getter) if $public;
829 push(@privateHeaderAttributes, $getter) unless $public;
    [all...]
  /cts/tests/src/android/webkit/cts/
WebViewOnUiThread.java 659 private <T> T getValue(ValueGetter<T> getter) {
660 runOnUiThread(getter);
661 return getter.getValue();
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeySourceNetworkViews.java 225 ViewIntrospectionCommand getter = COMMAND_MAP.get(viewQuery); local
226 if (getter != null) {
227 return getter.query(node, args);
  /external/webkit/Source/JavaScriptCore/runtime/
ObjectConstructor.cpp 156 description->putDirect(exec->globalData(), exec->propertyNames().get, descriptor.getter() ? descriptor.getter() : jsUndefined(), 0);
240 throwError(exec, createTypeError(exec, "Getter must be a function."));
269 throwError(exec, createTypeError(exec, "Invalid property. 'value' present on property with getter or setter."));
274 throwError(exec, createTypeError(exec, "Invalid property. 'writable' present on property with getter or setter."));
291 ASSERT((descriptor.attributes() & (Getter | Setter)) || (!descriptor.isAccessorDescriptor()));
317 if (descriptor.getter())
318 markBuffer.append(descriptor.getter());
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
ST4ObjC.stg 94 @property (retain, getter=getTemplateLib, setter=setTemplateLib:) STGroup *templateLib;
AST.stg 82 @property (retain, getter=getTreeAdaptor, setter=setTreeAdaptor:) id\<ANTLRTreeAdaptor> treeAdaptor;
123 @property (retain, getter=getTree, setter=setTree:) <recognizer.ASTLabelType; null="ANTLRCommonTree"> *tree;
  /external/javassist/src/main/javassist/tools/reflect/
Reflection.java 261 clazz.addMethod(CtNewMethod.getter(metaobjectGetter, f));
271 clazz.addMethod(CtNewMethod.getter(classobjectAccessor, f));
  /external/v8/test/mjsunit/compiler/
objectliterals.js 28 // Test object literals with getter, setter and prototype properties.
  /external/v8/test/mjsunit/
getter-in-prototype.js 29 // that have only a getter in a prototype object, except when we are in strict
megamorphic-callbacks.js 51 // setter and getter properties to the object.
  /external/webkit/Source/WebCore/bindings/v8/
V8Proxy.h 78 v8::AccessorGetter getter; member in struct:WebCore::BatchedAttribute
91 attribute.getter,
  /frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
FsUtils.java 175 * timeout (in static getter for http client) in loop helps.
202 UrlDataGetter getter = new UrlDataGetter(url); local
203 return getter.get();
  /external/chromium/chrome/browser/
io_thread.cc 495 ChromeURLRequestContextGetter* getter = *it; local
498 getter->GetURLRequestContext()->dns_cert_checker();
501 getter->ReleaseURLRequestContext();
browsing_data_remover.cc 389 net::URLRequestContextGetter* getter = local
393 getter->GetURLRequestContext()->http_transaction_factory();
  /external/v8/test/mjsunit/harmony/
collections.js 31 // Test valid getter and setter calls on Sets.
40 // Test valid getter and setter calls on Maps and WeakMaps
51 // Test invalid getter and setter calls for WeakMap only
  /external/webkit/LayoutTests/fast/js/resources/
JSON-stringify.js 356 return jsonObject.stringify({a:"1", get b() { this.a="foo"; return "getter"; }, c:"3"});
359 return jsonObject.stringify({a:"1", get b() { this.c="foo"; return "getter"; }, c:"3"});
367 return jsonObject.stringify({a:"1", get b(){ return "getter"; }, set b(s) { return "setter"; }, c:"3"});
421 return jsonObject.stringify(magicObject) + " :: getter calls = " + getterCalls;
  /external/chromium/chrome/browser/sync/
test_profile_sync_service.cc 73 net::URLRequestContextGetter* getter) {

Completed in 1747 milliseconds

1 2 3 4 5 6 7 8 91011>>