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

1 2 3

  /external/emma/core/java12/com/vladium/jcd/cls/
IClassDefVisitor.java 21 Object visit (IConstantCollection constants, Object ctx);
AbstractClassDefVisitor.java 38 public Object visit (final IConstantCollection constants, final Object ctx)
Field_info.java 74 public Field_info (final IConstantCollection constants,
89 final Attribute_info attribute_info = Attribute_info.new_Attribute_info (constants, bytes);
Method_info.java 75 public Method_info (final IConstantCollection constants,
91 final Attribute_info attribute_info = Attribute_info.new_Attribute_info (constants, bytes);
ConstantCollection.java 204 ConstantIterator (final List/* CONSTANT_info */ constants)
206 m_constants = constants;
  /cts/tools/signature-tools/test/signature/converter/
ConvertEnumTest.java 63 Set<IEnumConstant> constants = c.getEnumConstants(); local
64 assertEquals(3, constants.size());
67 for (IEnumConstant constant : constants) {
76 // for (IEnumConstant enumConstant : constants) {
100 Set<IEnumConstant> constants = c.getEnumConstants(); local
101 assertEquals(3, constants.size());
125 Set<IEnumConstant> constants = c.getEnumConstants(); local
126 assertEquals(3, constants.size());
168 Set<IEnumConstant> constants = c.getEnumConstants(); local
169 assertEquals(2, constants.size())
    [all...]
  /external/emma/core/java12/com/vladium/jcd/cls/attribute/
Attribute_info.java 98 * @param constants constant pool for the parent class [may not be null; not validated]
105 public static Attribute_info new_Attribute_info (final IConstantCollection constants,
112 final CONSTANT_Utf8_info attribute_name = (CONSTANT_Utf8_info) constants.get (attribute_name_index);
117 return new CodeAttribute_info (constants, attribute_name_index, attribute_length, bytes);
CodeAttribute_info.java 207 CodeAttribute_info (final IConstantCollection constants,
242 Attribute_info attribute_info = Attribute_info.new_Attribute_info (constants, bytes);
  /external/webkit/WebCore/bindings/scripts/
IDLStructure.pm 37 constants => '@', # List of 'domConstant'
65 # Used to represent string constants
CodeGenerator.pm 196 . @{$interface->constants} . " constants, "
201 push(@{$dataNode->constants}, @{$interface->constants});
  /external/chromium/base/
mime_util_linux.cc 436 MimeUtilConstants* constants = Singleton<MimeUtilConstants>::get(); local
438 if (constants->last_check_time_ == 0) {
439 constants->icon_dirs_ = new std::map<FilePath, int>;
440 constants->icon_themes_ = new std::map<std::string, IconTheme*>;
442 constants->last_check_time_ = now;
446 if (now > constants->last_check_time_ + constants->kUpdateInterval) {
454 MimeUtilConstants* constants = Singleton<MimeUtilConstants>::get(); local
456 std::map<FilePath, int>* icon_dirs = constants->icon_dirs_;
457 std::vector<std::string>* icon_formats = &constants->icon_formats_
519 MimeUtilConstants* constants = Singleton<MimeUtilConstants>::get(); local
    [all...]
  /external/bluetooth/hcidump/parser/
obex.c 234 uint8_t version, flags, constants; local
289 constants = get_u8(frm);
290 printf(" flags %d constants %d\n",
291 flags, constants);
  /external/v8/tools/
js2c.py 106 def ExpandConstants(lines, constants):
107 for key, value in constants.items():
170 constants = { }
181 constants[name] = value
199 return (constants, macros)
  /external/v8/src/
disassembler.cc 125 int constants = -1; // no constants being decoded at the start local
130 if (constants > 0) {
134 constants--;
142 constants = num_const;
  /external/v8/test/mjsunit/
constant-folding.js 28 // Test operations that involve one or more constants.
29 // The code generator now handles compile-time constants specially.
32 // Test count operations involving constants
  /external/emma/core/java12/com/vladium/jcd/parser/
ClassDefParser.java 164 final IConstantCollection constants = m_table.getConstants(); local
169 constants.add (cp_info);
  /external/emma/tools/java/com/vladium/tools/
ClassDep.java 193 final IConstantCollection constants = cls.getConstants (); local
194 final IConstantCollection.IConstantIterator i = constants.iterator ();
  /frameworks/base/libs/rs/
rsProgram.cpp 244 void rsi_ProgramBindConstants(Context *rsc, RsProgram vp, uint32_t slot, RsAllocation constants)
247 p->bindAllocation(static_cast<Allocation *>(constants), slot);
rs.spec 377 param RsAllocation constants
  /build/tools/droiddoc/templates/
class.cs 17 <?cs if:subcount(cl.constants) ?>
46 <?cs if:subcount(class.constants) ?>
47 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#constants">Constants</a>
51 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#inhconstants">Inherited Constants</a>
318 <?cs if:subcount(class.constants) ?>
321 <table id="constants" class="jd-sumtable"><tr><th colspan="12">Constants</th></tr>
322 <?cs call:write_constant_summary(class.constants, 1) ?>
326 <?cs # if there are inherited constants, write the table ?
    [all...]
  /external/libvpx/vp8/common/ppc/
filter_bilinear_altivec.asm 47 ;# setup constants
177 ;# Load up permutation constants
262 ;# Load up permutation constants
348 ;# Load up permutation constants
  /external/emma/core/java12/com/vladium/emma/instr/
InstrVisitor.java 177 final IConstantCollection constants = cls.getConstants (); local
234 m_registerMethodrefIndex = constants.add (new CONSTANT_Methodref_info (class_index, nametype_index));
246 m_preclinitMethodrefIndex = constants.add (new CONSTANT_Methodref_info (cls.getThisClassIndex (), nametype_index));
251 m_classNameConstantIndex = constants.add (new CONSTANT_String_info (cls.getThisClass ().m_name_index));
302 final CONSTANT_Class_info ifc = (CONSTANT_Class_info) constants.get (interfaces.get (i));
333 final int valueIndex = constants.add (new CONSTANT_Long_info (cls.computeSUID (true))); // ignore the added <clinit>
652 5, 0, // adjust constants if the bytecode emitted above changes
    [all...]
  /external/libvpx/vp8/encoder/ppc/
variance_subpixel_altivec.asm 47 ;# setup constants
204 ;# Load up permutation constants
295 ;# Load up permutation constants
405 ;# Load up permutation constants
  /external/v8/
Android.v8common.mk 82 src/arm/constants-arm.cc \
  /frameworks/base/obex/javax/obex/
ServerSession.java 290 int constants; local
301 constants = mInput.read();

Completed in 767 milliseconds

1 2 3