HomeSort by relevance Sort by last modified time
    Searched refs:Spec (Results 51 - 75 of 103) sorted by null

1 23 4 5

  /external/llvm/utils/TableGen/
X86RecognizableInstr.h 1 //===- X86RecognizableInstr.h - Disassembler instruction spec ----*- C++ -*-===//
99 InstructionSpecifier* Spec;
  /external/webkit/PerformanceTests/SunSpider/
sunspider 30 use File::Spec;
168 my $shellArgs = $jsShellArgs . " -f $prefixFile -f resources/sunspider-standalone-driver.js 2> " . File::Spec->devnull();
231 dumpToFile(File::Spec->rel2abs($resultsFile), "$resultDirectory/baseline-filename.txt") if $setBaseline;
  /external/webkit/Tools/Scripts/
commit-log-editor 34 use File::Spec;
218 $changeLog = File::Spec->abs2rel(File::Spec->rel2abs($changeLog), $topLevel);
294 # slashes. This screws up functions like File::Spec->rel2abs, which seem to
resolve-ChangeLogs 39 use File::Spec;
166 return File::Spec->abs2rel($absolutePath, Cwd::getcwd());
248 my $file = File::Spec->catfile($_[0], "ChangeLog");
375 open(PATCH, "| patch -p1 $file > " . File::Spec->devnull()) or die $!;
424 my $file = findChangeLog(canonicalRelativePath(File::Spec->catfile($baseDir, $ARGV[$i])));
webkitdirs.pm 37 use File::Spec;
143 open PRODUCT, "defaults read com.apple.Xcode PBXApplicationwideBuildSettings 2> " . File::Spec->devnull() . " |" or die;
151 open PRODUCT, "defaults read com.apple.Xcode PBXProductDirectory 2> " . File::Spec->devnull() . " |" or die;
318 $configurationProductDir = File::Spec->catdir($baseProductDir, configurationForVisualStudio(), "bin");
704 my $devnull = File::Spec->devnull();
713 chdir File::Spec->catfile(sourceDir(), "Source", "WebCore");
1025 my $scriptDir = File::Spec->catpath("", File::Spec->abs2rel($FindBin::Bin, getcwd()), "");
1169 $vsInstallDir = File::Spec->catdir($programFilesPath, "Microsoft Visual Studio 8");
1172 $vcBuildPath = File::Spec->catfile($vsInstallDir, qw(Common7 IDE devenv.com))
    [all...]
prepare-ChangeLog 60 use File::Spec;
343 push @logs, File::Spec->catfile($prefix || ".", "ChangeLog");
359 my $resolveChangeLogsPath = File::Spec->catfile(dirname($0), "resolve-ChangeLogs");
373 my $changeLogPath = File::Spec->catfile($prefix || ".", "ChangeLog");
    [all...]
build-webkit 37 use File::Spec;
608 system(File::Spec->catfile($scriptDir, "print-vse-failure-logs"));
  /external/bison/src/
system.h 88 # define __attribute__(Spec) /* empty */
  /external/llvm/lib/MC/
