Searched defs:input (Results 26 - 50 of 138) sorted by relevance

123456

/frameworks/base/core/java/android/hardware/input/
H A DInputDeviceIdentifier.java17 package android.hardware.input;
23 * Wrapper for passing identifying information for input devices.
H A DKeyboardLayout.java17 package android.hardware.input;
H A DTouchCalibration.java17 package android.hardware.input;
23 * Encapsulates calibration data for input devices.
54 * @param xScale Influence of input x-axis value on output x-axis value.
55 * @param xyMix Influence of input y-axis value on output x-axis value.
57 * @param yXMix Influence of input x-axis value on output y-axis value.
58 * @param yScale Influence of input y-axis value on output y-axis value.
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DColorSpace.java31 * The input data is expected to be laid out in 3 planes. The width x height Y plane, followed
36 * @param input data encoded in YUV420-Planar.
42 ByteBuffer input, ByteBuffer output, int width, int height) {
43 expectInputSize(input, (3 * width * height) / 2);
45 nativeYuv420pToRgba8888(input, output, width, height);
51 * The input data is expected to be encoded in 8-bit interleaved ARGB channels. The output
53 * input buffer.
55 * @param input data encoded in ARGB8888.
61 ByteBuffer input, ByteBuffer output, int width, int height) {
62 expectInputSize(input, widt
41 convertYuv420pToRgba8888( ByteBuffer input, ByteBuffer output, int width, int height) argument
60 convertArgb8888ToRgba8888( ByteBuffer input, ByteBuffer output, int width, int height) argument
79 convertRgba8888ToHsva8888( ByteBuffer input, ByteBuffer output, int width, int height) argument
98 convertRgba8888ToYcbcra8888( ByteBuffer input, ByteBuffer output, int width, int height) argument
105 expectInputSize(ByteBuffer input, int expectedSize) argument
121 nativeYuv420pToRgba8888( ByteBuffer input, ByteBuffer output, int width, int height) argument
124 nativeArgb8888ToRgba8888( ByteBuffer input, ByteBuffer output, int width, int height) argument
127 nativeRgba8888ToHsva8888( ByteBuffer input, ByteBuffer output, int width, int height) argument
130 nativeRgba8888ToYcbcra8888( ByteBuffer input, ByteBuffer output, int width, int height) argument
[all...]
/frameworks/compile/mclinker/include/mcld/MC/
H A DInputBuilder.h30 * InputBuilder build input tree and inputs.
45 // ----- input tree operations ----- //
51 // ----- root of input tree ----- //
60 // ----- input operations ----- //
111 Input* input = createInput(pName, pPath, pType); local
112 m_pCurrentTree->insert(m_Root, *m_pMove, *input);
126 Input* input = createInput(pName, pPath, pType); local
127 m_pCurrentTree->insert(m_Root, *m_pMove, *input);
/frameworks/compile/mclinker/lib/Script/
H A DGroupCmd.cpp53 InputToken* input = llvm::cast<InputToken>(*it); local
54 cur = input->asNeeded();
60 if (input->type() == InputToken::NameSpec)
62 mcld::outs() << input->name() << " ";
152 Input* input = *m_Builder.getCurrentNode(); local
153 assert(input != NULL);
154 if (!m_Builder.setMemory(*input, FileHandle::ReadOnly))
155 error(diag::err_cannot_open_input) << input->name() << input->path();
156 m_Builder.setContext(*input);
[all...]
/frameworks/rs/tests/cppbasic-getpointer/
H A Dcompute.cpp44 uint32_t *input = (uint32_t*)ain->getPointer(&inputStride); local
47 printf("Input pointer: %p\n", input);
57 input[i * inputStride + j] = rand();
78 if (input[i * inputStride + j] != ~(output[i * inputStride + j])) {
/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/core/java/android/content/pm/
H A DVerifierDeviceIdentity.java86 * @return verifier device identity based on the input from the provided
103 private static final String encodeBase32(long input) { argument
127 final int group = (int) (input & 0x1F);
128 input >>>= 5;
137 private static final long decodeBase32(byte[] input) throws IllegalArgumentException { argument
141 final int N = input.length;
143 final int group = input[i];
210 final byte[] input;
212 input = deviceIdentity.getBytes("US-ASCII");
214 throw new IllegalArgumentException("bad base-32 characters in input");
[all...]
/frameworks/base/core/java/android/hardware/camera2/params/
H A DStreamConfiguration.java34 * <!-- TODO: link to input stream configuration -->
36 * <p>This is the authoritative list for all input/output formats (and sizes respectively
51 * @param input true if this is an input configuration, false for output configurations
61 final int format, final int width, final int height, final boolean input) {
65 mInput = input;
109 * Determines if this configuration is usable for input streams.
112 * input stream configurations must be used when configuring inputs.</p>
114 * @return {@code true} if input configuration, {@code false} otherwise
60 StreamConfiguration( final int format, final int width, final int height, final boolean input) argument
/frameworks/base/core/java/android/text/
H A DAndroidCharacter.java49 * @param input the character to measure
50 * @return the East Asian Width for input
52 public native static int getEastAsianWidth(char input); argument
64 * @param src character array of input to measure
/frameworks/base/core/jni/
H A Dandroid_text_AndroidCharacter.cpp96 static jint getEastAsianWidth(JNIEnv* env, jobject obj, jchar input) argument
98 int width = u_getIntPropertyValue(input, UCHAR_EAST_ASIAN_WIDTH);
/frameworks/base/libs/hwui/
H A DInterpolator.cpp33 float AccelerateDecelerateInterpolator::interpolate(float input) { argument
34 return (float)(cosf((input + 1) * M_PI) / 2.0f) + 0.5f;
37 float AccelerateInterpolator::interpolate(float input) { argument
39 return input * input;
41 return pow(input, mDoubleFactor);
74 float CycleInterpolator::interpolate(float input) { argument
75 return sinf(2 * mCycles * M_PI * input);
78 float DecelerateInterpolator::interpolate(float input) { argument
81 result = 1.0f - (1.0f - input) * (1.
103 interpolate(float input) argument
[all...]
H A DInterpolator.h30 virtual float interpolate(float input) = 0;
40 virtual float interpolate(float input);
46 virtual float interpolate(float input);
55 virtual float interpolate(float input);
63 virtual float interpolate(float input);
70 virtual float interpolate(float input);
76 virtual float interpolate(float input);
84 virtual float interpolate(float input);
91 virtual float interpolate(float input) { return input; } argument
[all...]
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DFilterFunction.java112 public void setInputFrame(String input, Frame frame) { argument
113 mFilter.setInputFrame(input, frame);
116 public void setInputValue(String input, Object value) { argument
117 mFilter.setInputValue(input, value);
/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;
/frameworks/base/opengl/java/android/opengl/
H A DETC1Util.java42 * @param input the input stream containing an ETC1 texture in PKM format.
46 int fallbackFormat, int fallbackType, InputStream input)
48 loadTexture(target, level, border, fallbackFormat, fallbackType, createTexture(input));
147 * Create a new ETC1Texture from an input stream containing a PKM formatted compressed texture.
148 * @param input an input stream containing a PKM formatted compressed texture.
149 * @return an ETC1Texture read from the input stream.
152 public static ETC1Texture createTexture(InputStream input) throws IOException { argument
157 if (input
45 loadTexture(int target, int level, int border, int fallbackFormat, int fallbackType, InputStream input) argument
192 compressTexture(Buffer input, int width, int height, int pixelSize, int stride) argument
[all...]
/frameworks/compile/mclinker/lib/LD/
H A DGroupReader.cpp52 Module::input_iterator input = --pRoot; local
55 while (input != pEnd) {
58 if ((*input)->type() == Input::Script ||
59 (*input)->type() == Input::Archive ||
60 (*input)->type() == Input::External) {
61 ++input;
65 if (Input::Object == (*input)->type()) {
66 m_Module.getObjectList().push_back(*input);
70 if (Input::DynObj == (*input)->type()) {
71 m_Module.getLibraryList().push_back(*input);
[all...]
/frameworks/compile/mclinker/lib/MC/
H A DCommandAction.cpp233 Input* input = *pBuilder.getCurrentNode(); local
234 pBuilder.setContext(*input, false);
237 pBuilder.setMemory(*input, &m_Assignment[0], m_Assignment.size());
/frameworks/compile/mclinker/unittests/
H A DLinkerTest.cpp286 // needs the file name of the input files, and the inputs' life is
360 Input* input = builder.CreateInput("gotplt.o", gotplt_o, Input::Object); local
364 builder.CreateELFHeader(*input,
371 LDSection* text = builder.CreateELFHeader(*input,
386 LDSection* rel_text = builder.CreateELFHeader(*input,
394 LDSection* data = builder.CreateELFHeader(*input,
401 LDSection* bss = builder.CreateELFHeader(*input,
409 LDSection* attr = builder.CreateELFHeader(*input,
430 builder.AddSymbol(*input,
434 builder.AddSymbol(*input,
[all...]
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/
H A DWifiConfigurationHelper.java166 * @throws IllegalArgumentException if the input string was not valid JSON or if any mandatory
358 public static boolean isHex(String input, int length) { argument
359 if (input == null || length < 0) {
362 return input.matches(String.format("[0-9A-Fa-f]{%d}", length));
/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/base/media/mca/filterfw/jni/
H A Djni_native_program.cpp141 // Get the input buffers
148 jobject input = env->GetObjectArrayElement(inputs, i); local
149 if (input) {
150 NativeFrame* native_frame = ConvertFromJava<NativeFrame>(env, input);
152 ALOGE("NativeProgram: Could not grab NativeFrame input %d!", i);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DBluetoothUtil.java187 private static Profile newProfile(final BluetoothInputDevice input) { argument
191 return input.connect(device);
196 return input.disconnect(device);
/frameworks/base/services/core/java/com/android/server/input/
H A DInputWindowHandle.java17 package com.android.server.input;
23 * Functions as a handle for a window that can receive input.
24 * Enables the native input dispatcher to refer indirectly to the window manager's window state.
28 // Pointer to the native input window handle.
33 // The input application handle.
39 // The input channel associated with the window.
87 // Window input features.
90 // Display this input is on.

Completed in 624 milliseconds

123456