summaryrefslogtreecommitdiffstats
path: root/REFLECTION
blob: 594542b04ae7207005f2aee900b09a250c996e4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
Extension [ <persistent> extension #93 svn version 2.0.3 ] {

  - Constants [60] {
    Constant [ string SVN_AUTH_PARAM_DEFAULT_USERNAME ] { svn:auth:username }
    Constant [ string SVN_AUTH_PARAM_DEFAULT_PASSWORD ] { svn:auth:password }
    Constant [ string SVN_AUTH_PARAM_NON_INTERACTIVE ] { svn:auth:non-interactive }
    Constant [ string SVN_AUTH_PARAM_DONT_STORE_PASSWORDS ] { svn:auth:dont-store-passwords }
    Constant [ string SVN_AUTH_PARAM_NO_AUTH_CACHE ] { svn:auth:no-auth-cache }
    Constant [ string SVN_AUTH_PARAM_SSL_SERVER_FAILURES ] { svn:auth:ssl:failures }
    Constant [ string SVN_AUTH_PARAM_SSL_SERVER_CERT_INFO ] { svn:auth:ssl:cert-info }
    Constant [ string SVN_AUTH_PARAM_CONFIG ] { svn:auth:config-category-servers }
    Constant [ string SVN_AUTH_PARAM_SERVER_GROUP ] { svn:auth:server-group }
    Constant [ string SVN_AUTH_PARAM_CONFIG_DIR ] { svn:auth:config-dir }
    Constant [ string PHP_SVN_AUTH_PARAM_IGNORE_SSL_VERIFY_ERRORS ] { php:svn:auth:ignore-ssl-verify-errors }
    Constant [ string SVN_FS_CONFIG_FS_TYPE ] { fs-type }
    Constant [ string SVN_FS_TYPE_BDB ] { bdb }
    Constant [ string SVN_FS_TYPE_FSFS ] { fsfs }
    Constant [ string SVN_PROP_REVISION_DATE ] { svn:date }
    Constant [ string SVN_PROP_REVISION_ORIG_DATE ] { svn:original-date }
    Constant [ string SVN_PROP_REVISION_AUTHOR ] { svn:author }
    Constant [ string SVN_PROP_REVISION_LOG ] { svn:log }
    Constant [ int SVN_REVISION_INITIAL ] { 1 }
    Constant [ int SVN_REVISION_HEAD ] { -1 }
    Constant [ int SVN_REVISION_BASE ] { -2 }
    Constant [ int SVN_REVISION_COMMITTED ] { -3 }
    Constant [ int SVN_REVISION_PREV ] { -4 }
    Constant [ int SVN_REVISION_UNSPECIFIED ] { -5 }
    Constant [ int SVN_NON_RECURSIVE ] { 1 }
    Constant [ int SVN_DISCOVER_CHANGED_PATHS ] { 2 }
    Constant [ int SVN_OMIT_MESSAGES ] { 4 }
    Constant [ int SVN_STOP_ON_COPY ] { 8 }
    Constant [ int SVN_ALL ] { 16 }
    Constant [ int SVN_SHOW_UPDATES ] { 32 }
    Constant [ int SVN_NO_IGNORE ] { 64 }
    Constant [ int SVN_IGNORE_EXTERNALS ] { 128 }
    Constant [ int SVN_DEPTH_UNKNOWN ] { -2 }
    Constant [ int SVN_DEPTH_EXCLUDE ] { -1 }
    Constant [ int SVN_DEPTH_EMPTY ] { 0 }
    Constant [ int SVN_DEPTH_FILES ] { 1 }
    Constant [ int SVN_DEPTH_IMMEDIATES ] { 2 }
    Constant [ int SVN_DEPTH_INFINITY ] { 3 }
    Constant [ int SVN_WC_STATUS_NONE ] { 1 }
    Constant [ int SVN_WC_STATUS_UNVERSIONED ] { 2 }
    Constant [ int SVN_WC_STATUS_NORMAL ] { 3 }
    Constant [ int SVN_WC_STATUS_ADDED ] { 4 }
    Constant [ int SVN_WC_STATUS_MISSING ] { 5 }
    Constant [ int SVN_WC_STATUS_DELETED ] { 6 }
    Constant [ int SVN_WC_STATUS_REPLACED ] { 7 }
    Constant [ int SVN_WC_STATUS_MODIFIED ] { 8 }
    Constant [ int SVN_WC_STATUS_MERGED ] { 9 }
    Constant [ int SVN_WC_STATUS_CONFLICTED ] { 10 }
    Constant [ int SVN_WC_STATUS_IGNORED ] { 11 }
    Constant [ int SVN_WC_STATUS_OBSTRUCTED ] { 12 }
    Constant [ int SVN_WC_STATUS_EXTERNAL ] { 13 }
    Constant [ int SVN_WC_STATUS_INCOMPLETE ] { 14 }
    Constant [ int SVN_NODE_NONE ] { 0 }
    Constant [ int SVN_NODE_FILE ] { 1 }
    Constant [ int SVN_NODE_DIR ] { 2 }
    Constant [ int SVN_NODE_UNKNOWN ] { 3 }
    Constant [ int SVN_WC_SCHEDULE_NORMAL ] { 0 }
    Constant [ int SVN_WC_SCHEDULE_ADD ] { 1 }
    Constant [ int SVN_WC_SCHEDULE_DELETE ] { 2 }
    Constant [ int SVN_WC_SCHEDULE_REPLACE ] { 3 }
  }

  - Functions {
    Function [ <internal:svn> function svn_checkout ] {
    }
    Function [ <internal:svn> function svn_cat ] {
    }
    Function [ <internal:svn> function svn_ls ] {
    }
    Function [ <internal:svn> function svn_log ] {
    }
    Function [ <internal:svn> function svn_auth_set_parameter ] {
    }
    Function [ <internal:svn> function svn_auth_get_parameter ] {
    }
    Function [ <internal:svn> function svn_client_version ] {
    }
    Function [ <internal:svn> function svn_config_ensure ] {
    }
    Function [ <internal:svn> function svn_diff ] {
    }
    Function [ <internal:svn> function svn_cleanup ] {
    }
    Function [ <internal:svn> function svn_revert ] {
    }
    Function [ <internal:svn> function svn_resolved ] {
    }
    Function [ <internal:svn> function svn_commit ] {
    }
    Function [ <internal:svn> function svn_lock ] {
    }
    Function [ <internal:svn> function svn_unlock ] {
    }
    Function [ <internal:svn> function svn_add ] {
    }
    Function [ <internal:svn> function svn_status ] {
    }
    Function [ <internal:svn> function svn_update ] {
    }
    Function [ <internal:svn> function svn_update2 ] {
    }
    Function [ <internal:svn> function svn_import ] {
    }
    Function [ <internal:svn> function svn_info ] {
    }
    Function [ <internal:svn> function svn_export ] {
    }
    Function [ <internal:svn> function svn_copy ] {
    }
    Function [ <internal:svn> function svn_switch ] {
    }
    Function [ <internal:svn> function svn_blame ] {
    }
    Function [ <internal:svn> function svn_delete ] {
    }
    Function [ <internal:svn> function svn_mkdir ] {
    }
    Function [ <internal:svn> function svn_move ] {
    }
    Function [ <internal:svn> function svn_proplist ] {
    }
    Function [ <internal:svn> function svn_propget ] {
    }
    Function [ <internal:svn> function svn_propset ] {
    }
    Function [ <internal:svn> function svn_prop_delete ] {
    }
    Function [ <internal:svn> function svn_revprop_get ] {
    }
    Function [ <internal:svn> function svn_revprop_set ] {
    }
    Function [ <internal:svn> function svn_revprop_delete ] {
    }
    Function [ <internal:svn> function svn_repos_create ] {
    }
    Function [ <internal:svn> function svn_repos_recover ] {
    }
    Function [ <internal:svn> function svn_repos_hotcopy ] {
    }
    Function [ <internal:svn> function svn_repos_open ] {
    }
    Function [ <internal:svn> function svn_repos_fs ] {
    }
    Function [ <internal:svn> function svn_repos_fs_begin_txn_for_commit ] {
    }
    Function [ <internal:svn> function svn_repos_fs_commit_txn ] {
    }
    Function [ <internal:svn> function svn_fs_revision_root ] {
    }
    Function [ <internal:svn> function svn_fs_check_path ] {
    }
    Function [ <internal:svn> function svn_fs_revision_prop ] {
    }
    Function [ <internal:svn> function svn_fs_dir_entries ] {
    }
    Function [ <internal:svn> function svn_fs_node_created_rev ] {
    }
    Function [ <internal:svn> function svn_fs_youngest_rev ] {
    }
    Function [ <internal:svn> function svn_fs_file_contents ] {
    }
    Function [ <internal:svn> function svn_fs_file_length ] {
    }
    Function [ <internal:svn> function svn_fs_txn_root ] {
    }
    Function [ <internal:svn> function svn_fs_make_file ] {
    }
    Function [ <internal:svn> function svn_fs_make_dir ] {
    }
    Function [ <internal:svn> function svn_fs_apply_text ] {
    }
    Function [ <internal:svn> function svn_fs_copy ] {
    }
    Function [ <internal:svn> function svn_fs_delete ] {
    }
    Function [ <internal:svn> function svn_fs_begin_txn2 ] {
    }
    Function [ <internal:svn> function svn_fs_is_dir ] {
    }
    Function [ <internal:svn> function svn_fs_is_file ] {
    }
    Function [ <internal:svn> function svn_fs_node_prop ] {
    }
    Function [ <internal:svn> function svn_fs_change_node_prop ] {
    }
    Function [ <internal:svn> function svn_fs_contents_changed ] {
    }
    Function [ <internal:svn> function svn_fs_props_changed ] {
    }
    Function [ <internal:svn> function svn_fs_abort_txn ] {
    }
    Function [ <internal:svn> function svn_fs_open_txn ] {
    }
    Function [ <internal:svn> function svn_fs_txn_prop ] {
    }
  }

  - Classes [4] {
    Class [ <internal:svn> class Svn ] {

      - Constants [20] {
        Constant [ public int NON_RECURSIVE ] { 1 }
        Constant [ public int DISCOVER_CHANGED_PATHS ] { 2 }
        Constant [ public int OMIT_MESSAGES ] { 4 }
        Constant [ public int STOP_ON_COPY ] { 8 }
        Constant [ public int ALL ] { 16 }
        Constant [ public int SHOW_UPDATES ] { 32 }
        Constant [ public int NO_IGNORE ] { 64 }
        Constant [ public int IGNORE_EXTERNALS ] { 128 }
        Constant [ public int INITIAL ] { 1 }
        Constant [ public int HEAD ] { -1 }
        Constant [ public int BASE ] { -2 }
        Constant [ public int COMMITTED ] { -3 }
        Constant [ public int PREV ] { -4 }
        Constant [ public int UNSPECIFIED ] { -5 }
        Constant [ public int DEPTH_UNKNOWN ] { -2 }
        Constant [ public int DEPTH_EXCLUDE ] { -1 }
        Constant [ public int DEPTH_EMPTY ] { 0 }
        Constant [ public int DEPTH_FILES ] { 1 }
        Constant [ public int DEPTH_IMMEDIATES ] { 2 }
        Constant [ public int DEPTH_INFINITY ] { 3 }
      }

      - Static properties [0] {
      }

      - Static methods [42] {
        Method [ <internal:svn> static public method checkout ] {
        }

        Method [ <internal:svn> static public method cat ] {
        }

        Method [ <internal:svn> static public method ls ] {
        }

        Method [ <internal:svn> static public method log ] {
        }

        Method [ <internal:svn> static public method auth_set_parameter ] {
        }

        Method [ <internal:svn> static public method auth_get_parameter ] {
        }

        Method [ <internal:svn> static public method client_version ] {
        }

        Method [ <internal:svn> static public method config_ensure ] {
        }

        Method [ <internal:svn> static public method diff ] {
        }

        Method [ <internal:svn> static public method cleanup ] {
        }

        Method [ <internal:svn> static public method revert ] {
        }

        Method [ <internal:svn> static public method resolved ] {
        }

        Method [ <internal:svn> static public method commit ] {
        }

        Method [ <internal:svn> static public method lock ] {
        }

        Method [ <internal:svn> static public method unlock ] {
        }

        Method [ <internal:svn> static public method add ] {
        }

        Method [ <internal:svn> static public method status ] {
        }

        Method [ <internal:svn> static public method update ] {
        }

        Method [ <internal:svn> static public method update2 ] {
        }

        Method [ <internal:svn> static public method import ] {
        }

        Method [ <internal:svn> static public method info ] {
        }

        Method [ <internal:svn> static public method export ] {
        }

        Method [ <internal:svn> static public method copy ] {
        }

        Method [ <internal:svn> static public method switch ] {
        }

        Method [ <internal:svn> static public method blame ] {
        }

        Method [ <internal:svn> static public method delete ] {
        }

        Method [ <internal:svn> static public method mkdir ] {
        }

        Method [ <internal:svn> static public method move ] {
        }

        Method [ <internal:svn> static public method proplist ] {
        }

        Method [ <internal:svn> static public method propget ] {
        }

        Method [ <internal:svn> static public method propset ] {
        }

        Method [ <internal:svn> static public method prop_delete ] {
        }

        Method [ <internal:svn> static public method revprop_get ] {
        }

        Method [ <internal:svn> static public method revprop_set ] {
        }

        Method [ <internal:svn> static public method revprop_delete ] {
        }

        Method [ <internal:svn> static public method repos_create ] {
        }

        Method [ <internal:svn> static public method repos_recover ] {
        }

        Method [ <internal:svn> static public method repos_hotcopy ] {
        }

        Method [ <internal:svn> static public method repos_open ] {
        }

        Method [ <internal:svn> static public method repos_fs ] {
        }

        Method [ <internal:svn> static public method repos_fs_begin_txn_for_commit ] {
        }

        Method [ <internal:svn> static public method repos_fs_commit_txn ] {
        }
      }

      - Properties [0] {
      }

      - Methods [0] {
      }
    }

    Class [ <internal:svn> class SvnWc ] {

      - Constants [14] {
        Constant [ public int NONE ] { 1 }
        Constant [ public int UNVERSIONED ] { 2 }
        Constant [ public int NORMAL ] { 3 }
        Constant [ public int ADDED ] { 4 }
        Constant [ public int MISSING ] { 5 }
        Constant [ public int DELETED ] { 6 }
        Constant [ public int REPLACED ] { 7 }
        Constant [ public int MODIFIED ] { 8 }
        Constant [ public int MERGED ] { 9 }
        Constant [ public int CONFLICTED ] { 10 }
        Constant [ public int IGNORED ] { 11 }
        Constant [ public int OBSTRUCTED ] { 12 }
        Constant [ public int EXTERNAL ] { 13 }
        Constant [ public int INCOMPLETE ] { 14 }
      }

      - Static properties [0] {
      }

      - Static methods [0] {
      }

      - Properties [0] {
      }

      - Methods [0] {
      }
    }

    Class [ <internal:svn> class SvnWcSchedule ] {

      - Constants [4] {
        Constant [ public int NORMAL ] { 0 }
        Constant [ public int ADD ] { 1 }
        Constant [ public int DELETE ] { 2 }
        Constant [ public int REPLACE ] { 3 }
      }

      - Static properties [0] {
      }

      - Static methods [0] {
      }

      - Properties [0] {
      }

      - Methods [0] {
      }
    }

    Class [ <internal:svn> class SvnNode ] {

      - Constants [4] {
        Constant [ public int NONE ] { 0 }
        Constant [ public int FILE ] { 1 }
        Constant [ public int DIR ] { 2 }
        Constant [ public int UNKNOWN ] { 3 }
      }

      - Static properties [0] {
      }

      - Static methods [0] {
      }

      - Properties [0] {
      }

      - Methods [0] {
      }
    }
  }
}