HomeSort by relevance Sort by last modified time
    Searched refs:Getter (Results 1 - 25 of 31) sorted by null

1 2

  /external/clang/tools/libclang/
CIndexInclusionStack.cpp 38 const SrcMgr::SLocEntry &(SourceManager::*Getter)(unsigned, bool*) const;
40 Getter = &SourceManager::getLoadedSLocEntry;
43 Getter = &SourceManager::getLocalSLocEntry;
47 const SrcMgr::SLocEntry &SL = (SM.*Getter)(i, &Invalid);
  /libcore/luni/src/main/native/
toStringArray.h 23 template <typename Counter, typename Getter>
24 jobjectArray toStringArray(JNIEnv* env, Counter* counter, Getter* getter) {
31 ScopedLocalRef<jstring> s(env, env->NewStringUTF((*getter)(i)));
43 template <typename Counter, typename Getter>
44 jobjectArray toStringArray16(JNIEnv* env, Counter* counter, Getter* getter) {
52 const jchar* chars = (*getter)(&charCount);
  /external/webkit/Source/JavaScriptCore/runtime/
PropertyDescriptor.cpp 75 JSValue PropertyDescriptor::getter() const function in class:JSC::PropertyDescriptor
91 if (attributes & (Getter | Setter)) {
93 m_getter = accessor->getter();
104 void PropertyDescriptor::setAccessorDescriptor(JSValue getter, JSValue setter, unsigned attributes)
106 ASSERT(attributes & (Getter | Setter));
107 ASSERT(getter || setter);
109 m_getter = getter;
149 void PropertyDescriptor::setGetter(JSValue getter)
151 m_getter = getter;
152 m_attributes |= Getter;
    [all...]
PropertySlot.h 43 Getter,
171 m_cachedPropertyType = Getter;
Arguments.cpp 165 descriptor.setAccessorDescriptor(thrower, thrower, DontEnum | DontDelete | Getter | Setter);
177 descriptor.setAccessorDescriptor(thrower, thrower, DontEnum | DontDelete | Getter | Setter);
JSObject.cpp 99 throwError(exec, createTypeError(exec, "setting a property that has only a getter"));
325 putDirectInternal(globalData, propertyName, getterSetter, attributes | Getter, true, slot);
329 // if we override an existing non-getter or non-setter.
354 // if we override an existing non-getter or non-setter.
371 JSObject* functionObject = asGetterSetter(value)->getter();
562 if (JSObject* getterFunction = asGetterSetter(location->get())->getter()) {
627 if (oldDescriptor.getter()) {
628 attributes |= Getter;
629 accessor->setGetter(exec->globalData(), asObject(oldDescriptor.getter()));
643 target->putWithAttributes(exec, propertyName, newValue, attributes & ~(Getter | Setter))
    [all...]
JSFunction.cpp 108 descriptor.setAccessorDescriptor(thrower, thrower, DontEnum | DontDelete | Getter | Setter);
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());
JSObject.h 68 Getter = 1 << 5, // property is a getter
    [all...]
  /external/clang/lib/Sema/
SemaExprObjC.cpp 581 ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel);
582 if (Getter &&
583 (Getter->hasRelatedResultType()
584 || DiagnosePropertyAccessorMismatch(PD, Getter, MemberLoc)))
585 ResTy = getMessageSendResultType(QualType(OPT, 0), Getter, false,
607 if (ObjCMethodDecl *Getter = PD->getGetterMethodDecl())
608 T = getMessageSendResultType(QualType(OPT, 0), Getter, false, Super);
629 ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel);
632 if (!Getter)
633 Getter = LookupMethodInQualifiedType(Sel, OPT, true)
    [all...]
SemaExprMember.cpp 402 // Also must look for a getter or setter name which uses property syntax.
    [all...]
SemaCodeComplete.cpp     [all...]
  /external/clang/include/clang/AST/
ExprObjC.h 270 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter,
276 PropertyOrGetter(Getter, true), Setter(Setter),
280 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter,
285 PropertyOrGetter(Getter, true), Setter(Setter),
289 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter,
294 PropertyOrGetter(Getter, true), Setter(Setter),
348 if (const ObjCMethodDecl *Getter = PDecl->getGetterMethodDecl())
349 ResultType = Getter->getResultType();
353 const ObjCMethodDecl *Getter = getImplicitPropertyGetter();
354 ResultType = Getter->getResultType(); // with reference
    [all...]
  /external/valgrind/main/drd/tests/
tsan_unittest.cpp 453 // Putter: Getter:
465 void Getter() {
472 MyThreadArray t(Putter, Getter);
789 // Putter: Getter:
807 void Getter() {
819 MyThreadArray t(Putter, Getter);
891 // Putter2: Putter1: Getter:
907 void Getter() {
915 MyThreadArray t(Getter, Putter1, Putter2);
    [all...]
  /external/valgrind/unittest/
racecheck_unittest.cc 215 // Putter: Getter:
227 void Getter() {
234 MyThreadArray t(Putter, Getter);
495 // Putter: Getter:
513 void Getter() {
525 MyThreadArray t(Putter, Getter);
597 // Putter2: Putter1: Getter:
613 void Getter() {
621 MyThreadArray t(Getter, Putter1, Putter2);
1094 // Putter1: Getter: Putter2
    [all...]
  /external/v8/test/mjsunit/
object-create.js 95 // Add a getter foo that returns a counter value.
108 // Make sure that trying to add both a value and a getter
205 assertTrue(/Getter must be a function/.test(e));
219 assertTrue(/Getter must be a function/.test(e));
object-literal.js 158 // Getter/setter property, read and write.
strict-mode.js 212 // Getter and data (non-strict)
    [all...]
  /external/webkit/Source/JavaScriptCore/jit/
JITPropertyAccess.cpp     [all...]
JITPropertyAccess32_64.cpp     [all...]
  /external/v8/src/
regexp.js 421 // Getter and setter for the input.
430 %DefineAccessor($RegExp, 'input', GETTER, RegExpGetInput, DONT_DELETE);
432 %DefineAccessor($RegExp, '$_', GETTER, RegExpGetInput, DONT_ENUM | DONT_DELETE);
434 %DefineAccessor($RegExp, '$input', GETTER, RegExpGetInput, DONT_ENUM | DONT_DELETE);
444 // Getter and setter for multiline.
449 %DefineAccessor($RegExp, 'multiline', GETTER, RegExpGetMultiline, DONT_DELETE);
451 %DefineAccessor($RegExp, '$*', GETTER, RegExpGetMultiline, DONT_ENUM | DONT_DELETE);
459 %DefineAccessor($RegExp, 'lastMatch', GETTER, RegExpGetLastMatch, DONT_DELETE);
461 %DefineAccessor($RegExp, '$&', GETTER, RegExpGetLastMatch, DONT_ENUM | DONT_DELETE);
463 %DefineAccessor($RegExp, 'lastParen', GETTER, RegExpGetLastParen, DONT_DELETE)
    [all...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp 839 ObjCMethodDecl *Getter = ReadDeclAs<ObjCMethodDecl>(Record, Idx);
841 E->setImplicitProperty(Getter, Setter);
    [all...]
  /external/webkit/Source/JavaScriptCore/parser/
Nodes.h 412 enum Type { Constant = 1, Getter = 2, Setter = 4 };
    [all...]
  /external/clang/lib/Rewrite/
RewriteObjC.cpp     [all...]
  /external/webkit/Source/JavaScriptCore/interpreter/
Interpreter.cpp     [all...]

Completed in 371 milliseconds

1 2