OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:vit
(Results
1 - 4
of
4
) sorted by null
/toolchain/binutils/binutils-2.25/gas/config/
vax-inst.h
69
struct
vit
/* vax instruction tree */
struct
tc-vax.c
59
static struct
vit
v;
[
all
...]
/ndk/tests/device/test-gnustl-full/unit/
vector_test.cpp
196
vector<int>::iterator
vit
;
local
206
vit
= v.erase( v.begin() ); // Erase first element.
207
CPPUNIT_ASSERT( *
vit
== 4 );
216
vit
= v.erase(v.end() - 1); // Erase last element.
217
CPPUNIT_ASSERT(
vit
== v.end() );
240
vector<int>::iterator
vit
;
local
241
vit
= v.insert(v.begin(), 0); // Insert before first element.
242
CPPUNIT_ASSERT( *
vit
== 0 );
244
vit
= v.insert(v.end(), 36); // Insert after last element.
245
CPPUNIT_ASSERT( *
vit
== 36 )
[
all
...]
/ndk/tests/device/test-stlport/unit/
vector_test.cpp
196
vector<int>::iterator
vit
;
local
206
vit
= v.erase( v.begin() ); // Erase first element.
207
CPPUNIT_ASSERT( *
vit
== 4 );
216
vit
= v.erase(v.end() - 1); // Erase last element.
217
CPPUNIT_ASSERT(
vit
== v.end() );
240
vector<int>::iterator
vit
;
local
241
vit
= v.insert(v.begin(), 0); // Insert before first element.
242
CPPUNIT_ASSERT( *
vit
== 0 );
244
vit
= v.insert(v.end(), 36); // Insert after last element.
245
CPPUNIT_ASSERT( *
vit
== 36 )
[
all
...]
Completed in 153 milliseconds