HomeSort by relevance Sort by last modified time
    Searched refs:fields (Results 26 - 50 of 3426) sorted by null

12 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/opcodes/
m32c-dis.c 300 CGEN_FIELDS *fields,
316 print_keyword (cd, info, & m32c_cgen_opval_h_ar_HI, fields->f_4_1, 0);
319 print_keyword (cd, info, & m32c_cgen_opval_h_ar, fields->f_dst16_an, 0);
322 print_keyword (cd, info, & m32c_cgen_opval_h_gr_HI, fields->f_dst16_rn, 0);
325 print_normal (cd, info, fields->f_imm3_S, 0|(1<<CGEN_OPERAND_SIGNED)|(1<<CGEN_OPERAND_VIRTUAL), pc, length);
328 print_keyword (cd, info, & m32c_cgen_opval_h_ar, fields->f_dst32_an_prefixed, 0);
331 print_keyword (cd, info, & m32c_cgen_opval_h_ar, fields->f_dst32_an_unprefixed, 0);
334 print_keyword (cd, info, & m32c_cgen_opval_h_gr_QI, fields->f_dst32_rn_prefixed_QI, 0);
337 print_keyword (cd, info, & m32c_cgen_opval_h_gr_QI, fields->f_dst32_rn_unprefixed_QI, 0);
340 print_signed_bitbase (cd, info, fields->f_dsp_16_s8, 0|(1<<CGEN_OPERAND_SIGNED), pc, length)
1082 CGEN_FIELDS fields; local
    [all...]
