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

1 2 3 4 5 6 78 91011>>

  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/DebugInfo/PDB/
GenericError.h 40 generic_error_code Code;
  /prebuilts/jdk/jdk8/darwin-x86/sample/nio/server/
RequestServicer.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.
80 rp = new Reply(Reply.Code.BAD_REQUEST,
142 rp = new Reply(Reply.Code.METHOD_NOT_ALLOWED,
145 rp = new Reply(Reply.Code.OK,
151 rp = new Reply(Reply.Code.NOT_FOUND,
  /prebuilts/jdk/jdk8/linux-x86/sample/nio/server/
RequestServicer.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.
80 rp = new Reply(Reply.Code.BAD_REQUEST,
142 rp = new Reply(Reply.Code.METHOD_NOT_ALLOWED,
145 rp = new Reply(Reply.Code.OK,
151 rp = new Reply(Reply.Code.NOT_FOUND,
  /external/llvm/lib/DebugInfo/CodeView/
CodeViewError.cpp 52 : Code(C) {
55 if (Code != cv_error_code::unspecified)
66 return std::error_code(static_cast<int>(Code), *Category);
  /external/llvm/lib/DebugInfo/PDB/DIA/
DIAError.cpp 44 DIAError::DIAError(dia_error_code C, const std::string &Context) : Code(C) {
47 if (Code != dia_error_code::unspecified)
58 return std::error_code(static_cast<int>(Code), *Category);
  /external/llvm/lib/DebugInfo/PDB/
GenericError.cpp 52 : Code(C) {
55 if (Code != generic_error_code::unspecified)
66 return std::error_code(static_cast<int>(Code), *Category);
  /external/llvm/lib/DebugInfo/PDB/Raw/
RawError.cpp 52 RawError::RawError(raw_error_code C, const std::string &Context) : Code(C) {
55 if (Code != raw_error_code::unspecified)
66 return std::error_code(static_cast<int>(Code), *Category);
  /external/lzma/C/
Ppmd7Dec.c 3 This code is based on PPMd var.H (2001): Dmitry Shkarin : Public domain */
14 p->Code = 0;
19 p->Code = (p->Code << 8) | p->Stream->Read((void *)p->Stream);
20 return (p->Code < 0xFFFFFFFF);
26 return (p->Code) / (p->Range /= total);
33 p->Code = (p->Code << 8) | p->Stream->Read((void *)p->Stream);
37 p->Code = (p->Code << 8) | p->Stream->Read((void *)p->Stream);
    [all...]
  /external/protobuf/src/google/protobuf/stubs/
status.h 9 // * Redistributions of source code must retain the above copyright
43 // These values must match error codes defined in google/rpc/code.proto.
44 enum Code {
71 // code, and error message. If "code == 0", error_message is
74 Status(error::Code error_code, StringPiece error_message);
100 // Return a combination of the error code name and message.
104 error::Code error_code_;
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
status.h 9 // * Redistributions of source code must retain the above copyright
43 // These values must match error codes defined in google/rpc/code.proto.
44 enum Code {
71 // code, and error message. If "code == 0", error_message is
74 Status(error::Code error_code, StringPiece error_message);
100 // Return a combination of the error code name and message.
104 error::Code error_code_;
  /external/clang/lib/Serialization/
ASTWriterStmt.cpp 35 serialization::StmtCode Code;
41 Code(serialization::STMT_NULL_PTR), AbbrevToUse(0) {}
46 assert(Code != serialization::STMT_NULL_PTR &&
48 return Record.EmitStmt(Code, AbbrevToUse);
77 Code = serialization::STMT_NULL;
87 Code = serialization::STMT_COMPOUND;
103 Code = serialization::STMT_CASE;
109 Code = serialization::STMT_DEFAULT;
117 Code = serialization::STMT_LABEL;
126 Code = serialization::STMT_ATTRIBUTED
    [all...]
  /external/clang/unittests/Format/
FormatTestSelective.cpp 23 std::string format(llvm::StringRef Code, unsigned Offset, unsigned Length) {
25 DEBUG(llvm::errs() << Code << "\n\n");
29 reformat(Style, Code, Ranges, "<stdin>", &IncompleteFormat);
30 EXPECT_FALSE(IncompleteFormat) << Code << "\n\n";
31 auto Result = applyAllReplacements(Code, Replaces);
FormatTestJava.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);
35 format(llvm::StringRef Code,
37 return format(Code, 0, Code.size(), Style);
47 llvm::StringRef Code,
49 EXPECT_EQ(Code.str(), format(test::messUp(Code), Style))
    [all...]
  /external/v8/src/ic/
handler-compiler.cc 2 // Use of this source code is governed by a BSD-style license that can be
17 Handle<Code> PropertyHandlerCompiler::Find(Handle<Name> name,
19 Code::Kind kind,
21 Code::Flags flags = Code::ComputeHandlerFlags(kind, cache_holder);
22 Code* code = stub_holder->LookupInCodeCache(*name, flags); local
23 if (code == nullptr) return Handle<Code>();
24 return handle(code);
30 Handle<Code> code = GetCodeWithFlags(flags, name); local
    [all...]
stub-cache.cc 2 // Use of this source code is governed by a BSD-style license that can be
17 StubCache::StubCache(Isolate* isolate, Code::Kind ic_kind)
44 Code* code = Code::cast(handler); local
45 Code::Flags expected_flags = Code::RemoveHolderFromFlags(
46 Code::ComputeHandlerFlags(stub_cache->ic_kind()));
47 Code::Flags flags = Code::RemoveHolderFromFlags(code->flags())
    [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/v8/src/
disassembler.cc 2 // Use of this source code is governed by a BSD-style license that can be
10 #include "src/code-stubs.h"
28 explicit V8NameConverter(Code* code) : code_(code) {}
31 Code* code() const { return code_; } function in class:v8::internal::V8NameConverter
33 Code* code_;
50 // print as code offset, if it seems reasonable
62 // The V8NameConverter is used for well known code, so we can "safely
203 Code* code = Code::GetCodeFromTargetAddress(relocinfo.target_address()); local
    [all...]
  /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/llvm/include/llvm/CodeGen/
ISDOpcodes.h 79 /// typically the offset is not known until after code generation of the
190 /// code generator that want to think about a single node with multiple
363 /// condition code in op #4, a CondCodeSDNode.
369 /// operands to compare (ops #0, and #1) and the condition code to compare
577 /// that the condition is represented as condition code, and two nodes to
680 /// applied. The pointer it returns points to an executable block of code.
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
ISDOpcodes.h 79 /// typically the offset is not known until after code generation of the
195 /// code generator that want to think about a single node with multiple
381 /// condition code in op #4, a CondCodeSDNode.
387 /// operands to compare (ops #0, and #1) and the condition code to compare
582 /// that the condition is represented as condition code, and two nodes to
685 /// applied. The pointer it returns points to an executable block of code.
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/CodeGen/
ISDOpcodes.h 79 /// typically the offset is not known until after code generation of the
195 /// code generator that want to think about a single node with multiple
402 /// condition code in op #4, a CondCodeSDNode.
408 /// operands to compare (ops #0, and #1) and the condition code to compare
613 /// that the condition is represented as condition code, and two nodes to
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/CodeGen/
ISDOpcodes.h 79 /// typically the offset is not known until after code generation of the
195 /// code generator that want to think about a single node with multiple
402 /// condition code in op #4, a CondCodeSDNode.
408 /// operands to compare (ops #0, and #1) and the condition code to compare
613 /// that the condition is represented as condition code, and two nodes to
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/CodeGen/
ISDOpcodes.h 79 /// typically the offset is not known until after code generation of the
195 /// code generator that want to think about a single node with multiple
403 /// condition code in op #4, a CondCodeSDNode.
409 /// operands to compare (ops #0, and #1) and the condition code to compare
614 /// that the condition is represented as condition code, and two nodes to
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/CodeGen/
ISDOpcodes.h 79 /// typically the offset is not known until after code generation of the
195 /// code generator that want to think about a single node with multiple
403 /// condition code in op #4, a CondCodeSDNode.
409 /// operands to compare (ops #0, and #1) and the condition code to compare
614 /// that the condition is represented as condition code, and two nodes to
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/CodeGen/
ISDOpcodes.h 79 /// typically the offset is not known until after code generation of the
195 /// code generator that want to think about a single node with multiple
403 /// condition code in op #4, a CondCodeSDNode.
409 /// operands to compare (ops #0, and #1) and the condition code to compare
614 /// that the condition is represented as condition code, and two nodes to
    [all...]

Completed in 917 milliseconds

1 2 3 4 5 6 78 91011>>