Searched defs:index (Results 151 - 175 of 2240) sorted by relevance

1234567891011>>

/external/jmonkeyengine/engine/src/core/com/jme3/cinematic/
H A DKeyFrame.java47 private int index; field in class:KeyFrame
67 oc.write(index, "index", 0);
73 index=ic.readInt("index", 0);
77 return index;
80 public void setIndex(int index) { argument
81 this.index = index;
/external/jmonkeyengine/engine/src/lwjgl/com/jme3/renderer/lwjgl/
H A DTextureUtil.java170 int index,
178 if (index >= 0 && img.getData() != null && img.getData().size() > 0){
179 data = img.getData(index);
459 if (index == -1){
475 index, // zoffset
168 uploadTexture(Image img, int target, int index, int border, boolean tdc) argument
/external/jmonkeyengine/engine/src/test/jme3test/network/
H A DMovingAverage.java40 private int count, index; field in class:MovingAverage
47 sum = sum - samples[index] + sample;
48 samples[index++] = sample;
49 if (index > count){
50 count = index;
52 if (index >= samples.length){
53 index = 0;
/external/junit/src/org/junit/internal/
H A DArrayComparisonFailure.java24 * @param index the array position of the objects that are not equal.
27 public ArrayComparisonFailure(String message, AssertionError cause, int index) { argument
30 addDimension(index);
33 public void addDimension(int index) { argument
34 fIndices.add(0, index);
/external/kernel-headers/original/linux/
H A Dseq_file.h20 loff_t index; member in struct:seq_file
/external/llvm/include/llvm/CodeGen/PBQP/
H A DMath.h60 PBQPNum& operator[](unsigned index) { argument
61 assert(index < length && "Vector element access out of bounds.");
62 return data[index];
66 const PBQPNum& operator[](unsigned index) const {
67 assert(index < length && "Vector element access out of bounds.");
68 return data[index];
85 /// \brief Returns the index of the minimum value in this vector
/external/llvm/lib/CodeGen/
H A DSlotIndexes.cpp23 "Slot index numbering", false, false)
44 // Grab an iterator to the start of the index list.
48 // At each iteration assert that the instruction pointed to in the index
66 unsigned index = 0; local
70 indexList.push_back(createEntry(0, index));
77 // Insert an index for the MBB start.
86 // Insert a store index for the instr.
87 indexList.push_back(createEntry(mi, index += SlotIndex::InstrDist));
89 // Save this base index in the maps.
97 indexList.push_back(createEntry(0, index
119 unsigned index = 0; local
136 unsigned index = startItr->getIndex(); local
[all...]
/external/mdnsresponder/mDNSPosix/
H A DmDNSPosix.h44 int index; member in struct:PosixNetworkInterface
/external/openssl/crypto/
H A DLPdir_win.c78 size_t index = 0,len_0 = strlen(directory) + 1; local
92 for (index = 0; index < len_0; index++)
93 wdir[index] = (TCHAR)directory[index];
121 size_t index, len_0 = 0; local
130 for (index = 0; index < len_0; index
[all...]
/external/oprofile/libdb/
H A Ddb_debug.c26 odb_index_t index = data->hash_base[pos]; local
27 if (index && !do_abort) {
28 while (index) {
29 if (bitmap[index])
32 bitmap[index] = 1;
33 index = data->node_base[index].next;
43 index = data->hash_base[pos];
44 while (index) {
45 printf("%d ", index);
99 odb_index_t index = data->hash_base[pos]; local
[all...]
H A Ddb_insert.c25 odb_index_t index; local
42 index = odb_do_hash(data, key);
43 node->next = data->hash_base[index];
44 data->hash_base[index] = new_node;
61 odb_index_t index; local
66 index = data->hash_base[odb_do_hash(data, key)];
67 while (index) {
68 node = &data->node_base[index];
99 index = node->next;
/external/oprofile/libutil++/
H A Dgrowable_vector.h30 * bounds index will return a default-constructed value.
32 T operator[](size_type index) const {
33 if (index >= container.size())
35 return container[index];
40 * Index into the vector for a value. If the index is larger than
41 * the current max index, the array is expanded, default-filling
44 T & operator[](size_type index) { argument
45 if (index >= container.size())
46 container.resize(index + 1);
47 return container[index];
[all...]
H A Dsparse_array.h28 T operator[](size_type index) const {
29 typename container_type::const_iterator it = container.find(index);
38 * Index into the vector for a value. If the index is larger than
39 * the current max index, a new array entry is created.
41 T & operator[](size_type index) { argument
42 return container[index];
74 * return the maximum index of the array + 1 or 0 if the array
/external/oprofile/module/
H A Dop_dcache.h73 inline static char * get_from_pool(uint index) argument
75 return op_pool_start + index;
/external/proguard/src/proguard/
H A DClassPath.java41 for (int index = 0; index < classPathEntries.size(); index++)
43 if (((ClassPathEntry)classPathEntries.get(index)).isOutput())
60 public void add(int index, ClassPathEntry classPathEntry) argument
62 classPathEntries.add(index, classPathEntry);
75 public ClassPathEntry get(int index) argument
77 return (ClassPathEntry)classPathEntries.get(index);
80 public ClassPathEntry remove(int index) argument
82 return (ClassPathEntry)classPathEntries.remove(index);
[all...]
/external/proguard/src/proguard/classfile/util/
H A DDescriptorClassEnumeration.java37 private int index; field in class:DescriptorClassEnumeration
70 index = 0;
82 return index < descriptor.length();
91 int fluffStartIndex = index;
94 loop: while (index < descriptor.length())
96 switch (descriptor.charAt(index++))
148 while (descriptor.charAt(index++) != ClassConstants.INTERNAL_TYPE_CLASS_END);
154 descriptor.charAt(index) != ClassConstants.INTERNAL_TYPE_GENERIC_END)
158 while (descriptor.charAt(index++) != ClassConstants.INTERNAL_TYPE_GENERIC_BOUND);
162 return descriptor.substring(fluffStartIndex, index);
[all...]
H A DExternalTypeEnumeration.java40 private int index; field in class:ExternalTypeEnumeration
64 index = descriptor.indexOf(ClassConstants.EXTERNAL_METHOD_ARGUMENTS_OPEN) + 1;
66 if (index < 1)
75 return index < descriptor.length() - 1;
81 int startIndex = index;
84 index = descriptor.indexOf(ClassConstants.EXTERNAL_METHOD_ARGUMENTS_SEPARATOR,
88 if (index < 0)
90 index = descriptor.indexOf(ClassConstants.EXTERNAL_METHOD_ARGUMENTS_CLOSE,
92 if (index < 0)
98 return descriptor.substring(startIndex, index
[all...]
/external/proguard/src/proguard/obfuscate/
H A DDictionaryNameFactory.java41 private int index = 0; field in class:DictionaryNameFactory
142 index = 0;
153 if (index < names.size())
156 name = (String)names.get(index++);
/external/proguard/src/proguard/util/
H A DListUtil.java46 for (int index = 0; index < list.size(); index++)
48 if (index > 0)
53 buffer.append(quotedString((String)list.get(index)));
71 int index = 0;
72 while ((index = skipWhitespace(string, index)) < string.length())
77 if (string.charAt(index) == '\'')
80 nextIndex = string.indexOf('\'', index
114 skipWhitespace(String string, int index) argument
[all...]
/external/qemu/distrib/sdl-1.2.12/src/joystick/
H A DSDL_sysjoystick.h30 Uint8 index; /* Device index */ member in struct:_SDL_Joystick
61 extern const char *SDL_SYS_JoystickName(int index);
64 The joystick to open is specified by the index field of the joystick.
/external/qemu/distrib/sdl-1.2.12/src/joystick/amigaos/
H A DSDL_sysjoystick.c89 const char *SDL_SYS_JoystickName(int index) argument
91 if(index<2&&LowLevelBase)
93 switch(index)
102 SDL_SetError("No joystick available with that index");
107 The joystick to open is specified by the index field of the joystick.
115 D(bug("Opening joystick %ld\n",joystick->index));
124 temp=ReadJoyPort(joystick->index^1); // fix to invert amiga joyports
151 if(joystick->index<2)
153 data=ReadJoyPort(joystick->index);
/external/qemu/target-arm/
H A Dhelper-android.c15 int index; local
19 for (index = 0; index < max; index += 1) {
20 cpu_physical_memory_read(ptr + index, (uint8_t*)buf + index, 1);
21 if (buf[index] == 0)
/external/qemu-pc-bios/bochs/bios/
H A Dusage.cc44 unsigned int to_read, index; local
63 index = 0;
65 retval = read(bios_file, &bios[index], to_read);
71 index += retval;
/external/replicaisland/src/com/replica/replicaisland/
H A DFixedAnimationComponent.java43 public void setAnimation(int index) { argument
44 mAnimationIndex = index;
/external/skia/include/pdf/
H A DSkBitSet.h31 /** Set the value of the index-th bit.
33 void setBit(int index, bool value);
35 /** Test if bit index is set.
37 bool isBitSet(int index) const;
53 unsigned int index = i * 32; local
56 array->push(index + j);
69 uint32_t* internalGet(int index) const {
70 SkASSERT((size_t)index < fBitCount);
71 size_t internalIndex = index / 32;

Completed in 979 milliseconds

1234567891011>>