lm32-ibld.c 45 #define FLD(f) (fields->f)
250 CGEN_FIELDS * fields,
267 CGEN_FIELDS_BITSIZE (fields), value);
272 (unsigned) CGEN_FIELDS_BITSIZE (fields)),
277 /* ??? It would be better to scan the format's fields.
290 fields, buffer, pc);
508 The extracted fields are stored in FIELDS.
519 CGEN_FIELDS *fields,
525 CGEN_FIELDS_BITSIZE (fields) = CGEN_INSN_BITSIZE (insn)
    [all...]
or1k-ibld.c 45 #define FLD(f) (fields->f)
250 CGEN_FIELDS * fields,
267 CGEN_FIELDS_BITSIZE (fields), value);
272 (unsigned) CGEN_FIELDS_BITSIZE (fields)),
277 /* ??? It would be better to scan the format's fields.
290 fields, buffer, pc);
508 The extracted fields are stored in FIELDS.
519 CGEN_FIELDS *fields,
525 CGEN_FIELDS_BITSIZE (fields) = CGEN_INSN_BITSIZE (insn)
    [all...]
m32c-asm.c 958 CGEN_FIELDS * fields)
973 errmsg = cgen_parse_keyword (cd, strp, & m32c_cgen_opval_h_ar_HI, & fields->f_4_1);
976 errmsg = cgen_parse_keyword (cd, strp, & m32c_cgen_opval_h_ar, & fields->f_dst16_an);
979 errmsg = cgen_parse_keyword (cd, strp, & m32c_cgen_opval_h_gr_HI, & fields->f_dst16_rn);
982 errmsg = parse_bit3_S (cd, strp, M32C_OPERAND_BIT3_S, (long *) (& fields->f_imm3_S));
985 errmsg = cgen_parse_keyword (cd, strp, & m32c_cgen_opval_h_ar, & fields->f_dst32_an_prefixed);
988 errmsg = cgen_parse_keyword (cd, strp, & m32c_cgen_opval_h_ar, & fields->f_dst32_an_unprefixed);
991 errmsg = cgen_parse_keyword (cd, strp, & m32c_cgen_opval_h_gr_QI, & fields->f_dst32_rn_prefixed_QI);
994 errmsg = cgen_parse_keyword (cd, strp, & m32c_cgen_opval_h_gr_QI, & fields->f_dst32_rn_unprefixed_QI);
997 errmsg = parse_signed_bitbase8 (cd, strp, M32C_OPERAND_BITBASE16_16_S8, (long *) (& fields->f_dsp_16_s8))
    [all...]
ip2k-ibld.c 45 #define FLD(f) (fields->f)
250 CGEN_FIELDS * fields,
267 CGEN_FIELDS_BITSIZE (fields), value);
272 (unsigned) CGEN_FIELDS_BITSIZE (fields)),
277 /* ??? It would be better to scan the format's fields.
290 fields, buffer, pc);
508 The extracted fields are stored in FIELDS.
519 CGEN_FIELDS *fields,
525 CGEN_FIELDS_BITSIZE (fields) = CGEN_INSN_BITSIZE (insn)
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
Grego.java 119 public static int[] dayToFields(long day, int[] fields) {
120 if (fields == null || fields.length < 5) {
121 fields = new int[5];
155 fields[0] = year;
156 fields[1] = month;
157 fields[2] = dayOfMonth;
158 fields[3] = dayOfWeek;
159 fields[4] = dayOfYear;
161 return fields;
226 int[] fields = timeToFields(time, null); local
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
Grego.java 117 public static int[] dayToFields(long day, int[] fields) {
118 if (fields == null || fields.length < 5) {
119 fields = new int[5];
153 fields[0] = year;
154 fields[1] = month;
155 fields[2] = dayOfMonth;
156 fields[3] = dayOfWeek;
157 fields[4] = dayOfYear;
159 return fields;
224 int[] fields = timeToFields(time, null); local
    [all...]
  /frameworks/base/media/jni/
android_media_PlaybackParams.h 83 void fillFromJobject(JNIEnv *env, const fields_t& fields, jobject params) {
84 audioRate.mSpeed = env->GetFloatField(params, fields.speed);
85 audioRate.mPitch = env->GetFloatField(params, fields.pitch);
87 (AudioTimestretchFallbackMode)env->GetIntField(params, fields.audio_fallback_mode);
89 (AudioTimestretchStretchMode)env->GetIntField(params, fields.audio_stretch_mode);
90 int set = env->GetIntField(params, fields.set);
92 speedSet = set & fields.set_speed;
93 pitchSet = set & fields.set_pitch;
94 audioFallbackModeSet = set & fields.set_audio_fallback_mode;
95 audioStretchModeSet = set & fields.set_audio_stretch_mode
    [all...]
android_media_BufferingParams.h 60 void fillFromJobject(JNIEnv *env, const fields_t& fields, jobject params) {
62 env->GetIntField(params, fields.initial_mark_ms);
64 env->GetIntField(params, fields.resume_playback_mark_ms);
67 jobject asJobject(JNIEnv *env, const fields_t& fields) {
68 jobject params = env->NewObject(fields.clazz, fields.constructID);
72 env->SetIntField(params, fields.initial_mark_ms, (jint)settings.mInitialMarkMs);
73 env->SetIntField(params, fields.resume_playback_mark_ms, (jint)settings.mResumePlaybackMarkMs);
  /external/webrtc/webrtc/base/
stringencode_unittest.cc 218 std::vector<std::string> fields; local
220 EXPECT_EQ(5ul, tokenize("one two three four five", ' ', &fields));
221 fields.clear();
222 EXPECT_EQ(1ul, tokenize("one", ' ', &fields));
225 fields.clear();
226 EXPECT_EQ(5ul, tokenize(" one two three four five ", ' ', &fields));
227 fields.clear();
228 EXPECT_EQ(1ul, tokenize(" one ", ' ', &fields));
229 fields.clear();
230 EXPECT_EQ(0ul, tokenize(" ", ' ', &fields));
235 std::vector<std::string> fields; local
254 std::vector<std::string> fields; local
269 std::vector<std::string> fields; local
303 std::vector<std::string> fields; local
366 std::vector<std::string> fields; local
383 std::vector<std::string> fields; local
    [all...]
  /external/smali/smalidea/src/test/java/org/jf/smalidea/
SmaliFieldTest.java 54 SmaliField[] fields = smaliClass.getFields(); local
55 Assert.assertEquals(1, fields.length);
56 Assert.assertEquals("myField", fields[0].getName());
57 Assert.assertTrue(fields[0].getType() instanceof PsiPrimitiveType);
58 Assert.assertEquals("int", fields[0].getType().getCanonicalText());
59 PsiTypeElement typeElement = fields[0].getTypeElement();
63 SmaliModifierList modifierList = fields[0].getModifierList();
68 Assert.assertTrue(fields[0].hasModifierProperty("public"));
96 PsiField[] fields = smaliClass.getFields(); local
97 Assert.assertEquals(1, fields.length)
138 PsiField[] fields = smaliClass.getFields(); local
180 SmaliField[] fields = smaliClass.getFields(); local
221 SmaliField[] fields = smaliClass.getFields(); local
    [all...]
  /external/toolchain-utils/crosperf/
settings.py 12 """Class representing settings (a set of fields) from an experiment file."""
17 self.fields = {}
26 if name in self.fields:
28 self.fields[name] = field
31 if name not in self.fields:
35 self.fields[name].Append(value)
37 self.fields[name].Set(value)
41 if name not in self.fields:
44 field = self.fields[name]
48 return self.fields[name].Get(
    [all...]
help.py 22 def _GetFieldDescriptions(self, fields):
24 for field_name in fields:
25 field = fields[field_name]
36 global_fields = self._GetFieldDescriptions(GlobalSettings('').fields)
37 benchmark_fields = self._GetFieldDescriptions(BenchmarkSettings('').fields)
38 label_fields = self._GetFieldDescriptions(LabelSettings('').fields)
77 benchmark has two "fields", one which specifies that this benchmark is
87 The full list of fields that can be specified in the experiment file
90 Global Fields
94 Benchmark Fields
    [all...]
  /frameworks/support/room/compiler/src/main/kotlin/androidx/room/vo/
PrimaryKey.kt 24 data class PrimaryKey(val declaredIn: Element?, val fields: List<Field>,
30 val columnNames by lazy { fields.map { it.columnName } }
34 fields.joinToString(separator = ", ", transform = Field::getPath) + "]"
38 autoGenerateId, fields.map { it.columnName })
41 return "$autoGenerateId-${fields.map { it.columnName }}"
FieldWithIndex.kt 28 fun byOrder(fields: List<Field>): List<FieldWithIndex> {
29 return fields.mapIndexed { index, field ->
  /external/icu/android_icu4j/src/main/java/android/icu/util/
CopticCalendar.java 253 int[] fields = new int[3]; local
254 jdToCE(julianDay, getJDEpochOffset(), fields);
256 // fields[0] eyear
257 // fields[1] month
258 // fields[2] day
260 if (fields[0] <= 0) {
262 year = 1 - fields[0];
265 year = fields[0];
268 internalSet(EXTENDED_YEAR, fields[0]);
271 internalSet(MONTH, fields[1])
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
CopticCalendar.java 274 int[] fields = new int[3]; local
275 jdToCE(julianDay, getJDEpochOffset(), fields);
277 // fields[0] eyear
278 // fields[1] month
279 // fields[2] day
281 if (fields[0] <= 0) {
283 year = 1 - fields[0];
286 year = fields[0];
289 internalSet(EXTENDED_YEAR, fields[0]);
292 internalSet(MONTH, fields[1])
    [all...]
  /external/autotest/frontend/client/src/autotest/tko/
HeaderSelect.java 83 private void setSelectedItemsInView(List<HeaderField> fields) {
85 for (HeaderField field : fields) {
95 public void setSelectedItems(List<HeaderField> fields) {
96 savedState.selectedFields = new ArrayList<HeaderField>(fields);
104 List<HeaderField> fields = getSelectedItemsFromView(); local
105 if (!fields.contains(field)) {
106 fields.add(field);
107 setSelectedItemsInView(fields);
112 List<HeaderField> fields = getSelectedItemsFromView(); local
113 if (fields.remove(field))
119 List<String> fields = new ArrayList<String>(); local
128 String[] fields = arguments.get(name).split(","); local
134 List<HeaderField> fields = new ArrayList<HeaderField>(); local
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
VisualVoicemailSmsParser.java 35 public final Bundle fields; field in class:VisualVoicemailSmsParser.WrappedMessageData
39 return "WrappedMessageData [type=" + prefix + " fields=" + fields + "]";
44 fields = keyValues;
67 Bundle fields = parseSmsBody(smsBody.substring(eventTypeEnd + 1)); local
68 if (fields == null) {
71 return new WrappedMessageData(eventType, fields);
82 * "WrappedMessageData [fields={st=R, ipt=1, srv=1, dn=1, u=eg@example.com, pw=1, rc=0}]"
135 Bundle fields = parseSmsBody(smsBody.substring(eventTypeEnd + 1)); local
136 if (fields == null)
    [all...]
  /frameworks/base/core/jni/
android_media_ToneGenerator.cpp 39 static fields_t fields; variable
45 fields.context);
58 fields.context);
70 fields.context);
80 fields.context);
83 env->SetLongField(thiz, fields.context, 0);
92 env->SetLongField(thiz, fields.context, 0);
106 env->SetLongField(thiz, fields.context, (jlong)lpToneGen);
108 ALOGV("ToneGenerator fields.context: %p", (void*) env->GetLongField(thiz, fields.context))
    [all...]
  /external/proguard/src/proguard/classfile/editor/
ClassEditor.java 123 Field[] fields = targetClass.fields; local
126 if (fields.length <= fieldsCount)
128 targetClass.fields = new ProgramField[fieldsCount+1];
129 System.arraycopy(fields, 0,
130 targetClass.fields, 0,
132 fields = targetClass.fields;
141 fields[targetClass.u2fieldsCount++] = field;
152 Field[] fields = targetClass.fields local
173 Field[] fields = targetClass.fields; local
    [all...]
  /external/icu/icu4c/source/test/intltest/
ucdtest.h 13 char *fields[][2], int32_t fieldCount,
18 char *fields[][2], int32_t fieldCount,
49 char *fields[][2], int32_t fieldCount,
54 char *fields[][2], int32_t fieldCount,
  /prebuilts/go/darwin-x86/src/mime/
type_plan9.go 45 fields := strings.Fields(scanner.Text())
46 if len(fields) <= 2 || fields[0][0] != '.' {
49 if fields[1] == "-" || fields[2] == "-" {
52 setExtensionType(fields[0], fields[1]+"/"+fields[2])
  /prebuilts/go/linux-x86/src/mime/
type_plan9.go 45 fields := strings.Fields(scanner.Text())
46 if len(fields) <= 2 || fields[0][0] != '.' {
49 if fields[1] == "-" || fields[2] == "-" {
52 setExtensionType(fields[0], fields[1]+"/"+fields[2])
  /external/autotest/client/site_tests/security_NetworkListeners/
security_NetworkListeners.py 68 fields = line.split()
69 if (fields[_LSOF_COMMAND] == 'autotest' or (
70 fields[_LSOF_COMMAND] == 'python' and
71 fields[_LSOF_NAME].startswith('127.0.0.1:')) or
72 fields[_LSOF_NAME] == '127.0.0.1:%d' %
74 sockets_to_ignore.add(fields[_LSOF_DEVICE])
79 fields = line.split()
80 if fields[_LSOF_DEVICE] in sockets_to_ignore:
111 fields = line.split()
112 observed_set.add('%s %s' % (fields[_LSOF_COMMAND]
    [all...]

Completed in 652 milliseconds

12 3 4 5 6 7 8 91011>>