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

1 2 3 4 5 6

  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/
EncodedLiteralInstruction.java 9 * * Redistributions of source code must retain the above copyright
32 package org.jf.dexlib.Code;
InvokeInstruction.java 9 * 1. Redistributions of source code must retain the above copyright
29 package org.jf.dexlib.Code;
LiteralInstruction.java 9 * 1. Redistributions of source code must retain the above copyright
29 package org.jf.dexlib.Code;
MultiOffsetInstruction.java 9 * 1. Redistributions of source code must retain the above copyright
29 package org.jf.dexlib.Code;
OdexedFieldAccess.java 9 * 1. Redistributions of source code must retain the above copyright
29 package org.jf.dexlib.Code;
OdexedInvokeInline.java 9 * * Redistributions of source code must retain the above copyright
32 package org.jf.dexlib.Code;
OdexedInvokeVirtual.java 9 * 1. Redistributions of source code must retain the above copyright
29 package org.jf.dexlib.Code;
OffsetInstruction.java 9 * 1. Redistributions of source code must retain the above copyright
29 package org.jf.dexlib.Code;
RegisterRangeInstruction.java 9 * 1. Redistributions of source code must retain the above copyright
29 package org.jf.dexlib.Code;
SingleRegisterInstruction.java 9 * 1. Redistributions of source code must retain the above copyright
29 package org.jf.dexlib.Code;
ThreeRegisterInstruction.java 9 * 1. Redistributions of source code must retain the above copyright
29 package org.jf.dexlib.Code;
TwoRegisterInstruction.java 9 * 1. Redistributions of source code must retain the above copyright
29 package org.jf.dexlib.Code;
FiveRegisterInstruction.java 9 * 1. Redistributions of source code must retain the above copyright
29 package org.jf.dexlib.Code;
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/
InstructionWithJumboVariant.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;
InstructionWithJumboReference.java 9 * * Redistributions of source code must retain the above copyright
32 package org.jf.dexlib.Code.Format;
34 import org.jf.dexlib.Code.InstructionWithReference;
35 import org.jf.dexlib.Code.Opcode;
36 import org.jf.dexlib.Code.ReferenceType;
UnknownInstruction.java 9 * * Redistributions of source code must retain the above copyright
32 package org.jf.dexlib.Code.Format;
34 import org.jf.dexlib.Code.Opcode;
Instruction10t.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;
Instruction10x.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;
Instruction11n.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.LiteralInstruction;
33 import org.jf.dexlib.Code.Opcode;
34 import org.jf.dexlib.Code.SingleRegisterInstruction;
  /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/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
DexFileClassMap.java 9 * 1. Redistributions of source code must retain the above copyright
29 package org.jf.dexlib.Code.Analysis;
ValidationException.java 9 * 1. Redistributions of source code must retain the above copyright
29 package org.jf.dexlib.Code.Analysis;
OdexedFieldInstructionMapper.java 9 * 1. Redistributions of source code must retain the above copyright
29 package org.jf.dexlib.Code.Analysis;
31 import org.jf.dexlib.Code.Opcode;
  /external/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/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...]

Completed in 354 milliseconds

1 2 3 4 5 6