/external/protobuf/java/src/main/java/com/google/protobuf/ |
ByteString.java | 311 // Output stream 314 * Creates a new {@link Output} with the given initial capacity. 316 public static Output newOutput(final int initialCapacity) { 317 return new Output(new ByteArrayOutputStream(initialCapacity)); 321 * Creates a new {@link Output}. 323 public static Output newOutput() { 331 public static final class Output extends FilterOutputStream { 335 * Constructs a new output with the given initial capacity. 337 private Output(final ByteArrayOutputStream bout) { 343 * Creates a {@code ByteString} instance from this {@code Output} 370 private final CodedOutputStream output; field in class:ByteString.CodedBuilder [all...] |
/external/clang/lib/Driver/ |
ArgList.cpp | 146 void ArgList::AddLastArg(ArgStringList &Output, OptSpecifier Id) const { 149 A->render(*this, Output); 153 void ArgList::AddAllArgs(ArgStringList &Output, OptSpecifier Id0, 158 (*it)->render(*this, Output); 162 void ArgList::AddAllArgValues(ArgStringList &Output, OptSpecifier Id0, 168 Output.push_back((*it)->getValue(*this, i)); 172 void ArgList::AddAllArgsTranslated(ArgStringList &Output, OptSpecifier Id0, 180 Output.push_back(MakeArgString(llvm::StringRef(Translation) + 183 Output.push_back(Translation); 184 Output.push_back((*it)->getValue(*this, 0)) [all...] |
Tools.cpp | 188 const InputInfo &Output, 201 // Determine the output location. 203 if (Output.getType() == types::TY_Dependencies) { 204 DepFile = Output.getFilename(); 223 if (OutputOpt && Output.getType() != types::TY_Dependencies) { 228 // FIXME: This should use the computed output file location. [all...] |
/dalvik/tools/dexdeps/src/com/android/dexdeps/ |
Main.java | 64 Output.generateFirstHeader(fileName, mOutputFormat); 66 Output.generateHeader(fileName, mOutputFormat); 69 Output.generate(dexData, mOutputFormat, mJustClasses); 70 Output.generateFooter(mOutputFormat); 159 * Copy all data from input stream to output file.
|
/frameworks/base/media/libdrm/mobile1/ |
Android.mk | 8 # Output: libdrm1.so 58 # Output: libdrm1_jni.so
|
/development/tools/mkstubs/src/com/android/mkstubs/ |
SourceGenerator.java | 21 import com.android.mkstubs.sourcer.Output; 95 ClassVisitor javaWriter = new ClassSourcer(new Output(fw));
|
/development/tools/mkstubs/src/com/android/mkstubs/sourcer/ |
AccessSourcer.java | 30 private final Output mOutput; 82 public AccessSourcer(Output output) { 83 mOutput = output;
|
ClassSourcer.java | 32 private final Output mOutput; 36 public ClassSourcer(Output output) { 37 mOutput = output;
|
MethodSourcer.java | 33 private final Output mOutput; 43 public MethodSourcer(Output output, String className, int access, String name, 45 mOutput = output; 78 // output return type (constructor have no return type) 89 // output name 92 // output arguments. The signature overrides desc, if present 114 // output throwable exceptions
|
/external/clang/tools/scan-build/ |
c++-analyzer | 150 my ($Clang, $OriginalArgs, $AnalyzeArgs, $Lang, $Output, $Verbose, $HtmlDir, 159 exit 0 if (!defined ($Output)); 163 $Output =~ s/[.]gch$//; 164 push @CmdArgs, $Output; 215 # We MUST print to stderr. Some clients use the stdout output of 226 # We save the output file in the 'crashes' directory if clang encounters 368 'i' => 'c-cpp-output', 370 'mi' => 'objective-c-cpp-output' 400 my $Output; 419 # Get the output format [all...] |
ccc-analyzer | 150 my ($Clang, $OriginalArgs, $AnalyzeArgs, $Lang, $Output, $Verbose, $HtmlDir, 159 exit 0 if (!defined ($Output)); 163 $Output =~ s/[.]gch$//; 164 push @CmdArgs, $Output; 215 # We MUST print to stderr. Some clients use the stdout output of 226 # We save the output file in the 'crashes' directory if clang encounters 368 'i' => 'c-cpp-output', 370 'mi' => 'objective-c-cpp-output' 400 my $Output; 419 # Get the output format [all...] |
/development/tools/mkstubs/tests/com/android/mkstubs/sourcer/ |
AccessSourcerTest.java | 37 mSourcer = new AccessSourcer(new Output(mWriter));
|
/external/chromium/sdch/open-vcdiff/src/ |
encodetable.h | 36 // {{Add|Copy|Run}* [AddChecksum] Output}* 38 // When Output has been called in this sequence, a complete target window 41 // case Output will do nothing.) The output will not be available for use 42 // until after each call to Output(). 102 // Finishes encoding and appends the encoded delta window to the output 103 // string. The output string is not null-terminated and may contain embedded 105 virtual void Output(OutputStringInterface* out); 152 // Appends the size value to the output string as a variable-length integer. 168 // instructions. Depending on whether interleaved output is use [all...] |
vcdiffengine.cc | 137 // the results into the output string "diff". 148 coder->Output(diff);
|
/external/clang/include/clang/Driver/ |
ArgList.h | 223 void AddLastArg(ArgStringList &Output, OptSpecifier Id0) const; 226 void AddAllArgs(ArgStringList &Output, OptSpecifier Id0, 231 void AddAllArgValues(ArgStringList &Output, OptSpecifier Id0, 240 void AddAllArgsTranslated(ArgStringList &Output, OptSpecifier Id0,
|
/external/llvm/lib/CodeGen/ |
UnreachableBlockElim.cpp | 192 unsigned Output = phi->getOperand(0).getReg(); 199 if (Input != Output) { 201 MRI.constrainRegClass(Input, MRI.getRegClass(Output)); 202 MRI.replaceRegWith(Output, Input);
|
/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/llvm/include/llvm/CodeGen/ |
ScheduleDAG.h | 50 Output, ///< A register output-dependence (aka WAW). 61 /// Reg - For Data, Anti, and Output dependencies, the associated 101 case Output: 103 "SDep::Anti and SDep::Output must use a non-zero Reg!"); 124 case Output: 200 /// only valid on Data, Anti, and Output edges. On Data edges, this 203 assert((getKind() == Data || getKind() == Anti || getKind() == Output) && 209 /// only valid on Data, Anti, and Output edges. On Anti and Output [all...] |
/external/qemu/distrib/sdl-1.2.12/src/thread/amigaos/ |
SDL_systhread.c | 115 thread->handle=(struct Task *)CreateNewProcTags(NP_Output,Output(),
|
/external/chromium/googleurl/src/ |
url_canon_internal.h | 93 // Appends the given string to the output, escaping characters that do not 97 CanonOutput* output); 100 CanonOutput* output); 144 // Write a single character, escaped, to the output. This always escapes: it 150 CanonOutputT<OUTCHAR>* output) { 151 output->push_back('%'); 152 output->push_back(kHexCharLookup[ch >> 4]); 153 output->push_back(kHexCharLookup[ch & 0xf]); 175 // character that should be appended, with the given output method. Wrappers 180 template<class Output, void Appender(unsigned char, Output*) 183 Appender(static_cast<unsigned char>(char_value), output); local [all...] |
/external/ppp/pppd/plugins/radius/etc/ |
dictionary | 78 ATTRIBUTE Acct-Output-Octets 43 integer 83 ATTRIBUTE Acct-Output-Packets 48 integer 249 VALUE Octets-Direction Output 2
|
/external/clang/include/clang/Basic/ |
TargetInfo.h | 325 CI_ReadWrite = 0x04, // "+r" output constraint (read and write). 326 CI_HasMatchingInput = 0x08 // This output operand has a matching input. 344 /// hasMatchingInput - Return true if this output operand has a matching 349 /// constraint that ties it to an output operand. If this returns true, 350 /// then getTiedOperand will indicate which output operand this is tied to. 363 /// the specified output operand. Copy over the various constraint 364 /// information from the output. 365 void setTiedOperand(unsigned N, ConstraintInfo &Output) { 366 Output.setHasMatchingInput(); 367 Flags = Output.Flags [all...] |
/external/clang/lib/AST/ |
ASTDiagnostic.cpp | 145 /// 4) Two different types within the same diagnostic have the same output 229 llvm::SmallVectorImpl<char> &Output, 317 Output.push_back('\''); 319 Output.append(S.begin(), S.end()); 322 Output.push_back('\'');
|
/external/pcre/ |
RunTest.bat | 8 @rem Output is written to a newly created subfolder named "testdata".
|
/external/llvm/tools/bugpoint/ |
ExecutionDriver.cpp | 81 cl::desc("Append the exit code to the output so it gets diff'd too"), 116 OutputPrefix("output-prefix", cl::init("bugpoint"), 333 /// executeProgram - This method runs "Program", capturing the output of the 370 if (OutputFile.empty()) OutputFile = OutputPrefix + "-execution-output"; 372 // Check to see if this is a valid output filename... 411 // Return the filename we captured the output to. 415 /// executeProgramSafely - Used to create reference output with the "safe" 416 /// backend, if reference output is not provided. 449 /// createReferenceFile - calls compileProgram and then records the output 471 outs() << "\nReference output is: " << ReferenceOutputFile << "\n\n" [all...] |