Searched defs:input (Results 51 - 75 of 182) sorted by relevance

12345678

/frameworks/compile/mclinker/lib/LD/
H A DGroupReader.cpp50 Module::input_iterator input = --pRoot; local
53 while (input != pEnd) {
56 if ((*input)->type() == Input::Script ||
57 (*input)->type() == Input::Archive ||
58 (*input)->type() == Input::External) {
59 ++input;
63 if (Input::Object == (*input)->type()) {
64 m_Module.getObjectList().push_back(*input);
68 if (Input::DynObj == (*input)->type()) {
69 m_Module.getLibraryList().push_back(*input);
[all...]
/frameworks/compile/mclinker/lib/Script/
H A DGroupCmd.cpp54 InputToken* input = llvm::cast<InputToken>(*it); local
55 cur = input->asNeeded();
61 if (input->type() == InputToken::NameSpec)
63 mcld::outs() << input->name() << " ";
154 Input* input = *m_Builder.getCurrentNode(); local
155 assert(input != NULL);
156 if (!m_Builder.setMemory(*input, FileHandle::OpenMode(FileHandle::ReadOnly),
158 error(diag::err_cannot_open_input) << input->name() << input->path();
160 m_Builder.setContext(*input);
[all...]
H A DInputCmd.cpp65 InputToken* input = llvm::cast<InputToken>(*it); local
66 cur = input->asNeeded();
72 if (input->type() == InputToken::NameSpec)
74 mcld::outs() << input->name() << " ";
165 InputTree::iterator input = m_Builder.getCurrentNode(); local
167 input_begin = input;
170 assert(*input != NULL);
171 if (!m_Builder.setMemory(**input,
174 error(diag::err_cannot_open_input) << (*input)->name()
175 << (*input)
[all...]
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMException.cpp37 "multiple maps for an input");
41 // Add mapping to the input-to-exdata map.
56 Input* input = *it; local
57 exData->addInputMap(input, ARMInputExMap::create(*input));
65 // Scan the input and collect all related sections.
94 // Remove this tuple from the input exception map.
/frameworks/compile/mclinker/unittests/
H A DLinkerTest.cpp281 // needs the file name of the input files, and the inputs' life is
355 Input* input = builder.CreateInput("gotplt.o", gotplt_o, Input::Object); local
361 *input, "", LDFileFormat::Null, llvm::ELF::SHT_NULL, 0x0);
366 builder.CreateELFHeader(*input,
386 builder.CreateELFHeader(*input, ".rel.text", llvm::ELF::SHT_REL, 0x0, 4);
393 builder.CreateELFHeader(*input,
402 builder.CreateELFHeader(*input,
412 *input, ".ARM.attributes", llvm::ELF::SHT_ARM_ATTRIBUTES, 0x0, 1);
431 builder.AddSymbol(*input,
438 builder.AddSymbol(*input,
[all...]
/frameworks/data-binding/compiler/src/test/java/android/databinding/tool/
H A DExpressionVisitorTest.java53 private <T extends Expr> T parse(String input, Class<T> klass) { argument
54 final Expr parsed = mParser.parse(input, null);
/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/rs/java/tests/RsCameraDemo/src/com/android/example/rscamera/
H A DViewfinderProcessor.java86 public ProcessingTask(Allocation input) { argument
87 mInputAllocation = input;
111 // Get to newest input
/frameworks/base/core/java/android/hardware/input/
H A DKeyboardLayout.java17 package android.hardware.input;
/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/keystore/java/android/security/keystore/
H A DAndroidKeyStoreECDSASignatureSpi.java54 * Streamer which buffers all input, then truncates it to field size, and then sends it into
73 public byte[] update(byte[] input, int inputOffset, int inputLength) argument
76 mInputBuffer.write(input, inputOffset, inputLength);
83 public byte[] doFinal(byte[] input, int inputOffset, int inputLength, byte[] signature, argument
87 mInputBuffer.write(input, inputOffset, inputLength);
92 // Truncate input at field size (bytes)
H A DAndroidKeyStoreHmacSpi.java203 protected void engineUpdate(byte input) { argument
204 engineUpdate(new byte[] {input}, 0, 1);
208 protected void engineUpdate(byte[] input, int offset, int len) { argument
217 output = mChunkedStreamer.update(input, offset, len);
H A DKeyStoreCryptoOperationChunkedStreamer.java32 * Helper for streaming a crypto operation's input and output via {@link KeyStore} service's
59 OperationResult update(byte[] input); argument
91 public byte[] update(byte[] input, int inputOffset, int inputLength) throws KeyStoreException { argument
93 // No input provided
103 // Too much input for one chunk -- extract one max-sized chunk and feed it into the
107 input, inputOffset, inputBytesInChunk);
109 // All of available input fits into one chunk.
111 && (inputLength == input.length)) {
112 // Nothing buffered and all of input array needs to be fed into the update
114 chunk = input;
208 doFinal(byte[] input, int inputOffset, int inputLength, byte[] signature, byte[] additionalEntropy) argument
332 update(byte[] input) argument
[all...]
/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/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.
/frameworks/base/telecomm/java/android/telecom/
H A DLog.java156 * return a SHA-1 hash of the input string.
192 private static String secureHash(byte[] input) { argument
196 sMessageDigest.update(input);
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/decoder/
H A DCpuVideoTrackDecoder.java131 * Copy the input data to the output data applying the specified rotation.
133 * @param input The input image data
137 private void copyRotate(ByteBuffer input, ByteBuffer output, int rotation) { argument
165 PixelUtils.copyPixels(input, output, mWidth, mHeight, offset, pixStride, rowStride);
237 ByteBuffer input, ByteBuffer output, int colorFormat, int width, int height) {
240 ColorSpace.convertArgb8888ToRgba8888(input, output, width, height);
243 ColorSpace.convertYuv420pToRgba8888(input, output, width, height);
236 convertImage( ByteBuffer input, ByteBuffer output, int colorFormat, int width, int height) argument
/frameworks/base/tools/aapt2/
H A DResourceParser_test.cpp34 std::stringstream input(kXmlPreamble);
35 input << "<attr name=\"foo\"/>" << std::endl;
38 xml::XmlPullParser xmlParser(input);
55 std::stringstream input(kXmlPreamble);
56 input << "<resources>\n" << str << "\n</resources>" << std::endl;
60 xml::XmlPullParser xmlParser(input);
69 std::string input = "<string name=\"foo\"> \" hey there \" </string>"; local
70 ASSERT_TRUE(testParse(input));
78 std::string input = "<string name=\"foo\">\\?123</string>"; local
79 ASSERT_TRUE(testParse(input));
87 std::string input = "<string name=\\"foo\\">%d %s</string>"; local
95 std::string input = "<string name=\\"foo\\" \\n" local
106 std::string input = "<integer name=\\"foo\\">@null</integer>"; local
120 std::string input = "<integer name=\\"foo\\">@empty</integer>"; local
130 std::string input = "<attr name=\\"foo\\" format=\\"string\\"/>\\n" local
147 std::string input = R"EOF( local
164 std::string input = "<attr name=\\"foo\\" min=\\"10\\" max=\\"23\\" format=\\"integer\\"/>"; local
175 std::string input = "<attr name=\\"foo\\" min=\\"10\\" max=\\"23\\" format=\\"string\\"/>"; local
180 std::string input = "<declare-styleable name=\\"Styleable\\">\\n" local
192 std::string input = "<declare-styleable name=\\"Theme\\">" local
206 std::string input = "<attr name=\\"foo\\">\\n" local
232 std::string input = "<attr name=\\"foo\\">\\n" local
263 std::string input = "<attr name=\\"foo\\">\\n" local
272 std::string input = "<style name=\\"foo\\" parent=\\"@style/fu\\">\\n" local
297 std::string input = "<style name=\\"foo\\" parent=\\"com.app:Theme\\"/>"; local
308 std::string input = "<style xmlns:app=\\"http://schemas.android.com/apk/res/android\\"\\n" local
320 std::string input = local
333 std::string input = "<style name=\\"foo.bar\\"/>"; local
345 std::string input = "<style name=\\"foo.bar\\" parent=\\"\\"/>"; local
355 std::string input = R"EOF(<style name="foo" parent="*android:style/bar" />)EOF"; local
365 std::string input = "<string name=\\"foo\\">@+id/bar</string>"; local
373 std::string input = "<declare-styleable name=\\"foo\\">\\n" local
411 std::string input = "<declare-styleable name=\\"foo\\" xmlns:privAndroid=\\"http://schemas.android.com/apk/prv/res/android\\">\\n" local
430 std::string input = "<array name=\\"foo\\">\\n" local
447 std::string input = "<string-array name=\\"foo\\">\\n" local
455 std::string input = "<plurals name=\\"foo\\">\\n" local
463 std::string input = "<!--This is a comment-->\\n" local
473 std::string input = "<!--One-->\\n" local
485 std::string input = "<!--One-->\\n" local
501 std::string input = R"EOF( local
531 std::string input = "<public type=\\"id\\" name=\\"foo\\"/>"; local
539 std::string input = R"EOF( local
570 std::string input = R"EOF( local
602 std::string input = R"EOF(<item type="layout" name="foo">@layout/bar</item>)EOF"; local
610 std::string input = R"EOF(<add-resource name="bar" type="string" />)EOF"; local
622 std::string input = R"EOF(<item name="foo" type="integer" format="float">0.3</item>)EOF"; local
[all...]
/frameworks/compile/mclinker/include/mcld/Script/
H A DScriptFile.h68 const Input& input() const { return m_Input; } function in class:mcld::ScriptFile
69 Input& input() { return m_Input; } function in class:mcld::ScriptFile
/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/compile/mclinker/lib/MC/
H A DCommandAction.cpp224 Input* input = *pBuilder.getCurrentNode(); local
225 pBuilder.setContext(*input, false);
229 pBuilder.setMemory(*input, base, m_Assignment.size());
/frameworks/data-binding/compilerCommon/src/main/xml-gen/android/databinding/parser/
H A DXMLLexer.java34 public XMLLexer(CharStream input) { argument
35 super(input);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DCatResponseMessage.java43 public void setInput(String input) { argument
44 mUsersInput = input;
/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...]

Completed in 3933 milliseconds

12345678