/libcore/luni/src/main/java/java/util/ |
BitSet.java | 167 int arrayIndex = index / 64; 168 if (arrayIndex >= longCount) { 171 return (bits[arrayIndex] & (1L << index)) != 0; 183 int arrayIndex = index / 64; 184 if (arrayIndex >= bits.length) { 185 ensureCapacity(arrayIndex + 1); 187 bits[arrayIndex] |= (1L << index); 188 longCount = Math.max(longCount, arrayIndex + 1); 200 int arrayIndex = index / 64; 201 if (arrayIndex >= longCount) [all...] |
/external/webkit/Source/WebCore/css/ |
CSSSelectorList.cpp | 66 size_t arrayIndex = 0; 72 move(selector.release(), &m_selectorArray[arrayIndex]); 73 ASSERT(!m_selectorArray[arrayIndex].isLastInSelectorList()); 75 m_selectorArray[arrayIndex].setNotLastInTagHistory(); 76 ++arrayIndex; 78 ASSERT(m_selectorArray[arrayIndex - 1].isLastInTagHistory()); 80 ASSERT(flattenedSize == arrayIndex); 81 m_selectorArray[arrayIndex - 1].setLastInSelectorList();
|
/frameworks/base/drm/java/android/drm/ |
DrmUtils.java | 133 private int readByte(byte[] constraintData, int arrayIndex) { 135 return (int)constraintData[arrayIndex]; 139 byte[] constraintData, int numberOfBytes, int arrayIndex) { 141 for (int j = arrayIndex, i = 0; j < arrayIndex + numberOfBytes; j++,i++) {
|
/development/tools/emulator/opengl/host/libs/Translator/GLES_V2/ |
GLESv2Validate.h | 35 static bool arrayIndex(GLEScontext * ctx,GLuint index);
|
GLESv2Validate.cpp | 140 bool GLESv2Validate::arrayIndex(GLEScontext * ctx,GLuint index) {
|
GLESv2Imp.cpp | 552 SET_ERROR_IF((!GLESv2Validate::arrayIndex(ctx,index)),GL_INVALID_VALUE); 628 SET_ERROR_IF(!(GLESv2Validate::arrayIndex(ctx,index)),GL_INVALID_VALUE); [all...] |
/external/webkit/Source/JavaScriptCore/qt/api/ |
qscriptvalue.h | 94 QScriptValue property(quint32 arrayIndex, const ResolveFlags& mode = ResolvePrototype) const; 97 void setProperty(quint32 arrayIndex, const QScriptValue& value, const PropertyFlags& flags = KeepExistingFlags);
|
qscriptvalue.cpp | 705 Returns the property at the given \a arrayIndex, using the given \a 713 arrayIndex. 715 QScriptValue QScriptValue::property(quint32 arrayIndex, const ResolveFlags& mode) const 717 return QScriptValuePrivate::get(d_ptr->property(arrayIndex, mode)); 752 Sets the property at the given \a arrayIndex to the given \a value. 759 arrayIndex. 761 void QScriptValue::setProperty(quint32 arrayIndex, const QScriptValue& value, const PropertyFlags& flags) 763 d_ptr->setProperty(arrayIndex, QScriptValuePrivate::get(value), flags);
|
qscriptvalue_p.h | 129 inline QScriptValuePrivate* property(quint32 arrayIndex, const QScriptValue::ResolveFlags& mode); 893 inline QScriptValuePrivate* QScriptValuePrivate::property(quint32 arrayIndex, const QScriptValue::ResolveFlags& mode) 895 return property<quint32>(arrayIndex, mode); 972 inline void QScriptValuePrivate::setProperty(quint32 arrayIndex, QScriptValuePrivate* value, const QScriptValue::PropertyFlags& flags) 974 setProperty<quint32>(arrayIndex, value, flags); [all...] |
/packages/apps/Email/emailcommon/src/com/android/emailcommon/ |
TrafficFlags.java | 71 int protocolIndex = Utility.arrayIndex(PROTOCOLS, account.getProtocol(context)); 83 int protocolIndex = Utility.arrayIndex(PROTOCOLS, account.getProtocol(context));
|
/external/webkit/Source/WebCore/platform/graphics/ca/win/ |
PlatformCALayerWinInternal.cpp | 231 for (size_t arrayIndex = layersToSkip; arrayIndex < count; ++arrayIndex) 232 list[arrayIndex - layersToSkip] = PlatformCALayer::platformCALayer(const_cast<void*>(CFArrayGetValueAtIndex(sublayers, arrayIndex)));
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
Settings.java | 282 final int arrayIndex = Integer.valueOf(currentAutoCorrectionSetting); 283 if (arrayIndex >= 0 && arrayIndex < autoCorrectionThresholdValues.length) { 285 autoCorrectionThresholdValues[arrayIndex]); [all...] |
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
CharInfo.java | 573 private static int arrayIndex(int i) { 594 int[] arr = new int[arrayIndex(max - 1) + 1];
|
/external/proguard/src/proguard/evaluation/ |
Processor.java | 145 IntegerValue arrayIndex = stack.ipop(); 147 stack.push(arrayReference.arrayLoad(arrayIndex, valueFactory)); [all...] |
/external/clang/lib/CodeGen/ |
CGClass.cpp | 425 llvm::Value *ArrayIndex = CGF.Builder.CreateLoad(ArrayIndexVar); 426 Dest = CGF.Builder.CreateInBoundsGEP(Dest, ArrayIndex, "destaddress"); 427 llvm::Value *Next = llvm::ConstantInt::get(ArrayIndex->getType(), 1); 428 Next = CGF.Builder.CreateAdd(ArrayIndex, Next, "inc"); [all...] |
/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/ |
Program.cpp | [all...] |
/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/ |
Utility.java | 122 int index = arrayIndex(a, o); 126 public final static int arrayIndex(Object[] a, Object o) { [all...] |
/external/mksh/src/ |
eval.c | 1060 arrayindex(vp)) : 1085 arrayindex(xp->var)); [all...] |
sh.h | 959 #define arrayindex(vp) ((unsigned long)((vp)->flag & AINDEX ? \ macro [all...] |
funcs.c | 1171 arrayindex(vp)); [all...] |