HomeSort by relevance Sort by last modified time
    Searched refs:index (Results 101 - 125 of 19608) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/clang/host/linux-x86/clang-4479392/include/clang/StaticAnalyzer/Core/PathSensitive/
TaintManager.h 35 static void *GDMIndex() { static int index = 0; return &index; } local
45 static void *GDMIndex() { static int index; return &index; } local
  /prebuilts/clang/host/linux-x86/clang-4579689/include/clang/StaticAnalyzer/Core/PathSensitive/
TaintManager.h 35 static void *GDMIndex() { static int index = 0; return &index; } local
45 static void *GDMIndex() { static int index; return &index; } local
  /prebuilts/clang/host/linux-x86/clang-4630689/include/clang/StaticAnalyzer/Core/PathSensitive/
TaintManager.h 35 static void *GDMIndex() { static int index = 0; return &index; } local
45 static void *GDMIndex() { static int index; return &index; } local
  /prebuilts/clang/host/linux-x86/clang-4639204/include/clang/StaticAnalyzer/Core/PathSensitive/
TaintManager.h 35 static void *GDMIndex() { static int index = 0; return &index; } local
45 static void *GDMIndex() { static int index; return &index; } local
  /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/StaticAnalyzer/Core/PathSensitive/
TaintManager.h 35 static void *GDMIndex() { static int index = 0; return &index; } local
45 static void *GDMIndex() { static int index; return &index; } local
  /test/vts/drivers/hal/libcodecoverage/
