Searched refs:output (Results 26 - 50 of 393) sorted by relevance

1234567891011>>

/frameworks/data-binding/compilationTests/src/test/java/android/databinding/compilationTest/
H A DCompilationResult.java30 public final String output; field in class:CompilationResult
33 public CompilationResult(int resultCode, String output, String error) { argument
35 this.output = output;
40 return resultCode == 0 && output.indexOf(text) > 0;
/frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/processing/
H A DScopedException.java103 public static ScopedException createFromOutput(String output) { argument
107 int msgStart = output.indexOf(MSG_KEY);
109 message = output;
111 int fileStart = output.indexOf(FILE_KEY, msgStart + MSG_KEY.length());
113 message = output;
115 message = output.substring(msgStart + MSG_KEY.length(), fileStart);
116 int locStart = output.indexOf(LOCATION_KEY, fileStart + FILE_KEY.length());
118 file = output.substring(fileStart + FILE_KEY.length());
120 file = output.substring(fileStart + FILE_KEY.length(), locStart);
123 nextLoc = output
144 extractErrors(String output) argument
[all...]
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/
H A DFrameFetch.java51 Frame output = context.fetchFrame(mKey);
52 if (output != null) {
53 pushOutput("frame", output);
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/text/
H A DToUpperCase.java51 Frame output = env.getFrameManager().newFrame(mOutputFormat);
52 output.setObjectValue(inputString.toUpperCase(Locale.getDefault()));
54 pushOutput("uppercase", output);
/frameworks/minikin/libs/minikin/
H A DFontLanguageListCache.cpp33 // Returns the text length of output.
34 static size_t toLanguageTag(char* output, size_t outSize, const std::string& locale) { argument
35 output[0] = '\0';
42 outLength = uloc_canonicalize(locale.c_str(), output, outSize, &uErr);
46 output[0] = '\0';
51 if (strncmp(output, "und", 3) == 0 &&
52 (outLength == 3 || (outLength == 8 && output[3] == '_'))) {
58 uloc_addLikelySubtags(output, likelyChars, ULOC_FULLNAME_CAPACITY, &uErr);
61 ALOGD("uloc_addLikelySubtags(\"%s\") failed: %s", output, u_errorName(uErr));
62 output[
[all...]
/frameworks/rs/tests/lldb/cpp/InfiniteLoop/
H A DInfiniteLoop.cpp51 uint32_t * output = new uint32_t[size*size]; local
52 b->copy2DRangeTo(0, 0, size, size, output);
53 delete [] output;
/frameworks/rs/tests/lldb/cpp/MultipleRSFiles/
H A DMultipleRSFiles.cpp43 uint32_t * output = new uint32_t[size*size]; local
44 b->copy2DRangeTo(0, 0, size, size, output);
45 delete [] output;
/frameworks/rs/tests/lldb/cpp/WaitAttach/
H A DWaitAttach.cpp40 uint32_t * output = new uint32_t[size*size]; local
41 b->copy2DRangeTo(0, 0, size, size, output);
42 delete [] output;
/frameworks/rs/tests/lldb/jni/NoDebugWaitAttach/jninodebugwaitattach/
H A Djninodebugwaitattach.cpp49 uint32_t * output = new uint32_t[size*size]; local
50 b->copy2DRangeTo(0, 0, size, size, output);
51 delete [] output;
/frameworks/base/packages/ExtServices/tests/src/android/ext/services/storage/
H A DCacheQuotaServiceImplTest.java85 List<CacheQuotaHint> output = getService().onComputeCacheQuotaHints(requests);
87 assertThat(output).hasSize(1);
88 assertThat(output.get(0).getQuota()).isEqualTo(1500L);
97 List<CacheQuotaHint> output = getService().onComputeCacheQuotaHints(requests);
100 assertThat(output).hasSize(2);
101 assertThat(output.get(0).getQuota()).isEqualTo(883);
102 assertThat(output.get(1).getQuota()).isEqualTo(1500 - 883);
111 List<CacheQuotaHint> output = getService().onComputeCacheQuotaHints(requests);
113 assertThat(output).hasSize(2);
114 assertThat(output
[all...]
/frameworks/av/media/img_utils/src/
H A DTiffEntry.cpp127 String8 output; local
129 output.appendFormat("[id: %x, type: %d, count: %u, value: '", getTag(), getType(), count);
142 output.appendFormat("%u ", typed_data[i]);
152 output.append(typed_data, len);
158 output.appendFormat("%u ", typed_data[i]);
165 output.appendFormat("%u ", typed_data[i]);
173 output.appendFormat("%u/%u ", typed_data[i], typed_data[i + 1]);
180 output.appendFormat("%d ", typed_data[i]);
187 output.appendFormat("%d ", typed_data[i]);
194 output
[all...]
/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationUsageStats.java580 StringBuilder output = new StringBuilder();
581 output.append(indent).append("AggregatedStats{\n");
583 output.append(indentPlusTwo);
584 output.append("key='").append(key).append("',\n");
585 output.append(indentPlusTwo);
586 output.append("numEnqueuedByApp=").append(numEnqueuedByApp).append(",\n");
587 output.append(indentPlusTwo);
588 output.append("numPostedByApp=").append(numPostedByApp).append(",\n");
589 output.append(indentPlusTwo);
590 output
[all...]
/frameworks/av/camera/include/camera/ndk/
H A DNdkCameraDevice.h266 * @param request the output request will be stored here if the method call succeeds.
295 * Create a capture session output container.
301 * @param container the output {@link ACaptureSessionOutputContainer} will be stored here if the
313 * Free a capture session output container.
325 * an output {@link ANativeWindow} to ACaptureSessionOutputContainer. Use
330 * @param output the output {@link ACaptureSessionOutput} will be stored here if the
335 * filled in the output argument.</li>
336 * <li>{@link ACAMERA_ERROR_INVALID_PARAMETER} if anw or output is NULL.</li></ul>
341 ANativeWindow* anw, /*out*/ACaptureSessionOutput** output);
[all...]
H A DNdkCaptureRequest.h49 // Container for output targets
52 // Container for a single output target
56 * ACaptureRequest is an opaque type that contains settings and output targets needed to capture
60 * the processing pipeline, the control algorithms, and the output buffers. Also
89 * <p>The ACameraOutputTarget is used in {@link ACaptureRequest_addTarget} method to add an output
94 * @param output the output {@link ACameraOutputTarget} will be stored here if the
99 * be filled in the output argument.</li>
100 * <li>{@link ACAMERA_ERROR_INVALID_PARAMETER} if window or output is NULL.</li></ul>
104 camera_status_t ACameraOutputTarget_create(ANativeWindow* window, ACameraOutputTarget** output);
[all...]
/frameworks/av/include/camera/ndk/
H A DNdkCameraDevice.h266 * @param request the output request will be stored here if the method call succeeds.
295 * Create a capture session output container.
301 * @param container the output {@link ACaptureSessionOutputContainer} will be stored here if the
313 * Free a capture session output container.
325 * an output {@link ANativeWindow} to ACaptureSessionOutputContainer. Use
330 * @param output the output {@link ACaptureSessionOutput} will be stored here if the
335 * filled in the output argument.</li>
336 * <li>{@link ACAMERA_ERROR_INVALID_PARAMETER} if anw or output is NULL.</li></ul>
341 ANativeWindow* anw, /*out*/ACaptureSessionOutput** output);
[all...]
H A DNdkCaptureRequest.h49 // Container for output targets
52 // Container for a single output target
56 * ACaptureRequest is an opaque type that contains settings and output targets needed to capture
60 * the processing pipeline, the control algorithms, and the output buffers. Also
89 * <p>The ACameraOutputTarget is used in {@link ACaptureRequest_addTarget} method to add an output
94 * @param output the output {@link ACameraOutputTarget} will be stored here if the
99 * be filled in the output argument.</li>
100 * <li>{@link ACAMERA_ERROR_INVALID_PARAMETER} if window or output is NULL.</li></ul>
104 camera_status_t ACameraOutputTarget_create(ANativeWindow* window, ACameraOutputTarget** output);
[all...]
/frameworks/base/keystore/java/android/security/keystore/
H A DKeyStoreCryptoOperationChunkedStreamer.java32 * Helper for streaming a crypto operation's input and output via {@link KeyStore} service's
164 if ((opResult.output != null) && (opResult.output.length > 0)) {
166 // More output might be produced in this loop -- buffer the current output
170 bufferedOutput.write(opResult.output);
172 throw new ProviderException("Failed to buffer output", e);
176 // No more output will be produced in this loop
179 // No previously buffered output
180 result = opResult.output;
[all...]
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DCrossProcessFilter.java112 // Create output frame
113 Frame output = context.getFrameManager().newFrame(inputFormat);
116 mProgram.process(input, output);
118 // Push output
119 pushOutput("image", output);
122 output.release();
H A DNegativeFilter.java82 // Create output frame
83 Frame output = context.getFrameManager().newFrame(inputFormat);
91 mProgram.process(input, output);
93 // Push output
94 pushOutput("image", output);
97 output.release();
H A DPosterizeFilter.java85 // Create output frame
86 Frame output = context.getFrameManager().newFrame(inputFormat);
94 mProgram.process(input, output);
96 // Push output
97 pushOutput("image", output);
100 output.release();
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/numeric/
H A DSinWaveFilter.java58 Frame output = env.getFrameManager().newFrame(mOutputFormat);
59 output.setObjectValue(((float)Math.sin(mValue) + 1.0f) / 2.0f);
60 pushOutput("value", output);
62 output.release();
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
H A Dpixelutils.h31 JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height, jint offset,
/frameworks/native/libs/gui/tests/
H A DStreamSplitter_test.cpp72 // Never allow the output BufferQueue to allocate a buffer
115 // received the buffer back from the output BufferQueue
130 for (int output = 0; output < NUM_OUTPUTS; ++output) {
131 BufferQueue::createBufferQueue(&outputProducers[output],
132 &outputConsumers[output]);
133 ASSERT_EQ(OK, outputConsumers[output]->consumerConnect(
140 for (int output = 0; output < NUM_OUTPUT
[all...]
/frameworks/rs/tests/lldb/tests/harness/
H A Dutil_bundle.py113 output = self._android.adb_retry('uninstall ' + package,
116 if output is None:
119 elif 'Success' not in output:
120 outmsg = '\n' + output.rstrip() if output else '<empty>'
122 'output: %s', outmsg)
127 if 'Success' not in output:
137 output = self._android.adb('uninstall ' + package)
139 if 'Success' not in output:
149 output
[all...]
/frameworks/base/tools/aapt2/java/
H A DJavaClassGenerator_test.cpp73 std::string output = out.str(); local
76 output.find("public static final int hey_man=0x01020000;"));
79 output.find("public static final int[] hey_dude={"));
82 output.find("public static final int hey_dude_cool_attr=0;"));
103 std::string output = out.str(); local
104 EXPECT_NE(std::string::npos, output.find("package com.android.internal;"));
106 output.find("public static final int one=0x01020000;"));
107 EXPECT_EQ(std::string::npos, output.find("two"));
108 EXPECT_EQ(std::string::npos, output.find("com_foo$two"));
129 std::string output local
162 std::string output = out.str(); local
174 std::string output = out.str(); local
187 std::string output = out.str(); local
258 std::string output = out.str(); local
[all...]

Completed in 8062 milliseconds

1234567891011>>