HomeSort by relevance Sort by last modified time
    Searched full:unit (Results 176 - 200 of 3644) sorted by null

1 2 3 4 5 6 78 91011>>

  /libcore/luni/src/main/java/java/util/concurrent/
ScheduledExecutorService.java 75 * @param unit the time unit of the delay parameter
84 long delay, TimeUnit unit);
92 * @param unit the time unit of the delay parameter
99 long delay, TimeUnit unit);
117 * @param unit the time unit of the initialDelay and period parameters
129 TimeUnit unit);
144 * @param unit the time unit of the initialDelay and delay parameter
    [all...]
  /external/icu4c/common/unicode/
uchriter.h 136 * Sets the iterator to refer to the first code unit in its
137 * iteration range, and returns that code unit.
139 * @return the first code unit in its iteration range.
145 * Sets the iterator to refer to the first code unit in its
146 * iteration range, returns that code unit, and moves the position
147 * to the second code unit. This is an alternative to setToStart()
149 * @return the first code unit in its iteration range
156 * iteration range, and returns that code unit,
176 * Sets the iterator to refer to the last code unit in its
177 * iteration range, and returns that code unit
    [all...]
chariter.h 46 * a code unit and advance an internal position into the text object,
52 * the beginning of a code point, i.e., of its first code unit.
56 * is on a second code unit (Low Surrogate), then only that code unit
143 * Gets the current code unit for returning and advances to the next code unit
147 * @return the current code unit.
266 * // get the previous code unit
268 * // move back one more code unit
375 * Sets the iterator to refer to the first code unit in it
    [all...]
  /external/icu4c/i18n/unicode/
tmunit.h 14 * \brief C++ API: time unit object
25 * Measurement unit for time units.
49 * @param timeUnitField time unit field based on which the instance
113 * Get time unit field.
114 * @return time unit field.
  /external/proguard/src/proguard/evaluation/
BasicBranchUnit.java 28 * This BranchUnit remembers the branch unit commands that are invoked on it.
41 * Resets the flag that tells whether any of the branch unit commands was
50 * Sets the flag that tells whether any of the branch unit commands was
59 * Returns whether any of the branch unit commands was called.
69 * methods of the branch unit are called.
  /external/icu4c/test/testdata/
ra.xlf 12 <trans-unit id = "TestArray_0" translate = "yes">
16 </trans-unit>
17 <trans-unit id = "TestArray_1" restype = "x-icu-integer" translate = "yes">
21 </trans-unit>
22 <bin-unit id = "TestArray_2" mime-type = "application" restype = "x-icu-binary" translate = "yes">
28 </bin-unit>
30 <bin-unit id = "TestImpport" resname = "TestImpport" mime-type = "application" restype = "x-icu-binary" translate = "yes">
36 </bin-unit>
37 <trans-unit id = "TestInclude" resname = "TestInclude" translate = "yes">
333 </trans-unit>
    [all...]
  /external/llvm/lib/DebugInfo/
DWARFCompileUnit.h 31 // The compile unit debug information entry item.
45 /// extractDIEsIfNeeded - Parses a compile unit and indexes its DIEs if it
51 /// Size in bytes of the compile unit header.
59 /// Size in bytes of the .debug_info data associated with this compile unit.
94 // the main compile unit DIE. The compile unit DIE is always
96 // the first compile unit child DIE and should reserve
  /external/oprofile/gui/
oprof_start.h 36 /// unit mask values if applicable
37 op_unit_mask const * unit; member in struct:op_event_descr
95 /// calculate unit mask for given event and unit mask part
97 /// calculate unit mask for given event
99 /// set the unit mask widgets for given event
108 /// hide unit mask widgets
  /external/webkit/Source/WebCore/css/
