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

12 3

  /external/llvm/utils/lit/lit/
ProgressBar.py 155 # Example use case: progress bar
160 A simple progress bar which doesn't need any terminal support.
162 This prints out a progress bar like:
200 A 3-line progress bar, which looks like::
206 The progress bar is colored, if the terminal supports color
209 BAR = '%s${GREEN}[${BOLD}%s%s${NORMAL}${GREEN}]${NORMAL}%s'
226 self.bar = term.render(self.BAR)
228 self.cleared = 1 #: true if we haven't drawn the bar yet.
257 (self.bar % (prefix, '='*n, '-'*(barWidth-n), suffix))
    [all...]
  /external/protobuf/java/src/test/java/com/google/protobuf/
MicroTest.java 82 msg.setDefaultNestedEnum(SimpleMessageMicro.BAR);
84 assertEquals(SimpleMessageMicro.BAR, msg.getDefaultNestedEnum());
98 assertEquals(SimpleMessageMicro.BAR, msg.getDefaultNestedEnum());
683 msg.setOptionalNestedEnum(TestAllTypesMicro.BAR);
685 assertEquals(TestAllTypesMicro.BAR, msg.getOptionalNestedEnum());
694 msg.setOptionalNestedEnum(TestAllTypesMicro.BAR);
703 assertEquals(TestAllTypesMicro.BAR, newMsg.getOptionalNestedEnum());
    [all...]
