Searched refs:state (Results 226 - 250 of 3395) sorted by relevance

1234567891011>>

/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DNewHdfParser.java96 * the state is passed through method calls.
198 private void parse(ParseState state) throws IOException { argument
199 while ((state.line = state.lineReader.readLine()) != null) {
200 String seq = stripWhitespace(state.line);
202 parseCommand(seq, state);
204 reportError(state, "End of line was prematurely reached. Parse error.");
211 private void parseCommand(String seq, ParseState state) throws IOException, OutOfCharsException { argument
221 parseInclude(seq, start, state);
226 reportError(state, "Extr
235 parseInclude(String seq, int start, ParseState state) argument
252 parseHdfElement(String seq, ParseState state) argument
328 parseHdfNameAttrs(HdfNameAttrs destination, String seq, int index, ParseState state) argument
364 parseAttributes(String seq, int index, ParseState state, HdfNameAttrs element) argument
405 parseAttribute(String seq, int index, ParseState state, HdfNameAttrs element) argument
501 parseAttributeValue(String seq, int index, ParseState state) argument
512 parseMultilineValue(ParseState state, String eomMarker) argument
531 handleDescend(ParseState state, HdfNameAttrs element) argument
541 handleAssign(ParseState state, HdfNameAttrs element, String value) argument
547 handleCopy(ParseState state, HdfNameAttrs element, String srcName) argument
557 handleLink(ParseState state, HdfNameAttrs element, String srcName) argument
562 handleAscend(ParseState state) argument
570 handleInclude(String seq, ParseState state) argument
693 reportError(ParseState state, String errorMessage) argument
[all...]
/external/apache-http/src/org/apache/http/impl/auth/
H A DNTLMScheme.java64 private State state; field in class:NTLMScheme
73 this.state = State.UNINITIATED;
100 if (this.state == State.UNINITIATED) {
101 this.state = State.CHALLENGE_RECEIVED;
103 this.state = State.FAILED;
107 this.state = State.MSG_TYPE2_RECEVIED;
124 if (this.state == State.CHALLENGE_RECEIVED || this.state == State.FAILED) {
128 this.state = State.MSG_TYPE1_GENERATED;
129 } else if (this.state
[all...]
/external/mesa3d/src/gallium/drivers/r300/
H A Dr300_state.c49 /* r300_state: Functions used to intialize state context by translating
50 * Gallium state objects into semi-native r300 state objects. */
53 if (cso != atom.state) { \
54 atom.state = cso; \
62 * SRC_ALPHA == 0, and the following state is set, the colorbuffer
83 * SRC_ALPHA == 1, and the following state is set, the colorbuffer
102 * SRC_COLOR == (0,0,0), and the following state is set, the colorbuffer
117 * SRC_COLOR == (1,1,1), and the following state is set, the colorbuffer
132 * SRC_ALPHA_COLOR == (0,0,0,0), and the following state i
221 r300_create_blend_state(struct pipe_context* pipe, const struct pipe_blend_state* state) argument
438 r300_bind_blend_state(struct pipe_context* pipe, void* state) argument
447 r300_delete_blend_state(struct pipe_context* pipe, void* state) argument
466 struct r300_blend_color_state *state = local
540 r300_set_clip_state(struct pipe_context* pipe, const struct pipe_clip_state* state) argument
576 r300_create_dsa_state(struct pipe_context* pipe, const struct pipe_depth_stencil_alpha_state* state) argument
725 r300_bind_dsa_state(struct pipe_context* pipe, void* state) argument
741 r300_delete_dsa_state(struct pipe_context* pipe, void* state) argument
776 r300_fb_set_tiling_flags(struct r300_context *r300, const struct pipe_framebuffer_state *state) argument
820 struct pipe_framebuffer_state *state = r300->fb_state.state; local
859 r300_set_framebuffer_state(struct pipe_context* pipe, const struct pipe_framebuffer_state* state) argument
1059 r300_set_polygon_stipple(struct pipe_context* pipe, const struct pipe_poly_stipple* state) argument
1072 r300_create_rs_state(struct pipe_context* pipe, const struct pipe_rasterizer_state* state) argument
1289 r300_bind_rs_state(struct pipe_context* pipe, void* state) argument
1320 r300_delete_rs_state(struct pipe_context* pipe, void* state) argument
1326 r300_create_sampler_state(struct pipe_context* pipe, const struct pipe_sampler_state* state) argument
1402 struct r300_textures_state* state = local
1422 r300_delete_sampler_state(struct pipe_context* pipe, void* state) argument
1457 struct r300_textures_state* state = local
1586 r300_set_scissor_state(struct pipe_context* pipe, const struct pipe_scissor_state* state) argument
1597 r300_set_viewport_state(struct pipe_context* pipe, const struct pipe_viewport_state* state) argument
1805 r300_bind_vertex_elements_state(struct pipe_context *pipe, void *state) argument
1827 r300_delete_vertex_elements_state(struct pipe_context *pipe, void *state) argument
[all...]
/external/webrtc/webrtc/api/objc/
H A DRTCMediaSource.mm19 - (RTCSourceState)state {
20 return [[self class] sourceStateForNativeState:_nativeMediaSource->state()];
25 [[self class] stringForState:self.state]];
44 (RTCSourceState)state {
45 switch (state) {
71 + (NSString *)stringForState:(RTCSourceState)state {
72 switch (state) {
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
H A DFCDIterCollationIterator.java26 state = State.ITER_CHECK_FWD;
35 state = State.ITER_CHECK_FWD;
40 if(state.compareTo(State.ITER_CHECK_BWD) <= 0) {
42 } else if(state == State.ITER_IN_FCD_SEGMENT) {
55 if(state == State.ITER_CHECK_FWD) {
79 } else if(state == State.ITER_IN_FCD_SEGMENT && pos != limit) {
84 } else if(state.compareTo(State.IN_NORM_ITER_AT_LIMIT) >= 0 &&
99 if(state == State.ITER_CHECK_BWD) {
103 state = State.ITER_IN_FCD_SEGMENT;
133 } else if(state
442 private State state; field in class:FCDIterCollationIterator
[all...]
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DFCDIterCollationIterator.java24 state = State.ITER_CHECK_FWD;
33 state = State.ITER_CHECK_FWD;
38 if(state.compareTo(State.ITER_CHECK_BWD) <= 0) {
40 } else if(state == State.ITER_IN_FCD_SEGMENT) {
53 if(state == State.ITER_CHECK_FWD) {
77 } else if(state == State.ITER_IN_FCD_SEGMENT && pos != limit) {
82 } else if(state.compareTo(State.IN_NORM_ITER_AT_LIMIT) >= 0 &&
97 if(state == State.ITER_CHECK_BWD) {
101 state = State.ITER_IN_FCD_SEGMENT;
131 } else if(state
440 private State state; field in class:FCDIterCollationIterator
[all...]
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/elb/
H A Dinstancestate.py25 Represents the state of an EC2 Load Balancer Instance
29 state=None, instance_id=None, reason_code=None):
39 :ivar str state: Specifies the current state of the instance.
43 self.state = state
48 return 'InstanceState:(%s,%s)' % (self.instance_id, self.state)
57 self.state = value
/external/elfutils/libelf/
H A Delf_begin.c65 elf->state.ar.offset = offset + SARMAG;
67 elf->state.ar.elf_ar_hdr.ar_rawname = elf->state.ar.raw_name;
289 assert (offsetof (struct Elf, state.elf32.scns)
290 == offsetof (struct Elf, state.elf64.scns));
291 elf->state.elf32.scns.cnt = scncnt;
292 elf->state.elf32.scns.max = scnmax;
295 elf->state.elf.scnincr = 10;
312 elf->state.elf32.ehdr = ehdr;
317 elf->state
[all...]
H A Delf_end.c70 if (elf->state.ar.ar_sym != (Elf_Arsym *) -1l)
71 free (elf->state.ar.ar_sym);
72 elf->state.ar.ar_sym = NULL;
74 if (elf->state.ar.children != NULL)
85 state of REF_COUNT==0 is handled all over the library, so
91 if (parent->state.ar.children == elf)
92 parent->state.ar.children = elf->next;
95 struct Elf *child = parent->state.ar.children;
110 if (elf->state.ar.long_names != NULL)
111 free (elf->state
[all...]
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
H A DGlideBitmapDrawable.java25 private BitmapState state; field in class:GlideBitmapDrawable
31 GlideBitmapDrawable(Resources res, BitmapState state) { argument
32 if (state == null) {
36 this.state = state;
41 state.targetDensity = targetDensity;
43 targetDensity = state.targetDensity;
45 width = state.bitmap.getScaledWidth(targetDensity);
46 height = state.bitmap.getScaledHeight(targetDensity);
92 return state;
[all...]
/external/markdown/markdown/
H A Dblockparser.py5 """ Track the current and nested state of the parser.
7 This utility class is used to track the state of the BlockParser and
9 a list. Each time a state is set, that state is appended to the end of the
10 list. Each time a state is reset, that state is removed from the end of
13 Therefore, each time a state is set for a nested block, that state must be
14 reset when we back out of that level of nesting or the state could be
22 def set(self, state)
[all...]
/external/skia/tests/
H A DPathOpsOpCubicThreadedTest.cpp17 PathOpsThreadState& state = *data; local
19 bool progress = state.fReporter->verbose(); // FIXME: break out into its own parameter?
31 pathA.moveTo(SkIntToScalar(state.fA), SkIntToScalar(state.fB));
32 pathA.cubicTo(SkIntToScalar(state.fC), SkIntToScalar(state.fD), SkIntToScalar(b),
37 pathB.cubicTo(SkIntToScalar(c), SkIntToScalar(d), SkIntToScalar(state.fB),
38 SkIntToScalar(state.fA), SkIntToScalar(state.fD), SkIntToScalar(state
[all...]
H A DPathOpsOpRectThreadedTest.cpp20 PathOpsThreadState& state = *data; local
22 bool progress = state.fReporter->verbose(); // FIXME: break out into its own parameter?
43 " SkPath::kCW_Direction);\n", state.fA, state.fA, state.fB, state.fB);
45 " SkPath::kCW_Direction);\n", state.fC, state.fC, state.fD, state
[all...]
/external/tlsdate/src/events/
H A Dcheck_continuity.c64 int setup_event_timer_continuity (struct state *state) argument
67 struct timeval interval = { state->opts.continuity_interval, 0 };
68 event = event_new (state->base, -1, EV_TIMEOUT|EV_PERSIST,
69 action_kickoff_time_sync, state);
/external/v8/test/mjsunit/regress/
H A Dregress-1639-2.js33 function sendCommand(state, cmd) {
34 // Get the debug command processor in paused state.
35 var dcp = state.debugCommandProcessor(false);
40 var state = 0; variable
52 switch (state) {
54 state = 1;
/external/webrtc/webrtc/p2p/base/
H A Dtransportchannel.cc47 void TransportChannel::set_dtls_state(DtlsTransportState state) { argument
48 if (dtls_state_ == state) {
52 << state; local
53 dtls_state_ = state;
54 SignalDtlsState(this, state);
/external/dhcpcd-6.8.2/
H A Ddhcp6.c300 struct dhcp6_state *state; local
311 state = D6_STATE(ifp);
312 up = uptime() - state->start_uptime;
396 struct dhcp6_state *state; local
401 state = D6_STATE(ifp);
402 if (state == NULL) {
403 ifp->if_data[IF_DATA_DHCP6] = calloc(1, sizeof(*state));
404 state = D6_STATE(ifp);
405 if (state == NULL) {
410 TAILQ_INIT(&state
495 const struct dhcp6_state *state = D6_CSTATE(ifp); local
510 struct dhcp6_state *state; local
967 struct dhcp6_state *state; local
992 struct dhcp6_state *state; local
1012 struct dhcp6_state *state; local
1238 struct dhcp6_state *state; local
1259 const struct dhcp6_state *state; local
1276 struct dhcp6_state *state; local
1320 struct dhcp6_state *state; local
1376 struct dhcp6_state *state; local
1477 struct dhcp6_state *state; local
1521 struct dhcp6_state *state; local
1545 struct dhcp6_state *state; local
1573 struct dhcp6_state *state; local
1619 struct dhcp6_state *state; local
1702 struct dhcp6_state *state; local
1741 struct dhcp6_state *state; local
1822 struct dhcp6_state *state; local
1948 struct dhcp6_state *state; local
2101 struct dhcp6_state *state; local
2133 const struct dhcp6_state *state; local
2154 struct dhcp6_state *state; local
2258 struct dhcp6_state *state; local
2306 struct dhcp6_state *state; local
2375 struct dhcp6_state *state; local
2411 struct dhcp6_state *state, *ifd_state; local
2524 struct dhcp6_state *state; local
2611 struct dhcp6_state *state; local
3165 struct dhcp6_state *state; local
3248 struct dhcp6_state *state; local
3307 struct dhcp6_state *state; local
3329 struct dhcp6_state *state; local
3441 struct dhcp6_state *state; local
3467 const struct dhcp6_state *state; local
3603 struct dhcp6_state *state; local
[all...]
/external/lz4/lib/
H A Dxxhash.c342 XXH32_state_t state;
343 XXH32_reset(&state, seed);
344 XXH32_update(&state, input, len);
345 return XXH32_digest(&state);
482 XXH64_state_t state;
483 XXH64_reset(&state, seed);
484 XXH64_update(&state, input, len);
485 return XXH64_digest(&state);
563 XXH_istate32_t* state = (XXH_istate32_t*) state_in; local
564 state
576 XXH_istate64_t* state = (XXH_istate64_t*) state_in; local
590 XXH_istate32_t* state = (XXH_istate32_t *) state_in; local
691 XXH_istate32_t* state = (XXH_istate32_t*) state_in; local
744 XXH_istate64_t * state = (XXH_istate64_t *) state_in; local
845 XXH_istate64_t * state = (XXH_istate64_t *) state_in; local
[all...]
/external/clang/lib/StaticAnalyzer/Checkers/
H A DBuiltinFunctionChecker.cpp34 ProgramStateRef state = C.getState(); local
53 SVal X = state->getSVal(*(CE->arg_begin()), LCtx);
54 C.addTransition(state->BindExpr(CE, LCtx, X));
68 state->getSVal(*(CE->arg_begin()), LCtx).castAs<DefinedOrUnknownSVal>();
73 svalBuilder.evalEQ(state, Extent, Size);
74 state = state->assume(extentMatchesSizeArg, true);
75 assert(state && "The region should not have any previous constraints");
77 C.addTransition(state->BindExpr(CE, LCtx, loc::MemRegionVal(R)));
94 C.addTransition(state
[all...]
/external/lzma/C/
H A DDelta.c8 void Delta_Init(Byte *state) argument
12 state[i] = 0;
22 void Delta_Encode(Byte *state, unsigned delta, Byte *data, SizeT size) argument
26 MyMemCpy(buf, state, delta);
41 MyMemCpy(state, buf + j, delta - j);
42 MyMemCpy(state + delta - j, buf, j);
45 void Delta_Decode(Byte *state, unsigned delta, Byte *data, SizeT size) argument
49 MyMemCpy(buf, state, delta);
62 MyMemCpy(state, buf + j, delta - j);
63 MyMemCpy(state
[all...]
/external/mesa3d/src/gallium/state_trackers/xa/
H A DREADME30 The XA state tracker is intended as a versioned interface to gallium for
32 composite / video work for the Xorg state tracker.
34 The motivation behind this state tracker is that the Xorg state tracker has
42 Since Gallium3D is not versioned, the Xorg state tracker needs to be compiled
46 Therefore the xa state tracker is intended to supply the following
59 should investigate sharing the loadig mechanism with the EGL state tracker.
/external/speex/libspeex/
H A Dspeex_callbacks.c43 EXPORT int speex_inband_handler(SpeexBits *bits, SpeexCallback *callback_list, void *state) argument
53 return callback->func(bits, state, callback->data);
75 EXPORT int speex_std_mode_request_handler(SpeexBits *bits, void *state, void *data) argument
83 EXPORT int speex_std_low_mode_request_handler(SpeexBits *bits, void *state, void *data) argument
91 EXPORT int speex_std_high_mode_request_handler(SpeexBits *bits, void *state, void *data) argument
100 EXPORT int speex_std_vbr_request_handler(SpeexBits *bits, void *state, void *data) argument
109 EXPORT int speex_std_enh_request_handler(SpeexBits *bits, void *state, void *data) argument
118 EXPORT int speex_std_vbr_quality_request_handler(SpeexBits *bits, void *state, void *data) argument
127 EXPORT int speex_std_char_handler(SpeexBits *bits, void *state, void *data) argument
139 EXPORT int speex_default_user_handler(SpeexBits *bits, void *state, voi argument
[all...]
/external/webrtc/webrtc/system_wrappers/include/
H A Dstatic_instance.h41 CreateOperation state = kInstanceExists; local
61 state = kCreate;
66 state = kDestroy;
69 if (state == kCreate) {
71 } else if (state == kDestroy) {
74 // The state will not change past this point. Release the critical
101 // Sanity to catch corrupt state.
109 state = kCreate;
115 state = kCreate;
121 state
[all...]
/external/tlsdate/src/
H A Ddbus.c69 dbus_connection_ref (data->state->conn);
76 while (dbus_connection_dispatch (data->state->conn) ==
78 dbus_connection_unref (data->state->conn);
85 struct state *tlsdate_state = user_data;
86 struct dbus_state *state = tlsdate_state->dbus; local
92 data->state = state;
157 dbus_connection_ref (data->state->conn);
159 dbus_connection_unref (data->state->conn);
166 struct state *tlsdate_stat
167 struct dbus_state *state = tlsdate_state->dbus; local
237 struct dbus_state *state = global_state->dbus; local
358 can_set_time(struct state *state) argument
375 handle_set_time(DBusConnection *connection, DBusMessage *message, struct state *state) argument
414 handle_can_set_time(DBusConnection *connection, DBusMessage *message, struct state *state) argument
424 handle_last_sync_info(DBusConnection *connection, DBusMessage *message, struct state *state) argument
492 struct state *state = data; local
533 struct dbus_state *state = calloc (1, sizeof (struct dbus_state)); local
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
H A DSlimLexer.cs54 public SlimLexer( ICharStream input, RecognizerSharedState state )
55 : base( state )
66 if ( state.text != null )
68 return state.text;
70 return input.Substring( state.tokenStartCharIndex, CharIndex - state.tokenStartCharIndex );
75 state.text = value;
104 base.Reset(); // reset all recognizer state variables
105 // wack Lexer state variables
110 if ( state
[all...]

Completed in 3791 milliseconds

1234567891011>>