HomeSort by relevance Sort by last modified time
    Searched refs:output (Results 201 - 225 of 2172) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/proguard/src/proguard/
ClassPathEntry.java 30 * an input entry or an output entry. Optional filters can be specified for the
38 private boolean output; field in class:ClassPathEntry
52 this.output = isOutput;
86 return output;
90 public void setOutput(boolean output)
92 this.output = output;
  /external/smali/util/src/main/java/org/jf/util/
ConsoleUtil.java 57 String output = attemptCommand(new String[]{"sh", "-c", "stty size < /dev/tty"}); local
58 if (output == null) {
62 String[] vals = output.split(" ");
70 String output = attemptCommand(new String[]{"mode", "con"}); local
71 if (output == null) {
76 Matcher m = pattern.matcher(output);
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8AudioNodeCustom.cpp 48 unsigned output = 0; local
52 output = toInt32(args[1], ok);
64 bool success = audioNode->connect(destinationNode, output, input);
73 unsigned output = 0; local
76 output = toInt32(args[0], ok);
82 bool success = audioNode->disconnect(output);
  /external/webkit/Source/WebCore/webaudio/
AudioChannelMerger.cpp 60 AudioNodeOutput* output = this->output(0); local
61 ASSERT(output);
62 ASSERT_UNUSED(framesToProcess, framesToProcess == output->bus()->length());
72 // Set the correct number of channels on the output
73 output->setNumberOfChannels(numberOfOutputChannels);
75 // Now merge the channels back into one output.
85 AudioChannel* outputChannel = output->bus()->channel(outputChannelIndex);
  /external/webkit/Source/WebKit/chromium/src/win/
WebScreenInfoFactory.cpp 42 WebRect output; local
43 output.x = input.left;
44 output.y = input.top;
45 output.width = input.right - input.left;
46 output.height = input.bottom - input.top;
47 return output;
  /external/chromium/base/
string_util_unittest.cc 24 const wchar_t* output; member in struct:base::trim_case
42 const char* output; member in struct:base::trim_case_ascii
60 std::string* output) {
62 TruncateUTF8ToByteSize(input, byte_size, output);
63 return prev != output->length();
69 std::string output; local
72 EXPECT_FALSE(Truncated("", 0, &output));
73 EXPECT_EQ(output, "");
74 EXPECT_TRUE(Truncated("\xe1\x80\xbf", 0, &output));
75 EXPECT_EQ(output, "");
228 std::wstring output; \/\/ Allow contents to carry over to next testcase local
258 const wchar_t* output; member in struct:base::collapse_case
291 const char* output; member in struct:base::collapse_case_ascii
    [all...]
sha1_unittest.cc 22 std::string output = base::SHA1HashString(input); local
24 EXPECT_EQ(expected[i], output[i] & 0xFF);
38 std::string output = base::SHA1HashString(input); local
40 EXPECT_EQ(expected[i], output[i] & 0xFF);
53 std::string output = base::SHA1HashString(input); local
55 EXPECT_EQ(expected[i], output[i] & 0xFF);
61 unsigned char output[base::SHA1_LENGTH]; local
70 input.length(), output); local
72 EXPECT_EQ(expected[i], output[i]);
79 unsigned char output[base::SHA1_LENGTH] local
88 input.length(), output); local
96 unsigned char output[base::SHA1_LENGTH]; local
105 input.length(), output); local
    [all...]
utf_offset_string_conversions.cc 21 // determine the source, and the given output STL string will be replaced by
26 std::wstring* output,
43 chars_written = WriteUnicodeCharacter(code_point, output);
45 chars_written = WriteUnicodeCharacter(0xFFFD, output);
72 std::wstring* output,
77 PrepareForUTF16Or32Output(src, src_len, output);
78 bool ret = ConvertUnicode(src, src_len, output, &offsets);
86 std::wstring* output,
88 PrepareForUTF16Or32Output(src, src_len, output);
89 return ConvertUnicode(src, src_len, output, offsets_for_adjustment)
    [all...]
  /external/chromium/googleurl/src/
