Searched defs:set (Results 151 - 175 of 882) sorted by relevance

1234567891011>>

/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowPointF.java30 public void set(float x, float y) { method in class:ShadowPointF
/external/skia/src/pathops/
H A DSkPathOpsQuad.h27 void set(const SkPoint pts[3]) { function in struct:SkDQuad
52 quad.set(a);
59 quad.set(pts);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DSettings.js192 set: function(value)
222 this.set(currentValue);
227 set: function(value)
236 WebInspector.Setting.prototype.set.call(this, value);
321 this._setting.set(experimentsSetting);
341 this._setting.set(cleanedUpExperimentSetting);
415 versionSetting.set(currentVersion);
438 versionSetting.set([]);
444 fileSystemMappingSetting.set({});
451 WebInspector.settings.showAdvancedHeapSnapshotProperties.set(advancedMod
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DIntArrayList.java50 public int set(int i, int newValue) { method in class:IntArrayList
52 setSize(i); // unlike definition of set in ArrayList, set size
H A DIntSet.java34 /** A generic set of ints that has an efficient implementation, BitSet,
44 /** Add an element to the set */
47 /** Add all elements from incoming set to this set. Can limit
48 * to set of its own type.
50 void addAll(IntSet set); argument
52 /** Return the intersection of this set with the argument, creating
53 * a new set.
63 /** Return the size of this set (not the underlying implementation's
76 /** remove this element from this set */
[all...]
/external/ceres-solver/internal/ceres/
H A Dblock_random_access_crs_matrix.cc34 #include <set>
50 const set<pair<int, int> >& block_pairs)
68 for (set<pair<int, int> >::const_iterator it = block_pairs.begin();
89 set<pair<int, int> >::const_iterator it = block_pairs.begin();
48 BlockRandomAccessCRSMatrix( const vector<int>& blocks, const set<pair<int, int> >& block_pairs) argument
H A Dblock_random_access_sparse_matrix.cc34 #include <set>
49 const set<pair<int, int> >& block_pairs)
67 for (set<pair<int, int> >::const_iterator it = block_pairs.begin();
86 for (set<pair<int, int> >::const_iterator it = block_pairs.begin();
97 for (set<pair<int, int> >::const_iterator it = block_pairs.begin();
47 BlockRandomAccessSparseMatrix( const vector<int>& blocks, const set<pair<int, int> >& block_pairs) argument
/external/chromium/base/
H A Dlinked_list.h132 void set(LinkNode<T>* prev, LinkNode<T>* next) { function in class:base::LinkNode
147 LinkedList() { root_.set(&root_, &root_); }
/external/chromium/testing/gmock/scripts/generator/cpp/
H A Dtokenize.py36 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/
H A Dfile_util_icu.cc31 return !!set->contains(ucs4);
35 return !!set->containsNone(icu::UnicodeString(s.c_str(), s.size()));
45 scoped_ptr<icu::UnicodeSet> set; member in class:__anon3742::IllegalCharacters
56 // TODO(jungshik): Revisit the set. ZWJ and ZWNJ are excluded because they
59 // Also, consider wrapping the set with our Singleton class to create and
63 set.reset(new icu::UnicodeSet(icu::UnicodeString(
66 set.reset(new icu::UnicodeSet(UNICODE_STRING_SIMPLE(
72 // any chance, do not add these to |set| and change IsFilenameLegal()
75 set->add(0xFDD0, 0xFDEF);
78 set
[all...]
/external/chromium_org/chrome/browser/extensions/api/permissions/
H A Dpermissions_api_helpers.cc42 scoped_ptr<Permissions> PackPermissionSet(const PermissionSet* set) { argument
46 for (APIPermissionSet::const_iterator i = set->apis().begin();
47 i != set->apis().end(); ++i) {
60 URLPatternSet hosts = set->explicit_hosts();
/external/chromium_org/chrome/browser/printing/
H A Dbackground_printing_manager.cc159 const WebContentsSet& set, WebContents* preview_contents) {
161 for (WebContentsSet::const_iterator it = set.begin(); it != set.end(); ++it) {
158 HasSharedRenderProcessHost( const WebContentsSet& set, WebContents* preview_contents) argument
/external/chromium_org/chrome/installer/util/
H A Dchrome_app_host_operations.cc22 std::set<string16>* options) const {
33 std::set<string16>* options) const {
41 const std::set<string16>& options,
46 const std::set<string16>& options,
51 const std::set<string16>& options,
68 const std::set<string16>& options,
81 bool ChromeAppHostOperations::SetChannelFlags(const std::set<string16>& options, argument
82 bool set,
86 return channel_info->SetAppLauncher(set);
93 const std::set<string1
[all...]
H A Dchrome_browser_operations.cc25 std::set<string16>* options) const {
37 std::set<string16>* options) const {
45 const std::set<string16>& options,
52 const std::set<string16>& options,
57 const std::set<string16>& options,
72 const std::set<string16>& options,
83 bool ChromeBrowserOperations::SetChannelFlags(const std::set<string16>& options, argument
84 bool set,
88 return channel_info->SetChrome(set);
95 const std::set<string1
[all...]
/external/chromium_org/content/browser/indexed_db/
H A Dindexed_db_context_impl.h9 #include <set>
82 std::set<GURL>* set = GetOriginSet(); local
83 return set->find(origin_url) != set->end();
116 std::set<GURL>* GetOriginSet();
134 scoped_ptr<std::set<GURL> > origin_set_;
137 typedef std::set<IndexedDBConnection*> ConnectionSet;
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DDOMDataStore.h106 return current(isolate)->template set<V8T>(object, wrapper, isolate, configuration);
119 inline void set(T* object, v8::Handle<v8::Object> wrapper, v8::Isolate* isolate, const WrapperConfiguration& configuration) function in class:WebCore::DOMDataStore
127 m_wrapperMap.set(V8T::toInternalPointer(object), wrapper, configuration);
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DRangeBoundaryPoint.h48 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
/external/chromium_org/third_party/WebKit/Source/web/
H A DContextFeaturesClientImpl.cpp64 void set(bool value, bool defaultValue) function in class:WebKit::ContextFeaturesCache::Entry
127 cache.set(askIfIsEnabled(document, type, defaultValue), defaultValue);
/external/chromium_org/third_party/icu/source/common/unicode/
H A Dstringpiece.h143 void set(const char* data, int32_t len) { ptr_ = data; length_ = len; } function in class:StringPiece
150 void set(const char* str);
/external/chromium_org/third_party/icu/source/common/
H A Duset_props.cpp35 UnicodeSet* set = new UnicodeSet(pat, *ec); local
37 if(set == 0) {
43 delete set;
44 set = NULL;
46 return (USet*) set;
55 UnicodeSet* set = new UnicodeSet(pat, options, NULL, *ec); local
57 if(set == 0) {
63 delete set;
64 set = NULL;
66 return (USet*) set;
71 uset_applyPattern(USet *set, const UChar *pattern, int32_t patternLength, uint32_t options, UErrorCode *status) argument
100 uset_applyIntPropertyValue(USet* set, UProperty prop, int32_t value, UErrorCode* ec) argument
106 uset_applyPropertyAlias(USet* set, const UChar *prop, int32_t propLength, const UChar *value, int32_t valueLength, UErrorCode* ec) argument
129 uset_toPattern(const USet* set, UChar* result, int32_t resultCapacity, UBool escapeUnprintable, UErrorCode* ec) argument
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A Dfuncrepl.cpp110 UnicodeSet set; local
111 toUnionTo.addAll(translit->getTargetSet(set));
/external/chromium_org/third_party/icu/source/test/perf/usetperf/
H A Dusetperf.cpp31 UnicodeSet set; member in class:CmdPattern
39 set.applyPattern(pat, *pErrorCode);
55 bs.set((int32_t) cp);
/external/chromium_org/third_party/libxml/src/include/libxml/
H A Dxlink.h68 * 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/mesa/src/src/gallium/auxiliary/util/
H A Du_linkage.c35 util_semantic_set_test_and_set(struct util_semantic_set *set, unsigned value) argument
38 unsigned long *p = &set->masks[value / (sizeof(long) * 8)];
45 util_semantic_set_from_program_file(struct util_semantic_set *set, const struct tgsi_token *tokens, enum tgsi_file_type file) argument
74 memset(set->masks, 0, sizeof(set->masks));
90 if(!util_semantic_set_test_and_set(set, semantic_index[idx]))
103 if(!util_semantic_set_test_and_set(set, semantic_index[idx]))
115 #define UTIL_SEMANTIC_SET_FOR_EACH(i, set) for(i = 0; i < 256; ++i) if(set->masks[i / (sizeof(long) * 8)] & (1 << (i % (sizeof(long) * 8))))
118 util_semantic_layout_from_set(unsigned char *layout, const struct util_semantic_set *set, unsigne argument
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_blorp.cpp47 brw_blorp_mip_info::set(struct intel_mipmap_tree *mt, function in class:brw_blorp_mip_info
67 brw_blorp_surface_info::set(struct brw_context *brw, function in class:brw_blorp_surface_info
71 brw_blorp_mip_info::set(mt, level, layer);
79 /* The miptree is a W-tiled stencil buffer. Surface states can't be set
190 depth.set(mt, level, layer);

Completed in 753 milliseconds

1234567891011>>