HomeSort by relevance Sort by last modified time
    Searched refs:search (Results 351 - 375 of 1488) sorted by null

<<11121314151617181920>>

  /external/lldb/scripts/Python/
modify-python-lldb.py 345 match = class_pattern.search(line)
366 match = init_pattern.search(line)
425 if isvalid_pattern.search(line):
  /external/skia/bench/
tile_analyze.py 232 if (not re.search(DIMENSIONS_RE, layout) or
233 not re.search(DIMENSIONS_RE, tile_size) or
234 not re.search(DIMENSIONS_RE, viewport)):
  /packages/apps/Settings/src/com/android/settings/
ScreenPinningSettings.java 34 import com.android.settings.search.BaseSearchIndexProvider;
35 import com.android.settings.search.Indexable;
36 import com.android.settings.search.SearchIndexableRaw;
177 * For search
  /packages/apps/Settings/src/com/android/settings/net/
DataUsageMeteredSettings.java 39 import com.android.settings.search.BaseSearchIndexProvider;
40 import com.android.settings.search.Indexable;
41 import com.android.settings.search.SearchIndexableRaw;
153 * For search
  /packages/apps/Settings/src/com/android/settings/voice/
VoiceInputSettings.java 32 import com.android.settings.search.BaseSearchIndexProvider;
33 import com.android.settings.search.Indexable;
34 import com.android.settings.search.SearchIndexableRaw;
179 // For Search
  /packages/apps/Settings/src/com/android/settings/wifi/