MediaQueryExp.cpp 50 else if (value->unit == CSSPrimitiveValue::CSS_STRING)
51 m_value = CSSPrimitiveValue::create(value->string, (CSSPrimitiveValue::UnitTypes) value->unit);
52 else if (value->unit >= CSSPrimitiveValue::CSS_NUMBER &&
53 value->unit <= CSSPrimitiveValue::CSS_KHZ)
54 m_value = CSSPrimitiveValue::create(value->fValue, (CSSPrimitiveValue::UnitTypes) value->unit);
66 if (value->unit == CSSParserValue::Operator && value->iValue == '/')
68 else if (value->unit == CSSPrimitiveValue::CSS_NUMBER)
  /external/zlib/contrib/dotzlib/
readme.txt 18 Unit tests:
20 The file DotZLib/UnitTests.cs contains unit tests for use with NUnit 2.1 or higher.
21 To include unit tests in the build, define nunit before building.
31 DotZLib/UnitTests.cs for instructions on how to include unit tests in the
39 nunit={true|false} to include or esclude unit tests (default=true).
47 will build a release mode version of the library without unit tests.
49 will build a debug version of the library with unit tests
  /frameworks/base/media/libstagefright/rtsp/
AAVCAssembler.cpp 155 sp<ABuffer> unit = new ABuffer(nalSize); local
156 memcpy(unit->data(), &data[2], nalSize);
158 CopyTimes(unit, buffer);
160 addSingleNALUnit(unit);
274 // We found all the fragments that make up the complete NAL unit.
280 sp<ABuffer> unit = new ABuffer(totalSize); local
281 CopyTimes(unit, *queue->begin());
283 unit->data()[0] = (nri << 5) | nalType;
295 memcpy(unit->data() + offset, buffer->data() + 2, buffer->size() - 2);
301 unit->setRange(0, totalSize)
    [all...]
  /external/ppp/pppd/
ipv6cp.c 68 est une f?d?ration d'unit?s mixtes de recherche du CNRS, de l'Institut National
91 The research unit in Software, Systems, Networks (LSR) is member of IMAG.
413 ipv6cp_init(unit)
414 int unit;
416 fsm *f = &ipv6cp_fsm[unit];
417 ipv6cp_options *wo = &ipv6cp_wantoptions[unit];
418 ipv6cp_options *ao = &ipv6cp_allowoptions[unit];
420 f->unit = unit;
423 fsm_init(&ipv6cp_fsm[unit]);
    [all...]
upap.c 109 upap_state upap[NUM_PPP]; /* UPAP state; one for each unit */
121 * upap_init - Initialize a UPAP unit.
124 upap_init(unit)
125 int unit;
127 upap_state *u = &upap[unit];
129 u->us_unit = unit;
149 upap_authwithpeer(unit, user, password)
150 int unit;
153 upap_state *u = &upap[unit];
179 upap_authpeer(unit)
    [all...]
auth.c 532 link_required(unit)
533 int unit;
591 link_terminated(unit)
592 int unit;
613 * can happen that another pppd gets the same unit and then
621 * the ppp unit back to the loopback. Set the
659 link_down(unit)
660 int unit;
666 update_link_stats(unit);
672 upper_layers_down(unit);
    [all...]
  /build/tools/droiddoc/templates-sdk/assets/
android-developer-docs.css 1358 .g-tpl-240 .g-unit,
1359 .g-unit .g-tpl-240 .g-unit,
1360 .g-unit .g-unit .g-tpl-240 .g-unit {
1366 .g-unit .g-unit .g-tpl-240 .g-first,
1367 .g-unit .g-tpl-240 .g-first,
1375 .g-tpl-240-alt .g-unit,
    [all...]
  /external/oprofile/libop/
op_events.c 157 parse_error("invalid unit mask type");
165 parse_error("invalid unit mask tag");
174 parse_error("Missing name for unit mask");
176 parse_error("Missing type for unit mask");
190 parse_error("invalid unit mask entry");
195 parse_error("invalid unit mask entry");
218 * \t0x0 No unit mask
228 "oprofile: could not open unit mask description file %s\n", file);
246 parse_error("no unit mask name line");
248 parse_error("oprofile: maximum unit mask entries exceeded")
672 struct op_unit_mask * unit = list_entry(pos, struct op_unit_mask, um_next); local
    [all...]
  /external/v8/src/
