HomeSort by relevance Sort by last modified time
    Searched refs:idx (Results 226 - 250 of 3229) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/apache-xml/src/main/java/org/apache/xml/serializer/
EncodingInfo.java 218 final int idx = codePoint - m_explFirst; local
221 if (m_alreadyKnown[idx])
222 ret = m_isInEncoding[idx];
227 m_alreadyKnown[idx] = true;
228 m_isInEncoding[idx] = ret;
265 final int idx = codePoint - m_explFirst; local
268 if (m_alreadyKnown[idx])
269 ret = m_isInEncoding[idx];
274 m_alreadyKnown[idx] = true;
275 m_isInEncoding[idx] = ret
382 final int idx = unicode - m_explFirst; local
    [all...]
  /external/chromium_org/url/
url_file.h 31 int idx = begin_index; local
32 while (idx < spec_len && !IsURLSlash(spec[idx]))
33 idx++;
34 return idx;
  /external/elfutils/0.153/libdw/
dwarf_decl_file.c 64 Dwarf_Sword idx = 0; local
68 &idx) != 0)
72 if (idx == 0)
101 if (idx >= cu->files->nfiles)
107 return cu->files->info[idx].name;
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
ol_ltp.cpp 96 idx = 16 bit value specifies the frame index
139 Word16 idx, // i : index
151 *T_op = Pitch_ol(vadSt, mode, wsp, PIT_MIN, PIT_MAX, L_FRAME, idx, dtx);
158 idx, dtx);
163 old_lags, ol_gain_flg, idx, dtx);
168 L_FRAME_BY2, idx, dtx);
210 Word16 idx, /* i : index */
223 *T_op = Pitch_ol(vadSt, mode, wsp, PIT_MIN, PIT_MAX, L_FRAME, idx, dtx,
231 idx, dtx, pOverflow);
236 old_lags, ol_gain_flg, idx, dtx, pOverflow)
    [all...]
  /frameworks/rs/
