OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mReturn
(Results
1 - 5
of
5
) sorted by null
/development/tools/apkcheck/src/com/android/apkcheck/
MethodInfo.java
27
private String
mReturn
;
38
mReturn
= returnType;
55
newSig.append(TypeUtils.typeToDescriptor(
mReturn
));
82
mReturn
= TypeUtils.ambiguousToBinaryName(
mReturn
, apiList);
/packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
AccountServiceProxy.java
29
private Object
mReturn
;
83
mReturn
= mService.getAccountColor(accountId);
87
if (
mReturn
== null) {
90
return (Integer)
mReturn
;
100
mReturn
= mService.getConfigurationData(accountType);
104
if (
mReturn
== null) {
107
return (Bundle)
mReturn
;
117
mReturn
= mService.getDeviceId();
121
if (
mReturn
== null) {
124
return (String)
mReturn
;
[
all
...]
PolicyServiceProxy.java
32
private Object
mReturn
= null;
53
mReturn
= mService.isActive(arg0);
58
LogUtils.v(TAG, "isActive: " + ((
mReturn
== null) ? "null" :
mReturn
));
60
if (
mReturn
== null) {
66
return (Boolean)
mReturn
;
EmailServiceProxy.java
63
private Object
mReturn
= null;
154
mReturn
= mService.validate(hostAuth);
158
if (
mReturn
== null) {
163
Bundle bundle = (Bundle)
mReturn
;
186
mReturn
= mService.autoDiscover(userName, password);
190
if (
mReturn
== null) {
193
Bundle bundle = (Bundle)
mReturn
;
288
mReturn
= mService.searchMessages(accountId, searchParams, destMailboxId);
292
if (
mReturn
== null) {
295
return (Integer)
mReturn
;
[
all
...]
/frameworks/compile/slang/
slang_rs_export_foreach.h
57
bool
mReturn
; // does this kernel have a return type?
68
mAr(NULL), mResultType(clang::QualType()),
mReturn
(false),
106
return
mReturn
;
Completed in 805 milliseconds