HomeSort by relevance Sort by last modified time
    Searched refs:Code (Results 1 - 25 of 1922) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/immutable/
Code.java 18 public class Code {
19 private final Integer code; field in class:Code
21 public Code(Integer name) {
22 this.code = name;
26 return code;
31 if (obj instanceof Code) {
32 Code code = (Code) obj; local
33 return code.equals(code.code)
    [all...]
  /external/v8/src/ic/
access-compiler.cc 2 // Use of this source code is governed by a BSD-style license that can be
12 Handle<Code> PropertyAccessCompiler::GetCodeWithFlags(Code::Flags flags,
14 // Create code object in the heap.
17 Handle<Code> code = factory()->NewCode(desc, flags, masm()->CodeObject()); local
18 if (code->IsCodeStubOrIC()) code->set_stub_key(CodeStub::NoCacheKey());
23 code->Disassemble(name, os);
26 return code;
    [all...]
access-compiler.h 2 // Use of this source code is governed by a BSD-style license that can be
8 #include "src/code-stubs.h"
18 static Builtins::Name MissBuiltin(Code::Kind kind) {
20 case Code::LOAD_IC:
22 case Code::STORE_IC:
24 case Code::KEYED_LOAD_IC:
26 case Code::KEYED_STORE_IC:
37 PropertyAccessCompiler(Isolate* isolate, Code::Kind kind,
48 Code::Kind kind() const { return kind_; }
64 static void GenerateTailCall(MacroAssembler* masm, Handle<Code> code)
    [all...]
  /external/lzma/Java/SevenZip/Compression/RangeCoder/
Decoder.java 13 int Code;
29 Code = 0;
32 Code = (Code << 8) | Stream.read();
41 int t = ((Code - Range) >>> 31);
42 Code -= Range & (t - 1);
47 Code = (Code << 8) | Stream.read();
58 if ((Code ^ 0x80000000) < (newBound ^ 0x80000000))
64 Code = (Code << 8) | Stream.read();
    [all...]
  /external/clang/lib/Serialization/
ModuleFileExtension.cpp 16 llvm::hash_code ModuleFileExtension::hashExtension(llvm::hash_code Code) const {
17 return Code;
  /external/proguard/examples/dictionaries/
compact.txt 9 Code
  /prebuilts/tools/common/proguard/proguard4.7/examples/dictionaries/
compact.txt 9 Code
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Include/Pei/
Pei.h 43 // Enable code sharing with DXE by removing ASSERT and DEBUG
50 #define PEI_REPORT_STATUS_CODE_CODE(Code) Code
54 #define PEI_REPORT_STATUS_CODE_CODE(Code)
  /external/clang/unittests/Format/
CleanupTest.cpp 1 //===- unittest/Format/CleanupTest.cpp - Code cleanup unit tests ----------===//
23 std::string cleanup(llvm::StringRef Code,
26 tooling::Replacements Replaces = format::cleanup(Style, Code, Ranges);
28 auto Result = applyAllReplacements(Code, Replaces);
35 std::string Code = "namespace A {\n"
50 std::string Result = cleanup(Code, Ranges);
55 std::string Code = "namespace A {\n"
66 std::vector<tooling::Range> Ranges(1, tooling::Range(0, Code.size()));
67 std::string Result = cleanup(Code, Ranges);
72 std::string Code = "namespace A {\n\n
    [all...]
SortIncludesTest.cpp 23 std::vector<tooling::Range> GetCodeRange(StringRef Code) {
24 return std::vector<tooling::Range>(1, tooling::Range(0, Code.size()));
27 std::string sort(StringRef Code, StringRef FileName = "input.cpp") {
28 auto Ranges = GetCodeRange(Code);
30 applyAllReplacements(Code, sortIncludes(Style, Code, Ranges, FileName));
38 unsigned newCursor(llvm::StringRef Code, unsigned Cursor) {
39 sortIncludes(Style, Code, GetCodeRange(Code), "input.cpp", &Cursor);
58 std::string Code = "#include <a>\n
    [all...]
FormatTestProto.cpp 22 static std::string format(llvm::StringRef Code, unsigned Offset,
25 DEBUG(llvm::errs() << Code << "\n\n");
27 tooling::Replacements Replaces = reformat(Style, Code, Ranges);
28 auto Result = applyAllReplacements(Code, Replaces);
34 static std::string format(llvm::StringRef Code) {
37 return format(Code, 0, Code.size(), Style);
40 static void verifyFormat(llvm::StringRef Code) {
41 EXPECT_EQ(Code.str(), format(test::messUp(Code)));
    [all...]
  /external/clang/unittests/Tooling/
RefactoringCallbacksTest.cpp 22 void expectRewritten(const std::string &Code,
30 ASSERT_TRUE(tooling::runToolOnCode(Factory->create(), Code))
31 << "Parsing error in \"" << Code << "\"";
33 FileID ID = Context.createInMemoryFile("input.cc", Code);
40 std::string Code = "void f() { int i = 1; }";
43 expectRewritten(Code, Expected, id("id", declStmt()), Callback);
47 std::string Code = "#define A void f() { int i = 1; }\nA";
50 expectRewritten(Code, Expected, id("id", declStmt()), Callback);
54 std::string Code = "#define A void f() { int i = 1; }";
57 expectRewritten(Code, Expected, id("id", declStmt()), Callback)
    [all...]
  /prebuilts/jdk/jdk8/darwin-x86/sample/nio/server/
Reply.java 8 * - Redistributions of source code must retain the above copyright
33 * This source code is provided to illustrate the usage of a given feature
37 * this sample code.
56 static class Code {
60 private Code(int i, String r) { number = i; reason = r; }
63 static Code OK = new Code(200, "OK");
64 static Code BAD_REQUEST = new Code(400, "Bad Request");
65 static Code NOT_FOUND = new Code(404, "Not Found")
70 private Code code; field in class:Reply
    [all...]
  /prebuilts/jdk/jdk8/linux-x86/sample/nio/server/
Reply.java 8 * - Redistributions of source code must retain the above copyright
33 * This source code is provided to illustrate the usage of a given feature
37 * this sample code.
56 static class Code {
60 private Code(int i, String r) { number = i; reason = r; }
63 static Code OK = new Code(200, "OK");
64 static Code BAD_REQUEST = new Code(400, "Bad Request");
65 static Code NOT_FOUND = new Code(404, "Not Found")
70 private Code code; field in class:Reply
    [all...]
  /art/libdexfile/dex/
dex_instruction_utils.h 54 constexpr bool IsInstructionDirectConst(Instruction::Code opcode) {
58 constexpr bool IsInstructionConstWide(Instruction::Code opcode) {
62 constexpr bool IsInstructionReturn(Instruction::Code opcode) {
66 constexpr bool IsInstructionInvoke(Instruction::Code opcode) {
71 constexpr bool IsInstructionQuickInvoke(Instruction::Code opcode) {
76 constexpr bool IsInstructionInvokeStatic(Instruction::Code opcode) {
80 constexpr bool IsInstructionGoto(Instruction::Code opcode) {
84 constexpr bool IsInstructionIfCc(Instruction::Code opcode) {
88 constexpr bool IsInstructionIfCcZ(Instruction::Code opcode) {
92 constexpr bool IsInstructionIGet(Instruction::Code code)
    [all...]
  /external/pdfium/xfa/fwl/
cfwl_eventscroll.h 2 // Use of this source code is governed by a BSD-style license that can be
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
14 enum class Code {
30 Code m_iScrollCode;
  /external/v8/src/
api-experimental.h 2 // Use of this source code is governed by a BSD-style license that can be
10 class Code;
21 v8::internal::MaybeHandle<v8::internal::Code> BuildCodeFromFastAccessorBuilder(
disassembler.h 2 // Use of this source code is governed by a BSD-style license that can be
16 // code into os. Returns the number of bytes disassembled or 1 if no
18 // the code object is used for name resolution and may be null.
20 Code* code = NULL);
  /external/clang/unittests/ASTMatchers/
ASTMatchersTest.h 63 const std::string &Code, const T &AMatcher, bool ExpectMatch,
87 Factory->create(), Code, Args, Filename, "clang-tool",
89 return testing::AssertionFailure() << "Parsing error in \"" << Code << "\"";
99 << "Could not find match in \"" << Code << "\"";
102 << "Found unexpected match in \"" << Code << "\"";
108 testing::AssertionResult matches(const std::string &Code, const T &AMatcher) {
109 return matchesConditionally(Code, AMatcher, true, "-std=c++11");
113 testing::AssertionResult notMatches(const std::string &Code,
115 return matchesConditionally(Code, AMatcher, false, "-std=c++11");
119 testing::AssertionResult matchesObjC(const std::string &Code,
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/EbcDxe/Ipf/
EbcSupport.c 22 Given raw bytes of Itanium based code, format them into a bundle and
34 @retval EFI_INVALID_PARAMETER More than 41 bits used in code
220 // Begin executing the EBC code
305 // When we thunk to external native code, we copy the last 8 qwords from
339 // Begin executing the EBC code
357 @param EbcEntryPoint Address of the EBC code that the thunk is to call
380 UINT64 Code[3]; // Code in a bundle
393 // Check alignment of pointer to EBC code, which must always be aligned
417 // Make sure it's aligned for code execution. If not, then
    [all...]
  /external/clang/lib/Format/
SortJavaScriptImports.h 26 // Sort JavaScript ES6 imports/exports in ``Code``. The generated replacements
27 // only monotonically increase the length of the given code.
29 StringRef Code,
  /external/swiftshader/third_party/LLVM/lib/DebugInfo/
DWARFAbbreviationDeclaration.h 22 uint32_t Code;
29 : Code(InvalidCode), Tag(0), HasChildren(0) {}
31 uint32_t getCode() const { return Code; }
44 bool extract(DataExtractor data, uint32_t* offset_ptr, uint32_t code);
45 bool isValid() const { return Code != 0 && Tag != 0; }
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
eapmethodtypes.h 15 BYTE Code;
  /prebuilts/go/darwin-x86/src/runtime/internal/sys/
zversion.go 0 // Code generated by go tool dist; DO NOT EDIT.
  /prebuilts/go/linux-x86/src/runtime/internal/sys/
zversion.go 0 // Code generated by go tool dist; DO NOT EDIT.

Completed in 608 milliseconds

1 2 3 4 5 6 7 8 91011>>