/external/mesa3d/src/mesa/program/ |
prog_statevars.c | [all...] |
/external/protobuf/python/google/protobuf/ |
reflection.py | 836 def InternalParse(self, buffer, pos, end): 839 while pos != end: 840 (tag_bytes, new_pos) = local_ReadTag(buffer, pos) 845 return pos 846 pos = new_pos 848 pos = field_decoder(buffer, new_pos, end, self, field_dict) 849 return pos [all...] |
/external/v8/src/ |
prettyprinter.cc | 673 int pos = OS::SNPrintF(buf, "%s (mode = %s", info, local 675 OS::SNPrintF(buf + pos, ")"); 1018 int pos = OS::SNPrintF(buf, "VAR PROXY"); local 1023 OS::SNPrintF(buf + pos, " parameter[%d]", var->index()); 1026 OS::SNPrintF(buf + pos, " local[%d]", var->index()); 1029 OS::SNPrintF(buf + pos, " context[%d]", var->index()); 1032 OS::SNPrintF(buf + pos, " lookup");
|
/external/wpa_supplicant_8/wpa_supplicant/ |
ap.c | 972 char *pos = buf, *end = buf + buflen; local 983 ret = os_snprintf(pos, end - pos, 991 if (ret < 0 || ret >= end - pos) 992 return pos - buf; 993 pos += ret; 994 return pos - buf;
|
/frameworks/base/core/java/android/text/ |
TextLine.java | 477 int pos = cursor - 1; 480 if (pos >= prevRunStart) { 486 if (pos < prevRunLimit) { [all...] |
/frameworks/base/core/jni/android/graphics/ |
TextLayoutCache.cpp | 557 size_t pos; member in struct:android::ScriptRun 574 run->pos = *iter; 608 run->length = *iter - run->pos; 653 run->pos = *iter + 1; 700 // Split the BiDi run into Script runs. Harfbuzz will populate the pos, length and script 714 ALOGD(" -- run.pos = %d", int(run.pos)); 716 ALOGD(" -- run = '%s'", String8(chars + run.pos, run.length).string()); 727 hb_buffer_add_utf16(mBuffer, contextChars, contextCount, start + run.pos, run.length); [all...] |
/libcore/luni/src/test/java/libcore/java/nio/channels/ |
OldFileChannelTest.java | 763 final int pos = 5; local 765 writeBuffer.position(pos); 766 int result = writeOnlyFileChannel.write(writeBuffer, pos); 767 assertEquals(CONTENT_AS_BYTES_LENGTH - pos, result); 775 byte[] inputBuffer = new byte[CONTENT_AS_BYTES_LENGTH - pos]; 776 fis.skip(pos); 778 String test = CONTENT.substring(pos); [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ |
AndroidContentAssist.java | 379 int pos = attrName.indexOf(':'); local 380 if (pos >= 0) { 381 attrName = attrName.substring(pos + 1); 435 int pos; local 445 pos = value.lastIndexOf('|'); 446 if (pos >= 0) { 447 attrInfo.correctedPrefix = value = value.substring(pos + 1); [all...] |
/external/chromium_org/third_party/icu/source/test/intltest/ |
intltest.cpp | 136 FieldPosition pos; local 137 fmt.format(f.getDate(), s, pos); 609 char* pos = NULL; local 620 pos = strchr( name, delim ); // check if name contains path (by looking for '/') 621 if (pos) { 622 testPath = pos+1; // store subpath for calling subtest 623 *pos = 0; // split into two strings 639 if (pos) 640 *pos = delim; // restore original value at pos [all...] |
/external/chromium_org/third_party/libxml/src/ |
c14n.c | 60 xmlC14NPosition pos; member in struct:_xmlC14NCtx [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.equinox.ds_1.2.1.R36x_v20100803.jar | |
/external/icu4c/test/intltest/ |
intltest.cpp | 136 FieldPosition pos; local 137 fmt.format(f.getDate(), s, pos); 632 char* pos = NULL; local 643 pos = strchr( name, delim ); // check if name contains path (by looking for '/') 644 if (pos) { 645 testPath = pos+1; // store subpath for calling subtest 646 *pos = 0; // split into two strings 662 if (pos) 663 *pos = delim; // restore original value at pos [all...] |
/external/libppp/src/ |
physical.c | 799 unsigned pos; local 803 for (f = 0, pos = 0; f < argc && pos < sizeof p->cfg.devlist - 1; f++) { 804 if (pos) 805 p->cfg.devlist[pos++] = '\0'; 806 strncpy(p->cfg.devlist + pos, argv[f], sizeof p->cfg.devlist - pos - 1); 807 pos += strlen(p->cfg.devlist + pos);
|
/external/libxml2/ |
c14n.c | 60 xmlC14NPosition pos; member in struct:_xmlC14NCtx [all...] |
/external/openfst/src/include/fst/ |
compact-fst.h | 243 size_t pos = 0, fpos = 0; local 245 fpos = pos; 247 states_[s] = pos; 249 compacts_[pos++] = compactor.Compact(s, A(kNoLabel, kNoLabel, 254 compacts_[pos++] = compactor.Compact(s, aiter.Value()); 256 if ((compactor.Size() != -1) && ((pos - fpos) != compactor.Size())) { 262 if (pos != ncompacts_) { [all...] |
/external/v8/src/arm/ |
assembler-arm.h | [all...] |
/art/runtime/gc/space/ |
large_object_space.cc | 182 for (uintptr_t pos = reinterpret_cast<uintptr_t>(this);; pos += kAlignment) { 183 AllocationHeader* cur = reinterpret_cast<AllocationHeader*>(pos);
|
/bootable/recovery/minadbd/ |
sysdeps.h | 116 extern int adb_lseek(int fd, int pos, int where); 381 static __inline__ int adb_lseek(int fd, int pos, int where) 383 return lseek(fd, pos, where);
|
/external/antlr/antlr-3.4/runtime/C/src/ |
antlr3commontoken.c | 48 static void setCharPositionInLine (pANTLR3_COMMON_TOKEN token, ANTLR3_INT32 pos); 489 static void setCharPositionInLine (pANTLR3_COMMON_TOKEN token, ANTLR3_INT32 pos) 491 token->charPosition = pos;
|
/external/chromium/chrome/browser/notifications/ |
desktop_notifications_unittest.cc | 70 int pos = (*iter)->GetPosition().y(); local 71 if (iter == balloons_.begin() || pos < min) 72 min = pos;
|
/external/chromium/chrome/browser/ui/views/tabs/ |
base_tab_strip.cc | 98 DWORD pos = GetMessagePos(); 99 POINT cursor_point = {GET_X_LPARAM(pos), GET_Y_LPARAM(pos)};
|
/external/chromium_org/content/renderer/webcrypto/ |
webcrypto_impl.cc | 105 const JwkAlgFactoryMap::const_iterator pos = map_.find(alg_id); local 106 if (pos == map_.end()) 108 return pos->second();
|
/external/chromium_org/media/mp4/ |
track_run_iterator.cc | 315 int64 pos = 0; local 321 BufferReader reader(buf + pos, info_size); 323 pos += info_size;
|
/external/chromium_org/ppapi/generators/ |
idl_node.py | 54 def __init__(self, cls, filename, lineno, pos, children=None): 60 self.pos = pos
|
/external/chromium_org/remoting/host/it2me/ |
it2me_host.cc | 295 size_t pos = client_username.find('/'); local 296 if (pos != std::string::npos) 297 client_username.replace(pos, std::string::npos, "");
|