HomeSort by relevance Sort by last modified time
    Searched refs:Find (Results 1 - 25 of 105) sorted by null

1 2 3 4 5

  /external/skia/include/core/
SkGlobals.h 39 create_proc can NOT call back into SkGlobals::Find (it would deadlock)
41 static Rec* Find(uint32_t tag, Rec* (*create_proc)());
42 /** Helper for Find, when you want to assert that the Rec is already in the list
46 Rec* rec = SkGlobals::Find(tag, NULL);
  /external/easymock/src/org/easymock/internal/matchers/
Find.java 23 public class Find implements IArgumentMatcher, Serializable {
29 public Find(String regex) {
35 && Pattern.compile(regex).matcher((String) actual).find();
39 buffer.append("find(\"" + regex.replaceAll("\\\\", "\\\\\\\\") + "\")");
  /external/webkit/WebKitTools/Scripts/
do-file-rename 35 use File::Find;
42 # find all files we want to process
45 find(\&wanted, "JavaScriptCore");
46 find(\&wanted, "JavaScriptGlue");
47 find(\&wanted, "WebCore");
48 find(\&wanted, "WebKit");
55 $File::Find::prune = 1;
60 $File::Find::prune = 1;
67 push @paths, $File::Find::name;
do-webcore-rename 35 use File::Find;
43 # find all files we want to process
46 find(\&wanted, "JavaScriptCore");
47 find(\&wanted, "JavaScriptGlue");
48 find(\&wanted, "WebCore");
49 find(\&wanted, "WebKit");
56 $File::Find::prune = 1;
61 $File::Find::prune = 1;
68 push @paths, $File::Find::name;
make-script-test-wrappers 37 use File::Find;
82 push @files, $File::Find::name if substr($_, -3) eq ".js";
84 find({ preprocess => \&directoryFilter, wanted => $fileFilter }, $templateDirectory);
122 return () if basename($File::Find::dir) eq ".svn";
135 push @templateFiles, $File::Find::name if $_ eq "TEMPLATE.html";
138 find({ preprocess => \&directoryFilter, wanted => $fileFilter }, @paths);
report-include-statistics 32 use File::Find;
34 find(\&wanted, @ARGV ? @ARGV : ".");
45 $File::Find::prune = 1;
50 $paths{$file} = $File::Find::name;
51 $sources{$file} = $File::Find::name if $file !~ /\.h/;
find-extra-includes 29 # "find-extra-includes" script for WebKit Open Source Project
32 use File::Find;
34 find(\&wanted, @ARGV ? @ARGV : ".");
44 $File::Find::prune = 1;
49 $paths{$file} = $File::Find::name;
update-webkit-auxiliary-libs 35 use File::Find;
88 my $relativeName = File::Spec->abs2rel($File::Find::name, "$tmpDir/$file/win");
99 File::Find::find(\&wanted, "$tmpDir/$file");
update-webkit-support-libs 34 use File::Find;
53 -f $pathToZip or dieAndInstructToDownload("$zipFile could not be find in your root source directory.");
85 my $relativeName = File::Spec->abs2rel($File::Find::name, "$tmpDir/$file/win");
96 File::Find::find(\&wanted, "$tmpDir/$file");
clean-header-guards 3 require 'find'
32 Find::find(".") do |filename|
45 puts "Ignoring #{filename}, failed to find existing header guards."
  /frameworks/base/tools/localize/
XMLNode.h 14 static string Find(const vector<XMLAttribute>& list,
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
symbol-table.h 51 int64 key = Find(symbol);
72 string Find(int64 key) const {
74 key_map_.find(key);
84 int64 Find(const string& symbol) const {
85 return Find(symbol.c_str());
91 int64 Find(const char* symbol) const {
93 symbol_map_.find(symbol);
284 string Find(int64 key) const {
285 return impl_->Find(key);
290 int64 Find(const string& symbol) const
    [all...]
verify.h 66 } else if (isyms && isyms->Find(arc.ilabel) == "") {
76 } else if (osyms && osyms->Find(arc.olabel) == "") {
  /external/chromium/base/
field_trial_unittest.cc 25 EXPECT_FALSE(FieldTrialList::Find(name1));
26 EXPECT_FALSE(FieldTrialList::Find(name2));
35 EXPECT_EQ(trial1, FieldTrialList::Find(name1));
36 EXPECT_FALSE(FieldTrialList::Find(name2));
45 EXPECT_EQ(trial1, FieldTrialList::Find(name1));
46 EXPECT_EQ(trial2, FieldTrialList::Find(name2));
163 EXPECT_TRUE(FieldTrialList::Find("Some_name") == NULL);
164 EXPECT_TRUE(FieldTrialList::Find("xxx") == NULL);
168 FieldTrial* trial = FieldTrialList::Find("Some_name");
173 trial = FieldTrialList::Find("xxx")
    [all...]
  /external/skia/src/animator/
SkGetCondensedInfo.cpp 72 const SkMemberInfo* info = SkMemberInfo::Find(type, matchPtr);
98 const SkMemberInfo* SkMemberInfo::Find(SkDisplayTypes type, int* index) {
103 const SkMemberInfo* result = Find(baseTypeLookup, index);
118 const SkMemberInfo* SkMemberInfo::Find(SkDisplayTypes type, const char** matchPtr) {
SkMemberInfo.h 105 static const SkMemberInfo* Find(const SkMemberInfo [], int count, int* index);
106 static const SkMemberInfo* Find(const SkMemberInfo [], int count, const char** name);
108 static const SkMemberInfo* Find(SkDisplayTypes type, int* index);
109 static const SkMemberInfo* Find(SkDisplayTypes type, const char** name);
214 const SkMemberInfo* result = SkMemberInfo::Find(fInfo, SK_ARRAY_COUNT(fInfo), &index); \
218 const SkMemberInfo* result = SkMemberInfo::Find(fInfo, SK_ARRAY_COUNT(fInfo), &name); \
  /external/skia/src/views/
SkTagList.h 46 static SkTagList* Find(SkTagList* head, U8CPU tag);
SkTagList.cpp 24 SkTagList* SkTagList::Find(SkTagList* rec, U8CPU tag)
SkEventSink.cpp 45 SkEventSink_Globals& globals = *(SkEventSink_Globals*)SkGlobals::Find(SK_EventSink_GlobalsTag, create_globals);
58 SkEventSink_Globals& globals = *(SkEventSink_Globals*)SkGlobals::Find(SK_EventSink_GlobalsTag, create_globals);
110 return fTagHead ? SkTagList::Find(fTagHead, tag) : NULL;
116 SkASSERT(fTagHead == NULL || SkTagList::Find(fTagHead, rec->fTag) == NULL);
143 int find(SkEventSinkID id) const function in struct:SkListenersTagList
165 if (prev->find(id) >= 0)
203 int index = list->find(id);
263 SkDebugf("DoEvent: Can't find sink for ID(%x)\n", sinkID);
283 SkEventSink_Globals& globals = *(SkEventSink_Globals*)SkGlobals::Find(SK_EventSink_GlobalsTag, create_globals);
331 (void)gNamedSinkIDs.find(name, &id)
    [all...]
SkEvent.cpp 318 SkEvent_Globals& globals = *(SkEvent_Globals*)SkGlobals::Find(SK_Event_GlobalsTag, create_globals);
354 SkEvent_Globals& globals = *(SkEvent_Globals*)SkGlobals::Find(SK_Event_GlobalsTag, create_globals);
383 SkEvent_Globals& globals = *(SkEvent_Globals*)SkGlobals::Find(SK_Event_GlobalsTag, create_globals);
405 SkEvent_Globals& globals = *(SkEvent_Globals*)SkGlobals::Find(SK_Event_GlobalsTag, create_globals);
429 SkEvent_Globals& globals = *(SkEvent_Globals*)SkGlobals::Find(SK_Event_GlobalsTag, create_globals);
450 SkEvent_Globals& globals = *(SkEvent_Globals*)SkGlobals::Find(SK_Event_GlobalsTag, create_globals);
500 SkEvent_Globals& globals = *(SkEvent_Globals*)SkGlobals::Find(SK_Event_GlobalsTag, create_globals);
547 SkEvent_Globals& globals = *(SkEvent_Globals*)SkGlobals::Find(SK_Event_GlobalsTag, create_globals);
  /external/webkit/WebKit/win/WebKit.vcproj/
FixMIDLHeaders.pl 33 use File::Find;
42 find(\&finder, $dir);
  /external/webkit/WebKit/android/plugins/
PluginTimer.cpp 74 PluginTimer* PluginTimer::Find(PluginTimer* list, uint32 timerID)
116 PluginTimer* timer = PluginTimer::Find(m_list, timerID);
PluginTimer.h 47 static PluginTimer* Find(PluginTimer* list, uint32 timerID);
  /external/webkit/WebKit/android/wds/
Command.h 86 // Find the command specified by the client request.
87 static Command* Find(const Connection* conn);
  /sdk/emulator/qtools/
parse_options-inl.h 35 if (sym == NULL || included_procedures.Find(sym->name) == 0)
39 if (sym == NULL || excluded_procedures.Find(sym->name))
85 return included_procedures.Find(sym->name);
94 return excluded_procedures.Find(sym->name);

Completed in 987 milliseconds

1 2 3 4 5