HomeSort by relevance Sort by last modified time
    Searched refs:found (Results 101 - 125 of 2814) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/third_party/skia/src/animator/
SkDisplayList.cpp 6 * found in the LICENSE file.
54 SkGroup** parent, SkGroup** found, SkTDDrawableArray**grandList) {
58 return SearchForMatch(match, list, parent, found, grandList);
72 SkGroup** parent, SkGroup** found, SkTDDrawableArray**grandList) {
73 *found = NULL;
82 if (apply->scope->isGroup() && SearchGroupForMatch(apply->scope, match, list, parent, found, grandList, index))
93 if (draw->isGroup() && SearchGroupForMatch(draw, match, list, parent, found, grandList, index))
101 SkGroup** parent, SkGroup** found, SkTDDrawableArray** grandList, int &index) {
106 int groupIndex = group->findGroup(match, list, parent, found, grandList);
108 *found = group
    [all...]
  /external/skia/src/animator/
SkDisplayList.cpp 6 * found in the LICENSE file.
54 SkGroup** parent, SkGroup** found, SkTDDrawableArray**grandList) {
58 return SearchForMatch(match, list, parent, found, grandList);
72 SkGroup** parent, SkGroup** found, SkTDDrawableArray**grandList) {
73 *found = NULL;
82 if (apply->scope->isGroup() && SearchGroupForMatch(apply->scope, match, list, parent, found, grandList, index))
93 if (draw->isGroup() && SearchGroupForMatch(draw, match, list, parent, found, grandList, index))
101 SkGroup** parent, SkGroup** found, SkTDDrawableArray** grandList, int &index) {
106 int groupIndex = group->findGroup(match, list, parent, found, grandList);
108 *found = group
    [all...]
  /external/chromium_org/v8/test/mjsunit/
mjsunit.js 46 // Expected and found values the same objects, or the same primitive
51 // Expected and found values are identical primitive values or functions
58 // The difference between expected and found value is within certain tolerance.
61 // The found object is an Array with the same length and elements
66 // The found object must have the same enumerable properties as the
70 // Assert that the string conversion of the found value is equal to
72 // check the real structure of the found value.
75 // Checks that the found value is true. Use with boolean expressions
79 // Checks that the found value is false.
82 // Checks that the found value is null. Kept for historical compatibility
    [all...]
  /external/bluetooth/bluedroid/bta/hl/
bta_hl_utils.c 102 BOOLEAN found=FALSE; local
114 found = TRUE;
122 found = TRUE;
126 if (!found)
128 APPL_TRACE_DEBUG3("bta_hl_find_sdp_idx_using_ctrl_psm found=%d sdp_idx=%d ctrl_psm=0x%x ",
129 found, *p_sdp_idx, ctrl_psm );
132 return found;
328 ** Returns BOOLEAN TRUE - found
329 ** FALSE - not found
337 BOOLEAN found = TRUE local
521 BOOLEAN found = FALSE; local
630 BOOLEAN found = FALSE; local
860 BOOLEAN found=FALSE; local
899 BOOLEAN found=FALSE; local
937 BOOLEAN found=FALSE; local
975 BOOLEAN found=FALSE; local
1014 BOOLEAN found=FALSE; local
1050 BOOLEAN found=FALSE; local
1086 BOOLEAN found=FALSE; local
1126 BOOLEAN found=FALSE; local
1169 BOOLEAN found=FALSE; local
1215 BOOLEAN found=FALSE; local
1309 BOOLEAN found = FALSE; local
1367 BOOLEAN found=FALSE; local
1463 BOOLEAN found=FALSE; local
1507 BOOLEAN found=FALSE, result=TRUE; local
1659 BOOLEAN found = FALSE; local
1789 BOOLEAN found =FALSE; local
2039 BOOLEAN found=FALSE; local
2078 BOOLEAN found=FALSE; local
2152 BOOLEAN found=FALSE; local
2525 BOOLEAN found=TRUE; local
    [all...]
  /external/chromium/chrome/browser/history/
top_sites_cache.cc 3 // found in the LICENSE file.
41 std::map<GURL, Images>::const_iterator found = local
43 if (found != images_.end()) {
44 *bytes = found->second.thumbnail.get();
52 std::map<GURL, Images>::const_iterator found = local
54 if (found != images_.end()) {
55 *score = found->second.thumbnail_score;
  /external/chromium_org/chrome/common/extensions/docs/server2/
app_yaml_helper.py 3 # found in the LICENSE file.
44 raise ValueError('No versions found for %s in %s' % (
47 raise ValueError('Inconsistent versions found for %s in %s: %s' % (
111 found = None
115 found = get_app_yaml_revision(next_file_system)
117 if found == 0:
121 revision=found - 1)
123 if found is None:
125 return found
  /external/chromium_org/third_party/WebKit/Source/core/storage/
Storage.cpp 61 bool found = contains(name, exceptionState); local
62 if (exceptionState.hadException() || !found)
83 bool found = contains(name, exceptionState); local
84 if (!found || exceptionState.hadException())
119 bool found = contains(name, exceptionState);
120 if (exceptionState.hadException() || !found)
  /external/chromium_org/third_party/npapi/npspy/
analyze_streams.py 66 found = False
72 found = True
75 if not found:
82 found = False
87 found = True
90 if not found:
  /external/linux-tools-perf/util/
cgroup.c 17 int found = 0; local
38 found = 1;
44 if (found)
48 if (!found)
116 goto found;
123 found:
  /external/valgrind/main/memcheck/tests/
dw4.stderr.exp 1 Uninitialised byte(s) found during client check request
8 Uninitialised byte(s) found during client check request
14 Uninitialised byte(s) found during client check request
  /external/chromium_org/ppapi/proxy/
interface_list.cc 3 // found in the LICENSE file.
322 NameToInterfaceInfoMap::const_iterator found = local
324 if (found == name_to_browser_info_.end())
326 return found->second.id;
330 NameToInterfaceInfoMap::const_iterator found = local
332 if (found == name_to_plugin_info_.end())
334 return found->second.id;
346 NameToInterfaceInfoMap::const_iterator found = local
348 if (found == name_to_browser_info_.end())
354 found->second.required_permission)
360 NameToInterfaceInfoMap::const_iterator found = local
    [all...]
plugin_dispatcher.cc 3 // found in the LICENSE file.
97 InstanceToDispatcherMap::iterator found = g_instance_to_dispatcher->find(
99 if (found == g_instance_to_dispatcher->end())
101 return found->second;
130 InstanceToDispatcherMap::iterator found = local
132 if (found != g_instance_to_dispatcher->end()) {
134 found->second->Send(new PpapiHostMsg_LogWithSource(
150 InterfaceMap::iterator found = plugin_interfaces_.find(interface_name); local
151 if (found == plugin_interfaces_.end()) {
156 return found->second
265 InstanceToDispatcherMap::iterator found = g_instance_to_dispatcher->find( local
    [all...]
  /external/v8/test/mjsunit/
mjsunit.js 46 // Expected and found values the same objects, or the same primitive
51 // Expected and found values are identical primitive values or functions
57 // The found object is an Array with the same length and elements
62 // The found object must have the same enumerable properties as the
66 // Assert that the string conversion of the found value is equal to
68 // check the real structure of the found value.
71 // Checks that the found value is true. Use with boolean expressions
75 // Checks that the found value is false.
78 // Checks that the found value is null. Kept for historical compatability,
82 // Checks that the found value is *not* null
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/tests/
t056lexer.py 40 found = self.execParser(
45 self.failUnlessEqual("- 34, channel=0", found)
  /external/bluetooth/bluedroid/btif/co/
bta_gatts_co.c 68 BOOLEAN found = FALSE; local
93 found = TRUE;
99 if (!found)
109 found = TRUE;
129 if (!found)
161 BOOLEAN found = FALSE; local
170 found = TRUE;
175 if (!found)
  /external/chromium/chrome/browser/
preferences_mock_mac.cc 3 // found in the LICENSE file.
27 Boolean found = CFDictionaryGetValueIfPresent(values_, local
30 if (!found || !value)
  /external/chromium_org/chrome/common/extensions/docs/examples/api/tabs/screenshot/
screenshot.js 3 // found in the LICENSE file.
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/email_this_page/
content_script.js 3 // found in the LICENSE file.
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/oauth_contacts/
onload.js 3 // found in the LICENSE file.
  /external/chromium_org/chrome/test/functional/perf/endure_graphs/
config.js 3 // found in the LICENSE file.
  /external/chromium_org/components/policy/core/common/
preferences_mock_mac.cc 3 // found in the LICENSE file.
27 Boolean found = CFDictionaryGetValueIfPresent(values_, local
30 if (!found || !value)
  /external/chromium_org/content/renderer/
notification_provider.cc 3 // found in the LICENSE file.
55 // Won't be found if the notification has already been closed by the user.
64 // Won't be found if the notification has already been closed by the user.
112 bool found = manager_.GetNotification(id, &notification); local
113 // |found| may be false if the WebNotification went out of scope in
115 if (found)
121 bool found = manager_.GetNotification(id, &notification); local
122 // |found| may be false if the WebNotification went out of scope in
124 if (found)
130 bool found = manager_.GetNotification(id, &notification) local
141 bool found = manager_.GetNotification(id, &notification); local
    [all...]
  /external/chromium_org/content/test/data/indexeddb/
bug_106883.js 3 // found in the LICENSE file.
bug_84933.js 3 // found in the LICENSE file.
  /external/chromium_org/net/url_request/
url_request_filter_unittest.cc 3 // found in the LICENSE file.
73 scoped_refptr<URLRequestJob> found = URLRequestFilter::Factory( local
75 EXPECT_EQ(job_a, found);
99 scoped_refptr<URLRequestJob> found = URLRequestFilter::Factory( local
101 EXPECT_EQ(job_b, found);
127 scoped_refptr<URLRequestJob> found = URLRequestFilter::Factory( local
129 EXPECT_EQ(job_c, found);
143 scoped_refptr<URLRequestJob> found = URLRequestFilter::Factory( local
145 EXPECT_EQ(job_c, found);

Completed in 640 milliseconds

1 2 3 45 6 7 8 91011>>