HomeSort by relevance Sort by last modified time
    Searched defs:getter (Results 51 - 75 of 352) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/harfbuzz_ng/test/api/
test-unicode.c 448 getter_func_t getter; member in struct:__anon19949
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/protobuf/python/google/protobuf/internal/
python_message.py 616 def getter(self): function in function:_AddPropertiesForRepeatedField
630 getter.__module__ = None
631 getter.__doc__ = 'Getter for %s.' % proto_field_name
640 setattr(cls, property_name, property(getter, setter, doc=doc))
661 def getter(self): function in function:_AddPropertiesForNonRepeatedScalarField
665 getter.__module__ = None
666 getter.__doc__ = 'Getter for %s.' % proto_field_name
694 # Add a property to encapsulate the getter/setter
715 def getter(self): function in function:_AddPropertiesForNonRepeatedCompositeField
    [all...]
  /external/v8/src/
api-natives.cc 60 Handle<Object> getter, Handle<Object> setter, PropertyAttributes attributes,
62 DCHECK(!getter->IsFunctionTemplateInfo() ||
63 !FunctionTemplateInfo::cast(*getter)->do_not_cache());
67 if (getter->IsFunctionTemplateInfo()) {
69 isolate, getter,
71 Handle<FunctionTemplateInfo>::cast(getter)),
82 RETURN_ON_EXCEPTION(isolate, JSObject::DefineAccessor(object, name, getter,
237 auto getter = handle(properties->get(i++), isolate); local
240 isolate, DefineAccessorProperty(isolate, obj, name, getter, setter,
573 Handle<FunctionTemplateInfo> getter,
    [all...]
bootstrapper.cc 476 Handle<JSFunction> getter = local
485 JSObject::DefineAccessor(base, name, getter, setter, attribs).Check();
497 Handle<JSFunction> getter = local
502 JSObject::DefineAccessor(base, property_name, getter, setter, DONT_ENUM)
505 return getter;
    [all...]
globals.h 731 Object* (*getter)(Isolate* isolate, Object* object, void* data); member in struct:v8::internal::AccessorDescriptor
    [all...]
  /external/v8/src/builtins/
builtins-object.cc 428 // 2. If IsCallable(getter) is false, throw a TypeError exception.
436 // 3. Let desc be PropertyDescriptor{[[Get]]: getter, [[Enumerable]]: true,
536 Handle<Object> getter = args.at(2); local
537 return ObjectDefineAccessor<ACCESSOR_GETTER>(isolate, object, name, getter);
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/invoke/
MethodHandleCombinersTest.java 293 MethodHandle getter = MethodHandles.arrayElementGetter(int[].class); local
298 int value = (int) getter.invoke(array, 0);
302 value = (int) getter.invoke(array, -1);
308 value = (int) getter.invoke(null, -1);
315 getter = MethodHandles.arrayElementGetter(long[].class);
318 long value = (long) getter.invoke(array, 0);
323 getter = MethodHandles.arrayElementGetter(short[].class);
326 short value = (short) getter.invoke(array, 0);
331 getter = MethodHandles.arrayElementGetter(char[].class);
334 char value = (char) getter.invoke(array, 0)
1786 MethodHandle getter = MethodHandles.arrayElementGetter(int[].class); local
    [all...]
  /art/test/957-methodhandle-transforms/src/
Main.java 267 MethodHandle getter = MethodHandles.arrayElementGetter(int[].class); local
272 int value = (int) getter.invoke(array, 0);
278 value = (int) getter.invoke(array, -1);
284 value = (int) getter.invoke(null, -1);
291 getter = MethodHandles.arrayElementGetter(long[].class);
294 long value = (long) getter.invoke(array, 0);
301 getter = MethodHandles.arrayElementGetter(short[].class);
304 short value = (short) getter.invoke(array, 0);
311 getter = MethodHandles.arrayElementGetter(char[].class);
314 char value = (char) getter.invoke(array, 0)
    [all...]
  /external/deqp/modules/gles2/functional/
es2fShaderStateQueryTests.cpp 1319 const char* getter; member in struct:deqp::gles2::Functional::__anon17129::ProgramUniformCase::UniformType
    [all...]
  /external/deqp/modules/gles3/functional/
es3fShaderStateQueryTests.cpp 1617 const char* getter; member in struct:deqp::gles3::Functional::__anon17297::ProgramUniformCase::UniformType
    [all...]
  /external/flatbuffers/src/
idl_gen_general.cpp 578 std::string getter = local
581 getter = "0!=" + getter;
583 getter += MakeCamel(GenTypeBasic(type, false));
585 return getter;
885 std::string getter = dest_cast + GenGetter(field.value.type); local
908 code += " { return " + getter;
913 code += offset_prefix + getter;
    [all...]
  /external/v8/src/runtime/
runtime-debug.cc 309 // 3: Getter function if defined
311 // Items 2-4 are only filled if the property has either a getter or a setter.
360 // getter and/or setter.
375 Handle<Object> getter = local
379 details->set(4, *getter);
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
Utilities.java 503 Method getter = clazz.getDeclaredMethod("get", String.class); local
504 String value = (String) getter.invoke(null, property);
  /prebuilts/tools/common/m2/repository/com/uber/rave-compiler/0.6.0/
rave-compiler-0.6.0.jar 
  /external/v8/src/debug/
mirrors.js 1483 PropertyMirror.prototype.getter = function() { method in class:PropertyMirror
    [all...]
  /frameworks/av/media/libstagefright/codec2/tests/
C2Param_test.cpp 2340 struct getter { struct in namespace:android
2359 struct getter<E, true> { struct in namespace:android
    [all...]
  /external/clang/lib/CodeGen/
CGObjC.cpp 630 /// evaluation for the getter.
711 // emission for the getter.
791 /// \brief Generate an Objective-C property getter function.
801 assert(OMD && "Invalid call to generate getter (empty method)");
810 const Expr *getter = propImpl->getGetterCXXConstructor(); local
811 if (!getter) return true;
819 if (getter->isGLValue())
823 if (const CXXConstructExpr *construct = dyn_cast<CXXConstructExpr>(getter))
828 assert(isa<ExprWithCleanups>(getter));
    [all...]
  /external/v8/src/ic/
ic.cc 310 // If there is a getter, return; otherwise loop to perform the lookup.
312 if (!holder->GetNamedInterceptor()->getter()->IsUndefined(
3089 v8::GenericNamedPropertyGetterCallback getter = local
3124 v8::GenericNamedPropertyGetterCallback getter = local
3215 v8::IndexedPropertyGetterCallback getter = local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_descr.py 2058 def getter(self): member in class:.test_properties_doc_attrib.E
4523 def getter(name): function in function:.test_getattr_hooks.Descriptor.__get__
    [all...]
  /external/python/cpython2/Lib/test/
test_descr.py 2084 def getter(self): member in class:.test_properties_doc_attrib.E
4607 def getter(name): function in function:.test_getattr_hooks.Descriptor.__get__
    [all...]
  /external/r8/src/main/java/com/android/tools/r8/dex/
FileWriter.java 112 private static <S, T extends Comparable<T>> boolean isSorted(S[] items, Function<S, T> getter) {
115 T next = getter.apply(item);
580 List<T> items, ToIntFunction<T> getter) {
583 dest.putInt(getter.applyAsInt(item));
    [all...]
  /external/v8/src/compiler/
ast-graph-builder.cc 1386 Node* getter = environment()->Pop(); local
    [all...]
  /external/v8/src/profiler/
heap-snapshot-generator.cc 1619 Object* getter = accessors->getter(); local
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_descr.py 2075 def getter(self): member in class:.test_properties_doc_attrib.E
4554 def getter(name): function in function:.test_getattr_hooks.Descriptor.__get__
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_descr.py 2075 def getter(self): member in class:.test_properties_doc_attrib.E
4554 def getter(name): function in function:.test_getattr_hooks.Descriptor.__get__
    [all...]

Completed in 1191 milliseconds

1 23 4 5 6 7 8 91011>>