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

1 2 3 4 5 6 7 8 910

  /external/syslinux/gnu-efi/gnu-efi-3.0/lib/
error.c 22 EFI_STATUS Code;
69 if (ErrorCodeTable[Index].Code == Status) {
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
eapmethodtypes.h 15 BYTE Code;
  /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...]
  /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/clang/unittests/AST/
SourceLocationTest.cpp 427 const std::string Code = "struct B {\n"
437 Code, friendDecl(has(cxxConstructorDecl(ofClass(hasName("B")))))));
441 Code, friendDecl(has(cxxDestructorDecl(ofClass(hasName("B")))))));
445 const std::string Code = "struct B {\n"
455 Code, friendDecl(has(cxxConstructorDecl(ofClass(hasName("B")))))));
459 Code, friendDecl(has(cxxDestructorDecl(ofClass(hasName("B")))))));
DeclPrinterTest.cpp 69 StringRef Code,
80 if (!runToolOnCodeWithArgs(Factory->create(), Code, Args, FileName))
82 << "Parsing error in \"" << Code.str() << "\"";
101 ::testing::AssertionResult PrintedDeclCXX98Matches(StringRef Code,
105 return PrintedDeclMatches(Code,
113 StringRef Code,
117 return PrintedDeclMatches(Code,
124 ::testing::AssertionResult PrintedDeclCXX11Matches(StringRef Code,
128 return PrintedDeclMatches(Code,
136 StringRef Code,
    [all...]
  /external/clang/unittests/Analysis/
CFGTest.cpp 24 const char *Code = "class Foo;\n"
52 ASSERT_TRUE(tooling::runToolOnCodeWithArgs(Factory->create(), Code, Args));
  /external/clang/unittests/Format/
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...]
  /external/llvm/include/llvm/DebugInfo/CodeView/
CodeViewError.h 40 cv_error_code Code;
  /external/llvm/include/llvm/DebugInfo/PDB/DIA/
DIAError.h 42 dia_error_code Code;
  /external/llvm/include/llvm/DebugInfo/PDB/
GenericError.h 38 generic_error_code Code;
  /external/llvm/lib/TableGen/
StringMatcher.cpp 40 /// code to verify that CharNo and later are the same.
42 /// \return - True if control can leave the emitted code fragment.
50 // matching code.
54 // If the to-execute code has \n's in it, indent each subsequent line.
55 StringRef Code = Matches[0]->second;
57 std::pair<StringRef, StringRef> Split = Code.split('\n');
60 Code = Split.second;
61 while (!Code.empty()) {
62 Split = Code.split('\n');
64 Code = Split.second
    [all...]
  /external/llvm/tools/obj2yaml/
Error.h 35 Obj2YamlError(obj2yaml_error C) : Code(C) {}
38 : ErrMsg(std::move(ErrMsg)), Code(C) {}
45 obj2yaml_error Code;
  /external/lzma/CPP/7zip/Compress/
CopyCoder.cpp 20 STDMETHODIMP CCopyCoder::Code(ISequentialInStream *inStream,
63 return copyCoder->Code(inStream, outStream, NULL, NULL, progress);
70 RINOK(copyCoder->Code(inStream, outStream, NULL, &size, progress));
Lzma2Encoder.cpp 77 STDMETHODIMP CEncoder::Code(ISequentialInStream *inStream, ISequentialOutStream *outStream,
  /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/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; }
  /external/swiftshader/third_party/LLVM/utils/TableGen/
StringMatcher.cpp 40 /// code to verify that CharNo and later are the same.
42 /// \return - True if control can leave the emitted code fragment.
50 // matching code.
54 // If the to-execute code has \n's in it, indent each subsequent line.
55 StringRef Code = Matches[0]->second;
57 std::pair<StringRef, StringRef> Split = Code.split('\n');
60 Code = Split.second;
61 while (!Code.empty()) {
62 Split = Code.split('\n');
64 Code = Split.second
    [all...]
  /external/clang/lib/Frontend/
SerializedDiagnosticReader.cpp 81 unsigned Code = Stream.ReadCode();
83 switch ((llvm::bitc::FixedAbbrevIDs)Code) {
102 BlockOrRecordID = Code;
  /external/llvm/include/llvm/DebugInfo/DWARF/
DWARFAbbreviationDeclaration.h 31 uint32_t getCode() const { return Code; }
53 uint32_t Code;
  /external/llvm/include/llvm/DebugInfo/PDB/Raw/
RawError.h 45 raw_error_code Code;
  /external/v8/src/ia32/
assembler-ia32.h 8 // - Redistributions of source code must retain the above copyright notice,
31 // The original source code covered by the above license above has been
92 // compatible with int, which has caused code-generation bugs.
104 // code generated for some assembly instructions (because they boil down
105 // to a few constants). If this is a problem, we could change the code
108 // and best performance in optimized code.
111 enum Code {
119 static const int kNumRegisters = Code::kAfterLast;
121 static Register from_code(int code) {
122 DCHECK(code >= 0)
    [all...]
  /external/v8/src/x87/
assembler-x87.h 8 // - Redistributions of source code must retain the above copyright notice,
31 // The original source code covered by the above license above has been
91 // compatible with int, which has caused code-generation bugs.
103 // code generated for some assembly instructions (because they boil down
104 // to a few constants). If this is a problem, we could change the code
107 // and best performance in optimized code.
110 enum Code {
118 static const int kNumRegisters = Code::kAfterLast;
120 static Register from_code(int code) {
121 DCHECK(code >= 0)
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/expected/
ExpectedKeyOutput.java 29 * There are two types of expected output, an integer code point and a string output text.
32 static ExpectedKeyOutput newInstance(final int code) {
33 return new Code(code);
37 // If the <code>outputText</code> is one code point string, use {@link CodePoint} object.
39 return new Code(outputText.codePointAt(0));
52 * This class represents an integer code point.
54 private static class Code extends ExpectedKeyOutput
    [all...]
  /external/clang/lib/Tooling/
Refactoring.cpp 79 StringRef Code = SM.getBufferData(ID);
83 format::formatReplacements(Code, CurReplaces, CurStyle);

Completed in 954 milliseconds

1 2 3 4 5 6 7 8 910