Searched defs:types (Results 101 - 125 of 428) sorted by relevance

1234567891011>>

/external/lldb/test/unittest2/
H A Dmain.py5 import types namespace
221 if isinstance(self.testRunner, (type, types.ClassType)):
/external/mockito/cglib-and-asm/src/org/mockito/cglib/beans/
H A DBulkBeanEmitter.java44 Class[] types) {
49 validate(target, getterNames, setterNames, types, getters, setters);
125 Class[] types,
129 if (setters.length != types.length || getters.length != types.length) {
133 for (i = 0; i < types.length; i++) {
136 if (method.getReturnType() != types[i]) {
137 throw new BulkBeanException("Specified type " + types[i] +
146 Method method = ReflectUtils.findDeclaredMethod(target, setters[i], new Class[]{ types[i] });
39 BulkBeanEmitter(ClassVisitor v, String className, Class target, String[] getterNames, String[] setterNames, Class[] types) argument
122 validate(Class target, String[] getters, String[] setters, Class[] types, Method[] getters_out, Method[] setters_out) argument
/external/smack/src/org/xbill/DNS/
H A DNSECRecord.java9 * ordered list of names in the zone, and a set of types for which
24 private TypeBitmap types; field in class:NSECRecord
36 * @param types An array containing the types present.
39 NSECRecord(Name name, int dclass, long ttl, Name next, int [] types) { argument
42 for (int i = 0; i < types.length; i++) {
43 Type.check(types[i]);
45 this.types = new TypeBitmap(types);
51 types
[all...]
/external/ant-glob/src/org/apache/tools/ant/types/selectors/
H A DSelectorUtils.java19 package org.apache.tools.ant.types.selectors;
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DBufferedTokenStream.java203 public List getTokens(int start, int stop, BitSet types) { argument
209 // list = tokens[start:stop]:{Token t, t.getType() in types}
213 if ( types==null || types.member(t.getType()) ) {
223 public List getTokens(int start, int stop, List types) { argument
224 return getTokens(start,stop,new BitSet(types));
/external/blktrace/btt/
H A Dbtt_plot.py50 an attempt is made to generate default plots for all 5 types (aqd, bnos,
76 types = [ 'aqd', 'q2d', 'd2c', 'q2c', 'bnos' ] variable
77 progs = [ 'btt_plot_%s.py' % t for t in types ]
221 if not a in types:
377 for t in types:
/external/chromium_org/chrome/browser/sync/
H A Dbackend_migrator.cc48 void BackendMigrator::MigrateTypes(syncer::ModelTypeSet types) { argument
50 to_migrate_.PutAll(types);
51 SDVLOG(1) << "MigrateTypes called with " << ModelTypeSetToString(types)
55 SDVLOG(1) << "MigrateTypes called with no new types; ignoring";
102 // We'll now disable any running types that need to be migrated.
104 SDVLOG(1) << "BackendMigrator disabling types "
145 SDVLOG(1) << "OnConfigureDone with requested types "
160 // was interrupted by a user changing preferred types.
162 SDVLOG(1) << "Disable request interrupted by user changing types";
168 // If this fails, and we're disabling types,
[all...]
H A Dstartup_controller_unittest.cc189 syncer::ModelTypeSet types(syncer::UserTypes());
190 // Disabling sessions means disabling 4 types due to groupings.
191 types.Remove(syncer::SESSIONS);
192 types.Remove(syncer::PROXY_TABS);
193 types.Remove(syncer::TYPED_URLS);
194 types.Remove(syncer::SUPERVISED_USER_SETTINGS);
196 sync_prefs()->SetPreferredDataTypes(syncer::UserTypes(), types); local
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dcompiled_file_system.py97 assert not cls.__name__[0].islower() # guard against non-class types class in function:CompiledFileSystem.Factory.Create
/external/chromium_org/components/onc/
H A Donc_constants.h100 // Patterns matching multiple types, not part of the ONC spec.
357 namespace types { namespace in namespace:onc::verify_x509
361 } // namespace types
/external/chromium_org/components/sync_driver/
H A Ddata_type_manager_impl.h34 // List of data types grouped by priority and ordered from high priority to
84 // Abort configuration and stop all data types due to configuration errors.
87 // Returns the priority types (control + priority user types).
91 // Divide |types| into sets by their priorities and return the sets from
93 TypeSetPriorityList PrioritizeTypes(const syncer::ModelTypeSet& types);
122 // Start association of next batch of data types after association of
137 // The |last_requested_types_| will reflect the newest set of requested types.
156 // The manager that handles the model association of the individual types.
163 // For querying failed data types (havin
174 syncer::ModelTypeSet types; member in struct:sync_driver::DataTypeManagerImpl::AssociationTypesInfo
[all...]
/external/chromium_org/content/browser/appcache/
H A Dappcache_entry.h42 int types() const { return types_; } function in class:content::AppCacheEntry
/external/chromium_org/content/renderer/
H A Dwebclipboard_impl.cc81 std::vector<base::string16> types; local
83 client_->ReadAvailableTypes(clipboard_type, &types, contains_filenames);
85 return types;
/external/chromium_org/gpu/command_buffer/service/
H A Dfeature_info_unittest.cc93 const GLenum* types; member in struct:gpu::gles2::__anon8414::FormatInfo
136 // Test good types.
169 EXPECT_TRUE(validator.IsValid(info.types[jj]));
174 // Test some bad types
222 EXPECT_FALSE(validator.IsValid(info.types[jj]));
/external/chromium_org/mojo/services/clipboard/
H A Dclipboard_standalone_unittest.cc70 std::vector<std::string> types; local
71 types.push_back(kUninitialized);
74 base::Bind(&CopyVectorStringAndEndRunloop, &types, &run_loop));
76 return types;
/external/chromium_org/net/base/
H A Ddirectory_lister.cc151 int types = base::FileEnumerator::FILES | base::FileEnumerator::DIRECTORIES; local
153 types |= base::FileEnumerator::INCLUDE_DOT_DOT;
155 base::FileEnumerator file_enum(dir_, recursive_, types);
/external/chromium_org/remoting/webapp/js_proto/
H A Dremoting_proto.js17 remoting.ClipboardData.prototype.types;
/external/chromium_org/sync/internal_api/
H A Dsync_rollback_manager_unittest.cc104 void InitManager(SyncManager* manager, ModelTypeSet types, argument
108 types_ = types;
/external/chromium_org/sync/sessions/
H A Dtest_util.cc104 ModelTypeSet types,
108 session->delegate()->OnTypesThrottled(types, delta);
102 SimulateTypesThrottledImpl( sessions::SyncSession* session, ModelTypeSet types, const base::TimeDelta& delta) argument
/external/chromium_org/sync/test/engine/
H A Dfake_sync_scheduler.cc20 ModelTypeSet types,
25 ModelTypeSet types,
59 ModelTypeSet types,
89 void FakeSyncScheduler::OnReceivedMigrationRequest(ModelTypeSet types) { argument
19 ScheduleLocalNudge( ModelTypeSet types, const tracked_objects::Location& nudge_location) argument
24 ScheduleLocalRefreshRequest( ModelTypeSet types, const tracked_objects::Location& nudge_location) argument
58 OnTypesThrottled( ModelTypeSet types, const base::TimeDelta& throttle_duration) argument
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DEventListenerMap.cpp101 Vector<AtomicString> types; local
102 types.reserveInitialCapacity(m_entries.size());
105 types.uncheckedAppend(m_entries[i].first);
107 return types;
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DSymbolTable.cpp202 TType *types[] = {ptype1, ptype2, ptype3, ptype4, ptype5}; local
203 for (size_t ii = 0; ii < sizeof(types) / sizeof(types[0]); ++ii)
205 if (types[ii])
207 TParameter param = {NULL, types[ii]};
/external/chromium_org/third_party/boringssl/src/crypto/asn1/
H A Da_mbstr.c75 * a mask of permissible ASN1 string types. It then works out the minimal
306 unsigned long types; local
307 types = *((unsigned long *)arg);
308 if((types & B_ASN1_PRINTABLESTRING) && !is_printable(value))
309 types &= ~B_ASN1_PRINTABLESTRING;
310 if((types & B_ASN1_IA5STRING) && (value > 127))
311 types &= ~B_ASN1_IA5STRING;
312 if((types & B_ASN1_T61STRING) && (value > 0xff))
313 types &= ~B_ASN1_T61STRING;
314 if((types
[all...]
/external/chromium_org/third_party/skia/src/animator/
H A DSkScriptCallBack.h40 virtual void getParamTypes(SkIntArray(SkOperand2::OpType)* types) = 0; member in class:SkScriptCallBackFunction
55 virtual void getParamTypes(SkIntArray(SkOperand2::OpType)* types) = 0; member in class:SkScriptCallBackMemberFunction
/external/chromium_org/tools/grit/grit/node/
H A Dmessage.py10 import types namespace
130 if isinstance(item, types.StringTypes):
252 if isinstance(item, types.StringTypes):

Completed in 9498 milliseconds

1234567891011>>