/external/webkit/WebCore/platform/graphics/ |
Gradient.cpp | 142 if (value >= 1 || value >= m_stops.last().stop) { 143 *r = m_stops.last().red; 144 *g = m_stops.last().green; 145 *b = m_stops.last().blue; 146 *a = m_stops.last().alpha;
|
/external/webkit/WebKitTools/Scripts/ |
update-webkit-auxiliary-libs | 48 # Last-Modified times. 58 print "Checking Last-Modified date of $zipFile...\n"; 60 my $result = system "curl -s -I $auxiliaryLibsURL | grep Last-Modified > \"$tmpDir/$file.headers\""; 61 print STDERR "Couldn't check Last-Modified date of new $zipFile.\n" if $result; 119 $str =~ /^Last-Modified: (.*)$/ or return;
|
VCSUtils.pm | 87 # Args: pass the child error status returned by the last pipe close, 190 my $last = ''; 217 last if !$thisUUID; 219 last if $thisUUID ne $repositoryUUID; 221 last if !$thisRoot; 223 last if $thisRoot ne $repositoryRoot; 225 $last = $path; 229 return File::Spec->rel2abs($last); 349 last; 387 # the file handle so the last line read is the first line after th [all...] |
/external/zlib/contrib/infback9/ |
infback9.c | 230 int lastblock; /* true if processing last block */ 246 code last; /* parent table entry */ local 274 /* Inflate until end of block marked as last */ 290 lastblock ? " (last)" : "")); 299 lastblock ? " (last)" : "")); 304 lastblock ? " (last)" : "")); 468 last = this; 470 this = lencode[last.val + 471 (BITS(last.bits + last.op) >> last.bits)] [all...] |
/frameworks/base/core/tests/coretests/src/android/widget/listview/arrowscroll/ |
ListOfItemsShorterThanScreenTest.java | 79 assertTrue("last item should be partially off screen", 94 // the current view isn't the last anymore... 97 // peeking view is now last 105 // go down to one past last item, then back up to the second item. this will 149 assertEquals("bottom of last item should be just above padding; no fading edge.",
|
/frameworks/base/core/tests/coretests/src/android/widget/scroll/ |
ScrollViewButtonsAndLabelsTest.java | 76 assertTrue("the button we've moved to off screen must not be the last " 94 // if the item is the last one on screen 105 // move down to last button 110 assertTrue("last button should have focus", lastButton.hasFocus()); 172 assertTrue("we want to be at the last button", lastButton.hasFocus());
|
/frameworks/base/include/media/ |
mediarecorder.h | 49 AUDIO_SOURCE_LIST_END // must be last - used to validate audio source type 56 VIDEO_SOURCE_LIST_END // must be last - used to validate audio source type 76 OUTPUT_FORMAT_LIST_END // must be last - used to validate format type 87 AUDIO_ENCODER_LIST_END // must be the last - used to validate the audio encoder type 96 VIDEO_ENCODER_LIST_END // must be the last - used to validate the video encoder type
|
/hardware/ti/omap3/omx/system/src/openmax_il/perf/inc/ |
perf_rt.h | 59 tn0: tn in the last temporal statistics phase (since the last executing phase) 60 if frame rate is less than 0.5fps and tn0 is less than 10 in the last phase, 92 unsigned long last_burst; /* last burst so we don't count the 93 last delay of each raw burst into
|
/hardware/ti/wlan/wl1271/stad/src/Sta_Management/ |
currBss.h | 73 CURR_BSS_INFO /**< Requested by AP Connection: includes quality and last beacon info */ 110 TI_INT8 lowRssiThreshold; /**< Last configured threshold for Low-RSSI */ 111 TI_INT8 lowSnrThreshold; /**< Last configured threshold Low-SNR */ 114 TI_UINT8 numExpectedTbttForBSSLoss;/**< last configured value without Soft Gemini compensation */ 115 TI_UINT8 maxTxRetryThreshold; /**< last configured threshold for max Tx retry */
|
/packages/apps/Browser/src/com/android/browser/ |
SystemAllowGeolocationOrigins.java | 40 // Preference key for the value of the system setting last read by the browser 93 // Get the last read value 98 // If the new value is the same as the last one we read, we're done. 103 // Save the new value as the last read value 113 // Remove the origins in the last read value
|
/system/wlan/ti/wilink_6_1/stad/src/Sta_Management/ |
currBss.h | 73 CURR_BSS_INFO /**< Requested by AP Connection: includes quality and last beacon info */ 111 TI_INT8 lowRssiThreshold; /**< Last configured threshold for Low-RSSI */ 112 TI_INT8 lowSnrThreshold; /**< Last configured threshold Low-SNR */ 115 TI_UINT8 numExpectedTbttForBSSLoss;/**< last configured value without Soft Gemini compensation */ 116 TI_UINT8 maxTxRetryThreshold; /**< last configured threshold for max Tx retry */
|
/external/zlib/contrib/inflate86/ |
inffast.S | 42 * have less latency than MMX ops. Added code to buffer the last 11 bytes of 51 * structure offsets which are hard coded in this file. This was last tested 181 #define last 20 /* unsigned char* */ define 244 * last = in + strm->avail_in - 11; 255 movl %edx, last(%esp) 320 movl last(%esp), %ecx 322 ja .L_align_long /* if in < last */ 334 movl in_r, last(%esp) /* last = in, do just one iteration */ 426 /* while (in < last && out < end [all...] |
/external/opencore/oscl/oscl/osclbase/src/ |
oscl_tree.h | 505 void insert_unique(const_iterator first, const_iterator last) 507 for (; first != last; ++first) 511 void insert_unique(const value_type* first, const value_type* last) 513 for (; first != last; ++first) 537 void erase(iterator first, iterator last) 539 if (first == begin() && last == end()) 542 while (first != last) erase(first++); 545 void erase(const key_type* first, const key_type* last) 547 while (first != last) erase(*first++); 564 link_type y = header; // Last node which is not less than k [all...] |
/bootable/recovery/edify/ |
README | 56 As shown in the last example, function names are just strings, 80 The last example is equivalent to: 87 expression. Their value is the value of the last-evaluated
|
/dalvik/dx/tests/031-bb-dead-code/ |
blort.j | 26 ; dead code after the last reachable instruction in a method 32 ; dead code after the last reachable instruction in a method 39 ; dead code after the last reachable instruction in a method
|
/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/ |
CyclicBarrier.java | 19 * that is run once per barrier point, after the last thread in the party 142 // signal completion of last generation 233 * performed by the last thread entering the barrier. 274 * <p>If the current thread is not the last to arrive then it is 278 * <li>The last thread arrives; or 305 * <p>If the current thread is the last thread to arrive, and a 315 * to arrive and zero indicates the last to arrive 336 * <p>If the current thread is not the last to arrive then it is 340 * <li>The last thread arrives; or 372 * <p>If the current thread is the last thread to arrive, and [all...] |
/dalvik/libcore/text/src/main/java/java/text/ |
RuleBasedBreakIterator.java | 92 * @see java.text.BreakIterator#last() 95 public int last() { method in class:RuleBasedBreakIterator 96 return wrapped.last();
|
/dalvik/libcore/xml/src/main/java/org/apache/xalan/transformer/ |
Counter.java | 72 * Value to store result of last getCount call, for benifit 146 * Get the last node in the list. 148 * @return the last node in the list.
|
/external/bluetooth/glib/po/ |
po2tbl.sed.in | 58 # Some buggy seds do not clear the `successful substitution since last ``t''' 74 # Increment the last digit. 93 # Last line.
|
/external/grub/stage2/ |
disk_inode.h | 69 mach_time_t ic_atime; /* 16: time last accessed */ 71 mach_time_t ic_mtime; /* 24: time last modified */ 73 mach_time_t ic_ctime; /* 32: last time inode changed */
|
/external/icu4c/samples/break/ |
ubreak.c | 61 /* Print last element */ 117 /*print last element*/ 118 printf("\n----- last: --------------\n");
|
/external/opencore/fileformats/mp4/composer/src/ |
expandablebaseclass.cpp | 48 // byte fp valid - thus only the last 7 bits if each byte hold actual size data. Therefore 90 // Set leading bit on all but last size byte 93 // Take last 7 bits of size and set leading bit in data
|
/external/opencore/pvmi/content_policy_manager/plugins/common/include/ |
pvmf_cpmplugin_license_manager_interface_types.h | 118 //Information about the last entry processed. 127 //Result of processing the last license response 136 //Result of processing the last license ack response
|
pvmf_cpmplugin_metering_interface_types.h | 121 //Information about the last entry retrieved from 132 //Result of processing the last meter cert response 141 //result of processing the last meter response
|
/external/oprofile/daemon/ |
opd_sfile.c | 300 struct sfile * last = trans->last; local 320 hash = last->hashval & (CG_HASH_SIZE - 1); 323 * 'last', we use its hash. 327 if (sfile_equal(last, &cg->to)) { 334 sfile_dup(&cg->to, last); 340 opd_open_sample_file(file, last, sf, trans->event, is_cg); 400 if (trans->last->kernel) 401 to -= trans->last->kernel->start; 406 if (trans->last->anon [all...] |