MCSectionMachO.cpp 174 /// ParseSectionSpecifier - Parse the section specifier indicated by "Spec".
179 std::string MCSectionMachO::ParseSectionSpecifier(StringRef Spec, // In.
187 std::pair<StringRef, StringRef> Comma = Spec.split(',');
280 // Okay, we've parsed the section attributes, see if we have a stub size spec.
289 // If we have a stub size spec, we must have a sectiontype of S_SYMBOL_STUBS.
  /external/webkit/Tools/Scripts/webkitperl/VCSUtils_unittest/
parseDiffWithMockFiles.pl 93 writeToFile(File::Spec->catfile($mockDir, "MakefileWithUnixEOL"), $MakefileContents);
94 writeToFile(File::Spec->catfile($mockDir, "MakefileWithWindowsEOL"), toWindowsLineEndings($MakefileContents));
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
SlotView.java 91 public SlotView(AbstractGalleryActivity activity, Spec spec) {
95 setSlotSpec(spec);
144 public void setSlotSpec(Spec spec) {
145 mLayout.setSlotSpec(spec);
374 // This Spec class is used to specify the size of each slot in the SlotView.
385 public static class Spec {
405 private Spec mSpec;
417 public void setSlotSpec(Spec spec)
    [all...]
  /external/webkit/LayoutTests/fast/dom/Node/script-tests/
initial-values.js 9 // Spec: http://www.w3.org/TR/DOM-Level-2-Core/core.html#Level-2-Core-DOM-createAttribute
10 // Both FF and WebKit return "foo" for Attribute.localName, even though the spec says null
33 // Spec: http://www.w3.org/TR/DOM-Level-2-Core/core.html#Level-2-Core-DOM-createAttribute
34 // Both FF and WebKit return "foo" for Attribute.localName, even though the spec says null
83 // Spec: http://www.w3.org/TR/DOM-Level-2-Core/core.html#Level-2-Core-DOM-createDocument
84 // Currently both FF and WebKit return null here, disagreeing with the spec
102 // Spec: http://www.w3.org/TR/DOM-Level-2-Core/core.html#Level-2-Core-DOM-createElement
103 // FF returns "PRE" for localName, WebKit returns "pre", the spec says we should return null
105 // FF returns null for namespaceURI, WebKit returns http://www.w3.org/1999/xhtml, the spec says we should return null
140 // Spec: http://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-104682815 (element.tagName
    [all...]
  /external/clang/tools/libclang/
CIndexUSRs.cpp 448 if (const ClassTemplateSpecializationDecl *Spec
450 const TemplateArgumentList &Args = Spec->getTemplateInstantiationArgs();
666 if (const TemplateSpecializationType *Spec
669 VisitTemplateName(Spec->getTemplateName());
670 Out << Spec->getNumArgs();
671 for (unsigned I = 0, N = Spec->getNumArgs(); I != N; ++I)
672 VisitTemplateArgument(Spec->getArg(I));
  /external/v8/test/mjsunit/
math-sqrt.js 45 // Spec tests
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
domconfigerrorhandler2.js 71 * Calls DOMConfiguration.setParameter("error-handler", null). Spec
  /external/clang/lib/Sema/
SemaTemplateDeduction.cpp     [all...]
SemaTemplateInstantiate.cpp 83 if (ClassTemplateSpecializationDecl *Spec
86 if (Spec->getSpecializationKind() == TSK_ExplicitSpecialization &&
87 !isa<ClassTemplatePartialSpecializationDecl>(Spec))
90 Result.addOuterTemplateArguments(&Spec->getTemplateInstantiationArgs());
94 assert(Spec->getSpecializedTemplate() && "No class template?");
95 if (Spec->getSpecializedTemplate()->isMemberSpecialization())
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/lib/
obstack.c 413 # define __attribute__(Spec) /* empty */
string.in.h 37 # define __attribute__(Spec) /* empty */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
argp.h 47 # define __attribute__(Spec) /* empty */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
argp.h 47 # define __attribute__(Spec) /* empty */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
argp.h 47 # define __attribute__(Spec) /* empty */
  /external/clang/lib/AST/
TypePrinter.cpp 816 } else if (ClassTemplateSpecializationDecl *Spec
819 OS << Spec->getIdentifier()->getName();
820 const TemplateArgumentList &TemplateArgs = Spec->getTemplateArgs();
897 if (ClassTemplateSpecializationDecl *Spec
901 if (TypeSourceInfo *TAW = Spec->getTypeAsWritten()) {
907 const TemplateArgumentList &TemplateArgs = Spec->getTemplateArgs();
    [all...]
  /external/llvm/lib/Target/AArch64/AsmParser/
AArch64AsmParser.cpp     [all...]
  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/Bindings/
CodeGeneratorTestRunner.pm 26 use File::Spec;
52 open(FILE, ">", File::Spec->catfile($$self{outputDir}, $$file{name})) or die "Failed to open $$file{name} for writing: $!";

Completed in 494 milliseconds

1 23 4 5