fast-dtoa.cc 56 // * distance_too_high_w == (too_high - w).f() * unit
57 // * unsafe_interval == (too_high - too_low).f() * unit
58 // * rest = (too_high - buffer * 10^kappa).f() * unit
59 // * ten_kappa = 10^kappa * unit
60 // * unit = the common multiplier
70 uint64_t unit) {
71 uint64_t small_distance = distance_too_high_w - unit;
72 uint64_t big_distance = distance_too_high_w + unit;
77 // The real w (* unit) must lie somewhere inside the interval
84 // ^v 1 unit ^ ^ ^
403 uint64_t unit = 1; local
    [all...]
  /development/tools/emulator/opengl/shared/OpenglCodecCommon/
GLClientState.cpp 62 memset(m_tex.unit, 0, sizeof(m_tex.unit));
63 m_tex.activeUnit = &m_tex.unit[0];
245 GLuint unit = texture - GL_TEXTURE0; local
246 if (unit >= MAX_TEXTURE_UNITS) {
249 m_tex.activeUnit = &m_tex.unit[unit];
255 return GL_TEXTURE0 + (m_tex.activeUnit - &m_tex.unit[0]);
405 for (TextureUnit* unit = m_tex.unit;
    [all...]
  /external/clang/include/clang/Basic/
LangOptions.h 98 /// \brief Describes the kind of translation unit being processed.
100 /// \brief The translation unit is a complete translation unit.
102 /// \brief The translation unit is a prefix to a translation unit, and is
105 /// \brief The translation unit is a module.
  /external/clang/lib/Frontend/
ASTMerge.cpp 47 ASTUnit *Unit = ASTUnit::LoadFromASTFile(ASTFiles[I], Diags,
49 if (!Unit)
54 Unit->getASTContext(),
55 Unit->getFileManager(),
58 TranslationUnitDecl *TU = Unit->getASTContext().getTranslationUnitDecl();
71 delete Unit;
  /external/zlib/contrib/delphi/
readme.txt 5 This directory contains an update to the ZLib interface unit,
8 The original ZLib unit is Copyright (c) 1997,99 Borland Corp.,
11 we recommend the users to update their ZLib unit.
31 and linked to the ZLib unit.
37 Currently, the ZLib unit provides only a limited wrapper around
42 duplicated code, or not using the ZLib unit at all.
  /dalvik/unit-tests/
Android.mk 19 test_module = dalvik-vm-unit-tests
30 # adb shell /data/nativetest/dalvik-vm-unit-tests/dalvik-vm-unit-tests
  /external/chromium/chrome/common/extensions/docs/examples/extensions/proxy_configuration/test/
jsunittest.js 15 Unit: {},
312 DrNicTest.Unit.Logger = function(element) {
317 DrNicTest.Unit.Logger.prototype.start = function(testName) {
323 DrNicTest.Unit.Logger.prototype.setStatus = function(status) {
330 DrNicTest.Unit.Logger.prototype.finish = function(status, summary) {
336 DrNicTest.Unit.Logger.prototype.message = function(message) {
342 DrNicTest.Unit.Logger.prototype.summary = function(summary) {
348 DrNicTest.Unit.Logger.prototype.getLastLogLine = function() {
354 DrNicTest.Unit.Logger.prototype.getMessageCell = function() {
359 DrNicTest.Unit.Logger.prototype._createLogTable = function()
    [all...]
  /external/clang/include/clang/Index/
TranslationUnit.h 1 //===--- TranslationUnit.h - Interface for a translation unit ---*- C++ -*-===//
10 // Abstract interface for a translation unit.
26 /// \brief Abstract interface for a translation unit.
  /cts/tests/tests/nativemedia/
Android.mk 1 # Build the unit tests.

Completed in 2993 milliseconds

1 2 3 4 5 6 78 91011>>