HomeSort by relevance Sort by last modified time
    Searched refs:segments (Results 1 - 25 of 71) sorted by null

1 2 3

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
LibraryDeltaVisitor.java 55 String[] segments = path.segments(); local
58 // segments.length = 1
59 if (segments.length == 1) {
63 } else if (segments.length == 2) {
64 if (SdkConstants.FD_RESOURCES.equalsIgnoreCase(segments[1])) {
68 } else if (SdkConstants.FD_NATIVE_LIBS.equalsIgnoreCase(segments[1])) {
PreCompilerDeltaVisitor.java 194 String[] segments = path.segments(); local
197 // segments.length = 1
198 if (segments.length == 1) {
202 } else if (segments.length == 2) {
208 if (SdkConstants.FD_RESOURCES.equalsIgnoreCase(segments[1])) {
217 } else if (SdkConstants.FN_ANDROID_MANIFEST_XML.equalsIgnoreCase(segments[1])) {
313 IFile sourceFile = findFile(sourceFolder, segments, 2, aidlFileName);
460 * Searches for and return a file in a folder. The file is defined by its segments, and a new
463 * @param segments the segments of the file to search
    [all...]
  /frameworks/base/media/libmedia/
ToneGenerator.cpp 36 { segments: {{ duration: ToneGenerator::TONEGEN_INF, waveFreq: { 1336, 941, 0 }, 0, 0},
40 { segments: { { duration: ToneGenerator::TONEGEN_INF, waveFreq: { 1209, 697, 0 }, 0, 0 },
44 { segments: { { duration: ToneGenerator::TONEGEN_INF, waveFreq: { 1336, 697, 0 }, 0, 0 },
48 { segments: { { duration: ToneGenerator::TONEGEN_INF, waveFreq: { 1477, 697, 0 }, 0, 0 },
52 { segments: { { duration: ToneGenerator::TONEGEN_INF, waveFreq: { 1209, 770, 0 }, 0, 0 },
56 { segments: { { duration: ToneGenerator::TONEGEN_INF, waveFreq: { 1336, 770, 0 }, 0, 0 },
60 { segments: { { duration: ToneGenerator::TONEGEN_INF, waveFreq: { 1477, 770, 0 }, 0, 0 },
64 { segments: { { duration: ToneGenerator::TONEGEN_INF, waveFreq: { 1209, 852, 0 }, 0, 0 },
68 { segments: { { duration: ToneGenerator::TONEGEN_INF, waveFreq: { 1336, 852, 0 }, 0, 0 },
72 { segments: { { duration: ToneGenerator::TONEGEN_INF, waveFreq: { 1477, 852, 0 }, 0, 0 }
    [all...]
  /external/skia/src/utils/
SkUnitMappers.cpp 3 SkDiscreteMapper::SkDiscreteMapper(int segments)
5 if (segments < 2)
12 if (segments > 0xFFFF)
13 segments = 0xFFFF;
14 fSegments = segments;
15 fScale = SK_Fract1 / (segments - 1);
  /external/icu4c/layout/
LookupTables.h 57 const LookupSegment *lookupSegment(const LookupSegment *segments, LEGlyphID glyph) const;
69 LookupSegment segments[ANY_NUMBER]; member in struct:SegmentSingleLookupTable
74 LookupSegment segments[ANY_NUMBER]; member in struct:SegmentArrayLookupTable
SegmentArrayProcessor.cpp 38 const LookupSegment *segments = segmentArrayLookupTable->segments; local
44 const LookupSegment *lookupSegment = segmentArrayLookupTable->lookupSegment(segments, thisGlyph);
SegmentSingleProcessor.cpp 38 const LookupSegment *segments = segmentSingleLookupTable->segments; local
44 const LookupSegment *lookupSegment = segmentSingleLookupTable->lookupSegment(segments, thisGlyph);
LookupTables.cpp 27 const LookupSegment *BinarySearchLookupTable::lookupSegment(const LookupSegment *segments, LEGlyphID glyph) const
33 const LookupSegment *entry = segments;
  /external/sonivox/jet_tools/JetCreator/
JetDebug.py 43 def DumpSegments1(segments):
44 for segment in segments:
56 def DumpSegments(segments):
57 for segment in segments:
JetFile.py 93 """ Class to hold segments """
302 # count segments
303 segments = []
360 segments.append(JetSegment(segname, filename, start, end, length, output, quantize, jetevents, dlsfile, dump_file, int(transpose), int(repeat), int(mute_flags)))
363 self.segments = segments
364 if not len(segments):
365 #TODO: Check for segments when writing
366 #raise JetFileException('No segments defined in configuration file')
392 JINF_NUM_SMF_CHUNKS, len(self.segments),
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentHashMap.java 88 * The basic strategy is to subdivide the table among Segments,
121 * The maximum number of segments to allow; used to bound
137 * Mask value for indexing into segments. The upper bits of a
143 * Shift value for indexing within segments.
148 * The segments, each of which is a specialized hash table
150 final Segment<K,V>[] segments; field in class:ConcurrentHashMap
182 return segments[(hash >>> segmentShift) & segmentMask];
219 * Segments are specialized versions of hash tables. This
225 * Segments maintain a table of entry lists that are ALWAYS
272 * of segments computing size or checking containsValue, the
685 final Segment<K,V>[] segments = this.segments; local
724 final Segment<K,V>[] segments = this.segments; local
812 final Segment<K,V>[] segments = this.segments; local
    [all...]
  /external/skia/include/utils/
SkUnitMappers.h 26 SkDiscreteMapper(int segments);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/
ProjectClassLoader.java 66 // get the class name segments
67 String[] segments = name.split("\\."); //$NON-NLS-1$ local
69 File classFile = getFile(outFolder, segments, 0);
108 * @param segments the segments containing the path of the file
109 * @param index the offset at which to start looking into segments.
112 private File getFile(File parent, String[] segments, int index)
115 if (index == segments.length) {
119 String toMatch = segments[index];
122 // we're at the last segments. we look for a matching <file>.clas
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
WidgetPullParser.java 47 String[] segments = mDescriptor.getFullClassName().split(AndroidConstants.RE_DOT); local
48 mAttributes[0][1] = segments[segments.length-1];
  /external/guava/src/com/google/common/collect/
CustomConcurrentHashMap.java 540 * The basic strategy is to subdivide the table among Segments,
554 * The maximum number of segments to allow; used to bound constructor
575 * Mask value for indexing into segments. The upper bits of a key's hash
581 * Shift value for indexing within segments. Helps prevent entries that
587 * The segments, each of which is a specialized hash table
589 final Segment[] segments; field in class:CustomConcurrentHashMap.Impl
612 this.segments = newSegmentArray(segmentCount);
627 for (int i = 0; i < this.segments.length; ++i) {
628 this.segments[i] = new Segment(segmentSize);
689 return segments[(hash >>> segmentShift) & segmentMask]
1228 final Segment[] segments = this.segments; local
1269 final Segment[] segments = this.segments; local
1368 final Segment[] segments = this.segments; local
1907 static final Field segments = findField("segments"); field in class:CustomConcurrentHashMap.Impl.Fields
    [all...]
  /external/chromium/third_party/icu/source/i18n/
rbt_rule.cpp 47 * segments, or null if there are none. The array itself is adopted,
65 segments(0),
100 // We don't validate the segments array. The caller must
101 // guarantee that the segments are well-formed (that is, that
104 this->segments = segs;
172 segments = NULL;
175 segments = (UnicodeFunctor **)uprv_malloc(other.segmentsCount * sizeof(UnicodeFunctor *));
176 uprv_memcpy(segments, other.segments, other.segmentsCount*sizeof(segments[0]))
    [all...]
  /external/freetype/src/autofit/
afwarp.c 53 AF_Segment segments,
97 FT_Pos len = segments[nn].max_coord - segments[nn].min_coord;
98 FT_Pos y0 = FT_MulFix( segments[nn].pos, scale ) + delta;
150 AF_Segment segments; local
171 segments = axis->segments;
196 X1 = X2 = segments[0].pos;
199 FT_Int X = segments[nn].pos;
314 segments, num_segments )
    [all...]
afcjk.c 121 AF_Segment segments = axis->segments; local
122 AF_Segment segment_limit = segments + axis->num_segments;
133 for ( seg = segments; seg < segment_limit; seg++ )
165 AF_Segment segments = axis->segments; local
166 AF_Segment segment_limit = segments + axis->num_segments;
180 for ( seg1 = segments; seg1 < segment_limit; seg1++ )
182 /* the fake segments are for metrics hinting only */
189 for ( seg2 = segments; seg2 < segment_limit; seg2++
334 AF_Segment segments = axis->segments; local
    [all...]
  /external/icu4c/i18n/
rbt_rule.cpp 47 * segments, or null if there are none. The array itself is adopted,
65 segments(0),
100 // We don't validate the segments array. The caller must
101 // guarantee that the segments are well-formed (that is, that
104 this->segments = segs;
172 segments = NULL;
175 segments = (UnicodeFunctor **)uprv_malloc(other.segmentsCount * sizeof(UnicodeFunctor *));
176 uprv_memcpy(segments, other.segments, other.segmentsCount*sizeof(segments[0]))
    [all...]
  /packages/apps/Email/src/com/android/email/provider/
AttachmentProvider.java 157 List<String> segments = uri.getPathSegments(); local
158 String id = segments.get(1);
159 String format = segments.get(2);
240 List<String> segments = uri.getPathSegments(); local
241 String accountId = segments.get(0);
242 String id = segments.get(1);
243 String format = segments.get(2);
245 int width = Integer.parseInt(segments.get(3));
246 int height = Integer.parseInt(segments.get(4));
329 List<String> segments = uri.getPathSegments() local
    [all...]
  /external/webkit/WebCore/inspector/front-end/
SummaryBar.js 137 _drawSummaryGraph: function(segments)
139 if (!segments || !segments.length) {
140 segments = [{color: "white", value: 1}];
145 // Calculate the total of all segments.
147 for (var i = 0; i < segments.length; ++i)
148 total += segments[i].value;
151 var percents = segments.map(function(s) { return Math.max(Math.round(100 * s.value / total), 1) });
159 // if we rounded up for a few segments.
170 // if we rounded down for a few segments
    [all...]
  /external/e2fsprogs/intl/
gmo.h 95 /* The number of system dependent segments. */
97 /* Offset of table describing system dependent segments. */
130 /* Offset of static string segments in file. */
132 /* Alternating sequence of static and system dependent segments.
140 } segments[1]; member in struct:sysdep_string
143 /* Marker for the end of the segments[] array. This has the value 0xFFFFFFFF,
  /external/kernel-headers/original/linux/
kexec.h 96 struct kexec_segment __user *segments,
101 struct compat_kexec_segment __user *segments,
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/
LogFilter.java 127 String[] segments = string.split(":"); // $NON-NLS-1$ local
131 mName = segments[index++];
134 mMode = Integer.parseInt(segments[index++]);
137 mPid = Integer.parseInt(segments[index++]);
141 mLogLevel = Integer.parseInt(segments[index++]);
145 mTag = segments[index++];
494 void setTempKeywordFiltering(String[] segments) {
495 mTempKeywordFilters = segments;
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
FileListingService.java 244 * Returns the path as a list of segments.
360 * @param list The list of segments to fill.
381 String[] segments = getPathSegments(); local
382 if (type == TYPE_FILE && segments.length == 3 && isAppFileName()) {
383 isAppPackage = DIRECTORY_APP.equals(segments[1]) &&
384 (DIRECTORY_SYSTEM.equals(segments[0]) || DIRECTORY_DATA.equals(segments[0]));
493 String[] segments = name.split("\\s->\\s"); //$NON-NLS-1$ local
495 // we should have 2 segments
496 if (segments.length == 2)
    [all...]

Completed in 2287 milliseconds

1 2 3