| /device/linaro/bootloader/edk2/MdeModulePkg/Core/DxeIplPeim/Ia32/ |
| IdtVectorAsm.asm | 18 .code
75 ; + Error Code +
|
| /external/clang/unittests/Tooling/ |
| RefactoringTest.cpp | 321 bool runOver(StringRef Code) { 322 return runToolOnCode(new TestAction(this), Code); 639 void mergeAndTestRewrite(StringRef Code, StringRef Intermediate, 643 auto AfterFirst = applyAllReplacements(Code, First); 651 auto MergedRewrite = applyAllReplacements(Code, Merged); 659 void mergeAndTestRewrite(StringRef Code, const Replacements &First, 661 auto AfterFirst = applyAllReplacements(Code, First); 665 auto MergedRewrite = applyAllReplacements(Code, Merged);
|
| TestVisitor.h | 32 /// additional capability of running it over a snippet of code. 34 /// Visits template instantiations and implicit code by default. 51 /// \brief Runs the current AST visitor over the given code. 52 bool runOver(StringRef Code, Language L = Lang_CXX) { 65 return tooling::runToolOnCodeWithArgs(CreateTestAction(), Code, Args);
|
| /external/llvm/include/llvm/Support/ |
| ErrorOr.h | 47 /// \code 282 operator==(const ErrorOr<T> &Err, E Code) { 283 return Err.getError() == Code;
|
| /external/llvm/lib/Target/Hexagon/ |
| RDFGraph.h | 11 // for a non-SSA program representation (e.g. post-RA machine code). 17 // of the program. There are two main types of such elements: code and refe- 18 // rences. Conceptually, "code" is something that represents the structure 47 // A code node is always a collection of other nodes. For example, a code 48 // node corresponding to a basic block will contain code nodes corresponding 49 // to instructions. In turn, a code node corresponding to an instruction will 154 // the node is a code node or a reference node (i.e. node's "type"), then 234 Code = 0x0001, // 01, Container 271 if (type(A) != Code) [all...] |
| /external/lzma/CPP/7zip/ |
| ICoder.h | 26 STDMETHOD(Code)(ISequentialInStream *inStream, ISequentialOutStream *outStream,
33 STDMETHOD(Code)(ISequentialInStream * const *inStreams, const UInt64 * const *inSizes, UInt32 numInStreams,
39 ICompressCoder::Code
40 ICompressCoder2::Code
46 another error code : some error. For example, it can be error code received from inStream or outStream function.
71 Decoding with Code() function
81 2) call the Code() function with specified (inSize) and (outSize), if these sizes are known.
87 2) Call the Code() function with specified (inSize = NULL) and specified (outSize).
90 Encoding with Code() function [all...] |
| /external/lzma/Java/SevenZip/ |
| LzmaAlone.java | 223 encoder.Code(inStream, outStream, -1, -1, null);
242 if (!decoder.Code(inStream, outStream, outSize))
|
| /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
| ErrorOr.h | 47 /// \code 282 operator==(const ErrorOr<T> &Err, E Code) { 283 return Err.getError() == Code;
|
| /external/tensorflow/tensorflow/compiler/xla/service/ |
| transfer_manager.cc | 157 Status(static_cast<tensorflow::error::Code>(copy_status.code()), 176 Status(static_cast<tensorflow::error::Code>(copy_status.code()),
|
| /external/tensorflow/tensorflow/core/protobuf/ |
| worker.proto | 256 error.Code status_code = 5;
|
| /external/v8/src/builtins/ |
| builtins-constructor.cc | 2 // Use of this source code is governed by a BSD-style license that can be 9 #include "src/code-factory.h" 10 #include "src/code-stub-assembler.h" 158 Handle<Code> lazy_builtin_handle( 163 IntPtrConstant(Code::kHeaderSize - kHeapObjectTag)); 401 Handle<Code> Builtins::NewFunctionContext(ScopeType scope_type) { 410 return Handle<Code>::null(); 639 Handle<Code> Builtins::NewCloneShallowArray( 649 return Handle<Code>::null(); 766 Handle<Code> Builtins::NewCloneShallowObject(int length) [all...] |
| /external/v8/src/ |
| code-events.h | 2 // Use of this source code is governed by a BSD-style license that can be 22 V(CODE_CREATION_EVENT, "code-creation") \ 23 V(CODE_DISABLE_OPT_EVENT, "code-disable-optimization") \ 24 V(CODE_MOVE_EVENT, "code-move") \ 25 V(CODE_DELETE_EVENT, "code-delete") \ 26 V(CODE_MOVING_GC, "code-moving-gc") \ 28 V(SNAPSHOT_CODE_NAME_EVENT, "snapshot-code-name") \ 88 virtual void CodeCreateEvent(LogEventsAndTags tag, AbstractCode* code, 90 virtual void CodeCreateEvent(LogEventsAndTags tag, AbstractCode* code, 92 virtual void CodeCreateEvent(LogEventsAndTags tag, AbstractCode* code, [all...] |
| contexts.cc | 2 // Use of this source code is governed by a BSD-style license that can be 274 // of synthetic variables does not go through this code path. 438 Code* Context::SearchOptimizedCodeMap(SharedFunctionInfo* shared, 446 return cell->cleared() ? nullptr : Code::cast(cell->value()); 453 Handle<Code> code, 470 // Just set the code of the entry. 471 Handle<WeakCell> code_cell = isolate->factory()->NewWeakCell(code); 488 // Copy old optimized code map and append one new entry. 495 Handle<WeakCell> code_cell = isolate->factory()->NewWeakCell(code); [all...] |
| frames-inl.h | 2 // Use of this source code is governed by a BSD-style license that can be 65 inline Code* StackFrame::LookupCode() const { 67 // code's instruction range [instruction_start(), instruction_end()[. 72 inline Code* StackFrame::GetContainingCode(Isolate* isolate, Address pc) { 73 return isolate->inner_pointer_to_code_cache()->GetCacheEntry(pc)->code;
|
| /external/v8/src/compiler/ |
| code-generator.h | 2 // Use of this source code is governed by a BSD-style license that can be 52 // Generates native code for a sequence of instructions. 56 InstructionSequence* code, CompilationInfo* info); 58 // Generate native code. 59 Handle<Code> GenerateCode(); 61 InstructionSequence* code() const { return code_; } function in class:v8::internal::compiler::final 81 Zone* zone() const { return code()->zone(); } 91 // assembling code, in which case, a fall-through can be used. 105 // Assemble code for the specified instruction. 116 // ============= Architecture-specific code generation methods. ============= [all...] |
| /external/v8/src/extensions/ |
| statistics-extension.cc | 2 // Use of this source code is governed by a BSD-style license that can be 149 Code* code = Code::cast(obj); local 150 reloc_info_total += code->relocation_info()->Size(); 151 ByteArray* source_position_table = code->source_position_table(); 153 source_position_table_total += code->source_position_table()->Size();
|
| /external/v8/src/heap/ |
| code-stats.cc | 2 // Use of this source code is governed by a BSD-style license that can be 5 #include "src/heap/code-stats.h" 11 // Record code statisitcs. 18 // Record code+metadata statisitcs. 30 // Record code kind and code comment statistics. 45 // Collects code size statistics: 46 // - code and metadata size 47 // - by code kind (only in debug mode) 48 // - by code comment (only in debug mode 199 Code* code = Code::cast(obj); local [all...] |
| /external/v8/src/x64/ |
| assembler-x64-inl.h | 2 // Use of this source code is governed by a BSD-style license that can be 57 void Assembler::emit_code_target(Handle<Code> target, 69 // Optimization if we keep jumping to the same code target. 98 emit(0x48 | (reg.code() & 0x8) >> 1 | rm_reg.code() >> 3); 103 emit(0x48 | (reg.code() & 0x8) >> 1 | rm_reg.code() >> 3); 113 emit(0x48 | (reg.code() & 0x8) >> 1 | op.rex_); 118 DCHECK_EQ(rm_reg.code() & 0xf, rm_reg.code()); [all...] |
| /frameworks/base/packages/SettingsLib/tests/integ/ |
| Android.mk | 39 # Code coverage puts us over the dex limit, so enable multi-dex for coverage-enabled builds
|
| /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/ |
| ErrorOr.h | 47 /// \code 282 operator==(const ErrorOr<T> &Err, E Code) { 283 return Err.getError() == Code;
|
| /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Support/ |
| ErrorOr.h | 48 /// \code 285 operator==(const ErrorOr<T> &Err, E Code) { 286 return Err.getError() == Code;
|
| /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Support/ |
| ErrorOr.h | 48 /// \code 285 operator==(const ErrorOr<T> &Err, E Code) { 286 return Err.getError() == Code;
|
| /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Support/ |
| ErrorOr.h | 48 /// \code 285 operator==(const ErrorOr<T> &Err, E Code) { 286 return Err.getError() == Code;
|
| /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Support/ |
| ErrorOr.h | 48 /// \code 285 operator==(const ErrorOr<T> &Err, E Code) { 286 return Err.getError() == Code;
|
| /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Support/ |
| ErrorOr.h | 48 /// \code 285 operator==(const ErrorOr<T> &Err, E Code) { 286 return Err.getError() == Code;
|