HomeSort by relevance Sort by last modified time
    Searched refs:cur (Results 251 - 275 of 598) sorted by null

<<11121314151617181920>>

  /frameworks/compile/mclinker/include/mcld/Support/
Allocators.h 235 chunk_type *cur = m_pRoot, *prev; local
236 while (0 != cur) {
237 prev = cur;
238 cur = cur->next;
  /external/libsepol/src/
expand.c 1200 role_allow_rule_t *cur; local
1207 cur = rules;
1208 while (cur) {
1212 if (role_set_expand(&cur->roles, &roles, state->out, state->base, state->rolemap)) {
1217 if (role_set_expand(&cur->new_roles, &new_roles, state->out, state->base, state->rolemap)) {
1259 cur = cur->next;
1269 role_trans_rule_t *cur; local
1276 cur = rules;
1277 while (cur) {
1640 class_perm_node_t *cur; local
1749 class_perm_node_t *cur; local
1914 avrule_t *cur; local
1933 cond_expr_t *cur; local
3321 cond_av_list_t *cur; local
    [all...]
  /external/checkpolicy/
checkpolicy.c 306 cond_expr_t *cur; local
307 for (cur = exp; cur != NULL; cur = cur->next) {
308 switch (cur->expr_type) {
311 policydbp->p_bool_val_to_name[cur->bool - 1]);
340 cond_node_t *cur; local
342 for (cur = policydbp->cond_list; cur != NULL; cur = cur->next)
    [all...]
  /external/stlport/test/unit/
fstream_test.cpp 268 is.seekg( 8, ios_base::cur );
281 CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(6) );
289 CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(9) );
321 CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(expected_pos) );
339 CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(10) );
390 CPPUNIT_ASSERT( s.rdbuf()->pubseekoff( 0, ios_base::cur ) == fstream::pos_type(chars_read) );
391 CPPUNIT_ASSERT( s.rdbuf()->pubseekoff( -chars_read, ios_base::cur ) == fstream::pos_type(0) );
417 fstream::pos_type pos = s.rdbuf()->pubseekoff(0, ios_base::cur);
421 offset = s.rdbuf()->pubseekoff( -offset, ios_base::cur );
429 pos = s.rdbuf()->pubseekoff(0, ios_base::cur);
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
fstream_test.cpp 286 is.seekg( 8, ios_base::cur );
299 CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(6) );
307 CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(9) );
339 CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(expected_pos) );
357 CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(10) );
408 CPPUNIT_ASSERT( s.rdbuf()->pubseekoff( 0, ios_base::cur ) == fstream::pos_type(chars_read) );
409 CPPUNIT_ASSERT( s.rdbuf()->pubseekoff( -chars_read, ios_base::cur ) == fstream::pos_type(0) );
435 fstream::pos_type pos = s.rdbuf()->pubseekoff(0, ios_base::cur);
439 offset = s.rdbuf()->pubseekoff( -offset, ios_base::cur );
447 pos = s.rdbuf()->pubseekoff(0, ios_base::cur);
    [all...]
  /ndk/tests/device/test-stlport/unit/
fstream_test.cpp 286 is.seekg( 8, ios_base::cur );
299 CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(6) );
307 CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(9) );
339 CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(expected_pos) );
357 CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(10) );
408 CPPUNIT_ASSERT( s.rdbuf()->pubseekoff( 0, ios_base::cur ) == fstream::pos_type(chars_read) );
409 CPPUNIT_ASSERT( s.rdbuf()->pubseekoff( -chars_read, ios_base::cur ) == fstream::pos_type(0) );
435 fstream::pos_type pos = s.rdbuf()->pubseekoff(0, ios_base::cur);
439 offset = s.rdbuf()->pubseekoff( -offset, ios_base::cur );
447 pos = s.rdbuf()->pubseekoff(0, ios_base::cur);
    [all...]
  /external/freetype/src/truetype/
