HomeSort by relevance Sort by last modified time
    Searched refs:state (Results 326 - 350 of 11024) sorted by null

<<11121314151617181920>>

  /external/deqp/external/openglcts/modules/glesext/draw_buffers_indexed/
esextcDrawBuffersIndexedBase.cpp 61 : state(4), gl(context.getRenderContext().getFunctions()), testLog(log)
66 : state(dbs), gl(context.getRenderContext().getFunctions()), testLog(log)
87 testLog << tcu::TestLog::Message << "General state should be set to " << s
108 testLog << tcu::TestLog::Message << "State for " << e << " in buffer #" << idx << " should be set to " << s
120 if (gl.isEnabledi(GL_BLEND, idx) != state[idx].enable)
122 testLog << tcu::TestLog::Message << "Blending for buffer #" << idx << " set to: " << !state[idx].enable
123 << " but should be " << state[idx].enable << "!" << tcu::TestLog::EndMessage;
129 result &= CheckEnumForBuffer(idx, GL_BLEND_EQUATION_RGB, state[idx].mode_rgb);
130 result &= CheckEnumForBuffer(idx, GL_BLEND_EQUATION_ALPHA, state[idx].mode_a);
131 result &= CheckEnumForBuffer(idx, GL_BLEND_SRC_RGB, state[idx].func_src_rgb)
    [all...]
  /frameworks/base/libs/input/
