idx
int64
0
25k
question
stringlengths
72
5.69k
target
stringlengths
21
481
24,900
writes a pix to file using the file extension as the output format ; supported formats are . jpg or . jpeg for jpeg and . bmp for bitmap . uses default quality and progressive encoding settings . concode_field_sep int DEFAULT_QUALITY concode_elem_sep boolean DEFAULT_PROGRESSIVE concode_field_sep boolean nativeWriteFile...
boolean function ( Pix arg0 , File arg1 ) { return writeImpliedFormat ( arg0 , arg1 , DEFAULT_QUALITY , DEFAULT_PROGRESSIVE ) ; }
24,901
gets the value of the content property . this accessor method returns a reference to the live list , not a snapshot . therefore any modification you make to the returned list will be present inside the jaxb object . this is why there is not a set method for the content property . for example , to add a new item , do as...
List < Object > function ( ) { if ( content == null ) { content = new ArrayList < Object > ( ) ; } return this . content ; }
24,902
creates ` next ' button . concode_field_sep PlaceHolder placeHolder concode_field_sep UIFButton createCancelButton concode_elem_sep UIFButton createFinishButton concode_elem_sep UIFButton createButton concode_elem_sep UIFButton createButton concode_elem_sep UIFButton createPreviousButton
UIFButton function ( ActionListener arg0 ) { return createButton ( Strings . message ( "srini_string" ) , arg0 ) ; }
24,903
removes all the entries added into resourcemethods . < p > returns a reference to this object so that method calls can be chained together . concode_field_sep String path concode_elem_sep String pathPart concode_elem_sep java.util.Map<String,Method> resourceMethods concode_elem_sep String id concode_elem_sep String par...
GetResourceResult function ( ) { this . resourceMethods = null ; return this ; }
24,904
sets the value of the magfilter property . concode_field_sep FxSamplerFilterCommon magfilter concode_elem_sep FxSamplerWrapCommon wrapT concode_elem_sep List<Extra> extras concode_elem_sep String source concode_elem_sep FxSamplerWrapCommon wrapS concode_elem_sep FxSamplerFilterCommon minfilter concode_field_sep void se...
void function ( FxSamplerFilterCommon arg0 ) { this . magfilter = arg0 ; }
24,905
sets the value of the faultbean property . concode_field_sep String messageName concode_elem_sep String targetNamespace concode_elem_sep String name concode_elem_sep String faultBean concode_field_sep void setName concode_elem_sep String messageName concode_elem_sep String getName concode_elem_sep String getTargetNames...
void function ( String arg0 ) { this . faultBean = arg0 ; }
24,906
a static factory method to create a dstreamjavafunctions based on an existing javadstream instance . concode_field_sep PlaceHolder placeHolder concode_field_sep placeholderType placeHolder
DStreamJavaFunctions < T > function ( JavaDStream < T > arg0 ) { return new DStreamJavaFunctions < > ( arg0 . dstream ( ) ) ; }
24,907
obtain a story instance from a given story class . story instances are used for recording and reporting test results . concode_field_sep String storyName concode_elem_sep String path concode_elem_sep ApplicationFeature feature concode_elem_sep String narrative concode_elem_sep String id concode_elem_sep String type con...
Story function ( final Class < ? > arg0 ) { return new Story ( arg0 ) ; }
24,908
generates a url . concode_field_sep ArrayList urlSeries concode_field_sep int getListCount concode_elem_sep int getURLCount concode_elem_sep String getURL concode_elem_sep boolean equals concode_elem_sep Object clone concode_elem_sep void addURLSeries
String function ( CategoryDataset arg0 , int arg1 , int arg2 ) { return getURL ( arg1 , arg2 ) ; }
24,909
gets the value of the doc property . this accessor method returns a reference to the live list , not a snapshot . therefore any modification you make to the returned list will be present inside the jaxb object . this is why there is not a set method for the doc property . for example , to add a new item , do as follows...
List < Doc > function ( ) { if ( doc == null ) { doc = new ArrayList < Doc > ( ) ; } return this . doc ; }
24,910
return the value of the branchexpandedicon property . concode_field_sep String tooltip concode_elem_sep String branchExpandedIcon concode_elem_sep String icon concode_elem_sep DefaultMutableTreeNode wrapper concode_elem_sep long serialVersionUID concode_elem_sep boolean leaf concode_elem_sep String leafIcon concode_ele...
String function ( ) { return branchExpandedIcon ; }
24,911
set the includealldatabases value . concode_field_sep Integer databaseDtuMin concode_elem_sep Integer databaseDtuMax concode_elem_sep Integer dtu concode_elem_sep String name concode_elem_sep List<String> databaseCollection concode_elem_sep TargetElasticPoolEditions edition concode_elem_sep Integer storageMb concode_el...
UpgradeRecommendedElasticPoolProperties function ( Boolean arg0 ) { this . includeAllDatabases = arg0 ; return this ; }
24,912
sets the value of ' _ maskelementlist ' by copying the given vector . all elements will be checked for type safety . concode_field_sep java.util.List<org.opennms.netmgt.xml.event.Maskelement> _maskelementList concode_elem_sep long serialVersionUID concode_field_sep java.util.Enumeration<org.opennms.netmgt.xml.event.Mas...
void function ( final java . util . List < org . opennms . netmgt . xml . event . Maskelement > arg0 ) { this . _maskelementList . clear ( ) ; this . _maskelementList . addAll ( arg0 ) ; }
24,913
sets the context dao concode_field_sep ContextDAO contextDao concode_elem_sep UserDAO dao concode_elem_sep Log log concode_field_sep List<User> getAllUsers concode_elem_sep void resetPassword concode_elem_sep List<Role> getAllRoles concode_elem_sep User authenticate concode_elem_sep User getUserByUsername concode_elem_...
void function ( ContextDAO arg0 ) { this . contextDao = arg0 ; }
24,914
get output file name for which dependencies are included in this dependencyset . concode_field_sep Collection<Path> dependencies concode_elem_sep String outputFileName concode_elem_sep Path root concode_field_sep void setOutputFileName concode_elem_sep DependencySet process concode_elem_sep DependencySet read concode_e...
String function ( ) { return outputFileName ; }
24,915
set the namespace of the configurable for which this configdata is being used . concode_field_sep String CVS_REVISION concode_elem_sep String m_name concode_elem_sep String m_ns concode_elem_sep List m_data concode_elem_sep String m_textvalue concode_elem_sep List m_textData concode_elem_sep String m_textname concode_e...
void function ( final String arg0 ) { m_ns = arg0 ; }
24,916
loads a parses a file into a jsonelement . concode_field_sep PlaceHolder placeHolder concode_field_sep void createTabs concode_elem_sep void main concode_elem_sep File selectDataFileToLoad
JsonElement function ( File arg0 ) { try ( FileReader loc0 = new FileReader ( arg0 ) ) { return new JsonParser ( ) . parse ( loc0 ) ; } catch ( IOException loc1 ) { loc1 . printStackTrace ( ) ; throw new RuntimeException ( loc1 ) ; } }
24,917
this returns the actual byte array used . changes to this array effect this bitfield . note that some bits at the end of the byte array are supposed to be always unset if they represent bits bigger then the size of the bitfield . concode_field_sep int size concode_elem_sep byte[] bitfield concode_field_sep void set con...
byte [ ] function ( ) { return bitfield ; }
24,918
delete all concode_field_sep String TAG concode_elem_sep String TABLENAME concode_elem_sep SQLiteDatabase db concode_field_sep void closeDB concode_elem_sep boolean isEnough concode_elem_sep int getTotalOfType concode_elem_sep void upDateBean concode_elem_sep void insert concode_elem_sep int getPoints concode_elem_sep ...
void function ( ) { String loc0 = "srini_string" + TABLENAME ; this . db . execSQL ( loc0 ) ; Log . i ( TAG , "srini_string" ) ; }
24,919
gets the value of the format property . concode_field_sep String format concode_elem_sep List<Algo> algo concode_field_sep List<Algo> getAlgo concode_elem_sep void setFormat
String function ( ) { return format ; }
24,920
simulate single-step by keeping previous input and output concode_field_sep String SEPARATOR concode_elem_sep byte[] previousOutput concode_elem_sep String PADDING concode_elem_sep int execs concode_elem_sep AFL afl concode_elem_sep byte[] SEPARATOR_BYTE concode_elem_sep String testinput concode_elem_sep Logger log con...
String function ( @ Nullable String arg0 ) { if ( arg0 == null ) arg0 = "srini_string" ; byte [ ] loc0 = arg0 . getBytes ( ) ; byte [ ] loc1 = run ( loc0 ) ; byte [ ] loc2 = calculateNewOutput ( previousOutput , loc1 ) ; previousInput = loc0 ; previousOutput = loc1 ; return new String ( loc2 ) ; }
24,921
log info level message with exception detail . concode_field_sep String RCSID concode_field_sep void loaded concode_elem_sep void warn concode_elem_sep void warn concode_elem_sep void warn concode_elem_sep void warn concode_elem_sep void warn concode_elem_sep void warn concode_elem_sep void warn concode_elem_sep void t...
void function ( Object arg0 , Throwable arg1 ) { log ( LogLevel . INFO , createLoggable ( arg1 , arg0 ) ) ; }
24,922
append a double value . concode_field_sep char mode concode_elem_sep boolean comma concode_elem_sep int top concode_elem_sep int maxdepth concode_elem_sep Writer writer concode_elem_sep JSONObject stack[] concode_field_sep void pop concode_elem_sep JSONWriter array concode_elem_sep JSONWriter end concode_elem_sep JSONW...
JSONWriter function ( double arg0 ) { return this . value ( new Double ( arg0 ) ) ; }
24,923
check whether a given user has a given permission . concode_field_sep String password concode_elem_sep ConfigurationContext ctx concode_elem_sep String authCookie concode_elem_sep String serverUrl concode_elem_sep AuthenticationAdminStub authstub concode_elem_sep WSAuthorizationManager remoteAuthorizationManager concod...
boolean function ( String arg0 , String arg1 , String arg2 ) { return remoteAuthorizationManager . isUserAuthorized ( arg0 , arg1 , arg2 ) ; }
24,924
returns the hot spot 's y coordinate . see #setyunits string for a description of the hot spot . concode_field_sep String xUnits concode_elem_sep Double x concode_elem_sep Double y concode_elem_sep String yUnits concode_field_sep void setYUnits concode_elem_sep void setY concode_elem_sep Double getX concode_elem_sep vo...
Double function ( ) { return y ; }
24,925
returns always false . concode_field_sep IStatus OK_STATUS concode_elem_sep String fStatusMessage concode_elem_sep int fSeverity concode_field_sep boolean isWarning concode_elem_sep int getSeverity concode_elem_sep Throwable getException concode_elem_sep String getMessage concode_elem_sep boolean matches concode_elem_s...
boolean function ( ) { return false ; }
24,926
none concode_field_sep PlaceHolder placeHolder concode_field_sep T[] asArray concode_elem_sep scala.collection.Seq<T> emptySeq concode_elem_sep RuntimeException noMatch concode_elem_sep scala.reflect.ClassTag<C> classTag concode_elem_sep java.util.Map<K,V> asJava concode_elem_sep java.util.List<T> asJava concode_elem_s...
scala . Option < T > function ( ) { return ( scala . Option < T > ) scala . None$ . MODULE$ ; }
24,927
adds the specified item and match result to this map , increasing its size by one . concode_field_sep String ruleIdentifier concode_elem_sep Map<String,String> segments concode_field_sep void setSegments concode_elem_sep String toString concode_elem_sep void setRuleIdentifier concode_elem_sep String getRuleIdentifier c...
void function ( String arg0 , String arg1 ) { segments . put ( arg0 , arg1 ) ; }
24,928
information about the application . concode_field_sep Application application concode_field_sep Application getApplication concode_elem_sep int hashCode concode_elem_sep DescribeApplicationResult withApplication concode_elem_sep boolean equals concode_elem_sep DescribeApplicationResult clone concode_elem_sep String toS...
void function ( Application arg0 ) { this . application = arg0 ; }
24,929
sets the description text for this option . concode_field_sep boolean swigCMemOwn concode_elem_sep long swigCPtr concode_field_sep String getKey concode_elem_sep int getIntValue concode_elem_sep double getDoubleValue concode_elem_sep ConversionOption cloneObject concode_elem_sep void setType concode_elem_sep void delet...
void function ( String arg0 ) { libsbmlJNI . ConversionOption_setDescription ( swigCPtr , this , arg0 ) ; }
24,930
used to communicate a progress update between a plugin tool and the main whitebox user interface . concode_field_sep String[] args concode_elem_sep double LnOf2 concode_elem_sep boolean cancelOp concode_elem_sep WhiteboxPluginHost myHost concode_elem_sep String previousProgressLabel concode_elem_sep int previousProgres...
void function ( String arg0 , int arg1 ) { if ( myHost != null && ( ( arg1 != previousProgress ) || ( ! arg0 . equals ( previousProgressLabel ) ) ) ) { myHost . updateProgress ( arg0 , arg1 ) ; } previousProgress = arg1 ; previousProgressLabel = arg0 ; }
24,931
a main , to allow using this class from the command line . concode_field_sep int T[] concode_field_sep String asHex concode_elem_sep int F concode_elem_sep int rot concode_elem_sep int G concode_elem_sep int H concode_elem_sep byte[] digest concode_elem_sep int round1 concode_elem_sep int I concode_elem_sep int round4 ...
void function ( String [ ] arg0 ) { try { if ( arg0 == null || arg0 . length == 0 ) { System . out . println ( "srini_string" ) ; } else { System . out . println ( "srini_string" + hash ( arg0 [ 0 ] ) ) ; } } catch ( Exception loc0 ) { loc0 . printStackTrace ( ) ; } }
24,932
two objects that are equal are required to return the same hashcode . concode_field_sep PlaceHolder placeHolder concode_field_sep void testCloning concode_elem_sep void testFindRangeBounds concode_elem_sep void testPublicCloneable concode_elem_sep void testSerialization concode_elem_sep void testEquals
void function ( ) { WaterfallBarRenderer loc0 = new WaterfallBarRenderer ( ) ; WaterfallBarRenderer loc1 = new WaterfallBarRenderer ( ) ; assertTrue ( loc0 . equals ( loc1 ) ) ; int loc2 = loc0 . hashCode ( ) ; int loc3 = loc1 . hashCode ( ) ; assertEquals ( loc2 , loc3 ) ; }
24,933
gets the password . concode_field_sep String password concode_elem_sep String userName concode_field_sep void setPassword concode_elem_sep void setUserName concode_elem_sep String getUserName
String function ( ) { return password ; }
24,934
sets the value of the date property . concode_field_sep String date concode_elem_sep String place concode_elem_sep XMLGregorianCalendar time concode_field_sep XMLGregorianCalendar getTime concode_elem_sep String getDate concode_elem_sep String getPlace concode_elem_sep void setPlace concode_elem_sep void setTime
void function ( String arg0 ) { this . date = arg0 ; }
24,935
logs a message at warn level . usage example : logger.warn `` something bad happened when connecting to % s : % d '' , host , port ; if the format string is invalid or the arguments are insufficient , an error will be logged and execution will continue . concode_field_sep java.util.logging.Logger logger concode_field_s...
void function ( String arg0 , Object ... arg1 ) { warn ( null , arg0 , arg1 ) ; }
24,936
sets the value of the basecustomfieldvaluetype property . concode_field_sep Long customFieldId concode_elem_sep String baseCustomFieldValueType concode_field_sep Long getCustomFieldId concode_elem_sep void setCustomFieldId concode_elem_sep String getBaseCustomFieldValueType
void function ( String arg0 ) { this . baseCustomFieldValueType = arg0 ; }
24,937
returns always an empty enumeration . concode_field_sep Enumeration EMPTY_ENUMERATION concode_field_sep void setStream concode_elem_sep void showStatus concode_elem_sep InputStream getStream concode_elem_sep Applet getApplet concode_elem_sep void showDocument concode_elem_sep void showDocument concode_elem_sep AudioCli...
Enumeration function ( ) { return EMPTY_ENUMERATION ; }
24,938
retrieve the content type of the request . concode_field_sep HttpServletRequest request concode_field_sep String getCharacterEncoding concode_elem_sep String toString concode_elem_sep int getContentLength concode_elem_sep InputStream getInputStream
String function ( ) { return request . getContentType ( ) ; }
24,939
get the count of the current set of values concode_field_sep Statistics statistics concode_elem_sep WatchDataSource source concode_elem_sep Calculable[] calcs concode_field_sep void init concode_elem_sep Vector<Double> getValues concode_elem_sep double max concode_elem_sep double range concode_elem_sep double sum conco...
int function ( ) { return ( statistics . count ( ) ) ; }
24,940
the resource adapter concode_field_sep UnifiedSecurityConnectionFactory noTxCf concode_elem_sep UnifiedSecurityConnectionFactory noTxNoPrefillCf concode_elem_sep DeploymentRepository dr concode_field_sep ResourceAdaptersDescriptor createNoTxActivation concode_elem_sep void testWithinManagedConnectionPool concode_elem_s...
ResourceAdapterArchive function ( ) { return ResourceAdapterFactory . createUnifiedSecurityRar ( ) ; }
24,941
returns the polygon for the specified bounding box , or null . concode_field_sep float minY concode_elem_sep float minX concode_elem_sep float maxY concode_elem_sep float maxX concode_elem_sep Pool<FloatArray> polygonPool concode_elem_sep Array<BoundingBoxAttachment> boundingBoxes concode_elem_sep Array<FloatArray> pol...
FloatArray function ( BoundingBoxAttachment arg0 ) { int loc0 = boundingBoxes . indexOf ( arg0 , true ) ; return loc0 == - 1 ? null : polygons . get ( loc0 ) ; }
24,942
print pretty-formatted xml to logger , if its level is debug or below . concode_field_sep Pattern ISO8601_DATE_PATTERN concode_field_sep String formatTask concode_elem_sep String formatDate concode_elem_sep boolean tasksEqual concode_elem_sep boolean tasksEqual concode_elem_sep boolean tasksEqual concode_elem_sep void ...
void function ( @ NotNull Logger arg0 , @ NotNull Element arg1 ) { if ( arg0 . isDebugEnabled ( ) ) { arg0 . debug ( "srini_string" + JDOMUtil . createOutputter ( "srini_string" ) . outputString ( arg1 ) ) ; } }
24,943
provides a success message when a string resource for the given key is defined . concode_field_sep PlaceHolder placeHolder concode_field_sep PmMessage makeMsgOneMany concode_elem_sep PmMessage makeMsgOneMany concode_elem_sep List<PmMessage> getPmErrors concode_elem_sep PmMessage makeExceptionMsg concode_elem_sep PmMess...
void function ( PmObject arg0 , String arg1 , Object ... arg2 ) { String loc0 = PmLocalizeApi . findLocalization ( arg0 , arg1 ) ; if ( loc0 != null ) { PmMessageApi . addMessage ( arg0 , Severity . INFO , arg1 , arg2 ) ; } }
24,944
sets the wsrp consumer portlet id of this w s r p consumer portlet . concode_field_sep WSRPConsumerPortlet _wsrpConsumerPortlet concode_field_sep void setName concode_elem_sep boolean isFinderCacheEnabled concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep ...
void function ( long arg0 ) { _wsrpConsumerPortlet . setWsrpConsumerPortletId ( arg0 ) ; }
24,945
report whether or not the fullscreen option was checked . concode_field_sep DisplayMode originalDisplayMode concode_elem_sep boolean aaRequired concode_elem_sep boolean oculusView concode_elem_sep boolean valid concode_elem_sep boolean cancelled concode_elem_sep boolean runFullscreen concode_elem_sep int anisotropicFil...
boolean function ( ) { return runFullscreen ; }
24,946
assign a pattern to both detect honored values , and optionally to map from a single principal name or public credential string to a single hypersql role or schema string . do not use this method if you are using this jaasauthbean only to permit or reject access with roles and schema being determined by pre-existing lo...
void function ( Pattern arg0 ) { this . roleSchemaValuePattern = arg0 ; }
24,947
gets the value of the adsl property . concode_field_sep ExtensionOnlyType mobileNetworkNoEncryption concode_elem_sep ExtensionOnlyType ipSec concode_elem_sep ExtensionOnlyType adsl concode_elem_sep List<ExtensionType> extension concode_elem_sep ExtensionOnlyType wtls concode_elem_sep ExtensionOnlyType isdn concode_elem...
ExtensionOnlyType function ( ) { return adsl ; }
24,948
adds an integer property to a map only if the value is non-null , otherwise the key/value pair will not be added at all . concode_field_sep StringBuilder params concode_field_sep JSONBuilder item concode_elem_sep JSONBuilder item concode_elem_sep JSONBuilder item concode_elem_sep JSONBuilder item concode_elem_sep JSONB...
JSONBuilder function ( String arg0 , Integer arg1 ) { if ( arg1 == null ) { return this ; } return entry ( arg0 , arg1 . intValue ( ) ) ; }
24,949
gets the deviceid value for this elementodiagnostico . concode_field_sep org.apache.axis.description.TypeDesc typeDesc concode_elem_sep java.lang.String tipo concode_elem_sep java.lang.String macAddress concode_elem_sep java.lang.String serialNumber concode_elem_sep java.lang.Object __equalsCalc concode_elem_sep boolea...
int function ( ) { return deviceId ; }
24,950
streams the values of all selected options in order . in case there is no selection an empty stream is returned . concode_field_sep PlaceHolder placeHolder concode_field_sep MultiSelect deselectAll concode_elem_sep List<String> getSelectionTexts concode_elem_sep MultiSelect selectByValues concode_elem_sep MultiSelect s...
Stream < String > function ( ) { return new EnhancedSelect ( webElement ( ) ) . getAllSelectedOptions ( ) . stream ( ) . map ( option -> option . getAttribute ( "srini_string" ) ) ; }
24,951
set the id sse field concode_field_sep Object data concode_elem_sep Long reconnectTime concode_elem_sep String name concode_elem_sep MediaType mediaType concode_elem_sep String comment concode_elem_sep String id concode_field_sep void setName concode_elem_sep String getName concode_elem_sep void setData concode_elem_se...
void function ( String arg0 ) { this . id = arg0 ; }
24,952
creates a new chat using the specified thread id , then returns it . concode_field_sep Set<ChatManagerListener> chatManagerListeners concode_elem_sep Map<String,Chat> jidChats concode_elem_sep Map<PacketInterceptor,PacketFilter> interceptors concode_elem_sep Map<String,Chat> baseJidChats concode_elem_sep Connection con...
Chat function ( String arg0 , String arg1 , MessageListener arg2 ) { if ( arg1 == null ) { arg1 = nextID ( ) ; } Chat loc0 = threadChats . get ( arg1 ) ; if ( loc0 != null ) { throw new IllegalArgumentException ( "srini_string" ) ; } loc0 = createChat ( arg0 , arg1 , true ) ; loc0 . addMessageListener ( arg2 ) ; return...
24,953
sets the subject unique id deprecated in x. 509v3 concode_field_sep Extensions extensions concode_elem_sep ASN1Integer serialNumber concode_elem_sep X500Name subject concode_elem_sep AlgorithmIdentifier signingAlg concode_elem_sep DERBitString issuerUID concode_elem_sep DERBitString subjectUID concode_elem_sep Optional...
CertTemplateBuilder function ( DERBitString arg0 ) { subjectUID = arg0 ; return this ; }
24,954
log . concode_field_sep String LOG concode_elem_sep String ERROR concode_elem_sep String SECURITY concode_elem_sep String UPDATE concode_field_sep void impl concode_elem_sep void security concode_elem_sep void debug concode_elem_sep void update concode_elem_sep void error
void function ( String arg0 ) { impl ( arg0 , LOG , true ) ; }
24,955
writes the csv header fieldnames . should be called after construction one time . concode_field_sep int nbrCols concode_elem_sep int nbrRows concode_elem_sep String newline concode_elem_sep OutputStreamWriter writer concode_field_sep String toCsvValue concode_elem_sep void doWriteData concode_elem_sep void writeData co...
void function ( String [ ] arg0 ) { this . nbrCols = arg0 . length ; doWriteData ( arg0 ) ; }
24,956
returns the number of folders . concode_field_sep FolderLocalService _folderLocalService concode_field_sep java.lang.String getOSGiServiceIdentifier concode_elem_sep void setWrappedService concode_elem_sep com.liferay.mail.model.Folder deleteFolder concode_elem_sep com.liferay.mail.model.Folder deleteFolder concode_ele...
int function ( ) { return _folderLocalService . getFoldersCount ( ) ; }
24,957
returns the index of the highlighted value on the x-axis concode_field_sep int mStackIndex concode_elem_sep int mXIndex concode_elem_sep int mDataSetIndex concode_field_sep int getDataSetIndex concode_elem_sep boolean equalTo concode_elem_sep int getStackIndex concode_elem_sep String toString
int function ( ) { return mXIndex ; }
24,958
returns the input string , surrounded by quotes . concode_field_sep Logger logger concode_elem_sep Locale LOCALE concode_elem_sep String format concode_field_sep String simpleFormat concode_elem_sep void formatValue concode_elem_sep String format concode_elem_sep void simpleValue
String function ( String arg0 ) { return '"' + arg0 + '"' ; }
24,959
returns the object of type obj with the value of str . concode_field_sep PlaceHolder placeHolder concode_field_sep File[] createFiles concode_elem_sep Number createNumber concode_elem_sep URL createURL concode_elem_sep Class createClass concode_elem_sep Object createObject concode_elem_sep File createFile concode_elem_...
Object function ( String arg0 , Object arg1 ) { return createValue ( arg0 , ( Class ) arg1 ) ; }
24,960
called before any tests have been run . this may be called on an arbitrary thread . concode_field_sep PlaceHolder placeHolder concode_field_sep void testSuiteFinished concode_elem_sep void testFinished concode_elem_sep void testAssumptionFailure concode_elem_sep void testStarted concode_elem_sep void testFailure concod...
void function ( Description arg0 ) { }
24,961
returns a list of files affected by this refactoring . concode_field_sep RefactoringHelper helper concode_elem_sep List<T> contextObjects concode_field_sep TransactionalEditingDomain getEditingDomain concode_elem_sep Resource getResource concode_elem_sep boolean internalDoUndo concode_elem_sep String getCommandLabel co...
List < ? > function ( ) { return Collections . EMPTY_LIST ; }
24,962
indicates whether the map contains at least one listener to be notified . concode_field_sep Object source concode_elem_sep Map<StateChange,StateChangeListener[]> statesToListener concode_elem_sep StateChangeListener[] EMPTY concode_field_sep void removeStateChangeListener concode_elem_sep StateChangeListener[] getListe...
boolean function ( StateChange arg0 ) { if ( this . statesToListener == null ) { return false ; } StateChangeListener [ ] loc0 = this . statesToListener . get ( null ) ; return ( loc0 != null ) || ( ( arg0 != null ) && ( null != this . statesToListener . get ( arg0 ) ) ) ; }
24,963
gets arraylist of checkedtimezone objects . this list is populated by selectbooleancheckbox components in ui . concode_field_sep DateFormat currentFormat concode_elem_sep ArrayList checkedTimeZoneList concode_elem_sep String GMT7DAYLIGHTLOCATION concode_elem_sep String GMT9DAYLIGHTLOCATION concode_elem_sep String GMT8D...
ArrayList function ( ) { return checkedTimeZoneList ; }
24,964
returns the number of segments in this jog dial . concode_field_sep int mLastItem concode_elem_sep OnMenuItemSelectionListener mJogListener concode_elem_sep int MIN_API_LEVEL concode_elem_sep int mSegmentCount concode_field_sep void populateMenu concode_elem_sep void onFirstTouch concode_elem_sep boolean onMenuItemSele...
int function ( ) { return mSegmentCount ; }
24,965
sets the url title of this k b folder . concode_field_sep KBFolder _kbFolder concode_field_sep long getClassNameId concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep java.lang.String getName concode_elem_sep...
void function ( java . lang . String arg0 ) { _kbFolder . setUrlTitle ( arg0 ) ; }
24,966
this exports batch document field values to a database table following the format of the plug in mapping file . concode_field_sep Logger LOGGER concode_elem_sep DbExporter dbExporter concode_elem_sep BatchInstanceService batchInstanceService concode_field_sep void preProcess concode_elem_sep void postProcess
void function ( final BatchInstanceID arg0 , final String arg1 ) { try { dbExporter . exportBatchToDb ( arg0 . getID ( ) ) ; } catch ( Exception loc0 ) { String loc1 = loc0 . getMessage ( ) ; LOGGER . error ( loc1 ) ; throw new DCMAException ( loc1 , loc0 ) ; } }
24,967
write the named component into the cdr output stream . concode_field_sep String _id concode_field_sep NameComponent extract concode_elem_sep NameComponent read concode_elem_sep void insert concode_elem_sep String id concode_elem_sep TypeCode type
void function ( OutputStream arg0 , NameComponent arg1 ) { arg0 . write_string ( arg1 . id ) ; arg0 . write_string ( arg1 . kind ) ; }
24,968
returns the user uuid of this kaleo task . concode_field_sep KaleoTask _kaleoTask concode_field_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep void setExpandoBridgeAttributes concode_elem_sep java.lang.String getName concode_elem_sep void setGroupId concode_elem_se...
java . lang . String function ( ) { return _kaleoTask . getUserUuid ( ) ; }
24,969
returns the number of settings that have values assigned . concode_field_sep int FLAG_CLEAR_PREVIOUSLY_PERSISTED_SETTINGS concode_elem_sep int DOWNLOAD_BANDWIDTH concode_elem_sep int HEADER_TABLE_SIZE concode_elem_sep int set concode_elem_sep int DEFAULT_INITIAL_WINDOW_SIZE concode_elem_sep int MAX_HEADER_LIST_SIZE con...
int function ( ) { return Integer . bitCount ( set ) ; }
24,970
parse a double from a byte array . concode_field_sep int B10 concode_elem_sep int B1111 concode_elem_sep char[] hexchars concode_elem_sep int B11111 concode_elem_sep int B11110 concode_elem_sep int B111 concode_elem_sep int B11 concode_elem_sep int B110 concode_elem_sep int B1110 concode_field_sep String toXMLString co...
double function ( byte [ ] arg0 , int arg1 ) { return WritableComparator . readDouble ( arg0 , arg1 ) ; }
24,971
an important method for a good storage of couple inside a set . this method is used by the equals method to compare two couples . concode_field_sep double prob concode_elem_sep int freq concode_elem_sep String first concode_elem_sep String second concode_field_sep int getFreq concode_elem_sep String getFirst concode_el...
int function ( ) { return 3 * first . hashCode ( ) + 5 * second . hashCode ( ) + 7 * freq ; }
24,972
value constraint : one of default , fixed . concode_field_sep XSNamespaceItem fNamespaceItem concode_elem_sep short SCOPE_GLOBAL concode_elem_sep QName fUnresolvedTypeName concode_elem_sep String fTargetNamespace concode_elem_sep XSSimpleType fType concode_elem_sep short SCOPE_LOCAL concode_elem_sep String fName concod...
short function ( ) { return fConstraintType ; }
24,973
return color integer value concode_field_sep PlaceHolder placeHolder concode_field_sep Bitmap scaleBitmapForDevice concode_elem_sep JSONObject location2Json concode_elem_sep JSONObject Bundle2Json concode_elem_sep String getAbsolutePathFromCDVFilePath concode_elem_sep Bitmap resizeBitmap concode_elem_sep LatLngBounds J...
int function ( JSONArray arg0 ) { return Color . argb ( arg0 . getInt ( 3 ) , arg0 . getInt ( 0 ) , arg0 . getInt ( 1 ) , arg0 . getInt ( 2 ) ) ; }
24,974
get the id of the editors provided by this fileeditorprovider . concode_field_sep String EDITOR_TYPE_ID concode_field_sep boolean isDumbAware concode_elem_sep FileEditorState readState concode_elem_sep FileEditor createEditor concode_elem_sep FileEditorPolicy getPolicy concode_elem_sep void disposeEditor concode_elem_s...
String function ( ) { return EDITOR_TYPE_ID ; }
24,975
gets the text of an event by returning the content description if available or by concatenating the text members regardless of their priority using space as a delimiter . concode_field_sep PlaceHolder placeHolder concode_field_sep boolean eventMatchesAnyType concode_elem_sep CharSequence getEventAggregateText concode_e...
CharSequence function ( AccessibilityEvent arg0 ) { if ( arg0 == null ) { return null ; } final CharSequence loc0 = arg0 . getContentDescription ( ) ; if ( ! TextUtils . isEmpty ( loc0 ) ) { return loc0 ; } return getEventAggregateText ( arg0 ) ; }
24,976
sets the description about test case . concode_field_sep String name concode_elem_sep String description concode_elem_sep List<IStep> steps concode_elem_sep Logger logger concode_elem_sep List<IValidation> validations concode_field_sep void setName concode_elem_sep String getName concode_elem_sep void addValidation con...
void function ( String arg0 ) { this . description = arg0 ; }
24,977
this method is called when an one of the methods of the com.hazelcast.core.entrylistener is notoverridden . it can be practical if you want to bundle some/all of the methods to a single method . concode_field_sep PlaceHolder placeHolder concode_field_sep void entryUpdated concode_elem_sep void mapCleared concode_elem_s...
void function ( EntryEvent < K , V > arg0 ) { }
24,978
if a custom cl is in use we want to get the module cl it delegates to concode_field_sep List<Class<? extends PersistenceProvider>> providers concode_elem_sep PersistenceProviderResolverImpl INSTANCE concode_elem_sep Map<ClassLoader,List<Class<? extends PersistenceProvider>>> persistenceProviderPerClassLoader concode_fi...
ClassLoader function ( ClassLoader arg0 ) { ClassLoader loc0 = arg0 ; while ( loc0 != null && ! ( loc0 instanceof ModuleClassLoader ) ) { loc0 = loc0 . getParent ( ) ; } return loc0 ; }
24,979
gets queuing options . when used with a string , can be ` front ' or ` end ' to queue the effect in the global effects queue at the beginning or end , or a queue parameter object that can have position : ` front/end ' , scope : ` scope ' , limit :1 concode_field_sep boolean fired concode_elem_sep boolean submit concode...
String function ( ) { return queue ; }
24,980
sets the value of the clashmag property . concode_field_sep String symop concode_elem_sep BigDecimal clashmag concode_elem_sep BigDecimal dist concode_elem_sep String atom concode_elem_sep BigInteger scid concode_field_sep void setDist concode_elem_sep BigDecimal getDist concode_elem_sep void setScid concode_elem_sep B...
void function ( BigDecimal arg0 ) { this . clashmag = arg0 ; }
24,981
set the id or position of this effect in a sequence concode_field_sep boolean fired concode_elem_sep boolean submit concode_elem_sep boolean queued concode_elem_sep float fps concode_elem_sep boolean sync concode_elem_sep int sequenceId concode_elem_sep float duration concode_elem_sep String sequence concode_elem_sep f...
void function ( int arg0 ) { this . sequenceId = arg0 ; }
24,982
set whether the associated onscalegesturelistener should receive onscale callbacks when the user performs a doubletap followed by a swipe . note that this is enabled by default if the app targets api 19 and newer . concode_field_sep ScaleGestureDetectorImpl IMPL concode_field_sep boolean isQuickScaleEnabled concode_ele...
void function ( Object arg0 , boolean arg1 ) { IMPL . setQuickScaleEnabled ( arg0 , arg1 ) ; }
24,983
sends a peppol business document to a named recipient . the access point of the recipient will be identified by smp lookup . concode_field_sep Logger s_aLogger concode_elem_sep IReadonlyDocumentTypeIdentifier m_aDocumentTypeID concode_elem_sep boolean m_bSoapLogging concode_elem_sep IReadonlyProcessIdentifier m_aProces...
String function ( final InputStream arg0 , final String arg1 , final String arg2 , final String arg3 ) { return sendInvoice ( arg0 , arg1 , arg2 , _getEndpointAddress ( arg2 ) , arg3 ) ; }
24,984
invoked before updateschema adds new columns/tables . concode_field_sep Class<Schema_113> C concode_elem_sep Provider<? extends SchemaVersion> prior concode_elem_sep int versionNbr concode_field_sep void upgradeFrom concode_elem_sep List<SchemaVersion> pending concode_elem_sep void renameTable concode_elem_sep int gues...
void function ( ReviewDb arg0 ) { }
24,985
write data . concode_field_sep StringBuilder buffer concode_elem_sep int CLOSING concode_elem_sep int OPENING concode_elem_sep int NO_CONTENT concode_elem_sep Writer writer concode_field_sep void writeText concode_elem_sep void sendData concode_elem_sep void writeElement concode_elem_sep void writeElement concode_elem_...
void function ( String arg0 ) { buffer . append ( "srini_string" + arg0 + "srini_string" ) ; }
24,986
make sure string is escaped properly so that it will run in a sql query analyzer tool . at this time all we do is double any single tick marks . do not call this with a null string or else an exception will occur . concode_field_sep String dateFormat concode_field_sep String formatParameterObject
String function ( String arg0 ) { }
24,987
create a new client concode_field_sep Integer clientId concode_elem_sep RequestSpecification requestSpec concode_elem_sep LoanTransactionHelper loanTransactionHelper concode_elem_sep ResponseSpecification responseSpec concode_elem_sep String dateString concode_elem_sep Integer loanRescheduleRequestId concode_elem_sep R...
void function ( ) { this . clientId = ClientHelper . createClient ( this . requestSpec , this . responseSpec ) ; ClientHelper . verifyClientCreatedOnServer ( this . requestSpec , this . responseSpec , this . clientId ) ; }
24,988
delete specified file concode_field_sep String path concode_elem_sep int FA_HIDDEN concode_elem_sep Pattern absolute concode_elem_sep int FA_DIRECTORY concode_elem_sep int FA_READONLY concode_field_sep void copyFile concode_elem_sep ClarionString getShortPath concode_elem_sep boolean isFile concode_elem_sep void getDir...
void function ( String arg0 ) { FileFactoryRepository . getInstance ( ) . delete ( arg0 ) ; }
24,989
set the limit on the number of unique values concode_field_sep TreeMap<Object,Object> uniqItems concode_elem_sep long maxNumItems concode_elem_sep String MAX_NUM_UNIQUE_VALUES concode_elem_sep long numItems concode_field_sep void addNextValue concode_elem_sep Set<Object> getUniqueItems concode_elem_sep String getReport...
long function ( long arg0 ) { if ( arg0 >= numItems ) { this . maxNumItems = arg0 ; } else if ( this . maxNumItems >= this . numItems ) { this . maxNumItems = this . numItems ; } return this . maxNumItems ; }
24,990
return the code for this status . concode_field_sep String code concode_elem_sep Status OUT_OF_SERVICE concode_elem_sep Status UP concode_elem_sep Status DOWN concode_elem_sep String description concode_elem_sep Status UNKNOWN concode_field_sep int hashCode concode_elem_sep boolean equals concode_elem_sep String toStri...
String function ( ) { return this . code ; }
24,991
returns an immutable view of this objekt 's fields . concode_field_sep List<Signature> fieldSignatures concode_elem_sep Primitive hashCode concode_elem_sep MemoryPath origin concode_elem_sep Epoch epoch concode_elem_sep String type concode_elem_sep HashMap<String,Variable> fields concode_field_sep void setObjektHashCod...
Map < String , Variable > function ( ) { return Collections . unmodifiableMap ( this . fields ) ; }
24,992
some tests for the constructor . concode_field_sep double EPSILON concode_field_sep void testSerialization concode_elem_sep void testHashCode concode_elem_sep void testEquals
void function ( ) { PowerFunction2D loc0 = new PowerFunction2D ( 1.0 , 2.0 ) ; assertEquals ( 1.0 , loc0 . getA ( ) , EPSILON ) ; assertEquals ( 2.0 , loc0 . getB ( ) , EPSILON ) ; }
24,993
retrieves the user id for the connection . concode_field_sep int loginTimeout concode_elem_sep PrintWriter logWriter concode_elem_sep String user concode_elem_sep String database concode_elem_sep String password concode_field_sep Connection getConnection concode_elem_sep Connection getConnection concode_elem_sep void s...
String function ( ) { return user ; }
24,994
gets the value of the operatingsystemtargeting property . concode_field_sep OperatingSystemTargeting operatingSystemTargeting concode_elem_sep BrowserLanguageTargeting browserLanguageTargeting concode_elem_sep DeviceCategoryTargeting deviceCategoryTargeting concode_elem_sep MobileDeviceTargeting mobileDeviceTargeting c...
OperatingSystemTargeting function ( ) { return operatingSystemTargeting ; }
24,995
set registration files concode_field_sep List registrationFiles concode_field_sep List getRegistrationFiles
void function ( List arg0 ) { this . registrationFiles = arg0 ; }
24,996
returns the auth token type used by this authenticator . concode_field_sep String mAuthTokenType concode_elem_sep AccountManager mAccountManager concode_elem_sep Account mAccount concode_elem_sep boolean mNotifyAuthFailure concode_field_sep Account getAccount concode_elem_sep String getAuthToken concode_elem_sep void i...
String function ( ) { return mAuthTokenType ; }
24,997
get the avataar concode_field_sep TaskAttemptStarted datum concode_field_sep TaskID getTaskId concode_elem_sep String getTrackerName concode_elem_sep ContainerId getContainerId concode_elem_sep EventType getEventType concode_elem_sep Object getDatum concode_elem_sep int getHttpPort concode_elem_sep int getShufflePort c...
String function ( ) { if ( datum . getAvataar ( ) != null ) { return datum . getAvataar ( ) . toString ( ) ; } return null ; }
24,998
normalize this vector , storing the result in another vector . concode_field_sep float[] array concode_elem_sep float x concode_elem_sep float y concode_elem_sep float z concode_field_sep void add concode_elem_sep void add concode_elem_sep PVector add concode_elem_sep PVector add concode_elem_sep void sub concode_elem_...
PVector function ( PVector arg0 ) { if ( arg0 == null ) { arg0 = new PVector ( ) ; } float loc0 = mag ( ) ; if ( loc0 > 0 ) { arg0 . set ( x / loc0 , y / loc0 , z / loc0 ) ; } else { arg0 . set ( x , y , z ) ; } return arg0 ; }
24,999
called whenever the osgi framework stops our bundle concode_field_sep Logger logger concode_elem_sep BundleContext context concode_field_sep void start concode_elem_sep BundleContext getContext
void function ( BundleContext arg0 ) { context = null ; logger . debug ( "srini_string" ) ; }