Searched defs:set (Results 376 - 400 of 1028) sorted by relevance

<<11121314151617181920>>

/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DNFAFactory.java133 /** From set build single edge graph o->o-set->o. To conform to
136 public StateCluster build_Set(IntSet set, GrammarAST associatedAST) { argument
141 Label label = new Label(set);
149 * result, that is. Get set and complement, replace old with complement.
152 IntSet set = getCollapsedBlockAsSet(s0);
153 if ( set!=null ) {
154 // if set is available, then structure known and blk is a set
155 set
352 build_AlternativeBlockFromSet(StateCluster set) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DCharInfo.java97 /** Array of values is faster access than a set of bits
104 /** Array of values is faster access than a set of bits
111 /** An array of bits to record if the character is in the set.
131 * set.
140 * the integers in the set. It is the index of the first element
164 // Not set here, but in a constructor that uses this one
321 * two arrays we will change by adding a tab to the set of
570 * @param i the integer that might be in the set of integers
578 * For a given integer in the set it returns the single bit
580 * the integer is in the set o
605 private final void set(int i) { method in class:CharInfo
[all...]
/external/bluetooth/bluedroid/hci/src/
H A Duserial.c62 // The set of events one can send to the userial read thread.
102 static inline int add_event_fd(fd_set *set) { argument
111 FD_SET(event_fd, set);
128 static inline bool is_event_available(fd_set *set) { argument
130 return !!FD_ISSET(event_fd, set);
152 /* Initialize the input fd set */
H A Duserial_mct.c103 static inline int create_signal_fds(fd_set* set) argument
110 FD_SET(signal_fds[0], set);
123 static inline int is_signaled(fd_set* set) argument
125 return FD_ISSET(signal_fds[0], set);
153 /* Initialize the input fd set */
/external/bluetooth/bluedroid/stack/srvc/
H A Dsrvc_eng.c388 BOOLEAN set = TRUE; local
397 set = FALSE;
399 return set;
/external/chromium-trace/trace-viewer/third_party/gl-matrix/src/gl-matrix/
H A Dvec2.js89 vec2.set = function(out, x, y) {
H A Dvec3.js95 vec3.set = function(out, x, y, z) {
H A Dvec4.js101 vec4.set = function(out, x, y, z, w) {
/external/chromium_org/cc/resources/
H A Dlayer_quad.h35 void set(float x, float y, float z) { function in class:cc::LayerQuad::Edge
H A Dpicture_layer_tiling_set.cc154 const PictureLayerTilingSet* set,
158 : set_(set),
265 // If the set of current rects for this tiling is done, go to the next
266 // tiling and set up to iterate through all of the remaining holes.
339 // compute them only when the tiling set has changed instead.
153 CoverageIterator( const PictureLayerTilingSet* set, float contents_scale, const gfx::Rect& content_rect, float ideal_contents_scale) argument
H A Dprioritized_tile_set_unittest.cc104 // Creating an iterator to an empty set should work (but create iterator that
107 PrioritizedTileSet set; local
109 PrioritizedTileSet::Iterator it(&set, true);
114 PrioritizedTileSet set; local
116 set.InsertTile(tile.get(), NOW_BIN);
118 PrioritizedTileSet::Iterator it(&set, true);
128 PrioritizedTileSet set; local
142 set.InsertTile(tile.get(), NOW_AND_READY_TO_DRAW_BIN);
148 for (PrioritizedTileSet::Iterator it(&set, true);
162 PrioritizedTileSet set; local
198 PrioritizedTileSet set; local
235 PrioritizedTileSet set; local
268 PrioritizedTileSet set; local
304 PrioritizedTileSet set; local
340 PrioritizedTileSet set; local
376 PrioritizedTileSet set; local
421 PrioritizedTileSet set; local
467 PrioritizedTileSet set; local
586 PrioritizedTileSet set; local
691 PrioritizedTileSet set; local
713 PrioritizedTileSet set; local
[all...]
/external/chromium_org/chrome/browser/extensions/
H A Dblacklist.cc49 void set(scoped_refptr<SafeBrowsingDatabaseManager> instance) { function in class:extensions::__anon3875::LazySafeBrowsingDatabaseManager
68 typedef base::Callback<void(const std::set<std::string>&)> OnResultCallback;
73 const std::set<std::string>& extension_ids,
92 const std::set<std::string>& extension_ids) {
98 base::Bind(callback_, std::set<std::string>()));
107 const std::set<std::string>& hits) OVERRIDE {
128 std::set<std::string> malware;
174 std::set<std::string> blacklisted = prefs->GetBlacklistedExtensions();
175 for (std::set<std::string>::iterator it = blacklisted.begin();
185 void Blacklist::GetBlacklistedIDs(const std::set<st
[all...]
/external/chromium_org/chrome/browser/ui/
H A Dunload_controller.cc338 bool UnloadController::RemoveFromSet(UnloadListenerSet* set, argument
343 std::find(set->begin(), set->end(), web_contents);
344 if (iter != set->end()) {
345 set->erase(iter);
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/plugin_settings/js/
H A Dchrome_stubs.js16 'set': function(details, callback) {
51 * Creates a new Settings object with a set of rules for a dummy plug-in.
57 * passed in set of rules.
63 settings.set(pattern, rules[pattern], function() {});
/external/chromium_org/chrome/third_party/chromevox/third_party/closure-library/closure/goog/object/
H A Dobject.js376 * already in use. Use set if you want to change an existing pair.
387 goog.object.set(obj, key, val);
417 goog.object.set = function(obj, key, value) {
445 // the actual key is set.
589 * the value is always set to true
/external/chromium_org/components/autofill/core/browser/
H A Dcontact_info.cc36 // Returns true if |set| contains |element|, modulo a final period.
37 bool ContainsString(const char* const set[], argument
47 if (LowerCaseEqualsASCII(trimmed_element, set[i]))
/external/chromium_org/components/invalidation/
H A Dunacked_invalidation_set.cc44 SingleObjectInvalidationSet set; local
45 set.Insert(invalidation);
46 AddSet(set);
64 // Copy the invalidation and set the copy's ack_handler.
164 // Earlier versions of this class did not set this field, so we don't treat
/external/chromium_org/components/omnibox/
H A Dsearch_provider.h45 // with some user input, each time expecting to receive a small set of the best
115 void set(const base::string16& default_provider, function in class:SearchProvider::Providers
235 // Converts the parsed results to a set of AutocompleteMatches, |matches_|.
294 // |relevance_from_server| is non-NULL, it will be set to indicate which of
322 // unless |prevent_search_history_inlining| is set.
/external/chromium_org/content/browser/renderer_host/
H A Dcompositing_iosurface_mac.h119 void set(float x, float y, float tx, float ty) { function in struct:content::CompositingIOSurfaceMac::SurfaceVertex
148 verts_[0].set(0.0f, 0.0f, 0.0f, th);
149 verts_[1].set(0.0f, vh, 0.0f, 0.0f);
150 verts_[2].set(vw, vh, tw, 0.0f);
151 verts_[3].set(vw, 0.0f, tw, th);
/external/chromium_org/extensions/common/permissions/
H A Dbase_set_operators.h17 // should define |ElementType| for the type of elements to store in the set,
76 BaseSetOperators(const T& set) { argument
77 this->operator=(set);
261 // Take ownership and insert |item| into the set.
H A Dpermission_set.cc20 void AddPatternsAndRemovePaths(const URLPatternSet& set, URLPatternSet* out) { argument
22 for (URLPatternSet::const_iterator i = set.begin(); i != set.end(); ++i) {
149 bool PermissionSet::Contains(const PermissionSet& set) const {
150 return apis_.Contains(set.apis()) &&
151 manifest_permissions_.Contains(set.manifest_permissions()) &&
152 explicit_hosts().Contains(set.explicit_hosts()) &&
153 scriptable_hosts().Contains(set.scriptable_hosts());
156 std::set<std::string> PermissionSet::GetAPIsAsStrings() const {
157 std::set<st
[all...]
/external/chromium_org/extensions/common/
H A Durl_pattern_set.cc31 out->patterns_ = base::STLSetDifference<std::set<URLPattern> >(
39 out->patterns_ = base::STLSetIntersection<std::set<URLPattern> >(
47 out->patterns_ = base::STLSetUnion<std::set<URLPattern> >(
60 // Do the first merge step into a working set so that we don't mutate any of
89 URLPatternSet::URLPatternSet(const std::set<URLPattern>& patterns)
107 std::set<URLPattern>::const_iterator iter =
136 void URLPatternSet::AddPatterns(const URLPatternSet& set) { argument
137 patterns_.insert(set.patterns().begin(),
138 set.patterns().end());
/external/chromium_org/net/dns/
H A Ddns_config_service_win.h48 // The |set| flag distinguishes between empty and unset values.
50 bool set; member in struct:net::internal::DnsSystemSettings::RegString
55 bool set; member in struct:net::internal::DnsSystemSettings::RegDword
/external/chromium_org/remoting/webapp/
H A Dserver_log_entry.js172 remoting.ServerLogEntry.prototype.set = function(key, value) {
214 entry.set(remoting.ServerLogEntry.KEY_ROLE_,
216 entry.set(remoting.ServerLogEntry.KEY_EVENT_NAME_,
218 entry.set(remoting.ServerLogEntry.KEY_SESSION_STATE_,
221 entry.set(remoting.ServerLogEntry.KEY_CONNECTION_ERROR_,
235 this.set(remoting.ServerLogEntry.KEY_SESSION_DURATION_,
240 * Makes a log entry for a set of connection statistics.
249 entry.set(remoting.ServerLogEntry.KEY_ROLE_,
251 entry.set(remoting.ServerLogEntry.KEY_EVENT_NAME_,
291 this.set(entryKe
[all...]
/external/chromium_org/skia/ext/
H A Dimage_operations_bench.cc103 void set(int w, int h) { function in class:__anon10673::Dimensions
120 // On failure, will set its state in such a way that IsValid will return

Completed in 564 milliseconds

<<11121314151617181920>>