HomeSort by relevance Sort by last modified time
    Searched refs:index (Results 76 - 100 of 12535) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/proguard/src/proguard/gui/splash/
CompositeSprite.java 51 for (int index = 0; index < sprites.length; index++)
53 sprites[index].paint(graphics, time);
  /external/v8/src/
platform-tls-mac.h 42 INLINE(intptr_t InternalGetExistingThreadLocal(intptr_t index));
44 inline intptr_t InternalGetExistingThreadLocal(intptr_t index) {
49 :"r"(kMacTlsBaseOffset), "r"(index));
53 :"r"(kMacTlsBaseOffset), "r"(index));
  /libcore/luni/src/main/java/java/lang/
ArrayIndexOutOfBoundsException.java 38 * {@code index}.
40 * @param index
41 * the invalid index.
43 public ArrayIndexOutOfBoundsException(int index) {
44 super("index=" + index);
62 public ArrayIndexOutOfBoundsException(int sourceLength, int index) {
63 super("length=" + sourceLength + "; index=" + index);
  /libcore/luni/src/main/java/org/w3c/dom/
DOMImplementationList.java 19 * <code>DOMImplementationList</code> are accessible via an integral index,
26 * Returns the <code>index</code>th item in the collection. If
27 * <code>index</code> is greater than or equal to the number of
30 * @param index Index into the collection.
31 * @return The <code>DOMImplementation</code> at the <code>index</code>
33 * <code>null</code> if that is not a valid index.
35 public DOMImplementation item(int index);
NodeList.java 20 * index, starting from 0.
25 * Returns the <code>index</code>th item in the collection. If
26 * <code>index</code> is greater than or equal to the number of nodes in
28 * @param index Index into the collection.
29 * @return The node at the <code>index</code>th position in the
31 * index.
33 public Node item(int index);
  /external/chromium_org/chrome/browser/sync/test/integration/
extensions_helper.cc 23 bool HasSameExtensionsAsVerifier(int index) {
25 test()->GetProfile(index), test()->verifier());
52 std::string InstallExtension(Profile* profile, int index) {
55 CreateFakeExtensionName(index),
59 std::string InstallExtensionForAllProfiles(int index) {
61 InstallExtension(test()->GetProfile(i), index); local
62 return InstallExtension(test()->verifier(), index);
65 void UninstallExtension(Profile* profile, int index) {
67 profile, CreateFakeExtensionName(index));
76 int index; local
    [all...]
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
Utf8.java 115 * checked extends from index {@code index}, inclusive, to {@code
119 * partialIsValidUtf8(bytes, index, limit) == Utf8.COMPLETE}.
121 public static boolean isValidUtf8(byte[] bytes, int index, int limit) {
122 return partialIsValidUtf8(bytes, index, limit) == COMPLETE;
128 * to be checked extends from index {@code index}, inclusive, to
144 int state, byte[] bytes, int index, int limit) {
153 if (index >= limit) { // No bytes? No progress.
165 bytes[index++] > (byte) 0xBF)
    [all...]
  /external/proguard/src/proguard/
ClassPath.java 41 for (int index = 0; index < classPathEntries.size(); index++)
43 if (((ClassPathEntry)classPathEntries.get(index)).isOutput())
60 public void add(int index, ClassPathEntry classPathEntry)
62 classPathEntries.add(index, classPathEntry);
75 public ClassPathEntry get(int index)
77 return (ClassPathEntry)classPathEntries.get(index);
80 public ClassPathEntry remove(int index)
82 return (ClassPathEntry)classPathEntries.remove(index);
    [all...]
  /external/proguard/src/proguard/classfile/util/
ExternalTypeEnumeration.java 40 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++).trim()
    [all...]
  /external/proguard/src/proguard/evaluation/value/
InstructionOffsetValue.java 62 public int instructionOffset(int index)
64 return values[index];
76 for (int index = 0; index < values.length; index++)
78 if (values[index] == value)
99 for (int index = 0; index < values.length; index++)
101 int value = values[index];
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
d3_14pf.cpp 101 index -- Word16 -- Positions of the 3 pulses.
158 Word16 index, /* i : Positions of the 3 pulses. */
169 i = index & 0x7;
177 index >>= 3;
179 j = index & 0x1;
181 index >>= 1;
183 i = index & 0x7;
191 index >>= 3;
193 j = index & 0x1;
195 index >>= 1
    [all...]
d4_17pf.cpp 121 index -- Word16 -- Positions of the 3 pulses.
178 Word16 index, /* i : Positions of the 4 pulses. */
187 /* Index is a 13-bit value. 3 bits each correspond to the
199 i = index & 0x7;
206 index >>= 3;
208 i = index & 0x7;
216 index >>= 3;
218 i = index & 0x7;
228 index >>= 3;
230 j = index & 0x1
    [all...]
  /frameworks/base/media/java/android/mtp/
MtpPropertyList.java 54 int index = mCount++; local
58 mObjectHandles[index] = handle;
59 mPropertyCodes[index] = property;
60 mDataTypes[index] = type;
61 mLongValues[index] = value;
65 int index = mCount++; local
69 mObjectHandles[index] = handle;
70 mPropertyCodes[index] = property;
71 mDataTypes[index] = MtpConstants.TYPE_STR;
72 mStringValues[index] = value
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/internal/util/
XmlUtils_Delegate.java 43 int index = 0; local
49 index++;
52 if ('0' == nm.charAt(index)) {
54 if (index == (len - 1))
57 char c = nm.charAt(index + 1);
60 index += 2;
63 index++;
67 else if ('#' == nm.charAt(index)) {
68 index++;
72 return ((int)Long.parseLong(nm.substring(index), base)) * sign
    [all...]
  /libcore/luni/src/main/java/java/net/
URISyntaxException.java 30 private int index; field in class:URISyntaxException
35 * index at which the error occurred.
41 * @param index
47 * if the value for {@code index} is lesser than {@code -1}.
49 public URISyntaxException(String input, String reason, int index) {
58 if (index < -1) {
59 throw new IllegalArgumentException("Bad index: " + index);
63 this.index = index;
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
KeyStyle.java 24 public abstract String[] getStringArray(TypedArray a, int index);
25 public abstract String getString(TypedArray a, int index);
26 public abstract int getInt(TypedArray a, int index, int defaultValue);
27 public abstract int getFlags(TypedArray a, int index);
33 protected String parseString(final TypedArray a, final int index) {
34 if (a.hasValue(index)) {
35 return KeySpecParser.resolveTextReference(a.getString(index), mTextsSet);
40 protected String[] parseStringArray(final TypedArray a, final int index) {
41 if (a.hasValue(index)) {
42 final String text = KeySpecParser.resolveTextReference(a.getString(index), mTextsSet)
    [all...]
  /external/chromium/chrome/browser/ui/toolbar/
back_forward_menu_model.h 50 virtual ItemType GetTypeAt(int index) const;
51 virtual int GetCommandIdAt(int index) const;
52 virtual string16 GetLabelAt(int index) const;
53 virtual bool IsItemDynamicAt(int index) const;
54 virtual bool GetAcceleratorAt(int index,
56 virtual bool IsItemCheckedAt(int index) const;
57 virtual int GetGroupIdAt(int index) const;
58 virtual bool GetIconAt(int index, SkBitmap* icon);
59 virtual ui::ButtonMenuItemModel* GetButtonMenuItemAt(int index) const;
60 virtual bool IsEnabledAt(int index) const
    [all...]
  /external/chromium_org/chrome/browser/profiles/
avatar_menu_desktop.cc 18 size_t index = cache.GetIndexOfProfileWithPath(profile->GetPath()); local
19 if (index == std::string::npos) {
24 *image = cache.GetAvatarIconOfProfileAtIndex(index);
26 cache.IsUsingGAIAPictureOfProfileAtIndex(index) &&
27 cache.GetGAIAPictureOfProfileAtIndex(index);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_dual_blend.h 15 int index)
17 if (util_blend_factor_is_dual_src(blend->rt[index].rgb_src_factor) ||
18 util_blend_factor_is_dual_src(blend->rt[index].alpha_src_factor) ||
19 util_blend_factor_is_dual_src(blend->rt[index].rgb_dst_factor) ||
20 util_blend_factor_is_dual_src(blend->rt[index].alpha_dst_factor))
  /external/mesa3d/src/gallium/auxiliary/util/
u_dual_blend.h 15 int index)
17 if (util_blend_factor_is_dual_src(blend->rt[index].rgb_src_factor) ||
18 util_blend_factor_is_dual_src(blend->rt[index].alpha_src_factor) ||
19 util_blend_factor_is_dual_src(blend->rt[index].rgb_dst_factor) ||
20 util_blend_factor_is_dual_src(blend->rt[index].alpha_dst_factor))
  /external/proguard/src/proguard/classfile/editor/
VariableCleaner.java 91 for (int index = 0; index < localVariableInfoCount && index < maxLocals; index++)
93 if (variableUsageMarker.isVariableUsed(index))
95 localVariableInfos[newIndex++] = localVariableInfos[index];
100 for (int index = newIndex; index < localVariableInfoCount; index++)
102 localVariableInfos[index] = null
    [all...]
  /external/skia/tests/
PathOpsDCubicTest.cpp 20 for (size_t index = 0; index < tests_count; ++index) {
21 const SkDCubic& cubic = tests[index];
25 SkDebugf("%s [%d] expected clockwise\n", __FUNCTION__, index);
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
NumberUtils.java 93 * Decodes a signed short value in little endian format from the given byte array at the given index.
95 * @param index the index of the first byte of the signed short value to decode
98 public static short decodeShort(byte[] bytes, int index) {
100 ( (bytes[index++] & 0xFF) |
101 (bytes[index] << 8)
119 * Decodes an unsigned short value in little endian format from the given byte array at the given index.
121 * @param index the index of the first byte of the unsigned short value to decode
124 public static int decodeUnsignedShort(byte[] bytes, int index) {
    [all...]
  /external/webrtc/src/common_audio/signal_processing/
get_hanning_window.c 61 WebRtc_Word32 index; local
66 index = (WebRtc_Word32)-0x200000;
68 index = (WebRtc_Word32)-0x100000;
73 index += factor;
74 (*vptr1++) = kHanningTable[index >> 22];
  /external/proguard/src/proguard/util/
ListUtil.java 46 for (int index = 0; index < list.size(); index++)
48 if (index > 0)
53 buffer.append(quotedString((String)list.get(index)));
71 int index = 0; local
72 while ((index = skipWhitespace(string, index)) < string.length())
77 if (string.charAt(index) == '\'')
80 nextIndex = string.indexOf('\'', index + 1)
    [all...]

Completed in 845 milliseconds

1 2 34 5 6 7 8 91011>>