Searched refs:index (Results 176 - 200 of 8369) sorted by relevance

1234567891011>>

/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
H A DKvmSerializable.java38 * Get the property at the given index
40 Object getProperty(int index); argument
48 * Sets the property with the given index to the given value.
50 * @param index
51 * the index to be set
55 void setProperty(int index, Object value); argument
60 * @param index
61 * the index to be queried
66 * property with the given index.
68 void getPropertyInfo(int index, Hashtabl argument
[all...]
/external/libunwind/src/unwind/
H A DGetGR.c29 _Unwind_GetGR (struct _Unwind_Context *context, int index) argument
33 if (index == UNW_REG_SP && context->end_of_stack)
38 unw_get_reg (&context->cursor, index, &val);
/external/oj-libjdwp/src/share/back/
H A DeventFilter.h34 jint index, jint exprID);
36 jint index, jint count);
38 jint index, jthread thread);
40 jint index,
45 jint index,
49 jint index,
52 jint index,
57 jint index,
60 jint index,
63 jint index,
[all...]
/external/parameter-framework/upstream/parameter/
H A DElementLibrarySet.cpp47 CElementLibrary *CElementLibrarySet::getElementLibrary(size_t index) const
49 assert(index <= _elementLibraryArray.size());
51 return _elementLibraryArray[index];
/external/pdfium/fxjs/
H A Dcfxjse_arguments.cpp24 std::unique_ptr<CFXJSE_Value> CFXJSE_Arguments::GetValue(int32_t index) const {
26 pArgValue->ForceSetValue((*m_pInfo)[index]);
30 bool CFXJSE_Arguments::GetBoolean(int32_t index) const {
31 return (*m_pInfo)[index]->BooleanValue();
34 int32_t CFXJSE_Arguments::GetInt32(int32_t index) const {
35 return static_cast<int32_t>((*m_pInfo)[index]->NumberValue());
38 float CFXJSE_Arguments::GetFloat(int32_t index) const {
39 return static_cast<float>((*m_pInfo)[index]->NumberValue());
42 ByteString CFXJSE_Arguments::GetUTF8String(int32_t index) const {
43 v8::Local<v8::String> hString = (*m_pInfo)[index]
48 GetObject(int32_t index, CFXJSE_Class* pClass) const argument
[all...]
/external/proguard/src/proguard/classfile/attribute/annotation/
H A DTypeAnnotationsAttribute.java59 for (int index = 0; index < u2annotationsCount; index++)
63 typeAnnotationVisitor.visitTypeAnnotation(clazz, annotations[index]);
75 for (int index = 0; index < u2annotationsCount; index++)
79 typeAnnotationVisitor.visitTypeAnnotation(clazz, field, annotations[index]);
91 for (int index = 0; index < u2annotationsCoun
[all...]
/external/sfntly/cpp/src/sfntly/data/
H A Dgrowable_memory_byte_array.cc42 void GrowableMemoryByteArray::InternalPut(int32_t index, byte_t b) { argument
43 if ((size_t)index >= b_.size()) {
44 b_.resize((size_t)(index + 1));
46 b_[index] = b;
49 int32_t GrowableMemoryByteArray::InternalPut(int32_t index, argument
53 if ((size_t)index + length >= b_.size()) {
56 b_.resize((size_t)(index + length + 1));
58 std::copy(b + offset, b + offset + length, b_.begin() + index);
62 byte_t GrowableMemoryByteArray::InternalGet(int32_t index) { argument
63 return b_[index];
66 InternalGet(int32_t index, byte_t* b, int32_t offset, int32_t length) argument
[all...]
H A Dwritable_font_data.cc57 int32_t WritableFontData::WriteByte(int32_t index, byte_t b) { argument
58 array_->Put(BoundOffset(index), b);
62 int32_t WritableFontData::WriteBytes(int32_t index, argument
66 return array_->Put(BoundOffset(index),
69 BoundLength(index, length));
72 int32_t WritableFontData::WriteBytes(int32_t index, ByteVector* b) { argument
74 return WriteBytes(index, &((*b)[0]), 0, b->size());
77 int32_t WritableFontData::WriteBytesPad(int32_t index, argument
83 array_->Put(BoundOffset(index),
86 BoundLength(index,
92 WritePadding(int32_t index, int32_t count) argument
96 WritePadding(int32_t index, int32_t count, byte_t pad) argument
104 WriteChar(int32_t index, byte_t c) argument
108 WriteUShort(int32_t index, int32_t us) argument
114 WriteUShortLE(int32_t index, int32_t us) argument
120 WriteShort(int32_t index, int32_t s) argument
124 WriteUInt24(int32_t index, int32_t ui) argument
131 WriteULong(int32_t index, int64_t ul) argument
139 WriteULongLE(int32_t index, int64_t ul) argument
147 WriteLong(int32_t index, int64_t l) argument
151 WriteFixed(int32_t index, int32_t f) argument
155 WriteDateTime(int32_t index, int64_t date) argument
[all...]
/external/skia/src/core/
H A DSkPtrRecorder.cpp33 int index = SkTSearch<Pair, Less>(fList.begin(), count, pair, sizeof(pair)); local
34 if (index < 0) {
37 return fList[index].fIndex;
49 int index = SkTSearch<Pair, Less>(fList.begin(), count, pair, sizeof(pair)); local
50 if (index < 0) {
51 index = ~index; // turn it back into an index for insertion
54 *fList.insert(index) = pair;
57 return fList[index]
68 int index = p[i].fIndex - 1; local
[all...]
H A DSkTDPQueue.h18 * Optionally objects may know their index into the priority queue. The queue will update the index
22 * afterwards. In debug builds the index will be set to -1 before an element is removed from the
65 int index = fArray.count(); local
68 this->percolateUpIfNecessary(index);
75 int index = *INDEX(entry); local
76 SkASSERT(index >= 0 && index < fArray.count());
78 SkDEBUGCODE(*INDEX(fArray[index]) = -1;)
79 if (index
95 int index = *INDEX(entry); local
123 percolateUpOrDown(int index) argument
131 percolateUpIfNecessary(int index) argument
153 percolateDownIfNecessary(int index) argument
191 setIndex(int index) argument
[all...]
/external/skqp/src/core/
H A DSkPtrRecorder.cpp33 int index = SkTSearch<Pair, Less>(fList.begin(), count, pair, sizeof(pair)); local
34 if (index < 0) {
37 return fList[index].fIndex;
49 int index = SkTSearch<Pair, Less>(fList.begin(), count, pair, sizeof(pair)); local
50 if (index < 0) {
51 index = ~index; // turn it back into an index for insertion
54 *fList.insert(index) = pair;
57 return fList[index]
68 int index = p[i].fIndex - 1; local
[all...]
H A DSkTDPQueue.h18 * Optionally objects may know their index into the priority queue. The queue will update the index
22 * afterwards. In debug builds the index will be set to -1 before an element is removed from the
65 int index = fArray.count(); local
68 this->percolateUpIfNecessary(index);
75 int index = *INDEX(entry); local
76 SkASSERT(index >= 0 && index < fArray.count());
78 SkDEBUGCODE(*INDEX(fArray[index]) = -1;)
79 if (index
95 int index = *INDEX(entry); local
123 percolateUpOrDown(int index) argument
131 percolateUpIfNecessary(int index) argument
153 percolateDownIfNecessary(int index) argument
191 setIndex(int index) argument
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/util/
H A DParamUtil.java40 private static int findTypeEnd(@Nonnull String str, int index) { argument
41 char c = str.charAt(index);
51 return index+1;
53 while (str.charAt(index++) != ';') {}
54 return index;
56 while (str.charAt(index++) != '[') {}
57 return findTypeEnd(str, index);
70 private int index = 0;
73 return index < params.length();
77 int end = findTypeEnd(params, index);
[all...]
/external/v8/tools/foozzie/
H A Dv8_mock.js17 var index = 0
19 index = (index + 1) % 10;
20 return index / 10.0;
26 var index = 0
29 index = (index + 1) % 10
30 mockDate = mockDate + index + 1
86 var index = 0;
99 index
[all...]
/external/libxcam/xcore/interface/
H A Dblender.cpp58 Blender::set_input_valid_area (const Rect &area, uint32_t index) argument
60 XCAM_ASSERT (index < XCAM_BLENDER_IMAGE_NUM);
61 _input_valid_area[index] = area;
64 _input_valid_area[index].pos_x = XCAM_ALIGN_DOWN (_input_valid_area[index].pos_x, alignmend_x);
65 _input_valid_area[index].width = XCAM_ALIGN_UP (_input_valid_area[index].width, alignmend_x);
69 index, _input_valid_area[index].pos_x, _input_valid_area[index]
[all...]
/external/deqp/framework/opengl/
H A DgluProgramInterfaceQuery.cpp33 deUint32 getProgramResourceUint (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, deUint32 queryParam) argument
36 gl.getProgramResourceiv(program, programInterface, index, 1, &queryParam, 1, DE_NULL, (int*)&value);
41 void getProgramResourceName (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, std::string& dst) argument
43 const int length = getProgramResourceInt(gl, program, programInterface, index, GL_NAME_LENGTH);
48 gl.getProgramResourceName(program, programInterface, index, (int)buf.size(), DE_NULL, &buf[0]);
56 msg << "Empty name returned for " << programInterface << " at index " << index; local
61 static void getProgramInterfaceActiveVariables (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, std::vector<int>& activeVariables) argument
63 const int numActiveVariables = getProgramResourceInt(gl, program, programInterface, index, GL_NUM_ACTIVE_VARIABLES);
69 gl.getProgramResourceiv(program, programInterface, index,
74 getProgramInterfaceBlockInfo(const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, InterfaceBlockInfo& info) argument
86 getProgramInterfaceVariableInfo(const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, InterfaceVariableInfo& info) argument
[all...]
/external/swiftshader/third_party/LLVM/utils/TableGen/
H A DX86DisassemblerTables.cpp211 uint16_t index;
213 for (index = 0; index < 256; ++index) {
214 if (decision.instructionIDs[index] != decision.instructionIDs[0])
217 if (((index & 0xc0) == 0xc0) &&
218 (decision.instructionIDs[index] != decision.instructionIDs[0xc0]))
221 if (((index & 0xc0) != 0xc0) &&
222 (decision.instructionIDs[index] != decision.instructionIDs[0x00]))
296 uint16_t index;
[all...]
/external/proguard/src/proguard/classfile/editor/
H A DInterfaceSorter.java59 for (int index = 1; index < interfacesCount; index++)
61 Clazz interfaceClass = programClass.getInterface(index);
62 if (interfaces[index] == interfaces[index - 1])
70 delete[index] = true;
117 for (int index = 0; index < count; index
[all...]
/external/proguard/src/proguard/classfile/
H A DProgramClass.java72 * Returns the Constant at the given index in the constant pool.
102 public String getInterfaceName(int index) argument
104 return getClassName(u2interfaces[index]);
120 throw ((IllegalStateException)new IllegalStateException("Expected Utf8Constant at index ["+constantIndex+"] in class ["+getName()+"]").initCause(ex));
132 throw ((IllegalStateException)new IllegalStateException("Expected StringConstant at index ["+constantIndex+"] in class ["+getName()+"]").initCause(ex));
144 throw ((IllegalStateException)new IllegalStateException("Expected ClassConstant at index ["+constantIndex+"] in class ["+getName()+"]").initCause(ex));
156 throw ((IllegalStateException)new IllegalStateException("Expected NameAndTypeConstant at index ["+constantIndex+"] in class ["+getName()+"]").initCause(ex));
168 throw ((IllegalStateException)new IllegalStateException("Expected NameAndTypeConstant at index ["+constantIndex+"] in class ["+getName()+"]").initCause(ex));
181 throw ((IllegalStateException)new IllegalStateException("Expected RefConstant at index ["+constantIndex+"] in class ["+getName()+"]").initCause(ex));
193 throw ((IllegalStateException)new IllegalStateException("Expected RefConstant at index ["
236 getInterface(int index) argument
463 constantPoolEntryAccept(int index, ConstantVisitor constantVisitor) argument
[all...]
H A DLibraryClass.java104 public String getInterfaceName(int index) argument
106 return interfaceNames[index];
180 public Clazz getInterface(int index) argument
182 return interfaceClasses[index];
225 for (int index = 0; index < interfaceClasses.length; index++)
227 Clazz interfaceClass = interfaceClasses[index];
255 for (int index = 0; index < interfaceClasse
440 constantPoolEntryAccept(int index, ConstantVisitor constantVisitor) argument
[all...]
H A DLibraryMethod.java74 for (int index = 0; index < referencedClasses.length; index++)
76 if (referencedClasses[index] != null)
78 referencedClasses[index].accept(classVisitor);
/external/dng_sdk/source/
H A Ddng_string_list.h48 dng_string & operator[] (uint32 index) argument
50 return *(fList [index]);
53 const dng_string & operator[] (uint32 index) const
55 return *(fList [index]);
60 void Insert (uint32 index,
/external/libcap/libcap/
H A D_makenames.c18 int index; member in struct:__anon10761
31 for ( i=0; list[i].index >= 0 && list[i].name; ++i ) {
32 if (maxcaps <= list[i].index) {
33 maxcaps = list[i].index + 1;
35 pointers[list[i].index] = list[i].name;
/external/proguard/src/proguard/classfile/attribute/
H A DMethodParametersAttribute.java73 for (int index = 0; index < u1parametersCount; index++)
77 parameterInfoVisitor.visitParameterInfo(clazz, method, index, parameters[index]);
/external/proguard/src/proguard/util/
H A DListMatcher.java55 for (int index = 0; index < matchers.length; index++)
57 StringMatcher matcher = matchers[index];
61 !negate[index];

Completed in 684 milliseconds

1234567891011>>