SpriteController.cpp 138 if (update.state.surfaceControl == NULL && update.state.wantSurfaceVisible()) {
139 update.state.surfaceWidth = update.state.icon.bitmap.width();
140 update.state.surfaceHeight = update.state.icon.bitmap.height();
141 update.state.surfaceDrawn = false;
142 update.state.surfaceVisible = false;
143 update.state.surfaceControl = obtainSurface(
144 update.state.surfaceWidth, update.state.surfaceHeight)
    [all...]
  /frameworks/rs/
rsMesh.cpp 26 mHal.state.primitives = nullptr;
27 mHal.state.primitivesCount = 0;
28 mHal.state.indexBuffers = nullptr;
29 mHal.state.indexBuffersCount = 0;
30 mHal.state.vertexBuffers = nullptr;
31 mHal.state.vertexBuffersCount = 0;
42 mHal.state.primitivesCount = primitivesCount;
43 mHal.state.indexBuffersCount = primitivesCount;
44 mHal.state.primitives = new RsPrimitive[mHal.state.primitivesCount]
    [all...]
rsFBOCache.cpp 27 mHal.state.colorTargetsCount = 1;
28 mHal.state.colorTargets = new Allocation*[mHal.state.colorTargetsCount];
29 mColorTargets = new ObjectBaseRef<Allocation>[mHal.state.colorTargetsCount];
34 delete[] mHal.state.colorTargets;
47 if (slot >= mHal.state.colorTargetsCount) {
52 if (!(a->getIsTexture() || (a->mHal.state.usageFlags & RS_ALLOCATION_USAGE_IO_OUTPUT))) {
58 mHal.state.colorTargets[slot] = a;
70 mHal.state.depthTarget = a;
75 for (uint32_t i = 0; i < mHal.state.colorTargetsCount; i ++)
    [all...]
  /external/skia/src/sksl/
SkSLLayoutLexer.cpp 533 int state = 1; local
    [all...]
SkSLLexer.cpp 948 int state = 1; local
    [all...]
  /external/skqp/src/sksl/
SkSLLayoutLexer.cpp 533 int state = 1; local
    [all...]
SkSLLexer.cpp 948 int state = 1; local
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/doze/
DozeScreenStatePreventingAdapter.java 35 public void setDozeScreenState(int state) {
36 if (state == Display.STATE_DOZE) {
37 state = Display.STATE_ON;
38 } else if (state == Display.STATE_DOZE_SUSPEND) {
39 state = Display.STATE_ON_SUSPEND;
41 super.setDozeScreenState(state);
45 * If the device supports the doze display state, return {@code inner}. Otherwise
  /frameworks/compile/mclinker/lib/LD/
MsgHandler.cpp 31 m_Engine.state().ArgumentKinds[m_NumArgs] = DiagnosticEngine::ak_std_string;
32 m_Engine.state().ArgumentStrs[m_NumArgs++] = pStr.data();
38 m_Engine.state().ArgumentKinds[m_NumArgs] = DiagnosticEngine::ak_std_string;
39 m_Engine.state().ArgumentStrs[m_NumArgs++] = pStr;
46 m_Engine.state().ArgumentKinds[m_NumArgs] = pKind;
47 m_Engine.state().ArgumentVals[m_NumArgs++] = pValue;
  /libcore/ojluni/src/main/java/sun/net/
ProgressEvent.java 48 private ProgressSource.State state; field in class:ProgressEvent
53 public ProgressEvent(ProgressSource source, URL url, String method, String contentType, ProgressSource.State state, long progress, long expected) {
60 this.state = state;
103 * Return state.
105 public ProgressSource.State getState() {
106 return state;
110 return getClass().getName() + "[url=" + url + ", method=" + method + ", state=" + stat
    [all...]
  /packages/apps/Car/Settings/src/com/android/car/settings/wifi/
WifiUtil.java 31 public static int getIconRes(int state) {
32 switch (state) {
41 public static boolean isWifiOn(int state) {
42 switch (state) {
55 public static Integer getStateDesc(int state) {
56 switch (state) {
  /device/google/contexthub/lib/include/nanohub/
sha2.h 40 void sha2init(struct Sha2state *state);
41 void sha2processBytes(struct Sha2state *state, const void *bytes, uint32_t numBytes);
42 const uint32_t* sha2finish(struct Sha2state *state); //returned hash pointer is only valid as long as "state" is!
  /device/google/marlin/power/
metadata-defs.h 41 int state; member in struct:video_encode_metadata_t
46 int state; member in struct:video_decode_metadata_t
51 int state; member in struct:cam_preview_metadata_t
  /external/cmockery/cmockery_0_1_2/src/example/
allocate_module_test.c 26 void leak_memory_test(void **state) {
31 void buffer_overflow_test(void **state) {
36 void buffer_underflow_test(void **state) {
  /external/dagger2/compiler/src/it/functional-tests/src/main/java/test/subcomponent/repeat/
RepeatedModule.java 25 private final Object state = new Object(); field in class:RepeatedModule
28 Object state() { method in class:RepeatedModule
29 return state;
  /external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.dtor/
null.pass.cpp 28 int state() const { return state_; } function in class:Deleter
36 assert(d.state() == 0);
42 assert(d.state() == 0);
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_flow.c 217 lp_build_loop_begin(struct lp_build_loop_state *state,
224 state->block = lp_build_insert_new_block(gallivm, "loop_begin");
226 state->counter_var = lp_build_alloca(gallivm, LLVMTypeOf(start), "loop_counter");
227 state->gallivm = gallivm;
229 LLVMBuildStore(builder, start, state->counter_var);
231 LLVMBuildBr(builder, state->block);
233 LLVMPositionBuilderAtEnd(builder, state->block);
235 state->counter = LLVMBuildLoad(builder, state->counter_var, "");
240 lp_build_loop_end_cond(struct lp_build_loop_state *state,
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/include/cloog/
statement.h 48 CloogState *state; /* State. */ member in struct:cloogstatement
76 CloogStatement * cloog_statement_malloc(CloogState *state);
77 CloogStatement * cloog_statement_alloc(CloogState *state, int);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.dtor/
null.pass.cpp 28 int state() const { return state_; } function in class:Deleter
36 assert(d.state() == 0);
42 assert(d.state() == 0);
  /system/update_engine/update_manager/
out_of_box_experience_policy_impl.cc 24 State* state,
27 SystemProvider* const system_provider = state->system_provider();
31 ec->GetValue(state->config_provider()->var_is_oobe_enabled());
  /bootable/recovery/updater/include/updater/
install.h 20 struct State;
25 void uiPrintf(State* _Nonnull state, const char* _Nonnull format, ...)
  /device/linaro/bootloader/arm-trusted-firmware/plat/xilinx/zynqmp/pm_service/
pm_client.h 19 void pm_client_suspend(const struct pm_proc *proc, unsigned int state);
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
SimpleCLexer.java 41 public SimpleCLexer(CharStream input, RecognizerSharedState state) {
42 super(input,state);
59 state.type = _type;
60 state.channel = _channel;
79 state.type = _type;
80 state.channel = _channel;
99 state.type = _type;
100 state.channel = _channel;
119 state.type = _type;
120 state.channel = _channel
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
SimpleCLexer.java 41 public SimpleCLexer(CharStream input, RecognizerSharedState state) {
42 super(input,state);
59 state.type = _type;
60 state.channel = _channel;
79 state.type = _type;
80 state.channel = _channel;
99 state.type = _type;
100 state.channel = _channel;
119 state.type = _type;
120 state.channel = _channel
    [all...]

Completed in 564 milliseconds

<<11121314151617181920>>