/packages/apps/UnifiedEmail/src/com/android/mail/compose/ |
HtmlifyBeginResult.java | 25 public final Spanned result; field in class:HtmlifyBeginResult 28 public HtmlifyBeginResult(Spanned result, Object extras) { 29 this.result = result;
|
/packages/services/Car/service/jni/ |
JniInit.cpp | 29 jint result = -1; local 33 return result;
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_future2.py | 10 result = f(2)(4) variable
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_future2.py | 10 result = f(2)(4) variable
|
/prebuilts/misc/windows/sdl2/test/ |
testautomation_syswm.c | 19 SDL_bool result; local 34 result = SDL_GetWindowWMInfo(window, &info); 36 SDLTest_Log((result == SDL_TRUE) ? "Got window information" : "Couldn't get window information");
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_future2.py | 10 result = f(2)(4) variable
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_future2.py | 10 result = f(2)(4) variable
|
/system/core/base/include/android-base/ |
parseint.h | 37 unsigned long long int result = strtoull(s, &end, base); local 41 if (max < result) { 44 *out = static_cast<T>(result); 59 long long int result = strtoll(s, &end, base); local 63 if (result < min || max < result) { 66 *out = static_cast<T>(result);
|
strings.h | 45 std::ostringstream result; local 46 result << *things.begin(); 48 result << separator << *it; 50 return result.str();
|
/system/extras/multinetwork/ |
dnschk.cpp | 42 struct addrinfo *result = nullptr; local 51 args.arg1, nullptr, &hints, &result); 62 rval = getaddrinfo(args.arg1, nullptr, &hints, &result); 77 for (struct addrinfo* rp = result; rp != nullptr; rp = rp->ai_next) { 81 freeaddrinfo(result);
|
/system/extras/simpleperf/ |
main.cpp | 64 bool result = command->Run(args); local 66 << (result ? "finished successfully" : "failed"); 67 return result ? 0 : 1;
|
/system/media/audio_utils/spdif/ |
FrameScanner.cpp | 53 bool result = false; local 69 result = true; 76 return result;
|
/system/nativepower/daemon/ |
main.cc | 38 int result = brillo::Daemon::OnInit(); variable 39 if (result != EX_OK) 40 return result;
|
/system/tpm/tpm_manager/server/ |
tpm2_status_impl.cc | 77 TPM_RC result = trunks_tpm_state_->Initialize(); local 78 if (result != TPM_RC_SUCCESS) { 80 << trunks::GetErrorString(result);
|
/system/update_engine/ |
fake_shill_proxy.cc | 36 std::unique_ptr<ServiceProxyInterface> result = std::move(it->second); local 38 return result;
|
/art/test/150-loadlibrary/src/ |
Main.java | 52 Object result = m.invoke(Runtime.getRuntime(), fileName, bootClassLoader); local 53 if (result != null) { 54 throw new IllegalStateException(result.toString());
|
/cts/tests/tests/accounts/common/src/android/accounts/cts/common/ |
TestAuthenticatorActivity.java | 31 Intent result = intent.getParcelableExtra(Fixtures.KEY_RESULT); local 33 response.onResult(result.getExtras()); 35 setResult(RESULT_OK, result);
|
/cts/tests/tests/accounts/src/android/accounts/cts/ |
AccountRemovalDummyActivity.java | 44 final Bundle result = new Bundle(); local 45 result.putBoolean(AccountManager.KEY_BOOLEAN_RESULT, true); 46 mResponse.onResult(result);
|
/cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/result/ |
TestSummaryXmlTest.java | 17 package com.android.cts.tradefed.result; 42 TestSummaryXml result = new TestSummaryXml(1, "2011-11-01"); local 43 assertEquals(1, result.getId()); 44 assertEquals("2011-11-01", result.getTimestamp()); 51 TestSummaryXml result = new TestSummaryXml(1, "2011-11-01"); local 52 result.parse(getStringAsReader(TEST_DATA)); 54 assertEquals(5, result.getNumFailed()); 55 assertEquals(2, result.getNumIncomplete()); 56 assertEquals(3, result.getNumPassed()); 63 TestSummaryXml result = new TestSummaryXml(1, "2011-11-01") local [all...] |
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/model/ |
Rule.java | 65 List<TestCase> result = new ArrayList<TestCase>(); local 67 result.add((TestCase)this.getElementAt(i)); 69 return result;
|
/external/guava/guava/src/com/google/common/cache/ |
AbstractLoadingCache.java | 61 Map<K, V> result = Maps.newLinkedHashMap(); local 63 if (!result.containsKey(key)) { 64 result.put(key, get(key)); 67 return ImmutableMap.copyOf(result);
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
UnicodeRegex.java | 86 StringBuilder result = new StringBuilder(); local 103 i = processSet(regex, i, result, temp, pos); 110 i = processSet(regex, i, result, temp, pos); 137 result.append(ch); 139 return result.toString(); 184 * cycles. The result can be used as input for fix(). 270 * @param result The result of the appended lines. 276 public static List<String> appendLines(List<String> result, String file, String encoding) throws IOException { 279 return appendLines(result, is, encoding) [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
UnicodeRegex.java | 84 StringBuilder result = new StringBuilder(); local 101 i = processSet(regex, i, result, temp, pos); 108 i = processSet(regex, i, result, temp, pos); 135 result.append(ch); 137 return result.toString(); 182 * cycles. The result can be used as input for fix(). 268 * @param result The result of the appended lines. 274 public static List<String> appendLines(List<String> result, String file, String encoding) throws IOException { 277 return appendLines(result, is, encoding) [all...] |
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/ |
TestUtil.java | 16 List<Header> result = new ArrayList<>(elements.length / 2); local 18 result.add(new Header(elements[i], elements[i + 1])); 20 return result;
|
/external/testng/src/test/java/test/tmp/ |
TimeBombTest.java | 23 Calendar result = Calendar.getInstance(); local 24 result.set(Calendar.HOUR_OF_DAY, hour); 25 result.set(Calendar.MINUTE, minute); 27 return result.getTimeInMillis();
|