Searched refs:result (Results 251 - 275 of 1036) sorted by relevance

<<11121314151617181920>>

/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
H A DSummarizer.java233 public void appendTest(AbstractResult result) { argument
234 String relativePath = result.getRelativePath();
236 if (result.didCrash()) {
240 if (result.didPass()) {
241 result.clearResults();
243 mUnexpectedPasses.add(result);
245 mExpectedPasses.add(result);
249 mExpectedFailures.add(result);
251 mUnexpectedFailures.add(result);
446 AbstractResult result;
506 appendTags(StringBuilder html, AbstractResult result) argument
537 appendExpectedResultsSources(AbstractResult result, StringBuilder html) argument
[all...]
/frameworks/base/core/java/android/hardware/
H A DLegacySensorManager.java70 int result = 0;
75 result |= SensorManager.SENSOR_ACCELEROMETER;
78 result |= SensorManager.SENSOR_MAGNETIC_FIELD;
81 result |= SensorManager.SENSOR_ORIENTATION
86 return result;
93 boolean result = false;
94 result = registerLegacyListener(SensorManager.SENSOR_ACCELEROMETER,
95 Sensor.TYPE_ACCELEROMETER, listener, sensors, rate) || result;
96 result = registerLegacyListener(SensorManager.SENSOR_MAGNETIC_FIELD,
97 Sensor.TYPE_MAGNETIC_FIELD, listener, sensors, rate) || result;
[all...]
/frameworks/av/media/libstagefright/codecs/aacenc/basic_op/
H A Doper_32b.h63 Word32 result; local
65 "SMULWB %[result], %[L_var2], %[var1] \n"
66 :[result]"=r"(result)
69 return result;
/frameworks/av/media/libstagefright/foundation/
H A DABitReader.cpp49 uint32_t result = 0; local
60 result = (result << m) | (mReservoir >> (32 - m));
67 return result;
/frameworks/base/core/java/android/accounts/
H A DAccountAuthenticatorResponse.java45 public void onResult(Bundle result) { argument
47 result.keySet(); // force it to be unparcelled
49 + AccountManager.sanitizeResult(result));
52 mAccountAuthenticatorResponse.onResult(result);
/frameworks/base/core/java/android/app/backup/
H A DRestoreObserver.java32 * @param result An array of {@link android.app.backup.RestoreSet RestoreSet} objects
34 * the current device. If no applicable datasets exist, {@code result} will be
39 public void restoreSetsAvailable(RestoreSet[] result) { argument
/frameworks/base/core/java/android/hardware/input/
H A DKeyboardLayout.java97 int result = mLabel.compareToIgnoreCase(another.mLabel);
98 if (result == 0) {
99 result = mCollection.compareToIgnoreCase(another.mCollection);
101 return result;
/frameworks/base/core/java/android/net/dhcp/
H A DDhcpDiscoverPacket.java45 ByteBuffer result = ByteBuffer.allocate(MAX_LENGTH);
49 result, DHCP_BOOTREQUEST, true);
50 result.flip();
51 return result;
H A DDhcpInformPacket.java44 ByteBuffer result = ByteBuffer.allocate(MAX_LENGTH);
46 fillInPacket(encap, mClientIp, mYourIp, destUdp, srcUdp, result,
48 result.flip();
49 return result;
H A DDhcpNakPacket.java46 ByteBuffer result = ByteBuffer.allocate(MAX_LENGTH);
50 fillInPacket(encap, destIp, srcIp, destUdp, srcUdp, result,
52 result.flip();
53 return result;
H A DDhcpRequestPacket.java49 ByteBuffer result = ByteBuffer.allocate(MAX_LENGTH);
52 result, DHCP_BOOTREQUEST, mBroadcast);
53 result.flip();
54 return result;
/frameworks/base/core/java/android/webkit/
H A DJsResult.java27 * notifications when the JavaScript result represented by a JsResult instance has
31 public void onJsResultComplete(JsResult result); argument
35 // This is a basic result of a confirm or prompt dialog.
39 * Handle the result if the user cancelled the dialog.
/frameworks/base/test-runner/src/android/test/
H A DLoaderTestCase.java30 * provides a simple way to synchronously get the result from a Loader making
31 * it easy to assert that the Loader returns the expected result.
44 protected void onPostExecute(Void result) {}
49 * Runs a Loader synchronously and returns the result of the load. The loader will
53 * @return The result from the loader
56 // The test thread blocks on this queue until the loader puts it's result in
60 // when it puts the result into the blocking queue
69 // Store the result, unblocking the test thread
88 // Block on the queue waiting for the result of the load to be inserted
89 T result;
[all...]
/frameworks/base/tests/backup/
H A Dbackup_helper_test.cpp33 int result; member in struct:Test
90 t->result = t->func();
91 if (t->result != 0) {
110 if (t->result != 0) {
/frameworks/base/wifi/java/android/net/wifi/
H A DWpsResult.java23 * A class representing the result of a WPS request
80 WpsResult result = new WpsResult();
81 result.status = Status.valueOf(in.readString());
82 result.pin = in.readString();
83 return result;
/frameworks/base/wifi/java/android/net/wifi/p2p/nsd/
H A DWifiP2pServiceInfo.java153 int result = 17;
154 result = 31 * result + (mQueryList == null ? 0 : mQueryList.hashCode());
155 return result;
/frameworks/compile/libbcc/lib/Renderscript/
H A DRSCompilerDriver.cpp78 RSExecutable *result = NULL; local
136 result = RSExecutable::Create(*info, *output_file, mResolver);
137 if (result == NULL) {
143 return result;
189 RSExecutable *result = NULL; local
282 result = RSExecutable::Create(*info, *output_file, mResolver);
283 if (result == NULL) {
298 result->dumpDisassembly(*disassembly_output);
308 if (!result->syncInfo(/* pForce */true)) {
313 return result;
363 RSExecutable *result = loadScriptCache(output_path.c_str(), dep_info); local
[all...]
/frameworks/compile/mclinker/lib/Target/
H A DOutputRelocSection.cpp67 Relocation* result; local
79 result = entry;
83 result = llvm::cast<Relocation>(&(*m_ValidEntryIterator));
86 return result;
/frameworks/native/include/ui/
H A DPoint.h75 const Point result(x+rhs.x, y+rhs.y);
76 return result;
79 const Point result(x-rhs.x, y-rhs.y);
80 return result;
/frameworks/wilhelm/src/itf/
H A DI3DLocation.c27 result = SL_RESULT_PARAMETER_INVALID;
35 result = SL_RESULT_SUCCESS;
50 result = SL_RESULT_PARAMETER_INVALID;
59 result = SL_RESULT_SUCCESS;
71 result = SL_RESULT_PARAMETER_INVALID;
106 result = SL_RESULT_SUCCESS;
118 result = SL_RESULT_PARAMETER_INVALID;
156 result = SL_RESULT_SUCCESS;
169 result = SL_RESULT_PARAMETER_INVALID;
181 result
[all...]
H A DIThreadSync.c36 result = SL_RESULT_PRECONDITIONS_VIOLATED;
41 result = SL_RESULT_SUCCESS;
57 result = SL_RESULT_PRECONDITIONS_VIOLATED;
65 result = SL_RESULT_SUCCESS;
/frameworks/wilhelm/src/objects/
H A DCAudioPlayer.c27 SLresult result = SL_RESULT_SUCCESS; local
30 result = android_audioPlayer_realize(thiz, async);
34 result = SndFile_Realize(thiz);
41 return result;
H A DCEngine.c55 SLresult result; local
59 result = err_to_result(err);
60 if (SL_RESULT_SUCCESS != result)
61 return result;
64 result = ThreadPool_init(&thiz->mThreadPool, 0, 0);
65 if (SL_RESULT_SUCCESS != result) {
68 return result;
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DNativeBuffer.java45 NativeBuffer result = null;
48 result = (NativeBuffer)myClass.newInstance();
53 if (mSize > 0 && !nativeCopyTo(result)) {
56 return result;
/frameworks/base/media/mca/filterfw/java/android/filterfw/io/
H A DPatternScanner.java55 String result = null;
59 result = mInput.substring(matcher.start(), matcher.end());
63 if (result != null && mIgnorePattern != null) {
67 return result;
71 String result = tryEat(pattern);
72 if (result == null) {
75 return result;

Completed in 1278 milliseconds

<<11121314151617181920>>