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

1 2 3 4 5 6 7 8 91011>>

  /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;
  /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;
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;
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;
MultiOffsetInstruction.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;
OffsetInstruction.java 9 * 1. Redistributions of source code must retain the above copyright
29 package org.jf.dexlib.Code;
  /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/lzma/Java/SevenZip/Compression/RangeCoder/
Decoder.java 13 int Code;
29 Code = 0;
32 Code = (Code << 8) | Stream.read();
41 int t = ((Code - Range) >>> 31);
42 Code -= Range & (t - 1);
47 Code = (Code << 8) | Stream.read();
58 if ((Code ^ 0x80000000) < (newBound ^ 0x80000000))
64 Code = (Code << 8) | Stream.read();
    [all...]
  /external/proguard/examples/dictionaries/
compact.txt 9 Code
  /external/smack/src/org/xbill/DNS/
NSIDOption.java 17 super(EDNSOption.Code.NSID);
26 super(EDNSOption.Code.NSID, data);
  /prebuilts/tools/common/proguard/proguard4.7/examples/dictionaries/
compact.txt 9 Code
  /external/clang/lib/ASTMatchers/Dynamic/
Parser.cpp 59 : Code(MatcherCode), StartOfLine(MatcherCode), Line(1), Error(Error) {
81 if (Code.empty()) {
87 switch (Code[0]) {
90 Result.Text = Code.substr(0, 1);
91 Code = Code.drop_front();
95 Result.Text = Code.substr(0, 1);
96 Code = Code.drop_front();
100 Result.Text = Code.substr(0, 1)
    [all...]
  /external/clang/unittests/ASTMatchers/
ASTMatchersTest.h 53 testing::AssertionResult matchesConditionally(const std::string &Code,
63 if (!runToolOnCodeWithArgs(Factory->create(), Code, Args)) {
64 return testing::AssertionFailure() << "Parsing error in \"" << Code << "\"";
68 << "Could not find match in \"" << Code << "\"";
71 << "Found unexpected match in \"" << Code << "\"";
77 testing::AssertionResult matches(const std::string &Code, const T &AMatcher) {
78 return matchesConditionally(Code, AMatcher, true, "-std=c++11");
82 testing::AssertionResult notMatches(const std::string &Code,
84 return matchesConditionally(Code, AMatcher, false, "-std=c++11");
89 matchAndVerifyResultConditionally(const std::string &Code, const T &AMatcher
    [all...]
  /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/chromium_org/v8/src/
stub-cache.h 6 // * Redistributions of source code must retain the above copyright
33 #include "code-stubs.h"
44 // It maps (map, name, type)->Code*
72 Code* value;
81 Handle<Code> FindIC(Handle<Name> name,
83 Code::Kind kind,
84 Code::StubType type,
85 Code::ExtraICState extra_state = Code::kNoExtraICState);
87 Handle<Code> FindIC(Handle<Name> name
    [all...]
  /external/v8/src/
builtins.h 6 // * Redistributions of source code must retain the above copyright
69 Code::kNoExtraICState) \
71 Code::kNoExtraICState) \
73 Code::kNoExtraICState) \
75 Code::kNoExtraICState) \
77 Code::kNoExtraICState) \
79 Code::kNoExtraICState) \
81 Code::kNoExtraICState) \
83 Code::kNoExtraICState) \
85 Code::kNoExtraICState)
    [all...]

Completed in 335 milliseconds

1 2 3 4 5 6 7 8 91011>>