HomeSort by relevance Sort by last modified time
    Searched refs:Virtual (Results 1 - 13 of 13) sorted by null

  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
InlineMethodResolver.java 37 import static org.jf.dexlib.Code.Analysis.DeodexUtil.Virtual;
63 deodexUtil.new InlineMethod(Virtual, "Ljava/lang/String;", "charAt", "I", "C"),
64 deodexUtil.new InlineMethod(Virtual, "Ljava/lang/String;", "compareTo", "Ljava/lang/String;", "I"),
65 deodexUtil.new InlineMethod(Virtual, "Ljava/lang/String;", "equals", "Ljava/lang/Object;", "Z"),
66 deodexUtil.new InlineMethod(Virtual, "Ljava/lang/String;", "length", "", "I"),
107 indexOfIMethod = deodexUtil.new InlineMethod(Virtual, "Ljava/lang/String;", "indexOf", "I", "I");
108 indexOfIIMethod = deodexUtil.new InlineMethod(Virtual, "Ljava/lang/String;", "indexOf", "II", "I");
112 isEmptyMethod = deodexUtil.new InlineMethod(Virtual, "Ljava/lang/String;", "isEmpty", "", "Z");
116 deodexUtil.new InlineMethod(Virtual, "Ljava/lang/String;", "charAt", "I", "C"),
117 deodexUtil.new InlineMethod(Virtual, "Ljava/lang/String;", "compareTo", "Ljava/lang/String;", "I")
    [all...]
DeodexUtil.java 39 public static final int Virtual = 0;
MethodAnalyzer.java     [all...]
  /external/clang/test/CXX/class/class.union/
p1.cpp 9 class Virtual {
10 virtual void foo() { abort(); } // expected-note 4 {{because type 'Virtual' has a virtual member function}}
13 class VirtualBase : virtual Okay { // expected-note 4 {{because type 'VirtualBase' has a virtual base class}}
40 Virtual v; // expected-error {{union member 'v' has a non-trivial copy constructor}}
53 Virtual v; // expected-note {{because type 'U2::<anonymous struct}}
79 struct s1 : Virtual { // expected-note {{because type 'U3::s1' has a base class with a non-trivial copy constructor}}
118 Either<int,Virtual> virt(0); // expected-note {{in instantiation of template}
    [all...]
  /frameworks/base/data/keyboards/
common.mk 33 Virtual.kcm \
  /external/clang/lib/CodeGen/
CGClass.cpp 37 assert(!Base->isVirtual() && "Should not see virtual bases here!");
73 /// This should only be used for (1) non-virtual bases or (2) virtual bases
87 // Compute the offset of the virtual base.
109 CharUnits NonVirtual, llvm::Value *Virtual) {
119 if (Virtual) {
121 BaseOffset = CGF.Builder.CreateAdd(Virtual, NonVirtualOffset);
123 BaseOffset = Virtual;
145 // Get the virtual base.
276 /// base constructor/destructor with virtual bases
    [all...]
  /external/clang/include/clang/AST/
DeclCXX.h 112 virtual void anchor();
156 /// base class, whether it is a virtual or non-virtual base, and what
163 /// class C : public virtual A, protected B { };
167 /// virtual A" and the other for "protected B".
170 /// specifier, including the "virtual" (if present) and access
178 /// Virtual - Whether this is a virtual base class or not.
179 bool Virtual : 1;
199 /// "virtual" or access specifier
    [all...]
  /external/clang/lib/AST/
ItaniumMangle.cpp 256 void mangleCallOffset(int64_t NonVirtual, int64_t Virtual);
711 void CXXNameMangler::mangleCallOffset(int64_t NonVirtual, int64_t Virtual) {
714 // <nv-offset> ::= <offset number> # non-virtual base override
715 // <v-offset> ::= <offset number> _ <virtual offset number>
716 // # virtual base override, with vcall offset
717 if (!Virtual) {
727 mangleNumber(Virtual);
    [all...]
ExprConstant.cpp 87 /// Determine whether this LValue path entry for a base class names a virtual
216 void addDeclUnchecked(const Decl *D, bool Virtual = false) {
218 APValue::BaseOrMemberType Value(D, Virtual);
756 const Decl *D, bool Virtual = false) {
758 Designator.addDeclUnchecked(D, Virtual);
    [all...]
  /external/oprofile/events/i386/nehalem/
events 55 event:0x4F counters:0,1,2,3 um:ept minimum:6000 name:EPT : Counts Extended Page Directory Entry accesses. The Extended Page Directory cache is used by Virtual Machine operating systems while the guest operating systems use the standard TLB caches.
  /external/oprofile/events/mips/74K/
events 120 event:0x41a counters:1,3 um:zero minimum:500 name:VA_TRANSALTION_CORNER_CASES : 26-1 Virtual memory address translation synonyms, homonyms, and aliases (loads/stores treated as miss in the cache)
  /external/clang/lib/Sema/
SemaDeclCXX.cpp 690 // - the class shall not have any virtual base classes;
708 // - it shall not be virtual;
713 // If it's not obvious why this function is virtual, find an overridden
714 // function which uses the 'virtual' keyword.
    [all...]
  /external/clang/include/clang/Sema/
Sema.h 272 /// emitted a list of pure virtual functions. Used to prevent emitting the
    [all...]

Completed in 466 milliseconds