gcda_parser_test.cpp 33 for (unsigned int index = 0; index < result.size(); index++) {
34 cout << result.at(index) << endl;
  /toolchain/binutils/binutils-2.27/libiberty/
index.c 1 /* Stub implementation of (obsolete) index(). */
5 @deftypefn Supplemental char* index (char *@var{s}, int @var{c})
8 the string @var{s}, or @code{NULL} if not found. The use of @code{index} is
18 index (const char *s, int c) function
  /tools/tradefederation/core/atest/
atest_enum.py 21 __getattr__ = tuple.index
  /external/icu/android_icu4j/src/main/java/android/icu/util/
UResourceBundleIterator.java 41 private int index = 0; field in class:UResourceBundleIterator
60 if(index<size){
61 return bundle.get(index++);
72 if(index<size){
73 return bundle.getString(index++);
83 index = 0;
91 return index < size;
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
UResourceBundleIterator.java 40 private int index = 0; field in class:UResourceBundleIterator
61 if(index<size){
62 return bundle.get(index++);
74 if(index<size){
75 return bundle.getString(index++);
86 index = 0;
95 return index < size;
  /packages/apps/Camera2/src/com/android/camera/data/
FixedLastProxyAdapter.java 61 public FilmstripItem getItemAt(int index) {
64 if (index < totalNumber) {
65 return mAdapter.getItemAt(index);
66 } else if (index == totalNumber) {
73 public void removeAt(int index) {
74 if (index < mAdapter.getTotalNumber()) {
75 mAdapter.removeAt(index);
95 public boolean isDataRemoved(int index) {
100 public boolean isDataUpdated(int index) {
101 return (index == pos)
    [all...]
  /packages/apps/Camera2/src/com/android/camera/filmstrip/
FilmstripDataAdapter.java 36 public boolean isDataRemoved(int index);
39 public boolean isDataUpdated(int index);
64 * @param index The ID of the inserted data.
67 public void onFilmstripItemInserted(int index, FilmstripItem item);
72 * @param index The ID of the removed data.
75 public void onFilmstripItemRemoved(int index, FilmstripItem item);
85 * @param index The ID of the image data to be presented.
89 public View getView(View recycled, int index,
97 public int getItemViewType(int index);
102 * @param index The ID of the {@link FilmstripItem}
    [all...]
  /external/pdfium/xfa/fgas/layout/
cfx_breakline.cpp 19 CFX_Char* CFX_BreakLine::GetChar(int32_t index) {
20 ASSERT(pdfium::IndexInBounds(m_LineChars, index));
21 return &m_LineChars[index];
24 const CFX_Char* CFX_BreakLine::GetChar(int32_t index) const {
25 ASSERT(pdfium::IndexInBounds(m_LineChars, index));
26 return &m_LineChars[index];
33 const CFX_BreakPiece* CFX_BreakLine::GetPiece(int32_t index) const {
34 ASSERT(index >= 0 && index < CountPieces());
35 return &m_LinePieces[index];
    [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/editor/
InterfacesEditor.java 77 for (int index = interfaceIndex; index < interfacesCount; index++)
79 interfaces[index] = interfaces[index + 1];
91 * Finds the index of the specified interface in the list of interfaces of
99 for (int index = 0; index < interfacesCount; index++)
101 if (interfaces[index] == interfaceConstantIndex
    [all...]
  /external/proguard/src/proguard/classfile/util/
ExternalTypeEnumeration.java 40 private int index; field in class:ExternalTypeEnumeration
64 index = descriptor.indexOf(JavaConstants.METHOD_ARGUMENTS_OPEN) + 1;
66 if (index < 1)
75 return index < descriptor.length() - 1;
81 int startIndex = index;
84 index = descriptor.indexOf(JavaConstants.METHOD_ARGUMENTS_SEPARATOR,
88 if (index < 0)
90 index = descriptor.indexOf(JavaConstants.METHOD_ARGUMENTS_CLOSE,
92 if (index < 0)
98 return descriptor.substring(startIndex, index++).trim()
    [all...]
  /external/tensorflow/tensorflow/java/src/main/java/org/tensorflow/
Output.java 34 index = idx;
42 /** Returns the index into the outputs of the Operation. */
43 public int index() { method in class:Output
44 return index;
49 return new Shape(operation.shape(index));
54 return operation.dtype(index);
64 return Objects.hash(operation, index);
74 return index == that.index && operation.equals(that.operation);
83 operation.type(), operation.name(), index, shape().toString(), dataType())
87 private final int index; field in class:Output
    [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/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...]
  /frameworks/support/persistence/db-framework/src/main/java/androidx/sqlite/db/framework/
FrameworkSQLiteProgram.java 34 public void bindNull(int index) {
35 mDelegate.bindNull(index);
39 public void bindLong(int index, long value) {
40 mDelegate.bindLong(index, value);
44 public void bindDouble(int index, double value) {
45 mDelegate.bindDouble(index, value);
49 public void bindString(int index, String value) {
50 mDelegate.bindString(index, value);
54 public void bindBlob(int index, byte[] value) {
55 mDelegate.bindBlob(index, value)
    [all...]
  /frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/content/res/
GrowingArrayUtils.java 99 * Inserts an element into the array at the specified index, growing the array if there is no
109 public static <T> T[] insert(T[] array, int currentSize, int index, T element) {
113 System.arraycopy(array, index, array, index + 1, currentSize - index);
114 array[index] = element;
120 System.arraycopy(array, 0, newArray, 0, index);
121 newArray[index] = element;
122 System.arraycopy(array, index, newArray, index + 1, array.length - index)
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
KeyStyle.java 27 public abstract @Nullable String[] getStringArray(TypedArray a, int index);
28 public abstract @Nullable String getString(TypedArray a, int index);
29 public abstract int getInt(TypedArray a, int index, int defaultValue);
30 public abstract int getFlags(TypedArray a, int index);
37 protected String parseString(final TypedArray a, final int index) {
38 if (a.hasValue(index)) {
39 return mTextsSet.resolveTextReference(a.getString(index));
45 protected String[] parseStringArray(final TypedArray a, final int index) {
46 if (a.hasValue(index)) {
47 final String text = mTextsSet.resolveTextReference(a.getString(index));
    [all...]
  /prebuilts/go/darwin-x86/test/
slice3err.go 20 _ = array[::] // ERROR "middle index required in 3-index slice" "final index required in 3-index slice"
21 _ = array[i::] // ERROR "middle index required in 3-index slice" "final index required in 3-index slice"
22 _ = array[:j:] // ERROR "final index required in 3-index slice
    [all...]
  /prebuilts/go/linux-x86/test/
slice3err.go 20 _ = array[::] // ERROR "middle index required in 3-index slice" "final index required in 3-index slice"
21 _ = array[i::] // ERROR "middle index required in 3-index slice" "final index required in 3-index slice"
22 _ = array[:j:] // ERROR "final index required in 3-index slice
    [all...]

Completed in 460 milliseconds

1 2 3 45 6 7 8 91011>>