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

1 2

  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
rhino-python.extensions 162 // compute cpos as the char pos of next non-WS token in line
163 var cpos = t.getCharPositionInLine(); // column dictates indent/dedent
165 cpos = -1; // pretend EOF always happens at left edge
168 cpos = t.getText().length;
173 if ( cpos > lastIndent ) { // they indented; track and gen INDENT
174 this.push(cpos);
180 else if ( cpos < lastIndent ) { // they dedented
182 var prevIndex = this.findPreviousIndent(cpos);
  /packages/apps/ExactCalculator/src/com/android/calculator2/
CalculatorExpr.java 825 int cpos = tmp.pos; local
830 while ((isFact = isOperator(cpos, R.id.op_fact, ec)) ||
831 (isSquared = isOperator(cpos, R.id.op_sqr, ec)) ||
832 isOperator(cpos, R.id.op_pct, ec)) {
840 ++cpos;
842 return new EvalRet(cpos, val);
847 int cpos = result1.pos; // current position local
849 if (isOperator(cpos, R.id.op_pow, ec)) {
850 final EvalRet exp = evalSignedFactor(cpos + 1, ec);
851 cpos = exp.pos
859 int cpos = negative ? i + 1 : i; local
885 int cpos = tmp.pos; \/\/ Current position in expression. local
950 int cpos = tmp.pos; local
    [all...]
  /external/toybox/toys/posix/
cut.c 132 unsigned cpos = 0; local
153 while (cpos < TT.nelem && buff) {
180 cpos++;
193 unsigned cpos = 0; local
199 while (cpos < TT.nelem) {
220 cpos++;
  /bootable/recovery/updater/
blockimg.cpp 431 size_t cpos; member in struct:CommandParameters
915 const std::string& token = params.tokens[params.cpos++];
924 if (params.tokens[params.cpos] == "-") {
926 params.cpos++;
928 RangeSet src = RangeSet::Parse(params.tokens[params.cpos++]);
935 if (params.cpos >= params.tokens.size()) {
940 RangeSet locs = RangeSet::Parse(params.tokens[params.cpos++]);
945 while (params.cpos < params.tokens.size()) {
948 std::vector<std::string> tokens = android::base::Split(params.tokens[params.cpos++], ":");
1000 if (params.cpos >= params.tokens.size())
    [all...]
  /libcore/ojluni/src/main/java/java/io/
ObjectOutputStream.java 2060 int cpos = 0; local
    [all...]
ObjectInputStream.java 3098 int cpos = 0; local
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
eap_server_psk.c 221 const u8 *cpos; local
228 cpos = eap_hdr_validate(EAP_VENDOR_IETF, EAP_TYPE_PSK, respData,
230 if (cpos == NULL || left < sizeof(*resp)) {
234 resp = (const struct eap_psk_hdr_2 *) cpos;
235 cpos = (const u8 *) (resp + 1);
245 os_memcpy(data->id_p, cpos, left);
  /toolchain/binutils/binutils-2.25/gas/config/
tc-mmix.h 73 #define md_parse_name(name, exp, mode, cpos) \
  /external/wpa_supplicant_8/src/eap_peer/
eap_psk.c 92 const u8 *cpos; local
96 cpos = eap_hdr_validate(EAP_VENDOR_IETF, EAP_TYPE_PSK, reqData, &len);
97 hdr1 = (const struct eap_psk_hdr_1 *) cpos;
98 if (cpos == NULL || len < sizeof(*hdr1)) {
  /external/syslinux/com32/modules/
pxechn.c 661 char *cpos = NULL, *pos; local
668 optnum = strtoul(istr, &cpos, 0);
671 pos = strchr(cpos, '=');
674 opttype = pxechn_parse_opttype(cpos, optnum);
  /packages/apps/Music/src/com/android/music/
ArtistAlbumBrowserActivity.java 325 int cpos = ExpandableListView.getPackedPositionChild(mi.packedPosition); local
350 if (cpos == -1) {
355 Cursor c = (Cursor) getExpandableListAdapter().getChild(gpos, cpos);
356 c.moveToPosition(cpos);
    [all...]
  /external/wpa_supplicant_8/src/rsn_supp/
tdls.c 1794 const u8 *cpos; local
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/link/internal/ld/
pe.go 836 cpos := coutbuf.Offset()
839 Cseek(cpos)
848 data.PointerToRelocations = uint32(cpos)
859 cpos = coutbuf.Offset()
862 Cseek(cpos)
dwarf.go 1037 // cpos == unitstart + 4 + 2 + 4
    [all...]
  /prebuilts/go/linux-x86/src/cmd/link/internal/ld/
pe.go 836 cpos := coutbuf.Offset()
839 Cseek(cpos)
848 data.PointerToRelocations = uint32(cpos)
859 cpos = coutbuf.Offset()
862 Cseek(cpos)
dwarf.go 1037 // cpos == unitstart + 4 + 2 + 4
    [all...]
  /external/ltp/testcases/kernel/fs/scsi/ltpscsi/
scsimain.c 944 int cpos = cpstart; local
965 buff[cpos++] = ' ';
969 buff[cpos++] = c;
971 if (cpos > (cpstart + 15)) {
974 cpos = cpstart;
981 if (cpos > cpstart) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Modules/expat/
xmlparse.c 6240 XML_Content *cpos; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/expat/
xmlparse.c 6240 XML_Content *cpos; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/expat/
xmlparse.c 6364 XML_Content *cpos; local
    [all...]
  /external/expat/lib/
xmlparse.c 6428 XML_Content *cpos; local
    [all...]
  /external/python/cpython2/Modules/expat/
xmlparse.c 6382 XML_Content *cpos; local
    [all...]
  /prebuilts/tools/common/m2/repository/com/tunnelvisionlabs/antlr4-runtime/4.5/
antlr4-runtime-4.5.jar 
  /prebuilts/devtools/tools/lib/
jython-standalone-2.5.3.jar 
  /prebuilts/misc/common/jython/
jython.jar 

Completed in 848 milliseconds

1 2