HomeSort by relevance Sort by last modified time
    Searched refs:Code (Results 76 - 100 of 727) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/
Instruction32x.java 9 * 1. Redistributions of source code must retain the above copyright
29 package org.jf.dexlib.Code.Format;
31 import org.jf.dexlib.Code.Instruction;
32 import org.jf.dexlib.Code.Opcode;
33 import org.jf.dexlib.Code.TwoRegisterInstruction;
Instruction21t.java 9 * 1. Redistributions of source code must retain the above copyright
29 package org.jf.dexlib.Code.Format;
31 import org.jf.dexlib.Code.Instruction;
32 import org.jf.dexlib.Code.OffsetInstruction;
33 import org.jf.dexlib.Code.Opcode;
34 import org.jf.dexlib.Code.SingleRegisterInstruction;
Instruction22c.java 9 * 1. Redistributions of source code must retain the above copyright
29 package org.jf.dexlib.Code.Format;
31 import org.jf.dexlib.Code.Instruction;
32 import org.jf.dexlib.Code.InstructionWithReference;
33 import org.jf.dexlib.Code.Opcode;
34 import org.jf.dexlib.Code.TwoRegisterInstruction;
Instruction22cs.java 9 * 1. Redistributions of source code must retain the above copyright
29 package org.jf.dexlib.Code.Format;
31 import org.jf.dexlib.Code.Instruction;
32 import org.jf.dexlib.Code.OdexedFieldAccess;
33 import org.jf.dexlib.Code.Opcode;
34 import org.jf.dexlib.Code.TwoRegisterInstruction;
Instruction22t.java 9 * 1. Redistributions of source code must retain the above copyright
29 package org.jf.dexlib.Code.Format;
31 import org.jf.dexlib.Code.Instruction;
32 import org.jf.dexlib.Code.OffsetInstruction;
33 import org.jf.dexlib.Code.Opcode;
34 import org.jf.dexlib.Code.TwoRegisterInstruction;
Instruction3rms.java 9 * 1. Redistributions of source code must retain the above copyright
29 package org.jf.dexlib.Code.Format;
31 import org.jf.dexlib.Code.Instruction;
32 import org.jf.dexlib.Code.OdexedInvokeVirtual;
33 import org.jf.dexlib.Code.Opcode;
34 import org.jf.dexlib.Code.RegisterRangeInstruction;
Instruction41c.java 9 * * Redistributions of source code must retain the above copyright
32 package org.jf.dexlib.Code.Format;
34 import org.jf.dexlib.Code.Instruction;
35 import org.jf.dexlib.Code.InstructionWithReference;
36 import org.jf.dexlib.Code.Opcode;
37 import org.jf.dexlib.Code.SingleRegisterInstruction;
Instruction5rc.java 9 * * Redistributions of source code must retain the above copyright
32 package org.jf.dexlib.Code.Format;
34 import org.jf.dexlib.Code.Instruction;
35 import org.jf.dexlib.Code.InstructionWithReference;
36 import org.jf.dexlib.Code.Opcode;
37 import org.jf.dexlib.Code.RegisterRangeInstruction;
45 import static org.jf.dexlib.Code.Opcode.*;
  /external/v8/src/
disassembler.h 6 // * Redistributions of source code must retain the above copyright
42 // code into f. Returns the number of bytes disassembled or 1 if no
46 // Decode instructions in code.
47 static void Decode(FILE* f, Code* code);
disassembler.cc 6 // * Redistributions of source code must retain the above copyright
30 #include "code-stubs.h"
62 explicit V8NameConverter(Code* code) : code_(code) {}
65 Code* code() const { return code_; } function in class:v8::internal::V8NameConverter
67 Code* code_;
82 // print as code offset, if it seems reasonable
94 // The V8NameConverter is used for well known code, so we can "safely
237 Code* code = Code::GetCodeFromTargetAddress(relocinfo.target_address()); local
    [all...]
  /external/clang/unittests/AST/
