HomeSort by relevance Sort by last modified time
    Searched refs:Binary (Results 26 - 50 of 95) sorted by null

12 3 4

  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonPLT.cpp 45 LinkerConfig::Binary == m_Config.codeGenType());
  /external/clang/include/clang/Frontend/
CompilerInstance.h 587 createDefaultOutputFile(bool Binary = true, StringRef BaseInput = "",
596 bool Binary = true, bool RemoveFileOnSignal = true,
615 /// \param Binary - The mode to open the file in.
629 bool Binary = true, bool RemoveFileOnSignal = true,
  /external/llvm/include/llvm/Object/
Archive.h 20 #include "llvm/Object/Binary.h"
64 class Archive : public Binary {
140 error_code getAsBinary(OwningPtr<Binary> &Result) const;
230 static inline bool classof(Binary const *v) {
COFF.h 199 static inline bool classof(const Binary *v) {
MachO.h 54 static inline bool classof(const Binary *v) {
  /external/llvm/tools/llc/
llc.cpp 133 // Decide if we need "binary" output.
134 bool Binary = false;
140 Binary = true;
147 if (Binary) OpenFlags |= raw_fd_ostream::F_Binary;
  /external/chromium/testing/gmock/test/
gmock-generated-function-mockers_test.cc 4 // Redistribution and use in source and binary forms, with or without
10 // * Redistributions in binary form must reproduce the above
83 virtual long Binary(short x, int y) = 0; // NOLINT
126 MOCK_METHOD2(Binary, long(short, int)); // NOLINT
193 // Tests mocking a binary function.
195 EXPECT_CALL(mock_foo_, Binary(2, _))
198 EXPECT_EQ(3, foo_->Binary(2, 1));
gmock-generated-internal-utils_test.cc 4 // Redistribution and use in source and binary forms, with or without
10 // * Redistributions in binary form must reproduce the above
94 TEST(FunctionTest, Binary) {
gmock-more-actions_test.cc 4 // Redistribution and use in source and binary forms, with or without
10 // * Redistributions in binary form must reproduce the above
108 const char* Binary(const char* input, short n) { return input + n; } // NOLINT
188 string Binary(const string& str, char c) const { return str + c; }
245 // Tests using Invoke() with a binary function.
246 TEST(InvokeTest, Binary) {
247 Action<const char*(const char*, short)> a = Invoke(Binary); // NOLINT
376 // Tests using Invoke() with a binary method.
377 TEST(InvokeMethodTest, Binary) {
379 Action<string(const string&, char)> a = Invoke(&foo, &Foo::Binary);
    [all...]
gmock-generated-actions_test.cc 4 // Redistribution and use in source and binary forms, with or without
10 // * Redistributions in binary form must reproduce the above
95 const char* Binary(const char* input, short n) { return input + n; } // NOLINT
250 EXPECT_STREQ("i", a.Perform(make_tuple(&Binary)));
258 EXPECT_STREQ("i", a.Perform(make_tuple(&Binary)));
294 WithArgs<0, 2>(Invoke(Binary));
399 WithArgs<1, 0>(Invoke(Binary));
    [all...]
  /external/llvm/tools/llvm-size/
llvm-size.cpp 246 // Attempt to open the binary.
247 OwningPtr<Binary> binary; local
248 if (error_code ec = createBinary(file, binary)) {
253 if (Archive *a = dyn_cast<Archive>(binary.get())) {
257 OwningPtr<Binary> child;
271 } else if (ObjectFile *o = dyn_cast<ObjectFile>(binary.get())) {
  /external/llvm/include/llvm/MC/
MCExpr.h 34 Binary, ///< Binary expressions.
323 /// MCBinaryExpr - Binary assembler expressions.
356 : MCExpr(MCExpr::Binary), Op(_Op), LHS(_LHS), RHS(_RHS) {}
441 /// getOpcode - Get the kind of this binary expression.
444 /// getLHS - Get the left-hand side expression of the binary operator.
447 /// getRHS - Get the right-hand side expression of the binary operator.
453 return E->getKind() == MCExpr::Binary;
  /external/llvm/tools/llvm-nm/
llvm-nm.cpp 359 OwningPtr<Binary> arch;
384 OwningPtr<Binary> child;
407 OwningPtr<Binary> obj;
427 // llvm-nm only reads binary files.
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
parser.ml 5 (* binop_precedence - This holds the precedence for each binary operator that is
9 (* precedence - Get the precedence of the pending binary operator token. *)
110 (* Parse the unary expression after the binary operator. *)
127 let lhs = Ast.Binary (c, lhs, rhs) in
139 * ::= binary LETTER number? (id, id)
148 | [< 'Token.Binary >] -> "binary", 2
  /external/clang/lib/Frontend/
CompilerInstance.cpp 457 CompilerInstance::createDefaultOutputFile(bool Binary,
460 return createOutputFile(getFrontendOpts().OutputFile, Binary,
467 bool Binary, bool RemoveFileOnSignal,
473 llvm::raw_fd_ostream *OS = createOutputFile(OutputPath, Error, Binary,
497 bool Binary,
558 (Binary ? llvm::raw_fd_ostream::F_Binary : 0)));
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
basic.rb 48 lexer grammar Binary;
60 lexer = Binary::Lexer.new( '01' )
73 lexer = Binary::Lexer.new( '2' )
  /external/llvm/lib/MC/
MCExpr.cpp 88 case MCExpr::Binary: {
554 case Binary: {
641 case Binary: {
  /external/clang/tools/driver/
cc1as_main.cpp 241 bool Binary) {
253 (Binary ? raw_fd_ostream::F_Binary : 0));
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
parser.ml 5 (* binop_precedence - This holds the precedence for each binary operator that is
9 (* precedence - Get the precedence of the pending binary operator token. *)
63 (* Parse the primary expression after the binary operator. *)
80 let lhs = Ast.Binary (c, lhs, rhs) in
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
codegen.ml 20 | Ast.Binary (op, lhs, rhs) ->
32 | _ -> raise (Error "invalid binary operator")
parser.ml 5 (* binop_precedence - This holds the precedence for each binary operator that is
9 (* precedence - Get the precedence of the pending binary operator token. *)
63 (* Parse the primary expression after the binary operator. *)
80 let lhs = Ast.Binary (c, lhs, rhs) in
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
codegen.ml 20 | Ast.Binary (op, lhs, rhs) ->
32 | _ -> raise (Error "invalid binary operator")
parser.ml 5 (* binop_precedence - This holds the precedence for each binary operator that is
9 (* precedence - Get the precedence of the pending binary operator token. *)
63 (* Parse the primary expression after the binary operator. *)
80 let lhs = Ast.Binary (c, lhs, rhs) in
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64MCCodeEmitter.cpp 83 // binary encoding for an instruction.
87 /// getMachineOpValue - Return binary encoding of operand. If the machine
496 uint32_t Binary = getBinaryCodeForInstr(MI, Fixups);
498 EmitInstruction(Binary, OS);
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
parser.ml 5 (* binop_precedence - This holds the precedence for each binary operator that is
9 (* precedence - Get the precedence of the pending binary operator token. *)
124 (* Parse the primary expression after the binary operator. *)
141 let lhs = Ast.Binary (c, lhs, rhs) in
165 * ::= binary LETTER number? (id, id)
174 | [< 'Token.Binary >] -> "binary", 2

Completed in 3347 milliseconds

12 3 4