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

1 2 3 4 5 6 7 8 91011>>

  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base.tests/src/com/ibm/icu/tests/
DecimalFormatTest.java 25 DecimalFormat df = new DecimalFormat("#,#0.00"); local
29 testEHCS(df, df2, dfn);
43 DecimalFormat df = new DecimalFormat(); local
44 assertEquals("9,223,372,036,854,775,807", df.format(lmax));
51 DecimalFormat df = new DecimalFormat("#,##0.000"); local
52 assertEquals("23.330", df.format(dsmall));
60 DecimalFormat df = new DecimalFormat("#,##0.000", sym); local
61 assertEquals("23,330", df.format(dsmall));
69 DecimalFormat df = new DecimalFormat("#,##0.000", sym); local
70 assertEquals(sym, df.getDecimalFormatSymbols())
77 DecimalFormat df = new DecimalFormat(); local
86 DecimalFormat df = new DecimalFormat("+#,##0.#;-#,##0.#"); local
94 DecimalFormat df = new DecimalFormat("+#,##0.#;-#,##0.#"); local
103 DecimalFormat df = new DecimalFormat("+#,##0.#;-#,##0.#"); local
111 DecimalFormat df = new DecimalFormat("+#,##0.#;-#,##0.#"); local
120 DecimalFormat df = new DecimalFormat("+#,##0.#**;-#,##0.#~~"); local
128 DecimalFormat df = new DecimalFormat("+#,##0.#;-#,##0.#"); local
137 DecimalFormat df = new DecimalFormat("+#,##0.#**;-#,##0.#~~"); local
145 DecimalFormat df = new DecimalFormat("+#,##0.#;-#,##0.#"); local
154 DecimalFormat df = new DecimalFormat("%000"); local
163 DecimalFormat df = new DecimalFormat("%000"); local
173 DecimalFormat df = new DecimalFormat("#,#0.#"); local
181 DecimalFormat df = new DecimalFormat("#,##0.##"); local
191 DecimalFormat df = new DecimalFormat("#.#"); local
203 DecimalFormat df = new DecimalFormat("#.#"); local
214 DecimalFormat df = new DecimalFormat("#,##0.##"); local
222 DecimalFormat df = new DecimalFormat("#,##0.##", new DecimalFormatSymbols(Locale.FRANCE)); local
231 DecimalFormat df = new DecimalFormat("#,##0.##"); local
240 DecimalFormat df = new DecimalFormat("#,##0.##", new DecimalFormatSymbols(Locale.FRANCE)); local
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/elf/
file.d 8 0+ l[ ]*df \*ABS\*[ ]+0+ ~tilde
10 0+ l[ ]*df \*ABS\*[ ]+0+ hash\#
11 0+ l[ ]*df \*ABS\*[ ]+0+ lower
12 0+ l[ ]*df \*ABS\*[ ]+0+ UPPER
13 0+ l[ ]*df \*ABS\*[ ]+0+ :colon
14 0+ l[ ]*df \*ABS\*[ ]+0+ /dir/file\.s
15 0+ l[ ]*df \*ABS\*[ ]+0+ \[brackets\]
16 0+ l[ ]*df \*ABS\*[ ]+0+ \{braces\}
17 0+ l[ ]*df \*ABS\*[ ]+0+ slash/data
18 0+ l[ ]*df \*ABS\*[ ]+0+ file\.
    [all...]
file-2.d 8 0+ l[ ]*df \*ABS\*[ ]+0+ file-2\.s
11 0+ l[ ]*df \*ABS\*[ ]+0+ aux-1\.s
13 0+ l[ ]*df \*ABS\*[ ]+0+ aux-2\.s
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/i386/ilp32/elf/
file.d 8 0+ l[ ]*df \*ABS\*[ ]+0+ ~tilde
10 0+ l[ ]*df \*ABS\*[ ]+0+ hash\#
11 0+ l[ ]*df \*ABS\*[ ]+0+ lower
12 0+ l[ ]*df \*ABS\*[ ]+0+ UPPER
13 0+ l[ ]*df \*ABS\*[ ]+0+ :colon
14 0+ l[ ]*df \*ABS\*[ ]+0+ /dir/file\.s
15 0+ l[ ]*df \*ABS\*[ ]+0+ \[brackets\]
16 0+ l[ ]*df \*ABS\*[ ]+0+ \{braces\}
17 0+ l[ ]*df \*ABS\*[ ]+0+ slash/data
18 0+ l[ ]*df \*ABS\*[ ]+0+ file\.
    [all...]
  /external/lisa/tools/analysis/
