HomeSort by relevance Sort by last modified time
    Searched full:outname (Results 1 - 25 of 63) sorted by null

1 2 3

  /external/llvm/lib/Target/
Mangler.cpp 41 static void MangleLetter(SmallVectorImpl<char> &OutName, unsigned char C) {
42 OutName.push_back('_');
43 OutName.push_back(HexDigit(C >> 4));
44 OutName.push_back(HexDigit(C & 15));
45 OutName.push_back('_');
70 static void appendMangledName(SmallVectorImpl<char> &OutName, StringRef Str,
75 MangleLetter(OutName, Str[0]);
83 MangleLetter(OutName, Str[i]);
85 OutName.push_back(Str[i]);
93 static void appendMangledQuotedName(SmallVectorImpl<char> &OutName,
    [all...]
  /external/javassist/src/main/javassist/
CtNewNestedClass.java 52 String outName = ica.outerClass(i);
53 if (outName != null && outer)
55 CtClass parent = clazz.getClassPool().get(outName);
60 + outName);
  /build/tools/atree/
files.h 32 string outName;
files.cpp 116 const string& sourceName, const string& outName)
123 rec.outName = outName;
366 rec->outPath = path_append(base, rec->outName);
407 r.outName = path_append(rec.outName, entry);
  /external/llvm/include/llvm/Target/
Mangler.h 58 /// getNameWithPrefix - Fill OutName with the name of the appropriate prefix
61 void getNameWithPrefix(SmallVectorImpl<char> &OutName, const GlobalValue *GV,
64 /// getNameWithPrefix - Fill OutName with the name of the appropriate prefix
67 void getNameWithPrefix(SmallVectorImpl<char> &OutName, const Twine &GVName,
  /cts/tools/vm-tests-tf/src/util/build/
DexBuildStep.java 41 args.outName = outputFile.fileName.getAbsolutePath();
59 + args.outName);
  /external/zlib/src/examples/
gun.c 540 inname is NULL or an empty string, read from stdin. If outname is NULL or
543 outname.
548 local int gunzip(z_stream *strm, char *inname, char *outname, int test)
567 else if (outname == NULL || *outname == 0) {
568 outname = "-";
572 outfile = open(outname, O_CREAT | O_TRUNC | O_WRONLY, 0666);
575 fprintf(stderr, "gun cannot create %s\n", outname);
591 copymeta(inname, outname); /* copy attributes */
599 if (outfile > 2) unlink(outname);
634 char *outname; local
    [all...]
  /external/valgrind/main/coregrind/
link_tool_exe_darwin.in 113 my $outname = "";
117 if ($str eq "-o" && $outname eq "") {
118 $outname = $ARGV[$n + 1];
123 if ($outname eq "");
154 $cmd = "$cmd -o $outname";
186 $cmd = "$cmd $stack_addr_str $stack_size_str $outname";
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
libiberty.h 403 OUTNAME, or, if OUTNAME is NULL, to standard output of caller. Do
412 /* OUTNAME is a suffix. */
454 OUTNAME Sets the output file name as follows:
456 PEX_SUFFIX set (OUTNAME may not be NULL):
459 and OUTNAME.
462 OUTNAME.
464 OUTNAME not NULL:
465 Output file name is OUTNAME.
466 OUTNAME NULL, TEMPBASE not NULL
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
libiberty.h 403 OUTNAME, or, if OUTNAME is NULL, to standard output of caller. Do
412 /* OUTNAME is a suffix. */
454 OUTNAME Sets the output file name as follows:
456 PEX_SUFFIX set (OUTNAME may not be NULL):
459 and OUTNAME.
462 OUTNAME.
464 OUTNAME not NULL:
465 Output file name is OUTNAME.
466 OUTNAME NULL, TEMPBASE not NULL
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
libiberty.h 403 OUTNAME, or, if OUTNAME is NULL, to standard output of caller. Do
412 /* OUTNAME is a suffix. */
454 OUTNAME Sets the output file name as follows:
456 PEX_SUFFIX set (OUTNAME may not be NULL):
459 and OUTNAME.
462 OUTNAME.
464 OUTNAME not NULL:
465 Output file name is OUTNAME.
466 OUTNAME NULL, TEMPBASE not NULL
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
libiberty.h 403 OUTNAME, or, if OUTNAME is NULL, to standard output of caller. Do
412 /* OUTNAME is a suffix. */
454 OUTNAME Sets the output file name as follows:
456 PEX_SUFFIX set (OUTNAME may not be NULL):
459 and OUTNAME.
462 OUTNAME.
464 OUTNAME not NULL:
465 Output file name is OUTNAME.
466 OUTNAME NULL, TEMPBASE not NULL
    [all...]
  /external/bison/src/
scan-skel.l 62 char *outname = NULL;
79 "@ofile@" QPUTS (outname);
95 if (outname)
97 free (outname);
127 &outname, &out_lineno);
  /external/clang/lib/CodeGen/
CodeGenTBAA.cpp 162 SmallString<256> OutName;
163 llvm::raw_svector_ostream Out(OutName);
166 return MetadataCache[Ty] = createTBAAScalarType(OutName, getChar());
279 SmallString<256> OutName;
280 llvm::raw_svector_ostream Out(OutName);
285 MDHelper.createTBAAStructTypeNode(OutName, Fields);
CGVTT.cpp 102 SmallString<256> OutName;
103 llvm::raw_svector_ostream Out(OutName);
106 StringRef Name = OutName.str();
  /external/chromium_org/v8/tools/
android-run.py 50 (fd_out, outname) = tempfile.mkstemp()
61 output = file(outname).read()
63 os.unlink(outname)
nacl-run.py 45 (fd_out, outname) = tempfile.mkstemp()
56 output = file(outname).read()
58 os.unlink(outname)
  /external/chromium_org/v8/tools/testrunner/local/
commands.py 135 (fd_out, outname) = tempfile.mkstemp()
149 out = file(outname).read()
151 CheckedUnlink(outname)
  /external/bzip2/
bzip2.c 206 Char outName[FILE_NAME_LEN];
680 inName, outName
706 progName, outName );
709 retVal = remove ( outName );
724 progName, outName );
1148 copyFileName ( outName, (Char*)"(stdout)" );
1152 copyFileName ( outName, name );
1153 strcat ( outName, ".bz2" );
1157 copyFileName ( outName, (Char*)"(stdout)" );
    [all...]
  /external/webrtc/src/modules/audio_coding/codecs/isac/fix/test/
test_iSACfixfloat.c 93 char inname[50], outname[50], bottleneck_file[50], bitfilename[60], bitending[10]="_bits.pcm"; local
271 sscanf(argv[argc-1], "%s", outname);
277 if ((outp = fopen(outname,"wb")) == NULL) {
278 printf(" iSAC: Cannot write file %s.\n", outname);
281 printf("\nInput:%s\nOutput:%s\n", inname, outname);
284 while (outname[i]!='\0') {
285 bitfilename[i]=outname[i];
  /bootable/recovery/applypatch/
applypatch.c 815 char* outname; local
921 outname = NULL;
937 outname = (char*)malloc(strlen(target_filename) + 10);
938 strcpy(outname, target_filename);
939 strcat(outname, ".patch");
941 output = open(outname, O_WRONLY | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR);
944 outname, strerror(errno));
    [all...]
  /dalvik/dx/src/com/android/dx/command/dexer/
Main.java 253 if (args.outName == null) {
258 incrementalOutFile = new File(args.outName);
296 if (!createJar(args.outName)) {
299 } else if (outArray != null && args.outName != null) {
300 OutputStream out = openOutput(args.outName);
340 if (!createJar(args.outName)) {
343 } else if (args.outName != null) {
344 File outDir = new File(args.outName);
    [all...]
  /external/libpng/
pngtest.c 96 int test_one_file PNGARG((PNG_CONST char *inname, PNG_CONST char *outname));
687 test_one_file(PNG_CONST char *inname, PNG_CONST char *outname)
733 MultiByteToWideChar(CP_ACP, 0, outname, -1, path, MAX_PATH);
737 if ((fpout = fopen(outname, "wb")) == NULL)
740 fprintf(STDERR, "Could not open output file %s\n", outname);
802 fprintf(STDERR, "%s -> %s: libpng read error\n", inname, outname);
826 fprintf(STDERR, "%s -> %s: libpng write error\n", inname, outname);
1447 static PNG_CONST char *outname = "pngout\/png"; variable
1450 static PNG_CONST char *outname = "pngout.png"; variable
    [all...]
  /frameworks/native/opengl/tools/glgen/src/
JniCodeEmitter.java 750 String outName = "android_" + jfunc.getName();
753 (outName.endsWith("Pointer") || outName.endsWith("PointerOES") ||
754 outName.endsWith("glDrawElements") ||
755 outName.endsWith("glDrawRangeElements") ||
756 outName.endsWith("glTexImage2D") ||
757 outName.endsWith("glTexSubImage2D") ||
758 outName.endsWith("glCompressedTexImage2D") ||
759 outName.endsWith("glCompressedTexSubImage2D") ||
760 outName.endsWith("glTexImage3D") |
    [all...]
  /external/icu4c/test/perf/howExpensiveIs/
howExpensiveIs.cpp 34 const char *outName = NULL;
70 outName = optarg;
89 outName = argv[1];
95 if(listmode && outName != NULL ) {
97 outName=NULL;
100 if(outName != NULL) {
103 out=fopen(outName,"w");
105 fprintf(stderr,"Err: can't open %s for writing.\n", outName);
108 fprintf(stderr, "# writing results to %s\n", outName);

Completed in 676 milliseconds

1 2 3