| /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/ |
| FillLightFilter.java | 99 // Create output frame 100 Frame output = context.getFrameManager().newFrame(inputFormat); local 109 mProgram.process(input, output); 111 // Push output 112 pushOutput("image", output); 115 output.release();
|
| FixedRotationFilter.java | 96 // Create output frame 97 Frame output = context.getFrameManager().newFrame(outputFormat); local 103 mProgram.process(input, output); 105 // Push output 106 pushOutput("image", output); 109 output.release();
|
| FlipFilter.java | 94 // Create output frame 95 Frame output = context.getFrameManager().newFrame(inputFormat); local 98 mProgram.process(input, output); 100 // Push output 101 pushOutput("image", output); 104 output.release();
|
| LomoishFilter.java | 193 // Create output frame 194 Frame output = context.getFrameManager().newFrame(inputFormat); local 197 mProgram.process(input, output); 199 // Push output 200 pushOutput("image", output); 203 output.release();
|
| SepiaFilter.java | 83 // Create output frame 84 Frame output = context.getFrameManager().newFrame(inputFormat); local 93 mProgram.process(input, output); 95 // Push output 96 pushOutput("image", output); 99 output.release();
|
| SimpleImageFilter.java | 68 // Create output frame 69 Frame output = context.getFrameManager().newFrame(inputFormat); local 75 mProgram.process(input, output); 77 // Push output 78 pushOutput("image", output); 81 output.release();
|
| TintFilter.java | 102 // Create output frame 103 Frame output = context.getFrameManager().newFrame(inputFormat); local 106 mProgram.process(input, output); 108 // Push output 109 pushOutput("image", output); 112 output.release();
|
| ToRGBAFilter.java | 85 // Create output frame 86 Frame output = context.getFrameManager().newFrame(getConvertedFormat(input.getFormat())); local 89 mProgram.process(input, output); 91 // Push output 92 pushOutput("image", output); 95 output.release();
|
| ToRGBFilter.java | 85 // Create output frame 86 Frame output = context.getFrameManager().newFrame(getConvertedFormat(input.getFormat())); local 89 mProgram.process(input, output); 91 // Push output 92 pushOutput("image", output); 95 output.release();
|
| /frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/ |
| JsonParser.java | 42 JSONObject output = new JSONObject(); local 49 if (output.has(fieldName)) { 57 output.put(fieldName, new JSONArray(parseArray(reader))); 59 output.put(fieldName, reader.nextString()); 62 output.put(fieldName, parse(reader)); 77 return output; 84 ArrayList<String> output = new ArrayList<>(); local 88 output.add(reader.nextString()); 92 return output;
|
| /frameworks/support/work/workmanager/src/test/java/androidx/work/ |
| ArrayCreatingInputMergerTest.java | 51 Data output = getOutputFor(mDataWithInt); local 52 assertThat(output.size(), is(1)); 53 int[] outputArray = output.getIntArray(KEY); 60 Data output = getOutputFor(mDataWithInt, mDataWithInt); local 61 assertThat(output.size(), is(1)); 62 int[] outputArray = output.getIntArray(KEY); 70 Data output = getOutputFor(mDataWithIntArray, mDataWithIntArray); local 71 assertThat(output.size(), is(1)); 72 int[] outputArray = output.getIntArray(KEY); 83 Data output = getOutputFor(mDataWithIntArray, mDataWithInt) local 97 Data output = getOutputFor(mDataWithInt, mDataWithLong); local [all...] |
| /tools/loganalysis/tests/src/com/android/loganalysis/item/ |
| LocationDumpsItemTest.java | 40 JSONObject output = new JSONObject(item.toJson().toString()); local 42 assertTrue(output.has(LocationDumpsItem.LOCATION_CLIENTS)); 43 assertTrue(output.get(LocationDumpsItem.LOCATION_CLIENTS) instanceof JSONArray); 45 JSONArray locationClients = output.getJSONArray(LocationDumpsItem.LOCATION_CLIENTS);
|
| /art/libartbase/base/ |
| transform_array_ref_test.cc | 43 std::vector<int> output; local 55 std::copy(taref.begin(), taref.end(), std::back_inserter(output)); 56 ASSERT_EQ(std::vector<int>({ 8, 7, 5, 1 }), output); 57 output.clear(); 59 std::copy(taref.cbegin(), taref.cend(), std::back_inserter(output)); 60 ASSERT_EQ(std::vector<int>({ 8, 7, 5, 1 }), output); 61 output.clear(); 63 std::copy(taref.rbegin(), taref.rend(), std::back_inserter(output)); 64 ASSERT_EQ(std::vector<int>({ 1, 5, 7, 8 }), output); 65 output.clear() 84 std::vector<int> output; local 120 std::vector<int> output; local [all...] |
| /bionic/libc/upstream-openbsd/lib/libc/net/ |
| base64.c | 71 The encoding process represents 24-bit groups of input bits as output 79 output string. 115 output will be an integral multiple of 4 characters 118 here, the final unit of encoded output will be two 121 here, the final unit of encoded output will be three 134 u_char output[4]; local 143 output[0] = input[0] >> 2; 144 output[1] = ((input[0] & 0x03) << 4) + (input[1] >> 4); 145 output[2] = ((input[1] & 0x0f) << 2) + (input[2] >> 6); 146 output[3] = input[2] & 0x3f [all...] |
| /build/soong/cmd/zip2zip/ |
| zip2zip.go | 35 output = flag.String("o", "", "output file") 46 flag.Var(&excludes, "x", "exclude a filespec from the output") 61 fmt.Fprintln(os.Stderr, "the output zipfile, in the order of filespec arguments.") 68 if *input == "" || *output == "" { 81 output, err := os.Create(*output) 85 defer output.Close() 87 writer := zip.NewWriter(output) 131 input, output := includeSplit(include 34 output = flag.String("o", "", "output file") var [all...] |
| /cts/hostsidetests/devicepolicy/src/com/android/cts/devicepolicy/ |
| UserActivityEmulator.java | 31 // Figure out screen size. Output is something like "Physical size: 1440x2880". 33 final String output = mDevice.executeShellCommand("wm size"); local 34 final String[] sizes = output.split(" ")[2].split("x");
|
| /cts/hostsidetests/multiuser/src/android/host/multiuser/ |
| CreateUsersPermissionTest.java | 68 final String output = getDevice().executeShellCommand(setRestriction + "1"); local 69 final boolean isErrorOutput = output.contains("SecurityException") 70 && output.contains("You need MANAGE_USERS permission"); 72 + "command output: " + output, isErrorOutput);
|
| /cts/hostsidetests/security/src/android/cts/security/ |
| PerfEventParanoidTest.java | 39 String output = mDevice.executeShellCommand(cmd); local 45 output.equals("3\n"));
|
| /cts/tests/tests/database/src/android/database/sqlite/cts/ |
| DatabaseTestUtils.java | 34 String output = getDbInfoOutput(); local 35 Log.d(TAG, "waitForConnectionToClose #" + i + ": " + output); 36 if (!output.contains("Connection #0:")) {
|
| /dalvik/dx/junit-tests/com/android/dx/util/ |
| ByteArrayAnnotatedOutputTest.java | 31 ByteArrayAnnotatedOutput output = new ByteArrayAnnotatedOutput(data); local 33 output.writeZeroes(length); 46 ByteArrayAnnotatedOutput output = new ByteArrayAnnotatedOutput(data); local 49 output.writeByte(0); 50 output.alignTo(length);
|
| /development/gsi/gsi_util/gsi_util/commands/ |
| check_compat.py | 28 # The output will look like: 41 """Whether to only output a summary result of all checks.""" 87 def output(self, check_result_items): member in class:CheckReporter 88 """The main public method to output a sequence of CheckResultItem()s.""" 126 reporter.output(check_result) 163 help='only output the summary result')
|
| /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/ |
| base64.c | 113 The encoding process represents 24-bit groups of input bits as output
121 output string.
157 output will be an integral multiple of 4 characters
160 here, the final unit of encoded output will be two
163 here, the final unit of encoded output will be three
171 u_char output[4];
local 181 output[0] = input[0] >> 2;
182 output[1] = ((input[0] & 0x03) << 4) + (input[1] >> 4);
183 output[2] = ((input[1] & 0x0f) << 2) + (input[2] >> 6);
184 output[3] = input[2] & 0x3f; [all...] |
| /external/ImageMagick/MagickWand/tests/ |
| loop_over_lists.c | 30 *output; local
|
| /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/ |
| gUnitTestResult.java | 33 private String output; // stdout field in class:gUnitTestResult 38 public gUnitTestResult(boolean success, String output) { 40 this.output = output; 43 public gUnitTestResult(boolean success, String output, boolean isLexerTest) { 44 this(success, output); 48 public gUnitTestResult(boolean success, String output, String returned) { 49 this(success, output); 58 return output;
|
| /external/autotest/cli/ |
| label.py | 120 def output(self, results): member in class:label_list 136 super(label_list, self).output(results, keys)
|