StmtPrinterTest.cpp 68 StringRef Code,
78 if (!runToolOnCodeWithArgs(Factory->create(), Code, Args))
79 return testing::AssertionFailure() << "Parsing error in \"" << Code << "\"";
99 StringRef Code,
105 return PrintedStmtMatches(Code,
113 StringRef Code,
120 return PrintedStmtMatches(Code,
  /external/lzma/CS/7zip/Compress/RangeCoder/
RangeCoder.cs 126 public uint Code;
135 Code = 0;
138 Code = (Code << 8) | (byte)Stream.ReadByte();
156 Code = (Code << 8) | (byte)Stream.ReadByte();
165 Code = (Code << 8) | (byte)Stream.ReadByte();
172 return Code / (Range /= total);
177 Code -= start * Range;
    [all...]
  /external/llvm/include/llvm/CodeGen/
ISDOpcodes.h 171 /// code generator that want to think about a single node with multiple
330 /// condition code in op #4, a CondCodeSDNode.
336 /// operands to compare (ops #0, and #1) and the condition code to compare
489 /// that the condition is represented as condition code, and two nodes to
578 /// applied. The pointer it returns points to an executable block of code.
    [all...]
  /external/chromium_org/v8/test/cctest/
test-assembler-ia32.cc 6 // * Redistributions of source code must retain the above copyright
63 Object* code = isolate->heap()->CreateCode( local
65 Code::ComputeFlags(Code::STUB),
66 Handle<Code>())->ToObjectChecked();
67 CHECK(code->IsCode());
69 Code::cast(code)->Print();
71 F2 f = FUNCTION_CAST<F2>(Code::cast(code)->entry())
102 Object* code = isolate->heap()->CreateCode( local
145 Object* code = isolate->heap()->CreateCode( local
180 Code* code = Code::cast(isolate->heap()->CreateCode( local
215 Code* code = Code::cast(isolate->heap()->CreateCode( local
245 Code* code = Code::cast(isolate->heap()->CreateCode( local
282 Code* code = Code::cast(isolate->heap()->CreateCode( local
322 Code* code = Code::cast(isolate->heap()->CreateCode( local
378 Code* code = Code::cast(isolate->heap()->CreateCode( local
464 Code* code = Code::cast(isolate->heap()->CreateCode( local
517 Object* code = isolate->heap()->CreateCode( local
    [all...]
  /external/clang/lib/Serialization/
ASTWriterStmt.cpp 36 serialization::StmtCode Code;
67 Code = serialization::STMT_NULL;
78 Code = serialization::STMT_COMPOUND;
94 Code = serialization::STMT_CASE;
100 Code = serialization::STMT_DEFAULT;
108 Code = serialization::STMT_LABEL;
117 Code = serialization::STMT_ATTRIBUTED;
128 Code = serialization::STMT_IF;
141 Code = serialization::STMT_SWITCH;
150 Code = serialization::STMT_WHILE
    [all...]
  /frameworks/compile/mclinker/
Android.mk 22 # ARM Code Generation Libraries
27 # MIPS Code Generation Libraries
32 # X86 Code Generation Libraries
  /external/chromium_org/v8/src/
code-stubs.h 6 // * Redistributions of source code must retain the above copyright
39 // List of code stubs used on all platforms.
99 // List of code stubs only used on ARM platforms.
111 // List of code stubs only used on MIPS platforms.
120 // Combined list of code stubs.
140 // Retrieve the code for the stub. Generate the code if needed.
141 Handle<Code> GetCode(Isolate* isolate);
143 // Retrieve the code for the stub, make and return a copy of the code
163 Code* code = NULL; local
    [all...]
log.h 6 // * Redistributions of source code must retain the above copyright
44 // Minimal logging (no API, code, or GC sample events), default is off.
48 // --log-api, --log-code, --log-gc, and --log-regexp.
53 // --log-code
54 // Log code (create, move, and delete) events to the logfile, default is off.
55 // --log-code implies --log.
70 // tick profiler requires code events, so --prof implies --log-code.
103 V(CODE_CREATION_EVENT, "code-creation") \
104 V(CODE_MOVE_EVENT, "code-move")
    [all...]
disassembler.h 6 // * Redistributions of source code must retain the above copyright
42 // code into f. Returns the number of bytes disassembled or 1 if no
46 // Decode instructions in code.
47 static void Decode(FILE* f, Code* code);
  /external/chromium_org/tools/android/findbugs_plugin/src/org/chromium/tools/findbugs/plugin/
SynchronizedThisDetector.java 2 // Use of this source code is governed by a BSD-style license that can be
7 import org.apache.bcel.classfile.Code;
16 * The pattern of byte code of synchronized(this) is
33 public void visit(Code code) {
35 super.visit(code);
  /external/clang/include/clang/ASTMatchers/Dynamic/
Parser.h 19 /// \code
120 static bool parseExpression(StringRef Code, VariantValue *Value,
128 static bool parseExpression(StringRef Code, Sema *S,
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
SyntheticAccessCommentMethodItem.java 9 * 1. Redistributions of source code must retain the above copyright
31 import org.jf.dexlib.Code.Analysis.SyntheticAccessorResolver;
32 import static org.jf.dexlib.Code.Analysis.SyntheticAccessorResolver.AccessedMember;
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/
Instruction.java 9 * 1. Redistributions of source code must retain the above copyright
29 package org.jf.dexlib.Code;
31 import org.jf.dexlib.Code.Format.Format;
39 * Returns the size of this instruction in code blocks, assuming the instruction is located at the given address
40 * @param codeAddress the code address where the instruction is located
41 * @return The size of this instruction in code blocks
  /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/lzma/CPP/7zip/Compress/
CopyCoder.h 25 STDMETHOD(Code)(ISequentialInStream *inStream, ISequentialOutStream *outStream,

Completed in 920 milliseconds

1 2 34 5 6 7 8 91011>>