Searched defs:begin (Results 1 - 25 of 787) sorted by path

1234567891011>>

/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/arduino/hardware/arduino/cores/arduino/
H A DHardwareSerial.cpp194 void HardwareSerial::begin(long baud) function in class:HardwareSerial
/external/arduino/libraries/SPI/
H A DSPI.cpp16 void SPIClass::begin() { function in class:SPIClass
/external/arduino/libraries/Wire/
H A DWire.cpp52 void TwoWire::begin(void) function in class:TwoWire
63 void TwoWire::begin(uint8_t address) function in class:TwoWire
68 begin();
71 void TwoWire::begin(int address) function in class:TwoWire
73 begin((uint8_t)address);
/external/bison/examples/calc++/
H A Dlocation.hh55 : begin (b)
62 : begin (p)
71 : begin (f, l, c)
82 begin.initialize (f, l, c);
83 end = begin;
92 begin = end;
111 position begin; member in class:yy::location
117 inline const location operator+ (const location& begin, const location& end) argument
119 location res = begin;
125 inline const location operator+ (const location& begin, unsigne argument
[all...]
H A Dposition.hh117 operator+ (const position& begin, const int width) argument
119 position res = begin;
132 operator- (const position& begin, const int width) argument
134 return begin + -width;
H A Dstack.hh99 inline const_iterator begin () const { return seq_.rbegin (); } function in class:yy::stack
/external/bison/src/
H A Dscan-code.c57 /* begin standard C headers. */
1299 '#define' directives anyway, so don't bother with begin of line. */
2557 find_prefix_end (const char *prefix, char *begin, char *end) argument
2559 char *ptr = begin;
H A Dtables.c495 goto_number begin = goto_map[sym - ntokens]; local
500 for (i = begin; i < end; i++)
512 for (i = begin; i < end; i++)
/external/ceres-solver/include/ceres/internal/
H A Dfixed_array.h127 inline iterator begin() { return &array_[0].element; } function in class:ceres::internal::FixedArray
130 inline const_iterator begin() const { return &array_[0].element; } function in class:ceres::internal::FixedArray
/external/ceres-solver/internal/ceres/
H A Dstl_util.h49 void STLDeleteContainerPointers(ForwardIterator begin, argument
51 while (begin != end) {
52 ForwardIterator temp = begin;
53 ++begin;
61 void STLDeleteUniqueContainerPointers(ForwardIterator begin, argument
63 sort(begin, end);
64 ForwardIterator new_end = unique(begin, end);
65 while (begin != new_end) {
66 ForwardIterator temp = begin;
67 ++begin;
[all...]
/external/chromium_org/android_webview/browser/
H A Daw_form_database_service.cc74 base::Time begin; local
76 autofill_data_->RemoveFormElementsAddedBetween(begin, end);
77 autofill_data_->RemoveAutofillDataModifiedBetween(begin, end);
/external/chromium_org/base/android/java/src/org/chromium/base/
H A DPerfTraceEvent.java118 * logged whenever {@link #instant(String)}, {@link #begin(String)}, or {@link #end(String)}
135 * If this feature is enabled, whenever {@link #instant(String)}, {@link #begin(String)},
169 * Record an "begin" perf trace event.
173 public static synchronized void begin(String name) { method in class:PerfTraceEvent
190 * Record an "end" perf trace event, to match a begin event. The
191 * time delta between begin and end is usually interesting to
212 * Record an "begin" memory trace event.
216 public static synchronized void begin(String name, MemoryInfo memoryInfo) { method in class:PerfTraceEvent
232 * Record an "end" memory trace event, to match a begin event. The
233 * memory usage delta between begin an
[all...]
H A DTraceEvent.java90 // Called from within the begin/end methods only.
143 TraceEvent.begin(IDLE_EVENT_NAME, mNumTasksSinceLastIdle + " tasks since last idle.");
226 * @see #begin()
254 * @see #begin()
280 * Convenience wrapper around the versions of begin() that take string parameters.
288 public static void begin() { method in class:TraceEvent
293 * Triggers the 'begin' native trace event with no arguments.
296 public static void begin(String name) { method in class:TraceEvent
301 * Triggers the 'begin' native trace event.
305 public static void begin(Strin method in class:TraceEvent
[all...]
/external/chromium_org/base/containers/
H A Dmru_cache.h77 iterator i = begin();
104 index_.insert(std::make_pair(key, ordering_.begin()));
105 return ordering_.begin();
120 ordering_.splice(ordering_.begin(), ordering_, iter);
121 return ordering_.begin();
166 for (typename PayloadList::iterator i(ordering_.begin());
187 iterator begin() { return ordering_.begin(); } function in class:base::MRUCacheBase
188 const_iterator begin() const { return ordering_.begin(); } function in class:base::MRUCacheBase
[all...]
H A Dscoped_ptr_hash_map.h144 inline iterator begin() { return data_.begin(); } function in class:base::ScopedPtrHashMap
145 inline const_iterator begin() const { return data_.begin(); } function in class:base::ScopedPtrHashMap
H A Dsmall_map.h471 iterator begin() { function in class:base::SmallMap
475 return iterator(map_->begin());
478 const_iterator begin() const { function in class:base::SmallMap
482 return const_iterator(map_->begin());
/external/chromium_org/base/i18n/
H A Drtl.cc282 char16 begin = text->at(begin_index); local
283 if (begin == kLeftToRightMark ||
284 begin == kRightToLeftMark) {
381 char16 begin = text[begin_index]; local
382 if (begin == kLeftToRightEmbeddingMark ||
383 begin == kRightToLeftEmbeddingMark ||
384 begin == kLeftToRightOverride ||
385 begin == kRightToLeftOverride)
H A Dstreaming_utf8_validator_unittest.cc91 // starting at |begin|. This is intended to be run from a worker
94 void TestRange(uint32 begin, uint32 size) { argument
96 TestNumber(begin + i);
118 uint32 begin = 0; local
124 begin,
127 begin += kThoroughTestChunkSize;
128 } while (begin != 0);
186 // begin().
235 void CheckRange(Iterator begin, argument
238 for (Iterator it = begin; i
249 CheckRangeByteAtATime(Iterator begin, Iterator end, StreamingUtf8Validator::State expected) argument
[all...]
H A Dtime_formatting.cc38 int begin = ampm_field.getBeginIndex(); local
40 if (begin)
41 begin--;
42 time_string.removeBetween(begin, ampm_field.getEndIndex());
/external/chromium_org/base/memory/
H A Dscoped_vector.h56 iterator begin() { return v_.begin(); } function in class:ScopedVector
57 const_iterator begin() const { return v_.begin(); } function in class:ScopedVector
88 STLDeleteContainerPointers(v_.begin() + new_size, v_.end());
93 void assign(InputIterator begin, InputIterator end) { argument
94 v_.assign(begin, end);
/external/chromium_org/base/prefs/
H A Ddefault_pref_store.cc45 DefaultPrefStore::const_iterator DefaultPrefStore::begin() const { function in class:DefaultPrefStore
46 return prefs_.begin();
H A Dpref_registry.cc23 PrefRegistry::const_iterator PrefRegistry::begin() const { function in class:PrefRegistry
24 return defaults_->begin();
H A Dpref_value_map.cc77 PrefValueMap::iterator PrefValueMap::begin() { function in class:PrefValueMap
78 return prefs_.begin();
85 PrefValueMap::const_iterator PrefValueMap::begin() const { function in class:PrefValueMap
86 return prefs_.begin();
133 Map::const_iterator this_pref(prefs_.begin());
134 Map::const_iterator other_pref(other->prefs_.begin());
/external/chromium_org/base/
H A Dstl_util.h40 void STLDeleteContainerPointers(ForwardIterator begin, ForwardIterator end) { argument
41 while (begin != end) {
42 ForwardIterator temp = begin;
43 ++begin;
56 void STLDeleteContainerPairPointers(ForwardIterator begin, argument
58 while (begin != end) {
59 ForwardIterator temp = begin;
60 ++begin;
70 void STLDeleteContainerPairFirstPointers(ForwardIterator begin, argument
72 while (begin !
84 STLDeleteContainerPairSecondPointers(ForwardIterator begin, ForwardIterator end) argument
[all...]

Completed in 431 milliseconds

1234567891011>>