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

<<11121314151617181920>>

  /external/desugar/java/com/google/devtools/common/options/
OptionPriority.java 23 * <p>The position of the option is in category order, and within the priority category in index
28 private final int index; field in class:OptionPriority
31 private OptionPriority(PriorityCategory priorityCategory, int index, boolean locked) {
33 this.index = index;
51 return new OptionPriority(priority.priorityCategory, priority.index + 1, false);
64 return new OptionPriority(priority.priorityCategory, priority.index, true);
74 return index - o.index;
83 return other.priorityCategory.equals(priorityCategory) && other.index == index
    [all...]
  /external/icu/icu4c/source/common/unicode/
parsepos.h 39 * you can use the same <code>ParsePosition</code>, since the index parameter
52 * Default constructor, the index starts with 0 as default.
57 index(0),
62 * Create a new ParsePosition with the given initial index.
68 index(newIndex),
79 index(copy.index),
124 * is the index of the character at which parsing will begin; on output, it
125 * is the index of the character following the last character parsed.
126 * @return the current index
175 int32_t index; member in class:ParsePosition
    [all...]
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
KvmSerializable.java 38 * Get the property at the given index
40 Object getProperty(int index);
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);
60 * @param index
61 * the index to be queried
66 * property with the given index.
68 void getPropertyInfo(int index, Hashtable properties, PropertyInfo info)
    [all...]
  /external/libunwind/src/unwind/
GetGR.c 29 _Unwind_GetGR (struct _Unwind_Context *context, int index)
33 if (index == UNW_REG_SP && context->end_of_stack)
38 unw_get_reg (&context->cursor, index, &val);
  /external/oj-libjdwp/src/share/back/
eventFilter.h 34 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/
ElementLibrarySet.cpp 47 CElementLibrary *CElementLibrarySet::getElementLibrary(size_t index) const
49 assert(index <= _elementLibraryArray.size());
51 return _elementLibraryArray[index];
  /external/pdfium/fxjs/
cfxjse_arguments.cpp 24 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]->ToString()
    [all...]
  /external/proguard/src/proguard/classfile/attribute/annotation/
TypeAnnotationsAttribute.java 59 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 < u2annotationsCount; index++
    [all...]
  /external/sfntly/cpp/src/sfntly/data/
growable_memory_byte_array.cc 42 void GrowableMemoryByteArray::InternalPut(int32_t index, byte_t b) {
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,
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) {
63 return b_[index];
    [all...]
writable_font_data.cc 57 int32_t WritableFontData::WriteByte(int32_t index, byte_t b) {
58 array_->Put(BoundOffset(index), b);
62 int32_t WritableFontData::WriteBytes(int32_t index,
66 return array_->Put(BoundOffset(index),
69 BoundLength(index, length));
72 int32_t WritableFontData::WriteBytes(int32_t index, ByteVector* b) {
74 return WriteBytes(index, &((*b)[0]), 0, b->size());
77 int32_t WritableFontData::WriteBytesPad(int32_t index,
83 array_->Put(BoundOffset(index),
86 BoundLength(index,
    [all...]
  /external/skia/src/core/
SkColorTable.h 37 * the index is in range (0 <= index < count).
39 SkPMColor operator[](int index) const {
40 SkASSERT(fColors != nullptr && (unsigned)index < (unsigned)fCount);
41 return fColors[index];
SkPtrRecorder.cpp 33 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].fIndex
68 int index = p[i].fIndex - 1; local
    [all...]
  /external/skqp/src/core/
SkColorTable.h 37 * the index is in range (0 <= index < count).
39 SkPMColor operator[](int index) const {
40 SkASSERT(fColors != nullptr && (unsigned)index < (unsigned)fCount);
41 return fColors[index];
SkPtrRecorder.cpp 33 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].fIndex
68 int index = p[i].fIndex - 1; local
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/util/
ParamUtil.java 40 private static int findTypeEnd(@Nonnull String str, int index) {
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/src/crankshaft/x64/
lithium-gap-resolver-x64.h 27 // Perform the move at the moves_ index in question (possibly requiring
29 void PerformMove(int index);
32 void EmitMove(int index);
36 void EmitSwap(int index);
  /libcore/ojluni/src/main/java/sun/util/locale/
LocaleSyntaxException.java 38 private int index = -1; field in class:LocaleSyntaxException
46 index = errorIndex;
50 return index;
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
Clustering.java 24 public abstract ArrayList<Path> getCluster(int index);
25 public abstract String getClusterName(int index);
26 public MediaItem getClusterCover(int index) {
  /external/libxcam/xcore/interface/
blender.cpp 58 Blender::set_input_valid_area (const Rect &area, uint32_t index)
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].width)
    [all...]
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/mp2/parser/
viddec_mpeg2_frame_attr.c 13 unsigned int index = 0; local
25 for (index = 0; index < attr->mpeg2.number_of_frame_center_offsets; index++)
27 MPEG2_FA_DEB("\tPan_Scan_Offset_%d= %dx%d\n", index,
28 attr->mpeg2.frame_center_offset[index].horz,
29 attr->mpeg2.frame_center_offset[index].vert);
39 unsigned int index = 0; local
42 for (index = 0; index < MPEG2_MAX_VID_OFFSETS ; index++
101 unsigned int index = 0; local
    [all...]
  /external/deqp/framework/opengl/
gluProgramInterfaceQuery.cpp 33 deUint32 getProgramResourceUint (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, deUint32 queryParam)
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)
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)
63 const int numActiveVariables = getProgramResourceInt(gl, program, programInterface, index, GL_NUM_ACTIVE_VARIABLES);
69 gl.getProgramResourceiv(program, programInterface, index, 1, &queryParam, (int)activeVariables.size(), DE_NULL, &activeVariables[0])
    [all...]
  /external/swiftshader/third_party/LLVM/utils/TableGen/
X86DisassemblerTables.cpp 211 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/
InterfaceSorter.java 59 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...]
  /frameworks/base/rs/java/android/renderscript/
ScriptIntrinsicLUT.java 64 private void validate(int index, int value) {
65 if (index < 0 || index > 255) {
66 throw new RSIllegalArgumentException("Index out of range (0-255).");
76 * @param index Must be 0-255
79 public void setRed(int index, int value) {
80 validate(index, value);
81 mCache[index] = (byte)value;
88 * @param index Must be 0-255
91 public void setGreen(int index, int value)
    [all...]
  /frameworks/data-binding/extensions/library/src/main/java/android/databinding/
ObservableArrayList.java 50 public void add(int index, T object) {
51 super.add(index, object);
52 notifyAdd(index, 1);
66 public boolean addAll(int index, Collection<? extends T> collection) {
67 boolean added = super.addAll(index, collection);
69 notifyAdd(index, collection.size());
84 public T remove(int index) {
85 T val = super.remove(index);
86 notifyRemove(index, 1);
92 int index = indexOf(object) local
    [all...]

Completed in 2109 milliseconds

<<11121314151617181920>>