Home
last modified time | relevance | path

Searched refs:getThis (Results 1 – 19 of 19) sorted by relevance

/external/clang/test/Analysis/
Darray-struct-region.cpp12 const struct S *getThis() const { return this; } in getThis() function
48 clang_analyzer_eval(s.getThis() == &s); // expected-warning{{TRUE}} in testAssignment()
68 clang_analyzer_eval((void *)getS().getThis() == (void *)&x); // expected-warning{{FALSE}} in testImmediateUse()
121 clang_analyzer_eval(s.getThis() == &s); // expected-warning{{TRUE}} in testReferenceAssignment()
138 return s.getThis() == &s; in checkThis()
Dinline.cpp422 Parent *getThis() { return vGetThis(); } in getThis() function
437 clang_analyzer_eval(obj.getThis()->x == 42); // expected-warning{{TRUE}} in test()
/external/grpc-grpc/src/php/ext/grpc/
Dserver.c64 PHP_GRPC_GET_WRAPPED_OBJECT(wrapped_grpc_server, getThis()); in PHP_METHOD()
101 PHP_GRPC_GET_WRAPPED_OBJECT(wrapped_grpc_server, getThis()); in PHP_METHOD()
153 PHP_GRPC_GET_WRAPPED_OBJECT(wrapped_grpc_server, getThis()); in PHP_METHOD()
176 PHP_GRPC_GET_WRAPPED_OBJECT(wrapped_grpc_server, getThis()); in PHP_METHOD()
199 PHP_GRPC_GET_WRAPPED_OBJECT(wrapped_grpc_server, getThis()); in PHP_METHOD()
Dtimeval.c57 PHP_GRPC_GET_WRAPPED_OBJECT(wrapped_grpc_timeval, getThis()); in PHP_METHOD()
88 PHP_GRPC_GET_WRAPPED_OBJECT(wrapped_grpc_timeval, getThis()); in PHP_METHOD()
114 PHP_GRPC_GET_WRAPPED_OBJECT(wrapped_grpc_timeval, getThis()); in PHP_METHOD()
225 PHP_GRPC_GET_WRAPPED_OBJECT(wrapped_grpc_timeval, getThis()); in PHP_METHOD()
Dcall.c206 getThis()); in PHP_METHOD()
228 add_property_zval(getThis(), "channel", channel_obj); in PHP_METHOD()
263 getThis()); in PHP_METHOD()
546 getThis()); in PHP_METHOD()
559 getThis()); in PHP_METHOD()
583 getThis()); in PHP_METHOD()
Dchannel.c299 PHP_GRPC_GET_WRAPPED_OBJECT(wrapped_grpc_channel, getThis()); in PHP_METHOD()
444 PHP_GRPC_GET_WRAPPED_OBJECT(wrapped_grpc_channel, getThis()); in PHP_METHOD()
465 PHP_GRPC_GET_WRAPPED_OBJECT(wrapped_grpc_channel, getThis()); in PHP_METHOD()
497 PHP_GRPC_GET_WRAPPED_OBJECT(wrapped_grpc_channel, getThis()); in PHP_METHOD()
538 PHP_GRPC_GET_WRAPPED_OBJECT(wrapped_grpc_channel, getThis()); in PHP_METHOD()
617 PHP_GRPC_GET_WRAPPED_OBJECT(wrapped_grpc_channel, getThis()); in PHP_METHOD()
/external/protobuf/php/ext/google/protobuf/
Ddef.c139 ZVAL_ZVAL(context->pool, getThis(), 1, 0); in PHP_METHOD()
161 DescriptorPool *self = php_to_descriptor_pool(getThis() TSRMLS_CC); in PHP_METHOD()
348 MessageBuilderContext *self = php_to_message_builder_context(getThis() TSRMLS_CC); in PHP_METHOD()
368 zval_copy_ctor(getThis()); in PHP_METHOD()
369 RETURN_ZVAL(getThis(), 1, 0); in PHP_METHOD()
373 MessageBuilderContext *self = php_to_message_builder_context(getThis() TSRMLS_CC); in PHP_METHOD()
Dmessage.c188 CE_STATIC_MEMBERS(Z_OBJCE_P(getThis()))[0] TSRMLS_CC); in PHP_METHOD()
202 putmsg(getThis(), desc, upb_pb_encoder_input(encoder), 0); in PHP_METHOD()
/external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/structurals/
DFrame.java131 public static UninitializedObjectType getThis() { in getThis() method in Frame
DPass3bVerifier.java358 f.getLocals().set(0, Frame.getThis()); in do_verify()
DExecutionVisitor.java841 if (t == Frame.getThis()) { in visitINVOKESPECIAL()
DInstConstraintVisitor.java2885 … if ((Frame.getThis() != null) && (!(mg.getClassName().equals(Type.OBJECT.getClassName()))) ) { in visitRETURN()
/external/guice/extensions/persist/src/com/google/inject/persist/jpa/
DJpaLocalTxnInterceptor.java102 Class<?> targetClass = methodInvocation.getThis().getClass(); in readTransactionMetadata()
DJpaPersistModule.java151 public Object getThis() { in bindFinder()
/external/guice/core/src/com/google/inject/internal/
DInterceptorStackCallback.java96 public Object getThis() { in getThis() method in InterceptorStackCallback.InterceptedMethodInvocation
/external/dexmaker/dexmaker/src/main/java/com/android/dx/stock/
DProxyBuilder.java532 Local<G> localThis = code.getThis(generatedType); in generateCodeForAllMethods()
622 Local<G> superThis = superCode.getThis(generatedType); in generateCodeForAllMethods()
703 Local<G> thisRef = constructorCode.getThis(generatedType); in generateConstructorsAndFields()
/external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/
DDexMakerTest.java243 directCode.getThis(generated); // 'this' is unused in testInvokeDirect()
279 Local<G> localThis = superHashCode.getThis(generated); in testInvokeSuper()
471 Local<G> thisRef = code.getThis(generated); in testDeclareConstructor()
1878 Local<?> thisLocal = code.getThis(GENERATED); in testSynchronizedFlagImpactsDeclarationOnly()
1910 Local<?> thisLocal = code.getThis(GENERATED); in testMonitorEnterMonitorExit()
2014 Local<?> thisRef = code.getThis(GENERATED); in addDefaultConstructor()
/external/guice/core/test/com/google/inject/
DMethodInterceptionTest.java137 lastTarget.set(methodInvocation.getThis()); in testGetThis()
/external/dexmaker/dexmaker/src/main/java/com/android/dx/
DCode.java254 public <T> Local<T> getThis(TypeId<T> type) { in getThis() method in Code