Searched refs:check (Results 1 - 25 of 44) sorted by relevance

12

/frameworks/native/opengl/tools/glgen/specs/gles11/
H A Dchecks.spec22 glBufferData nullAllowed check data size
23 glBufferSubData check data size
26 glClipPlanef check eqn 4
27 glClipPlanex check eqn 4
28 glDeleteBuffers check buffers n
29 glDeleteFramebuffers check framebuffers n
30 glDeleteFramebuffersOES check framebuffers n
31 glDeleteRenderbuffers check renderbuffers n
32 glDeleteRenderbuffersOES check renderbuffers n
33 glDeleteTextures check texture
[all...]
/frameworks/native/opengl/tools/glgen/specs/egl/
H A Dchecks.spec1 eglInitialize check major 1 check minor 1
2 eglGetConfigs check configs config_size
3 eglChooseConfig check configs config_size check num_config 1 sentinel attrib_list EGL_NONE
4 eglGetConfigAttrib check value 1
10 eglQuerySurface check value 1
13 eglQueryContext check value 1
/frameworks/base/core/tests/coretests/src/android/net/
H A DUriMatcherTest.java86 check("content://asdf", UriMatcher.NO_MATCH, matcher);
87 check("content://people", PEOPLE, matcher);
88 check("content://people/1", PEOPLE_ID, matcher);
89 check("content://people/asdf", UriMatcher.NO_MATCH, matcher);
90 check("content://people/2/phones", PEOPLE_PHONES, matcher);
91 check("content://people/2/phones/3", PEOPLE_PHONES_ID, matcher);
92 check("content://people/2/phones/asdf", UriMatcher.NO_MATCH, matcher);
93 check("content://people/2/addresses", PEOPLE_ADDRESSES, matcher);
94 check("content://people/2/addresses/3", PEOPLE_ADDRESSES_ID, matcher);
95 check("conten
109 private void check(String uri, int expected, UriMatcher matcher) { method in class:UriMatcherTest
[all...]
/frameworks/wilhelm/tests/sandbox/
H A Dmultiplay.c84 #define check(result) check2(result, __LINE__) macro
99 check(result);
102 check(result);
151 check(result);
153 check(result);
156 check(result);
163 check(result);
165 check(result);
169 check(result);
172 check(resul
[all...]
/frameworks/support/
H A DAndroid.mk24 .PHONY: check-support-api
26 # Run the check-support-api task on a SDK build
27 sdk: check-support-api
H A Dapicheck.mk23 # $(api_check_current_msg_file) - file containing error message for current API check
24 # $(api_check_last_msg_file) - file containing error message for last SDK API check
72 $(eval $(call check-api, \
82 check-support-api, \
88 $(eval $(call check-api, \
98 check-support-api, \
/frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/util/
H A DPreconditions.java23 public static void check(boolean value, String error, Object... args) { method in class:Preconditions
/frameworks/native/include/binder/
H A DPermissionCache.h60 status_t check(bool* granted,
/frameworks/native/libs/binder/
H A DPermissionCache.cpp37 status_t PermissionCache::check(bool* granted, function in class:android::PermissionCache
100 if (pc.check(&granted, permission, uid) != NO_ERROR) {
/frameworks/native/opengl/libagl/
H A DAndroid.mk39 LOCAL_CFLAGS_mips += -mno-check-zero-division
/frameworks/data-binding/compiler/src/main/java/android/databinding/annotationprocessor/
H A DBuildInfoUtil.java50 Preconditions.check(result == null, "Should have only one %s",
/frameworks/base/core/java/android/net/
H A DVpnService.java254 check(address, prefixLength);
284 check(address, prefixLength);
380 private static void check(InetAddress address, int prefixLength) { method in class:VpnService
459 check(address, prefixLength);
494 check(address, prefixLength);
/frameworks/base/core/jni/android/opengl/
H A Dutil.cpp269 // We seperate the bounds check from the initialization because we want to
270 // be able to bounds-check multiple arrays, and we can't throw an exception
273 // Return true if the bounds check succeeded
276 bool check() { function in class:android::ArrayHelper
336 bool checkOK = positions.check() && sphere.check();
499 bool initializedOK = mvp.check() && spheres.check() && results.check();
543 bool checkOK = ws.check()
[all...]
/frameworks/base/core/tests/coretests/src/android/os/
H A DAidlTest.java39 private static boolean check(TestParcelable p, int n, String s) { method in class:AidlTest
256 assertTrue("out parameter 0: " + list.get(0), check(list.get(0), 33, "asdf"));
257 assertTrue("out parameter 1: " + list.get(1), check(list.get(1), 34, "jkl;"));
258 assertTrue("out parameter 2: " + list.get(2), check(list.get(2), 34, "jkl;"));
279 assertTrue("out parameter 0: " + list.get(0), check(list.get(0), 33, "asdf"));
280 assertTrue("out parameter 1: " + list.get(1), check(list.get(1), 34, "jkl;"));
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
H A DExpr.java113 Preconditions.check(mId != NO_ID, "if getId is called on an expression, it should have"
119 Preconditions.check(mId == NO_ID, "ID is already set on %s", this);
268 Preconditions.check(mParents.remove(oldParent), "trying to remove non-existent parent %s"
370 Preconditions.check(!mUniqueKey.trim().equals(""),
413 Preconditions.check(mRequirementId != NO_ID, "If this is an expression w/ conditional"
480 // check if remaining dependencies can be satisfied w/ existing values
515 Preconditions.check(isConditional(), "should not call this on a non-conditional expr");
H A DExprModel.java87 Preconditions.check(!mSealed, "Cannot add expressions to a model after it is sealed");
95 Preconditions.check(expr.getParents().isEmpty(),
168 // check for existing
182 Preconditions.check(dotIndex < type.length() - 1, "Invalid type %s", type);
194 Preconditions.check(cnt < 100, "Failed to create an import for " + type);
248 Preconditions.check(!mImports.containsKey(alias),
270 Preconditions.check(mExprMap.containsKey(bindingExpr.getUniqueKey()),
/frameworks/base/cmds/uiautomator/library/
H A DAndroid.mk72 # API check
86 $(eval $(call check-api, \
105 $(eval $(call check-api, \
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DGraphRunner.java66 public synchronized boolean check(int state) { method in class:GraphRunner.State
198 if (mState.check(State.RUNNING)) {
221 return mState.check(state);
256 if (mState.addState(State.HALTED) && mState.check(State.RUNNING)) {
326 if (mState.check(State.RUNNING)) {
328 if (!mState.check(State.HALTED)) {
379 if (mState.check(State.HALTED) || mState.check(State.STOPPED)) {
H A DFilter.java43 public synchronized boolean check(int state) { method in class:Filter.State
97 * Before instantiating a filter, check if it is available by using this method.
99 * This method uses the shared FilterFactory to check whether the filter class is available.
274 return mState.check(State.STATE_OPEN);
395 return (mIsActive && !mState.check(State.STATE_CLOSED));
/frameworks/base/core/java/com/android/internal/util/
H A DArrayUtils.java79 * @param length the number of bytes to check
148 * @param array the array to check in
149 * @param value the value to check for
169 * Test if all {@code check} items are contained in {@code array}.
171 public static <T> boolean containsAll(T[] array, T[] check) { argument
172 if (check == null) return true;
173 for (T checkItem : check) {
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/
H A DExpressionParser.java73 Preconditions.check(ctx == mStack.get(mStack.size() - 1),
/frameworks/base/core/java/android/widget/
H A DRadioGroup.java153 public void check(@IdRes int id) { method in class:RadioGroup
190 * @see #check(int)
205 * @see #check(int)
209 check(-1);
/frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/store/
H A DLayoutFileParser.java207 Preconditions.check(myParentContent instanceof XMLParser.ContentContext,
211 Preconditions.check(grandParent instanceof XMLParser.ElementContext,
282 Preconditions.check(StringUtils.isNotBlank(type), "Type of an import cannot be empty."
321 Preconditions.check(data.size() == 1, "XML layout can have only 1 data tag");
327 Preconditions.check(view.size() == 1, "XML layout %s must have 1 view but has %s. root"
/frameworks/av/services/audioflinger/tests/
H A Dresampler_tests.cpp63 int check = memcmp((const char*)reference + i * outputFrameSize, local
65 if (check) {
67 ASSERT_EQ(check, 0); /* fails */
133 // check
199 // check signal energy in passband
203 // check each channel separately
/frameworks/base/tests/HugeBackup/src/com/android/hugebackup/
H A DHugeBackupActivity.java130 mFillingGroup.check(whichFilling);

Completed in 460 milliseconds

12