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

1 2 3 4 5 6 7 8

  /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;
  /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/lzma/CPP/7zip/Compress/
CopyCoder.cpp 20 STDMETHODIMP CCopyCoder::Code(ISequentialInStream *inStream,
64 return copyCoder->Code(inStream, outStream, NULL, NULL, progress);
  /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;
  /external/chromium_org/third_party/WebKit/Source/core/html/
MediaError.h 7 * 1. Redistributions of source code must retain the above copyright
37 enum Code {
45 static PassRefPtr<MediaError> create(Code code) { return adoptRef(new MediaError(code)); }
47 Code code() const { return m_code; } function in class:WebCore::MediaError
50 MediaError(Code code) : m_code(code)
    [all...]
MediaKeyError.h 7 * 1. Redistributions of source code must retain the above copyright
45 typedef unsigned short Code;
47 static PassRefPtr<MediaKeyError> create(Code code, unsigned long systemCode = 0) { return adoptRef(new MediaKeyError(code, systemCode)); }
49 Code code() const { return m_code; } function in class:WebCore::MediaKeyError
53 explicit MediaKeyError(Code code, unsigned long systemCode) : m_code(code), m_systemCode(systemCode
    [all...]
  /external/chromium_org/tools/json_schema_compiler/
code.py 2 # Use of this source code is governed by a BSD-style license that can be
5 class Code(object):
6 """A convenience object for constructing code.
8 Logically each object should be a block of code. All methods except |Render|
18 """Appends a line of code at the current indent level or just a newline if
22 code.Substitute().
31 """Returns True if the Code object is empty.
36 """Concatenate another Code object onto this one. Trailing whitespace is
39 Appends the code at the current indent level. Will fail if there are any
43 if not isinstance(obj, Code)
    [all...]
code_test.py 3 # Use of this source code is governed by a BSD-style license that can be
6 from code import Code
11 c = Code()
16 c = Code()
40 b = Code()
45 c = Code()
59 d = Code()
60 a = Code()
74 c = Code()
    [all...]
cpp_util.py 2 # Use of this source code is governed by a BSD-style license that can be
5 """Utilies and constants specific to Chromium C++ code.
8 from code import Code
16 // Use of this source code is governed by a BSD-style license that can be
38 """Returns the C++ code for retrieving a fundamental type from a
102 c = Code()
110 c = Code()

Completed in 667 milliseconds

1 2 3 4 5 6 7 8