/external/webkit/WebCore/css/ |
maketokenizer | 77 last if /YY_NUM_RULES/; 83 last if /yy_last_accepting/; 89 last if /yytext/; 93 last if not (/define/ || /line/) ; 99 last if /^YY_DECL/; 108 last if /yy_act/; 113 last if /while \( 1 \)/; 122 last if /YY_END_OF_BUFFER/; 137 last if /default:/; 142 last if /end of yylex/ [all...] |
/external/zlib/contrib/ada/ |
mtest.adb | 49 Last : out Ada.Streams.Stream_Element_Offset); 84 Last : out Ada.Streams.Stream_Element_Offset) 86 Buff_Diff : Stream_Element_Offset := Buffer'Last - Buffer_First; 90 Last := Item'Last; 98 Last := Item'First + Buff_Diff; 99 Item (Item'First .. Last) := Buffer (Buffer_First .. Buffer'Last); 100 Buffer_First := Buffer'Last + 1; 125 if Compare_First /= Buffer'Last + 1 the [all...] |
zlib.adb | 62 -- Simple_GZip_Header'Last > Footer_Array'Last, so do not make 63 -- Simple_GZip_Header'Last <= Footer_Array'Last. 220 Filter.Offset := Simple_GZip_Header'Last + 1; 251 Last : Stream_Element_Offset; 253 Translate (Filter, No_Data, Last, Out_Data, Out_Last, Flush); 269 Last : Stream_Element_Offset; 275 Data_In (In_Buffer, Last); 282 In_Data => In_Buffer (In_First .. Last), [all...] |
zlib-streams.adb | 92 Stream.Rest_First := Stream.Buffer'Last + 1; 93 Stream.Rest_Last := Stream.Buffer'Last; 106 Last : Stream_Element_Offset; 109 Flush (Stream.Writer, Buffer, Last, Mode); 111 Ada.Streams.Write (Stream.Back.all, Buffer (1 .. Last)); 113 exit when Last < Buffer'Last; 133 Last : out Stream_Element_Offset) 138 Last : out Stream_Element_Offset); 146 Last : out Stream_Element_Offset) i [all...] |
/frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/ |
ubitset.h | 80 // Sets the value of the bitrange \p first through \p last to the equivalent number of bits from \p v. 81 inline void set (uoff_t first, uoff_t DebugArg(last), value_type v) 84 assert (size_t (distance (first, last)) <= s_WordBits && "Bit ranges must be 32 bits or smaller"); 85 assert (first / s_WordBits == last / s_WordBits && "Bit ranges can not cross dword (4 byte) boundary"); 86 assert ((v & BitMask(value_type,distance(first,last))) == v && "The value is too large to fit in the given bit range"); 100 /// Returns the value in bits \p first through \p last. 101 inline value_type at (uoff_t first, uoff_t last) const 103 assert (size_t (distance (first, last)) <= s_WordBits && "Bit ranges must be 32 bits or smaller"); 104 assert (first / s_WordBits == last / s_WordBits && "Bit ranges can not cross dword (4 byte) boundary"); 105 return ((BitRef(first) >> (first % s_WordBits)) & BitMask(value_type,distance(first, last))); [all...] |
/external/opencore/oscl/oscl/osclbase/src/ |
oscl_vector.cpp | 155 OSCL_EXPORT_REF OsclAny* Oscl_Vector_Base::erase(OsclAny* first, OsclAny* last) 160 destroy(first, last); 161 move(last, end(), first); 162 numelems -= (((uint32)last - (uint32)first) / sizeof_T); 204 OsclAny* Oscl_Vector_Base::move(OsclAny* first, OsclAny* last, OsclAny* result) 206 oscl_memmove(result, first, (uint32)last - (uint32)first); 207 return last; 210 OsclAny* Oscl_Vector_Base::copy(OsclAny* first, OsclAny* last, OsclAny* result) 212 while (first != last) 222 OsclAny* Oscl_Vector_Base::uninitialized_copy(OsclAny* first, OsclAny* last, OsclAny* result [all...] |
/external/quake/quake/src/WinQuake/ |
gl_mesh.cpp | 62 mtriangle_t *last, *check; local 67 last = &triangles[starttri]; 69 stripverts[0] = last->vertindex[(startv)%3]; 70 stripverts[1] = last->vertindex[(startv+1)%3]; 71 stripverts[2] = last->vertindex[(startv+2)%3]; 76 m1 = last->vertindex[(startv+2)%3]; 77 m2 = last->vertindex[(startv+1)%3]; 83 if (check->facesfront != last->facesfront) 131 mtriangle_t *last, *check; local 136 last = &triangles[starttri] 202 mtriangle_t *last, *check; local [all...] |
/external/bluetooth/glib/gio/ |
gpollfilemonitor.c | 93 calc_event_type (GFileInfo *last, 96 if (last == NULL && new == NULL) 99 if (last == NULL && new != NULL) 102 if (last != NULL && new == NULL) 105 if (safe_strcmp (g_file_info_get_etag (last), 109 if (g_file_info_get_size (last) !=
|
/frameworks/base/tools/localize/ |
file_utils.cpp | 26 mkdirs(const char* last) 29 const char* s = last-1; 33 if (s > last && (*s == '.' || *s == 0)) { 34 String8 part(last, s-last); 44 last = s+1;
|
/cts/tests/tests/text/src/android/text/method/cts/ |
ArrowKeyMovementMethodTest.java | 141 * and checking the assertion at last. 279 // last line 286 // last line 295 // last line 306 // last line 315 // last line 324 // last line 331 // last line 348 // last line 355 // last line [all...] |
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/paddings/ |
TBCPadding.java | 10 * This padding pads the block out with the compliment of the last bit 42 * Note: this assumes that the last block of plain text is always 45 * should be the same as the last block of plain text.
|
/external/astl/include/ |
algorithm | 79 __copy_move(_InputIterator first, _InputIterator last, _OutputIterator res) { 80 for (; first != last; ++res, ++first) { 93 __copy_move(_InputIterator first, _InputIterator last, _OutputIterator res) { 97 for (difference_type n = last - first; n > 0; --n) { 108 // copy elements in the range [first, last) into the range [result, 109 // result + (last - first)) starting from first and proceeding to 110 // last. 112 // For each non negative n < (last - first) performs: 114 // @require result should not be in the [first, last) range. 115 // @return result + (last - first [all...] |
/external/dropbear/ |
kex.h | 56 long lastkextime; /* time of the last kex */ 57 unsigned int datatrans; /* data transmitted since last kex */ 58 unsigned int datarecv; /* data received since last kex */
|
/external/webkit/WebKitTools/iExploder/tools/ |
lasthit.rb | 6 # of all the agents who tested within that section, what their last test 33 hostHash[host][agent]['last'] = testnum 50 host, hostHash[host][agent]['last'], hostHash[host][agent]['subtest'], hostHash[host][agent]['total'], agent);
|
/packages/apps/Contacts/res/values-en-rUS/ |
strings.xml | 21 <string name="name_family">Last name</string> 27 <string name="display_options_sort_by_family_name">Last name</string> 33 <string name="display_options_view_family_name_first">Last name first</string>
|
/cts/tools/dasm/src/java_cup/runtime/ |
char_token.java | 9 * @version last updated: 1/7/96
|
double_token.java | 9 * @version last updated: 1/7/96
|
float_token.java | 9 * @version last updated: 1/7/96
|
int_token.java | 9 * @version last updated: 11/25/95
|
long_token.java | 9 * @version last updated: 1/7/96
|
str_token.java | 9 * @version last updated: 11/25/95
|
token.java | 10 * @version last updated: 11/25/95
|
/external/bison/data/ |
location.cc | 236 position last = loc.end - 1; 238 if (last.filename 240 || *loc.begin.filename != *last.filename)) 241 ostr << '-' << last; 242 else if (loc.begin.line != last.line) 243 ostr << '-' << last.line << '.' << last.column; 244 else if (loc.begin.column != last.column) 245 ostr << '-' << last.column;
|
/external/dnsmasq/contrib/try-all-ns/ |
README-2.47 | 11 until the last one says NXDOMAIN.
|
/external/easymock/src/org/easymock/ |
Capture.java | 38 * Default constructor. Only the last element will be captured
41 this(CaptureType.LAST);
74 * @return The last captured value
115 case LAST:
|