HomeSort by relevance Sort by last modified time
    Searched defs:set (Results 426 - 450 of 2219) sorted by null

<<11121314151617181920>>

  /dalvik/dx/src/com/android/dx/rop/cst/
CstArray.java 138 * this with the index for an element which was never set; if you
152 * @param a {@code null-ok;} the element to set at {@code n}
154 public void set(int n, Constant a) { method in class:CstArray.List
  /dalvik/dx/src/com/android/dx/util/
Bits.java 31 * Constructs a bit set to contain bits up to the given index (exclusive).
42 * Gets the maximum index (exclusive) for the given bit set.
44 * @param bits {@code non-null;} bit set in question
45 * @return {@code >= 0;} the maximum index (exclusive) that may be set
54 * @param bits {@code non-null;} bit set to operate on
55 * @param idx {@code >= 0, < getMax(set);} which bit
67 * @param bits {@code non-null;} bit set to operate on
68 * @param idx {@code >= 0, < getMax(set);} which bit
71 public static void set(int[] bits, int idx, boolean value) { method in class:Bits
85 * @param bits {@code non-null;} bit set to operate o
88 public static void set(int[] bits, int idx) { method in class:Bits
    [all...]
  /dalvik/hit/src/com/android/hit/
Instance.java 21 import java.util.Set;
60 * set.
62 public abstract void visit(Set<Instance> resultSet, Filter filter);
69 HashSet<Instance> set = new HashSet<Instance>(); local
71 visit(set, null);
75 for (Instance instance: set) {
  /developers/samples/android/background/alarms/Scheduler/src/com/example/android/scheduler/
SampleAlarmReceiver.java 62 // Set the alarm's trigger time to 8:30 a.m.
63 calendar.set(Calendar.HOUR_OF_DAY, 8);
64 calendar.set(Calendar.MINUTE, 30);
86 * alarmMgr.set(AlarmManager.ELAPSED_REALTIME_WAKEUP,
97 // Set the alarm to fire at approximately 8:30 a.m., according to the device's
119 // If the alarm has been set, cancel it.
  /external/android-mock/tests/com/google/android/testing/mocking/
UsesMocksProcessorTest.java 33 import java.util.Set;
54 private Set<? extends Element> getAnnotatedElementsSet(Class<?>... classes) {
55 Set<Element> set = new HashSet<Element>(); local
57 set.add(getMockElement(clazz));
59 return set;
209 private RoundEnvironment getMockRoundEnvironment(Set<? extends Element> elementsWithAnnotation) {
214 private RoundEnvironment getMockRoundEnvironment(Set<? extends Element> elementsWithAnnotation,
218 (Set) elementsWithAnnotation).anyTimes();
231 Set<GeneratedClassFile> mockedClasses
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
ACyclicDFACodeGenerator.java 121 labels.set(j, label); // rewrite List element to be name
PythonTarget.java 198 nChunks.set(i, text.substring(j));
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
IntArrayList.java 49 /** Set the ith element. Like ArrayList, this does NOT affect size. */
50 public int set(int i, int newValue) { method in class:IntArrayList
52 setSize(i); // unlike definition of set in ArrayList, set size
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
ListResourceBundleTest.java 23 import java.util.Set;
62 Set<String> set = bundle.handleKeySet(); local
63 assertEquals(4, set.size());
64 assertTrue(set.contains("subChild1"));
65 assertTrue(set.contains("subChild2"));
66 assertTrue(set.contains("subParent3"));
67 assertTrue(set.contains("subParent4"));
68 set = bundle.keySet();
69 assertEquals(6, set.size())
    [all...]
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
Support_SimpleDateFormat.java 53 cal.set(1999, Calendar.SEPTEMBER, 13, 17, 19, 01);
54 cal.set(Calendar.MILLISECOND, 0);
73 // test if field positions are set correctly for these fields occuring
140 cal.set(1999, Calendar.SEPTEMBER, 13, 17, 19, 01);
141 cal.set(Calendar.MILLISECOND, 0);
  /external/chromium/base/i18n/
file_util_icu.cc 29 return !!set->contains(ucs4);
33 return !!set->containsNone(icu::UnicodeString(s.c_str(), s.size()));
43 scoped_ptr<icu::UnicodeSet> set; member in class:__anon1370::IllegalCharacters
54 // TODO(jungshik): Revisit the set. ZWJ and ZWNJ are excluded because they
57 // Also, consider wrapping the set with our Singleton class to create and
61 set.reset(new icu::UnicodeSet(icu::UnicodeString(
64 set.reset(new icu::UnicodeSet(UNICODE_STRING_SIMPLE(
70 // any chance, do not add these to |set| and change IsFilenameLegal()
73 set->add(0xFDD0, 0xFDEF);
76 set->add(plane_base + 0xFFFE, plane_base + 0xFFFF)
    [all...]
  /external/chromium/testing/gmock/scripts/generator/cpp/
tokenize.py 36 if not hasattr(builtins, 'set'):
38 from sets import Set as set namespace
43 VALID_IDENTIFIER_CHARS = set(_letters + _letters.upper() + '_0123456789$')
44 HEX_DIGITS = set('0123456789abcdefABCDEF')
45 INT_OR_FLOAT_DIGITS = set('01234567890eE-+')
49 _STR_PREFIXES = set(('R', 'u8', 'u8R', 'u', 'uR', 'U', 'UR', 'L', 'LR'))
60 # It is always set to WHENCE_STREAM in this code.
132 int_or_float_digits2 = int_or_float_digits | set('.')
  /external/chromium_org/base/i18n/
file_util_icu.cc 33 return !!set->contains(ucs4);
37 return !!set->containsNone(icu::UnicodeString(s.c_str(), s.size()));
47 scoped_ptr<icu::UnicodeSet> set; member in class:__anon3469::IllegalCharacters
58 // TODO(jungshik): Revisit the set. ZWJ and ZWNJ are excluded because they
61 // Also, consider wrapping the set with our Singleton class to create and
65 set.reset(new icu::UnicodeSet(icu::UnicodeString(
68 set.reset(new icu::UnicodeSet(UNICODE_STRING_SIMPLE(
74 // any chance, do not add these to |set| and change IsFilenameLegal()
77 set->add(0xFDD0, 0xFDEF);
80 set->add(plane_base + 0xFFFE, plane_base + 0xFFFF)
    [all...]
  /external/chromium_org/chrome/test/android/javatests/src/org/chromium/chrome/test/util/
InfoBarTestAnimationListener.java 48 public void set(boolean value) { method in class:InfoBarTestAnimationListener.ConditionalWait
73 mAddAnimationFinished.set(true);
76 mSwapAnimationFinished.set(true);
79 mRemoveAnimationFinished.set(true);
  /external/chromium_org/content/browser/indexed_db/
indexed_db_context_impl.h 9 #include <set>
84 std::set<GURL>* set = GetOriginSet(); local
85 return set->find(origin_url) != set->end();
118 std::set<GURL>* GetOriginSet();
136 scoped_ptr<std::set<GURL> > origin_set_;
139 typedef std::set<IndexedDBConnection*> ConnectionSet;
  /external/chromium_org/extensions/common/
url_pattern_set_unittest.cc 15 void AddPattern(URLPatternSet* set, const std::string& pattern) {
17 set->AddPattern(URLPattern(schemes, pattern));
21 URLPatternSet set; local
22 AddPattern(&set, pattern);
23 return set;
28 URLPatternSet set; local
29 AddPattern(&set, pattern1);
30 AddPattern(&set, pattern2);
31 return set;
37 URLPatternSet set; local
44 URLPatternSet set; local
54 URLPatternSet set; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
DOMDataStore.h 126 return current(isolate).template set<V8T>(object, wrapper, isolate, configuration);
171 inline void set(T* object, v8::Handle<v8::Object> wrapper, v8::Isolate* isolate, const WrapperConfiguration& configuration) function in class:WebCore::DOMDataStore
179 m_wrapperMap.set(V8T::toInternalPointer(object), wrapper, configuration);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
RangeBoundaryPoint.h 48 void set(PassRefPtr<Node> container, int offset, Node* childBefore);
120 inline void RangeBoundaryPoint::set(PassRefPtr<Node> container, int offset, Node* childBefore) function in class:WebCore::RangeBoundaryPoint
SpaceSplitString.cpp 156 void SpaceSplitString::set(const AtomicString& inputString, bool shouldFoldCase) function in class:WebCore::SpaceSplitString
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
ImageQualityController.cpp 85 void ImageQualityController::set(RenderObject* object, LayerSizeMap* innerMap, const void* layer, const LayoutSize& size) function in class:WebCore::ImageQualityController
88 innerMap->set(layer, size);
91 newInnerMap.set(layer, size);
92 m_objectLayerSizeMap.set(object, newInnerMap);
165 set(object, innerMap, layer, scaledLayoutSize);
185 set(object, innerMap, layer, scaledLayoutSize);
191 // size and set the timer.
194 set(object, innerMap, layer, scaledLayoutSize);
198 // set the timer.
204 // is active, so draw at low quality, set the flag for animated resizes an
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGElementInstance.cpp 179 const HashSet<SVGElementInstance*>& set = element->instancesForElement(); local
180 if (set.isEmpty())
184 const HashSet<SVGElementInstance*>::const_iterator end = set.end();
185 for (HashSet<SVGElementInstance*>::const_iterator it = set.begin(); it != end; ++it) {
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-set.cc 27 #include "hb-set-private.hh"
43 hb_set_t *set; local
45 if (!(set = hb_object_create<hb_set_t> ()))
48 set->clear ();
50 return set;
75 * @set: a set.
82 hb_set_reference (hb_set_t *set)
84 return hb_object_reference (set);
89 * @set: a set
    [all...]
  /external/chromium_org/third_party/icu/source/common/
util.cpp 433 // create a set with the Pattern_White_Space characters,
435 U_NAMESPACE_QUALIFIER UnicodeSet *set=new U_NAMESPACE_QUALIFIER UnicodeSet(9, 0xd); local
437 if (set == NULL) {
441 set->UnicodeSet::add(0x20).add(0x85).add(0x200e, 0x200f).add(0x2028, 0x2029);
442 return set;
  /external/chromium_org/third_party/libxml/src/include/libxml/
xlink.h 68 * a set of callback registered at parsing time.
132 * This is the prototype for a extended link set detection callback.
145 * This is the structure containing a set of Links detection callbacks.
155 xlinkExtendedLinkSetFunk set; member in struct:_xlinkHandler
169 * Routines to set/get the default handlers.
  /external/chromium_org/third_party/skia/include/core/
Sk64.h 93 /** Set the number to zero */
96 /** Set the high and low 32 bit values of the number */
97 void set(int32_t hi, uint32_t lo) { fHi = hi; fLo = lo; } function in struct:Sk64
99 /** Set the number to the specified 32 bit integer */
100 void set(int32_t a) { fHi = a >> 31; fLo = a; } function in struct:Sk64
102 /** Set the number to the product of the two 32 bit integers */

Completed in 914 milliseconds

<<11121314151617181920>>