Searched defs:Code (Results 1 - 25 of 191) sorted by relevance

12345678

/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/
H A DEncodedLiteralInstruction.java32 package org.jf.dexlib.Code;
H A DInvokeInstruction.java29 package org.jf.dexlib.Code;
H A DLiteralInstruction.java29 package org.jf.dexlib.Code;
H A DOdexedFieldAccess.java29 package org.jf.dexlib.Code;
H A DOdexedInvokeInline.java32 package org.jf.dexlib.Code;
H A DOdexedInvokeVirtual.java29 package org.jf.dexlib.Code;
H A DRegisterRangeInstruction.java29 package org.jf.dexlib.Code;
H A DSingleRegisterInstruction.java29 package org.jf.dexlib.Code;
H A DThreeRegisterInstruction.java29 package org.jf.dexlib.Code;
H A DTwoRegisterInstruction.java29 package org.jf.dexlib.Code;
H A DFiveRegisterInstruction.java29 package org.jf.dexlib.Code;
H A DMultiOffsetInstruction.java29 package org.jf.dexlib.Code;
H A DOffsetInstruction.java29 package org.jf.dexlib.Code;
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/
H A DInstructionWithJumboVariant.java32 package org.jf.dexlib.Code.Format;
34 import org.jf.dexlib.Code.Instruction;
H A DUnknownInstruction.java32 package org.jf.dexlib.Code.Format;
34 import org.jf.dexlib.Code.Opcode;
/external/chromium_org/tools/json_schema_compiler/
H A Dfeatures_cc_generator.py7 from code import Code namespace
27 """Generates a Code object for features.
29 c = Code()
H A Dcode.py5 class Code(object): class in inherits:object
31 """Returns True if the Code object is empty.
36 """Concatenate another Code object onto this one. Trailing whitespace is
43 if not isinstance(obj, Code):
60 """Concatenates another Code object |code| onto this one followed by a
132 """Renders Code as a string.
H A Dcode_test.py6 from code import Code namespace
11 c = Code()
16 c = Code()
40 b = Code()
45 c = Code()
59 d = Code()
60 a = Code()
74 c = Code()
75 d = Code()
78 d = Code()
[all...]
H A Dfeatures_h_generator.py7 from code import Code namespace
27 """Generates a Code object for features.
29 c = Code()
67 c = Code()
82 return Code().Append('std::map<std::string, '
86 c = Code()
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
H A DValidationException.java29 package org.jf.dexlib.Code.Analysis;
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DMediaError.h37 enum Code { enum in class:WebCore::MediaError
45 static PassRefPtr<MediaError> create(Code code) { return adoptRef(new MediaError(code)); }
47 Code code() const { return m_code; }
50 MediaError(Code code) : m_code(code)
55 Code m_code;
/external/clang/unittests/Tooling/
H A DRefactoringCallbacksTest.cpp22 void expectRewritten(const std::string &Code, argument
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; }"; local
43 expectRewritten(Code, Expected, id("id", declStmt()), Callback);
47 std::string Code = "#define A void f() { int i = 1; }\nA"; local
50 expectRewritten(Code, Expected, id("id", declStmt()), Callback);
54 std::string Code = "#define A void f() { int i = 1; }"; local
57 expectRewritten(Code, Expecte
61 std::string Code = "void f() { int i = 1; }"; local
69 std::string Code = "void f() { int i = false ? 1 : i * 2; }"; local
80 std::string Code = "bool a; void f() { if (a) f(); else a = true; }"; local
91 std::string Code = "void f() { if (false) int i = 0; }"; local
[all...]
/external/llvm/lib/TableGen/
H A DStringMatcher.cpp55 StringRef Code = Matches[0]->second; local
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;
/external/llvm/lib/Transforms/Utils/
H A DCmpInstAnalysis.cpp72 Value *llvm::getICmpValue(bool Sign, unsigned Code, Value *LHS, Value *RHS, argument
74 switch (Code) {
/external/lzma/CPP/7zip/Compress/
H A DCopyCoder.cpp20 STDMETHODIMP CCopyCoder::Code(ISequentialInStream *inStream, function in class:NCompress::CCopyCoder
64 return copyCoder->Code(inStream, outStream, NULL, NULL, progress);

Completed in 910 milliseconds

12345678