Home
last modified time | relevance | path

Searched +defs:c +defs:set +defs:offset (Results 1 – 25 of 96) sorted by relevance

1234

/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowTime.java45 public void set(Time other) { in set() method in ShadowTime
103 public void set(long millis) { in set() method in ShadowTime
104 Calendar c = getCalendar(); in set() local
118 Calendar c = getCalendar(); in toMillis() local
123 public void set(int second, int minute, int hour, int monthDay, int month, int year) { in set() method in ShadowTime
137 public void set(int monthDay, int month, int year) { in set() method in ShadowTime
235 int offset = (int) Math.abs(time.gmtoff); in format3339() local
244 Constructor<TimeFormatException> c = TimeFormatException.class.getDeclaredConstructor(); in throwTimeFormatException() local
259 Calendar c = Calendar.getInstance(TimeZone.getTimeZone(time.timezone)); in getCalendar() local
413 char c = pattern.charAt(i); in convertDateFormat() local
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DUnicodeSetStringSpan.java82 … public UnicodeSetStringSpan(final UnicodeSet set, final ArrayList<String> setStrings, int which) { in UnicodeSetStringSpan()
176 int c; in UnicodeSetStringSpan() local
234 public boolean contains(int c) { in contains()
242 private void addToSpanNotSet(int c) { in addToSpanNotSet()
968 static int spanOne(final UnicodeSet set, CharSequence s, int start, int length) { in spanOne()
969 char c = s.charAt(start); in spanOne() local
980 static int spanOneBack(final UnicodeSet set, CharSequence s, int length) { in spanOneBack()
981 char c = s.charAt(length - 1); in spanOneBack() local
1074 public void addOffset(int offset) { in addOffset()
1089 public void addOffsetAndCount(int offset, int count) { in addOffsetAndCount()
[all …]
DNormalizer2Impl.java45 public static boolean isHangul(int c) { in isHangul()
48 public static boolean isHangulWithoutJamoT(char c) { in isHangulWithoutJamoT()
52 public static boolean isJamoL(int c) { in isJamoL()
55 public static boolean isJamoV(int c) { in isJamoV()
63 public static int decompose(int c, Appendable buffer) { in decompose()
86 public static void getRawDecomposition(int c, Appendable buffer) { in getRawDecomposition()
157 public void setLastChar(char c) { in setLastChar()
158 str.setCharAt(str.length()-1, c); in setLastChar() local
161 public void append(int c, int cc) { in append()
187 int c=Character.codePointAt(s, start); in append() local
[all …]
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
DCollectionUtilities.java146 public <T, U extends Collection<T>> T getFirst(U c) { in getFirst()
161 public static <T, U extends Collection<T>> T getBest(U c, Comparator<T> comp, int direction) { in getBest()
208 public ObjectMatcher set(ObjectMatcher toInverse) { in set() method in CollectionUtilities.InverseMatcher
225 public static <T, U extends Collection<T>> U removeAll(U c, ObjectMatcher<T> f) { in removeAll()
241 public static <T, U extends Collection<T>> U retainAll(U c, ObjectMatcher<T> f) { in retainAll()
426 public static int matchesAt(CharSequence text, int offset, CharSequence other) { in matchesAt()
445 public int span(CharSequence string, int offset, UnicodeSet testSet) { in span()
459 public int spanNot(CharSequence string, int offset, UnicodeSet testSet) { in spanNot()
497 public FilteredIterator set(Iterator baseIterator) { in set() method in CollectionUtilities.FilteredIterator
526 public PrefixIterator set(Iterator baseIterator, String prefix) { in set() method in CollectionUtilities.PrefixIterator
[all …]
/external/icu/icu4c/source/i18n/
Dregexcmp.cpp94 static inline void addCategory(UnicodeSet *set, int32_t value, UErrorCode& ec) { in addCategory()
1271 UChar32 c = scanNamedChar(); in doParseActions() local
1285 UChar32 c = fC.fChar; in doParseActions() local
1529 UnicodeSet *set = (UnicodeSet *)fSetStack.peek(); in doParseActions() local
1536 UnicodeSet *set = (UnicodeSet *)fSetStack.peek(); in doParseActions() local
1543 UnicodeSet *set = (UnicodeSet *)fSetStack.peek(); in doParseActions() local
1550 UnicodeSet *set = (UnicodeSet *)fSetStack.peek(); in doParseActions() local
1559 UnicodeSet *set = (UnicodeSet *)fSetStack.peek(); in doParseActions() local
1567 UnicodeSet *set = (UnicodeSet *)fSetStack.peek(); in doParseActions() local
1578 UnicodeSet *set = (UnicodeSet *)fSetStack.peek(); in doParseActions() local
[all …]
/external/icu/icu4c/source/common/
Duniset.cpp101 static inline void _dbgct(UnicodeSet* set) { in _dbgct()
109 static inline void _dbgdt(UnicodeSet* set) { in _dbgdt()
119 #define _dbgct(set) argument
120 #define _dbgdt(set) argument
613 UChar32 c = s.char32At(0); in matchesIndexValue() local
627 int32_t& offset, in matches()
669 UChar c = trial.charAt(forward ? 0 : trial.length() - 1); in matches() local
822 UnicodeSet& UnicodeSet::set(UChar32 start, UChar32 end) { in set() function in UnicodeSet
853 void dump(UChar32 c) { in dump()
875 UnicodeSet& UnicodeSet::add(UChar32 c) { in add()
[all …]
Dunisetspan.cpp107 void addOffset(int32_t offset) { in addOffset()
202 UnicodeSetStringSpan::UnicodeSetStringSpan(const UnicodeSet &set, in UnicodeSetStringSpan()
351 UChar32 c; in UnicodeSetStringSpan() local
432 void UnicodeSetStringSpan::addToSpanNotSet(UChar32 c) { in addToSpanNotSet()
483 spanOne(const UnicodeSet &set, const UChar *s, int32_t length) { in spanOne()
484 UChar c=*s, c2; in spanOne() local
492 spanOneBack(const UnicodeSet &set, const UChar *s, int32_t length) { in spanOneBack()
493 UChar c=s[length-1], c2; in spanOneBack() local
501 spanOneUTF8(const UnicodeSet &set, const uint8_t *s, int32_t length) { in spanOneUTF8()
502 UChar32 c=*s; in spanOneUTF8() local
[all …]
Dunames.cpp213 #define WRITE_CHAR(buffer, bufferLength, bufferPos, c) { \ argument
242 uint8_t c; in expandName() local
335 uint8_t c; in compareName() local
516 uint16_t i=0, offset=0, length=0; in expandGroupLengths() local
778 char c; in writeFactorSuffix() local
867 char c; in getAlgName() local
906 char c; in getAlgName() local
948 char c; in enumAlgNames() local
999 char c; in enumAlgNames() local
1087 char c; in findAlgName() local
[all …]
Dnormalizer2impl.cpp70 UBool ReorderingBuffer::appendSupplementary(UChar32 c, uint8_t cc, UErrorCode &errorCode) { in appendSupplementary()
110 UChar32 c; in append() local
127 UBool ReorderingBuffer::appendZeroCC(UChar32 c, UErrorCode &errorCode) { in appendZeroCC()
205 UChar c=*--codePointStart; in skipPrevious() local
216 UChar32 c=*--codePointStart; in previousCC() local
231 void ReorderingBuffer::insert(UChar32 c, uint8_t cc) { in insert()
281 for(UChar c=0; c<0x180; bits>>=1) { in init() local
297 UChar32 c; in getTrailCCFromCompYesAndZeroCC() local
333 UnicodeSet &set; member in __anon7311a2d80111::LcccContext
404 for(UChar c=Hangul::HANGUL_BASE; c<Hangul::HANGUL_LIMIT; c+=Hangul::JAMO_T_COUNT) { in addPropertyStarts() local
[all …]
Ddictbe.cpp38 DictionaryBreakEngine::handles(UChar32 c, int32_t breakType) const { in handles()
60 UChar32 c = utext_current32(text); in findBreaks() local
98 DictionaryBreakEngine::setCharacters( const UnicodeSet &set ) { in setCharacters()
122 int32_t offset; // Offset in the text of these candidates member in PossibleWord
1175 UChar32 c = utext_next32(inText); in divideUpDictionaryRange() local
1199 UChar32 c = inString->char32At(srcI); in divideUpDictionaryRange() local
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
DUnicodeSetTest.java301 int c; in unescapeAt() local
311 int offset = offset16[0]; in unescapeAt() local
410 char c = s.charAt(i++); in unescapeLeniently() local
428 UnicodeSet set = new UnicodeSet(); in TestPatterns() local
444 UnicodeSet set = new UnicodeSet("[:Lu:]"); in TestCategories() local
472 UnicodeSet set = new UnicodeSet(); in TestAddRemove() local
519 UnicodeSet set = new UnicodeSet("[h-km-q]"); in TestMinimalRep() local
542 UnicodeSet set = new UnicodeSet(); in TestAPI() local
607 UnicodeSet c = new UnicodeSet(); in TestAPI() local
1210 UnicodeSet set = new UnicodeSet("[a-cx-y3578]"); in TestIndexOf() local
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DDictionaryBreakEngine.java27 private int offset; // Offset in the text of these candidates field in DictionaryBreakEngine.PossibleWord
166 public boolean handles(int c, int breakType) { in handles()
183 int c = CharacterIteration.current32(text); in findBreaks() local
208 void setCharacters(UnicodeSet set) { in setCharacters()
DUnicodeSet.java526 public UnicodeSet set(int start, int end) { in set() method in UnicodeSet
539 public UnicodeSet set(UnicodeSet other) { in set() method in UnicodeSet
609 private static void appendCodePoint(Appendable app, int c) { in appendCodePoint()
651 private static <T extends Appendable> T _appendToPat(T buf, int c, boolean escapeUnprintable) { in _appendToPat()
719 int c = pat.codePointAt(i); in _toPattern() local
891 int c = UTF16.charAt(s, 0); in matchesIndexValue() local
906 int[] offset, in matches()
1035 public int matchesAt(CharSequence text, int offset) { in matchesAt()
1110 public int indexOf(int c) { in indexOf()
1226 public final UnicodeSet add(int c) { in add()
[all …]
/external/harfbuzz_ng/src/
Dhb-open-type-private.hh62 static inline const Type& StructAtOffset(const void *P, unsigned int offset) in StructAtOffset()
65 static inline Type& StructAtOffset(void *P, unsigned int offset) in StructAtOffset()
295 hb_sanitize_context_t c[1] = {{0, NULL, NULL, false, 0, NULL}}; in sanitize() local
539 inline void set (Type V) in set() function
561 inline void set (Type V) in set() function
586 inline void set (Type V) in set() function
615 inline void set (Type i) { v.set (i); } in set() function
745 unsigned int offset = *this; in operator ()() local
760 unsigned int offset = *this; in sanitize() local
769 unsigned int offset = *this; in sanitize() local
[all …]
/external/v8/src/
Dobjects-inl.h77 #define INT_ACCESSORS(holder, name, offset) \ argument
82 #define ACCESSORS(holder, name, type, offset) \ argument
91 #define ACCESSORS_TO_SMI(holder, name, offset) \ argument
99 #define SMI_ACCESSORS(holder, name, offset) \ argument
108 #define SYNCHRONIZED_SMI_ACCESSORS(holder, name, offset) \ argument
117 #define NOBARRIER_SMI_ACCESSORS(holder, name, offset) \ argument
126 #define BOOL_GETTER(holder, field, name, offset) \ argument
132 #define BOOL_ACCESSORS(holder, field, name, offset) \ argument
1173 #define FIELD_ADDR(p, offset) \ argument
1176 #define FIELD_ADDR_CONST(p, offset) \ argument
[all …]
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
DCollationIterator.java68 long set(int i, long ce) { in set() method in CollationIterator.CEBuffer
97 int c = oldBuffer.codePointAt(pos); in next() local
131 void setFirstSkipped(int c) { in setFirstSkipped()
137 void skip(int c) { in skip()
240 int c = (int)(cAndCE32 >> 32); in nextCE() local
305 int c = previousCodePoint(); in previousCE() local
397 int c = nextCodePoint(); in handleNextCE32() local
401 protected long makeCodePointAndCE32Pair(int c, int ce32) { in makeCodePointAndCE32Pair()
442 protected int getDataCE32(int c) { in getDataCE32()
450 protected final void appendCEsFromCE32(CollationData d, int c, int ce32, in appendCEsFromCE32()
[all …]
/external/pcre/dist/
Dpcre_compile.c1001 pcre_uint32 c; in check_escape() local
1495 pcre_uchar c; in get_ucp() local
2054 register pcre_uchar c = *code; in PRIV() local
2189 register pcre_uchar c = *code; in find_recurse() local
2346 register pcre_uchar c; in could_be_empty_branch() local
2744 get_repeat_base(pcre_uchar c) in get_repeat_base()
2774 check_char_prop(pcre_uint32 c, unsigned int ptype, unsigned int pdata, in check_char_prop()
2865 pcre_uchar c = *code; in get_chr_property_list() local
3070 pcre_uchar c; in compare_opcodes() local
3604 register pcre_uchar c; in auto_possessify() local
[all …]
/external/slf4j/slf4j-site/src/site/pages/js/
Djquery-min.js2c.body,d=f("<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){ck||(ck=c.c… argument
3 …3]&&new RegExp("(?:^|\\s)"+b[3]+"(?:\\s|$)"));return b},H=function(a,b){var c=a.attributes||{};ret… argument
4clean(arguments);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},afte… argument
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
Dorg.eclipse.core.databinding.observable_1.3.0.I20100601-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
Dorg.eclipse.text_3.5.0.v20100601-1300.jar ... eclipse.jface.text.BadPositionCategoryException String category int offset java.util.List c protected void fireDocumentPartitioningChanged ( ...
Dorg.eclipse.core.databinding.property_1.3.0.I20100601-0800.jar ... org.eclipse.core.databinding.observable.set.IObservableSet, org.eclipse.core.databinding ...
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_allocator.h171 for (uptr c = 1; c < kNumClasses; c++) { in Validate() local
185 uptr c = ClassID(s); in Validate() local
345 NOINLINE Batch* AllocateBatch(AllocatorStats *stat, AllocatorCache *c, in AllocateBatch()
509 uptr offset = chunk % kRegionSize; in GetChunkIdx() local
517 NOINLINE Batch* PopulateFreeList(AllocatorStats *stat, AllocatorCache *c, in PopulateFreeList()
586 void set(uptr idx, u8 val) { in set() function
625 void set(uptr idx, u8 val) { in set() function
723 u32 offset = mem - beg; in GetMetaData() local
729 NOINLINE Batch* AllocateBatch(AllocatorStats *stat, AllocatorCache *c, in AllocateBatch()
763 u32 offset = mem - beg; in GetBlockBegin() local
[all …]
/external/icu/icu4c/source/tools/tzcode/
Dtz2icu.cpp277 char c; in readbool() local
351 unsigned char c; in readzoneinfo() local
407 unsigned char c; in readzoneinfo() local
711 int32_t c; in consumeLine() local
732 int32_t offset; // raw offset member
770 int32_t offset; // dst offset, usually either 0 or 1:00 member
792 void set(const string& id, in set() function
952 int32_t offset, year; in readFinalZonesAndRules() local
960 int32_t month, dom, dow, time, offset; in readFinalZonesAndRules() local
1152 int32_t c = 0; in operator <<() local
[all …]
/external/v8/test/cctest/
Dtest-regexp.cc446 static bool IsDigit(uc16 c) { in IsDigit()
451 static bool NotDigit(uc16 c) { in NotDigit()
456 static bool IsWhiteSpaceOrLineTerminator(uc16 c) { in IsWhiteSpaceOrLineTerminator()
463 static bool NotWhiteSpaceNorLineTermiantor(uc16 c) { in NotWhiteSpaceNorLineTermiantor()
468 static bool NotWord(uc16 c) { in NotWord()
473 static void TestCharacterClassEscapes(uc16 c, bool (pred)(uc16 c)) { in TestCharacterClassEscapes()
1439 OutSet* set = table.Get(i); in TEST() local
1456 static uc32 canonicalize(uc32 c) { in canonicalize()
1479 for (uc32 c = 128; c < (1 << 21); c++) in TEST() local
1483 for (uc32 c = 0; c < (1 << 16); c++) { in TEST() local
[all …]
/external/chromium-trace/trace-viewer/tracing/third_party/css-element-queries/test/
Dmootools-more-yui-compressed.min.js1c5c87b3a27aebef2248053f7db37"};(function(){Events.Pseudos=function(a,j,i){var k="_monitorEvents:";… argument

1234