| /dalvik/dexgen/src/com/android/dexgen/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/dx/src/com/android/dx/dex/code/ |
| CatchTable.java | 42 * this with the index for an element which was never set; if you 56 * @param entry {@code non-null;} the entry to set at {@code n} 58 public void set(int n, Entry entry) { method in class:CatchTable
|
| /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) {
|
| /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/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:__anon6867::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/browser/extensions/ |
| blacklist_unittest.cc | 22 std::set<std::string> Set(const std::string& a) { 23 std::set<std::string> set; local 24 set.insert(a); 25 return set; 27 std::set<std::string> Set(const std::string& a, const std::string& b) { 28 std::set<std::string> set = Set(a) local 35 std::set<std::string> set = Set(a, b); local 43 std::set<std::string> set = Set(a, b, c); local [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/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 | 134 return current(isolate).template set<V8T>(object, wrapper, isolate, configuration); 179 inline void set(T* object, v8::Handle<v8::Object> wrapper, v8::Isolate* isolate, const WrapperConfiguration& configuration) function in class:WebCore::DOMDataStore 187 m_wrapperMap.set(V8T::toInternalPointer(object), wrapper, configuration);
|
| /external/chromium_org/third_party/WebKit/Source/core/dom/ |
| RangeBoundaryPoint.h | 49 void set(PassRefPtrWillBeRawPtr<Node> container, int offset, Node* childBefore); 123 inline void RangeBoundaryPoint::set(PassRefPtrWillBeRawPtr<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 | 100 void ImageQualityController::set(RenderObject* object, LayerSizeMap* innerMap, const void* layer, const LayoutSize& size) function in class:WebCore::ImageQualityController 103 innerMap->set(layer, size); 106 newInnerMap.set(layer, size); 107 m_objectLayerSizeMap.set(object, newInnerMap); 180 set(object, innerMap, layer, scaledLayoutSize); 203 set(object, innerMap, layer, scaledLayoutSize); 209 // size and set the timer. 212 set(object, innerMap, layer, scaledLayoutSize); 216 // set the timer. 222 // is active, so draw at low quality, set the flag for animated resizes an [all...] |
| /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/ |
| ShapeInterval.h | 63 void set(T x1, T x2) function in class:WebCore::ShapeInterval 92 set(interval.x1(), interval.x2()); 94 set(std::min<T>(x1(), interval.x1()), std::max<T>(x2(), interval.x2()));
|
| /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/polyfills/ |
| cacheStoragePolyfill.js | 27 CacheStorage.prototype.set = Promise.reject.bind(Promise, 'CacheStorage.prototype.set() not implemented.');
|
| /external/chromium_org/third_party/angle/src/common/ |
| RefCountObject.h | 45 void set(RefCountObject *newObject); 60 void set(ObjectType *newObject) { RefCountObjectBindingPointer::set(newObject); } function in class:BindingPointer 71 void set(ObjectType *newObject, GLenum type, GLint mipLevel, GLint layer) function in class:FramebufferTextureBindingPointer 73 RefCountObjectBindingPointer::set(newObject); 98 void set(ObjectType *newObject) function in class:OffsetBindingPointer 100 RefCountObjectBindingPointer::set(newObject); 105 void set(ObjectType *newObject, GLintptr offset, GLsizeiptr size) function in class:OffsetBindingPointer 107 RefCountObjectBindingPointer::set(newObject);
|
| /external/chromium_org/third_party/angle/src/libGLESv2/ |
| Fence.cpp | 42 // A name returned by GenFencesNV, but not yet set via SetFenceNV, is not the name of an existing fence. 48 mFence->set(); 118 void FenceSync::set(GLenum condition) function in class:gl::FenceSync 121 mFence->set();
|
| /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/openmax_dl/dl/sp/src/x86/ |
| x86SP_FFT_CToC_FC32_Fwd_Radix4_ms.c | 21 OMX_INT set; local 30 for (set = 0; set < set_count; ++set) { 36 const OMX_F32 *in0 = in + set; 85 for (set = 0; set < set_count; ++set) { 94 const OMX_F32 *in0 = in + set + grp * sub_num;
|
| x86SP_FFT_CToC_FC32_Inv_Radix4_ms.c | 21 OMX_INT set; local 30 for (set = 0; set < set_count; ++set) { 36 const OMX_F32 *in0 = in + set; 85 for (set = 0; set < set_count; ++set) { 94 const OMX_F32 *in0 = in + set + grp * sub_num;
|