HomeSort by relevance Sort by last modified time
    Searched refs:Getter (Results 1 - 25 of 39) 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 612 if (ObjCMethodDecl *Getter = D->getGetterMethodDecl()) {
613 getEntityInfo(Getter, GetterEntity, SA);
614 DInfo.ObjCPropDeclInfo.getter = &GetterEntity;
616 DInfo.ObjCPropDeclInfo.getter = 0;
    [all...]
  /libnativehelper/include/nativehelper/
toStringArray.h 28 template <typename Counter, typename Getter>
29 jobjectArray toStringArray(JNIEnv* env, Counter* counter, Getter* getter) {
36 ScopedLocalRef<jstring> s(env, env->NewStringUTF((*getter)(i)));
48 template <typename Counter, typename Getter>
49 jobjectArray toStringArray16(JNIEnv* env, Counter* counter, Getter* getter) {
57 const jchar* chars = (*getter)(&charCount);
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
IDLAttributes.txt 22 ActivityLog=Access|Setter|Getter|AccessForIsolatedWorlds|SetterForIsolatedWorlds|GetterForIsolatedWorlds
  /external/clang/lib/Sema/
SemaPseudoObject.cpp 21 // of the associated 'getter' selector, typically:
258 ObjCMethodDecl *Getter;
267 SyntacticRefExpr(0), InstanceReceiver(0), Getter(0), Setter(0) {
542 } else if (Getter) {
543 T = Getter->getResultType();
552 if (Getter) return true;
556 if ((Getter = RefExpr->getImplicitPropertyGetter())) {
557 GetterSelector = Getter->getSelector();
561 // Must build the getter selector the hard way.
563 assert(setter && "both setter and getter are null - cannot happen")
    [all...]
SemaExprObjC.cpp     [all...]
SemaExprMember.cpp 427 // Also must look for a getter or setter name which uses property syntax.
    [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchersMacros.h 315 template <typename T> struct TypeMatcher##MatcherName##Getter { \
320 QualType, internal::TypeMatcher##MatcherName##Getter, \
327 template <typename T> struct TypeLocMatcher##MatcherName##Getter { \
332 TypeLoc, internal::TypeLocMatcher##MatcherName##Getter, \
ASTMatchersInternal.h     [all...]
  /external/clang/include/clang/AST/
ExprObjC.h 533 /// to the getter, the setter, or both.
546 // implicit property with no getter (because the 'foo' -> 'setFoo:'
581 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter,
587 PropertyOrGetter(Getter, true), SetterAndMethodRefFlags(Setter, 0),
592 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter,
597 PropertyOrGetter(Getter, true), SetterAndMethodRefFlags(Setter, 0),
602 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter,
607 PropertyOrGetter(Getter, true), SetterAndMethodRefFlags(Setter, 0),
646 /// getter.
684 if (const ObjCMethodDecl *Getter = PDecl->getGetterMethodDecl()
    [all...]
DeclCXX.h     [all...]
  /external/chromium_org/third_party/protobuf/python/google/protobuf/internal/
cpp_message.py 81 def Getter(self):
87 return property(Getter, Setter)
93 def Getter(self):
101 return property(Getter)
172 def Getter(self):
184 return property(Getter, Setter, doc=doc)
277 def Getter(self):
290 return property(Getter, Setter, doc=doc)
  /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/clang/lib/ARCMigrate/
ObjCMT.cpp 209 static bool rewriteToObjCProperty(const ObjCMethodDecl *Getter,
215 std::string PropertyNameString = Getter->getNameAsString();
247 QualType CanResultTy = Context.getCanonicalType(Getter->getResultType());
257 commit.replace(CharSourceRange::getCharRange(Getter->getLocStart(),
258 Getter->getDeclaratorEndLoc()),
274 // Is this method candidate to be a getter?
289 // Is this a valid setter, matching the target getter?
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/
TestObject.idl 97 [ImplementedAs=item] getter Node (unsigned long index);
98 [ImplementedAs=namedItem] getter DOMString (DOMString name);
310 [ActivityLog=Getter] attribute long activityLoggedAttrGetter1;
311 [PerWorldBindings, ActivityLog=Getter] attribute long activityLoggedAttrGetter2;
  /external/chromium_org/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/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/chromium_org/v8/src/
regexp.js 418 // Getter and setter for the input.
442 // Getter and setter for multiline.
api.cc 1328 AccessorGetterCallback getter = local
1436 NamedPropertyGetterCallback getter = local
1484 IndexedPropertyGetterCallback getter = local
    [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/chromium_org/v8/test/cctest/
test-cpu-profiler.cc 677 static void Getter(v8::Local<v8::String> name,
735 v8::String::New("foo"), &TestApiCallbacks::Getter,
775 v8::String::New("foo"), &TestApiCallbacks::Getter,
    [all...]

Completed in 496 milliseconds

1 2