HomeSort by relevance Sort by last modified time
    Searched refs:Getter (Results 1 - 25 of 36) 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);
IndexingContext.cpp 604 if (ObjCMethodDecl *Getter = D->getGetterMethodDecl()) {
605 getEntityInfo(Getter, GetterEntity, SA);
606 DInfo.ObjCPropDeclInfo.getter = &GetterEntity;
608 DInfo.ObjCPropDeclInfo.getter = 0;
    [all...]
  /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/
SemaPseudoObject.cpp 21 // of the associated 'getter' selector, typically:
222 ObjCMethodDecl *Getter;
231 SyntacticRefExpr(0), InstanceReceiver(0), Getter(0), Setter(0) {
493 } else if (Getter) {
494 T = Getter->getResultType();
503 if (Getter) return true;
507 if ((Getter = RefExpr->getImplicitPropertyGetter())) {
508 GetterSelector = Getter->getSelector();
512 // Must build the getter selector the hard way.
514 assert(setter && "both setter and getter are null - cannot happen")
    [all...]
SemaExprObjC.cpp     [all...]
SemaExprMember.cpp 409 // Also must look for a getter or setter name which uses property syntax.
    [all...]
  /external/clang/include/clang/AST/
ExprObjC.h 520 /// to the getter, the setter, or both.
533 // implicit property with no getter (because the 'foo' -> 'setFoo:'
568 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter,
574 PropertyOrGetter(Getter, true), SetterAndMethodRefFlags(Setter, 0),
579 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter,
584 PropertyOrGetter(Getter, true), SetterAndMethodRefFlags(Setter, 0),
589 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter,
594 PropertyOrGetter(Getter, true), SetterAndMethodRefFlags(Setter, 0),
633 /// getter.
671 if (const ObjCMethodDecl *Getter = PDecl->getGetterMethodDecl()
    [all...]
  /external/valgrind/main/drd/tests/
tsan_unittest.cpp 455 // Putter: Getter:
467 void Getter() {
474 MyThreadArray t(Putter, Getter);
791 // Putter: Getter:
809 void Getter() {
821 MyThreadArray t(Putter, Getter);
893 // Putter2: Putter1: Getter:
909 void Getter() {
917 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 160 // Getter/setter property, read and write.
  /external/webkit/Source/JavaScriptCore/jit/
JITPropertyAccess.cpp     [all...]
JITPropertyAccess32_64.cpp     [all...]
  /external/v8/src/
regexp.js 419 // Getter and setter for the input.
442 // Getter and setter for multiline.
  /external/clang/lib/CodeGen/
CGDebugInfo.cpp     [all...]
  /external/clang/lib/AST/
ASTDumper.cpp     [all...]
  /external/webkit/Source/JavaScriptCore/parser/
Nodes.h 412 enum Type { Constant = 1, Getter = 2, Setter = 4 };
    [all...]
  /external/clang/lib/Rewrite/Frontend/
RewriteObjC.cpp 785 // Generate the 'getter' function.
    [all...]

Completed in 1037 milliseconds

1 2