url_canon_relative.cc 177 // Copies all characters in the range [begin, end) of |spec| to the output,
186 CanonOutput* output) {
200 output->push_back(spec[i]);
203 // Copies a single component from the source to the output. This is used
209 CanonOutput* output,
217 output_component->begin = output->length();
220 output->push_back(source[i]);
221 output_component->len = output->length() - output_component->begin;
227 // to the output, if there is a drive letter and if that drive letter is not
242 CanonOutput* output) {
    [all...]
url_canon_icu.cc 108 CanonOutput* output) {
113 int begin_offset = output->length();
114 int dest_capacity = output->capacity() - begin_offset;
115 output->set_length(output->length());
119 char* dest = &output->data()[begin_offset];
123 output->set_length(begin_offset + required_capacity);
127 // Output didn't fit, expand
129 output->Resize(begin_offset + dest_capacity);
134 // The output must be ASCII, but is represented as wide characters
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/ast-output/
tree-rewrite.rb 12 output=AST;
24 output=AST;
36 output=AST;
48 output=AST;
59 output=AST;
71 output=AST;
82 output=AST;
94 output=AST;
105 output=AST;
117 output=AST
    [all...]
  /external/openssh/openbsd-compat/
base64.c 78 The encoding process represents 24-bit groups of input bits as output
86 output string.
122 output will be an integral multiple of 4 characters
125 here, the final unit of encoded output will be two
128 here, the final unit of encoded output will be three
138 u_char output[4]; local
147 output[0] = input[0] >> 2;
148 output[1] = ((input[0] & 0x03) << 4) + (input[1] >> 4);
149 output[2] = ((input[1] & 0x0f) << 2) + (input[2] >> 6);
150 output[3] = input[2] & 0x3f
    [all...]
  /external/oprofile/libutil++/tests/
string_manip_tests.cpp 22 template <typename Input, typename Output>
25 Output output; member in struct:input_output
29 template <typename Input, typename Output, typename Result>
31 Output const & output, Result const & result)
33 if (result != output) {
36 << "expect:\n\"" << output << "\"\n"
58 check_result("erase_to_last_of()", cur->input, cur->output,
85 check_result("split()", cur->input, cur->output.first, temp)
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/
JSilver.java 37 import com.google.clearsilver.jsilver.output.InstanceOutputBufferProvider;
38 import com.google.clearsilver.jsilver.output.OutputBufferProvider;
39 import com.google.clearsilver.jsilver.output.ThreadLocalOutputBufferProvider;
73 * // Render template to System.out. Writer output = ...;
74 * jSilver.render("say-hello", data, output);
104 // Object used to return Appendable output buffers when needed.
125 // Setup the output buffer provider either with a threadlocal pool
239 * Renders a given template and provided data, writing to an arbitrary output.
243 * @param output Where template should be rendered to. This can be a Writer, PrintStream,
249 public void render(String templateName, Data data, Appendable output,
252 render(templateLoader.load(templateName, resourceLoader, escapeMode), data, output, local
276 Appendable output = createAppendableBuffer(); local
321 Appendable output = createAppendableBuffer(); local
353 Appendable output = createAppendableBuffer(); local
    [all...]
  /external/chromium/chrome/browser/net/
quoted_printable_unittest.cc 171 std::string output; local
172 chrome::browser::net::QuotedPrintableEncode(kNormalText[i], &output);
174 EXPECT_EQ(expected, output);
181 std::string output; local
183 kEncodedText[i], &output));
186 "\n Actual=\n" << output << "\n Expected=\n" <<
190 EXPECT_TRUE(CompareEOLInsensitive(expected, output));
200 std::string output; local
202 kBadEncodedText[i], &output));
204 EXPECT_EQ(expected, output);
    [all...]
  /external/javassist/src/main/javassist/bytecode/annotation/
AnnotationsWriter.java 32 * output = new ByteArrayOutputStream();
33 * writer = new AnnotationsWriter(output, pool);
43 * byte[] attribute_info = output.toByteArray();
60 private OutputStream output; field in class:AnnotationsWriter
64 * Constructs with the given output stream.
66 * @param os the output stream.
70 output = os;
82 * Closes the output stream.
86 output.close();
96 output.write(num)
    [all...]
  /cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/result/