ttinterp.c 68 /* context is named `cur'. */
99 #define CUR (*exc) /* see ttobjs.h */
110 #define CUR cur
115 TT_ExecContextRec cur; /* static exec. context variable */ variable
118 /* the static `cur', which makes the code bigger (due to all the */
166 CUR.func_move( EXEC_ARG_ z, p, d )
169 CUR.func_move_orig( EXEC_ARG_ z, p, d )
172 CUR.func_round( EXEC_ARG_ d, c )
175 CUR.func_read_cvt( EXEC_ARG_ index
    [all...]
  /external/v8/src/mips/
simulator-mips.cc 497 int32_t* cur = NULL; local
502 cur = reinterpret_cast<int32_t*>(sim_->get_register(Simulator::sp));
509 cur = reinterpret_cast<int32_t*>(value);
521 end = cur + words;
523 while (cur < end) {
525 reinterpret_cast<intptr_t>(cur), *cur, *cur);
526 HeapObject* obj = reinterpret_cast<HeapObject*>(*cur);
527 int value = *cur;
550 byte* cur = NULL; local
684 byte* cur = NULL; local
    [all...]
  /external/freetype/include/freetype/internal/
psaux.h     [all...]
  /frameworks/support/tests/java/android/support/v4/content/
FileProviderTest.java 341 File cur = base; local
343 if (cur == null) {
344 cur = new File(segment);
346 cur = new File(cur, segment);
349 return cur;
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
MachineProbe.java 119 Set<NFAState> cur = nfaStates.get(i); local
125 for (NFAState p : cur) {
  /external/chromium/net/tools/flip_server/
epoll_server.cc 449 CBAndEventMask* cur = ready_list_.lh_first; local
450 for (; cur; cur = cur->entry.le_next) {
453 for (cur = tmp_list_.lh_first; cur; cur = cur->entry.le_next) {
  /external/clang/utils/
clang-completion-mode.el 118 (let ((cur (current-buffer)))
122 (set-buffer cur))
  /external/harfbuzz_ng/src/
hb-buffer-private.hh 74 inline hb_glyph_info_t &cur (unsigned int i = 0) { return info[idx + i]; } function in struct:hb_buffer_t
75 inline hb_glyph_info_t cur (unsigned int i = 0) const { return info[idx + i]; } function in struct:hb_buffer_t
  /external/libxml2/include/libxml/
xmlschemastypes.h 120 xmlSchemaValPtr cur);
122 xmlSchemaValueGetNext (xmlSchemaValPtr cur);
  /external/stlport/stlport/stl/
_fstream.c 139 streamoff __pos = _M_base._M_seek(0, ios_base::cur);
300 if (!_M_seek_init(__off != 0 || __whence != ios_base::cur))
309 _STLP_ASSERT(__whence == ios_base::cur)
320 return __off == 0 ? pos_type(_M_base._M_seek(0, ios_base::cur) - __adjust)
321 : _M_seek_return(_M_base._M_seek(__off - __adjust, ios_base::cur), _State_type());
335 return __off == 0 ? pos_type(_M_base._M_seek(0, ios_base::cur) - __eadj)
336 : _M_seek_return(_M_base._M_seek(__off - __eadj, ios_base::cur), _State_type());
370 streamoff __cur = _M_base._M_seek(0, ios_base::cur);
  /external/v8/src/
lithium-allocator.cc 103 UsePosition* cur = first_pos_; local
104 while (cur != NULL) {
105 ASSERT(Start().Value() <= cur->pos().Value() &&
106 cur->pos().Value() <= End().Value());
107 cur = cur->next();
753 LMoveOperands cur = move_operands->at(i); local
754 LOperand* cur_to = cur.destination();
758 move->AddMove(cur.source(), to);
907 LMoveOperands* cur = &move_operands->at(i) local
1237 HBasicBlock* cur = block->predecessors()->at(i); local
1412 LiveRange* cur = range; local
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_fstream.c 139 streamoff __pos = _M_base._M_seek(0, ios_base::cur);
300 if (!_M_seek_init(__off != 0 || __whence != ios_base::cur))
309 _STLP_ASSERT(__whence == ios_base::cur)
320 return __off == 0 ? pos_type(_M_base._M_seek(0, ios_base::cur) - __adjust)
321 : _M_seek_return(_M_base._M_seek(__off - __adjust, ios_base::cur), _State_type());
335 return __off == 0 ? pos_type(_M_base._M_seek(0, ios_base::cur) - __eadj)
336 : _M_seek_return(_M_base._M_seek(__off - __eadj, ios_base::cur), _State_type());
370 streamoff __cur = _M_base._M_seek(0, ios_base::cur);
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_fstream.c 139 streamoff __pos = _M_base._M_seek(0, ios_base::cur);
300 if (!_M_seek_init(__off != 0 || __whence != ios_base::cur))
309 _STLP_ASSERT(__whence == ios_base::cur)
320 return __off == 0 ? pos_type(_M_base._M_seek(0, ios_base::cur) - __adjust)
321 : _M_seek_return(_M_base._M_seek(__off - __adjust, ios_base::cur), _State_type());
335 return __off == 0 ? pos_type(_M_base._M_seek(0, ios_base::cur) - __eadj)
336 : _M_seek_return(_M_base._M_seek(__off - __eadj, ios_base::cur), _State_type());
370 streamoff __cur = _M_base._M_seek(0, ios_base::cur);
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_fstream.c 139 streamoff __pos = _M_base._M_seek(0, ios_base::cur);
300 if (!_M_seek_init(__off != 0 || __whence != ios_base::cur))
309 _STLP_ASSERT(__whence == ios_base::cur)
320 return __off == 0 ? pos_type(_M_base._M_seek(0, ios_base::cur) - __adjust)
321 : _M_seek_return(_M_base._M_seek(__off - __adjust, ios_base::cur), _State_type());
335 return __off == 0 ? pos_type(_M_base._M_seek(0, ios_base::cur) - __eadj)
336 : _M_seek_return(_M_base._M_seek(__off - __eadj, ios_base::cur), _State_type());
370 streamoff __cur = _M_base._M_seek(0, ios_base::cur);
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_fstream.c 139 streamoff __pos = _M_base._M_seek(0, ios_base::cur);
300 if (!_M_seek_init(__off != 0 || __whence != ios_base::cur))
309 _STLP_ASSERT(__whence == ios_base::cur)
320 return __off == 0 ? pos_type(_M_base._M_seek(0, ios_base::cur) - __adjust)
321 : _M_seek_return(_M_base._M_seek(__off - __adjust, ios_base::cur), _State_type());
335 return __off == 0 ? pos_type(_M_base._M_seek(0, ios_base::cur) - __eadj)
336 : _M_seek_return(_M_base._M_seek(__off - __eadj, ios_base::cur), _State_type());
370 streamoff __cur = _M_base._M_seek(0, ios_base::cur);
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_fstream.c 139 streamoff __pos = _M_base._M_seek(0, ios_base::cur);
300 if (!_M_seek_init(__off != 0 || __whence != ios_base::cur))
309 _STLP_ASSERT(__whence == ios_base::cur)
320 return __off == 0 ? pos_type(_M_base._M_seek(0, ios_base::cur) - __adjust)
321 : _M_seek_return(_M_base._M_seek(__off - __adjust, ios_base::cur), _State_type());
335 return __off == 0 ? pos_type(_M_base._M_seek(0, ios_base::cur) - __eadj)
336 : _M_seek_return(_M_base._M_seek(__off - __eadj, ios_base::cur), _State_type());
370 streamoff __cur = _M_base._M_seek(0, ios_base::cur);
  /external/chromium/chrome/browser/net/
url_fixer_upper_unittest.cc 334 std::string cur(WideToUTF8(original.value()));
335 EXPECT_EQ(':', cur[1]);
336 cur[1] = '|';
337 EXPECT_EQ(golden, URLFixerUpper::FixupURL(cur, std::string()));
  /external/chromium/net/base/
cert_verifier.cc 410 std::map<RequestParams, CachedCertVerifyResult>::iterator i, cur; local
412 cur = i++;
413 if (cur->second.HasExpired(current_time))
414 cache_.erase(cur);
  /external/e2fsprogs/resize/
main.c 49 unsigned long cur, unsigned long max)
58 if (cur == 0) {
90 ext2fs_progress_update(progress, cur);
91 if (cur >= max) {

Completed in 3050 milliseconds

<<11121314151617181920>>