HomeSort by relevance Sort by last modified time
    Searched refs:cindex (Results 1 - 25 of 39) sorted by null

1 2

  /external/clang/bindings/python/tests/cindex/
test_file.py 1 from clang.cindex import Index, File
test_tokens.py 1 from clang.cindex import CursorKind
2 from clang.cindex import Index
3 from clang.cindex import SourceLocation
4 from clang.cindex import SourceRange
5 from clang.cindex import TokenKind
test_index.py 1 from clang.cindex import *
test_cdb.py 1 from clang.cindex import CompilationDatabase
2 from clang.cindex import CompilationDatabaseError
3 from clang.cindex import CompileCommands
4 from clang.cindex import CompileCommand
util.py 3 from clang.cindex import Cursor
4 from clang.cindex import TranslationUnit
test_translation_unit.py 4 from clang.cindex import CursorKind
5 from clang.cindex import Cursor
6 from clang.cindex import File
7 from clang.cindex import Index
8 from clang.cindex import SourceLocation
9 from clang.cindex import SourceRange
10 from clang.cindex import TranslationUnitSaveError
11 from clang.cindex import TranslationUnitLoadError
12 from clang.cindex import TranslationUnit
test_code_completion.py 1 from clang.cindex import TranslationUnit
test_location.py 1 from clang.cindex import Cursor
2 from clang.cindex import File
3 from clang.cindex import SourceLocation
4 from clang.cindex import SourceRange
test_token_kind.py 1 from clang.cindex import TokenKind
test_cursor_kind.py 1 from clang.cindex import CursorKind
test_cursor.py 3 from clang.cindex import CursorKind
4 from clang.cindex import TranslationUnit
5 from clang.cindex import TypeKind
test_type.py 3 from clang.cindex import CursorKind
4 from clang.cindex import TranslationUnit
5 from clang.cindex import TypeKind
test_diagnostics.py 1 from clang.cindex import *
  /external/clang/bindings/python/examples/cindex/
cindex-includes.py 3 #===- cindex-includes.py - cindex/Python Inclusion Graph -----*- python -*--===#
19 from clang.cindex import Index
cindex-dump.py 3 #===- cindex-dump.py - cindex/Python Source Dump -------------*- python -*--===#
57 from clang.cindex import Index
  /external/javassist/src/main/javassist/bytecode/
ConstPool.java     [all...]
  /external/chromium_org/third_party/opus/src/celt/
rate.c 83 opus_int16 *cindex; local
87 cindex = (opus_int16 *)opus_alloc(sizeof(cache->index[0])*m->nbEBands*(LM+2));
88 cache->index = cindex;
97 cindex[i*m->nbEBands+j] = -1;
106 cindex[i*m->nbEBands+j] = cindex[k*m->nbEBands+n];
119 cindex[i*m->nbEBands+j] = curr;
183 pcache = bits + cindex[(LM0+1)*m->nbEBands+j];
  /frameworks/native/opengl/tools/glgen/src/
JFunc.java 80 public void addArgument(String argName, JType argType, int cindex) {
83 argCIndices.add(new Integer(cindex));
  /external/bison/lib/
lbitset.c 190 bset->b.cindex = next->index;
195 bset->b.cindex = prev->index;
222 bset->b.cindex = elt->prev->index;
278 else if (windex < bset->b.cindex)
312 bset->b.cindex = windex;
329 if ((windex - bset->b.cindex) < bset->b.csize)
339 if (windex < bset->b.cindex)
357 bset->b.cindex = elt->index;
481 dst->b.cindex = LBITSET_HEAD (dst)->index;
524 dst->b.cdata[windex - dst->b.cindex] |
    [all...]
bitset.h 139 bitset_windex offset = windex - bset->b.cindex;
153 bitset_windex offset = windex - bset->b.cindex;
167 bitset_windex offset = windex - bset->b.cindex;
bitset_stats.c 317 bitset_windex offset = wordno - bset->b.cindex;
336 bitset_windex offset = wordno - bset->b.cindex;
363 bitset_windex offset = wordno - bset->b.cindex;
685 bset->b.cindex = 0;
bbitset.h 90 bitset_windex cindex; /* Cache word index. */ member in struct:bbitset_struct
107 #define BITSET_CINDEX_(SRC) (SRC)->b.cindex
  /external/linux-tools-perf/util/
values.c 121 int tindex, cindex; local
124 cindex = perf_read_values__findnew_counter(values, rawid, name);
126 values->value[tindex][cindex] = value;
  /external/jpeg/
jdphuff.c 135 int cindex = cinfo->cur_comp_info[ci]->component_index; local
136 coef_bit_ptr = & cinfo->coef_bits[cindex][0];
138 WARNMS2(cinfo, JWRN_BOGUS_PROGRESSION, cindex, 0);
142 WARNMS2(cinfo, JWRN_BOGUS_PROGRESSION, cindex, coefi);
  /external/qemu/distrib/jpeg-6b/
jdphuff.c 139 int cindex = cinfo->cur_comp_info[ci]->component_index; local
140 coef_bit_ptr = & cinfo->coef_bits[cindex][0];
142 WARNMS2(cinfo, JWRN_BOGUS_PROGRESSION, cindex, 0);
146 WARNMS2(cinfo, JWRN_BOGUS_PROGRESSION, cindex, coefi);

Completed in 712 milliseconds

1 2