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

12345678

/frameworks/compile/mclinker/include/mcld/LD/
H A DGroupReader.h39 /// readGroup - handle the input sub-tree wich its root is pRoot
47 /// ArchiveListEntry - record the Archive and the corresponding input iterator
51 : archive(pArchive), input(pIterator) {}
53 Module::input_iterator input; member in struct:mcld::GroupReader::ArchiveListEntry
/frameworks/compile/mclinker/lib/Script/
H A DScriptReader.cpp37 bool ScriptReader::isMyFormat(Input& input, bool& doContinue) const { argument
45 Input& input = pScriptFile.input(); local
46 size_t size = input.memArea()->size();
47 llvm::StringRef region = input.memArea()->request(input.fileOffset(), size);
/frameworks/compile/mclinker/unittests/
H A DInputTreeTest.cpp97 Input* input = m_pAlloc->produce("FileSpec", "path1"); local
98 m_pTestee->insert<InputTree::Inclusive>(node, *input);
103 Input* input = m_pAlloc->produce("FileSpec", "path1"); local
104 m_pTestee->insert<InputTree::Inclusive>(node, *input);
126 Input* input = m_pAlloc->produce("FileSpec", "path1"); local
127 m_pTestee->insert(node, InputTree::Afterward, *input);
140 Input* input = m_pAlloc->produce("111", "/"); local
141 m_pTestee->insert<InputTree::Inclusive>(node, *input);
144 input = m_pAlloc->produce("10", "/");
145 m_pTestee->insert<InputTree::Positional>(node, *input);
[all...]
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/
H A DExpressionParser.java52 public Expr parse(String input, @Nullable Location locationInFile) { argument
53 ANTLRInputStream inputStream = new ANTLRInputStream(input);
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/util/
H A DScanDetailUtilTest.java45 ScanResult input = new ScanResult(WifiSsid.createFromAsciiEncoded(ssid), ssid,
48 input.informationElements = new InformationElement[] {
52 ScanDetail output = ScanDetailUtil.toScanDetail(input);
54 validateScanDetail(input, output);
61 ScanResult input = new ScanResult(WifiSsid.createFromAsciiEncoded(ssid), ssid,
64 input.informationElements = new InformationElement[] {
67 input.anqpLines = Arrays.asList("LINE 1", "line 2", "Line 3");
69 ScanDetail output = ScanDetailUtil.toScanDetail(input);
71 validateScanDetail(input, output);
77 ScanResult input
95 validateScanDetail(ScanResult input, ScanDetail output) argument
[all...]
/frameworks/support/v4/java/android/support/v4/view/animation/
H A DLookupTableInterpolator.java23 * given input.
36 public float getInterpolation(float input) { argument
37 if (input >= 1.0f) {
40 if (input <= 0f) {
46 int position = Math.min((int) (input * (mValues.length - 1)), mValues.length - 2);
50 float diff = input - quantized;
/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.
H A DInputDeviceIdentifier.java17 package android.hardware.input;
26 * Wrapper for passing identifying information for input devices.
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.
44 // ----- input tree operations ----- //
50 // ----- root of input tree ----- //
59 // ----- input operations ----- //
109 Input* input = createInput(pName, pPath, pType); local
110 m_pCurrentTree->insert(m_Root, *m_pMove, *input);
124 Input* input = createInput(pName, pPath, pType); local
125 m_pCurrentTree->insert(m_Root, *m_pMove, *input);
/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/av/services/audiopolicy/utilities/convert/
H A Dconvert.h48 * @param[in] input The source to convert from.
54 static inline bool convertTo(const srcType &input, dstType &result);
214 static inline bool convertTo(const srcType &input, dstType &result) argument
216 return details::Converter<srcType, dstType>::run(input, result);
/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/java/org/apache/http/conn/ssl/
H A DAbstractVerifier.java284 private static boolean isIPv4Address(final String input) { argument
285 return IPV4_PATTERN.matcher(input).matches();
/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.cpp31 float AccelerateDecelerateInterpolator::interpolate(float input) { argument
32 return (float)(cosf((input + 1) * M_PI) / 2.0f) + 0.5f;
35 float AccelerateInterpolator::interpolate(float input) { argument
37 return input * input;
39 return pow(input, mDoubleFactor);
72 float CycleInterpolator::interpolate(float input) { argument
73 return sinf(2 * mCycles * M_PI * input);
76 float DecelerateInterpolator::interpolate(float input) { argument
79 result = 1.0f - (1.0f - input) * (1.
99 interpolate(float 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/base/packages/Osu/src/com/android/hotspot2/utils/
H A DHTTPResponse.java32 byte[] input = new byte[RX_BUFFER];
38 int amount = in.read(input, offset, input.length - offset);
40 input.length, offset, input.length - offset, amount));
45 // + new String(input, 0, offset + amount, StandardCharsets.ISO_8859_1));
49 bodyPattern = (bodyPattern << 8) | (input[n] & 0xff);
52 statusCode = parseHeader(input, body, mHeaders);
54 if (expected > input.length) {
55 input
70 parseHeader(byte[] input, int body, Map<String, String> headers) argument
[all...]
/frameworks/base/tools/layoutlib/bridge/src/com/android/internal/view/animation/
H A DNativeInterpolatorFactoryHelper_Delegate.java106 public float getInterpolation(float input) { argument
107 float lutpos = input * mSize;

Completed in 1807 milliseconds

12345678