HomeSort by relevance Sort by last modified time
    Searched defs:size (Results 1026 - 1050 of 11184) sorted by null

<<41424344454647484950>>

  /cts/tools/dex-tools/src/dex/reader/
DexEncodedAnnotationImpl.java 51 int size = buffer.readUleb128(); local
52 values = new ArrayList<DexAnnotationAttribute>(size);
53 for (int j = 0; j < size; j++) {
DexParameterImpl.java 52 final int size = buffer.readUInt(); local
53 for (int i = 0; i < size; i++) {
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
OutputCollector.java 110 int size = suffix.size(); local
112 for (int i = 0; i < size; i++) {
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
StdConstantPool.java 35 * @param size the size of the pool; this corresponds to the
37 * always at least one more than the actual size of the constant pool,
40 public StdConstantPool(int size) {
41 super(size > 1);
43 if (size < 1) {
44 throw new IllegalArgumentException("size < 1");
47 entries = new Constant[size];
51 public int size() { method in class:StdConstantPool
93 * @param n {@code >= 1, < size();} which entr
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
OutputCollector.java 51 * @param paramSize size, in register units, of all the parameters for this method
113 int size = suffix.size(); local
115 for (int i = 0; i < size; i++) {
  /dalvik/dx/src/com/android/dx/rop/cst/
StdConstantPool.java 35 * @param size the size of the pool; this corresponds to the
37 * always at least one more than the actual size of the constant pool,
40 public StdConstantPool(int size) {
41 super(size > 1);
43 if (size < 1) {
44 throw new IllegalArgumentException("size < 1");
47 entries = new Constant[size];
51 public int size() { method in class:StdConstantPool
102 * @param n {@code >= 1, < size();} which entr
    [all...]
  /developers/build/prebuilts/gradle/Quiz/Application/src/main/java/com/example/android/wearable/quiz/
JsonUtils.java 40 int size = is.available(); local
41 byte[] buffer = new byte[size];
  /developers/build/prebuilts/gradle/RecipeAssistant/Application/src/main/java/com/example/android/wearable/recipeassistant/
AssetUtils.java 37 int size = is.available(); local
38 buffer = new byte[size];
  /developers/samples/android/wearable/wear/Quiz/Application/src/main/java/com/example/android/wearable/quiz/
JsonUtils.java 40 int size = is.available(); local
41 byte[] buffer = new byte[size];
  /developers/samples/android/wearable/wear/RecipeAssistant/Application/src/main/java/com/example/android/wearable/recipeassistant/
AssetUtils.java 37 int size = is.available(); local
38 buffer = new byte[size];
  /development/ndk/platforms/android-21/arch-arm64/include/asm/
sigcontext.h 35 __u32 size; member in struct:_aarch64_ctx
  /development/ndk/platforms/android-21/include/linux/
hidraw.h 25 __u32 size; member in struct:hidraw_report_descriptor
i2c-dev.h 39 __u32 size; member in struct:i2c_smbus_ioctl_data
  /development/samples/browseable/Quiz/Application/src/com.example.android.wearable.quiz/
JsonUtils.java 40 int size = is.available(); local
41 byte[] buffer = new byte[size];
  /development/samples/browseable/RecipeAssistant/Application/src/com.example.android.wearable.recipeassistant/
AssetUtils.java 37 int size = is.available(); local
38 buffer = new byte[size];
  /device/asus/fugu/kernel-headers/linux/sound/
intel_sst_ioctl.h 29 __u32 size; member in struct:snd_ppp_params
40 __u8 size; member in struct:snd_sst_tuning_params
  /device/asus/fugu/original-kernel-headers/linux/sound/
intel_sst_ioctl.h 41 __u32 size; /*Size of parameters for all blocks*/ member in struct:snd_ppp_params
52 __u8 size; member in struct:snd_sst_tuning_params
  /external/ImageMagick/Magick++/lib/
Pixels.cpp 140 ::ssize_t Magick::PixelData::size(void) const function in class:Magick::PixelData
150 size; local
164 size=sizeof(unsigned char);
167 size=sizeof(double);
170 size=sizeof(float);
173 size=sizeof(unsigned int);
176 size=sizeof(MagickSizeType);
179 size=sizeof(Quantum);
182 size=sizeof(unsigned short);
190 _size=_length*size;
    [all...]
  /external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/xy/
SimpleXYSeriesTest.java 94 assertEquals(8, series.getY(series.size()-1));
95 assertEquals(4, series.getX(series.size()-1));
104 assertEquals(33, series.getY(series.size()-1));
105 assertEquals(22, series.getX(series.size()-1));
119 int size = series.size(); local
124 // make sure size has not changed:
125 assertEquals(size, series.size());
130 // make sure size has not changed:
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/
IntArray.java 65 public int size() { method in class:IntArray
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
ANTLRStringStream.pm 139 sub size { subroutine
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
IntSet.java 63 /** Return the size of this set (not the underlying implementation's
64 * allocated memory size, for example).
66 int size(); method in interface:IntSet
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/
SimpleVectorialPointChecker.java 81 final double size = FastMath.max(FastMath.abs(pi), FastMath.abs(ci)); local
82 if ((difference > (size * relativeThreshold)) &&
SimpleVectorialValueChecker.java 81 final double size = FastMath.max(FastMath.abs(pi), FastMath.abs(ci)); local
82 if ((difference > (size * relativeThreshold)) &&
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
Counter.java 116 int n = m_countNodes.size();
153 int size = m_countNodes.size(); local
155 return (size > 0) ? m_countNodes.elementAt(size - 1) : DTM.NULL;

Completed in 834 milliseconds

<<41424344454647484950>>