| /sdk/ide_common/src/com/android/ide/common/resources/configuration/ |
| NetworkCodeQualifier.java | 36 * Creates and returns a qualifier from the given folder segment. If the segment is incorrect, 38 * @param segment the folder segment from which to create a qualifier. 41 public static NetworkCodeQualifier getQualifier(String segment) { 42 Matcher m = sNetworkCodePattern.matcher(segment); 62 * Returns the folder name segment for the given value. This is equivalent to calling
|
| VersionQualifier.java | 36 * Creates and returns a qualifier from the given folder segment. If the segment is incorrect, 38 * @param segment the folder segment from which to create a qualifier. 41 public static VersionQualifier getQualifier(String segment) { 42 Matcher m = sCountryCodePattern.matcher(segment); 63 * Returns the folder name segment for the given value. This is equivalent to calling
|
| /external/webkit/Source/WebKit2/Platform/ |
| Region.cpp | 57 for (Shape::SegmentIterator segment = m_shape.segments_begin(span), end = m_shape.segments_end(span); segment != end && segment + 1 != end; segment += 2) { 58 int x = *segment; 59 int width = *(segment + 1) - x; 101 // Since the segments are equal the second segment can just be ignored. 169 for (Shape::SegmentIterator segment = segments_begin(span), end = segments_end(span); segment != end; ++segment) [all...] |
| /external/guava/src/com/google/common/collect/ |
| CustomConcurrentHashMap.java | 525 // Spread bits to regularize both segment and index locations, 576 * code are used to choose the segment. 582 * end up in the same segment from also ending up in the same bucket. 589 final Segment[] segments; 628 this.segments[i] = new Segment(segmentSize); 671 Segment[] newSegmentArray(int ssize) { 673 // a segment array (the compile has a tough time with arrays of 677 return (Segment[]) Array.newInstance(Segment.class, ssize); 683 * Returns the segment that should be used for key with given has 2013 Segment segment = segmentFor(hash); local [all...] |
| /external/grub/stage2/ |
| bios.c | 30 int nsec, int segment); 46 from/into SEGMENT segment. If READ is BIOSDISK_READ, then read it, 52 int sector, int nsec, int segment) 82 SEGMENT:ADDRESS. */ 83 dap.buffer = segment << 16; 98 return biosdisk (read, drive, geometry, sector, nsec, segment); 120 nsec, segment);
|
| /external/openssl/crypto/perlasm/ |
| x86masm.pl | 11 $segment=""; 83 .text\$ SEGMENT PAGE 'CODE' 85 .text\$ SEGMENT ALIGN(64) 'CODE' 89 $segment = ".text\$"; 127 push(@out,"$segment ENDS\n"); 131 .bss SEGMENT 'BSS' 174 .CRT\$XCU SEGMENT DWORD PUBLIC 'DATA' 182 { push(@out,"$segment\tENDS\n_DATA\tSEGMENT\n"); $segment="_DATA"; }
|
| /external/sonivox/jet_tools/JetCreator/ |
| JetAudition.py | 212 for segment in self.jet_file.GetSegments():
213 info = MidiSegInfo(segment)
214 index = self.segList.InsertStringItem(sys.maxint, StrNoneChk(segment.segname))
228 """ Sets current segment name based on what's clicked """
234 """ Sets command to cancel the currently playing segment and queues another """
252 """ Sets a command to cancel the currently playing segment """
258 """ Queues a segment via the button """
263 segment = self.jet_file.GetSegment(self.currentSegmentName)
264 self.QueueOneSegment(segment, segNum)
267 """ Queues a segment """
[all...] |
| /external/kernel-headers/original/asm-x86/ |
| system_32.h | 5 #include <asm/segment.h> 66 * Load a segment. Fall back on loading the zero 67 * segment if something goes wrong.. 87 * Save a segment register away 193 static inline unsigned long get_limit(unsigned long segment) 197 :"=r" (__limit):"r" (segment));
|
| desc_defs.h | 6 * Segment descriptor structure definitions, usable from both x86_64 and i386 14 // 8 byte segment descriptor 35 u16 segment; member in struct:gate_struct
|
| /external/quake/quake/src/WinQuake/ |
| dos_v2.cpp | 163 int segment;
local 165 segment = ptr2real(ptr) >> 4;
167 if (seginfo[i].rm_segment == segment)
|
| /sdk/sdkmanager/libs/sdklib/tests/src/com/android/sdklib/io/ |
| MockFileOpTest.java | 41 for (String segment : segments) { 43 f = new File(segment); 45 f = new File(f, segment);
|
| /external/freetype/src/autofit/ |
| aflatin.c | 299 /* segment; we first need to find in which contour the extremum */ 338 /* now set the `round' flag depending on the segment's kind */ 732 AF_Segment segment = NULL; local 780 FT_Pos min_pos = 32000; /* minimum segment pos != min_coord */ 781 FT_Pos max_pos = -32000; /* maximum segment pos != max_coord */ 825 /* we are just leaving an edge; record a new segment! */ 826 segment->last = point; 827 segment->pos = (FT_Short)( ( min_pos + max_pos ) >> 1 ); 829 /* a segment is round if either its first or last point */ 831 if ( ( segment->first->flags | point->flags ) [all...] |
| aflatin2.c | 292 /* segment; we first need to find in which contour the extremum */ 331 /* now, set the `round' flag depending on the segment's kind */ 684 AF_Segment segment = NULL; local 745 else /* otherwise, find first segment start, if any */ 763 /* we're at the start of a new segment */ 790 /* record new segment */ 791 error = af_axis_hints_new_segment( axis, memory, &segment ); 795 segment[0] = seg0; 796 segment->dir = first->out_dir; 797 segment->first = first [all...] |
| /bionic/libc/kernel/arch-x86/asm/ |
| desc_defs.h | 38 u16 segment; member in struct:gate_struct
|
| /development/ndk/platforms/android-9/arch-x86/include/asm/ |
| desc_defs.h | 38 u16 segment; member in struct:gate_struct
|
| /external/oprofile/module/x86/ |
| oprofile_nmi.S | 6 #include <asm/segment.h>
|
| /external/v8/src/ |
| zone.h | 42 class Segment; 51 // allocation is attempted, a segment of memory will be requested 110 // Creates a new segment, sets it size, and pushes it to the front 111 // of the segment chain. Returns the new segment. 112 Segment* NewSegment(int size); 114 // Deletes the given segment. Does not touch the segment chain. 115 void DeleteSegment(Segment* segment, int size) [all...] |
| /packages/apps/Calendar/src/com/android/calendar/ |
| Utils.java | 622 // A segment is a single continuous length of time occupied by a single 628 int day; // quick reference to the day this segment is on 738 // is enforced in the segment code. 759 // This handles adding the first segment 765 // segment in the list 777 // If we start before the last segment in the list ends we need to 782 // find the last segment this event intersects with 786 // for each segment this event intersects with 788 // if the segment is already a conflict ignore it 792 // if the event ends before the segment and wouldn't creat 994 DNASegment segment = new DNASegment(); local [all...] |
| /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
| ContactLookupKeyTest.java | 230 LookupKeySegment segment = list.get(i); local 231 assertEquals(accountHashCodes[i], segment.accountHashCode); 232 assertEquals(types[i], segment.lookupType); 233 assertEquals(keys[i], segment.key);
|
| /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/asm/ |
| desc_defs.h | 38 u16 segment; member in struct:gate_struct
|
| /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/asm/ |
| desc_defs.h | 38 u16 segment; member in struct:gate_struct
|
| /prebuilt/ndk/android-ndk-r6/platforms/android-9/arch-x86/usr/include/asm/ |
| desc_defs.h | 38 u16 segment; member in struct:gate_struct
|
| /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/ |
| ExtraPackage.java | 45 * The vendor folder name. It must be a non-empty single-segment path.
55 * The sub-folder name. It must be a non-empty single-segment path and has the same
304 private boolean isSegmentValid(String segment) {
305 if (SdkConstants.FD_ADDONS.equals(segment) ||
306 SdkConstants.FD_PLATFORMS.equals(segment) ||
307 SdkConstants.FD_PLATFORM_TOOLS.equals(segment) ||
308 SdkConstants.FD_TOOLS.equals(segment) ||
309 SdkConstants.FD_DOCS.equals(segment) ||
310 RepoConstants.FD_TEMP.equals(segment)) {
313 return segment != null && segment.indexOf('/') == -1 && segment.indexOf('\\') == -1; [all...] |
| /external/valgrind/main/coregrind/m_debuginfo/ |
| readpdb.c | 422 unsigned short segment; member in struct:_PDB_SYMBOL_RANGE 434 unsigned short segment; member in struct:_PDB_SYMBOL_RANGE_EX 557 unsigned short segment; member in struct:codeview_symbol::__anon12370 568 unsigned short segment; member in struct:codeview_symbol::__anon12371 578 unsigned short segment; member in struct:codeview_symbol::__anon12372 590 unsigned short segment; member in struct:codeview_symbol::__anon12373 604 unsigned short segment; member in struct:codeview_symbol::__anon12374 621 unsigned short segment; member in struct:codeview_symbol::__anon12375 639 unsigned short segment; member in struct:codeview_symbol::__anon12376 656 unsigned short segment; member in struct:codeview_symbol::__anon12377 667 unsigned short segment; member in struct:codeview_symbol::__anon12378 677 unsigned short segment; member in struct:codeview_symbol::__anon12379 756 unsigned short segment; member in struct:codeview_symbol::__anon12387 768 unsigned short segment; member in struct:codeview_symbol::__anon12388 777 unsigned short segment; member in struct:codeview_symbol::__anon12389 787 unsigned short segment; member in struct:codeview_symbol::__anon12390 887 unsigned short segment; member in struct:codeview_symbol::__anon12401 [all...] |
| /frameworks/base/core/java/android/content/ |
| ContentService.java | 620 String segment = getUriSegment(uri, index); local 621 if (segment == null) { 627 if (node.mName.equals(segment)) { 635 ObserverNode node = new ObserverNode(segment); 692 String segment = null; local 698 segment = getUriSegment(uri, index); 706 if (segment == null || node.mName.equals(segment)) { 709 if (segment != null) {
|