CtsXmlResultReporterTest.java 82 * A simple test to ensure expected output is generated for test run with no tests.
96 assertTrue(String.format("test output did not contain expected test result. Got %s",
98 assertTrue(String.format("test output did not contain expected test summary. Got %s",
100 assertTrue(String.format("test output did not contain expected TestResult end tag. Got %s",
105 * A simple test to ensure expected output is generated for test run with a single passed test.
116 String output = getOutput(); local
117 CLog.d("Actual output: %s", output);
118 System.out.println(output);
120 assertTrue(output.contains
144 String output = getOutput(); local
159 String output = mOutputStream.toString(); local
    [all...]
  /external/libxml2/include/libxml/
debugXML.h 29 xmlDebugDumpString (FILE *output,
32 xmlDebugDumpAttr (FILE *output,
36 xmlDebugDumpAttrList (FILE *output,
40 xmlDebugDumpOneNode (FILE *output,
44 xmlDebugDumpNode (FILE *output,
48 xmlDebugDumpNodeList (FILE *output,
52 xmlDebugDumpDocumentHead(FILE *output,
55 xmlDebugDumpDocument (FILE *output,
58 xmlDebugDumpDTD (FILE *output,
61 xmlDebugDumpEntities (FILE *output,
119 FILE *output; member in struct:_xmlShellCtxt
    [all...]
  /frameworks/av/include/media/
IAudioFlinger.h 66 audio_io_handle_t output,
85 virtual uint32_t sampleRate(audio_io_handle_t output) const = 0;
87 virtual int channelCount(audio_io_handle_t output) const = 0;
89 virtual audio_format_t format(audio_io_handle_t output) const = 0;
90 virtual size_t frameCount(audio_io_handle_t output) const = 0;
93 virtual uint32_t latency(audio_io_handle_t output) const = 0;
108 audio_io_handle_t output) = 0;
112 audio_io_handle_t output) const = 0;
127 // register a current process for audio output change notifications
143 virtual status_t closeOutput(audio_io_handle_t output) = 0
    [all...]
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/serializers/
SavableSerializer.java 51 ByteBuffer output; field in class:SavableSerializer.BufferOutputStream
53 public BufferOutputStream(ByteBuffer output){
54 this.output = output;
59 output.put( (byte) b );
64 output.put(b);
69 output.put(b, off, len);
  /external/webkit/Source/WebCore/inspector/
InspectorValues.h 72 virtual bool asBoolean(bool* output) const;
73 virtual bool asNumber(double* output) const;
74 virtual bool asNumber(long* output) const;
75 virtual bool asNumber(int* output) const;
76 virtual bool asNumber(unsigned long* output) const;
77 virtual bool asNumber(unsigned int* output) const;
78 virtual bool asString(String* output) const;
79 virtual bool asValue(RefPtr<InspectorValue>* output);
80 virtual bool asObject(RefPtr<InspectorObject>* output);
81 virtual bool asArray(RefPtr<InspectorArray>* output);
    [all...]
  /packages/apps/Email/src/org/apache/commons/io/
EndianUtils.java 280 * @param output target OutputStream
284 public static void writeSwappedShort(OutputStream output, short value)
287 output.write( (byte)( ( value >> 0 ) & 0xff ) );
288 output.write( (byte)( ( value >> 8 ) & 0xff ) );
325 * @param output target OutputStream
329 public static void writeSwappedInteger(OutputStream output, int value)
332 output.write( (byte)( ( value >> 0 ) & 0xff ) );
333 output.write( (byte)( ( value >> 8 ) & 0xff ) );
334 output.write( (byte)( ( value >> 16 ) & 0xff ) );
335 output.write( (byte)( ( value >> 24 ) & 0xff ) );
    [all...]
  /external/chromium/sdch/open-vcdiff/src/
vcdiff_main.cc 123 // Opens the output file (the target or delta file) for writing.
127 // Opens the output file (the target file) for comparison against the decoded
128 // output when using "vcdiff test".
142 // Writes the contents of output to output_file_. If successful, returns
144 bool WriteOutput(const string& output);
146 // Reads a number of bytes from output_file_ equal to the size of output,
147 // and compares to make sure they match the contents of output. If the bytes
151 bool CompareOutput(const string& output);
163 // The filenames used for input and output. Will be empty if stdin
168 // stdio-style file handles for the input and output files and the dictionary
400 string output; local
455 string output; local
519 string output; local
    [all...]
  /external/open-vcdiff/src/
vcdiff_main.cc 61 DEFINE_bool(json, false, "Output diff in the JSON format when encoding");
124 // Opens the output file (the target or delta file) for writing.
128 // Opens the output file (the target file) for comparison against the decoded
129 // output when using "vcdiff test".
143 // Writes the contents of output to output_file_. If successful, returns
145 bool WriteOutput(const string& output);
147 // Reads a number of bytes from output_file_ equal to the size of output,
148 // and compares to make sure they match the contents of output. If the bytes
152 bool CompareOutput(const string& output);
164 // The filenames used for input and output. Will be empty if stdi
404 string output; local
459 string output; local
523 string output; local
    [all...]
  /external/protobuf/java/src/test/java/com/google/protobuf/
CodedOutputStreamTest.java 83 CodedOutputStream output = CodedOutputStream.newInstance(rawOutput); local
84 output.writeRawVarint32((int) value);
85 output.flush();
95 CodedOutputStream output = CodedOutputStream.newInstance(rawOutput); local
96 output.writeRawVarint64(value);
97 output.flush();
110 CodedOutputStream output = local
112 output.writeRawVarint32((int) value);
113 output.flush();
119 CodedOutputStream output local
165 CodedOutputStream output = CodedOutputStream.newInstance(rawOutput); local
187 CodedOutputStream output = CodedOutputStream.newInstance(rawOutput); local
287 CodedOutputStream output = local
    [all...]

Completed in 1003 milliseconds

1 2 3 4 5 6 7 891011>>