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

1 2 3 4 5 6

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
eapmethodtypes.h 15 BYTE Code;
  /external/chromium_org/tools/json_schema_compiler/
features_cc_generator.py 2 # Use of this source code is governed by a BSD-style license that can be
7 from code import Code
27 """Generates a Code object for features.
29 c = Code()
code.py 2 # Use of this source code is governed by a BSD-style license that can be
5 class Code(object):
6 """A convenience object for constructing code.
8 Logically each object should be a block of code. All methods except |Render|
18 """Appends a line of code at the current indent level or just a newline if
22 code.Substitute().
31 """Returns True if the Code object is empty.
36 """Concatenate another Code object onto this one. Trailing whitespace is
39 Appends the code at the current indent level. Will fail if there are any
43 if not isinstance(obj, Code)
    [all...]
code_test.py 3 # Use of this source code is governed by a BSD-style license that can be
6 from code import Code
11 c = Code()
16 c = Code()
40 b = Code()
45 c = Code()
59 d = Code()
60 a = Code()
74 c = Code()
    [all...]
features_h_generator.py 2 # Use of this source code is governed by a BSD-style license that can be
7 from code import Code
27 """Generates a Code object for features.
29 c = Code()
71 c = Code()
86 return Code().Append('std::map<std::string, '
90 c = Code()
cpp_util.py 2 # Use of this source code is governed by a BSD-style license that can be
5 """Utilies and constants specific to Chromium C++ code.
8 from code import Code
16 // Use of this source code is governed by a BSD-style license that can be
43 """Returns the C++ code for retrieving a fundamental type from a
116 c = Code()
125 c = Code()
cpp_type_generator.py 2 # Use of this source code is governed by a BSD-style license that can be
5 from code import Code
30 format extensions::api::sub. The generator will generate code suitable for
139 c = Code()
162 c = Code()
248 """Generates the Code to display all value-containing properties.
250 c = Code()
h_generator.py 2 # Use of this source code is governed by a BSD-style license that can be
7 from code import Code
30 """Generates a Code object with the .h for a single namespace.
32 c = Code()
136 """Generate a code object with the declaration of a C++ enum.
138 c = Code()
152 c = Code()
180 c = Code()
285 c = 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...]
  /external/lzma/CPP/7zip/Compress/
CopyCoder.cpp 20 STDMETHODIMP CCopyCoder::Code(ISequentialInStream *inStream,
64 return copyCoder->Code(inStream, outStream, NULL, NULL, progress);
Lzma2Encoder.cpp 77 STDMETHODIMP CEncoder::Code(ISequentialInStream *inStream, ISequentialOutStream *outStream,
PpmdEncoder.cpp 73 HRESULT CEncoder::Code(ISequentialInStream *inStream, ISequentialOutStream *outStream,
  /external/chromium_org/third_party/WebKit/Source/core/html/
MediaError.h 7 * 1. Redistributions of source code must retain the above copyright
38 enum Code {
46 static PassRefPtrWillBeRawPtr<MediaError> create(Code code)
48 return adoptRefWillBeNoop(new MediaError(code));
51 Code code() const { return m_code; } function in class:blink::FINAL
56 MediaError(Code code) : m_code(code) { }
    [all...]
MediaKeyError.h 7 * 1. Redistributions of source code must retain the above copyright
47 typedef unsigned short Code;
49 static PassRefPtrWillBeRawPtr<MediaKeyError> create(Code code, unsigned long systemCode = 0)
51 return adoptRefWillBeNoop(new MediaKeyError(code, systemCode));
54 Code code() const { return m_code; } function in class:blink::FINAL
60 MediaKeyError(Code code, unsigned long systemCode)
61 : m_code(code), m_systemCode(systemCode) {
    [all...]
  /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/smack/src/org/xbill/DNS/
EDNSOption.java 16 public static class Code {
17 private Code() {}
30 codes.setPrefix("CODE");
38 * Converts an EDNS Option Code into its textual representation
41 string(int code) {
42 return codes.getText(code);
46 * Converts a textual representation of an EDNS Option Code into its
48 * @param s The textual representation of the option code
49 * @return The option code, or -1 on error.
57 private final int code; field in class:EDNSOption
118 int code, length; local
    [all...]
  /external/chromium_org/third_party/cython/src/Cython/Compiler/Tests/
TestUtilityLoad.py 3 from Cython.Compiler import Code, UtilityCode
22 cls = Code.UtilityCode
59 cls = Code.TempitaUtilityCode
  /external/clang/unittests/AST/
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/lldb/source/Plugins/SymbolFile/DWARF/
DWARFAbbreviationDeclaration.h 31 dw_uleb128_t Code() const { return m_code; }
32 void SetCode(dw_uleb128_t code) { m_code = code; }
67 bool Extract(const lldb_private::DataExtractor& data, lldb::offset_t *offset_ptr, dw_uleb128_t code);
  /external/llvm/lib/DebugInfo/
DWARFAbbreviationDeclaration.h 21 uint32_t Code;
35 uint32_t getCode() const { return Code; }
  /external/llvm/tools/llvm-lto/
llvm-lto.cpp 160 const void *Code = CodeGen.compile(&len, DisableOpt, DisableInline,
162 if (!Code) {
164 << ": error compiling the code: " << ErrorInfo << "\n";
176 FileStream.write(reinterpret_cast<const char *>(Code), len);
183 << ": error compiling the code: " << ErrorInfo
  /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/chromium_org/third_party/cython/src/Cython/Compiler/
UtilityCode.py 4 import Code
49 class CythonUtilityCode(Code.UtilityCodeBase):
51 Utility code written in the Cython language itself.
72 # 2) The same utility code object can be used for multiple source files;
77 impl = Code.sub_tempita(impl, context, file, name)
89 # any __test__ in user code; not desired
136 Load a utility code as a string. Returns (proto, implementation)
144 Declare all entries from the utility code in dest_scope. Code will only
174 Declare some declarations given as Cython code in declaration_strin
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/include/leveldb/
status.h 2 // Use of this source code is governed by a BSD-style license that can be
55 bool IsNotFound() const { return code() == kNotFound; }
58 bool IsCorruption() const { return code() == kCorruption; }
61 bool IsIOError() const { return code() == kIOError; }
71 // state_[4] == code
75 enum Code {
84 Code code() const { function in class:leveldb::Status
85 return (state_ == NULL) ? kOk : static_cast<Code>(state_[4]);
88 Status(Code code, const Slice& msg, const Slice& msg2)
    [all...]
  /external/clang/tools/clang-format/
ClangFormat.cpp 12 /// (fragments of) C++ code.
125 const MemoryBuffer *Code,
161 if (Offsets[i] >= Code->getBufferSize()) {
170 if (Offsets[i] + Lengths[i] > Code->getBufferSize()) {
218 std::unique_ptr<llvm::MemoryBuffer> Code = std::move(CodeOrErr.get());
219 if (Code->getBufferSize() == 0)
221 FileID ID = createInMemoryFile(FileName, Code.get(), Sources, Files);
223 if (fillRanges(Sources, ID, Code.get(), Ranges))
284 "A tool to format C/C++/Obj-C code.\n\n"
285 "If no arguments are specified, it formats the code from standard input\n
    [all...]

Completed in 408 milliseconds

1 2 3 4 5 6