android_gfx.py 28 def get_frame_drops(self, df):
29 if not 'func' in df.columns:
31 return len(df[(df.func == 'FrameMissed') & (df.data == '1')])
34 df = self.trace.data_frame.trace_event('tracing_mark_write')
35 print {'frame_drops': self.get_frame_drops(df)}
run_binder_transaction_analysis.py 35 df = trace.data_frame.queue_df()
36 trace.analysis.binder_transaction.plot_samples(df, "delta_t",
39 trace.analysis.binder_transaction.plot_tasks(df, threshold, "__comm_x",
42 return df
54 df = trace.data_frame.alloc_df()
55 trace.analysis.binder_transaction.plot_samples(df, "size",
58 trace.analysis.binder_transaction.plot_tasks(df, threshold,
62 return df
74 df = trace.data_frame.alloc_df()
75 trace.analysis.binder_transaction.plot_samples(df, "delta_t"
109 df = run_queue_analysis(trace, args.threshold) variable
111 df = run_buffer_analysis(trace, args.threshold) variable
113 df = run_alloc_analysis(trace, args.threshold) variable
    [all...]
  /external/tensorflow/tensorflow/contrib/learn/python/learn/learn_io/
dask_io.py 33 def _add_to_index(df, start):
35 df = df.copy()
36 df.index += start
37 return df
40 def _get_divisions(df):
42 lengths = df.map_partitions(len).compute()
48 def _construct_dask_df_with_divisions(df):
50 divisions = _get_divisions(df)
52 name = 'csv-index' + df._nam
    [all...]
  /external/lisa/libs/utils/analysis/
binder_transaction_analysis.py 51 Example of df returned:
58 df = pd.merge(df_start, df_end, on="transaction")
59 df = df[["transaction", "__comm_x", "__pid_x",
62 df["delta_t"] = (df["end_time"] - df["start_time"]) \
64 df["size"] = df["data_size"] - df["offsets_size"
    [all...]
eas_analysis.py 58 df = self._dfg_trace_event('sched_energy_diff')
63 df = df[df['comm'].isin(tasks)]
69 df = df[abs(df['usage_delta']) >= min_usage_delta]
73 df = df[abs(df['usage_delta']) <= max_usage_delta
    [all...]
status_analysis.py 52 df = self._dfg_trace_event('sched_overutilized')
56 df = df[df.len != 0]
59 # df = df.reset_index()\
63 return df[['len', 'overutilized']]
86 df = self._dfg_overutilized()
89 bands = [(t, df['len'][t], df['overutilized'][t]) for t in df.index
    [all...]
residency_analysis.py 156 df = self._dfg_trace_event('sched_switch')
157 df = df[['__pid']].drop_duplicates(keep='first')
158 for s in df.iterrows():
162 df = self._dfg_trace_event('sched_switch')
163 df = df[['__pid', '__tgid']].drop_duplicates(keep='first')
164 df_with_tgids = df[df['__tgid'] != -1]
170 self.npids = len(df.index) # How many pids in tota
    [all...]
  /libcore/luni/src/test/java/libcore/java/text/
DecimalFormatTest.java 32 DecimalFormat df = new DecimalFormat("0E0"); local
33 assertEquals("1E4", df.format(12345.));
35 DecimalFormatSymbols dfs = df.getDecimalFormatSymbols();
37 df.setDecimalFormatSymbols(dfs);
38 assertEquals("1-useless-api-4", df.format(12345.));
42 DecimalFormat df = (DecimalFormat) DecimalFormat.getInstance(Locale.US); local
43 df.setMaximumFractionDigits(0);
44 df.setRoundingMode(RoundingMode.HALF_UP);
45 assertEquals("-0", df.format(-0.2));
46 df.setMaximumFractionDigits(1)
123 DecimalFormat df = (DecimalFormat) NumberFormat.getInstance(); local
163 DecimalFormat df = (DecimalFormat)NumberFormat.getInstance(); local
171 DecimalFormat df = (DecimalFormat)NumberFormat.getIntegerInstance(locale); local
197 DecimalFormat df = (DecimalFormat) NumberFormat.getCurrencyInstance(Locale.US); local
205 DecimalFormat df = (DecimalFormat) NumberFormat.getCurrencyInstance(Locale.US); local
288 DecimalFormat df = new DecimalFormat("00"); local
388 android.icu.text.DecimalFormat df = new android.icu.text.DecimalFormat(pattern, local
404 android.icu.text.DecimalFormat df = new android.icu.text.DecimalFormat(pattern, local
421 android.icu.text.DecimalFormat df = new android.icu.text.DecimalFormat(pattern, local
445 android.icu.text.DecimalFormat df = new android.icu.text.DecimalFormat(pattern, local
461 android.icu.text.DecimalFormat df = new android.icu.text.DecimalFormat(pattern, local
494 android.icu.text.DecimalFormat df = new android.icu.text.DecimalFormat(pattern, local
509 android.icu.text.DecimalFormat df = new android.icu.text.DecimalFormat(pattern, local
534 android.icu.text.DecimalFormat df = new android.icu.text.DecimalFormat(pattern, local
608 DecimalFormat df = new DecimalFormat(pattern, DecimalFormatSymbols.getInstance(Locale.US)); local
620 DecimalFormat df = new DecimalFormat(pattern, DecimalFormatSymbols.getInstance(Locale.US)); local
    [all...]
  /external/lisa/tools/scripts/power/
power_average.py 38 df = pd.read_csv(f)
48 df.index = np.linspace(0, sample_period * len(df), num=len(df))
52 end_idx = np.abs(df.index - end).argmin()
53 df.drop(df.index[end_idx:], inplace=True)
57 start_idx = np.abs(df.index - start).argmin()
58 df.drop(df.index[:start_idx], inplace=True
    [all...]
  /external/autotest/server/cros/
chaos_shadow_ap_list.conf 9 [00:1c:df:0c:a6:d0]
14 bss = 00:1c:df:0c:a6:d0
15 wan mac = 00:1c:df:0c:a6:d1
  /external/trappy/tests/
test_common_clk.py 34 df = trace.clock_set_rate.data_frame
35 self.assertSetEqual(set(df.columns),
41 df = trace.clock_enable.data_frame
42 self.assertSetEqual(set(df.columns),
48 df = trace.clock_disable.data_frame
49 self.assertSetEqual(set(df.columns),
test_filesystem.py 34 df = trace.ext4_da_write_begin.data_frame
35 self.assertSetEqual(set(df.columns),
41 df = trace.ext4_da_write_end.data_frame
42 self.assertSetEqual(set(df.columns),
48 df = trace.ext4_sync_file_enter.data_frame
49 self.assertSetEqual(set(df.columns),
55 df = trace.ext4_sync_file_exit.data_frame
56 self.assertSetEqual(set(df.columns),
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
DecimalFormatTest.java 48 DecimalFormat df = new DecimalFormat(); local
49 df.setDecimalFormatSymbols(dfs);
50 df.format(Double.NaN);
339 DecimalFormat df = new DecimalFormat(); local
341 Number nb = df.parse("" + Long.MIN_VALUE, pos);
347 df = new DecimalFormat();
349 nb = df.parse("" + Long.MAX_VALUE, pos);
356 df = new DecimalFormat();
358 nb = df.parse("invalid", pos);
658 DecimalFormat df = new DecimalFormat() local
664 DecimalFormat df = new DecimalFormat(); local
670 DecimalFormat df = new DecimalFormat(); local
676 DecimalFormat df = new DecimalFormat(); local
1013 DecimalFormat df = new DecimalFormat("###0.##", new DecimalFormatSymbols(Locale.US)); local
1030 DecimalFormat df = new DecimalFormat("###0.##", new DecimalFormatSymbols(Locale.US)); local
1059 DecimalFormat df = new DecimalFormat("00.0#E0", dfs); local
1284 DecimalFormat df = new DecimalFormat("00.0#E0", dfs); local
1338 DecimalFormat df = new DecimalFormat("###0.##"); local
1348 DecimalFormat df = new DecimalFormat("###0.##", new DecimalFormatSymbols(Locale.US)); local
1362 DecimalFormat df = new DecimalFormat("00.0#E0", dfs); local
1517 DecimalFormat df = new DecimalFormat("#.#", dfs); local
1679 DecimalFormat df = new DecimalFormat("#0.#", dfs); local
1706 DecimalFormat df = (DecimalFormat) NumberFormat.getInstance(Locale.ENGLISH); local
1716 DecimalFormat df = (DecimalFormat) NumberFormat.getCurrencyInstance(new Locale("ko", "KR")); local
1740 DecimalFormat df = new DecimalFormat("###0.##"); local
1753 DecimalFormat df = new DecimalFormat("###0.##"); local
1762 DecimalFormat df = new DecimalFormat("###0.##"); local
1856 DecimalFormat df = new DecimalFormat("###0.##"); local
1874 DecimalFormat df = new DecimalFormat("###0.##", new DecimalFormatSymbols(Locale.US)); local
1883 DecimalFormat df = ((DecimalFormat) NumberFormat.getCurrencyInstance(locale)); local
1901 DecimalFormat df = new DecimalFormat("###0.##", new DecimalFormatSymbols(Locale.ENGLISH)); local
1916 DecimalFormat df = null; local
2035 DecimalFormat df = new DecimalFormat(); local
    [all...]
ParseExceptionTest.java 32 DateFormat df = DateFormat.getInstance(); local
33 df.parse("HelloWorld");
45 DateFormat df = DateFormat.getInstance(); local
46 df.parse("1999HelloWorld");
  /external/icu/icu4c/source/i18n/
decNumberLocal.h 296 /* Refer to a 32-bit word or byte in a decFloat (df) by big-endian */
303 #define DFBYTE(df, off) ((df)->bytes[DECBYTES-1-(off)])
304 #define DFWORD(df, off) ((df)->words[DECWORDS-1-(off)])
307 #define DFBYTE(df, off) ((df)->bytes[off])
308 #define DFWORD(df, off) ((df)->words[off])
313 #define DFISSIGNED(df) (DFWORD(df, 0)&0x80000000
    [all...]
  /external/lisa/libs/utils/
trace.py 318 df = self._dfg_trace_event(event)
320 tasks = df[name_key].unique()
321 self._scanTasks(df, name_key=name_key, pid_key=pid_key)
322 self._scanTgids(df)
357 def _scanTgids(self, df):
358 if not '__tgid' in df.columns:
360 df = df[['__pid', '__tgid']]
361 df = df.drop_duplicates(keep='first').set_index('__pid'
462 def df(self, event): member in class:Trace
    [all...]
  /external/tensorflow/tensorflow/contrib/distributions/python/kernel_tests/
vector_student_t_test.py 45 def __init__(self, df, loc, scale_tril):
46 self._df = np.asarray(df)
51 def _compute(df, loc, scale_tril, x):
54 logz = ildj + k * (0.5 * np.log(df) +
56 special.gammaln(0.5 * df) -
57 special.gammaln(0.5 * (df + 1.)))
60 logs = -0.5 * (df + 1.) * np.sum(np.log1p(y**2. / df), axis=-2)
80 df = np.asarray(3., dtype=np.float32)
87 df=df, loc=loc, scale_tril=scale_tril
    [all...]
  /frameworks/av/media/libeffects/data/
audio_effects.conf 93 uuid 8631f300-72e2-11df-b57e-0002a5d5c51b
97 uuid 1d4033c0-8557-11df-9f2d-0002a5d5c51b
101 uuid ce772f20-847d-11df-bb17-0002a5d5c51b
105 uuid 119341a0-8469-11df-81f9-0002a5d5c51b
109 uuid 4a387fc0-8ab3-11df-8bad-0002a5d5c51b
113 uuid c7a511a0-a3bb-11df-860e-0002a5d5c51b
117 uuid f29a1400-a3bb-11df-8ddc-0002a5d5c51b
121 uuid 172cdf00-a3bc-11df-a72f-0002a5d5c51b
125 uuid d069d9e0-8329-11df-9168-0002a5d5c51b
  /external/tensorflow/tensorflow/contrib/distributions/python/ops/
chi2.py 38 freedom ("df") parameter.
45 pdf(x; df, x > 0) = x**(0.5 df - 1) exp(-0.5 x) / Z
46 Z = 2**(0.5 df) Gamma(0.5 df)
51 * `df` denotes the degrees of freedom,
59 Chi2(df) = Gamma(concentration=0.5 * df, rate=0.5)
65 df,
69 """Construct Chi2 distributions with parameter `df`
104 def df(self): member in class:Chi2
    [all...]
  /external/clang/test/Lexer/
constants.c 24 'df', // expected-warning {{multi-character character constant}}
42 int d = 'df'; // no warning.
  /external/lisa/tools/scripts/
framestats_analysis.py 60 df = {}
65 if test_name not in df:
66 df[test_name] = pd.DataFrame()
67 df[test_name] = df[test_name].append(UiBench.get_results(root))
68 return df
73 :param df: pandas dataframe to extract columns names from
74 :type df: pd.DataFrame
76 def print_header(df):
78 for c in df.columns
    [all...]

Completed in 605 milliseconds

1 2 3 4 5 6 7 8 91011>>