/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/pb_ds/detail/gp_hash_table_map_/ |
constructor_destructor_fn_imps.hpp | 204 for (size_type pos = 0; pos < len; ++pos) 206 entry_pointer p_e = &a_entries_resized[pos];
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/pb_ds/detail/gp_hash_table_map_/ |
constructor_destructor_fn_imps.hpp | 204 for (size_type pos = 0; pos < len; ++pos) 206 entry_pointer p_e = &a_entries_resized[pos];
|
/prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/gp_hash_table_map_/ |
constructor_destructor_fn_imps.hpp | 204 for (size_type pos = 0; pos < len; ++pos) 206 entry_pointer p_e = &a_entries_resized[pos];
|
/prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/gp_hash_table_map_/ |
constructor_destructor_fn_imps.hpp | 204 for (size_type pos = 0; pos < len; ++pos) 206 entry_pointer p_e = &a_entries_resized[pos];
|
/prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/gp_hash_table_map_/ |
constructor_destructor_fn_imps.hpp | 204 for (size_type pos = 0; pos < len; ++pos) 206 entry_pointer p_e = &a_entries_resized[pos];
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/pb_ds/detail/gp_hash_table_map_/ |
constructor_destructor_fn_imps.hpp | 204 for (size_type pos = 0; pos < len; ++pos) 206 entry_pointer p_e = &a_entries_resized[pos];
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/gp_hash_table_map_/ |
constructor_destructor_fn_imps.hpp | 204 for (size_type pos = 0; pos < len; ++pos) 206 entry_pointer p_e = &a_entries_resized[pos];
|
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/gp_hash_table_map_/ |
constructor_destructor_fn_imps.hpp | 204 for (size_type pos = 0; pos < len; ++pos) 206 entry_pointer p_e = &a_entries_resized[pos];
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/ |
findertools.py | 294 def location(object, pos=None): 295 """Set the position of a Finder window for folder to pos=(w, h). Specify file by name or fsspec. 296 If pos=None, location will return the current position of the object.""" 299 if not pos: 301 return _setlocation(object_alias, pos) 329 pos = args['----'] 330 return pos.h, pos.v 484 def windowposition(folder, pos=None): 485 """Set the position of a Finder window for folder to pos=(w, h)."" [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/ |
EditableDialogCellEditor.java | 427 int pos = text.getCaretPosition(); local 428 if (pos < text.getCharCount()) { 429 text.setSelection(pos, pos + 1);
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/ |
BufferedInputStreamTest.java | 343 int size = 2, pos = 0; 349 if (pos >= size) { 352 return contents[pos++]; 357 if (pos >= size) { 364 System.arraycopy(contents, pos, buf, off, toRead); 365 pos += toRead; 371 return size - pos;
|
/external/chromium_org/content/common/ |
plugin_list_posix.cc | 414 size_t pos; local 415 if ((pos = desc.find(kPrePostFixes[i].kPrefix)) != std::string::npos) { 416 version = desc.substr(pos + strlen(kPrePostFixes[i].kPrefix)); 417 pos = std::string::npos; 419 pos = version.find(kPrePostFixes[i].kPostfix); 420 if (pos != std::string::npos) 421 version = version.substr(0, pos);
|
/external/chromium_org/third_party/icu/source/tools/ctestfw/ |
uperf.cpp | 281 char* pos = NULL; local 284 pos = strchr( name, delim ); // check if name contains path (by looking for '/') 285 if (pos) { 286 path = pos+1; // store subpath for calling subtest 287 *pos = 0; // split into two strings 303 if (pos) 304 *pos = delim; // restore original value at pos
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
u_math.h | 577 unsigned pos = 0; 578 if (n >= 1<<16) { n >>= 16; pos += 16; } 579 if (n >= 1<< 8) { n >>= 8; pos += 8; } 580 if (n >= 1<< 4) { n >>= 4; pos += 4; } 581 if (n >= 1<< 2) { n >>= 2; pos += 2; } 582 if (n >= 1<< 1) { pos += 1; } 583 return pos;
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/ |
nv50_ir_build_util.h | 176 Instruction *pos; member in class:nv50_ir::BuildUtil 202 pos = NULL; 212 pos = i; 236 if (!pos) { 240 bb->insertAfter(pos, i); 241 pos = i; 243 bb->insertBefore(pos, i);
|
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
imports.h | 512 GLuint pos = 0; 513 if (n >= 1<<16) { n >>= 16; pos += 16; } 514 if (n >= 1<< 8) { n >>= 8; pos += 8; } 515 if (n >= 1<< 4) { n >>= 4; pos += 4; } 516 if (n >= 1<< 2) { n >>= 2; pos += 2; } 517 if (n >= 1<< 1) { pos += 1; } 518 return pos;
|
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/ |
errwarn.c | 141 int pos = 0; local 144 unprint[pos++] = 'M'; 145 unprint[pos++] = '-'; 149 unprint[pos++] = '^'; 150 unprint[pos++] = (ch == '\177') ? '?' : ch | 0100; 152 unprint[pos++] = ch; 153 unprint[pos] = '\0';
|
/external/chromium_org/third_party/zlib/ |
gzread.c | 213 state->raw = state->pos; 344 state->pos += n; 445 state->pos += n; 472 state->pos++; 513 state->pos--; 534 state->pos--; 592 state->pos += n;
|
/external/chromium_org/tools/grit/grit/extern/ |
tclib.py | 291 pos = 0 295 phs[pos] = item 296 pos += len(item.GetPresentation()) 298 pos += len(item) 301 for pos in FindOverlapping(presentation, ph.GetPresentation()): 303 other_ph = phs.get(pos) 305 and not IsSubstringInPlaceholder(pos, len(ph.GetPresentation()), phs))
|
/external/doclava/src/com/google/doclava/ |
TypeInfo.java | 78 int pos = typeString.indexOf('['); local 79 if (pos > -1) { 80 mDimension = typeString.substring(pos); 81 typeString = typeString.substring(0, pos); 92 pos = typeString.lastIndexOf('.'); 93 if (pos > -1) { 94 mSimpleTypeName = typeString.substring(pos + 1);
|
/external/icu4c/tools/ctestfw/ |
uperf.cpp | 291 char* pos = NULL; local 294 pos = strchr( name, delim ); // check if name contains path (by looking for '/') 295 if (pos) { 296 path = pos+1; // store subpath for calling subtest 297 *pos = 0; // split into two strings 313 if (pos) 314 *pos = delim; // restore original value at pos
|
/external/linux-tools-perf/ |
builtin-report.c | 228 struct perf_evsel *pos; local 230 list_for_each_entry(pos, &evlist->entries, node) { 231 struct hists *hists = &pos->hists; 235 evname = event_name(pos); 262 struct perf_evsel *pos; local 314 list_for_each_entry(pos, &session->evlist->entries, node) { 315 struct hists *hists = &pos->hists;
|
/external/linux-tools-perf/util/ |
trace-event-info.c | 488 struct perf_evsel *pos; local 491 list_for_each_entry(pos, pattrs, node) { 492 if (pos->attr.type != PERF_TYPE_TRACEPOINT) 495 ppath->next = tracepoint_id_to_path(pos->attr.config); 506 struct perf_evsel *pos; local 508 list_for_each_entry(pos, pattrs, node) 509 if (pos->attr.type == PERF_TYPE_TRACEPOINT)
|
/external/mesa3d/src/gallium/auxiliary/util/ |
u_math.h | 577 unsigned pos = 0; 578 if (n >= 1<<16) { n >>= 16; pos += 16; } 579 if (n >= 1<< 8) { n >>= 8; pos += 8; } 580 if (n >= 1<< 4) { n >>= 4; pos += 4; } 581 if (n >= 1<< 2) { n >>= 2; pos += 2; } 582 if (n >= 1<< 1) { pos += 1; } 583 return pos;
|
/external/mesa3d/src/gallium/drivers/nv50/codegen/ |
nv50_ir_build_util.h | 176 Instruction *pos; member in class:nv50_ir::BuildUtil 202 pos = NULL; 212 pos = i; 236 if (!pos) { 240 bb->insertAfter(pos, i); 241 pos = i; 243 bb->insertBefore(pos, i);
|