GeneratedMessageTest.java 214 builder.addRepeatedNestedEnum(TestAllTypes.NestedEnum.BAR);
556 .setForeignEnum(EnumWithNoOuter.BAR)
565 assertEquals(EnumWithNoOuter.BAR.getValueDescriptor(),
TextFormatTest.java 363 assertEquals(TestAllTypes.NestedEnum.BAR, builder.getOptionalNestedEnum());
TestUtil.java 376 message.addRepeatedNestedEnum (TestAllTypes.NestedEnum.BAR);
600 Assert.assertEquals(TestAllTypes.NestedEnum.BAR, message.getRepeatedNestedEnum (0));
    [all...]
  /external/protobuf/src/google/protobuf/
unknown_field_set_unittest.cc 407 unknown_fields->AddVarint(singular_field->number(), TestAllTypes::BAR);
419 EXPECT_EQ(TestAllTypes::BAR, message.optional_nested_enum());
446 EXPECT_EQ(TestAllTypes::BAR,
test_util_lite.cc 98 message->add_repeated_nested_enum (unittest::TestAllTypesLite::BAR );
294 EXPECT_EQ(unittest::TestAllTypesLite::BAR , message.repeated_nested_enum (0));
498 EXPECT_EQ(unittest::TestAllTypesLite::BAR , message.default_nested_enum ());
557 EXPECT_EQ(unittest::TestAllTypesLite::BAR , message.repeated_nested_enum (0));
    [all...]
test_util.cc 114 message->add_repeated_nested_enum (unittest::TestAllTypes::BAR);
357 EXPECT_EQ(unittest::TestAllTypes::BAR, message.repeated_nested_enum (0));
565 EXPECT_EQ(unittest::TestAllTypes::BAR, message.default_nested_enum ());
628 EXPECT_EQ(unittest::TestAllTypes::BAR, message.repeated_nested_enum (0));
    [all...]
text_format_unittest.cc 146 proto_.add_repeated_string("bar");
150 proto_.add_repeated_nested_enum(unittest::TestAllTypes::BAR);
160 "repeated_string: \"bar\"\n"
163 "repeated_nested_enum: [FOO, BAR]\n",
173 "repeated_string: \"bar\" "
176 "repeated_nested_enum: [FOO, BAR] ",
372 string parse_string = "optional_string: \"foo\" \"bar\"\n";
383 "\"bar\"\n";
801 EXPECT_FIELD(nested_enum, unittest::TestAllTypes::BAR, "BAR");
    [all...]
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_unittest.cc 318 message1.add_repeated_nested_enum(unittest::TestAllTypes::BAR);
323 message2.set_optional_nested_enum(unittest::TestAllTypes::BAR);
334 EXPECT_EQ(unittest::TestAllTypes::BAR, message1.optional_nested_enum());
359 EXPECT_EQ(unittest::TestAllTypes::BAR, message2.repeated_nested_enum(1));
754 unittest::TestAllTypes::NestedEnum a = unittest::TestAllTypes::BAR;
759 case unittest::TestAllTypes::BAR:
    [all...]
  /cts/tools/dasm/src/java_cup/
lexer.java 24 * ::= COLON_COLON_EQUALS | BAR
132 char_symbols.put(new Integer('|'), new Integer(sym.BAR));
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
Helpers.java 662 final char BAR = 0x7C;
681 ch == BAR ||
  /external/protobuf/python/google/protobuf/internal/
test_util.py 115 message.repeated_nested_enum.append(unittest_pb2.TestAllTypes.BAR)
248 extensions[pb2.repeated_nested_enum_extension].append(pb2.TestAllTypes.BAR)
322 message.Extensions[unittest_pb2.my_extension_string] = 'bar'
343 message.Extensions[my_extension_string] = 'bar' # Field 50.
468 test_case.assertEqual(unittest_pb2.TestAllTypes.BAR,
reflection_test.py 143 bb=unittest_pb2.TestAllTypes.BAR)],
157 bb=unittest_pb2.TestAllTypes.BAR)],
181 bb=unittest_pb2.TestAllTypes.BAR)],
195 bb=unittest_pb2.TestAllTypes.BAR)],
380 proto.repeated_string.extend(['foo', 'bar'])
391 ['foo', 'bar', 'baz', '0', '1']) ],
411 proto.Extensions[unittest_pb2.repeated_string_extension ].append('bar')
418 (unittest_pb2.repeated_string_extension , ['foo', 'bar', 'baz']) ],
429 (unittest_pb2.my_extension_string , 'bar'),
466 self.assertEqual(unittest_pb2.TestAllTypes.BAR, proto.default_nested_enum
    [all...]
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/sdkman2/
AvdManagerWindowImpl1.java 192 Menu menuBar = new Menu(mShell, SWT.BAR);
237 mUpdaterData.getSdkLog().error(e, "Failed to setup menu bar");
SdkUpdaterWindowImpl2.java 234 Menu menuBar = new Menu(mShell, SWT.BAR);
347 mUpdaterData.getSdkLog().error(e, "Failed to setup menu bar");
  /cts/tools/dasm/etc/
java_cup-new.jar 
java_cup.jar 
java_cup.jar.old 
  /sdk/ddms/app/src/com/android/ddms/
UIThread.java 682 * Create the menu bar and items.
685 // create menu bar
686 Menu menuBar = new Menu(shell, SWT.BAR);
724 Log.e("DDMS Menu Bar", String.format(format, args));
    [all...]
  /external/doclava/src/com/google/doclava/parser/
JavaLexer.java 131 public static final int BAR=103;
    [all...]
JavaParser.java 174 "<invalid>", "<EOR>", "<DOWN>", "<UP>", "IDENTIFIER", "INTLITERAL", "LONGLITERAL", "FLOATLITERAL", "DOUBLELITERAL", "CHARLITERAL", "STRINGLITERAL", "TRUE", "FALSE", "NULL", "IntegerNumber", "LongSuffix", "HexPrefix", "HexDigit", "Exponent", "NonIntegerNumber", "FloatSuffix", "DoubleSuffix", "EscapeSequence", "UNICODECHAR", "UNICODEPART", "WS", "COMMENT", "LINE_COMMENT", "ABSTRACT", "ASSERT", "BOOLEAN", "BREAK", "BYTE", "CASE", "CATCH", "CHAR", "CLASS", "CONST", "CONTINUE", "DEFAULT", "DO", "DOUBLE", "ELSE", "ENUM", "EXTENDS", "FINAL", "FINALLY", "FLOAT", "FOR", "GOTO", "IF", "IMPLEMENTS", "IMPORT", "INSTANCEOF", "INT", "INTERFACE", "LONG", "NATIVE", "NEW", "PACKAGE", "PRIVATE", "PROTECTED", "PUBLIC", "RETURN", "SHORT", "STATIC", "STRICTFP", "SUPER", "SWITCH", "SYNCHRONIZED", "THIS", "THROW", "THROWS", "TRANSIENT", "TRY", "VOID", "VOLATILE", "WHILE", "LPAREN", "RPAREN", "LBRACE", "RBRACE", "LBRACKET", "RBRACKET", "SEMI", "COMMA", "DOT", "ELLIPSIS", "EQ", "BANG", "TILDE", "QUES", "COLON", "EQEQ", "AMPAMP", "BARBAR", "PLUSPLUS", "SUBSUB", "PLUS", "SUB", "STAR", "SLASH", "AMP", "BAR", "CARET", "PERCENT", "PLUSEQ", "SUBEQ", "STAREQ", "SLASHEQ", "AMPEQ", "BAREQ", "CARETEQ", "PERCENTEQ", "MONKEYS_AT", "BANGEQ", "GT", "LT", "IdentifierStart", "IdentifierPart", "SurrogateIdentifer"
276 public static final int BAR=103;
    [all...]
  /prebuilt/darwin-x86/swt/
swt.jar 
  /external/srec/config/en.us/dictionary/
c0.6     [all...]
  /ndk/sources/host-tools/sed-4.2.1/build-aux/
texinfo.tex 224 % For a thicker or thinner bar, change the `1pt'.
227 % This is the space between the bar and the text.
    [all...]

Completed in 811 milliseconds

12 3