/frameworks/support/v4/java/android/support/v4/content/ |
ModernAsyncTask.java | 329 * @param unit The time unit for the timeout. 339 public final Result get(long timeout, TimeUnit unit) throws InterruptedException, 341 return mFuture.get(timeout, unit);
|
/ndk/sources/android/crazy_linker/ |
Android.mk | 41 # The crazy linker unit tests.
|
/packages/apps/Camera2/src/com/android/camera/data/ |
MediaDetails.java | 99 public void setUnit(int index, int unit) { 100 mUnits.put(index, unit);
|
/packages/apps/Exchange/ |
Android.mk | 49 # additionally, build unit tests in a separate .apk
|
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
MediaDetails.java | 100 public void setUnit(int index, int unit) { 101 mUnits.put(index, unit);
|
/packages/apps/Nfc/src/com/android/nfc/echoserver/ |
EchoServer.java | 92 * if the nfcpy client sends a service data unit of 48 bytes 119 public void pushUnit(byte[] unit, int size) { 121 if (DBG) Log.d(TAG, "Dumping data unit"); 133 // Special case: also send a zero-sized data unit 139 System.arraycopy(unit, offset, data, 0, minSize);
|
/packages/inputmethods/LatinIME/native/jni/ |
HostUnitTests.mk | 26 #################### Host library for unit test
|
TargetUnitTests.mk | 22 #################### Target library for unit test
|
/prebuilts/misc/common/swig/include/2.0.11/ocaml/ |
swig.mli | 60 val register_class_byname : string -> ('a c_obj_t -> 'a c_obj_t) -> unit
|
/prebuilts/tools/common/m2/repository/org/eclipse/tycho/org.eclipse.tycho.p2.tools.impl/0.18.1/ |
org.eclipse.tycho.p2.tools.impl-0.18.1.jar | |
/sdk/emulator/opengl/host/libs/Translator/include/GLcommon/ |
GLEScontext.h | 126 unsigned int getBindedTexture(GLenum unit,GLenum target); 128 bool isTextureUnitEnabled(GLenum unit);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/ |
ExtractStringRefactoring.java | 179 /** The compilation unit, only defined if {@link #mFile} points to a usable Java source file. */ 403 // Try to get a compilation unit from this file. If it fails, mUnit is null. 407 // Make sure the unit is not read-only, e.g. it's not a class file or inside a Jar 463 * Try to find the selected Java element in the compilation unit. 471 private boolean findSelectionInJavaUnit(ICompilationUnit unit, 474 IBuffer buffer = unit.getBuffer(); 501 // Error in unit.getBuffer. Ignore. [all...] |
/external/chromium_org/third_party/WebKit/Source/core/css/parser/ |
BisonCSSParser-in.cpp | 307 static inline bool parseSimpleLength(const CharacterType* characters, unsigned length, CSSPrimitiveValue::UnitType& unit, double& number) 311 unit = CSSPrimitiveValue::CSS_PX; 314 unit = CSSPrimitiveValue::CSS_PERCENTAGE; 336 CSSPrimitiveValue::UnitType unit = CSSPrimitiveValue::CSS_NUMBER; local 339 if (!parseSimpleLength(string.characters8(), length, unit, number)) 342 if (!parseSimpleLength(string.characters16(), length, unit, number)) 346 if (unit == CSSPrimitiveValue::CSS_NUMBER) { 350 unit = CSSPrimitiveValue::CSS_PX; 355 RefPtrWillBeRawPtr<CSSValue> value = cssValuePool().createValue(number, unit); 736 CSSPrimitiveValue::UnitType unit = CSSPrimitiveValue::CSS_NUMBER; local 1309 CSSPropertyParser::Units unit() const { return m_unit; } function in class:WebCore::TransformOperationInfo 1366 CSSPropertyParser::Units unit = info.unit(); local [all...] |
/external/icu/icu4c/source/i18n/ |
reldatefmt.cpp | 579 double quantity, UDateDirection direction, UDateRelativeUnit unit, 590 return cache->relativeUnits[unit][bFuture].format( 600 UDateDirection direction, UDateAbsoluteUnit unit, 605 if (unit == UDAT_ABSOLUTE_NOW && direction != UDAT_DIRECTION_PLAIN) { 609 return appendTo.append(cache->absoluteUnits[unit][direction]);
|
/external/ppp/pppd/ |
fsm.c | 774 if( cilen > peer_mru[f->unit] - HEADERLEN ) 775 cilen = peer_mru[f->unit] - HEADERLEN; 807 if (datalen > peer_mru[f->unit] - HEADERLEN) 808 datalen = peer_mru[f->unit] - HEADERLEN; 816 output(f->unit, outpacket_buf, outlen + PPP_HDRLEN);
|
/libcore/luni/src/main/java/java/util/concurrent/ |
LinkedTransferQueue.java | [all...] |
/external/chromium_org/third_party/WebKit/Source/core/css/ |
CSSGrammar.y | 136 v.unit = CSSParserValue::Operator; 146 v.unit = CSSPrimitiveValue::CSS_IDENT; [all...] |
/external/clang/tools/libclang/ |
CXCursor.cpp | 1108 ASTUnit *unit = getCursorASTUnit(cursor); local 1122 ASTUnit *unit = getCursorASTUnit(cursor); local [all...] |
/external/guava/guava-tests/test/com/google/common/util/concurrent/ |
FuturesTest.java | 64 * Unit tests for {@link Futures}. 445 long timeout, TimeUnit unit) 464 if (unit != null) { 465 theBar = chainFuture.get(timeout, unit); 494 @Override public T get(long timeout, TimeUnit unit) 498 return super.get(timeout, unit); 775 public String get(long timeout, TimeUnit unit) { 800 public String get(long timeout, TimeUnit unit) throws 802 delegateForDelayedRuntimeException.get(timeout, unit); [all...] |
/frameworks/base/media/java/android/media/ |
TtmlRenderer.java | 163 String unit = matcher.group(2); local 164 if (unit.equals("h")) { 166 } else if (unit.equals("m")) { 168 } else if (unit.equals("s")) { 170 } else if (unit.equals("ms")) { 172 } else if (unit.equals("f")) { 174 } else if (unit.equals("t")) {
|
/external/mksh/src/ |
exec.c | 1365 if (u == iop->unit [all...] |
/external/chromium_org/native_client_sdk/src/examples/api/media_stream_video/ |
media_stream_video.cc | 74 GLuint CreateTexture(int32_t width, int32_t height, int unit, bool rgba); 295 int32_t width, int32_t height, int unit, bool rgba) { 301 glActiveTexture(GL_TEXTURE0 + unit);
|
/external/chromium_org/ppapi/examples/media_stream_video/ |
media_stream_video.cc | 74 GLuint CreateTexture(int32_t width, int32_t height, int unit, bool rgba); 295 int32_t width, int32_t height, int unit, bool rgba) { 301 glActiveTexture(GL_TEXTURE0 + unit);
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/ |
intel_context.h | 193 unsigned unit, 198 unsigned unit); 200 unsigned unit);
|
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/ |
s_texfetch.c | 1168 _mesa_update_fetch_functions(struct gl_context *ctx, GLuint unit) 1170 struct gl_texture_object *texObj = ctx->Texture.Unit[unit]._Current; 1178 samp = _mesa_get_samplerobj(ctx, unit);
|