rsDevice.cpp 35 for (size_t idx=0; idx < mContexts.size(); idx++) {
36 if (mContexts[idx] == rsc) {
37 mContexts.removeAt(idx);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/tests/
test_fail.py 82 for idx, doc in enumerate(JSONDOCS):
83 idx = idx + 1
84 if idx in SKIPS:
92 self.fail("Expected failure for fail{0}.json: {1!r}".format(idx, doc))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/tests/
test_fail.py 82 for idx, doc in enumerate(JSONDOCS):
83 idx = idx + 1
84 if idx in SKIPS:
92 self.fail("Expected failure for fail{0}.json: {1!r}".format(idx, doc))
  /external/chromium_org/third_party/simplejson/
_speedups.c 122 scan_once_str(PyScannerObject *s, PyObject *pystr, Py_ssize_t idx, Py_ssize_t *next_idx_ptr);
124 scan_once_unicode(PyScannerObject *s, PyObject *pystr, Py_ssize_t idx, Py_ssize_t *next_idx_ptr);
126 _build_rval_index_tuple(PyObject *rval, Py_ssize_t idx);
477 _build_rval_index_tuple(PyObject *rval, Py_ssize_t idx) {
478 /* return (rval, idx) tuple, stealing reference to rval */
482 steal a reference to rval, returns (rval, idx)
487 pyidx = PyInt_FromSsize_t(idx);
1502 Py_ssize_t idx = start; local
1605 Py_ssize_t idx = start; local
1888 Py_ssize_t idx; local
2333 Py_ssize_t idx; local
    [all...]
  /external/iproute2/tc/
q_mqprio.c 35 int idx; local
43 idx = 0;
51 while (idx < TC_QOPT_MAX_QUEUE && NEXT_ARG_OK()) {
53 if (get_u8(&opt.prio_tc_map[idx], *argv, 10)) {
57 idx++;
59 for ( ; idx < TC_QOPT_MAX_QUEUE; idx++)
60 opt.prio_tc_map[idx] = 0;
64 while (idx < TC_QOPT_MAX_QUEUE && NEXT_ARG_OK()) {
72 if (get_u16(&opt.count[idx], tok, 10))
    [all...]
  /external/lldb/source/Core/
FileSpecList.cpp 118 for (size_t idx = start_idx; idx < num_files; ++idx)
122 if (m_files[idx].GetFilename() == file_spec.GetFilename())
123 return idx;
127 if (FileSpec::Equal (m_files[idx], file_spec, full))
128 return idx;
137 // Returns the FileSpec object at index "idx". If "idx" is out of
141 FileSpecList::GetFileSpecAtIndex(size_t idx) cons
    [all...]
RegularExpression.cpp 163 RegularExpression::Match::GetMatchAtIndex (const char* s, uint32_t idx, std::string& match_str) const
165 if (idx < m_matches.size())
167 if (m_matches[idx].rm_eo == m_matches[idx].rm_so)
173 else if (m_matches[idx].rm_eo > m_matches[idx].rm_so)
175 match_str.assign (s + m_matches[idx].rm_so,
176 m_matches[idx].rm_eo - m_matches[idx].rm_so);
184 RegularExpression::Match::GetMatchAtIndex (const char* s, uint32_t idx, llvm::StringRef& match_str) cons
    [all...]
  /external/lldb/source/Interpreter/
CommandHistory.cpp 50 size_t idx = Args::StringToUInt32 (input_str+2, 0, 0, &success); local
53 if (idx > m_history.size())
55 idx = m_history.size() - idx;
56 return m_history[idx].c_str();
69 uint32_t idx = Args::StringToUInt32 (input_str+1, 0, 0, &success); local
72 if (idx >= m_history.size())
74 return m_history[idx].c_str();
79 CommandHistory::GetStringAtIndex (size_t idx) const
82 if (idx < m_history.size()
    [all...]
  /external/elfutils/0.153/src/
elflint.c 105 GElf_Shdr *shdr, int idx);
318 section_name (Ebl *ebl, int idx)
323 shdr = gelf_getshdr (elf_getscn (ebl->elf, idx), &shdr_mem);
530 /* Check that there is a section group section with index < IDX which
531 contains section IDX and that there is exactly one. */
533 check_scn_group (Ebl *ebl, int idx)
535 if (scnref[idx] == 0)
541 for (cnt = idx + 1; cnt < shnum; ++cnt)
563 if (grpdata[inner] == (Elf32_Word) idx)
571 idx, section_name (ebl, idx))
1232 idx, section_name (ebl, idx)); local
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
frametovalues.cpp 43 for(int idx = 0; idx < numPixels; idx++, disp+=4) {
48 *(grayPtr+idx) = static_cast<unsigned char>(gray);
69 for(int idx = 0; idx < numPixels; idx++, pixelDisp += 4, rgbDisp += 3) {
  /frameworks/base/core/java/android/content/res/
XmlBlock.java 224 int idx = nativeGetAttributeIndex(mParseState, namespace, name); local
225 if (idx >= 0) {
227 + namespace + ":" + name + " index = " + idx);
229 "Namespace=" + getAttributeNamespace(idx)
230 + "Name=" + getAttributeName(idx)
231 + ", Value=" + getAttributeValue(idx));
232 return getAttributeValue(idx);
316 int idx = nativeGetAttributeIndex(mParseState, namespace, attribute); local
317 if (idx >= 0) {
318 return getAttributeListValue(idx, options, defaultValue)
324 int idx = nativeGetAttributeIndex(mParseState, namespace, attribute); local
332 int idx = nativeGetAttributeIndex(mParseState, namespace, attribute); local
340 int idx = nativeGetAttributeIndex(mParseState, namespace, attribute); local
349 int idx = nativeGetAttributeIndex(mParseState, namespace, attribute); local
357 int idx = nativeGetAttributeIndex(mParseState, namespace, attribute); local
    [all...]
  /frameworks/base/rs/java/android/renderscript/
ProgramVertex.java 127 int idx = 0; local
130 tmp[idx++] = ProgramParam.INPUT.mID;
131 tmp[idx++] = mInputs[i].getID(mRS);
134 tmp[idx++] = ProgramParam.OUTPUT.mID;
135 tmp[idx++] = mOutputs[i].getID(mRS);
138 tmp[idx++] = ProgramParam.CONSTANT.mID;
139 tmp[idx++] = mConstants[i].getID(mRS);
142 tmp[idx++] = ProgramParam.TEXTURE_TYPE.mID;
143 tmp[idx++] = mTextureTypes[i].mID;
  /dalvik/dx/src/com/android/dx/cf/code/
ByteBlockList.java 55 int idx = indexOfLabel(label); local
57 if (idx < 0) {
62 return get(idx);
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRSymbolStack.h 66 -(ANTLRSymbolsScope *)getHashMapEntry:(NSInteger)idx;
72 - (void) insertObject:(ANTLRSymbolsScope *)aScope atIndex:(NSInteger)idx;
73 - (ANTLRSymbolsScope *)objectAtIndex:(NSInteger)idx;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRSymbolStack.h 66 -(ANTLRSymbolsScope *)getHashMapEntry:(NSInteger)idx;
72 - (void) insertObject:(ANTLRSymbolsScope *)aScope atIndex:(NSInteger)idx;
73 - (ANTLRSymbolsScope *)objectAtIndex:(NSInteger)idx;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRSymbolStack.h 66 -(ANTLRSymbolsScope *)getHashMapEntry:(NSInteger)idx;
72 - (void) insertObject:(ANTLRSymbolsScope *)aScope atIndex:(NSInteger)idx;
73 - (ANTLRSymbolsScope *)objectAtIndex:(NSInteger)idx;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRSymbolStack.h 66 -(ANTLRSymbolsScope *)getHashMapEntry:(NSInteger)idx;
72 - (void) insertObject:(ANTLRSymbolsScope *)aScope atIndex:(NSInteger)idx;
73 - (ANTLRSymbolsScope *)objectAtIndex:(NSInteger)idx;
  /external/chromium_org/third_party/skia/src/utils/
SkMeshUtils.cpp 51 uint16_t* idx = fIndices; local
55 *idx++ = index;
56 *idx++ = index + rows + 1;
57 *idx++ = index + 1;
59 *idx++ = index + 1;
60 *idx++ = index + rows + 1;
61 *idx++ = index + rows + 2;
91 SkMeshIndices idx; local
93 if (idx.init(bitmap.width(), bitmap.height(), rows, cols)) {
99 rows * cols, verts, idx.tex(), colors, NULL
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
MemberIdsSection.java 42 int idx = 0; local
51 ((MemberIdItem) i).setIndex(idx);
52 idx++;
  /external/elfutils/0.153/libdwfl/
dwfl_validate_address.c 60 int idx = INTUSE(dwfl_module_relocate_address) (mod, &relative); local
61 if (idx < 0)
74 if (offset_idx != idx)
lines.c 64 cu->lines = malloc (offsetof (struct Dwfl_Lines, idx[nlines]));
69 cu->lines->idx[i].idx = i;

Completed in 1263 milliseconds

1 2 3 4 5 6 7 8 91011>>