Searched defs:context (Results 176 - 200 of 3832) sorted by last modified time

1234567891011>>

/external/regex-re2/re2/
H A Dnfa.cc50 bool Search(const StringPiece& text, const StringPiece& context,
406 StringPiece context = const_context;
407 if (context.begin() == NULL)
408 context = text;
410 if (!StringPieceContains(context, text)) {
411 LOG(FATAL) << "Bad args: context does not contain text "
412 << reinterpret_cast<const void*>(context.begin())
413 << "+" << context.size() << " "
419 if (prog_->anchor_start() && context.begin() != text.begin())
421 if (prog_->anchor_end() && context
686 SearchNFA(const StringPiece& text, const StringPiece& context, Anchor anchor, MatchKind kind, StringPiece* match, int nmatch) argument
[all...]
H A Donepass.cc182 static bool Satisfy(uint32 cond, const StringPiece& context, const char* p) { argument
183 uint32 satisfied = Prog::EmptyFlags(context, p);
230 StringPiece context = const_context; local
231 if (context.begin() == NULL)
232 context = text;
233 if (anchor_start() && context.begin() != text.begin())
235 if (anchor_end() && context.end() != text.end())
262 if ((cond & kEmptyAllFlags) == 0 || Satisfy(cond, context, p)) {
296 if ((matchcond & kEmptyAllFlags) == 0 || Satisfy(matchcond, context, p)) {
324 ((matchcond & kEmptyAllFlags) == 0 || Satisfy(matchcond, context,
[all...]
/external/regex-re2/re2/testing/
H A Dbacktrack.cc53 bool Search(const StringPiece& text, const StringPiece& context,
65 StringPiece context_; // greater context of text being searched
94 bool Backtracker::Search(const StringPiece& text, const StringPiece& context, argument
98 context_ = context;
226 const StringPiece& context,
247 if (!b.Search(text, context, anchored, longest, match, nmatch))
225 UnsafeSearchBacktrack(const StringPiece& text, const StringPiece& context, Anchor anchor, MatchKind kind, StringPiece* match, int nmatch) argument
H A Dtester.cc294 StringPiece context = orig_context; local
306 prog_->UnsafeSearchBacktrack(text, context, anchor, kind_,
317 prog_->SearchNFA(text, context, anchor, kind_,
327 result->matched = prog_->SearchDFA(text, context, anchor, kind_, NULL,
337 prog_->SearchDFA(text, context, anchor, kind_, result->submatch,
342 if (!rprog_->SearchDFA(result->submatch[0], context,
362 result->matched = prog_->SearchOnePass(text, context, anchor, kind_,
372 result->matched = prog_->SearchBitState(text, context, anchor, kind_,
380 if (!re2_ || text.end() != context.end()) {
393 result->matched = re2_->Match(context,
474 RunCase(const StringPiece& text, const StringPiece& context, Prog::Anchor anchor) argument
552 LogMatch(const char* prefix, Engine e, const StringPiece& text, const StringPiece& context, Prog::Anchor anchor) argument
599 TestCase(const StringPiece& text, const StringPiece& context, Prog::Anchor anchor) argument
626 TestInputInContext(const StringPiece& text, const StringPiece& context) argument
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DContextParameters.java21 /** Contains global (but typically constant) parameters about the current operating context */
25 public Context context; field in class:ContextParameters
H A DConversationDialogActivity.java225 public TypewriterTextView(Context context) { argument
226 super(context);
229 public TypewriterTextView(Context context, AttributeSet attrs) { argument
230 super(context, attrs);
233 public TypewriterTextView(Context context, AttributeSet attrs, int defStyle) { argument
234 super(context, attrs, defStyle);
H A DConversationUtils.java42 public final static ArrayList<Conversation> loadDialog(int resource, Context context) { argument
43 XmlResourceParser parser = context.getResources().getXml(resource);
68 page.text = context.getText(value);
71 page.title = context.getString(value);
H A DCustomToastSystem.java32 public CustomToastSystem(Context context) { argument
33 LayoutInflater inflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
37 mToast = new Toast(context);
H A DGLSurfaceView.java193 public GLSurfaceView(Context context) { argument
194 super(context);
202 public GLSurfaceView(Context context, AttributeSet attrs) { argument
203 super(context, attrs);
302 * a context will be created with no shared context and
380 * <p>Use this method to create an OpenGL ES 2.0-compatible context.
383 * public MyView(Context context) {
384 * super(context);
385 * setEGLContextClientVersion(2); // Pick an OpenGL ES 2.0 context
702 destroyContext(EGL10 egl, EGLDisplay display, EGLContext context) argument
716 destroyContext(EGL10 egl, EGLDisplay display, EGLContext context) argument
[all...]
H A DGame.java60 * @param context
62 public void bootstrap(Context context, int viewWidth, int viewHeight, int gameWidth, int gameHeight, int difficulty) { argument
64 mRenderer = new GameRenderer(context, this, gameWidth, gameHeight);
69 BaseObject.sSystemRegistry.customToastSystem = new CustomToastSystem(context);
78 params.context = context;
111 WindowManager windowMgr = (WindowManager)context.getSystemService(Context.WINDOW_SERVICE);
145 collision.loadCollisionTiles(context.getResources().openRawResource(R.raw.collision));
328 params.context.getResources().openRawResource(level.resource), mGameRoot);
330 Context context
458 onResume(Context context, boolean force) argument
[all...]
H A DGameFlowEvent.java36 public void post(int event, int index, Context context) { argument
37 if (context instanceof AndouKun) {
41 mMainActivity = (AndouKun)context;
46 public void postImmediate(int event, int index, Context context) { argument
47 if (context instanceof AndouKun) {
51 mMainActivity = (AndouKun)context;
H A DGameOverActivity.java55 public IncrementingTextView(Context context) { argument
56 super(context);
59 public IncrementingTextView(Context context, AttributeSet attrs) { argument
60 super(context, attrs);
63 public IncrementingTextView(Context context, AttributeSet attrs, int defStyle) { argument
64 super(context, attrs, defStyle);
H A DGameRenderer.java64 public GameRenderer(Context context, Game game, int gameWidth, int gameHeight) { argument
65 mContext = context;
83 * on features of this particular context
H A DKeyboardConfigDialogPreference.java69 public KeyboardConfigDialogPreference(Context context, AttributeSet attrs) { argument
70 this(context, attrs, android.R.attr.dialogPreferenceStyle);
73 public KeyboardConfigDialogPreference(Context context, AttributeSet attrs, argument
75 super(context, attrs, defStyle);
77 TypedArray a = context.obtainStyledAttributes(attrs,
87 public KeyboardConfigDialogPreference(Context context) { argument
88 this(context, null);
207 public void setContext(Context context) { argument
208 mContext = context;
H A DLevelSelectActivity.java74 public DisableItemArrayAdapter(Context context, int resource, int disabledResource, int completedResource, argument
76 super(context, resource, textViewResourceId, objects);
80 mContext = context;
H A DLevelTree.java76 public static final void loadLevelTree(int resource, Context context) { argument
82 XmlResourceParser parser = context.getResources().getXml(resource);
128 titleString = context.getString(value);
130 timeStamp = context.getString(value);
196 public final static void loadAllDialog(Context context) { argument
206 dialog.character1Conversations = ConversationUtils.loadDialog(dialog.character1Entry, context);
210 dialog.character2Conversations = ConversationUtils.loadDialog(dialog.character2Entry, context);
H A DMultiTouchFilter.java34 public boolean supportsMultitouch(Context context) { argument
36 PackageManager packageManager = context.getPackageManager();
H A DSliderPreference.java37 public SliderPreference(Context context) { argument
38 super(context);
43 public SliderPreference(Context context, AttributeSet attrs) { argument
44 this(context, attrs, android.R.attr.preferenceStyle);
49 public SliderPreference(Context context, AttributeSet attrs, int defStyle) { argument
50 super(context, attrs, defStyle);
52 TypedArray a = context.obtainStyledAttributes(attrs,
H A DTextureLibrary.java82 public Texture loadTexture(Context context, GL10 gl, int resourceID) { argument
84 texture = loadBitmap(context, gl, texture);
89 public void loadAll(Context context, GL10 gl) { argument
92 loadBitmap(context, gl, mTextureHash[x]);
127 protected Texture loadBitmap(Context context, GL10 gl, Texture texture) { argument
129 assert context != null;
160 InputStream is = context.getResources().openRawResource(texture.resource);
H A DTouchFilter.java26 public boolean supportsMultitouch(Context context) { argument
H A DYesNoDialogPreference.java30 public YesNoDialogPreference(Context context, AttributeSet attrs) { argument
31 this(context, attrs, android.R.attr.yesNoPreferenceStyle);
35 public YesNoDialogPreference(Context context, AttributeSet attrs, argument
37 super(context, attrs, defStyle);
41 public YesNoDialogPreference(Context context) { argument
42 this(context, null);
/external/robolectric/lib/main/
H A Dandroid-support-v4.jar ... 0_r1/s?defs= " (android.content.Context) android.content.Context context public static android. ...
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
H A Dhttpclient-4.0.3.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/cookie/ ...
H A Dhttpcore-4.0.1.jar ... response org.apache.http.protocol.HttpContext context } org/apache/http/protocol/RequestConnControl.class RequestConnControl.java ...

Completed in 1341 milliseconds

1234567891011>>