Searched defs:OS (Results 1 - 25 of 343) sorted by path

1234567891011>>

/external/bison/djgpp/
H A Dconfig.bat408 set OS=MS-Windows variable
409 if not "%OS%" == "MS-Windows" goto SmallEnv
412 set OS=MS-DOS variable
413 if not "%OS%" == "MS-DOS" goto SmallEnv
429 set _HOSTNAME=%HOSTNAME%, %OS%
430 if not "%_HOSTNAME%" == "%HOSTNAME%, %OS%" goto SmallEnv
434 set OS= variable
/external/chromium_org/chrome/tools/build/
H A Drepack_locales.py30 OS = None variable
32 # Note that OS is normally set to 'linux' when building for chromeos.
57 if OS == 'mac' or OS == 'ios':
101 if OS != 'ios':
115 if ENABLE_AUTOFILL_DIALOG and OS != 'ios' and OS != 'android':
130 # to the OS != 'ios' and OS != 'android' section below.
189 global OS
[all...]
/external/chromium_org/gpu/config/
H A Dgpu_test_config.h21 enum OS { enum in class:gpu::GPUTestConfig
74 // Indicates that the OS has the notion of a numeric GPU vendor and device id
104 // environment. For example, if a field is unknown, or if OS is not one
105 // fully defined OS, then it's valid.
/external/chromium_org/remoting/tools/build/
H A Dremoting_copy_locales.py26 OS = None variable
39 if OS == 'mac' or OS == 'ios':
101 global OS
117 help="The target OS. (e.g. mac, linux, win, etc.)")
128 OS = options.os
130 if not OS:
132 OS = 'mac'
134 OS = 'linux'
136 OS
[all...]
/external/chromium_org/third_party/WebKit/Source/
H A Dconfig.h35 /* OS() - underlying operating system; only to be used for mandated low-level services like
37 #define OS(WTF_FEATURE) (defined WTF_OS_##WTF_FEATURE && WTF_OS_##WTF_FEATURE) macro
41 /* USE() - use a particular third-party library or optional OS service */
46 /* ==== OS() - underlying operating system; only to be used for mandated low-level services like
49 /* OS(ANDROID) - Android */
52 /* OS(MACOSX) - Any Darwin-based OS, including Mac OS X and iPhone OS */
55 /* OS(FREEBS
[all...]
/external/chromium_org/third_party/brotli/src/
H A Dshared.mk0 OS := $(shell uname)
10 ifeq ($(OS), Darwin)
1 OS := $(shell uname) macro
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
H A DAMDILCFGStructurizer.cpp86 void PrintLoopinfo(const LoopinfoT &LoopInfo, llvm::raw_ostream &OS) { argument
90 (*iter)->print(OS, 0);
175 virtual void print(llvm::raw_ostream &OS, const Module *M = 0) const { argument
176 DT->print(OS);
306 void printOrderedBlocks(llvm::raw_ostream &OS);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/InstPrinter/
H A DAMDGPUInstPrinter.cpp7 void AMDGPUInstPrinter::printInst(const MCInst *MI, raw_ostream &OS, argument
9 printInstruction(MI, OS);
11 printAnnotation(OS, Annot);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/MCTargetDesc/
H A DAMDGPUAsmBackend.cpp24 AMDGPUMCObjectWriter(raw_ostream &OS) : MCObjectWriter(OS, true) { } argument
46 virtual AMDGPUMCObjectWriter *createObjectWriter(raw_ostream &OS) const;
78 raw_ostream &OS) const {
79 return new AMDGPUMCObjectWriter(OS);
H A DR600MCCodeEmitter.cpp52 /// EncodeInstruction - Encode the instruction and write it to the OS.
53 virtual void EncodeInstruction(const MCInst &MI, raw_ostream &OS,
62 raw_ostream &OS) const;
63 void EmitSrc(const MCInst &MI, unsigned OpIdx, raw_ostream &OS) const;
64 void EmitDst(const MCInst &MI, raw_ostream &OS) const;
67 raw_ostream &OS) const;
69 raw_ostream &OS) const;
70 void EmitFCInstr(const MCInst &MI, raw_ostream &OS) const;
72 void EmitNullBytes(unsigned int byteCount, raw_ostream &OS) const;
74 void EmitByte(unsigned int byte, raw_ostream &OS) cons
150 EncodeInstruction(const MCInst &MI, raw_ostream &OS, SmallVectorImpl<MCFixup> &Fixups) const argument
247 EmitTwoBytes(getHWReg(reg), OS); local
265 EmitByte(getHWRegChan(MO.getReg()), OS); local
303 EmitByte(getHWReg(MO.getReg()), OS); local
306 EmitByte(getHWRegChan(MO.getReg()), OS); local
336 EmitTwoBytes(getBinaryCodeForInstr(MI, Fixups), OS); local
408 EmitByte(getBinaryCodeForInstr(MI, Fixups), OS); local
414 EmitByte(getHWReg(MI.getOperand(1).getReg()), OS); local
420 EmitByte(getHWReg(MI.getOperand(0).getReg()), OS); local
[all...]
H A DSIMCCodeEmitter.cpp73 /// EncodeInstruction - Encode the instruction and write it to the OS.
74 virtual void EncodeInstruction(const MCInst &MI, raw_ostream &OS,
131 void SIMCCodeEmitter::EncodeInstruction(const MCInst &MI, raw_ostream &OS, argument
136 OS.write((uint8_t) ((Encoding >> (8 * i)) & 0xff));
/external/chromium_org/third_party/zlib/
H A Dinflate.h24 OS, /* i: waiting for extra flags and operating system (gzip) */ enumerator in enum:__anon16405
62 (gzip) -> FLAGS -> TIME -> OS -> EXLEN -> EXTRA -> NAME -> COMMENT ->
/external/chromium_org/tools/site_compare/commands/
H A Dcompare2.py17 import drivers # Functions for driving keyboard/mouse/windows, OS-specific namespace
H A Dtimeload.py19 import drivers # Functions for driving keyboard/mouse/windows, OS-specific namespace
/external/chromium_org/tools/site_compare/
H A Dsite_compare.py22 import drivers # Functions for driving keyboard/mouse/windows, OS-specific namespace
/external/chromium_org/v8/src/base/platform/
H A Dplatform.h136 // OS
142 class OS { class in namespace:v8::base
144 // Initialize the OS class.
146 // - hard_abort: If true, OS::Abort() will crash instead of aborting.
177 // Returns last OS error.
309 DISALLOW_IMPLICIT_CONSTRUCTORS(OS);
394 // Returns true if OS performs lazy commits, i.e. the memory allocation call
/external/clang/include/clang/AST/
H A DASTTypeTraits.h145 inline raw_ostream &operator<<(raw_ostream &OS, ASTNodeKind K) { argument
146 OS << K.asStringRef();
147 return OS;
195 void print(llvm::raw_ostream &OS, const PrintingPolicy &PP) const;
198 void dump(llvm::raw_ostream &OS, SourceManager &SM) const;
H A DDecl.h55 /// TL.getStartLoc().print(OS, SrcMgr);
161 void printQualifiedName(raw_ostream &OS) const;
162 void printQualifiedName(raw_ostream &OS, const PrintingPolicy &Policy) const;
174 virtual void getNameForDiagnostic(raw_ostream &OS,
295 inline raw_ostream &operator<<(raw_ostream &OS, const NamedDecl &ND) { argument
296 ND.printName(OS);
297 return OS;
1611 void getNameForDiagnostic(raw_ostream &OS, const PrintingPolicy &Policy,
H A DDeclarationName.h308 raw_ostream &operator<<(raw_ostream &OS, DeclarationName N);
524 void printName(raw_ostream &OS) const;
561 inline raw_ostream &operator<<(raw_ostream &OS, argument
563 DNInfo.printName(OS);
564 return OS;
H A DType.h472 void print(raw_ostream &OS, const PrintingPolicy &Policy,
873 void print(raw_ostream &OS, const PrintingPolicy &Policy, argument
875 print(split(), OS, Policy, PlaceHolder); local
877 static void print(SplitQualType split, raw_ostream &OS, argument
879 return print(split.Ty, split.Quals, OS, policy, PlaceHolder);
882 raw_ostream &OS, const PrintingPolicy &policy,
906 friend raw_ostream &operator<<(raw_ostream &OS, argument
908 SQT.T.print(OS, SQT.Policy, SQT.PlaceHolder);
909 return OS;
3103 void printExceptionSpecification(raw_ostream &OS,
[all...]
/external/clang/include/clang/Analysis/Analyses/
H A DDominators.h156 virtual void print(raw_ostream &OS, const llvm::Module* M= nullptr) const { argument
157 DT->print(OS);
/external/clang/include/clang/Analysis/
H A DCFG.h647 void print(raw_ostream &OS, const CFG* cfg, const LangOptions &LO,
649 void printTerminator(raw_ostream &OS, const LangOptions &LO) const;
650 void printAsOperand(raw_ostream &OS, bool /*PrintType*/) { argument
651 OS << "BB#" << getBlockID();
945 void print(raw_ostream &OS, const LangOptions &LO, bool ShowColors) const;
/external/clang/include/clang/Frontend/
H A DCompilerInstance.h146 raw_ostream *OS; member in struct:clang::CompilerInstance::OutputFile
150 : Filename(filename), TempFilename(tempFilename), OS(os) { }
602 /// \p Filename, \p Line, and \p Column, to the given output stream \p OS.
607 raw_ostream &OS);
H A DLogDiagnosticPrinter.h43 void EmitDiagEntry(llvm::raw_ostream &OS,
46 raw_ostream &OS; member in class:clang::LogDiagnosticPrinter
60 LogDiagnosticPrinter(raw_ostream &OS, DiagnosticOptions *Diags,
H A DTextDiagnostic.h36 raw_ostream &OS; member in class:clang::TextDiagnostic
39 TextDiagnostic(raw_ostream &OS,
52 static void printDiagnosticLevel(raw_ostream &OS,
65 /// \param OS Where the message is printed
73 static void printDiagnosticMessage(raw_ostream &OS, bool IsSupplemental,

Completed in 3295 milliseconds

1234567891011>>