SavedAccessPointsWifiSettings.java 31 import com.android.settings.search.BaseSearchIndexProvider;
32 import com.android.settings.search.Indexable;
33 import com.android.settings.search.SearchIndexableRaw;
218 * For search.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
SearchEngine.py 15 # State shared by search, replace, and grep;
16 # the search dialogs bind these to UI elements.
17 self.patvar = StringVar(root) # search pattern
23 self.backvar = BooleanVar(root) # search backwards?
95 """Search a text widget for the pattern.
102 The search starts at the selection (if there is one) or
103 at the insert mark (otherwise). If the search is forward,
105 search, it starts at the left end. An empty match exactly
110 If the search is allowed to wrap around, it will return the
141 m = prog.search(chars[:-1], col
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
SearchEngine.py 15 # State shared by search, replace, and grep;
16 # the search dialogs bind these to UI elements.
17 self.patvar = StringVar(root) # search pattern
23 self.backvar = BooleanVar(root) # search backwards?
95 """Search a text widget for the pattern.
102 The search starts at the selection (if there is one) or
103 at the insert mark (otherwise). If the search is forward,
105 search, it starts at the left end. An empty match exactly
110 If the search is allowed to wrap around, it will return the
141 m = prog.search(chars[:-1], col
    [all...]
  /build/tools/droiddoc/templates-sac/assets/js/
docs.js 12 var GOOGLE_DATA; // combined data for google service apis, used for search suggest
20 // load json file for Android API search suggestions
61 // set search's onkeyup handler here so we can show suggestions
62 // even while search results are visible
65 // set up the search close button
66 $('.search .close').click(function() {
70 $("#search-container").removeClass('active');
75 $('.search').click(function() {
108 //Set up search
110 $("#search-container").addClass('active')
    [all...]
  /build/tools/droiddoc/templates-ds/assets/js/
docs.js 38 // set search's onkeyup handler here so we can show suggestions
39 // even while search results are visible
42 // set up the search close button
43 $('.search .close').click(function() {
47 $("#search-container").removeClass('active');
52 $('.search').click(function() {
85 //Set up search
87 $("#search-container").addClass('active');
89 $("#search-container").mouseover(function() {
90 $("#search-container").addClass('active')
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/
compile_frontend.py 100 return re.search(error_warning_regex, output) != None
130 match = re.search(invalid_type_regex, line)
135 match = re.search(invalid_type_designator_regex, line)
332 match = re.search(start_module_regex, line)
343 match = re.search(end_module_regex, line)
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_graph.cpp 210 search(graph->getRoot(), preorder, seq);
220 void search(Graph::Node *node, const bool preorder, const int sequence) function in class:nv50_ir::DFSIterator
227 search(ei.getNode(), preorder, sequence);
269 search(graph->getRoot(), graph->nextSequence());
284 void search(Graph::Node *node, const int sequence) function in class:nv50_ir::CFGIterator
  /external/markdown/markdown/
blockprocessors.py 222 return bool(self.RE.search(block))
226 m = self.RE.search(block)
337 return bool(self.RE.search(block))
341 m = self.RE.search(block)
394 return bool(self.SEARCH_RE.search(block))
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_graph.cpp 210 search(graph->getRoot(), preorder, seq);
220 void search(Graph::Node *node, const bool preorder, const int sequence) function in class:nv50_ir::DFSIterator
227 search(ei.getNode(), preorder, sequence);
269 search(graph->getRoot(), graph->nextSequence());
284 void search(Graph::Node *node, const int sequence) function in class:nv50_ir::CFGIterator
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/
ManifestInfo.java 37 import static org.eclipse.jdt.core.search.IJavaSearchConstants.REFERENCES;
71 import org.eclipse.jdt.core.search.IJavaSearchScope;
72 import org.eclipse.jdt.core.search.SearchEngine;
73 import org.eclipse.jdt.core.search.SearchMatch;
74 import org.eclipse.jdt.core.search.SearchParticipant;
75 import org.eclipse.jdt.core.search.SearchPattern;
76 import org.eclipse.jdt.core.search.SearchRequestor;
151 // Get activity parent. Also search the meta-data for parent info.
225 * The maximum number of milliseconds to search for an activity in the codebase when
664 // Search for which java classes call setContentView(R.layout.layoutname)
676 search(requestor, javaProject, pattern); method
818 search(requestor, javaProject, pattern); method
836 private static void search(SearchRequestor requestor, IJavaProject javaProject, method in class:ManifestInfo
    [all...]
  /external/blktrace/
blkiomon.c 175 static struct dstat *blkiomon_find_dstat(struct rb_search *search, __u32 device)
193 search->node_ptr = p;
194 search->parent = parent;
201 struct rb_search search; local
205 dstat = blkiomon_find_dstat(&search, device);
215 rb_link_node(&dstat->node, search.parent, search.node_ptr);
  /external/chromium_org/v8/tools/
js2c.py 76 if EVAL_PATTERN.search(lines):
78 if WITH_PATTERN.search(lines):
92 pattern_match = name_pattern.search(lines, pos)
122 pattern_match = name_pattern.search(lines, start + len(result))
197 macro_match = INLINE_MACRO_PATTERN.search(lines, pos)
203 end_macro_match = INLINE_MACRO_END_PATTERN.search(lines, macro_match.end());
226 const_match = INLINE_CONSTANT_PATTERN.search(lines, pos)
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
SourceRevealer.java 40 import org.eclipse.jdt.core.search.IJavaSearchConstants;
41 import org.eclipse.jdt.core.search.SearchEngine;
42 import org.eclipse.jdt.core.search.SearchMatch;
43 import org.eclipse.jdt.core.search.SearchParticipant;
44 import org.eclipse.jdt.core.search.SearchPattern;
45 import org.eclipse.jdt.core.search.SearchRequestor;
86 * <li> A search, either by filename/line number, or for fqmn might provide only 1 result.
87 * In such a case, just open that result. Give preference to the file name/line # search
89 * <li> The search might not provide any results. e.g, the method name may be of the form
91 * such a case, if the fileName:lineNumber argument is available, a search for tha
    [all...]
  /build/tools/droiddoc/templates-ds/assets/css/
default.css 1406 Header, Login, Nav-X, Search
1443 .search {
1448 .search .bottom, .search .left, .search .right {
1452 .search .bottom {
1458 .search .left, .search .right {
1462 .search .left { top: 19px; left: 0 }
1463 .search .right { top: 19px; right: 0
    [all...]
  /build/tools/droiddoc/templates-sac/assets/css/
default.css 1470 Header, Login, Nav-X, Search
1518 .search {
1523 .search .bottom, .search .left, .search .right {
1527 .search .bottom {
1533 .search .left, .search .right {
1537 .search .left { top: 19px; left: 0 }
1538 .search .right { top: 19px; right: 0
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/extensions/searchvox/
search.js 7 * @fileoverview Uses ChromeVox API to enhance the search experience.
10 goog.provide('cvox.Search');
21 cvox.Search = function() {
28 cvox.Search.selectors = {};
33 cvox.Search.webSelectors = {
46 cvox.Search.imageSelectors = {
55 cvox.Search.index;
58 * Array of the search results.
61 cvox.Search.results = [];
67 cvox.Search.panes = []
    [all...]
  /external/chromium_org/v8/tools/push-to-trunk/
test_scripts.py 642 self.assertTrue(re.search(r"patch content", patch))
712 self.assertTrue(re.search(r"#define MINOR_VERSION\s+22", version))
713 self.assertTrue(re.search(r"#define BUILD_NUMBER\s+5", version))
714 self.assertFalse(re.search(r"#define BUILD_NUMBER\s+6", version))
715 self.assertTrue(re.search(r"#define PATCH_LEVEL\s+0", version))
716 self.assertTrue(re.search(r"#define IS_CANDIDATE_VERSION\s+0", version))
809 self.assertTrue(re.search(r"^\d\d\d\d\-\d+\-\d+: Version 3\.22\.5", cl))
810 self.assertTrue(re.search(r" Log text 1 \(issue 321\).", cl))
811 self.assertTrue(re.search(r"1999\-04\-05: Version 3\.22\.4", cl))
    [all...]
  /build/tools/droiddoc/templates-sdk/assets/js/
docs.js 13 var GOOGLE_DATA; // combined data for google service apis, used for search suggest
35 // load json file for JD doc search suggestions
37 // load json file for Android API search suggestions
57 // setup keyboard listener for search shortcut
84 // set up the search close button
85 $('.search .close').click(function() {
89 $("#search-container").removeClass('active');
122 //Set up search
124 $("#search-container").addClass('active');
126 $("#search-container").mouseover(function()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderThemeChromiumMac.mm 625 // We don't use controlSizeForFont() for search field decorations because it
626 // needs to fit into the search field. The font size will already be modified by
627 // setFontFromControlSize() called on the search field.
    [all...]
  /external/lldb/examples/python/
crashlog.py 185 match = self.dwarfdump_uuid_regex.search (line)
262 matched_pair = re.search("(.+)\((.+)\)", version_string)
269 elif self.parent_process_regex.search(line):
270 parent_process_match = self.parent_process_regex.search(line)
297 thread_state_match = self.thread_state_regex.search (line)
299 thread_state_match = self.thread_regex.search (line)
304 thread_match = self.thread_regex.search (line)
318 frame_match = self.frame_regex.search(line)
328 image_match = self.image_regex_uuid.search (line)
338 image_match = self.image_regex_no_uuid.search (line
    [all...]

Completed in 3193 milliseconds

<<11121314151617181920>>