code stringlengths 20 663 | nl stringlengths 68 7.19k |
|---|---|
void function ( T [ ] arg0 , Comparator < T > arg1 ) { new InPlaceStableQuicksort < T > ( ) . sortArray ( arg0 , arg1 ) ; } | sort an array using the given comparator . concode_field_sep Comparator<T> comp concode_elem_sep T[] temp concode_elem_sep int TEMP_SIZE concode_elem_sep T[] data concode_elem_sep int INSERTION_SORT_SIZE concode_field_sep T select concode_elem_sep int partition concode_elem_sep void swap concode_elem_sep void swapBlock... |
boolean function ( Object arg0 , int arg1 ) { if ( isAdministrator ) { return true ; } int loc0 = rightsMap . get ( arg0 , 0 ) ; if ( loc0 != 0 ) { return ( loc0 & arg1 ) != 0 ; } return ( uPublic == null ) ? false : uPublic . isAccessible ( arg0 , arg1 ) ; } | returns true if any of the rights represented by the rights argument has been granted on the database object identified by the dbobject argument . this is done by checking that a mapping exists in the rights map from the dbobject argument for at least one of the rights contained in the rights argument . concode_field_s... |
void function ( ) { Iterator loc0 = csidMap . values ( ) . iterator ( ) ; while ( loc0 . hasNext ( ) ) { CompiledStatement loc1 = ( CompiledStatement ) loc0 . next ( ) ; loc1 . clearVariables ( ) ; } } | used after a ddl change that could impact the compiled statements . clears references to compiledstatement objects while keeping the counts and references to the sql strings . concode_field_sep Database database concode_elem_sep IntKeyHashMap sessionUseMap concode_elem_sep IntKeyHashMap schemaMap concode_elem_sep IntKe... |
String function ( ) { return this . marker ; } | when istruncated is true , this element is present and contains the value to use for the marker parameter in a subsequent pagination request . concode_field_sep Boolean isTruncated concode_elem_sep String marker concode_elem_sep com.amazonaws.internal.SdkInternalList<ServerCertificateMetadata> serverCertificateMetadata... |
void function ( ) { synchronized ( documentLock ) { if ( document != null && document . getCatalog ( ) != null ) { pageSize = document . getPageDimension ( pageCursor - 1 , rotation , zoom ) ; } else { pageSize = new PDimension ( 1f , 1f ) ; } } } | gets the page size associated with the current document state . concode_field_sep Object documentLock concode_elem_sep float ROTATION_FACTOR concode_elem_sep Document document concode_elem_sep float rotation concode_elem_sep PDFResource pdfResource concode_elem_sep PDimension pageSize concode_elem_sep boolean outlineEx... |
void function ( int arg0 ) { } | called when the element is sampled for its `` last '' value . concode_field_sep short CALC_MODE_LINEAR concode_elem_sep AbstractAnimation lowerAnimation concode_elem_sep TimedElement timedElement concode_elem_sep short CALC_MODE_SPLINE concode_elem_sep AnimatableElement animatableElement concode_elem_sep boolean isActi... |
Class < V > function ( ) { return mType ; } | returns the type for this property . concode_field_sep String mName concode_elem_sep Class<V> mType concode_field_sep boolean isReadOnly concode_elem_sep void set concode_elem_sep String getName concode_elem_sep Property<T,V> of concode_elem_sep V get |
long function ( ) { return _browserTracker . getBrowserKey ( ) ; } | returns the browser key of this browser tracker . concode_field_sep BrowserTracker _browserTracker concode_field_sep boolean isFinderCacheEnabled concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep boolean is... |
UserTracker function ( ) { if ( instance == null ) { instance = new UserTracker ( ) ; } return instance ; } | description of the method concode_field_sep UserTracker instance concode_elem_sep UserDatabase usersDB concode_elem_sep HashMap<String,HashMap<String,LessonTracker>> storage concode_field_sep Collection<String> getAllUsers concode_elem_sep Collection getUsers concode_elem_sep LessonTracker getLessonTracker concode_elem... |
String function ( ) { return "srini_string" ; } | used to retrieve a short description of what the plugin tool does . concode_field_sep String[] args concode_elem_sep boolean cancelOp concode_elem_sep WhiteboxPluginHost myHost concode_elem_sep String previousProgressLabel concode_elem_sep int previousProgress concode_elem_sep boolean amIActive concode_field_sep String... |
void function ( EmbeddedDatabaseConfigurer arg0 ) { this . databaseConfigurer = arg0 ; } | set the strategy that will be used to configure the embedded database instance . call this when you wish to use an embedded database type not already supported . concode_field_sep DataSourceFactory dataSourceFactory concode_elem_sep Log logger concode_elem_sep String databaseName concode_elem_sep DatabasePopulator data... |
byte [ ] function ( ByteBuffer arg0 ) { return ( ( ByteArrayBuffer ) arg0 ) . backingArray ; } | exposes the array backing a non-direct bytebuffer , even if the bytebuffer is read-only . normally , attempting to access the array backing a read-only buffer throws . concode_field_sep PlaceHolder placeHolder concode_field_sep int unsafeArrayOffset concode_elem_sep FileChannel newFileChannel concode_elem_sep void free... |
Composite function ( Byteable ... arg0 ) { int loc0 = Arrays . loc0 ( arg0 ) ; Composite loc1 = CACHE . get ( loc0 ) ; if ( loc1 == null ) { loc1 = create ( arg0 ) ; CACHE . put ( loc0 , loc1 ) ; } return loc1 ; } | create a composite for the list of byteables with support forcaching . cached composites are not guaranteed to perfectly match up with the list of byteables because hash collisions can occur so it is only advisable to use this method of creation when precision is not a requirement . concode_field_sep ByteBuffer bytes c... |
Item function ( ) { return item ; } | returns the item concode_field_sep Item item concode_elem_sep Shipping shipping concode_elem_sep Long orderId concode_elem_sep BazaarAccount bidder concode_elem_sep OrderStatus orderStatus concode_elem_sep CreditCard creditCard concode_elem_sep Bid bid concode_field_sep BazaarAccount getBidder concode_elem_sep Long get... |
void function ( ) { final InputStream loc0 = getClass ( ) . getResourceAsStream ( "srini_string" ) ; assertNotNull ( loc0 ) ; final MarcXmlReader loc1 = new MarcXmlReader ( loc0 ) ; assertTrue ( loc1 . hasNext ( ) ) ; final Record loc2 = loc1 . next ( ) ; } | tests reading a bad subfields element in record concode_field_sep PlaceHolder placeHolder concode_field_sep void testReadRecordType concode_elem_sep void testMissingDataFieldTag concode_elem_sep void testReadIndicatorlessRecord concode_elem_sep void testBadSubfieldCode concode_elem_sep void testReadBadRecordType concod... |
void function ( short arg0 ) { writeByte ( ( arg0 >>> 8 ) & 0xff ) ; writeByte ( ( arg0 >>> 0 ) & 0xff ) ; } | write the 16-bit int to standard output . concode_field_sep int buffer concode_elem_sep int n concode_elem_sep BufferedOutputStream out concode_field_sep void writeByte concode_elem_sep void flush concode_elem_sep void clearBuffer concode_elem_sep void main concode_elem_sep void close concode_elem_sep void writeBit |
void function ( String arg0 ) { this . epsName = arg0 ; } | sets the value of the epsname property . concode_field_sep Date date concode_elem_sep String epsId concode_elem_sep Double benefitPlan concode_elem_sep Date lastUpdateDate concode_elem_sep String lastUpdateUser concode_elem_sep String createUser concode_elem_sep Double spendingPlan concode_elem_sep Integer epsObjectId ... |
int function ( Context arg0 , Date arg1 , ChecksumResultCode arg2 ) { return checksumHistoryDAO . deleteByDateAndCode ( arg0 , arg1 , arg2 ) ; } | delete the history records from the database . concode_field_sep ChecksumResultService checksumResultService concode_elem_sep MostRecentChecksumService mostRecentChecksumService concode_elem_sep ChecksumHistoryDAO checksumHistoryDAO concode_field_sep void updateMissingBitstreams concode_elem_sep int prune concode_elem_... |
Object function ( ) { while ( true ) { Thread loc0 = threadVar . get ( ) ; if ( loc0 == null ) { return getValue ( ) ; } try { loc0 . join ( ) ; } catch ( InterruptedException loc1 ) { Thread . currentThread ( ) . interrupt ( ) ; return null ; } } } | return the value created by the construct method . returns null if either the constructing thread or the current thread was interrupted before a value was produced . concode_field_sep Thread thread concode_elem_sep Integer threadPriority concode_elem_sep Object value concode_elem_sep ThreadVar threadVar concode_field_s... |
long function ( com . liferay . portal . kernel . dao . orm . DynamicQuery arg0 ) { return getService ( ) . dynamicQueryCount ( arg0 ) ; } | returns the number of rows that match the dynamic query . concode_field_sep AuditEntryLocalService _service concode_field_sep int getAuditEntriesCount concode_elem_sep java.util.List<com.liferay.lms.model.AuditEntry> getAuditEntries concode_elem_sep com.liferay.lms.model.AuditEntry deleteAuditEntry concode_elem_sep com... |
void function ( PPr arg0 ) { this . pPr = arg0 ; } | sets the value of the ppr property . concode_field_sep Object parent concode_elem_sep PPr pPr concode_elem_sep DocDefaults.RPrDefault rPrDefault concode_elem_sep RPr rPr concode_elem_sep DocDefaults.PPrDefault pPrDefault concode_field_sep void setRPr concode_elem_sep void setRPrDefault concode_elem_sep DocDefaults.PPrD... |
ConstraintsParameters function ( ) { return new ConstraintsParameters ( ) ; } | create an instance of constraintsparameters concode_field_sep PlaceHolder placeHolder concode_field_sep TimeConstraint createTimeConstraint concode_elem_sep ListAlgo createListAlgo concode_elem_sep UnsignedAttributesConstraints createUnsignedAttributesConstraints concode_elem_sep CryptographicConstraint createCryptogra... |
ByteSequence function ( ) { return cf ; } | gets the column family of this condition . concode_field_sep ByteSequence val concode_elem_sep ByteSequence EMPTY concode_elem_sep ByteSequence cf concode_elem_sep ByteSequence cv concode_elem_sep IteratorSetting iterators[] concode_elem_sep ByteSequence cq concode_elem_sep Long ts concode_field_sep ByteSequence getVal... |
Notification function ( int arg0 ) { Notification loc0 = get ( arg0 ) ; if ( loc0 != null ) { loc0 . cancel ( ) ; } return loc0 ; } | clear local notification specified by id . concode_field_sep Context context concode_field_sep void cancelAll concode_elem_sep List<Integer> getIdsByType concode_elem_sep List<Notification> getAll concode_elem_sep List<Notification> getByType concode_elem_sep NotificationManager getNotMgr concode_elem_sep List<JSONObje... |
ConcurrentMapLong < V > function ( ) { return new ConcurrentHashMapLong < > ( ConcurrentCollections . < Long , V > newConcurrentMapWithAggressiveConcurrency ( ) ) ; } | creates a new chm with an aggressive concurrency level , aimed at highly updateable long living maps . concode_field_sep int aggressiveConcurrencyLevel concode_field_sep ConcurrentMap<K,V> newConcurrentMap concode_elem_sep Queue<T> newQueue concode_elem_sep ConcurrentMap<K,V> newConcurrentMapWithAggressiveConcurrency c... |
void function ( int arg0 , String arg1 , Throwable arg2 ) { log ( Diagnostic . ERROR , arg0 , arg1 , arg2 ) ; } | generates an error log for the specified plug-in , with the specified status code , message , and throwable . concode_field_sep Map<URI,URI> platformPluginMap concode_elem_sep Object pluginMapLock concode_field_sep String getModelId concode_elem_sep IStatus createDebugError concode_elem_sep URI resolvePlatformPluginURI... |
void function ( int arg0 , int arg1 , int arg2 , int arg3 ) { SwingUtil . layoutToGrid ( this . contentPanel , arg0 , arg1 , arg2 , arg3 ) ; } | layouts the child components of a specified parent component using gridbaglayout . concode_field_sep int WEIGHT_NONE concode_elem_sep boolean scroll concode_elem_sep JPanel contentPanel concode_elem_sep JComponent rootComponent concode_elem_sep int WEIGHT_EQUALLY concode_field_sep void add concode_elem_sep void add con... |
int function ( ) { return getSeverityCount ( DesktopException . ERROR_SEVERITY ) ; } | gets the number of exceptions with error severity . concode_field_sep List<DesktopException> exceptions concode_field_sep boolean add concode_elem_sep void add concode_elem_sep int getSeverityCount concode_elem_sep int getInfoCount concode_elem_sep void clear concode_elem_sep DesktopException remove concode_elem_sep bo... |
void function ( boolean arg0 ) { this . useAuthenticationRequestCredentials = arg0 ; } | determines whether the supplied password will be used as the credentials in the successful authentication token . if set to false , then the password will be obtained from the userdetails object created by the configured userdetailscontextmapper . often it will not be possible to read the password from the directory , ... |
void function ( ) { MyListener . setInvocationCount ( 0 ) ; SFSBBMT loc0 = lookup ( "srini_string" , SFSBBMT . class ) ; this . doBMTTest ( loc0 , 1 ) ; } | tests that the entity listeners are correctly invoked and have access to the java : comp/ejbcontext when an entity is persisted via a stateful bmt bean concode_field_sep InitialContext iniCtx concode_elem_sep String ARCHIVE_NAME concode_field_sep void testCDICallbackInvoked concode_elem_sep T lookup concode_elem_sep T ... |
void function ( ) { this . view = null ; this . model = null ; this . cleared = true ; } | clear the state of this modelandview object . the object will be empty afterwards . can be used to suppress rendering of a given modelandview object in the posthandle method of a handlerinterceptor . concode_field_sep Object view concode_elem_sep ModelMap model concode_elem_sep HttpStatus status concode_elem_sep boolea... |
T function ( TableColumn arg0 ) { return null ; } | returns the result of interpretting the object as an instance of ` table column ' . this implementation returns null ; returning a non-null result will terminate the switch . concode_field_sep RdbPackage modelPackage concode_field_sep T caseTable concode_elem_sep T caseSchemaElement concode_elem_sep T caseColumn concod... |
Itemset function ( int arg0 ) { Itemset loc0 = itemsets . remove ( arg0 ) ; numberOfItems -= loc0 . size ( ) ; return loc0 ; } | it removes the specified itemset from the sequence concode_field_sep int numberOfItems concode_elem_sep List<Itemset> itemsets concode_elem_sep int id concode_field_sep void addItem concode_elem_sep void addItem concode_elem_sep void addItem concode_elem_sep Sequence cloneSequenceMinusItems concode_elem_sep int size co... |
void function ( ) { new Identification ( null ) ; } | verify null and empty organization identification values . concode_field_sep String ORGANIZATION concode_elem_sep Identification test concode_field_sep void cannotSetNullOrganization concode_elem_sep void validateTimestampValue concode_elem_sep void cannotInitializeEmptyOrganization concode_elem_sep void setup concode_... |
String function ( ) { return searchParameterType ; } | gets the value of the searchparametertype property . concode_field_sep String searchParameterType concode_field_sep void setSearchParameterType |
java . util . List < String > function ( ) { if ( taskDefinitionArns == null ) { taskDefinitionArns = new com . amazonaws . internal . SdkInternalList < String > ( ) ; } return taskDefinitionArns ; } | the list of task definition amazon resource name arn entries for the listtaskdefinitions request . concode_field_sep String nextToken concode_elem_sep com.amazonaws.internal.SdkInternalList<String> taskDefinitionArns concode_field_sep void setNextToken concode_elem_sep int hashCode concode_elem_sep boolean equals conco... |
void function ( String arg0 ) { this . name = arg0 ; } | sets the value of the name property . concode_field_sep String loc concode_elem_sep URI providerID concode_elem_sep String name concode_field_sep void setProviderID concode_elem_sep String getLoc concode_elem_sep String getName concode_elem_sep URI getProviderID concode_elem_sep void setLoc |
JFileChooser function ( ) { return fc ; } | get the jfilechooser concode_field_sep TextFieldSink fileName concode_elem_sep JLabel lname concode_elem_sep JFileChooser fc concode_field_sep void setPreferredSize concode_elem_sep TextFieldSink getTextFieldSink concode_elem_sep void setSize concode_elem_sep Dimension getPreferredSize concode_elem_sep Box simpleFileCh... |
Ordering function ( ) { return ordering ; } | gets the key order . concode_field_sep RequestedLocalProperties DEFAULT_PROPERTIES concode_elem_sep Ordering ordering concode_elem_sep FieldSet groupedFields concode_field_sep void setGroupedFields concode_elem_sep boolean isMetBy concode_elem_sep void setOrdering concode_elem_sep boolean isTrivial concode_elem_sep voi... |
float function ( ) { return this . getReferenceComp ( ) . getWidthXY ( TransformSpace . RELATIVE_TO_PARENT ) ; } | gets the current unscaled width . concode_field_sep float sizeChangeValue concode_elem_sep float width concode_elem_sep AbstractShape polyButton concode_elem_sep float height concode_field_sep AbstractShape getReferenceComp concode_elem_sep void setSizeChangeValue concode_elem_sep void shrink concode_elem_sep void enla... |
void function ( String arg0 ) { this . id = arg0 ; } | sets the value of the id property . concode_field_sep String id concode_field_sep String getId |
void function ( long arg0 ) { out . println ( arg0 ) ; } | print a long to standard output and then terminate the line . concode_field_sep String CHARSET_NAME concode_elem_sep Locale LOCALE concode_elem_sep PrintWriter out concode_field_sep void print concode_elem_sep void print concode_elem_sep void print concode_elem_sep void print concode_elem_sep void print concode_elem_se... |
void function ( ) { expression = null ; } | removes all decision rules attached to this data dependency . this method should be called as soon as new rules have been calculated and should be updated . concode_field_sep HLDataExpression expression concode_elem_sep ModelGraphVertex myTargetNode concode_elem_sep int myID concode_elem_sep ArrayList<LogEvent> myLogEv... |
RestStatus function ( ) { if ( state == SnapshotState . FAILED ) { return RestStatus . INTERNAL_SERVER_ERROR ; } if ( shardFailures . size ( ) == 0 ) { return RestStatus . OK ; } return RestStatus . status ( successfulShards , totalShards , shardFailures . toArray ( new ShardOperationFailedException [ shardFailures . s... | returns snapshot rest status concode_field_sep String reason concode_elem_sep XContentBuilderString TOTAL concode_elem_sep XContentBuilderString STATE concode_elem_sep List<SnapshotShardFailure> shardFailures concode_elem_sep XContentBuilderString START_TIME concode_elem_sep XContentBuilderString SHARDS concode_elem_se... |
void function ( ) { new MouseJoint ( b , new Vector2 ( ) , 4.0 , 0.4 , - 10.0 ) ; } | tests the create method passing a negative damping ratio . concode_field_sep Body b concode_field_sep void setZeroFrequency concode_elem_sep void createNegativeFrequency concode_elem_sep void setNullTarget concode_elem_sep void shiftCoordinates concode_elem_sep void setMaxForce concode_elem_sep void fixedLinearVelocity... |
long function ( ) { return totalPartsLoaded ; } | gets the value of the totalpartsloaded property . concode_field_sep long totalPartsLoaded concode_elem_sep long totalPartsReceived concode_field_sep void setTotalPartsReceived concode_elem_sep void setTotalPartsLoaded concode_elem_sep long getTotalPartsReceived |
String function ( ) { StringBuilder loc0 = new StringBuilder ( "srini_string" ) ; loc0 . append ( getCollection ( ) . toString ( ) ) ; loc0 . append ( "srini_string" ) ; return loc0 . toString ( ) ; } | returns the string representation of this instance . concode_field_sep Collection<?> defaultCollection concode_elem_sep Collection<?> collection concode_field_sep Collection<?> getCollection concode_elem_sep Object clone |
void function ( FileVisitor arg0 ) { visitFrom ( arg0 , dir , new RelativePath ( false ) ) ; } | process the specified file or directory . note that the startfile parameter may be either a directory or a file . if it is a directory , then its contents but not the directory itself will be checked with isallowed and notified to the listener . if it is a file , the file will be checked and notified . concode_field_se... |
String function ( ) { return show ; } | gets the value of the show property . concode_field_sep String role concode_elem_sep String arcrole concode_elem_sep String show concode_elem_sep java.lang.Boolean owns concode_elem_sep String actuate concode_elem_sep List<String> nilReason concode_elem_sep String href concode_elem_sep TimeCalendarEraType timeCalendarE... |
void function ( ) { log . trace ( "srini_string" ) ; } | the participant should undo the work that it controls . the participant will then return an indication of whether or not it succeeded . concode_field_sep Logger log concode_field_sep Vote prepare concode_elem_sep void commit concode_elem_sep void error concode_elem_sep void unknown |
boolean function ( double arg0 ) { return setLong . lookup ( Double . doubleToRawLongBits ( arg0 ) ) ; } | return true if and only if the value x is present in the set . concode_field_sep CuckooSetLong setLong concode_field_sep void load concode_elem_sep void insert |
void function ( String arg0 , String arg1 ) { data . put ( arg0 , arg1 ) ; } | add new data concode_field_sep long duration concode_elem_sep Test testAnnotation concode_elem_sep Map<String,String> data concode_elem_sep String groupName concode_elem_sep boolean passed concode_elem_sep boolean runnable concode_elem_sep Method method concode_elem_sep long endDate concode_elem_sep Class testClass con... |
String function ( ) { return ( fileName == null ) ? "srini_string" : fileName ; } | return the current filename concode_field_sep File file concode_elem_sep String fileName concode_field_sep long getLength concode_elem_sep InputStream createInputStream |
void function ( ) { } | unlocks elements on this frame , so that they can be modified . this is needed to unlock the frame when it is displayed after it has been locked by an action . concode_field_sep String dialogType concode_elem_sep List<StepComponent> components concode_elem_sep Thread bgThread concode_elem_sep Step step concode_elem_sep... |
java . util . List function ( com . liferay . portal . kernel . dao . orm . DynamicQuery arg0 , int arg1 , int arg2 , com . liferay . portal . kernel . util . OrderByComparator arg3 ) { return _navigationLocalService . arg0 ( arg0 , arg1 , arg2 , arg3 ) ; } | performs a dynamic query on the database and returns an ordered range of the matching rows . useful when paginating results . returns a maximum of end - start instances . start and end are not primary keys , they are indexes in the result set . thus , 0 refers to the first result in the set . setting both start and end... |
void function ( RealmService arg0 ) { if ( log . isDebugEnabled ( ) ) { log . debug ( "srini_string" ) ; } PolicyManagementDataHolder . getInstance ( ) . setRealmService ( arg0 ) ; } | sets realm service concode_field_sep Log log concode_field_sep void setDeviceManagementService concode_elem_sep void unsetPEPService concode_elem_sep void unsetDeviceManagementService concode_elem_sep void setPolicyMonitoringService concode_elem_sep void setTaskService concode_elem_sep void activate concode_elem_sep vo... |
String function ( ) { return city ; } | returns the city . concode_field_sep String streetName concode_elem_sep int streetNumber concode_elem_sep String city concode_elem_sep String countryCode concode_elem_sep String description concode_elem_sep Locale locale concode_field_sep String getCountryCode concode_elem_sep void setCity concode_elem_sep void setDesc... |
void function ( BundleContext arg0 ) { context = arg0 ; logger . debug ( "srini_string" ) ; } | called whenever the osgi framework starts our bundle concode_field_sep BundleContext context concode_elem_sep Logger logger concode_field_sep void stop concode_elem_sep BundleContext getContext |
MediaType function ( T arg0 ) { List < MediaType > loc0 = getSupportedMediaTypes ( ) ; return ( ! loc0 . isEmpty ( ) ? loc0 . get ( 0 ) : null ) ; } | returns the default content type for the given type . called when #write is invoked without a specified content type parameter . by default , this returns the first element of the #setsupportedmediatypes list supportedmediatypes property , if any.can be overridden in subclasses . concode_field_sep List<MediaType> suppo... |
void function ( Set < T > arg0 ) { m_forwarders = arg0 ; } | sets the current recursive domain name servers to use to resolve queries concode_field_sep Set<NetworkPair<T>> m_allowedNetworks concode_elem_sep Set<T> m_forwarders concode_field_sep Set<T> getForwarders concode_elem_sep int hashCode concode_elem_sep boolean equals concode_elem_sep void setAllowedNetworks concode_elem... |
int function ( Iterator < String > arg0 ) { int loc0 = 0 ; while ( arg0 . hasNext ( ) ) loc0 += modifyContact ( arg0 . next ( ) , arg0 . next ( ) ) ; return loc0 ; } | synchronously modify all contacts designated by the iterator . concode_field_sep ContactsOpsImpl mOps concode_elem_sep ContentResolver mContentResolver concode_field_sep int modifyContact concode_elem_sep void execute |
boolean function ( WifiDisplay arg0 ) { return arg0 != null && mDeviceAddress . equals ( arg0 . mDeviceAddress ) ; } | returns true if the other display is not null and has the same address as this one . can be used to perform identity comparisons on displays ignoring properties that might change during a connection such as the name or alias . concode_field_sep String mDeviceName concode_elem_sep String mDeviceAlias concode_elem_sep bo... |
int function ( ) { return numberOfEntries ; } | gets the number of entries currently in this bag . concode_field_sep int numberOfEntries concode_elem_sep Node next concode_elem_sep T data concode_elem_sep Node firstNode concode_field_sep boolean add concode_elem_sep int getFrequencyOf concode_elem_sep boolean contains concode_elem_sep T[] toArray concode_elem_sep bo... |
void function ( HessianRemoteResolver arg0 ) { this . resolver = arg0 ; } | sets the resolver used to lookup remote objects . concode_field_sep HessianRemoteResolver resolver concode_field_sep void readEnd concode_elem_sep HessianRemoteResolver getRemoteResolver concode_elem_sep int addRef concode_elem_sep String getMethod concode_elem_sep String readHeader concode_elem_sep Object readReply co... |
LyitFlightCheckerboard function ( ) { return new LyitFlightCheckerboard ( ) ; } | create an instance of lyitflightcheckerboard concode_field_sep QName _GetLyitFlightCheckerboardArray_QNAME concode_elem_sep QName _GetLyitFlightCheckerboardArrayResponse_QNAME concode_elem_sep QName _LyitFlightCheckerboard_QNAME concode_field_sep GetLyitFlightCheckerboardArray createGetLyitFlightCheckerboardArray conco... |
T function ( Object arg0 ) { return ( T ) arg0 ; } | perform an unsafe cast without compiler warnings concode_field_sep String OS concode_elem_sep NumberFormat LONG_DECIMAL_FORMAT concode_field_sep boolean isLinux concode_elem_sep boolean checkOverwrite concode_elem_sep String getExtension concode_elem_sep T[] intersect concode_elem_sep boolean shouldOverwrite concode_el... |
Line function ( ) { return line ; } | get the line containing the segment . concode_field_sep Line line concode_elem_sep Vector3D start concode_elem_sep Vector3D end concode_field_sep Vector3D getStart concode_elem_sep Vector3D getEnd |
String function ( ) { return scanner . next ( ) ; } | return next string from standard input concode_field_sep String charsetName concode_elem_sep Locale usLocale concode_elem_sep Scanner scanner concode_field_sep boolean isEmpty concode_elem_sep String[] readStrings concode_elem_sep double[] readDoubles concode_elem_sep void main concode_elem_sep String readLine concode_... |
void function ( ) { templateFacet . addDataFacetChangeListener ( this ) ; } | initializes the connections for addlevelfacet to other facets . this method is automatically called by the spring framework during initialization of the addlevelfacet . concode_field_sep PlayerCharacterTrackingFacet trackingFacet concode_elem_sep TemplateFacet templateFacet concode_field_sep void add concode_elem_sep v... |
RectangleConstraint function ( ) { if ( this . heightConstraintType == LengthConstraintType . NONE ) { return this ; } else { return new RectangleConstraint ( this . width , this . widthRange , this . widthConstraintType , 0.0 , this . heightRange , LengthConstraintType . NONE ) ; } } | returns a constraint that matches this one on the width attributes , but has no height constraint . concode_field_sep LengthConstraintType widthConstraintType concode_elem_sep Range widthRange concode_elem_sep double width concode_elem_sep RectangleConstraint NONE concode_elem_sep Range heightRange concode_elem_sep dou... |
TransactionIdentifier function ( ) { return transaction_id ; } | gets the transaction-id concode_field_sep int STATE_WAITING concode_elem_sep TransactionIdentifier transaction_id concode_elem_sep Message request concode_elem_sep int STATE_CONFIRMED concode_elem_sep int STATE_TERMINATED concode_elem_sep int transaction_sqn concode_elem_sep Log log concode_elem_sep int STATE_IDLE conc... |
void function ( ) { WikiSearch loc0 = search1 . minus ( search2 ) ; assertThat ( loc0 . getRelevance ( "srini_string" ) , is ( 1 ) ) ; assertThat ( loc0 . getRelevance ( "srini_string" ) , is ( 0 ) ) ; assertThat ( loc0 . getRelevance ( "srini_string" ) , is ( 0 ) ) ; assertThat ( loc0 . getRelevance ( "srini_string" )... | test method for com.flatironschool.javacs.wikisearch #minus com.flatironschool.javacs.wikisearch . concode_field_sep WikiSearch search2 concode_elem_sep WikiSearch search1 concode_field_sep void testOr concode_elem_sep void testAnd concode_elem_sep void testSort concode_elem_sep void setUp |
XPathContext function ( ) { return new EarlyEvaluationContext ( getConfiguration ( ) , element . getPrincipalStylesheet ( ) . getCollationMap ( ) ) ; } | construct a dynamic context for early evaluation of constant subexpressions concode_field_sep NamePool namePool concode_elem_sep StyleElement element concode_field_sep XSLStylesheet getXSLStylesheet concode_elem_sep String getSystemId concode_elem_sep NamespaceResolver getNamespaceResolver concode_elem_sep String getDe... |
void function ( boolean arg0 ) { mAltitudeRequired = arg0 ; } | indicates whether the provider must provide altitude information . not all fixes are guaranteed to contain such information . concode_field_sep int ACCURACY_COARSE concode_elem_sep int mPowerRequirement concode_elem_sep int POWER_HIGH concode_elem_sep Parcelable.Creator<Criteria> CREATOR concode_elem_sep int POWER_LOW ... |
void function ( String arg0 , String arg1 ) { e ( arg0 , arg1 , null ) ; } | prints a message at error priority . concode_field_sep int ERROR concode_elem_sep int VERBOSE concode_elem_sep int WARN concode_elem_sep int NONE concode_elem_sep int ASSERT concode_elem_sep int DEBUG concode_elem_sep LogNode mLogNode concode_elem_sep int INFO concode_field_sep void println concode_elem_sep void printl... |
com . omniture . www . Log_comparisons function ( ) { return compare ; } | gets the compare value for this log_filter . concode_field_sep com.omniture.www.Log_comparisons compare concode_elem_sep com.omniture.www.Log_search_fields field concode_elem_sep java.lang.String string concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep org.apache.axis.description.TypeDesc typeDesc concode... |
SequenceNumberRange function ( String arg0 ) { setEndingSequenceNumber ( arg0 ) ; return this ; } | the ending sequence number for the range . shards that are in the open state have an ending sequence number of null . concode_field_sep String startingSequenceNumber concode_elem_sep String endingSequenceNumber concode_field_sep String getStartingSequenceNumber concode_elem_sep int hashCode concode_elem_sep boolean equ... |
String function ( ) { return getKey ( ) + "srini_string" + getValue ( ) ; } | returns a string representation of the form key = value . concode_field_sep long serialVersionUID concode_elem_sep RemovalCause cause concode_elem_sep V value concode_elem_sep K key concode_field_sep K getKey concode_elem_sep V getValue concode_elem_sep boolean wasEvicted concode_elem_sep int hashCode concode_elem_sep ... |
void function ( InputStream arg0 ) { value = TaggedComponentHelper . read ( arg0 ) ; } | fill in the #value by data from the cdr stream . concode_field_sep TaggedComponent value concode_field_sep org.omg.CORBA.TypeCode _type concode_elem_sep void _write |
void function ( DynamicNodeUserObject arg0 ) { this . selectedNodeObject = arg0 ; } | sets the tree node . concode_field_sep DynamicNodeUserObject selectedNodeObject concode_elem_sep String ROOT_NODE_TEXT concode_elem_sep DefaultTreeModel model concode_elem_sep int labelCount concode_field_sep DefaultTreeModel getModel concode_elem_sep boolean isDeleteDisabled concode_elem_sep DynamicNodeUserObject getS... |
void function ( String arg0 ) { mName = arg0 ; } | set the tag name . concode_field_sep String mName concode_field_sep String getName concode_elem_sep boolean accept |
void function ( String arg0 ) { this . codePageId = arg0 ; } | setter for property codepageid . concode_field_sep boolean winNT31 concode_elem_sep boolean win95 concode_elem_sep String name concode_elem_sep boolean winNT351 concode_elem_sep boolean OEMCP concode_elem_sep boolean ACP concode_elem_sep String codePageId concode_elem_sep String isOEMCP concode_field_sep void setName c... |
void function ( boolean arg0 ) { active = arg0 ; } | set voip-provider active state concode_field_sep int festnetzTakt1 concode_elem_sep double nochFestnetzFreiminuten concode_elem_sep int festnetzTakt2 concode_elem_sep int warnFreiminuten concode_elem_sep double totalCosts concode_elem_sep boolean active concode_elem_sep double mobileKosten concode_elem_sep double festn... |
void function ( ) { ua . dispose ( ) ; awaitStackDispose ( sipStack ) ; } | release the sipstack and a user agent for the test . concode_field_sep int proxyPort concode_elem_sep SipStack sipStack concode_elem_sep int myPort concode_elem_sep String testProtocol concode_elem_sep Properties properties concode_elem_sep String myUrl concode_elem_sep SipPhone ua concode_elem_sep Properties defaultPr... |
void function ( ) { checkForUpdates ( true ) ; } | this method is initialized by a user action . it will check for updates and reports its findings in a user dialog . concode_field_sep UpdateDelegate delegate concode_elem_sep Icon hostIcon concode_elem_sep UpdateCheckDialog updateCheckDialog concode_elem_sep Preferences preferences concode_elem_sep boolean automaticChe... |
void function ( java . lang . String arg0 ) { this . country = arg0 ; } | sets the country value for this bpartner . concode_field_sep java.lang.String country concode_elem_sep long serialVersionUID concode_elem_sep java.lang.String address2 concode_elem_sep java.lang.String city concode_elem_sep java.lang.String address1 concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep java.l... |
void function ( int arg0 ) { this . iUpkSize = arg0 ; } | sets the local cached copy of the upk file size the object entry describes warning -- this does not update the file itself concode_field_sep int iLowFlags concode_elem_sep int iObjectEntryPos concode_elem_sep String sName concode_elem_sep int iUpkPos concode_elem_sep int iType concode_elem_sep int iNamePtr concode_elem... |
String function ( ) { return lang ; } | gets the value of the lang property . concode_field_sep Map<QName,String> otherAttributes concode_elem_sep String title concode_elem_sep String lang concode_elem_sep List<Object> content concode_field_sep String getTitle concode_elem_sep List<Object> getContent concode_elem_sep void setTitle concode_elem_sep void setLa... |
String function ( ) { return recoveryInfoCacheName . get ( ) ; } | sets the name of the cache where recovery related information is held . if not specified defaults to a cache named recoveryconfiguration #default_recovery_info_cache concode_field_sep AttributeDefinition<Boolean> ENABLED concode_elem_sep String DEFAULT_RECOVERY_INFO_CACHE concode_elem_sep AttributeDefinition<String> RE... |
JsonStringLiteral function ( @ NotNull String arg0 ) { return createValue ( '"' + StringUtil . escapeStringCharacters ( arg0 ) + '"' ) ; } | create json string literal from supplied unescaped content . concode_field_sep Project myProject concode_field_sep T createValue concode_elem_sep PsiFile createDummyFile concode_elem_sep JsonProperty createProperty concode_elem_sep JsonObject createObject concode_elem_sep PsiElement createComma |
String function ( ) { return this . principal . getDomain ( ) ; } | retrieves the name to authenticate with . concode_field_sep NTUserPrincipal principal concode_elem_sep String password concode_elem_sep long serialVersionUID concode_elem_sep String workstation concode_field_sep String getPassword concode_elem_sep Principal getUserPrincipal concode_elem_sep int hashCode concode_elem_se... |
int function ( ) { return LocaleData . localeNames . length ; } | return the number of locales we know of . concode_field_sep PlaceHolder placeHolder concode_field_sep String getLocaleName concode_elem_sep Locale[] getCollatorLocales concode_elem_sep Locale getFallbackLocale |
void function ( ActionEvent arg0 ) { logger . finer ( "srini_string" ) ; uploadModel . setSelectedMediaInput ( MediaMessage . MEDIA_TYPE_AUDIO ) ; uploadModel . setUploadFeedbackMessage ( "srini_string" ) ; } | actionlistener called from the ` audio ' button in home.xhtml concode_field_sep String RENDER_GROUP concode_elem_sep Logger logger concode_elem_sep UploadModel uploadModel concode_elem_sep PortableRenderer portableRenderer concode_elem_sep String BEAN_NAME concode_elem_sep SimpleDateFormat dateFormat concode_elem_sep N... |
int function ( ) { return month ; } | return the month . concode_field_sep int month concode_elem_sep int year concode_elem_sep int[] DAYS concode_elem_sep int day concode_field_sep Date next concode_elem_sep int year concode_elem_sep int hashCode concode_elem_sep boolean isValid concode_elem_sep boolean equals concode_elem_sep boolean isLeapYear concode_e... |
void function ( String arg0 ) { System . out . println ( arg0 ) ; } | helper print function concode_field_sep DataOutputStream call concode_field_sep List<PhoneCall> removeDuplicates concode_elem_sep void dump concode_elem_sep void dumpToConsole |
void function ( Errors arg0 ) { injector . lookups = injector ; new LookupProcessor ( arg0 ) . process ( injector , lookups ) ; } | initialize the specified lookups , either immediately or when the injector is created . concode_field_sep List<Element> lookups concode_elem_sep InjectorImpl injector concode_field_sep Provider<T> getProvider concode_elem_sep MembersInjector<T> getMembersInjector |
void function ( ) { mState = STATE_IDLE ; } | immediately finish the current animation . after this call #isfinished will return true . concode_field_sep double ANGLE concode_elem_sep int PULL_TIME concode_elem_sep float mGlowScaleY concode_elem_sep int VELOCITY_GLOW_FACTOR concode_elem_sep float mGlowScaleYFinish concode_elem_sep int STATE_PULL_DECAY concode_elem... |
void function ( Date arg0 ) { m_startDate = arg0 ; } | setstartdate concode_field_sep Date m_startDate concode_elem_sep String m_description concode_elem_sep String m_name concode_elem_sep Date m_jobCompletedDate concode_elem_sep Date m_purgeDate concode_elem_sep Set<StatisticsReportData> m_data concode_elem_sep long serialVersionUID concode_elem_sep Date m_endDate concode... |
String function ( MouseEvent arg0 ) { return null ; } | hook for subclassers to return tooltip texts for certain points on the handle . concode_field_sep Rectangle[] handles concode_elem_sep JComponent preview concode_elem_sep mxGraphComponent graphComponent concode_elem_sep Rectangle bounds concode_elem_sep boolean handlesVisible concode_elem_sep int index concode_elem_sep... |
Date function ( ) { return _subscription . getModifiedDate ( ) ; } | returns the modified date of this subscription . concode_field_sep Subscription _subscription concode_field_sep long getClassNameId concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setGroupId concode_... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.