Searched refs:input (Results 76 - 100 of 431) sorted by relevance

1234567891011>>

/frameworks/native/include/input/
H A DKeyboard.h20 #include <input/Input.h>
21 #include <input/InputDevice.h>
22 #include <input/InputEventLabels.h>
/frameworks/rs/java/tests/Refocus/src/com/android/rs/test/
H A DDepthImage.java31 InputStream input = context.getContentResolver().openInputStream(data);
32 XmpDepthDecode decode = new XmpDepthDecode(input);
42 input = context.getContentResolver().openInputStream(data);
/frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
H A DUT_reduce.java89 private int addint(int[] input) { argument
91 for (int idx = 0; idx < input.length; ++idx)
92 rslt += input[idx];
97 final int[] input = createInputArrayInt(100000, 0, 1 << 13);
99 final int javaRslt = addint(input);
100 final int rsRslt = s.reduce_addint(input).get();
122 private Int2 findMinAndMax(float[] input) { argument
128 for (int idx = 0; idx < input.length; ++idx) {
129 if (input[idx] < minVal) {
130 minVal = input[id
[all...]
H A DUT_reduce_backward.java89 private int addint(int[] input) { argument
91 for (int idx = 0; idx < input.length; ++idx)
92 rslt += input[idx];
97 final int[] input = createInputArrayInt(100000, 0, 1 << 13);
99 final int javaRslt = addint(input);
100 final int rsRslt = s.reduce_addint(input).get();
122 private Int2 findMinAndMax(float[] input) { argument
128 for (int idx = 0; idx < input.length; ++idx) {
129 if (input[idx] < minVal) {
130 minVal = input[id
[all...]
H A DUT_script_group2_pointwise.java50 Allocation input = Allocation.createSized(pRS, Element.I32_4(pRS), ARRAY_SIZE);
51 input.copyFrom(array);
70 ((Allocation)group.execute(input)[0]).copyTo(a);
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/ui/
H A DSurfaceTargetFilter.java95 // Add input port
146 // Get input frame
147 Frame input = pullInput("frame");
150 float currentAspectRatio = (float)input.getFormat().getWidth() / input.getFormat().getHeight();
159 if (mLogVerbose) Log.v("SurfaceRenderFilter", "Got input format: " + input.getFormat());
160 int target = input.getFormat().getTarget();
162 gpuFrame = context.getFrameManager().duplicateFrameToTarget(input,
166 gpuFrame = input;
[all...]
/frameworks/native/libs/gui/tests/
H A DIGraphicBufferProducer_test.cpp57 // Parameters for a generic "valid" input for queueBuffer.
117 // Create a generic "valid" input for queueBuffer
123 // Builder pattern to slightly vary *almost* correct input
361 // A generic "valid" input
362 IGraphicBufferProducer::QueueBufferInput input = CreateBufferInput(); local
366 ASSERT_OK(mProducer->queueBuffer(dequeuedSlot, input, &output));
383 EXPECT_EQ(BAD_VALUE, mProducer->queueBuffer(dequeuedSlot, input, &output));
391 // A generic "valid" input
392 IGraphicBufferProducer::QueueBufferInput input = CreateBufferInput(); local
395 EXPECT_EQ(BAD_VALUE, mProducer->queueBuffer(/*slot*/-1, input,
403 IGraphicBufferProducer::QueueBufferInput input = CreateBufferInput(); local
420 IGraphicBufferProducer::QueueBufferInput input = CreateBufferInput(); local
434 IGraphicBufferProducer::QueueBufferInput input = local
443 IGraphicBufferProducer::QueueBufferInput input = local
456 IGraphicBufferProducer::QueueBufferInput input = local
469 IGraphicBufferProducer::QueueBufferInput input = CreateBufferInput(); local
518 IGraphicBufferProducer::QueueBufferInput input = CreateBufferInput(); local
596 IGraphicBufferProducer::QueueBufferInput input = CreateBufferInput(); local
696 IGraphicBufferProducer::QueueBufferInput input = CreateBufferInput(); local
[all...]
/frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/
H A DLayoutXmlProcessor.java70 private static void processIncrementalInputFiles(ResourceInput input, argument
74 processExistingIncrementalFiles(input.getRootInputFolder(), input.getAdded(), callback);
75 processExistingIncrementalFiles(input.getRootInputFolder(), input.getChanged(), callback);
76 processRemovedIncrementalFiles(input.getRootInputFolder(), input.getRemoved(), callback);
110 private static void processAllInputFiles(ResourceInput input, ProcessFileCallback callback) argument
113 FileUtils.deleteDirectory(input.getRootOutputFolder());
114 Preconditions.check(input
143 processResources(final ResourceInput input) argument
[all...]
/frameworks/compile/mclinker/lib/Core/
H A DLinker.cpp76 /// normalize - to convert the command line language to the input tree.
100 // 4.b - normalize the input tree
111 InputTree::const_dfs_iterator input, local
113 for (input = pModule.getInputTree().dfs_begin(); input != inEnd; ++input) {
114 mcld::outs() << counter++ << " * " << (*input)->name();
115 switch ((*input)->type()) {
133 << (*input)->type() << (*input)
[all...]
/frameworks/base/core/java/android/app/backup/
H A DBackupHelperDispatcher.java104 public void performRestore(BackupDataInput input, int appVersionCode, argument
109 BackupDataInputStream stream = new BackupDataInputStream(input);
110 while (input.readNextHeader()) {
112 String rawKey = input.getKey();
118 stream.dataSize = input.getDataSize();
133 input.skipEntityData(); // In case they didn't consume the data.
/frameworks/base/libs/hwui/utils/
H A DBlur.cpp101 const uint8_t* input = source + y * width; local
109 const uint8_t *i = input + (x - radius);
127 currentPixel = (float) input[validW];
149 const uint8_t* input = source + x; local
152 const uint8_t *i = input + ((y - radius) * width);
170 const uint8_t *i = input + validH * width;
/frameworks/minikin/libs/minikin/
H A DFontLanguageListCache.cpp79 static std::vector<FontLanguage> parseLanguageList(const std::string& input) { argument
85 std::string locale(input.size(), 0);
87 while ((commaLoc = input.find_first_of(',', currentIdx)) != std::string::npos) {
88 locale.assign(input, currentIdx, commaLoc - currentIdx);
102 locale.assign(input, currentIdx, input.size() - currentIdx);
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DColorTemperatureFilter.java91 // Get input frame
92 Frame input = pullInput("image");
93 FrameFormat inputFormat = input.getFormat();
105 mProgram.process(input, output);
H A DFlipFilter.java85 // Get input frame
86 Frame input = pullInput("image");
87 FrameFormat inputFormat = input.getFormat();
98 mProgram.process(input, output);
H A DSepiaFilter.java79 // Get input frame
80 Frame input = pullInput("image");
81 FrameFormat inputFormat = input.getFormat();
93 mProgram.process(input, output);
H A DSimpleImageFilter.java64 // Get input frame
65 Frame input = pullInput("image");
66 FrameFormat inputFormat = input.getFormat();
75 mProgram.process(input, output);
H A DTintFilter.java92 // Get input frame
93 Frame input = pullInput("image");
94 FrameFormat inputFormat = input.getFormat();
106 mProgram.process(input, output);
H A DBitmapOverlayFilter.java96 // Get input frame
97 Frame input = pullInput("image");
98 FrameFormat inputFormat = input.getFormat();
111 Frame[] inputs = {input, frame};
116 output.setDataFromFrame(input);
/frameworks/base/tools/validatekeymaps/
H A DMain.cpp17 #include <input/KeyCharacterMap.h>
18 #include <input/KeyLayoutMap.h>
19 #include <input/VirtualKeyMap.h>
46 " input device configurations, or virtual key definitions.\n\n",
105 fprintf(stderr, "Error %d parsing input device configuration file.\n\n", status);
/frameworks/compile/mclinker/lib/LD/
H A DGarbageCollection.cpp126 // traverse all the input relocations to setup the reached sections
127 Module::obj_iterator input, inEnd = m_Module.obj_end(); local
128 for (input = m_Module.obj_begin(); input != inEnd; ++input) {
129 LDContext::sect_iterator rs, rsEnd = (*input)->context()->relocSectEnd();
130 for (rs = (*input)->context()->relocSectBegin(); rs != rsEnd; ++rs) {
134 // 2. it has no reloc data. (All symbols in the input relocs are in the
153 // only the target symbols defined in the input fragments can make the
183 // input section
346 Module::obj_iterator input, inEnd = m_Module.obj_end(); local
[all...]
/frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
H A DUT_script_group2_pointwise.java48 Allocation input = Allocation.createSized(pRS, Element.I32_4(pRS), ARRAY_SIZE);
49 input.copyFrom(array);
68 ((Allocation)group.execute(input)[0]).copyTo(a);
/frameworks/av/include/media/
H A DCharacterEncodingDetector.h44 const char *input, size_t len,
/frameworks/base/core/java/android/hardware/input/
H A DInputManagerInternal.java17 package android.hardware.input;
35 * by the input system. The input system must copy this information to retain it.
41 * Called by the power manager to tell the input manager whether it should start
47 * Notifies that InputMethodManagerService switched the current input method subtype.
49 * @param userId user id that indicates who is using the specified input method and subtype.
50 * @param inputMethodInfo {@code null} when no input method is selected.
57 * Toggles Caps Lock state for input device with specific id.
59 * @param deviceId The id of input device.
/frameworks/base/keystore/java/android/security/keystore/
H A DAndroidKeyStoreSignatureSpiBase.java67 * {@code engineUpdate} starts ignoring input data.
288 protected final void engineUpdate(ByteBuffer input) { argument
291 int len = input.remaining();
292 if (input.hasArray()) {
293 b = input.array();
294 off = input.arrayOffset() + input.position();
295 input.position(input.limit());
299 input
[all...]
/frameworks/base/media/mca/filterfw/java/android/filterfw/io/
H A DPatternScanner.java34 public PatternScanner(String input) { argument
35 mInput = input;
38 public PatternScanner(String input, Pattern ignorePattern) { argument
39 mInput = input;

Completed in 538 milliseconds

1234567891011>>