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

1 2 3 4 5 6 7

  /external/clang/test/Parser/
argument_qualified.c 2 int abc (const float x) { function
  /external/clang/test/CodeGen/
2002-02-16-RenamingTest.c 5 void abc(void *);
8 abc(&X);
11 abc(&X);
14 abc(&X);
sret2.c 3 struct abc { struct
11 struct abc foo2(){}
sret.c 3 struct abc { struct
11 struct abc foo1(void);
12 struct abc foo2();
15 struct abc dummy1 = foo1();
16 struct abc dummy2 = foo2();
  /external/clang/test/Index/
invalid-rdar-8236270.cpp 5 struct abc *P;
8 // CHECK: StructDecl=abc:5:8 Extent=[5:1 - 5:11]
  /external/llvm/test/MC/AsmParser/
bad-macro.s 7 .macro abc 33
vararg-default-value.s 2 .macro abc arg:vararg=nop
13 abc
macros-darwin-vararg.s 3 .macro abc a b:vararg
8 abc zed0, zed1, zed2 label
10 .purgem abc
63 .macro abc arg:vararg=nop
74 abc
  /external/mesa3d/src/glsl/glcpp/tests/
088-redefine-macro-legitimate.c 1 #define abc 123 macro
2 #define abc 123 macro
089-redefine-macro-error.c 4 #define abc 123 macro
5 #define abc() 123 macro
  /system/core/adb/
adb_utils_test.cpp 30 ASSERT_EQ(R"('abc')", escape_arg("abc"));
32 ASSERT_EQ(R"(' abc')", escape_arg(" abc"));
33 ASSERT_EQ(R"(''\''abc')", escape_arg("'abc"));
34 ASSERT_EQ(R"('"abc')", escape_arg("\"abc"));
35 ASSERT_EQ(R"('\abc')", escape_arg("\\abc"));
    [all...]
  /external/toybox/tests/
cut.test 15 the quick brown fox jumps over the lazy dog" >abc.txt
17 testing "cut with -c (a-b)" "cut -c 4-10 abc.txt" ":two:th\nha:beta\n quick \n" "" ""
18 testing "cut with -f (a-)" "cut -d ':' -f 5- abc.txt" "five:six:seven\nepsilon:zeta:eta:teta:iota:kappa:lambda:mu\nthe quick brown fox jumps over the lazy dog\n" "" ""
20 testing "cut with -f (a)" "cut -d ' ' -f 3 abc.txt" "one:two:three:four:five:six:seven\nalpha:beta:gamma:delta:epsilon:zeta:eta:teta:iota:kappa:lambda:mu\nbrown\n" "" ""
25 # Modifying abc.txt data as per new testcase
26 echo "abcdefghijklmnopqrstuvwxyz" >abc.txt
28 testing "cut with -c (a,b,c)" "cut -c 4,5,20 abc.txt" "det\n" "" ""
30 testing "cut with -b (a,b,c)" "cut -b 4,5,20 abc.txt" "det\n" "" ""
32 # Modifying abc.txt data as per testcase
36 396082:Sales:Jucacion:Ed" >abc.tx
    [all...]
  /external/clang/test/CodeGenCXX/
apple-kext-indirect-call-2.cpp 9 virtual const char* abc(void) const;
12 const char* A::abc(void) const {return "A"; }; function in class:A
23 const char* c = p->A::abc();
28 struct Base { virtual char* abc(void) const; };
30 char* Base::abc() const { return 0; } function in class:Base
38 char* c = p->Base::abc();
64 virtual char *abc(void) const;
70 char* D2::abc(void) const { return 0; } function in class:D2
75 char* c = p->D2::abc();
apple-kext-indirect-call.cpp 6 virtual void abc(void) const;
9 void Base::abc(void) const {} function in class:Base
12 p->Base::abc();
  /external/v8/test/mjsunit/harmony/
string-endswith.js 113 assertTrue("abc".endsWith("abc"));
115 assertTrue("abc".endsWith("c"));
116 assertFalse("abc".endsWith("abcd"));
117 assertFalse("abc".endsWith("bbc"));
118 assertFalse("abc".endsWith("b"));
119 assertTrue("abc".endsWith("abc", 3));
120 assertTrue("abc".endsWith("bc", 3));
121 assertFalse("abc".endsWith("a", 3))
    [all...]
string-startswith.js 112 assertTrue("abc".startsWith("abc"));
113 assertTrue("abcd".startsWith("abc"));
114 assertTrue("abc".startsWith("a"));
115 assertFalse("abc".startsWith("abcd"));
116 assertFalse("abc".startsWith("bcde"));
117 assertFalse("abc".startsWith("b"));
118 assertTrue("abc".startsWith("abc", 0));
119 assertFalse("abc".startsWith("bc", 0))
    [all...]
string-codepointat.js 14 assertEquals("abc\uD834\uDF06def".codePointAt(""), 0x61);
15 assertEquals("abc\uD834\uDF06def".codePointAt("_"), 0x61);
16 assertEquals("abc\uD834\uDF06def".codePointAt(), 0x61);
17 assertEquals("abc\uD834\uDF06def".codePointAt(-Infinity), undefined);
18 assertEquals("abc\uD834\uDF06def".codePointAt(-1), undefined);
19 assertEquals("abc\uD834\uDF06def".codePointAt(-0), 0x61);
20 assertEquals("abc\uD834\uDF06def".codePointAt(0), 0x61);
21 assertEquals("abc\uD834\uDF06def".codePointAt(3), 0x1D306);
22 assertEquals("abc\uD834\uDF06def".codePointAt(4), 0xDF06);
23 assertEquals("abc\uD834\uDF06def".codePointAt(5), 0x64)
    [all...]
  /external/clang/test/SemaCXX/
warn-variable-not-needed.cpp 4 static int abc = 42; // expected-warning {{variable 'abc' is not needed and will not be emitted}} member in namespace:test1
7 return abc;
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/core/util/
PatternUtilTest.groovy 30 assert PatternUtil.convertStringWithWildcardsToRegex('abc') == /abc/
31 assert PatternUtil.convertStringWithWildcardsToRegex('abc.def') == /abc\.def/
32 assert PatternUtil.convertStringWithWildcardsToRegex('(abc):{def}') == /\(abc\)\:\{def\}/
36 assert PatternUtil.convertStringWithWildcardsToRegex('abc*') == /abc.*/
42 assert !PatternUtil.containsWildcards('abc')
43 assert !PatternUtil.containsWildcards('abc.def')
    [all...]
  /external/valgrind/memcheck/tests/
demangle.cpp 3 namespace abc { namespace
19 return (new abc::def<int,typeof(*this)>)->xyzzy(p, 0);
  /external/clang/test/Preprocessor/
macro_fn_lparen_scan.c 2 // RUN: %clang_cc1 -E %s | grep 'expand: abc'
4 // RUN: %clang_cc1 -E %s | grep 'expand2: abc'
7 #define foo() abc
10 // This should not expand to abc, because the foo macro isn't followed by (.
14 // This should expand to abc.
  /external/v8/test/webkit/fast/js/
regexp-bol.js 30 shouldBe('s.match(/^abc/)', '["abc"]');
31 shouldBe('s.match(/(^|X)abc/)', '["abc",""]');
33 shouldBe('s.match(/(^abc|c)123/)', '["abc123","abc"]');
34 shouldBe('s.match(/(c|^abc)123/)', '["abc123","abc"]');
35 shouldBe('s.match(/(^ab|abc)123/)', '["abc123","abc"]');
    [all...]
  /external/llvm/unittests/ADT/
SmallStringTest.cpp 54 StringRef abc = "abc"; local
55 theString.assign(abc.begin(), abc.end());
57 EXPECT_STREQ("abc", theString.c_str());
61 StringRef abc = "abc"; local
62 theString.assign(abc);
64 EXPECT_STREQ("abc", theString.c_str());
68 StringRef abc = "abc" local
76 StringRef abc = "abc"; local
84 StringRef abc = "abc"; local
92 StringRef abc = "abc"; local
    [all...]
  /external/v8/test/webkit/fast/js/kde/
operators.js 306 shouldBeTrue("'abc' == 'abc'");
307 shouldBeTrue("'abc' != 'xyz'");
332 shouldBeTrue("nonSpeculativeEqual('abc', 'abc')");
333 shouldBeTrue("nonSpeculativeNotEqual('abc', 'xyz')");
358 shouldBe("'abc' < 'abx'", "true");
359 shouldBe("'abc' < 'abcd'", "true");
360 shouldBe("'abc' < 'abc'", "false")
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_abc.py 4 """Unit tests for abc.py."""
9 import abc namespace
16 @abc.abstractmethod
23 @abc.abstractproperty
30 __metaclass__ = abc.ABCMeta
31 @abc.abstractproperty
39 for abstractthing in [abc.abstractmethod, abc.abstractproperty]:
41 __metaclass__ = abc.ABCMeta
67 __metaclass__ = abc.ABCMet
    [all...]

Completed in 896 milliseconds

1 2 3 4 5 6 7